conf terminal ! A simple calculator written in route-map (Cisco IOS version) ! ! Written by Job Snijders (April 1st, 2014) ! ! description: ! ! Do you often find yourself in need of a simple calculator, and all ! you have available to you is a Cisco IOS router? ! No longer will you experience the horror and dread of mental ! arithmetics. The route-map calculator is here! ! ! WARNING: due to the operating system architecture this route-map consumes ! quite some memory. Always test in a lab before deploying in production! ! ! usage: ! ! Calculations can be performed with integers between 1 and 256. The ! answer will be presented as a rounded integer. In case the calculation ! would result in a negative integer, or a value larger than 2^16 ! (65536), an helpful error message is generated: BGP Community 65000:7777 ! For divisions and substractions the order of the BGP communities is ! relevant, one must always place the operator first! ! ! operators: ! ! 'add' operator community: 65000:1 ! 'multiply' operator community: 65000:2 ! 'substract' operator community: 65000:3 ! 'divide' operator community: 65000:4 ! ! example: ! desired calculation: 86 * 128 ! signal through bgp: 65000:2 0:86 0:128 ! translated community set: * 86 128 ! output in BGP Looking glass: 0:11008 ! calculated answer is 11008 ! ! ! another real life example (copied from Brocade lab): ! ! telnet@calculator#show ip bgp config ! router bgp ! local-as 65001 ! neighbor 172.16.1.1 remote-as 65000 ! address-family ipv4 unicast ! neighbor 172.16.1.1 route-map in calculator ! ! telnet@input-router#show ip bgp config ! router bgp ! local-as 65000 ! neighbor 172.16.1.2 remote-as 65001 ! address-family ipv4 unicast ! network 10.1.1.1/32 route-map originate ! neighbor 172.16.1.2 send-community ! ! telnet@input-router#show route-map calculate ! route-map calculate permit 1 ! set community 65000:2 0:63 0:113 ! ! telnet@input-router#show ip bgp routes detail 10.1.1.1 | i COMMUNITIES ! COMMUNITIES: 65000:2 0:63 0:113 ! telnet@input-router# ! ! telnet@calculator#show ip bgp routes detail 10.1.1.1 | i COMMUNITIES ! COMMUNITIES: 0:7119 ! telnet@calculator# ! ! super convenient right?! ! ! ! ----------------- calculator route-map starts here -------------------- ip community-list standard 2_152_235 permit 65000:2 0:152 0:235 ip community-list standard 2_188_190 permit 65000:2 0:188 0:190 route-map calculator permit 1 match community 2_152_235 2_188_190 set community 0:35720 ip community-list standard 2_77_224 permit 65000:2 0:77 0:224 ip community-list standard 2_88_196 permit 65000:2 0:88 0:196 ip community-list standard 2_98_176 permit 65000:2 0:98 0:176 ip community-list standard 2_112_154 permit 65000:2 0:112 0:154 route-map calculator permit 2 match community 2_77_224 2_88_196 2_98_176 2_112_154 set community 0:17248 ip community-list standard 2_2_219 permit 65000:2 0:2 0:219 ip community-list standard 2_3_146 permit 65000:2 0:3 0:146 ip community-list standard 2_6_73 permit 65000:2 0:6 0:73 ip community-list standard 1_182_256 permit 65000:1 0:182 0:256 ip community-list standard 1_183_255 permit 65000:1 0:183 0:255 ip community-list standard 1_184_254 permit 65000:1 0:184 0:254 ip community-list standard 1_185_253 permit 65000:1 0:185 0:253 ip community-list standard 1_186_252 permit 65000:1 0:186 0:252 ip community-list standard 1_187_251 permit 65000:1 0:187 0:251 ip community-list standard 1_188_250 permit 65000:1 0:188 0:250 ip community-list standard 1_189_249 permit 65000:1 0:189 0:249 ip community-list standard 1_190_248 permit 65000:1 0:190 0:248 ip community-list standard 1_191_247 permit 65000:1 0:191 0:247 ip community-list standard 1_192_246 permit 65000:1 0:192 0:246 ip community-list standard 1_193_245 permit 65000:1 0:193 0:245 ip community-list standard 1_194_244 permit 65000:1 0:194 0:244 ip community-list standard 1_195_243 permit 65000:1 0:195 0:243 ip community-list standard 1_196_242 permit 65000:1 0:196 0:242 ip community-list standard 1_197_241 permit 65000:1 0:197 0:241 ip community-list standard 1_198_240 permit 65000:1 0:198 0:240 ip community-list standard 1_199_239 permit 65000:1 0:199 0:239 ip community-list standard 1_200_238 permit 65000:1 0:200 0:238 ip community-list standard 1_201_237 permit 65000:1 0:201 0:237 ip community-list standard 1_202_236 permit 65000:1 0:202 0:236 ip community-list standard 1_203_235 permit 65000:1 0:203 0:235 ip community-list standard 1_204_234 permit 65000:1 0:204 0:234 ip community-list standard 1_205_233 permit 65000:1 0:205 0:233 ip community-list standard 1_206_232 permit 65000:1 0:206 0:232 ip community-list standard 1_207_231 permit 65000:1 0:207 0:231 ip community-list standard 1_208_230 permit 65000:1 0:208 0:230 ip community-list standard 1_209_229 permit 65000:1 0:209 0:229 ip community-list standard 1_210_228 permit 65000:1 0:210 0:228 ip community-list standard 1_211_227 permit 65000:1 0:211 0:227 ip community-list standard 1_212_226 permit 65000:1 0:212 0:226 ip community-list standard 1_213_225 permit 65000:1 0:213 0:225 ip community-list standard 1_214_224 permit 65000:1 0:214 0:224 ip community-list standard 1_215_223 permit 65000:1 0:215 0:223 ip community-list standard 1_216_222 permit 65000:1 0:216 0:222 ip community-list standard 1_217_221 permit 65000:1 0:217 0:221 ip community-list standard 1_218_220 permit 65000:1 0:218 0:220 ip community-list standard 1_219_219 permit 65000:1 0:219 0:219 route-map calculator permit 3 match community 2_2_219 2_3_146 2_6_73 1_182_256 1_183_255 set community 0:438 route-map calculator permit 4 match community 1_184_254 1_185_253 1_186_252 1_187_251 1_188_250 set community 0:438 route-map calculator permit 5 match community 1_189_249 1_190_248 1_191_247 1_192_246 1_193_245 set community 0:438 route-map calculator permit 6 match community 1_194_244 1_195_243 1_196_242 1_197_241 1_198_240 set community 0:438 route-map calculator permit 7 match community 1_199_239 1_200_238 1_201_237 1_202_236 1_203_235 set community 0:438 route-map calculator permit 8 match community 1_204_234 1_205_233 1_206_232 1_207_231 1_208_230 set community 0:438 route-map calculator permit 9 match community 1_209_229 1_210_228 1_211_227 1_212_226 1_213_225 set community 0:438 route-map calculator permit 10 match community 1_214_224 1_215_223 1_216_222 1_217_221 1_218_220 set community 0:438 route-map calculator permit 11 match community 1_219_219 set community 0:438 ip community-list standard 2_133_171 permit 65000:2 0:133 0:171 route-map calculator permit 12 match community 2_133_171 set community 0:22743 ip community-list standard 2_149_253 permit 65000:2 0:149 0:253 route-map calculator permit 13 match community 2_149_253 set community 0:37697 ip community-list standard 2_19_247 permit 65000:2 0:19 0:247 route-map calculator permit 14 match community 2_19_247 set community 0:4693 ip community-list standard 2_44_245 permit 65000:2 0:44 0:245 ip community-list standard 2_49_220 permit 65000:2 0:49 0:220 ip community-list standard 2_55_196 permit 65000:2 0:55 0:196 ip community-list standard 2_70_154 permit 65000:2 0:70 0:154 ip community-list standard 2_77_140 permit 65000:2 0:77 0:140 ip community-list standard 2_98_110 permit 65000:2 0:98 0:110 route-map calculator permit 15 match community 2_44_245 2_49_220 2_55_196 2_70_154 2_77_140 set community 0:10780 route-map calculator permit 16 match community 2_98_110 set community 0:10780 ip community-list standard 2_176_228 permit 65000:2 0:176 0:228 ip community-list standard 2_192_209 permit 65000:2 0:192 0:209 route-map calculator permit 17 match community 2_176_228 2_192_209 set community 0:40128 ip community-list standard 2_61_195 permit 65000:2 0:61 0:195 ip community-list standard 2_65_183 permit 65000:2 0:65 0:183 route-map calculator permit 18 match community 2_61_195 2_65_183 set community 0:11895 ip community-list standard 2_6_201 permit 65000:2 0:6 0:201 ip community-list standard 2_9_134 permit 65000:2 0:9 0:134 ip community-list standard 2_18_67 permit 65000:2 0:18 0:67 route-map calculator permit 19 match community 2_6_201 2_9_134 2_18_67 set community 0:1206 ip community-list standard 2_91_219 permit 65000:2 0:91 0:219 route-map calculator permit 20 match community 2_91_219 set community 0:19929 ip community-list standard 2_149_235 permit 65000:2 0:149 0:235 route-map calculator permit 21 match community 2_149_235 set community 0:35015 ip community-list standard 2_206_249 permit 65000:2 0:206 0:249 route-map calculator permit 22 match community 2_206_249 set community 0:51294 ip community-list standard 2_187_211 permit 65000:2 0:187 0:211 route-map calculator permit 23 match community 2_187_211 set community 0:39457 ip community-list standard 2_78_217 permit 65000:2 0:78 0:217 ip community-list standard 2_91_186 permit 65000:2 0:91 0:186 ip community-list standard 2_93_182 permit 65000:2 0:93 0:182 route-map calculator permit 24 match community 2_78_217 2_91_186 2_93_182 set community 0:16926 ip community-list standard 2_55_73 permit 65000:2 0:55 0:73 route-map calculator permit 25 match community 2_55_73 set community 0:4015 ip community-list standard 2_29_163 permit 65000:2 0:29 0:163 route-map calculator permit 26 match community 2_29_163 set community 0:4727 ip community-list standard 2_195_225 permit 65000:2 0:195 0:225 route-map calculator permit 27 match community 2_195_225 set community 0:43875 ip community-list standard 2_63_213 permit 65000:2 0:63 0:213 ip community-list standard 2_71_189 permit 65000:2 0:71 0:189 route-map calculator permit 28 match community 2_63_213 2_71_189 set community 0:13419 ip community-list standard 2_59_215 permit 65000:2 0:59 0:215 route-map calculator permit 29 match community 2_59_215 set community 0:12685 ip community-list standard 2_91_131 permit 65000:2 0:91 0:131 route-map calculator permit 30 match community 2_91_131 set community 0:11921 ip community-list standard 2_70_209 permit 65000:2 0:70 0:209 ip community-list standard 2_77_190 permit 65000:2 0:77 0:190 ip community-list standard 2_95_154 permit 65000:2 0:95 0:154 ip community-list standard 2_110_133 permit 65000:2 0:110 0:133 route-map calculator permit 31 match community 2_70_209 2_77_190 2_95_154 2_110_133 set community 0:14630 ip community-list standard 2_136_167 permit 65000:2 0:136 0:167 route-map calculator permit 32 match community 2_136_167 set community 0:22712 ip community-list standard 2_182_219 permit 65000:2 0:182 0:219 route-map calculator permit 33 match community 2_182_219 set community 0:39858 ip community-list standard 2_91_196 permit 65000:2 0:91 0:196 ip community-list standard 2_98_182 permit 65000:2 0:98 0:182 route-map calculator permit 34 match community 2_91_196 2_98_182 set community 0:17836 ip community-list standard 2_34_230 permit 65000:2 0:34 0:230 ip community-list standard 2_46_170 permit 65000:2 0:46 0:170 ip community-list standard 2_68_115 permit 65000:2 0:68 0:115 ip community-list standard 2_85_92 permit 65000:2 0:85 0:92 route-map calculator permit 35 match community 2_34_230 2_46_170 2_68_115 2_85_92 set community 0:7820 ip community-list standard 2_97_201 permit 65000:2 0:97 0:201 route-map calculator permit 36 match community 2_97_201 set community 0:19497 ip community-list standard 2_32_207 permit 65000:2 0:32 0:207 ip community-list standard 2_36_184 permit 65000:2 0:36 0:184 ip community-list standard 2_46_144 permit 65000:2 0:46 0:144 ip community-list standard 2_48_138 permit 65000:2 0:48 0:138 ip community-list standard 2_69_96 permit 65000:2 0:69 0:96 ip community-list standard 2_72_92 permit 65000:2 0:72 0:92 route-map calculator permit 37 match community 2_32_207 2_36_184 2_46_144 2_48_138 2_69_96 set community 0:6624 route-map calculator permit 38 match community 2_72_92 set community 0:6624 ip community-list standard 2_5_223 permit 65000:2 0:5 0:223 route-map calculator permit 39 match community 2_5_223 set community 0:1115 ip community-list standard 2_16_191 permit 65000:2 0:16 0:191 route-map calculator permit 40 match community 2_16_191 set community 0:3056 ip community-list standard 2_28_231 permit 65000:2 0:28 0:231 ip community-list standard 2_33_196 permit 65000:2 0:33 0:196 ip community-list standard 2_42_154 permit 65000:2 0:42 0:154 ip community-list standard 2_44_147 permit 65000:2 0:44 0:147 ip community-list standard 2_49_132 permit 65000:2 0:49 0:132 ip community-list standard 2_66_98 permit 65000:2 0:66 0:98 ip community-list standard 2_77_84 permit 65000:2 0:77 0:84 route-map calculator permit 41 match community 2_28_231 2_33_196 2_42_154 2_44_147 2_49_132 set community 0:6468 route-map calculator permit 42 match community 2_66_98 2_77_84 set community 0:6468 ip community-list standard 2_101_179 permit 65000:2 0:101 0:179 route-map calculator permit 43 match community 2_101_179 set community 0:18079 ip community-list standard 2_192_193 permit 65000:2 0:192 0:193 route-map calculator permit 44 match community 2_192_193 set community 0:37056 ip community-list standard 2_120_233 permit 65000:2 0:120 0:233 route-map calculator permit 45 match community 2_120_233 set community 0:27960 ip community-list standard 2_125_251 permit 65000:2 0:125 0:251 route-map calculator permit 46 match community 2_125_251 set community 0:31375 ip community-list standard 2_118_233 permit 65000:2 0:118 0:233 route-map calculator permit 47 match community 2_118_233 set community 0:27494 ip community-list standard 2_48_239 permit 65000:2 0:48 0:239 route-map calculator permit 48 match community 2_48_239 set community 0:11472 ip community-list standard 2_95_239 permit 65000:2 0:95 0:239 route-map calculator permit 49 match community 2_95_239 set community 0:22705 ip community-list standard 2_176_214 permit 65000:2 0:176 0:214 route-map calculator permit 50 match community 2_176_214 set community 0:37664 ip community-list standard 2_29_215 permit 65000:2 0:29 0:215 ip community-list standard 2_43_145 permit 65000:2 0:43 0:145 route-map calculator permit 51 match community 2_29_215 2_43_145 set community 0:6235 ip community-list standard 2_25_251 permit 65000:2 0:25 0:251 route-map calculator permit 52 match community 2_25_251 set community 0:6275 ip community-list standard 2_145_183 permit 65000:2 0:145 0:183 route-map calculator permit 53 match community 2_145_183 set community 0:26535 ip community-list standard 2_207_251 permit 65000:2 0:207 0:251 route-map calculator permit 54 match community 2_207_251 set community 0:51957 ip community-list standard 2_151_226 permit 65000:2 0:151 0:226 route-map calculator permit 55 match community 2_151_226 set community 0:34126 ip community-list standard 2_109_139 permit 65000:2 0:109 0:139 route-map calculator permit 56 match community 2_109_139 set community 0:15151 ip community-list standard 2_84_250 permit 65000:2 0:84 0:250 ip community-list standard 2_100_210 permit 65000:2 0:100 0:210 ip community-list standard 2_105_200 permit 65000:2 0:105 0:200 ip community-list standard 2_120_175 permit 65000:2 0:120 0:175 ip community-list standard 2_125_168 permit 65000:2 0:125 0:168 ip community-list standard 2_140_150 permit 65000:2 0:140 0:150 route-map calculator permit 57 match community 2_84_250 2_100_210 2_105_200 2_120_175 2_125_168 set community 0:21000 route-map calculator permit 58 match community 2_140_150 set community 0:21000 ip community-list standard 2_51_222 permit 65000:2 0:51 0:222 ip community-list standard 2_74_153 permit 65000:2 0:74 0:153 ip community-list standard 2_102_111 permit 65000:2 0:102 0:111 route-map calculator permit 59 match community 2_51_222 2_74_153 2_102_111 set community 0:11322 ip community-list standard 2_11_224 permit 65000:2 0:11 0:224 ip community-list standard 2_14_176 permit 65000:2 0:14 0:176 ip community-list standard 2_16_154 permit 65000:2 0:16 0:154 ip community-list standard 2_22_112 permit 65000:2 0:22 0:112 ip community-list standard 2_28_88 permit 65000:2 0:28 0:88 ip community-list standard 2_32_77 permit 65000:2 0:32 0:77 ip community-list standard 2_44_56 permit 65000:2 0:44 0:56 route-map calculator permit 60 match community 2_11_224 2_14_176 2_16_154 2_22_112 2_28_88 set community 0:2464 route-map calculator permit 61 match community 2_32_77 2_44_56 set community 0:2464 ip community-list standard 2_46_243 permit 65000:2 0:46 0:243 ip community-list standard 2_54_207 permit 65000:2 0:54 0:207 ip community-list standard 2_69_162 permit 65000:2 0:69 0:162 ip community-list standard 2_81_138 permit 65000:2 0:81 0:138 route-map calculator permit 62 match community 2_46_243 2_54_207 2_69_162 2_81_138 set community 0:11178 ip community-list standard 2_63_251 permit 65000:2 0:63 0:251 route-map calculator permit 63 match community 2_63_251 set community 0:15813 ip community-list standard 2_61_85 permit 65000:2 0:61 0:85 route-map calculator permit 64 match community 2_61_85 set community 0:5185 ip community-list standard 2_196_237 permit 65000:2 0:196 0:237 route-map calculator permit 65 match community 2_196_237 set community 0:46452 ip community-list standard 2_188_224 permit 65000:2 0:188 0:224 route-map calculator permit 66 match community 2_188_224 set community 0:42112 ip community-list standard 2_38_215 permit 65000:2 0:38 0:215 ip community-list standard 2_43_190 permit 65000:2 0:43 0:190 ip community-list standard 2_86_95 permit 65000:2 0:86 0:95 route-map calculator permit 67 match community 2_38_215 2_43_190 2_86_95 set community 0:8170 ip community-list standard 2_11_253 permit 65000:2 0:11 0:253 ip community-list standard 2_23_121 permit 65000:2 0:23 0:121 route-map calculator permit 68 match community 2_11_253 2_23_121 set community 0:2783 ip community-list standard 2_134_220 permit 65000:2 0:134 0:220 route-map calculator permit 69 match community 2_134_220 set community 0:29480 ip community-list standard 2_155_244 permit 65000:2 0:155 0:244 route-map calculator permit 70 match community 2_155_244 set community 0:37820 ip community-list standard 2_194_214 permit 65000:2 0:194 0:214 route-map calculator permit 71 match community 2_194_214 set community 0:41516 ip community-list standard 2_195_220 permit 65000:2 0:195 0:220 route-map calculator permit 72 match community 2_195_220 set community 0:42900 ip community-list standard 2_63_107 permit 65000:2 0:63 0:107 route-map calculator permit 73 match community 2_63_107 set community 0:6741 ip community-list standard 2_176_241 permit 65000:2 0:176 0:241 route-map calculator permit 74 match community 2_176_241 set community 0:42416 ip community-list standard 2_25_252 permit 65000:2 0:25 0:252 ip community-list standard 2_28_225 permit 65000:2 0:28 0:225 ip community-list standard 2_30_210 permit 65000:2 0:30 0:210 ip community-list standard 2_35_180 permit 65000:2 0:35 0:180 ip community-list standard 2_36_175 permit 65000:2 0:36 0:175 ip community-list standard 2_42_150 permit 65000:2 0:42 0:150 ip community-list standard 2_45_140 permit 65000:2 0:45 0:140 ip community-list standard 2_50_126 permit 65000:2 0:50 0:126 ip community-list standard 2_60_105 permit 65000:2 0:60 0:105 ip community-list standard 2_63_100 permit 65000:2 0:63 0:100 ip community-list standard 2_70_90 permit 65000:2 0:70 0:90 ip community-list standard 2_75_84 permit 65000:2 0:75 0:84 route-map calculator permit 75 match community 2_25_252 2_28_225 2_30_210 2_35_180 2_36_175 set community 0:6300 route-map calculator permit 76 match community 2_42_150 2_45_140 2_50_126 2_60_105 2_63_100 set community 0:6300 route-map calculator permit 77 match community 2_70_90 2_75_84 set community 0:6300 ip community-list standard 2_13_159 permit 65000:2 0:13 0:159 ip community-list standard 2_39_53 permit 65000:2 0:39 0:53 route-map calculator permit 78 match community 2_13_159 2_39_53 set community 0:2067 ip community-list standard 2_59_65 permit 65000:2 0:59 0:65 route-map calculator permit 79 match community 2_59_65 set community 0:3835 ip community-list standard 2_46_183 permit 65000:2 0:46 0:183 ip community-list standard 2_61_138 permit 65000:2 0:61 0:138 ip community-list standard 2_69_122 permit 65000:2 0:69 0:122 route-map calculator permit 80 match community 2_46_183 2_61_138 2_69_122 set community 0:8418 ip community-list standard 2_106_249 permit 65000:2 0:106 0:249 ip community-list standard 2_159_166 permit 65000:2 0:159 0:166 route-map calculator permit 81 match community 2_106_249 2_159_166 set community 0:26394 ip community-list standard 2_5_175 permit 65000:2 0:5 0:175 ip community-list standard 2_7_125 permit 65000:2 0:7 0:125 ip community-list standard 2_25_35 permit 65000:2 0:25 0:35 route-map calculator permit 82 match community 2_5_175 2_7_125 2_25_35 set community 0:875 ip community-list standard 2_97_189 permit 65000:2 0:97 0:189 route-map calculator permit 83 match community 2_97_189 set community 0:18333 ip community-list standard 2_161_185 permit 65000:2 0:161 0:185 route-map calculator permit 84 match community 2_161_185 set community 0:29785 ip community-list standard 2_167_184 permit 65000:2 0:167 0:184 route-map calculator permit 85 match community 2_167_184 set community 0:30728 ip community-list standard 2_178_225 permit 65000:2 0:178 0:225 route-map calculator permit 86 match community 2_178_225 set community 0:40050 ip community-list standard 2_44_239 permit 65000:2 0:44 0:239 route-map calculator permit 87 match community 2_44_239 set community 0:10516 ip community-list standard 2_121_249 permit 65000:2 0:121 0:249 route-map calculator permit 88 match community 2_121_249 set community 0:30129 ip community-list standard 2_94_181 permit 65000:2 0:94 0:181 route-map calculator permit 89 match community 2_94_181 set community 0:17014 ip community-list standard 2_233_242 permit 65000:2 0:233 0:242 route-map calculator permit 90 match community 2_233_242 set community 0:56386 ip community-list standard 2_59_237 permit 65000:2 0:59 0:237 ip community-list standard 2_79_177 permit 65000:2 0:79 0:177 route-map calculator permit 91 match community 2_59_237 2_79_177 set community 0:13983 ip community-list standard 2_10_165 permit 65000:2 0:10 0:165 ip community-list standard 2_11_150 permit 65000:2 0:11 0:150 ip community-list standard 2_15_110 permit 65000:2 0:15 0:110 ip community-list standard 2_22_75 permit 65000:2 0:22 0:75 ip community-list standard 2_25_66 permit 65000:2 0:25 0:66 ip community-list standard 2_30_55 permit 65000:2 0:30 0:55 ip community-list standard 2_33_50 permit 65000:2 0:33 0:50 route-map calculator permit 92 match community 2_10_165 2_11_150 2_15_110 2_22_75 2_25_66 set community 0:1650 route-map calculator permit 93 match community 2_30_55 2_33_50 set community 0:1650 ip community-list standard 2_137_139 permit 65000:2 0:137 0:139 route-map calculator permit 94 match community 2_137_139 set community 0:19043 ip community-list standard 2_160_199 permit 65000:2 0:160 0:199 route-map calculator permit 95 match community 2_160_199 set community 0:31840 ip community-list standard 2_180_254 permit 65000:2 0:180 0:254 route-map calculator permit 96 match community 2_180_254 set community 0:45720 ip community-list standard 2_37_133 permit 65000:2 0:37 0:133 route-map calculator permit 97 match community 2_37_133 set community 0:4921 ip community-list standard 2_100_238 permit 65000:2 0:100 0:238 ip community-list standard 2_119_200 permit 65000:2 0:119 0:200 ip community-list standard 2_136_175 permit 65000:2 0:136 0:175 ip community-list standard 2_140_170 permit 65000:2 0:140 0:170 route-map calculator permit 98 match community 2_100_238 2_119_200 2_136_175 2_140_170 set community 0:23800 ip community-list standard 2_137_246 permit 65000:2 0:137 0:246 route-map calculator permit 99 match community 2_137_246 set community 0:33702 ip community-list standard 2_214_215 permit 65000:2 0:214 0:215 route-map calculator permit 100 match community 2_214_215 set community 0:46010 ip community-list standard 2_9_218 permit 65000:2 0:9 0:218 ip community-list standard 2_18_109 permit 65000:2 0:18 0:109 route-map calculator permit 101 match community 2_9_218 2_18_109 set community 0:1962 ip community-list standard 2_65_203 permit 65000:2 0:65 0:203 ip community-list standard 2_91_145 permit 65000:2 0:91 0:145 route-map calculator permit 102 match community 2_65_203 2_91_145 set community 0:13195 ip community-list standard 2_60_245 permit 65000:2 0:60 0:245 ip community-list standard 2_70_210 permit 65000:2 0:70 0:210 ip community-list standard 2_75_196 permit 65000:2 0:75 0:196 ip community-list standard 2_84_175 permit 65000:2 0:84 0:175 ip community-list standard 2_98_150 permit 65000:2 0:98 0:150 ip community-list standard 2_100_147 permit 65000:2 0:100 0:147 ip community-list standard 2_105_140 permit 65000:2 0:105 0:140 route-map calculator permit 103 match community 2_60_245 2_70_210 2_75_196 2_84_175 2_98_150 set community 0:14700 route-map calculator permit 104 match community 2_100_147 2_105_140 set community 0:14700 ip community-list standard 2_77_241 permit 65000:2 0:77 0:241 route-map calculator permit 105 match community 2_77_241 set community 0:18557 ip community-list standard 2_142_187 permit 65000:2 0:142 0:187 route-map calculator permit 106 match community 2_142_187 set community 0:26554 ip community-list standard 2_30_242 permit 65000:2 0:30 0:242 ip community-list standard 2_33_220 permit 65000:2 0:33 0:220 ip community-list standard 2_44_165 permit 65000:2 0:44 0:165 ip community-list standard 2_55_132 permit 65000:2 0:55 0:132 ip community-list standard 2_60_121 permit 65000:2 0:60 0:121 ip community-list standard 2_66_110 permit 65000:2 0:66 0:110 route-map calculator permit 107 match community 2_30_242 2_33_220 2_44_165 2_55_132 2_60_121 set community 0:7260 route-map calculator permit 108 match community 2_66_110 set community 0:7260 ip community-list standard 2_64_254 permit 65000:2 0:64 0:254 ip community-list standard 2_127_128 permit 65000:2 0:127 0:128 route-map calculator permit 109 match community 2_64_254 2_127_128 set community 0:16256 ip community-list standard 2_104_244 permit 65000:2 0:104 0:244 ip community-list standard 2_122_208 permit 65000:2 0:122 0:208 route-map calculator permit 110 match community 2_104_244 2_122_208 set community 0:25376 ip community-list standard 2_111_224 permit 65000:2 0:111 0:224 ip community-list standard 2_112_222 permit 65000:2 0:112 0:222 ip community-list standard 2_148_168 permit 65000:2 0:148 0:168 route-map calculator permit 111 match community 2_111_224 2_112_222 2_148_168 set community 0:24864 ip community-list standard 2_164_241 permit 65000:2 0:164 0:241 route-map calculator permit 112 match community 2_164_241 set community 0:39524 ip community-list standard 2_116_215 permit 65000:2 0:116 0:215 ip community-list standard 2_145_172 permit 65000:2 0:145 0:172 route-map calculator permit 113 match community 2_116_215 2_145_172 set community 0:24940 ip community-list standard 2_167_243 permit 65000:2 0:167 0:243 route-map calculator permit 114 match community 2_167_243 set community 0:40581 ip community-list standard 2_67_143 permit 65000:2 0:67 0:143 route-map calculator permit 115 match community 2_67_143 set community 0:9581 ip community-list standard 2_103_207 permit 65000:2 0:103 0:207 route-map calculator permit 116 match community 2_103_207 set community 0:21321 ip community-list standard 2_113_242 permit 65000:2 0:113 0:242 ip community-list standard 2_121_226 permit 65000:2 0:121 0:226 route-map calculator permit 117 match community 2_113_242 2_121_226 set community 0:27346 ip community-list standard 2_167_198 permit 65000:2 0:167 0:198 route-map calculator permit 118 match community 2_167_198 set community 0:33066 ip community-list standard 2_154_164 permit 65000:2 0:154 0:164 route-map calculator permit 119 match community 2_154_164 set community 0:25256 ip community-list standard 2_13_166 permit 65000:2 0:13 0:166 ip community-list standard 2_26_83 permit 65000:2 0:26 0:83 route-map calculator permit 120 match community 2_13_166 2_26_83 set community 0:2158 ip community-list standard 1_1_151 permit 65000:1 0:1 0:151 ip community-list standard 2_1_152 permit 65000:2 0:1 0:152 ip community-list standard 2_2_76 permit 65000:2 0:2 0:76 ip community-list standard 1_2_150 permit 65000:1 0:2 0:150 ip community-list standard 1_3_149 permit 65000:1 0:3 0:149 ip community-list standard 2_4_38 permit 65000:2 0:4 0:38 ip community-list standard 1_4_148 permit 65000:1 0:4 0:148 ip community-list standard 1_5_147 permit 65000:1 0:5 0:147 ip community-list standard 1_6_146 permit 65000:1 0:6 0:146 ip community-list standard 1_7_145 permit 65000:1 0:7 0:145 ip community-list standard 2_8_19 permit 65000:2 0:8 0:19 ip community-list standard 1_8_144 permit 65000:1 0:8 0:144 ip community-list standard 1_9_143 permit 65000:1 0:9 0:143 ip community-list standard 1_10_142 permit 65000:1 0:10 0:142 ip community-list standard 1_11_141 permit 65000:1 0:11 0:141 ip community-list standard 1_12_140 permit 65000:1 0:12 0:140 ip community-list standard 1_13_139 permit 65000:1 0:13 0:139 ip community-list standard 1_14_138 permit 65000:1 0:14 0:138 ip community-list standard 1_15_137 permit 65000:1 0:15 0:137 ip community-list standard 1_16_136 permit 65000:1 0:16 0:136 ip community-list standard 1_17_135 permit 65000:1 0:17 0:135 ip community-list standard 1_18_134 permit 65000:1 0:18 0:134 ip community-list standard 1_19_133 permit 65000:1 0:19 0:133 ip community-list standard 1_20_132 permit 65000:1 0:20 0:132 ip community-list standard 1_21_131 permit 65000:1 0:21 0:131 ip community-list standard 1_22_130 permit 65000:1 0:22 0:130 ip community-list standard 1_23_129 permit 65000:1 0:23 0:129 ip community-list standard 1_24_128 permit 65000:1 0:24 0:128 ip community-list standard 1_25_127 permit 65000:1 0:25 0:127 ip community-list standard 1_26_126 permit 65000:1 0:26 0:126 ip community-list standard 1_27_125 permit 65000:1 0:27 0:125 ip community-list standard 1_28_124 permit 65000:1 0:28 0:124 ip community-list standard 1_29_123 permit 65000:1 0:29 0:123 ip community-list standard 1_30_122 permit 65000:1 0:30 0:122 ip community-list standard 1_31_121 permit 65000:1 0:31 0:121 ip community-list standard 1_32_120 permit 65000:1 0:32 0:120 ip community-list standard 1_33_119 permit 65000:1 0:33 0:119 ip community-list standard 1_34_118 permit 65000:1 0:34 0:118 ip community-list standard 1_35_117 permit 65000:1 0:35 0:117 ip community-list standard 1_36_116 permit 65000:1 0:36 0:116 ip community-list standard 1_37_115 permit 65000:1 0:37 0:115 ip community-list standard 1_38_114 permit 65000:1 0:38 0:114 ip community-list standard 1_39_113 permit 65000:1 0:39 0:113 ip community-list standard 1_40_112 permit 65000:1 0:40 0:112 ip community-list standard 1_41_111 permit 65000:1 0:41 0:111 ip community-list standard 1_42_110 permit 65000:1 0:42 0:110 ip community-list standard 1_43_109 permit 65000:1 0:43 0:109 ip community-list standard 1_44_108 permit 65000:1 0:44 0:108 ip community-list standard 1_45_107 permit 65000:1 0:45 0:107 ip community-list standard 1_46_106 permit 65000:1 0:46 0:106 ip community-list standard 1_47_105 permit 65000:1 0:47 0:105 ip community-list standard 1_48_104 permit 65000:1 0:48 0:104 ip community-list standard 1_49_103 permit 65000:1 0:49 0:103 ip community-list standard 1_50_102 permit 65000:1 0:50 0:102 ip community-list standard 1_51_101 permit 65000:1 0:51 0:101 ip community-list standard 1_52_100 permit 65000:1 0:52 0:100 ip community-list standard 1_53_99 permit 65000:1 0:53 0:99 ip community-list standard 1_54_98 permit 65000:1 0:54 0:98 ip community-list standard 1_55_97 permit 65000:1 0:55 0:97 ip community-list standard 1_56_96 permit 65000:1 0:56 0:96 ip community-list standard 1_57_95 permit 65000:1 0:57 0:95 ip community-list standard 1_58_94 permit 65000:1 0:58 0:94 ip community-list standard 1_59_93 permit 65000:1 0:59 0:93 ip community-list standard 1_60_92 permit 65000:1 0:60 0:92 ip community-list standard 1_61_91 permit 65000:1 0:61 0:91 ip community-list standard 1_62_90 permit 65000:1 0:62 0:90 ip community-list standard 1_63_89 permit 65000:1 0:63 0:89 ip community-list standard 1_64_88 permit 65000:1 0:64 0:88 ip community-list standard 1_65_87 permit 65000:1 0:65 0:87 ip community-list standard 1_66_86 permit 65000:1 0:66 0:86 ip community-list standard 1_67_85 permit 65000:1 0:67 0:85 ip community-list standard 1_68_84 permit 65000:1 0:68 0:84 ip community-list standard 1_69_83 permit 65000:1 0:69 0:83 ip community-list standard 1_70_82 permit 65000:1 0:70 0:82 ip community-list standard 1_71_81 permit 65000:1 0:71 0:81 ip community-list standard 1_72_80 permit 65000:1 0:72 0:80 ip community-list standard 1_73_79 permit 65000:1 0:73 0:79 ip community-list standard 1_74_78 permit 65000:1 0:74 0:78 ip community-list standard 1_75_77 permit 65000:1 0:75 0:77 ip community-list standard 1_76_76 permit 65000:1 0:76 0:76 ip community-list expanded c152 permit 1 ^65000:4_0:152_0:1$ ip community-list expanded c152 permit 2 ^65000:3_0:153_0:1$ ip community-list expanded c152 permit 3 ^65000:3_0:154_0:2$ ip community-list expanded c152 permit 4 ^65000:3_0:155_0:3$ ip community-list expanded c152 permit 5 ^65000:3_0:156_0:4$ ip community-list expanded c152 permit 6 ^65000:3_0:157_0:5$ ip community-list expanded c152 permit 7 ^65000:3_0:158_0:6$ ip community-list expanded c152 permit 8 ^65000:3_0:159_0:7$ ip community-list expanded c152 permit 9 ^65000:3_0:160_0:8$ ip community-list expanded c152 permit 10 ^65000:3_0:161_0:9$ ip community-list expanded c152 permit 11 ^65000:3_0:162_0:10$ ip community-list expanded c152 permit 12 ^65000:3_0:163_0:11$ ip community-list expanded c152 permit 13 ^65000:3_0:164_0:12$ ip community-list expanded c152 permit 14 ^65000:3_0:165_0:13$ ip community-list expanded c152 permit 15 ^65000:3_0:166_0:14$ ip community-list expanded c152 permit 16 ^65000:3_0:167_0:15$ ip community-list expanded c152 permit 17 ^65000:3_0:168_0:16$ ip community-list expanded c152 permit 18 ^65000:3_0:169_0:17$ ip community-list expanded c152 permit 19 ^65000:3_0:170_0:18$ ip community-list expanded c152 permit 20 ^65000:3_0:171_0:19$ ip community-list expanded c152 permit 21 ^65000:3_0:172_0:20$ ip community-list expanded c152 permit 22 ^65000:3_0:173_0:21$ ip community-list expanded c152 permit 23 ^65000:3_0:174_0:22$ ip community-list expanded c152 permit 24 ^65000:3_0:175_0:23$ ip community-list expanded c152 permit 25 ^65000:3_0:176_0:24$ ip community-list expanded c152 permit 26 ^65000:3_0:177_0:25$ ip community-list expanded c152 permit 27 ^65000:3_0:178_0:26$ ip community-list expanded c152 permit 28 ^65000:3_0:179_0:27$ ip community-list expanded c152 permit 29 ^65000:3_0:180_0:28$ ip community-list expanded c152 permit 30 ^65000:3_0:181_0:29$ ip community-list expanded c152 permit 31 ^65000:3_0:182_0:30$ ip community-list expanded c152 permit 32 ^65000:3_0:183_0:31$ ip community-list expanded c152 permit 33 ^65000:3_0:184_0:32$ ip community-list expanded c152 permit 34 ^65000:3_0:185_0:33$ ip community-list expanded c152 permit 35 ^65000:3_0:186_0:34$ ip community-list expanded c152 permit 36 ^65000:3_0:187_0:35$ ip community-list expanded c152 permit 37 ^65000:3_0:188_0:36$ ip community-list expanded c152 permit 38 ^65000:3_0:189_0:37$ ip community-list expanded c152 permit 39 ^65000:3_0:190_0:38$ ip community-list expanded c152 permit 40 ^65000:3_0:191_0:39$ ip community-list expanded c152 permit 41 ^65000:3_0:192_0:40$ ip community-list expanded c152 permit 42 ^65000:3_0:193_0:41$ ip community-list expanded c152 permit 43 ^65000:3_0:194_0:42$ ip community-list expanded c152 permit 44 ^65000:3_0:195_0:43$ ip community-list expanded c152 permit 45 ^65000:3_0:196_0:44$ ip community-list expanded c152 permit 46 ^65000:3_0:197_0:45$ ip community-list expanded c152 permit 47 ^65000:3_0:198_0:46$ ip community-list expanded c152 permit 48 ^65000:3_0:199_0:47$ ip community-list expanded c152 permit 49 ^65000:3_0:200_0:48$ ip community-list expanded c152 permit 50 ^65000:3_0:201_0:49$ ip community-list expanded c152 permit 51 ^65000:3_0:202_0:50$ ip community-list expanded c152 permit 52 ^65000:3_0:203_0:51$ ip community-list expanded c152 permit 53 ^65000:3_0:204_0:52$ ip community-list expanded c152 permit 54 ^65000:3_0:205_0:53$ ip community-list expanded c152 permit 55 ^65000:3_0:206_0:54$ ip community-list expanded c152 permit 56 ^65000:3_0:207_0:55$ ip community-list expanded c152 permit 57 ^65000:3_0:208_0:56$ ip community-list expanded c152 permit 58 ^65000:3_0:209_0:57$ ip community-list expanded c152 permit 59 ^65000:3_0:210_0:58$ ip community-list expanded c152 permit 60 ^65000:3_0:211_0:59$ ip community-list expanded c152 permit 61 ^65000:3_0:212_0:60$ ip community-list expanded c152 permit 62 ^65000:3_0:213_0:61$ ip community-list expanded c152 permit 63 ^65000:3_0:214_0:62$ ip community-list expanded c152 permit 64 ^65000:3_0:215_0:63$ ip community-list expanded c152 permit 65 ^65000:3_0:216_0:64$ ip community-list expanded c152 permit 66 ^65000:3_0:217_0:65$ ip community-list expanded c152 permit 67 ^65000:3_0:218_0:66$ ip community-list expanded c152 permit 68 ^65000:3_0:219_0:67$ ip community-list expanded c152 permit 69 ^65000:3_0:220_0:68$ ip community-list expanded c152 permit 70 ^65000:3_0:221_0:69$ ip community-list expanded c152 permit 71 ^65000:3_0:222_0:70$ ip community-list expanded c152 permit 72 ^65000:3_0:223_0:71$ ip community-list expanded c152 permit 73 ^65000:3_0:224_0:72$ ip community-list expanded c152 permit 74 ^65000:3_0:225_0:73$ ip community-list expanded c152 permit 75 ^65000:3_0:226_0:74$ ip community-list expanded c152 permit 76 ^65000:3_0:227_0:75$ ip community-list expanded c152 permit 77 ^65000:3_0:228_0:76$ ip community-list expanded c152 permit 78 ^65000:3_0:229_0:77$ ip community-list expanded c152 permit 79 ^65000:3_0:230_0:78$ ip community-list expanded c152 permit 80 ^65000:3_0:231_0:79$ ip community-list expanded c152 permit 81 ^65000:3_0:232_0:80$ ip community-list expanded c152 permit 82 ^65000:3_0:233_0:81$ ip community-list expanded c152 permit 83 ^65000:3_0:234_0:82$ ip community-list expanded c152 permit 84 ^65000:3_0:235_0:83$ ip community-list expanded c152 permit 85 ^65000:3_0:236_0:84$ ip community-list expanded c152 permit 86 ^65000:3_0:237_0:85$ ip community-list expanded c152 permit 87 ^65000:3_0:238_0:86$ ip community-list expanded c152 permit 88 ^65000:3_0:239_0:87$ ip community-list expanded c152 permit 89 ^65000:3_0:240_0:88$ ip community-list expanded c152 permit 90 ^65000:3_0:241_0:89$ ip community-list expanded c152 permit 91 ^65000:3_0:242_0:90$ ip community-list expanded c152 permit 92 ^65000:3_0:243_0:91$ ip community-list expanded c152 permit 93 ^65000:3_0:244_0:92$ ip community-list expanded c152 permit 94 ^65000:3_0:245_0:93$ ip community-list expanded c152 permit 95 ^65000:3_0:246_0:94$ ip community-list expanded c152 permit 96 ^65000:3_0:247_0:95$ ip community-list expanded c152 permit 97 ^65000:3_0:248_0:96$ ip community-list expanded c152 permit 98 ^65000:3_0:249_0:97$ ip community-list expanded c152 permit 99 ^65000:3_0:250_0:98$ ip community-list expanded c152 permit 100 ^65000:3_0:251_0:99$ ip community-list expanded c152 permit 101 ^65000:3_0:252_0:100$ ip community-list expanded c152 permit 102 ^65000:3_0:253_0:101$ ip community-list expanded c152 permit 103 ^65000:3_0:254_0:102$ ip community-list expanded c152 permit 104 ^65000:3_0:255_0:103$ ip community-list expanded c152 permit 105 ^65000:3_0:256_0:104$ route-map calculator permit 121 match community 1_1_151 2_1_152 2_2_76 1_2_150 1_3_149 set community 0:152 route-map calculator permit 122 match community 2_4_38 1_4_148 1_5_147 1_6_146 1_7_145 set community 0:152 route-map calculator permit 123 match community 2_8_19 1_8_144 1_9_143 1_10_142 1_11_141 set community 0:152 route-map calculator permit 124 match community 1_12_140 1_13_139 1_14_138 1_15_137 1_16_136 set community 0:152 route-map calculator permit 125 match community 1_17_135 1_18_134 1_19_133 1_20_132 1_21_131 set community 0:152 route-map calculator permit 126 match community 1_22_130 1_23_129 1_24_128 1_25_127 1_26_126 set community 0:152 route-map calculator permit 127 match community 1_27_125 1_28_124 1_29_123 1_30_122 1_31_121 set community 0:152 route-map calculator permit 128 match community 1_32_120 1_33_119 1_34_118 1_35_117 1_36_116 set community 0:152 route-map calculator permit 129 match community 1_37_115 1_38_114 1_39_113 1_40_112 1_41_111 set community 0:152 route-map calculator permit 130 match community 1_42_110 1_43_109 1_44_108 1_45_107 1_46_106 set community 0:152 route-map calculator permit 131 match community 1_47_105 1_48_104 1_49_103 1_50_102 1_51_101 set community 0:152 route-map calculator permit 132 match community 1_52_100 1_53_99 1_54_98 1_55_97 1_56_96 set community 0:152 route-map calculator permit 133 match community 1_57_95 1_58_94 1_59_93 1_60_92 1_61_91 set community 0:152 route-map calculator permit 134 match community 1_62_90 1_63_89 1_64_88 1_65_87 1_66_86 set community 0:152 route-map calculator permit 135 match community 1_67_85 1_68_84 1_69_83 1_70_82 1_71_81 set community 0:152 route-map calculator permit 136 match community 1_72_80 1_73_79 1_74_78 1_75_77 1_76_76 set community 0:152 route-map calculator permit 137 match community c4_152_1 c3_153_1 c3_154_2 c3_155_3 c3_156_4 set community 0:152 route-map calculator permit 138 match community c3_157_5 c3_158_6 c3_159_7 c3_160_8 c3_161_9 set community 0:152 route-map calculator permit 139 match community c3_162_10 c3_163_11 c3_164_12 c3_165_13 c3_166_14 set community 0:152 route-map calculator permit 140 match community c3_167_15 c3_168_16 c3_169_17 c3_170_18 c3_171_19 set community 0:152 route-map calculator permit 141 match community c3_172_20 c3_173_21 c3_174_22 c3_175_23 c3_176_24 set community 0:152 route-map calculator permit 142 match community c3_177_25 c3_178_26 c3_179_27 c3_180_28 c3_181_29 set community 0:152 route-map calculator permit 143 match community c3_182_30 c3_183_31 c3_184_32 c3_185_33 c3_186_34 set community 0:152 route-map calculator permit 144 match community c3_187_35 c3_188_36 c3_189_37 c3_190_38 c3_191_39 set community 0:152 route-map calculator permit 145 match community c3_192_40 c3_193_41 c3_194_42 c3_195_43 c3_196_44 set community 0:152 route-map calculator permit 146 match community c3_197_45 c3_198_46 c3_199_47 c3_200_48 c3_201_49 set community 0:152 route-map calculator permit 147 match community c3_202_50 c3_203_51 c3_204_52 c3_205_53 c3_206_54 set community 0:152 route-map calculator permit 148 match community c3_207_55 c3_208_56 c3_209_57 c3_210_58 c3_211_59 set community 0:152 route-map calculator permit 149 match community c3_212_60 c3_213_61 c3_214_62 c3_215_63 c3_216_64 set community 0:152 route-map calculator permit 150 match community c3_217_65 c3_218_66 c3_219_67 c3_220_68 c3_221_69 set community 0:152 route-map calculator permit 151 match community c3_222_70 c3_223_71 c3_224_72 c3_225_73 c3_226_74 set community 0:152 route-map calculator permit 152 match community c3_227_75 c3_228_76 c3_229_77 c3_230_78 c3_231_79 set community 0:152 route-map calculator permit 153 match community c3_232_80 c3_233_81 c3_234_82 c3_235_83 c3_236_84 set community 0:152 route-map calculator permit 154 match community c3_237_85 c3_238_86 c3_239_87 c3_240_88 c3_241_89 set community 0:152 route-map calculator permit 155 match community c3_242_90 c3_243_91 c3_244_92 c3_245_93 c3_246_94 set community 0:152 route-map calculator permit 156 match community c3_247_95 c3_248_96 c3_249_97 c3_250_98 c3_251_99 set community 0:152 route-map calculator permit 157 match community c3_252_100 c3_253_101 c3_254_102 c3_255_103 c3_256_104 set community 0:152 ip community-list standard 2_178_190 permit 65000:2 0:178 0:190 route-map calculator permit 158 match community 2_178_190 set community 0:33820 ip community-list standard 2_34_207 permit 65000:2 0:34 0:207 ip community-list standard 2_46_153 permit 65000:2 0:46 0:153 ip community-list standard 2_51_138 permit 65000:2 0:51 0:138 ip community-list standard 2_69_102 permit 65000:2 0:69 0:102 route-map calculator permit 159 match community 2_34_207 2_46_153 2_51_138 2_69_102 set community 0:7038 ip community-list standard 2_105_247 permit 65000:2 0:105 0:247 ip community-list standard 2_133_195 permit 65000:2 0:133 0:195 route-map calculator permit 160 match community 2_105_247 2_133_195 set community 0:25935 ip community-list standard 2_149_205 permit 65000:2 0:149 0:205 route-map calculator permit 161 match community 2_149_205 set community 0:30545 ip community-list standard 2_100_169 permit 65000:2 0:100 0:169 ip community-list standard 2_130_130 permit 65000:2 0:130 0:130 route-map calculator permit 162 match community 2_100_169 2_130_130 set community 0:16900 ip community-list standard 2_9_243 permit 65000:2 0:9 0:243 ip community-list standard 2_27_81 permit 65000:2 0:27 0:81 route-map calculator permit 163 match community 2_9_243 2_27_81 set community 0:2187 ip community-list standard 2_105_251 permit 65000:2 0:105 0:251 route-map calculator permit 164 match community 2_105_251 set community 0:26355 ip community-list standard 2_215_226 permit 65000:2 0:215 0:226 route-map calculator permit 165 match community 2_215_226 set community 0:48590 ip community-list standard 2_67_101 permit 65000:2 0:67 0:101 route-map calculator permit 166 match community 2_67_101 set community 0:6767 ip community-list standard 2_89_189 permit 65000:2 0:89 0:189 route-map calculator permit 167 match community 2_89_189 set community 0:16821 ip community-list standard 2_34_179 permit 65000:2 0:34 0:179 route-map calculator permit 168 match community 2_34_179 set community 0:6086 ip community-list standard 2_47_134 permit 65000:2 0:47 0:134 ip community-list standard 2_67_94 permit 65000:2 0:67 0:94 route-map calculator permit 169 match community 2_47_134 2_67_94 set community 0:6298 ip community-list standard 2_136_190 permit 65000:2 0:136 0:190 ip community-list standard 2_152_170 permit 65000:2 0:152 0:170 route-map calculator permit 170 match community 2_136_190 2_152_170 set community 0:25840 ip community-list standard 2_9_199 permit 65000:2 0:9 0:199 route-map calculator permit 171 match community 2_9_199 set community 0:1791 ip community-list standard 2_71_216 permit 65000:2 0:71 0:216 ip community-list standard 2_72_213 permit 65000:2 0:72 0:213 ip community-list standard 2_108_142 permit 65000:2 0:108 0:142 route-map calculator permit 172 match community 2_71_216 2_72_213 2_108_142 set community 0:15336 ip community-list standard 2_191_256 permit 65000:2 0:191 0:256 route-map calculator permit 173 match community 2_191_256 set community 0:48896 ip community-list standard 2_129_227 permit 65000:2 0:129 0:227 route-map calculator permit 174 match community 2_129_227 set community 0:29283 ip community-list standard 2_15_181 permit 65000:2 0:15 0:181 route-map calculator permit 175 match community 2_15_181 set community 0:2715 ip community-list standard 2_5_249 permit 65000:2 0:5 0:249 ip community-list standard 2_15_83 permit 65000:2 0:15 0:83 route-map calculator permit 176 match community 2_5_249 2_15_83 set community 0:1245 ip community-list standard 2_205_243 permit 65000:2 0:205 0:243 route-map calculator permit 177 match community 2_205_243 set community 0:49815 ip community-list standard 2_31_143 permit 65000:2 0:31 0:143 route-map calculator permit 178 match community 2_31_143 set community 0:4433 ip community-list standard 2_76_231 permit 65000:2 0:76 0:231 ip community-list standard 2_77_228 permit 65000:2 0:77 0:228 ip community-list standard 2_84_209 permit 65000:2 0:84 0:209 ip community-list standard 2_114_154 permit 65000:2 0:114 0:154 ip community-list standard 2_132_133 permit 65000:2 0:132 0:133 route-map calculator permit 179 match community 2_76_231 2_77_228 2_84_209 2_114_154 2_132_133 set community 0:17556 ip community-list standard 2_236_239 permit 65000:2 0:236 0:239 route-map calculator permit 180 match community 2_236_239 set community 0:56404 ip community-list standard 2_135_209 permit 65000:2 0:135 0:209 ip community-list standard 2_165_171 permit 65000:2 0:165 0:171 route-map calculator permit 181 match community 2_135_209 2_165_171 set community 0:28215 ip community-list standard 2_88_213 permit 65000:2 0:88 0:213 ip community-list standard 2_132_142 permit 65000:2 0:132 0:142 route-map calculator permit 182 match community 2_88_213 2_132_142 set community 0:18744 ip community-list standard 2_132_179 permit 65000:2 0:132 0:179 route-map calculator permit 183 match community 2_132_179 set community 0:23628 ip community-list standard 2_241_254 permit 65000:2 0:241 0:254 route-map calculator permit 184 match community 2_241_254 set community 0:61214 ip community-list standard 2_57_179 permit 65000:2 0:57 0:179 route-map calculator permit 185 match community 2_57_179 set community 0:10203 ip community-list standard 2_2_175 permit 65000:2 0:2 0:175 ip community-list standard 2_5_70 permit 65000:2 0:5 0:70 ip community-list standard 2_7_50 permit 65000:2 0:7 0:50 ip community-list standard 2_10_35 permit 65000:2 0:10 0:35 ip community-list standard 2_14_25 permit 65000:2 0:14 0:25 ip community-list standard 1_94_256 permit 65000:1 0:94 0:256 ip community-list standard 1_95_255 permit 65000:1 0:95 0:255 ip community-list standard 1_96_254 permit 65000:1 0:96 0:254 ip community-list standard 1_97_253 permit 65000:1 0:97 0:253 ip community-list standard 1_98_252 permit 65000:1 0:98 0:252 ip community-list standard 1_99_251 permit 65000:1 0:99 0:251 ip community-list standard 1_100_250 permit 65000:1 0:100 0:250 ip community-list standard 1_101_249 permit 65000:1 0:101 0:249 ip community-list standard 1_102_248 permit 65000:1 0:102 0:248 ip community-list standard 1_103_247 permit 65000:1 0:103 0:247 ip community-list standard 1_104_246 permit 65000:1 0:104 0:246 ip community-list standard 1_105_245 permit 65000:1 0:105 0:245 ip community-list standard 1_106_244 permit 65000:1 0:106 0:244 ip community-list standard 1_107_243 permit 65000:1 0:107 0:243 ip community-list standard 1_108_242 permit 65000:1 0:108 0:242 ip community-list standard 1_109_241 permit 65000:1 0:109 0:241 ip community-list standard 1_110_240 permit 65000:1 0:110 0:240 ip community-list standard 1_111_239 permit 65000:1 0:111 0:239 ip community-list standard 1_112_238 permit 65000:1 0:112 0:238 ip community-list standard 1_113_237 permit 65000:1 0:113 0:237 ip community-list standard 1_114_236 permit 65000:1 0:114 0:236 ip community-list standard 1_115_235 permit 65000:1 0:115 0:235 ip community-list standard 1_116_234 permit 65000:1 0:116 0:234 ip community-list standard 1_117_233 permit 65000:1 0:117 0:233 ip community-list standard 1_118_232 permit 65000:1 0:118 0:232 ip community-list standard 1_119_231 permit 65000:1 0:119 0:231 ip community-list standard 1_120_230 permit 65000:1 0:120 0:230 ip community-list standard 1_121_229 permit 65000:1 0:121 0:229 ip community-list standard 1_122_228 permit 65000:1 0:122 0:228 ip community-list standard 1_123_227 permit 65000:1 0:123 0:227 ip community-list standard 1_124_226 permit 65000:1 0:124 0:226 ip community-list standard 1_125_225 permit 65000:1 0:125 0:225 ip community-list standard 1_126_224 permit 65000:1 0:126 0:224 ip community-list standard 1_127_223 permit 65000:1 0:127 0:223 ip community-list standard 1_128_222 permit 65000:1 0:128 0:222 ip community-list standard 1_129_221 permit 65000:1 0:129 0:221 ip community-list standard 1_130_220 permit 65000:1 0:130 0:220 ip community-list standard 1_131_219 permit 65000:1 0:131 0:219 ip community-list standard 1_132_218 permit 65000:1 0:132 0:218 ip community-list standard 1_133_217 permit 65000:1 0:133 0:217 ip community-list standard 1_134_216 permit 65000:1 0:134 0:216 ip community-list standard 1_135_215 permit 65000:1 0:135 0:215 ip community-list standard 1_136_214 permit 65000:1 0:136 0:214 ip community-list standard 1_137_213 permit 65000:1 0:137 0:213 ip community-list standard 1_138_212 permit 65000:1 0:138 0:212 ip community-list standard 1_139_211 permit 65000:1 0:139 0:211 ip community-list standard 1_140_210 permit 65000:1 0:140 0:210 ip community-list standard 1_141_209 permit 65000:1 0:141 0:209 ip community-list standard 1_142_208 permit 65000:1 0:142 0:208 ip community-list standard 1_143_207 permit 65000:1 0:143 0:207 ip community-list standard 1_144_206 permit 65000:1 0:144 0:206 ip community-list standard 1_145_205 permit 65000:1 0:145 0:205 ip community-list standard 1_146_204 permit 65000:1 0:146 0:204 ip community-list standard 1_147_203 permit 65000:1 0:147 0:203 ip community-list standard 1_148_202 permit 65000:1 0:148 0:202 ip community-list standard 1_149_201 permit 65000:1 0:149 0:201 ip community-list standard 1_150_200 permit 65000:1 0:150 0:200 ip community-list standard 1_151_199 permit 65000:1 0:151 0:199 ip community-list standard 1_152_198 permit 65000:1 0:152 0:198 ip community-list standard 1_153_197 permit 65000:1 0:153 0:197 ip community-list standard 1_154_196 permit 65000:1 0:154 0:196 ip community-list standard 1_155_195 permit 65000:1 0:155 0:195 ip community-list standard 1_156_194 permit 65000:1 0:156 0:194 ip community-list standard 1_157_193 permit 65000:1 0:157 0:193 ip community-list standard 1_158_192 permit 65000:1 0:158 0:192 ip community-list standard 1_159_191 permit 65000:1 0:159 0:191 ip community-list standard 1_160_190 permit 65000:1 0:160 0:190 ip community-list standard 1_161_189 permit 65000:1 0:161 0:189 ip community-list standard 1_162_188 permit 65000:1 0:162 0:188 ip community-list standard 1_163_187 permit 65000:1 0:163 0:187 ip community-list standard 1_164_186 permit 65000:1 0:164 0:186 ip community-list standard 1_165_185 permit 65000:1 0:165 0:185 ip community-list standard 1_166_184 permit 65000:1 0:166 0:184 ip community-list standard 1_167_183 permit 65000:1 0:167 0:183 ip community-list standard 1_168_182 permit 65000:1 0:168 0:182 ip community-list standard 1_169_181 permit 65000:1 0:169 0:181 ip community-list standard 1_170_180 permit 65000:1 0:170 0:180 ip community-list standard 1_171_179 permit 65000:1 0:171 0:179 ip community-list standard 1_172_178 permit 65000:1 0:172 0:178 ip community-list standard 1_173_177 permit 65000:1 0:173 0:177 ip community-list standard 1_174_176 permit 65000:1 0:174 0:176 ip community-list standard 1_175_175 permit 65000:1 0:175 0:175 route-map calculator permit 186 match community 2_2_175 2_5_70 2_7_50 2_10_35 2_14_25 set community 0:350 route-map calculator permit 187 match community 1_94_256 1_95_255 1_96_254 1_97_253 1_98_252 set community 0:350 route-map calculator permit 188 match community 1_99_251 1_100_250 1_101_249 1_102_248 1_103_247 set community 0:350 route-map calculator permit 189 match community 1_104_246 1_105_245 1_106_244 1_107_243 1_108_242 set community 0:350 route-map calculator permit 190 match community 1_109_241 1_110_240 1_111_239 1_112_238 1_113_237 set community 0:350 route-map calculator permit 191 match community 1_114_236 1_115_235 1_116_234 1_117_233 1_118_232 set community 0:350 route-map calculator permit 192 match community 1_119_231 1_120_230 1_121_229 1_122_228 1_123_227 set community 0:350 route-map calculator permit 193 match community 1_124_226 1_125_225 1_126_224 1_127_223 1_128_222 set community 0:350 route-map calculator permit 194 match community 1_129_221 1_130_220 1_131_219 1_132_218 1_133_217 set community 0:350 route-map calculator permit 195 match community 1_134_216 1_135_215 1_136_214 1_137_213 1_138_212 set community 0:350 route-map calculator permit 196 match community 1_139_211 1_140_210 1_141_209 1_142_208 1_143_207 set community 0:350 route-map calculator permit 197 match community 1_144_206 1_145_205 1_146_204 1_147_203 1_148_202 set community 0:350 route-map calculator permit 198 match community 1_149_201 1_150_200 1_151_199 1_152_198 1_153_197 set community 0:350 route-map calculator permit 199 match community 1_154_196 1_155_195 1_156_194 1_157_193 1_158_192 set community 0:350 route-map calculator permit 200 match community 1_159_191 1_160_190 1_161_189 1_162_188 1_163_187 set community 0:350 route-map calculator permit 201 match community 1_164_186 1_165_185 1_166_184 1_167_183 1_168_182 set community 0:350 route-map calculator permit 202 match community 1_169_181 1_170_180 1_171_179 1_172_178 1_173_177 set community 0:350 route-map calculator permit 203 match community 1_174_176 1_175_175 set community 0:350 ip community-list standard 2_94_157 permit 65000:2 0:94 0:157 route-map calculator permit 204 match community 2_94_157 set community 0:14758 ip community-list standard 2_80_163 permit 65000:2 0:80 0:163 route-map calculator permit 205 match community 2_80_163 set community 0:13040 ip community-list standard 2_49_212 permit 65000:2 0:49 0:212 ip community-list standard 2_53_196 permit 65000:2 0:53 0:196 ip community-list standard 2_98_106 permit 65000:2 0:98 0:106 route-map calculator permit 206 match community 2_49_212 2_53_196 2_98_106 set community 0:10388 ip community-list standard 2_178_210 permit 65000:2 0:178 0:210 route-map calculator permit 207 match community 2_178_210 set community 0:37380 ip community-list standard 2_53_145 permit 65000:2 0:53 0:145 route-map calculator permit 208 match community 2_53_145 set community 0:7685 ip community-list standard 2_156_214 permit 65000:2 0:156 0:214 route-map calculator permit 209 match community 2_156_214 set community 0:33384 ip community-list standard 2_159_202 permit 65000:2 0:159 0:202 route-map calculator permit 210 match community 2_159_202 set community 0:32118 ip community-list standard 2_95_190 permit 65000:2 0:95 0:190 route-map calculator permit 211 match community 2_95_190 set community 0:18050 ip community-list standard 2_167_194 permit 65000:2 0:167 0:194 route-map calculator permit 212 match community 2_167_194 set community 0:32398 ip community-list standard 2_105_252 permit 65000:2 0:105 0:252 ip community-list standard 2_108_245 permit 65000:2 0:108 0:245 ip community-list standard 2_126_210 permit 65000:2 0:126 0:210 ip community-list standard 2_135_196 permit 65000:2 0:135 0:196 ip community-list standard 2_140_189 permit 65000:2 0:140 0:189 ip community-list standard 2_147_180 permit 65000:2 0:147 0:180 route-map calculator permit 213 match community 2_105_252 2_108_245 2_126_210 2_135_196 2_140_189 set community 0:26460 route-map calculator permit 214 match community 2_147_180 set community 0:26460 ip community-list standard 2_223_227 permit 65000:2 0:223 0:227 route-map calculator permit 215 match community 2_223_227 set community 0:50621 ip community-list standard 2_234_237 permit 65000:2 0:234 0:237 route-map calculator permit 216 match community 2_234_237 set community 0:55458 ip community-list standard 2_72_222 permit 65000:2 0:72 0:222 ip community-list standard 2_74_216 permit 65000:2 0:74 0:216 ip community-list standard 2_108_148 permit 65000:2 0:108 0:148 ip community-list standard 2_111_144 permit 65000:2 0:111 0:144 route-map calculator permit 217 match community 2_72_222 2_74_216 2_108_148 2_111_144 set community 0:15984 ip community-list standard 2_80_178 permit 65000:2 0:80 0:178 ip community-list standard 2_89_160 permit 65000:2 0:89 0:160 route-map calculator permit 218 match community 2_80_178 2_89_160 set community 0:14240 ip community-list standard 2_85_202 permit 65000:2 0:85 0:202 ip community-list standard 2_101_170 permit 65000:2 0:101 0:170 route-map calculator permit 219 match community 2_85_202 2_101_170 set community 0:17170 ip community-list standard 2_156_224 permit 65000:2 0:156 0:224 ip community-list standard 2_168_208 permit 65000:2 0:168 0:208 ip community-list standard 2_182_192 permit 65000:2 0:182 0:192 route-map calculator permit 220 match community 2_156_224 2_168_208 2_182_192 set community 0:34944 ip community-list standard 2_115_137 permit 65000:2 0:115 0:137 route-map calculator permit 221 match community 2_115_137 set community 0:15755 ip community-list standard 2_71_83 permit 65000:2 0:71 0:83 route-map calculator permit 222 match community 2_71_83 set community 0:5893 ip community-list standard 2_48_181 permit 65000:2 0:48 0:181 route-map calculator permit 223 match community 2_48_181 set community 0:8688 ip community-list standard 2_191_231 permit 65000:2 0:191 0:231 route-map calculator permit 224 match community 2_191_231 set community 0:44121 ip community-list standard 2_148_256 permit 65000:2 0:148 0:256 route-map calculator permit 225 match community 2_148_256 set community 0:37888 ip community-list standard 2_62_226 permit 65000:2 0:62 0:226 ip community-list standard 2_113_124 permit 65000:2 0:113 0:124 route-map calculator permit 226 match community 2_62_226 2_113_124 set community 0:14012 ip community-list standard 2_174_243 permit 65000:2 0:174 0:243 route-map calculator permit 227 match community 2_174_243 set community 0:42282 ip community-list standard 2_183_214 permit 65000:2 0:183 0:214 route-map calculator permit 228 match community 2_183_214 set community 0:39162 ip community-list standard 2_61_143 permit 65000:2 0:61 0:143 route-map calculator permit 229 match community 2_61_143 set community 0:8723 ip community-list standard 2_100_236 permit 65000:2 0:100 0:236 ip community-list standard 2_118_200 permit 65000:2 0:118 0:200 route-map calculator permit 230 match community 2_100_236 2_118_200 set community 0:23600 ip community-list standard 2_133_189 permit 65000:2 0:133 0:189 ip community-list standard 2_147_171 permit 65000:2 0:147 0:171 route-map calculator permit 231 match community 2_133_189 2_147_171 set community 0:25137 ip community-list standard 2_233_245 permit 65000:2 0:233 0:245 route-map calculator permit 232 match community 2_233_245 set community 0:57085 ip community-list standard 2_136_230 permit 65000:2 0:136 0:230 ip community-list standard 2_170_184 permit 65000:2 0:170 0:184 route-map calculator permit 233 match community 2_136_230 2_170_184 set community 0:31280 ip community-list standard 2_97_198 permit 65000:2 0:97 0:198 ip community-list standard 2_99_194 permit 65000:2 0:99 0:194 route-map calculator permit 234 match community 2_97_198 2_99_194 set community 0:19206 ip community-list standard 2_193_200 permit 65000:2 0:193 0:200 route-map calculator permit 235 match community 2_193_200 set community 0:38600 ip community-list standard 2_134_253 permit 65000:2 0:134 0:253 route-map calculator permit 236 match community 2_134_253 set community 0:33902 ip community-list standard 2_126_243 permit 65000:2 0:126 0:243 ip community-list standard 2_162_189 permit 65000:2 0:162 0:189 route-map calculator permit 237 match community 2_126_243 2_162_189 set community 0:30618 ip community-list standard 2_127_161 permit 65000:2 0:127 0:161 route-map calculator permit 238 match community 2_127_161 set community 0:20447 ip community-list standard 2_153_163 permit 65000:2 0:153 0:163 route-map calculator permit 239 match community 2_153_163 set community 0:24939 ip community-list standard 2_224_227 permit 65000:2 0:224 0:227 route-map calculator permit 240 match community 2_224_227 set community 0:50848 ip community-list standard 2_26_252 permit 65000:2 0:26 0:252 ip community-list standard 2_28_234 permit 65000:2 0:28 0:234 ip community-list standard 2_36_182 permit 65000:2 0:36 0:182 ip community-list standard 2_39_168 permit 65000:2 0:39 0:168 ip community-list standard 2_42_156 permit 65000:2 0:42 0:156 ip community-list standard 2_52_126 permit 65000:2 0:52 0:126 ip community-list standard 2_56_117 permit 65000:2 0:56 0:117 ip community-list standard 2_63_104 permit 65000:2 0:63 0:104 ip community-list standard 2_72_91 permit 65000:2 0:72 0:91 ip community-list standard 2_78_84 permit 65000:2 0:78 0:84 route-map calculator permit 241 match community 2_26_252 2_28_234 2_36_182 2_39_168 2_42_156 set community 0:6552 route-map calculator permit 242 match community 2_52_126 2_56_117 2_63_104 2_72_91 2_78_84 set community 0:6552 ip community-list standard 2_25_143 permit 65000:2 0:25 0:143 ip community-list standard 2_55_65 permit 65000:2 0:55 0:65 route-map calculator permit 243 match community 2_25_143 2_55_65 set community 0:3575 ip community-list standard 2_199_228 permit 65000:2 0:199 0:228 route-map calculator permit 244 match community 2_199_228 set community 0:45372 ip community-list standard 2_115_230 permit 65000:2 0:115 0:230 route-map calculator permit 245 match community 2_115_230 set community 0:26450 ip community-list standard 2_192_237 permit 65000:2 0:192 0:237 route-map calculator permit 246 match community 2_192_237 set community 0:45504 ip community-list standard 2_150_214 permit 65000:2 0:150 0:214 route-map calculator permit 247 match community 2_150_214 set community 0:32100 ip community-list standard 2_205_208 permit 65000:2 0:205 0:208 route-map calculator permit 248 match community 2_205_208 set community 0:42640 ip community-list standard 2_5_231 permit 65000:2 0:5 0:231 ip community-list standard 2_7_165 permit 65000:2 0:7 0:165 ip community-list standard 2_11_105 permit 65000:2 0:11 0:105 ip community-list standard 2_15_77 permit 65000:2 0:15 0:77 ip community-list standard 2_21_55 permit 65000:2 0:21 0:55 ip community-list standard 2_33_35 permit 65000:2 0:33 0:35 route-map calculator permit 249 match community 2_5_231 2_7_165 2_11_105 2_15_77 2_21_55 set community 0:1155 route-map calculator permit 250 match community 2_33_35 set community 0:1155 ip community-list standard 2_76_220 permit 65000:2 0:76 0:220 ip community-list standard 2_80_209 permit 65000:2 0:80 0:209 ip community-list standard 2_88_190 permit 65000:2 0:88 0:190 ip community-list standard 2_95_176 permit 65000:2 0:95 0:176 ip community-list standard 2_110_152 permit 65000:2 0:110 0:152 route-map calculator permit 251 match community 2_76_220 2_80_209 2_88_190 2_95_176 2_110_152 set community 0:16720 ip community-list standard 2_102_246 permit 65000:2 0:102 0:246 ip community-list standard 2_123_204 permit 65000:2 0:123 0:204 ip community-list standard 2_153_164 permit 65000:2 0:153 0:164 route-map calculator permit 252 match community 2_102_246 2_123_204 2_153_164 set community 0:25092 ip community-list standard 2_131_166 permit 65000:2 0:131 0:166 route-map calculator permit 253 match community 2_131_166 set community 0:21746 ip community-list standard 2_175_252 permit 65000:2 0:175 0:252 ip community-list standard 2_180_245 permit 65000:2 0:180 0:245 ip community-list standard 2_196_225 permit 65000:2 0:196 0:225 ip community-list standard 2_210_210 permit 65000:2 0:210 0:210 route-map calculator permit 254 match community 2_175_252 2_180_245 2_196_225 2_210_210 set community 0:44100 ip community-list standard 2_230_241 permit 65000:2 0:230 0:241 route-map calculator permit 255 match community 2_230_241 set community 0:55430 ip community-list standard 2_156_194 permit 65000:2 0:156 0:194 route-map calculator permit 256 match community 2_156_194 set community 0:30264 ip community-list standard 2_33_209 permit 65000:2 0:33 0:209 ip community-list standard 2_57_121 permit 65000:2 0:57 0:121 route-map calculator permit 257 match community 2_33_209 2_57_121 set community 0:6897 ip community-list standard 2_33_195 permit 65000:2 0:33 0:195 ip community-list standard 2_39_165 permit 65000:2 0:39 0:165 ip community-list standard 2_45_143 permit 65000:2 0:45 0:143 ip community-list standard 2_55_117 permit 65000:2 0:55 0:117 ip community-list standard 2_65_99 permit 65000:2 0:65 0:99 route-map calculator permit 258 match community 2_33_195 2_39_165 2_45_143 2_55_117 2_65_99 set community 0:6435 ip community-list standard 2_234_245 permit 65000:2 0:234 0:245 route-map calculator permit 259 match community 2_234_245 set community 0:57330 ip community-list standard 2_103_185 permit 65000:2 0:103 0:185 route-map calculator permit 260 match community 2_103_185 set community 0:19055 ip community-list standard 2_178_231 permit 65000:2 0:178 0:231 route-map calculator permit 261 match community 2_178_231 set community 0:41118 ip community-list standard 2_135_178 permit 65000:2 0:135 0:178 route-map calculator permit 262 match community 2_135_178 set community 0:24030 ip community-list standard 2_160_239 permit 65000:2 0:160 0:239 route-map calculator permit 263 match community 2_160_239 set community 0:38240 ip community-list standard 2_7_200 permit 65000:2 0:7 0:200 ip community-list standard 2_8_175 permit 65000:2 0:8 0:175 ip community-list standard 2_10_140 permit 65000:2 0:10 0:140 ip community-list standard 2_14_100 permit 65000:2 0:14 0:100 ip community-list standard 2_20_70 permit 65000:2 0:20 0:70 ip community-list standard 2_25_56 permit 65000:2 0:25 0:56 ip community-list standard 2_28_50 permit 65000:2 0:28 0:50 ip community-list standard 2_35_40 permit 65000:2 0:35 0:40 route-map calculator permit 264 match community 2_7_200 2_8_175 2_10_140 2_14_100 2_20_70 set community 0:1400 route-map calculator permit 265 match community 2_25_56 2_28_50 2_35_40 set community 0:1400 ip community-list standard 2_172_216 permit 65000:2 0:172 0:216 route-map calculator permit 266 match community 2_172_216 set community 0:37152 ip community-list standard 2_76_191 permit 65000:2 0:76 0:191 route-map calculator permit 267 match community 2_76_191 set community 0:14516 ip community-list standard 2_56_205 permit 65000:2 0:56 0:205 ip community-list standard 2_70_164 permit 65000:2 0:70 0:164 ip community-list standard 2_82_140 permit 65000:2 0:82 0:140 route-map calculator permit 268 match community 2_56_205 2_70_164 2_82_140 set community 0:11480 ip community-list standard 2_165_227 permit 65000:2 0:165 0:227 route-map calculator permit 269 match community 2_165_227 set community 0:37455 ip community-list standard 2_99_185 permit 65000:2 0:99 0:185 ip community-list standard 2_111_165 permit 65000:2 0:111 0:165 route-map calculator permit 270 match community 2_99_185 2_111_165 set community 0:18315 ip community-list standard 2_33_246 permit 65000:2 0:33 0:246 ip community-list standard 2_41_198 permit 65000:2 0:41 0:198 ip community-list standard 2_66_123 permit 65000:2 0:66 0:123 ip community-list standard 2_82_99 permit 65000:2 0:82 0:99 route-map calculator permit 271 match community 2_33_246 2_41_198 2_66_123 2_82_99 set community 0:8118 ip community-list standard 2_170_211 permit 65000:2 0:170 0:211 route-map calculator permit 272 match community 2_170_211 set community 0:35870 ip community-list standard 2_134_215 permit 65000:2 0:134 0:215 route-map calculator permit 273 match community 2_134_215 set community 0:28810 ip community-list standard 2_72_252 permit 65000:2 0:72 0:252 ip community-list standard 2_81_224 permit 65000:2 0:81 0:224 ip community-list standard 2_84_216 permit 65000:2 0:84 0:216 ip community-list standard 2_96_189 permit 65000:2 0:96 0:189 ip community-list standard 2_108_168 permit 65000:2 0:108 0:168 ip community-list standard 2_112_162 permit 65000:2 0:112 0:162 ip community-list standard 2_126_144 permit 65000:2 0:126 0:144 route-map calculator permit 274 match community 2_72_252 2_81_224 2_84_216 2_96_189 2_108_168 set community 0:18144 route-map calculator permit 275 match community 2_112_162 2_126_144 set community 0:18144 ip community-list standard 2_193_220 permit 65000:2 0:193 0:220 route-map calculator permit 276 match community 2_193_220 set community 0:42460 ip community-list standard 2_139_178 permit 65000:2 0:139 0:178 route-map calculator permit 277 match community 2_139_178 set community 0:24742 ip community-list standard 2_177_199 permit 65000:2 0:177 0:199 route-map calculator permit 278 match community 2_177_199 set community 0:35223 ip community-list standard 2_15_179 permit 65000:2 0:15 0:179 route-map calculator permit 279 match community 2_15_179 set community 0:2685 ip community-list standard 2_246_250 permit 65000:2 0:246 0:250 route-map calculator permit 280 match community 2_246_250 set community 0:61500 ip community-list standard 2_233_235 permit 65000:2 0:233 0:235 route-map calculator permit 281 match community 2_233_235 set community 0:54755 ip community-list standard 2_207_255 permit 65000:2 0:207 0:255 route-map calculator permit 282 match community 2_207_255 set community 0:52785 ip community-list standard 2_119_119 permit 65000:2 0:119 0:119 route-map calculator permit 283 match community 2_119_119 set community 0:14161 ip community-list standard 2_37_119 permit 65000:2 0:37 0:119 route-map calculator permit 284 match community 2_37_119 set community 0:4403 ip community-list standard 2_137_238 permit 65000:2 0:137 0:238 route-map calculator permit 285 match community 2_137_238 set community 0:32606 ip community-list standard 2_140_193 permit 65000:2 0:140 0:193 route-map calculator permit 286 match community 2_140_193 set community 0:27020 ip community-list standard 2_107_252 permit 65000:2 0:107 0:252 ip community-list standard 2_126_214 permit 65000:2 0:126 0:214 route-map calculator permit 287 match community 2_107_252 2_126_214 set community 0:26964 ip community-list standard 2_46_138 permit 65000:2 0:46 0:138 ip community-list standard 2_69_92 permit 65000:2 0:69 0:92 route-map calculator permit 288 match community 2_46_138 2_69_92 set community 0:6348 ip community-list standard 2_7_215 permit 65000:2 0:7 0:215 ip community-list standard 2_35_43 permit 65000:2 0:35 0:43 route-map calculator permit 289 match community 2_7_215 2_35_43 set community 0:1505 ip community-list standard 2_156_163 permit 65000:2 0:156 0:163 route-map calculator permit 290 match community 2_156_163 set community 0:25428 ip community-list standard 2_130_240 permit 65000:2 0:130 0:240 ip community-list standard 2_150_208 permit 65000:2 0:150 0:208 ip community-list standard 2_156_200 permit 65000:2 0:156 0:200 ip community-list standard 2_160_195 permit 65000:2 0:160 0:195 route-map calculator permit 291 match community 2_130_240 2_150_208 2_156_200 2_160_195 set community 0:31200 ip community-list standard 2_17_229 permit 65000:2 0:17 0:229 route-map calculator permit 292 match community 2_17_229 set community 0:3893 ip community-list standard 2_28_173 permit 65000:2 0:28 0:173 route-map calculator permit 293 match community 2_28_173 set community 0:4844 ip community-list standard 2_38_253 permit 65000:2 0:38 0:253 ip community-list standard 2_46_209 permit 65000:2 0:46 0:209 route-map calculator permit 294 match community 2_38_253 2_46_209 set community 0:9614 ip community-list standard 2_68_131 permit 65000:2 0:68 0:131 route-map calculator permit 295 match community 2_68_131 set community 0:8908 ip community-list standard 2_94_199 permit 65000:2 0:94 0:199 route-map calculator permit 296 match community 2_94_199 set community 0:18706 ip community-list standard 2_185_243 permit 65000:2 0:185 0:243 route-map calculator permit 297 match community 2_185_243 set community 0:44955 ip community-list standard 2_47_192 permit 65000:2 0:47 0:192 ip community-list standard 2_48_188 permit 65000:2 0:48 0:188 ip community-list standard 2_64_141 permit 65000:2 0:64 0:141 ip community-list standard 2_94_96 permit 65000:2 0:94 0:96 route-map calculator permit 298 match community 2_47_192 2_48_188 2_64_141 2_94_96 set community 0:9024 ip community-list standard 2_113_250 permit 65000:2 0:113 0:250 ip community-list standard 2_125_226 permit 65000:2 0:125 0:226 route-map calculator permit 299 match community 2_113_250 2_125_226 set community 0:28250 ip community-list standard 1_1_120 permit 65000:1 0:1 0:120 ip community-list standard 2_1_121 permit 65000:2 0:1 0:121 ip community-list standard 1_2_119 permit 65000:1 0:2 0:119 ip community-list standard 1_3_118 permit 65000:1 0:3 0:118 ip community-list standard 1_4_117 permit 65000:1 0:4 0:117 ip community-list standard 1_5_116 permit 65000:1 0:5 0:116 ip community-list standard 1_6_115 permit 65000:1 0:6 0:115 ip community-list standard 1_7_114 permit 65000:1 0:7 0:114 ip community-list standard 1_8_113 permit 65000:1 0:8 0:113 ip community-list standard 1_9_112 permit 65000:1 0:9 0:112 ip community-list standard 1_10_111 permit 65000:1 0:10 0:111 ip community-list standard 2_11_11 permit 65000:2 0:11 0:11 ip community-list standard 1_11_110 permit 65000:1 0:11 0:110 ip community-list standard 1_12_109 permit 65000:1 0:12 0:109 ip community-list standard 1_13_108 permit 65000:1 0:13 0:108 ip community-list standard 1_14_107 permit 65000:1 0:14 0:107 ip community-list standard 1_15_106 permit 65000:1 0:15 0:106 ip community-list standard 1_16_105 permit 65000:1 0:16 0:105 ip community-list standard 1_17_104 permit 65000:1 0:17 0:104 ip community-list standard 1_18_103 permit 65000:1 0:18 0:103 ip community-list standard 1_19_102 permit 65000:1 0:19 0:102 ip community-list standard 1_20_101 permit 65000:1 0:20 0:101 ip community-list standard 1_21_100 permit 65000:1 0:21 0:100 ip community-list standard 1_22_99 permit 65000:1 0:22 0:99 ip community-list standard 1_23_98 permit 65000:1 0:23 0:98 ip community-list standard 1_24_97 permit 65000:1 0:24 0:97 ip community-list standard 1_25_96 permit 65000:1 0:25 0:96 ip community-list standard 1_26_95 permit 65000:1 0:26 0:95 ip community-list standard 1_27_94 permit 65000:1 0:27 0:94 ip community-list standard 1_28_93 permit 65000:1 0:28 0:93 ip community-list standard 1_29_92 permit 65000:1 0:29 0:92 ip community-list standard 1_30_91 permit 65000:1 0:30 0:91 ip community-list standard 1_31_90 permit 65000:1 0:31 0:90 ip community-list standard 1_32_89 permit 65000:1 0:32 0:89 ip community-list standard 1_33_88 permit 65000:1 0:33 0:88 ip community-list standard 1_34_87 permit 65000:1 0:34 0:87 ip community-list standard 1_35_86 permit 65000:1 0:35 0:86 ip community-list standard 1_36_85 permit 65000:1 0:36 0:85 ip community-list standard 1_37_84 permit 65000:1 0:37 0:84 ip community-list standard 1_38_83 permit 65000:1 0:38 0:83 ip community-list standard 1_39_82 permit 65000:1 0:39 0:82 ip community-list standard 1_40_81 permit 65000:1 0:40 0:81 ip community-list standard 1_41_80 permit 65000:1 0:41 0:80 ip community-list standard 1_42_79 permit 65000:1 0:42 0:79 ip community-list standard 1_43_78 permit 65000:1 0:43 0:78 ip community-list standard 1_44_77 permit 65000:1 0:44 0:77 ip community-list standard 1_45_76 permit 65000:1 0:45 0:76 ip community-list standard 1_46_75 permit 65000:1 0:46 0:75 ip community-list standard 1_47_74 permit 65000:1 0:47 0:74 ip community-list standard 1_48_73 permit 65000:1 0:48 0:73 ip community-list standard 1_49_72 permit 65000:1 0:49 0:72 ip community-list standard 1_50_71 permit 65000:1 0:50 0:71 ip community-list standard 1_51_70 permit 65000:1 0:51 0:70 ip community-list standard 1_52_69 permit 65000:1 0:52 0:69 ip community-list standard 1_53_68 permit 65000:1 0:53 0:68 ip community-list standard 1_54_67 permit 65000:1 0:54 0:67 ip community-list standard 1_55_66 permit 65000:1 0:55 0:66 ip community-list standard 1_56_65 permit 65000:1 0:56 0:65 ip community-list standard 1_57_64 permit 65000:1 0:57 0:64 ip community-list standard 1_58_63 permit 65000:1 0:58 0:63 ip community-list standard 1_59_62 permit 65000:1 0:59 0:62 ip community-list standard 1_60_61 permit 65000:1 0:60 0:61 ip community-list expanded c121 permit 1 ^65000:4_0:121_0:1$ ip community-list expanded c121 permit 2 ^65000:3_0:122_0:1$ ip community-list expanded c121 permit 3 ^65000:3_0:123_0:2$ ip community-list expanded c121 permit 4 ^65000:3_0:124_0:3$ ip community-list expanded c121 permit 5 ^65000:3_0:125_0:4$ ip community-list expanded c121 permit 6 ^65000:3_0:126_0:5$ ip community-list expanded c121 permit 7 ^65000:3_0:127_0:6$ ip community-list expanded c121 permit 8 ^65000:3_0:128_0:7$ ip community-list expanded c121 permit 9 ^65000:3_0:129_0:8$ ip community-list expanded c121 permit 10 ^65000:3_0:130_0:9$ ip community-list expanded c121 permit 11 ^65000:3_0:131_0:10$ ip community-list expanded c121 permit 12 ^65000:3_0:132_0:11$ ip community-list expanded c121 permit 13 ^65000:3_0:133_0:12$ ip community-list expanded c121 permit 14 ^65000:3_0:134_0:13$ ip community-list expanded c121 permit 15 ^65000:3_0:135_0:14$ ip community-list expanded c121 permit 16 ^65000:3_0:136_0:15$ ip community-list expanded c121 permit 17 ^65000:3_0:137_0:16$ ip community-list expanded c121 permit 18 ^65000:3_0:138_0:17$ ip community-list expanded c121 permit 19 ^65000:3_0:139_0:18$ ip community-list expanded c121 permit 20 ^65000:3_0:140_0:19$ ip community-list expanded c121 permit 21 ^65000:3_0:141_0:20$ ip community-list expanded c121 permit 22 ^65000:3_0:142_0:21$ ip community-list expanded c121 permit 23 ^65000:3_0:143_0:22$ ip community-list expanded c121 permit 24 ^65000:3_0:144_0:23$ ip community-list expanded c121 permit 25 ^65000:3_0:145_0:24$ ip community-list expanded c121 permit 26 ^65000:3_0:146_0:25$ ip community-list expanded c121 permit 27 ^65000:3_0:147_0:26$ ip community-list expanded c121 permit 28 ^65000:3_0:148_0:27$ ip community-list expanded c121 permit 29 ^65000:3_0:149_0:28$ ip community-list expanded c121 permit 30 ^65000:3_0:150_0:29$ ip community-list expanded c121 permit 31 ^65000:3_0:151_0:30$ ip community-list expanded c121 permit 32 ^65000:3_0:152_0:31$ ip community-list expanded c121 permit 33 ^65000:3_0:153_0:32$ ip community-list expanded c121 permit 34 ^65000:3_0:154_0:33$ ip community-list expanded c121 permit 35 ^65000:3_0:155_0:34$ ip community-list expanded c121 permit 36 ^65000:3_0:156_0:35$ ip community-list expanded c121 permit 37 ^65000:3_0:157_0:36$ ip community-list expanded c121 permit 38 ^65000:3_0:158_0:37$ ip community-list expanded c121 permit 39 ^65000:3_0:159_0:38$ ip community-list expanded c121 permit 40 ^65000:3_0:160_0:39$ ip community-list expanded c121 permit 41 ^65000:3_0:161_0:40$ ip community-list expanded c121 permit 42 ^65000:3_0:162_0:41$ ip community-list expanded c121 permit 43 ^65000:3_0:163_0:42$ ip community-list expanded c121 permit 44 ^65000:3_0:164_0:43$ ip community-list expanded c121 permit 45 ^65000:3_0:165_0:44$ ip community-list expanded c121 permit 46 ^65000:3_0:166_0:45$ ip community-list expanded c121 permit 47 ^65000:3_0:167_0:46$ ip community-list expanded c121 permit 48 ^65000:3_0:168_0:47$ ip community-list expanded c121 permit 49 ^65000:3_0:169_0:48$ ip community-list expanded c121 permit 50 ^65000:3_0:170_0:49$ ip community-list expanded c121 permit 51 ^65000:3_0:171_0:50$ ip community-list expanded c121 permit 52 ^65000:3_0:172_0:51$ ip community-list expanded c121 permit 53 ^65000:3_0:173_0:52$ ip community-list expanded c121 permit 54 ^65000:3_0:174_0:53$ ip community-list expanded c121 permit 55 ^65000:3_0:175_0:54$ ip community-list expanded c121 permit 56 ^65000:3_0:176_0:55$ ip community-list expanded c121 permit 57 ^65000:3_0:177_0:56$ ip community-list expanded c121 permit 58 ^65000:3_0:178_0:57$ ip community-list expanded c121 permit 59 ^65000:3_0:179_0:58$ ip community-list expanded c121 permit 60 ^65000:3_0:180_0:59$ ip community-list expanded c121 permit 61 ^65000:3_0:181_0:60$ ip community-list expanded c121 permit 62 ^65000:3_0:182_0:61$ ip community-list expanded c121 permit 63 ^65000:3_0:183_0:62$ ip community-list expanded c121 permit 64 ^65000:3_0:184_0:63$ ip community-list expanded c121 permit 65 ^65000:3_0:185_0:64$ ip community-list expanded c121 permit 66 ^65000:3_0:186_0:65$ ip community-list expanded c121 permit 67 ^65000:3_0:187_0:66$ ip community-list expanded c121 permit 68 ^65000:3_0:188_0:67$ ip community-list expanded c121 permit 69 ^65000:3_0:189_0:68$ ip community-list expanded c121 permit 70 ^65000:3_0:190_0:69$ ip community-list expanded c121 permit 71 ^65000:3_0:191_0:70$ ip community-list expanded c121 permit 72 ^65000:3_0:192_0:71$ ip community-list expanded c121 permit 73 ^65000:3_0:193_0:72$ ip community-list expanded c121 permit 74 ^65000:3_0:194_0:73$ ip community-list expanded c121 permit 75 ^65000:3_0:195_0:74$ ip community-list expanded c121 permit 76 ^65000:3_0:196_0:75$ ip community-list expanded c121 permit 77 ^65000:3_0:197_0:76$ ip community-list expanded c121 permit 78 ^65000:3_0:198_0:77$ ip community-list expanded c121 permit 79 ^65000:3_0:199_0:78$ ip community-list expanded c121 permit 80 ^65000:3_0:200_0:79$ ip community-list expanded c121 permit 81 ^65000:3_0:201_0:80$ ip community-list expanded c121 permit 82 ^65000:3_0:202_0:81$ ip community-list expanded c121 permit 83 ^65000:3_0:203_0:82$ ip community-list expanded c121 permit 84 ^65000:3_0:204_0:83$ ip community-list expanded c121 permit 85 ^65000:3_0:205_0:84$ ip community-list expanded c121 permit 86 ^65000:3_0:206_0:85$ ip community-list expanded c121 permit 87 ^65000:3_0:207_0:86$ ip community-list expanded c121 permit 88 ^65000:3_0:208_0:87$ ip community-list expanded c121 permit 89 ^65000:3_0:209_0:88$ ip community-list expanded c121 permit 90 ^65000:3_0:210_0:89$ ip community-list expanded c121 permit 91 ^65000:3_0:211_0:90$ ip community-list expanded c121 permit 92 ^65000:3_0:212_0:91$ ip community-list expanded c121 permit 93 ^65000:3_0:213_0:92$ ip community-list expanded c121 permit 94 ^65000:3_0:214_0:93$ ip community-list expanded c121 permit 95 ^65000:3_0:215_0:94$ ip community-list expanded c121 permit 96 ^65000:3_0:216_0:95$ ip community-list expanded c121 permit 97 ^65000:3_0:217_0:96$ ip community-list expanded c121 permit 98 ^65000:3_0:218_0:97$ ip community-list expanded c121 permit 99 ^65000:3_0:219_0:98$ ip community-list expanded c121 permit 100 ^65000:3_0:220_0:99$ ip community-list expanded c121 permit 101 ^65000:3_0:221_0:100$ ip community-list expanded c121 permit 102 ^65000:3_0:222_0:101$ ip community-list expanded c121 permit 103 ^65000:3_0:223_0:102$ ip community-list expanded c121 permit 104 ^65000:3_0:224_0:103$ ip community-list expanded c121 permit 105 ^65000:3_0:225_0:104$ ip community-list expanded c121 permit 106 ^65000:3_0:226_0:105$ ip community-list expanded c121 permit 107 ^65000:3_0:227_0:106$ ip community-list expanded c121 permit 108 ^65000:3_0:228_0:107$ ip community-list expanded c121 permit 109 ^65000:3_0:229_0:108$ ip community-list expanded c121 permit 110 ^65000:3_0:230_0:109$ ip community-list expanded c121 permit 111 ^65000:3_0:231_0:110$ ip community-list expanded c121 permit 112 ^65000:3_0:232_0:111$ ip community-list expanded c121 permit 113 ^65000:3_0:233_0:112$ ip community-list expanded c121 permit 114 ^65000:3_0:234_0:113$ ip community-list expanded c121 permit 115 ^65000:3_0:235_0:114$ ip community-list expanded c121 permit 116 ^65000:3_0:236_0:115$ ip community-list expanded c121 permit 117 ^65000:3_0:237_0:116$ ip community-list expanded c121 permit 118 ^65000:3_0:238_0:117$ ip community-list expanded c121 permit 119 ^65000:3_0:239_0:118$ ip community-list expanded c121 permit 120 ^65000:3_0:240_0:119$ ip community-list expanded c121 permit 121 ^65000:3_0:241_0:120$ ip community-list expanded c121 permit 122 ^65000:4_0:242_0:2$ ip community-list expanded c121 permit 123 ^65000:3_0:242_0:121$ ip community-list expanded c121 permit 124 ^65000:4_0:243_0:2$ ip community-list expanded c121 permit 125 ^65000:3_0:243_0:122$ ip community-list expanded c121 permit 126 ^65000:3_0:244_0:123$ ip community-list expanded c121 permit 127 ^65000:3_0:245_0:124$ ip community-list expanded c121 permit 128 ^65000:3_0:246_0:125$ ip community-list expanded c121 permit 129 ^65000:3_0:247_0:126$ ip community-list expanded c121 permit 130 ^65000:3_0:248_0:127$ ip community-list expanded c121 permit 131 ^65000:3_0:249_0:128$ ip community-list expanded c121 permit 132 ^65000:3_0:250_0:129$ ip community-list expanded c121 permit 133 ^65000:3_0:251_0:130$ ip community-list expanded c121 permit 134 ^65000:3_0:252_0:131$ ip community-list expanded c121 permit 135 ^65000:3_0:253_0:132$ ip community-list expanded c121 permit 136 ^65000:3_0:254_0:133$ ip community-list expanded c121 permit 137 ^65000:3_0:255_0:134$ ip community-list expanded c121 permit 138 ^65000:3_0:256_0:135$ route-map calculator permit 300 match community 1_1_120 2_1_121 1_2_119 1_3_118 1_4_117 set community 0:121 route-map calculator permit 301 match community 1_5_116 1_6_115 1_7_114 1_8_113 1_9_112 set community 0:121 route-map calculator permit 302 match community 1_10_111 2_11_11 1_11_110 1_12_109 1_13_108 set community 0:121 route-map calculator permit 303 match community 1_14_107 1_15_106 1_16_105 1_17_104 1_18_103 set community 0:121 route-map calculator permit 304 match community 1_19_102 1_20_101 1_21_100 1_22_99 1_23_98 set community 0:121 route-map calculator permit 305 match community 1_24_97 1_25_96 1_26_95 1_27_94 1_28_93 set community 0:121 route-map calculator permit 306 match community 1_29_92 1_30_91 1_31_90 1_32_89 1_33_88 set community 0:121 route-map calculator permit 307 match community 1_34_87 1_35_86 1_36_85 1_37_84 1_38_83 set community 0:121 route-map calculator permit 308 match community 1_39_82 1_40_81 1_41_80 1_42_79 1_43_78 set community 0:121 route-map calculator permit 309 match community 1_44_77 1_45_76 1_46_75 1_47_74 1_48_73 set community 0:121 route-map calculator permit 310 match community 1_49_72 1_50_71 1_51_70 1_52_69 1_53_68 set community 0:121 route-map calculator permit 311 match community 1_54_67 1_55_66 1_56_65 1_57_64 1_58_63 set community 0:121 route-map calculator permit 312 match community 1_59_62 1_60_61 c4_121_1 c3_122_1 c3_123_2 set community 0:121 route-map calculator permit 313 match community c3_124_3 c3_125_4 c3_126_5 c3_127_6 c3_128_7 set community 0:121 route-map calculator permit 314 match community c3_129_8 c3_130_9 c3_131_10 c3_132_11 c3_133_12 set community 0:121 route-map calculator permit 315 match community c3_134_13 c3_135_14 c3_136_15 c3_137_16 c3_138_17 set community 0:121 route-map calculator permit 316 match community c3_139_18 c3_140_19 c3_141_20 c3_142_21 c3_143_22 set community 0:121 route-map calculator permit 317 match community c3_144_23 c3_145_24 c3_146_25 c3_147_26 c3_148_27 set community 0:121 route-map calculator permit 318 match community c3_149_28 c3_150_29 c3_151_30 c3_152_31 c3_153_32 set community 0:121 route-map calculator permit 319 match community c3_154_33 c3_155_34 c3_156_35 c3_157_36 c3_158_37 set community 0:121 route-map calculator permit 320 match community c3_159_38 c3_160_39 c3_161_40 c3_162_41 c3_163_42 set community 0:121 route-map calculator permit 321 match community c3_164_43 c3_165_44 c3_166_45 c3_167_46 c3_168_47 set community 0:121 route-map calculator permit 322 match community c3_169_48 c3_170_49 c3_171_50 c3_172_51 c3_173_52 set community 0:121 route-map calculator permit 323 match community c3_174_53 c3_175_54 c3_176_55 c3_177_56 c3_178_57 set community 0:121 route-map calculator permit 324 match community c3_179_58 c3_180_59 c3_181_60 c3_182_61 c3_183_62 set community 0:121 route-map calculator permit 325 match community c3_184_63 c3_185_64 c3_186_65 c3_187_66 c3_188_67 set community 0:121 route-map calculator permit 326 match community c3_189_68 c3_190_69 c3_191_70 c3_192_71 c3_193_72 set community 0:121 route-map calculator permit 327 match community c3_194_73 c3_195_74 c3_196_75 c3_197_76 c3_198_77 set community 0:121 route-map calculator permit 328 match community c3_199_78 c3_200_79 c3_201_80 c3_202_81 c3_203_82 set community 0:121 route-map calculator permit 329 match community c3_204_83 c3_205_84 c3_206_85 c3_207_86 c3_208_87 set community 0:121 route-map calculator permit 330 match community c3_209_88 c3_210_89 c3_211_90 c3_212_91 c3_213_92 set community 0:121 route-map calculator permit 331 match community c3_214_93 c3_215_94 c3_216_95 c3_217_96 c3_218_97 set community 0:121 route-map calculator permit 332 match community c3_219_98 c3_220_99 c3_221_100 c3_222_101 c3_223_102 set community 0:121 route-map calculator permit 333 match community c3_224_103 c3_225_104 c3_226_105 c3_227_106 c3_228_107 set community 0:121 route-map calculator permit 334 match community c3_229_108 c3_230_109 c3_231_110 c3_232_111 c3_233_112 set community 0:121 route-map calculator permit 335 match community c3_234_113 c3_235_114 c3_236_115 c3_237_116 c3_238_117 set community 0:121 route-map calculator permit 336 match community c3_239_118 c3_240_119 c3_241_120 c4_242_2 c3_242_121 set community 0:121 route-map calculator permit 337 match community c4_243_2 c3_243_122 c3_244_123 c3_245_124 c3_246_125 set community 0:121 route-map calculator permit 338 match community c3_247_126 c3_248_127 c3_249_128 c3_250_129 c3_251_130 set community 0:121 route-map calculator permit 339 match community c3_252_131 c3_253_132 c3_254_133 c3_255_134 c3_256_135 set community 0:121 ip community-list standard 1_1_81 permit 65000:1 0:1 0:81 ip community-list standard 2_1_82 permit 65000:2 0:1 0:82 ip community-list standard 2_2_41 permit 65000:2 0:2 0:41 ip community-list standard 1_2_80 permit 65000:1 0:2 0:80 ip community-list standard 1_3_79 permit 65000:1 0:3 0:79 ip community-list standard 1_4_78 permit 65000:1 0:4 0:78 ip community-list standard 1_5_77 permit 65000:1 0:5 0:77 ip community-list standard 1_6_76 permit 65000:1 0:6 0:76 ip community-list standard 1_7_75 permit 65000:1 0:7 0:75 ip community-list standard 1_8_74 permit 65000:1 0:8 0:74 ip community-list standard 1_9_73 permit 65000:1 0:9 0:73 ip community-list standard 1_10_72 permit 65000:1 0:10 0:72 ip community-list standard 1_11_71 permit 65000:1 0:11 0:71 ip community-list standard 1_12_70 permit 65000:1 0:12 0:70 ip community-list standard 1_13_69 permit 65000:1 0:13 0:69 ip community-list standard 1_14_68 permit 65000:1 0:14 0:68 ip community-list standard 1_15_67 permit 65000:1 0:15 0:67 ip community-list standard 1_16_66 permit 65000:1 0:16 0:66 ip community-list standard 1_17_65 permit 65000:1 0:17 0:65 ip community-list standard 1_18_64 permit 65000:1 0:18 0:64 ip community-list standard 1_19_63 permit 65000:1 0:19 0:63 ip community-list standard 1_20_62 permit 65000:1 0:20 0:62 ip community-list standard 1_21_61 permit 65000:1 0:21 0:61 ip community-list standard 1_22_60 permit 65000:1 0:22 0:60 ip community-list standard 1_23_59 permit 65000:1 0:23 0:59 ip community-list standard 1_24_58 permit 65000:1 0:24 0:58 ip community-list standard 1_25_57 permit 65000:1 0:25 0:57 ip community-list standard 1_26_56 permit 65000:1 0:26 0:56 ip community-list standard 1_27_55 permit 65000:1 0:27 0:55 ip community-list standard 1_28_54 permit 65000:1 0:28 0:54 ip community-list standard 1_29_53 permit 65000:1 0:29 0:53 ip community-list standard 1_30_52 permit 65000:1 0:30 0:52 ip community-list standard 1_31_51 permit 65000:1 0:31 0:51 ip community-list standard 1_32_50 permit 65000:1 0:32 0:50 ip community-list standard 1_33_49 permit 65000:1 0:33 0:49 ip community-list standard 1_34_48 permit 65000:1 0:34 0:48 ip community-list standard 1_35_47 permit 65000:1 0:35 0:47 ip community-list standard 1_36_46 permit 65000:1 0:36 0:46 ip community-list standard 1_37_45 permit 65000:1 0:37 0:45 ip community-list standard 1_38_44 permit 65000:1 0:38 0:44 ip community-list standard 1_39_43 permit 65000:1 0:39 0:43 ip community-list standard 1_40_42 permit 65000:1 0:40 0:42 ip community-list standard 1_41_41 permit 65000:1 0:41 0:41 ip community-list expanded c82 permit 1 ^65000:4_0:82_0:1$ ip community-list expanded c82 permit 2 ^65000:3_0:83_0:1$ ip community-list expanded c82 permit 3 ^65000:3_0:84_0:2$ ip community-list expanded c82 permit 4 ^65000:3_0:85_0:3$ ip community-list expanded c82 permit 5 ^65000:3_0:86_0:4$ ip community-list expanded c82 permit 6 ^65000:3_0:87_0:5$ ip community-list expanded c82 permit 7 ^65000:3_0:88_0:6$ ip community-list expanded c82 permit 8 ^65000:3_0:89_0:7$ ip community-list expanded c82 permit 9 ^65000:3_0:90_0:8$ ip community-list expanded c82 permit 10 ^65000:3_0:91_0:9$ ip community-list expanded c82 permit 11 ^65000:3_0:92_0:10$ ip community-list expanded c82 permit 12 ^65000:3_0:93_0:11$ ip community-list expanded c82 permit 13 ^65000:3_0:94_0:12$ ip community-list expanded c82 permit 14 ^65000:3_0:95_0:13$ ip community-list expanded c82 permit 15 ^65000:3_0:96_0:14$ ip community-list expanded c82 permit 16 ^65000:3_0:97_0:15$ ip community-list expanded c82 permit 17 ^65000:3_0:98_0:16$ ip community-list expanded c82 permit 18 ^65000:3_0:99_0:17$ ip community-list expanded c82 permit 19 ^65000:3_0:100_0:18$ ip community-list expanded c82 permit 20 ^65000:3_0:101_0:19$ ip community-list expanded c82 permit 21 ^65000:3_0:102_0:20$ ip community-list expanded c82 permit 22 ^65000:3_0:103_0:21$ ip community-list expanded c82 permit 23 ^65000:3_0:104_0:22$ ip community-list expanded c82 permit 24 ^65000:3_0:105_0:23$ ip community-list expanded c82 permit 25 ^65000:3_0:106_0:24$ ip community-list expanded c82 permit 26 ^65000:3_0:107_0:25$ ip community-list expanded c82 permit 27 ^65000:3_0:108_0:26$ ip community-list expanded c82 permit 28 ^65000:3_0:109_0:27$ ip community-list expanded c82 permit 29 ^65000:3_0:110_0:28$ ip community-list expanded c82 permit 30 ^65000:3_0:111_0:29$ ip community-list expanded c82 permit 31 ^65000:3_0:112_0:30$ ip community-list expanded c82 permit 32 ^65000:3_0:113_0:31$ ip community-list expanded c82 permit 33 ^65000:3_0:114_0:32$ ip community-list expanded c82 permit 34 ^65000:3_0:115_0:33$ ip community-list expanded c82 permit 35 ^65000:3_0:116_0:34$ ip community-list expanded c82 permit 36 ^65000:3_0:117_0:35$ ip community-list expanded c82 permit 37 ^65000:3_0:118_0:36$ ip community-list expanded c82 permit 38 ^65000:3_0:119_0:37$ ip community-list expanded c82 permit 39 ^65000:3_0:120_0:38$ ip community-list expanded c82 permit 40 ^65000:3_0:121_0:39$ ip community-list expanded c82 permit 41 ^65000:3_0:122_0:40$ ip community-list expanded c82 permit 42 ^65000:3_0:123_0:41$ ip community-list expanded c82 permit 43 ^65000:3_0:124_0:42$ ip community-list expanded c82 permit 44 ^65000:3_0:125_0:43$ ip community-list expanded c82 permit 45 ^65000:3_0:126_0:44$ ip community-list expanded c82 permit 46 ^65000:3_0:127_0:45$ ip community-list expanded c82 permit 47 ^65000:3_0:128_0:46$ ip community-list expanded c82 permit 48 ^65000:3_0:129_0:47$ ip community-list expanded c82 permit 49 ^65000:3_0:130_0:48$ ip community-list expanded c82 permit 50 ^65000:3_0:131_0:49$ ip community-list expanded c82 permit 51 ^65000:3_0:132_0:50$ ip community-list expanded c82 permit 52 ^65000:3_0:133_0:51$ ip community-list expanded c82 permit 53 ^65000:3_0:134_0:52$ ip community-list expanded c82 permit 54 ^65000:3_0:135_0:53$ ip community-list expanded c82 permit 55 ^65000:3_0:136_0:54$ ip community-list expanded c82 permit 56 ^65000:3_0:137_0:55$ ip community-list expanded c82 permit 57 ^65000:3_0:138_0:56$ ip community-list expanded c82 permit 58 ^65000:3_0:139_0:57$ ip community-list expanded c82 permit 59 ^65000:3_0:140_0:58$ ip community-list expanded c82 permit 60 ^65000:3_0:141_0:59$ ip community-list expanded c82 permit 61 ^65000:3_0:142_0:60$ ip community-list expanded c82 permit 62 ^65000:3_0:143_0:61$ ip community-list expanded c82 permit 63 ^65000:3_0:144_0:62$ ip community-list expanded c82 permit 64 ^65000:3_0:145_0:63$ ip community-list expanded c82 permit 65 ^65000:3_0:146_0:64$ ip community-list expanded c82 permit 66 ^65000:3_0:147_0:65$ ip community-list expanded c82 permit 67 ^65000:3_0:148_0:66$ ip community-list expanded c82 permit 68 ^65000:3_0:149_0:67$ ip community-list expanded c82 permit 69 ^65000:3_0:150_0:68$ ip community-list expanded c82 permit 70 ^65000:3_0:151_0:69$ ip community-list expanded c82 permit 71 ^65000:3_0:152_0:70$ ip community-list expanded c82 permit 72 ^65000:3_0:153_0:71$ ip community-list expanded c82 permit 73 ^65000:3_0:154_0:72$ ip community-list expanded c82 permit 74 ^65000:3_0:155_0:73$ ip community-list expanded c82 permit 75 ^65000:3_0:156_0:74$ ip community-list expanded c82 permit 76 ^65000:3_0:157_0:75$ ip community-list expanded c82 permit 77 ^65000:3_0:158_0:76$ ip community-list expanded c82 permit 78 ^65000:3_0:159_0:77$ ip community-list expanded c82 permit 79 ^65000:3_0:160_0:78$ ip community-list expanded c82 permit 80 ^65000:3_0:161_0:79$ ip community-list expanded c82 permit 81 ^65000:3_0:162_0:80$ ip community-list expanded c82 permit 82 ^65000:3_0:163_0:81$ ip community-list expanded c82 permit 83 ^65000:4_0:164_0:2$ ip community-list expanded c82 permit 84 ^65000:3_0:164_0:82$ ip community-list expanded c82 permit 85 ^65000:4_0:165_0:2$ ip community-list expanded c82 permit 86 ^65000:3_0:165_0:83$ ip community-list expanded c82 permit 87 ^65000:3_0:166_0:84$ ip community-list expanded c82 permit 88 ^65000:3_0:167_0:85$ ip community-list expanded c82 permit 89 ^65000:3_0:168_0:86$ ip community-list expanded c82 permit 90 ^65000:3_0:169_0:87$ ip community-list expanded c82 permit 91 ^65000:3_0:170_0:88$ ip community-list expanded c82 permit 92 ^65000:3_0:171_0:89$ ip community-list expanded c82 permit 93 ^65000:3_0:172_0:90$ ip community-list expanded c82 permit 94 ^65000:3_0:173_0:91$ ip community-list expanded c82 permit 95 ^65000:3_0:174_0:92$ ip community-list expanded c82 permit 96 ^65000:3_0:175_0:93$ ip community-list expanded c82 permit 97 ^65000:3_0:176_0:94$ ip community-list expanded c82 permit 98 ^65000:3_0:177_0:95$ ip community-list expanded c82 permit 99 ^65000:3_0:178_0:96$ ip community-list expanded c82 permit 100 ^65000:3_0:179_0:97$ ip community-list expanded c82 permit 101 ^65000:3_0:180_0:98$ ip community-list expanded c82 permit 102 ^65000:3_0:181_0:99$ ip community-list expanded c82 permit 103 ^65000:3_0:182_0:100$ ip community-list expanded c82 permit 104 ^65000:3_0:183_0:101$ ip community-list expanded c82 permit 105 ^65000:3_0:184_0:102$ ip community-list expanded c82 permit 106 ^65000:3_0:185_0:103$ ip community-list expanded c82 permit 107 ^65000:3_0:186_0:104$ ip community-list expanded c82 permit 108 ^65000:3_0:187_0:105$ ip community-list expanded c82 permit 109 ^65000:3_0:188_0:106$ ip community-list expanded c82 permit 110 ^65000:3_0:189_0:107$ ip community-list expanded c82 permit 111 ^65000:3_0:190_0:108$ ip community-list expanded c82 permit 112 ^65000:3_0:191_0:109$ ip community-list expanded c82 permit 113 ^65000:3_0:192_0:110$ ip community-list expanded c82 permit 114 ^65000:3_0:193_0:111$ ip community-list expanded c82 permit 115 ^65000:3_0:194_0:112$ ip community-list expanded c82 permit 116 ^65000:3_0:195_0:113$ ip community-list expanded c82 permit 117 ^65000:3_0:196_0:114$ ip community-list expanded c82 permit 118 ^65000:3_0:197_0:115$ ip community-list expanded c82 permit 119 ^65000:3_0:198_0:116$ ip community-list expanded c82 permit 120 ^65000:3_0:199_0:117$ ip community-list expanded c82 permit 121 ^65000:3_0:200_0:118$ ip community-list expanded c82 permit 122 ^65000:3_0:201_0:119$ ip community-list expanded c82 permit 123 ^65000:3_0:202_0:120$ ip community-list expanded c82 permit 124 ^65000:3_0:203_0:121$ ip community-list expanded c82 permit 125 ^65000:3_0:204_0:122$ ip community-list expanded c82 permit 126 ^65000:3_0:205_0:123$ ip community-list expanded c82 permit 127 ^65000:3_0:206_0:124$ ip community-list expanded c82 permit 128 ^65000:3_0:207_0:125$ ip community-list expanded c82 permit 129 ^65000:3_0:208_0:126$ ip community-list expanded c82 permit 130 ^65000:3_0:209_0:127$ ip community-list expanded c82 permit 131 ^65000:3_0:210_0:128$ ip community-list expanded c82 permit 132 ^65000:3_0:211_0:129$ ip community-list expanded c82 permit 133 ^65000:3_0:212_0:130$ ip community-list expanded c82 permit 134 ^65000:3_0:213_0:131$ ip community-list expanded c82 permit 135 ^65000:3_0:214_0:132$ ip community-list expanded c82 permit 136 ^65000:3_0:215_0:133$ ip community-list expanded c82 permit 137 ^65000:3_0:216_0:134$ ip community-list expanded c82 permit 138 ^65000:3_0:217_0:135$ ip community-list expanded c82 permit 139 ^65000:3_0:218_0:136$ ip community-list expanded c82 permit 140 ^65000:3_0:219_0:137$ ip community-list expanded c82 permit 141 ^65000:3_0:220_0:138$ ip community-list expanded c82 permit 142 ^65000:3_0:221_0:139$ ip community-list expanded c82 permit 143 ^65000:3_0:222_0:140$ ip community-list expanded c82 permit 144 ^65000:3_0:223_0:141$ ip community-list expanded c82 permit 145 ^65000:3_0:224_0:142$ ip community-list expanded c82 permit 146 ^65000:3_0:225_0:143$ ip community-list expanded c82 permit 147 ^65000:3_0:226_0:144$ ip community-list expanded c82 permit 148 ^65000:3_0:227_0:145$ ip community-list expanded c82 permit 149 ^65000:3_0:228_0:146$ ip community-list expanded c82 permit 150 ^65000:3_0:229_0:147$ ip community-list expanded c82 permit 151 ^65000:3_0:230_0:148$ ip community-list expanded c82 permit 152 ^65000:3_0:231_0:149$ ip community-list expanded c82 permit 153 ^65000:3_0:232_0:150$ ip community-list expanded c82 permit 154 ^65000:3_0:233_0:151$ ip community-list expanded c82 permit 155 ^65000:3_0:234_0:152$ ip community-list expanded c82 permit 156 ^65000:3_0:235_0:153$ ip community-list expanded c82 permit 157 ^65000:3_0:236_0:154$ ip community-list expanded c82 permit 158 ^65000:3_0:237_0:155$ ip community-list expanded c82 permit 159 ^65000:3_0:238_0:156$ ip community-list expanded c82 permit 160 ^65000:3_0:239_0:157$ ip community-list expanded c82 permit 161 ^65000:3_0:240_0:158$ ip community-list expanded c82 permit 162 ^65000:3_0:241_0:159$ ip community-list expanded c82 permit 163 ^65000:3_0:242_0:160$ ip community-list expanded c82 permit 164 ^65000:3_0:243_0:161$ ip community-list expanded c82 permit 165 ^65000:3_0:244_0:162$ ip community-list expanded c82 permit 166 ^65000:3_0:245_0:163$ ip community-list expanded c82 permit 167 ^65000:4_0:246_0:3$ ip community-list expanded c82 permit 168 ^65000:3_0:246_0:164$ ip community-list expanded c82 permit 169 ^65000:4_0:247_0:3$ ip community-list expanded c82 permit 170 ^65000:3_0:247_0:165$ ip community-list expanded c82 permit 171 ^65000:4_0:248_0:3$ ip community-list expanded c82 permit 172 ^65000:3_0:248_0:166$ ip community-list expanded c82 permit 173 ^65000:3_0:249_0:167$ ip community-list expanded c82 permit 174 ^65000:3_0:250_0:168$ ip community-list expanded c82 permit 175 ^65000:3_0:251_0:169$ ip community-list expanded c82 permit 176 ^65000:3_0:252_0:170$ ip community-list expanded c82 permit 177 ^65000:3_0:253_0:171$ ip community-list expanded c82 permit 178 ^65000:3_0:254_0:172$ ip community-list expanded c82 permit 179 ^65000:3_0:255_0:173$ ip community-list expanded c82 permit 180 ^65000:3_0:256_0:174$ route-map calculator permit 340 match community 1_1_81 2_1_82 2_2_41 1_2_80 1_3_79 set community 0:82 route-map calculator permit 341 match community 1_4_78 1_5_77 1_6_76 1_7_75 1_8_74 set community 0:82 route-map calculator permit 342 match community 1_9_73 1_10_72 1_11_71 1_12_70 1_13_69 set community 0:82 route-map calculator permit 343 match community 1_14_68 1_15_67 1_16_66 1_17_65 1_18_64 set community 0:82 route-map calculator permit 344 match community 1_19_63 1_20_62 1_21_61 1_22_60 1_23_59 set community 0:82 route-map calculator permit 345 match community 1_24_58 1_25_57 1_26_56 1_27_55 1_28_54 set community 0:82 route-map calculator permit 346 match community 1_29_53 1_30_52 1_31_51 1_32_50 1_33_49 set community 0:82 route-map calculator permit 347 match community 1_34_48 1_35_47 1_36_46 1_37_45 1_38_44 set community 0:82 route-map calculator permit 348 match community 1_39_43 1_40_42 1_41_41 c4_82_1 c3_83_1 set community 0:82 route-map calculator permit 349 match community c3_84_2 c3_85_3 c3_86_4 c3_87_5 c3_88_6 set community 0:82 route-map calculator permit 350 match community c3_89_7 c3_90_8 c3_91_9 c3_92_10 c3_93_11 set community 0:82 route-map calculator permit 351 match community c3_94_12 c3_95_13 c3_96_14 c3_97_15 c3_98_16 set community 0:82 route-map calculator permit 352 match community c3_99_17 c3_100_18 c3_101_19 c3_102_20 c3_103_21 set community 0:82 route-map calculator permit 353 match community c3_104_22 c3_105_23 c3_106_24 c3_107_25 c3_108_26 set community 0:82 route-map calculator permit 354 match community c3_109_27 c3_110_28 c3_111_29 c3_112_30 c3_113_31 set community 0:82 route-map calculator permit 355 match community c3_114_32 c3_115_33 c3_116_34 c3_117_35 c3_118_36 set community 0:82 route-map calculator permit 356 match community c3_119_37 c3_120_38 c3_121_39 c3_122_40 c3_123_41 set community 0:82 route-map calculator permit 357 match community c3_124_42 c3_125_43 c3_126_44 c3_127_45 c3_128_46 set community 0:82 route-map calculator permit 358 match community c3_129_47 c3_130_48 c3_131_49 c3_132_50 c3_133_51 set community 0:82 route-map calculator permit 359 match community c3_134_52 c3_135_53 c3_136_54 c3_137_55 c3_138_56 set community 0:82 route-map calculator permit 360 match community c3_139_57 c3_140_58 c3_141_59 c3_142_60 c3_143_61 set community 0:82 route-map calculator permit 361 match community c3_144_62 c3_145_63 c3_146_64 c3_147_65 c3_148_66 set community 0:82 route-map calculator permit 362 match community c3_149_67 c3_150_68 c3_151_69 c3_152_70 c3_153_71 set community 0:82 route-map calculator permit 363 match community c3_154_72 c3_155_73 c3_156_74 c3_157_75 c3_158_76 set community 0:82 route-map calculator permit 364 match community c3_159_77 c3_160_78 c3_161_79 c3_162_80 c3_163_81 set community 0:82 route-map calculator permit 365 match community c4_164_2 c3_164_82 c4_165_2 c3_165_83 c3_166_84 set community 0:82 route-map calculator permit 366 match community c3_167_85 c3_168_86 c3_169_87 c3_170_88 c3_171_89 set community 0:82 route-map calculator permit 367 match community c3_172_90 c3_173_91 c3_174_92 c3_175_93 c3_176_94 set community 0:82 route-map calculator permit 368 match community c3_177_95 c3_178_96 c3_179_97 c3_180_98 c3_181_99 set community 0:82 route-map calculator permit 369 match community c3_182_100 c3_183_101 c3_184_102 c3_185_103 c3_186_104 set community 0:82 route-map calculator permit 370 match community c3_187_105 c3_188_106 c3_189_107 c3_190_108 c3_191_109 set community 0:82 route-map calculator permit 371 match community c3_192_110 c3_193_111 c3_194_112 c3_195_113 c3_196_114 set community 0:82 route-map calculator permit 372 match community c3_197_115 c3_198_116 c3_199_117 c3_200_118 c3_201_119 set community 0:82 route-map calculator permit 373 match community c3_202_120 c3_203_121 c3_204_122 c3_205_123 c3_206_124 set community 0:82 route-map calculator permit 374 match community c3_207_125 c3_208_126 c3_209_127 c3_210_128 c3_211_129 set community 0:82 route-map calculator permit 375 match community c3_212_130 c3_213_131 c3_214_132 c3_215_133 c3_216_134 set community 0:82 route-map calculator permit 376 match community c3_217_135 c3_218_136 c3_219_137 c3_220_138 c3_221_139 set community 0:82 route-map calculator permit 377 match community c3_222_140 c3_223_141 c3_224_142 c3_225_143 c3_226_144 set community 0:82 route-map calculator permit 378 match community c3_227_145 c3_228_146 c3_229_147 c3_230_148 c3_231_149 set community 0:82 route-map calculator permit 379 match community c3_232_150 c3_233_151 c3_234_152 c3_235_153 c3_236_154 set community 0:82 route-map calculator permit 380 match community c3_237_155 c3_238_156 c3_239_157 c3_240_158 c3_241_159 set community 0:82 route-map calculator permit 381 match community c3_242_160 c3_243_161 c3_244_162 c3_245_163 c4_246_3 set community 0:82 route-map calculator permit 382 match community c3_246_164 c4_247_3 c3_247_165 c4_248_3 c3_248_166 set community 0:82 route-map calculator permit 383 match community c3_249_167 c3_250_168 c3_251_169 c3_252_170 c3_253_171 set community 0:82 route-map calculator permit 384 match community c3_254_172 c3_255_173 c3_256_174 set community 0:82 ip community-list standard 2_117_169 permit 65000:2 0:117 0:169 route-map calculator permit 385 match community 2_117_169 set community 0:19773 ip community-list standard 2_68_211 permit 65000:2 0:68 0:211 route-map calculator permit 386 match community 2_68_211 set community 0:14348 ip community-list standard 2_32_142 permit 65000:2 0:32 0:142 ip community-list standard 2_64_71 permit 65000:2 0:64 0:71 route-map calculator permit 387 match community 2_32_142 2_64_71 set community 0:4544 ip community-list standard 2_42_177 permit 65000:2 0:42 0:177 ip community-list standard 2_59_126 permit 65000:2 0:59 0:126 ip community-list standard 2_63_118 permit 65000:2 0:63 0:118 route-map calculator permit 388 match community 2_42_177 2_59_126 2_63_118 set community 0:7434 ip community-list standard 2_70_227 permit 65000:2 0:70 0:227 route-map calculator permit 389 match community 2_70_227 set community 0:15890 ip community-list standard 2_135_203 permit 65000:2 0:135 0:203 ip community-list standard 2_145_189 permit 65000:2 0:145 0:189 route-map calculator permit 390 match community 2_135_203 2_145_189 set community 0:27405 ip community-list standard 2_167_210 permit 65000:2 0:167 0:210 route-map calculator permit 391 match community 2_167_210 set community 0:35070 ip community-list standard 2_104_226 permit 65000:2 0:104 0:226 ip community-list standard 2_113_208 permit 65000:2 0:113 0:208 route-map calculator permit 392 match community 2_104_226 2_113_208 set community 0:23504 ip community-list standard 2_137_161 permit 65000:2 0:137 0:161 route-map calculator permit 393 match community 2_137_161 set community 0:22057 ip community-list standard 2_25_127 permit 65000:2 0:25 0:127 route-map calculator permit 394 match community 2_25_127 set community 0:3175 ip community-list standard 2_42_211 permit 65000:2 0:42 0:211 route-map calculator permit 395 match community 2_42_211 set community 0:8862 ip community-list standard 2_161_194 permit 65000:2 0:161 0:194 route-map calculator permit 396 match community 2_161_194 set community 0:31234 ip community-list standard 2_168_236 permit 65000:2 0:168 0:236 ip community-list standard 2_177_224 permit 65000:2 0:177 0:224 route-map calculator permit 397 match community 2_168_236 2_177_224 set community 0:39648 ip community-list standard 2_155_249 permit 65000:2 0:155 0:249 route-map calculator permit 398 match community 2_155_249 set community 0:38595 ip community-list standard 2_125_165 permit 65000:2 0:125 0:165 route-map calculator permit 399 match community 2_125_165 set community 0:20625 ip community-list standard 2_155_205 permit 65000:2 0:155 0:205 route-map calculator permit 400 match community 2_155_205 set community 0:31775 ip community-list standard 2_142_176 permit 65000:2 0:142 0:176 route-map calculator permit 401 match community 2_142_176 set community 0:24992 ip community-list standard 2_40_206 permit 65000:2 0:40 0:206 ip community-list standard 2_80_103 permit 65000:2 0:80 0:103 route-map calculator permit 402 match community 2_40_206 2_80_103 set community 0:8240 ip community-list standard 2_23_232 permit 65000:2 0:23 0:232 ip community-list standard 2_29_184 permit 65000:2 0:29 0:184 ip community-list standard 2_46_116 permit 65000:2 0:46 0:116 ip community-list standard 2_58_92 permit 65000:2 0:58 0:92 route-map calculator permit 403 match community 2_23_232 2_29_184 2_46_116 2_58_92 set community 0:5336 ip community-list standard 2_16_149 permit 65000:2 0:16 0:149 route-map calculator permit 404 match community 2_16_149 set community 0:2384 ip community-list standard 2_185_215 permit 65000:2 0:185 0:215 route-map calculator permit 405 match community 2_185_215 set community 0:39775 ip community-list standard 2_68_219 permit 65000:2 0:68 0:219 ip community-list standard 2_73_204 permit 65000:2 0:73 0:204 ip community-list standard 2_102_146 permit 65000:2 0:102 0:146 route-map calculator permit 406 match community 2_68_219 2_73_204 2_102_146 set community 0:14892 ip community-list standard 2_19_185 permit 65000:2 0:19 0:185 ip community-list standard 2_37_95 permit 65000:2 0:37 0:95 route-map calculator permit 407 match community 2_19_185 2_37_95 set community 0:3515 ip community-list standard 2_40_256 permit 65000:2 0:40 0:256 ip community-list standard 2_64_160 permit 65000:2 0:64 0:160 ip community-list standard 2_80_128 permit 65000:2 0:80 0:128 route-map calculator permit 408 match community 2_40_256 2_64_160 2_80_128 set community 0:10240 ip community-list standard 2_169_211 permit 65000:2 0:169 0:211 route-map calculator permit 409 match community 2_169_211 set community 0:35659 ip community-list standard 2_61_193 permit 65000:2 0:61 0:193 route-map calculator permit 410 match community 2_61_193 set community 0:11773 ip community-list standard 2_190_219 permit 65000:2 0:190 0:219 route-map calculator permit 411 match community 2_190_219 set community 0:41610 ip community-list standard 2_239_245 permit 65000:2 0:239 0:245 route-map calculator permit 412 match community 2_239_245 set community 0:58555 ip community-list standard 2_3_243 permit 65000:2 0:3 0:243 ip community-list standard 2_9_81 permit 65000:2 0:9 0:81 ip community-list standard 2_27_27 permit 65000:2 0:27 0:27 route-map calculator permit 413 match community 2_3_243 2_9_81 2_27_27 set community 0:729 ip community-list standard 2_141_197 permit 65000:2 0:141 0:197 route-map calculator permit 414 match community 2_141_197 set community 0:27777 ip community-list standard 2_26_164 permit 65000:2 0:26 0:164 ip community-list standard 2_41_104 permit 65000:2 0:41 0:104 ip community-list standard 2_52_82 permit 65000:2 0:52 0:82 route-map calculator permit 415 match community 2_26_164 2_41_104 2_52_82 set community 0:4264 ip community-list standard 2_179_184 permit 65000:2 0:179 0:184 route-map calculator permit 416 match community 2_179_184 set community 0:32936 ip community-list standard 2_112_249 permit 65000:2 0:112 0:249 ip community-list standard 2_166_168 permit 65000:2 0:166 0:168 route-map calculator permit 417 match community 2_112_249 2_166_168 set community 0:27888 ip community-list standard 2_180_199 permit 65000:2 0:180 0:199 route-map calculator permit 418 match community 2_180_199 set community 0:35820 ip community-list standard 2_253_253 permit 65000:2 0:253 0:253 route-map calculator permit 419 match community 2_253_253 set community 0:64009 ip community-list standard 2_39_246 permit 65000:2 0:39 0:246 ip community-list standard 2_41_234 permit 65000:2 0:41 0:234 ip community-list standard 2_78_123 permit 65000:2 0:78 0:123 ip community-list standard 2_82_117 permit 65000:2 0:82 0:117 route-map calculator permit 420 match community 2_39_246 2_41_234 2_78_123 2_82_117 set community 0:9594 ip community-list standard 2_83_251 permit 65000:2 0:83 0:251 route-map calculator permit 421 match community 2_83_251 set community 0:20833 ip community-list standard 2_22_253 permit 65000:2 0:22 0:253 ip community-list standard 2_23_242 permit 65000:2 0:23 0:242 ip community-list standard 2_46_121 permit 65000:2 0:46 0:121 route-map calculator permit 422 match community 2_22_253 2_23_242 2_46_121 set community 0:5566 ip community-list standard 2_85_242 permit 65000:2 0:85 0:242 ip community-list standard 2_110_187 permit 65000:2 0:110 0:187 ip community-list standard 2_121_170 permit 65000:2 0:121 0:170 route-map calculator permit 423 match community 2_85_242 2_110_187 2_121_170 set community 0:20570 ip community-list standard 2_13_174 permit 65000:2 0:13 0:174 ip community-list standard 2_26_87 permit 65000:2 0:26 0:87 ip community-list standard 2_29_78 permit 65000:2 0:29 0:78 ip community-list standard 2_39_58 permit 65000:2 0:39 0:58 route-map calculator permit 424 match community 2_13_174 2_26_87 2_29_78 2_39_58 set community 0:2262 ip community-list standard 2_103_226 permit 65000:2 0:103 0:226 ip community-list standard 2_113_206 permit 65000:2 0:113 0:206 route-map calculator permit 425 match community 2_103_226 2_113_206 set community 0:23278 ip community-list standard 2_101_251 permit 65000:2 0:101 0:251 route-map calculator permit 426 match community 2_101_251 set community 0:25351 ip community-list standard 2_7_151 permit 65000:2 0:7 0:151 route-map calculator permit 427 match community 2_7_151 set community 0:1057 ip community-list standard 2_175_213 permit 65000:2 0:175 0:213 route-map calculator permit 428 match community 2_175_213 set community 0:37275 ip community-list standard 2_83_236 permit 65000:2 0:83 0:236 ip community-list standard 2_118_166 permit 65000:2 0:118 0:166 route-map calculator permit 429 match community 2_83_236 2_118_166 set community 0:19588 ip community-list standard 2_49_49 permit 65000:2 0:49 0:49 route-map calculator permit 430 match community 2_49_49 set community 0:2401 ip community-list standard 2_81_223 permit 65000:2 0:81 0:223 route-map calculator permit 431 match community 2_81_223 set community 0:18063 ip community-list standard 2_162_220 permit 65000:2 0:162 0:220 ip community-list standard 2_165_216 permit 65000:2 0:165 0:216 ip community-list standard 2_180_198 permit 65000:2 0:180 0:198 route-map calculator permit 432 match community 2_162_220 2_165_216 2_180_198 set community 0:35640 ip community-list standard 2_17_41 permit 65000:2 0:17 0:41 route-map calculator permit 433 match community 2_17_41 set community 0:697 ip community-list standard 2_110_238 permit 65000:2 0:110 0:238 ip community-list standard 2_119_220 permit 65000:2 0:119 0:220 ip community-list standard 2_140_187 permit 65000:2 0:140 0:187 ip community-list standard 2_154_170 permit 65000:2 0:154 0:170 route-map calculator permit 434 match community 2_110_238 2_119_220 2_140_187 2_154_170 set community 0:26180 ip community-list standard 2_17_217 permit 65000:2 0:17 0:217 ip community-list standard 2_31_119 permit 65000:2 0:31 0:119 route-map calculator permit 435 match community 2_17_217 2_31_119 set community 0:3689 ip community-list standard 2_189_254 permit 65000:2 0:189 0:254 route-map calculator permit 436 match community 2_189_254 set community 0:48006 ip community-list standard 2_147_212 permit 65000:2 0:147 0:212 ip community-list standard 2_159_196 permit 65000:2 0:159 0:196 route-map calculator permit 437 match community 2_147_212 2_159_196 set community 0:31164 ip community-list standard 2_22_204 permit 65000:2 0:22 0:204 ip community-list standard 2_24_187 permit 65000:2 0:24 0:187 ip community-list standard 2_33_136 permit 65000:2 0:33 0:136 ip community-list standard 2_34_132 permit 65000:2 0:34 0:132 ip community-list standard 2_44_102 permit 65000:2 0:44 0:102 ip community-list standard 2_51_88 permit 65000:2 0:51 0:88 ip community-list standard 2_66_68 permit 65000:2 0:66 0:68 route-map calculator permit 438 match community 2_22_204 2_24_187 2_33_136 2_34_132 2_44_102 set community 0:4488 route-map calculator permit 439 match community 2_51_88 2_66_68 set community 0:4488 ip community-list standard 2_9_225 permit 65000:2 0:9 0:225 ip community-list standard 2_15_135 permit 65000:2 0:15 0:135 ip community-list standard 2_25_81 permit 65000:2 0:25 0:81 ip community-list standard 2_27_75 permit 65000:2 0:27 0:75 ip community-list standard 2_45_45 permit 65000:2 0:45 0:45 route-map calculator permit 440 match community 2_9_225 2_15_135 2_25_81 2_27_75 2_45_45 set community 0:2025 ip community-list standard 2_141_192 permit 65000:2 0:141 0:192 ip community-list standard 2_144_188 permit 65000:2 0:144 0:188 route-map calculator permit 441 match community 2_141_192 2_144_188 set community 0:27072 ip community-list standard 2_146_241 permit 65000:2 0:146 0:241 route-map calculator permit 442 match community 2_146_241 set community 0:35186 ip community-list standard 2_137_174 permit 65000:2 0:137 0:174 route-map calculator permit 443 match community 2_137_174 set community 0:23838 ip community-list standard 2_39_249 permit 65000:2 0:39 0:249 ip community-list standard 2_83_117 permit 65000:2 0:83 0:117 route-map calculator permit 444 match community 2_39_249 2_83_117 set community 0:9711 ip community-list standard 2_17_131 permit 65000:2 0:17 0:131 route-map calculator permit 445 match community 2_17_131 set community 0:2227 ip community-list standard 2_121_129 permit 65000:2 0:121 0:129 route-map calculator permit 446 match community 2_121_129 set community 0:15609 ip community-list standard 2_19_57 permit 65000:2 0:19 0:57 route-map calculator permit 447 match community 2_19_57 set community 0:1083 ip community-list standard 2_139_165 permit 65000:2 0:139 0:165 route-map calculator permit 448 match community 2_139_165 set community 0:22935 ip community-list standard 2_5_199 permit 65000:2 0:5 0:199 route-map calculator permit 449 match community 2_5_199 set community 0:995 ip community-list standard 2_122_197 permit 65000:2 0:122 0:197 route-map calculator permit 450 match community 2_122_197 set community 0:24034 ip community-list standard 2_32_230 permit 65000:2 0:32 0:230 ip community-list standard 2_40_184 permit 65000:2 0:40 0:184 ip community-list standard 2_46_160 permit 65000:2 0:46 0:160 ip community-list standard 2_64_115 permit 65000:2 0:64 0:115 ip community-list standard 2_80_92 permit 65000:2 0:80 0:92 route-map calculator permit 451 match community 2_32_230 2_40_184 2_46_160 2_64_115 2_80_92 set community 0:7360 ip community-list standard 2_59_154 permit 65000:2 0:59 0:154 ip community-list standard 2_77_118 permit 65000:2 0:77 0:118 route-map calculator permit 452 match community 2_59_154 2_77_118 set community 0:9086 ip community-list standard 2_36_131 permit 65000:2 0:36 0:131 route-map calculator permit 453 match community 2_36_131 set community 0:4716 ip community-list standard 2_46_236 permit 65000:2 0:46 0:236 ip community-list standard 2_59_184 permit 65000:2 0:59 0:184 ip community-list standard 2_92_118 permit 65000:2 0:92 0:118 route-map calculator permit 454 match community 2_46_236 2_59_184 2_92_118 set community 0:10856 ip community-list standard 2_180_251 permit 65000:2 0:180 0:251 route-map calculator permit 455 match community 2_180_251 set community 0:45180 ip community-list standard 2_172_225 permit 65000:2 0:172 0:225 ip community-list standard 2_180_215 permit 65000:2 0:180 0:215 route-map calculator permit 456 match community 2_172_225 2_180_215 set community 0:38700 ip community-list standard 2_94_248 permit 65000:2 0:94 0:248 ip community-list standard 2_124_188 permit 65000:2 0:124 0:188 route-map calculator permit 457 match community 2_94_248 2_124_188 set community 0:23312 ip community-list standard 2_63_234 permit 65000:2 0:63 0:234 ip community-list standard 2_78_189 permit 65000:2 0:78 0:189 ip community-list standard 2_81_182 permit 65000:2 0:81 0:182 ip community-list standard 2_91_162 permit 65000:2 0:91 0:162 ip community-list standard 2_117_126 permit 65000:2 0:117 0:126 route-map calculator permit 458 match community 2_63_234 2_78_189 2_81_182 2_91_162 2_117_126 set community 0:14742 ip community-list standard 2_172_239 permit 65000:2 0:172 0:239 route-map calculator permit 459 match community 2_172_239 set community 0:41108 ip community-list standard 2_166_214 permit 65000:2 0:166 0:214 route-map calculator permit 460 match community 2_166_214 set community 0:35524 ip community-list standard 2_68_214 permit 65000:2 0:68 0:214 ip community-list standard 2_107_136 permit 65000:2 0:107 0:136 route-map calculator permit 461 match community 2_68_214 2_107_136 set community 0:14552 ip community-list standard 2_24_212 permit 65000:2 0:24 0:212 ip community-list standard 2_32_159 permit 65000:2 0:32 0:159 ip community-list standard 2_48_106 permit 65000:2 0:48 0:106 ip community-list standard 2_53_96 permit 65000:2 0:53 0:96 route-map calculator permit 462 match community 2_24_212 2_32_159 2_48_106 2_53_96 set community 0:5088 ip community-list standard 2_74_178 permit 65000:2 0:74 0:178 ip community-list standard 2_89_148 permit 65000:2 0:89 0:148 route-map calculator permit 463 match community 2_74_178 2_89_148 set community 0:13172 ip community-list standard 2_49_256 permit 65000:2 0:49 0:256 ip community-list standard 2_56_224 permit 65000:2 0:56 0:224 ip community-list standard 2_64_196 permit 65000:2 0:64 0:196 ip community-list standard 2_98_128 permit 65000:2 0:98 0:128 ip community-list standard 2_112_112 permit 65000:2 0:112 0:112 route-map calculator permit 464 match community 2_49_256 2_56_224 2_64_196 2_98_128 2_112_112 set community 0:12544 ip community-list standard 2_67_196 permit 65000:2 0:67 0:196 ip community-list standard 2_98_134 permit 65000:2 0:98 0:134 route-map calculator permit 465 match community 2_67_196 2_98_134 set community 0:13132 ip community-list standard 2_199_235 permit 65000:2 0:199 0:235 route-map calculator permit 466 match community 2_199_235 set community 0:46765 ip community-list standard 2_245_249 permit 65000:2 0:245 0:249 route-map calculator permit 467 match community 2_245_249 set community 0:61005 ip community-list standard 2_218_240 permit 65000:2 0:218 0:240 route-map calculator permit 468 match community 2_218_240 set community 0:52320 ip community-list standard 2_183_207 permit 65000:2 0:183 0:207 route-map calculator permit 469 match community 2_183_207 set community 0:37881 ip community-list standard 2_155_238 permit 65000:2 0:155 0:238 ip community-list standard 2_170_217 permit 65000:2 0:170 0:217 route-map calculator permit 470 match community 2_155_238 2_170_217 set community 0:36890 ip community-list standard 2_139_156 permit 65000:2 0:139 0:156 route-map calculator permit 471 match community 2_139_156 set community 0:21684 ip community-list standard 2_9_227 permit 65000:2 0:9 0:227 route-map calculator permit 472 match community 2_9_227 set community 0:2043 ip community-list standard 2_14_158 permit 65000:2 0:14 0:158 ip community-list standard 2_28_79 permit 65000:2 0:28 0:79 route-map calculator permit 473 match community 2_14_158 2_28_79 set community 0:2212 ip community-list standard 2_10_250 permit 65000:2 0:10 0:250 ip community-list standard 2_20_125 permit 65000:2 0:20 0:125 ip community-list standard 2_25_100 permit 65000:2 0:25 0:100 ip community-list standard 2_50_50 permit 65000:2 0:50 0:50 route-map calculator permit 474 match community 2_10_250 2_20_125 2_25_100 2_50_50 set community 0:2500 ip community-list standard 2_41_83 permit 65000:2 0:41 0:83 route-map calculator permit 475 match community 2_41_83 set community 0:3403 ip community-list standard 2_28_232 permit 65000:2 0:28 0:232 ip community-list standard 2_29_224 permit 65000:2 0:29 0:224 ip community-list standard 2_32_203 permit 65000:2 0:32 0:203 ip community-list standard 2_56_116 permit 65000:2 0:56 0:116 ip community-list standard 2_58_112 permit 65000:2 0:58 0:112 route-map calculator permit 476 match community 2_28_232 2_29_224 2_32_203 2_56_116 2_58_112 set community 0:6496 ip community-list standard 2_81_251 permit 65000:2 0:81 0:251 route-map calculator permit 477 match community 2_81_251 set community 0:20331 ip community-list standard 2_129_250 permit 65000:2 0:129 0:250 ip community-list standard 2_150_215 permit 65000:2 0:150 0:215 route-map calculator permit 478 match community 2_129_250 2_150_215 set community 0:32250 ip community-list standard 2_10_256 permit 65000:2 0:10 0:256 ip community-list standard 2_16_160 permit 65000:2 0:16 0:160 ip community-list standard 2_20_128 permit 65000:2 0:20 0:128 ip community-list standard 2_32_80 permit 65000:2 0:32 0:80 ip community-list standard 2_40_64 permit 65000:2 0:40 0:64 route-map calculator permit 479 match community 2_10_256 2_16_160 2_20_128 2_32_80 2_40_64 set community 0:2560 ip community-list standard 2_175_178 permit 65000:2 0:175 0:178 route-map calculator permit 480 match community 2_175_178 set community 0:31150 ip community-list standard 2_19_179 permit 65000:2 0:19 0:179 route-map calculator permit 481 match community 2_19_179 set community 0:3401 ip community-list standard 2_221_254 permit 65000:2 0:221 0:254 route-map calculator permit 482 match community 2_221_254 set community 0:56134 ip community-list standard 2_120_250 permit 65000:2 0:120 0:250 ip community-list standard 2_125_240 permit 65000:2 0:125 0:240 ip community-list standard 2_150_200 permit 65000:2 0:150 0:200 route-map calculator permit 483 match community 2_120_250 2_125_240 2_150_200 set community 0:30000 ip community-list standard 2_54_149 permit 65000:2 0:54 0:149 route-map calculator permit 484 match community 2_54_149 set community 0:8046 ip community-list standard 2_15_253 permit 65000:2 0:15 0:253 ip community-list standard 2_23_165 permit 65000:2 0:23 0:165 ip community-list standard 2_33_115 permit 65000:2 0:33 0:115 ip community-list standard 2_55_69 permit 65000:2 0:55 0:69 route-map calculator permit 485 match community 2_15_253 2_23_165 2_33_115 2_55_69 set community 0:3795 ip community-list standard 2_78_224 permit 65000:2 0:78 0:224 ip community-list standard 2_84_208 permit 65000:2 0:84 0:208 ip community-list standard 2_91_192 permit 65000:2 0:91 0:192 ip community-list standard 2_96_182 permit 65000:2 0:96 0:182 ip community-list standard 2_104_168 permit 65000:2 0:104 0:168 ip community-list standard 2_112_156 permit 65000:2 0:112 0:156 route-map calculator permit 486 match community 2_78_224 2_84_208 2_91_192 2_96_182 2_104_168 set community 0:17472 route-map calculator permit 487 match community 2_112_156 set community 0:17472 ip community-list standard 2_130_223 permit 65000:2 0:130 0:223 route-map calculator permit 488 match community 2_130_223 set community 0:28990 ip community-list standard 2_156_256 permit 65000:2 0:156 0:256 ip community-list standard 2_192_208 permit 65000:2 0:192 0:208 route-map calculator permit 489 match community 2_156_256 2_192_208 set community 0:39936 ip community-list standard 2_31_222 permit 65000:2 0:31 0:222 ip community-list standard 2_37_186 permit 65000:2 0:37 0:186 ip community-list standard 2_62_111 permit 65000:2 0:62 0:111 ip community-list standard 2_74_93 permit 65000:2 0:74 0:93 route-map calculator permit 490 match community 2_31_222 2_37_186 2_62_111 2_74_93 set community 0:6882 ip community-list standard 2_97_109 permit 65000:2 0:97 0:109 route-map calculator permit 491 match community 2_97_109 set community 0:10573 ip community-list standard 2_144_227 permit 65000:2 0:144 0:227 route-map calculator permit 492 match community 2_144_227 set community 0:32688 ip community-list standard 2_7_176 permit 65000:2 0:7 0:176 ip community-list standard 2_8_154 permit 65000:2 0:8 0:154 ip community-list standard 2_11_112 permit 65000:2 0:11 0:112 ip community-list standard 2_14_88 permit 65000:2 0:14 0:88 ip community-list standard 2_16_77 permit 65000:2 0:16 0:77 ip community-list standard 2_22_56 permit 65000:2 0:22 0:56 ip community-list standard 2_28_44 permit 65000:2 0:28 0:44 route-map calculator permit 493 match community 2_7_176 2_8_154 2_11_112 2_14_88 2_16_77 set community 0:1232 route-map calculator permit 494 match community 2_22_56 2_28_44 set community 0:1232 ip community-list standard 2_167_228 permit 65000:2 0:167 0:228 route-map calculator permit 495 match community 2_167_228 set community 0:38076 ip community-list standard 2_93_225 permit 65000:2 0:93 0:225 ip community-list standard 2_135_155 permit 65000:2 0:135 0:155 route-map calculator permit 496 match community 2_93_225 2_135_155 set community 0:20925 ip community-list standard 2_32_236 permit 65000:2 0:32 0:236 ip community-list standard 2_59_128 permit 65000:2 0:59 0:128 ip community-list standard 2_64_118 permit 65000:2 0:64 0:118 route-map calculator permit 497 match community 2_32_236 2_59_128 2_64_118 set community 0:7552 ip community-list standard 2_35_89 permit 65000:2 0:35 0:89 route-map calculator permit 498 match community 2_35_89 set community 0:3115 ip community-list standard 2_47_106 permit 65000:2 0:47 0:106 ip community-list standard 2_53_94 permit 65000:2 0:53 0:94 route-map calculator permit 499 match community 2_47_106 2_53_94 set community 0:4982 ip community-list standard 2_83_109 permit 65000:2 0:83 0:109 route-map calculator permit 500 match community 2_83_109 set community 0:9047 ip community-list standard 2_70_213 permit 65000:2 0:70 0:213 ip community-list standard 2_71_210 permit 65000:2 0:71 0:210 ip community-list standard 2_105_142 permit 65000:2 0:105 0:142 route-map calculator permit 501 match community 2_70_213 2_71_210 2_105_142 set community 0:14910 ip community-list standard 2_22_196 permit 65000:2 0:22 0:196 ip community-list standard 2_28_154 permit 65000:2 0:28 0:154 ip community-list standard 2_44_98 permit 65000:2 0:44 0:98 ip community-list standard 2_49_88 permit 65000:2 0:49 0:88 ip community-list standard 2_56_77 permit 65000:2 0:56 0:77 route-map calculator permit 502 match community 2_22_196 2_28_154 2_44_98 2_49_88 2_56_77 set community 0:4312 ip community-list standard 2_50_208 permit 65000:2 0:50 0:208 ip community-list standard 2_52_200 permit 65000:2 0:52 0:200 ip community-list standard 2_65_160 permit 65000:2 0:65 0:160 ip community-list standard 2_80_130 permit 65000:2 0:80 0:130 ip community-list standard 2_100_104 permit 65000:2 0:100 0:104 route-map calculator permit 503 match community 2_50_208 2_52_200 2_65_160 2_80_130 2_100_104 set community 0:10400 ip community-list standard 2_225_232 permit 65000:2 0:225 0:232 route-map calculator permit 504 match community 2_225_232 set community 0:52200 ip community-list standard 2_161_215 permit 65000:2 0:161 0:215 route-map calculator permit 505 match community 2_161_215 set community 0:34615 ip community-list standard 2_48_199 permit 65000:2 0:48 0:199 route-map calculator permit 506 match community 2_48_199 set community 0:9552 ip community-list standard 2_15_194 permit 65000:2 0:15 0:194 ip community-list standard 2_30_97 permit 65000:2 0:30 0:97 route-map calculator permit 507 match community 2_15_194 2_30_97 set community 0:2910 ip community-list standard 2_78_196 permit 65000:2 0:78 0:196 ip community-list standard 2_84_182 permit 65000:2 0:84 0:182 ip community-list standard 2_91_168 permit 65000:2 0:91 0:168 ip community-list standard 2_98_156 permit 65000:2 0:98 0:156 ip community-list standard 2_104_147 permit 65000:2 0:104 0:147 route-map calculator permit 508 match community 2_78_196 2_84_182 2_91_168 2_98_156 2_104_147 set community 0:15288 ip community-list standard 2_201_255 permit 65000:2 0:201 0:255 route-map calculator permit 509 match community 2_201_255 set community 0:51255 ip community-list standard 2_141_237 permit 65000:2 0:141 0:237 route-map calculator permit 510 match community 2_141_237 set community 0:33417 ip community-list standard 2_97_218 permit 65000:2 0:97 0:218 ip community-list standard 2_109_194 permit 65000:2 0:109 0:194 route-map calculator permit 511 match community 2_97_218 2_109_194 set community 0:21146 ip community-list standard 2_142_155 permit 65000:2 0:142 0:155 route-map calculator permit 512 match community 2_142_155 set community 0:22010 ip community-list standard 2_224_256 permit 65000:2 0:224 0:256 route-map calculator permit 513 match community 2_224_256 set community 0:57344 ip community-list standard 2_220_256 permit 65000:2 0:220 0:256 route-map calculator permit 514 match community 2_220_256 set community 0:56320 ip community-list standard 2_19_227 permit 65000:2 0:19 0:227 route-map calculator permit 515 match community 2_19_227 set community 0:4313 ip community-list standard 2_103_111 permit 65000:2 0:103 0:111 route-map calculator permit 516 match community 2_103_111 set community 0:11433 ip community-list standard 2_165_243 permit 65000:2 0:165 0:243 route-map calculator permit 517 match community 2_165_243 set community 0:40095 ip community-list standard 2_181_237 permit 65000:2 0:181 0:237 route-map calculator permit 518 match community 2_181_237 set community 0:42897 ip community-list standard 2_33_193 permit 65000:2 0:33 0:193 route-map calculator permit 519 match community 2_33_193 set community 0:6369 ip community-list standard 2_175_236 permit 65000:2 0:175 0:236 route-map calculator permit 520 match community 2_175_236 set community 0:41300 ip community-list standard 2_170_220 permit 65000:2 0:170 0:220 ip community-list standard 2_187_200 permit 65000:2 0:187 0:200 route-map calculator permit 521 match community 2_170_220 2_187_200 set community 0:37400 ip community-list standard 2_74_245 permit 65000:2 0:74 0:245 ip community-list standard 2_98_185 permit 65000:2 0:98 0:185 route-map calculator permit 522 match community 2_74_245 2_98_185 set community 0:18130 ip community-list standard 2_110_181 permit 65000:2 0:110 0:181 route-map calculator permit 523 match community 2_110_181 set community 0:19910 ip community-list standard 2_56_228 permit 65000:2 0:56 0:228 ip community-list standard 2_57_224 permit 65000:2 0:57 0:224 ip community-list standard 2_76_168 permit 65000:2 0:76 0:168 ip community-list standard 2_84_152 permit 65000:2 0:84 0:152 ip community-list standard 2_96_133 permit 65000:2 0:96 0:133 ip community-list standard 2_112_114 permit 65000:2 0:112 0:114 route-map calculator permit 524 match community 2_56_228 2_57_224 2_76_168 2_84_152 2_96_133 set community 0:12768 route-map calculator permit 525 match community 2_112_114 set community 0:12768 ip community-list standard 2_194_204 permit 65000:2 0:194 0:204 route-map calculator permit 526 match community 2_194_204 set community 0:39576 ip community-list standard 2_176_229 permit 65000:2 0:176 0:229 route-map calculator permit 527 match community 2_176_229 set community 0:40304 ip community-list standard 2_197_227 permit 65000:2 0:197 0:227 route-map calculator permit 528 match community 2_197_227 set community 0:44719 ip community-list standard 2_2_209 permit 65000:2 0:2 0:209 ip community-list standard 2_11_38 permit 65000:2 0:11 0:38 ip community-list standard 2_19_22 permit 65000:2 0:19 0:22 ip community-list standard 1_162_256 permit 65000:1 0:162 0:256 ip community-list standard 1_163_255 permit 65000:1 0:163 0:255 ip community-list standard 1_164_254 permit 65000:1 0:164 0:254 ip community-list standard 1_165_253 permit 65000:1 0:165 0:253 ip community-list standard 1_166_252 permit 65000:1 0:166 0:252 ip community-list standard 1_167_251 permit 65000:1 0:167 0:251 ip community-list standard 1_168_250 permit 65000:1 0:168 0:250 ip community-list standard 1_169_249 permit 65000:1 0:169 0:249 ip community-list standard 1_170_248 permit 65000:1 0:170 0:248 ip community-list standard 1_171_247 permit 65000:1 0:171 0:247 ip community-list standard 1_172_246 permit 65000:1 0:172 0:246 ip community-list standard 1_173_245 permit 65000:1 0:173 0:245 ip community-list standard 1_174_244 permit 65000:1 0:174 0:244 ip community-list standard 1_175_243 permit 65000:1 0:175 0:243 ip community-list standard 1_176_242 permit 65000:1 0:176 0:242 ip community-list standard 1_177_241 permit 65000:1 0:177 0:241 ip community-list standard 1_178_240 permit 65000:1 0:178 0:240 ip community-list standard 1_179_239 permit 65000:1 0:179 0:239 ip community-list standard 1_180_238 permit 65000:1 0:180 0:238 ip community-list standard 1_181_237 permit 65000:1 0:181 0:237 ip community-list standard 1_182_236 permit 65000:1 0:182 0:236 ip community-list standard 1_183_235 permit 65000:1 0:183 0:235 ip community-list standard 1_184_234 permit 65000:1 0:184 0:234 ip community-list standard 1_185_233 permit 65000:1 0:185 0:233 ip community-list standard 1_186_232 permit 65000:1 0:186 0:232 ip community-list standard 1_187_231 permit 65000:1 0:187 0:231 ip community-list standard 1_188_230 permit 65000:1 0:188 0:230 ip community-list standard 1_189_229 permit 65000:1 0:189 0:229 ip community-list standard 1_190_228 permit 65000:1 0:190 0:228 ip community-list standard 1_191_227 permit 65000:1 0:191 0:227 ip community-list standard 1_192_226 permit 65000:1 0:192 0:226 ip community-list standard 1_193_225 permit 65000:1 0:193 0:225 ip community-list standard 1_194_224 permit 65000:1 0:194 0:224 ip community-list standard 1_195_223 permit 65000:1 0:195 0:223 ip community-list standard 1_196_222 permit 65000:1 0:196 0:222 ip community-list standard 1_197_221 permit 65000:1 0:197 0:221 ip community-list standard 1_198_220 permit 65000:1 0:198 0:220 ip community-list standard 1_199_219 permit 65000:1 0:199 0:219 ip community-list standard 1_200_218 permit 65000:1 0:200 0:218 ip community-list standard 1_201_217 permit 65000:1 0:201 0:217 ip community-list standard 1_202_216 permit 65000:1 0:202 0:216 ip community-list standard 1_203_215 permit 65000:1 0:203 0:215 ip community-list standard 1_204_214 permit 65000:1 0:204 0:214 ip community-list standard 1_205_213 permit 65000:1 0:205 0:213 ip community-list standard 1_206_212 permit 65000:1 0:206 0:212 ip community-list standard 1_207_211 permit 65000:1 0:207 0:211 ip community-list standard 1_208_210 permit 65000:1 0:208 0:210 ip community-list standard 1_209_209 permit 65000:1 0:209 0:209 route-map calculator permit 529 match community 2_2_209 2_11_38 2_19_22 1_162_256 1_163_255 set community 0:418 route-map calculator permit 530 match community 1_164_254 1_165_253 1_166_252 1_167_251 1_168_250 set community 0:418 route-map calculator permit 531 match community 1_169_249 1_170_248 1_171_247 1_172_246 1_173_245 set community 0:418 route-map calculator permit 532 match community 1_174_244 1_175_243 1_176_242 1_177_241 1_178_240 set community 0:418 route-map calculator permit 533 match community 1_179_239 1_180_238 1_181_237 1_182_236 1_183_235 set community 0:418 route-map calculator permit 534 match community 1_184_234 1_185_233 1_186_232 1_187_231 1_188_230 set community 0:418 route-map calculator permit 535 match community 1_189_229 1_190_228 1_191_227 1_192_226 1_193_225 set community 0:418 route-map calculator permit 536 match community 1_194_224 1_195_223 1_196_222 1_197_221 1_198_220 set community 0:418 route-map calculator permit 537 match community 1_199_219 1_200_218 1_201_217 1_202_216 1_203_215 set community 0:418 route-map calculator permit 538 match community 1_204_214 1_205_213 1_206_212 1_207_211 1_208_210 set community 0:418 route-map calculator permit 539 match community 1_209_209 set community 0:418 ip community-list standard 2_89_246 permit 65000:2 0:89 0:246 ip community-list standard 2_123_178 permit 65000:2 0:123 0:178 route-map calculator permit 540 match community 2_89_246 2_123_178 set community 0:21894 ip community-list standard 2_5_71 permit 65000:2 0:5 0:71 ip community-list standard 1_99_256 permit 65000:1 0:99 0:256 ip community-list standard 1_100_255 permit 65000:1 0:100 0:255 ip community-list standard 1_101_254 permit 65000:1 0:101 0:254 ip community-list standard 1_102_253 permit 65000:1 0:102 0:253 ip community-list standard 1_103_252 permit 65000:1 0:103 0:252 ip community-list standard 1_104_251 permit 65000:1 0:104 0:251 ip community-list standard 1_105_250 permit 65000:1 0:105 0:250 ip community-list standard 1_106_249 permit 65000:1 0:106 0:249 ip community-list standard 1_107_248 permit 65000:1 0:107 0:248 ip community-list standard 1_108_247 permit 65000:1 0:108 0:247 ip community-list standard 1_109_246 permit 65000:1 0:109 0:246 ip community-list standard 1_110_245 permit 65000:1 0:110 0:245 ip community-list standard 1_111_244 permit 65000:1 0:111 0:244 ip community-list standard 1_112_243 permit 65000:1 0:112 0:243 ip community-list standard 1_113_242 permit 65000:1 0:113 0:242 ip community-list standard 1_114_241 permit 65000:1 0:114 0:241 ip community-list standard 1_115_240 permit 65000:1 0:115 0:240 ip community-list standard 1_116_239 permit 65000:1 0:116 0:239 ip community-list standard 1_117_238 permit 65000:1 0:117 0:238 ip community-list standard 1_118_237 permit 65000:1 0:118 0:237 ip community-list standard 1_119_236 permit 65000:1 0:119 0:236 ip community-list standard 1_120_235 permit 65000:1 0:120 0:235 ip community-list standard 1_121_234 permit 65000:1 0:121 0:234 ip community-list standard 1_122_233 permit 65000:1 0:122 0:233 ip community-list standard 1_123_232 permit 65000:1 0:123 0:232 ip community-list standard 1_124_231 permit 65000:1 0:124 0:231 ip community-list standard 1_125_230 permit 65000:1 0:125 0:230 ip community-list standard 1_126_229 permit 65000:1 0:126 0:229 ip community-list standard 1_127_228 permit 65000:1 0:127 0:228 ip community-list standard 1_128_227 permit 65000:1 0:128 0:227 ip community-list standard 1_129_226 permit 65000:1 0:129 0:226 ip community-list standard 1_130_225 permit 65000:1 0:130 0:225 ip community-list standard 1_131_224 permit 65000:1 0:131 0:224 ip community-list standard 1_132_223 permit 65000:1 0:132 0:223 ip community-list standard 1_133_222 permit 65000:1 0:133 0:222 ip community-list standard 1_134_221 permit 65000:1 0:134 0:221 ip community-list standard 1_135_220 permit 65000:1 0:135 0:220 ip community-list standard 1_136_219 permit 65000:1 0:136 0:219 ip community-list standard 1_137_218 permit 65000:1 0:137 0:218 ip community-list standard 1_138_217 permit 65000:1 0:138 0:217 ip community-list standard 1_139_216 permit 65000:1 0:139 0:216 ip community-list standard 1_140_215 permit 65000:1 0:140 0:215 ip community-list standard 1_141_214 permit 65000:1 0:141 0:214 ip community-list standard 1_142_213 permit 65000:1 0:142 0:213 ip community-list standard 1_143_212 permit 65000:1 0:143 0:212 ip community-list standard 1_144_211 permit 65000:1 0:144 0:211 ip community-list standard 1_145_210 permit 65000:1 0:145 0:210 ip community-list standard 1_146_209 permit 65000:1 0:146 0:209 ip community-list standard 1_147_208 permit 65000:1 0:147 0:208 ip community-list standard 1_148_207 permit 65000:1 0:148 0:207 ip community-list standard 1_149_206 permit 65000:1 0:149 0:206 ip community-list standard 1_150_205 permit 65000:1 0:150 0:205 ip community-list standard 1_151_204 permit 65000:1 0:151 0:204 ip community-list standard 1_152_203 permit 65000:1 0:152 0:203 ip community-list standard 1_153_202 permit 65000:1 0:153 0:202 ip community-list standard 1_154_201 permit 65000:1 0:154 0:201 ip community-list standard 1_155_200 permit 65000:1 0:155 0:200 ip community-list standard 1_156_199 permit 65000:1 0:156 0:199 ip community-list standard 1_157_198 permit 65000:1 0:157 0:198 ip community-list standard 1_158_197 permit 65000:1 0:158 0:197 ip community-list standard 1_159_196 permit 65000:1 0:159 0:196 ip community-list standard 1_160_195 permit 65000:1 0:160 0:195 ip community-list standard 1_161_194 permit 65000:1 0:161 0:194 ip community-list standard 1_162_193 permit 65000:1 0:162 0:193 ip community-list standard 1_163_192 permit 65000:1 0:163 0:192 ip community-list standard 1_164_191 permit 65000:1 0:164 0:191 ip community-list standard 1_165_190 permit 65000:1 0:165 0:190 ip community-list standard 1_166_189 permit 65000:1 0:166 0:189 ip community-list standard 1_167_188 permit 65000:1 0:167 0:188 ip community-list standard 1_168_187 permit 65000:1 0:168 0:187 ip community-list standard 1_169_186 permit 65000:1 0:169 0:186 ip community-list standard 1_170_185 permit 65000:1 0:170 0:185 ip community-list standard 1_171_184 permit 65000:1 0:171 0:184 ip community-list standard 1_172_183 permit 65000:1 0:172 0:183 ip community-list standard 1_173_182 permit 65000:1 0:173 0:182 ip community-list standard 1_174_181 permit 65000:1 0:174 0:181 ip community-list standard 1_175_180 permit 65000:1 0:175 0:180 ip community-list standard 1_176_179 permit 65000:1 0:176 0:179 ip community-list standard 1_177_178 permit 65000:1 0:177 0:178 route-map calculator permit 541 match community 2_5_71 1_99_256 1_100_255 1_101_254 1_102_253 set community 0:355 route-map calculator permit 542 match community 1_103_252 1_104_251 1_105_250 1_106_249 1_107_248 set community 0:355 route-map calculator permit 543 match community 1_108_247 1_109_246 1_110_245 1_111_244 1_112_243 set community 0:355 route-map calculator permit 544 match community 1_113_242 1_114_241 1_115_240 1_116_239 1_117_238 set community 0:355 route-map calculator permit 545 match community 1_118_237 1_119_236 1_120_235 1_121_234 1_122_233 set community 0:355 route-map calculator permit 546 match community 1_123_232 1_124_231 1_125_230 1_126_229 1_127_228 set community 0:355 route-map calculator permit 547 match community 1_128_227 1_129_226 1_130_225 1_131_224 1_132_223 set community 0:355 route-map calculator permit 548 match community 1_133_222 1_134_221 1_135_220 1_136_219 1_137_218 set community 0:355 route-map calculator permit 549 match community 1_138_217 1_139_216 1_140_215 1_141_214 1_142_213 set community 0:355 route-map calculator permit 550 match community 1_143_212 1_144_211 1_145_210 1_146_209 1_147_208 set community 0:355 route-map calculator permit 551 match community 1_148_207 1_149_206 1_150_205 1_151_204 1_152_203 set community 0:355 route-map calculator permit 552 match community 1_153_202 1_154_201 1_155_200 1_156_199 1_157_198 set community 0:355 route-map calculator permit 553 match community 1_158_197 1_159_196 1_160_195 1_161_194 1_162_193 set community 0:355 route-map calculator permit 554 match community 1_163_192 1_164_191 1_165_190 1_166_189 1_167_188 set community 0:355 route-map calculator permit 555 match community 1_168_187 1_169_186 1_170_185 1_171_184 1_172_183 set community 0:355 route-map calculator permit 556 match community 1_173_182 1_174_181 1_175_180 1_176_179 1_177_178 set community 0:355 ip community-list standard 2_35_249 permit 65000:2 0:35 0:249 ip community-list standard 2_83_105 permit 65000:2 0:83 0:105 route-map calculator permit 557 match community 2_35_249 2_83_105 set community 0:8715 ip community-list standard 2_185_229 permit 65000:2 0:185 0:229 route-map calculator permit 558 match community 2_185_229 set community 0:42365 ip community-list standard 2_2_221 permit 65000:2 0:2 0:221 ip community-list standard 2_13_34 permit 65000:2 0:13 0:34 ip community-list standard 2_17_26 permit 65000:2 0:17 0:26 ip community-list standard 1_186_256 permit 65000:1 0:186 0:256 ip community-list standard 1_187_255 permit 65000:1 0:187 0:255 ip community-list standard 1_188_254 permit 65000:1 0:188 0:254 ip community-list standard 1_189_253 permit 65000:1 0:189 0:253 ip community-list standard 1_190_252 permit 65000:1 0:190 0:252 ip community-list standard 1_191_251 permit 65000:1 0:191 0:251 ip community-list standard 1_192_250 permit 65000:1 0:192 0:250 ip community-list standard 1_193_249 permit 65000:1 0:193 0:249 ip community-list standard 1_194_248 permit 65000:1 0:194 0:248 ip community-list standard 1_195_247 permit 65000:1 0:195 0:247 ip community-list standard 1_196_246 permit 65000:1 0:196 0:246 ip community-list standard 1_197_245 permit 65000:1 0:197 0:245 ip community-list standard 1_198_244 permit 65000:1 0:198 0:244 ip community-list standard 1_199_243 permit 65000:1 0:199 0:243 ip community-list standard 1_200_242 permit 65000:1 0:200 0:242 ip community-list standard 1_201_241 permit 65000:1 0:201 0:241 ip community-list standard 1_202_240 permit 65000:1 0:202 0:240 ip community-list standard 1_203_239 permit 65000:1 0:203 0:239 ip community-list standard 1_204_238 permit 65000:1 0:204 0:238 ip community-list standard 1_205_237 permit 65000:1 0:205 0:237 ip community-list standard 1_206_236 permit 65000:1 0:206 0:236 ip community-list standard 1_207_235 permit 65000:1 0:207 0:235 ip community-list standard 1_208_234 permit 65000:1 0:208 0:234 ip community-list standard 1_209_233 permit 65000:1 0:209 0:233 ip community-list standard 1_210_232 permit 65000:1 0:210 0:232 ip community-list standard 1_211_231 permit 65000:1 0:211 0:231 ip community-list standard 1_212_230 permit 65000:1 0:212 0:230 ip community-list standard 1_213_229 permit 65000:1 0:213 0:229 ip community-list standard 1_214_228 permit 65000:1 0:214 0:228 ip community-list standard 1_215_227 permit 65000:1 0:215 0:227 ip community-list standard 1_216_226 permit 65000:1 0:216 0:226 ip community-list standard 1_217_225 permit 65000:1 0:217 0:225 ip community-list standard 1_218_224 permit 65000:1 0:218 0:224 ip community-list standard 1_219_223 permit 65000:1 0:219 0:223 ip community-list standard 1_220_222 permit 65000:1 0:220 0:222 ip community-list standard 1_221_221 permit 65000:1 0:221 0:221 route-map calculator permit 559 match community 2_2_221 2_13_34 2_17_26 1_186_256 1_187_255 set community 0:442 route-map calculator permit 560 match community 1_188_254 1_189_253 1_190_252 1_191_251 1_192_250 set community 0:442 route-map calculator permit 561 match community 1_193_249 1_194_248 1_195_247 1_196_246 1_197_245 set community 0:442 route-map calculator permit 562 match community 1_198_244 1_199_243 1_200_242 1_201_241 1_202_240 set community 0:442 route-map calculator permit 563 match community 1_203_239 1_204_238 1_205_237 1_206_236 1_207_235 set community 0:442 route-map calculator permit 564 match community 1_208_234 1_209_233 1_210_232 1_211_231 1_212_230 set community 0:442 route-map calculator permit 565 match community 1_213_229 1_214_228 1_215_227 1_216_226 1_217_225 set community 0:442 route-map calculator permit 566 match community 1_218_224 1_219_223 1_220_222 1_221_221 set community 0:442 ip community-list standard 2_68_215 permit 65000:2 0:68 0:215 ip community-list standard 2_85_172 permit 65000:2 0:85 0:172 ip community-list standard 2_86_170 permit 65000:2 0:86 0:170 route-map calculator permit 567 match community 2_68_215 2_85_172 2_86_170 set community 0:14620 ip community-list standard 2_194_243 permit 65000:2 0:194 0:243 route-map calculator permit 568 match community 2_194_243 set community 0:47142 ip community-list standard 2_77_209 permit 65000:2 0:77 0:209 ip community-list standard 2_121_133 permit 65000:2 0:121 0:133 route-map calculator permit 569 match community 2_77_209 2_121_133 set community 0:16093 ip community-list standard 2_137_241 permit 65000:2 0:137 0:241 route-map calculator permit 570 match community 2_137_241 set community 0:33017 ip community-list standard 2_194_222 permit 65000:2 0:194 0:222 route-map calculator permit 571 match community 2_194_222 set community 0:43068 ip community-list standard 2_230_253 permit 65000:2 0:230 0:253 route-map calculator permit 572 match community 2_230_253 set community 0:58190 ip community-list standard 2_112_237 permit 65000:2 0:112 0:237 ip community-list standard 2_158_168 permit 65000:2 0:158 0:168 route-map calculator permit 573 match community 2_112_237 2_158_168 set community 0:26544 ip community-list standard 2_229_240 permit 65000:2 0:229 0:240 route-map calculator permit 574 match community 2_229_240 set community 0:54960 ip community-list standard 2_61_215 permit 65000:2 0:61 0:215 route-map calculator permit 575 match community 2_61_215 set community 0:13115 ip community-list standard 2_101_165 permit 65000:2 0:101 0:165 route-map calculator permit 576 match community 2_101_165 set community 0:16665 ip community-list standard 2_109_244 permit 65000:2 0:109 0:244 ip community-list standard 2_122_218 permit 65000:2 0:122 0:218 route-map calculator permit 577 match community 2_109_244 2_122_218 set community 0:26596 ip community-list standard 2_167_237 permit 65000:2 0:167 0:237 route-map calculator permit 578 match community 2_167_237 set community 0:39579 ip community-list standard 2_66_250 permit 65000:2 0:66 0:250 ip community-list standard 2_75_220 permit 65000:2 0:75 0:220 ip community-list standard 2_100_165 permit 65000:2 0:100 0:165 ip community-list standard 2_110_150 permit 65000:2 0:110 0:150 ip community-list standard 2_125_132 permit 65000:2 0:125 0:132 route-map calculator permit 579 match community 2_66_250 2_75_220 2_100_165 2_110_150 2_125_132 set community 0:16500 ip community-list standard 2_108_219 permit 65000:2 0:108 0:219 ip community-list standard 2_146_162 permit 65000:2 0:146 0:162 route-map calculator permit 580 match community 2_108_219 2_146_162 set community 0:23652 ip community-list standard 2_7_77 permit 65000:2 0:7 0:77 ip community-list standard 2_11_49 permit 65000:2 0:11 0:49 route-map calculator permit 581 match community 2_7_77 2_11_49 set community 0:539 ip community-list standard 2_164_196 permit 65000:2 0:164 0:196 route-map calculator permit 582 match community 2_164_196 set community 0:32144 ip community-list standard 2_78_211 permit 65000:2 0:78 0:211 route-map calculator permit 583 match community 2_78_211 set community 0:16458 ip community-list standard 2_90_179 permit 65000:2 0:90 0:179 route-map calculator permit 584 match community 2_90_179 set community 0:16110 ip community-list standard 2_5_191 permit 65000:2 0:5 0:191 route-map calculator permit 585 match community 2_5_191 set community 0:955 ip community-list standard 2_135_214 permit 65000:2 0:135 0:214 route-map calculator permit 586 match community 2_135_214 set community 0:28890 ip community-list standard 2_164_212 permit 65000:2 0:164 0:212 route-map calculator permit 587 match community 2_164_212 set community 0:34768 ip community-list standard 2_17_183 permit 65000:2 0:17 0:183 ip community-list standard 2_51_61 permit 65000:2 0:51 0:61 route-map calculator permit 588 match community 2_17_183 2_51_61 set community 0:3111 ip community-list standard 2_26_145 permit 65000:2 0:26 0:145 ip community-list standard 2_29_130 permit 65000:2 0:29 0:130 ip community-list standard 2_58_65 permit 65000:2 0:58 0:65 route-map calculator permit 589 match community 2_26_145 2_29_130 2_58_65 set community 0:3770 ip community-list standard 2_102_157 permit 65000:2 0:102 0:157 route-map calculator permit 590 match community 2_102_157 set community 0:16014 ip community-list standard 2_94_246 permit 65000:2 0:94 0:246 ip community-list standard 2_123_188 permit 65000:2 0:123 0:188 ip community-list standard 2_141_164 permit 65000:2 0:141 0:164 route-map calculator permit 591 match community 2_94_246 2_123_188 2_141_164 set community 0:23124 ip community-list standard 2_3_246 permit 65000:2 0:3 0:246 ip community-list standard 2_6_123 permit 65000:2 0:6 0:123 ip community-list standard 2_9_82 permit 65000:2 0:9 0:82 ip community-list standard 2_18_41 permit 65000:2 0:18 0:41 route-map calculator permit 592 match community 2_3_246 2_6_123 2_9_82 2_18_41 set community 0:738 ip community-list standard 2_88_242 permit 65000:2 0:88 0:242 ip community-list standard 2_121_176 permit 65000:2 0:121 0:176 route-map calculator permit 593 match community 2_88_242 2_121_176 set community 0:21296 ip community-list standard 2_71_235 permit 65000:2 0:71 0:235 route-map calculator permit 594 match community 2_71_235 set community 0:16685 ip community-list standard 2_157_176 permit 65000:2 0:157 0:176 route-map calculator permit 595 match community 2_157_176 set community 0:27632 ip community-list standard 2_41_249 permit 65000:2 0:41 0:249 ip community-list standard 2_83_123 permit 65000:2 0:83 0:123 route-map calculator permit 596 match community 2_41_249 2_83_123 set community 0:10209 ip community-list standard 2_117_219 permit 65000:2 0:117 0:219 route-map calculator permit 597 match community 2_117_219 set community 0:25623 ip community-list standard 2_190_223 permit 65000:2 0:190 0:223 route-map calculator permit 598 match community 2_190_223 set community 0:42370 ip community-list standard 2_40_158 permit 65000:2 0:40 0:158 ip community-list standard 2_79_80 permit 65000:2 0:79 0:80 route-map calculator permit 599 match community 2_40_158 2_79_80 set community 0:6320 ip community-list standard 1_1_90 permit 65000:1 0:1 0:90 ip community-list standard 2_1_91 permit 65000:2 0:1 0:91 ip community-list standard 1_2_89 permit 65000:1 0:2 0:89 ip community-list standard 1_3_88 permit 65000:1 0:3 0:88 ip community-list standard 1_4_87 permit 65000:1 0:4 0:87 ip community-list standard 1_5_86 permit 65000:1 0:5 0:86 ip community-list standard 1_6_85 permit 65000:1 0:6 0:85 ip community-list standard 2_7_13 permit 65000:2 0:7 0:13 ip community-list standard 1_7_84 permit 65000:1 0:7 0:84 ip community-list standard 1_8_83 permit 65000:1 0:8 0:83 ip community-list standard 1_9_82 permit 65000:1 0:9 0:82 ip community-list standard 1_10_81 permit 65000:1 0:10 0:81 ip community-list standard 1_11_80 permit 65000:1 0:11 0:80 ip community-list standard 1_12_79 permit 65000:1 0:12 0:79 ip community-list standard 1_13_78 permit 65000:1 0:13 0:78 ip community-list standard 1_14_77 permit 65000:1 0:14 0:77 ip community-list standard 1_15_76 permit 65000:1 0:15 0:76 ip community-list standard 1_16_75 permit 65000:1 0:16 0:75 ip community-list standard 1_17_74 permit 65000:1 0:17 0:74 ip community-list standard 1_18_73 permit 65000:1 0:18 0:73 ip community-list standard 1_19_72 permit 65000:1 0:19 0:72 ip community-list standard 1_20_71 permit 65000:1 0:20 0:71 ip community-list standard 1_21_70 permit 65000:1 0:21 0:70 ip community-list standard 1_22_69 permit 65000:1 0:22 0:69 ip community-list standard 1_23_68 permit 65000:1 0:23 0:68 ip community-list standard 1_24_67 permit 65000:1 0:24 0:67 ip community-list standard 1_25_66 permit 65000:1 0:25 0:66 ip community-list standard 1_26_65 permit 65000:1 0:26 0:65 ip community-list standard 1_27_64 permit 65000:1 0:27 0:64 ip community-list standard 1_28_63 permit 65000:1 0:28 0:63 ip community-list standard 1_29_62 permit 65000:1 0:29 0:62 ip community-list standard 1_30_61 permit 65000:1 0:30 0:61 ip community-list standard 1_31_60 permit 65000:1 0:31 0:60 ip community-list standard 1_32_59 permit 65000:1 0:32 0:59 ip community-list standard 1_33_58 permit 65000:1 0:33 0:58 ip community-list standard 1_34_57 permit 65000:1 0:34 0:57 ip community-list standard 1_35_56 permit 65000:1 0:35 0:56 ip community-list standard 1_36_55 permit 65000:1 0:36 0:55 ip community-list standard 1_37_54 permit 65000:1 0:37 0:54 ip community-list standard 1_38_53 permit 65000:1 0:38 0:53 ip community-list standard 1_39_52 permit 65000:1 0:39 0:52 ip community-list standard 1_40_51 permit 65000:1 0:40 0:51 ip community-list standard 1_41_50 permit 65000:1 0:41 0:50 ip community-list standard 1_42_49 permit 65000:1 0:42 0:49 ip community-list standard 1_43_48 permit 65000:1 0:43 0:48 ip community-list standard 1_44_47 permit 65000:1 0:44 0:47 ip community-list standard 1_45_46 permit 65000:1 0:45 0:46 ip community-list expanded c91 permit 1 ^65000:4_0:91_0:1$ ip community-list expanded c91 permit 2 ^65000:3_0:92_0:1$ ip community-list expanded c91 permit 3 ^65000:3_0:93_0:2$ ip community-list expanded c91 permit 4 ^65000:3_0:94_0:3$ ip community-list expanded c91 permit 5 ^65000:3_0:95_0:4$ ip community-list expanded c91 permit 6 ^65000:3_0:96_0:5$ ip community-list expanded c91 permit 7 ^65000:3_0:97_0:6$ ip community-list expanded c91 permit 8 ^65000:3_0:98_0:7$ ip community-list expanded c91 permit 9 ^65000:3_0:99_0:8$ ip community-list expanded c91 permit 10 ^65000:3_0:100_0:9$ ip community-list expanded c91 permit 11 ^65000:3_0:101_0:10$ ip community-list expanded c91 permit 12 ^65000:3_0:102_0:11$ ip community-list expanded c91 permit 13 ^65000:3_0:103_0:12$ ip community-list expanded c91 permit 14 ^65000:3_0:104_0:13$ ip community-list expanded c91 permit 15 ^65000:3_0:105_0:14$ ip community-list expanded c91 permit 16 ^65000:3_0:106_0:15$ ip community-list expanded c91 permit 17 ^65000:3_0:107_0:16$ ip community-list expanded c91 permit 18 ^65000:3_0:108_0:17$ ip community-list expanded c91 permit 19 ^65000:3_0:109_0:18$ ip community-list expanded c91 permit 20 ^65000:3_0:110_0:19$ ip community-list expanded c91 permit 21 ^65000:3_0:111_0:20$ ip community-list expanded c91 permit 22 ^65000:3_0:112_0:21$ ip community-list expanded c91 permit 23 ^65000:3_0:113_0:22$ ip community-list expanded c91 permit 24 ^65000:3_0:114_0:23$ ip community-list expanded c91 permit 25 ^65000:3_0:115_0:24$ ip community-list expanded c91 permit 26 ^65000:3_0:116_0:25$ ip community-list expanded c91 permit 27 ^65000:3_0:117_0:26$ ip community-list expanded c91 permit 28 ^65000:3_0:118_0:27$ ip community-list expanded c91 permit 29 ^65000:3_0:119_0:28$ ip community-list expanded c91 permit 30 ^65000:3_0:120_0:29$ ip community-list expanded c91 permit 31 ^65000:3_0:121_0:30$ ip community-list expanded c91 permit 32 ^65000:3_0:122_0:31$ ip community-list expanded c91 permit 33 ^65000:3_0:123_0:32$ ip community-list expanded c91 permit 34 ^65000:3_0:124_0:33$ ip community-list expanded c91 permit 35 ^65000:3_0:125_0:34$ ip community-list expanded c91 permit 36 ^65000:3_0:126_0:35$ ip community-list expanded c91 permit 37 ^65000:3_0:127_0:36$ ip community-list expanded c91 permit 38 ^65000:3_0:128_0:37$ ip community-list expanded c91 permit 39 ^65000:3_0:129_0:38$ ip community-list expanded c91 permit 40 ^65000:3_0:130_0:39$ ip community-list expanded c91 permit 41 ^65000:3_0:131_0:40$ ip community-list expanded c91 permit 42 ^65000:3_0:132_0:41$ ip community-list expanded c91 permit 43 ^65000:3_0:133_0:42$ ip community-list expanded c91 permit 44 ^65000:3_0:134_0:43$ ip community-list expanded c91 permit 45 ^65000:3_0:135_0:44$ ip community-list expanded c91 permit 46 ^65000:3_0:136_0:45$ ip community-list expanded c91 permit 47 ^65000:3_0:137_0:46$ ip community-list expanded c91 permit 48 ^65000:3_0:138_0:47$ ip community-list expanded c91 permit 49 ^65000:3_0:139_0:48$ ip community-list expanded c91 permit 50 ^65000:3_0:140_0:49$ ip community-list expanded c91 permit 51 ^65000:3_0:141_0:50$ ip community-list expanded c91 permit 52 ^65000:3_0:142_0:51$ ip community-list expanded c91 permit 53 ^65000:3_0:143_0:52$ ip community-list expanded c91 permit 54 ^65000:3_0:144_0:53$ ip community-list expanded c91 permit 55 ^65000:3_0:145_0:54$ ip community-list expanded c91 permit 56 ^65000:3_0:146_0:55$ ip community-list expanded c91 permit 57 ^65000:3_0:147_0:56$ ip community-list expanded c91 permit 58 ^65000:3_0:148_0:57$ ip community-list expanded c91 permit 59 ^65000:3_0:149_0:58$ ip community-list expanded c91 permit 60 ^65000:3_0:150_0:59$ ip community-list expanded c91 permit 61 ^65000:3_0:151_0:60$ ip community-list expanded c91 permit 62 ^65000:3_0:152_0:61$ ip community-list expanded c91 permit 63 ^65000:3_0:153_0:62$ ip community-list expanded c91 permit 64 ^65000:3_0:154_0:63$ ip community-list expanded c91 permit 65 ^65000:3_0:155_0:64$ ip community-list expanded c91 permit 66 ^65000:3_0:156_0:65$ ip community-list expanded c91 permit 67 ^65000:3_0:157_0:66$ ip community-list expanded c91 permit 68 ^65000:3_0:158_0:67$ ip community-list expanded c91 permit 69 ^65000:3_0:159_0:68$ ip community-list expanded c91 permit 70 ^65000:3_0:160_0:69$ ip community-list expanded c91 permit 71 ^65000:3_0:161_0:70$ ip community-list expanded c91 permit 72 ^65000:3_0:162_0:71$ ip community-list expanded c91 permit 73 ^65000:3_0:163_0:72$ ip community-list expanded c91 permit 74 ^65000:3_0:164_0:73$ ip community-list expanded c91 permit 75 ^65000:3_0:165_0:74$ ip community-list expanded c91 permit 76 ^65000:3_0:166_0:75$ ip community-list expanded c91 permit 77 ^65000:3_0:167_0:76$ ip community-list expanded c91 permit 78 ^65000:3_0:168_0:77$ ip community-list expanded c91 permit 79 ^65000:3_0:169_0:78$ ip community-list expanded c91 permit 80 ^65000:3_0:170_0:79$ ip community-list expanded c91 permit 81 ^65000:3_0:171_0:80$ ip community-list expanded c91 permit 82 ^65000:3_0:172_0:81$ ip community-list expanded c91 permit 83 ^65000:3_0:173_0:82$ ip community-list expanded c91 permit 84 ^65000:3_0:174_0:83$ ip community-list expanded c91 permit 85 ^65000:3_0:175_0:84$ ip community-list expanded c91 permit 86 ^65000:3_0:176_0:85$ ip community-list expanded c91 permit 87 ^65000:3_0:177_0:86$ ip community-list expanded c91 permit 88 ^65000:3_0:178_0:87$ ip community-list expanded c91 permit 89 ^65000:3_0:179_0:88$ ip community-list expanded c91 permit 90 ^65000:3_0:180_0:89$ ip community-list expanded c91 permit 91 ^65000:3_0:181_0:90$ ip community-list expanded c91 permit 92 ^65000:4_0:182_0:2$ ip community-list expanded c91 permit 93 ^65000:3_0:182_0:91$ ip community-list expanded c91 permit 94 ^65000:4_0:183_0:2$ ip community-list expanded c91 permit 95 ^65000:3_0:183_0:92$ ip community-list expanded c91 permit 96 ^65000:3_0:184_0:93$ ip community-list expanded c91 permit 97 ^65000:3_0:185_0:94$ ip community-list expanded c91 permit 98 ^65000:3_0:186_0:95$ ip community-list expanded c91 permit 99 ^65000:3_0:187_0:96$ ip community-list expanded c91 permit 100 ^65000:3_0:188_0:97$ ip community-list expanded c91 permit 101 ^65000:3_0:189_0:98$ ip community-list expanded c91 permit 102 ^65000:3_0:190_0:99$ ip community-list expanded c91 permit 103 ^65000:3_0:191_0:100$ ip community-list expanded c91 permit 104 ^65000:3_0:192_0:101$ ip community-list expanded c91 permit 105 ^65000:3_0:193_0:102$ ip community-list expanded c91 permit 106 ^65000:3_0:194_0:103$ ip community-list expanded c91 permit 107 ^65000:3_0:195_0:104$ ip community-list expanded c91 permit 108 ^65000:3_0:196_0:105$ ip community-list expanded c91 permit 109 ^65000:3_0:197_0:106$ ip community-list expanded c91 permit 110 ^65000:3_0:198_0:107$ ip community-list expanded c91 permit 111 ^65000:3_0:199_0:108$ ip community-list expanded c91 permit 112 ^65000:3_0:200_0:109$ ip community-list expanded c91 permit 113 ^65000:3_0:201_0:110$ ip community-list expanded c91 permit 114 ^65000:3_0:202_0:111$ ip community-list expanded c91 permit 115 ^65000:3_0:203_0:112$ ip community-list expanded c91 permit 116 ^65000:3_0:204_0:113$ ip community-list expanded c91 permit 117 ^65000:3_0:205_0:114$ ip community-list expanded c91 permit 118 ^65000:3_0:206_0:115$ ip community-list expanded c91 permit 119 ^65000:3_0:207_0:116$ ip community-list expanded c91 permit 120 ^65000:3_0:208_0:117$ ip community-list expanded c91 permit 121 ^65000:3_0:209_0:118$ ip community-list expanded c91 permit 122 ^65000:3_0:210_0:119$ ip community-list expanded c91 permit 123 ^65000:3_0:211_0:120$ ip community-list expanded c91 permit 124 ^65000:3_0:212_0:121$ ip community-list expanded c91 permit 125 ^65000:3_0:213_0:122$ ip community-list expanded c91 permit 126 ^65000:3_0:214_0:123$ ip community-list expanded c91 permit 127 ^65000:3_0:215_0:124$ ip community-list expanded c91 permit 128 ^65000:3_0:216_0:125$ ip community-list expanded c91 permit 129 ^65000:3_0:217_0:126$ ip community-list expanded c91 permit 130 ^65000:3_0:218_0:127$ ip community-list expanded c91 permit 131 ^65000:3_0:219_0:128$ ip community-list expanded c91 permit 132 ^65000:3_0:220_0:129$ ip community-list expanded c91 permit 133 ^65000:3_0:221_0:130$ ip community-list expanded c91 permit 134 ^65000:3_0:222_0:131$ ip community-list expanded c91 permit 135 ^65000:3_0:223_0:132$ ip community-list expanded c91 permit 136 ^65000:3_0:224_0:133$ ip community-list expanded c91 permit 137 ^65000:3_0:225_0:134$ ip community-list expanded c91 permit 138 ^65000:3_0:226_0:135$ ip community-list expanded c91 permit 139 ^65000:3_0:227_0:136$ ip community-list expanded c91 permit 140 ^65000:3_0:228_0:137$ ip community-list expanded c91 permit 141 ^65000:3_0:229_0:138$ ip community-list expanded c91 permit 142 ^65000:3_0:230_0:139$ ip community-list expanded c91 permit 143 ^65000:3_0:231_0:140$ ip community-list expanded c91 permit 144 ^65000:3_0:232_0:141$ ip community-list expanded c91 permit 145 ^65000:3_0:233_0:142$ ip community-list expanded c91 permit 146 ^65000:3_0:234_0:143$ ip community-list expanded c91 permit 147 ^65000:3_0:235_0:144$ ip community-list expanded c91 permit 148 ^65000:3_0:236_0:145$ ip community-list expanded c91 permit 149 ^65000:3_0:237_0:146$ ip community-list expanded c91 permit 150 ^65000:3_0:238_0:147$ ip community-list expanded c91 permit 151 ^65000:3_0:239_0:148$ ip community-list expanded c91 permit 152 ^65000:3_0:240_0:149$ ip community-list expanded c91 permit 153 ^65000:3_0:241_0:150$ ip community-list expanded c91 permit 154 ^65000:3_0:242_0:151$ ip community-list expanded c91 permit 155 ^65000:3_0:243_0:152$ ip community-list expanded c91 permit 156 ^65000:3_0:244_0:153$ ip community-list expanded c91 permit 157 ^65000:3_0:245_0:154$ ip community-list expanded c91 permit 158 ^65000:3_0:246_0:155$ ip community-list expanded c91 permit 159 ^65000:3_0:247_0:156$ ip community-list expanded c91 permit 160 ^65000:3_0:248_0:157$ ip community-list expanded c91 permit 161 ^65000:3_0:249_0:158$ ip community-list expanded c91 permit 162 ^65000:3_0:250_0:159$ ip community-list expanded c91 permit 163 ^65000:3_0:251_0:160$ ip community-list expanded c91 permit 164 ^65000:3_0:252_0:161$ ip community-list expanded c91 permit 165 ^65000:3_0:253_0:162$ ip community-list expanded c91 permit 166 ^65000:3_0:254_0:163$ ip community-list expanded c91 permit 167 ^65000:3_0:255_0:164$ ip community-list expanded c91 permit 168 ^65000:3_0:256_0:165$ route-map calculator permit 600 match community 1_1_90 2_1_91 1_2_89 1_3_88 1_4_87 set community 0:91 route-map calculator permit 601 match community 1_5_86 1_6_85 2_7_13 1_7_84 1_8_83 set community 0:91 route-map calculator permit 602 match community 1_9_82 1_10_81 1_11_80 1_12_79 1_13_78 set community 0:91 route-map calculator permit 603 match community 1_14_77 1_15_76 1_16_75 1_17_74 1_18_73 set community 0:91 route-map calculator permit 604 match community 1_19_72 1_20_71 1_21_70 1_22_69 1_23_68 set community 0:91 route-map calculator permit 605 match community 1_24_67 1_25_66 1_26_65 1_27_64 1_28_63 set community 0:91 route-map calculator permit 606 match community 1_29_62 1_30_61 1_31_60 1_32_59 1_33_58 set community 0:91 route-map calculator permit 607 match community 1_34_57 1_35_56 1_36_55 1_37_54 1_38_53 set community 0:91 route-map calculator permit 608 match community 1_39_52 1_40_51 1_41_50 1_42_49 1_43_48 set community 0:91 route-map calculator permit 609 match community 1_44_47 1_45_46 c4_91_1 c3_92_1 c3_93_2 set community 0:91 route-map calculator permit 610 match community c3_94_3 c3_95_4 c3_96_5 c3_97_6 c3_98_7 set community 0:91 route-map calculator permit 611 match community c3_99_8 c3_100_9 c3_101_10 c3_102_11 c3_103_12 set community 0:91 route-map calculator permit 612 match community c3_104_13 c3_105_14 c3_106_15 c3_107_16 c3_108_17 set community 0:91 route-map calculator permit 613 match community c3_109_18 c3_110_19 c3_111_20 c3_112_21 c3_113_22 set community 0:91 route-map calculator permit 614 match community c3_114_23 c3_115_24 c3_116_25 c3_117_26 c3_118_27 set community 0:91 route-map calculator permit 615 match community c3_119_28 c3_120_29 c3_121_30 c3_122_31 c3_123_32 set community 0:91 route-map calculator permit 616 match community c3_124_33 c3_125_34 c3_126_35 c3_127_36 c3_128_37 set community 0:91 route-map calculator permit 617 match community c3_129_38 c3_130_39 c3_131_40 c3_132_41 c3_133_42 set community 0:91 route-map calculator permit 618 match community c3_134_43 c3_135_44 c3_136_45 c3_137_46 c3_138_47 set community 0:91 route-map calculator permit 619 match community c3_139_48 c3_140_49 c3_141_50 c3_142_51 c3_143_52 set community 0:91 route-map calculator permit 620 match community c3_144_53 c3_145_54 c3_146_55 c3_147_56 c3_148_57 set community 0:91 route-map calculator permit 621 match community c3_149_58 c3_150_59 c3_151_60 c3_152_61 c3_153_62 set community 0:91 route-map calculator permit 622 match community c3_154_63 c3_155_64 c3_156_65 c3_157_66 c3_158_67 set community 0:91 route-map calculator permit 623 match community c3_159_68 c3_160_69 c3_161_70 c3_162_71 c3_163_72 set community 0:91 route-map calculator permit 624 match community c3_164_73 c3_165_74 c3_166_75 c3_167_76 c3_168_77 set community 0:91 route-map calculator permit 625 match community c3_169_78 c3_170_79 c3_171_80 c3_172_81 c3_173_82 set community 0:91 route-map calculator permit 626 match community c3_174_83 c3_175_84 c3_176_85 c3_177_86 c3_178_87 set community 0:91 route-map calculator permit 627 match community c3_179_88 c3_180_89 c3_181_90 c4_182_2 c3_182_91 set community 0:91 route-map calculator permit 628 match community c4_183_2 c3_183_92 c3_184_93 c3_185_94 c3_186_95 set community 0:91 route-map calculator permit 629 match community c3_187_96 c3_188_97 c3_189_98 c3_190_99 c3_191_100 set community 0:91 route-map calculator permit 630 match community c3_192_101 c3_193_102 c3_194_103 c3_195_104 c3_196_105 set community 0:91 route-map calculator permit 631 match community c3_197_106 c3_198_107 c3_199_108 c3_200_109 c3_201_110 set community 0:91 route-map calculator permit 632 match community c3_202_111 c3_203_112 c3_204_113 c3_205_114 c3_206_115 set community 0:91 route-map calculator permit 633 match community c3_207_116 c3_208_117 c3_209_118 c3_210_119 c3_211_120 set community 0:91 route-map calculator permit 634 match community c3_212_121 c3_213_122 c3_214_123 c3_215_124 c3_216_125 set community 0:91 route-map calculator permit 635 match community c3_217_126 c3_218_127 c3_219_128 c3_220_129 c3_221_130 set community 0:91 route-map calculator permit 636 match community c3_222_131 c3_223_132 c3_224_133 c3_225_134 c3_226_135 set community 0:91 route-map calculator permit 637 match community c3_227_136 c3_228_137 c3_229_138 c3_230_139 c3_231_140 set community 0:91 route-map calculator permit 638 match community c3_232_141 c3_233_142 c3_234_143 c3_235_144 c3_236_145 set community 0:91 route-map calculator permit 639 match community c3_237_146 c3_238_147 c3_239_148 c3_240_149 c3_241_150 set community 0:91 route-map calculator permit 640 match community c3_242_151 c3_243_152 c3_244_153 c3_245_154 c3_246_155 set community 0:91 route-map calculator permit 641 match community c3_247_156 c3_248_157 c3_249_158 c3_250_159 c3_251_160 set community 0:91 route-map calculator permit 642 match community c3_252_161 c3_253_162 c3_254_163 c3_255_164 c3_256_165 set community 0:91 ip community-list standard 2_53_231 permit 65000:2 0:53 0:231 ip community-list standard 2_77_159 permit 65000:2 0:77 0:159 route-map calculator permit 643 match community 2_53_231 2_77_159 set community 0:12243 ip community-list standard 2_90_256 permit 65000:2 0:90 0:256 ip community-list standard 2_96_240 permit 65000:2 0:96 0:240 ip community-list standard 2_120_192 permit 65000:2 0:120 0:192 ip community-list standard 2_128_180 permit 65000:2 0:128 0:180 ip community-list standard 2_144_160 permit 65000:2 0:144 0:160 route-map calculator permit 644 match community 2_90_256 2_96_240 2_120_192 2_128_180 2_144_160 set community 0:23040 ip community-list standard 2_15_237 permit 65000:2 0:15 0:237 ip community-list standard 2_45_79 permit 65000:2 0:45 0:79 route-map calculator permit 645 match community 2_15_237 2_45_79 set community 0:3555 ip community-list standard 2_19_116 permit 65000:2 0:19 0:116 ip community-list standard 2_29_76 permit 65000:2 0:29 0:76 ip community-list standard 2_38_58 permit 65000:2 0:38 0:58 route-map calculator permit 646 match community 2_19_116 2_29_76 2_38_58 set community 0:2204 ip community-list standard 2_51_191 permit 65000:2 0:51 0:191 route-map calculator permit 647 match community 2_51_191 set community 0:9741 ip community-list standard 2_125_143 permit 65000:2 0:125 0:143 route-map calculator permit 648 match community 2_125_143 set community 0:17875 ip community-list standard 2_244_245 permit 65000:2 0:244 0:245 route-map calculator permit 649 match community 2_244_245 set community 0:59780 ip community-list standard 2_18_213 permit 65000:2 0:18 0:213 ip community-list standard 2_27_142 permit 65000:2 0:27 0:142 ip community-list standard 2_54_71 permit 65000:2 0:54 0:71 route-map calculator permit 650 match community 2_18_213 2_27_142 2_54_71 set community 0:3834 ip community-list standard 2_133_254 permit 65000:2 0:133 0:254 route-map calculator permit 651 match community 2_133_254 set community 0:33782 ip community-list standard 2_114_133 permit 65000:2 0:114 0:133 route-map calculator permit 652 match community 2_114_133 set community 0:15162 ip community-list standard 2_172_256 permit 65000:2 0:172 0:256 route-map calculator permit 653 match community 2_172_256 set community 0:44032 ip community-list standard 2_209_229 permit 65000:2 0:209 0:229 route-map calculator permit 654 match community 2_209_229 set community 0:47861 ip community-list standard 2_133_224 permit 65000:2 0:133 0:224 ip community-list standard 2_152_196 permit 65000:2 0:152 0:196 route-map calculator permit 655 match community 2_133_224 2_152_196 set community 0:29792 ip community-list standard 2_86_197 permit 65000:2 0:86 0:197 route-map calculator permit 656 match community 2_86_197 set community 0:16942 ip community-list standard 2_197_225 permit 65000:2 0:197 0:225 route-map calculator permit 657 match community 2_197_225 set community 0:44325 ip community-list standard 2_62_169 permit 65000:2 0:62 0:169 route-map calculator permit 658 match community 2_62_169 set community 0:10478 ip community-list standard 2_145_145 permit 65000:2 0:145 0:145 route-map calculator permit 659 match community 2_145_145 set community 0:21025 ip community-list standard 2_129_254 permit 65000:2 0:129 0:254 route-map calculator permit 660 match community 2_129_254 set community 0:32766 ip community-list standard 2_2_244 permit 65000:2 0:2 0:244 ip community-list standard 2_4_122 permit 65000:2 0:4 0:122 ip community-list standard 2_8_61 permit 65000:2 0:8 0:61 ip community-list standard 1_232_256 permit 65000:1 0:232 0:256 ip community-list standard 1_233_255 permit 65000:1 0:233 0:255 ip community-list standard 1_234_254 permit 65000:1 0:234 0:254 ip community-list standard 1_235_253 permit 65000:1 0:235 0:253 ip community-list standard 1_236_252 permit 65000:1 0:236 0:252 ip community-list standard 1_237_251 permit 65000:1 0:237 0:251 ip community-list standard 1_238_250 permit 65000:1 0:238 0:250 ip community-list standard 1_239_249 permit 65000:1 0:239 0:249 ip community-list standard 1_240_248 permit 65000:1 0:240 0:248 ip community-list standard 1_241_247 permit 65000:1 0:241 0:247 ip community-list standard 1_242_246 permit 65000:1 0:242 0:246 ip community-list standard 1_243_245 permit 65000:1 0:243 0:245 ip community-list standard 1_244_244 permit 65000:1 0:244 0:244 route-map calculator permit 661 match community 2_2_244 2_4_122 2_8_61 1_232_256 1_233_255 set community 0:488 route-map calculator permit 662 match community 1_234_254 1_235_253 1_236_252 1_237_251 1_238_250 set community 0:488 route-map calculator permit 663 match community 1_239_249 1_240_248 1_241_247 1_242_246 1_243_245 set community 0:488 route-map calculator permit 664 match community 1_244_244 set community 0:488 ip community-list standard 2_29_131 permit 65000:2 0:29 0:131 route-map calculator permit 665 match community 2_29_131 set community 0:3799 ip community-list standard 2_215_237 permit 65000:2 0:215 0:237 route-map calculator permit 666 match community 2_215_237 set community 0:50955 ip community-list standard 2_113_238 permit 65000:2 0:113 0:238 ip community-list standard 2_119_226 permit 65000:2 0:119 0:226 route-map calculator permit 667 match community 2_113_238 2_119_226 set community 0:26894 ip community-list standard 2_28_241 permit 65000:2 0:28 0:241 route-map calculator permit 668 match community 2_28_241 set community 0:6748 ip community-list standard 2_93_190 permit 65000:2 0:93 0:190 ip community-list standard 2_95_186 permit 65000:2 0:95 0:186 ip community-list standard 2_114_155 permit 65000:2 0:114 0:155 route-map calculator permit 669 match community 2_93_190 2_95_186 2_114_155 set community 0:17670 ip community-list standard 2_181_211 permit 65000:2 0:181 0:211 route-map calculator permit 670 match community 2_181_211 set community 0:38191 ip community-list standard 2_153_171 permit 65000:2 0:153 0:171 route-map calculator permit 671 match community 2_153_171 set community 0:26163 ip community-list standard 2_222_244 permit 65000:2 0:222 0:244 route-map calculator permit 672 match community 2_222_244 set community 0:54168 ip community-list standard 2_204_227 permit 65000:2 0:204 0:227 route-map calculator permit 673 match community 2_204_227 set community 0:46308 ip community-list standard 2_3_196 permit 65000:2 0:3 0:196 ip community-list standard 2_4_147 permit 65000:2 0:4 0:147 ip community-list standard 2_6_98 permit 65000:2 0:6 0:98 ip community-list standard 2_7_84 permit 65000:2 0:7 0:84 ip community-list standard 2_12_49 permit 65000:2 0:12 0:49 ip community-list standard 2_14_42 permit 65000:2 0:14 0:42 ip community-list standard 2_21_28 permit 65000:2 0:21 0:28 route-map calculator permit 674 match community 2_3_196 2_4_147 2_6_98 2_7_84 2_12_49 set community 0:588 route-map calculator permit 675 match community 2_14_42 2_21_28 set community 0:588 ip community-list standard 2_109_167 permit 65000:2 0:109 0:167 route-map calculator permit 676 match community 2_109_167 set community 0:18203 ip community-list standard 2_148_215 permit 65000:2 0:148 0:215 ip community-list standard 2_172_185 permit 65000:2 0:172 0:185 route-map calculator permit 677 match community 2_148_215 2_172_185 set community 0:31820 ip community-list standard 2_216_228 permit 65000:2 0:216 0:228 route-map calculator permit 678 match community 2_216_228 set community 0:49248 ip community-list standard 2_148_149 permit 65000:2 0:148 0:149 route-map calculator permit 679 match community 2_148_149 set community 0:22052 ip community-list standard 2_40_163 permit 65000:2 0:40 0:163 route-map calculator permit 680 match community 2_40_163 set community 0:6520 ip community-list standard 2_215_244 permit 65000:2 0:215 0:244 route-map calculator permit 681 match community 2_215_244 set community 0:52460 ip community-list standard 2_131_241 permit 65000:2 0:131 0:241 route-map calculator permit 682 match community 2_131_241 set community 0:31571 ip community-list standard 2_19_29 permit 65000:2 0:19 0:29 route-map calculator permit 683 match community 2_19_29 set community 0:551 ip community-list standard 2_189_256 permit 65000:2 0:189 0:256 ip community-list standard 2_192_252 permit 65000:2 0:192 0:252 ip community-list standard 2_216_224 permit 65000:2 0:216 0:224 route-map calculator permit 684 match community 2_189_256 2_192_252 2_216_224 set community 0:48384 ip community-list standard 2_234_236 permit 65000:2 0:234 0:236 route-map calculator permit 685 match community 2_234_236 set community 0:55224 ip community-list standard 2_91_229 permit 65000:2 0:91 0:229 route-map calculator permit 686 match community 2_91_229 set community 0:20839 ip community-list standard 2_180_193 permit 65000:2 0:180 0:193 route-map calculator permit 687 match community 2_180_193 set community 0:34740 ip community-list standard 2_11_164 permit 65000:2 0:11 0:164 ip community-list standard 2_22_82 permit 65000:2 0:22 0:82 ip community-list standard 2_41_44 permit 65000:2 0:41 0:44 route-map calculator permit 688 match community 2_11_164 2_22_82 2_41_44 set community 0:1804 ip community-list standard 2_146_193 permit 65000:2 0:146 0:193 route-map calculator permit 689 match community 2_146_193 set community 0:28178 ip community-list standard 2_133_244 permit 65000:2 0:133 0:244 route-map calculator permit 690 match community 2_133_244 set community 0:32452 ip community-list standard 2_33_249 permit 65000:2 0:33 0:249 ip community-list standard 2_83_99 permit 65000:2 0:83 0:99 route-map calculator permit 691 match community 2_33_249 2_83_99 set community 0:8217 ip community-list standard 2_210_213 permit 65000:2 0:210 0:213 route-map calculator permit 692 match community 2_210_213 set community 0:44730 ip community-list standard 2_235_240 permit 65000:2 0:235 0:240 route-map calculator permit 693 match community 2_235_240 set community 0:56400 ip community-list standard 2_57_253 permit 65000:2 0:57 0:253 ip community-list standard 2_69_209 permit 65000:2 0:69 0:209 route-map calculator permit 694 match community 2_57_253 2_69_209 set community 0:14421 ip community-list standard 2_173_204 permit 65000:2 0:173 0:204 route-map calculator permit 695 match community 2_173_204 set community 0:35292 ip community-list standard 2_31_233 permit 65000:2 0:31 0:233 route-map calculator permit 696 match community 2_31_233 set community 0:7223 ip community-list standard 2_214_226 permit 65000:2 0:214 0:226 route-map calculator permit 697 match community 2_214_226 set community 0:48364 ip community-list standard 2_91_202 permit 65000:2 0:91 0:202 ip community-list standard 2_101_182 permit 65000:2 0:101 0:182 route-map calculator permit 698 match community 2_91_202 2_101_182 set community 0:18382 ip community-list standard 2_93_173 permit 65000:2 0:93 0:173 route-map calculator permit 699 match community 2_93_173 set community 0:16089 ip community-list standard 2_77_178 permit 65000:2 0:77 0:178 ip community-list standard 2_89_154 permit 65000:2 0:89 0:154 route-map calculator permit 700 match community 2_77_178 2_89_154 set community 0:13706 ip community-list standard 2_10_222 permit 65000:2 0:10 0:222 ip community-list standard 2_12_185 permit 65000:2 0:12 0:185 ip community-list standard 2_15_148 permit 65000:2 0:15 0:148 ip community-list standard 2_20_111 permit 65000:2 0:20 0:111 ip community-list standard 2_30_74 permit 65000:2 0:30 0:74 ip community-list standard 2_37_60 permit 65000:2 0:37 0:60 route-map calculator permit 701 match community 2_10_222 2_12_185 2_15_148 2_20_111 2_30_74 set community 0:2220 route-map calculator permit 702 match community 2_37_60 set community 0:2220 ip community-list standard 2_88_240 permit 65000:2 0:88 0:240 ip community-list standard 2_96_220 permit 65000:2 0:96 0:220 ip community-list standard 2_110_192 permit 65000:2 0:110 0:192 ip community-list standard 2_120_176 permit 65000:2 0:120 0:176 ip community-list standard 2_128_165 permit 65000:2 0:128 0:165 ip community-list standard 2_132_160 permit 65000:2 0:132 0:160 route-map calculator permit 703 match community 2_88_240 2_96_220 2_110_192 2_120_176 2_128_165 set community 0:21120 route-map calculator permit 704 match community 2_132_160 set community 0:21120 ip community-list standard 2_28_255 permit 65000:2 0:28 0:255 ip community-list standard 2_30_238 permit 65000:2 0:30 0:238 ip community-list standard 2_34_210 permit 65000:2 0:34 0:210 ip community-list standard 2_35_204 permit 65000:2 0:35 0:204 ip community-list standard 2_42_170 permit 65000:2 0:42 0:170 ip community-list standard 2_51_140 permit 65000:2 0:51 0:140 ip community-list standard 2_60_119 permit 65000:2 0:60 0:119 ip community-list standard 2_68_105 permit 65000:2 0:68 0:105 ip community-list standard 2_70_102 permit 65000:2 0:70 0:102 ip community-list standard 2_84_85 permit 65000:2 0:84 0:85 route-map calculator permit 705 match community 2_28_255 2_30_238 2_34_210 2_35_204 2_42_170 set community 0:7140 route-map calculator permit 706 match community 2_51_140 2_60_119 2_68_105 2_70_102 2_84_85 set community 0:7140 ip community-list standard 2_19_203 permit 65000:2 0:19 0:203 ip community-list standard 2_29_133 permit 65000:2 0:29 0:133 route-map calculator permit 707 match community 2_19_203 2_29_133 set community 0:3857 ip community-list standard 2_60_229 permit 65000:2 0:60 0:229 route-map calculator permit 708 match community 2_60_229 set community 0:13740 ip community-list standard 2_175_229 permit 65000:2 0:175 0:229 route-map calculator permit 709 match community 2_175_229 set community 0:40075 ip community-list standard 2_147_214 permit 65000:2 0:147 0:214 route-map calculator permit 710 match community 2_147_214 set community 0:31458 ip community-list standard 1_1_115 permit 65000:1 0:1 0:115 ip community-list standard 2_1_116 permit 65000:2 0:1 0:116 ip community-list standard 2_2_58 permit 65000:2 0:2 0:58 ip community-list standard 1_2_114 permit 65000:1 0:2 0:114 ip community-list standard 1_3_113 permit 65000:1 0:3 0:113 ip community-list standard 2_4_29 permit 65000:2 0:4 0:29 ip community-list standard 1_4_112 permit 65000:1 0:4 0:112 ip community-list standard 1_5_111 permit 65000:1 0:5 0:111 ip community-list standard 1_6_110 permit 65000:1 0:6 0:110 ip community-list standard 1_7_109 permit 65000:1 0:7 0:109 ip community-list standard 1_8_108 permit 65000:1 0:8 0:108 ip community-list standard 1_9_107 permit 65000:1 0:9 0:107 ip community-list standard 1_10_106 permit 65000:1 0:10 0:106 ip community-list standard 1_11_105 permit 65000:1 0:11 0:105 ip community-list standard 1_12_104 permit 65000:1 0:12 0:104 ip community-list standard 1_13_103 permit 65000:1 0:13 0:103 ip community-list standard 1_14_102 permit 65000:1 0:14 0:102 ip community-list standard 1_15_101 permit 65000:1 0:15 0:101 ip community-list standard 1_16_100 permit 65000:1 0:16 0:100 ip community-list standard 1_17_99 permit 65000:1 0:17 0:99 ip community-list standard 1_18_98 permit 65000:1 0:18 0:98 ip community-list standard 1_19_97 permit 65000:1 0:19 0:97 ip community-list standard 1_20_96 permit 65000:1 0:20 0:96 ip community-list standard 1_21_95 permit 65000:1 0:21 0:95 ip community-list standard 1_22_94 permit 65000:1 0:22 0:94 ip community-list standard 1_23_93 permit 65000:1 0:23 0:93 ip community-list standard 1_24_92 permit 65000:1 0:24 0:92 ip community-list standard 1_25_91 permit 65000:1 0:25 0:91 ip community-list standard 1_26_90 permit 65000:1 0:26 0:90 ip community-list standard 1_27_89 permit 65000:1 0:27 0:89 ip community-list standard 1_28_88 permit 65000:1 0:28 0:88 ip community-list standard 1_29_87 permit 65000:1 0:29 0:87 ip community-list standard 1_30_86 permit 65000:1 0:30 0:86 ip community-list standard 1_31_85 permit 65000:1 0:31 0:85 ip community-list standard 1_32_84 permit 65000:1 0:32 0:84 ip community-list standard 1_33_83 permit 65000:1 0:33 0:83 ip community-list standard 1_34_82 permit 65000:1 0:34 0:82 ip community-list standard 1_35_81 permit 65000:1 0:35 0:81 ip community-list standard 1_36_80 permit 65000:1 0:36 0:80 ip community-list standard 1_37_79 permit 65000:1 0:37 0:79 ip community-list standard 1_38_78 permit 65000:1 0:38 0:78 ip community-list standard 1_39_77 permit 65000:1 0:39 0:77 ip community-list standard 1_40_76 permit 65000:1 0:40 0:76 ip community-list standard 1_41_75 permit 65000:1 0:41 0:75 ip community-list standard 1_42_74 permit 65000:1 0:42 0:74 ip community-list standard 1_43_73 permit 65000:1 0:43 0:73 ip community-list standard 1_44_72 permit 65000:1 0:44 0:72 ip community-list standard 1_45_71 permit 65000:1 0:45 0:71 ip community-list standard 1_46_70 permit 65000:1 0:46 0:70 ip community-list standard 1_47_69 permit 65000:1 0:47 0:69 ip community-list standard 1_48_68 permit 65000:1 0:48 0:68 ip community-list standard 1_49_67 permit 65000:1 0:49 0:67 ip community-list standard 1_50_66 permit 65000:1 0:50 0:66 ip community-list standard 1_51_65 permit 65000:1 0:51 0:65 ip community-list standard 1_52_64 permit 65000:1 0:52 0:64 ip community-list standard 1_53_63 permit 65000:1 0:53 0:63 ip community-list standard 1_54_62 permit 65000:1 0:54 0:62 ip community-list standard 1_55_61 permit 65000:1 0:55 0:61 ip community-list standard 1_56_60 permit 65000:1 0:56 0:60 ip community-list standard 1_57_59 permit 65000:1 0:57 0:59 ip community-list standard 1_58_58 permit 65000:1 0:58 0:58 ip community-list expanded c116 permit 1 ^65000:4_0:116_0:1$ ip community-list expanded c116 permit 2 ^65000:3_0:117_0:1$ ip community-list expanded c116 permit 3 ^65000:3_0:118_0:2$ ip community-list expanded c116 permit 4 ^65000:3_0:119_0:3$ ip community-list expanded c116 permit 5 ^65000:3_0:120_0:4$ ip community-list expanded c116 permit 6 ^65000:3_0:121_0:5$ ip community-list expanded c116 permit 7 ^65000:3_0:122_0:6$ ip community-list expanded c116 permit 8 ^65000:3_0:123_0:7$ ip community-list expanded c116 permit 9 ^65000:3_0:124_0:8$ ip community-list expanded c116 permit 10 ^65000:3_0:125_0:9$ ip community-list expanded c116 permit 11 ^65000:3_0:126_0:10$ ip community-list expanded c116 permit 12 ^65000:3_0:127_0:11$ ip community-list expanded c116 permit 13 ^65000:3_0:128_0:12$ ip community-list expanded c116 permit 14 ^65000:3_0:129_0:13$ ip community-list expanded c116 permit 15 ^65000:3_0:130_0:14$ ip community-list expanded c116 permit 16 ^65000:3_0:131_0:15$ ip community-list expanded c116 permit 17 ^65000:3_0:132_0:16$ ip community-list expanded c116 permit 18 ^65000:3_0:133_0:17$ ip community-list expanded c116 permit 19 ^65000:3_0:134_0:18$ ip community-list expanded c116 permit 20 ^65000:3_0:135_0:19$ ip community-list expanded c116 permit 21 ^65000:3_0:136_0:20$ ip community-list expanded c116 permit 22 ^65000:3_0:137_0:21$ ip community-list expanded c116 permit 23 ^65000:3_0:138_0:22$ ip community-list expanded c116 permit 24 ^65000:3_0:139_0:23$ ip community-list expanded c116 permit 25 ^65000:3_0:140_0:24$ ip community-list expanded c116 permit 26 ^65000:3_0:141_0:25$ ip community-list expanded c116 permit 27 ^65000:3_0:142_0:26$ ip community-list expanded c116 permit 28 ^65000:3_0:143_0:27$ ip community-list expanded c116 permit 29 ^65000:3_0:144_0:28$ ip community-list expanded c116 permit 30 ^65000:3_0:145_0:29$ ip community-list expanded c116 permit 31 ^65000:3_0:146_0:30$ ip community-list expanded c116 permit 32 ^65000:3_0:147_0:31$ ip community-list expanded c116 permit 33 ^65000:3_0:148_0:32$ ip community-list expanded c116 permit 34 ^65000:3_0:149_0:33$ ip community-list expanded c116 permit 35 ^65000:3_0:150_0:34$ ip community-list expanded c116 permit 36 ^65000:3_0:151_0:35$ ip community-list expanded c116 permit 37 ^65000:3_0:152_0:36$ ip community-list expanded c116 permit 38 ^65000:3_0:153_0:37$ ip community-list expanded c116 permit 39 ^65000:3_0:154_0:38$ ip community-list expanded c116 permit 40 ^65000:3_0:155_0:39$ ip community-list expanded c116 permit 41 ^65000:3_0:156_0:40$ ip community-list expanded c116 permit 42 ^65000:3_0:157_0:41$ ip community-list expanded c116 permit 43 ^65000:3_0:158_0:42$ ip community-list expanded c116 permit 44 ^65000:3_0:159_0:43$ ip community-list expanded c116 permit 45 ^65000:3_0:160_0:44$ ip community-list expanded c116 permit 46 ^65000:3_0:161_0:45$ ip community-list expanded c116 permit 47 ^65000:3_0:162_0:46$ ip community-list expanded c116 permit 48 ^65000:3_0:163_0:47$ ip community-list expanded c116 permit 49 ^65000:3_0:164_0:48$ ip community-list expanded c116 permit 50 ^65000:3_0:165_0:49$ ip community-list expanded c116 permit 51 ^65000:3_0:166_0:50$ ip community-list expanded c116 permit 52 ^65000:3_0:167_0:51$ ip community-list expanded c116 permit 53 ^65000:3_0:168_0:52$ ip community-list expanded c116 permit 54 ^65000:3_0:169_0:53$ ip community-list expanded c116 permit 55 ^65000:3_0:170_0:54$ ip community-list expanded c116 permit 56 ^65000:3_0:171_0:55$ ip community-list expanded c116 permit 57 ^65000:3_0:172_0:56$ ip community-list expanded c116 permit 58 ^65000:3_0:173_0:57$ ip community-list expanded c116 permit 59 ^65000:3_0:174_0:58$ ip community-list expanded c116 permit 60 ^65000:3_0:175_0:59$ ip community-list expanded c116 permit 61 ^65000:3_0:176_0:60$ ip community-list expanded c116 permit 62 ^65000:3_0:177_0:61$ ip community-list expanded c116 permit 63 ^65000:3_0:178_0:62$ ip community-list expanded c116 permit 64 ^65000:3_0:179_0:63$ ip community-list expanded c116 permit 65 ^65000:3_0:180_0:64$ ip community-list expanded c116 permit 66 ^65000:3_0:181_0:65$ ip community-list expanded c116 permit 67 ^65000:3_0:182_0:66$ ip community-list expanded c116 permit 68 ^65000:3_0:183_0:67$ ip community-list expanded c116 permit 69 ^65000:3_0:184_0:68$ ip community-list expanded c116 permit 70 ^65000:3_0:185_0:69$ ip community-list expanded c116 permit 71 ^65000:3_0:186_0:70$ ip community-list expanded c116 permit 72 ^65000:3_0:187_0:71$ ip community-list expanded c116 permit 73 ^65000:3_0:188_0:72$ ip community-list expanded c116 permit 74 ^65000:3_0:189_0:73$ ip community-list expanded c116 permit 75 ^65000:3_0:190_0:74$ ip community-list expanded c116 permit 76 ^65000:3_0:191_0:75$ ip community-list expanded c116 permit 77 ^65000:3_0:192_0:76$ ip community-list expanded c116 permit 78 ^65000:3_0:193_0:77$ ip community-list expanded c116 permit 79 ^65000:3_0:194_0:78$ ip community-list expanded c116 permit 80 ^65000:3_0:195_0:79$ ip community-list expanded c116 permit 81 ^65000:3_0:196_0:80$ ip community-list expanded c116 permit 82 ^65000:3_0:197_0:81$ ip community-list expanded c116 permit 83 ^65000:3_0:198_0:82$ ip community-list expanded c116 permit 84 ^65000:3_0:199_0:83$ ip community-list expanded c116 permit 85 ^65000:3_0:200_0:84$ ip community-list expanded c116 permit 86 ^65000:3_0:201_0:85$ ip community-list expanded c116 permit 87 ^65000:3_0:202_0:86$ ip community-list expanded c116 permit 88 ^65000:3_0:203_0:87$ ip community-list expanded c116 permit 89 ^65000:3_0:204_0:88$ ip community-list expanded c116 permit 90 ^65000:3_0:205_0:89$ ip community-list expanded c116 permit 91 ^65000:3_0:206_0:90$ ip community-list expanded c116 permit 92 ^65000:3_0:207_0:91$ ip community-list expanded c116 permit 93 ^65000:3_0:208_0:92$ ip community-list expanded c116 permit 94 ^65000:3_0:209_0:93$ ip community-list expanded c116 permit 95 ^65000:3_0:210_0:94$ ip community-list expanded c116 permit 96 ^65000:3_0:211_0:95$ ip community-list expanded c116 permit 97 ^65000:3_0:212_0:96$ ip community-list expanded c116 permit 98 ^65000:3_0:213_0:97$ ip community-list expanded c116 permit 99 ^65000:3_0:214_0:98$ ip community-list expanded c116 permit 100 ^65000:3_0:215_0:99$ ip community-list expanded c116 permit 101 ^65000:3_0:216_0:100$ ip community-list expanded c116 permit 102 ^65000:3_0:217_0:101$ ip community-list expanded c116 permit 103 ^65000:3_0:218_0:102$ ip community-list expanded c116 permit 104 ^65000:3_0:219_0:103$ ip community-list expanded c116 permit 105 ^65000:3_0:220_0:104$ ip community-list expanded c116 permit 106 ^65000:3_0:221_0:105$ ip community-list expanded c116 permit 107 ^65000:3_0:222_0:106$ ip community-list expanded c116 permit 108 ^65000:3_0:223_0:107$ ip community-list expanded c116 permit 109 ^65000:3_0:224_0:108$ ip community-list expanded c116 permit 110 ^65000:3_0:225_0:109$ ip community-list expanded c116 permit 111 ^65000:3_0:226_0:110$ ip community-list expanded c116 permit 112 ^65000:3_0:227_0:111$ ip community-list expanded c116 permit 113 ^65000:3_0:228_0:112$ ip community-list expanded c116 permit 114 ^65000:3_0:229_0:113$ ip community-list expanded c116 permit 115 ^65000:3_0:230_0:114$ ip community-list expanded c116 permit 116 ^65000:3_0:231_0:115$ ip community-list expanded c116 permit 117 ^65000:4_0:232_0:2$ ip community-list expanded c116 permit 118 ^65000:3_0:232_0:116$ ip community-list expanded c116 permit 119 ^65000:4_0:233_0:2$ ip community-list expanded c116 permit 120 ^65000:3_0:233_0:117$ ip community-list expanded c116 permit 121 ^65000:3_0:234_0:118$ ip community-list expanded c116 permit 122 ^65000:3_0:235_0:119$ ip community-list expanded c116 permit 123 ^65000:3_0:236_0:120$ ip community-list expanded c116 permit 124 ^65000:3_0:237_0:121$ ip community-list expanded c116 permit 125 ^65000:3_0:238_0:122$ ip community-list expanded c116 permit 126 ^65000:3_0:239_0:123$ ip community-list expanded c116 permit 127 ^65000:3_0:240_0:124$ ip community-list expanded c116 permit 128 ^65000:3_0:241_0:125$ ip community-list expanded c116 permit 129 ^65000:3_0:242_0:126$ ip community-list expanded c116 permit 130 ^65000:3_0:243_0:127$ ip community-list expanded c116 permit 131 ^65000:3_0:244_0:128$ ip community-list expanded c116 permit 132 ^65000:3_0:245_0:129$ ip community-list expanded c116 permit 133 ^65000:3_0:246_0:130$ ip community-list expanded c116 permit 134 ^65000:3_0:247_0:131$ ip community-list expanded c116 permit 135 ^65000:3_0:248_0:132$ ip community-list expanded c116 permit 136 ^65000:3_0:249_0:133$ ip community-list expanded c116 permit 137 ^65000:3_0:250_0:134$ ip community-list expanded c116 permit 138 ^65000:3_0:251_0:135$ ip community-list expanded c116 permit 139 ^65000:3_0:252_0:136$ ip community-list expanded c116 permit 140 ^65000:3_0:253_0:137$ ip community-list expanded c116 permit 141 ^65000:3_0:254_0:138$ ip community-list expanded c116 permit 142 ^65000:3_0:255_0:139$ ip community-list expanded c116 permit 143 ^65000:3_0:256_0:140$ route-map calculator permit 711 match community 1_1_115 2_1_116 2_2_58 1_2_114 1_3_113 set community 0:116 route-map calculator permit 712 match community 2_4_29 1_4_112 1_5_111 1_6_110 1_7_109 set community 0:116 route-map calculator permit 713 match community 1_8_108 1_9_107 1_10_106 1_11_105 1_12_104 set community 0:116 route-map calculator permit 714 match community 1_13_103 1_14_102 1_15_101 1_16_100 1_17_99 set community 0:116 route-map calculator permit 715 match community 1_18_98 1_19_97 1_20_96 1_21_95 1_22_94 set community 0:116 route-map calculator permit 716 match community 1_23_93 1_24_92 1_25_91 1_26_90 1_27_89 set community 0:116 route-map calculator permit 717 match community 1_28_88 1_29_87 1_30_86 1_31_85 1_32_84 set community 0:116 route-map calculator permit 718 match community 1_33_83 1_34_82 1_35_81 1_36_80 1_37_79 set community 0:116 route-map calculator permit 719 match community 1_38_78 1_39_77 1_40_76 1_41_75 1_42_74 set community 0:116 route-map calculator permit 720 match community 1_43_73 1_44_72 1_45_71 1_46_70 1_47_69 set community 0:116 route-map calculator permit 721 match community 1_48_68 1_49_67 1_50_66 1_51_65 1_52_64 set community 0:116 route-map calculator permit 722 match community 1_53_63 1_54_62 1_55_61 1_56_60 1_57_59 set community 0:116 route-map calculator permit 723 match community 1_58_58 c4_116_1 c3_117_1 c3_118_2 c3_119_3 set community 0:116 route-map calculator permit 724 match community c3_120_4 c3_121_5 c3_122_6 c3_123_7 c3_124_8 set community 0:116 route-map calculator permit 725 match community c3_125_9 c3_126_10 c3_127_11 c3_128_12 c3_129_13 set community 0:116 route-map calculator permit 726 match community c3_130_14 c3_131_15 c3_132_16 c3_133_17 c3_134_18 set community 0:116 route-map calculator permit 727 match community c3_135_19 c3_136_20 c3_137_21 c3_138_22 c3_139_23 set community 0:116 route-map calculator permit 728 match community c3_140_24 c3_141_25 c3_142_26 c3_143_27 c3_144_28 set community 0:116 route-map calculator permit 729 match community c3_145_29 c3_146_30 c3_147_31 c3_148_32 c3_149_33 set community 0:116 route-map calculator permit 730 match community c3_150_34 c3_151_35 c3_152_36 c3_153_37 c3_154_38 set community 0:116 route-map calculator permit 731 match community c3_155_39 c3_156_40 c3_157_41 c3_158_42 c3_159_43 set community 0:116 route-map calculator permit 732 match community c3_160_44 c3_161_45 c3_162_46 c3_163_47 c3_164_48 set community 0:116 route-map calculator permit 733 match community c3_165_49 c3_166_50 c3_167_51 c3_168_52 c3_169_53 set community 0:116 route-map calculator permit 734 match community c3_170_54 c3_171_55 c3_172_56 c3_173_57 c3_174_58 set community 0:116 route-map calculator permit 735 match community c3_175_59 c3_176_60 c3_177_61 c3_178_62 c3_179_63 set community 0:116 route-map calculator permit 736 match community c3_180_64 c3_181_65 c3_182_66 c3_183_67 c3_184_68 set community 0:116 route-map calculator permit 737 match community c3_185_69 c3_186_70 c3_187_71 c3_188_72 c3_189_73 set community 0:116 route-map calculator permit 738 match community c3_190_74 c3_191_75 c3_192_76 c3_193_77 c3_194_78 set community 0:116 route-map calculator permit 739 match community c3_195_79 c3_196_80 c3_197_81 c3_198_82 c3_199_83 set community 0:116 route-map calculator permit 740 match community c3_200_84 c3_201_85 c3_202_86 c3_203_87 c3_204_88 set community 0:116 route-map calculator permit 741 match community c3_205_89 c3_206_90 c3_207_91 c3_208_92 c3_209_93 set community 0:116 route-map calculator permit 742 match community c3_210_94 c3_211_95 c3_212_96 c3_213_97 c3_214_98 set community 0:116 route-map calculator permit 743 match community c3_215_99 c3_216_100 c3_217_101 c3_218_102 c3_219_103 set community 0:116 route-map calculator permit 744 match community c3_220_104 c3_221_105 c3_222_106 c3_223_107 c3_224_108 set community 0:116 route-map calculator permit 745 match community c3_225_109 c3_226_110 c3_227_111 c3_228_112 c3_229_113 set community 0:116 route-map calculator permit 746 match community c3_230_114 c3_231_115 c4_232_2 c3_232_116 c4_233_2 set community 0:116 route-map calculator permit 747 match community c3_233_117 c3_234_118 c3_235_119 c3_236_120 c3_237_121 set community 0:116 route-map calculator permit 748 match community c3_238_122 c3_239_123 c3_240_124 c3_241_125 c3_242_126 set community 0:116 route-map calculator permit 749 match community c3_243_127 c3_244_128 c3_245_129 c3_246_130 c3_247_131 set community 0:116 route-map calculator permit 750 match community c3_248_132 c3_249_133 c3_250_134 c3_251_135 c3_252_136 set community 0:116 route-map calculator permit 751 match community c3_253_137 c3_254_138 c3_255_139 c3_256_140 set community 0:116 ip community-list standard 2_194_226 permit 65000:2 0:194 0:226 route-map calculator permit 752 match community 2_194_226 set community 0:43844 ip community-list standard 2_75_173 permit 65000:2 0:75 0:173 route-map calculator permit 753 match community 2_75_173 set community 0:12975 ip community-list standard 2_131_215 permit 65000:2 0:131 0:215 route-map calculator permit 754 match community 2_131_215 set community 0:28165 ip community-list standard 2_190_243 permit 65000:2 0:190 0:243 route-map calculator permit 755 match community 2_190_243 set community 0:46170 ip community-list standard 2_4_146 permit 65000:2 0:4 0:146 ip community-list standard 2_8_73 permit 65000:2 0:8 0:73 route-map calculator permit 756 match community 2_4_146 2_8_73 set community 0:584 ip community-list standard 2_16_178 permit 65000:2 0:16 0:178 ip community-list standard 2_32_89 permit 65000:2 0:32 0:89 route-map calculator permit 757 match community 2_16_178 2_32_89 set community 0:2848 ip community-list standard 2_205_242 permit 65000:2 0:205 0:242 route-map calculator permit 758 match community 2_205_242 set community 0:49610 ip community-list standard 2_106_232 permit 65000:2 0:106 0:232 ip community-list standard 2_116_212 permit 65000:2 0:116 0:212 route-map calculator permit 759 match community 2_106_232 2_116_212 set community 0:24592 ip community-list standard 2_110_248 permit 65000:2 0:110 0:248 ip community-list standard 2_124_220 permit 65000:2 0:124 0:220 ip community-list standard 2_155_176 permit 65000:2 0:155 0:176 route-map calculator permit 760 match community 2_110_248 2_124_220 2_155_176 set community 0:27280 ip community-list standard 2_39_240 permit 65000:2 0:39 0:240 ip community-list standard 2_40_234 permit 65000:2 0:40 0:234 ip community-list standard 2_45_208 permit 65000:2 0:45 0:208 ip community-list standard 2_48_195 permit 65000:2 0:48 0:195 ip community-list standard 2_52_180 permit 65000:2 0:52 0:180 ip community-list standard 2_60_156 permit 65000:2 0:60 0:156 ip community-list standard 2_65_144 permit 65000:2 0:65 0:144 ip community-list standard 2_72_130 permit 65000:2 0:72 0:130 ip community-list standard 2_78_120 permit 65000:2 0:78 0:120 ip community-list standard 2_80_117 permit 65000:2 0:80 0:117 ip community-list standard 2_90_104 permit 65000:2 0:90 0:104 route-map calculator permit 761 match community 2_39_240 2_40_234 2_45_208 2_48_195 2_52_180 set community 0:9360 route-map calculator permit 762 match community 2_60_156 2_65_144 2_72_130 2_78_120 2_80_117 set community 0:9360 route-map calculator permit 763 match community 2_90_104 set community 0:9360 ip community-list standard 2_24_253 permit 65000:2 0:24 0:253 ip community-list standard 2_33_184 permit 65000:2 0:33 0:184 ip community-list standard 2_44_138 permit 65000:2 0:44 0:138 ip community-list standard 2_46_132 permit 65000:2 0:46 0:132 ip community-list standard 2_66_92 permit 65000:2 0:66 0:92 ip community-list standard 2_69_88 permit 65000:2 0:69 0:88 route-map calculator permit 764 match community 2_24_253 2_33_184 2_44_138 2_46_132 2_66_92 set community 0:6072 route-map calculator permit 765 match community 2_69_88 set community 0:6072 ip community-list standard 2_173_213 permit 65000:2 0:173 0:213 route-map calculator permit 766 match community 2_173_213 set community 0:36849 ip community-list standard 2_81_194 permit 65000:2 0:81 0:194 ip community-list standard 2_97_162 permit 65000:2 0:97 0:162 route-map calculator permit 767 match community 2_81_194 2_97_162 set community 0:15714 ip community-list standard 2_152_237 permit 65000:2 0:152 0:237 ip community-list standard 2_158_228 permit 65000:2 0:158 0:228 route-map calculator permit 768 match community 2_152_237 2_158_228 set community 0:36024 ip community-list standard 2_133_141 permit 65000:2 0:133 0:141 route-map calculator permit 769 match community 2_133_141 set community 0:18753 ip community-list standard 2_87_149 permit 65000:2 0:87 0:149 route-map calculator permit 770 match community 2_87_149 set community 0:12963 ip community-list standard 2_121_159 permit 65000:2 0:121 0:159 route-map calculator permit 771 match community 2_121_159 set community 0:19239 ip community-list standard 2_94_252 permit 65000:2 0:94 0:252 ip community-list standard 2_126_188 permit 65000:2 0:126 0:188 ip community-list standard 2_141_168 permit 65000:2 0:141 0:168 route-map calculator permit 772 match community 2_94_252 2_126_188 2_141_168 set community 0:23688 ip community-list standard 2_148_161 permit 65000:2 0:148 0:161 route-map calculator permit 773 match community 2_148_161 set community 0:23828 ip community-list standard 2_61_65 permit 65000:2 0:61 0:65 route-map calculator permit 774 match community 2_61_65 set community 0:3965 ip community-list standard 2_150_243 permit 65000:2 0:150 0:243 ip community-list standard 2_162_225 permit 65000:2 0:162 0:225 route-map calculator permit 775 match community 2_150_243 2_162_225 set community 0:36450 ip community-list standard 2_77_215 permit 65000:2 0:77 0:215 route-map calculator permit 776 match community 2_77_215 set community 0:16555 ip community-list standard 2_49_248 permit 65000:2 0:49 0:248 ip community-list standard 2_56_217 permit 65000:2 0:56 0:217 ip community-list standard 2_62_196 permit 65000:2 0:62 0:196 ip community-list standard 2_98_124 permit 65000:2 0:98 0:124 route-map calculator permit 777 match community 2_49_248 2_56_217 2_62_196 2_98_124 set community 0:12152 ip community-list standard 2_163_185 permit 65000:2 0:163 0:185 route-map calculator permit 778 match community 2_163_185 set community 0:30155 ip community-list standard 2_67_221 permit 65000:2 0:67 0:221 route-map calculator permit 779 match community 2_67_221 set community 0:14807 ip community-list standard 2_15_239 permit 65000:2 0:15 0:239 route-map calculator permit 780 match community 2_15_239 set community 0:3585 ip community-list standard 2_27_252 permit 65000:2 0:27 0:252 ip community-list standard 2_28_243 permit 65000:2 0:28 0:243 ip community-list standard 2_36_189 permit 65000:2 0:36 0:189 ip community-list standard 2_42_162 permit 65000:2 0:42 0:162 ip community-list standard 2_54_126 permit 65000:2 0:54 0:126 ip community-list standard 2_63_108 permit 65000:2 0:63 0:108 ip community-list standard 2_81_84 permit 65000:2 0:81 0:84 route-map calculator permit 781 match community 2_27_252 2_28_243 2_36_189 2_42_162 2_54_126 set community 0:6804 route-map calculator permit 782 match community 2_63_108 2_81_84 set community 0:6804 ip community-list standard 2_161_195 permit 65000:2 0:161 0:195 route-map calculator permit 783 match community 2_161_195 set community 0:31395 ip community-list standard 2_12_217 permit 65000:2 0:12 0:217 ip community-list standard 2_14_186 permit 65000:2 0:14 0:186 ip community-list standard 2_21_124 permit 65000:2 0:21 0:124 ip community-list standard 2_28_93 permit 65000:2 0:28 0:93 ip community-list standard 2_31_84 permit 65000:2 0:31 0:84 ip community-list standard 2_42_62 permit 65000:2 0:42 0:62 route-map calculator permit 784 match community 2_12_217 2_14_186 2_21_124 2_28_93 2_31_84 set community 0:2604 route-map calculator permit 785 match community 2_42_62 set community 0:2604 ip community-list standard 2_140_149 permit 65000:2 0:140 0:149 route-map calculator permit 786 match community 2_140_149 set community 0:20860 ip community-list standard 2_183_222 permit 65000:2 0:183 0:222 route-map calculator permit 787 match community 2_183_222 set community 0:40626 ip community-list standard 2_194_199 permit 65000:2 0:194 0:199 route-map calculator permit 788 match community 2_194_199 set community 0:38606 ip community-list standard 2_13_206 permit 65000:2 0:13 0:206 ip community-list standard 2_26_103 permit 65000:2 0:26 0:103 route-map calculator permit 789 match community 2_13_206 2_26_103 set community 0:2678 ip community-list standard 2_141_241 permit 65000:2 0:141 0:241 route-map calculator permit 790 match community 2_141_241 set community 0:33981 ip community-list standard 2_171_242 permit 65000:2 0:171 0:242 ip community-list standard 2_198_209 permit 65000:2 0:198 0:209 route-map calculator permit 791 match community 2_171_242 2_198_209 set community 0:41382 ip community-list standard 2_20_178 permit 65000:2 0:20 0:178 ip community-list standard 2_40_89 permit 65000:2 0:40 0:89 route-map calculator permit 792 match community 2_20_178 2_40_89 set community 0:3560 ip community-list standard 2_97_117 permit 65000:2 0:97 0:117 route-map calculator permit 793 match community 2_97_117 set community 0:11349 ip community-list standard 2_78_244 permit 65000:2 0:78 0:244 ip community-list standard 2_104_183 permit 65000:2 0:104 0:183 ip community-list standard 2_122_156 permit 65000:2 0:122 0:156 route-map calculator permit 794 match community 2_78_244 2_104_183 2_122_156 set community 0:19032 ip community-list standard 2_107_222 permit 65000:2 0:107 0:222 ip community-list standard 2_111_214 permit 65000:2 0:111 0:214 route-map calculator permit 795 match community 2_107_222 2_111_214 set community 0:23754 ip community-list standard 2_187_238 permit 65000:2 0:187 0:238 route-map calculator permit 796 match community 2_187_238 set community 0:44506 ip community-list standard 2_53_79 permit 65000:2 0:53 0:79 route-map calculator permit 797 match community 2_53_79 set community 0:4187 ip community-list standard 2_120_151 permit 65000:2 0:120 0:151 route-map calculator permit 798 match community 2_120_151 set community 0:18120 ip community-list standard 2_87_220 permit 65000:2 0:87 0:220 ip community-list standard 2_110_174 permit 65000:2 0:110 0:174 ip community-list standard 2_116_165 permit 65000:2 0:116 0:165 ip community-list standard 2_132_145 permit 65000:2 0:132 0:145 route-map calculator permit 799 match community 2_87_220 2_110_174 2_116_165 2_132_145 set community 0:19140 ip community-list standard 2_143_158 permit 65000:2 0:143 0:158 route-map calculator permit 800 match community 2_143_158 set community 0:22594 ip community-list standard 2_40_167 permit 65000:2 0:40 0:167 route-map calculator permit 801 match community 2_40_167 set community 0:6680 ip community-list standard 2_95_202 permit 65000:2 0:95 0:202 ip community-list standard 2_101_190 permit 65000:2 0:101 0:190 route-map calculator permit 802 match community 2_95_202 2_101_190 set community 0:19190 ip community-list standard 2_37_222 permit 65000:2 0:37 0:222 ip community-list standard 2_74_111 permit 65000:2 0:74 0:111 route-map calculator permit 803 match community 2_37_222 2_74_111 set community 0:8214 ip community-list standard 2_64_134 permit 65000:2 0:64 0:134 ip community-list standard 2_67_128 permit 65000:2 0:67 0:128 route-map calculator permit 804 match community 2_64_134 2_67_128 set community 0:8576 ip community-list standard 2_144_243 permit 65000:2 0:144 0:243 ip community-list standard 2_162_216 permit 65000:2 0:162 0:216 route-map calculator permit 805 match community 2_144_243 2_162_216 set community 0:34992 ip community-list standard 2_152_181 permit 65000:2 0:152 0:181 route-map calculator permit 806 match community 2_152_181 set community 0:27512 ip community-list standard 2_17_190 permit 65000:2 0:17 0:190 ip community-list standard 2_19_170 permit 65000:2 0:19 0:170 ip community-list standard 2_34_95 permit 65000:2 0:34 0:95 ip community-list standard 2_38_85 permit 65000:2 0:38 0:85 route-map calculator permit 807 match community 2_17_190 2_19_170 2_34_95 2_38_85 set community 0:3230 ip community-list standard 2_202_235 permit 65000:2 0:202 0:235 route-map calculator permit 808 match community 2_202_235 set community 0:47470 ip community-list standard 2_34_166 permit 65000:2 0:34 0:166 ip community-list standard 2_68_83 permit 65000:2 0:68 0:83 route-map calculator permit 809 match community 2_34_166 2_68_83 set community 0:5644 ip community-list standard 2_240_252 permit 65000:2 0:240 0:252 route-map calculator permit 810 match community 2_240_252 set community 0:60480 ip community-list standard 2_69_219 permit 65000:2 0:69 0:219 ip community-list standard 2_73_207 permit 65000:2 0:73 0:207 route-map calculator permit 811 match community 2_69_219 2_73_207 set community 0:15111 ip community-list standard 2_13_158 permit 65000:2 0:13 0:158 ip community-list standard 2_26_79 permit 65000:2 0:26 0:79 route-map calculator permit 812 match community 2_13_158 2_26_79 set community 0:2054 ip community-list standard 2_16_221 permit 65000:2 0:16 0:221 ip community-list standard 2_17_208 permit 65000:2 0:17 0:208 ip community-list standard 2_26_136 permit 65000:2 0:26 0:136 ip community-list standard 2_34_104 permit 65000:2 0:34 0:104 ip community-list standard 2_52_68 permit 65000:2 0:52 0:68 route-map calculator permit 813 match community 2_16_221 2_17_208 2_26_136 2_34_104 2_52_68 set community 0:3536 ip community-list standard 2_76_239 permit 65000:2 0:76 0:239 route-map calculator permit 814 match community 2_76_239 set community 0:18164 ip community-list standard 2_101_205 permit 65000:2 0:101 0:205 route-map calculator permit 815 match community 2_101_205 set community 0:20705 ip community-list standard 2_137_189 permit 65000:2 0:137 0:189 route-map calculator permit 816 match community 2_137_189 set community 0:25893 ip community-list standard 2_181_255 permit 65000:2 0:181 0:255 route-map calculator permit 817 match community 2_181_255 set community 0:46155 ip community-list standard 2_122_239 permit 65000:2 0:122 0:239 route-map calculator permit 818 match community 2_122_239 set community 0:29158 ip community-list standard 2_159_243 permit 65000:2 0:159 0:243 route-map calculator permit 819 match community 2_159_243 set community 0:38637 ip community-list standard 2_136_188 permit 65000:2 0:136 0:188 route-map calculator permit 820 match community 2_136_188 set community 0:25568 ip community-list standard 2_142_225 permit 65000:2 0:142 0:225 ip community-list standard 2_150_213 permit 65000:2 0:150 0:213 route-map calculator permit 821 match community 2_142_225 2_150_213 set community 0:31950 ip community-list standard 2_19_19 permit 65000:2 0:19 0:19 ip community-list standard 1_105_256 permit 65000:1 0:105 0:256 ip community-list standard 1_106_255 permit 65000:1 0:106 0:255 ip community-list standard 1_107_254 permit 65000:1 0:107 0:254 ip community-list standard 1_108_253 permit 65000:1 0:108 0:253 ip community-list standard 1_109_252 permit 65000:1 0:109 0:252 ip community-list standard 1_110_251 permit 65000:1 0:110 0:251 ip community-list standard 1_111_250 permit 65000:1 0:111 0:250 ip community-list standard 1_112_249 permit 65000:1 0:112 0:249 ip community-list standard 1_113_248 permit 65000:1 0:113 0:248 ip community-list standard 1_114_247 permit 65000:1 0:114 0:247 ip community-list standard 1_115_246 permit 65000:1 0:115 0:246 ip community-list standard 1_116_245 permit 65000:1 0:116 0:245 ip community-list standard 1_117_244 permit 65000:1 0:117 0:244 ip community-list standard 1_118_243 permit 65000:1 0:118 0:243 ip community-list standard 1_119_242 permit 65000:1 0:119 0:242 ip community-list standard 1_120_241 permit 65000:1 0:120 0:241 ip community-list standard 1_121_240 permit 65000:1 0:121 0:240 ip community-list standard 1_122_239 permit 65000:1 0:122 0:239 ip community-list standard 1_123_238 permit 65000:1 0:123 0:238 ip community-list standard 1_124_237 permit 65000:1 0:124 0:237 ip community-list standard 1_125_236 permit 65000:1 0:125 0:236 ip community-list standard 1_126_235 permit 65000:1 0:126 0:235 ip community-list standard 1_127_234 permit 65000:1 0:127 0:234 ip community-list standard 1_128_233 permit 65000:1 0:128 0:233 ip community-list standard 1_129_232 permit 65000:1 0:129 0:232 ip community-list standard 1_130_231 permit 65000:1 0:130 0:231 ip community-list standard 1_131_230 permit 65000:1 0:131 0:230 ip community-list standard 1_132_229 permit 65000:1 0:132 0:229 ip community-list standard 1_133_228 permit 65000:1 0:133 0:228 ip community-list standard 1_134_227 permit 65000:1 0:134 0:227 ip community-list standard 1_135_226 permit 65000:1 0:135 0:226 ip community-list standard 1_136_225 permit 65000:1 0:136 0:225 ip community-list standard 1_137_224 permit 65000:1 0:137 0:224 ip community-list standard 1_138_223 permit 65000:1 0:138 0:223 ip community-list standard 1_139_222 permit 65000:1 0:139 0:222 ip community-list standard 1_140_221 permit 65000:1 0:140 0:221 ip community-list standard 1_141_220 permit 65000:1 0:141 0:220 ip community-list standard 1_142_219 permit 65000:1 0:142 0:219 ip community-list standard 1_143_218 permit 65000:1 0:143 0:218 ip community-list standard 1_144_217 permit 65000:1 0:144 0:217 ip community-list standard 1_145_216 permit 65000:1 0:145 0:216 ip community-list standard 1_146_215 permit 65000:1 0:146 0:215 ip community-list standard 1_147_214 permit 65000:1 0:147 0:214 ip community-list standard 1_148_213 permit 65000:1 0:148 0:213 ip community-list standard 1_149_212 permit 65000:1 0:149 0:212 ip community-list standard 1_150_211 permit 65000:1 0:150 0:211 ip community-list standard 1_151_210 permit 65000:1 0:151 0:210 ip community-list standard 1_152_209 permit 65000:1 0:152 0:209 ip community-list standard 1_153_208 permit 65000:1 0:153 0:208 ip community-list standard 1_154_207 permit 65000:1 0:154 0:207 ip community-list standard 1_155_206 permit 65000:1 0:155 0:206 ip community-list standard 1_156_205 permit 65000:1 0:156 0:205 ip community-list standard 1_157_204 permit 65000:1 0:157 0:204 ip community-list standard 1_158_203 permit 65000:1 0:158 0:203 ip community-list standard 1_159_202 permit 65000:1 0:159 0:202 ip community-list standard 1_160_201 permit 65000:1 0:160 0:201 ip community-list standard 1_161_200 permit 65000:1 0:161 0:200 ip community-list standard 1_162_199 permit 65000:1 0:162 0:199 ip community-list standard 1_163_198 permit 65000:1 0:163 0:198 ip community-list standard 1_164_197 permit 65000:1 0:164 0:197 ip community-list standard 1_165_196 permit 65000:1 0:165 0:196 ip community-list standard 1_166_195 permit 65000:1 0:166 0:195 ip community-list standard 1_167_194 permit 65000:1 0:167 0:194 ip community-list standard 1_168_193 permit 65000:1 0:168 0:193 ip community-list standard 1_169_192 permit 65000:1 0:169 0:192 ip community-list standard 1_170_191 permit 65000:1 0:170 0:191 ip community-list standard 1_171_190 permit 65000:1 0:171 0:190 ip community-list standard 1_172_189 permit 65000:1 0:172 0:189 ip community-list standard 1_173_188 permit 65000:1 0:173 0:188 ip community-list standard 1_174_187 permit 65000:1 0:174 0:187 ip community-list standard 1_175_186 permit 65000:1 0:175 0:186 ip community-list standard 1_176_185 permit 65000:1 0:176 0:185 ip community-list standard 1_177_184 permit 65000:1 0:177 0:184 ip community-list standard 1_178_183 permit 65000:1 0:178 0:183 ip community-list standard 1_179_182 permit 65000:1 0:179 0:182 ip community-list standard 1_180_181 permit 65000:1 0:180 0:181 route-map calculator permit 822 match community 2_19_19 1_105_256 1_106_255 1_107_254 1_108_253 set community 0:361 route-map calculator permit 823 match community 1_109_252 1_110_251 1_111_250 1_112_249 1_113_248 set community 0:361 route-map calculator permit 824 match community 1_114_247 1_115_246 1_116_245 1_117_244 1_118_243 set community 0:361 route-map calculator permit 825 match community 1_119_242 1_120_241 1_121_240 1_122_239 1_123_238 set community 0:361 route-map calculator permit 826 match community 1_124_237 1_125_236 1_126_235 1_127_234 1_128_233 set community 0:361 route-map calculator permit 827 match community 1_129_232 1_130_231 1_131_230 1_132_229 1_133_228 set community 0:361 route-map calculator permit 828 match community 1_134_227 1_135_226 1_136_225 1_137_224 1_138_223 set community 0:361 route-map calculator permit 829 match community 1_139_222 1_140_221 1_141_220 1_142_219 1_143_218 set community 0:361 route-map calculator permit 830 match community 1_144_217 1_145_216 1_146_215 1_147_214 1_148_213 set community 0:361 route-map calculator permit 831 match community 1_149_212 1_150_211 1_151_210 1_152_209 1_153_208 set community 0:361 route-map calculator permit 832 match community 1_154_207 1_155_206 1_156_205 1_157_204 1_158_203 set community 0:361 route-map calculator permit 833 match community 1_159_202 1_160_201 1_161_200 1_162_199 1_163_198 set community 0:361 route-map calculator permit 834 match community 1_164_197 1_165_196 1_166_195 1_167_194 1_168_193 set community 0:361 route-map calculator permit 835 match community 1_169_192 1_170_191 1_171_190 1_172_189 1_173_188 set community 0:361 route-map calculator permit 836 match community 1_174_187 1_175_186 1_176_185 1_177_184 1_178_183 set community 0:361 route-map calculator permit 837 match community 1_179_182 1_180_181 set community 0:361 ip community-list standard 2_179_216 permit 65000:2 0:179 0:216 route-map calculator permit 838 match community 2_179_216 set community 0:38664 ip community-list standard 2_94_161 permit 65000:2 0:94 0:161 route-map calculator permit 839 match community 2_94_161 set community 0:15134 ip community-list standard 2_167_222 permit 65000:2 0:167 0:222 route-map calculator permit 840 match community 2_167_222 set community 0:37074 ip community-list standard 2_56_238 permit 65000:2 0:56 0:238 ip community-list standard 2_68_196 permit 65000:2 0:68 0:196 ip community-list standard 2_98_136 permit 65000:2 0:98 0:136 ip community-list standard 2_112_119 permit 65000:2 0:112 0:119 route-map calculator permit 841 match community 2_56_238 2_68_196 2_98_136 2_112_119 set community 0:13328 ip community-list standard 2_202_237 permit 65000:2 0:202 0:237 route-map calculator permit 842 match community 2_202_237 set community 0:47874 ip community-list standard 2_97_163 permit 65000:2 0:97 0:163 route-map calculator permit 843 match community 2_97_163 set community 0:15811 ip community-list standard 2_145_213 permit 65000:2 0:145 0:213 route-map calculator permit 844 match community 2_145_213 set community 0:30885 ip community-list standard 2_74_169 permit 65000:2 0:74 0:169 route-map calculator permit 845 match community 2_74_169 set community 0:12506 ip community-list standard 2_19_239 permit 65000:2 0:19 0:239 route-map calculator permit 846 match community 2_19_239 set community 0:4541 ip community-list standard 2_8_236 permit 65000:2 0:8 0:236 ip community-list standard 2_16_118 permit 65000:2 0:16 0:118 ip community-list standard 2_32_59 permit 65000:2 0:32 0:59 route-map calculator permit 847 match community 2_8_236 2_16_118 2_32_59 set community 0:1888 ip community-list standard 2_42_219 permit 65000:2 0:42 0:219 ip community-list standard 2_63_146 permit 65000:2 0:63 0:146 ip community-list standard 2_73_126 permit 65000:2 0:73 0:126 route-map calculator permit 848 match community 2_42_219 2_63_146 2_73_126 set community 0:9198 ip community-list standard 2_224_239 permit 65000:2 0:224 0:239 route-map calculator permit 849 match community 2_224_239 set community 0:53536 ip community-list standard 2_43_187 permit 65000:2 0:43 0:187 route-map calculator permit 850 match community 2_43_187 set community 0:8041 ip community-list standard 2_31_253 permit 65000:2 0:31 0:253 route-map calculator permit 851 match community 2_31_253 set community 0:7843 ip community-list standard 2_12_139 permit 65000:2 0:12 0:139 route-map calculator permit 852 match community 2_12_139 set community 0:1668 ip community-list standard 2_172_191 permit 65000:2 0:172 0:191 route-map calculator permit 853 match community 2_172_191 set community 0:32852 ip community-list standard 2_7_229 permit 65000:2 0:7 0:229 route-map calculator permit 854 match community 2_7_229 set community 0:1603 ip community-list standard 2_21_246 permit 65000:2 0:21 0:246 ip community-list standard 2_41_126 permit 65000:2 0:41 0:126 ip community-list standard 2_42_123 permit 65000:2 0:42 0:123 ip community-list standard 2_63_82 permit 65000:2 0:63 0:82 route-map calculator permit 855 match community 2_21_246 2_41_126 2_42_123 2_63_82 set community 0:5166 ip community-list standard 2_158_182 permit 65000:2 0:158 0:182 route-map calculator permit 856 match community 2_158_182 set community 0:28756 ip community-list standard 2_183_221 permit 65000:2 0:183 0:221 route-map calculator permit 857 match community 2_183_221 set community 0:40443 ip community-list standard 2_79_240 permit 65000:2 0:79 0:240 ip community-list standard 2_80_237 permit 65000:2 0:80 0:237 ip community-list standard 2_120_158 permit 65000:2 0:120 0:158 route-map calculator permit 858 match community 2_79_240 2_80_237 2_120_158 set community 0:18960 ip community-list standard 2_162_178 permit 65000:2 0:162 0:178 route-map calculator permit 859 match community 2_162_178 set community 0:28836 ip community-list standard 2_115_161 permit 65000:2 0:115 0:161 route-map calculator permit 860 match community 2_115_161 set community 0:18515 ip community-list standard 2_19_131 permit 65000:2 0:19 0:131 route-map calculator permit 861 match community 2_19_131 set community 0:2489 ip community-list standard 2_115_125 permit 65000:2 0:115 0:125 route-map calculator permit 862 match community 2_115_125 set community 0:14375 ip community-list standard 2_177_249 permit 65000:2 0:177 0:249 route-map calculator permit 863 match community 2_177_249 set community 0:44073 ip community-list standard 2_225_256 permit 65000:2 0:225 0:256 ip community-list standard 2_240_240 permit 65000:2 0:240 0:240 route-map calculator permit 864 match community 2_225_256 2_240_240 set community 0:57600 ip community-list standard 2_215_241 permit 65000:2 0:215 0:241 route-map calculator permit 865 match community 2_215_241 set community 0:51815 ip community-list standard 2_24_211 permit 65000:2 0:24 0:211 route-map calculator permit 866 match community 2_24_211 set community 0:5064 ip community-list standard 2_132_247 permit 65000:2 0:132 0:247 ip community-list standard 2_143_228 permit 65000:2 0:143 0:228 ip community-list standard 2_156_209 permit 65000:2 0:156 0:209 route-map calculator permit 867 match community 2_132_247 2_143_228 2_156_209 set community 0:32604 ip community-list standard 2_177_254 permit 65000:2 0:177 0:254 route-map calculator permit 868 match community 2_177_254 set community 0:44958 ip community-list standard 1_1_51 permit 65000:1 0:1 0:51 ip community-list standard 2_1_52 permit 65000:2 0:1 0:52 ip community-list standard 2_2_26 permit 65000:2 0:2 0:26 ip community-list standard 1_2_50 permit 65000:1 0:2 0:50 ip community-list standard 1_3_49 permit 65000:1 0:3 0:49 ip community-list standard 2_4_13 permit 65000:2 0:4 0:13 ip community-list standard 1_4_48 permit 65000:1 0:4 0:48 ip community-list standard 1_5_47 permit 65000:1 0:5 0:47 ip community-list standard 1_6_46 permit 65000:1 0:6 0:46 ip community-list standard 1_7_45 permit 65000:1 0:7 0:45 ip community-list standard 1_8_44 permit 65000:1 0:8 0:44 ip community-list standard 1_9_43 permit 65000:1 0:9 0:43 ip community-list standard 1_10_42 permit 65000:1 0:10 0:42 ip community-list standard 1_11_41 permit 65000:1 0:11 0:41 ip community-list standard 1_12_40 permit 65000:1 0:12 0:40 ip community-list standard 1_13_39 permit 65000:1 0:13 0:39 ip community-list standard 1_14_38 permit 65000:1 0:14 0:38 ip community-list standard 1_15_37 permit 65000:1 0:15 0:37 ip community-list standard 1_16_36 permit 65000:1 0:16 0:36 ip community-list standard 1_17_35 permit 65000:1 0:17 0:35 ip community-list standard 1_18_34 permit 65000:1 0:18 0:34 ip community-list standard 1_19_33 permit 65000:1 0:19 0:33 ip community-list standard 1_20_32 permit 65000:1 0:20 0:32 ip community-list standard 1_21_31 permit 65000:1 0:21 0:31 ip community-list standard 1_22_30 permit 65000:1 0:22 0:30 ip community-list standard 1_23_29 permit 65000:1 0:23 0:29 ip community-list standard 1_24_28 permit 65000:1 0:24 0:28 ip community-list standard 1_25_27 permit 65000:1 0:25 0:27 ip community-list standard 1_26_26 permit 65000:1 0:26 0:26 ip community-list expanded c52 permit 1 ^65000:4_0:52_0:1$ ip community-list expanded c52 permit 2 ^65000:3_0:53_0:1$ ip community-list expanded c52 permit 3 ^65000:3_0:54_0:2$ ip community-list expanded c52 permit 4 ^65000:3_0:55_0:3$ ip community-list expanded c52 permit 5 ^65000:3_0:56_0:4$ ip community-list expanded c52 permit 6 ^65000:3_0:57_0:5$ ip community-list expanded c52 permit 7 ^65000:3_0:58_0:6$ ip community-list expanded c52 permit 8 ^65000:3_0:59_0:7$ ip community-list expanded c52 permit 9 ^65000:3_0:60_0:8$ ip community-list expanded c52 permit 10 ^65000:3_0:61_0:9$ ip community-list expanded c52 permit 11 ^65000:3_0:62_0:10$ ip community-list expanded c52 permit 12 ^65000:3_0:63_0:11$ ip community-list expanded c52 permit 13 ^65000:3_0:64_0:12$ ip community-list expanded c52 permit 14 ^65000:3_0:65_0:13$ ip community-list expanded c52 permit 15 ^65000:3_0:66_0:14$ ip community-list expanded c52 permit 16 ^65000:3_0:67_0:15$ ip community-list expanded c52 permit 17 ^65000:3_0:68_0:16$ ip community-list expanded c52 permit 18 ^65000:3_0:69_0:17$ ip community-list expanded c52 permit 19 ^65000:3_0:70_0:18$ ip community-list expanded c52 permit 20 ^65000:3_0:71_0:19$ ip community-list expanded c52 permit 21 ^65000:3_0:72_0:20$ ip community-list expanded c52 permit 22 ^65000:3_0:73_0:21$ ip community-list expanded c52 permit 23 ^65000:3_0:74_0:22$ ip community-list expanded c52 permit 24 ^65000:3_0:75_0:23$ ip community-list expanded c52 permit 25 ^65000:3_0:76_0:24$ ip community-list expanded c52 permit 26 ^65000:3_0:77_0:25$ ip community-list expanded c52 permit 27 ^65000:3_0:78_0:26$ ip community-list expanded c52 permit 28 ^65000:3_0:79_0:27$ ip community-list expanded c52 permit 29 ^65000:3_0:80_0:28$ ip community-list expanded c52 permit 30 ^65000:3_0:81_0:29$ ip community-list expanded c52 permit 31 ^65000:3_0:82_0:30$ ip community-list expanded c52 permit 32 ^65000:3_0:83_0:31$ ip community-list expanded c52 permit 33 ^65000:3_0:84_0:32$ ip community-list expanded c52 permit 34 ^65000:3_0:85_0:33$ ip community-list expanded c52 permit 35 ^65000:3_0:86_0:34$ ip community-list expanded c52 permit 36 ^65000:3_0:87_0:35$ ip community-list expanded c52 permit 37 ^65000:3_0:88_0:36$ ip community-list expanded c52 permit 38 ^65000:3_0:89_0:37$ ip community-list expanded c52 permit 39 ^65000:3_0:90_0:38$ ip community-list expanded c52 permit 40 ^65000:3_0:91_0:39$ ip community-list expanded c52 permit 41 ^65000:3_0:92_0:40$ ip community-list expanded c52 permit 42 ^65000:3_0:93_0:41$ ip community-list expanded c52 permit 43 ^65000:3_0:94_0:42$ ip community-list expanded c52 permit 44 ^65000:3_0:95_0:43$ ip community-list expanded c52 permit 45 ^65000:3_0:96_0:44$ ip community-list expanded c52 permit 46 ^65000:3_0:97_0:45$ ip community-list expanded c52 permit 47 ^65000:3_0:98_0:46$ ip community-list expanded c52 permit 48 ^65000:3_0:99_0:47$ ip community-list expanded c52 permit 49 ^65000:3_0:100_0:48$ ip community-list expanded c52 permit 50 ^65000:3_0:101_0:49$ ip community-list expanded c52 permit 51 ^65000:3_0:102_0:50$ ip community-list expanded c52 permit 52 ^65000:3_0:103_0:51$ ip community-list expanded c52 permit 53 ^65000:4_0:104_0:2$ ip community-list expanded c52 permit 54 ^65000:3_0:104_0:52$ ip community-list expanded c52 permit 55 ^65000:4_0:105_0:2$ ip community-list expanded c52 permit 56 ^65000:3_0:105_0:53$ ip community-list expanded c52 permit 57 ^65000:3_0:106_0:54$ ip community-list expanded c52 permit 58 ^65000:3_0:107_0:55$ ip community-list expanded c52 permit 59 ^65000:3_0:108_0:56$ ip community-list expanded c52 permit 60 ^65000:3_0:109_0:57$ ip community-list expanded c52 permit 61 ^65000:3_0:110_0:58$ ip community-list expanded c52 permit 62 ^65000:3_0:111_0:59$ ip community-list expanded c52 permit 63 ^65000:3_0:112_0:60$ ip community-list expanded c52 permit 64 ^65000:3_0:113_0:61$ ip community-list expanded c52 permit 65 ^65000:3_0:114_0:62$ ip community-list expanded c52 permit 66 ^65000:3_0:115_0:63$ ip community-list expanded c52 permit 67 ^65000:3_0:116_0:64$ ip community-list expanded c52 permit 68 ^65000:3_0:117_0:65$ ip community-list expanded c52 permit 69 ^65000:3_0:118_0:66$ ip community-list expanded c52 permit 70 ^65000:3_0:119_0:67$ ip community-list expanded c52 permit 71 ^65000:3_0:120_0:68$ ip community-list expanded c52 permit 72 ^65000:3_0:121_0:69$ ip community-list expanded c52 permit 73 ^65000:3_0:122_0:70$ ip community-list expanded c52 permit 74 ^65000:3_0:123_0:71$ ip community-list expanded c52 permit 75 ^65000:3_0:124_0:72$ ip community-list expanded c52 permit 76 ^65000:3_0:125_0:73$ ip community-list expanded c52 permit 77 ^65000:3_0:126_0:74$ ip community-list expanded c52 permit 78 ^65000:3_0:127_0:75$ ip community-list expanded c52 permit 79 ^65000:3_0:128_0:76$ ip community-list expanded c52 permit 80 ^65000:3_0:129_0:77$ ip community-list expanded c52 permit 81 ^65000:3_0:130_0:78$ ip community-list expanded c52 permit 82 ^65000:3_0:131_0:79$ ip community-list expanded c52 permit 83 ^65000:3_0:132_0:80$ ip community-list expanded c52 permit 84 ^65000:3_0:133_0:81$ ip community-list expanded c52 permit 85 ^65000:3_0:134_0:82$ ip community-list expanded c52 permit 86 ^65000:3_0:135_0:83$ ip community-list expanded c52 permit 87 ^65000:3_0:136_0:84$ ip community-list expanded c52 permit 88 ^65000:3_0:137_0:85$ ip community-list expanded c52 permit 89 ^65000:3_0:138_0:86$ ip community-list expanded c52 permit 90 ^65000:3_0:139_0:87$ ip community-list expanded c52 permit 91 ^65000:3_0:140_0:88$ ip community-list expanded c52 permit 92 ^65000:3_0:141_0:89$ ip community-list expanded c52 permit 93 ^65000:3_0:142_0:90$ ip community-list expanded c52 permit 94 ^65000:3_0:143_0:91$ ip community-list expanded c52 permit 95 ^65000:3_0:144_0:92$ ip community-list expanded c52 permit 96 ^65000:3_0:145_0:93$ ip community-list expanded c52 permit 97 ^65000:3_0:146_0:94$ ip community-list expanded c52 permit 98 ^65000:3_0:147_0:95$ ip community-list expanded c52 permit 99 ^65000:3_0:148_0:96$ ip community-list expanded c52 permit 100 ^65000:3_0:149_0:97$ ip community-list expanded c52 permit 101 ^65000:3_0:150_0:98$ ip community-list expanded c52 permit 102 ^65000:3_0:151_0:99$ ip community-list expanded c52 permit 103 ^65000:3_0:152_0:100$ ip community-list expanded c52 permit 104 ^65000:3_0:153_0:101$ ip community-list expanded c52 permit 105 ^65000:3_0:154_0:102$ ip community-list expanded c52 permit 106 ^65000:3_0:155_0:103$ ip community-list expanded c52 permit 107 ^65000:4_0:156_0:3$ ip community-list expanded c52 permit 108 ^65000:3_0:156_0:104$ ip community-list expanded c52 permit 109 ^65000:4_0:157_0:3$ ip community-list expanded c52 permit 110 ^65000:3_0:157_0:105$ ip community-list expanded c52 permit 111 ^65000:4_0:158_0:3$ ip community-list expanded c52 permit 112 ^65000:3_0:158_0:106$ ip community-list expanded c52 permit 113 ^65000:3_0:159_0:107$ ip community-list expanded c52 permit 114 ^65000:3_0:160_0:108$ ip community-list expanded c52 permit 115 ^65000:3_0:161_0:109$ ip community-list expanded c52 permit 116 ^65000:3_0:162_0:110$ ip community-list expanded c52 permit 117 ^65000:3_0:163_0:111$ ip community-list expanded c52 permit 118 ^65000:3_0:164_0:112$ ip community-list expanded c52 permit 119 ^65000:3_0:165_0:113$ ip community-list expanded c52 permit 120 ^65000:3_0:166_0:114$ ip community-list expanded c52 permit 121 ^65000:3_0:167_0:115$ ip community-list expanded c52 permit 122 ^65000:3_0:168_0:116$ ip community-list expanded c52 permit 123 ^65000:3_0:169_0:117$ ip community-list expanded c52 permit 124 ^65000:3_0:170_0:118$ ip community-list expanded c52 permit 125 ^65000:3_0:171_0:119$ ip community-list expanded c52 permit 126 ^65000:3_0:172_0:120$ ip community-list expanded c52 permit 127 ^65000:3_0:173_0:121$ ip community-list expanded c52 permit 128 ^65000:3_0:174_0:122$ ip community-list expanded c52 permit 129 ^65000:3_0:175_0:123$ ip community-list expanded c52 permit 130 ^65000:3_0:176_0:124$ ip community-list expanded c52 permit 131 ^65000:3_0:177_0:125$ ip community-list expanded c52 permit 132 ^65000:3_0:178_0:126$ ip community-list expanded c52 permit 133 ^65000:3_0:179_0:127$ ip community-list expanded c52 permit 134 ^65000:3_0:180_0:128$ ip community-list expanded c52 permit 135 ^65000:3_0:181_0:129$ ip community-list expanded c52 permit 136 ^65000:3_0:182_0:130$ ip community-list expanded c52 permit 137 ^65000:3_0:183_0:131$ ip community-list expanded c52 permit 138 ^65000:3_0:184_0:132$ ip community-list expanded c52 permit 139 ^65000:3_0:185_0:133$ ip community-list expanded c52 permit 140 ^65000:3_0:186_0:134$ ip community-list expanded c52 permit 141 ^65000:3_0:187_0:135$ ip community-list expanded c52 permit 142 ^65000:3_0:188_0:136$ ip community-list expanded c52 permit 143 ^65000:3_0:189_0:137$ ip community-list expanded c52 permit 144 ^65000:3_0:190_0:138$ ip community-list expanded c52 permit 145 ^65000:3_0:191_0:139$ ip community-list expanded c52 permit 146 ^65000:3_0:192_0:140$ ip community-list expanded c52 permit 147 ^65000:3_0:193_0:141$ ip community-list expanded c52 permit 148 ^65000:3_0:194_0:142$ ip community-list expanded c52 permit 149 ^65000:3_0:195_0:143$ ip community-list expanded c52 permit 150 ^65000:3_0:196_0:144$ ip community-list expanded c52 permit 151 ^65000:3_0:197_0:145$ ip community-list expanded c52 permit 152 ^65000:3_0:198_0:146$ ip community-list expanded c52 permit 153 ^65000:3_0:199_0:147$ ip community-list expanded c52 permit 154 ^65000:3_0:200_0:148$ ip community-list expanded c52 permit 155 ^65000:3_0:201_0:149$ ip community-list expanded c52 permit 156 ^65000:3_0:202_0:150$ ip community-list expanded c52 permit 157 ^65000:3_0:203_0:151$ ip community-list expanded c52 permit 158 ^65000:3_0:204_0:152$ ip community-list expanded c52 permit 159 ^65000:3_0:205_0:153$ ip community-list expanded c52 permit 160 ^65000:3_0:206_0:154$ ip community-list expanded c52 permit 161 ^65000:3_0:207_0:155$ ip community-list expanded c52 permit 162 ^65000:4_0:208_0:4$ ip community-list expanded c52 permit 163 ^65000:3_0:208_0:156$ ip community-list expanded c52 permit 164 ^65000:4_0:209_0:4$ ip community-list expanded c52 permit 165 ^65000:3_0:209_0:157$ ip community-list expanded c52 permit 166 ^65000:4_0:210_0:4$ ip community-list expanded c52 permit 167 ^65000:3_0:210_0:158$ ip community-list expanded c52 permit 168 ^65000:4_0:211_0:4$ ip community-list expanded c52 permit 169 ^65000:3_0:211_0:159$ ip community-list expanded c52 permit 170 ^65000:3_0:212_0:160$ ip community-list expanded c52 permit 171 ^65000:3_0:213_0:161$ ip community-list expanded c52 permit 172 ^65000:3_0:214_0:162$ ip community-list expanded c52 permit 173 ^65000:3_0:215_0:163$ ip community-list expanded c52 permit 174 ^65000:3_0:216_0:164$ ip community-list expanded c52 permit 175 ^65000:3_0:217_0:165$ ip community-list expanded c52 permit 176 ^65000:3_0:218_0:166$ ip community-list expanded c52 permit 177 ^65000:3_0:219_0:167$ ip community-list expanded c52 permit 178 ^65000:3_0:220_0:168$ ip community-list expanded c52 permit 179 ^65000:3_0:221_0:169$ ip community-list expanded c52 permit 180 ^65000:3_0:222_0:170$ ip community-list expanded c52 permit 181 ^65000:3_0:223_0:171$ ip community-list expanded c52 permit 182 ^65000:3_0:224_0:172$ ip community-list expanded c52 permit 183 ^65000:3_0:225_0:173$ ip community-list expanded c52 permit 184 ^65000:3_0:226_0:174$ ip community-list expanded c52 permit 185 ^65000:3_0:227_0:175$ ip community-list expanded c52 permit 186 ^65000:3_0:228_0:176$ ip community-list expanded c52 permit 187 ^65000:3_0:229_0:177$ ip community-list expanded c52 permit 188 ^65000:3_0:230_0:178$ ip community-list expanded c52 permit 189 ^65000:3_0:231_0:179$ ip community-list expanded c52 permit 190 ^65000:3_0:232_0:180$ ip community-list expanded c52 permit 191 ^65000:3_0:233_0:181$ ip community-list expanded c52 permit 192 ^65000:3_0:234_0:182$ ip community-list expanded c52 permit 193 ^65000:3_0:235_0:183$ ip community-list expanded c52 permit 194 ^65000:3_0:236_0:184$ ip community-list expanded c52 permit 195 ^65000:3_0:237_0:185$ ip community-list expanded c52 permit 196 ^65000:3_0:238_0:186$ ip community-list expanded c52 permit 197 ^65000:3_0:239_0:187$ ip community-list expanded c52 permit 198 ^65000:3_0:240_0:188$ ip community-list expanded c52 permit 199 ^65000:3_0:241_0:189$ ip community-list expanded c52 permit 200 ^65000:3_0:242_0:190$ ip community-list expanded c52 permit 201 ^65000:3_0:243_0:191$ ip community-list expanded c52 permit 202 ^65000:3_0:244_0:192$ ip community-list expanded c52 permit 203 ^65000:3_0:245_0:193$ ip community-list expanded c52 permit 204 ^65000:3_0:246_0:194$ ip community-list expanded c52 permit 205 ^65000:3_0:247_0:195$ ip community-list expanded c52 permit 206 ^65000:3_0:248_0:196$ ip community-list expanded c52 permit 207 ^65000:3_0:249_0:197$ ip community-list expanded c52 permit 208 ^65000:3_0:250_0:198$ ip community-list expanded c52 permit 209 ^65000:3_0:251_0:199$ ip community-list expanded c52 permit 210 ^65000:3_0:252_0:200$ ip community-list expanded c52 permit 211 ^65000:3_0:253_0:201$ ip community-list expanded c52 permit 212 ^65000:3_0:254_0:202$ ip community-list expanded c52 permit 213 ^65000:3_0:255_0:203$ ip community-list expanded c52 permit 214 ^65000:3_0:256_0:204$ route-map calculator permit 869 match community 1_1_51 2_1_52 2_2_26 1_2_50 1_3_49 set community 0:52 route-map calculator permit 870 match community 2_4_13 1_4_48 1_5_47 1_6_46 1_7_45 set community 0:52 route-map calculator permit 871 match community 1_8_44 1_9_43 1_10_42 1_11_41 1_12_40 set community 0:52 route-map calculator permit 872 match community 1_13_39 1_14_38 1_15_37 1_16_36 1_17_35 set community 0:52 route-map calculator permit 873 match community 1_18_34 1_19_33 1_20_32 1_21_31 1_22_30 set community 0:52 route-map calculator permit 874 match community 1_23_29 1_24_28 1_25_27 1_26_26 c4_52_1 set community 0:52 route-map calculator permit 875 match community c3_53_1 c3_54_2 c3_55_3 c3_56_4 c3_57_5 set community 0:52 route-map calculator permit 876 match community c3_58_6 c3_59_7 c3_60_8 c3_61_9 c3_62_10 set community 0:52 route-map calculator permit 877 match community c3_63_11 c3_64_12 c3_65_13 c3_66_14 c3_67_15 set community 0:52 route-map calculator permit 878 match community c3_68_16 c3_69_17 c3_70_18 c3_71_19 c3_72_20 set community 0:52 route-map calculator permit 879 match community c3_73_21 c3_74_22 c3_75_23 c3_76_24 c3_77_25 set community 0:52 route-map calculator permit 880 match community c3_78_26 c3_79_27 c3_80_28 c3_81_29 c3_82_30 set community 0:52 route-map calculator permit 881 match community c3_83_31 c3_84_32 c3_85_33 c3_86_34 c3_87_35 set community 0:52 route-map calculator permit 882 match community c3_88_36 c3_89_37 c3_90_38 c3_91_39 c3_92_40 set community 0:52 route-map calculator permit 883 match community c3_93_41 c3_94_42 c3_95_43 c3_96_44 c3_97_45 set community 0:52 route-map calculator permit 884 match community c3_98_46 c3_99_47 c3_100_48 c3_101_49 c3_102_50 set community 0:52 route-map calculator permit 885 match community c3_103_51 c4_104_2 c3_104_52 c4_105_2 c3_105_53 set community 0:52 route-map calculator permit 886 match community c3_106_54 c3_107_55 c3_108_56 c3_109_57 c3_110_58 set community 0:52 route-map calculator permit 887 match community c3_111_59 c3_112_60 c3_113_61 c3_114_62 c3_115_63 set community 0:52 route-map calculator permit 888 match community c3_116_64 c3_117_65 c3_118_66 c3_119_67 c3_120_68 set community 0:52 route-map calculator permit 889 match community c3_121_69 c3_122_70 c3_123_71 c3_124_72 c3_125_73 set community 0:52 route-map calculator permit 890 match community c3_126_74 c3_127_75 c3_128_76 c3_129_77 c3_130_78 set community 0:52 route-map calculator permit 891 match community c3_131_79 c3_132_80 c3_133_81 c3_134_82 c3_135_83 set community 0:52 route-map calculator permit 892 match community c3_136_84 c3_137_85 c3_138_86 c3_139_87 c3_140_88 set community 0:52 route-map calculator permit 893 match community c3_141_89 c3_142_90 c3_143_91 c3_144_92 c3_145_93 set community 0:52 route-map calculator permit 894 match community c3_146_94 c3_147_95 c3_148_96 c3_149_97 c3_150_98 set community 0:52 route-map calculator permit 895 match community c3_151_99 c3_152_100 c3_153_101 c3_154_102 c3_155_103 set community 0:52 route-map calculator permit 896 match community c4_156_3 c3_156_104 c4_157_3 c3_157_105 c4_158_3 set community 0:52 route-map calculator permit 897 match community c3_158_106 c3_159_107 c3_160_108 c3_161_109 c3_162_110 set community 0:52 route-map calculator permit 898 match community c3_163_111 c3_164_112 c3_165_113 c3_166_114 c3_167_115 set community 0:52 route-map calculator permit 899 match community c3_168_116 c3_169_117 c3_170_118 c3_171_119 c3_172_120 set community 0:52 route-map calculator permit 900 match community c3_173_121 c3_174_122 c3_175_123 c3_176_124 c3_177_125 set community 0:52 route-map calculator permit 901 match community c3_178_126 c3_179_127 c3_180_128 c3_181_129 c3_182_130 set community 0:52 route-map calculator permit 902 match community c3_183_131 c3_184_132 c3_185_133 c3_186_134 c3_187_135 set community 0:52 route-map calculator permit 903 match community c3_188_136 c3_189_137 c3_190_138 c3_191_139 c3_192_140 set community 0:52 route-map calculator permit 904 match community c3_193_141 c3_194_142 c3_195_143 c3_196_144 c3_197_145 set community 0:52 route-map calculator permit 905 match community c3_198_146 c3_199_147 c3_200_148 c3_201_149 c3_202_150 set community 0:52 route-map calculator permit 906 match community c3_203_151 c3_204_152 c3_205_153 c3_206_154 c3_207_155 set community 0:52 route-map calculator permit 907 match community c4_208_4 c3_208_156 c4_209_4 c3_209_157 c4_210_4 set community 0:52 route-map calculator permit 908 match community c3_210_158 c4_211_4 c3_211_159 c3_212_160 c3_213_161 set community 0:52 route-map calculator permit 909 match community c3_214_162 c3_215_163 c3_216_164 c3_217_165 c3_218_166 set community 0:52 route-map calculator permit 910 match community c3_219_167 c3_220_168 c3_221_169 c3_222_170 c3_223_171 set community 0:52 route-map calculator permit 911 match community c3_224_172 c3_225_173 c3_226_174 c3_227_175 c3_228_176 set community 0:52 route-map calculator permit 912 match community c3_229_177 c3_230_178 c3_231_179 c3_232_180 c3_233_181 set community 0:52 route-map calculator permit 913 match community c3_234_182 c3_235_183 c3_236_184 c3_237_185 c3_238_186 set community 0:52 route-map calculator permit 914 match community c3_239_187 c3_240_188 c3_241_189 c3_242_190 c3_243_191 set community 0:52 route-map calculator permit 915 match community c3_244_192 c3_245_193 c3_246_194 c3_247_195 c3_248_196 set community 0:52 route-map calculator permit 916 match community c3_249_197 c3_250_198 c3_251_199 c3_252_200 c3_253_201 set community 0:52 route-map calculator permit 917 match community c3_254_202 c3_255_203 c3_256_204 set community 0:52 ip community-list standard 2_125_169 permit 65000:2 0:125 0:169 route-map calculator permit 918 match community 2_125_169 set community 0:21125 ip community-list standard 2_11_73 permit 65000:2 0:11 0:73 route-map calculator permit 919 match community 2_11_73 set community 0:803 ip community-list standard 2_72_214 permit 65000:2 0:72 0:214 ip community-list standard 2_107_144 permit 65000:2 0:107 0:144 route-map calculator permit 920 match community 2_72_214 2_107_144 set community 0:15408 ip community-list standard 2_213_229 permit 65000:2 0:213 0:229 route-map calculator permit 921 match community 2_213_229 set community 0:48777 ip community-list standard 2_172_173 permit 65000:2 0:172 0:173 route-map calculator permit 922 match community 2_172_173 set community 0:29756 ip community-list standard 2_137_208 permit 65000:2 0:137 0:208 route-map calculator permit 923 match community 2_137_208 set community 0:28496 ip community-list standard 2_170_170 permit 65000:2 0:170 0:170 route-map calculator permit 924 match community 2_170_170 set community 0:28900 ip community-list standard 2_5_186 permit 65000:2 0:5 0:186 ip community-list standard 2_6_155 permit 65000:2 0:6 0:155 ip community-list standard 2_10_93 permit 65000:2 0:10 0:93 ip community-list standard 2_15_62 permit 65000:2 0:15 0:62 ip community-list standard 2_30_31 permit 65000:2 0:30 0:31 route-map calculator permit 925 match community 2_5_186 2_6_155 2_10_93 2_15_62 2_30_31 set community 0:930 ip community-list standard 2_141_204 permit 65000:2 0:141 0:204 ip community-list standard 2_153_188 permit 65000:2 0:153 0:188 route-map calculator permit 926 match community 2_141_204 2_153_188 set community 0:28764 ip community-list standard 2_63_247 permit 65000:2 0:63 0:247 ip community-list standard 2_91_171 permit 65000:2 0:91 0:171 ip community-list standard 2_117_133 permit 65000:2 0:117 0:133 route-map calculator permit 927 match community 2_63_247 2_91_171 2_117_133 set community 0:15561 ip community-list standard 2_209_223 permit 65000:2 0:209 0:223 route-map calculator permit 928 match community 2_209_223 set community 0:46607 ip community-list standard 2_67_137 permit 65000:2 0:67 0:137 route-map calculator permit 929 match community 2_67_137 set community 0:9179 ip community-list standard 2_97_207 permit 65000:2 0:97 0:207 route-map calculator permit 930 match community 2_97_207 set community 0:20079 ip community-list standard 2_38_236 permit 65000:2 0:38 0:236 ip community-list standard 2_59_152 permit 65000:2 0:59 0:152 ip community-list standard 2_76_118 permit 65000:2 0:76 0:118 route-map calculator permit 931 match community 2_38_236 2_59_152 2_76_118 set community 0:8968 ip community-list standard 2_100_223 permit 65000:2 0:100 0:223 route-map calculator permit 932 match community 2_100_223 set community 0:22300 ip community-list standard 2_11_236 permit 65000:2 0:11 0:236 ip community-list standard 2_22_118 permit 65000:2 0:22 0:118 ip community-list standard 2_44_59 permit 65000:2 0:44 0:59 route-map calculator permit 933 match community 2_11_236 2_22_118 2_44_59 set community 0:2596 ip community-list standard 2_208_237 permit 65000:2 0:208 0:237 route-map calculator permit 934 match community 2_208_237 set community 0:49296 ip community-list standard 2_99_232 permit 65000:2 0:99 0:232 ip community-list standard 2_116_198 permit 65000:2 0:116 0:198 ip community-list standard 2_132_174 permit 65000:2 0:132 0:174 route-map calculator permit 935 match community 2_99_232 2_116_198 2_132_174 set community 0:22968 ip community-list standard 2_130_229 permit 65000:2 0:130 0:229 route-map calculator permit 936 match community 2_130_229 set community 0:29770 ip community-list standard 2_59_213 permit 65000:2 0:59 0:213 ip community-list standard 2_71_177 permit 65000:2 0:71 0:177 route-map calculator permit 937 match community 2_59_213 2_71_177 set community 0:12567 ip community-list standard 2_142_232 permit 65000:2 0:142 0:232 route-map calculator permit 938 match community 2_142_232 set community 0:32944 ip community-list standard 2_200_206 permit 65000:2 0:200 0:206 route-map calculator permit 939 match community 2_200_206 set community 0:41200 ip community-list standard 2_111_119 permit 65000:2 0:111 0:119 route-map calculator permit 940 match community 2_111_119 set community 0:13209 ip community-list standard 2_67_248 permit 65000:2 0:67 0:248 ip community-list standard 2_124_134 permit 65000:2 0:124 0:134 route-map calculator permit 941 match community 2_67_248 2_124_134 set community 0:16616 ip community-list standard 2_55_122 permit 65000:2 0:55 0:122 ip community-list standard 2_61_110 permit 65000:2 0:61 0:110 route-map calculator permit 942 match community 2_55_122 2_61_110 set community 0:6710 ip community-list standard 2_17_174 permit 65000:2 0:17 0:174 ip community-list standard 2_29_102 permit 65000:2 0:29 0:102 ip community-list standard 2_34_87 permit 65000:2 0:34 0:87 ip community-list standard 2_51_58 permit 65000:2 0:51 0:58 route-map calculator permit 943 match community 2_17_174 2_29_102 2_34_87 2_51_58 set community 0:2958 ip community-list standard 2_40_226 permit 65000:2 0:40 0:226 ip community-list standard 2_80_113 permit 65000:2 0:80 0:113 route-map calculator permit 944 match community 2_40_226 2_80_113 set community 0:9040 ip community-list standard 2_16_206 permit 65000:2 0:16 0:206 ip community-list standard 2_32_103 permit 65000:2 0:32 0:103 route-map calculator permit 945 match community 2_16_206 2_32_103 set community 0:3296 ip community-list standard 2_67_213 permit 65000:2 0:67 0:213 ip community-list standard 2_71_201 permit 65000:2 0:71 0:201 route-map calculator permit 946 match community 2_67_213 2_71_201 set community 0:14271 ip community-list standard 2_205_227 permit 65000:2 0:205 0:227 route-map calculator permit 947 match community 2_205_227 set community 0:46535 ip community-list standard 2_134_252 permit 65000:2 0:134 0:252 ip community-list standard 2_168_201 permit 65000:2 0:168 0:201 route-map calculator permit 948 match community 2_134_252 2_168_201 set community 0:33768 ip community-list standard 2_26_149 permit 65000:2 0:26 0:149 route-map calculator permit 949 match community 2_26_149 set community 0:3874 ip community-list standard 2_16_146 permit 65000:2 0:16 0:146 ip community-list standard 2_32_73 permit 65000:2 0:32 0:73 route-map calculator permit 950 match community 2_16_146 2_32_73 set community 0:2336 ip community-list standard 2_119_131 permit 65000:2 0:119 0:131 route-map calculator permit 951 match community 2_119_131 set community 0:15589 ip community-list standard 2_53_91 permit 65000:2 0:53 0:91 route-map calculator permit 952 match community 2_53_91 set community 0:4823 ip community-list standard 2_54_167 permit 65000:2 0:54 0:167 route-map calculator permit 953 match community 2_54_167 set community 0:9018 ip community-list standard 2_31_246 permit 65000:2 0:31 0:246 ip community-list standard 2_41_186 permit 65000:2 0:41 0:186 ip community-list standard 2_62_123 permit 65000:2 0:62 0:123 ip community-list standard 2_82_93 permit 65000:2 0:82 0:93 route-map calculator permit 954 match community 2_31_246 2_41_186 2_62_123 2_82_93 set community 0:7626 ip community-list standard 2_5_119 permit 65000:2 0:5 0:119 ip community-list standard 2_7_85 permit 65000:2 0:7 0:85 ip community-list standard 2_17_35 permit 65000:2 0:17 0:35 route-map calculator permit 955 match community 2_5_119 2_7_85 2_17_35 set community 0:595 ip community-list standard 2_156_157 permit 65000:2 0:156 0:157 route-map calculator permit 956 match community 2_156_157 set community 0:24492 ip community-list standard 2_53_230 permit 65000:2 0:53 0:230 ip community-list standard 2_106_115 permit 65000:2 0:106 0:115 route-map calculator permit 957 match community 2_53_230 2_106_115 set community 0:12190 ip community-list standard 2_46_196 permit 65000:2 0:46 0:196 ip community-list standard 2_49_184 permit 65000:2 0:49 0:184 ip community-list standard 2_56_161 permit 65000:2 0:56 0:161 ip community-list standard 2_92_98 permit 65000:2 0:92 0:98 route-map calculator permit 958 match community 2_46_196 2_49_184 2_56_161 2_92_98 set community 0:9016 ip community-list standard 2_190_206 permit 65000:2 0:190 0:206 route-map calculator permit 959 match community 2_190_206 set community 0:39140 ip community-list standard 2_170_247 permit 65000:2 0:170 0:247 ip community-list standard 2_190_221 permit 65000:2 0:190 0:221 route-map calculator permit 960 match community 2_170_247 2_190_221 set community 0:41990 ip community-list standard 2_206_224 permit 65000:2 0:206 0:224 route-map calculator permit 961 match community 2_206_224 set community 0:46144 ip community-list standard 2_122_207 permit 65000:2 0:122 0:207 ip community-list standard 2_138_183 permit 65000:2 0:138 0:183 route-map calculator permit 962 match community 2_122_207 2_138_183 set community 0:25254 ip community-list standard 2_67_73 permit 65000:2 0:67 0:73 route-map calculator permit 963 match community 2_67_73 set community 0:4891 ip community-list standard 2_52_219 permit 65000:2 0:52 0:219 ip community-list standard 2_73_156 permit 65000:2 0:73 0:156 ip community-list standard 2_78_146 permit 65000:2 0:78 0:146 route-map calculator permit 964 match community 2_52_219 2_73_156 2_78_146 set community 0:11388 ip community-list standard 2_26_151 permit 65000:2 0:26 0:151 route-map calculator permit 965 match community 2_26_151 set community 0:3926 ip community-list standard 2_77_199 permit 65000:2 0:77 0:199 route-map calculator permit 966 match community 2_77_199 set community 0:15323 ip community-list standard 2_128_219 permit 65000:2 0:128 0:219 ip community-list standard 2_146_192 permit 65000:2 0:146 0:192 route-map calculator permit 967 match community 2_128_219 2_146_192 set community 0:28032 ip community-list standard 2_131_185 permit 65000:2 0:131 0:185 route-map calculator permit 968 match community 2_131_185 set community 0:24235 ip community-list standard 2_10_226 permit 65000:2 0:10 0:226 ip community-list standard 2_20_113 permit 65000:2 0:20 0:113 route-map calculator permit 969 match community 2_10_226 2_20_113 set community 0:2260 ip community-list standard 2_42_178 permit 65000:2 0:42 0:178 ip community-list standard 2_84_89 permit 65000:2 0:84 0:89 route-map calculator permit 970 match community 2_42_178 2_84_89 set community 0:7476 ip community-list standard 2_20_235 permit 65000:2 0:20 0:235 ip community-list standard 2_25_188 permit 65000:2 0:25 0:188 ip community-list standard 2_47_100 permit 65000:2 0:47 0:100 ip community-list standard 2_50_94 permit 65000:2 0:50 0:94 route-map calculator permit 971 match community 2_20_235 2_25_188 2_47_100 2_50_94 set community 0:4700 ip community-list standard 2_85_185 permit 65000:2 0:85 0:185 route-map calculator permit 972 match community 2_85_185 set community 0:15725 ip community-list standard 2_229_236 permit 65000:2 0:229 0:236 route-map calculator permit 973 match community 2_229_236 set community 0:54044 ip community-list standard 2_116_137 permit 65000:2 0:116 0:137 route-map calculator permit 974 match community 2_116_137 set community 0:15892 ip community-list standard 2_23_101 permit 65000:2 0:23 0:101 route-map calculator permit 975 match community 2_23_101 set community 0:2323 ip community-list standard 2_62_167 permit 65000:2 0:62 0:167 route-map calculator permit 976 match community 2_62_167 set community 0:10354 ip community-list standard 2_14_241 permit 65000:2 0:14 0:241 route-map calculator permit 977 match community 2_14_241 set community 0:3374 ip community-list standard 2_219_230 permit 65000:2 0:219 0:230 route-map calculator permit 978 match community 2_219_230 set community 0:50370 ip community-list standard 2_30_194 permit 65000:2 0:30 0:194 ip community-list standard 2_60_97 permit 65000:2 0:60 0:97 route-map calculator permit 979 match community 2_30_194 2_60_97 set community 0:5820 ip community-list standard 2_91_231 permit 65000:2 0:91 0:231 ip community-list standard 2_143_147 permit 65000:2 0:143 0:147 route-map calculator permit 980 match community 2_91_231 2_143_147 set community 0:21021 ip community-list standard 2_62_219 permit 65000:2 0:62 0:219 ip community-list standard 2_73_186 permit 65000:2 0:73 0:186 ip community-list standard 2_93_146 permit 65000:2 0:93 0:146 route-map calculator permit 981 match community 2_62_219 2_73_186 2_93_146 set community 0:13578 ip community-list standard 2_95_203 permit 65000:2 0:95 0:203 ip community-list standard 2_133_145 permit 65000:2 0:133 0:145 route-map calculator permit 982 match community 2_95_203 2_133_145 set community 0:19285 ip community-list standard 2_60_193 permit 65000:2 0:60 0:193 route-map calculator permit 983 match community 2_60_193 set community 0:11580 ip community-list standard 2_223_240 permit 65000:2 0:223 0:240 route-map calculator permit 984 match community 2_223_240 set community 0:53520 ip community-list standard 2_178_191 permit 65000:2 0:178 0:191 route-map calculator permit 985 match community 2_178_191 set community 0:33998 ip community-list standard 2_193_233 permit 65000:2 0:193 0:233 route-map calculator permit 986 match community 2_193_233 set community 0:44969 ip community-list standard 2_122_213 permit 65000:2 0:122 0:213 ip community-list standard 2_142_183 permit 65000:2 0:142 0:183 route-map calculator permit 987 match community 2_122_213 2_142_183 set community 0:25986 ip community-list standard 2_31_146 permit 65000:2 0:31 0:146 ip community-list standard 2_62_73 permit 65000:2 0:62 0:73 route-map calculator permit 988 match community 2_31_146 2_62_73 set community 0:4526 ip community-list standard 2_78_214 permit 65000:2 0:78 0:214 ip community-list standard 2_107_156 permit 65000:2 0:107 0:156 route-map calculator permit 989 match community 2_78_214 2_107_156 set community 0:16692 ip community-list standard 2_2_241 permit 65000:2 0:2 0:241 ip community-list standard 1_226_256 permit 65000:1 0:226 0:256 ip community-list standard 1_227_255 permit 65000:1 0:227 0:255 ip community-list standard 1_228_254 permit 65000:1 0:228 0:254 ip community-list standard 1_229_253 permit 65000:1 0:229 0:253 ip community-list standard 1_230_252 permit 65000:1 0:230 0:252 ip community-list standard 1_231_251 permit 65000:1 0:231 0:251 ip community-list standard 1_232_250 permit 65000:1 0:232 0:250 ip community-list standard 1_233_249 permit 65000:1 0:233 0:249 ip community-list standard 1_234_248 permit 65000:1 0:234 0:248 ip community-list standard 1_235_247 permit 65000:1 0:235 0:247 ip community-list standard 1_236_246 permit 65000:1 0:236 0:246 ip community-list standard 1_237_245 permit 65000:1 0:237 0:245 ip community-list standard 1_238_244 permit 65000:1 0:238 0:244 ip community-list standard 1_239_243 permit 65000:1 0:239 0:243 ip community-list standard 1_240_242 permit 65000:1 0:240 0:242 ip community-list standard 1_241_241 permit 65000:1 0:241 0:241 route-map calculator permit 990 match community 2_2_241 1_226_256 1_227_255 1_228_254 1_229_253 set community 0:482 route-map calculator permit 991 match community 1_230_252 1_231_251 1_232_250 1_233_249 1_234_248 set community 0:482 route-map calculator permit 992 match community 1_235_247 1_236_246 1_237_245 1_238_244 1_239_243 set community 0:482 route-map calculator permit 993 match community 1_240_242 1_241_241 set community 0:482 ip community-list standard 2_79_137 permit 65000:2 0:79 0:137 route-map calculator permit 994 match community 2_79_137 set community 0:10823 ip community-list standard 2_85_226 permit 65000:2 0:85 0:226 ip community-list standard 2_113_170 permit 65000:2 0:113 0:170 route-map calculator permit 995 match community 2_85_226 2_113_170 set community 0:19210 ip community-list standard 2_97_235 permit 65000:2 0:97 0:235 route-map calculator permit 996 match community 2_97_235 set community 0:22795 ip community-list standard 2_179_215 permit 65000:2 0:179 0:215 route-map calculator permit 997 match community 2_179_215 set community 0:38485 ip community-list standard 2_152_190 permit 65000:2 0:152 0:190 route-map calculator permit 998 match community 2_152_190 set community 0:28880 ip community-list standard 2_189_191 permit 65000:2 0:189 0:191 route-map calculator permit 999 match community 2_189_191 set community 0:36099 ip community-list standard 2_191_195 permit 65000:2 0:191 0:195 route-map calculator permit 1000 match community 2_191_195 set community 0:37245 ip community-list standard 2_27_256 permit 65000:2 0:27 0:256 ip community-list standard 2_32_216 permit 65000:2 0:32 0:216 ip community-list standard 2_36_192 permit 65000:2 0:36 0:192 ip community-list standard 2_48_144 permit 65000:2 0:48 0:144 ip community-list standard 2_54_128 permit 65000:2 0:54 0:128 ip community-list standard 2_64_108 permit 65000:2 0:64 0:108 ip community-list standard 2_72_96 permit 65000:2 0:72 0:96 route-map calculator permit 1001 match community 2_27_256 2_32_216 2_36_192 2_48_144 2_54_128 set community 0:6912 route-map calculator permit 1002 match community 2_64_108 2_72_96 set community 0:6912 ip community-list standard 2_231_252 permit 65000:2 0:231 0:252 route-map calculator permit 1003 match community 2_231_252 set community 0:58212 ip community-list standard 2_239_253 permit 65000:2 0:239 0:253 route-map calculator permit 1004 match community 2_239_253 set community 0:60467 ip community-list standard 2_147_238 permit 65000:2 0:147 0:238 route-map calculator permit 1005 match community 2_147_238 set community 0:34986 ip community-list standard 2_111_129 permit 65000:2 0:111 0:129 route-map calculator permit 1006 match community 2_111_129 set community 0:14319 ip community-list standard 2_29_247 permit 65000:2 0:29 0:247 route-map calculator permit 1007 match community 2_29_247 set community 0:7163 ip community-list standard 2_4_251 permit 65000:2 0:4 0:251 route-map calculator permit 1008 match community 2_4_251 set community 0:1004 ip community-list standard 2_96_163 permit 65000:2 0:96 0:163 route-map calculator permit 1009 match community 2_96_163 set community 0:15648 ip community-list standard 2_147_246 permit 65000:2 0:147 0:246 route-map calculator permit 1010 match community 2_147_246 set community 0:36162 ip community-list standard 2_142_243 permit 65000:2 0:142 0:243 ip community-list standard 2_162_213 permit 65000:2 0:162 0:213 route-map calculator permit 1011 match community 2_142_243 2_162_213 set community 0:34506 ip community-list standard 2_11_196 permit 65000:2 0:11 0:196 ip community-list standard 2_14_154 permit 65000:2 0:14 0:154 ip community-list standard 2_22_98 permit 65000:2 0:22 0:98 ip community-list standard 2_28_77 permit 65000:2 0:28 0:77 ip community-list standard 2_44_49 permit 65000:2 0:44 0:49 route-map calculator permit 1012 match community 2_11_196 2_14_154 2_22_98 2_28_77 2_44_49 set community 0:2156 ip community-list standard 2_82_230 permit 65000:2 0:82 0:230 ip community-list standard 2_92_205 permit 65000:2 0:92 0:205 ip community-list standard 2_115_164 permit 65000:2 0:115 0:164 route-map calculator permit 1013 match community 2_82_230 2_92_205 2_115_164 set community 0:18860 ip community-list standard 2_84_248 permit 65000:2 0:84 0:248 ip community-list standard 2_93_224 permit 65000:2 0:93 0:224 ip community-list standard 2_96_217 permit 65000:2 0:96 0:217 ip community-list standard 2_112_186 permit 65000:2 0:112 0:186 ip community-list standard 2_124_168 permit 65000:2 0:124 0:168 route-map calculator permit 1014 match community 2_84_248 2_93_224 2_96_217 2_112_186 2_124_168 set community 0:20832 ip community-list standard 2_122_249 permit 65000:2 0:122 0:249 ip community-list standard 2_166_183 permit 65000:2 0:166 0:183 route-map calculator permit 1015 match community 2_122_249 2_166_183 set community 0:30378 ip community-list standard 2_107_173 permit 65000:2 0:107 0:173 route-map calculator permit 1016 match community 2_107_173 set community 0:18511 ip community-list standard 2_91_230 permit 65000:2 0:91 0:230 ip community-list standard 2_115_182 permit 65000:2 0:115 0:182 ip community-list standard 2_130_161 permit 65000:2 0:130 0:161 route-map calculator permit 1017 match community 2_91_230 2_115_182 2_130_161 set community 0:20930 ip community-list standard 2_11_87 permit 65000:2 0:11 0:87 ip community-list standard 2_29_33 permit 65000:2 0:29 0:33 route-map calculator permit 1018 match community 2_11_87 2_29_33 set community 0:957 ip community-list standard 2_104_199 permit 65000:2 0:104 0:199 route-map calculator permit 1019 match community 2_104_199 set community 0:20696 ip community-list standard 2_24_178 permit 65000:2 0:24 0:178 ip community-list standard 2_48_89 permit 65000:2 0:48 0:89 route-map calculator permit 1020 match community 2_24_178 2_48_89 set community 0:4272 ip community-list standard 2_71_240 permit 65000:2 0:71 0:240 ip community-list standard 2_80_213 permit 65000:2 0:80 0:213 ip community-list standard 2_120_142 permit 65000:2 0:120 0:142 route-map calculator permit 1021 match community 2_71_240 2_80_213 2_120_142 set community 0:17040 ip community-list standard 2_55_134 permit 65000:2 0:55 0:134 ip community-list standard 2_67_110 permit 65000:2 0:67 0:110 route-map calculator permit 1022 match community 2_55_134 2_67_110 set community 0:7370 ip community-list standard 2_84_194 permit 65000:2 0:84 0:194 ip community-list standard 2_97_168 permit 65000:2 0:97 0:168 route-map calculator permit 1023 match community 2_84_194 2_97_168 set community 0:16296 ip community-list standard 2_216_223 permit 65000:2 0:216 0:223 route-map calculator permit 1024 match community 2_216_223 set community 0:48168 ip community-list standard 2_100_255 permit 65000:2 0:100 0:255 ip community-list standard 2_102_250 permit 65000:2 0:102 0:250 ip community-list standard 2_125_204 permit 65000:2 0:125 0:204 ip community-list standard 2_150_170 permit 65000:2 0:150 0:170 route-map calculator permit 1025 match community 2_100_255 2_102_250 2_125_204 2_150_170 set community 0:25500 ip community-list standard 2_6_204 permit 65000:2 0:6 0:204 ip community-list standard 2_8_153 permit 65000:2 0:8 0:153 ip community-list standard 2_9_136 permit 65000:2 0:9 0:136 ip community-list standard 2_12_102 permit 65000:2 0:12 0:102 ip community-list standard 2_17_72 permit 65000:2 0:17 0:72 ip community-list standard 2_18_68 permit 65000:2 0:18 0:68 ip community-list standard 2_24_51 permit 65000:2 0:24 0:51 ip community-list standard 2_34_36 permit 65000:2 0:34 0:36 route-map calculator permit 1026 match community 2_6_204 2_8_153 2_9_136 2_12_102 2_17_72 set community 0:1224 route-map calculator permit 1027 match community 2_18_68 2_24_51 2_34_36 set community 0:1224 ip community-list standard 2_8_173 permit 65000:2 0:8 0:173 route-map calculator permit 1028 match community 2_8_173 set community 0:1384 ip community-list standard 2_118_249 permit 65000:2 0:118 0:249 ip community-list standard 2_166_177 permit 65000:2 0:166 0:177 route-map calculator permit 1029 match community 2_118_249 2_166_177 set community 0:29382 ip community-list standard 2_179_204 permit 65000:2 0:179 0:204 route-map calculator permit 1030 match community 2_179_204 set community 0:36516 ip community-list standard 2_73_146 permit 65000:2 0:73 0:146 route-map calculator permit 1031 match community 2_73_146 set community 0:10658 ip community-list standard 2_66_204 permit 65000:2 0:66 0:204 ip community-list standard 2_68_198 permit 65000:2 0:68 0:198 ip community-list standard 2_72_187 permit 65000:2 0:72 0:187 ip community-list standard 2_88_153 permit 65000:2 0:88 0:153 ip community-list standard 2_99_136 permit 65000:2 0:99 0:136 ip community-list standard 2_102_132 permit 65000:2 0:102 0:132 route-map calculator permit 1032 match community 2_66_204 2_68_198 2_72_187 2_88_153 2_99_136 set community 0:13464 route-map calculator permit 1033 match community 2_102_132 set community 0:13464 ip community-list standard 2_3_171 permit 65000:2 0:3 0:171 ip community-list standard 2_9_57 permit 65000:2 0:9 0:57 ip community-list standard 2_19_27 permit 65000:2 0:19 0:27 route-map calculator permit 1034 match community 2_3_171 2_9_57 2_19_27 set community 0:513 ip community-list standard 2_39_220 permit 65000:2 0:39 0:220 ip community-list standard 2_44_195 permit 65000:2 0:44 0:195 ip community-list standard 2_52_165 permit 65000:2 0:52 0:165 ip community-list standard 2_55_156 permit 65000:2 0:55 0:156 ip community-list standard 2_60_143 permit 65000:2 0:60 0:143 ip community-list standard 2_65_132 permit 65000:2 0:65 0:132 ip community-list standard 2_66_130 permit 65000:2 0:66 0:130 ip community-list standard 2_78_110 permit 65000:2 0:78 0:110 route-map calculator permit 1035 match community 2_39_220 2_44_195 2_52_165 2_55_156 2_60_143 set community 0:8580 route-map calculator permit 1036 match community 2_65_132 2_66_130 2_78_110 set community 0:8580 ip community-list standard 2_253_254 permit 65000:2 0:253 0:254 route-map calculator permit 1037 match community 2_253_254 set community 0:64262 ip community-list standard 2_87_193 permit 65000:2 0:87 0:193 route-map calculator permit 1038 match community 2_87_193 set community 0:16791 ip community-list standard 2_14_177 permit 65000:2 0:14 0:177 ip community-list standard 2_21_118 permit 65000:2 0:21 0:118 ip community-list standard 2_42_59 permit 65000:2 0:42 0:59 route-map calculator permit 1039 match community 2_14_177 2_21_118 2_42_59 set community 0:2478 ip community-list standard 2_153_207 permit 65000:2 0:153 0:207 route-map calculator permit 1040 match community 2_153_207 set community 0:31671 ip community-list standard 1_165_256 permit 65000:1 0:165 0:256 ip community-list standard 1_166_255 permit 65000:1 0:166 0:255 ip community-list standard 1_167_254 permit 65000:1 0:167 0:254 ip community-list standard 1_168_253 permit 65000:1 0:168 0:253 ip community-list standard 1_169_252 permit 65000:1 0:169 0:252 ip community-list standard 1_170_251 permit 65000:1 0:170 0:251 ip community-list standard 1_171_250 permit 65000:1 0:171 0:250 ip community-list standard 1_172_249 permit 65000:1 0:172 0:249 ip community-list standard 1_173_248 permit 65000:1 0:173 0:248 ip community-list standard 1_174_247 permit 65000:1 0:174 0:247 ip community-list standard 1_175_246 permit 65000:1 0:175 0:246 ip community-list standard 1_176_245 permit 65000:1 0:176 0:245 ip community-list standard 1_177_244 permit 65000:1 0:177 0:244 ip community-list standard 1_178_243 permit 65000:1 0:178 0:243 ip community-list standard 1_179_242 permit 65000:1 0:179 0:242 ip community-list standard 1_180_241 permit 65000:1 0:180 0:241 ip community-list standard 1_181_240 permit 65000:1 0:181 0:240 ip community-list standard 1_182_239 permit 65000:1 0:182 0:239 ip community-list standard 1_183_238 permit 65000:1 0:183 0:238 ip community-list standard 1_184_237 permit 65000:1 0:184 0:237 ip community-list standard 1_185_236 permit 65000:1 0:185 0:236 ip community-list standard 1_186_235 permit 65000:1 0:186 0:235 ip community-list standard 1_187_234 permit 65000:1 0:187 0:234 ip community-list standard 1_188_233 permit 65000:1 0:188 0:233 ip community-list standard 1_189_232 permit 65000:1 0:189 0:232 ip community-list standard 1_190_231 permit 65000:1 0:190 0:231 ip community-list standard 1_191_230 permit 65000:1 0:191 0:230 ip community-list standard 1_192_229 permit 65000:1 0:192 0:229 ip community-list standard 1_193_228 permit 65000:1 0:193 0:228 ip community-list standard 1_194_227 permit 65000:1 0:194 0:227 ip community-list standard 1_195_226 permit 65000:1 0:195 0:226 ip community-list standard 1_196_225 permit 65000:1 0:196 0:225 ip community-list standard 1_197_224 permit 65000:1 0:197 0:224 ip community-list standard 1_198_223 permit 65000:1 0:198 0:223 ip community-list standard 1_199_222 permit 65000:1 0:199 0:222 ip community-list standard 1_200_221 permit 65000:1 0:200 0:221 ip community-list standard 1_201_220 permit 65000:1 0:201 0:220 ip community-list standard 1_202_219 permit 65000:1 0:202 0:219 ip community-list standard 1_203_218 permit 65000:1 0:203 0:218 ip community-list standard 1_204_217 permit 65000:1 0:204 0:217 ip community-list standard 1_205_216 permit 65000:1 0:205 0:216 ip community-list standard 1_206_215 permit 65000:1 0:206 0:215 ip community-list standard 1_207_214 permit 65000:1 0:207 0:214 ip community-list standard 1_208_213 permit 65000:1 0:208 0:213 ip community-list standard 1_209_212 permit 65000:1 0:209 0:212 ip community-list standard 1_210_211 permit 65000:1 0:210 0:211 route-map calculator permit 1041 match community 1_165_256 1_166_255 1_167_254 1_168_253 1_169_252 set community 0:421 route-map calculator permit 1042 match community 1_170_251 1_171_250 1_172_249 1_173_248 1_174_247 set community 0:421 route-map calculator permit 1043 match community 1_175_246 1_176_245 1_177_244 1_178_243 1_179_242 set community 0:421 route-map calculator permit 1044 match community 1_180_241 1_181_240 1_182_239 1_183_238 1_184_237 set community 0:421 route-map calculator permit 1045 match community 1_185_236 1_186_235 1_187_234 1_188_233 1_189_232 set community 0:421 route-map calculator permit 1046 match community 1_190_231 1_191_230 1_192_229 1_193_228 1_194_227 set community 0:421 route-map calculator permit 1047 match community 1_195_226 1_196_225 1_197_224 1_198_223 1_199_222 set community 0:421 route-map calculator permit 1048 match community 1_200_221 1_201_220 1_202_219 1_203_218 1_204_217 set community 0:421 route-map calculator permit 1049 match community 1_205_216 1_206_215 1_207_214 1_208_213 1_209_212 set community 0:421 route-map calculator permit 1050 match community 1_210_211 set community 0:421 ip community-list standard 2_213_213 permit 65000:2 0:213 0:213 route-map calculator permit 1051 match community 2_213_213 set community 0:45369 ip community-list standard 2_179_248 permit 65000:2 0:179 0:248 route-map calculator permit 1052 match community 2_179_248 set community 0:44392 ip community-list standard 2_136_172 permit 65000:2 0:136 0:172 route-map calculator permit 1053 match community 2_136_172 set community 0:23392 ip community-list standard 2_113_252 permit 65000:2 0:113 0:252 ip community-list standard 2_126_226 permit 65000:2 0:126 0:226 route-map calculator permit 1054 match community 2_113_252 2_126_226 set community 0:28476 ip community-list standard 2_208_238 permit 65000:2 0:208 0:238 ip community-list standard 2_221_224 permit 65000:2 0:221 0:224 route-map calculator permit 1055 match community 2_208_238 2_221_224 set community 0:49504 ip community-list standard 2_125_225 permit 65000:2 0:125 0:225 route-map calculator permit 1056 match community 2_125_225 set community 0:28125 ip community-list standard 2_112_181 permit 65000:2 0:112 0:181 route-map calculator permit 1057 match community 2_112_181 set community 0:20272 ip community-list standard 2_147_211 permit 65000:2 0:147 0:211 route-map calculator permit 1058 match community 2_147_211 set community 0:31017 ip community-list standard 2_188_221 permit 65000:2 0:188 0:221 route-map calculator permit 1059 match community 2_188_221 set community 0:41548 ip community-list standard 2_83_95 permit 65000:2 0:83 0:95 route-map calculator permit 1060 match community 2_83_95 set community 0:7885 ip community-list standard 2_29_122 permit 65000:2 0:29 0:122 ip community-list standard 2_58_61 permit 65000:2 0:58 0:61 route-map calculator permit 1061 match community 2_29_122 2_58_61 set community 0:3538 ip community-list standard 2_106_244 permit 65000:2 0:106 0:244 ip community-list standard 2_122_212 permit 65000:2 0:122 0:212 route-map calculator permit 1062 match community 2_106_244 2_122_212 set community 0:25864 ip community-list standard 2_16_184 permit 65000:2 0:16 0:184 ip community-list standard 2_23_128 permit 65000:2 0:23 0:128 ip community-list standard 2_32_92 permit 65000:2 0:32 0:92 ip community-list standard 2_46_64 permit 65000:2 0:46 0:64 route-map calculator permit 1063 match community 2_16_184 2_23_128 2_32_92 2_46_64 set community 0:2944 ip community-list standard 2_209_254 permit 65000:2 0:209 0:254 route-map calculator permit 1064 match community 2_209_254 set community 0:53086 ip community-list standard 2_249_252 permit 65000:2 0:249 0:252 route-map calculator permit 1065 match community 2_249_252 set community 0:62748 ip community-list standard 2_29_129 permit 65000:2 0:29 0:129 ip community-list standard 2_43_87 permit 65000:2 0:43 0:87 route-map calculator permit 1066 match community 2_29_129 2_43_87 set community 0:3741 ip community-list standard 1_1_201 permit 65000:1 0:1 0:201 ip community-list standard 2_1_202 permit 65000:2 0:1 0:202 ip community-list standard 2_2_101 permit 65000:2 0:2 0:101 ip community-list standard 1_2_200 permit 65000:1 0:2 0:200 ip community-list standard 1_3_199 permit 65000:1 0:3 0:199 ip community-list standard 1_4_198 permit 65000:1 0:4 0:198 ip community-list standard 1_5_197 permit 65000:1 0:5 0:197 ip community-list standard 1_6_196 permit 65000:1 0:6 0:196 ip community-list standard 1_7_195 permit 65000:1 0:7 0:195 ip community-list standard 1_8_194 permit 65000:1 0:8 0:194 ip community-list standard 1_9_193 permit 65000:1 0:9 0:193 ip community-list standard 1_10_192 permit 65000:1 0:10 0:192 ip community-list standard 1_11_191 permit 65000:1 0:11 0:191 ip community-list standard 1_12_190 permit 65000:1 0:12 0:190 ip community-list standard 1_13_189 permit 65000:1 0:13 0:189 ip community-list standard 1_14_188 permit 65000:1 0:14 0:188 ip community-list standard 1_15_187 permit 65000:1 0:15 0:187 ip community-list standard 1_16_186 permit 65000:1 0:16 0:186 ip community-list standard 1_17_185 permit 65000:1 0:17 0:185 ip community-list standard 1_18_184 permit 65000:1 0:18 0:184 ip community-list standard 1_19_183 permit 65000:1 0:19 0:183 ip community-list standard 1_20_182 permit 65000:1 0:20 0:182 ip community-list standard 1_21_181 permit 65000:1 0:21 0:181 ip community-list standard 1_22_180 permit 65000:1 0:22 0:180 ip community-list standard 1_23_179 permit 65000:1 0:23 0:179 ip community-list standard 1_24_178 permit 65000:1 0:24 0:178 ip community-list standard 1_25_177 permit 65000:1 0:25 0:177 ip community-list standard 1_26_176 permit 65000:1 0:26 0:176 ip community-list standard 1_27_175 permit 65000:1 0:27 0:175 ip community-list standard 1_28_174 permit 65000:1 0:28 0:174 ip community-list standard 1_29_173 permit 65000:1 0:29 0:173 ip community-list standard 1_30_172 permit 65000:1 0:30 0:172 ip community-list standard 1_31_171 permit 65000:1 0:31 0:171 ip community-list standard 1_32_170 permit 65000:1 0:32 0:170 ip community-list standard 1_33_169 permit 65000:1 0:33 0:169 ip community-list standard 1_34_168 permit 65000:1 0:34 0:168 ip community-list standard 1_35_167 permit 65000:1 0:35 0:167 ip community-list standard 1_36_166 permit 65000:1 0:36 0:166 ip community-list standard 1_37_165 permit 65000:1 0:37 0:165 ip community-list standard 1_38_164 permit 65000:1 0:38 0:164 ip community-list standard 1_39_163 permit 65000:1 0:39 0:163 ip community-list standard 1_40_162 permit 65000:1 0:40 0:162 ip community-list standard 1_41_161 permit 65000:1 0:41 0:161 ip community-list standard 1_42_160 permit 65000:1 0:42 0:160 ip community-list standard 1_43_159 permit 65000:1 0:43 0:159 ip community-list standard 1_44_158 permit 65000:1 0:44 0:158 ip community-list standard 1_45_157 permit 65000:1 0:45 0:157 ip community-list standard 1_46_156 permit 65000:1 0:46 0:156 ip community-list standard 1_47_155 permit 65000:1 0:47 0:155 ip community-list standard 1_48_154 permit 65000:1 0:48 0:154 ip community-list standard 1_49_153 permit 65000:1 0:49 0:153 ip community-list standard 1_50_152 permit 65000:1 0:50 0:152 ip community-list standard 1_51_151 permit 65000:1 0:51 0:151 ip community-list standard 1_52_150 permit 65000:1 0:52 0:150 ip community-list standard 1_53_149 permit 65000:1 0:53 0:149 ip community-list standard 1_54_148 permit 65000:1 0:54 0:148 ip community-list standard 1_55_147 permit 65000:1 0:55 0:147 ip community-list standard 1_56_146 permit 65000:1 0:56 0:146 ip community-list standard 1_57_145 permit 65000:1 0:57 0:145 ip community-list standard 1_58_144 permit 65000:1 0:58 0:144 ip community-list standard 1_59_143 permit 65000:1 0:59 0:143 ip community-list standard 1_60_142 permit 65000:1 0:60 0:142 ip community-list standard 1_61_141 permit 65000:1 0:61 0:141 ip community-list standard 1_62_140 permit 65000:1 0:62 0:140 ip community-list standard 1_63_139 permit 65000:1 0:63 0:139 ip community-list standard 1_64_138 permit 65000:1 0:64 0:138 ip community-list standard 1_65_137 permit 65000:1 0:65 0:137 ip community-list standard 1_66_136 permit 65000:1 0:66 0:136 ip community-list standard 1_67_135 permit 65000:1 0:67 0:135 ip community-list standard 1_68_134 permit 65000:1 0:68 0:134 ip community-list standard 1_69_133 permit 65000:1 0:69 0:133 ip community-list standard 1_70_132 permit 65000:1 0:70 0:132 ip community-list standard 1_71_131 permit 65000:1 0:71 0:131 ip community-list standard 1_72_130 permit 65000:1 0:72 0:130 ip community-list standard 1_73_129 permit 65000:1 0:73 0:129 ip community-list standard 1_74_128 permit 65000:1 0:74 0:128 ip community-list standard 1_75_127 permit 65000:1 0:75 0:127 ip community-list standard 1_76_126 permit 65000:1 0:76 0:126 ip community-list standard 1_77_125 permit 65000:1 0:77 0:125 ip community-list standard 1_78_124 permit 65000:1 0:78 0:124 ip community-list standard 1_79_123 permit 65000:1 0:79 0:123 ip community-list standard 1_80_122 permit 65000:1 0:80 0:122 ip community-list standard 1_81_121 permit 65000:1 0:81 0:121 ip community-list standard 1_82_120 permit 65000:1 0:82 0:120 ip community-list standard 1_83_119 permit 65000:1 0:83 0:119 ip community-list standard 1_84_118 permit 65000:1 0:84 0:118 ip community-list standard 1_85_117 permit 65000:1 0:85 0:117 ip community-list standard 1_86_116 permit 65000:1 0:86 0:116 ip community-list standard 1_87_115 permit 65000:1 0:87 0:115 ip community-list standard 1_88_114 permit 65000:1 0:88 0:114 ip community-list standard 1_89_113 permit 65000:1 0:89 0:113 ip community-list standard 1_90_112 permit 65000:1 0:90 0:112 ip community-list standard 1_91_111 permit 65000:1 0:91 0:111 ip community-list standard 1_92_110 permit 65000:1 0:92 0:110 ip community-list standard 1_93_109 permit 65000:1 0:93 0:109 ip community-list standard 1_94_108 permit 65000:1 0:94 0:108 ip community-list standard 1_95_107 permit 65000:1 0:95 0:107 ip community-list standard 1_96_106 permit 65000:1 0:96 0:106 ip community-list standard 1_97_105 permit 65000:1 0:97 0:105 ip community-list standard 1_98_104 permit 65000:1 0:98 0:104 ip community-list standard 1_99_103 permit 65000:1 0:99 0:103 ip community-list standard 1_100_102 permit 65000:1 0:100 0:102 ip community-list standard 1_101_101 permit 65000:1 0:101 0:101 ip community-list expanded c202 permit 1 ^65000:4_0:202_0:1$ ip community-list expanded c202 permit 2 ^65000:3_0:203_0:1$ ip community-list expanded c202 permit 3 ^65000:3_0:204_0:2$ ip community-list expanded c202 permit 4 ^65000:3_0:205_0:3$ ip community-list expanded c202 permit 5 ^65000:3_0:206_0:4$ ip community-list expanded c202 permit 6 ^65000:3_0:207_0:5$ ip community-list expanded c202 permit 7 ^65000:3_0:208_0:6$ ip community-list expanded c202 permit 8 ^65000:3_0:209_0:7$ ip community-list expanded c202 permit 9 ^65000:3_0:210_0:8$ ip community-list expanded c202 permit 10 ^65000:3_0:211_0:9$ ip community-list expanded c202 permit 11 ^65000:3_0:212_0:10$ ip community-list expanded c202 permit 12 ^65000:3_0:213_0:11$ ip community-list expanded c202 permit 13 ^65000:3_0:214_0:12$ ip community-list expanded c202 permit 14 ^65000:3_0:215_0:13$ ip community-list expanded c202 permit 15 ^65000:3_0:216_0:14$ ip community-list expanded c202 permit 16 ^65000:3_0:217_0:15$ ip community-list expanded c202 permit 17 ^65000:3_0:218_0:16$ ip community-list expanded c202 permit 18 ^65000:3_0:219_0:17$ ip community-list expanded c202 permit 19 ^65000:3_0:220_0:18$ ip community-list expanded c202 permit 20 ^65000:3_0:221_0:19$ ip community-list expanded c202 permit 21 ^65000:3_0:222_0:20$ ip community-list expanded c202 permit 22 ^65000:3_0:223_0:21$ ip community-list expanded c202 permit 23 ^65000:3_0:224_0:22$ ip community-list expanded c202 permit 24 ^65000:3_0:225_0:23$ ip community-list expanded c202 permit 25 ^65000:3_0:226_0:24$ ip community-list expanded c202 permit 26 ^65000:3_0:227_0:25$ ip community-list expanded c202 permit 27 ^65000:3_0:228_0:26$ ip community-list expanded c202 permit 28 ^65000:3_0:229_0:27$ ip community-list expanded c202 permit 29 ^65000:3_0:230_0:28$ ip community-list expanded c202 permit 30 ^65000:3_0:231_0:29$ ip community-list expanded c202 permit 31 ^65000:3_0:232_0:30$ ip community-list expanded c202 permit 32 ^65000:3_0:233_0:31$ ip community-list expanded c202 permit 33 ^65000:3_0:234_0:32$ ip community-list expanded c202 permit 34 ^65000:3_0:235_0:33$ ip community-list expanded c202 permit 35 ^65000:3_0:236_0:34$ ip community-list expanded c202 permit 36 ^65000:3_0:237_0:35$ ip community-list expanded c202 permit 37 ^65000:3_0:238_0:36$ ip community-list expanded c202 permit 38 ^65000:3_0:239_0:37$ ip community-list expanded c202 permit 39 ^65000:3_0:240_0:38$ ip community-list expanded c202 permit 40 ^65000:3_0:241_0:39$ ip community-list expanded c202 permit 41 ^65000:3_0:242_0:40$ ip community-list expanded c202 permit 42 ^65000:3_0:243_0:41$ ip community-list expanded c202 permit 43 ^65000:3_0:244_0:42$ ip community-list expanded c202 permit 44 ^65000:3_0:245_0:43$ ip community-list expanded c202 permit 45 ^65000:3_0:246_0:44$ ip community-list expanded c202 permit 46 ^65000:3_0:247_0:45$ ip community-list expanded c202 permit 47 ^65000:3_0:248_0:46$ ip community-list expanded c202 permit 48 ^65000:3_0:249_0:47$ ip community-list expanded c202 permit 49 ^65000:3_0:250_0:48$ ip community-list expanded c202 permit 50 ^65000:3_0:251_0:49$ ip community-list expanded c202 permit 51 ^65000:3_0:252_0:50$ ip community-list expanded c202 permit 52 ^65000:3_0:253_0:51$ ip community-list expanded c202 permit 53 ^65000:3_0:254_0:52$ ip community-list expanded c202 permit 54 ^65000:3_0:255_0:53$ ip community-list expanded c202 permit 55 ^65000:3_0:256_0:54$ route-map calculator permit 1067 match community 1_1_201 2_1_202 2_2_101 1_2_200 1_3_199 set community 0:202 route-map calculator permit 1068 match community 1_4_198 1_5_197 1_6_196 1_7_195 1_8_194 set community 0:202 route-map calculator permit 1069 match community 1_9_193 1_10_192 1_11_191 1_12_190 1_13_189 set community 0:202 route-map calculator permit 1070 match community 1_14_188 1_15_187 1_16_186 1_17_185 1_18_184 set community 0:202 route-map calculator permit 1071 match community 1_19_183 1_20_182 1_21_181 1_22_180 1_23_179 set community 0:202 route-map calculator permit 1072 match community 1_24_178 1_25_177 1_26_176 1_27_175 1_28_174 set community 0:202 route-map calculator permit 1073 match community 1_29_173 1_30_172 1_31_171 1_32_170 1_33_169 set community 0:202 route-map calculator permit 1074 match community 1_34_168 1_35_167 1_36_166 1_37_165 1_38_164 set community 0:202 route-map calculator permit 1075 match community 1_39_163 1_40_162 1_41_161 1_42_160 1_43_159 set community 0:202 route-map calculator permit 1076 match community 1_44_158 1_45_157 1_46_156 1_47_155 1_48_154 set community 0:202 route-map calculator permit 1077 match community 1_49_153 1_50_152 1_51_151 1_52_150 1_53_149 set community 0:202 route-map calculator permit 1078 match community 1_54_148 1_55_147 1_56_146 1_57_145 1_58_144 set community 0:202 route-map calculator permit 1079 match community 1_59_143 1_60_142 1_61_141 1_62_140 1_63_139 set community 0:202 route-map calculator permit 1080 match community 1_64_138 1_65_137 1_66_136 1_67_135 1_68_134 set community 0:202 route-map calculator permit 1081 match community 1_69_133 1_70_132 1_71_131 1_72_130 1_73_129 set community 0:202 route-map calculator permit 1082 match community 1_74_128 1_75_127 1_76_126 1_77_125 1_78_124 set community 0:202 route-map calculator permit 1083 match community 1_79_123 1_80_122 1_81_121 1_82_120 1_83_119 set community 0:202 route-map calculator permit 1084 match community 1_84_118 1_85_117 1_86_116 1_87_115 1_88_114 set community 0:202 route-map calculator permit 1085 match community 1_89_113 1_90_112 1_91_111 1_92_110 1_93_109 set community 0:202 route-map calculator permit 1086 match community 1_94_108 1_95_107 1_96_106 1_97_105 1_98_104 set community 0:202 route-map calculator permit 1087 match community 1_99_103 1_100_102 1_101_101 c4_202_1 c3_203_1 set community 0:202 route-map calculator permit 1088 match community c3_204_2 c3_205_3 c3_206_4 c3_207_5 c3_208_6 set community 0:202 route-map calculator permit 1089 match community c3_209_7 c3_210_8 c3_211_9 c3_212_10 c3_213_11 set community 0:202 route-map calculator permit 1090 match community c3_214_12 c3_215_13 c3_216_14 c3_217_15 c3_218_16 set community 0:202 route-map calculator permit 1091 match community c3_219_17 c3_220_18 c3_221_19 c3_222_20 c3_223_21 set community 0:202 route-map calculator permit 1092 match community c3_224_22 c3_225_23 c3_226_24 c3_227_25 c3_228_26 set community 0:202 route-map calculator permit 1093 match community c3_229_27 c3_230_28 c3_231_29 c3_232_30 c3_233_31 set community 0:202 route-map calculator permit 1094 match community c3_234_32 c3_235_33 c3_236_34 c3_237_35 c3_238_36 set community 0:202 route-map calculator permit 1095 match community c3_239_37 c3_240_38 c3_241_39 c3_242_40 c3_243_41 set community 0:202 route-map calculator permit 1096 match community c3_244_42 c3_245_43 c3_246_44 c3_247_45 c3_248_46 set community 0:202 route-map calculator permit 1097 match community c3_249_47 c3_250_48 c3_251_49 c3_252_50 c3_253_51 set community 0:202 route-map calculator permit 1098 match community c3_254_52 c3_255_53 c3_256_54 set community 0:202 ip community-list standard 2_7_227 permit 65000:2 0:7 0:227 route-map calculator permit 1099 match community 2_7_227 set community 0:1589 ip community-list standard 2_127_231 permit 65000:2 0:127 0:231 route-map calculator permit 1100 match community 2_127_231 set community 0:29337 ip community-list standard 2_159_238 permit 65000:2 0:159 0:238 route-map calculator permit 1101 match community 2_159_238 set community 0:37842 ip community-list standard 2_49_194 permit 65000:2 0:49 0:194 ip community-list standard 2_97_98 permit 65000:2 0:97 0:98 route-map calculator permit 1102 match community 2_49_194 2_97_98 set community 0:9506 ip community-list standard 2_71_209 permit 65000:2 0:71 0:209 route-map calculator permit 1103 match community 2_71_209 set community 0:14839 ip community-list standard 2_6_231 permit 65000:2 0:6 0:231 ip community-list standard 2_7_198 permit 65000:2 0:7 0:198 ip community-list standard 2_9_154 permit 65000:2 0:9 0:154 ip community-list standard 2_11_126 permit 65000:2 0:11 0:126 ip community-list standard 2_14_99 permit 65000:2 0:14 0:99 ip community-list standard 2_18_77 permit 65000:2 0:18 0:77 ip community-list standard 2_21_66 permit 65000:2 0:21 0:66 ip community-list standard 2_22_63 permit 65000:2 0:22 0:63 ip community-list standard 2_33_42 permit 65000:2 0:33 0:42 route-map calculator permit 1104 match community 2_6_231 2_7_198 2_9_154 2_11_126 2_14_99 set community 0:1386 route-map calculator permit 1105 match community 2_18_77 2_21_66 2_22_63 2_33_42 set community 0:1386 ip community-list standard 2_179_191 permit 65000:2 0:179 0:191 route-map calculator permit 1106 match community 2_179_191 set community 0:34189 ip community-list standard 2_131_141 permit 65000:2 0:131 0:141 route-map calculator permit 1107 match community 2_131_141 set community 0:18471 ip community-list standard 2_27_139 permit 65000:2 0:27 0:139 route-map calculator permit 1108 match community 2_27_139 set community 0:3753 ip community-list standard 2_16_204 permit 65000:2 0:16 0:204 ip community-list standard 2_17_192 permit 65000:2 0:17 0:192 ip community-list standard 2_24_136 permit 65000:2 0:24 0:136 ip community-list standard 2_32_102 permit 65000:2 0:32 0:102 ip community-list standard 2_34_96 permit 65000:2 0:34 0:96 ip community-list standard 2_48_68 permit 65000:2 0:48 0:68 ip community-list standard 2_51_64 permit 65000:2 0:51 0:64 route-map calculator permit 1109 match community 2_16_204 2_17_192 2_24_136 2_32_102 2_34_96 set community 0:3264 route-map calculator permit 1110 match community 2_48_68 2_51_64 set community 0:3264 ip community-list standard 2_65_205 permit 65000:2 0:65 0:205 route-map calculator permit 1111 match community 2_65_205 set community 0:13325 ip community-list standard 2_149_220 permit 65000:2 0:149 0:220 route-map calculator permit 1112 match community 2_149_220 set community 0:32780 ip community-list standard 2_83_220 permit 65000:2 0:83 0:220 ip community-list standard 2_110_166 permit 65000:2 0:110 0:166 route-map calculator permit 1113 match community 2_83_220 2_110_166 set community 0:18260 ip community-list standard 2_131_135 permit 65000:2 0:131 0:135 route-map calculator permit 1114 match community 2_131_135 set community 0:17685 ip community-list standard 2_130_181 permit 65000:2 0:130 0:181 route-map calculator permit 1115 match community 2_130_181 set community 0:23530 ip community-list standard 2_5_103 permit 65000:2 0:5 0:103 route-map calculator permit 1116 match community 2_5_103 set community 0:515 ip community-list standard 2_100_239 permit 65000:2 0:100 0:239 route-map calculator permit 1117 match community 2_100_239 set community 0:23900 ip community-list standard 2_44_196 permit 65000:2 0:44 0:196 ip community-list standard 2_49_176 permit 65000:2 0:49 0:176 ip community-list standard 2_56_154 permit 65000:2 0:56 0:154 ip community-list standard 2_77_112 permit 65000:2 0:77 0:112 ip community-list standard 2_88_98 permit 65000:2 0:88 0:98 route-map calculator permit 1118 match community 2_44_196 2_49_176 2_56_154 2_77_112 2_88_98 set community 0:8624 ip community-list standard 2_26_195 permit 65000:2 0:26 0:195 ip community-list standard 2_30_169 permit 65000:2 0:30 0:169 ip community-list standard 2_39_130 permit 65000:2 0:39 0:130 ip community-list standard 2_65_78 permit 65000:2 0:65 0:78 route-map calculator permit 1119 match community 2_26_195 2_30_169 2_39_130 2_65_78 set community 0:5070 ip community-list standard 2_77_137 permit 65000:2 0:77 0:137 route-map calculator permit 1120 match community 2_77_137 set community 0:10549 ip community-list standard 2_73_226 permit 65000:2 0:73 0:226 ip community-list standard 2_113_146 permit 65000:2 0:113 0:146 route-map calculator permit 1121 match community 2_73_226 2_113_146 set community 0:16498 ip community-list standard 2_16_253 permit 65000:2 0:16 0:253 ip community-list standard 2_22_184 permit 65000:2 0:22 0:184 ip community-list standard 2_23_176 permit 65000:2 0:23 0:176 ip community-list standard 2_44_92 permit 65000:2 0:44 0:92 ip community-list standard 2_46_88 permit 65000:2 0:46 0:88 route-map calculator permit 1122 match community 2_16_253 2_22_184 2_23_176 2_44_92 2_46_88 set community 0:4048 ip community-list standard 2_100_227 permit 65000:2 0:100 0:227 route-map calculator permit 1123 match community 2_100_227 set community 0:22700 ip community-list standard 2_79_107 permit 65000:2 0:79 0:107 route-map calculator permit 1124 match community 2_79_107 set community 0:8453 ip community-list standard 2_21_177 permit 65000:2 0:21 0:177 ip community-list standard 2_59_63 permit 65000:2 0:59 0:63 route-map calculator permit 1125 match community 2_21_177 2_59_63 set community 0:3717 ip community-list standard 2_38_241 permit 65000:2 0:38 0:241 route-map calculator permit 1126 match community 2_38_241 set community 0:9158 ip community-list standard 2_88_202 permit 65000:2 0:88 0:202 ip community-list standard 2_101_176 permit 65000:2 0:101 0:176 route-map calculator permit 1127 match community 2_88_202 2_101_176 set community 0:17776 ip community-list standard 2_10_248 permit 65000:2 0:10 0:248 ip community-list standard 2_16_155 permit 65000:2 0:16 0:155 ip community-list standard 2_20_124 permit 65000:2 0:20 0:124 ip community-list standard 2_31_80 permit 65000:2 0:31 0:80 ip community-list standard 2_40_62 permit 65000:2 0:40 0:62 route-map calculator permit 1128 match community 2_10_248 2_16_155 2_20_124 2_31_80 2_40_62 set community 0:2480 ip community-list standard 2_25_177 permit 65000:2 0:25 0:177 ip community-list standard 2_59_75 permit 65000:2 0:59 0:75 route-map calculator permit 1129 match community 2_25_177 2_59_75 set community 0:4425 ip community-list standard 2_44_234 permit 65000:2 0:44 0:234 ip community-list standard 2_52_198 permit 65000:2 0:52 0:198 ip community-list standard 2_66_156 permit 65000:2 0:66 0:156 ip community-list standard 2_72_143 permit 65000:2 0:72 0:143 ip community-list standard 2_78_132 permit 65000:2 0:78 0:132 ip community-list standard 2_88_117 permit 65000:2 0:88 0:117 ip community-list standard 2_99_104 permit 65000:2 0:99 0:104 route-map calculator permit 1130 match community 2_44_234 2_52_198 2_66_156 2_72_143 2_78_132 set community 0:10296 route-map calculator permit 1131 match community 2_88_117 2_99_104 set community 0:10296 ip community-list standard 2_144_255 permit 65000:2 0:144 0:255 ip community-list standard 2_153_240 permit 65000:2 0:153 0:240 ip community-list standard 2_170_216 permit 65000:2 0:170 0:216 ip community-list standard 2_180_204 permit 65000:2 0:180 0:204 route-map calculator permit 1132 match community 2_144_255 2_153_240 2_170_216 2_180_204 set community 0:36720 ip community-list standard 2_193_252 permit 65000:2 0:193 0:252 route-map calculator permit 1133 match community 2_193_252 set community 0:48636 ip community-list standard 2_174_219 permit 65000:2 0:174 0:219 route-map calculator permit 1134 match community 2_174_219 set community 0:38106 ip community-list standard 2_159_256 permit 65000:2 0:159 0:256 ip community-list standard 2_192_212 permit 65000:2 0:192 0:212 route-map calculator permit 1135 match community 2_159_256 2_192_212 set community 0:40704 ip community-list standard 2_48_221 permit 65000:2 0:48 0:221 ip community-list standard 2_51_208 permit 65000:2 0:51 0:208 ip community-list standard 2_52_204 permit 65000:2 0:52 0:204 ip community-list standard 2_68_156 permit 65000:2 0:68 0:156 ip community-list standard 2_78_136 permit 65000:2 0:78 0:136 ip community-list standard 2_102_104 permit 65000:2 0:102 0:104 route-map calculator permit 1136 match community 2_48_221 2_51_208 2_52_204 2_68_156 2_78_136 set community 0:10608 route-map calculator permit 1137 match community 2_102_104 set community 0:10608 ip community-list standard 2_166_251 permit 65000:2 0:166 0:251 route-map calculator permit 1138 match community 2_166_251 set community 0:41666 ip community-list standard 2_134_160 permit 65000:2 0:134 0:160 route-map calculator permit 1139 match community 2_134_160 set community 0:21440 ip community-list standard 2_55_217 permit 65000:2 0:55 0:217 ip community-list standard 2_77_155 permit 65000:2 0:77 0:155 route-map calculator permit 1140 match community 2_55_217 2_77_155 set community 0:11935 ip community-list standard 2_89_159 permit 65000:2 0:89 0:159 route-map calculator permit 1141 match community 2_89_159 set community 0:14151 ip community-list standard 2_137_147 permit 65000:2 0:137 0:147 route-map calculator permit 1142 match community 2_137_147 set community 0:20139 ip community-list standard 1_1_149 permit 65000:1 0:1 0:149 ip community-list standard 2_1_150 permit 65000:2 0:1 0:150 ip community-list standard 2_2_75 permit 65000:2 0:2 0:75 ip community-list standard 1_2_148 permit 65000:1 0:2 0:148 ip community-list standard 2_3_50 permit 65000:2 0:3 0:50 ip community-list standard 1_3_147 permit 65000:1 0:3 0:147 ip community-list standard 1_4_146 permit 65000:1 0:4 0:146 ip community-list standard 2_5_30 permit 65000:2 0:5 0:30 ip community-list standard 1_5_145 permit 65000:1 0:5 0:145 ip community-list standard 2_6_25 permit 65000:2 0:6 0:25 ip community-list standard 1_6_144 permit 65000:1 0:6 0:144 ip community-list standard 1_7_143 permit 65000:1 0:7 0:143 ip community-list standard 1_8_142 permit 65000:1 0:8 0:142 ip community-list standard 1_9_141 permit 65000:1 0:9 0:141 ip community-list standard 2_10_15 permit 65000:2 0:10 0:15 ip community-list standard 1_10_140 permit 65000:1 0:10 0:140 ip community-list standard 1_11_139 permit 65000:1 0:11 0:139 ip community-list standard 1_12_138 permit 65000:1 0:12 0:138 ip community-list standard 1_13_137 permit 65000:1 0:13 0:137 ip community-list standard 1_14_136 permit 65000:1 0:14 0:136 ip community-list standard 1_15_135 permit 65000:1 0:15 0:135 ip community-list standard 1_16_134 permit 65000:1 0:16 0:134 ip community-list standard 1_17_133 permit 65000:1 0:17 0:133 ip community-list standard 1_18_132 permit 65000:1 0:18 0:132 ip community-list standard 1_19_131 permit 65000:1 0:19 0:131 ip community-list standard 1_20_130 permit 65000:1 0:20 0:130 ip community-list standard 1_21_129 permit 65000:1 0:21 0:129 ip community-list standard 1_22_128 permit 65000:1 0:22 0:128 ip community-list standard 1_23_127 permit 65000:1 0:23 0:127 ip community-list standard 1_24_126 permit 65000:1 0:24 0:126 ip community-list standard 1_25_125 permit 65000:1 0:25 0:125 ip community-list standard 1_26_124 permit 65000:1 0:26 0:124 ip community-list standard 1_27_123 permit 65000:1 0:27 0:123 ip community-list standard 1_28_122 permit 65000:1 0:28 0:122 ip community-list standard 1_29_121 permit 65000:1 0:29 0:121 ip community-list standard 1_30_120 permit 65000:1 0:30 0:120 ip community-list standard 1_31_119 permit 65000:1 0:31 0:119 ip community-list standard 1_32_118 permit 65000:1 0:32 0:118 ip community-list standard 1_33_117 permit 65000:1 0:33 0:117 ip community-list standard 1_34_116 permit 65000:1 0:34 0:116 ip community-list standard 1_35_115 permit 65000:1 0:35 0:115 ip community-list standard 1_36_114 permit 65000:1 0:36 0:114 ip community-list standard 1_37_113 permit 65000:1 0:37 0:113 ip community-list standard 1_38_112 permit 65000:1 0:38 0:112 ip community-list standard 1_39_111 permit 65000:1 0:39 0:111 ip community-list standard 1_40_110 permit 65000:1 0:40 0:110 ip community-list standard 1_41_109 permit 65000:1 0:41 0:109 ip community-list standard 1_42_108 permit 65000:1 0:42 0:108 ip community-list standard 1_43_107 permit 65000:1 0:43 0:107 ip community-list standard 1_44_106 permit 65000:1 0:44 0:106 ip community-list standard 1_45_105 permit 65000:1 0:45 0:105 ip community-list standard 1_46_104 permit 65000:1 0:46 0:104 ip community-list standard 1_47_103 permit 65000:1 0:47 0:103 ip community-list standard 1_48_102 permit 65000:1 0:48 0:102 ip community-list standard 1_49_101 permit 65000:1 0:49 0:101 ip community-list standard 1_50_100 permit 65000:1 0:50 0:100 ip community-list standard 1_51_99 permit 65000:1 0:51 0:99 ip community-list standard 1_52_98 permit 65000:1 0:52 0:98 ip community-list standard 1_53_97 permit 65000:1 0:53 0:97 ip community-list standard 1_54_96 permit 65000:1 0:54 0:96 ip community-list standard 1_55_95 permit 65000:1 0:55 0:95 ip community-list standard 1_56_94 permit 65000:1 0:56 0:94 ip community-list standard 1_57_93 permit 65000:1 0:57 0:93 ip community-list standard 1_58_92 permit 65000:1 0:58 0:92 ip community-list standard 1_59_91 permit 65000:1 0:59 0:91 ip community-list standard 1_60_90 permit 65000:1 0:60 0:90 ip community-list standard 1_61_89 permit 65000:1 0:61 0:89 ip community-list standard 1_62_88 permit 65000:1 0:62 0:88 ip community-list standard 1_63_87 permit 65000:1 0:63 0:87 ip community-list standard 1_64_86 permit 65000:1 0:64 0:86 ip community-list standard 1_65_85 permit 65000:1 0:65 0:85 ip community-list standard 1_66_84 permit 65000:1 0:66 0:84 ip community-list standard 1_67_83 permit 65000:1 0:67 0:83 ip community-list standard 1_68_82 permit 65000:1 0:68 0:82 ip community-list standard 1_69_81 permit 65000:1 0:69 0:81 ip community-list standard 1_70_80 permit 65000:1 0:70 0:80 ip community-list standard 1_71_79 permit 65000:1 0:71 0:79 ip community-list standard 1_72_78 permit 65000:1 0:72 0:78 ip community-list standard 1_73_77 permit 65000:1 0:73 0:77 ip community-list standard 1_74_76 permit 65000:1 0:74 0:76 ip community-list standard 1_75_75 permit 65000:1 0:75 0:75 ip community-list expanded c150 permit 1 ^65000:4_0:150_0:1$ ip community-list expanded c150 permit 2 ^65000:3_0:151_0:1$ ip community-list expanded c150 permit 3 ^65000:3_0:152_0:2$ ip community-list expanded c150 permit 4 ^65000:3_0:153_0:3$ ip community-list expanded c150 permit 5 ^65000:3_0:154_0:4$ ip community-list expanded c150 permit 6 ^65000:3_0:155_0:5$ ip community-list expanded c150 permit 7 ^65000:3_0:156_0:6$ ip community-list expanded c150 permit 8 ^65000:3_0:157_0:7$ ip community-list expanded c150 permit 9 ^65000:3_0:158_0:8$ ip community-list expanded c150 permit 10 ^65000:3_0:159_0:9$ ip community-list expanded c150 permit 11 ^65000:3_0:160_0:10$ ip community-list expanded c150 permit 12 ^65000:3_0:161_0:11$ ip community-list expanded c150 permit 13 ^65000:3_0:162_0:12$ ip community-list expanded c150 permit 14 ^65000:3_0:163_0:13$ ip community-list expanded c150 permit 15 ^65000:3_0:164_0:14$ ip community-list expanded c150 permit 16 ^65000:3_0:165_0:15$ ip community-list expanded c150 permit 17 ^65000:3_0:166_0:16$ ip community-list expanded c150 permit 18 ^65000:3_0:167_0:17$ ip community-list expanded c150 permit 19 ^65000:3_0:168_0:18$ ip community-list expanded c150 permit 20 ^65000:3_0:169_0:19$ ip community-list expanded c150 permit 21 ^65000:3_0:170_0:20$ ip community-list expanded c150 permit 22 ^65000:3_0:171_0:21$ ip community-list expanded c150 permit 23 ^65000:3_0:172_0:22$ ip community-list expanded c150 permit 24 ^65000:3_0:173_0:23$ ip community-list expanded c150 permit 25 ^65000:3_0:174_0:24$ ip community-list expanded c150 permit 26 ^65000:3_0:175_0:25$ ip community-list expanded c150 permit 27 ^65000:3_0:176_0:26$ ip community-list expanded c150 permit 28 ^65000:3_0:177_0:27$ ip community-list expanded c150 permit 29 ^65000:3_0:178_0:28$ ip community-list expanded c150 permit 30 ^65000:3_0:179_0:29$ ip community-list expanded c150 permit 31 ^65000:3_0:180_0:30$ ip community-list expanded c150 permit 32 ^65000:3_0:181_0:31$ ip community-list expanded c150 permit 33 ^65000:3_0:182_0:32$ ip community-list expanded c150 permit 34 ^65000:3_0:183_0:33$ ip community-list expanded c150 permit 35 ^65000:3_0:184_0:34$ ip community-list expanded c150 permit 36 ^65000:3_0:185_0:35$ ip community-list expanded c150 permit 37 ^65000:3_0:186_0:36$ ip community-list expanded c150 permit 38 ^65000:3_0:187_0:37$ ip community-list expanded c150 permit 39 ^65000:3_0:188_0:38$ ip community-list expanded c150 permit 40 ^65000:3_0:189_0:39$ ip community-list expanded c150 permit 41 ^65000:3_0:190_0:40$ ip community-list expanded c150 permit 42 ^65000:3_0:191_0:41$ ip community-list expanded c150 permit 43 ^65000:3_0:192_0:42$ ip community-list expanded c150 permit 44 ^65000:3_0:193_0:43$ ip community-list expanded c150 permit 45 ^65000:3_0:194_0:44$ ip community-list expanded c150 permit 46 ^65000:3_0:195_0:45$ ip community-list expanded c150 permit 47 ^65000:3_0:196_0:46$ ip community-list expanded c150 permit 48 ^65000:3_0:197_0:47$ ip community-list expanded c150 permit 49 ^65000:3_0:198_0:48$ ip community-list expanded c150 permit 50 ^65000:3_0:199_0:49$ ip community-list expanded c150 permit 51 ^65000:3_0:200_0:50$ ip community-list expanded c150 permit 52 ^65000:3_0:201_0:51$ ip community-list expanded c150 permit 53 ^65000:3_0:202_0:52$ ip community-list expanded c150 permit 54 ^65000:3_0:203_0:53$ ip community-list expanded c150 permit 55 ^65000:3_0:204_0:54$ ip community-list expanded c150 permit 56 ^65000:3_0:205_0:55$ ip community-list expanded c150 permit 57 ^65000:3_0:206_0:56$ ip community-list expanded c150 permit 58 ^65000:3_0:207_0:57$ ip community-list expanded c150 permit 59 ^65000:3_0:208_0:58$ ip community-list expanded c150 permit 60 ^65000:3_0:209_0:59$ ip community-list expanded c150 permit 61 ^65000:3_0:210_0:60$ ip community-list expanded c150 permit 62 ^65000:3_0:211_0:61$ ip community-list expanded c150 permit 63 ^65000:3_0:212_0:62$ ip community-list expanded c150 permit 64 ^65000:3_0:213_0:63$ ip community-list expanded c150 permit 65 ^65000:3_0:214_0:64$ ip community-list expanded c150 permit 66 ^65000:3_0:215_0:65$ ip community-list expanded c150 permit 67 ^65000:3_0:216_0:66$ ip community-list expanded c150 permit 68 ^65000:3_0:217_0:67$ ip community-list expanded c150 permit 69 ^65000:3_0:218_0:68$ ip community-list expanded c150 permit 70 ^65000:3_0:219_0:69$ ip community-list expanded c150 permit 71 ^65000:3_0:220_0:70$ ip community-list expanded c150 permit 72 ^65000:3_0:221_0:71$ ip community-list expanded c150 permit 73 ^65000:3_0:222_0:72$ ip community-list expanded c150 permit 74 ^65000:3_0:223_0:73$ ip community-list expanded c150 permit 75 ^65000:3_0:224_0:74$ ip community-list expanded c150 permit 76 ^65000:3_0:225_0:75$ ip community-list expanded c150 permit 77 ^65000:3_0:226_0:76$ ip community-list expanded c150 permit 78 ^65000:3_0:227_0:77$ ip community-list expanded c150 permit 79 ^65000:3_0:228_0:78$ ip community-list expanded c150 permit 80 ^65000:3_0:229_0:79$ ip community-list expanded c150 permit 81 ^65000:3_0:230_0:80$ ip community-list expanded c150 permit 82 ^65000:3_0:231_0:81$ ip community-list expanded c150 permit 83 ^65000:3_0:232_0:82$ ip community-list expanded c150 permit 84 ^65000:3_0:233_0:83$ ip community-list expanded c150 permit 85 ^65000:3_0:234_0:84$ ip community-list expanded c150 permit 86 ^65000:3_0:235_0:85$ ip community-list expanded c150 permit 87 ^65000:3_0:236_0:86$ ip community-list expanded c150 permit 88 ^65000:3_0:237_0:87$ ip community-list expanded c150 permit 89 ^65000:3_0:238_0:88$ ip community-list expanded c150 permit 90 ^65000:3_0:239_0:89$ ip community-list expanded c150 permit 91 ^65000:3_0:240_0:90$ ip community-list expanded c150 permit 92 ^65000:3_0:241_0:91$ ip community-list expanded c150 permit 93 ^65000:3_0:242_0:92$ ip community-list expanded c150 permit 94 ^65000:3_0:243_0:93$ ip community-list expanded c150 permit 95 ^65000:3_0:244_0:94$ ip community-list expanded c150 permit 96 ^65000:3_0:245_0:95$ ip community-list expanded c150 permit 97 ^65000:3_0:246_0:96$ ip community-list expanded c150 permit 98 ^65000:3_0:247_0:97$ ip community-list expanded c150 permit 99 ^65000:3_0:248_0:98$ ip community-list expanded c150 permit 100 ^65000:3_0:249_0:99$ ip community-list expanded c150 permit 101 ^65000:3_0:250_0:100$ ip community-list expanded c150 permit 102 ^65000:3_0:251_0:101$ ip community-list expanded c150 permit 103 ^65000:3_0:252_0:102$ ip community-list expanded c150 permit 104 ^65000:3_0:253_0:103$ ip community-list expanded c150 permit 105 ^65000:3_0:254_0:104$ ip community-list expanded c150 permit 106 ^65000:3_0:255_0:105$ ip community-list expanded c150 permit 107 ^65000:3_0:256_0:106$ route-map calculator permit 1143 match community 1_1_149 2_1_150 2_2_75 1_2_148 2_3_50 set community 0:150 route-map calculator permit 1144 match community 1_3_147 1_4_146 2_5_30 1_5_145 2_6_25 set community 0:150 route-map calculator permit 1145 match community 1_6_144 1_7_143 1_8_142 1_9_141 2_10_15 set community 0:150 route-map calculator permit 1146 match community 1_10_140 1_11_139 1_12_138 1_13_137 1_14_136 set community 0:150 route-map calculator permit 1147 match community 1_15_135 1_16_134 1_17_133 1_18_132 1_19_131 set community 0:150 route-map calculator permit 1148 match community 1_20_130 1_21_129 1_22_128 1_23_127 1_24_126 set community 0:150 route-map calculator permit 1149 match community 1_25_125 1_26_124 1_27_123 1_28_122 1_29_121 set community 0:150 route-map calculator permit 1150 match community 1_30_120 1_31_119 1_32_118 1_33_117 1_34_116 set community 0:150 route-map calculator permit 1151 match community 1_35_115 1_36_114 1_37_113 1_38_112 1_39_111 set community 0:150 route-map calculator permit 1152 match community 1_40_110 1_41_109 1_42_108 1_43_107 1_44_106 set community 0:150 route-map calculator permit 1153 match community 1_45_105 1_46_104 1_47_103 1_48_102 1_49_101 set community 0:150 route-map calculator permit 1154 match community 1_50_100 1_51_99 1_52_98 1_53_97 1_54_96 set community 0:150 route-map calculator permit 1155 match community 1_55_95 1_56_94 1_57_93 1_58_92 1_59_91 set community 0:150 route-map calculator permit 1156 match community 1_60_90 1_61_89 1_62_88 1_63_87 1_64_86 set community 0:150 route-map calculator permit 1157 match community 1_65_85 1_66_84 1_67_83 1_68_82 1_69_81 set community 0:150 route-map calculator permit 1158 match community 1_70_80 1_71_79 1_72_78 1_73_77 1_74_76 set community 0:150 route-map calculator permit 1159 match community 1_75_75 c4_150_1 c3_151_1 c3_152_2 c3_153_3 set community 0:150 route-map calculator permit 1160 match community c3_154_4 c3_155_5 c3_156_6 c3_157_7 c3_158_8 set community 0:150 route-map calculator permit 1161 match community c3_159_9 c3_160_10 c3_161_11 c3_162_12 c3_163_13 set community 0:150 route-map calculator permit 1162 match community c3_164_14 c3_165_15 c3_166_16 c3_167_17 c3_168_18 set community 0:150 route-map calculator permit 1163 match community c3_169_19 c3_170_20 c3_171_21 c3_172_22 c3_173_23 set community 0:150 route-map calculator permit 1164 match community c3_174_24 c3_175_25 c3_176_26 c3_177_27 c3_178_28 set community 0:150 route-map calculator permit 1165 match community c3_179_29 c3_180_30 c3_181_31 c3_182_32 c3_183_33 set community 0:150 route-map calculator permit 1166 match community c3_184_34 c3_185_35 c3_186_36 c3_187_37 c3_188_38 set community 0:150 route-map calculator permit 1167 match community c3_189_39 c3_190_40 c3_191_41 c3_192_42 c3_193_43 set community 0:150 route-map calculator permit 1168 match community c3_194_44 c3_195_45 c3_196_46 c3_197_47 c3_198_48 set community 0:150 route-map calculator permit 1169 match community c3_199_49 c3_200_50 c3_201_51 c3_202_52 c3_203_53 set community 0:150 route-map calculator permit 1170 match community c3_204_54 c3_205_55 c3_206_56 c3_207_57 c3_208_58 set community 0:150 route-map calculator permit 1171 match community c3_209_59 c3_210_60 c3_211_61 c3_212_62 c3_213_63 set community 0:150 route-map calculator permit 1172 match community c3_214_64 c3_215_65 c3_216_66 c3_217_67 c3_218_68 set community 0:150 route-map calculator permit 1173 match community c3_219_69 c3_220_70 c3_221_71 c3_222_72 c3_223_73 set community 0:150 route-map calculator permit 1174 match community c3_224_74 c3_225_75 c3_226_76 c3_227_77 c3_228_78 set community 0:150 route-map calculator permit 1175 match community c3_229_79 c3_230_80 c3_231_81 c3_232_82 c3_233_83 set community 0:150 route-map calculator permit 1176 match community c3_234_84 c3_235_85 c3_236_86 c3_237_87 c3_238_88 set community 0:150 route-map calculator permit 1177 match community c3_239_89 c3_240_90 c3_241_91 c3_242_92 c3_243_93 set community 0:150 route-map calculator permit 1178 match community c3_244_94 c3_245_95 c3_246_96 c3_247_97 c3_248_98 set community 0:150 route-map calculator permit 1179 match community c3_249_99 c3_250_100 c3_251_101 c3_252_102 c3_253_103 set community 0:150 route-map calculator permit 1180 match community c3_254_104 c3_255_105 c3_256_106 set community 0:150 ip community-list standard 2_96_246 permit 65000:2 0:96 0:246 ip community-list standard 2_123_192 permit 65000:2 0:123 0:192 ip community-list standard 2_144_164 permit 65000:2 0:144 0:164 route-map calculator permit 1181 match community 2_96_246 2_123_192 2_144_164 set community 0:23616 ip community-list standard 2_202_244 permit 65000:2 0:202 0:244 route-map calculator permit 1182 match community 2_202_244 set community 0:49288 ip community-list standard 2_132_228 permit 65000:2 0:132 0:228 ip community-list standard 2_144_209 permit 65000:2 0:144 0:209 ip community-list standard 2_152_198 permit 65000:2 0:152 0:198 ip community-list standard 2_171_176 permit 65000:2 0:171 0:176 route-map calculator permit 1183 match community 2_132_228 2_144_209 2_152_198 2_171_176 set community 0:30096 ip community-list standard 2_21_219 permit 65000:2 0:21 0:219 ip community-list standard 2_63_73 permit 65000:2 0:63 0:73 route-map calculator permit 1184 match community 2_21_219 2_63_73 set community 0:4599 ip community-list standard 2_211_256 permit 65000:2 0:211 0:256 route-map calculator permit 1185 match community 2_211_256 set community 0:54016 ip community-list standard 2_181_222 permit 65000:2 0:181 0:222 route-map calculator permit 1186 match community 2_181_222 set community 0:40182 ip community-list standard 2_137_178 permit 65000:2 0:137 0:178 route-map calculator permit 1187 match community 2_137_178 set community 0:24386 ip community-list standard 2_176_219 permit 65000:2 0:176 0:219 route-map calculator permit 1188 match community 2_176_219 set community 0:38544 ip community-list standard 2_182_231 permit 65000:2 0:182 0:231 route-map calculator permit 1189 match community 2_182_231 set community 0:42042 ip community-list standard 2_159_191 permit 65000:2 0:159 0:191 route-map calculator permit 1190 match community 2_159_191 set community 0:30369 ip community-list standard 2_32_213 permit 65000:2 0:32 0:213 ip community-list standard 2_48_142 permit 65000:2 0:48 0:142 ip community-list standard 2_71_96 permit 65000:2 0:71 0:96 route-map calculator permit 1191 match community 2_32_213 2_48_142 2_71_96 set community 0:6816 ip community-list standard 2_110_237 permit 65000:2 0:110 0:237 ip community-list standard 2_158_165 permit 65000:2 0:158 0:165 route-map calculator permit 1192 match community 2_110_237 2_158_165 set community 0:26070 ip community-list standard 2_189_217 permit 65000:2 0:189 0:217 route-map calculator permit 1193 match community 2_189_217 set community 0:41013 ip community-list standard 2_193_201 permit 65000:2 0:193 0:201 route-map calculator permit 1194 match community 2_193_201 set community 0:38793 ip community-list standard 2_164_206 permit 65000:2 0:164 0:206 route-map calculator permit 1195 match community 2_164_206 set community 0:33784 ip community-list standard 2_12_199 permit 65000:2 0:12 0:199 route-map calculator permit 1196 match community 2_12_199 set community 0:2388 ip community-list standard 2_165_199 permit 65000:2 0:165 0:199 route-map calculator permit 1197 match community 2_165_199 set community 0:32835 ip community-list standard 2_70_142 permit 65000:2 0:70 0:142 ip community-list standard 2_71_140 permit 65000:2 0:71 0:140 route-map calculator permit 1198 match community 2_70_142 2_71_140 set community 0:9940 ip community-list standard 2_134_209 permit 65000:2 0:134 0:209 route-map calculator permit 1199 match community 2_134_209 set community 0:28006 ip community-list standard 2_126_173 permit 65000:2 0:126 0:173 route-map calculator permit 1200 match community 2_126_173 set community 0:21798 ip community-list standard 2_58_134 permit 65000:2 0:58 0:134 ip community-list standard 2_67_116 permit 65000:2 0:67 0:116 route-map calculator permit 1201 match community 2_58_134 2_67_116 set community 0:7772 ip community-list standard 2_98_183 permit 65000:2 0:98 0:183 ip community-list standard 2_122_147 permit 65000:2 0:122 0:147 route-map calculator permit 1202 match community 2_98_183 2_122_147 set community 0:17934 ip community-list standard 2_139_147 permit 65000:2 0:139 0:147 route-map calculator permit 1203 match community 2_139_147 set community 0:20433 ip community-list standard 2_9_183 permit 65000:2 0:9 0:183 ip community-list standard 2_27_61 permit 65000:2 0:27 0:61 route-map calculator permit 1204 match community 2_9_183 2_27_61 set community 0:1647 ip community-list standard 2_193_218 permit 65000:2 0:193 0:218 route-map calculator permit 1205 match community 2_193_218 set community 0:42074 ip community-list standard 2_81_249 permit 65000:2 0:81 0:249 ip community-list standard 2_83_243 permit 65000:2 0:83 0:243 route-map calculator permit 1206 match community 2_81_249 2_83_243 set community 0:20169 ip community-list standard 2_138_239 permit 65000:2 0:138 0:239 route-map calculator permit 1207 match community 2_138_239 set community 0:32982 ip community-list standard 2_34_251 permit 65000:2 0:34 0:251 route-map calculator permit 1208 match community 2_34_251 set community 0:8534 ip community-list standard 2_84_247 permit 65000:2 0:84 0:247 ip community-list standard 2_91_228 permit 65000:2 0:91 0:228 ip community-list standard 2_114_182 permit 65000:2 0:114 0:182 ip community-list standard 2_133_156 permit 65000:2 0:133 0:156 route-map calculator permit 1209 match community 2_84_247 2_91_228 2_114_182 2_133_156 set community 0:20748 ip community-list standard 2_141_167 permit 65000:2 0:141 0:167 route-map calculator permit 1210 match community 2_141_167 set community 0:23547 ip community-list standard 2_60_234 permit 65000:2 0:60 0:234 ip community-list standard 2_65_216 permit 65000:2 0:65 0:216 ip community-list standard 2_72_195 permit 65000:2 0:72 0:195 ip community-list standard 2_78_180 permit 65000:2 0:78 0:180 ip community-list standard 2_90_156 permit 65000:2 0:90 0:156 ip community-list standard 2_104_135 permit 65000:2 0:104 0:135 ip community-list standard 2_108_130 permit 65000:2 0:108 0:130 ip community-list standard 2_117_120 permit 65000:2 0:117 0:120 route-map calculator permit 1211 match community 2_60_234 2_65_216 2_72_195 2_78_180 2_90_156 set community 0:14040 route-map calculator permit 1212 match community 2_104_135 2_108_130 2_117_120 set community 0:14040 ip community-list standard 2_146_164 permit 65000:2 0:146 0:164 route-map calculator permit 1213 match community 2_146_164 set community 0:23944 ip community-list standard 2_29_159 permit 65000:2 0:29 0:159 ip community-list standard 2_53_87 permit 65000:2 0:53 0:87 route-map calculator permit 1214 match community 2_29_159 2_53_87 set community 0:4611 ip community-list standard 2_87_251 permit 65000:2 0:87 0:251 route-map calculator permit 1215 match community 2_87_251 set community 0:21837 ip community-list standard 2_139_186 permit 65000:2 0:139 0:186 route-map calculator permit 1216 match community 2_139_186 set community 0:25854 ip community-list standard 2_108_235 permit 65000:2 0:108 0:235 ip community-list standard 2_135_188 permit 65000:2 0:135 0:188 ip community-list standard 2_141_180 permit 65000:2 0:141 0:180 route-map calculator permit 1217 match community 2_108_235 2_135_188 2_141_180 set community 0:25380 ip community-list standard 2_123_193 permit 65000:2 0:123 0:193 route-map calculator permit 1218 match community 2_123_193 set community 0:23739 ip community-list standard 2_69_239 permit 65000:2 0:69 0:239 route-map calculator permit 1219 match community 2_69_239 set community 0:16491 ip community-list standard 2_137_179 permit 65000:2 0:137 0:179 route-map calculator permit 1220 match community 2_137_179 set community 0:24523 ip community-list standard 2_29_235 permit 65000:2 0:29 0:235 ip community-list standard 2_47_145 permit 65000:2 0:47 0:145 route-map calculator permit 1221 match community 2_29_235 2_47_145 set community 0:6815 ip community-list standard 2_28_194 permit 65000:2 0:28 0:194 ip community-list standard 2_56_97 permit 65000:2 0:56 0:97 route-map calculator permit 1222 match community 2_28_194 2_56_97 set community 0:5432 ip community-list standard 2_38_244 permit 65000:2 0:38 0:244 ip community-list standard 2_61_152 permit 65000:2 0:61 0:152 ip community-list standard 2_76_122 permit 65000:2 0:76 0:122 route-map calculator permit 1223 match community 2_38_244 2_61_152 2_76_122 set community 0:9272 ip community-list standard 2_94_223 permit 65000:2 0:94 0:223 route-map calculator permit 1224 match community 2_94_223 set community 0:20962 ip community-list standard 2_34_249 permit 65000:2 0:34 0:249 ip community-list standard 2_51_166 permit 65000:2 0:51 0:166 ip community-list standard 2_83_102 permit 65000:2 0:83 0:102 route-map calculator permit 1225 match community 2_34_249 2_51_166 2_83_102 set community 0:8466 ip community-list standard 2_219_248 permit 65000:2 0:219 0:248 route-map calculator permit 1226 match community 2_219_248 set community 0:54312 ip community-list standard 2_154_253 permit 65000:2 0:154 0:253 ip community-list standard 2_161_242 permit 65000:2 0:161 0:242 route-map calculator permit 1227 match community 2_154_253 2_161_242 set community 0:38962 ip community-list standard 2_203_251 permit 65000:2 0:203 0:251 route-map calculator permit 1228 match community 2_203_251 set community 0:50953 ip community-list standard 2_119_183 permit 65000:2 0:119 0:183 route-map calculator permit 1229 match community 2_119_183 set community 0:21777 ip community-list standard 2_17_209 permit 65000:2 0:17 0:209 ip community-list standard 2_19_187 permit 65000:2 0:19 0:187 route-map calculator permit 1230 match community 2_17_209 2_19_187 set community 0:3553 ip community-list standard 2_26_141 permit 65000:2 0:26 0:141 ip community-list standard 2_39_94 permit 65000:2 0:39 0:94 ip community-list standard 2_47_78 permit 65000:2 0:47 0:78 route-map calculator permit 1231 match community 2_26_141 2_39_94 2_47_78 set community 0:3666 ip community-list standard 2_182_250 permit 65000:2 0:182 0:250 route-map calculator permit 1232 match community 2_182_250 set community 0:45500 ip community-list standard 2_137_253 permit 65000:2 0:137 0:253 route-map calculator permit 1233 match community 2_137_253 set community 0:34661 ip community-list standard 2_131_199 permit 65000:2 0:131 0:199 route-map calculator permit 1234 match community 2_131_199 set community 0:26069 ip community-list standard 2_132_236 permit 65000:2 0:132 0:236 ip community-list standard 2_176_177 permit 65000:2 0:176 0:177 route-map calculator permit 1235 match community 2_132_236 2_176_177 set community 0:31152 ip community-list standard 2_52_182 permit 65000:2 0:52 0:182 ip community-list standard 2_56_169 permit 65000:2 0:56 0:169 ip community-list standard 2_91_104 permit 65000:2 0:91 0:104 route-map calculator permit 1236 match community 2_52_182 2_56_169 2_91_104 set community 0:9464 ip community-list standard 2_86_186 permit 65000:2 0:86 0:186 ip community-list standard 2_93_172 permit 65000:2 0:93 0:172 ip community-list standard 2_124_129 permit 65000:2 0:124 0:129 route-map calculator permit 1237 match community 2_86_186 2_93_172 2_124_129 set community 0:15996 ip community-list standard 2_39_109 permit 65000:2 0:39 0:109 route-map calculator permit 1238 match community 2_39_109 set community 0:4251 ip community-list standard 2_15_236 permit 65000:2 0:15 0:236 ip community-list standard 2_20_177 permit 65000:2 0:20 0:177 ip community-list standard 2_30_118 permit 65000:2 0:30 0:118 ip community-list standard 2_59_60 permit 65000:2 0:59 0:60 route-map calculator permit 1239 match community 2_15_236 2_20_177 2_30_118 2_59_60 set community 0:3540 ip community-list standard 2_178_226 permit 65000:2 0:178 0:226 route-map calculator permit 1240 match community 2_178_226 set community 0:40228 ip community-list standard 2_198_199 permit 65000:2 0:198 0:199 route-map calculator permit 1241 match community 2_198_199 set community 0:39402 ip community-list standard 2_198_236 permit 65000:2 0:198 0:236 route-map calculator permit 1242 match community 2_198_236 set community 0:46728 ip community-list standard 2_219_232 permit 65000:2 0:219 0:232 route-map calculator permit 1243 match community 2_219_232 set community 0:50808 ip community-list standard 2_97_252 permit 65000:2 0:97 0:252 ip community-list standard 2_126_194 permit 65000:2 0:126 0:194 route-map calculator permit 1244 match community 2_97_252 2_126_194 set community 0:24444 ip community-list standard 2_176_239 permit 65000:2 0:176 0:239 route-map calculator permit 1245 match community 2_176_239 set community 0:42064 ip community-list standard 2_194_224 permit 65000:2 0:194 0:224 route-map calculator permit 1246 match community 2_194_224 set community 0:43456 ip community-list standard 2_57_235 permit 65000:2 0:57 0:235 ip community-list standard 2_95_141 permit 65000:2 0:95 0:141 route-map calculator permit 1247 match community 2_57_235 2_95_141 set community 0:13395 ip community-list standard 2_33_216 permit 65000:2 0:33 0:216 ip community-list standard 2_36_198 permit 65000:2 0:36 0:198 ip community-list standard 2_44_162 permit 65000:2 0:44 0:162 ip community-list standard 2_54_132 permit 65000:2 0:54 0:132 ip community-list standard 2_66_108 permit 65000:2 0:66 0:108 ip community-list standard 2_72_99 permit 65000:2 0:72 0:99 ip community-list standard 2_81_88 permit 65000:2 0:81 0:88 route-map calculator permit 1248 match community 2_33_216 2_36_198 2_44_162 2_54_132 2_66_108 set community 0:7128 route-map calculator permit 1249 match community 2_72_99 2_81_88 set community 0:7128 ip community-list standard 2_80_247 permit 65000:2 0:80 0:247 ip community-list standard 2_95_208 permit 65000:2 0:95 0:208 ip community-list standard 2_104_190 permit 65000:2 0:104 0:190 ip community-list standard 2_130_152 permit 65000:2 0:130 0:152 route-map calculator permit 1250 match community 2_80_247 2_95_208 2_104_190 2_130_152 set community 0:19760 ip community-list standard 2_73_196 permit 65000:2 0:73 0:196 ip community-list standard 2_98_146 permit 65000:2 0:98 0:146 route-map calculator permit 1251 match community 2_73_196 2_98_146 set community 0:14308 ip community-list standard 2_52_222 permit 65000:2 0:52 0:222 ip community-list standard 2_74_156 permit 65000:2 0:74 0:156 ip community-list standard 2_78_148 permit 65000:2 0:78 0:148 ip community-list standard 2_104_111 permit 65000:2 0:104 0:111 route-map calculator permit 1252 match community 2_52_222 2_74_156 2_78_148 2_104_111 set community 0:11544 ip community-list standard 2_6_236 permit 65000:2 0:6 0:236 ip community-list standard 2_8_177 permit 65000:2 0:8 0:177 ip community-list standard 2_12_118 permit 65000:2 0:12 0:118 ip community-list standard 2_24_59 permit 65000:2 0:24 0:59 route-map calculator permit 1253 match community 2_6_236 2_8_177 2_12_118 2_24_59 set community 0:1416 ip community-list standard 2_231_242 permit 65000:2 0:231 0:242 route-map calculator permit 1254 match community 2_231_242 set community 0:55902 ip community-list standard 2_89_115 permit 65000:2 0:89 0:115 route-map calculator permit 1255 match community 2_89_115 set community 0:10235 ip community-list standard 2_116_207 permit 65000:2 0:116 0:207 ip community-list standard 2_138_174 permit 65000:2 0:138 0:174 route-map calculator permit 1256 match community 2_116_207 2_138_174 set community 0:24012 ip community-list standard 2_145_178 permit 65000:2 0:145 0:178 route-map calculator permit 1257 match community 2_145_178 set community 0:25810 ip community-list standard 2_202_255 permit 65000:2 0:202 0:255 route-map calculator permit 1258 match community 2_202_255 set community 0:51510 ip community-list standard 2_23_103 permit 65000:2 0:23 0:103 route-map calculator permit 1259 match community 2_23_103 set community 0:2369 ip community-list standard 2_151_196 permit 65000:2 0:151 0:196 route-map calculator permit 1260 match community 2_151_196 set community 0:29596 ip community-list standard 2_9_256 permit 65000:2 0:9 0:256 ip community-list standard 2_12_192 permit 65000:2 0:12 0:192 ip community-list standard 2_16_144 permit 65000:2 0:16 0:144 ip community-list standard 2_18_128 permit 65000:2 0:18 0:128 ip community-list standard 2_24_96 permit 65000:2 0:24 0:96 ip community-list standard 2_32_72 permit 65000:2 0:32 0:72 ip community-list standard 2_36_64 permit 65000:2 0:36 0:64 ip community-list standard 2_48_48 permit 65000:2 0:48 0:48 route-map calculator permit 1261 match community 2_9_256 2_12_192 2_16_144 2_18_128 2_24_96 set community 0:2304 route-map calculator permit 1262 match community 2_32_72 2_36_64 2_48_48 set community 0:2304 ip community-list standard 2_153_186 permit 65000:2 0:153 0:186 route-map calculator permit 1263 match community 2_153_186 set community 0:28458 ip community-list standard 2_11_173 permit 65000:2 0:11 0:173 route-map calculator permit 1264 match community 2_11_173 set community 0:1903 ip community-list standard 2_82_169 permit 65000:2 0:82 0:169 route-map calculator permit 1265 match community 2_82_169 set community 0:13858 ip community-list standard 2_86_198 permit 65000:2 0:86 0:198 ip community-list standard 2_99_172 permit 65000:2 0:99 0:172 ip community-list standard 2_129_132 permit 65000:2 0:129 0:132 route-map calculator permit 1266 match community 2_86_198 2_99_172 2_129_132 set community 0:17028 ip community-list standard 2_173_251 permit 65000:2 0:173 0:251 route-map calculator permit 1267 match community 2_173_251 set community 0:43423 ip community-list standard 2_87_225 permit 65000:2 0:87 0:225 ip community-list standard 2_135_145 permit 65000:2 0:135 0:145 route-map calculator permit 1268 match community 2_87_225 2_135_145 set community 0:19575 ip community-list standard 2_118_229 permit 65000:2 0:118 0:229 route-map calculator permit 1269 match community 2_118_229 set community 0:27022 ip community-list standard 2_141_202 permit 65000:2 0:141 0:202 route-map calculator permit 1270 match community 2_141_202 set community 0:28482 ip community-list standard 2_125_211 permit 65000:2 0:125 0:211 route-map calculator permit 1271 match community 2_125_211 set community 0:26375 ip community-list standard 2_165_177 permit 65000:2 0:165 0:177 route-map calculator permit 1272 match community 2_165_177 set community 0:29205 ip community-list standard 2_23_155 permit 65000:2 0:23 0:155 ip community-list standard 2_31_115 permit 65000:2 0:31 0:115 route-map calculator permit 1273 match community 2_23_155 2_31_115 set community 0:3565 ip community-list standard 2_74_154 permit 65000:2 0:74 0:154 ip community-list standard 2_77_148 permit 65000:2 0:77 0:148 route-map calculator permit 1274 match community 2_74_154 2_77_148 set community 0:11396 ip community-list standard 2_69_163 permit 65000:2 0:69 0:163 route-map calculator permit 1275 match community 2_69_163 set community 0:11247 ip community-list standard 2_94_224 permit 65000:2 0:94 0:224 ip community-list standard 2_112_188 permit 65000:2 0:112 0:188 route-map calculator permit 1276 match community 2_94_224 2_112_188 set community 0:21056 ip community-list standard 2_230_251 permit 65000:2 0:230 0:251 route-map calculator permit 1277 match community 2_230_251 set community 0:57730 ip community-list standard 2_99_255 permit 65000:2 0:99 0:255 ip community-list standard 2_135_187 permit 65000:2 0:135 0:187 ip community-list standard 2_153_165 permit 65000:2 0:153 0:165 route-map calculator permit 1278 match community 2_99_255 2_135_187 2_153_165 set community 0:25245 ip community-list standard 2_95_206 permit 65000:2 0:95 0:206 ip community-list standard 2_103_190 permit 65000:2 0:103 0:190 route-map calculator permit 1279 match community 2_95_206 2_103_190 set community 0:19570 ip community-list standard 2_149_219 permit 65000:2 0:149 0:219 route-map calculator permit 1280 match community 2_149_219 set community 0:32631 ip community-list standard 2_173_217 permit 65000:2 0:173 0:217 route-map calculator permit 1281 match community 2_173_217 set community 0:37541 ip community-list standard 2_10_195 permit 65000:2 0:10 0:195 ip community-list standard 2_13_150 permit 65000:2 0:13 0:150 ip community-list standard 2_15_130 permit 65000:2 0:15 0:130 ip community-list standard 2_25_78 permit 65000:2 0:25 0:78 ip community-list standard 2_26_75 permit 65000:2 0:26 0:75 ip community-list standard 2_30_65 permit 65000:2 0:30 0:65 ip community-list standard 2_39_50 permit 65000:2 0:39 0:50 route-map calculator permit 1282 match community 2_10_195 2_13_150 2_15_130 2_25_78 2_26_75 set community 0:1950 route-map calculator permit 1283 match community 2_30_65 2_39_50 set community 0:1950 ip community-list standard 2_36_151 permit 65000:2 0:36 0:151 route-map calculator permit 1284 match community 2_36_151 set community 0:5436 ip community-list standard 2_10_212 permit 65000:2 0:10 0:212 ip community-list standard 2_20_106 permit 65000:2 0:20 0:106 ip community-list standard 2_40_53 permit 65000:2 0:40 0:53 route-map calculator permit 1285 match community 2_10_212 2_20_106 2_40_53 set community 0:2120 ip community-list standard 2_2_195 permit 65000:2 0:2 0:195 ip community-list standard 2_3_130 permit 65000:2 0:3 0:130 ip community-list standard 2_5_78 permit 65000:2 0:5 0:78 ip community-list standard 2_6_65 permit 65000:2 0:6 0:65 ip community-list standard 2_10_39 permit 65000:2 0:10 0:39 ip community-list standard 2_13_30 permit 65000:2 0:13 0:30 ip community-list standard 2_15_26 permit 65000:2 0:15 0:26 ip community-list standard 1_134_256 permit 65000:1 0:134 0:256 ip community-list standard 1_135_255 permit 65000:1 0:135 0:255 ip community-list standard 1_136_254 permit 65000:1 0:136 0:254 ip community-list standard 1_137_253 permit 65000:1 0:137 0:253 ip community-list standard 1_138_252 permit 65000:1 0:138 0:252 ip community-list standard 1_139_251 permit 65000:1 0:139 0:251 ip community-list standard 1_140_250 permit 65000:1 0:140 0:250 ip community-list standard 1_141_249 permit 65000:1 0:141 0:249 ip community-list standard 1_142_248 permit 65000:1 0:142 0:248 ip community-list standard 1_143_247 permit 65000:1 0:143 0:247 ip community-list standard 1_144_246 permit 65000:1 0:144 0:246 ip community-list standard 1_145_245 permit 65000:1 0:145 0:245 ip community-list standard 1_146_244 permit 65000:1 0:146 0:244 ip community-list standard 1_147_243 permit 65000:1 0:147 0:243 ip community-list standard 1_148_242 permit 65000:1 0:148 0:242 ip community-list standard 1_149_241 permit 65000:1 0:149 0:241 ip community-list standard 1_150_240 permit 65000:1 0:150 0:240 ip community-list standard 1_151_239 permit 65000:1 0:151 0:239 ip community-list standard 1_152_238 permit 65000:1 0:152 0:238 ip community-list standard 1_153_237 permit 65000:1 0:153 0:237 ip community-list standard 1_154_236 permit 65000:1 0:154 0:236 ip community-list standard 1_155_235 permit 65000:1 0:155 0:235 ip community-list standard 1_156_234 permit 65000:1 0:156 0:234 ip community-list standard 1_157_233 permit 65000:1 0:157 0:233 ip community-list standard 1_158_232 permit 65000:1 0:158 0:232 ip community-list standard 1_159_231 permit 65000:1 0:159 0:231 ip community-list standard 1_160_230 permit 65000:1 0:160 0:230 ip community-list standard 1_161_229 permit 65000:1 0:161 0:229 ip community-list standard 1_162_228 permit 65000:1 0:162 0:228 ip community-list standard 1_163_227 permit 65000:1 0:163 0:227 ip community-list standard 1_164_226 permit 65000:1 0:164 0:226 ip community-list standard 1_165_225 permit 65000:1 0:165 0:225 ip community-list standard 1_166_224 permit 65000:1 0:166 0:224 ip community-list standard 1_167_223 permit 65000:1 0:167 0:223 ip community-list standard 1_168_222 permit 65000:1 0:168 0:222 ip community-list standard 1_169_221 permit 65000:1 0:169 0:221 ip community-list standard 1_170_220 permit 65000:1 0:170 0:220 ip community-list standard 1_171_219 permit 65000:1 0:171 0:219 ip community-list standard 1_172_218 permit 65000:1 0:172 0:218 ip community-list standard 1_173_217 permit 65000:1 0:173 0:217 ip community-list standard 1_174_216 permit 65000:1 0:174 0:216 ip community-list standard 1_175_215 permit 65000:1 0:175 0:215 ip community-list standard 1_176_214 permit 65000:1 0:176 0:214 ip community-list standard 1_177_213 permit 65000:1 0:177 0:213 ip community-list standard 1_178_212 permit 65000:1 0:178 0:212 ip community-list standard 1_179_211 permit 65000:1 0:179 0:211 ip community-list standard 1_180_210 permit 65000:1 0:180 0:210 ip community-list standard 1_181_209 permit 65000:1 0:181 0:209 ip community-list standard 1_182_208 permit 65000:1 0:182 0:208 ip community-list standard 1_183_207 permit 65000:1 0:183 0:207 ip community-list standard 1_184_206 permit 65000:1 0:184 0:206 ip community-list standard 1_185_205 permit 65000:1 0:185 0:205 ip community-list standard 1_186_204 permit 65000:1 0:186 0:204 ip community-list standard 1_187_203 permit 65000:1 0:187 0:203 ip community-list standard 1_188_202 permit 65000:1 0:188 0:202 ip community-list standard 1_189_201 permit 65000:1 0:189 0:201 ip community-list standard 1_190_200 permit 65000:1 0:190 0:200 ip community-list standard 1_191_199 permit 65000:1 0:191 0:199 ip community-list standard 1_192_198 permit 65000:1 0:192 0:198 ip community-list standard 1_193_197 permit 65000:1 0:193 0:197 ip community-list standard 1_194_196 permit 65000:1 0:194 0:196 ip community-list standard 1_195_195 permit 65000:1 0:195 0:195 route-map calculator permit 1286 match community 2_2_195 2_3_130 2_5_78 2_6_65 2_10_39 set community 0:390 route-map calculator permit 1287 match community 2_13_30 2_15_26 1_134_256 1_135_255 1_136_254 set community 0:390 route-map calculator permit 1288 match community 1_137_253 1_138_252 1_139_251 1_140_250 1_141_249 set community 0:390 route-map calculator permit 1289 match community 1_142_248 1_143_247 1_144_246 1_145_245 1_146_244 set community 0:390 route-map calculator permit 1290 match community 1_147_243 1_148_242 1_149_241 1_150_240 1_151_239 set community 0:390 route-map calculator permit 1291 match community 1_152_238 1_153_237 1_154_236 1_155_235 1_156_234 set community 0:390 route-map calculator permit 1292 match community 1_157_233 1_158_232 1_159_231 1_160_230 1_161_229 set community 0:390 route-map calculator permit 1293 match community 1_162_228 1_163_227 1_164_226 1_165_225 1_166_224 set community 0:390 route-map calculator permit 1294 match community 1_167_223 1_168_222 1_169_221 1_170_220 1_171_219 set community 0:390 route-map calculator permit 1295 match community 1_172_218 1_173_217 1_174_216 1_175_215 1_176_214 set community 0:390 route-map calculator permit 1296 match community 1_177_213 1_178_212 1_179_211 1_180_210 1_181_209 set community 0:390 route-map calculator permit 1297 match community 1_182_208 1_183_207 1_184_206 1_185_205 1_186_204 set community 0:390 route-map calculator permit 1298 match community 1_187_203 1_188_202 1_189_201 1_190_200 1_191_199 set community 0:390 route-map calculator permit 1299 match community 1_192_198 1_193_197 1_194_196 1_195_195 set community 0:390 ip community-list standard 2_182_223 permit 65000:2 0:182 0:223 route-map calculator permit 1300 match community 2_182_223 set community 0:40586 ip community-list standard 2_131_189 permit 65000:2 0:131 0:189 route-map calculator permit 1301 match community 2_131_189 set community 0:24759 ip community-list standard 2_187_188 permit 65000:2 0:187 0:188 route-map calculator permit 1302 match community 2_187_188 set community 0:35156 ip community-list standard 2_29_165 permit 65000:2 0:29 0:165 ip community-list standard 2_33_145 permit 65000:2 0:33 0:145 ip community-list standard 2_55_87 permit 65000:2 0:55 0:87 route-map calculator permit 1303 match community 2_29_165 2_33_145 2_55_87 set community 0:4785 ip community-list standard 2_122_193 permit 65000:2 0:122 0:193 route-map calculator permit 1304 match community 2_122_193 set community 0:23546 ip community-list standard 2_47_181 permit 65000:2 0:47 0:181 route-map calculator permit 1305 match community 2_47_181 set community 0:8507 ip community-list standard 2_142_239 permit 65000:2 0:142 0:239 route-map calculator permit 1306 match community 2_142_239 set community 0:33938 ip community-list standard 2_73_247 permit 65000:2 0:73 0:247 route-map calculator permit 1307 match community 2_73_247 set community 0:18031 ip community-list standard 2_126_179 permit 65000:2 0:126 0:179 route-map calculator permit 1308 match community 2_126_179 set community 0:22554 ip community-list standard 2_89_222 permit 65000:2 0:89 0:222 ip community-list standard 2_111_178 permit 65000:2 0:111 0:178 route-map calculator permit 1309 match community 2_89_222 2_111_178 set community 0:19758 ip community-list standard 2_10_211 permit 65000:2 0:10 0:211 route-map calculator permit 1310 match community 2_10_211 set community 0:2110 ip community-list standard 2_3_219 permit 65000:2 0:3 0:219 ip community-list standard 2_9_73 permit 65000:2 0:9 0:73 route-map calculator permit 1311 match community 2_3_219 2_9_73 set community 0:657 ip community-list standard 2_108_249 permit 65000:2 0:108 0:249 ip community-list standard 2_162_166 permit 65000:2 0:162 0:166 route-map calculator permit 1312 match community 2_108_249 2_162_166 set community 0:26892 ip community-list standard 2_132_227 permit 65000:2 0:132 0:227 route-map calculator permit 1313 match community 2_132_227 set community 0:29964 ip community-list standard 2_145_195 permit 65000:2 0:145 0:195 route-map calculator permit 1314 match community 2_145_195 set community 0:28275 ip community-list standard 2_188_206 permit 65000:2 0:188 0:206 route-map calculator permit 1315 match community 2_188_206 set community 0:38728 ip community-list standard 2_67_172 permit 65000:2 0:67 0:172 ip community-list standard 2_86_134 permit 65000:2 0:86 0:134 route-map calculator permit 1316 match community 2_67_172 2_86_134 set community 0:11524 ip community-list standard 2_43_247 permit 65000:2 0:43 0:247 route-map calculator permit 1317 match community 2_43_247 set community 0:10621 ip community-list standard 2_169_236 permit 65000:2 0:169 0:236 route-map calculator permit 1318 match community 2_169_236 set community 0:39884 ip community-list standard 1_1_69 permit 65000:1 0:1 0:69 ip community-list standard 2_1_70 permit 65000:2 0:1 0:70 ip community-list standard 2_2_35 permit 65000:2 0:2 0:35 ip community-list standard 1_2_68 permit 65000:1 0:2 0:68 ip community-list standard 1_3_67 permit 65000:1 0:3 0:67 ip community-list standard 1_4_66 permit 65000:1 0:4 0:66 ip community-list standard 2_5_14 permit 65000:2 0:5 0:14 ip community-list standard 1_5_65 permit 65000:1 0:5 0:65 ip community-list standard 1_6_64 permit 65000:1 0:6 0:64 ip community-list standard 2_7_10 permit 65000:2 0:7 0:10 ip community-list standard 1_7_63 permit 65000:1 0:7 0:63 ip community-list standard 1_8_62 permit 65000:1 0:8 0:62 ip community-list standard 1_9_61 permit 65000:1 0:9 0:61 ip community-list standard 1_10_60 permit 65000:1 0:10 0:60 ip community-list standard 1_11_59 permit 65000:1 0:11 0:59 ip community-list standard 1_12_58 permit 65000:1 0:12 0:58 ip community-list standard 1_13_57 permit 65000:1 0:13 0:57 ip community-list standard 1_14_56 permit 65000:1 0:14 0:56 ip community-list standard 1_15_55 permit 65000:1 0:15 0:55 ip community-list standard 1_16_54 permit 65000:1 0:16 0:54 ip community-list standard 1_17_53 permit 65000:1 0:17 0:53 ip community-list standard 1_18_52 permit 65000:1 0:18 0:52 ip community-list standard 1_19_51 permit 65000:1 0:19 0:51 ip community-list standard 1_20_50 permit 65000:1 0:20 0:50 ip community-list standard 1_21_49 permit 65000:1 0:21 0:49 ip community-list standard 1_22_48 permit 65000:1 0:22 0:48 ip community-list standard 1_23_47 permit 65000:1 0:23 0:47 ip community-list standard 1_24_46 permit 65000:1 0:24 0:46 ip community-list standard 1_25_45 permit 65000:1 0:25 0:45 ip community-list standard 1_26_44 permit 65000:1 0:26 0:44 ip community-list standard 1_27_43 permit 65000:1 0:27 0:43 ip community-list standard 1_28_42 permit 65000:1 0:28 0:42 ip community-list standard 1_29_41 permit 65000:1 0:29 0:41 ip community-list standard 1_30_40 permit 65000:1 0:30 0:40 ip community-list standard 1_31_39 permit 65000:1 0:31 0:39 ip community-list standard 1_32_38 permit 65000:1 0:32 0:38 ip community-list standard 1_33_37 permit 65000:1 0:33 0:37 ip community-list standard 1_34_36 permit 65000:1 0:34 0:36 ip community-list standard 1_35_35 permit 65000:1 0:35 0:35 ip community-list expanded c70 permit 1 ^65000:4_0:70_0:1$ ip community-list expanded c70 permit 2 ^65000:3_0:71_0:1$ ip community-list expanded c70 permit 3 ^65000:3_0:72_0:2$ ip community-list expanded c70 permit 4 ^65000:3_0:73_0:3$ ip community-list expanded c70 permit 5 ^65000:3_0:74_0:4$ ip community-list expanded c70 permit 6 ^65000:3_0:75_0:5$ ip community-list expanded c70 permit 7 ^65000:3_0:76_0:6$ ip community-list expanded c70 permit 8 ^65000:3_0:77_0:7$ ip community-list expanded c70 permit 9 ^65000:3_0:78_0:8$ ip community-list expanded c70 permit 10 ^65000:3_0:79_0:9$ ip community-list expanded c70 permit 11 ^65000:3_0:80_0:10$ ip community-list expanded c70 permit 12 ^65000:3_0:81_0:11$ ip community-list expanded c70 permit 13 ^65000:3_0:82_0:12$ ip community-list expanded c70 permit 14 ^65000:3_0:83_0:13$ ip community-list expanded c70 permit 15 ^65000:3_0:84_0:14$ ip community-list expanded c70 permit 16 ^65000:3_0:85_0:15$ ip community-list expanded c70 permit 17 ^65000:3_0:86_0:16$ ip community-list expanded c70 permit 18 ^65000:3_0:87_0:17$ ip community-list expanded c70 permit 19 ^65000:3_0:88_0:18$ ip community-list expanded c70 permit 20 ^65000:3_0:89_0:19$ ip community-list expanded c70 permit 21 ^65000:3_0:90_0:20$ ip community-list expanded c70 permit 22 ^65000:3_0:91_0:21$ ip community-list expanded c70 permit 23 ^65000:3_0:92_0:22$ ip community-list expanded c70 permit 24 ^65000:3_0:93_0:23$ ip community-list expanded c70 permit 25 ^65000:3_0:94_0:24$ ip community-list expanded c70 permit 26 ^65000:3_0:95_0:25$ ip community-list expanded c70 permit 27 ^65000:3_0:96_0:26$ ip community-list expanded c70 permit 28 ^65000:3_0:97_0:27$ ip community-list expanded c70 permit 29 ^65000:3_0:98_0:28$ ip community-list expanded c70 permit 30 ^65000:3_0:99_0:29$ ip community-list expanded c70 permit 31 ^65000:3_0:100_0:30$ ip community-list expanded c70 permit 32 ^65000:3_0:101_0:31$ ip community-list expanded c70 permit 33 ^65000:3_0:102_0:32$ ip community-list expanded c70 permit 34 ^65000:3_0:103_0:33$ ip community-list expanded c70 permit 35 ^65000:3_0:104_0:34$ ip community-list expanded c70 permit 36 ^65000:3_0:105_0:35$ ip community-list expanded c70 permit 37 ^65000:3_0:106_0:36$ ip community-list expanded c70 permit 38 ^65000:3_0:107_0:37$ ip community-list expanded c70 permit 39 ^65000:3_0:108_0:38$ ip community-list expanded c70 permit 40 ^65000:3_0:109_0:39$ ip community-list expanded c70 permit 41 ^65000:3_0:110_0:40$ ip community-list expanded c70 permit 42 ^65000:3_0:111_0:41$ ip community-list expanded c70 permit 43 ^65000:3_0:112_0:42$ ip community-list expanded c70 permit 44 ^65000:3_0:113_0:43$ ip community-list expanded c70 permit 45 ^65000:3_0:114_0:44$ ip community-list expanded c70 permit 46 ^65000:3_0:115_0:45$ ip community-list expanded c70 permit 47 ^65000:3_0:116_0:46$ ip community-list expanded c70 permit 48 ^65000:3_0:117_0:47$ ip community-list expanded c70 permit 49 ^65000:3_0:118_0:48$ ip community-list expanded c70 permit 50 ^65000:3_0:119_0:49$ ip community-list expanded c70 permit 51 ^65000:3_0:120_0:50$ ip community-list expanded c70 permit 52 ^65000:3_0:121_0:51$ ip community-list expanded c70 permit 53 ^65000:3_0:122_0:52$ ip community-list expanded c70 permit 54 ^65000:3_0:123_0:53$ ip community-list expanded c70 permit 55 ^65000:3_0:124_0:54$ ip community-list expanded c70 permit 56 ^65000:3_0:125_0:55$ ip community-list expanded c70 permit 57 ^65000:3_0:126_0:56$ ip community-list expanded c70 permit 58 ^65000:3_0:127_0:57$ ip community-list expanded c70 permit 59 ^65000:3_0:128_0:58$ ip community-list expanded c70 permit 60 ^65000:3_0:129_0:59$ ip community-list expanded c70 permit 61 ^65000:3_0:130_0:60$ ip community-list expanded c70 permit 62 ^65000:3_0:131_0:61$ ip community-list expanded c70 permit 63 ^65000:3_0:132_0:62$ ip community-list expanded c70 permit 64 ^65000:3_0:133_0:63$ ip community-list expanded c70 permit 65 ^65000:3_0:134_0:64$ ip community-list expanded c70 permit 66 ^65000:3_0:135_0:65$ ip community-list expanded c70 permit 67 ^65000:3_0:136_0:66$ ip community-list expanded c70 permit 68 ^65000:3_0:137_0:67$ ip community-list expanded c70 permit 69 ^65000:3_0:138_0:68$ ip community-list expanded c70 permit 70 ^65000:3_0:139_0:69$ ip community-list expanded c70 permit 71 ^65000:4_0:140_0:2$ ip community-list expanded c70 permit 72 ^65000:3_0:140_0:70$ ip community-list expanded c70 permit 73 ^65000:4_0:141_0:2$ ip community-list expanded c70 permit 74 ^65000:3_0:141_0:71$ ip community-list expanded c70 permit 75 ^65000:3_0:142_0:72$ ip community-list expanded c70 permit 76 ^65000:3_0:143_0:73$ ip community-list expanded c70 permit 77 ^65000:3_0:144_0:74$ ip community-list expanded c70 permit 78 ^65000:3_0:145_0:75$ ip community-list expanded c70 permit 79 ^65000:3_0:146_0:76$ ip community-list expanded c70 permit 80 ^65000:3_0:147_0:77$ ip community-list expanded c70 permit 81 ^65000:3_0:148_0:78$ ip community-list expanded c70 permit 82 ^65000:3_0:149_0:79$ ip community-list expanded c70 permit 83 ^65000:3_0:150_0:80$ ip community-list expanded c70 permit 84 ^65000:3_0:151_0:81$ ip community-list expanded c70 permit 85 ^65000:3_0:152_0:82$ ip community-list expanded c70 permit 86 ^65000:3_0:153_0:83$ ip community-list expanded c70 permit 87 ^65000:3_0:154_0:84$ ip community-list expanded c70 permit 88 ^65000:3_0:155_0:85$ ip community-list expanded c70 permit 89 ^65000:3_0:156_0:86$ ip community-list expanded c70 permit 90 ^65000:3_0:157_0:87$ ip community-list expanded c70 permit 91 ^65000:3_0:158_0:88$ ip community-list expanded c70 permit 92 ^65000:3_0:159_0:89$ ip community-list expanded c70 permit 93 ^65000:3_0:160_0:90$ ip community-list expanded c70 permit 94 ^65000:3_0:161_0:91$ ip community-list expanded c70 permit 95 ^65000:3_0:162_0:92$ ip community-list expanded c70 permit 96 ^65000:3_0:163_0:93$ ip community-list expanded c70 permit 97 ^65000:3_0:164_0:94$ ip community-list expanded c70 permit 98 ^65000:3_0:165_0:95$ ip community-list expanded c70 permit 99 ^65000:3_0:166_0:96$ ip community-list expanded c70 permit 100 ^65000:3_0:167_0:97$ ip community-list expanded c70 permit 101 ^65000:3_0:168_0:98$ ip community-list expanded c70 permit 102 ^65000:3_0:169_0:99$ ip community-list expanded c70 permit 103 ^65000:3_0:170_0:100$ ip community-list expanded c70 permit 104 ^65000:3_0:171_0:101$ ip community-list expanded c70 permit 105 ^65000:3_0:172_0:102$ ip community-list expanded c70 permit 106 ^65000:3_0:173_0:103$ ip community-list expanded c70 permit 107 ^65000:3_0:174_0:104$ ip community-list expanded c70 permit 108 ^65000:3_0:175_0:105$ ip community-list expanded c70 permit 109 ^65000:3_0:176_0:106$ ip community-list expanded c70 permit 110 ^65000:3_0:177_0:107$ ip community-list expanded c70 permit 111 ^65000:3_0:178_0:108$ ip community-list expanded c70 permit 112 ^65000:3_0:179_0:109$ ip community-list expanded c70 permit 113 ^65000:3_0:180_0:110$ ip community-list expanded c70 permit 114 ^65000:3_0:181_0:111$ ip community-list expanded c70 permit 115 ^65000:3_0:182_0:112$ ip community-list expanded c70 permit 116 ^65000:3_0:183_0:113$ ip community-list expanded c70 permit 117 ^65000:3_0:184_0:114$ ip community-list expanded c70 permit 118 ^65000:3_0:185_0:115$ ip community-list expanded c70 permit 119 ^65000:3_0:186_0:116$ ip community-list expanded c70 permit 120 ^65000:3_0:187_0:117$ ip community-list expanded c70 permit 121 ^65000:3_0:188_0:118$ ip community-list expanded c70 permit 122 ^65000:3_0:189_0:119$ ip community-list expanded c70 permit 123 ^65000:3_0:190_0:120$ ip community-list expanded c70 permit 124 ^65000:3_0:191_0:121$ ip community-list expanded c70 permit 125 ^65000:3_0:192_0:122$ ip community-list expanded c70 permit 126 ^65000:3_0:193_0:123$ ip community-list expanded c70 permit 127 ^65000:3_0:194_0:124$ ip community-list expanded c70 permit 128 ^65000:3_0:195_0:125$ ip community-list expanded c70 permit 129 ^65000:3_0:196_0:126$ ip community-list expanded c70 permit 130 ^65000:3_0:197_0:127$ ip community-list expanded c70 permit 131 ^65000:3_0:198_0:128$ ip community-list expanded c70 permit 132 ^65000:3_0:199_0:129$ ip community-list expanded c70 permit 133 ^65000:3_0:200_0:130$ ip community-list expanded c70 permit 134 ^65000:3_0:201_0:131$ ip community-list expanded c70 permit 135 ^65000:3_0:202_0:132$ ip community-list expanded c70 permit 136 ^65000:3_0:203_0:133$ ip community-list expanded c70 permit 137 ^65000:3_0:204_0:134$ ip community-list expanded c70 permit 138 ^65000:3_0:205_0:135$ ip community-list expanded c70 permit 139 ^65000:3_0:206_0:136$ ip community-list expanded c70 permit 140 ^65000:3_0:207_0:137$ ip community-list expanded c70 permit 141 ^65000:3_0:208_0:138$ ip community-list expanded c70 permit 142 ^65000:3_0:209_0:139$ ip community-list expanded c70 permit 143 ^65000:4_0:210_0:3$ ip community-list expanded c70 permit 144 ^65000:3_0:210_0:140$ ip community-list expanded c70 permit 145 ^65000:4_0:211_0:3$ ip community-list expanded c70 permit 146 ^65000:3_0:211_0:141$ ip community-list expanded c70 permit 147 ^65000:4_0:212_0:3$ ip community-list expanded c70 permit 148 ^65000:3_0:212_0:142$ ip community-list expanded c70 permit 149 ^65000:3_0:213_0:143$ ip community-list expanded c70 permit 150 ^65000:3_0:214_0:144$ ip community-list expanded c70 permit 151 ^65000:3_0:215_0:145$ ip community-list expanded c70 permit 152 ^65000:3_0:216_0:146$ ip community-list expanded c70 permit 153 ^65000:3_0:217_0:147$ ip community-list expanded c70 permit 154 ^65000:3_0:218_0:148$ ip community-list expanded c70 permit 155 ^65000:3_0:219_0:149$ ip community-list expanded c70 permit 156 ^65000:3_0:220_0:150$ ip community-list expanded c70 permit 157 ^65000:3_0:221_0:151$ ip community-list expanded c70 permit 158 ^65000:3_0:222_0:152$ ip community-list expanded c70 permit 159 ^65000:3_0:223_0:153$ ip community-list expanded c70 permit 160 ^65000:3_0:224_0:154$ ip community-list expanded c70 permit 161 ^65000:3_0:225_0:155$ ip community-list expanded c70 permit 162 ^65000:3_0:226_0:156$ ip community-list expanded c70 permit 163 ^65000:3_0:227_0:157$ ip community-list expanded c70 permit 164 ^65000:3_0:228_0:158$ ip community-list expanded c70 permit 165 ^65000:3_0:229_0:159$ ip community-list expanded c70 permit 166 ^65000:3_0:230_0:160$ ip community-list expanded c70 permit 167 ^65000:3_0:231_0:161$ ip community-list expanded c70 permit 168 ^65000:3_0:232_0:162$ ip community-list expanded c70 permit 169 ^65000:3_0:233_0:163$ ip community-list expanded c70 permit 170 ^65000:3_0:234_0:164$ ip community-list expanded c70 permit 171 ^65000:3_0:235_0:165$ ip community-list expanded c70 permit 172 ^65000:3_0:236_0:166$ ip community-list expanded c70 permit 173 ^65000:3_0:237_0:167$ ip community-list expanded c70 permit 174 ^65000:3_0:238_0:168$ ip community-list expanded c70 permit 175 ^65000:3_0:239_0:169$ ip community-list expanded c70 permit 176 ^65000:3_0:240_0:170$ ip community-list expanded c70 permit 177 ^65000:3_0:241_0:171$ ip community-list expanded c70 permit 178 ^65000:3_0:242_0:172$ ip community-list expanded c70 permit 179 ^65000:3_0:243_0:173$ ip community-list expanded c70 permit 180 ^65000:3_0:244_0:174$ ip community-list expanded c70 permit 181 ^65000:3_0:245_0:175$ ip community-list expanded c70 permit 182 ^65000:3_0:246_0:176$ ip community-list expanded c70 permit 183 ^65000:3_0:247_0:177$ ip community-list expanded c70 permit 184 ^65000:3_0:248_0:178$ ip community-list expanded c70 permit 185 ^65000:3_0:249_0:179$ ip community-list expanded c70 permit 186 ^65000:3_0:250_0:180$ ip community-list expanded c70 permit 187 ^65000:3_0:251_0:181$ ip community-list expanded c70 permit 188 ^65000:3_0:252_0:182$ ip community-list expanded c70 permit 189 ^65000:3_0:253_0:183$ ip community-list expanded c70 permit 190 ^65000:3_0:254_0:184$ ip community-list expanded c70 permit 191 ^65000:3_0:255_0:185$ ip community-list expanded c70 permit 192 ^65000:3_0:256_0:186$ route-map calculator permit 1319 match community 1_1_69 2_1_70 2_2_35 1_2_68 1_3_67 set community 0:70 route-map calculator permit 1320 match community 1_4_66 2_5_14 1_5_65 1_6_64 2_7_10 set community 0:70 route-map calculator permit 1321 match community 1_7_63 1_8_62 1_9_61 1_10_60 1_11_59 set community 0:70 route-map calculator permit 1322 match community 1_12_58 1_13_57 1_14_56 1_15_55 1_16_54 set community 0:70 route-map calculator permit 1323 match community 1_17_53 1_18_52 1_19_51 1_20_50 1_21_49 set community 0:70 route-map calculator permit 1324 match community 1_22_48 1_23_47 1_24_46 1_25_45 1_26_44 set community 0:70 route-map calculator permit 1325 match community 1_27_43 1_28_42 1_29_41 1_30_40 1_31_39 set community 0:70 route-map calculator permit 1326 match community 1_32_38 1_33_37 1_34_36 1_35_35 c4_70_1 set community 0:70 route-map calculator permit 1327 match community c3_71_1 c3_72_2 c3_73_3 c3_74_4 c3_75_5 set community 0:70 route-map calculator permit 1328 match community c3_76_6 c3_77_7 c3_78_8 c3_79_9 c3_80_10 set community 0:70 route-map calculator permit 1329 match community c3_81_11 c3_82_12 c3_83_13 c3_84_14 c3_85_15 set community 0:70 route-map calculator permit 1330 match community c3_86_16 c3_87_17 c3_88_18 c3_89_19 c3_90_20 set community 0:70 route-map calculator permit 1331 match community c3_91_21 c3_92_22 c3_93_23 c3_94_24 c3_95_25 set community 0:70 route-map calculator permit 1332 match community c3_96_26 c3_97_27 c3_98_28 c3_99_29 c3_100_30 set community 0:70 route-map calculator permit 1333 match community c3_101_31 c3_102_32 c3_103_33 c3_104_34 c3_105_35 set community 0:70 route-map calculator permit 1334 match community c3_106_36 c3_107_37 c3_108_38 c3_109_39 c3_110_40 set community 0:70 route-map calculator permit 1335 match community c3_111_41 c3_112_42 c3_113_43 c3_114_44 c3_115_45 set community 0:70 route-map calculator permit 1336 match community c3_116_46 c3_117_47 c3_118_48 c3_119_49 c3_120_50 set community 0:70 route-map calculator permit 1337 match community c3_121_51 c3_122_52 c3_123_53 c3_124_54 c3_125_55 set community 0:70 route-map calculator permit 1338 match community c3_126_56 c3_127_57 c3_128_58 c3_129_59 c3_130_60 set community 0:70 route-map calculator permit 1339 match community c3_131_61 c3_132_62 c3_133_63 c3_134_64 c3_135_65 set community 0:70 route-map calculator permit 1340 match community c3_136_66 c3_137_67 c3_138_68 c3_139_69 c4_140_2 set community 0:70 route-map calculator permit 1341 match community c3_140_70 c4_141_2 c3_141_71 c3_142_72 c3_143_73 set community 0:70 route-map calculator permit 1342 match community c3_144_74 c3_145_75 c3_146_76 c3_147_77 c3_148_78 set community 0:70 route-map calculator permit 1343 match community c3_149_79 c3_150_80 c3_151_81 c3_152_82 c3_153_83 set community 0:70 route-map calculator permit 1344 match community c3_154_84 c3_155_85 c3_156_86 c3_157_87 c3_158_88 set community 0:70 route-map calculator permit 1345 match community c3_159_89 c3_160_90 c3_161_91 c3_162_92 c3_163_93 set community 0:70 route-map calculator permit 1346 match community c3_164_94 c3_165_95 c3_166_96 c3_167_97 c3_168_98 set community 0:70 route-map calculator permit 1347 match community c3_169_99 c3_170_100 c3_171_101 c3_172_102 c3_173_103 set community 0:70 route-map calculator permit 1348 match community c3_174_104 c3_175_105 c3_176_106 c3_177_107 c3_178_108 set community 0:70 route-map calculator permit 1349 match community c3_179_109 c3_180_110 c3_181_111 c3_182_112 c3_183_113 set community 0:70 route-map calculator permit 1350 match community c3_184_114 c3_185_115 c3_186_116 c3_187_117 c3_188_118 set community 0:70 route-map calculator permit 1351 match community c3_189_119 c3_190_120 c3_191_121 c3_192_122 c3_193_123 set community 0:70 route-map calculator permit 1352 match community c3_194_124 c3_195_125 c3_196_126 c3_197_127 c3_198_128 set community 0:70 route-map calculator permit 1353 match community c3_199_129 c3_200_130 c3_201_131 c3_202_132 c3_203_133 set community 0:70 route-map calculator permit 1354 match community c3_204_134 c3_205_135 c3_206_136 c3_207_137 c3_208_138 set community 0:70 route-map calculator permit 1355 match community c3_209_139 c4_210_3 c3_210_140 c4_211_3 c3_211_141 set community 0:70 route-map calculator permit 1356 match community c4_212_3 c3_212_142 c3_213_143 c3_214_144 c3_215_145 set community 0:70 route-map calculator permit 1357 match community c3_216_146 c3_217_147 c3_218_148 c3_219_149 c3_220_150 set community 0:70 route-map calculator permit 1358 match community c3_221_151 c3_222_152 c3_223_153 c3_224_154 c3_225_155 set community 0:70 route-map calculator permit 1359 match community c3_226_156 c3_227_157 c3_228_158 c3_229_159 c3_230_160 set community 0:70 route-map calculator permit 1360 match community c3_231_161 c3_232_162 c3_233_163 c3_234_164 c3_235_165 set community 0:70 route-map calculator permit 1361 match community c3_236_166 c3_237_167 c3_238_168 c3_239_169 c3_240_170 set community 0:70 route-map calculator permit 1362 match community c3_241_171 c3_242_172 c3_243_173 c3_244_174 c3_245_175 set community 0:70 route-map calculator permit 1363 match community c3_246_176 c3_247_177 c3_248_178 c3_249_179 c3_250_180 set community 0:70 route-map calculator permit 1364 match community c3_251_181 c3_252_182 c3_253_183 c3_254_184 c3_255_185 set community 0:70 route-map calculator permit 1365 match community c3_256_186 set community 0:70 ip community-list standard 2_54_256 permit 65000:2 0:54 0:256 ip community-list standard 2_64_216 permit 65000:2 0:64 0:216 ip community-list standard 2_72_192 permit 65000:2 0:72 0:192 ip community-list standard 2_96_144 permit 65000:2 0:96 0:144 ip community-list standard 2_108_128 permit 65000:2 0:108 0:128 route-map calculator permit 1366 match community 2_54_256 2_64_216 2_72_192 2_96_144 2_108_128 set community 0:13824 ip community-list standard 2_103_105 permit 65000:2 0:103 0:105 route-map calculator permit 1367 match community 2_103_105 set community 0:10815 ip community-list standard 2_193_203 permit 65000:2 0:193 0:203 route-map calculator permit 1368 match community 2_193_203 set community 0:39179 ip community-list standard 2_15_252 permit 65000:2 0:15 0:252 ip community-list standard 2_18_210 permit 65000:2 0:18 0:210 ip community-list standard 2_20_189 permit 65000:2 0:20 0:189 ip community-list standard 2_21_180 permit 65000:2 0:21 0:180 ip community-list standard 2_27_140 permit 65000:2 0:27 0:140 ip community-list standard 2_28_135 permit 65000:2 0:28 0:135 ip community-list standard 2_30_126 permit 65000:2 0:30 0:126 ip community-list standard 2_35_108 permit 65000:2 0:35 0:108 ip community-list standard 2_36_105 permit 65000:2 0:36 0:105 ip community-list standard 2_42_90 permit 65000:2 0:42 0:90 ip community-list standard 2_45_84 permit 65000:2 0:45 0:84 ip community-list standard 2_54_70 permit 65000:2 0:54 0:70 ip community-list standard 2_60_63 permit 65000:2 0:60 0:63 route-map calculator permit 1369 match community 2_15_252 2_18_210 2_20_189 2_21_180 2_27_140 set community 0:3780 route-map calculator permit 1370 match community 2_28_135 2_30_126 2_35_108 2_36_105 2_42_90 set community 0:3780 route-map calculator permit 1371 match community 2_45_84 2_54_70 2_60_63 set community 0:3780 ip community-list standard 2_79_223 permit 65000:2 0:79 0:223 route-map calculator permit 1372 match community 2_79_223 set community 0:17617 ip community-list standard 2_97_181 permit 65000:2 0:97 0:181 route-map calculator permit 1373 match community 2_97_181 set community 0:17557 ip community-list standard 2_86_188 permit 65000:2 0:86 0:188 ip community-list standard 2_94_172 permit 65000:2 0:94 0:172 route-map calculator permit 1374 match community 2_86_188 2_94_172 set community 0:16168 ip community-list standard 2_25_109 permit 65000:2 0:25 0:109 route-map calculator permit 1375 match community 2_25_109 set community 0:2725 ip community-list standard 2_214_219 permit 65000:2 0:214 0:219 route-map calculator permit 1376 match community 2_214_219 set community 0:46866 ip community-list standard 2_157_185 permit 65000:2 0:157 0:185 route-map calculator permit 1377 match community 2_157_185 set community 0:29045 ip community-list standard 2_158_242 permit 65000:2 0:158 0:242 route-map calculator permit 1378 match community 2_158_242 set community 0:38236 ip community-list standard 2_192_234 permit 65000:2 0:192 0:234 ip community-list standard 2_208_216 permit 65000:2 0:208 0:216 route-map calculator permit 1379 match community 2_192_234 2_208_216 set community 0:44928 ip community-list standard 2_179_243 permit 65000:2 0:179 0:243 route-map calculator permit 1380 match community 2_179_243 set community 0:43497 ip community-list standard 2_40_151 permit 65000:2 0:40 0:151 route-map calculator permit 1381 match community 2_40_151 set community 0:6040 ip community-list standard 2_44_256 permit 65000:2 0:44 0:256 ip community-list standard 2_64_176 permit 65000:2 0:64 0:176 ip community-list standard 2_88_128 permit 65000:2 0:88 0:128 route-map calculator permit 1382 match community 2_44_256 2_64_176 2_88_128 set community 0:11264 ip community-list standard 2_52_199 permit 65000:2 0:52 0:199 route-map calculator permit 1383 match community 2_52_199 set community 0:10348 ip community-list standard 2_228_233 permit 65000:2 0:228 0:233 route-map calculator permit 1384 match community 2_228_233 set community 0:53124 ip community-list standard 2_51_174 permit 65000:2 0:51 0:174 ip community-list standard 2_58_153 permit 65000:2 0:58 0:153 ip community-list standard 2_87_102 permit 65000:2 0:87 0:102 route-map calculator permit 1385 match community 2_51_174 2_58_153 2_87_102 set community 0:8874 ip community-list standard 2_9_201 permit 65000:2 0:9 0:201 ip community-list standard 2_27_67 permit 65000:2 0:27 0:67 route-map calculator permit 1386 match community 2_9_201 2_27_67 set community 0:1809 ip community-list standard 2_139_223 permit 65000:2 0:139 0:223 route-map calculator permit 1387 match community 2_139_223 set community 0:30997 ip community-list standard 2_100_173 permit 65000:2 0:100 0:173 route-map calculator permit 1388 match community 2_100_173 set community 0:17300 ip community-list standard 2_92_196 permit 65000:2 0:92 0:196 ip community-list standard 2_98_184 permit 65000:2 0:98 0:184 ip community-list standard 2_112_161 permit 65000:2 0:112 0:161 route-map calculator permit 1389 match community 2_92_196 2_98_184 2_112_161 set community 0:18032 ip community-list standard 2_25_101 permit 65000:2 0:25 0:101 route-map calculator permit 1390 match community 2_25_101 set community 0:2525 ip community-list standard 2_133_236 permit 65000:2 0:133 0:236 route-map calculator permit 1391 match community 2_133_236 set community 0:31388 ip community-list standard 2_125_177 permit 65000:2 0:125 0:177 route-map calculator permit 1392 match community 2_125_177 set community 0:22125 ip community-list standard 2_217_231 permit 65000:2 0:217 0:231 route-map calculator permit 1393 match community 2_217_231 set community 0:50127 ip community-list standard 2_154_179 permit 65000:2 0:154 0:179 route-map calculator permit 1394 match community 2_154_179 set community 0:27566 ip community-list standard 2_21_185 permit 65000:2 0:21 0:185 ip community-list standard 2_35_111 permit 65000:2 0:35 0:111 ip community-list standard 2_37_105 permit 65000:2 0:37 0:105 route-map calculator permit 1395 match community 2_21_185 2_35_111 2_37_105 set community 0:3885 ip community-list standard 2_195_251 permit 65000:2 0:195 0:251 route-map calculator permit 1396 match community 2_195_251 set community 0:48945 ip community-list standard 2_131_202 permit 65000:2 0:131 0:202 route-map calculator permit 1397 match community 2_131_202 set community 0:26462 ip community-list standard 2_202_238 permit 65000:2 0:202 0:238 route-map calculator permit 1398 match community 2_202_238 set community 0:48076 ip community-list standard 2_88_169 permit 65000:2 0:88 0:169 ip community-list standard 2_104_143 permit 65000:2 0:104 0:143 route-map calculator permit 1399 match community 2_88_169 2_104_143 set community 0:14872 ip community-list standard 2_164_230 permit 65000:2 0:164 0:230 ip community-list standard 2_184_205 permit 65000:2 0:184 0:205 route-map calculator permit 1400 match community 2_164_230 2_184_205 set community 0:37720 ip community-list standard 2_47_234 permit 65000:2 0:47 0:234 ip community-list standard 2_78_141 permit 65000:2 0:78 0:141 ip community-list standard 2_94_117 permit 65000:2 0:94 0:117 route-map calculator permit 1401 match community 2_47_234 2_78_141 2_94_117 set community 0:10998 ip community-list standard 2_121_225 permit 65000:2 0:121 0:225 ip community-list standard 2_165_165 permit 65000:2 0:165 0:165 route-map calculator permit 1402 match community 2_121_225 2_165_165 set community 0:27225 ip community-list standard 2_207_247 permit 65000:2 0:207 0:247 route-map calculator permit 1403 match community 2_207_247 set community 0:51129 ip community-list standard 2_100_221 permit 65000:2 0:100 0:221 ip community-list standard 2_130_170 permit 65000:2 0:130 0:170 route-map calculator permit 1404 match community 2_100_221 2_130_170 set community 0:22100 ip community-list standard 2_100_202 permit 65000:2 0:100 0:202 ip community-list standard 2_101_200 permit 65000:2 0:101 0:200 route-map calculator permit 1405 match community 2_100_202 2_101_200 set community 0:20200 ip community-list standard 2_182_243 permit 65000:2 0:182 0:243 ip community-list standard 2_189_234 permit 65000:2 0:189 0:234 route-map calculator permit 1406 match community 2_182_243 2_189_234 set community 0:44226 ip community-list standard 2_226_248 permit 65000:2 0:226 0:248 route-map calculator permit 1407 match community 2_226_248 set community 0:56048 ip community-list standard 2_111_195 permit 65000:2 0:111 0:195 ip community-list standard 2_117_185 permit 65000:2 0:117 0:185 route-map calculator permit 1408 match community 2_111_195 2_117_185 set community 0:21645 ip community-list standard 2_109_242 permit 65000:2 0:109 0:242 ip community-list standard 2_121_218 permit 65000:2 0:121 0:218 route-map calculator permit 1409 match community 2_109_242 2_121_218 set community 0:26378 ip community-list standard 2_5_189 permit 65000:2 0:5 0:189 ip community-list standard 2_7_135 permit 65000:2 0:7 0:135 ip community-list standard 2_9_105 permit 65000:2 0:9 0:105 ip community-list standard 2_15_63 permit 65000:2 0:15 0:63 ip community-list standard 2_21_45 permit 65000:2 0:21 0:45 ip community-list standard 2_27_35 permit 65000:2 0:27 0:35 route-map calculator permit 1410 match community 2_5_189 2_7_135 2_9_105 2_15_63 2_21_45 set community 0:945 route-map calculator permit 1411 match community 2_27_35 set community 0:945 ip community-list standard 2_74_229 permit 65000:2 0:74 0:229 route-map calculator permit 1412 match community 2_74_229 set community 0:16946 ip community-list standard 2_15_125 permit 65000:2 0:15 0:125 ip community-list standard 2_25_75 permit 65000:2 0:25 0:75 route-map calculator permit 1413 match community 2_15_125 2_25_75 set community 0:1875 ip community-list standard 2_91_235 permit 65000:2 0:91 0:235 route-map calculator permit 1414 match community 2_91_235 set community 0:21385 ip community-list standard 1_1_166 permit 65000:1 0:1 0:166 ip community-list standard 2_1_167 permit 65000:2 0:1 0:167 ip community-list standard 1_2_165 permit 65000:1 0:2 0:165 ip community-list standard 1_3_164 permit 65000:1 0:3 0:164 ip community-list standard 1_4_163 permit 65000:1 0:4 0:163 ip community-list standard 1_5_162 permit 65000:1 0:5 0:162 ip community-list standard 1_6_161 permit 65000:1 0:6 0:161 ip community-list standard 1_7_160 permit 65000:1 0:7 0:160 ip community-list standard 1_8_159 permit 65000:1 0:8 0:159 ip community-list standard 1_9_158 permit 65000:1 0:9 0:158 ip community-list standard 1_10_157 permit 65000:1 0:10 0:157 ip community-list standard 1_11_156 permit 65000:1 0:11 0:156 ip community-list standard 1_12_155 permit 65000:1 0:12 0:155 ip community-list standard 1_13_154 permit 65000:1 0:13 0:154 ip community-list standard 1_14_153 permit 65000:1 0:14 0:153 ip community-list standard 1_15_152 permit 65000:1 0:15 0:152 ip community-list standard 1_16_151 permit 65000:1 0:16 0:151 ip community-list standard 1_17_150 permit 65000:1 0:17 0:150 ip community-list standard 1_18_149 permit 65000:1 0:18 0:149 ip community-list standard 1_19_148 permit 65000:1 0:19 0:148 ip community-list standard 1_20_147 permit 65000:1 0:20 0:147 ip community-list standard 1_21_146 permit 65000:1 0:21 0:146 ip community-list standard 1_22_145 permit 65000:1 0:22 0:145 ip community-list standard 1_23_144 permit 65000:1 0:23 0:144 ip community-list standard 1_24_143 permit 65000:1 0:24 0:143 ip community-list standard 1_25_142 permit 65000:1 0:25 0:142 ip community-list standard 1_26_141 permit 65000:1 0:26 0:141 ip community-list standard 1_27_140 permit 65000:1 0:27 0:140 ip community-list standard 1_28_139 permit 65000:1 0:28 0:139 ip community-list standard 1_29_138 permit 65000:1 0:29 0:138 ip community-list standard 1_30_137 permit 65000:1 0:30 0:137 ip community-list standard 1_31_136 permit 65000:1 0:31 0:136 ip community-list standard 1_32_135 permit 65000:1 0:32 0:135 ip community-list standard 1_33_134 permit 65000:1 0:33 0:134 ip community-list standard 1_34_133 permit 65000:1 0:34 0:133 ip community-list standard 1_35_132 permit 65000:1 0:35 0:132 ip community-list standard 1_36_131 permit 65000:1 0:36 0:131 ip community-list standard 1_37_130 permit 65000:1 0:37 0:130 ip community-list standard 1_38_129 permit 65000:1 0:38 0:129 ip community-list standard 1_39_128 permit 65000:1 0:39 0:128 ip community-list standard 1_40_127 permit 65000:1 0:40 0:127 ip community-list standard 1_41_126 permit 65000:1 0:41 0:126 ip community-list standard 1_42_125 permit 65000:1 0:42 0:125 ip community-list standard 1_43_124 permit 65000:1 0:43 0:124 ip community-list standard 1_44_123 permit 65000:1 0:44 0:123 ip community-list standard 1_45_122 permit 65000:1 0:45 0:122 ip community-list standard 1_46_121 permit 65000:1 0:46 0:121 ip community-list standard 1_47_120 permit 65000:1 0:47 0:120 ip community-list standard 1_48_119 permit 65000:1 0:48 0:119 ip community-list standard 1_49_118 permit 65000:1 0:49 0:118 ip community-list standard 1_50_117 permit 65000:1 0:50 0:117 ip community-list standard 1_51_116 permit 65000:1 0:51 0:116 ip community-list standard 1_52_115 permit 65000:1 0:52 0:115 ip community-list standard 1_53_114 permit 65000:1 0:53 0:114 ip community-list standard 1_54_113 permit 65000:1 0:54 0:113 ip community-list standard 1_55_112 permit 65000:1 0:55 0:112 ip community-list standard 1_56_111 permit 65000:1 0:56 0:111 ip community-list standard 1_57_110 permit 65000:1 0:57 0:110 ip community-list standard 1_58_109 permit 65000:1 0:58 0:109 ip community-list standard 1_59_108 permit 65000:1 0:59 0:108 ip community-list standard 1_60_107 permit 65000:1 0:60 0:107 ip community-list standard 1_61_106 permit 65000:1 0:61 0:106 ip community-list standard 1_62_105 permit 65000:1 0:62 0:105 ip community-list standard 1_63_104 permit 65000:1 0:63 0:104 ip community-list standard 1_64_103 permit 65000:1 0:64 0:103 ip community-list standard 1_65_102 permit 65000:1 0:65 0:102 ip community-list standard 1_66_101 permit 65000:1 0:66 0:101 ip community-list standard 1_67_100 permit 65000:1 0:67 0:100 ip community-list standard 1_68_99 permit 65000:1 0:68 0:99 ip community-list standard 1_69_98 permit 65000:1 0:69 0:98 ip community-list standard 1_70_97 permit 65000:1 0:70 0:97 ip community-list standard 1_71_96 permit 65000:1 0:71 0:96 ip community-list standard 1_72_95 permit 65000:1 0:72 0:95 ip community-list standard 1_73_94 permit 65000:1 0:73 0:94 ip community-list standard 1_74_93 permit 65000:1 0:74 0:93 ip community-list standard 1_75_92 permit 65000:1 0:75 0:92 ip community-list standard 1_76_91 permit 65000:1 0:76 0:91 ip community-list standard 1_77_90 permit 65000:1 0:77 0:90 ip community-list standard 1_78_89 permit 65000:1 0:78 0:89 ip community-list standard 1_79_88 permit 65000:1 0:79 0:88 ip community-list standard 1_80_87 permit 65000:1 0:80 0:87 ip community-list standard 1_81_86 permit 65000:1 0:81 0:86 ip community-list standard 1_82_85 permit 65000:1 0:82 0:85 ip community-list standard 1_83_84 permit 65000:1 0:83 0:84 ip community-list expanded c167 permit 1 ^65000:4_0:167_0:1$ ip community-list expanded c167 permit 2 ^65000:3_0:168_0:1$ ip community-list expanded c167 permit 3 ^65000:3_0:169_0:2$ ip community-list expanded c167 permit 4 ^65000:3_0:170_0:3$ ip community-list expanded c167 permit 5 ^65000:3_0:171_0:4$ ip community-list expanded c167 permit 6 ^65000:3_0:172_0:5$ ip community-list expanded c167 permit 7 ^65000:3_0:173_0:6$ ip community-list expanded c167 permit 8 ^65000:3_0:174_0:7$ ip community-list expanded c167 permit 9 ^65000:3_0:175_0:8$ ip community-list expanded c167 permit 10 ^65000:3_0:176_0:9$ ip community-list expanded c167 permit 11 ^65000:3_0:177_0:10$ ip community-list expanded c167 permit 12 ^65000:3_0:178_0:11$ ip community-list expanded c167 permit 13 ^65000:3_0:179_0:12$ ip community-list expanded c167 permit 14 ^65000:3_0:180_0:13$ ip community-list expanded c167 permit 15 ^65000:3_0:181_0:14$ ip community-list expanded c167 permit 16 ^65000:3_0:182_0:15$ ip community-list expanded c167 permit 17 ^65000:3_0:183_0:16$ ip community-list expanded c167 permit 18 ^65000:3_0:184_0:17$ ip community-list expanded c167 permit 19 ^65000:3_0:185_0:18$ ip community-list expanded c167 permit 20 ^65000:3_0:186_0:19$ ip community-list expanded c167 permit 21 ^65000:3_0:187_0:20$ ip community-list expanded c167 permit 22 ^65000:3_0:188_0:21$ ip community-list expanded c167 permit 23 ^65000:3_0:189_0:22$ ip community-list expanded c167 permit 24 ^65000:3_0:190_0:23$ ip community-list expanded c167 permit 25 ^65000:3_0:191_0:24$ ip community-list expanded c167 permit 26 ^65000:3_0:192_0:25$ ip community-list expanded c167 permit 27 ^65000:3_0:193_0:26$ ip community-list expanded c167 permit 28 ^65000:3_0:194_0:27$ ip community-list expanded c167 permit 29 ^65000:3_0:195_0:28$ ip community-list expanded c167 permit 30 ^65000:3_0:196_0:29$ ip community-list expanded c167 permit 31 ^65000:3_0:197_0:30$ ip community-list expanded c167 permit 32 ^65000:3_0:198_0:31$ ip community-list expanded c167 permit 33 ^65000:3_0:199_0:32$ ip community-list expanded c167 permit 34 ^65000:3_0:200_0:33$ ip community-list expanded c167 permit 35 ^65000:3_0:201_0:34$ ip community-list expanded c167 permit 36 ^65000:3_0:202_0:35$ ip community-list expanded c167 permit 37 ^65000:3_0:203_0:36$ ip community-list expanded c167 permit 38 ^65000:3_0:204_0:37$ ip community-list expanded c167 permit 39 ^65000:3_0:205_0:38$ ip community-list expanded c167 permit 40 ^65000:3_0:206_0:39$ ip community-list expanded c167 permit 41 ^65000:3_0:207_0:40$ ip community-list expanded c167 permit 42 ^65000:3_0:208_0:41$ ip community-list expanded c167 permit 43 ^65000:3_0:209_0:42$ ip community-list expanded c167 permit 44 ^65000:3_0:210_0:43$ ip community-list expanded c167 permit 45 ^65000:3_0:211_0:44$ ip community-list expanded c167 permit 46 ^65000:3_0:212_0:45$ ip community-list expanded c167 permit 47 ^65000:3_0:213_0:46$ ip community-list expanded c167 permit 48 ^65000:3_0:214_0:47$ ip community-list expanded c167 permit 49 ^65000:3_0:215_0:48$ ip community-list expanded c167 permit 50 ^65000:3_0:216_0:49$ ip community-list expanded c167 permit 51 ^65000:3_0:217_0:50$ ip community-list expanded c167 permit 52 ^65000:3_0:218_0:51$ ip community-list expanded c167 permit 53 ^65000:3_0:219_0:52$ ip community-list expanded c167 permit 54 ^65000:3_0:220_0:53$ ip community-list expanded c167 permit 55 ^65000:3_0:221_0:54$ ip community-list expanded c167 permit 56 ^65000:3_0:222_0:55$ ip community-list expanded c167 permit 57 ^65000:3_0:223_0:56$ ip community-list expanded c167 permit 58 ^65000:3_0:224_0:57$ ip community-list expanded c167 permit 59 ^65000:3_0:225_0:58$ ip community-list expanded c167 permit 60 ^65000:3_0:226_0:59$ ip community-list expanded c167 permit 61 ^65000:3_0:227_0:60$ ip community-list expanded c167 permit 62 ^65000:3_0:228_0:61$ ip community-list expanded c167 permit 63 ^65000:3_0:229_0:62$ ip community-list expanded c167 permit 64 ^65000:3_0:230_0:63$ ip community-list expanded c167 permit 65 ^65000:3_0:231_0:64$ ip community-list expanded c167 permit 66 ^65000:3_0:232_0:65$ ip community-list expanded c167 permit 67 ^65000:3_0:233_0:66$ ip community-list expanded c167 permit 68 ^65000:3_0:234_0:67$ ip community-list expanded c167 permit 69 ^65000:3_0:235_0:68$ ip community-list expanded c167 permit 70 ^65000:3_0:236_0:69$ ip community-list expanded c167 permit 71 ^65000:3_0:237_0:70$ ip community-list expanded c167 permit 72 ^65000:3_0:238_0:71$ ip community-list expanded c167 permit 73 ^65000:3_0:239_0:72$ ip community-list expanded c167 permit 74 ^65000:3_0:240_0:73$ ip community-list expanded c167 permit 75 ^65000:3_0:241_0:74$ ip community-list expanded c167 permit 76 ^65000:3_0:242_0:75$ ip community-list expanded c167 permit 77 ^65000:3_0:243_0:76$ ip community-list expanded c167 permit 78 ^65000:3_0:244_0:77$ ip community-list expanded c167 permit 79 ^65000:3_0:245_0:78$ ip community-list expanded c167 permit 80 ^65000:3_0:246_0:79$ ip community-list expanded c167 permit 81 ^65000:3_0:247_0:80$ ip community-list expanded c167 permit 82 ^65000:3_0:248_0:81$ ip community-list expanded c167 permit 83 ^65000:3_0:249_0:82$ ip community-list expanded c167 permit 84 ^65000:3_0:250_0:83$ ip community-list expanded c167 permit 85 ^65000:3_0:251_0:84$ ip community-list expanded c167 permit 86 ^65000:3_0:252_0:85$ ip community-list expanded c167 permit 87 ^65000:3_0:253_0:86$ ip community-list expanded c167 permit 88 ^65000:3_0:254_0:87$ ip community-list expanded c167 permit 89 ^65000:3_0:255_0:88$ ip community-list expanded c167 permit 90 ^65000:3_0:256_0:89$ route-map calculator permit 1415 match community 1_1_166 2_1_167 1_2_165 1_3_164 1_4_163 set community 0:167 route-map calculator permit 1416 match community 1_5_162 1_6_161 1_7_160 1_8_159 1_9_158 set community 0:167 route-map calculator permit 1417 match community 1_10_157 1_11_156 1_12_155 1_13_154 1_14_153 set community 0:167 route-map calculator permit 1418 match community 1_15_152 1_16_151 1_17_150 1_18_149 1_19_148 set community 0:167 route-map calculator permit 1419 match community 1_20_147 1_21_146 1_22_145 1_23_144 1_24_143 set community 0:167 route-map calculator permit 1420 match community 1_25_142 1_26_141 1_27_140 1_28_139 1_29_138 set community 0:167 route-map calculator permit 1421 match community 1_30_137 1_31_136 1_32_135 1_33_134 1_34_133 set community 0:167 route-map calculator permit 1422 match community 1_35_132 1_36_131 1_37_130 1_38_129 1_39_128 set community 0:167 route-map calculator permit 1423 match community 1_40_127 1_41_126 1_42_125 1_43_124 1_44_123 set community 0:167 route-map calculator permit 1424 match community 1_45_122 1_46_121 1_47_120 1_48_119 1_49_118 set community 0:167 route-map calculator permit 1425 match community 1_50_117 1_51_116 1_52_115 1_53_114 1_54_113 set community 0:167 route-map calculator permit 1426 match community 1_55_112 1_56_111 1_57_110 1_58_109 1_59_108 set community 0:167 route-map calculator permit 1427 match community 1_60_107 1_61_106 1_62_105 1_63_104 1_64_103 set community 0:167 route-map calculator permit 1428 match community 1_65_102 1_66_101 1_67_100 1_68_99 1_69_98 set community 0:167 route-map calculator permit 1429 match community 1_70_97 1_71_96 1_72_95 1_73_94 1_74_93 set community 0:167 route-map calculator permit 1430 match community 1_75_92 1_76_91 1_77_90 1_78_89 1_79_88 set community 0:167 route-map calculator permit 1431 match community 1_80_87 1_81_86 1_82_85 1_83_84 c4_167_1 set community 0:167 route-map calculator permit 1432 match community c3_168_1 c3_169_2 c3_170_3 c3_171_4 c3_172_5 set community 0:167 route-map calculator permit 1433 match community c3_173_6 c3_174_7 c3_175_8 c3_176_9 c3_177_10 set community 0:167 route-map calculator permit 1434 match community c3_178_11 c3_179_12 c3_180_13 c3_181_14 c3_182_15 set community 0:167 route-map calculator permit 1435 match community c3_183_16 c3_184_17 c3_185_18 c3_186_19 c3_187_20 set community 0:167 route-map calculator permit 1436 match community c3_188_21 c3_189_22 c3_190_23 c3_191_24 c3_192_25 set community 0:167 route-map calculator permit 1437 match community c3_193_26 c3_194_27 c3_195_28 c3_196_29 c3_197_30 set community 0:167 route-map calculator permit 1438 match community c3_198_31 c3_199_32 c3_200_33 c3_201_34 c3_202_35 set community 0:167 route-map calculator permit 1439 match community c3_203_36 c3_204_37 c3_205_38 c3_206_39 c3_207_40 set community 0:167 route-map calculator permit 1440 match community c3_208_41 c3_209_42 c3_210_43 c3_211_44 c3_212_45 set community 0:167 route-map calculator permit 1441 match community c3_213_46 c3_214_47 c3_215_48 c3_216_49 c3_217_50 set community 0:167 route-map calculator permit 1442 match community c3_218_51 c3_219_52 c3_220_53 c3_221_54 c3_222_55 set community 0:167 route-map calculator permit 1443 match community c3_223_56 c3_224_57 c3_225_58 c3_226_59 c3_227_60 set community 0:167 route-map calculator permit 1444 match community c3_228_61 c3_229_62 c3_230_63 c3_231_64 c3_232_65 set community 0:167 route-map calculator permit 1445 match community c3_233_66 c3_234_67 c3_235_68 c3_236_69 c3_237_70 set community 0:167 route-map calculator permit 1446 match community c3_238_71 c3_239_72 c3_240_73 c3_241_74 c3_242_75 set community 0:167 route-map calculator permit 1447 match community c3_243_76 c3_244_77 c3_245_78 c3_246_79 c3_247_80 set community 0:167 route-map calculator permit 1448 match community c3_248_81 c3_249_82 c3_250_83 c3_251_84 c3_252_85 set community 0:167 route-map calculator permit 1449 match community c3_253_86 c3_254_87 c3_255_88 c3_256_89 set community 0:167 ip community-list standard 2_23_29 permit 65000:2 0:23 0:29 route-map calculator permit 1450 match community 2_23_29 set community 0:667 ip community-list standard 2_30_234 permit 65000:2 0:30 0:234 ip community-list standard 2_36_195 permit 65000:2 0:36 0:195 ip community-list standard 2_39_180 permit 65000:2 0:39 0:180 ip community-list standard 2_45_156 permit 65000:2 0:45 0:156 ip community-list standard 2_52_135 permit 65000:2 0:52 0:135 ip community-list standard 2_54_130 permit 65000:2 0:54 0:130 ip community-list standard 2_60_117 permit 65000:2 0:60 0:117 ip community-list standard 2_65_108 permit 65000:2 0:65 0:108 ip community-list standard 2_78_90 permit 65000:2 0:78 0:90 route-map calculator permit 1451 match community 2_30_234 2_36_195 2_39_180 2_45_156 2_52_135 set community 0:7020 route-map calculator permit 1452 match community 2_54_130 2_60_117 2_65_108 2_78_90 set community 0:7020 ip community-list standard 2_184_216 permit 65000:2 0:184 0:216 ip community-list standard 2_192_207 permit 65000:2 0:192 0:207 route-map calculator permit 1453 match community 2_184_216 2_192_207 set community 0:39744 ip community-list standard 2_148_169 permit 65000:2 0:148 0:169 route-map calculator permit 1454 match community 2_148_169 set community 0:25012 ip community-list standard 2_39_212 permit 65000:2 0:39 0:212 ip community-list standard 2_52_159 permit 65000:2 0:52 0:159 ip community-list standard 2_53_156 permit 65000:2 0:53 0:156 ip community-list standard 2_78_106 permit 65000:2 0:78 0:106 route-map calculator permit 1455 match community 2_39_212 2_52_159 2_53_156 2_78_106 set community 0:8268 ip community-list standard 2_77_223 permit 65000:2 0:77 0:223 route-map calculator permit 1456 match community 2_77_223 set community 0:17171 ip community-list standard 2_2_201 permit 65000:2 0:2 0:201 ip community-list standard 2_3_134 permit 65000:2 0:3 0:134 ip community-list standard 2_6_67 permit 65000:2 0:6 0:67 ip community-list standard 1_146_256 permit 65000:1 0:146 0:256 ip community-list standard 1_147_255 permit 65000:1 0:147 0:255 ip community-list standard 1_148_254 permit 65000:1 0:148 0:254 ip community-list standard 1_149_253 permit 65000:1 0:149 0:253 ip community-list standard 1_150_252 permit 65000:1 0:150 0:252 ip community-list standard 1_151_251 permit 65000:1 0:151 0:251 ip community-list standard 1_152_250 permit 65000:1 0:152 0:250 ip community-list standard 1_153_249 permit 65000:1 0:153 0:249 ip community-list standard 1_154_248 permit 65000:1 0:154 0:248 ip community-list standard 1_155_247 permit 65000:1 0:155 0:247 ip community-list standard 1_156_246 permit 65000:1 0:156 0:246 ip community-list standard 1_157_245 permit 65000:1 0:157 0:245 ip community-list standard 1_158_244 permit 65000:1 0:158 0:244 ip community-list standard 1_159_243 permit 65000:1 0:159 0:243 ip community-list standard 1_160_242 permit 65000:1 0:160 0:242 ip community-list standard 1_161_241 permit 65000:1 0:161 0:241 ip community-list standard 1_162_240 permit 65000:1 0:162 0:240 ip community-list standard 1_163_239 permit 65000:1 0:163 0:239 ip community-list standard 1_164_238 permit 65000:1 0:164 0:238 ip community-list standard 1_165_237 permit 65000:1 0:165 0:237 ip community-list standard 1_166_236 permit 65000:1 0:166 0:236 ip community-list standard 1_167_235 permit 65000:1 0:167 0:235 ip community-list standard 1_168_234 permit 65000:1 0:168 0:234 ip community-list standard 1_169_233 permit 65000:1 0:169 0:233 ip community-list standard 1_170_232 permit 65000:1 0:170 0:232 ip community-list standard 1_171_231 permit 65000:1 0:171 0:231 ip community-list standard 1_172_230 permit 65000:1 0:172 0:230 ip community-list standard 1_173_229 permit 65000:1 0:173 0:229 ip community-list standard 1_174_228 permit 65000:1 0:174 0:228 ip community-list standard 1_175_227 permit 65000:1 0:175 0:227 ip community-list standard 1_176_226 permit 65000:1 0:176 0:226 ip community-list standard 1_177_225 permit 65000:1 0:177 0:225 ip community-list standard 1_178_224 permit 65000:1 0:178 0:224 ip community-list standard 1_179_223 permit 65000:1 0:179 0:223 ip community-list standard 1_180_222 permit 65000:1 0:180 0:222 ip community-list standard 1_181_221 permit 65000:1 0:181 0:221 ip community-list standard 1_182_220 permit 65000:1 0:182 0:220 ip community-list standard 1_183_219 permit 65000:1 0:183 0:219 ip community-list standard 1_184_218 permit 65000:1 0:184 0:218 ip community-list standard 1_185_217 permit 65000:1 0:185 0:217 ip community-list standard 1_186_216 permit 65000:1 0:186 0:216 ip community-list standard 1_187_215 permit 65000:1 0:187 0:215 ip community-list standard 1_188_214 permit 65000:1 0:188 0:214 ip community-list standard 1_189_213 permit 65000:1 0:189 0:213 ip community-list standard 1_190_212 permit 65000:1 0:190 0:212 ip community-list standard 1_191_211 permit 65000:1 0:191 0:211 ip community-list standard 1_192_210 permit 65000:1 0:192 0:210 ip community-list standard 1_193_209 permit 65000:1 0:193 0:209 ip community-list standard 1_194_208 permit 65000:1 0:194 0:208 ip community-list standard 1_195_207 permit 65000:1 0:195 0:207 ip community-list standard 1_196_206 permit 65000:1 0:196 0:206 ip community-list standard 1_197_205 permit 65000:1 0:197 0:205 ip community-list standard 1_198_204 permit 65000:1 0:198 0:204 ip community-list standard 1_199_203 permit 65000:1 0:199 0:203 ip community-list standard 1_200_202 permit 65000:1 0:200 0:202 ip community-list standard 1_201_201 permit 65000:1 0:201 0:201 route-map calculator permit 1457 match community 2_2_201 2_3_134 2_6_67 1_146_256 1_147_255 set community 0:402 route-map calculator permit 1458 match community 1_148_254 1_149_253 1_150_252 1_151_251 1_152_250 set community 0:402 route-map calculator permit 1459 match community 1_153_249 1_154_248 1_155_247 1_156_246 1_157_245 set community 0:402 route-map calculator permit 1460 match community 1_158_244 1_159_243 1_160_242 1_161_241 1_162_240 set community 0:402 route-map calculator permit 1461 match community 1_163_239 1_164_238 1_165_237 1_166_236 1_167_235 set community 0:402 route-map calculator permit 1462 match community 1_168_234 1_169_233 1_170_232 1_171_231 1_172_230 set community 0:402 route-map calculator permit 1463 match community 1_173_229 1_174_228 1_175_227 1_176_226 1_177_225 set community 0:402 route-map calculator permit 1464 match community 1_178_224 1_179_223 1_180_222 1_181_221 1_182_220 set community 0:402 route-map calculator permit 1465 match community 1_183_219 1_184_218 1_185_217 1_186_216 1_187_215 set community 0:402 route-map calculator permit 1466 match community 1_188_214 1_189_213 1_190_212 1_191_211 1_192_210 set community 0:402 route-map calculator permit 1467 match community 1_193_209 1_194_208 1_195_207 1_196_206 1_197_205 set community 0:402 route-map calculator permit 1468 match community 1_198_204 1_199_203 1_200_202 1_201_201 set community 0:402 ip community-list standard 2_35_142 permit 65000:2 0:35 0:142 ip community-list standard 2_70_71 permit 65000:2 0:70 0:71 route-map calculator permit 1469 match community 2_35_142 2_70_71 set community 0:4970 ip community-list standard 2_28_149 permit 65000:2 0:28 0:149 route-map calculator permit 1470 match community 2_28_149 set community 0:4172 ip community-list standard 2_107_253 permit 65000:2 0:107 0:253 route-map calculator permit 1471 match community 2_107_253 set community 0:27071 ip community-list standard 2_115_249 permit 65000:2 0:115 0:249 route-map calculator permit 1472 match community 2_115_249 set community 0:28635 ip community-list standard 1_141_256 permit 65000:1 0:141 0:256 ip community-list standard 1_142_255 permit 65000:1 0:142 0:255 ip community-list standard 1_143_254 permit 65000:1 0:143 0:254 ip community-list standard 1_144_253 permit 65000:1 0:144 0:253 ip community-list standard 1_145_252 permit 65000:1 0:145 0:252 ip community-list standard 1_146_251 permit 65000:1 0:146 0:251 ip community-list standard 1_147_250 permit 65000:1 0:147 0:250 ip community-list standard 1_148_249 permit 65000:1 0:148 0:249 ip community-list standard 1_149_248 permit 65000:1 0:149 0:248 ip community-list standard 1_150_247 permit 65000:1 0:150 0:247 ip community-list standard 1_151_246 permit 65000:1 0:151 0:246 ip community-list standard 1_152_245 permit 65000:1 0:152 0:245 ip community-list standard 1_153_244 permit 65000:1 0:153 0:244 ip community-list standard 1_154_243 permit 65000:1 0:154 0:243 ip community-list standard 1_155_242 permit 65000:1 0:155 0:242 ip community-list standard 1_156_241 permit 65000:1 0:156 0:241 ip community-list standard 1_157_240 permit 65000:1 0:157 0:240 ip community-list standard 1_158_239 permit 65000:1 0:158 0:239 ip community-list standard 1_159_238 permit 65000:1 0:159 0:238 ip community-list standard 1_160_237 permit 65000:1 0:160 0:237 ip community-list standard 1_161_236 permit 65000:1 0:161 0:236 ip community-list standard 1_162_235 permit 65000:1 0:162 0:235 ip community-list standard 1_163_234 permit 65000:1 0:163 0:234 ip community-list standard 1_164_233 permit 65000:1 0:164 0:233 ip community-list standard 1_165_232 permit 65000:1 0:165 0:232 ip community-list standard 1_166_231 permit 65000:1 0:166 0:231 ip community-list standard 1_167_230 permit 65000:1 0:167 0:230 ip community-list standard 1_168_229 permit 65000:1 0:168 0:229 ip community-list standard 1_169_228 permit 65000:1 0:169 0:228 ip community-list standard 1_170_227 permit 65000:1 0:170 0:227 ip community-list standard 1_171_226 permit 65000:1 0:171 0:226 ip community-list standard 1_172_225 permit 65000:1 0:172 0:225 ip community-list standard 1_173_224 permit 65000:1 0:173 0:224 ip community-list standard 1_174_223 permit 65000:1 0:174 0:223 ip community-list standard 1_175_222 permit 65000:1 0:175 0:222 ip community-list standard 1_176_221 permit 65000:1 0:176 0:221 ip community-list standard 1_177_220 permit 65000:1 0:177 0:220 ip community-list standard 1_178_219 permit 65000:1 0:178 0:219 ip community-list standard 1_179_218 permit 65000:1 0:179 0:218 ip community-list standard 1_180_217 permit 65000:1 0:180 0:217 ip community-list standard 1_181_216 permit 65000:1 0:181 0:216 ip community-list standard 1_182_215 permit 65000:1 0:182 0:215 ip community-list standard 1_183_214 permit 65000:1 0:183 0:214 ip community-list standard 1_184_213 permit 65000:1 0:184 0:213 ip community-list standard 1_185_212 permit 65000:1 0:185 0:212 ip community-list standard 1_186_211 permit 65000:1 0:186 0:211 ip community-list standard 1_187_210 permit 65000:1 0:187 0:210 ip community-list standard 1_188_209 permit 65000:1 0:188 0:209 ip community-list standard 1_189_208 permit 65000:1 0:189 0:208 ip community-list standard 1_190_207 permit 65000:1 0:190 0:207 ip community-list standard 1_191_206 permit 65000:1 0:191 0:206 ip community-list standard 1_192_205 permit 65000:1 0:192 0:205 ip community-list standard 1_193_204 permit 65000:1 0:193 0:204 ip community-list standard 1_194_203 permit 65000:1 0:194 0:203 ip community-list standard 1_195_202 permit 65000:1 0:195 0:202 ip community-list standard 1_196_201 permit 65000:1 0:196 0:201 ip community-list standard 1_197_200 permit 65000:1 0:197 0:200 ip community-list standard 1_198_199 permit 65000:1 0:198 0:199 route-map calculator permit 1473 match community 1_141_256 1_142_255 1_143_254 1_144_253 1_145_252 set community 0:397 route-map calculator permit 1474 match community 1_146_251 1_147_250 1_148_249 1_149_248 1_150_247 set community 0:397 route-map calculator permit 1475 match community 1_151_246 1_152_245 1_153_244 1_154_243 1_155_242 set community 0:397 route-map calculator permit 1476 match community 1_156_241 1_157_240 1_158_239 1_159_238 1_160_237 set community 0:397 route-map calculator permit 1477 match community 1_161_236 1_162_235 1_163_234 1_164_233 1_165_232 set community 0:397 route-map calculator permit 1478 match community 1_166_231 1_167_230 1_168_229 1_169_228 1_170_227 set community 0:397 route-map calculator permit 1479 match community 1_171_226 1_172_225 1_173_224 1_174_223 1_175_222 set community 0:397 route-map calculator permit 1480 match community 1_176_221 1_177_220 1_178_219 1_179_218 1_180_217 set community 0:397 route-map calculator permit 1481 match community 1_181_216 1_182_215 1_183_214 1_184_213 1_185_212 set community 0:397 route-map calculator permit 1482 match community 1_186_211 1_187_210 1_188_209 1_189_208 1_190_207 set community 0:397 route-map calculator permit 1483 match community 1_191_206 1_192_205 1_193_204 1_194_203 1_195_202 set community 0:397 route-map calculator permit 1484 match community 1_196_201 1_197_200 1_198_199 set community 0:397 ip community-list standard 2_89_219 permit 65000:2 0:89 0:219 route-map calculator permit 1485 match community 2_89_219 set community 0:19491 ip community-list standard 2_108_227 permit 65000:2 0:108 0:227 route-map calculator permit 1486 match community 2_108_227 set community 0:24516 ip community-list standard 2_116_169 permit 65000:2 0:116 0:169 route-map calculator permit 1487 match community 2_116_169 set community 0:19604 ip community-list standard 2_114_181 permit 65000:2 0:114 0:181 route-map calculator permit 1488 match community 2_114_181 set community 0:20634 ip community-list standard 2_50_142 permit 65000:2 0:50 0:142 ip community-list standard 2_71_100 permit 65000:2 0:71 0:100 route-map calculator permit 1489 match community 2_50_142 2_71_100 set community 0:7100 ip community-list standard 2_135_139 permit 65000:2 0:135 0:139 route-map calculator permit 1490 match community 2_135_139 set community 0:18765 ip community-list standard 1_1_144 permit 65000:1 0:1 0:144 ip community-list standard 2_1_145 permit 65000:2 0:1 0:145 ip community-list standard 1_2_143 permit 65000:1 0:2 0:143 ip community-list standard 1_3_142 permit 65000:1 0:3 0:142 ip community-list standard 1_4_141 permit 65000:1 0:4 0:141 ip community-list standard 2_5_29 permit 65000:2 0:5 0:29 ip community-list standard 1_5_140 permit 65000:1 0:5 0:140 ip community-list standard 1_6_139 permit 65000:1 0:6 0:139 ip community-list standard 1_7_138 permit 65000:1 0:7 0:138 ip community-list standard 1_8_137 permit 65000:1 0:8 0:137 ip community-list standard 1_9_136 permit 65000:1 0:9 0:136 ip community-list standard 1_10_135 permit 65000:1 0:10 0:135 ip community-list standard 1_11_134 permit 65000:1 0:11 0:134 ip community-list standard 1_12_133 permit 65000:1 0:12 0:133 ip community-list standard 1_13_132 permit 65000:1 0:13 0:132 ip community-list standard 1_14_131 permit 65000:1 0:14 0:131 ip community-list standard 1_15_130 permit 65000:1 0:15 0:130 ip community-list standard 1_16_129 permit 65000:1 0:16 0:129 ip community-list standard 1_17_128 permit 65000:1 0:17 0:128 ip community-list standard 1_18_127 permit 65000:1 0:18 0:127 ip community-list standard 1_19_126 permit 65000:1 0:19 0:126 ip community-list standard 1_20_125 permit 65000:1 0:20 0:125 ip community-list standard 1_21_124 permit 65000:1 0:21 0:124 ip community-list standard 1_22_123 permit 65000:1 0:22 0:123 ip community-list standard 1_23_122 permit 65000:1 0:23 0:122 ip community-list standard 1_24_121 permit 65000:1 0:24 0:121 ip community-list standard 1_25_120 permit 65000:1 0:25 0:120 ip community-list standard 1_26_119 permit 65000:1 0:26 0:119 ip community-list standard 1_27_118 permit 65000:1 0:27 0:118 ip community-list standard 1_28_117 permit 65000:1 0:28 0:117 ip community-list standard 1_29_116 permit 65000:1 0:29 0:116 ip community-list standard 1_30_115 permit 65000:1 0:30 0:115 ip community-list standard 1_31_114 permit 65000:1 0:31 0:114 ip community-list standard 1_32_113 permit 65000:1 0:32 0:113 ip community-list standard 1_33_112 permit 65000:1 0:33 0:112 ip community-list standard 1_34_111 permit 65000:1 0:34 0:111 ip community-list standard 1_35_110 permit 65000:1 0:35 0:110 ip community-list standard 1_36_109 permit 65000:1 0:36 0:109 ip community-list standard 1_37_108 permit 65000:1 0:37 0:108 ip community-list standard 1_38_107 permit 65000:1 0:38 0:107 ip community-list standard 1_39_106 permit 65000:1 0:39 0:106 ip community-list standard 1_40_105 permit 65000:1 0:40 0:105 ip community-list standard 1_41_104 permit 65000:1 0:41 0:104 ip community-list standard 1_42_103 permit 65000:1 0:42 0:103 ip community-list standard 1_43_102 permit 65000:1 0:43 0:102 ip community-list standard 1_44_101 permit 65000:1 0:44 0:101 ip community-list standard 1_45_100 permit 65000:1 0:45 0:100 ip community-list standard 1_46_99 permit 65000:1 0:46 0:99 ip community-list standard 1_47_98 permit 65000:1 0:47 0:98 ip community-list standard 1_48_97 permit 65000:1 0:48 0:97 ip community-list standard 1_49_96 permit 65000:1 0:49 0:96 ip community-list standard 1_50_95 permit 65000:1 0:50 0:95 ip community-list standard 1_51_94 permit 65000:1 0:51 0:94 ip community-list standard 1_52_93 permit 65000:1 0:52 0:93 ip community-list standard 1_53_92 permit 65000:1 0:53 0:92 ip community-list standard 1_54_91 permit 65000:1 0:54 0:91 ip community-list standard 1_55_90 permit 65000:1 0:55 0:90 ip community-list standard 1_56_89 permit 65000:1 0:56 0:89 ip community-list standard 1_57_88 permit 65000:1 0:57 0:88 ip community-list standard 1_58_87 permit 65000:1 0:58 0:87 ip community-list standard 1_59_86 permit 65000:1 0:59 0:86 ip community-list standard 1_60_85 permit 65000:1 0:60 0:85 ip community-list standard 1_61_84 permit 65000:1 0:61 0:84 ip community-list standard 1_62_83 permit 65000:1 0:62 0:83 ip community-list standard 1_63_82 permit 65000:1 0:63 0:82 ip community-list standard 1_64_81 permit 65000:1 0:64 0:81 ip community-list standard 1_65_80 permit 65000:1 0:65 0:80 ip community-list standard 1_66_79 permit 65000:1 0:66 0:79 ip community-list standard 1_67_78 permit 65000:1 0:67 0:78 ip community-list standard 1_68_77 permit 65000:1 0:68 0:77 ip community-list standard 1_69_76 permit 65000:1 0:69 0:76 ip community-list standard 1_70_75 permit 65000:1 0:70 0:75 ip community-list standard 1_71_74 permit 65000:1 0:71 0:74 ip community-list standard 1_72_73 permit 65000:1 0:72 0:73 ip community-list expanded c145 permit 1 ^65000:4_0:145_0:1$ ip community-list expanded c145 permit 2 ^65000:3_0:146_0:1$ ip community-list expanded c145 permit 3 ^65000:3_0:147_0:2$ ip community-list expanded c145 permit 4 ^65000:3_0:148_0:3$ ip community-list expanded c145 permit 5 ^65000:3_0:149_0:4$ ip community-list expanded c145 permit 6 ^65000:3_0:150_0:5$ ip community-list expanded c145 permit 7 ^65000:3_0:151_0:6$ ip community-list expanded c145 permit 8 ^65000:3_0:152_0:7$ ip community-list expanded c145 permit 9 ^65000:3_0:153_0:8$ ip community-list expanded c145 permit 10 ^65000:3_0:154_0:9$ ip community-list expanded c145 permit 11 ^65000:3_0:155_0:10$ ip community-list expanded c145 permit 12 ^65000:3_0:156_0:11$ ip community-list expanded c145 permit 13 ^65000:3_0:157_0:12$ ip community-list expanded c145 permit 14 ^65000:3_0:158_0:13$ ip community-list expanded c145 permit 15 ^65000:3_0:159_0:14$ ip community-list expanded c145 permit 16 ^65000:3_0:160_0:15$ ip community-list expanded c145 permit 17 ^65000:3_0:161_0:16$ ip community-list expanded c145 permit 18 ^65000:3_0:162_0:17$ ip community-list expanded c145 permit 19 ^65000:3_0:163_0:18$ ip community-list expanded c145 permit 20 ^65000:3_0:164_0:19$ ip community-list expanded c145 permit 21 ^65000:3_0:165_0:20$ ip community-list expanded c145 permit 22 ^65000:3_0:166_0:21$ ip community-list expanded c145 permit 23 ^65000:3_0:167_0:22$ ip community-list expanded c145 permit 24 ^65000:3_0:168_0:23$ ip community-list expanded c145 permit 25 ^65000:3_0:169_0:24$ ip community-list expanded c145 permit 26 ^65000:3_0:170_0:25$ ip community-list expanded c145 permit 27 ^65000:3_0:171_0:26$ ip community-list expanded c145 permit 28 ^65000:3_0:172_0:27$ ip community-list expanded c145 permit 29 ^65000:3_0:173_0:28$ ip community-list expanded c145 permit 30 ^65000:3_0:174_0:29$ ip community-list expanded c145 permit 31 ^65000:3_0:175_0:30$ ip community-list expanded c145 permit 32 ^65000:3_0:176_0:31$ ip community-list expanded c145 permit 33 ^65000:3_0:177_0:32$ ip community-list expanded c145 permit 34 ^65000:3_0:178_0:33$ ip community-list expanded c145 permit 35 ^65000:3_0:179_0:34$ ip community-list expanded c145 permit 36 ^65000:3_0:180_0:35$ ip community-list expanded c145 permit 37 ^65000:3_0:181_0:36$ ip community-list expanded c145 permit 38 ^65000:3_0:182_0:37$ ip community-list expanded c145 permit 39 ^65000:3_0:183_0:38$ ip community-list expanded c145 permit 40 ^65000:3_0:184_0:39$ ip community-list expanded c145 permit 41 ^65000:3_0:185_0:40$ ip community-list expanded c145 permit 42 ^65000:3_0:186_0:41$ ip community-list expanded c145 permit 43 ^65000:3_0:187_0:42$ ip community-list expanded c145 permit 44 ^65000:3_0:188_0:43$ ip community-list expanded c145 permit 45 ^65000:3_0:189_0:44$ ip community-list expanded c145 permit 46 ^65000:3_0:190_0:45$ ip community-list expanded c145 permit 47 ^65000:3_0:191_0:46$ ip community-list expanded c145 permit 48 ^65000:3_0:192_0:47$ ip community-list expanded c145 permit 49 ^65000:3_0:193_0:48$ ip community-list expanded c145 permit 50 ^65000:3_0:194_0:49$ ip community-list expanded c145 permit 51 ^65000:3_0:195_0:50$ ip community-list expanded c145 permit 52 ^65000:3_0:196_0:51$ ip community-list expanded c145 permit 53 ^65000:3_0:197_0:52$ ip community-list expanded c145 permit 54 ^65000:3_0:198_0:53$ ip community-list expanded c145 permit 55 ^65000:3_0:199_0:54$ ip community-list expanded c145 permit 56 ^65000:3_0:200_0:55$ ip community-list expanded c145 permit 57 ^65000:3_0:201_0:56$ ip community-list expanded c145 permit 58 ^65000:3_0:202_0:57$ ip community-list expanded c145 permit 59 ^65000:3_0:203_0:58$ ip community-list expanded c145 permit 60 ^65000:3_0:204_0:59$ ip community-list expanded c145 permit 61 ^65000:3_0:205_0:60$ ip community-list expanded c145 permit 62 ^65000:3_0:206_0:61$ ip community-list expanded c145 permit 63 ^65000:3_0:207_0:62$ ip community-list expanded c145 permit 64 ^65000:3_0:208_0:63$ ip community-list expanded c145 permit 65 ^65000:3_0:209_0:64$ ip community-list expanded c145 permit 66 ^65000:3_0:210_0:65$ ip community-list expanded c145 permit 67 ^65000:3_0:211_0:66$ ip community-list expanded c145 permit 68 ^65000:3_0:212_0:67$ ip community-list expanded c145 permit 69 ^65000:3_0:213_0:68$ ip community-list expanded c145 permit 70 ^65000:3_0:214_0:69$ ip community-list expanded c145 permit 71 ^65000:3_0:215_0:70$ ip community-list expanded c145 permit 72 ^65000:3_0:216_0:71$ ip community-list expanded c145 permit 73 ^65000:3_0:217_0:72$ ip community-list expanded c145 permit 74 ^65000:3_0:218_0:73$ ip community-list expanded c145 permit 75 ^65000:3_0:219_0:74$ ip community-list expanded c145 permit 76 ^65000:3_0:220_0:75$ ip community-list expanded c145 permit 77 ^65000:3_0:221_0:76$ ip community-list expanded c145 permit 78 ^65000:3_0:222_0:77$ ip community-list expanded c145 permit 79 ^65000:3_0:223_0:78$ ip community-list expanded c145 permit 80 ^65000:3_0:224_0:79$ ip community-list expanded c145 permit 81 ^65000:3_0:225_0:80$ ip community-list expanded c145 permit 82 ^65000:3_0:226_0:81$ ip community-list expanded c145 permit 83 ^65000:3_0:227_0:82$ ip community-list expanded c145 permit 84 ^65000:3_0:228_0:83$ ip community-list expanded c145 permit 85 ^65000:3_0:229_0:84$ ip community-list expanded c145 permit 86 ^65000:3_0:230_0:85$ ip community-list expanded c145 permit 87 ^65000:3_0:231_0:86$ ip community-list expanded c145 permit 88 ^65000:3_0:232_0:87$ ip community-list expanded c145 permit 89 ^65000:3_0:233_0:88$ ip community-list expanded c145 permit 90 ^65000:3_0:234_0:89$ ip community-list expanded c145 permit 91 ^65000:3_0:235_0:90$ ip community-list expanded c145 permit 92 ^65000:3_0:236_0:91$ ip community-list expanded c145 permit 93 ^65000:3_0:237_0:92$ ip community-list expanded c145 permit 94 ^65000:3_0:238_0:93$ ip community-list expanded c145 permit 95 ^65000:3_0:239_0:94$ ip community-list expanded c145 permit 96 ^65000:3_0:240_0:95$ ip community-list expanded c145 permit 97 ^65000:3_0:241_0:96$ ip community-list expanded c145 permit 98 ^65000:3_0:242_0:97$ ip community-list expanded c145 permit 99 ^65000:3_0:243_0:98$ ip community-list expanded c145 permit 100 ^65000:3_0:244_0:99$ ip community-list expanded c145 permit 101 ^65000:3_0:245_0:100$ ip community-list expanded c145 permit 102 ^65000:3_0:246_0:101$ ip community-list expanded c145 permit 103 ^65000:3_0:247_0:102$ ip community-list expanded c145 permit 104 ^65000:3_0:248_0:103$ ip community-list expanded c145 permit 105 ^65000:3_0:249_0:104$ ip community-list expanded c145 permit 106 ^65000:3_0:250_0:105$ ip community-list expanded c145 permit 107 ^65000:3_0:251_0:106$ ip community-list expanded c145 permit 108 ^65000:3_0:252_0:107$ ip community-list expanded c145 permit 109 ^65000:3_0:253_0:108$ ip community-list expanded c145 permit 110 ^65000:3_0:254_0:109$ ip community-list expanded c145 permit 111 ^65000:3_0:255_0:110$ ip community-list expanded c145 permit 112 ^65000:3_0:256_0:111$ route-map calculator permit 1491 match community 1_1_144 2_1_145 1_2_143 1_3_142 1_4_141 set community 0:145 route-map calculator permit 1492 match community 2_5_29 1_5_140 1_6_139 1_7_138 1_8_137 set community 0:145 route-map calculator permit 1493 match community 1_9_136 1_10_135 1_11_134 1_12_133 1_13_132 set community 0:145 route-map calculator permit 1494 match community 1_14_131 1_15_130 1_16_129 1_17_128 1_18_127 set community 0:145 route-map calculator permit 1495 match community 1_19_126 1_20_125 1_21_124 1_22_123 1_23_122 set community 0:145 route-map calculator permit 1496 match community 1_24_121 1_25_120 1_26_119 1_27_118 1_28_117 set community 0:145 route-map calculator permit 1497 match community 1_29_116 1_30_115 1_31_114 1_32_113 1_33_112 set community 0:145 route-map calculator permit 1498 match community 1_34_111 1_35_110 1_36_109 1_37_108 1_38_107 set community 0:145 route-map calculator permit 1499 match community 1_39_106 1_40_105 1_41_104 1_42_103 1_43_102 set community 0:145 route-map calculator permit 1500 match community 1_44_101 1_45_100 1_46_99 1_47_98 1_48_97 set community 0:145 route-map calculator permit 1501 match community 1_49_96 1_50_95 1_51_94 1_52_93 1_53_92 set community 0:145 route-map calculator permit 1502 match community 1_54_91 1_55_90 1_56_89 1_57_88 1_58_87 set community 0:145 route-map calculator permit 1503 match community 1_59_86 1_60_85 1_61_84 1_62_83 1_63_82 set community 0:145 route-map calculator permit 1504 match community 1_64_81 1_65_80 1_66_79 1_67_78 1_68_77 set community 0:145 route-map calculator permit 1505 match community 1_69_76 1_70_75 1_71_74 1_72_73 c4_145_1 set community 0:145 route-map calculator permit 1506 match community c3_146_1 c3_147_2 c3_148_3 c3_149_4 c3_150_5 set community 0:145 route-map calculator permit 1507 match community c3_151_6 c3_152_7 c3_153_8 c3_154_9 c3_155_10 set community 0:145 route-map calculator permit 1508 match community c3_156_11 c3_157_12 c3_158_13 c3_159_14 c3_160_15 set community 0:145 route-map calculator permit 1509 match community c3_161_16 c3_162_17 c3_163_18 c3_164_19 c3_165_20 set community 0:145 route-map calculator permit 1510 match community c3_166_21 c3_167_22 c3_168_23 c3_169_24 c3_170_25 set community 0:145 route-map calculator permit 1511 match community c3_171_26 c3_172_27 c3_173_28 c3_174_29 c3_175_30 set community 0:145 route-map calculator permit 1512 match community c3_176_31 c3_177_32 c3_178_33 c3_179_34 c3_180_35 set community 0:145 route-map calculator permit 1513 match community c3_181_36 c3_182_37 c3_183_38 c3_184_39 c3_185_40 set community 0:145 route-map calculator permit 1514 match community c3_186_41 c3_187_42 c3_188_43 c3_189_44 c3_190_45 set community 0:145 route-map calculator permit 1515 match community c3_191_46 c3_192_47 c3_193_48 c3_194_49 c3_195_50 set community 0:145 route-map calculator permit 1516 match community c3_196_51 c3_197_52 c3_198_53 c3_199_54 c3_200_55 set community 0:145 route-map calculator permit 1517 match community c3_201_56 c3_202_57 c3_203_58 c3_204_59 c3_205_60 set community 0:145 route-map calculator permit 1518 match community c3_206_61 c3_207_62 c3_208_63 c3_209_64 c3_210_65 set community 0:145 route-map calculator permit 1519 match community c3_211_66 c3_212_67 c3_213_68 c3_214_69 c3_215_70 set community 0:145 route-map calculator permit 1520 match community c3_216_71 c3_217_72 c3_218_73 c3_219_74 c3_220_75 set community 0:145 route-map calculator permit 1521 match community c3_221_76 c3_222_77 c3_223_78 c3_224_79 c3_225_80 set community 0:145 route-map calculator permit 1522 match community c3_226_81 c3_227_82 c3_228_83 c3_229_84 c3_230_85 set community 0:145 route-map calculator permit 1523 match community c3_231_86 c3_232_87 c3_233_88 c3_234_89 c3_235_90 set community 0:145 route-map calculator permit 1524 match community c3_236_91 c3_237_92 c3_238_93 c3_239_94 c3_240_95 set community 0:145 route-map calculator permit 1525 match community c3_241_96 c3_242_97 c3_243_98 c3_244_99 c3_245_100 set community 0:145 route-map calculator permit 1526 match community c3_246_101 c3_247_102 c3_248_103 c3_249_104 c3_250_105 set community 0:145 route-map calculator permit 1527 match community c3_251_106 c3_252_107 c3_253_108 c3_254_109 c3_255_110 set community 0:145 route-map calculator permit 1528 match community c3_256_111 set community 0:145 ip community-list standard 2_82_239 permit 65000:2 0:82 0:239 route-map calculator permit 1529 match community 2_82_239 set community 0:19598 ip community-list standard 2_95_244 permit 65000:2 0:95 0:244 ip community-list standard 2_122_190 permit 65000:2 0:122 0:190 route-map calculator permit 1530 match community 2_95_244 2_122_190 set community 0:23180 ip community-list standard 2_132_188 permit 65000:2 0:132 0:188 ip community-list standard 2_141_176 permit 65000:2 0:141 0:176 route-map calculator permit 1531 match community 2_132_188 2_141_176 set community 0:24816 ip community-list standard 2_157_252 permit 65000:2 0:157 0:252 route-map calculator permit 1532 match community 2_157_252 set community 0:39564 ip community-list standard 2_89_113 permit 65000:2 0:89 0:113 route-map calculator permit 1533 match community 2_89_113 set community 0:10057 ip community-list standard 2_122_221 permit 65000:2 0:122 0:221 route-map calculator permit 1534 match community 2_122_221 set community 0:26962 ip community-list standard 2_41_182 permit 65000:2 0:41 0:182 ip community-list standard 2_82_91 permit 65000:2 0:82 0:91 route-map calculator permit 1535 match community 2_41_182 2_82_91 set community 0:7462 ip community-list standard 2_63_149 permit 65000:2 0:63 0:149 route-map calculator permit 1536 match community 2_63_149 set community 0:9387 ip community-list standard 2_101_212 permit 65000:2 0:101 0:212 ip community-list standard 2_106_202 permit 65000:2 0:106 0:202 route-map calculator permit 1537 match community 2_101_212 2_106_202 set community 0:21412 ip community-list standard 2_129_232 permit 65000:2 0:129 0:232 ip community-list standard 2_172_174 permit 65000:2 0:172 0:174 route-map calculator permit 1538 match community 2_129_232 2_172_174 set community 0:29928 ip community-list standard 2_30_231 permit 65000:2 0:30 0:231 ip community-list standard 2_33_210 permit 65000:2 0:33 0:210 ip community-list standard 2_35_198 permit 65000:2 0:35 0:198 ip community-list standard 2_42_165 permit 65000:2 0:42 0:165 ip community-list standard 2_45_154 permit 65000:2 0:45 0:154 ip community-list standard 2_55_126 permit 65000:2 0:55 0:126 ip community-list standard 2_63_110 permit 65000:2 0:63 0:110 ip community-list standard 2_66_105 permit 65000:2 0:66 0:105 ip community-list standard 2_70_99 permit 65000:2 0:70 0:99 ip community-list standard 2_77_90 permit 65000:2 0:77 0:90 route-map calculator permit 1539 match community 2_30_231 2_33_210 2_35_198 2_42_165 2_45_154 set community 0:6930 route-map calculator permit 1540 match community 2_55_126 2_63_110 2_66_105 2_70_99 2_77_90 set community 0:6930 ip community-list standard 2_180_256 permit 65000:2 0:180 0:256 ip community-list standard 2_192_240 permit 65000:2 0:192 0:240 route-map calculator permit 1541 match community 2_180_256 2_192_240 set community 0:46080 ip community-list standard 2_81_101 permit 65000:2 0:81 0:101 route-map calculator permit 1542 match community 2_81_101 set community 0:8181 ip community-list standard 2_141_171 permit 65000:2 0:141 0:171 route-map calculator permit 1543 match community 2_141_171 set community 0:24111 ip community-list standard 2_121_183 permit 65000:2 0:121 0:183 route-map calculator permit 1544 match community 2_121_183 set community 0:22143 ip community-list standard 2_2_151 permit 65000:2 0:2 0:151 ip community-list standard 1_46_256 permit 65000:1 0:46 0:256 ip community-list standard 1_47_255 permit 65000:1 0:47 0:255 ip community-list standard 1_48_254 permit 65000:1 0:48 0:254 ip community-list standard 1_49_253 permit 65000:1 0:49 0:253 ip community-list standard 1_50_252 permit 65000:1 0:50 0:252 ip community-list standard 1_51_251 permit 65000:1 0:51 0:251 ip community-list standard 1_52_250 permit 65000:1 0:52 0:250 ip community-list standard 1_53_249 permit 65000:1 0:53 0:249 ip community-list standard 1_54_248 permit 65000:1 0:54 0:248 ip community-list standard 1_55_247 permit 65000:1 0:55 0:247 ip community-list standard 1_56_246 permit 65000:1 0:56 0:246 ip community-list standard 1_57_245 permit 65000:1 0:57 0:245 ip community-list standard 1_58_244 permit 65000:1 0:58 0:244 ip community-list standard 1_59_243 permit 65000:1 0:59 0:243 ip community-list standard 1_60_242 permit 65000:1 0:60 0:242 ip community-list standard 1_61_241 permit 65000:1 0:61 0:241 ip community-list standard 1_62_240 permit 65000:1 0:62 0:240 ip community-list standard 1_63_239 permit 65000:1 0:63 0:239 ip community-list standard 1_64_238 permit 65000:1 0:64 0:238 ip community-list standard 1_65_237 permit 65000:1 0:65 0:237 ip community-list standard 1_66_236 permit 65000:1 0:66 0:236 ip community-list standard 1_67_235 permit 65000:1 0:67 0:235 ip community-list standard 1_68_234 permit 65000:1 0:68 0:234 ip community-list standard 1_69_233 permit 65000:1 0:69 0:233 ip community-list standard 1_70_232 permit 65000:1 0:70 0:232 ip community-list standard 1_71_231 permit 65000:1 0:71 0:231 ip community-list standard 1_72_230 permit 65000:1 0:72 0:230 ip community-list standard 1_73_229 permit 65000:1 0:73 0:229 ip community-list standard 1_74_228 permit 65000:1 0:74 0:228 ip community-list standard 1_75_227 permit 65000:1 0:75 0:227 ip community-list standard 1_76_226 permit 65000:1 0:76 0:226 ip community-list standard 1_77_225 permit 65000:1 0:77 0:225 ip community-list standard 1_78_224 permit 65000:1 0:78 0:224 ip community-list standard 1_79_223 permit 65000:1 0:79 0:223 ip community-list standard 1_80_222 permit 65000:1 0:80 0:222 ip community-list standard 1_81_221 permit 65000:1 0:81 0:221 ip community-list standard 1_82_220 permit 65000:1 0:82 0:220 ip community-list standard 1_83_219 permit 65000:1 0:83 0:219 ip community-list standard 1_84_218 permit 65000:1 0:84 0:218 ip community-list standard 1_85_217 permit 65000:1 0:85 0:217 ip community-list standard 1_86_216 permit 65000:1 0:86 0:216 ip community-list standard 1_87_215 permit 65000:1 0:87 0:215 ip community-list standard 1_88_214 permit 65000:1 0:88 0:214 ip community-list standard 1_89_213 permit 65000:1 0:89 0:213 ip community-list standard 1_90_212 permit 65000:1 0:90 0:212 ip community-list standard 1_91_211 permit 65000:1 0:91 0:211 ip community-list standard 1_92_210 permit 65000:1 0:92 0:210 ip community-list standard 1_93_209 permit 65000:1 0:93 0:209 ip community-list standard 1_94_208 permit 65000:1 0:94 0:208 ip community-list standard 1_95_207 permit 65000:1 0:95 0:207 ip community-list standard 1_96_206 permit 65000:1 0:96 0:206 ip community-list standard 1_97_205 permit 65000:1 0:97 0:205 ip community-list standard 1_98_204 permit 65000:1 0:98 0:204 ip community-list standard 1_99_203 permit 65000:1 0:99 0:203 ip community-list standard 1_100_202 permit 65000:1 0:100 0:202 ip community-list standard 1_101_201 permit 65000:1 0:101 0:201 ip community-list standard 1_102_200 permit 65000:1 0:102 0:200 ip community-list standard 1_103_199 permit 65000:1 0:103 0:199 ip community-list standard 1_104_198 permit 65000:1 0:104 0:198 ip community-list standard 1_105_197 permit 65000:1 0:105 0:197 ip community-list standard 1_106_196 permit 65000:1 0:106 0:196 ip community-list standard 1_107_195 permit 65000:1 0:107 0:195 ip community-list standard 1_108_194 permit 65000:1 0:108 0:194 ip community-list standard 1_109_193 permit 65000:1 0:109 0:193 ip community-list standard 1_110_192 permit 65000:1 0:110 0:192 ip community-list standard 1_111_191 permit 65000:1 0:111 0:191 ip community-list standard 1_112_190 permit 65000:1 0:112 0:190 ip community-list standard 1_113_189 permit 65000:1 0:113 0:189 ip community-list standard 1_114_188 permit 65000:1 0:114 0:188 ip community-list standard 1_115_187 permit 65000:1 0:115 0:187 ip community-list standard 1_116_186 permit 65000:1 0:116 0:186 ip community-list standard 1_117_185 permit 65000:1 0:117 0:185 ip community-list standard 1_118_184 permit 65000:1 0:118 0:184 ip community-list standard 1_119_183 permit 65000:1 0:119 0:183 ip community-list standard 1_120_182 permit 65000:1 0:120 0:182 ip community-list standard 1_121_181 permit 65000:1 0:121 0:181 ip community-list standard 1_122_180 permit 65000:1 0:122 0:180 ip community-list standard 1_123_179 permit 65000:1 0:123 0:179 ip community-list standard 1_124_178 permit 65000:1 0:124 0:178 ip community-list standard 1_125_177 permit 65000:1 0:125 0:177 ip community-list standard 1_126_176 permit 65000:1 0:126 0:176 ip community-list standard 1_127_175 permit 65000:1 0:127 0:175 ip community-list standard 1_128_174 permit 65000:1 0:128 0:174 ip community-list standard 1_129_173 permit 65000:1 0:129 0:173 ip community-list standard 1_130_172 permit 65000:1 0:130 0:172 ip community-list standard 1_131_171 permit 65000:1 0:131 0:171 ip community-list standard 1_132_170 permit 65000:1 0:132 0:170 ip community-list standard 1_133_169 permit 65000:1 0:133 0:169 ip community-list standard 1_134_168 permit 65000:1 0:134 0:168 ip community-list standard 1_135_167 permit 65000:1 0:135 0:167 ip community-list standard 1_136_166 permit 65000:1 0:136 0:166 ip community-list standard 1_137_165 permit 65000:1 0:137 0:165 ip community-list standard 1_138_164 permit 65000:1 0:138 0:164 ip community-list standard 1_139_163 permit 65000:1 0:139 0:163 ip community-list standard 1_140_162 permit 65000:1 0:140 0:162 ip community-list standard 1_141_161 permit 65000:1 0:141 0:161 ip community-list standard 1_142_160 permit 65000:1 0:142 0:160 ip community-list standard 1_143_159 permit 65000:1 0:143 0:159 ip community-list standard 1_144_158 permit 65000:1 0:144 0:158 ip community-list standard 1_145_157 permit 65000:1 0:145 0:157 ip community-list standard 1_146_156 permit 65000:1 0:146 0:156 ip community-list standard 1_147_155 permit 65000:1 0:147 0:155 ip community-list standard 1_148_154 permit 65000:1 0:148 0:154 ip community-list standard 1_149_153 permit 65000:1 0:149 0:153 ip community-list standard 1_150_152 permit 65000:1 0:150 0:152 ip community-list standard 1_151_151 permit 65000:1 0:151 0:151 route-map calculator permit 1545 match community 2_2_151 1_46_256 1_47_255 1_48_254 1_49_253 set community 0:302 route-map calculator permit 1546 match community 1_50_252 1_51_251 1_52_250 1_53_249 1_54_248 set community 0:302 route-map calculator permit 1547 match community 1_55_247 1_56_246 1_57_245 1_58_244 1_59_243 set community 0:302 route-map calculator permit 1548 match community 1_60_242 1_61_241 1_62_240 1_63_239 1_64_238 set community 0:302 route-map calculator permit 1549 match community 1_65_237 1_66_236 1_67_235 1_68_234 1_69_233 set community 0:302 route-map calculator permit 1550 match community 1_70_232 1_71_231 1_72_230 1_73_229 1_74_228 set community 0:302 route-map calculator permit 1551 match community 1_75_227 1_76_226 1_77_225 1_78_224 1_79_223 set community 0:302 route-map calculator permit 1552 match community 1_80_222 1_81_221 1_82_220 1_83_219 1_84_218 set community 0:302 route-map calculator permit 1553 match community 1_85_217 1_86_216 1_87_215 1_88_214 1_89_213 set community 0:302 route-map calculator permit 1554 match community 1_90_212 1_91_211 1_92_210 1_93_209 1_94_208 set community 0:302 route-map calculator permit 1555 match community 1_95_207 1_96_206 1_97_205 1_98_204 1_99_203 set community 0:302 route-map calculator permit 1556 match community 1_100_202 1_101_201 1_102_200 1_103_199 1_104_198 set community 0:302 route-map calculator permit 1557 match community 1_105_197 1_106_196 1_107_195 1_108_194 1_109_193 set community 0:302 route-map calculator permit 1558 match community 1_110_192 1_111_191 1_112_190 1_113_189 1_114_188 set community 0:302 route-map calculator permit 1559 match community 1_115_187 1_116_186 1_117_185 1_118_184 1_119_183 set community 0:302 route-map calculator permit 1560 match community 1_120_182 1_121_181 1_122_180 1_123_179 1_124_178 set community 0:302 route-map calculator permit 1561 match community 1_125_177 1_126_176 1_127_175 1_128_174 1_129_173 set community 0:302 route-map calculator permit 1562 match community 1_130_172 1_131_171 1_132_170 1_133_169 1_134_168 set community 0:302 route-map calculator permit 1563 match community 1_135_167 1_136_166 1_137_165 1_138_164 1_139_163 set community 0:302 route-map calculator permit 1564 match community 1_140_162 1_141_161 1_142_160 1_143_159 1_144_158 set community 0:302 route-map calculator permit 1565 match community 1_145_157 1_146_156 1_147_155 1_148_154 1_149_153 set community 0:302 route-map calculator permit 1566 match community 1_150_152 1_151_151 set community 0:302 ip community-list standard 2_76_152 permit 65000:2 0:76 0:152 route-map calculator permit 1567 match community 2_76_152 set community 0:11552 ip community-list standard 2_112_167 permit 65000:2 0:112 0:167 route-map calculator permit 1568 match community 2_112_167 set community 0:18704 ip community-list standard 2_51_248 permit 65000:2 0:51 0:248 ip community-list standard 2_62_204 permit 65000:2 0:62 0:204 ip community-list standard 2_68_186 permit 65000:2 0:68 0:186 ip community-list standard 2_93_136 permit 65000:2 0:93 0:136 ip community-list standard 2_102_124 permit 65000:2 0:102 0:124 route-map calculator permit 1569 match community 2_51_248 2_62_204 2_68_186 2_93_136 2_102_124 set community 0:12648 ip community-list standard 2_136_197 permit 65000:2 0:136 0:197 route-map calculator permit 1570 match community 2_136_197 set community 0:26792 ip community-list standard 2_149_237 permit 65000:2 0:149 0:237 route-map calculator permit 1571 match community 2_149_237 set community 0:35313 ip community-list standard 2_22_217 permit 65000:2 0:22 0:217 ip community-list standard 2_31_154 permit 65000:2 0:31 0:154 ip community-list standard 2_62_77 permit 65000:2 0:62 0:77 route-map calculator permit 1572 match community 2_22_217 2_31_154 2_62_77 set community 0:4774 ip community-list standard 2_94_217 permit 65000:2 0:94 0:217 route-map calculator permit 1573 match community 2_94_217 set community 0:20398 ip community-list standard 2_81_244 permit 65000:2 0:81 0:244 ip community-list standard 2_108_183 permit 65000:2 0:108 0:183 ip community-list standard 2_122_162 permit 65000:2 0:122 0:162 route-map calculator permit 1574 match community 2_81_244 2_108_183 2_122_162 set community 0:19764 ip community-list standard 2_123_177 permit 65000:2 0:123 0:177 route-map calculator permit 1575 match community 2_123_177 set community 0:21771 ip community-list standard 2_82_187 permit 65000:2 0:82 0:187 route-map calculator permit 1576 match community 2_82_187 set community 0:15334 ip community-list standard 2_97_129 permit 65000:2 0:97 0:129 route-map calculator permit 1577 match community 2_97_129 set community 0:12513 ip community-list standard 2_236_247 permit 65000:2 0:236 0:247 route-map calculator permit 1578 match community 2_236_247 set community 0:58292 ip community-list standard 2_180_223 permit 65000:2 0:180 0:223 route-map calculator permit 1579 match community 2_180_223 set community 0:40140 ip community-list standard 2_231_243 permit 65000:2 0:231 0:243 route-map calculator permit 1580 match community 2_231_243 set community 0:56133 ip community-list standard 2_34_235 permit 65000:2 0:34 0:235 ip community-list standard 2_47_170 permit 65000:2 0:47 0:170 ip community-list standard 2_85_94 permit 65000:2 0:85 0:94 route-map calculator permit 1581 match community 2_34_235 2_47_170 2_85_94 set community 0:7990 ip community-list standard 2_232_245 permit 65000:2 0:232 0:245 route-map calculator permit 1582 match community 2_232_245 set community 0:56840 ip community-list standard 2_159_254 permit 65000:2 0:159 0:254 route-map calculator permit 1583 match community 2_159_254 set community 0:40386 ip community-list standard 2_19_201 permit 65000:2 0:19 0:201 ip community-list standard 2_57_67 permit 65000:2 0:57 0:67 route-map calculator permit 1584 match community 2_19_201 2_57_67 set community 0:3819 ip community-list standard 2_75_109 permit 65000:2 0:75 0:109 route-map calculator permit 1585 match community 2_75_109 set community 0:8175 ip community-list standard 2_74_197 permit 65000:2 0:74 0:197 route-map calculator permit 1586 match community 2_74_197 set community 0:14578 ip community-list standard 2_136_229 permit 65000:2 0:136 0:229 route-map calculator permit 1587 match community 2_136_229 set community 0:31144 ip community-list standard 2_66_232 permit 65000:2 0:66 0:232 ip community-list standard 2_87_176 permit 65000:2 0:87 0:176 ip community-list standard 2_88_174 permit 65000:2 0:88 0:174 ip community-list standard 2_116_132 permit 65000:2 0:116 0:132 route-map calculator permit 1588 match community 2_66_232 2_87_176 2_88_174 2_116_132 set community 0:15312 ip community-list standard 2_142_242 permit 65000:2 0:142 0:242 route-map calculator permit 1589 match community 2_142_242 set community 0:34364 ip community-list standard 2_24_249 permit 65000:2 0:24 0:249 ip community-list standard 2_36_166 permit 65000:2 0:36 0:166 ip community-list standard 2_72_83 permit 65000:2 0:72 0:83 route-map calculator permit 1590 match community 2_24_249 2_36_166 2_72_83 set community 0:5976 ip community-list standard 2_103_251 permit 65000:2 0:103 0:251 route-map calculator permit 1591 match community 2_103_251 set community 0:25853 ip community-list standard 2_142_229 permit 65000:2 0:142 0:229 route-map calculator permit 1592 match community 2_142_229 set community 0:32518 ip community-list standard 2_69_236 permit 65000:2 0:69 0:236 ip community-list standard 2_92_177 permit 65000:2 0:92 0:177 ip community-list standard 2_118_138 permit 65000:2 0:118 0:138 route-map calculator permit 1593 match community 2_69_236 2_92_177 2_118_138 set community 0:16284 ip community-list standard 2_109_125 permit 65000:2 0:109 0:125 route-map calculator permit 1594 match community 2_109_125 set community 0:13625 ip community-list standard 2_108_179 permit 65000:2 0:108 0:179 route-map calculator permit 1595 match community 2_108_179 set community 0:19332 ip community-list standard 2_74_233 permit 65000:2 0:74 0:233 route-map calculator permit 1596 match community 2_74_233 set community 0:17242 ip community-list standard 2_17_76 permit 65000:2 0:17 0:76 ip community-list standard 2_19_68 permit 65000:2 0:19 0:68 ip community-list standard 2_34_38 permit 65000:2 0:34 0:38 route-map calculator permit 1597 match community 2_17_76 2_19_68 2_34_38 set community 0:1292 ip community-list standard 2_107_236 permit 65000:2 0:107 0:236 ip community-list standard 2_118_214 permit 65000:2 0:118 0:214 route-map calculator permit 1598 match community 2_107_236 2_118_214 set community 0:25252 ip community-list standard 2_139_227 permit 65000:2 0:139 0:227 route-map calculator permit 1599 match community 2_139_227 set community 0:31553 ip community-list standard 2_195_219 permit 65000:2 0:195 0:219 route-map calculator permit 1600 match community 2_195_219 set community 0:42705 ip community-list standard 2_136_209 permit 65000:2 0:136 0:209 ip community-list standard 2_152_187 permit 65000:2 0:152 0:187 route-map calculator permit 1601 match community 2_136_209 2_152_187 set community 0:28424 ip community-list standard 2_131_191 permit 65000:2 0:131 0:191 route-map calculator permit 1602 match community 2_131_191 set community 0:25021 ip community-list standard 2_55_127 permit 65000:2 0:55 0:127 route-map calculator permit 1603 match community 2_55_127 set community 0:6985 ip community-list standard 2_145_215 permit 65000:2 0:145 0:215 route-map calculator permit 1604 match community 2_145_215 set community 0:31175 ip community-list standard 2_94_212 permit 65000:2 0:94 0:212 ip community-list standard 2_106_188 permit 65000:2 0:106 0:188 route-map calculator permit 1605 match community 2_94_212 2_106_188 set community 0:19928 ip community-list standard 2_48_247 permit 65000:2 0:48 0:247 ip community-list standard 2_52_228 permit 65000:2 0:52 0:228 ip community-list standard 2_57_208 permit 65000:2 0:57 0:208 ip community-list standard 2_76_156 permit 65000:2 0:76 0:156 ip community-list standard 2_78_152 permit 65000:2 0:78 0:152 ip community-list standard 2_104_114 permit 65000:2 0:104 0:114 route-map calculator permit 1606 match community 2_48_247 2_52_228 2_57_208 2_76_156 2_78_152 set community 0:11856 route-map calculator permit 1607 match community 2_104_114 set community 0:11856 ip community-list standard 2_87_237 permit 65000:2 0:87 0:237 route-map calculator permit 1608 match community 2_87_237 set community 0:20619 ip community-list standard 2_119_207 permit 65000:2 0:119 0:207 ip community-list standard 2_153_161 permit 65000:2 0:153 0:161 route-map calculator permit 1609 match community 2_119_207 2_153_161 set community 0:24633 ip community-list standard 2_41_227 permit 65000:2 0:41 0:227 route-map calculator permit 1610 match community 2_41_227 set community 0:9307 ip community-list standard 2_71_101 permit 65000:2 0:71 0:101 route-map calculator permit 1611 match community 2_71_101 set community 0:7171 ip community-list standard 2_67_240 permit 65000:2 0:67 0:240 ip community-list standard 2_80_201 permit 65000:2 0:80 0:201 ip community-list standard 2_120_134 permit 65000:2 0:120 0:134 route-map calculator permit 1612 match community 2_67_240 2_80_201 2_120_134 set community 0:16080 ip community-list standard 2_231_232 permit 65000:2 0:231 0:232 route-map calculator permit 1613 match community 2_231_232 set community 0:53592 ip community-list standard 2_61_122 permit 65000:2 0:61 0:122 route-map calculator permit 1614 match community 2_61_122 set community 0:7442 ip community-list standard 2_186_213 permit 65000:2 0:186 0:213 route-map calculator permit 1615 match community 2_186_213 set community 0:39618 ip community-list standard 2_160_235 permit 65000:2 0:160 0:235 ip community-list standard 2_188_200 permit 65000:2 0:188 0:200 route-map calculator permit 1616 match community 2_160_235 2_188_200 set community 0:37600 ip community-list standard 2_79_197 permit 65000:2 0:79 0:197 route-map calculator permit 1617 match community 2_79_197 set community 0:15563 ip community-list standard 2_149_189 permit 65000:2 0:149 0:189 route-map calculator permit 1618 match community 2_149_189 set community 0:28161 ip community-list standard 2_118_211 permit 65000:2 0:118 0:211 route-map calculator permit 1619 match community 2_118_211 set community 0:24898 ip community-list standard 2_188_229 permit 65000:2 0:188 0:229 route-map calculator permit 1620 match community 2_188_229 set community 0:43052 ip community-list standard 2_79_163 permit 65000:2 0:79 0:163 route-map calculator permit 1621 match community 2_79_163 set community 0:12877 ip community-list standard 2_31_155 permit 65000:2 0:31 0:155 route-map calculator permit 1622 match community 2_31_155 set community 0:4805 ip community-list standard 2_195_218 permit 65000:2 0:195 0:218 route-map calculator permit 1623 match community 2_195_218 set community 0:42510 ip community-list standard 2_43_203 permit 65000:2 0:43 0:203 route-map calculator permit 1624 match community 2_43_203 set community 0:8729 ip community-list standard 2_83_238 permit 65000:2 0:83 0:238 ip community-list standard 2_119_166 permit 65000:2 0:119 0:166 route-map calculator permit 1625 match community 2_83_238 2_119_166 set community 0:19754 ip community-list standard 2_112_213 permit 65000:2 0:112 0:213 ip community-list standard 2_142_168 permit 65000:2 0:142 0:168 route-map calculator permit 1626 match community 2_112_213 2_142_168 set community 0:23856 ip community-list standard 2_9_212 permit 65000:2 0:9 0:212 ip community-list standard 2_12_159 permit 65000:2 0:12 0:159 ip community-list standard 2_18_106 permit 65000:2 0:18 0:106 ip community-list standard 2_36_53 permit 65000:2 0:36 0:53 route-map calculator permit 1627 match community 2_9_212 2_12_159 2_18_106 2_36_53 set community 0:1908 ip community-list standard 2_51_233 permit 65000:2 0:51 0:233 route-map calculator permit 1628 match community 2_51_233 set community 0:11883 ip community-list standard 2_206_217 permit 65000:2 0:206 0:217 route-map calculator permit 1629 match community 2_206_217 set community 0:44702 ip community-list standard 2_114_197 permit 65000:2 0:114 0:197 route-map calculator permit 1630 match community 2_114_197 set community 0:22458 ip community-list standard 2_71_133 permit 65000:2 0:71 0:133 route-map calculator permit 1631 match community 2_71_133 set community 0:9443 ip community-list standard 2_92_256 permit 65000:2 0:92 0:256 ip community-list standard 2_128_184 permit 65000:2 0:128 0:184 route-map calculator permit 1632 match community 2_92_256 2_128_184 set community 0:23552 ip community-list standard 2_85_255 permit 65000:2 0:85 0:255 route-map calculator permit 1633 match community 2_85_255 set community 0:21675 ip community-list standard 2_157_167 permit 65000:2 0:157 0:167 route-map calculator permit 1634 match community 2_157_167 set community 0:26219 ip community-list standard 2_103_224 permit 65000:2 0:103 0:224 ip community-list standard 2_112_206 permit 65000:2 0:112 0:206 route-map calculator permit 1635 match community 2_103_224 2_112_206 set community 0:23072 ip community-list standard 2_152_232 permit 65000:2 0:152 0:232 route-map calculator permit 1636 match community 2_152_232 set community 0:35264 ip community-list standard 2_121_247 permit 65000:2 0:121 0:247 ip community-list standard 2_143_209 permit 65000:2 0:143 0:209 route-map calculator permit 1637 match community 2_121_247 2_143_209 set community 0:29887 ip community-list standard 2_245_247 permit 65000:2 0:245 0:247 route-map calculator permit 1638 match community 2_245_247 set community 0:60515 ip community-list standard 2_108_201 permit 65000:2 0:108 0:201 ip community-list standard 2_134_162 permit 65000:2 0:134 0:162 route-map calculator permit 1639 match community 2_108_201 2_134_162 set community 0:21708 ip community-list standard 2_16_242 permit 65000:2 0:16 0:242 ip community-list standard 2_22_176 permit 65000:2 0:22 0:176 ip community-list standard 2_32_121 permit 65000:2 0:32 0:121 ip community-list standard 2_44_88 permit 65000:2 0:44 0:88 route-map calculator permit 1640 match community 2_16_242 2_22_176 2_32_121 2_44_88 set community 0:3872 ip community-list standard 2_107_177 permit 65000:2 0:107 0:177 route-map calculator permit 1641 match community 2_107_177 set community 0:18939 ip community-list standard 2_179_213 permit 65000:2 0:179 0:213 route-map calculator permit 1642 match community 2_179_213 set community 0:38127 ip community-list standard 2_132_201 permit 65000:2 0:132 0:201 ip community-list standard 2_134_198 permit 65000:2 0:134 0:198 route-map calculator permit 1643 match community 2_132_201 2_134_198 set community 0:26532 ip community-list standard 2_139_144 permit 65000:2 0:139 0:144 route-map calculator permit 1644 match community 2_139_144 set community 0:20016 ip community-list standard 2_5_193 permit 65000:2 0:5 0:193 route-map calculator permit 1645 match community 2_5_193 set community 0:965 ip community-list standard 2_31_221 permit 65000:2 0:31 0:221 route-map calculator permit 1646 match community 2_31_221 set community 0:6851 ip community-list standard 2_71_208 permit 65000:2 0:71 0:208 ip community-list standard 2_104_142 permit 65000:2 0:104 0:142 route-map calculator permit 1647 match community 2_71_208 2_104_142 set community 0:14768 ip community-list standard 2_30_151 permit 65000:2 0:30 0:151 route-map calculator permit 1648 match community 2_30_151 set community 0:4530 ip community-list standard 2_202_230 permit 65000:2 0:202 0:230 route-map calculator permit 1649 match community 2_202_230 set community 0:46460 ip community-list standard 2_57_252 permit 65000:2 0:57 0:252 ip community-list standard 2_63_228 permit 65000:2 0:63 0:228 ip community-list standard 2_76_189 permit 65000:2 0:76 0:189 ip community-list standard 2_84_171 permit 65000:2 0:84 0:171 ip community-list standard 2_108_133 permit 65000:2 0:108 0:133 ip community-list standard 2_114_126 permit 65000:2 0:114 0:126 route-map calculator permit 1650 match community 2_57_252 2_63_228 2_76_189 2_84_171 2_108_133 set community 0:14364 route-map calculator permit 1651 match community 2_114_126 set community 0:14364 ip community-list standard 2_89_209 permit 65000:2 0:89 0:209 route-map calculator permit 1652 match community 2_89_209 set community 0:18601 ip community-list standard 2_86_192 permit 65000:2 0:86 0:192 ip community-list standard 2_96_172 permit 65000:2 0:96 0:172 ip community-list standard 2_128_129 permit 65000:2 0:128 0:129 route-map calculator permit 1653 match community 2_86_192 2_96_172 2_128_129 set community 0:16512 ip community-list standard 2_13_59 permit 65000:2 0:13 0:59 route-map calculator permit 1654 match community 2_13_59 set community 0:767 ip community-list standard 2_74_225 permit 65000:2 0:74 0:225 ip community-list standard 2_75_222 permit 65000:2 0:75 0:222 ip community-list standard 2_90_185 permit 65000:2 0:90 0:185 ip community-list standard 2_111_150 permit 65000:2 0:111 0:150 route-map calculator permit 1655 match community 2_74_225 2_75_222 2_90_185 2_111_150 set community 0:16650 ip community-list standard 2_12_197 permit 65000:2 0:12 0:197 route-map calculator permit 1656 match community 2_12_197 set community 0:2364 ip community-list standard 2_57_231 permit 65000:2 0:57 0:231 ip community-list standard 2_63_209 permit 65000:2 0:63 0:209 ip community-list standard 2_77_171 permit 65000:2 0:77 0:171 ip community-list standard 2_99_133 permit 65000:2 0:99 0:133 route-map calculator permit 1657 match community 2_57_231 2_63_209 2_77_171 2_99_133 set community 0:13167 ip community-list standard 2_136_228 permit 65000:2 0:136 0:228 ip community-list standard 2_152_204 permit 65000:2 0:152 0:204 route-map calculator permit 1658 match community 2_136_228 2_152_204 set community 0:31008 ip community-list standard 2_225_233 permit 65000:2 0:225 0:233 route-map calculator permit 1659 match community 2_225_233 set community 0:52425 ip community-list standard 2_134_217 permit 65000:2 0:134 0:217 route-map calculator permit 1660 match community 2_134_217 set community 0:29078 ip community-list standard 2_161_182 permit 65000:2 0:161 0:182 route-map calculator permit 1661 match community 2_161_182 set community 0:29302 ip community-list standard 2_58_181 permit 65000:2 0:58 0:181 route-map calculator permit 1662 match community 2_58_181 set community 0:10498 ip community-list standard 2_216_246 permit 65000:2 0:216 0:246 route-map calculator permit 1663 match community 2_216_246 set community 0:53136 ip community-list standard 2_146_172 permit 65000:2 0:146 0:172 route-map calculator permit 1664 match community 2_146_172 set community 0:25112 ip community-list standard 2_97_253 permit 65000:2 0:97 0:253 route-map calculator permit 1665 match community 2_97_253 set community 0:24541 ip community-list standard 2_207_239 permit 65000:2 0:207 0:239 route-map calculator permit 1666 match community 2_207_239 set community 0:49473 ip community-list standard 2_31_207 permit 65000:2 0:31 0:207 ip community-list standard 2_69_93 permit 65000:2 0:69 0:93 route-map calculator permit 1667 match community 2_31_207 2_69_93 set community 0:6417 ip community-list standard 2_190_217 permit 65000:2 0:190 0:217 route-map calculator permit 1668 match community 2_190_217 set community 0:41230 ip community-list standard 2_64_219 permit 65000:2 0:64 0:219 ip community-list standard 2_73_192 permit 65000:2 0:73 0:192 ip community-list standard 2_96_146 permit 65000:2 0:96 0:146 route-map calculator permit 1669 match community 2_64_219 2_73_192 2_96_146 set community 0:14016 ip community-list standard 2_167_213 permit 65000:2 0:167 0:213 route-map calculator permit 1670 match community 2_167_213 set community 0:35571 ip community-list standard 2_208_252 permit 65000:2 0:208 0:252 ip community-list standard 2_224_234 permit 65000:2 0:224 0:234 route-map calculator permit 1671 match community 2_208_252 2_224_234 set community 0:52416 ip community-list standard 2_31_107 permit 65000:2 0:31 0:107 route-map calculator permit 1672 match community 2_31_107 set community 0:3317 ip community-list standard 2_46_241 permit 65000:2 0:46 0:241 route-map calculator permit 1673 match community 2_46_241 set community 0:11086 ip community-list standard 2_185_201 permit 65000:2 0:185 0:201 route-map calculator permit 1674 match community 2_185_201 set community 0:37185 ip community-list standard 2_139_150 permit 65000:2 0:139 0:150 route-map calculator permit 1675 match community 2_139_150 set community 0:20850 ip community-list standard 2_177_206 permit 65000:2 0:177 0:206 route-map calculator permit 1676 match community 2_177_206 set community 0:36462 ip community-list standard 2_210_254 permit 65000:2 0:210 0:254 route-map calculator permit 1677 match community 2_210_254 set community 0:53340 ip community-list standard 2_157_179 permit 65000:2 0:157 0:179 route-map calculator permit 1678 match community 2_157_179 set community 0:28103 ip community-list standard 2_27_229 permit 65000:2 0:27 0:229 route-map calculator permit 1679 match community 2_27_229 set community 0:6183 ip community-list standard 2_148_208 permit 65000:2 0:148 0:208 route-map calculator permit 1680 match community 2_148_208 set community 0:30784 ip community-list standard 2_119_246 permit 65000:2 0:119 0:246 ip community-list standard 2_123_238 permit 65000:2 0:123 0:238 route-map calculator permit 1681 match community 2_119_246 2_123_238 set community 0:29274 ip community-list standard 2_85_170 permit 65000:2 0:85 0:170 route-map calculator permit 1682 match community 2_85_170 set community 0:14450 ip community-list standard 2_96_221 permit 65000:2 0:96 0:221 ip community-list standard 2_102_208 permit 65000:2 0:102 0:208 ip community-list standard 2_104_204 permit 65000:2 0:104 0:204 ip community-list standard 2_136_156 permit 65000:2 0:136 0:156 route-map calculator permit 1683 match community 2_96_221 2_102_208 2_104_204 2_136_156 set community 0:21216 ip community-list standard 2_39_89 permit 65000:2 0:39 0:89 route-map calculator permit 1684 match community 2_39_89 set community 0:3471 ip community-list standard 2_19_53 permit 65000:2 0:19 0:53 route-map calculator permit 1685 match community 2_19_53 set community 0:1007 ip community-list standard 2_164_221 permit 65000:2 0:164 0:221 route-map calculator permit 1686 match community 2_164_221 set community 0:36244 ip community-list standard 2_231_253 permit 65000:2 0:231 0:253 route-map calculator permit 1687 match community 2_231_253 set community 0:58443 ip community-list standard 2_230_239 permit 65000:2 0:230 0:239 route-map calculator permit 1688 match community 2_230_239 set community 0:54970 ip community-list standard 2_112_244 permit 65000:2 0:112 0:244 ip community-list standard 2_122_224 permit 65000:2 0:122 0:224 route-map calculator permit 1689 match community 2_112_244 2_122_224 set community 0:27328 ip community-list standard 2_145_254 permit 65000:2 0:145 0:254 route-map calculator permit 1690 match community 2_145_254 set community 0:36830 ip community-list standard 2_191_204 permit 65000:2 0:191 0:204 route-map calculator permit 1691 match community 2_191_204 set community 0:38964 ip community-list standard 2_109_169 permit 65000:2 0:109 0:169 route-map calculator permit 1692 match community 2_109_169 set community 0:18421 ip community-list standard 2_93_229 permit 65000:2 0:93 0:229 route-map calculator permit 1693 match community 2_93_229 set community 0:21297 ip community-list standard 2_89_187 permit 65000:2 0:89 0:187 route-map calculator permit 1694 match community 2_89_187 set community 0:16643 ip community-list standard 2_18_249 permit 65000:2 0:18 0:249 ip community-list standard 2_27_166 permit 65000:2 0:27 0:166 ip community-list standard 2_54_83 permit 65000:2 0:54 0:83 route-map calculator permit 1695 match community 2_18_249 2_27_166 2_54_83 set community 0:4482 ip community-list standard 2_71_176 permit 65000:2 0:71 0:176 ip community-list standard 2_88_142 permit 65000:2 0:88 0:142 route-map calculator permit 1696 match community 2_71_176 2_88_142 set community 0:12496 ip community-list standard 2_183_187 permit 65000:2 0:183 0:187 route-map calculator permit 1697 match community 2_183_187 set community 0:34221 ip community-list standard 2_15_206 permit 65000:2 0:15 0:206 ip community-list standard 2_30_103 permit 65000:2 0:30 0:103 route-map calculator permit 1698 match community 2_15_206 2_30_103 set community 0:3090 ip community-list standard 2_155_223 permit 65000:2 0:155 0:223 route-map calculator permit 1699 match community 2_155_223 set community 0:34565 ip community-list standard 2_193_254 permit 65000:2 0:193 0:254 route-map calculator permit 1700 match community 2_193_254 set community 0:49022 ip community-list standard 2_176_197 permit 65000:2 0:176 0:197 route-map calculator permit 1701 match community 2_176_197 set community 0:34672 ip community-list standard 2_114_238 permit 65000:2 0:114 0:238 ip community-list standard 2_119_228 permit 65000:2 0:119 0:228 ip community-list standard 2_133_204 permit 65000:2 0:133 0:204 route-map calculator permit 1702 match community 2_114_238 2_119_228 2_133_204 set community 0:27132 ip community-list standard 2_59_109 permit 65000:2 0:59 0:109 route-map calculator permit 1703 match community 2_59_109 set community 0:6431 ip community-list standard 2_67_243 permit 65000:2 0:67 0:243 ip community-list standard 2_81_201 permit 65000:2 0:81 0:201 route-map calculator permit 1704 match community 2_67_243 2_81_201 set community 0:16281 ip community-list standard 2_140_247 permit 65000:2 0:140 0:247 ip community-list standard 2_182_190 permit 65000:2 0:182 0:190 route-map calculator permit 1705 match community 2_140_247 2_182_190 set community 0:34580 ip community-list standard 2_115_213 permit 65000:2 0:115 0:213 route-map calculator permit 1706 match community 2_115_213 set community 0:24495 ip community-list standard 1_1_243 permit 65000:1 0:1 0:243 ip community-list standard 2_1_244 permit 65000:2 0:1 0:244 ip community-list standard 2_2_122 permit 65000:2 0:2 0:122 ip community-list standard 1_2_242 permit 65000:1 0:2 0:242 ip community-list standard 1_3_241 permit 65000:1 0:3 0:241 ip community-list standard 2_4_61 permit 65000:2 0:4 0:61 ip community-list standard 1_4_240 permit 65000:1 0:4 0:240 ip community-list standard 1_5_239 permit 65000:1 0:5 0:239 ip community-list standard 1_6_238 permit 65000:1 0:6 0:238 ip community-list standard 1_7_237 permit 65000:1 0:7 0:237 ip community-list standard 1_8_236 permit 65000:1 0:8 0:236 ip community-list standard 1_9_235 permit 65000:1 0:9 0:235 ip community-list standard 1_10_234 permit 65000:1 0:10 0:234 ip community-list standard 1_11_233 permit 65000:1 0:11 0:233 ip community-list standard 1_12_232 permit 65000:1 0:12 0:232 ip community-list standard 1_13_231 permit 65000:1 0:13 0:231 ip community-list standard 1_14_230 permit 65000:1 0:14 0:230 ip community-list standard 1_15_229 permit 65000:1 0:15 0:229 ip community-list standard 1_16_228 permit 65000:1 0:16 0:228 ip community-list standard 1_17_227 permit 65000:1 0:17 0:227 ip community-list standard 1_18_226 permit 65000:1 0:18 0:226 ip community-list standard 1_19_225 permit 65000:1 0:19 0:225 ip community-list standard 1_20_224 permit 65000:1 0:20 0:224 ip community-list standard 1_21_223 permit 65000:1 0:21 0:223 ip community-list standard 1_22_222 permit 65000:1 0:22 0:222 ip community-list standard 1_23_221 permit 65000:1 0:23 0:221 ip community-list standard 1_24_220 permit 65000:1 0:24 0:220 ip community-list standard 1_25_219 permit 65000:1 0:25 0:219 ip community-list standard 1_26_218 permit 65000:1 0:26 0:218 ip community-list standard 1_27_217 permit 65000:1 0:27 0:217 ip community-list standard 1_28_216 permit 65000:1 0:28 0:216 ip community-list standard 1_29_215 permit 65000:1 0:29 0:215 ip community-list standard 1_30_214 permit 65000:1 0:30 0:214 ip community-list standard 1_31_213 permit 65000:1 0:31 0:213 ip community-list standard 1_32_212 permit 65000:1 0:32 0:212 ip community-list standard 1_33_211 permit 65000:1 0:33 0:211 ip community-list standard 1_34_210 permit 65000:1 0:34 0:210 ip community-list standard 1_35_209 permit 65000:1 0:35 0:209 ip community-list standard 1_36_208 permit 65000:1 0:36 0:208 ip community-list standard 1_37_207 permit 65000:1 0:37 0:207 ip community-list standard 1_38_206 permit 65000:1 0:38 0:206 ip community-list standard 1_39_205 permit 65000:1 0:39 0:205 ip community-list standard 1_40_204 permit 65000:1 0:40 0:204 ip community-list standard 1_41_203 permit 65000:1 0:41 0:203 ip community-list standard 1_42_202 permit 65000:1 0:42 0:202 ip community-list standard 1_43_201 permit 65000:1 0:43 0:201 ip community-list standard 1_44_200 permit 65000:1 0:44 0:200 ip community-list standard 1_45_199 permit 65000:1 0:45 0:199 ip community-list standard 1_46_198 permit 65000:1 0:46 0:198 ip community-list standard 1_47_197 permit 65000:1 0:47 0:197 ip community-list standard 1_48_196 permit 65000:1 0:48 0:196 ip community-list standard 1_49_195 permit 65000:1 0:49 0:195 ip community-list standard 1_50_194 permit 65000:1 0:50 0:194 ip community-list standard 1_51_193 permit 65000:1 0:51 0:193 ip community-list standard 1_52_192 permit 65000:1 0:52 0:192 ip community-list standard 1_53_191 permit 65000:1 0:53 0:191 ip community-list standard 1_54_190 permit 65000:1 0:54 0:190 ip community-list standard 1_55_189 permit 65000:1 0:55 0:189 ip community-list standard 1_56_188 permit 65000:1 0:56 0:188 ip community-list standard 1_57_187 permit 65000:1 0:57 0:187 ip community-list standard 1_58_186 permit 65000:1 0:58 0:186 ip community-list standard 1_59_185 permit 65000:1 0:59 0:185 ip community-list standard 1_60_184 permit 65000:1 0:60 0:184 ip community-list standard 1_61_183 permit 65000:1 0:61 0:183 ip community-list standard 1_62_182 permit 65000:1 0:62 0:182 ip community-list standard 1_63_181 permit 65000:1 0:63 0:181 ip community-list standard 1_64_180 permit 65000:1 0:64 0:180 ip community-list standard 1_65_179 permit 65000:1 0:65 0:179 ip community-list standard 1_66_178 permit 65000:1 0:66 0:178 ip community-list standard 1_67_177 permit 65000:1 0:67 0:177 ip community-list standard 1_68_176 permit 65000:1 0:68 0:176 ip community-list standard 1_69_175 permit 65000:1 0:69 0:175 ip community-list standard 1_70_174 permit 65000:1 0:70 0:174 ip community-list standard 1_71_173 permit 65000:1 0:71 0:173 ip community-list standard 1_72_172 permit 65000:1 0:72 0:172 ip community-list standard 1_73_171 permit 65000:1 0:73 0:171 ip community-list standard 1_74_170 permit 65000:1 0:74 0:170 ip community-list standard 1_75_169 permit 65000:1 0:75 0:169 ip community-list standard 1_76_168 permit 65000:1 0:76 0:168 ip community-list standard 1_77_167 permit 65000:1 0:77 0:167 ip community-list standard 1_78_166 permit 65000:1 0:78 0:166 ip community-list standard 1_79_165 permit 65000:1 0:79 0:165 ip community-list standard 1_80_164 permit 65000:1 0:80 0:164 ip community-list standard 1_81_163 permit 65000:1 0:81 0:163 ip community-list standard 1_82_162 permit 65000:1 0:82 0:162 ip community-list standard 1_83_161 permit 65000:1 0:83 0:161 ip community-list standard 1_84_160 permit 65000:1 0:84 0:160 ip community-list standard 1_85_159 permit 65000:1 0:85 0:159 ip community-list standard 1_86_158 permit 65000:1 0:86 0:158 ip community-list standard 1_87_157 permit 65000:1 0:87 0:157 ip community-list standard 1_88_156 permit 65000:1 0:88 0:156 ip community-list standard 1_89_155 permit 65000:1 0:89 0:155 ip community-list standard 1_90_154 permit 65000:1 0:90 0:154 ip community-list standard 1_91_153 permit 65000:1 0:91 0:153 ip community-list standard 1_92_152 permit 65000:1 0:92 0:152 ip community-list standard 1_93_151 permit 65000:1 0:93 0:151 ip community-list standard 1_94_150 permit 65000:1 0:94 0:150 ip community-list standard 1_95_149 permit 65000:1 0:95 0:149 ip community-list standard 1_96_148 permit 65000:1 0:96 0:148 ip community-list standard 1_97_147 permit 65000:1 0:97 0:147 ip community-list standard 1_98_146 permit 65000:1 0:98 0:146 ip community-list standard 1_99_145 permit 65000:1 0:99 0:145 ip community-list standard 1_100_144 permit 65000:1 0:100 0:144 ip community-list standard 1_101_143 permit 65000:1 0:101 0:143 ip community-list standard 1_102_142 permit 65000:1 0:102 0:142 ip community-list standard 1_103_141 permit 65000:1 0:103 0:141 ip community-list standard 1_104_140 permit 65000:1 0:104 0:140 ip community-list standard 1_105_139 permit 65000:1 0:105 0:139 ip community-list standard 1_106_138 permit 65000:1 0:106 0:138 ip community-list standard 1_107_137 permit 65000:1 0:107 0:137 ip community-list standard 1_108_136 permit 65000:1 0:108 0:136 ip community-list standard 1_109_135 permit 65000:1 0:109 0:135 ip community-list standard 1_110_134 permit 65000:1 0:110 0:134 ip community-list standard 1_111_133 permit 65000:1 0:111 0:133 ip community-list standard 1_112_132 permit 65000:1 0:112 0:132 ip community-list standard 1_113_131 permit 65000:1 0:113 0:131 ip community-list standard 1_114_130 permit 65000:1 0:114 0:130 ip community-list standard 1_115_129 permit 65000:1 0:115 0:129 ip community-list standard 1_116_128 permit 65000:1 0:116 0:128 ip community-list standard 1_117_127 permit 65000:1 0:117 0:127 ip community-list standard 1_118_126 permit 65000:1 0:118 0:126 ip community-list standard 1_119_125 permit 65000:1 0:119 0:125 ip community-list standard 1_120_124 permit 65000:1 0:120 0:124 ip community-list standard 1_121_123 permit 65000:1 0:121 0:123 ip community-list standard 1_122_122 permit 65000:1 0:122 0:122 ip community-list expanded c244 permit 1 ^65000:4_0:244_0:1$ ip community-list expanded c244 permit 2 ^65000:3_0:245_0:1$ ip community-list expanded c244 permit 3 ^65000:3_0:246_0:2$ ip community-list expanded c244 permit 4 ^65000:3_0:247_0:3$ ip community-list expanded c244 permit 5 ^65000:3_0:248_0:4$ ip community-list expanded c244 permit 6 ^65000:3_0:249_0:5$ ip community-list expanded c244 permit 7 ^65000:3_0:250_0:6$ ip community-list expanded c244 permit 8 ^65000:3_0:251_0:7$ ip community-list expanded c244 permit 9 ^65000:3_0:252_0:8$ ip community-list expanded c244 permit 10 ^65000:3_0:253_0:9$ ip community-list expanded c244 permit 11 ^65000:3_0:254_0:10$ ip community-list expanded c244 permit 12 ^65000:3_0:255_0:11$ ip community-list expanded c244 permit 13 ^65000:3_0:256_0:12$ route-map calculator permit 1707 match community 1_1_243 2_1_244 2_2_122 1_2_242 1_3_241 set community 0:244 route-map calculator permit 1708 match community 2_4_61 1_4_240 1_5_239 1_6_238 1_7_237 set community 0:244 route-map calculator permit 1709 match community 1_8_236 1_9_235 1_10_234 1_11_233 1_12_232 set community 0:244 route-map calculator permit 1710 match community 1_13_231 1_14_230 1_15_229 1_16_228 1_17_227 set community 0:244 route-map calculator permit 1711 match community 1_18_226 1_19_225 1_20_224 1_21_223 1_22_222 set community 0:244 route-map calculator permit 1712 match community 1_23_221 1_24_220 1_25_219 1_26_218 1_27_217 set community 0:244 route-map calculator permit 1713 match community 1_28_216 1_29_215 1_30_214 1_31_213 1_32_212 set community 0:244 route-map calculator permit 1714 match community 1_33_211 1_34_210 1_35_209 1_36_208 1_37_207 set community 0:244 route-map calculator permit 1715 match community 1_38_206 1_39_205 1_40_204 1_41_203 1_42_202 set community 0:244 route-map calculator permit 1716 match community 1_43_201 1_44_200 1_45_199 1_46_198 1_47_197 set community 0:244 route-map calculator permit 1717 match community 1_48_196 1_49_195 1_50_194 1_51_193 1_52_192 set community 0:244 route-map calculator permit 1718 match community 1_53_191 1_54_190 1_55_189 1_56_188 1_57_187 set community 0:244 route-map calculator permit 1719 match community 1_58_186 1_59_185 1_60_184 1_61_183 1_62_182 set community 0:244 route-map calculator permit 1720 match community 1_63_181 1_64_180 1_65_179 1_66_178 1_67_177 set community 0:244 route-map calculator permit 1721 match community 1_68_176 1_69_175 1_70_174 1_71_173 1_72_172 set community 0:244 route-map calculator permit 1722 match community 1_73_171 1_74_170 1_75_169 1_76_168 1_77_167 set community 0:244 route-map calculator permit 1723 match community 1_78_166 1_79_165 1_80_164 1_81_163 1_82_162 set community 0:244 route-map calculator permit 1724 match community 1_83_161 1_84_160 1_85_159 1_86_158 1_87_157 set community 0:244 route-map calculator permit 1725 match community 1_88_156 1_89_155 1_90_154 1_91_153 1_92_152 set community 0:244 route-map calculator permit 1726 match community 1_93_151 1_94_150 1_95_149 1_96_148 1_97_147 set community 0:244 route-map calculator permit 1727 match community 1_98_146 1_99_145 1_100_144 1_101_143 1_102_142 set community 0:244 route-map calculator permit 1728 match community 1_103_141 1_104_140 1_105_139 1_106_138 1_107_137 set community 0:244 route-map calculator permit 1729 match community 1_108_136 1_109_135 1_110_134 1_111_133 1_112_132 set community 0:244 route-map calculator permit 1730 match community 1_113_131 1_114_130 1_115_129 1_116_128 1_117_127 set community 0:244 route-map calculator permit 1731 match community 1_118_126 1_119_125 1_120_124 1_121_123 1_122_122 set community 0:244 route-map calculator permit 1732 match community c4_244_1 c3_245_1 c3_246_2 c3_247_3 c3_248_4 set community 0:244 route-map calculator permit 1733 match community c3_249_5 c3_250_6 c3_251_7 c3_252_8 c3_253_9 set community 0:244 route-map calculator permit 1734 match community c3_254_10 c3_255_11 c3_256_12 set community 0:244 ip community-list standard 2_190_244 permit 65000:2 0:190 0:244 route-map calculator permit 1735 match community 2_190_244 set community 0:46360 ip community-list standard 2_177_190 permit 65000:2 0:177 0:190 route-map calculator permit 1736 match community 2_177_190 set community 0:33630 ip community-list standard 2_209_250 permit 65000:2 0:209 0:250 route-map calculator permit 1737 match community 2_209_250 set community 0:52250 ip community-list standard 2_2_231 permit 65000:2 0:2 0:231 ip community-list standard 2_3_154 permit 65000:2 0:3 0:154 ip community-list standard 2_6_77 permit 65000:2 0:6 0:77 ip community-list standard 2_7_66 permit 65000:2 0:7 0:66 ip community-list standard 2_11_42 permit 65000:2 0:11 0:42 ip community-list standard 2_14_33 permit 65000:2 0:14 0:33 ip community-list standard 2_21_22 permit 65000:2 0:21 0:22 ip community-list standard 1_206_256 permit 65000:1 0:206 0:256 ip community-list standard 1_207_255 permit 65000:1 0:207 0:255 ip community-list standard 1_208_254 permit 65000:1 0:208 0:254 ip community-list standard 1_209_253 permit 65000:1 0:209 0:253 ip community-list standard 1_210_252 permit 65000:1 0:210 0:252 ip community-list standard 1_211_251 permit 65000:1 0:211 0:251 ip community-list standard 1_212_250 permit 65000:1 0:212 0:250 ip community-list standard 1_213_249 permit 65000:1 0:213 0:249 ip community-list standard 1_214_248 permit 65000:1 0:214 0:248 ip community-list standard 1_215_247 permit 65000:1 0:215 0:247 ip community-list standard 1_216_246 permit 65000:1 0:216 0:246 ip community-list standard 1_217_245 permit 65000:1 0:217 0:245 ip community-list standard 1_218_244 permit 65000:1 0:218 0:244 ip community-list standard 1_219_243 permit 65000:1 0:219 0:243 ip community-list standard 1_220_242 permit 65000:1 0:220 0:242 ip community-list standard 1_221_241 permit 65000:1 0:221 0:241 ip community-list standard 1_222_240 permit 65000:1 0:222 0:240 ip community-list standard 1_223_239 permit 65000:1 0:223 0:239 ip community-list standard 1_224_238 permit 65000:1 0:224 0:238 ip community-list standard 1_225_237 permit 65000:1 0:225 0:237 ip community-list standard 1_226_236 permit 65000:1 0:226 0:236 ip community-list standard 1_227_235 permit 65000:1 0:227 0:235 ip community-list standard 1_228_234 permit 65000:1 0:228 0:234 ip community-list standard 1_229_233 permit 65000:1 0:229 0:233 ip community-list standard 1_230_232 permit 65000:1 0:230 0:232 ip community-list standard 1_231_231 permit 65000:1 0:231 0:231 route-map calculator permit 1738 match community 2_2_231 2_3_154 2_6_77 2_7_66 2_11_42 set community 0:462 route-map calculator permit 1739 match community 2_14_33 2_21_22 1_206_256 1_207_255 1_208_254 set community 0:462 route-map calculator permit 1740 match community 1_209_253 1_210_252 1_211_251 1_212_250 1_213_249 set community 0:462 route-map calculator permit 1741 match community 1_214_248 1_215_247 1_216_246 1_217_245 1_218_244 set community 0:462 route-map calculator permit 1742 match community 1_219_243 1_220_242 1_221_241 1_222_240 1_223_239 set community 0:462 route-map calculator permit 1743 match community 1_224_238 1_225_237 1_226_236 1_227_235 1_228_234 set community 0:462 route-map calculator permit 1744 match community 1_229_233 1_230_232 1_231_231 set community 0:462 ip community-list standard 2_45_231 permit 65000:2 0:45 0:231 ip community-list standard 2_55_189 permit 65000:2 0:55 0:189 ip community-list standard 2_63_165 permit 65000:2 0:63 0:165 ip community-list standard 2_77_135 permit 65000:2 0:77 0:135 ip community-list standard 2_99_105 permit 65000:2 0:99 0:105 route-map calculator permit 1745 match community 2_45_231 2_55_189 2_63_165 2_77_135 2_99_105 set community 0:10395 ip community-list standard 2_207_226 permit 65000:2 0:207 0:226 route-map calculator permit 1746 match community 2_207_226 set community 0:46782 ip community-list standard 2_193_236 permit 65000:2 0:193 0:236 route-map calculator permit 1747 match community 2_193_236 set community 0:45548 ip community-list standard 2_72_149 permit 65000:2 0:72 0:149 route-map calculator permit 1748 match community 2_72_149 set community 0:10728 ip community-list standard 2_136_234 permit 65000:2 0:136 0:234 ip community-list standard 2_144_221 permit 65000:2 0:144 0:221 ip community-list standard 2_153_208 permit 65000:2 0:153 0:208 ip community-list standard 2_156_204 permit 65000:2 0:156 0:204 route-map calculator permit 1749 match community 2_136_234 2_144_221 2_153_208 2_156_204 set community 0:31824 ip community-list standard 2_9_222 permit 65000:2 0:9 0:222 ip community-list standard 2_18_111 permit 65000:2 0:18 0:111 ip community-list standard 2_27_74 permit 65000:2 0:27 0:74 ip community-list standard 2_37_54 permit 65000:2 0:37 0:54 route-map calculator permit 1750 match community 2_9_222 2_18_111 2_27_74 2_37_54 set community 0:1998 ip community-list standard 2_162_251 permit 65000:2 0:162 0:251 route-map calculator permit 1751 match community 2_162_251 set community 0:40662 ip community-list standard 2_5_208 permit 65000:2 0:5 0:208 ip community-list standard 2_8_130 permit 65000:2 0:8 0:130 ip community-list standard 2_10_104 permit 65000:2 0:10 0:104 ip community-list standard 2_13_80 permit 65000:2 0:13 0:80 ip community-list standard 2_16_65 permit 65000:2 0:16 0:65 ip community-list standard 2_20_52 permit 65000:2 0:20 0:52 ip community-list standard 2_26_40 permit 65000:2 0:26 0:40 route-map calculator permit 1752 match community 2_5_208 2_8_130 2_10_104 2_13_80 2_16_65 set community 0:1040 route-map calculator permit 1753 match community 2_20_52 2_26_40 set community 0:1040 ip community-list standard 2_77_249 permit 65000:2 0:77 0:249 ip community-list standard 2_83_231 permit 65000:2 0:83 0:231 route-map calculator permit 1754 match community 2_77_249 2_83_231 set community 0:19173 ip community-list standard 2_84_172 permit 65000:2 0:84 0:172 ip community-list standard 2_86_168 permit 65000:2 0:86 0:168 ip community-list standard 2_112_129 permit 65000:2 0:112 0:129 route-map calculator permit 1755 match community 2_84_172 2_86_168 2_112_129 set community 0:14448 ip community-list standard 2_37_243 permit 65000:2 0:37 0:243 ip community-list standard 2_81_111 permit 65000:2 0:81 0:111 route-map calculator permit 1756 match community 2_37_243 2_81_111 set community 0:8991 ip community-list standard 2_46_226 permit 65000:2 0:46 0:226 ip community-list standard 2_92_113 permit 65000:2 0:92 0:113 route-map calculator permit 1757 match community 2_46_226 2_92_113 set community 0:10396 ip community-list standard 2_154_178 permit 65000:2 0:154 0:178 route-map calculator permit 1758 match community 2_154_178 set community 0:27412 ip community-list standard 2_114_157 permit 65000:2 0:114 0:157 route-map calculator permit 1759 match community 2_114_157 set community 0:17898 ip community-list standard 2_29_151 permit 65000:2 0:29 0:151 route-map calculator permit 1760 match community 2_29_151 set community 0:4379 ip community-list standard 2_17_129 permit 65000:2 0:17 0:129 ip community-list standard 2_43_51 permit 65000:2 0:43 0:51 route-map calculator permit 1761 match community 2_17_129 2_43_51 set community 0:2193 ip community-list standard 2_50_187 permit 65000:2 0:50 0:187 ip community-list standard 2_55_170 permit 65000:2 0:55 0:170 ip community-list standard 2_85_110 permit 65000:2 0:85 0:110 route-map calculator permit 1762 match community 2_50_187 2_55_170 2_85_110 set community 0:9350 ip community-list standard 2_83_196 permit 65000:2 0:83 0:196 ip community-list standard 2_98_166 permit 65000:2 0:98 0:166 route-map calculator permit 1763 match community 2_83_196 2_98_166 set community 0:16268 ip community-list standard 2_105_113 permit 65000:2 0:105 0:113 route-map calculator permit 1764 match community 2_105_113 set community 0:11865 ip community-list standard 2_41_178 permit 65000:2 0:41 0:178 ip community-list standard 2_82_89 permit 65000:2 0:82 0:89 route-map calculator permit 1765 match community 2_41_178 2_82_89 set community 0:7298 ip community-list standard 2_131_227 permit 65000:2 0:131 0:227 route-map calculator permit 1766 match community 2_131_227 set community 0:29737 ip community-list standard 2_2_206 permit 65000:2 0:2 0:206 ip community-list standard 2_4_103 permit 65000:2 0:4 0:103 ip community-list standard 1_156_256 permit 65000:1 0:156 0:256 ip community-list standard 1_157_255 permit 65000:1 0:157 0:255 ip community-list standard 1_158_254 permit 65000:1 0:158 0:254 ip community-list standard 1_159_253 permit 65000:1 0:159 0:253 ip community-list standard 1_160_252 permit 65000:1 0:160 0:252 ip community-list standard 1_161_251 permit 65000:1 0:161 0:251 ip community-list standard 1_162_250 permit 65000:1 0:162 0:250 ip community-list standard 1_163_249 permit 65000:1 0:163 0:249 ip community-list standard 1_164_248 permit 65000:1 0:164 0:248 ip community-list standard 1_165_247 permit 65000:1 0:165 0:247 ip community-list standard 1_166_246 permit 65000:1 0:166 0:246 ip community-list standard 1_167_245 permit 65000:1 0:167 0:245 ip community-list standard 1_168_244 permit 65000:1 0:168 0:244 ip community-list standard 1_169_243 permit 65000:1 0:169 0:243 ip community-list standard 1_170_242 permit 65000:1 0:170 0:242 ip community-list standard 1_171_241 permit 65000:1 0:171 0:241 ip community-list standard 1_172_240 permit 65000:1 0:172 0:240 ip community-list standard 1_173_239 permit 65000:1 0:173 0:239 ip community-list standard 1_174_238 permit 65000:1 0:174 0:238 ip community-list standard 1_175_237 permit 65000:1 0:175 0:237 ip community-list standard 1_176_236 permit 65000:1 0:176 0:236 ip community-list standard 1_177_235 permit 65000:1 0:177 0:235 ip community-list standard 1_178_234 permit 65000:1 0:178 0:234 ip community-list standard 1_179_233 permit 65000:1 0:179 0:233 ip community-list standard 1_180_232 permit 65000:1 0:180 0:232 ip community-list standard 1_181_231 permit 65000:1 0:181 0:231 ip community-list standard 1_182_230 permit 65000:1 0:182 0:230 ip community-list standard 1_183_229 permit 65000:1 0:183 0:229 ip community-list standard 1_184_228 permit 65000:1 0:184 0:228 ip community-list standard 1_185_227 permit 65000:1 0:185 0:227 ip community-list standard 1_186_226 permit 65000:1 0:186 0:226 ip community-list standard 1_187_225 permit 65000:1 0:187 0:225 ip community-list standard 1_188_224 permit 65000:1 0:188 0:224 ip community-list standard 1_189_223 permit 65000:1 0:189 0:223 ip community-list standard 1_190_222 permit 65000:1 0:190 0:222 ip community-list standard 1_191_221 permit 65000:1 0:191 0:221 ip community-list standard 1_192_220 permit 65000:1 0:192 0:220 ip community-list standard 1_193_219 permit 65000:1 0:193 0:219 ip community-list standard 1_194_218 permit 65000:1 0:194 0:218 ip community-list standard 1_195_217 permit 65000:1 0:195 0:217 ip community-list standard 1_196_216 permit 65000:1 0:196 0:216 ip community-list standard 1_197_215 permit 65000:1 0:197 0:215 ip community-list standard 1_198_214 permit 65000:1 0:198 0:214 ip community-list standard 1_199_213 permit 65000:1 0:199 0:213 ip community-list standard 1_200_212 permit 65000:1 0:200 0:212 ip community-list standard 1_201_211 permit 65000:1 0:201 0:211 ip community-list standard 1_202_210 permit 65000:1 0:202 0:210 ip community-list standard 1_203_209 permit 65000:1 0:203 0:209 ip community-list standard 1_204_208 permit 65000:1 0:204 0:208 ip community-list standard 1_205_207 permit 65000:1 0:205 0:207 ip community-list standard 1_206_206 permit 65000:1 0:206 0:206 route-map calculator permit 1767 match community 2_2_206 2_4_103 1_156_256 1_157_255 1_158_254 set community 0:412 route-map calculator permit 1768 match community 1_159_253 1_160_252 1_161_251 1_162_250 1_163_249 set community 0:412 route-map calculator permit 1769 match community 1_164_248 1_165_247 1_166_246 1_167_245 1_168_244 set community 0:412 route-map calculator permit 1770 match community 1_169_243 1_170_242 1_171_241 1_172_240 1_173_239 set community 0:412 route-map calculator permit 1771 match community 1_174_238 1_175_237 1_176_236 1_177_235 1_178_234 set community 0:412 route-map calculator permit 1772 match community 1_179_233 1_180_232 1_181_231 1_182_230 1_183_229 set community 0:412 route-map calculator permit 1773 match community 1_184_228 1_185_227 1_186_226 1_187_225 1_188_224 set community 0:412 route-map calculator permit 1774 match community 1_189_223 1_190_222 1_191_221 1_192_220 1_193_219 set community 0:412 route-map calculator permit 1775 match community 1_194_218 1_195_217 1_196_216 1_197_215 1_198_214 set community 0:412 route-map calculator permit 1776 match community 1_199_213 1_200_212 1_201_211 1_202_210 1_203_209 set community 0:412 route-map calculator permit 1777 match community 1_204_208 1_205_207 1_206_206 set community 0:412 ip community-list standard 2_184_223 permit 65000:2 0:184 0:223 route-map calculator permit 1778 match community 2_184_223 set community 0:41032 ip community-list standard 2_40_248 permit 65000:2 0:40 0:248 ip community-list standard 2_62_160 permit 65000:2 0:62 0:160 ip community-list standard 2_64_155 permit 65000:2 0:64 0:155 ip community-list standard 2_80_124 permit 65000:2 0:80 0:124 route-map calculator permit 1779 match community 2_40_248 2_62_160 2_64_155 2_80_124 set community 0:9920 ip community-list standard 2_155_209 permit 65000:2 0:155 0:209 route-map calculator permit 1780 match community 2_155_209 set community 0:32395 ip community-list standard 2_46_222 permit 65000:2 0:46 0:222 ip community-list standard 2_69_148 permit 65000:2 0:69 0:148 ip community-list standard 2_74_138 permit 65000:2 0:74 0:138 ip community-list standard 2_92_111 permit 65000:2 0:92 0:111 route-map calculator permit 1781 match community 2_46_222 2_69_148 2_74_138 2_92_111 set community 0:10212 ip community-list standard 2_46_131 permit 65000:2 0:46 0:131 route-map calculator permit 1782 match community 2_46_131 set community 0:6026 ip community-list standard 2_135_229 permit 65000:2 0:135 0:229 route-map calculator permit 1783 match community 2_135_229 set community 0:30915 ip community-list standard 2_81_214 permit 65000:2 0:81 0:214 ip community-list standard 2_107_162 permit 65000:2 0:107 0:162 route-map calculator permit 1784 match community 2_81_214 2_107_162 set community 0:17334 ip community-list standard 2_149_204 permit 65000:2 0:149 0:204 route-map calculator permit 1785 match community 2_149_204 set community 0:30396 ip community-list standard 2_71_203 permit 65000:2 0:71 0:203 route-map calculator permit 1786 match community 2_71_203 set community 0:14413 ip community-list standard 2_128_223 permit 65000:2 0:128 0:223 route-map calculator permit 1787 match community 2_128_223 set community 0:28544 ip community-list standard 2_240_249 permit 65000:2 0:240 0:249 route-map calculator permit 1788 match community 2_240_249 set community 0:59760 ip community-list standard 2_51_119 permit 65000:2 0:51 0:119 route-map calculator permit 1789 match community 2_51_119 set community 0:6069 ip community-list standard 2_163_230 permit 65000:2 0:163 0:230 route-map calculator permit 1790 match community 2_163_230 set community 0:37490 ip community-list standard 2_4_238 permit 65000:2 0:4 0:238 ip community-list standard 2_7_136 permit 65000:2 0:7 0:136 ip community-list standard 2_8_119 permit 65000:2 0:8 0:119 ip community-list standard 2_14_68 permit 65000:2 0:14 0:68 ip community-list standard 2_17_56 permit 65000:2 0:17 0:56 ip community-list standard 2_28_34 permit 65000:2 0:28 0:34 route-map calculator permit 1791 match community 2_4_238 2_7_136 2_8_119 2_14_68 2_17_56 set community 0:952 route-map calculator permit 1792 match community 2_28_34 set community 0:952 ip community-list standard 2_214_237 permit 65000:2 0:214 0:237 route-map calculator permit 1793 match community 2_214_237 set community 0:50718 ip community-list standard 2_98_218 permit 65000:2 0:98 0:218 ip community-list standard 2_109_196 permit 65000:2 0:109 0:196 route-map calculator permit 1794 match community 2_98_218 2_109_196 set community 0:21364 ip community-list standard 2_175_181 permit 65000:2 0:175 0:181 route-map calculator permit 1795 match community 2_175_181 set community 0:31675 ip community-list standard 2_21_193 permit 65000:2 0:21 0:193 route-map calculator permit 1796 match community 2_21_193 set community 0:4053 ip community-list standard 2_155_250 permit 65000:2 0:155 0:250 route-map calculator permit 1797 match community 2_155_250 set community 0:38750 ip community-list standard 2_29_179 permit 65000:2 0:29 0:179 route-map calculator permit 1798 match community 2_29_179 set community 0:5191 ip community-list standard 2_158_205 permit 65000:2 0:158 0:205 route-map calculator permit 1799 match community 2_158_205 set community 0:32390 ip community-list standard 2_141_256 permit 65000:2 0:141 0:256 ip community-list standard 2_188_192 permit 65000:2 0:188 0:192 route-map calculator permit 1800 match community 2_141_256 2_188_192 set community 0:36096 ip community-list standard 2_233_248 permit 65000:2 0:233 0:248 route-map calculator permit 1801 match community 2_233_248 set community 0:57784 ip community-list standard 2_63_179 permit 65000:2 0:63 0:179 route-map calculator permit 1802 match community 2_63_179 set community 0:11277 ip community-list standard 2_214_221 permit 65000:2 0:214 0:221 route-map calculator permit 1803 match community 2_214_221 set community 0:47294 ip community-list standard 2_47_98 permit 65000:2 0:47 0:98 ip community-list standard 2_49_94 permit 65000:2 0:49 0:94 route-map calculator permit 1804 match community 2_47_98 2_49_94 set community 0:4606 ip community-list standard 2_133_163 permit 65000:2 0:133 0:163 route-map calculator permit 1805 match community 2_133_163 set community 0:21679 ip community-list standard 2_93_249 permit 65000:2 0:93 0:249 route-map calculator permit 1806 match community 2_93_249 set community 0:23157 ip community-list standard 2_11_107 permit 65000:2 0:11 0:107 route-map calculator permit 1807 match community 2_11_107 set community 0:1177 ip community-list standard 2_124_255 permit 65000:2 0:124 0:255 ip community-list standard 2_155_204 permit 65000:2 0:155 0:204 ip community-list standard 2_170_186 permit 65000:2 0:170 0:186 route-map calculator permit 1808 match community 2_124_255 2_155_204 2_170_186 set community 0:31620 ip community-list standard 2_192_255 permit 65000:2 0:192 0:255 ip community-list standard 2_204_240 permit 65000:2 0:204 0:240 route-map calculator permit 1809 match community 2_192_255 2_204_240 set community 0:48960 ip community-list standard 2_178_204 permit 65000:2 0:178 0:204 route-map calculator permit 1810 match community 2_178_204 set community 0:36312 ip community-list standard 2_134_181 permit 65000:2 0:134 0:181 route-map calculator permit 1811 match community 2_134_181 set community 0:24254 ip community-list standard 2_91_167 permit 65000:2 0:91 0:167 route-map calculator permit 1812 match community 2_91_167 set community 0:15197 ip community-list standard 2_93_213 permit 65000:2 0:93 0:213 route-map calculator permit 1813 match community 2_93_213 set community 0:19809 ip community-list standard 2_138_233 permit 65000:2 0:138 0:233 route-map calculator permit 1814 match community 2_138_233 set community 0:32154 ip community-list standard 2_97_227 permit 65000:2 0:97 0:227 route-map calculator permit 1815 match community 2_97_227 set community 0:22019 ip community-list standard 2_149_245 permit 65000:2 0:149 0:245 route-map calculator permit 1816 match community 2_149_245 set community 0:36505 ip community-list standard 2_35_250 permit 65000:2 0:35 0:250 ip community-list standard 2_50_175 permit 65000:2 0:50 0:175 ip community-list standard 2_70_125 permit 65000:2 0:70 0:125 route-map calculator permit 1817 match community 2_35_250 2_50_175 2_70_125 set community 0:8750 ip community-list standard 2_69_203 permit 65000:2 0:69 0:203 ip community-list standard 2_87_161 permit 65000:2 0:87 0:161 route-map calculator permit 1818 match community 2_69_203 2_87_161 set community 0:14007 ip community-list standard 2_98_232 permit 65000:2 0:98 0:232 ip community-list standard 2_112_203 permit 65000:2 0:112 0:203 ip community-list standard 2_116_196 permit 65000:2 0:116 0:196 route-map calculator permit 1819 match community 2_98_232 2_112_203 2_116_196 set community 0:22736 ip community-list standard 2_174_199 permit 65000:2 0:174 0:199 route-map calculator permit 1820 match community 2_174_199 set community 0:34626 ip community-list standard 2_190_197 permit 65000:2 0:190 0:197 route-map calculator permit 1821 match community 2_190_197 set community 0:37430 ip community-list standard 2_114_167 permit 65000:2 0:114 0:167 route-map calculator permit 1822 match community 2_114_167 set community 0:19038 ip community-list standard 2_212_217 permit 65000:2 0:212 0:217 route-map calculator permit 1823 match community 2_212_217 set community 0:46004 ip community-list standard 2_166_167 permit 65000:2 0:166 0:167 route-map calculator permit 1824 match community 2_166_167 set community 0:27722 ip community-list standard 2_193_244 permit 65000:2 0:193 0:244 route-map calculator permit 1825 match community 2_193_244 set community 0:47092 ip community-list standard 2_89_109 permit 65000:2 0:89 0:109 route-map calculator permit 1826 match community 2_89_109 set community 0:9701 ip community-list standard 2_241_250 permit 65000:2 0:241 0:250 route-map calculator permit 1827 match community 2_241_250 set community 0:60250 ip community-list standard 2_189_249 permit 65000:2 0:189 0:249 route-map calculator permit 1828 match community 2_189_249 set community 0:47061 ip community-list standard 2_88_208 permit 65000:2 0:88 0:208 ip community-list standard 2_104_176 permit 65000:2 0:104 0:176 ip community-list standard 2_128_143 permit 65000:2 0:128 0:143 route-map calculator permit 1829 match community 2_88_208 2_104_176 2_128_143 set community 0:18304 ip community-list standard 2_241_256 permit 65000:2 0:241 0:256 route-map calculator permit 1830 match community 2_241_256 set community 0:61696 ip community-list standard 2_161_207 permit 65000:2 0:161 0:207 route-map calculator permit 1831 match community 2_161_207 set community 0:33327 ip community-list standard 2_101_199 permit 65000:2 0:101 0:199 route-map calculator permit 1832 match community 2_101_199 set community 0:20099 ip community-list standard 2_13_86 permit 65000:2 0:13 0:86 ip community-list standard 2_26_43 permit 65000:2 0:26 0:43 route-map calculator permit 1833 match community 2_13_86 2_26_43 set community 0:1118 ip community-list standard 2_136_206 permit 65000:2 0:136 0:206 route-map calculator permit 1834 match community 2_136_206 set community 0:28016 ip community-list standard 2_42_250 permit 65000:2 0:42 0:250 ip community-list standard 2_50_210 permit 65000:2 0:50 0:210 ip community-list standard 2_60_175 permit 65000:2 0:60 0:175 ip community-list standard 2_70_150 permit 65000:2 0:70 0:150 ip community-list standard 2_75_140 permit 65000:2 0:75 0:140 ip community-list standard 2_84_125 permit 65000:2 0:84 0:125 ip community-list standard 2_100_105 permit 65000:2 0:100 0:105 route-map calculator permit 1835 match community 2_42_250 2_50_210 2_60_175 2_70_150 2_75_140 set community 0:10500 route-map calculator permit 1836 match community 2_84_125 2_100_105 set community 0:10500 ip community-list standard 2_195_236 permit 65000:2 0:195 0:236 route-map calculator permit 1837 match community 2_195_236 set community 0:46020 ip community-list standard 2_121_256 permit 65000:2 0:121 0:256 ip community-list standard 2_128_242 permit 65000:2 0:128 0:242 ip community-list standard 2_176_176 permit 65000:2 0:176 0:176 route-map calculator permit 1838 match community 2_121_256 2_128_242 2_176_176 set community 0:30976 ip community-list standard 2_19_89 permit 65000:2 0:19 0:89 route-map calculator permit 1839 match community 2_19_89 set community 0:1691 ip community-list standard 2_64_149 permit 65000:2 0:64 0:149 route-map calculator permit 1840 match community 2_64_149 set community 0:9536 ip community-list standard 2_234_251 permit 65000:2 0:234 0:251 route-map calculator permit 1841 match community 2_234_251 set community 0:58734 ip community-list standard 2_107_247 permit 65000:2 0:107 0:247 route-map calculator permit 1842 match community 2_107_247 set community 0:26429 ip community-list standard 2_85_215 permit 65000:2 0:85 0:215 route-map calculator permit 1843 match community 2_85_215 set community 0:18275 ip community-list standard 2_29_210 permit 65000:2 0:29 0:210 ip community-list standard 2_30_203 permit 65000:2 0:30 0:203 ip community-list standard 2_35_174 permit 65000:2 0:35 0:174 ip community-list standard 2_42_145 permit 65000:2 0:42 0:145 ip community-list standard 2_58_105 permit 65000:2 0:58 0:105 ip community-list standard 2_70_87 permit 65000:2 0:70 0:87 route-map calculator permit 1844 match community 2_29_210 2_30_203 2_35_174 2_42_145 2_58_105 set community 0:6090 route-map calculator permit 1845 match community 2_70_87 set community 0:6090 ip community-list standard 2_99_213 permit 65000:2 0:99 0:213 route-map calculator permit 1846 match community 2_99_213 set community 0:21087 ip community-list standard 2_175_243 permit 65000:2 0:175 0:243 ip community-list standard 2_189_225 permit 65000:2 0:189 0:225 route-map calculator permit 1847 match community 2_175_243 2_189_225 set community 0:42525 ip community-list standard 2_245_251 permit 65000:2 0:245 0:251 route-map calculator permit 1848 match community 2_245_251 set community 0:61495 ip community-list standard 2_122_253 permit 65000:2 0:122 0:253 route-map calculator permit 1849 match community 2_122_253 set community 0:30866 ip community-list standard 2_135_232 permit 65000:2 0:135 0:232 ip community-list standard 2_145_216 permit 65000:2 0:145 0:216 ip community-list standard 2_174_180 permit 65000:2 0:174 0:180 route-map calculator permit 1850 match community 2_135_232 2_145_216 2_174_180 set community 0:31320 ip community-list standard 2_10_185 permit 65000:2 0:10 0:185 ip community-list standard 2_25_74 permit 65000:2 0:25 0:74 ip community-list standard 2_37_50 permit 65000:2 0:37 0:50 route-map calculator permit 1851 match community 2_10_185 2_25_74 2_37_50 set community 0:1850 ip community-list standard 2_129_186 permit 65000:2 0:129 0:186 route-map calculator permit 1852 match community 2_129_186 set community 0:23994 ip community-list standard 2_237_239 permit 65000:2 0:237 0:239 route-map calculator permit 1853 match community 2_237_239 set community 0:56643 ip community-list standard 2_46_173 permit 65000:2 0:46 0:173 route-map calculator permit 1854 match community 2_46_173 set community 0:7958 ip community-list standard 2_162_236 permit 65000:2 0:162 0:236 ip community-list standard 2_177_216 permit 65000:2 0:177 0:216 route-map calculator permit 1855 match community 2_162_236 2_177_216 set community 0:38232 ip community-list standard 2_194_236 permit 65000:2 0:194 0:236 route-map calculator permit 1856 match community 2_194_236 set community 0:45784 ip community-list standard 2_94_218 permit 65000:2 0:94 0:218 ip community-list standard 2_109_188 permit 65000:2 0:109 0:188 route-map calculator permit 1857 match community 2_94_218 2_109_188 set community 0:20492 ip community-list standard 2_229_237 permit 65000:2 0:229 0:237 route-map calculator permit 1858 match community 2_229_237 set community 0:54273 ip community-list standard 2_198_243 permit 65000:2 0:198 0:243 route-map calculator permit 1859 match community 2_198_243 set community 0:48114 ip community-list standard 2_55_231 permit 65000:2 0:55 0:231 ip community-list standard 2_77_165 permit 65000:2 0:77 0:165 ip community-list standard 2_105_121 permit 65000:2 0:105 0:121 route-map calculator permit 1860 match community 2_55_231 2_77_165 2_105_121 set community 0:12705 ip community-list standard 2_17_82 permit 65000:2 0:17 0:82 ip community-list standard 2_34_41 permit 65000:2 0:34 0:41 route-map calculator permit 1861 match community 2_17_82 2_34_41 set community 0:1394 ip community-list standard 2_14_133 permit 65000:2 0:14 0:133 ip community-list standard 2_19_98 permit 65000:2 0:19 0:98 ip community-list standard 2_38_49 permit 65000:2 0:38 0:49 route-map calculator permit 1862 match community 2_14_133 2_19_98 2_38_49 set community 0:1862 ip community-list standard 2_54_174 permit 65000:2 0:54 0:174 ip community-list standard 2_58_162 permit 65000:2 0:58 0:162 ip community-list standard 2_81_116 permit 65000:2 0:81 0:116 ip community-list standard 2_87_108 permit 65000:2 0:87 0:108 route-map calculator permit 1863 match community 2_54_174 2_58_162 2_81_116 2_87_108 set community 0:9396 ip community-list standard 2_142_217 permit 65000:2 0:142 0:217 route-map calculator permit 1864 match community 2_142_217 set community 0:30814 ip community-list standard 2_56_214 permit 65000:2 0:56 0:214 ip community-list standard 2_107_112 permit 65000:2 0:107 0:112 route-map calculator permit 1865 match community 2_56_214 2_107_112 set community 0:11984 ip community-list standard 2_15_149 permit 65000:2 0:15 0:149 route-map calculator permit 1866 match community 2_15_149 set community 0:2235 ip community-list standard 2_45_230 permit 65000:2 0:45 0:230 ip community-list standard 2_46_225 permit 65000:2 0:46 0:225 ip community-list standard 2_50_207 permit 65000:2 0:50 0:207 ip community-list standard 2_69_150 permit 65000:2 0:69 0:150 ip community-list standard 2_75_138 permit 65000:2 0:75 0:138 ip community-list standard 2_90_115 permit 65000:2 0:90 0:115 route-map calculator permit 1867 match community 2_45_230 2_46_225 2_50_207 2_69_150 2_75_138 set community 0:10350 route-map calculator permit 1868 match community 2_90_115 set community 0:10350 ip community-list standard 2_159_215 permit 65000:2 0:159 0:215 route-map calculator permit 1869 match community 2_159_215 set community 0:34185 ip community-list standard 2_14_245 permit 65000:2 0:14 0:245 ip community-list standard 2_35_98 permit 65000:2 0:35 0:98 ip community-list standard 2_49_70 permit 65000:2 0:49 0:70 route-map calculator permit 1870 match community 2_14_245 2_35_98 2_49_70 set community 0:3430 ip community-list standard 2_31_194 permit 65000:2 0:31 0:194 ip community-list standard 2_62_97 permit 65000:2 0:62 0:97 route-map calculator permit 1871 match community 2_31_194 2_62_97 set community 0:6014 ip community-list standard 2_139_179 permit 65000:2 0:139 0:179 route-map calculator permit 1872 match community 2_139_179 set community 0:24881 ip community-list standard 2_86_218 permit 65000:2 0:86 0:218 ip community-list standard 2_109_172 permit 65000:2 0:109 0:172 route-map calculator permit 1873 match community 2_86_218 2_109_172 set community 0:18748 ip community-list standard 2_41_239 permit 65000:2 0:41 0:239 route-map calculator permit 1874 match community 2_41_239 set community 0:9799 ip community-list standard 2_29_58 permit 65000:2 0:29 0:58 route-map calculator permit 1875 match community 2_29_58 set community 0:1682 ip community-list standard 2_20_226 permit 65000:2 0:20 0:226 ip community-list standard 2_40_113 permit 65000:2 0:40 0:113 route-map calculator permit 1876 match community 2_20_226 2_40_113 set community 0:4520 ip community-list standard 2_199_245 permit 65000:2 0:199 0:245 route-map calculator permit 1877 match community 2_199_245 set community 0:48755 ip community-list standard 2_161_225 permit 65000:2 0:161 0:225 ip community-list standard 2_175_207 permit 65000:2 0:175 0:207 route-map calculator permit 1878 match community 2_161_225 2_175_207 set community 0:36225 ip community-list standard 2_141_244 permit 65000:2 0:141 0:244 ip community-list standard 2_183_188 permit 65000:2 0:183 0:188 route-map calculator permit 1879 match community 2_141_244 2_183_188 set community 0:34404 ip community-list standard 2_2_146 permit 65000:2 0:2 0:146 ip community-list standard 2_4_73 permit 65000:2 0:4 0:73 ip community-list standard 1_36_256 permit 65000:1 0:36 0:256 ip community-list standard 1_37_255 permit 65000:1 0:37 0:255 ip community-list standard 1_38_254 permit 65000:1 0:38 0:254 ip community-list standard 1_39_253 permit 65000:1 0:39 0:253 ip community-list standard 1_40_252 permit 65000:1 0:40 0:252 ip community-list standard 1_41_251 permit 65000:1 0:41 0:251 ip community-list standard 1_42_250 permit 65000:1 0:42 0:250 ip community-list standard 1_43_249 permit 65000:1 0:43 0:249 ip community-list standard 1_44_248 permit 65000:1 0:44 0:248 ip community-list standard 1_45_247 permit 65000:1 0:45 0:247 ip community-list standard 1_46_246 permit 65000:1 0:46 0:246 ip community-list standard 1_47_245 permit 65000:1 0:47 0:245 ip community-list standard 1_48_244 permit 65000:1 0:48 0:244 ip community-list standard 1_49_243 permit 65000:1 0:49 0:243 ip community-list standard 1_50_242 permit 65000:1 0:50 0:242 ip community-list standard 1_51_241 permit 65000:1 0:51 0:241 ip community-list standard 1_52_240 permit 65000:1 0:52 0:240 ip community-list standard 1_53_239 permit 65000:1 0:53 0:239 ip community-list standard 1_54_238 permit 65000:1 0:54 0:238 ip community-list standard 1_55_237 permit 65000:1 0:55 0:237 ip community-list standard 1_56_236 permit 65000:1 0:56 0:236 ip community-list standard 1_57_235 permit 65000:1 0:57 0:235 ip community-list standard 1_58_234 permit 65000:1 0:58 0:234 ip community-list standard 1_59_233 permit 65000:1 0:59 0:233 ip community-list standard 1_60_232 permit 65000:1 0:60 0:232 ip community-list standard 1_61_231 permit 65000:1 0:61 0:231 ip community-list standard 1_62_230 permit 65000:1 0:62 0:230 ip community-list standard 1_63_229 permit 65000:1 0:63 0:229 ip community-list standard 1_64_228 permit 65000:1 0:64 0:228 ip community-list standard 1_65_227 permit 65000:1 0:65 0:227 ip community-list standard 1_66_226 permit 65000:1 0:66 0:226 ip community-list standard 1_67_225 permit 65000:1 0:67 0:225 ip community-list standard 1_68_224 permit 65000:1 0:68 0:224 ip community-list standard 1_69_223 permit 65000:1 0:69 0:223 ip community-list standard 1_70_222 permit 65000:1 0:70 0:222 ip community-list standard 1_71_221 permit 65000:1 0:71 0:221 ip community-list standard 1_72_220 permit 65000:1 0:72 0:220 ip community-list standard 1_73_219 permit 65000:1 0:73 0:219 ip community-list standard 1_74_218 permit 65000:1 0:74 0:218 ip community-list standard 1_75_217 permit 65000:1 0:75 0:217 ip community-list standard 1_76_216 permit 65000:1 0:76 0:216 ip community-list standard 1_77_215 permit 65000:1 0:77 0:215 ip community-list standard 1_78_214 permit 65000:1 0:78 0:214 ip community-list standard 1_79_213 permit 65000:1 0:79 0:213 ip community-list standard 1_80_212 permit 65000:1 0:80 0:212 ip community-list standard 1_81_211 permit 65000:1 0:81 0:211 ip community-list standard 1_82_210 permit 65000:1 0:82 0:210 ip community-list standard 1_83_209 permit 65000:1 0:83 0:209 ip community-list standard 1_84_208 permit 65000:1 0:84 0:208 ip community-list standard 1_85_207 permit 65000:1 0:85 0:207 ip community-list standard 1_86_206 permit 65000:1 0:86 0:206 ip community-list standard 1_87_205 permit 65000:1 0:87 0:205 ip community-list standard 1_88_204 permit 65000:1 0:88 0:204 ip community-list standard 1_89_203 permit 65000:1 0:89 0:203 ip community-list standard 1_90_202 permit 65000:1 0:90 0:202 ip community-list standard 1_91_201 permit 65000:1 0:91 0:201 ip community-list standard 1_92_200 permit 65000:1 0:92 0:200 ip community-list standard 1_93_199 permit 65000:1 0:93 0:199 ip community-list standard 1_94_198 permit 65000:1 0:94 0:198 ip community-list standard 1_95_197 permit 65000:1 0:95 0:197 ip community-list standard 1_96_196 permit 65000:1 0:96 0:196 ip community-list standard 1_97_195 permit 65000:1 0:97 0:195 ip community-list standard 1_98_194 permit 65000:1 0:98 0:194 ip community-list standard 1_99_193 permit 65000:1 0:99 0:193 ip community-list standard 1_100_192 permit 65000:1 0:100 0:192 ip community-list standard 1_101_191 permit 65000:1 0:101 0:191 ip community-list standard 1_102_190 permit 65000:1 0:102 0:190 ip community-list standard 1_103_189 permit 65000:1 0:103 0:189 ip community-list standard 1_104_188 permit 65000:1 0:104 0:188 ip community-list standard 1_105_187 permit 65000:1 0:105 0:187 ip community-list standard 1_106_186 permit 65000:1 0:106 0:186 ip community-list standard 1_107_185 permit 65000:1 0:107 0:185 ip community-list standard 1_108_184 permit 65000:1 0:108 0:184 ip community-list standard 1_109_183 permit 65000:1 0:109 0:183 ip community-list standard 1_110_182 permit 65000:1 0:110 0:182 ip community-list standard 1_111_181 permit 65000:1 0:111 0:181 ip community-list standard 1_112_180 permit 65000:1 0:112 0:180 ip community-list standard 1_113_179 permit 65000:1 0:113 0:179 ip community-list standard 1_114_178 permit 65000:1 0:114 0:178 ip community-list standard 1_115_177 permit 65000:1 0:115 0:177 ip community-list standard 1_116_176 permit 65000:1 0:116 0:176 ip community-list standard 1_117_175 permit 65000:1 0:117 0:175 ip community-list standard 1_118_174 permit 65000:1 0:118 0:174 ip community-list standard 1_119_173 permit 65000:1 0:119 0:173 ip community-list standard 1_120_172 permit 65000:1 0:120 0:172 ip community-list standard 1_121_171 permit 65000:1 0:121 0:171 ip community-list standard 1_122_170 permit 65000:1 0:122 0:170 ip community-list standard 1_123_169 permit 65000:1 0:123 0:169 ip community-list standard 1_124_168 permit 65000:1 0:124 0:168 ip community-list standard 1_125_167 permit 65000:1 0:125 0:167 ip community-list standard 1_126_166 permit 65000:1 0:126 0:166 ip community-list standard 1_127_165 permit 65000:1 0:127 0:165 ip community-list standard 1_128_164 permit 65000:1 0:128 0:164 ip community-list standard 1_129_163 permit 65000:1 0:129 0:163 ip community-list standard 1_130_162 permit 65000:1 0:130 0:162 ip community-list standard 1_131_161 permit 65000:1 0:131 0:161 ip community-list standard 1_132_160 permit 65000:1 0:132 0:160 ip community-list standard 1_133_159 permit 65000:1 0:133 0:159 ip community-list standard 1_134_158 permit 65000:1 0:134 0:158 ip community-list standard 1_135_157 permit 65000:1 0:135 0:157 ip community-list standard 1_136_156 permit 65000:1 0:136 0:156 ip community-list standard 1_137_155 permit 65000:1 0:137 0:155 ip community-list standard 1_138_154 permit 65000:1 0:138 0:154 ip community-list standard 1_139_153 permit 65000:1 0:139 0:153 ip community-list standard 1_140_152 permit 65000:1 0:140 0:152 ip community-list standard 1_141_151 permit 65000:1 0:141 0:151 ip community-list standard 1_142_150 permit 65000:1 0:142 0:150 ip community-list standard 1_143_149 permit 65000:1 0:143 0:149 ip community-list standard 1_144_148 permit 65000:1 0:144 0:148 ip community-list standard 1_145_147 permit 65000:1 0:145 0:147 ip community-list standard 1_146_146 permit 65000:1 0:146 0:146 route-map calculator permit 1880 match community 2_2_146 2_4_73 1_36_256 1_37_255 1_38_254 set community 0:292 route-map calculator permit 1881 match community 1_39_253 1_40_252 1_41_251 1_42_250 1_43_249 set community 0:292 route-map calculator permit 1882 match community 1_44_248 1_45_247 1_46_246 1_47_245 1_48_244 set community 0:292 route-map calculator permit 1883 match community 1_49_243 1_50_242 1_51_241 1_52_240 1_53_239 set community 0:292 route-map calculator permit 1884 match community 1_54_238 1_55_237 1_56_236 1_57_235 1_58_234 set community 0:292 route-map calculator permit 1885 match community 1_59_233 1_60_232 1_61_231 1_62_230 1_63_229 set community 0:292 route-map calculator permit 1886 match community 1_64_228 1_65_227 1_66_226 1_67_225 1_68_224 set community 0:292 route-map calculator permit 1887 match community 1_69_223 1_70_222 1_71_221 1_72_220 1_73_219 set community 0:292 route-map calculator permit 1888 match community 1_74_218 1_75_217 1_76_216 1_77_215 1_78_214 set community 0:292 route-map calculator permit 1889 match community 1_79_213 1_80_212 1_81_211 1_82_210 1_83_209 set community 0:292 route-map calculator permit 1890 match community 1_84_208 1_85_207 1_86_206 1_87_205 1_88_204 set community 0:292 route-map calculator permit 1891 match community 1_89_203 1_90_202 1_91_201 1_92_200 1_93_199 set community 0:292 route-map calculator permit 1892 match community 1_94_198 1_95_197 1_96_196 1_97_195 1_98_194 set community 0:292 route-map calculator permit 1893 match community 1_99_193 1_100_192 1_101_191 1_102_190 1_103_189 set community 0:292 route-map calculator permit 1894 match community 1_104_188 1_105_187 1_106_186 1_107_185 1_108_184 set community 0:292 route-map calculator permit 1895 match community 1_109_183 1_110_182 1_111_181 1_112_180 1_113_179 set community 0:292 route-map calculator permit 1896 match community 1_114_178 1_115_177 1_116_176 1_117_175 1_118_174 set community 0:292 route-map calculator permit 1897 match community 1_119_173 1_120_172 1_121_171 1_122_170 1_123_169 set community 0:292 route-map calculator permit 1898 match community 1_124_168 1_125_167 1_126_166 1_127_165 1_128_164 set community 0:292 route-map calculator permit 1899 match community 1_129_163 1_130_162 1_131_161 1_132_160 1_133_159 set community 0:292 route-map calculator permit 1900 match community 1_134_158 1_135_157 1_136_156 1_137_155 1_138_154 set community 0:292 route-map calculator permit 1901 match community 1_139_153 1_140_152 1_141_151 1_142_150 1_143_149 set community 0:292 route-map calculator permit 1902 match community 1_144_148 1_145_147 1_146_146 set community 0:292 ip community-list standard 2_132_221 permit 65000:2 0:132 0:221 ip community-list standard 2_143_204 permit 65000:2 0:143 0:204 ip community-list standard 2_156_187 permit 65000:2 0:156 0:187 route-map calculator permit 1903 match community 2_132_221 2_143_204 2_156_187 set community 0:29172 ip community-list standard 2_228_254 permit 65000:2 0:228 0:254 route-map calculator permit 1904 match community 2_228_254 set community 0:57912 ip community-list standard 2_56_157 permit 65000:2 0:56 0:157 route-map calculator permit 1905 match community 2_56_157 set community 0:8792 ip community-list standard 2_228_240 permit 65000:2 0:228 0:240 route-map calculator permit 1906 match community 2_228_240 set community 0:54720 ip community-list standard 2_27_245 permit 65000:2 0:27 0:245 ip community-list standard 2_35_189 permit 65000:2 0:35 0:189 ip community-list standard 2_45_147 permit 65000:2 0:45 0:147 ip community-list standard 2_49_135 permit 65000:2 0:49 0:135 ip community-list standard 2_63_105 permit 65000:2 0:63 0:105 route-map calculator permit 1907 match community 2_27_245 2_35_189 2_45_147 2_49_135 2_63_105 set community 0:6615 ip community-list standard 2_9_178 permit 65000:2 0:9 0:178 ip community-list standard 2_18_89 permit 65000:2 0:18 0:89 route-map calculator permit 1908 match community 2_9_178 2_18_89 set community 0:1602 ip community-list standard 2_89_232 permit 65000:2 0:89 0:232 ip community-list standard 2_116_178 permit 65000:2 0:116 0:178 route-map calculator permit 1909 match community 2_89_232 2_116_178 set community 0:20648 ip community-list standard 2_244_254 permit 65000:2 0:244 0:254 route-map calculator permit 1910 match community 2_244_254 set community 0:61976 ip community-list standard 2_131_146 permit 65000:2 0:131 0:146 route-map calculator permit 1911 match community 2_131_146 set community 0:19126 ip community-list standard 2_41_107 permit 65000:2 0:41 0:107 route-map calculator permit 1912 match community 2_41_107 set community 0:4387 ip community-list standard 2_9_109 permit 65000:2 0:9 0:109 route-map calculator permit 1913 match community 2_9_109 set community 0:981 ip community-list standard 2_5_194 permit 65000:2 0:5 0:194 ip community-list standard 2_10_97 permit 65000:2 0:10 0:97 route-map calculator permit 1914 match community 2_5_194 2_10_97 set community 0:970 ip community-list standard 2_168_251 permit 65000:2 0:168 0:251 route-map calculator permit 1915 match community 2_168_251 set community 0:42168 ip community-list standard 2_181_246 permit 65000:2 0:181 0:246 route-map calculator permit 1916 match community 2_181_246 set community 0:44526 ip community-list standard 2_81_256 permit 65000:2 0:81 0:256 ip community-list standard 2_96_216 permit 65000:2 0:96 0:216 ip community-list standard 2_108_192 permit 65000:2 0:108 0:192 ip community-list standard 2_128_162 permit 65000:2 0:128 0:162 ip community-list standard 2_144_144 permit 65000:2 0:144 0:144 route-map calculator permit 1917 match community 2_81_256 2_96_216 2_108_192 2_128_162 2_144_144 set community 0:20736 ip community-list standard 2_6_197 permit 65000:2 0:6 0:197 route-map calculator permit 1918 match community 2_6_197 set community 0:1182 ip community-list standard 2_94_237 permit 65000:2 0:94 0:237 ip community-list standard 2_141_158 permit 65000:2 0:141 0:158 route-map calculator permit 1919 match community 2_94_237 2_141_158 set community 0:22278 ip community-list standard 2_74_148 permit 65000:2 0:74 0:148 route-map calculator permit 1920 match community 2_74_148 set community 0:10952 ip community-list standard 2_65_224 permit 65000:2 0:65 0:224 ip community-list standard 2_70_208 permit 65000:2 0:70 0:208 ip community-list standard 2_80_182 permit 65000:2 0:80 0:182 ip community-list standard 2_91_160 permit 65000:2 0:91 0:160 ip community-list standard 2_104_140 permit 65000:2 0:104 0:140 ip community-list standard 2_112_130 permit 65000:2 0:112 0:130 route-map calculator permit 1921 match community 2_65_224 2_70_208 2_80_182 2_91_160 2_104_140 set community 0:14560 route-map calculator permit 1922 match community 2_112_130 set community 0:14560 ip community-list standard 2_90_235 permit 65000:2 0:90 0:235 ip community-list standard 2_94_225 permit 65000:2 0:94 0:225 ip community-list standard 2_141_150 permit 65000:2 0:141 0:150 route-map calculator permit 1923 match community 2_90_235 2_94_225 2_141_150 set community 0:21150 ip community-list standard 2_144_173 permit 65000:2 0:144 0:173 route-map calculator permit 1924 match community 2_144_173 set community 0:24912 ip community-list standard 2_41_226 permit 65000:2 0:41 0:226 ip community-list standard 2_82_113 permit 65000:2 0:82 0:113 route-map calculator permit 1925 match community 2_41_226 2_82_113 set community 0:9266 ip community-list standard 2_215_239 permit 65000:2 0:215 0:239 route-map calculator permit 1926 match community 2_215_239 set community 0:51385 ip community-list standard 2_193_245 permit 65000:2 0:193 0:245 route-map calculator permit 1927 match community 2_193_245 set community 0:47285 ip community-list standard 2_142_160 permit 65000:2 0:142 0:160 route-map calculator permit 1928 match community 2_142_160 set community 0:22720 ip community-list standard 2_249_251 permit 65000:2 0:249 0:251 route-map calculator permit 1929 match community 2_249_251 set community 0:62499 ip community-list standard 2_100_214 permit 65000:2 0:100 0:214 ip community-list standard 2_107_200 permit 65000:2 0:107 0:200 route-map calculator permit 1930 match community 2_100_214 2_107_200 set community 0:21400 ip community-list standard 2_87_234 permit 65000:2 0:87 0:234 ip community-list standard 2_117_174 permit 65000:2 0:117 0:174 route-map calculator permit 1931 match community 2_87_234 2_117_174 set community 0:20358 ip community-list standard 2_164_251 permit 65000:2 0:164 0:251 route-map calculator permit 1932 match community 2_164_251 set community 0:41164 ip community-list standard 2_210_244 permit 65000:2 0:210 0:244 route-map calculator permit 1933 match community 2_210_244 set community 0:51240 ip community-list standard 2_190_241 permit 65000:2 0:190 0:241 route-map calculator permit 1934 match community 2_190_241 set community 0:45790 ip community-list standard 2_104_218 permit 65000:2 0:104 0:218 ip community-list standard 2_109_208 permit 65000:2 0:109 0:208 route-map calculator permit 1935 match community 2_104_218 2_109_208 set community 0:22672 ip community-list standard 2_12_247 permit 65000:2 0:12 0:247 ip community-list standard 2_13_228 permit 65000:2 0:13 0:228 ip community-list standard 2_19_156 permit 65000:2 0:19 0:156 ip community-list standard 2_26_114 permit 65000:2 0:26 0:114 ip community-list standard 2_38_78 permit 65000:2 0:38 0:78 ip community-list standard 2_39_76 permit 65000:2 0:39 0:76 ip community-list standard 2_52_57 permit 65000:2 0:52 0:57 route-map calculator permit 1936 match community 2_12_247 2_13_228 2_19_156 2_26_114 2_38_78 set community 0:2964 route-map calculator permit 1937 match community 2_39_76 2_52_57 set community 0:2964 ip community-list standard 2_86_212 permit 65000:2 0:86 0:212 ip community-list standard 2_106_172 permit 65000:2 0:106 0:172 route-map calculator permit 1938 match community 2_86_212 2_106_172 set community 0:18232 ip community-list standard 2_14_249 permit 65000:2 0:14 0:249 ip community-list standard 2_21_166 permit 65000:2 0:21 0:166 ip community-list standard 2_42_83 permit 65000:2 0:42 0:83 route-map calculator permit 1939 match community 2_14_249 2_21_166 2_42_83 set community 0:3486 ip community-list standard 2_59_190 permit 65000:2 0:59 0:190 ip community-list standard 2_95_118 permit 65000:2 0:95 0:118 route-map calculator permit 1940 match community 2_59_190 2_95_118 set community 0:11210 ip community-list standard 2_188_213 permit 65000:2 0:188 0:213 route-map calculator permit 1941 match community 2_188_213 set community 0:40044 ip community-list standard 2_220_246 permit 65000:2 0:220 0:246 route-map calculator permit 1942 match community 2_220_246 set community 0:54120 ip community-list standard 2_52_236 permit 65000:2 0:52 0:236 ip community-list standard 2_59_208 permit 65000:2 0:59 0:208 ip community-list standard 2_104_118 permit 65000:2 0:104 0:118 route-map calculator permit 1943 match community 2_52_236 2_59_208 2_104_118 set community 0:12272 ip community-list standard 2_172_217 permit 65000:2 0:172 0:217 route-map calculator permit 1944 match community 2_172_217 set community 0:37324 ip community-list standard 2_47_216 permit 65000:2 0:47 0:216 ip community-list standard 2_54_188 permit 65000:2 0:54 0:188 ip community-list standard 2_72_141 permit 65000:2 0:72 0:141 ip community-list standard 2_94_108 permit 65000:2 0:94 0:108 route-map calculator permit 1945 match community 2_47_216 2_54_188 2_72_141 2_94_108 set community 0:10152 ip community-list standard 2_51_221 permit 65000:2 0:51 0:221 route-map calculator permit 1946 match community 2_51_221 set community 0:11271 ip community-list standard 2_88_178 permit 65000:2 0:88 0:178 ip community-list standard 2_89_176 permit 65000:2 0:89 0:176 route-map calculator permit 1947 match community 2_88_178 2_89_176 set community 0:15664 ip community-list standard 2_109_217 permit 65000:2 0:109 0:217 route-map calculator permit 1948 match community 2_109_217 set community 0:23653 ip community-list standard 2_201_234 permit 65000:2 0:201 0:234 route-map calculator permit 1949 match community 2_201_234 set community 0:47034 ip community-list standard 2_85_131 permit 65000:2 0:85 0:131 route-map calculator permit 1950 match community 2_85_131 set community 0:11135 ip community-list standard 2_151_228 permit 65000:2 0:151 0:228 route-map calculator permit 1951 match community 2_151_228 set community 0:34428 ip community-list standard 2_203_214 permit 65000:2 0:203 0:214 route-map calculator permit 1952 match community 2_203_214 set community 0:43442 ip community-list standard 2_32_253 permit 65000:2 0:32 0:253 ip community-list standard 2_44_184 permit 65000:2 0:44 0:184 ip community-list standard 2_46_176 permit 65000:2 0:46 0:176 ip community-list standard 2_88_92 permit 65000:2 0:88 0:92 route-map calculator permit 1953 match community 2_32_253 2_44_184 2_46_176 2_88_92 set community 0:8096 ip community-list standard 2_78_254 permit 65000:2 0:78 0:254 ip community-list standard 2_127_156 permit 65000:2 0:127 0:156 route-map calculator permit 1954 match community 2_78_254 2_127_156 set community 0:19812 ip community-list standard 2_197_211 permit 65000:2 0:197 0:211 route-map calculator permit 1955 match community 2_197_211 set community 0:41567 ip community-list standard 2_107_165 permit 65000:2 0:107 0:165 route-map calculator permit 1956 match community 2_107_165 set community 0:17655 ip community-list standard 2_149_225 permit 65000:2 0:149 0:225 route-map calculator permit 1957 match community 2_149_225 set community 0:33525 ip community-list standard 2_80_229 permit 65000:2 0:80 0:229 route-map calculator permit 1958 match community 2_80_229 set community 0:18320 ip community-list standard 2_73_239 permit 65000:2 0:73 0:239 route-map calculator permit 1959 match community 2_73_239 set community 0:17447 ip community-list standard 2_11_245 permit 65000:2 0:11 0:245 ip community-list standard 2_35_77 permit 65000:2 0:35 0:77 ip community-list standard 2_49_55 permit 65000:2 0:49 0:55 route-map calculator permit 1960 match community 2_11_245 2_35_77 2_49_55 set community 0:2695 ip community-list standard 2_167_232 permit 65000:2 0:167 0:232 route-map calculator permit 1961 match community 2_167_232 set community 0:38744 ip community-list standard 2_37_245 permit 65000:2 0:37 0:245 ip community-list standard 2_49_185 permit 65000:2 0:49 0:185 route-map calculator permit 1962 match community 2_37_245 2_49_185 set community 0:9065 ip community-list standard 2_9_246 permit 65000:2 0:9 0:246 ip community-list standard 2_18_123 permit 65000:2 0:18 0:123 ip community-list standard 2_27_82 permit 65000:2 0:27 0:82 ip community-list standard 2_41_54 permit 65000:2 0:41 0:54 route-map calculator permit 1963 match community 2_9_246 2_18_123 2_27_82 2_41_54 set community 0:2214 ip community-list standard 2_14_193 permit 65000:2 0:14 0:193 route-map calculator permit 1964 match community 2_14_193 set community 0:2702 ip community-list standard 2_157_216 permit 65000:2 0:157 0:216 route-map calculator permit 1965 match community 2_157_216 set community 0:33912 ip community-list standard 2_107_249 permit 65000:2 0:107 0:249 route-map calculator permit 1966 match community 2_107_249 set community 0:26643 ip community-list standard 2_43_147 permit 65000:2 0:43 0:147 ip community-list standard 2_49_129 permit 65000:2 0:49 0:129 route-map calculator permit 1967 match community 2_43_147 2_49_129 set community 0:6321 ip community-list standard 2_120_248 permit 65000:2 0:120 0:248 ip community-list standard 2_124_240 permit 65000:2 0:124 0:240 ip community-list standard 2_155_192 permit 65000:2 0:155 0:192 ip community-list standard 2_160_186 permit 65000:2 0:160 0:186 route-map calculator permit 1968 match community 2_120_248 2_124_240 2_155_192 2_160_186 set community 0:29760 ip community-list standard 2_58_190 permit 65000:2 0:58 0:190 ip community-list standard 2_76_145 permit 65000:2 0:76 0:145 ip community-list standard 2_95_116 permit 65000:2 0:95 0:116 route-map calculator permit 1969 match community 2_58_190 2_76_145 2_95_116 set community 0:11020 ip community-list standard 2_40_235 permit 65000:2 0:40 0:235 ip community-list standard 2_47_200 permit 65000:2 0:47 0:200 ip community-list standard 2_50_188 permit 65000:2 0:50 0:188 ip community-list standard 2_94_100 permit 65000:2 0:94 0:100 route-map calculator permit 1970 match community 2_40_235 2_47_200 2_50_188 2_94_100 set community 0:9400 ip community-list standard 2_164_246 permit 65000:2 0:164 0:246 route-map calculator permit 1971 match community 2_164_246 set community 0:40344 ip community-list standard 2_205_249 permit 65000:2 0:205 0:249 route-map calculator permit 1972 match community 2_205_249 set community 0:51045 ip community-list standard 2_150_173 permit 65000:2 0:150 0:173 route-map calculator permit 1973 match community 2_150_173 set community 0:25950 ip community-list standard 2_8_198 permit 65000:2 0:8 0:198 ip community-list standard 2_9_176 permit 65000:2 0:9 0:176 ip community-list standard 2_11_144 permit 65000:2 0:11 0:144 ip community-list standard 2_12_132 permit 65000:2 0:12 0:132 ip community-list standard 2_16_99 permit 65000:2 0:16 0:99 ip community-list standard 2_18_88 permit 65000:2 0:18 0:88 ip community-list standard 2_22_72 permit 65000:2 0:22 0:72 ip community-list standard 2_24_66 permit 65000:2 0:24 0:66 ip community-list standard 2_33_48 permit 65000:2 0:33 0:48 ip community-list standard 2_36_44 permit 65000:2 0:36 0:44 route-map calculator permit 1974 match community 2_8_198 2_9_176 2_11_144 2_12_132 2_16_99 set community 0:1584 route-map calculator permit 1975 match community 2_18_88 2_22_72 2_24_66 2_33_48 2_36_44 set community 0:1584 ip community-list standard 2_178_239 permit 65000:2 0:178 0:239 route-map calculator permit 1976 match community 2_178_239 set community 0:42542 ip community-list standard 2_139_240 permit 65000:2 0:139 0:240 route-map calculator permit 1977 match community 2_139_240 set community 0:33360 ip community-list standard 2_129_139 permit 65000:2 0:129 0:139 route-map calculator permit 1978 match community 2_129_139 set community 0:17931 ip community-list standard 2_59_229 permit 65000:2 0:59 0:229 route-map calculator permit 1979 match community 2_59_229 set community 0:13511 ip community-list standard 2_108_215 permit 65000:2 0:108 0:215 ip community-list standard 2_129_180 permit 65000:2 0:129 0:180 ip community-list standard 2_135_172 permit 65000:2 0:135 0:172 route-map calculator permit 1980 match community 2_108_215 2_129_180 2_135_172 set community 0:23220 ip community-list standard 2_62_202 permit 65000:2 0:62 0:202 ip community-list standard 2_101_124 permit 65000:2 0:101 0:124 route-map calculator permit 1981 match community 2_62_202 2_101_124 set community 0:12524 ip community-list standard 2_32_131 permit 65000:2 0:32 0:131 route-map calculator permit 1982 match community 2_32_131 set community 0:4192 ip community-list standard 2_7_191 permit 65000:2 0:7 0:191 route-map calculator permit 1983 match community 2_7_191 set community 0:1337 ip community-list standard 2_236_237 permit 65000:2 0:236 0:237 route-map calculator permit 1984 match community 2_236_237 set community 0:55932 ip community-list standard 2_182_222 permit 65000:2 0:182 0:222 route-map calculator permit 1985 match community 2_182_222 set community 0:40404 ip community-list standard 2_169_243 permit 65000:2 0:169 0:243 route-map calculator permit 1986 match community 2_169_243 set community 0:41067 ip community-list standard 2_18_237 permit 65000:2 0:18 0:237 ip community-list standard 2_27_158 permit 65000:2 0:27 0:158 ip community-list standard 2_54_79 permit 65000:2 0:54 0:79 route-map calculator permit 1987 match community 2_18_237 2_27_158 2_54_79 set community 0:4266 ip community-list standard 2_17_256 permit 65000:2 0:17 0:256 ip community-list standard 2_32_136 permit 65000:2 0:32 0:136 ip community-list standard 2_34_128 permit 65000:2 0:34 0:128 ip community-list standard 2_64_68 permit 65000:2 0:64 0:68 route-map calculator permit 1988 match community 2_17_256 2_32_136 2_34_128 2_64_68 set community 0:4352 ip community-list standard 2_33_177 permit 65000:2 0:33 0:177 ip community-list standard 2_59_99 permit 65000:2 0:59 0:99 route-map calculator permit 1989 match community 2_33_177 2_59_99 set community 0:5841 ip community-list standard 2_186_186 permit 65000:2 0:186 0:186 route-map calculator permit 1990 match community 2_186_186 set community 0:34596 ip community-list standard 2_151_193 permit 65000:2 0:151 0:193 route-map calculator permit 1991 match community 2_151_193 set community 0:29143 ip community-list standard 2_118_185 permit 65000:2 0:118 0:185 route-map calculator permit 1992 match community 2_118_185 set community 0:21830 ip community-list standard 2_78_250 permit 65000:2 0:78 0:250 ip community-list standard 2_100_195 permit 65000:2 0:100 0:195 ip community-list standard 2_125_156 permit 65000:2 0:125 0:156 ip community-list standard 2_130_150 permit 65000:2 0:130 0:150 route-map calculator permit 1993 match community 2_78_250 2_100_195 2_125_156 2_130_150 set community 0:19500 ip community-list standard 2_202_240 permit 65000:2 0:202 0:240 route-map calculator permit 1994 match community 2_202_240 set community 0:48480 ip community-list standard 2_131_240 permit 65000:2 0:131 0:240 route-map calculator permit 1995 match community 2_131_240 set community 0:31440 ip community-list standard 2_102_253 permit 65000:2 0:102 0:253 ip community-list standard 2_138_187 permit 65000:2 0:138 0:187 route-map calculator permit 1996 match community 2_102_253 2_138_187 set community 0:25806 ip community-list standard 2_82_256 permit 65000:2 0:82 0:256 ip community-list standard 2_128_164 permit 65000:2 0:128 0:164 route-map calculator permit 1997 match community 2_82_256 2_128_164 set community 0:20992 ip community-list standard 2_78_218 permit 65000:2 0:78 0:218 ip community-list standard 2_109_156 permit 65000:2 0:109 0:156 route-map calculator permit 1998 match community 2_78_218 2_109_156 set community 0:17004 ip community-list standard 2_40_212 permit 65000:2 0:40 0:212 ip community-list standard 2_53_160 permit 65000:2 0:53 0:160 ip community-list standard 2_80_106 permit 65000:2 0:80 0:106 route-map calculator permit 1999 match community 2_40_212 2_53_160 2_80_106 set community 0:8480 ip community-list standard 2_27_101 permit 65000:2 0:27 0:101 route-map calculator permit 2000 match community 2_27_101 set community 0:2727 ip community-list standard 2_183_190 permit 65000:2 0:183 0:190 route-map calculator permit 2001 match community 2_183_190 set community 0:34770 ip community-list standard 2_106_205 permit 65000:2 0:106 0:205 route-map calculator permit 2002 match community 2_106_205 set community 0:21730 ip community-list standard 2_78_131 permit 65000:2 0:78 0:131 route-map calculator permit 2003 match community 2_78_131 set community 0:10218 ip community-list standard 2_53_178 permit 65000:2 0:53 0:178 ip community-list standard 2_89_106 permit 65000:2 0:89 0:106 route-map calculator permit 2004 match community 2_53_178 2_89_106 set community 0:9434 ip community-list standard 2_10_137 permit 65000:2 0:10 0:137 route-map calculator permit 2005 match community 2_10_137 set community 0:1370 ip community-list standard 2_136_247 permit 65000:2 0:136 0:247 ip community-list standard 2_152_221 permit 65000:2 0:152 0:221 route-map calculator permit 2006 match community 2_136_247 2_152_221 set community 0:33592 ip community-list standard 2_131_208 permit 65000:2 0:131 0:208 route-map calculator permit 2007 match community 2_131_208 set community 0:27248 ip community-list standard 2_5_195 permit 65000:2 0:5 0:195 ip community-list standard 2_13_75 permit 65000:2 0:13 0:75 ip community-list standard 2_15_65 permit 65000:2 0:15 0:65 ip community-list standard 2_25_39 permit 65000:2 0:25 0:39 route-map calculator permit 2008 match community 2_5_195 2_13_75 2_15_65 2_25_39 set community 0:975 ip community-list standard 2_188_218 permit 65000:2 0:188 0:218 route-map calculator permit 2009 match community 2_188_218 set community 0:40984 ip community-list standard 2_188_212 permit 65000:2 0:188 0:212 route-map calculator permit 2010 match community 2_188_212 set community 0:39856 ip community-list standard 2_19_142 permit 65000:2 0:19 0:142 ip community-list standard 2_38_71 permit 65000:2 0:38 0:71 route-map calculator permit 2011 match community 2_19_142 2_38_71 set community 0:2698 ip community-list standard 2_20_249 permit 65000:2 0:20 0:249 ip community-list standard 2_30_166 permit 65000:2 0:30 0:166 ip community-list standard 2_60_83 permit 65000:2 0:60 0:83 route-map calculator permit 2012 match community 2_20_249 2_30_166 2_60_83 set community 0:4980 ip community-list standard 2_210_256 permit 65000:2 0:210 0:256 ip community-list standard 2_224_240 permit 65000:2 0:224 0:240 route-map calculator permit 2013 match community 2_210_256 2_224_240 set community 0:53760 ip community-list standard 2_59_146 permit 65000:2 0:59 0:146 ip community-list standard 2_73_118 permit 65000:2 0:73 0:118 route-map calculator permit 2014 match community 2_59_146 2_73_118 set community 0:8614 ip community-list standard 2_53_55 permit 65000:2 0:53 0:55 route-map calculator permit 2015 match community 2_53_55 set community 0:2915 ip community-list standard 2_37_154 permit 65000:2 0:37 0:154 ip community-list standard 2_74_77 permit 65000:2 0:74 0:77 route-map calculator permit 2016 match community 2_37_154 2_74_77 set community 0:5698 ip community-list standard 2_154_245 permit 65000:2 0:154 0:245 route-map calculator permit 2017 match community 2_154_245 set community 0:37730 ip community-list standard 2_61_113 permit 65000:2 0:61 0:113 route-map calculator permit 2018 match community 2_61_113 set community 0:6893 ip community-list standard 2_37_149 permit 65000:2 0:37 0:149 route-map calculator permit 2019 match community 2_37_149 set community 0:5513 ip community-list standard 2_27_183 permit 65000:2 0:27 0:183 ip community-list standard 2_61_81 permit 65000:2 0:61 0:81 route-map calculator permit 2020 match community 2_27_183 2_61_81 set community 0:4941 ip community-list standard 2_87_109 permit 65000:2 0:87 0:109 route-map calculator permit 2021 match community 2_87_109 set community 0:9483 ip community-list standard 2_180_202 permit 65000:2 0:180 0:202 route-map calculator permit 2022 match community 2_180_202 set community 0:36360 ip community-list standard 2_50_194 permit 65000:2 0:50 0:194 ip community-list standard 2_97_100 permit 65000:2 0:97 0:100 route-map calculator permit 2023 match community 2_50_194 2_97_100 set community 0:9700 ip community-list standard 2_103_193 permit 65000:2 0:103 0:193 route-map calculator permit 2024 match community 2_103_193 set community 0:19879 ip community-list standard 2_197_247 permit 65000:2 0:197 0:247 route-map calculator permit 2025 match community 2_197_247 set community 0:48659 ip community-list standard 2_18_217 permit 65000:2 0:18 0:217 ip community-list standard 2_21_186 permit 65000:2 0:21 0:186 ip community-list standard 2_31_126 permit 65000:2 0:31 0:126 ip community-list standard 2_42_93 permit 65000:2 0:42 0:93 ip community-list standard 2_62_63 permit 65000:2 0:62 0:63 route-map calculator permit 2026 match community 2_18_217 2_21_186 2_31_126 2_42_93 2_62_63 set community 0:3906 ip community-list standard 2_87_199 permit 65000:2 0:87 0:199 route-map calculator permit 2027 match community 2_87_199 set community 0:17313 ip community-list standard 2_138_211 permit 65000:2 0:138 0:211 route-map calculator permit 2028 match community 2_138_211 set community 0:29118 ip community-list standard 2_151_197 permit 65000:2 0:151 0:197 route-map calculator permit 2029 match community 2_151_197 set community 0:29747 ip community-list standard 2_43_233 permit 65000:2 0:43 0:233 route-map calculator permit 2030 match community 2_43_233 set community 0:10019 ip community-list standard 2_149_249 permit 65000:2 0:149 0:249 route-map calculator permit 2031 match community 2_149_249 set community 0:37101 ip community-list standard 2_29_116 permit 65000:2 0:29 0:116 ip community-list standard 2_58_58 permit 65000:2 0:58 0:58 route-map calculator permit 2032 match community 2_29_116 2_58_58 set community 0:3364 ip community-list standard 2_32_194 permit 65000:2 0:32 0:194 ip community-list standard 2_64_97 permit 65000:2 0:64 0:97 route-map calculator permit 2033 match community 2_32_194 2_64_97 set community 0:6208 ip community-list standard 2_17_218 permit 65000:2 0:17 0:218 ip community-list standard 2_34_109 permit 65000:2 0:34 0:109 route-map calculator permit 2034 match community 2_17_218 2_34_109 set community 0:3706 ip community-list standard 2_30_255 permit 65000:2 0:30 0:255 ip community-list standard 2_34_225 permit 65000:2 0:34 0:225 ip community-list standard 2_45_170 permit 65000:2 0:45 0:170 ip community-list standard 2_50_153 permit 65000:2 0:50 0:153 ip community-list standard 2_51_150 permit 65000:2 0:51 0:150 ip community-list standard 2_75_102 permit 65000:2 0:75 0:102 ip community-list standard 2_85_90 permit 65000:2 0:85 0:90 route-map calculator permit 2035 match community 2_30_255 2_34_225 2_45_170 2_50_153 2_51_150 set community 0:7650 route-map calculator permit 2036 match community 2_75_102 2_85_90 set community 0:7650 ip community-list standard 2_58_137 permit 65000:2 0:58 0:137 route-map calculator permit 2037 match community 2_58_137 set community 0:7946 ip community-list standard 2_66_227 permit 65000:2 0:66 0:227 route-map calculator permit 2038 match community 2_66_227 set community 0:14982 ip community-list standard 2_131_212 permit 65000:2 0:131 0:212 route-map calculator permit 2039 match community 2_131_212 set community 0:27772 ip community-list standard 2_54_214 permit 65000:2 0:54 0:214 ip community-list standard 2_107_108 permit 65000:2 0:107 0:108 route-map calculator permit 2040 match community 2_54_214 2_107_108 set community 0:11556 ip community-list standard 2_136_253 permit 65000:2 0:136 0:253 ip community-list standard 2_184_187 permit 65000:2 0:184 0:187 route-map calculator permit 2041 match community 2_136_253 2_184_187 set community 0:34408 ip community-list standard 2_36_163 permit 65000:2 0:36 0:163 route-map calculator permit 2042 match community 2_36_163 set community 0:5868 ip community-list standard 2_88_226 permit 65000:2 0:88 0:226 ip community-list standard 2_113_176 permit 65000:2 0:113 0:176 route-map calculator permit 2043 match community 2_88_226 2_113_176 set community 0:19888 ip community-list standard 2_123_159 permit 65000:2 0:123 0:159 route-map calculator permit 2044 match community 2_123_159 set community 0:19557 ip community-list standard 2_28_148 permit 65000:2 0:28 0:148 ip community-list standard 2_37_112 permit 65000:2 0:37 0:112 ip community-list standard 2_56_74 permit 65000:2 0:56 0:74 route-map calculator permit 2045 match community 2_28_148 2_37_112 2_56_74 set community 0:4144 ip community-list standard 2_101_191 permit 65000:2 0:101 0:191 route-map calculator permit 2046 match community 2_101_191 set community 0:19291 ip community-list standard 2_156_242 permit 65000:2 0:156 0:242 route-map calculator permit 2047 match community 2_156_242 set community 0:37752 ip community-list standard 2_159_216 permit 65000:2 0:159 0:216 ip community-list standard 2_162_212 permit 65000:2 0:162 0:212 route-map calculator permit 2048 match community 2_159_216 2_162_212 set community 0:34344 ip community-list standard 2_149_214 permit 65000:2 0:149 0:214 route-map calculator permit 2049 match community 2_149_214 set community 0:31886 ip community-list standard 2_93_212 permit 65000:2 0:93 0:212 ip community-list standard 2_106_186 permit 65000:2 0:106 0:186 ip community-list standard 2_124_159 permit 65000:2 0:124 0:159 route-map calculator permit 2050 match community 2_93_212 2_106_186 2_124_159 set community 0:19716 ip community-list standard 2_10_205 permit 65000:2 0:10 0:205 ip community-list standard 2_25_82 permit 65000:2 0:25 0:82 ip community-list standard 2_41_50 permit 65000:2 0:41 0:50 route-map calculator permit 2051 match community 2_10_205 2_25_82 2_41_50 set community 0:2050 ip community-list standard 2_103_189 permit 65000:2 0:103 0:189 route-map calculator permit 2052 match community 2_103_189 set community 0:19467 ip community-list standard 2_40_214 permit 65000:2 0:40 0:214 ip community-list standard 2_80_107 permit 65000:2 0:80 0:107 route-map calculator permit 2053 match community 2_40_214 2_80_107 set community 0:8560 ip community-list standard 2_121_155 permit 65000:2 0:121 0:155 route-map calculator permit 2054 match community 2_121_155 set community 0:18755 ip community-list standard 2_86_187 permit 65000:2 0:86 0:187 route-map calculator permit 2055 match community 2_86_187 set community 0:16082 ip community-list standard 2_95_253 permit 65000:2 0:95 0:253 ip community-list standard 2_115_209 permit 65000:2 0:115 0:209 route-map calculator permit 2056 match community 2_95_253 2_115_209 set community 0:24035 ip community-list standard 2_113_169 permit 65000:2 0:113 0:169 route-map calculator permit 2057 match community 2_113_169 set community 0:19097 ip community-list standard 2_110_243 permit 65000:2 0:110 0:243 ip community-list standard 2_135_198 permit 65000:2 0:135 0:198 ip community-list standard 2_162_165 permit 65000:2 0:162 0:165 route-map calculator permit 2058 match community 2_110_243 2_135_198 2_162_165 set community 0:26730 ip community-list standard 2_7_179 permit 65000:2 0:7 0:179 route-map calculator permit 2059 match community 2_7_179 set community 0:1253 ip community-list standard 2_26_222 permit 65000:2 0:26 0:222 ip community-list standard 2_37_156 permit 65000:2 0:37 0:156 ip community-list standard 2_39_148 permit 65000:2 0:39 0:148 ip community-list standard 2_52_111 permit 65000:2 0:52 0:111 ip community-list standard 2_74_78 permit 65000:2 0:74 0:78 route-map calculator permit 2060 match community 2_26_222 2_37_156 2_39_148 2_52_111 2_74_78 set community 0:5772 ip community-list standard 2_7_111 permit 65000:2 0:7 0:111 ip community-list standard 2_21_37 permit 65000:2 0:21 0:37 route-map calculator permit 2061 match community 2_7_111 2_21_37 set community 0:777 ip community-list standard 2_153_238 permit 65000:2 0:153 0:238 route-map calculator permit 2062 match community 2_153_238 set community 0:36414 ip community-list standard 2_4_218 permit 65000:2 0:4 0:218 ip community-list standard 2_8_109 permit 65000:2 0:8 0:109 route-map calculator permit 2063 match community 2_4_218 2_8_109 set community 0:872 ip community-list standard 2_58_201 permit 65000:2 0:58 0:201 ip community-list standard 2_67_174 permit 65000:2 0:67 0:174 ip community-list standard 2_87_134 permit 65000:2 0:87 0:134 route-map calculator permit 2064 match community 2_58_201 2_67_174 2_87_134 set community 0:11658 ip community-list standard 2_75_163 permit 65000:2 0:75 0:163 route-map calculator permit 2065 match community 2_75_163 set community 0:12225 ip community-list standard 2_165_244 permit 65000:2 0:165 0:244 ip community-list standard 2_183_220 permit 65000:2 0:183 0:220 route-map calculator permit 2066 match community 2_165_244 2_183_220 set community 0:40260 ip community-list standard 2_138_181 permit 65000:2 0:138 0:181 route-map calculator permit 2067 match community 2_138_181 set community 0:24978 ip community-list standard 2_37_53 permit 65000:2 0:37 0:53 route-map calculator permit 2068 match community 2_37_53 set community 0:1961 ip community-list standard 2_28_251 permit 65000:2 0:28 0:251 route-map calculator permit 2069 match community 2_28_251 set community 0:7028 ip community-list standard 2_43_142 permit 65000:2 0:43 0:142 ip community-list standard 2_71_86 permit 65000:2 0:71 0:86 route-map calculator permit 2070 match community 2_43_142 2_71_86 set community 0:6106 ip community-list standard 2_101_240 permit 65000:2 0:101 0:240 ip community-list standard 2_120_202 permit 65000:2 0:120 0:202 route-map calculator permit 2071 match community 2_101_240 2_120_202 set community 0:24240 ip community-list standard 2_131_205 permit 65000:2 0:131 0:205 route-map calculator permit 2072 match community 2_131_205 set community 0:26855 ip community-list standard 2_26_157 permit 65000:2 0:26 0:157 route-map calculator permit 2073 match community 2_26_157 set community 0:4082 ip community-list standard 2_182_249 permit 65000:2 0:182 0:249 route-map calculator permit 2074 match community 2_182_249 set community 0:45318 ip community-list standard 2_104_191 permit 65000:2 0:104 0:191 route-map calculator permit 2075 match community 2_104_191 set community 0:19864 ip community-list standard 2_63_241 permit 65000:2 0:63 0:241 route-map calculator permit 2076 match community 2_63_241 set community 0:15183 ip community-list standard 2_36_255 permit 65000:2 0:36 0:255 ip community-list standard 2_45_204 permit 65000:2 0:45 0:204 ip community-list standard 2_51_180 permit 65000:2 0:51 0:180 ip community-list standard 2_54_170 permit 65000:2 0:54 0:170 ip community-list standard 2_60_153 permit 65000:2 0:60 0:153 ip community-list standard 2_68_135 permit 65000:2 0:68 0:135 ip community-list standard 2_85_108 permit 65000:2 0:85 0:108 ip community-list standard 2_90_102 permit 65000:2 0:90 0:102 route-map calculator permit 2077 match community 2_36_255 2_45_204 2_51_180 2_54_170 2_60_153 set community 0:9180 route-map calculator permit 2078 match community 2_68_135 2_85_108 2_90_102 set community 0:9180 ip community-list standard 2_131_238 permit 65000:2 0:131 0:238 route-map calculator permit 2079 match community 2_131_238 set community 0:31178 ip community-list standard 2_76_202 permit 65000:2 0:76 0:202 ip community-list standard 2_101_152 permit 65000:2 0:101 0:152 route-map calculator permit 2080 match community 2_76_202 2_101_152 set community 0:15352 ip community-list standard 2_13_141 permit 65000:2 0:13 0:141 ip community-list standard 2_39_47 permit 65000:2 0:39 0:47 route-map calculator permit 2081 match community 2_13_141 2_39_47 set community 0:1833 ip community-list standard 2_146_157 permit 65000:2 0:146 0:157 route-map calculator permit 2082 match community 2_146_157 set community 0:22922 ip community-list standard 2_152_158 permit 65000:2 0:152 0:158 route-map calculator permit 2083 match community 2_152_158 set community 0:24016 ip community-list standard 2_171_207 permit 65000:2 0:171 0:207 route-map calculator permit 2084 match community 2_171_207 set community 0:35397 ip community-list standard 2_34_222 permit 65000:2 0:34 0:222 ip community-list standard 2_37_204 permit 65000:2 0:37 0:204 ip community-list standard 2_51_148 permit 65000:2 0:51 0:148 ip community-list standard 2_68_111 permit 65000:2 0:68 0:111 ip community-list standard 2_74_102 permit 65000:2 0:74 0:102 route-map calculator permit 2085 match community 2_34_222 2_37_204 2_51_148 2_68_111 2_74_102 set community 0:7548 ip community-list standard 2_61_225 permit 65000:2 0:61 0:225 ip community-list standard 2_75_183 permit 65000:2 0:75 0:183 route-map calculator permit 2086 match community 2_61_225 2_75_183 set community 0:13725 ip community-list standard 2_177_179 permit 65000:2 0:177 0:179 route-map calculator permit 2087 match community 2_177_179 set community 0:31683 ip community-list standard 2_92_221 permit 65000:2 0:92 0:221 route-map calculator permit 2088 match community 2_92_221 set community 0:20332 ip community-list standard 2_92_218 permit 65000:2 0:92 0:218 ip community-list standard 2_109_184 permit 65000:2 0:109 0:184 route-map calculator permit 2089 match community 2_92_218 2_109_184 set community 0:20056 ip community-list standard 2_101_175 permit 65000:2 0:101 0:175 route-map calculator permit 2090 match community 2_101_175 set community 0:17675 ip community-list standard 2_98_227 permit 65000:2 0:98 0:227 route-map calculator permit 2091 match community 2_98_227 set community 0:22246 ip community-list standard 2_205_248 permit 65000:2 0:205 0:248 route-map calculator permit 2092 match community 2_205_248 set community 0:50840 ip community-list standard 2_62_197 permit 65000:2 0:62 0:197 route-map calculator permit 2093 match community 2_62_197 set community 0:12214 ip community-list standard 2_157_202 permit 65000:2 0:157 0:202 route-map calculator permit 2094 match community 2_157_202 set community 0:31714 ip community-list standard 2_41_151 permit 65000:2 0:41 0:151 route-map calculator permit 2095 match community 2_41_151 set community 0:6191 ip community-list standard 2_148_158 permit 65000:2 0:148 0:158 route-map calculator permit 2096 match community 2_148_158 set community 0:23384 ip community-list standard 2_216_232 permit 65000:2 0:216 0:232 route-map calculator permit 2097 match community 2_216_232 set community 0:50112 ip community-list standard 2_129_223 permit 65000:2 0:129 0:223 route-map calculator permit 2098 match community 2_129_223 set community 0:28767 ip community-list standard 2_106_199 permit 65000:2 0:106 0:199 route-map calculator permit 2099 match community 2_106_199 set community 0:21094 ip community-list standard 2_195_226 permit 65000:2 0:195 0:226 route-map calculator permit 2100 match community 2_195_226 set community 0:44070 ip community-list standard 2_117_231 permit 65000:2 0:117 0:231 ip community-list standard 2_143_189 permit 65000:2 0:143 0:189 route-map calculator permit 2101 match community 2_117_231 2_143_189 set community 0:27027 ip community-list standard 2_110_199 permit 65000:2 0:110 0:199 route-map calculator permit 2102 match community 2_110_199 set community 0:21890 ip community-list standard 2_97_115 permit 65000:2 0:97 0:115 route-map calculator permit 2103 match community 2_97_115 set community 0:11155 ip community-list standard 2_22_225 permit 65000:2 0:22 0:225 ip community-list standard 2_25_198 permit 65000:2 0:25 0:198 ip community-list standard 2_30_165 permit 65000:2 0:30 0:165 ip community-list standard 2_33_150 permit 65000:2 0:33 0:150 ip community-list standard 2_45_110 permit 65000:2 0:45 0:110 ip community-list standard 2_50_99 permit 65000:2 0:50 0:99 ip community-list standard 2_55_90 permit 65000:2 0:55 0:90 ip community-list standard 2_66_75 permit 65000:2 0:66 0:75 route-map calculator permit 2104 match community 2_22_225 2_25_198 2_30_165 2_33_150 2_45_110 set community 0:4950 route-map calculator permit 2105 match community 2_50_99 2_55_90 2_66_75 set community 0:4950 ip community-list standard 2_129_171 permit 65000:2 0:129 0:171 route-map calculator permit 2106 match community 2_129_171 set community 0:22059 ip community-list standard 2_134_136 permit 65000:2 0:134 0:136 route-map calculator permit 2107 match community 2_134_136 set community 0:18224 ip community-list standard 2_197_220 permit 65000:2 0:197 0:220 route-map calculator permit 2108 match community 2_197_220 set community 0:43340 ip community-list standard 2_207_217 permit 65000:2 0:207 0:217 route-map calculator permit 2109 match community 2_207_217 set community 0:44919 ip community-list standard 2_25_197 permit 65000:2 0:25 0:197 route-map calculator permit 2110 match community 2_25_197 set community 0:4925 ip community-list standard 2_98_191 permit 65000:2 0:98 0:191 route-map calculator permit 2111 match community 2_98_191 set community 0:18718 ip community-list standard 2_163_225 permit 65000:2 0:163 0:225 route-map calculator permit 2112 match community 2_163_225 set community 0:36675 ip community-list standard 2_27_231 permit 65000:2 0:27 0:231 ip community-list standard 2_33_189 permit 65000:2 0:33 0:189 ip community-list standard 2_63_99 permit 65000:2 0:63 0:99 ip community-list standard 2_77_81 permit 65000:2 0:77 0:81 route-map calculator permit 2113 match community 2_27_231 2_33_189 2_63_99 2_77_81 set community 0:6237 ip community-list standard 2_149_172 permit 65000:2 0:149 0:172 route-map calculator permit 2114 match community 2_149_172 set community 0:25628 ip community-list standard 2_173_254 permit 65000:2 0:173 0:254 route-map calculator permit 2115 match community 2_173_254 set community 0:43942 ip community-list standard 2_139_234 permit 65000:2 0:139 0:234 route-map calculator permit 2116 match community 2_139_234 set community 0:32526 ip community-list standard 2_163_220 permit 65000:2 0:163 0:220 route-map calculator permit 2117 match community 2_163_220 set community 0:35860 ip community-list standard 2_57_155 permit 65000:2 0:57 0:155 ip community-list standard 2_93_95 permit 65000:2 0:93 0:95 route-map calculator permit 2118 match community 2_57_155 2_93_95 set community 0:8835 ip community-list standard 2_151_239 permit 65000:2 0:151 0:239 route-map calculator permit 2119 match community 2_151_239 set community 0:36089 ip community-list standard 2_173_215 permit 65000:2 0:173 0:215 route-map calculator permit 2120 match community 2_173_215 set community 0:37195 ip community-list standard 2_159_206 permit 65000:2 0:159 0:206 route-map calculator permit 2121 match community 2_159_206 set community 0:32754 ip community-list standard 2_148_184 permit 65000:2 0:148 0:184 route-map calculator permit 2122 match community 2_148_184 set community 0:27232 ip community-list standard 1_235_256 permit 65000:1 0:235 0:256 ip community-list standard 1_236_255 permit 65000:1 0:236 0:255 ip community-list standard 1_237_254 permit 65000:1 0:237 0:254 ip community-list standard 1_238_253 permit 65000:1 0:238 0:253 ip community-list standard 1_239_252 permit 65000:1 0:239 0:252 ip community-list standard 1_240_251 permit 65000:1 0:240 0:251 ip community-list standard 1_241_250 permit 65000:1 0:241 0:250 ip community-list standard 1_242_249 permit 65000:1 0:242 0:249 ip community-list standard 1_243_248 permit 65000:1 0:243 0:248 ip community-list standard 1_244_247 permit 65000:1 0:244 0:247 ip community-list standard 1_245_246 permit 65000:1 0:245 0:246 route-map calculator permit 2123 match community 1_235_256 1_236_255 1_237_254 1_238_253 1_239_252 set community 0:491 route-map calculator permit 2124 match community 1_240_251 1_241_250 1_242_249 1_243_248 1_244_247 set community 0:491 route-map calculator permit 2125 match community 1_245_246 set community 0:491 ip community-list standard 2_152_215 permit 65000:2 0:152 0:215 ip community-list standard 2_172_190 permit 65000:2 0:172 0:190 route-map calculator permit 2126 match community 2_152_215 2_172_190 set community 0:32680 ip community-list standard 2_61_226 permit 65000:2 0:61 0:226 ip community-list standard 2_113_122 permit 65000:2 0:113 0:122 route-map calculator permit 2127 match community 2_61_226 2_113_122 set community 0:13786 ip community-list standard 2_37_224 permit 65000:2 0:37 0:224 ip community-list standard 2_56_148 permit 65000:2 0:56 0:148 ip community-list standard 2_74_112 permit 65000:2 0:74 0:112 route-map calculator permit 2128 match community 2_37_224 2_56_148 2_74_112 set community 0:8288 ip community-list standard 2_4_184 permit 65000:2 0:4 0:184 ip community-list standard 2_8_92 permit 65000:2 0:8 0:92 ip community-list standard 2_16_46 permit 65000:2 0:16 0:46 ip community-list standard 2_23_32 permit 65000:2 0:23 0:32 route-map calculator permit 2129 match community 2_4_184 2_8_92 2_16_46 2_23_32 set community 0:736 ip community-list standard 2_44_202 permit 65000:2 0:44 0:202 ip community-list standard 2_88_101 permit 65000:2 0:88 0:101 route-map calculator permit 2130 match community 2_44_202 2_88_101 set community 0:8888 ip community-list standard 2_58_131 permit 65000:2 0:58 0:131 route-map calculator permit 2131 match community 2_58_131 set community 0:7598 ip community-list standard 2_131_249 permit 65000:2 0:131 0:249 route-map calculator permit 2132 match community 2_131_249 set community 0:32619 ip community-list standard 2_188_208 permit 65000:2 0:188 0:208 route-map calculator permit 2133 match community 2_188_208 set community 0:39104 ip community-list standard 2_42_233 permit 65000:2 0:42 0:233 route-map calculator permit 2134 match community 2_42_233 set community 0:9786 ip community-list standard 2_41_248 permit 65000:2 0:41 0:248 ip community-list standard 2_62_164 permit 65000:2 0:62 0:164 ip community-list standard 2_82_124 permit 65000:2 0:82 0:124 route-map calculator permit 2135 match community 2_41_248 2_62_164 2_82_124 set community 0:10168 ip community-list standard 2_245_254 permit 65000:2 0:245 0:254 route-map calculator permit 2136 match community 2_245_254 set community 0:62230 ip community-list standard 2_126_211 permit 65000:2 0:126 0:211 route-map calculator permit 2137 match community 2_126_211 set community 0:26586 ip community-list standard 2_180_241 permit 65000:2 0:180 0:241 route-map calculator permit 2138 match community 2_180_241 set community 0:43380 ip community-list standard 2_172_238 permit 65000:2 0:172 0:238 route-map calculator permit 2139 match community 2_172_238 set community 0:40936 ip community-list standard 2_30_197 permit 65000:2 0:30 0:197 route-map calculator permit 2140 match community 2_30_197 set community 0:5910 ip community-list standard 2_122_233 permit 65000:2 0:122 0:233 route-map calculator permit 2141 match community 2_122_233 set community 0:28426 ip community-list standard 2_86_141 permit 65000:2 0:86 0:141 ip community-list standard 2_94_129 permit 65000:2 0:94 0:129 route-map calculator permit 2142 match community 2_86_141 2_94_129 set community 0:12126 ip community-list standard 2_49_249 permit 65000:2 0:49 0:249 ip community-list standard 2_83_147 permit 65000:2 0:83 0:147 route-map calculator permit 2143 match community 2_49_249 2_83_147 set community 0:12201 ip community-list standard 2_92_255 permit 65000:2 0:92 0:255 ip community-list standard 2_102_230 permit 65000:2 0:102 0:230 ip community-list standard 2_115_204 permit 65000:2 0:115 0:204 ip community-list standard 2_138_170 permit 65000:2 0:138 0:170 route-map calculator permit 2144 match community 2_92_255 2_102_230 2_115_204 2_138_170 set community 0:23460 ip community-list standard 2_142_173 permit 65000:2 0:142 0:173 route-map calculator permit 2145 match community 2_142_173 set community 0:24566 ip community-list standard 2_18_193 permit 65000:2 0:18 0:193 route-map calculator permit 2146 match community 2_18_193 set community 0:3474 ip community-list standard 2_223_250 permit 65000:2 0:223 0:250 route-map calculator permit 2147 match community 2_223_250 set community 0:55750 ip community-list standard 2_111_111 permit 65000:2 0:111 0:111 route-map calculator permit 2148 match community 2_111_111 set community 0:12321 ip community-list standard 2_177_256 permit 65000:2 0:177 0:256 ip community-list standard 2_192_236 permit 65000:2 0:192 0:236 route-map calculator permit 2149 match community 2_177_256 2_192_236 set community 0:45312 ip community-list standard 2_163_226 permit 65000:2 0:163 0:226 route-map calculator permit 2150 match community 2_163_226 set community 0:36838 ip community-list standard 2_184_218 permit 65000:2 0:184 0:218 route-map calculator permit 2151 match community 2_184_218 set community 0:40112 ip community-list standard 2_43_181 permit 65000:2 0:43 0:181 route-map calculator permit 2152 match community 2_43_181 set community 0:7783 ip community-list standard 2_22_178 permit 65000:2 0:22 0:178 ip community-list standard 2_44_89 permit 65000:2 0:44 0:89 route-map calculator permit 2153 match community 2_22_178 2_44_89 set community 0:3916 ip community-list standard 2_202_236 permit 65000:2 0:202 0:236 route-map calculator permit 2154 match community 2_202_236 set community 0:47672 ip community-list standard 2_23_235 permit 65000:2 0:23 0:235 ip community-list standard 2_47_115 permit 65000:2 0:47 0:115 route-map calculator permit 2155 match community 2_23_235 2_47_115 set community 0:5405 ip community-list standard 2_107_161 permit 65000:2 0:107 0:161 route-map calculator permit 2156 match community 2_107_161 set community 0:17227 ip community-list standard 2_131_232 permit 65000:2 0:131 0:232 route-map calculator permit 2157 match community 2_131_232 set community 0:30392 ip community-list standard 2_27_228 permit 65000:2 0:27 0:228 ip community-list standard 2_36_171 permit 65000:2 0:36 0:171 ip community-list standard 2_38_162 permit 65000:2 0:38 0:162 ip community-list standard 2_54_114 permit 65000:2 0:54 0:114 ip community-list standard 2_57_108 permit 65000:2 0:57 0:108 ip community-list standard 2_76_81 permit 65000:2 0:76 0:81 route-map calculator permit 2158 match community 2_27_228 2_36_171 2_38_162 2_54_114 2_57_108 set community 0:6156 route-map calculator permit 2159 match community 2_76_81 set community 0:6156 ip community-list standard 2_148_236 permit 65000:2 0:148 0:236 route-map calculator permit 2160 match community 2_148_236 set community 0:34928 ip community-list standard 2_231_239 permit 65000:2 0:231 0:239 route-map calculator permit 2161 match community 2_231_239 set community 0:55209 ip community-list standard 2_117_241 permit 65000:2 0:117 0:241 route-map calculator permit 2162 match community 2_117_241 set community 0:28197 ip community-list standard 2_40_208 permit 65000:2 0:40 0:208 ip community-list standard 2_52_160 permit 65000:2 0:52 0:160 ip community-list standard 2_64_130 permit 65000:2 0:64 0:130 ip community-list standard 2_65_128 permit 65000:2 0:65 0:128 ip community-list standard 2_80_104 permit 65000:2 0:80 0:104 route-map calculator permit 2163 match community 2_40_208 2_52_160 2_64_130 2_65_128 2_80_104 set community 0:8320 ip community-list standard 2_154_181 permit 65000:2 0:154 0:181 route-map calculator permit 2164 match community 2_154_181 set community 0:27874 ip community-list standard 2_131_242 permit 65000:2 0:131 0:242 route-map calculator permit 2165 match community 2_131_242 set community 0:31702 ip community-list standard 2_34_131 permit 65000:2 0:34 0:131 route-map calculator permit 2166 match community 2_34_131 set community 0:4454 ip community-list standard 2_153_174 permit 65000:2 0:153 0:174 route-map calculator permit 2167 match community 2_153_174 set community 0:26622 ip community-list standard 2_102_212 permit 65000:2 0:102 0:212 ip community-list standard 2_106_204 permit 65000:2 0:106 0:204 ip community-list standard 2_136_159 permit 65000:2 0:136 0:159 route-map calculator permit 2168 match community 2_102_212 2_106_204 2_136_159 set community 0:21624 ip community-list standard 2_93_165 permit 65000:2 0:93 0:165 ip community-list standard 2_99_155 permit 65000:2 0:99 0:155 route-map calculator permit 2169 match community 2_93_165 2_99_155 set community 0:15345 ip community-list standard 1_1_88 permit 65000:1 0:1 0:88 ip community-list standard 2_1_89 permit 65000:2 0:1 0:89 ip community-list standard 1_2_87 permit 65000:1 0:2 0:87 ip community-list standard 1_3_86 permit 65000:1 0:3 0:86 ip community-list standard 1_4_85 permit 65000:1 0:4 0:85 ip community-list standard 1_5_84 permit 65000:1 0:5 0:84 ip community-list standard 1_6_83 permit 65000:1 0:6 0:83 ip community-list standard 1_7_82 permit 65000:1 0:7 0:82 ip community-list standard 1_8_81 permit 65000:1 0:8 0:81 ip community-list standard 1_9_80 permit 65000:1 0:9 0:80 ip community-list standard 1_10_79 permit 65000:1 0:10 0:79 ip community-list standard 1_11_78 permit 65000:1 0:11 0:78 ip community-list standard 1_12_77 permit 65000:1 0:12 0:77 ip community-list standard 1_13_76 permit 65000:1 0:13 0:76 ip community-list standard 1_14_75 permit 65000:1 0:14 0:75 ip community-list standard 1_15_74 permit 65000:1 0:15 0:74 ip community-list standard 1_16_73 permit 65000:1 0:16 0:73 ip community-list standard 1_17_72 permit 65000:1 0:17 0:72 ip community-list standard 1_18_71 permit 65000:1 0:18 0:71 ip community-list standard 1_19_70 permit 65000:1 0:19 0:70 ip community-list standard 1_20_69 permit 65000:1 0:20 0:69 ip community-list standard 1_21_68 permit 65000:1 0:21 0:68 ip community-list standard 1_22_67 permit 65000:1 0:22 0:67 ip community-list standard 1_23_66 permit 65000:1 0:23 0:66 ip community-list standard 1_24_65 permit 65000:1 0:24 0:65 ip community-list standard 1_25_64 permit 65000:1 0:25 0:64 ip community-list standard 1_26_63 permit 65000:1 0:26 0:63 ip community-list standard 1_27_62 permit 65000:1 0:27 0:62 ip community-list standard 1_28_61 permit 65000:1 0:28 0:61 ip community-list standard 1_29_60 permit 65000:1 0:29 0:60 ip community-list standard 1_30_59 permit 65000:1 0:30 0:59 ip community-list standard 1_31_58 permit 65000:1 0:31 0:58 ip community-list standard 1_32_57 permit 65000:1 0:32 0:57 ip community-list standard 1_33_56 permit 65000:1 0:33 0:56 ip community-list standard 1_34_55 permit 65000:1 0:34 0:55 ip community-list standard 1_35_54 permit 65000:1 0:35 0:54 ip community-list standard 1_36_53 permit 65000:1 0:36 0:53 ip community-list standard 1_37_52 permit 65000:1 0:37 0:52 ip community-list standard 1_38_51 permit 65000:1 0:38 0:51 ip community-list standard 1_39_50 permit 65000:1 0:39 0:50 ip community-list standard 1_40_49 permit 65000:1 0:40 0:49 ip community-list standard 1_41_48 permit 65000:1 0:41 0:48 ip community-list standard 1_42_47 permit 65000:1 0:42 0:47 ip community-list standard 1_43_46 permit 65000:1 0:43 0:46 ip community-list standard 1_44_45 permit 65000:1 0:44 0:45 ip community-list expanded c89 permit 1 ^65000:4_0:89_0:1$ ip community-list expanded c89 permit 2 ^65000:3_0:90_0:1$ ip community-list expanded c89 permit 3 ^65000:3_0:91_0:2$ ip community-list expanded c89 permit 4 ^65000:3_0:92_0:3$ ip community-list expanded c89 permit 5 ^65000:3_0:93_0:4$ ip community-list expanded c89 permit 6 ^65000:3_0:94_0:5$ ip community-list expanded c89 permit 7 ^65000:3_0:95_0:6$ ip community-list expanded c89 permit 8 ^65000:3_0:96_0:7$ ip community-list expanded c89 permit 9 ^65000:3_0:97_0:8$ ip community-list expanded c89 permit 10 ^65000:3_0:98_0:9$ ip community-list expanded c89 permit 11 ^65000:3_0:99_0:10$ ip community-list expanded c89 permit 12 ^65000:3_0:100_0:11$ ip community-list expanded c89 permit 13 ^65000:3_0:101_0:12$ ip community-list expanded c89 permit 14 ^65000:3_0:102_0:13$ ip community-list expanded c89 permit 15 ^65000:3_0:103_0:14$ ip community-list expanded c89 permit 16 ^65000:3_0:104_0:15$ ip community-list expanded c89 permit 17 ^65000:3_0:105_0:16$ ip community-list expanded c89 permit 18 ^65000:3_0:106_0:17$ ip community-list expanded c89 permit 19 ^65000:3_0:107_0:18$ ip community-list expanded c89 permit 20 ^65000:3_0:108_0:19$ ip community-list expanded c89 permit 21 ^65000:3_0:109_0:20$ ip community-list expanded c89 permit 22 ^65000:3_0:110_0:21$ ip community-list expanded c89 permit 23 ^65000:3_0:111_0:22$ ip community-list expanded c89 permit 24 ^65000:3_0:112_0:23$ ip community-list expanded c89 permit 25 ^65000:3_0:113_0:24$ ip community-list expanded c89 permit 26 ^65000:3_0:114_0:25$ ip community-list expanded c89 permit 27 ^65000:3_0:115_0:26$ ip community-list expanded c89 permit 28 ^65000:3_0:116_0:27$ ip community-list expanded c89 permit 29 ^65000:3_0:117_0:28$ ip community-list expanded c89 permit 30 ^65000:3_0:118_0:29$ ip community-list expanded c89 permit 31 ^65000:3_0:119_0:30$ ip community-list expanded c89 permit 32 ^65000:3_0:120_0:31$ ip community-list expanded c89 permit 33 ^65000:3_0:121_0:32$ ip community-list expanded c89 permit 34 ^65000:3_0:122_0:33$ ip community-list expanded c89 permit 35 ^65000:3_0:123_0:34$ ip community-list expanded c89 permit 36 ^65000:3_0:124_0:35$ ip community-list expanded c89 permit 37 ^65000:3_0:125_0:36$ ip community-list expanded c89 permit 38 ^65000:3_0:126_0:37$ ip community-list expanded c89 permit 39 ^65000:3_0:127_0:38$ ip community-list expanded c89 permit 40 ^65000:3_0:128_0:39$ ip community-list expanded c89 permit 41 ^65000:3_0:129_0:40$ ip community-list expanded c89 permit 42 ^65000:3_0:130_0:41$ ip community-list expanded c89 permit 43 ^65000:3_0:131_0:42$ ip community-list expanded c89 permit 44 ^65000:3_0:132_0:43$ ip community-list expanded c89 permit 45 ^65000:3_0:133_0:44$ ip community-list expanded c89 permit 46 ^65000:3_0:134_0:45$ ip community-list expanded c89 permit 47 ^65000:3_0:135_0:46$ ip community-list expanded c89 permit 48 ^65000:3_0:136_0:47$ ip community-list expanded c89 permit 49 ^65000:3_0:137_0:48$ ip community-list expanded c89 permit 50 ^65000:3_0:138_0:49$ ip community-list expanded c89 permit 51 ^65000:3_0:139_0:50$ ip community-list expanded c89 permit 52 ^65000:3_0:140_0:51$ ip community-list expanded c89 permit 53 ^65000:3_0:141_0:52$ ip community-list expanded c89 permit 54 ^65000:3_0:142_0:53$ ip community-list expanded c89 permit 55 ^65000:3_0:143_0:54$ ip community-list expanded c89 permit 56 ^65000:3_0:144_0:55$ ip community-list expanded c89 permit 57 ^65000:3_0:145_0:56$ ip community-list expanded c89 permit 58 ^65000:3_0:146_0:57$ ip community-list expanded c89 permit 59 ^65000:3_0:147_0:58$ ip community-list expanded c89 permit 60 ^65000:3_0:148_0:59$ ip community-list expanded c89 permit 61 ^65000:3_0:149_0:60$ ip community-list expanded c89 permit 62 ^65000:3_0:150_0:61$ ip community-list expanded c89 permit 63 ^65000:3_0:151_0:62$ ip community-list expanded c89 permit 64 ^65000:3_0:152_0:63$ ip community-list expanded c89 permit 65 ^65000:3_0:153_0:64$ ip community-list expanded c89 permit 66 ^65000:3_0:154_0:65$ ip community-list expanded c89 permit 67 ^65000:3_0:155_0:66$ ip community-list expanded c89 permit 68 ^65000:3_0:156_0:67$ ip community-list expanded c89 permit 69 ^65000:3_0:157_0:68$ ip community-list expanded c89 permit 70 ^65000:3_0:158_0:69$ ip community-list expanded c89 permit 71 ^65000:3_0:159_0:70$ ip community-list expanded c89 permit 72 ^65000:3_0:160_0:71$ ip community-list expanded c89 permit 73 ^65000:3_0:161_0:72$ ip community-list expanded c89 permit 74 ^65000:3_0:162_0:73$ ip community-list expanded c89 permit 75 ^65000:3_0:163_0:74$ ip community-list expanded c89 permit 76 ^65000:3_0:164_0:75$ ip community-list expanded c89 permit 77 ^65000:3_0:165_0:76$ ip community-list expanded c89 permit 78 ^65000:3_0:166_0:77$ ip community-list expanded c89 permit 79 ^65000:3_0:167_0:78$ ip community-list expanded c89 permit 80 ^65000:3_0:168_0:79$ ip community-list expanded c89 permit 81 ^65000:3_0:169_0:80$ ip community-list expanded c89 permit 82 ^65000:3_0:170_0:81$ ip community-list expanded c89 permit 83 ^65000:3_0:171_0:82$ ip community-list expanded c89 permit 84 ^65000:3_0:172_0:83$ ip community-list expanded c89 permit 85 ^65000:3_0:173_0:84$ ip community-list expanded c89 permit 86 ^65000:3_0:174_0:85$ ip community-list expanded c89 permit 87 ^65000:3_0:175_0:86$ ip community-list expanded c89 permit 88 ^65000:3_0:176_0:87$ ip community-list expanded c89 permit 89 ^65000:3_0:177_0:88$ ip community-list expanded c89 permit 90 ^65000:4_0:178_0:2$ ip community-list expanded c89 permit 91 ^65000:3_0:178_0:89$ ip community-list expanded c89 permit 92 ^65000:4_0:179_0:2$ ip community-list expanded c89 permit 93 ^65000:3_0:179_0:90$ ip community-list expanded c89 permit 94 ^65000:3_0:180_0:91$ ip community-list expanded c89 permit 95 ^65000:3_0:181_0:92$ ip community-list expanded c89 permit 96 ^65000:3_0:182_0:93$ ip community-list expanded c89 permit 97 ^65000:3_0:183_0:94$ ip community-list expanded c89 permit 98 ^65000:3_0:184_0:95$ ip community-list expanded c89 permit 99 ^65000:3_0:185_0:96$ ip community-list expanded c89 permit 100 ^65000:3_0:186_0:97$ ip community-list expanded c89 permit 101 ^65000:3_0:187_0:98$ ip community-list expanded c89 permit 102 ^65000:3_0:188_0:99$ ip community-list expanded c89 permit 103 ^65000:3_0:189_0:100$ ip community-list expanded c89 permit 104 ^65000:3_0:190_0:101$ ip community-list expanded c89 permit 105 ^65000:3_0:191_0:102$ ip community-list expanded c89 permit 106 ^65000:3_0:192_0:103$ ip community-list expanded c89 permit 107 ^65000:3_0:193_0:104$ ip community-list expanded c89 permit 108 ^65000:3_0:194_0:105$ ip community-list expanded c89 permit 109 ^65000:3_0:195_0:106$ ip community-list expanded c89 permit 110 ^65000:3_0:196_0:107$ ip community-list expanded c89 permit 111 ^65000:3_0:197_0:108$ ip community-list expanded c89 permit 112 ^65000:3_0:198_0:109$ ip community-list expanded c89 permit 113 ^65000:3_0:199_0:110$ ip community-list expanded c89 permit 114 ^65000:3_0:200_0:111$ ip community-list expanded c89 permit 115 ^65000:3_0:201_0:112$ ip community-list expanded c89 permit 116 ^65000:3_0:202_0:113$ ip community-list expanded c89 permit 117 ^65000:3_0:203_0:114$ ip community-list expanded c89 permit 118 ^65000:3_0:204_0:115$ ip community-list expanded c89 permit 119 ^65000:3_0:205_0:116$ ip community-list expanded c89 permit 120 ^65000:3_0:206_0:117$ ip community-list expanded c89 permit 121 ^65000:3_0:207_0:118$ ip community-list expanded c89 permit 122 ^65000:3_0:208_0:119$ ip community-list expanded c89 permit 123 ^65000:3_0:209_0:120$ ip community-list expanded c89 permit 124 ^65000:3_0:210_0:121$ ip community-list expanded c89 permit 125 ^65000:3_0:211_0:122$ ip community-list expanded c89 permit 126 ^65000:3_0:212_0:123$ ip community-list expanded c89 permit 127 ^65000:3_0:213_0:124$ ip community-list expanded c89 permit 128 ^65000:3_0:214_0:125$ ip community-list expanded c89 permit 129 ^65000:3_0:215_0:126$ ip community-list expanded c89 permit 130 ^65000:3_0:216_0:127$ ip community-list expanded c89 permit 131 ^65000:3_0:217_0:128$ ip community-list expanded c89 permit 132 ^65000:3_0:218_0:129$ ip community-list expanded c89 permit 133 ^65000:3_0:219_0:130$ ip community-list expanded c89 permit 134 ^65000:3_0:220_0:131$ ip community-list expanded c89 permit 135 ^65000:3_0:221_0:132$ ip community-list expanded c89 permit 136 ^65000:3_0:222_0:133$ ip community-list expanded c89 permit 137 ^65000:3_0:223_0:134$ ip community-list expanded c89 permit 138 ^65000:3_0:224_0:135$ ip community-list expanded c89 permit 139 ^65000:3_0:225_0:136$ ip community-list expanded c89 permit 140 ^65000:3_0:226_0:137$ ip community-list expanded c89 permit 141 ^65000:3_0:227_0:138$ ip community-list expanded c89 permit 142 ^65000:3_0:228_0:139$ ip community-list expanded c89 permit 143 ^65000:3_0:229_0:140$ ip community-list expanded c89 permit 144 ^65000:3_0:230_0:141$ ip community-list expanded c89 permit 145 ^65000:3_0:231_0:142$ ip community-list expanded c89 permit 146 ^65000:3_0:232_0:143$ ip community-list expanded c89 permit 147 ^65000:3_0:233_0:144$ ip community-list expanded c89 permit 148 ^65000:3_0:234_0:145$ ip community-list expanded c89 permit 149 ^65000:3_0:235_0:146$ ip community-list expanded c89 permit 150 ^65000:3_0:236_0:147$ ip community-list expanded c89 permit 151 ^65000:3_0:237_0:148$ ip community-list expanded c89 permit 152 ^65000:3_0:238_0:149$ ip community-list expanded c89 permit 153 ^65000:3_0:239_0:150$ ip community-list expanded c89 permit 154 ^65000:3_0:240_0:151$ ip community-list expanded c89 permit 155 ^65000:3_0:241_0:152$ ip community-list expanded c89 permit 156 ^65000:3_0:242_0:153$ ip community-list expanded c89 permit 157 ^65000:3_0:243_0:154$ ip community-list expanded c89 permit 158 ^65000:3_0:244_0:155$ ip community-list expanded c89 permit 159 ^65000:3_0:245_0:156$ ip community-list expanded c89 permit 160 ^65000:3_0:246_0:157$ ip community-list expanded c89 permit 161 ^65000:3_0:247_0:158$ ip community-list expanded c89 permit 162 ^65000:3_0:248_0:159$ ip community-list expanded c89 permit 163 ^65000:3_0:249_0:160$ ip community-list expanded c89 permit 164 ^65000:3_0:250_0:161$ ip community-list expanded c89 permit 165 ^65000:3_0:251_0:162$ ip community-list expanded c89 permit 166 ^65000:3_0:252_0:163$ ip community-list expanded c89 permit 167 ^65000:3_0:253_0:164$ ip community-list expanded c89 permit 168 ^65000:3_0:254_0:165$ ip community-list expanded c89 permit 169 ^65000:3_0:255_0:166$ ip community-list expanded c89 permit 170 ^65000:3_0:256_0:167$ route-map calculator permit 2170 match community 1_1_88 2_1_89 1_2_87 1_3_86 1_4_85 set community 0:89 route-map calculator permit 2171 match community 1_5_84 1_6_83 1_7_82 1_8_81 1_9_80 set community 0:89 route-map calculator permit 2172 match community 1_10_79 1_11_78 1_12_77 1_13_76 1_14_75 set community 0:89 route-map calculator permit 2173 match community 1_15_74 1_16_73 1_17_72 1_18_71 1_19_70 set community 0:89 route-map calculator permit 2174 match community 1_20_69 1_21_68 1_22_67 1_23_66 1_24_65 set community 0:89 route-map calculator permit 2175 match community 1_25_64 1_26_63 1_27_62 1_28_61 1_29_60 set community 0:89 route-map calculator permit 2176 match community 1_30_59 1_31_58 1_32_57 1_33_56 1_34_55 set community 0:89 route-map calculator permit 2177 match community 1_35_54 1_36_53 1_37_52 1_38_51 1_39_50 set community 0:89 route-map calculator permit 2178 match community 1_40_49 1_41_48 1_42_47 1_43_46 1_44_45 set community 0:89 route-map calculator permit 2179 match community c4_89_1 c3_90_1 c3_91_2 c3_92_3 c3_93_4 set community 0:89 route-map calculator permit 2180 match community c3_94_5 c3_95_6 c3_96_7 c3_97_8 c3_98_9 set community 0:89 route-map calculator permit 2181 match community c3_99_10 c3_100_11 c3_101_12 c3_102_13 c3_103_14 set community 0:89 route-map calculator permit 2182 match community c3_104_15 c3_105_16 c3_106_17 c3_107_18 c3_108_19 set community 0:89 route-map calculator permit 2183 match community c3_109_20 c3_110_21 c3_111_22 c3_112_23 c3_113_24 set community 0:89 route-map calculator permit 2184 match community c3_114_25 c3_115_26 c3_116_27 c3_117_28 c3_118_29 set community 0:89 route-map calculator permit 2185 match community c3_119_30 c3_120_31 c3_121_32 c3_122_33 c3_123_34 set community 0:89 route-map calculator permit 2186 match community c3_124_35 c3_125_36 c3_126_37 c3_127_38 c3_128_39 set community 0:89 route-map calculator permit 2187 match community c3_129_40 c3_130_41 c3_131_42 c3_132_43 c3_133_44 set community 0:89 route-map calculator permit 2188 match community c3_134_45 c3_135_46 c3_136_47 c3_137_48 c3_138_49 set community 0:89 route-map calculator permit 2189 match community c3_139_50 c3_140_51 c3_141_52 c3_142_53 c3_143_54 set community 0:89 route-map calculator permit 2190 match community c3_144_55 c3_145_56 c3_146_57 c3_147_58 c3_148_59 set community 0:89 route-map calculator permit 2191 match community c3_149_60 c3_150_61 c3_151_62 c3_152_63 c3_153_64 set community 0:89 route-map calculator permit 2192 match community c3_154_65 c3_155_66 c3_156_67 c3_157_68 c3_158_69 set community 0:89 route-map calculator permit 2193 match community c3_159_70 c3_160_71 c3_161_72 c3_162_73 c3_163_74 set community 0:89 route-map calculator permit 2194 match community c3_164_75 c3_165_76 c3_166_77 c3_167_78 c3_168_79 set community 0:89 route-map calculator permit 2195 match community c3_169_80 c3_170_81 c3_171_82 c3_172_83 c3_173_84 set community 0:89 route-map calculator permit 2196 match community c3_174_85 c3_175_86 c3_176_87 c3_177_88 c4_178_2 set community 0:89 route-map calculator permit 2197 match community c3_178_89 c4_179_2 c3_179_90 c3_180_91 c3_181_92 set community 0:89 route-map calculator permit 2198 match community c3_182_93 c3_183_94 c3_184_95 c3_185_96 c3_186_97 set community 0:89 route-map calculator permit 2199 match community c3_187_98 c3_188_99 c3_189_100 c3_190_101 c3_191_102 set community 0:89 route-map calculator permit 2200 match community c3_192_103 c3_193_104 c3_194_105 c3_195_106 c3_196_107 set community 0:89 route-map calculator permit 2201 match community c3_197_108 c3_198_109 c3_199_110 c3_200_111 c3_201_112 set community 0:89 route-map calculator permit 2202 match community c3_202_113 c3_203_114 c3_204_115 c3_205_116 c3_206_117 set community 0:89 route-map calculator permit 2203 match community c3_207_118 c3_208_119 c3_209_120 c3_210_121 c3_211_122 set community 0:89 route-map calculator permit 2204 match community c3_212_123 c3_213_124 c3_214_125 c3_215_126 c3_216_127 set community 0:89 route-map calculator permit 2205 match community c3_217_128 c3_218_129 c3_219_130 c3_220_131 c3_221_132 set community 0:89 route-map calculator permit 2206 match community c3_222_133 c3_223_134 c3_224_135 c3_225_136 c3_226_137 set community 0:89 route-map calculator permit 2207 match community c3_227_138 c3_228_139 c3_229_140 c3_230_141 c3_231_142 set community 0:89 route-map calculator permit 2208 match community c3_232_143 c3_233_144 c3_234_145 c3_235_146 c3_236_147 set community 0:89 route-map calculator permit 2209 match community c3_237_148 c3_238_149 c3_239_150 c3_240_151 c3_241_152 set community 0:89 route-map calculator permit 2210 match community c3_242_153 c3_243_154 c3_244_155 c3_245_156 c3_246_157 set community 0:89 route-map calculator permit 2211 match community c3_247_158 c3_248_159 c3_249_160 c3_250_161 c3_251_162 set community 0:89 route-map calculator permit 2212 match community c3_252_163 c3_253_164 c3_254_165 c3_255_166 c3_256_167 set community 0:89 ip community-list standard 2_236_243 permit 65000:2 0:236 0:243 route-map calculator permit 2213 match community 2_236_243 set community 0:57348 ip community-list standard 2_31_86 permit 65000:2 0:31 0:86 ip community-list standard 2_43_62 permit 65000:2 0:43 0:62 route-map calculator permit 2214 match community 2_31_86 2_43_62 set community 0:2666 ip community-list standard 2_96_255 permit 65000:2 0:96 0:255 ip community-list standard 2_102_240 permit 65000:2 0:102 0:240 ip community-list standard 2_120_204 permit 65000:2 0:120 0:204 ip community-list standard 2_136_180 permit 65000:2 0:136 0:180 ip community-list standard 2_144_170 permit 65000:2 0:144 0:170 ip community-list standard 2_153_160 permit 65000:2 0:153 0:160 route-map calculator permit 2215 match community 2_96_255 2_102_240 2_120_204 2_136_180 2_144_170 set community 0:24480 route-map calculator permit 2216 match community 2_153_160 set community 0:24480 ip community-list standard 2_67_154 permit 65000:2 0:67 0:154 ip community-list standard 2_77_134 permit 65000:2 0:77 0:134 route-map calculator permit 2217 match community 2_67_154 2_77_134 set community 0:10318 ip community-list standard 2_93_113 permit 65000:2 0:93 0:113 route-map calculator permit 2218 match community 2_93_113 set community 0:10509 ip community-list standard 2_192_249 permit 65000:2 0:192 0:249 route-map calculator permit 2219 match community 2_192_249 set community 0:47808 ip community-list standard 2_69_221 permit 65000:2 0:69 0:221 route-map calculator permit 2220 match community 2_69_221 set community 0:15249 ip community-list standard 2_69_234 permit 65000:2 0:69 0:234 ip community-list standard 2_78_207 permit 65000:2 0:78 0:207 ip community-list standard 2_117_138 permit 65000:2 0:117 0:138 route-map calculator permit 2221 match community 2_69_234 2_78_207 2_117_138 set community 0:16146 ip community-list standard 2_41_207 permit 65000:2 0:41 0:207 ip community-list standard 2_69_123 permit 65000:2 0:69 0:123 route-map calculator permit 2222 match community 2_41_207 2_69_123 set community 0:8487 ip community-list standard 2_31_74 permit 65000:2 0:31 0:74 ip community-list standard 2_37_62 permit 65000:2 0:37 0:62 route-map calculator permit 2223 match community 2_31_74 2_37_62 set community 0:2294 ip community-list standard 2_200_246 permit 65000:2 0:200 0:246 ip community-list standard 2_205_240 permit 65000:2 0:205 0:240 route-map calculator permit 2224 match community 2_200_246 2_205_240 set community 0:49200 ip community-list standard 2_91_225 permit 65000:2 0:91 0:225 ip community-list standard 2_105_195 permit 65000:2 0:105 0:195 ip community-list standard 2_117_175 permit 65000:2 0:117 0:175 route-map calculator permit 2225 match community 2_91_225 2_105_195 2_117_175 set community 0:20475 ip community-list standard 2_37_163 permit 65000:2 0:37 0:163 route-map calculator permit 2226 match community 2_37_163 set community 0:6031 ip community-list standard 2_191_219 permit 65000:2 0:191 0:219 route-map calculator permit 2227 match community 2_191_219 set community 0:41829 ip community-list standard 2_195_233 permit 65000:2 0:195 0:233 route-map calculator permit 2228 match community 2_195_233 set community 0:45435 ip community-list standard 2_182_205 permit 65000:2 0:182 0:205 route-map calculator permit 2229 match community 2_182_205 set community 0:37310 ip community-list standard 2_67_148 permit 65000:2 0:67 0:148 ip community-list standard 2_74_134 permit 65000:2 0:74 0:134 route-map calculator permit 2230 match community 2_67_148 2_74_134 set community 0:9916 ip community-list standard 2_141_224 permit 65000:2 0:141 0:224 ip community-list standard 2_168_188 permit 65000:2 0:168 0:188 route-map calculator permit 2231 match community 2_141_224 2_168_188 set community 0:31584 ip community-list standard 2_6_211 permit 65000:2 0:6 0:211 route-map calculator permit 2232 match community 2_6_211 set community 0:1266 ip community-list standard 2_100_217 permit 65000:2 0:100 0:217 ip community-list standard 2_124_175 permit 65000:2 0:124 0:175 ip community-list standard 2_140_155 permit 65000:2 0:140 0:155 route-map calculator permit 2233 match community 2_100_217 2_124_175 2_140_155 set community 0:21700 ip community-list standard 2_203_223 permit 65000:2 0:203 0:223 route-map calculator permit 2234 match community 2_203_223 set community 0:45269 ip community-list standard 2_194_218 permit 65000:2 0:194 0:218 route-map calculator permit 2235 match community 2_194_218 set community 0:42292 ip community-list standard 2_203_232 permit 65000:2 0:203 0:232 route-map calculator permit 2236 match community 2_203_232 set community 0:47096 ip community-list standard 2_128_213 permit 65000:2 0:128 0:213 ip community-list standard 2_142_192 permit 65000:2 0:142 0:192 route-map calculator permit 2237 match community 2_128_213 2_142_192 set community 0:27264 ip community-list standard 2_181_248 permit 65000:2 0:181 0:248 route-map calculator permit 2238 match community 2_181_248 set community 0:44888 ip community-list standard 2_88_204 permit 65000:2 0:88 0:204 ip community-list standard 2_96_187 permit 65000:2 0:96 0:187 ip community-list standard 2_102_176 permit 65000:2 0:102 0:176 ip community-list standard 2_132_136 permit 65000:2 0:132 0:136 route-map calculator permit 2239 match community 2_88_204 2_96_187 2_102_176 2_132_136 set community 0:17952 ip community-list standard 2_80_251 permit 65000:2 0:80 0:251 route-map calculator permit 2240 match community 2_80_251 set community 0:20080 ip community-list standard 2_23_191 permit 65000:2 0:23 0:191 route-map calculator permit 2241 match community 2_23_191 set community 0:4393 ip community-list standard 2_116_256 permit 65000:2 0:116 0:256 ip community-list standard 2_128_232 permit 65000:2 0:128 0:232 route-map calculator permit 2242 match community 2_116_256 2_128_232 set community 0:29696 ip community-list standard 2_222_249 permit 65000:2 0:222 0:249 route-map calculator permit 2243 match community 2_222_249 set community 0:55278 ip community-list standard 2_127_177 permit 65000:2 0:127 0:177 route-map calculator permit 2244 match community 2_127_177 set community 0:22479 ip community-list standard 2_52_241 permit 65000:2 0:52 0:241 route-map calculator permit 2245 match community 2_52_241 set community 0:12532 ip community-list standard 2_77_236 permit 65000:2 0:77 0:236 ip community-list standard 2_118_154 permit 65000:2 0:118 0:154 route-map calculator permit 2246 match community 2_77_236 2_118_154 set community 0:18172 ip community-list standard 2_55_213 permit 65000:2 0:55 0:213 ip community-list standard 2_71_165 permit 65000:2 0:71 0:165 route-map calculator permit 2247 match community 2_55_213 2_71_165 set community 0:11715 ip community-list standard 2_50_228 permit 65000:2 0:50 0:228 ip community-list standard 2_57_200 permit 65000:2 0:57 0:200 ip community-list standard 2_60_190 permit 65000:2 0:60 0:190 ip community-list standard 2_75_152 permit 65000:2 0:75 0:152 ip community-list standard 2_76_150 permit 65000:2 0:76 0:150 ip community-list standard 2_95_120 permit 65000:2 0:95 0:120 ip community-list standard 2_100_114 permit 65000:2 0:100 0:114 route-map calculator permit 2248 match community 2_50_228 2_57_200 2_60_190 2_75_152 2_76_150 set community 0:11400 route-map calculator permit 2249 match community 2_95_120 2_100_114 set community 0:11400 ip community-list standard 2_234_243 permit 65000:2 0:234 0:243 route-map calculator permit 2250 match community 2_234_243 set community 0:56862 ip community-list standard 2_47_248 permit 65000:2 0:47 0:248 ip community-list standard 2_62_188 permit 65000:2 0:62 0:188 ip community-list standard 2_94_124 permit 65000:2 0:94 0:124 route-map calculator permit 2251 match community 2_47_248 2_62_188 2_94_124 set community 0:11656 ip community-list standard 2_3_251 permit 65000:2 0:3 0:251 route-map calculator permit 2252 match community 2_3_251 set community 0:753 ip community-list standard 2_49_118 permit 65000:2 0:49 0:118 ip community-list standard 2_59_98 permit 65000:2 0:59 0:98 route-map calculator permit 2253 match community 2_49_118 2_59_98 set community 0:5782 ip community-list standard 2_101_217 permit 65000:2 0:101 0:217 route-map calculator permit 2254 match community 2_101_217 set community 0:21917 ip community-list standard 2_201_224 permit 65000:2 0:201 0:224 route-map calculator permit 2255 match community 2_201_224 set community 0:45024 ip community-list standard 2_86_203 permit 65000:2 0:86 0:203 route-map calculator permit 2256 match community 2_86_203 set community 0:17458 ip community-list standard 2_123_179 permit 65000:2 0:123 0:179 route-map calculator permit 2257 match community 2_123_179 set community 0:22017 ip community-list standard 2_146_158 permit 65000:2 0:146 0:158 route-map calculator permit 2258 match community 2_146_158 set community 0:23068 ip community-list standard 2_227_252 permit 65000:2 0:227 0:252 route-map calculator permit 2259 match community 2_227_252 set community 0:57204 ip community-list standard 2_16_245 permit 65000:2 0:16 0:245 ip community-list standard 2_20_196 permit 65000:2 0:20 0:196 ip community-list standard 2_28_140 permit 65000:2 0:28 0:140 ip community-list standard 2_35_112 permit 65000:2 0:35 0:112 ip community-list standard 2_40_98 permit 65000:2 0:40 0:98 ip community-list standard 2_49_80 permit 65000:2 0:49 0:80 ip community-list standard 2_56_70 permit 65000:2 0:56 0:70 route-map calculator permit 2260 match community 2_16_245 2_20_196 2_28_140 2_35_112 2_40_98 set community 0:3920 route-map calculator permit 2261 match community 2_49_80 2_56_70 set community 0:3920 ip community-list standard 2_144_211 permit 65000:2 0:144 0:211 route-map calculator permit 2262 match community 2_144_211 set community 0:30384 ip community-list standard 2_10_246 permit 65000:2 0:10 0:246 ip community-list standard 2_12_205 permit 65000:2 0:12 0:205 ip community-list standard 2_15_164 permit 65000:2 0:15 0:164 ip community-list standard 2_20_123 permit 65000:2 0:20 0:123 ip community-list standard 2_30_82 permit 65000:2 0:30 0:82 ip community-list standard 2_41_60 permit 65000:2 0:41 0:60 route-map calculator permit 2263 match community 2_10_246 2_12_205 2_15_164 2_20_123 2_30_82 set community 0:2460 route-map calculator permit 2264 match community 2_41_60 set community 0:2460 ip community-list standard 2_164_248 permit 65000:2 0:164 0:248 route-map calculator permit 2265 match community 2_164_248 set community 0:40672 ip community-list standard 2_108_243 permit 65000:2 0:108 0:243 ip community-list standard 2_162_162 permit 65000:2 0:162 0:162 route-map calculator permit 2266 match community 2_108_243 2_162_162 set community 0:26244 ip community-list standard 2_132_241 permit 65000:2 0:132 0:241 route-map calculator permit 2267 match community 2_132_241 set community 0:31812 ip community-list standard 2_119_254 permit 65000:2 0:119 0:254 ip community-list standard 2_127_238 permit 65000:2 0:127 0:238 route-map calculator permit 2268 match community 2_119_254 2_127_238 set community 0:30226 ip community-list standard 2_106_137 permit 65000:2 0:106 0:137 route-map calculator permit 2269 match community 2_106_137 set community 0:14522 ip community-list standard 2_15_209 permit 65000:2 0:15 0:209 ip community-list standard 2_19_165 permit 65000:2 0:19 0:165 ip community-list standard 2_33_95 permit 65000:2 0:33 0:95 ip community-list standard 2_55_57 permit 65000:2 0:55 0:57 route-map calculator permit 2270 match community 2_15_209 2_19_165 2_33_95 2_55_57 set community 0:3135 ip community-list standard 2_7_208 permit 65000:2 0:7 0:208 ip community-list standard 2_8_182 permit 65000:2 0:8 0:182 ip community-list standard 2_13_112 permit 65000:2 0:13 0:112 ip community-list standard 2_14_104 permit 65000:2 0:14 0:104 ip community-list standard 2_16_91 permit 65000:2 0:16 0:91 ip community-list standard 2_26_56 permit 65000:2 0:26 0:56 ip community-list standard 2_28_52 permit 65000:2 0:28 0:52 route-map calculator permit 2271 match community 2_7_208 2_8_182 2_13_112 2_14_104 2_16_91 set community 0:1456 route-map calculator permit 2272 match community 2_26_56 2_28_52 set community 0:1456 ip community-list standard 2_229_231 permit 65000:2 0:229 0:231 route-map calculator permit 2273 match community 2_229_231 set community 0:52899 ip community-list standard 2_236_241 permit 65000:2 0:236 0:241 route-map calculator permit 2274 match community 2_236_241 set community 0:56876 ip community-list standard 2_138_232 permit 65000:2 0:138 0:232 ip community-list standard 2_174_184 permit 65000:2 0:174 0:184 route-map calculator permit 2275 match community 2_138_232 2_174_184 set community 0:32016 ip community-list standard 2_10_202 permit 65000:2 0:10 0:202 ip community-list standard 2_20_101 permit 65000:2 0:20 0:101 route-map calculator permit 2276 match community 2_10_202 2_20_101 set community 0:2020 ip community-list standard 2_165_251 permit 65000:2 0:165 0:251 route-map calculator permit 2277 match community 2_165_251 set community 0:41415 ip community-list standard 2_55_97 permit 65000:2 0:55 0:97 route-map calculator permit 2278 match community 2_55_97 set community 0:5335 ip community-list standard 2_74_252 permit 65000:2 0:74 0:252 ip community-list standard 2_84_222 permit 65000:2 0:84 0:222 ip community-list standard 2_111_168 permit 65000:2 0:111 0:168 ip community-list standard 2_126_148 permit 65000:2 0:126 0:148 route-map calculator permit 2279 match community 2_74_252 2_84_222 2_111_168 2_126_148 set community 0:18648 ip community-list standard 2_188_252 permit 65000:2 0:188 0:252 route-map calculator permit 2280 match community 2_188_252 set community 0:47376 ip community-list standard 2_185_251 permit 65000:2 0:185 0:251 route-map calculator permit 2281 match community 2_185_251 set community 0:46435 ip community-list standard 2_30_251 permit 65000:2 0:30 0:251 route-map calculator permit 2282 match community 2_30_251 set community 0:7530 ip community-list standard 2_31_255 permit 65000:2 0:31 0:255 ip community-list standard 2_51_155 permit 65000:2 0:51 0:155 ip community-list standard 2_85_93 permit 65000:2 0:85 0:93 route-map calculator permit 2283 match community 2_31_255 2_51_155 2_85_93 set community 0:7905 ip community-list standard 2_227_233 permit 65000:2 0:227 0:233 route-map calculator permit 2284 match community 2_227_233 set community 0:52891 ip community-list standard 2_27_203 permit 65000:2 0:27 0:203 ip community-list standard 2_29_189 permit 65000:2 0:29 0:189 ip community-list standard 2_63_87 permit 65000:2 0:63 0:87 route-map calculator permit 2285 match community 2_27_203 2_29_189 2_63_87 set community 0:5481 ip community-list standard 2_18_234 permit 65000:2 0:18 0:234 ip community-list standard 2_26_162 permit 65000:2 0:26 0:162 ip community-list standard 2_27_156 permit 65000:2 0:27 0:156 ip community-list standard 2_36_117 permit 65000:2 0:36 0:117 ip community-list standard 2_39_108 permit 65000:2 0:39 0:108 ip community-list standard 2_52_81 permit 65000:2 0:52 0:81 ip community-list standard 2_54_78 permit 65000:2 0:54 0:78 route-map calculator permit 2286 match community 2_18_234 2_26_162 2_27_156 2_36_117 2_39_108 set community 0:4212 route-map calculator permit 2287 match community 2_52_81 2_54_78 set community 0:4212 ip community-list standard 2_3_147 permit 65000:2 0:3 0:147 ip community-list standard 2_7_63 permit 65000:2 0:7 0:63 ip community-list standard 2_9_49 permit 65000:2 0:9 0:49 ip community-list standard 2_21_21 permit 65000:2 0:21 0:21 ip community-list standard 1_185_256 permit 65000:1 0:185 0:256 ip community-list standard 1_186_255 permit 65000:1 0:186 0:255 ip community-list standard 1_187_254 permit 65000:1 0:187 0:254 ip community-list standard 1_188_253 permit 65000:1 0:188 0:253 ip community-list standard 1_189_252 permit 65000:1 0:189 0:252 ip community-list standard 1_190_251 permit 65000:1 0:190 0:251 ip community-list standard 1_191_250 permit 65000:1 0:191 0:250 ip community-list standard 1_192_249 permit 65000:1 0:192 0:249 ip community-list standard 1_193_248 permit 65000:1 0:193 0:248 ip community-list standard 1_194_247 permit 65000:1 0:194 0:247 ip community-list standard 1_195_246 permit 65000:1 0:195 0:246 ip community-list standard 1_196_245 permit 65000:1 0:196 0:245 ip community-list standard 1_197_244 permit 65000:1 0:197 0:244 ip community-list standard 1_198_243 permit 65000:1 0:198 0:243 ip community-list standard 1_199_242 permit 65000:1 0:199 0:242 ip community-list standard 1_200_241 permit 65000:1 0:200 0:241 ip community-list standard 1_201_240 permit 65000:1 0:201 0:240 ip community-list standard 1_202_239 permit 65000:1 0:202 0:239 ip community-list standard 1_203_238 permit 65000:1 0:203 0:238 ip community-list standard 1_204_237 permit 65000:1 0:204 0:237 ip community-list standard 1_205_236 permit 65000:1 0:205 0:236 ip community-list standard 1_206_235 permit 65000:1 0:206 0:235 ip community-list standard 1_207_234 permit 65000:1 0:207 0:234 ip community-list standard 1_208_233 permit 65000:1 0:208 0:233 ip community-list standard 1_209_232 permit 65000:1 0:209 0:232 ip community-list standard 1_210_231 permit 65000:1 0:210 0:231 ip community-list standard 1_211_230 permit 65000:1 0:211 0:230 ip community-list standard 1_212_229 permit 65000:1 0:212 0:229 ip community-list standard 1_213_228 permit 65000:1 0:213 0:228 ip community-list standard 1_214_227 permit 65000:1 0:214 0:227 ip community-list standard 1_215_226 permit 65000:1 0:215 0:226 ip community-list standard 1_216_225 permit 65000:1 0:216 0:225 ip community-list standard 1_217_224 permit 65000:1 0:217 0:224 ip community-list standard 1_218_223 permit 65000:1 0:218 0:223 ip community-list standard 1_219_222 permit 65000:1 0:219 0:222 ip community-list standard 1_220_221 permit 65000:1 0:220 0:221 route-map calculator permit 2288 match community 2_3_147 2_7_63 2_9_49 2_21_21 1_185_256 set community 0:441 route-map calculator permit 2289 match community 1_186_255 1_187_254 1_188_253 1_189_252 1_190_251 set community 0:441 route-map calculator permit 2290 match community 1_191_250 1_192_249 1_193_248 1_194_247 1_195_246 set community 0:441 route-map calculator permit 2291 match community 1_196_245 1_197_244 1_198_243 1_199_242 1_200_241 set community 0:441 route-map calculator permit 2292 match community 1_201_240 1_202_239 1_203_238 1_204_237 1_205_236 set community 0:441 route-map calculator permit 2293 match community 1_206_235 1_207_234 1_208_233 1_209_232 1_210_231 set community 0:441 route-map calculator permit 2294 match community 1_211_230 1_212_229 1_213_228 1_214_227 1_215_226 set community 0:441 route-map calculator permit 2295 match community 1_216_225 1_217_224 1_218_223 1_219_222 1_220_221 set community 0:441 ip community-list standard 2_145_155 permit 65000:2 0:145 0:155 route-map calculator permit 2296 match community 2_145_155 set community 0:22475 ip community-list standard 2_10_217 permit 65000:2 0:10 0:217 ip community-list standard 2_14_155 permit 65000:2 0:14 0:155 ip community-list standard 2_31_70 permit 65000:2 0:31 0:70 ip community-list standard 2_35_62 permit 65000:2 0:35 0:62 route-map calculator permit 2297 match community 2_10_217 2_14_155 2_31_70 2_35_62 set community 0:2170 ip community-list standard 2_12_243 permit 65000:2 0:12 0:243 ip community-list standard 2_18_162 permit 65000:2 0:18 0:162 ip community-list standard 2_27_108 permit 65000:2 0:27 0:108 ip community-list standard 2_36_81 permit 65000:2 0:36 0:81 ip community-list standard 2_54_54 permit 65000:2 0:54 0:54 route-map calculator permit 2298 match community 2_12_243 2_18_162 2_27_108 2_36_81 2_54_54 set community 0:2916 ip community-list standard 2_122_133 permit 65000:2 0:122 0:133 route-map calculator permit 2299 match community 2_122_133 set community 0:16226 ip community-list standard 2_78_220 permit 65000:2 0:78 0:220 ip community-list standard 2_88_195 permit 65000:2 0:88 0:195 ip community-list standard 2_104_165 permit 65000:2 0:104 0:165 ip community-list standard 2_110_156 permit 65000:2 0:110 0:156 ip community-list standard 2_120_143 permit 65000:2 0:120 0:143 ip community-list standard 2_130_132 permit 65000:2 0:130 0:132 route-map calculator permit 2300 match community 2_78_220 2_88_195 2_104_165 2_110_156 2_120_143 set community 0:17160 route-map calculator permit 2301 match community 2_130_132 set community 0:17160 ip community-list standard 2_227_249 permit 65000:2 0:227 0:249 route-map calculator permit 2302 match community 2_227_249 set community 0:56523 ip community-list standard 2_201_227 permit 65000:2 0:201 0:227 route-map calculator permit 2303 match community 2_201_227 set community 0:45627 ip community-list standard 2_178_215 permit 65000:2 0:178 0:215 route-map calculator permit 2304 match community 2_178_215 set community 0:38270 ip community-list standard 2_138_241 permit 65000:2 0:138 0:241 route-map calculator permit 2305 match community 2_138_241 set community 0:33258 ip community-list standard 2_107_255 permit 65000:2 0:107 0:255 route-map calculator permit 2306 match community 2_107_255 set community 0:27285 ip community-list standard 2_182_197 permit 65000:2 0:182 0:197 route-map calculator permit 2307 match community 2_182_197 set community 0:35854 ip community-list standard 2_104_249 permit 65000:2 0:104 0:249 ip community-list standard 2_156_166 permit 65000:2 0:156 0:166 route-map calculator permit 2308 match community 2_104_249 2_156_166 set community 0:25896 ip community-list standard 2_49_67 permit 65000:2 0:49 0:67 route-map calculator permit 2309 match community 2_49_67 set community 0:3283 ip community-list standard 2_241_243 permit 65000:2 0:241 0:243 route-map calculator permit 2310 match community 2_241_243 set community 0:58563 ip community-list standard 2_94_233 permit 65000:2 0:94 0:233 route-map calculator permit 2311 match community 2_94_233 set community 0:21902 ip community-list standard 2_16_241 permit 65000:2 0:16 0:241 route-map calculator permit 2312 match community 2_16_241 set community 0:3856 ip community-list standard 2_100_206 permit 65000:2 0:100 0:206 ip community-list standard 2_103_200 permit 65000:2 0:103 0:200 route-map calculator permit 2313 match community 2_100_206 2_103_200 set community 0:20600 ip community-list standard 2_46_201 permit 65000:2 0:46 0:201 ip community-list standard 2_67_138 permit 65000:2 0:67 0:138 ip community-list standard 2_69_134 permit 65000:2 0:69 0:134 route-map calculator permit 2314 match community 2_46_201 2_67_138 2_69_134 set community 0:9246 ip community-list standard 2_60_227 permit 65000:2 0:60 0:227 route-map calculator permit 2315 match community 2_60_227 set community 0:13620 ip community-list standard 2_75_151 permit 65000:2 0:75 0:151 route-map calculator permit 2316 match community 2_75_151 set community 0:11325 ip community-list standard 2_91_129 permit 65000:2 0:91 0:129 route-map calculator permit 2317 match community 2_91_129 set community 0:11739 ip community-list standard 2_20_191 permit 65000:2 0:20 0:191 route-map calculator permit 2318 match community 2_20_191 set community 0:3820 ip community-list standard 2_136_227 permit 65000:2 0:136 0:227 route-map calculator permit 2319 match community 2_136_227 set community 0:30872 ip community-list standard 2_222_222 permit 65000:2 0:222 0:222 route-map calculator permit 2320 match community 2_222_222 set community 0:49284 ip community-list standard 2_103_206 permit 65000:2 0:103 0:206 route-map calculator permit 2321 match community 2_103_206 set community 0:21218 ip community-list standard 2_13_229 permit 65000:2 0:13 0:229 route-map calculator permit 2322 match community 2_13_229 set community 0:2977 ip community-list standard 2_122_143 permit 65000:2 0:122 0:143 route-map calculator permit 2323 match community 2_122_143 set community 0:17446 ip community-list standard 2_19_74 permit 65000:2 0:19 0:74 ip community-list standard 2_37_38 permit 65000:2 0:37 0:38 route-map calculator permit 2324 match community 2_19_74 2_37_38 set community 0:1406 ip community-list standard 2_31_242 permit 65000:2 0:31 0:242 ip community-list standard 2_62_121 permit 65000:2 0:62 0:121 route-map calculator permit 2325 match community 2_31_242 2_62_121 set community 0:7502 ip community-list standard 2_53_228 permit 65000:2 0:53 0:228 ip community-list standard 2_57_212 permit 65000:2 0:57 0:212 ip community-list standard 2_76_159 permit 65000:2 0:76 0:159 ip community-list standard 2_106_114 permit 65000:2 0:106 0:114 route-map calculator permit 2326 match community 2_53_228 2_57_212 2_76_159 2_106_114 set community 0:12084 ip community-list standard 2_70_139 permit 65000:2 0:70 0:139 route-map calculator permit 2327 match community 2_70_139 set community 0:9730 ip community-list standard 2_112_242 permit 65000:2 0:112 0:242 ip community-list standard 2_121_224 permit 65000:2 0:121 0:224 ip community-list standard 2_154_176 permit 65000:2 0:154 0:176 route-map calculator permit 2328 match community 2_112_242 2_121_224 2_154_176 set community 0:27104 ip community-list standard 2_51_173 permit 65000:2 0:51 0:173 route-map calculator permit 2329 match community 2_51_173 set community 0:8823 ip community-list standard 2_179_201 permit 65000:2 0:179 0:201 route-map calculator permit 2330 match community 2_179_201 set community 0:35979 ip community-list standard 2_17_43 permit 65000:2 0:17 0:43 route-map calculator permit 2331 match community 2_17_43 set community 0:731 ip community-list standard 2_14_222 permit 65000:2 0:14 0:222 ip community-list standard 2_21_148 permit 65000:2 0:21 0:148 ip community-list standard 2_28_111 permit 65000:2 0:28 0:111 ip community-list standard 2_37_84 permit 65000:2 0:37 0:84 ip community-list standard 2_42_74 permit 65000:2 0:42 0:74 route-map calculator permit 2332 match community 2_14_222 2_21_148 2_28_111 2_37_84 2_42_74 set community 0:3108 ip community-list standard 2_184_237 permit 65000:2 0:184 0:237 route-map calculator permit 2333 match community 2_184_237 set community 0:43608 ip community-list standard 2_151_216 permit 65000:2 0:151 0:216 route-map calculator permit 2334 match community 2_151_216 set community 0:32616 ip community-list standard 2_13_103 permit 65000:2 0:13 0:103 route-map calculator permit 2335 match community 2_13_103 set community 0:1339 ip community-list standard 2_58_229 permit 65000:2 0:58 0:229 route-map calculator permit 2336 match community 2_58_229 set community 0:13282 ip community-list standard 2_42_255 permit 65000:2 0:42 0:255 ip community-list standard 2_45_238 permit 65000:2 0:45 0:238 ip community-list standard 2_51_210 permit 65000:2 0:51 0:210 ip community-list standard 2_63_170 permit 65000:2 0:63 0:170 ip community-list standard 2_70_153 permit 65000:2 0:70 0:153 ip community-list standard 2_85_126 permit 65000:2 0:85 0:126 ip community-list standard 2_90_119 permit 65000:2 0:90 0:119 ip community-list standard 2_102_105 permit 65000:2 0:102 0:105 route-map calculator permit 2337 match community 2_42_255 2_45_238 2_51_210 2_63_170 2_70_153 set community 0:10710 route-map calculator permit 2338 match community 2_85_126 2_90_119 2_102_105 set community 0:10710 ip community-list standard 2_62_229 permit 65000:2 0:62 0:229 route-map calculator permit 2339 match community 2_62_229 set community 0:14198 ip community-list standard 2_46_223 permit 65000:2 0:46 0:223 route-map calculator permit 2340 match community 2_46_223 set community 0:10258 ip community-list standard 2_191_239 permit 65000:2 0:191 0:239 route-map calculator permit 2341 match community 2_191_239 set community 0:45649 ip community-list standard 2_190_199 permit 65000:2 0:190 0:199 route-map calculator permit 2342 match community 2_190_199 set community 0:37810 ip community-list standard 2_148_250 permit 65000:2 0:148 0:250 ip community-list standard 2_185_200 permit 65000:2 0:185 0:200 route-map calculator permit 2343 match community 2_148_250 2_185_200 set community 0:37000 ip community-list standard 2_214_254 permit 65000:2 0:214 0:254 route-map calculator permit 2344 match community 2_214_254 set community 0:54356 ip community-list standard 2_45_236 permit 65000:2 0:45 0:236 ip community-list standard 2_59_180 permit 65000:2 0:59 0:180 ip community-list standard 2_60_177 permit 65000:2 0:60 0:177 ip community-list standard 2_90_118 permit 65000:2 0:90 0:118 route-map calculator permit 2345 match community 2_45_236 2_59_180 2_60_177 2_90_118 set community 0:10620 ip community-list standard 2_200_241 permit 65000:2 0:200 0:241 route-map calculator permit 2346 match community 2_200_241 set community 0:48200 ip community-list standard 2_43_61 permit 65000:2 0:43 0:61 route-map calculator permit 2347 match community 2_43_61 set community 0:2623 ip community-list standard 2_149_192 permit 65000:2 0:149 0:192 route-map calculator permit 2348 match community 2_149_192 set community 0:28608 ip community-list standard 2_110_235 permit 65000:2 0:110 0:235 route-map calculator permit 2349 match community 2_110_235 set community 0:25850 ip community-list standard 2_223_239 permit 65000:2 0:223 0:239 route-map calculator permit 2350 match community 2_223_239 set community 0:53297 ip community-list standard 2_164_205 permit 65000:2 0:164 0:205 route-map calculator permit 2351 match community 2_164_205 set community 0:33620 ip community-list standard 2_193_202 permit 65000:2 0:193 0:202 route-map calculator permit 2352 match community 2_193_202 set community 0:38986 ip community-list standard 2_200_219 permit 65000:2 0:200 0:219 route-map calculator permit 2353 match community 2_200_219 set community 0:43800 ip community-list standard 2_147_223 permit 65000:2 0:147 0:223 route-map calculator permit 2354 match community 2_147_223 set community 0:32781 ip community-list standard 2_43_98 permit 65000:2 0:43 0:98 ip community-list standard 2_49_86 permit 65000:2 0:49 0:86 route-map calculator permit 2355 match community 2_43_98 2_49_86 set community 0:4214 ip community-list standard 2_70_232 permit 65000:2 0:70 0:232 ip community-list standard 2_80_203 permit 65000:2 0:80 0:203 ip community-list standard 2_112_145 permit 65000:2 0:112 0:145 ip community-list standard 2_116_140 permit 65000:2 0:116 0:140 route-map calculator permit 2356 match community 2_70_232 2_80_203 2_112_145 2_116_140 set community 0:16240 ip community-list standard 2_29_113 permit 65000:2 0:29 0:113 route-map calculator permit 2357 match community 2_29_113 set community 0:3277 ip community-list standard 2_142_253 permit 65000:2 0:142 0:253 route-map calculator permit 2358 match community 2_142_253 set community 0:35926 ip community-list standard 2_143_173 permit 65000:2 0:143 0:173 route-map calculator permit 2359 match community 2_143_173 set community 0:24739 ip community-list standard 2_87_229 permit 65000:2 0:87 0:229 route-map calculator permit 2360 match community 2_87_229 set community 0:19923 ip community-list standard 2_165_223 permit 65000:2 0:165 0:223 route-map calculator permit 2361 match community 2_165_223 set community 0:36795 ip community-list standard 2_133_173 permit 65000:2 0:133 0:173 route-map calculator permit 2362 match community 2_133_173 set community 0:23009 ip community-list standard 2_194_198 permit 65000:2 0:194 0:198 route-map calculator permit 2363 match community 2_194_198 set community 0:38412 ip community-list standard 2_198_234 permit 65000:2 0:198 0:234 route-map calculator permit 2364 match community 2_198_234 set community 0:46332 ip community-list standard 2_172_233 permit 65000:2 0:172 0:233 route-map calculator permit 2365 match community 2_172_233 set community 0:40076 ip community-list standard 2_196_203 permit 65000:2 0:196 0:203 route-map calculator permit 2366 match community 2_196_203 set community 0:39788 ip community-list standard 2_6_242 permit 65000:2 0:6 0:242 ip community-list standard 2_11_132 permit 65000:2 0:11 0:132 ip community-list standard 2_12_121 permit 65000:2 0:12 0:121 ip community-list standard 2_22_66 permit 65000:2 0:22 0:66 ip community-list standard 2_33_44 permit 65000:2 0:33 0:44 route-map calculator permit 2367 match community 2_6_242 2_11_132 2_12_121 2_22_66 2_33_44 set community 0:1452 ip community-list standard 2_57_214 permit 65000:2 0:57 0:214 ip community-list standard 2_107_114 permit 65000:2 0:107 0:114 route-map calculator permit 2368 match community 2_57_214 2_107_114 set community 0:12198 ip community-list standard 2_15_203 permit 65000:2 0:15 0:203 ip community-list standard 2_21_145 permit 65000:2 0:21 0:145 ip community-list standard 2_29_105 permit 65000:2 0:29 0:105 ip community-list standard 2_35_87 permit 65000:2 0:35 0:87 route-map calculator permit 2369 match community 2_15_203 2_21_145 2_29_105 2_35_87 set community 0:3045 ip community-list standard 2_69_197 permit 65000:2 0:69 0:197 route-map calculator permit 2370 match community 2_69_197 set community 0:13593 ip community-list standard 2_53_167 permit 65000:2 0:53 0:167 route-map calculator permit 2371 match community 2_53_167 set community 0:8851 ip community-list standard 2_129_224 permit 65000:2 0:129 0:224 ip community-list standard 2_168_172 permit 65000:2 0:168 0:172 route-map calculator permit 2372 match community 2_129_224 2_168_172 set community 0:28896 ip community-list standard 2_177_238 permit 65000:2 0:177 0:238 route-map calculator permit 2373 match community 2_177_238 set community 0:42126 ip community-list standard 2_66_254 permit 65000:2 0:66 0:254 ip community-list standard 2_127_132 permit 65000:2 0:127 0:132 route-map calculator permit 2374 match community 2_66_254 2_127_132 set community 0:16764 ip community-list standard 2_19_194 permit 65000:2 0:19 0:194 ip community-list standard 2_38_97 permit 65000:2 0:38 0:97 route-map calculator permit 2375 match community 2_19_194 2_38_97 set community 0:3686 ip community-list standard 2_51_149 permit 65000:2 0:51 0:149 route-map calculator permit 2376 match community 2_51_149 set community 0:7599 ip community-list standard 2_219_255 permit 65000:2 0:219 0:255 route-map calculator permit 2377 match community 2_219_255 set community 0:55845 ip community-list standard 2_23_131 permit 65000:2 0:23 0:131 route-map calculator permit 2378 match community 2_23_131 set community 0:3013 ip community-list standard 2_216_243 permit 65000:2 0:216 0:243 route-map calculator permit 2379 match community 2_216_243 set community 0:52488 ip community-list standard 2_83_248 permit 65000:2 0:83 0:248 ip community-list standard 2_124_166 permit 65000:2 0:124 0:166 route-map calculator permit 2380 match community 2_83_248 2_124_166 set community 0:20584 ip community-list standard 2_69_228 permit 65000:2 0:69 0:228 ip community-list standard 2_76_207 permit 65000:2 0:76 0:207 ip community-list standard 2_92_171 permit 65000:2 0:92 0:171 ip community-list standard 2_114_138 permit 65000:2 0:114 0:138 route-map calculator permit 2381 match community 2_69_228 2_76_207 2_92_171 2_114_138 set community 0:15732 ip community-list standard 2_140_167 permit 65000:2 0:140 0:167 route-map calculator permit 2382 match community 2_140_167 set community 0:23380 ip community-list standard 2_174_181 permit 65000:2 0:174 0:181 route-map calculator permit 2383 match community 2_174_181 set community 0:31494 ip community-list standard 2_130_255 permit 65000:2 0:130 0:255 ip community-list standard 2_150_221 permit 65000:2 0:150 0:221 ip community-list standard 2_170_195 permit 65000:2 0:170 0:195 route-map calculator permit 2384 match community 2_130_255 2_150_221 2_170_195 set community 0:33150 ip community-list standard 2_37_223 permit 65000:2 0:37 0:223 route-map calculator permit 2385 match community 2_37_223 set community 0:8251 ip community-list standard 2_148_188 permit 65000:2 0:148 0:188 route-map calculator permit 2386 match community 2_148_188 set community 0:27824 ip community-list standard 2_67_173 permit 65000:2 0:67 0:173 route-map calculator permit 2387 match community 2_67_173 set community 0:11591 ip community-list standard 2_151_248 permit 65000:2 0:151 0:248 route-map calculator permit 2388 match community 2_151_248 set community 0:37448 ip community-list standard 2_207_253 permit 65000:2 0:207 0:253 route-map calculator permit 2389 match community 2_207_253 set community 0:52371 ip community-list standard 2_127_197 permit 65000:2 0:127 0:197 route-map calculator permit 2390 match community 2_127_197 set community 0:25019 ip community-list standard 2_45_254 permit 65000:2 0:45 0:254 ip community-list standard 2_90_127 permit 65000:2 0:90 0:127 route-map calculator permit 2391 match community 2_45_254 2_90_127 set community 0:11430 ip community-list standard 2_186_254 permit 65000:2 0:186 0:254 route-map calculator permit 2392 match community 2_186_254 set community 0:47244 ip community-list standard 2_163_178 permit 65000:2 0:163 0:178 route-map calculator permit 2393 match community 2_163_178 set community 0:29014 ip community-list standard 2_47_177 permit 65000:2 0:47 0:177 ip community-list standard 2_59_141 permit 65000:2 0:59 0:141 route-map calculator permit 2394 match community 2_47_177 2_59_141 set community 0:8319 ip community-list standard 2_38_164 permit 65000:2 0:38 0:164 ip community-list standard 2_41_152 permit 65000:2 0:41 0:152 ip community-list standard 2_76_82 permit 65000:2 0:76 0:82 route-map calculator permit 2395 match community 2_38_164 2_41_152 2_76_82 set community 0:6232 ip community-list standard 2_46_177 permit 65000:2 0:46 0:177 ip community-list standard 2_59_138 permit 65000:2 0:59 0:138 ip community-list standard 2_69_118 permit 65000:2 0:69 0:118 route-map calculator permit 2396 match community 2_46_177 2_59_138 2_69_118 set community 0:8142 ip community-list standard 2_117_249 permit 65000:2 0:117 0:249 route-map calculator permit 2397 match community 2_117_249 set community 0:29133 ip community-list standard 2_175_235 permit 65000:2 0:175 0:235 route-map calculator permit 2398 match community 2_175_235 set community 0:41125 ip community-list standard 1_1_143 permit 65000:1 0:1 0:143 ip community-list standard 2_1_144 permit 65000:2 0:1 0:144 ip community-list standard 2_2_72 permit 65000:2 0:2 0:72 ip community-list standard 1_2_142 permit 65000:1 0:2 0:142 ip community-list standard 2_3_48 permit 65000:2 0:3 0:48 ip community-list standard 1_3_141 permit 65000:1 0:3 0:141 ip community-list standard 2_4_36 permit 65000:2 0:4 0:36 ip community-list standard 1_4_140 permit 65000:1 0:4 0:140 ip community-list standard 1_5_139 permit 65000:1 0:5 0:139 ip community-list standard 2_6_24 permit 65000:2 0:6 0:24 ip community-list standard 1_6_138 permit 65000:1 0:6 0:138 ip community-list standard 1_7_137 permit 65000:1 0:7 0:137 ip community-list standard 2_8_18 permit 65000:2 0:8 0:18 ip community-list standard 1_8_136 permit 65000:1 0:8 0:136 ip community-list standard 2_9_16 permit 65000:2 0:9 0:16 ip community-list standard 1_9_135 permit 65000:1 0:9 0:135 ip community-list standard 1_10_134 permit 65000:1 0:10 0:134 ip community-list standard 1_11_133 permit 65000:1 0:11 0:133 ip community-list standard 2_12_12 permit 65000:2 0:12 0:12 ip community-list standard 1_12_132 permit 65000:1 0:12 0:132 ip community-list standard 1_13_131 permit 65000:1 0:13 0:131 ip community-list standard 1_14_130 permit 65000:1 0:14 0:130 ip community-list standard 1_15_129 permit 65000:1 0:15 0:129 ip community-list standard 1_16_128 permit 65000:1 0:16 0:128 ip community-list standard 1_17_127 permit 65000:1 0:17 0:127 ip community-list standard 1_18_126 permit 65000:1 0:18 0:126 ip community-list standard 1_19_125 permit 65000:1 0:19 0:125 ip community-list standard 1_20_124 permit 65000:1 0:20 0:124 ip community-list standard 1_21_123 permit 65000:1 0:21 0:123 ip community-list standard 1_22_122 permit 65000:1 0:22 0:122 ip community-list standard 1_23_121 permit 65000:1 0:23 0:121 ip community-list standard 1_24_120 permit 65000:1 0:24 0:120 ip community-list standard 1_25_119 permit 65000:1 0:25 0:119 ip community-list standard 1_26_118 permit 65000:1 0:26 0:118 ip community-list standard 1_27_117 permit 65000:1 0:27 0:117 ip community-list standard 1_28_116 permit 65000:1 0:28 0:116 ip community-list standard 1_29_115 permit 65000:1 0:29 0:115 ip community-list standard 1_30_114 permit 65000:1 0:30 0:114 ip community-list standard 1_31_113 permit 65000:1 0:31 0:113 ip community-list standard 1_32_112 permit 65000:1 0:32 0:112 ip community-list standard 1_33_111 permit 65000:1 0:33 0:111 ip community-list standard 1_34_110 permit 65000:1 0:34 0:110 ip community-list standard 1_35_109 permit 65000:1 0:35 0:109 ip community-list standard 1_36_108 permit 65000:1 0:36 0:108 ip community-list standard 1_37_107 permit 65000:1 0:37 0:107 ip community-list standard 1_38_106 permit 65000:1 0:38 0:106 ip community-list standard 1_39_105 permit 65000:1 0:39 0:105 ip community-list standard 1_40_104 permit 65000:1 0:40 0:104 ip community-list standard 1_41_103 permit 65000:1 0:41 0:103 ip community-list standard 1_42_102 permit 65000:1 0:42 0:102 ip community-list standard 1_43_101 permit 65000:1 0:43 0:101 ip community-list standard 1_44_100 permit 65000:1 0:44 0:100 ip community-list standard 1_45_99 permit 65000:1 0:45 0:99 ip community-list standard 1_46_98 permit 65000:1 0:46 0:98 ip community-list standard 1_47_97 permit 65000:1 0:47 0:97 ip community-list standard 1_48_96 permit 65000:1 0:48 0:96 ip community-list standard 1_49_95 permit 65000:1 0:49 0:95 ip community-list standard 1_50_94 permit 65000:1 0:50 0:94 ip community-list standard 1_51_93 permit 65000:1 0:51 0:93 ip community-list standard 1_52_92 permit 65000:1 0:52 0:92 ip community-list standard 1_53_91 permit 65000:1 0:53 0:91 ip community-list standard 1_54_90 permit 65000:1 0:54 0:90 ip community-list standard 1_55_89 permit 65000:1 0:55 0:89 ip community-list standard 1_56_88 permit 65000:1 0:56 0:88 ip community-list standard 1_57_87 permit 65000:1 0:57 0:87 ip community-list standard 1_58_86 permit 65000:1 0:58 0:86 ip community-list standard 1_59_85 permit 65000:1 0:59 0:85 ip community-list standard 1_60_84 permit 65000:1 0:60 0:84 ip community-list standard 1_61_83 permit 65000:1 0:61 0:83 ip community-list standard 1_62_82 permit 65000:1 0:62 0:82 ip community-list standard 1_63_81 permit 65000:1 0:63 0:81 ip community-list standard 1_64_80 permit 65000:1 0:64 0:80 ip community-list standard 1_65_79 permit 65000:1 0:65 0:79 ip community-list standard 1_66_78 permit 65000:1 0:66 0:78 ip community-list standard 1_67_77 permit 65000:1 0:67 0:77 ip community-list standard 1_68_76 permit 65000:1 0:68 0:76 ip community-list standard 1_69_75 permit 65000:1 0:69 0:75 ip community-list standard 1_70_74 permit 65000:1 0:70 0:74 ip community-list standard 1_71_73 permit 65000:1 0:71 0:73 ip community-list standard 1_72_72 permit 65000:1 0:72 0:72 ip community-list expanded c144 permit 1 ^65000:4_0:144_0:1$ ip community-list expanded c144 permit 2 ^65000:3_0:145_0:1$ ip community-list expanded c144 permit 3 ^65000:3_0:146_0:2$ ip community-list expanded c144 permit 4 ^65000:3_0:147_0:3$ ip community-list expanded c144 permit 5 ^65000:3_0:148_0:4$ ip community-list expanded c144 permit 6 ^65000:3_0:149_0:5$ ip community-list expanded c144 permit 7 ^65000:3_0:150_0:6$ ip community-list expanded c144 permit 8 ^65000:3_0:151_0:7$ ip community-list expanded c144 permit 9 ^65000:3_0:152_0:8$ ip community-list expanded c144 permit 10 ^65000:3_0:153_0:9$ ip community-list expanded c144 permit 11 ^65000:3_0:154_0:10$ ip community-list expanded c144 permit 12 ^65000:3_0:155_0:11$ ip community-list expanded c144 permit 13 ^65000:3_0:156_0:12$ ip community-list expanded c144 permit 14 ^65000:3_0:157_0:13$ ip community-list expanded c144 permit 15 ^65000:3_0:158_0:14$ ip community-list expanded c144 permit 16 ^65000:3_0:159_0:15$ ip community-list expanded c144 permit 17 ^65000:3_0:160_0:16$ ip community-list expanded c144 permit 18 ^65000:3_0:161_0:17$ ip community-list expanded c144 permit 19 ^65000:3_0:162_0:18$ ip community-list expanded c144 permit 20 ^65000:3_0:163_0:19$ ip community-list expanded c144 permit 21 ^65000:3_0:164_0:20$ ip community-list expanded c144 permit 22 ^65000:3_0:165_0:21$ ip community-list expanded c144 permit 23 ^65000:3_0:166_0:22$ ip community-list expanded c144 permit 24 ^65000:3_0:167_0:23$ ip community-list expanded c144 permit 25 ^65000:3_0:168_0:24$ ip community-list expanded c144 permit 26 ^65000:3_0:169_0:25$ ip community-list expanded c144 permit 27 ^65000:3_0:170_0:26$ ip community-list expanded c144 permit 28 ^65000:3_0:171_0:27$ ip community-list expanded c144 permit 29 ^65000:3_0:172_0:28$ ip community-list expanded c144 permit 30 ^65000:3_0:173_0:29$ ip community-list expanded c144 permit 31 ^65000:3_0:174_0:30$ ip community-list expanded c144 permit 32 ^65000:3_0:175_0:31$ ip community-list expanded c144 permit 33 ^65000:3_0:176_0:32$ ip community-list expanded c144 permit 34 ^65000:3_0:177_0:33$ ip community-list expanded c144 permit 35 ^65000:3_0:178_0:34$ ip community-list expanded c144 permit 36 ^65000:3_0:179_0:35$ ip community-list expanded c144 permit 37 ^65000:3_0:180_0:36$ ip community-list expanded c144 permit 38 ^65000:3_0:181_0:37$ ip community-list expanded c144 permit 39 ^65000:3_0:182_0:38$ ip community-list expanded c144 permit 40 ^65000:3_0:183_0:39$ ip community-list expanded c144 permit 41 ^65000:3_0:184_0:40$ ip community-list expanded c144 permit 42 ^65000:3_0:185_0:41$ ip community-list expanded c144 permit 43 ^65000:3_0:186_0:42$ ip community-list expanded c144 permit 44 ^65000:3_0:187_0:43$ ip community-list expanded c144 permit 45 ^65000:3_0:188_0:44$ ip community-list expanded c144 permit 46 ^65000:3_0:189_0:45$ ip community-list expanded c144 permit 47 ^65000:3_0:190_0:46$ ip community-list expanded c144 permit 48 ^65000:3_0:191_0:47$ ip community-list expanded c144 permit 49 ^65000:3_0:192_0:48$ ip community-list expanded c144 permit 50 ^65000:3_0:193_0:49$ ip community-list expanded c144 permit 51 ^65000:3_0:194_0:50$ ip community-list expanded c144 permit 52 ^65000:3_0:195_0:51$ ip community-list expanded c144 permit 53 ^65000:3_0:196_0:52$ ip community-list expanded c144 permit 54 ^65000:3_0:197_0:53$ ip community-list expanded c144 permit 55 ^65000:3_0:198_0:54$ ip community-list expanded c144 permit 56 ^65000:3_0:199_0:55$ ip community-list expanded c144 permit 57 ^65000:3_0:200_0:56$ ip community-list expanded c144 permit 58 ^65000:3_0:201_0:57$ ip community-list expanded c144 permit 59 ^65000:3_0:202_0:58$ ip community-list expanded c144 permit 60 ^65000:3_0:203_0:59$ ip community-list expanded c144 permit 61 ^65000:3_0:204_0:60$ ip community-list expanded c144 permit 62 ^65000:3_0:205_0:61$ ip community-list expanded c144 permit 63 ^65000:3_0:206_0:62$ ip community-list expanded c144 permit 64 ^65000:3_0:207_0:63$ ip community-list expanded c144 permit 65 ^65000:3_0:208_0:64$ ip community-list expanded c144 permit 66 ^65000:3_0:209_0:65$ ip community-list expanded c144 permit 67 ^65000:3_0:210_0:66$ ip community-list expanded c144 permit 68 ^65000:3_0:211_0:67$ ip community-list expanded c144 permit 69 ^65000:3_0:212_0:68$ ip community-list expanded c144 permit 70 ^65000:3_0:213_0:69$ ip community-list expanded c144 permit 71 ^65000:3_0:214_0:70$ ip community-list expanded c144 permit 72 ^65000:3_0:215_0:71$ ip community-list expanded c144 permit 73 ^65000:3_0:216_0:72$ ip community-list expanded c144 permit 74 ^65000:3_0:217_0:73$ ip community-list expanded c144 permit 75 ^65000:3_0:218_0:74$ ip community-list expanded c144 permit 76 ^65000:3_0:219_0:75$ ip community-list expanded c144 permit 77 ^65000:3_0:220_0:76$ ip community-list expanded c144 permit 78 ^65000:3_0:221_0:77$ ip community-list expanded c144 permit 79 ^65000:3_0:222_0:78$ ip community-list expanded c144 permit 80 ^65000:3_0:223_0:79$ ip community-list expanded c144 permit 81 ^65000:3_0:224_0:80$ ip community-list expanded c144 permit 82 ^65000:3_0:225_0:81$ ip community-list expanded c144 permit 83 ^65000:3_0:226_0:82$ ip community-list expanded c144 permit 84 ^65000:3_0:227_0:83$ ip community-list expanded c144 permit 85 ^65000:3_0:228_0:84$ ip community-list expanded c144 permit 86 ^65000:3_0:229_0:85$ ip community-list expanded c144 permit 87 ^65000:3_0:230_0:86$ ip community-list expanded c144 permit 88 ^65000:3_0:231_0:87$ ip community-list expanded c144 permit 89 ^65000:3_0:232_0:88$ ip community-list expanded c144 permit 90 ^65000:3_0:233_0:89$ ip community-list expanded c144 permit 91 ^65000:3_0:234_0:90$ ip community-list expanded c144 permit 92 ^65000:3_0:235_0:91$ ip community-list expanded c144 permit 93 ^65000:3_0:236_0:92$ ip community-list expanded c144 permit 94 ^65000:3_0:237_0:93$ ip community-list expanded c144 permit 95 ^65000:3_0:238_0:94$ ip community-list expanded c144 permit 96 ^65000:3_0:239_0:95$ ip community-list expanded c144 permit 97 ^65000:3_0:240_0:96$ ip community-list expanded c144 permit 98 ^65000:3_0:241_0:97$ ip community-list expanded c144 permit 99 ^65000:3_0:242_0:98$ ip community-list expanded c144 permit 100 ^65000:3_0:243_0:99$ ip community-list expanded c144 permit 101 ^65000:3_0:244_0:100$ ip community-list expanded c144 permit 102 ^65000:3_0:245_0:101$ ip community-list expanded c144 permit 103 ^65000:3_0:246_0:102$ ip community-list expanded c144 permit 104 ^65000:3_0:247_0:103$ ip community-list expanded c144 permit 105 ^65000:3_0:248_0:104$ ip community-list expanded c144 permit 106 ^65000:3_0:249_0:105$ ip community-list expanded c144 permit 107 ^65000:3_0:250_0:106$ ip community-list expanded c144 permit 108 ^65000:3_0:251_0:107$ ip community-list expanded c144 permit 109 ^65000:3_0:252_0:108$ ip community-list expanded c144 permit 110 ^65000:3_0:253_0:109$ ip community-list expanded c144 permit 111 ^65000:3_0:254_0:110$ ip community-list expanded c144 permit 112 ^65000:3_0:255_0:111$ ip community-list expanded c144 permit 113 ^65000:3_0:256_0:112$ route-map calculator permit 2399 match community 1_1_143 2_1_144 2_2_72 1_2_142 2_3_48 set community 0:144 route-map calculator permit 2400 match community 1_3_141 2_4_36 1_4_140 1_5_139 2_6_24 set community 0:144 route-map calculator permit 2401 match community 1_6_138 1_7_137 2_8_18 1_8_136 2_9_16 set community 0:144 route-map calculator permit 2402 match community 1_9_135 1_10_134 1_11_133 2_12_12 1_12_132 set community 0:144 route-map calculator permit 2403 match community 1_13_131 1_14_130 1_15_129 1_16_128 1_17_127 set community 0:144 route-map calculator permit 2404 match community 1_18_126 1_19_125 1_20_124 1_21_123 1_22_122 set community 0:144 route-map calculator permit 2405 match community 1_23_121 1_24_120 1_25_119 1_26_118 1_27_117 set community 0:144 route-map calculator permit 2406 match community 1_28_116 1_29_115 1_30_114 1_31_113 1_32_112 set community 0:144 route-map calculator permit 2407 match community 1_33_111 1_34_110 1_35_109 1_36_108 1_37_107 set community 0:144 route-map calculator permit 2408 match community 1_38_106 1_39_105 1_40_104 1_41_103 1_42_102 set community 0:144 route-map calculator permit 2409 match community 1_43_101 1_44_100 1_45_99 1_46_98 1_47_97 set community 0:144 route-map calculator permit 2410 match community 1_48_96 1_49_95 1_50_94 1_51_93 1_52_92 set community 0:144 route-map calculator permit 2411 match community 1_53_91 1_54_90 1_55_89 1_56_88 1_57_87 set community 0:144 route-map calculator permit 2412 match community 1_58_86 1_59_85 1_60_84 1_61_83 1_62_82 set community 0:144 route-map calculator permit 2413 match community 1_63_81 1_64_80 1_65_79 1_66_78 1_67_77 set community 0:144 route-map calculator permit 2414 match community 1_68_76 1_69_75 1_70_74 1_71_73 1_72_72 set community 0:144 route-map calculator permit 2415 match community c4_144_1 c3_145_1 c3_146_2 c3_147_3 c3_148_4 set community 0:144 route-map calculator permit 2416 match community c3_149_5 c3_150_6 c3_151_7 c3_152_8 c3_153_9 set community 0:144 route-map calculator permit 2417 match community c3_154_10 c3_155_11 c3_156_12 c3_157_13 c3_158_14 set community 0:144 route-map calculator permit 2418 match community c3_159_15 c3_160_16 c3_161_17 c3_162_18 c3_163_19 set community 0:144 route-map calculator permit 2419 match community c3_164_20 c3_165_21 c3_166_22 c3_167_23 c3_168_24 set community 0:144 route-map calculator permit 2420 match community c3_169_25 c3_170_26 c3_171_27 c3_172_28 c3_173_29 set community 0:144 route-map calculator permit 2421 match community c3_174_30 c3_175_31 c3_176_32 c3_177_33 c3_178_34 set community 0:144 route-map calculator permit 2422 match community c3_179_35 c3_180_36 c3_181_37 c3_182_38 c3_183_39 set community 0:144 route-map calculator permit 2423 match community c3_184_40 c3_185_41 c3_186_42 c3_187_43 c3_188_44 set community 0:144 route-map calculator permit 2424 match community c3_189_45 c3_190_46 c3_191_47 c3_192_48 c3_193_49 set community 0:144 route-map calculator permit 2425 match community c3_194_50 c3_195_51 c3_196_52 c3_197_53 c3_198_54 set community 0:144 route-map calculator permit 2426 match community c3_199_55 c3_200_56 c3_201_57 c3_202_58 c3_203_59 set community 0:144 route-map calculator permit 2427 match community c3_204_60 c3_205_61 c3_206_62 c3_207_63 c3_208_64 set community 0:144 route-map calculator permit 2428 match community c3_209_65 c3_210_66 c3_211_67 c3_212_68 c3_213_69 set community 0:144 route-map calculator permit 2429 match community c3_214_70 c3_215_71 c3_216_72 c3_217_73 c3_218_74 set community 0:144 route-map calculator permit 2430 match community c3_219_75 c3_220_76 c3_221_77 c3_222_78 c3_223_79 set community 0:144 route-map calculator permit 2431 match community c3_224_80 c3_225_81 c3_226_82 c3_227_83 c3_228_84 set community 0:144 route-map calculator permit 2432 match community c3_229_85 c3_230_86 c3_231_87 c3_232_88 c3_233_89 set community 0:144 route-map calculator permit 2433 match community c3_234_90 c3_235_91 c3_236_92 c3_237_93 c3_238_94 set community 0:144 route-map calculator permit 2434 match community c3_239_95 c3_240_96 c3_241_97 c3_242_98 c3_243_99 set community 0:144 route-map calculator permit 2435 match community c3_244_100 c3_245_101 c3_246_102 c3_247_103 c3_248_104 set community 0:144 route-map calculator permit 2436 match community c3_249_105 c3_250_106 c3_251_107 c3_252_108 c3_253_109 set community 0:144 route-map calculator permit 2437 match community c3_254_110 c3_255_111 c3_256_112 set community 0:144 ip community-list standard 2_134_166 permit 65000:2 0:134 0:166 route-map calculator permit 2438 match community 2_134_166 set community 0:22244 ip community-list standard 2_5_171 permit 65000:2 0:5 0:171 ip community-list standard 2_9_95 permit 65000:2 0:9 0:95 ip community-list standard 2_15_57 permit 65000:2 0:15 0:57 ip community-list standard 2_19_45 permit 65000:2 0:19 0:45 route-map calculator permit 2439 match community 2_5_171 2_9_95 2_15_57 2_19_45 set community 0:855 ip community-list standard 2_103_232 permit 65000:2 0:103 0:232 ip community-list standard 2_116_206 permit 65000:2 0:116 0:206 route-map calculator permit 2440 match community 2_103_232 2_116_206 set community 0:23896 ip community-list standard 2_207_233 permit 65000:2 0:207 0:233 route-map calculator permit 2441 match community 2_207_233 set community 0:48231 ip community-list standard 2_33_252 permit 65000:2 0:33 0:252 ip community-list standard 2_36_231 permit 65000:2 0:36 0:231 ip community-list standard 2_42_198 permit 65000:2 0:42 0:198 ip community-list standard 2_44_189 permit 65000:2 0:44 0:189 ip community-list standard 2_54_154 permit 65000:2 0:54 0:154 ip community-list standard 2_63_132 permit 65000:2 0:63 0:132 ip community-list standard 2_66_126 permit 65000:2 0:66 0:126 ip community-list standard 2_77_108 permit 65000:2 0:77 0:108 ip community-list standard 2_84_99 permit 65000:2 0:84 0:99 route-map calculator permit 2442 match community 2_33_252 2_36_231 2_42_198 2_44_189 2_54_154 set community 0:8316 route-map calculator permit 2443 match community 2_63_132 2_66_126 2_77_108 2_84_99 set community 0:8316 ip community-list standard 2_206_231 permit 65000:2 0:206 0:231 route-map calculator permit 2444 match community 2_206_231 set community 0:47586 ip community-list standard 2_19_210 permit 65000:2 0:19 0:210 ip community-list standard 2_21_190 permit 65000:2 0:21 0:190 ip community-list standard 2_30_133 permit 65000:2 0:30 0:133 ip community-list standard 2_35_114 permit 65000:2 0:35 0:114 ip community-list standard 2_38_105 permit 65000:2 0:38 0:105 ip community-list standard 2_42_95 permit 65000:2 0:42 0:95 ip community-list standard 2_57_70 permit 65000:2 0:57 0:70 route-map calculator permit 2445 match community 2_19_210 2_21_190 2_30_133 2_35_114 2_38_105 set community 0:3990 route-map calculator permit 2446 match community 2_42_95 2_57_70 set community 0:3990 ip community-list standard 2_81_218 permit 65000:2 0:81 0:218 ip community-list standard 2_109_162 permit 65000:2 0:109 0:162 route-map calculator permit 2447 match community 2_81_218 2_109_162 set community 0:17658 ip community-list standard 2_229_254 permit 65000:2 0:229 0:254 route-map calculator permit 2448 match community 2_229_254 set community 0:58166 ip community-list standard 2_62_247 permit 65000:2 0:62 0:247 route-map calculator permit 2449 match community 2_62_247 set community 0:15314 ip community-list standard 2_171_248 permit 65000:2 0:171 0:248 ip community-list standard 2_186_228 permit 65000:2 0:186 0:228 route-map calculator permit 2450 match community 2_171_248 2_186_228 set community 0:42408 ip community-list standard 2_117_234 permit 65000:2 0:117 0:234 ip community-list standard 2_162_169 permit 65000:2 0:162 0:169 route-map calculator permit 2451 match community 2_117_234 2_162_169 set community 0:27378 ip community-list standard 2_21_229 permit 65000:2 0:21 0:229 route-map calculator permit 2452 match community 2_21_229 set community 0:4809 ip community-list standard 2_134_208 permit 65000:2 0:134 0:208 route-map calculator permit 2453 match community 2_134_208 set community 0:27872 ip community-list standard 2_241_253 permit 65000:2 0:241 0:253 route-map calculator permit 2454 match community 2_241_253 set community 0:60973 ip community-list standard 2_114_244 permit 65000:2 0:114 0:244 ip community-list standard 2_122_228 permit 65000:2 0:122 0:228 ip community-list standard 2_152_183 permit 65000:2 0:152 0:183 route-map calculator permit 2455 match community 2_114_244 2_122_228 2_152_183 set community 0:27816 ip community-list standard 2_70_244 permit 65000:2 0:70 0:244 ip community-list standard 2_122_140 permit 65000:2 0:122 0:140 route-map calculator permit 2456 match community 2_70_244 2_122_140 set community 0:17080 ip community-list standard 2_132_251 permit 65000:2 0:132 0:251 route-map calculator permit 2457 match community 2_132_251 set community 0:33132 ip community-list standard 2_139_230 permit 65000:2 0:139 0:230 route-map calculator permit 2458 match community 2_139_230 set community 0:31970 ip community-list standard 2_135_248 permit 65000:2 0:135 0:248 ip community-list standard 2_155_216 permit 65000:2 0:155 0:216 ip community-list standard 2_180_186 permit 65000:2 0:180 0:186 route-map calculator permit 2459 match community 2_135_248 2_155_216 2_180_186 set community 0:33480 ip community-list standard 2_71_220 permit 65000:2 0:71 0:220 ip community-list standard 2_110_142 permit 65000:2 0:110 0:142 route-map calculator permit 2460 match community 2_71_220 2_110_142 set community 0:15620 ip community-list standard 2_53_212 permit 65000:2 0:53 0:212 ip community-list standard 2_106_106 permit 65000:2 0:106 0:106 route-map calculator permit 2461 match community 2_53_212 2_106_106 set community 0:11236 ip community-list standard 2_61_179 permit 65000:2 0:61 0:179 route-map calculator permit 2462 match community 2_61_179 set community 0:10919 ip community-list standard 2_140_197 permit 65000:2 0:140 0:197 route-map calculator permit 2463 match community 2_140_197 set community 0:27580 ip community-list standard 2_27_240 permit 65000:2 0:27 0:240 ip community-list standard 2_30_216 permit 65000:2 0:30 0:216 ip community-list standard 2_36_180 permit 65000:2 0:36 0:180 ip community-list standard 2_40_162 permit 65000:2 0:40 0:162 ip community-list standard 2_45_144 permit 65000:2 0:45 0:144 ip community-list standard 2_48_135 permit 65000:2 0:48 0:135 ip community-list standard 2_54_120 permit 65000:2 0:54 0:120 ip community-list standard 2_60_108 permit 65000:2 0:60 0:108 ip community-list standard 2_72_90 permit 65000:2 0:72 0:90 ip community-list standard 2_80_81 permit 65000:2 0:80 0:81 route-map calculator permit 2464 match community 2_27_240 2_30_216 2_36_180 2_40_162 2_45_144 set community 0:6480 route-map calculator permit 2465 match community 2_48_135 2_54_120 2_60_108 2_72_90 2_80_81 set community 0:6480 ip community-list standard 2_38_227 permit 65000:2 0:38 0:227 route-map calculator permit 2466 match community 2_38_227 set community 0:8626 ip community-list standard 2_65_207 permit 65000:2 0:65 0:207 ip community-list standard 2_69_195 permit 65000:2 0:69 0:195 ip community-list standard 2_115_117 permit 65000:2 0:115 0:117 route-map calculator permit 2467 match community 2_65_207 2_69_195 2_115_117 set community 0:13455 ip community-list standard 2_9_254 permit 65000:2 0:9 0:254 ip community-list standard 2_18_127 permit 65000:2 0:18 0:127 route-map calculator permit 2468 match community 2_9_254 2_18_127 set community 0:2286 ip community-list standard 2_199_249 permit 65000:2 0:199 0:249 route-map calculator permit 2469 match community 2_199_249 set community 0:49551 ip community-list standard 2_187_252 permit 65000:2 0:187 0:252 ip community-list standard 2_198_238 permit 65000:2 0:198 0:238 ip community-list standard 2_204_231 permit 65000:2 0:204 0:231 route-map calculator permit 2470 match community 2_187_252 2_198_238 2_204_231 set community 0:47124 ip community-list standard 2_100_137 permit 65000:2 0:100 0:137 route-map calculator permit 2471 match community 2_100_137 set community 0:13700 ip community-list standard 2_30_163 permit 65000:2 0:30 0:163 route-map calculator permit 2472 match community 2_30_163 set community 0:4890 ip community-list standard 2_106_139 permit 65000:2 0:106 0:139 route-map calculator permit 2473 match community 2_106_139 set community 0:14734 ip community-list standard 2_43_208 permit 65000:2 0:43 0:208 ip community-list standard 2_52_172 permit 65000:2 0:52 0:172 ip community-list standard 2_86_104 permit 65000:2 0:86 0:104 route-map calculator permit 2474 match community 2_43_208 2_52_172 2_86_104 set community 0:8944 ip community-list standard 2_15_245 permit 65000:2 0:15 0:245 ip community-list standard 2_21_175 permit 65000:2 0:21 0:175 ip community-list standard 2_25_147 permit 65000:2 0:25 0:147 ip community-list standard 2_35_105 permit 65000:2 0:35 0:105 ip community-list standard 2_49_75 permit 65000:2 0:49 0:75 route-map calculator permit 2475 match community 2_15_245 2_21_175 2_25_147 2_35_105 2_49_75 set community 0:3675 ip community-list standard 2_146_244 permit 65000:2 0:146 0:244 route-map calculator permit 2476 match community 2_146_244 set community 0:35624 ip community-list standard 2_200_254 permit 65000:2 0:200 0:254 route-map calculator permit 2477 match community 2_200_254 set community 0:50800 ip community-list standard 2_191_201 permit 65000:2 0:191 0:201 route-map calculator permit 2478 match community 2_191_201 set community 0:38391 ip community-list standard 2_211_255 permit 65000:2 0:211 0:255 route-map calculator permit 2479 match community 2_211_255 set community 0:53805 ip community-list standard 2_8_214 permit 65000:2 0:8 0:214 ip community-list standard 2_16_107 permit 65000:2 0:16 0:107 route-map calculator permit 2480 match community 2_8_214 2_16_107 set community 0:1712 ip community-list standard 2_138_244 permit 65000:2 0:138 0:244 ip community-list standard 2_183_184 permit 65000:2 0:183 0:184 route-map calculator permit 2481 match community 2_138_244 2_183_184 set community 0:33672 ip community-list standard 2_157_231 permit 65000:2 0:157 0:231 route-map calculator permit 2482 match community 2_157_231 set community 0:36267 ip community-list standard 2_121_205 permit 65000:2 0:121 0:205 route-map calculator permit 2483 match community 2_121_205 set community 0:24805 ip community-list standard 1_1_35 permit 65000:1 0:1 0:35 ip community-list standard 2_1_36 permit 65000:2 0:1 0:36 ip community-list standard 2_2_18 permit 65000:2 0:2 0:18 ip community-list standard 1_2_34 permit 65000:1 0:2 0:34 ip community-list standard 2_3_12 permit 65000:2 0:3 0:12 ip community-list standard 1_3_33 permit 65000:1 0:3 0:33 ip community-list standard 2_4_9 permit 65000:2 0:4 0:9 ip community-list standard 1_4_32 permit 65000:1 0:4 0:32 ip community-list standard 1_5_31 permit 65000:1 0:5 0:31 ip community-list standard 2_6_6 permit 65000:2 0:6 0:6 ip community-list standard 1_6_30 permit 65000:1 0:6 0:30 ip community-list standard 1_7_29 permit 65000:1 0:7 0:29 ip community-list standard 1_8_28 permit 65000:1 0:8 0:28 ip community-list standard 1_9_27 permit 65000:1 0:9 0:27 ip community-list standard 1_10_26 permit 65000:1 0:10 0:26 ip community-list standard 1_11_25 permit 65000:1 0:11 0:25 ip community-list standard 1_12_24 permit 65000:1 0:12 0:24 ip community-list standard 1_13_23 permit 65000:1 0:13 0:23 ip community-list standard 1_14_22 permit 65000:1 0:14 0:22 ip community-list standard 1_15_21 permit 65000:1 0:15 0:21 ip community-list standard 1_16_20 permit 65000:1 0:16 0:20 ip community-list standard 1_17_19 permit 65000:1 0:17 0:19 ip community-list standard 1_18_18 permit 65000:1 0:18 0:18 ip community-list expanded c36 permit 1 ^65000:4_0:36_0:1$ ip community-list expanded c36 permit 2 ^65000:3_0:37_0:1$ ip community-list expanded c36 permit 3 ^65000:3_0:38_0:2$ ip community-list expanded c36 permit 4 ^65000:3_0:39_0:3$ ip community-list expanded c36 permit 5 ^65000:3_0:40_0:4$ ip community-list expanded c36 permit 6 ^65000:3_0:41_0:5$ ip community-list expanded c36 permit 7 ^65000:3_0:42_0:6$ ip community-list expanded c36 permit 8 ^65000:3_0:43_0:7$ ip community-list expanded c36 permit 9 ^65000:3_0:44_0:8$ ip community-list expanded c36 permit 10 ^65000:3_0:45_0:9$ ip community-list expanded c36 permit 11 ^65000:3_0:46_0:10$ ip community-list expanded c36 permit 12 ^65000:3_0:47_0:11$ ip community-list expanded c36 permit 13 ^65000:3_0:48_0:12$ ip community-list expanded c36 permit 14 ^65000:3_0:49_0:13$ ip community-list expanded c36 permit 15 ^65000:3_0:50_0:14$ ip community-list expanded c36 permit 16 ^65000:3_0:51_0:15$ ip community-list expanded c36 permit 17 ^65000:3_0:52_0:16$ ip community-list expanded c36 permit 18 ^65000:3_0:53_0:17$ ip community-list expanded c36 permit 19 ^65000:3_0:54_0:18$ ip community-list expanded c36 permit 20 ^65000:3_0:55_0:19$ ip community-list expanded c36 permit 21 ^65000:3_0:56_0:20$ ip community-list expanded c36 permit 22 ^65000:3_0:57_0:21$ ip community-list expanded c36 permit 23 ^65000:3_0:58_0:22$ ip community-list expanded c36 permit 24 ^65000:3_0:59_0:23$ ip community-list expanded c36 permit 25 ^65000:3_0:60_0:24$ ip community-list expanded c36 permit 26 ^65000:3_0:61_0:25$ ip community-list expanded c36 permit 27 ^65000:3_0:62_0:26$ ip community-list expanded c36 permit 28 ^65000:3_0:63_0:27$ ip community-list expanded c36 permit 29 ^65000:3_0:64_0:28$ ip community-list expanded c36 permit 30 ^65000:3_0:65_0:29$ ip community-list expanded c36 permit 31 ^65000:3_0:66_0:30$ ip community-list expanded c36 permit 32 ^65000:3_0:67_0:31$ ip community-list expanded c36 permit 33 ^65000:3_0:68_0:32$ ip community-list expanded c36 permit 34 ^65000:3_0:69_0:33$ ip community-list expanded c36 permit 35 ^65000:3_0:70_0:34$ ip community-list expanded c36 permit 36 ^65000:3_0:71_0:35$ ip community-list expanded c36 permit 37 ^65000:4_0:72_0:2$ ip community-list expanded c36 permit 38 ^65000:3_0:72_0:36$ ip community-list expanded c36 permit 39 ^65000:4_0:73_0:2$ ip community-list expanded c36 permit 40 ^65000:3_0:73_0:37$ ip community-list expanded c36 permit 41 ^65000:3_0:74_0:38$ ip community-list expanded c36 permit 42 ^65000:3_0:75_0:39$ ip community-list expanded c36 permit 43 ^65000:3_0:76_0:40$ ip community-list expanded c36 permit 44 ^65000:3_0:77_0:41$ ip community-list expanded c36 permit 45 ^65000:3_0:78_0:42$ ip community-list expanded c36 permit 46 ^65000:3_0:79_0:43$ ip community-list expanded c36 permit 47 ^65000:3_0:80_0:44$ ip community-list expanded c36 permit 48 ^65000:3_0:81_0:45$ ip community-list expanded c36 permit 49 ^65000:3_0:82_0:46$ ip community-list expanded c36 permit 50 ^65000:3_0:83_0:47$ ip community-list expanded c36 permit 51 ^65000:3_0:84_0:48$ ip community-list expanded c36 permit 52 ^65000:3_0:85_0:49$ ip community-list expanded c36 permit 53 ^65000:3_0:86_0:50$ ip community-list expanded c36 permit 54 ^65000:3_0:87_0:51$ ip community-list expanded c36 permit 55 ^65000:3_0:88_0:52$ ip community-list expanded c36 permit 56 ^65000:3_0:89_0:53$ ip community-list expanded c36 permit 57 ^65000:3_0:90_0:54$ ip community-list expanded c36 permit 58 ^65000:3_0:91_0:55$ ip community-list expanded c36 permit 59 ^65000:3_0:92_0:56$ ip community-list expanded c36 permit 60 ^65000:3_0:93_0:57$ ip community-list expanded c36 permit 61 ^65000:3_0:94_0:58$ ip community-list expanded c36 permit 62 ^65000:3_0:95_0:59$ ip community-list expanded c36 permit 63 ^65000:3_0:96_0:60$ ip community-list expanded c36 permit 64 ^65000:3_0:97_0:61$ ip community-list expanded c36 permit 65 ^65000:3_0:98_0:62$ ip community-list expanded c36 permit 66 ^65000:3_0:99_0:63$ ip community-list expanded c36 permit 67 ^65000:3_0:100_0:64$ ip community-list expanded c36 permit 68 ^65000:3_0:101_0:65$ ip community-list expanded c36 permit 69 ^65000:3_0:102_0:66$ ip community-list expanded c36 permit 70 ^65000:3_0:103_0:67$ ip community-list expanded c36 permit 71 ^65000:3_0:104_0:68$ ip community-list expanded c36 permit 72 ^65000:3_0:105_0:69$ ip community-list expanded c36 permit 73 ^65000:3_0:106_0:70$ ip community-list expanded c36 permit 74 ^65000:3_0:107_0:71$ ip community-list expanded c36 permit 75 ^65000:4_0:108_0:3$ ip community-list expanded c36 permit 76 ^65000:3_0:108_0:72$ ip community-list expanded c36 permit 77 ^65000:4_0:109_0:3$ ip community-list expanded c36 permit 78 ^65000:3_0:109_0:73$ ip community-list expanded c36 permit 79 ^65000:4_0:110_0:3$ ip community-list expanded c36 permit 80 ^65000:3_0:110_0:74$ ip community-list expanded c36 permit 81 ^65000:3_0:111_0:75$ ip community-list expanded c36 permit 82 ^65000:3_0:112_0:76$ ip community-list expanded c36 permit 83 ^65000:3_0:113_0:77$ ip community-list expanded c36 permit 84 ^65000:3_0:114_0:78$ ip community-list expanded c36 permit 85 ^65000:3_0:115_0:79$ ip community-list expanded c36 permit 86 ^65000:3_0:116_0:80$ ip community-list expanded c36 permit 87 ^65000:3_0:117_0:81$ ip community-list expanded c36 permit 88 ^65000:3_0:118_0:82$ ip community-list expanded c36 permit 89 ^65000:3_0:119_0:83$ ip community-list expanded c36 permit 90 ^65000:3_0:120_0:84$ ip community-list expanded c36 permit 91 ^65000:3_0:121_0:85$ ip community-list expanded c36 permit 92 ^65000:3_0:122_0:86$ ip community-list expanded c36 permit 93 ^65000:3_0:123_0:87$ ip community-list expanded c36 permit 94 ^65000:3_0:124_0:88$ ip community-list expanded c36 permit 95 ^65000:3_0:125_0:89$ ip community-list expanded c36 permit 96 ^65000:3_0:126_0:90$ ip community-list expanded c36 permit 97 ^65000:3_0:127_0:91$ ip community-list expanded c36 permit 98 ^65000:3_0:128_0:92$ ip community-list expanded c36 permit 99 ^65000:3_0:129_0:93$ ip community-list expanded c36 permit 100 ^65000:3_0:130_0:94$ ip community-list expanded c36 permit 101 ^65000:3_0:131_0:95$ ip community-list expanded c36 permit 102 ^65000:3_0:132_0:96$ ip community-list expanded c36 permit 103 ^65000:3_0:133_0:97$ ip community-list expanded c36 permit 104 ^65000:3_0:134_0:98$ ip community-list expanded c36 permit 105 ^65000:3_0:135_0:99$ ip community-list expanded c36 permit 106 ^65000:3_0:136_0:100$ ip community-list expanded c36 permit 107 ^65000:3_0:137_0:101$ ip community-list expanded c36 permit 108 ^65000:3_0:138_0:102$ ip community-list expanded c36 permit 109 ^65000:3_0:139_0:103$ ip community-list expanded c36 permit 110 ^65000:3_0:140_0:104$ ip community-list expanded c36 permit 111 ^65000:3_0:141_0:105$ ip community-list expanded c36 permit 112 ^65000:3_0:142_0:106$ ip community-list expanded c36 permit 113 ^65000:3_0:143_0:107$ ip community-list expanded c36 permit 114 ^65000:4_0:144_0:4$ ip community-list expanded c36 permit 115 ^65000:3_0:144_0:108$ ip community-list expanded c36 permit 116 ^65000:4_0:145_0:4$ ip community-list expanded c36 permit 117 ^65000:3_0:145_0:109$ ip community-list expanded c36 permit 118 ^65000:4_0:146_0:4$ ip community-list expanded c36 permit 119 ^65000:3_0:146_0:110$ ip community-list expanded c36 permit 120 ^65000:4_0:147_0:4$ ip community-list expanded c36 permit 121 ^65000:3_0:147_0:111$ ip community-list expanded c36 permit 122 ^65000:3_0:148_0:112$ ip community-list expanded c36 permit 123 ^65000:3_0:149_0:113$ ip community-list expanded c36 permit 124 ^65000:3_0:150_0:114$ ip community-list expanded c36 permit 125 ^65000:3_0:151_0:115$ ip community-list expanded c36 permit 126 ^65000:3_0:152_0:116$ ip community-list expanded c36 permit 127 ^65000:3_0:153_0:117$ ip community-list expanded c36 permit 128 ^65000:3_0:154_0:118$ ip community-list expanded c36 permit 129 ^65000:3_0:155_0:119$ ip community-list expanded c36 permit 130 ^65000:3_0:156_0:120$ ip community-list expanded c36 permit 131 ^65000:3_0:157_0:121$ ip community-list expanded c36 permit 132 ^65000:3_0:158_0:122$ ip community-list expanded c36 permit 133 ^65000:3_0:159_0:123$ ip community-list expanded c36 permit 134 ^65000:3_0:160_0:124$ ip community-list expanded c36 permit 135 ^65000:3_0:161_0:125$ ip community-list expanded c36 permit 136 ^65000:3_0:162_0:126$ ip community-list expanded c36 permit 137 ^65000:3_0:163_0:127$ ip community-list expanded c36 permit 138 ^65000:3_0:164_0:128$ ip community-list expanded c36 permit 139 ^65000:3_0:165_0:129$ ip community-list expanded c36 permit 140 ^65000:3_0:166_0:130$ ip community-list expanded c36 permit 141 ^65000:3_0:167_0:131$ ip community-list expanded c36 permit 142 ^65000:3_0:168_0:132$ ip community-list expanded c36 permit 143 ^65000:3_0:169_0:133$ ip community-list expanded c36 permit 144 ^65000:3_0:170_0:134$ ip community-list expanded c36 permit 145 ^65000:3_0:171_0:135$ ip community-list expanded c36 permit 146 ^65000:3_0:172_0:136$ ip community-list expanded c36 permit 147 ^65000:3_0:173_0:137$ ip community-list expanded c36 permit 148 ^65000:3_0:174_0:138$ ip community-list expanded c36 permit 149 ^65000:3_0:175_0:139$ ip community-list expanded c36 permit 150 ^65000:3_0:176_0:140$ ip community-list expanded c36 permit 151 ^65000:3_0:177_0:141$ ip community-list expanded c36 permit 152 ^65000:3_0:178_0:142$ ip community-list expanded c36 permit 153 ^65000:3_0:179_0:143$ ip community-list expanded c36 permit 154 ^65000:4_0:180_0:5$ ip community-list expanded c36 permit 155 ^65000:3_0:180_0:144$ ip community-list expanded c36 permit 156 ^65000:4_0:181_0:5$ ip community-list expanded c36 permit 157 ^65000:3_0:181_0:145$ ip community-list expanded c36 permit 158 ^65000:4_0:182_0:5$ ip community-list expanded c36 permit 159 ^65000:3_0:182_0:146$ ip community-list expanded c36 permit 160 ^65000:4_0:183_0:5$ ip community-list expanded c36 permit 161 ^65000:3_0:183_0:147$ ip community-list expanded c36 permit 162 ^65000:4_0:184_0:5$ ip community-list expanded c36 permit 163 ^65000:3_0:184_0:148$ ip community-list expanded c36 permit 164 ^65000:3_0:185_0:149$ ip community-list expanded c36 permit 165 ^65000:3_0:186_0:150$ ip community-list expanded c36 permit 166 ^65000:3_0:187_0:151$ ip community-list expanded c36 permit 167 ^65000:3_0:188_0:152$ ip community-list expanded c36 permit 168 ^65000:3_0:189_0:153$ ip community-list expanded c36 permit 169 ^65000:3_0:190_0:154$ ip community-list expanded c36 permit 170 ^65000:3_0:191_0:155$ ip community-list expanded c36 permit 171 ^65000:3_0:192_0:156$ ip community-list expanded c36 permit 172 ^65000:3_0:193_0:157$ ip community-list expanded c36 permit 173 ^65000:3_0:194_0:158$ ip community-list expanded c36 permit 174 ^65000:3_0:195_0:159$ ip community-list expanded c36 permit 175 ^65000:3_0:196_0:160$ ip community-list expanded c36 permit 176 ^65000:3_0:197_0:161$ ip community-list expanded c36 permit 177 ^65000:3_0:198_0:162$ ip community-list expanded c36 permit 178 ^65000:3_0:199_0:163$ ip community-list expanded c36 permit 179 ^65000:3_0:200_0:164$ ip community-list expanded c36 permit 180 ^65000:3_0:201_0:165$ ip community-list expanded c36 permit 181 ^65000:3_0:202_0:166$ ip community-list expanded c36 permit 182 ^65000:3_0:203_0:167$ ip community-list expanded c36 permit 183 ^65000:3_0:204_0:168$ ip community-list expanded c36 permit 184 ^65000:3_0:205_0:169$ ip community-list expanded c36 permit 185 ^65000:3_0:206_0:170$ ip community-list expanded c36 permit 186 ^65000:3_0:207_0:171$ ip community-list expanded c36 permit 187 ^65000:3_0:208_0:172$ ip community-list expanded c36 permit 188 ^65000:3_0:209_0:173$ ip community-list expanded c36 permit 189 ^65000:3_0:210_0:174$ ip community-list expanded c36 permit 190 ^65000:3_0:211_0:175$ ip community-list expanded c36 permit 191 ^65000:3_0:212_0:176$ ip community-list expanded c36 permit 192 ^65000:3_0:213_0:177$ ip community-list expanded c36 permit 193 ^65000:3_0:214_0:178$ ip community-list expanded c36 permit 194 ^65000:3_0:215_0:179$ ip community-list expanded c36 permit 195 ^65000:4_0:216_0:6$ ip community-list expanded c36 permit 196 ^65000:3_0:216_0:180$ ip community-list expanded c36 permit 197 ^65000:4_0:217_0:6$ ip community-list expanded c36 permit 198 ^65000:3_0:217_0:181$ ip community-list expanded c36 permit 199 ^65000:4_0:218_0:6$ ip community-list expanded c36 permit 200 ^65000:3_0:218_0:182$ ip community-list expanded c36 permit 201 ^65000:4_0:219_0:6$ ip community-list expanded c36 permit 202 ^65000:3_0:219_0:183$ ip community-list expanded c36 permit 203 ^65000:4_0:220_0:6$ ip community-list expanded c36 permit 204 ^65000:3_0:220_0:184$ ip community-list expanded c36 permit 205 ^65000:4_0:221_0:6$ ip community-list expanded c36 permit 206 ^65000:3_0:221_0:185$ ip community-list expanded c36 permit 207 ^65000:3_0:222_0:186$ ip community-list expanded c36 permit 208 ^65000:3_0:223_0:187$ ip community-list expanded c36 permit 209 ^65000:3_0:224_0:188$ ip community-list expanded c36 permit 210 ^65000:3_0:225_0:189$ ip community-list expanded c36 permit 211 ^65000:3_0:226_0:190$ ip community-list expanded c36 permit 212 ^65000:3_0:227_0:191$ ip community-list expanded c36 permit 213 ^65000:3_0:228_0:192$ ip community-list expanded c36 permit 214 ^65000:3_0:229_0:193$ ip community-list expanded c36 permit 215 ^65000:3_0:230_0:194$ ip community-list expanded c36 permit 216 ^65000:3_0:231_0:195$ ip community-list expanded c36 permit 217 ^65000:3_0:232_0:196$ ip community-list expanded c36 permit 218 ^65000:3_0:233_0:197$ ip community-list expanded c36 permit 219 ^65000:3_0:234_0:198$ ip community-list expanded c36 permit 220 ^65000:3_0:235_0:199$ ip community-list expanded c36 permit 221 ^65000:3_0:236_0:200$ ip community-list expanded c36 permit 222 ^65000:3_0:237_0:201$ ip community-list expanded c36 permit 223 ^65000:3_0:238_0:202$ ip community-list expanded c36 permit 224 ^65000:3_0:239_0:203$ ip community-list expanded c36 permit 225 ^65000:3_0:240_0:204$ ip community-list expanded c36 permit 226 ^65000:3_0:241_0:205$ ip community-list expanded c36 permit 227 ^65000:3_0:242_0:206$ ip community-list expanded c36 permit 228 ^65000:3_0:243_0:207$ ip community-list expanded c36 permit 229 ^65000:3_0:244_0:208$ ip community-list expanded c36 permit 230 ^65000:3_0:245_0:209$ ip community-list expanded c36 permit 231 ^65000:3_0:246_0:210$ ip community-list expanded c36 permit 232 ^65000:3_0:247_0:211$ ip community-list expanded c36 permit 233 ^65000:3_0:248_0:212$ ip community-list expanded c36 permit 234 ^65000:3_0:249_0:213$ ip community-list expanded c36 permit 235 ^65000:3_0:250_0:214$ ip community-list expanded c36 permit 236 ^65000:3_0:251_0:215$ ip community-list expanded c36 permit 237 ^65000:4_0:252_0:7$ ip community-list expanded c36 permit 238 ^65000:3_0:252_0:216$ ip community-list expanded c36 permit 239 ^65000:4_0:253_0:7$ ip community-list expanded c36 permit 240 ^65000:3_0:253_0:217$ ip community-list expanded c36 permit 241 ^65000:4_0:254_0:7$ ip community-list expanded c36 permit 242 ^65000:3_0:254_0:218$ ip community-list expanded c36 permit 243 ^65000:4_0:255_0:7$ ip community-list expanded c36 permit 244 ^65000:3_0:255_0:219$ ip community-list expanded c36 permit 245 ^65000:4_0:256_0:7$ ip community-list expanded c36 permit 246 ^65000:3_0:256_0:220$ route-map calculator permit 2484 match community 1_1_35 2_1_36 2_2_18 1_2_34 2_3_12 set community 0:36 route-map calculator permit 2485 match community 1_3_33 2_4_9 1_4_32 1_5_31 2_6_6 set community 0:36 route-map calculator permit 2486 match community 1_6_30 1_7_29 1_8_28 1_9_27 1_10_26 set community 0:36 route-map calculator permit 2487 match community 1_11_25 1_12_24 1_13_23 1_14_22 1_15_21 set community 0:36 route-map calculator permit 2488 match community 1_16_20 1_17_19 1_18_18 c4_36_1 c3_37_1 set community 0:36 route-map calculator permit 2489 match community c3_38_2 c3_39_3 c3_40_4 c3_41_5 c3_42_6 set community 0:36 route-map calculator permit 2490 match community c3_43_7 c3_44_8 c3_45_9 c3_46_10 c3_47_11 set community 0:36 route-map calculator permit 2491 match community c3_48_12 c3_49_13 c3_50_14 c3_51_15 c3_52_16 set community 0:36 route-map calculator permit 2492 match community c3_53_17 c3_54_18 c3_55_19 c3_56_20 c3_57_21 set community 0:36 route-map calculator permit 2493 match community c3_58_22 c3_59_23 c3_60_24 c3_61_25 c3_62_26 set community 0:36 route-map calculator permit 2494 match community c3_63_27 c3_64_28 c3_65_29 c3_66_30 c3_67_31 set community 0:36 route-map calculator permit 2495 match community c3_68_32 c3_69_33 c3_70_34 c3_71_35 c4_72_2 set community 0:36 route-map calculator permit 2496 match community c3_72_36 c4_73_2 c3_73_37 c3_74_38 c3_75_39 set community 0:36 route-map calculator permit 2497 match community c3_76_40 c3_77_41 c3_78_42 c3_79_43 c3_80_44 set community 0:36 route-map calculator permit 2498 match community c3_81_45 c3_82_46 c3_83_47 c3_84_48 c3_85_49 set community 0:36 route-map calculator permit 2499 match community c3_86_50 c3_87_51 c3_88_52 c3_89_53 c3_90_54 set community 0:36 route-map calculator permit 2500 match community c3_91_55 c3_92_56 c3_93_57 c3_94_58 c3_95_59 set community 0:36 route-map calculator permit 2501 match community c3_96_60 c3_97_61 c3_98_62 c3_99_63 c3_100_64 set community 0:36 route-map calculator permit 2502 match community c3_101_65 c3_102_66 c3_103_67 c3_104_68 c3_105_69 set community 0:36 route-map calculator permit 2503 match community c3_106_70 c3_107_71 c4_108_3 c3_108_72 c4_109_3 set community 0:36 route-map calculator permit 2504 match community c3_109_73 c4_110_3 c3_110_74 c3_111_75 c3_112_76 set community 0:36 route-map calculator permit 2505 match community c3_113_77 c3_114_78 c3_115_79 c3_116_80 c3_117_81 set community 0:36 route-map calculator permit 2506 match community c3_118_82 c3_119_83 c3_120_84 c3_121_85 c3_122_86 set community 0:36 route-map calculator permit 2507 match community c3_123_87 c3_124_88 c3_125_89 c3_126_90 c3_127_91 set community 0:36 route-map calculator permit 2508 match community c3_128_92 c3_129_93 c3_130_94 c3_131_95 c3_132_96 set community 0:36 route-map calculator permit 2509 match community c3_133_97 c3_134_98 c3_135_99 c3_136_100 c3_137_101 set community 0:36 route-map calculator permit 2510 match community c3_138_102 c3_139_103 c3_140_104 c3_141_105 c3_142_106 set community 0:36 route-map calculator permit 2511 match community c3_143_107 c4_144_4 c3_144_108 c4_145_4 c3_145_109 set community 0:36 route-map calculator permit 2512 match community c4_146_4 c3_146_110 c4_147_4 c3_147_111 c3_148_112 set community 0:36 route-map calculator permit 2513 match community c3_149_113 c3_150_114 c3_151_115 c3_152_116 c3_153_117 set community 0:36 route-map calculator permit 2514 match community c3_154_118 c3_155_119 c3_156_120 c3_157_121 c3_158_122 set community 0:36 route-map calculator permit 2515 match community c3_159_123 c3_160_124 c3_161_125 c3_162_126 c3_163_127 set community 0:36 route-map calculator permit 2516 match community c3_164_128 c3_165_129 c3_166_130 c3_167_131 c3_168_132 set community 0:36 route-map calculator permit 2517 match community c3_169_133 c3_170_134 c3_171_135 c3_172_136 c3_173_137 set community 0:36 route-map calculator permit 2518 match community c3_174_138 c3_175_139 c3_176_140 c3_177_141 c3_178_142 set community 0:36 route-map calculator permit 2519 match community c3_179_143 c4_180_5 c3_180_144 c4_181_5 c3_181_145 set community 0:36 route-map calculator permit 2520 match community c4_182_5 c3_182_146 c4_183_5 c3_183_147 c4_184_5 set community 0:36 route-map calculator permit 2521 match community c3_184_148 c3_185_149 c3_186_150 c3_187_151 c3_188_152 set community 0:36 route-map calculator permit 2522 match community c3_189_153 c3_190_154 c3_191_155 c3_192_156 c3_193_157 set community 0:36 route-map calculator permit 2523 match community c3_194_158 c3_195_159 c3_196_160 c3_197_161 c3_198_162 set community 0:36 route-map calculator permit 2524 match community c3_199_163 c3_200_164 c3_201_165 c3_202_166 c3_203_167 set community 0:36 route-map calculator permit 2525 match community c3_204_168 c3_205_169 c3_206_170 c3_207_171 c3_208_172 set community 0:36 route-map calculator permit 2526 match community c3_209_173 c3_210_174 c3_211_175 c3_212_176 c3_213_177 set community 0:36 route-map calculator permit 2527 match community c3_214_178 c3_215_179 c4_216_6 c3_216_180 c4_217_6 set community 0:36 route-map calculator permit 2528 match community c3_217_181 c4_218_6 c3_218_182 c4_219_6 c3_219_183 set community 0:36 route-map calculator permit 2529 match community c4_220_6 c3_220_184 c4_221_6 c3_221_185 c3_222_186 set community 0:36 route-map calculator permit 2530 match community c3_223_187 c3_224_188 c3_225_189 c3_226_190 c3_227_191 set community 0:36 route-map calculator permit 2531 match community c3_228_192 c3_229_193 c3_230_194 c3_231_195 c3_232_196 set community 0:36 route-map calculator permit 2532 match community c3_233_197 c3_234_198 c3_235_199 c3_236_200 c3_237_201 set community 0:36 route-map calculator permit 2533 match community c3_238_202 c3_239_203 c3_240_204 c3_241_205 c3_242_206 set community 0:36 route-map calculator permit 2534 match community c3_243_207 c3_244_208 c3_245_209 c3_246_210 c3_247_211 set community 0:36 route-map calculator permit 2535 match community c3_248_212 c3_249_213 c3_250_214 c3_251_215 c4_252_7 set community 0:36 route-map calculator permit 2536 match community c3_252_216 c4_253_7 c3_253_217 c4_254_7 c3_254_218 set community 0:36 route-map calculator permit 2537 match community c4_255_7 c3_255_219 c4_256_7 c3_256_220 set community 0:36 ip community-list standard 2_83_155 permit 65000:2 0:83 0:155 route-map calculator permit 2538 match community 2_83_155 set community 0:12865 ip community-list standard 2_11_131 permit 65000:2 0:11 0:131 route-map calculator permit 2539 match community 2_11_131 set community 0:1441 ip community-list standard 2_99_113 permit 65000:2 0:99 0:113 route-map calculator permit 2540 match community 2_99_113 set community 0:11187 ip community-list standard 2_100_179 permit 65000:2 0:100 0:179 route-map calculator permit 2541 match community 2_100_179 set community 0:17900 ip community-list standard 2_22_245 permit 65000:2 0:22 0:245 ip community-list standard 2_35_154 permit 65000:2 0:35 0:154 ip community-list standard 2_49_110 permit 65000:2 0:49 0:110 ip community-list standard 2_55_98 permit 65000:2 0:55 0:98 ip community-list standard 2_70_77 permit 65000:2 0:70 0:77 route-map calculator permit 2542 match community 2_22_245 2_35_154 2_49_110 2_55_98 2_70_77 set community 0:5390 ip community-list standard 2_14_202 permit 65000:2 0:14 0:202 ip community-list standard 2_28_101 permit 65000:2 0:28 0:101 route-map calculator permit 2543 match community 2_14_202 2_28_101 set community 0:2828 ip community-list standard 2_87_111 permit 65000:2 0:87 0:111 route-map calculator permit 2544 match community 2_87_111 set community 0:9657 ip community-list standard 2_59_101 permit 65000:2 0:59 0:101 route-map calculator permit 2545 match community 2_59_101 set community 0:5959 ip community-list standard 2_133_201 permit 65000:2 0:133 0:201 route-map calculator permit 2546 match community 2_133_201 set community 0:26733 ip community-list standard 2_41_43 permit 65000:2 0:41 0:43 route-map calculator permit 2547 match community 2_41_43 set community 0:1763 ip community-list standard 2_57_101 permit 65000:2 0:57 0:101 route-map calculator permit 2548 match community 2_57_101 set community 0:5757 ip community-list standard 2_10_197 permit 65000:2 0:10 0:197 route-map calculator permit 2549 match community 2_10_197 set community 0:1970 ip community-list standard 2_223_226 permit 65000:2 0:223 0:226 route-map calculator permit 2550 match community 2_223_226 set community 0:50398 ip community-list standard 2_49_173 permit 65000:2 0:49 0:173 route-map calculator permit 2551 match community 2_49_173 set community 0:8477 ip community-list standard 2_190_245 permit 65000:2 0:190 0:245 route-map calculator permit 2552 match community 2_190_245 set community 0:46550 ip community-list standard 2_31_103 permit 65000:2 0:31 0:103 route-map calculator permit 2553 match community 2_31_103 set community 0:3193 ip community-list standard 2_37_185 permit 65000:2 0:37 0:185 route-map calculator permit 2554 match community 2_37_185 set community 0:6845 ip community-list standard 2_114_246 permit 65000:2 0:114 0:246 ip community-list standard 2_123_228 permit 65000:2 0:123 0:228 ip community-list standard 2_164_171 permit 65000:2 0:164 0:171 route-map calculator permit 2555 match community 2_114_246 2_123_228 2_164_171 set community 0:28044 ip community-list standard 2_31_123 permit 65000:2 0:31 0:123 ip community-list standard 2_41_93 permit 65000:2 0:41 0:93 route-map calculator permit 2556 match community 2_31_123 2_41_93 set community 0:3813 ip community-list standard 2_83_212 permit 65000:2 0:83 0:212 ip community-list standard 2_106_166 permit 65000:2 0:106 0:166 route-map calculator permit 2557 match community 2_83_212 2_106_166 set community 0:17596 ip community-list standard 2_202_245 permit 65000:2 0:202 0:245 route-map calculator permit 2558 match community 2_202_245 set community 0:49490 ip community-list standard 2_91_211 permit 65000:2 0:91 0:211 route-map calculator permit 2559 match community 2_91_211 set community 0:19201 ip community-list standard 2_169_254 permit 65000:2 0:169 0:254 route-map calculator permit 2560 match community 2_169_254 set community 0:42926 ip community-list standard 2_91_224 permit 65000:2 0:91 0:224 ip community-list standard 2_98_208 permit 65000:2 0:98 0:208 ip community-list standard 2_104_196 permit 65000:2 0:104 0:196 ip community-list standard 2_112_182 permit 65000:2 0:112 0:182 route-map calculator permit 2561 match community 2_91_224 2_98_208 2_104_196 2_112_182 set community 0:20384 ip community-list standard 2_161_172 permit 65000:2 0:161 0:172 route-map calculator permit 2562 match community 2_161_172 set community 0:27692 ip community-list standard 2_50_249 permit 65000:2 0:50 0:249 ip community-list standard 2_75_166 permit 65000:2 0:75 0:166 ip community-list standard 2_83_150 permit 65000:2 0:83 0:150 route-map calculator permit 2563 match community 2_50_249 2_75_166 2_83_150 set community 0:12450 ip community-list standard 2_156_249 permit 65000:2 0:156 0:249 ip community-list standard 2_166_234 permit 65000:2 0:166 0:234 route-map calculator permit 2564 match community 2_156_249 2_166_234 set community 0:38844 ip community-list standard 2_56_202 permit 65000:2 0:56 0:202 ip community-list standard 2_101_112 permit 65000:2 0:101 0:112 route-map calculator permit 2565 match community 2_56_202 2_101_112 set community 0:11312 ip community-list standard 2_127_233 permit 65000:2 0:127 0:233 route-map calculator permit 2566 match community 2_127_233 set community 0:29591 ip community-list standard 2_2_233 permit 65000:2 0:2 0:233 ip community-list standard 1_210_256 permit 65000:1 0:210 0:256 ip community-list standard 1_211_255 permit 65000:1 0:211 0:255 ip community-list standard 1_212_254 permit 65000:1 0:212 0:254 ip community-list standard 1_213_253 permit 65000:1 0:213 0:253 ip community-list standard 1_214_252 permit 65000:1 0:214 0:252 ip community-list standard 1_215_251 permit 65000:1 0:215 0:251 ip community-list standard 1_216_250 permit 65000:1 0:216 0:250 ip community-list standard 1_217_249 permit 65000:1 0:217 0:249 ip community-list standard 1_218_248 permit 65000:1 0:218 0:248 ip community-list standard 1_219_247 permit 65000:1 0:219 0:247 ip community-list standard 1_220_246 permit 65000:1 0:220 0:246 ip community-list standard 1_221_245 permit 65000:1 0:221 0:245 ip community-list standard 1_222_244 permit 65000:1 0:222 0:244 ip community-list standard 1_223_243 permit 65000:1 0:223 0:243 ip community-list standard 1_224_242 permit 65000:1 0:224 0:242 ip community-list standard 1_225_241 permit 65000:1 0:225 0:241 ip community-list standard 1_226_240 permit 65000:1 0:226 0:240 ip community-list standard 1_227_239 permit 65000:1 0:227 0:239 ip community-list standard 1_228_238 permit 65000:1 0:228 0:238 ip community-list standard 1_229_237 permit 65000:1 0:229 0:237 ip community-list standard 1_230_236 permit 65000:1 0:230 0:236 ip community-list standard 1_231_235 permit 65000:1 0:231 0:235 ip community-list standard 1_232_234 permit 65000:1 0:232 0:234 ip community-list standard 1_233_233 permit 65000:1 0:233 0:233 route-map calculator permit 2567 match community 2_2_233 1_210_256 1_211_255 1_212_254 1_213_253 set community 0:466 route-map calculator permit 2568 match community 1_214_252 1_215_251 1_216_250 1_217_249 1_218_248 set community 0:466 route-map calculator permit 2569 match community 1_219_247 1_220_246 1_221_245 1_222_244 1_223_243 set community 0:466 route-map calculator permit 2570 match community 1_224_242 1_225_241 1_226_240 1_227_239 1_228_238 set community 0:466 route-map calculator permit 2571 match community 1_229_237 1_230_236 1_231_235 1_232_234 1_233_233 set community 0:466 ip community-list standard 2_74_247 permit 65000:2 0:74 0:247 route-map calculator permit 2572 match community 2_74_247 set community 0:18278 ip community-list standard 2_6_232 permit 65000:2 0:6 0:232 ip community-list standard 2_8_174 permit 65000:2 0:8 0:174 ip community-list standard 2_12_116 permit 65000:2 0:12 0:116 ip community-list standard 2_16_87 permit 65000:2 0:16 0:87 ip community-list standard 2_24_58 permit 65000:2 0:24 0:58 ip community-list standard 2_29_48 permit 65000:2 0:29 0:48 route-map calculator permit 2573 match community 2_6_232 2_8_174 2_12_116 2_16_87 2_24_58 set community 0:1392 route-map calculator permit 2574 match community 2_29_48 set community 0:1392 ip community-list standard 2_3_209 permit 65000:2 0:3 0:209 ip community-list standard 2_11_57 permit 65000:2 0:11 0:57 ip community-list standard 2_19_33 permit 65000:2 0:19 0:33 route-map calculator permit 2575 match community 2_3_209 2_11_57 2_19_33 set community 0:627 ip community-list standard 2_188_211 permit 65000:2 0:188 0:211 route-map calculator permit 2576 match community 2_188_211 set community 0:39668 ip community-list standard 2_91_97 permit 65000:2 0:91 0:97 route-map calculator permit 2577 match community 2_91_97 set community 0:8827 ip community-list standard 2_37_191 permit 65000:2 0:37 0:191 route-map calculator permit 2578 match community 2_37_191 set community 0:7067 ip community-list standard 2_127_149 permit 65000:2 0:127 0:149 route-map calculator permit 2579 match community 2_127_149 set community 0:18923 ip community-list standard 2_130_145 permit 65000:2 0:130 0:145 route-map calculator permit 2580 match community 2_130_145 set community 0:18850 ip community-list standard 2_163_250 permit 65000:2 0:163 0:250 route-map calculator permit 2581 match community 2_163_250 set community 0:40750 ip community-list standard 2_38_239 permit 65000:2 0:38 0:239 route-map calculator permit 2582 match community 2_38_239 set community 0:9082 ip community-list standard 2_161_177 permit 65000:2 0:161 0:177 route-map calculator permit 2583 match community 2_161_177 set community 0:28497 ip community-list standard 2_110_234 permit 65000:2 0:110 0:234 ip community-list standard 2_117_220 permit 65000:2 0:117 0:220 ip community-list standard 2_130_198 permit 65000:2 0:130 0:198 ip community-list standard 2_132_195 permit 65000:2 0:132 0:195 ip community-list standard 2_143_180 permit 65000:2 0:143 0:180 ip community-list standard 2_156_165 permit 65000:2 0:156 0:165 route-map calculator permit 2584 match community 2_110_234 2_117_220 2_130_198 2_132_195 2_143_180 set community 0:25740 route-map calculator permit 2585 match community 2_156_165 set community 0:25740 ip community-list standard 2_85_254 permit 65000:2 0:85 0:254 ip community-list standard 2_127_170 permit 65000:2 0:127 0:170 route-map calculator permit 2586 match community 2_85_254 2_127_170 set community 0:21590 ip community-list standard 2_219_233 permit 65000:2 0:219 0:233 route-map calculator permit 2587 match community 2_219_233 set community 0:51027 ip community-list standard 2_211_222 permit 65000:2 0:211 0:222 route-map calculator permit 2588 match community 2_211_222 set community 0:46842 ip community-list standard 2_177_178 permit 65000:2 0:177 0:178 route-map calculator permit 2589 match community 2_177_178 set community 0:31506 ip community-list standard 2_45_183 permit 65000:2 0:45 0:183 ip community-list standard 2_61_135 permit 65000:2 0:61 0:135 route-map calculator permit 2590 match community 2_45_183 2_61_135 set community 0:8235 ip community-list standard 2_218_256 permit 65000:2 0:218 0:256 route-map calculator permit 2591 match community 2_218_256 set community 0:55808 ip community-list standard 2_10_247 permit 65000:2 0:10 0:247 ip community-list standard 2_13_190 permit 65000:2 0:13 0:190 ip community-list standard 2_19_130 permit 65000:2 0:19 0:130 ip community-list standard 2_26_95 permit 65000:2 0:26 0:95 ip community-list standard 2_38_65 permit 65000:2 0:38 0:65 route-map calculator permit 2592 match community 2_10_247 2_13_190 2_19_130 2_26_95 2_38_65 set community 0:2470 ip community-list standard 2_151_256 permit 65000:2 0:151 0:256 route-map calculator permit 2593 match community 2_151_256 set community 0:38656 ip community-list standard 2_216_226 permit 65000:2 0:216 0:226 route-map calculator permit 2594 match community 2_216_226 set community 0:48816 ip community-list standard 2_157_198 permit 65000:2 0:157 0:198 route-map calculator permit 2595 match community 2_157_198 set community 0:31086 ip community-list standard 2_172_201 permit 65000:2 0:172 0:201 route-map calculator permit 2596 match community 2_172_201 set community 0:34572 ip community-list standard 2_22_164 permit 65000:2 0:22 0:164 ip community-list standard 2_41_88 permit 65000:2 0:41 0:88 ip community-list standard 2_44_82 permit 65000:2 0:44 0:82 route-map calculator permit 2597 match community 2_22_164 2_41_88 2_44_82 set community 0:3608 ip community-list standard 2_44_137 permit 65000:2 0:44 0:137 route-map calculator permit 2598 match community 2_44_137 set community 0:6028 ip community-list standard 2_7_236 permit 65000:2 0:7 0:236 ip community-list standard 2_14_118 permit 65000:2 0:14 0:118 ip community-list standard 2_28_59 permit 65000:2 0:28 0:59 route-map calculator permit 2599 match community 2_7_236 2_14_118 2_28_59 set community 0:1652 ip community-list standard 2_179_225 permit 65000:2 0:179 0:225 route-map calculator permit 2600 match community 2_179_225 set community 0:40275 ip community-list standard 2_127_254 permit 65000:2 0:127 0:254 route-map calculator permit 2601 match community 2_127_254 set community 0:32258 ip community-list standard 2_103_205 permit 65000:2 0:103 0:205 route-map calculator permit 2602 match community 2_103_205 set community 0:21115 ip community-list standard 2_179_231 permit 65000:2 0:179 0:231 route-map calculator permit 2603 match community 2_179_231 set community 0:41349 ip community-list standard 2_31_227 permit 65000:2 0:31 0:227 route-map calculator permit 2604 match community 2_31_227 set community 0:7037 ip community-list standard 2_52_239 permit 65000:2 0:52 0:239 route-map calculator permit 2605 match community 2_52_239 set community 0:12428 ip community-list standard 2_190_233 permit 65000:2 0:190 0:233 route-map calculator permit 2606 match community 2_190_233 set community 0:44270 ip community-list standard 2_36_251 permit 65000:2 0:36 0:251 route-map calculator permit 2607 match community 2_36_251 set community 0:9036 ip community-list standard 2_55_186 permit 65000:2 0:55 0:186 ip community-list standard 2_62_165 permit 65000:2 0:62 0:165 ip community-list standard 2_66_155 permit 65000:2 0:66 0:155 ip community-list standard 2_93_110 permit 65000:2 0:93 0:110 route-map calculator permit 2608 match community 2_55_186 2_62_165 2_66_155 2_93_110 set community 0:10230 ip community-list standard 2_199_227 permit 65000:2 0:199 0:227 route-map calculator permit 2609 match community 2_199_227 set community 0:45173 ip community-list standard 2_174_191 permit 65000:2 0:174 0:191 route-map calculator permit 2610 match community 2_174_191 set community 0:33234 ip community-list standard 2_47_199 permit 65000:2 0:47 0:199 route-map calculator permit 2611 match community 2_47_199 set community 0:9353 ip community-list standard 2_89_234 permit 65000:2 0:89 0:234 ip community-list standard 2_117_178 permit 65000:2 0:117 0:178 route-map calculator permit 2612 match community 2_89_234 2_117_178 set community 0:20826 ip community-list standard 2_61_190 permit 65000:2 0:61 0:190 ip community-list standard 2_95_122 permit 65000:2 0:95 0:122 route-map calculator permit 2613 match community 2_61_190 2_95_122 set community 0:11590 ip community-list standard 2_89_131 permit 65000:2 0:89 0:131 route-map calculator permit 2614 match community 2_89_131 set community 0:11659 ip community-list standard 2_94_151 permit 65000:2 0:94 0:151 route-map calculator permit 2615 match community 2_94_151 set community 0:14194 ip community-list standard 2_103_222 permit 65000:2 0:103 0:222 ip community-list standard 2_111_206 permit 65000:2 0:111 0:206 route-map calculator permit 2616 match community 2_103_222 2_111_206 set community 0:22866 ip community-list standard 2_15_139 permit 65000:2 0:15 0:139 route-map calculator permit 2617 match community 2_15_139 set community 0:2085 ip community-list standard 2_47_242 permit 65000:2 0:47 0:242 ip community-list standard 2_94_121 permit 65000:2 0:94 0:121 route-map calculator permit 2618 match community 2_47_242 2_94_121 set community 0:11374 ip community-list standard 2_34_197 permit 65000:2 0:34 0:197 route-map calculator permit 2619 match community 2_34_197 set community 0:6698 ip community-list standard 2_81_212 permit 65000:2 0:81 0:212 ip community-list standard 2_106_162 permit 65000:2 0:106 0:162 ip community-list standard 2_108_159 permit 65000:2 0:108 0:159 route-map calculator permit 2620 match community 2_81_212 2_106_162 2_108_159 set community 0:17172 ip community-list standard 1_1_195 permit 65000:1 0:1 0:195 ip community-list standard 2_1_196 permit 65000:2 0:1 0:196 ip community-list standard 2_2_98 permit 65000:2 0:2 0:98 ip community-list standard 1_2_194 permit 65000:1 0:2 0:194 ip community-list standard 1_3_193 permit 65000:1 0:3 0:193 ip community-list standard 2_4_49 permit 65000:2 0:4 0:49 ip community-list standard 1_4_192 permit 65000:1 0:4 0:192 ip community-list standard 1_5_191 permit 65000:1 0:5 0:191 ip community-list standard 1_6_190 permit 65000:1 0:6 0:190 ip community-list standard 2_7_28 permit 65000:2 0:7 0:28 ip community-list standard 1_7_189 permit 65000:1 0:7 0:189 ip community-list standard 1_8_188 permit 65000:1 0:8 0:188 ip community-list standard 1_9_187 permit 65000:1 0:9 0:187 ip community-list standard 1_10_186 permit 65000:1 0:10 0:186 ip community-list standard 1_11_185 permit 65000:1 0:11 0:185 ip community-list standard 1_12_184 permit 65000:1 0:12 0:184 ip community-list standard 1_13_183 permit 65000:1 0:13 0:183 ip community-list standard 2_14_14 permit 65000:2 0:14 0:14 ip community-list standard 1_14_182 permit 65000:1 0:14 0:182 ip community-list standard 1_15_181 permit 65000:1 0:15 0:181 ip community-list standard 1_16_180 permit 65000:1 0:16 0:180 ip community-list standard 1_17_179 permit 65000:1 0:17 0:179 ip community-list standard 1_18_178 permit 65000:1 0:18 0:178 ip community-list standard 1_19_177 permit 65000:1 0:19 0:177 ip community-list standard 1_20_176 permit 65000:1 0:20 0:176 ip community-list standard 1_21_175 permit 65000:1 0:21 0:175 ip community-list standard 1_22_174 permit 65000:1 0:22 0:174 ip community-list standard 1_23_173 permit 65000:1 0:23 0:173 ip community-list standard 1_24_172 permit 65000:1 0:24 0:172 ip community-list standard 1_25_171 permit 65000:1 0:25 0:171 ip community-list standard 1_26_170 permit 65000:1 0:26 0:170 ip community-list standard 1_27_169 permit 65000:1 0:27 0:169 ip community-list standard 1_28_168 permit 65000:1 0:28 0:168 ip community-list standard 1_29_167 permit 65000:1 0:29 0:167 ip community-list standard 1_30_166 permit 65000:1 0:30 0:166 ip community-list standard 1_31_165 permit 65000:1 0:31 0:165 ip community-list standard 1_32_164 permit 65000:1 0:32 0:164 ip community-list standard 1_33_163 permit 65000:1 0:33 0:163 ip community-list standard 1_34_162 permit 65000:1 0:34 0:162 ip community-list standard 1_35_161 permit 65000:1 0:35 0:161 ip community-list standard 1_36_160 permit 65000:1 0:36 0:160 ip community-list standard 1_37_159 permit 65000:1 0:37 0:159 ip community-list standard 1_38_158 permit 65000:1 0:38 0:158 ip community-list standard 1_39_157 permit 65000:1 0:39 0:157 ip community-list standard 1_40_156 permit 65000:1 0:40 0:156 ip community-list standard 1_41_155 permit 65000:1 0:41 0:155 ip community-list standard 1_42_154 permit 65000:1 0:42 0:154 ip community-list standard 1_43_153 permit 65000:1 0:43 0:153 ip community-list standard 1_44_152 permit 65000:1 0:44 0:152 ip community-list standard 1_45_151 permit 65000:1 0:45 0:151 ip community-list standard 1_46_150 permit 65000:1 0:46 0:150 ip community-list standard 1_47_149 permit 65000:1 0:47 0:149 ip community-list standard 1_48_148 permit 65000:1 0:48 0:148 ip community-list standard 1_49_147 permit 65000:1 0:49 0:147 ip community-list standard 1_50_146 permit 65000:1 0:50 0:146 ip community-list standard 1_51_145 permit 65000:1 0:51 0:145 ip community-list standard 1_52_144 permit 65000:1 0:52 0:144 ip community-list standard 1_53_143 permit 65000:1 0:53 0:143 ip community-list standard 1_54_142 permit 65000:1 0:54 0:142 ip community-list standard 1_55_141 permit 65000:1 0:55 0:141 ip community-list standard 1_56_140 permit 65000:1 0:56 0:140 ip community-list standard 1_57_139 permit 65000:1 0:57 0:139 ip community-list standard 1_58_138 permit 65000:1 0:58 0:138 ip community-list standard 1_59_137 permit 65000:1 0:59 0:137 ip community-list standard 1_60_136 permit 65000:1 0:60 0:136 ip community-list standard 1_61_135 permit 65000:1 0:61 0:135 ip community-list standard 1_62_134 permit 65000:1 0:62 0:134 ip community-list standard 1_63_133 permit 65000:1 0:63 0:133 ip community-list standard 1_64_132 permit 65000:1 0:64 0:132 ip community-list standard 1_65_131 permit 65000:1 0:65 0:131 ip community-list standard 1_66_130 permit 65000:1 0:66 0:130 ip community-list standard 1_67_129 permit 65000:1 0:67 0:129 ip community-list standard 1_68_128 permit 65000:1 0:68 0:128 ip community-list standard 1_69_127 permit 65000:1 0:69 0:127 ip community-list standard 1_70_126 permit 65000:1 0:70 0:126 ip community-list standard 1_71_125 permit 65000:1 0:71 0:125 ip community-list standard 1_72_124 permit 65000:1 0:72 0:124 ip community-list standard 1_73_123 permit 65000:1 0:73 0:123 ip community-list standard 1_74_122 permit 65000:1 0:74 0:122 ip community-list standard 1_75_121 permit 65000:1 0:75 0:121 ip community-list standard 1_76_120 permit 65000:1 0:76 0:120 ip community-list standard 1_77_119 permit 65000:1 0:77 0:119 ip community-list standard 1_78_118 permit 65000:1 0:78 0:118 ip community-list standard 1_79_117 permit 65000:1 0:79 0:117 ip community-list standard 1_80_116 permit 65000:1 0:80 0:116 ip community-list standard 1_81_115 permit 65000:1 0:81 0:115 ip community-list standard 1_82_114 permit 65000:1 0:82 0:114 ip community-list standard 1_83_113 permit 65000:1 0:83 0:113 ip community-list standard 1_84_112 permit 65000:1 0:84 0:112 ip community-list standard 1_85_111 permit 65000:1 0:85 0:111 ip community-list standard 1_86_110 permit 65000:1 0:86 0:110 ip community-list standard 1_87_109 permit 65000:1 0:87 0:109 ip community-list standard 1_88_108 permit 65000:1 0:88 0:108 ip community-list standard 1_89_107 permit 65000:1 0:89 0:107 ip community-list standard 1_90_106 permit 65000:1 0:90 0:106 ip community-list standard 1_91_105 permit 65000:1 0:91 0:105 ip community-list standard 1_92_104 permit 65000:1 0:92 0:104 ip community-list standard 1_93_103 permit 65000:1 0:93 0:103 ip community-list standard 1_94_102 permit 65000:1 0:94 0:102 ip community-list standard 1_95_101 permit 65000:1 0:95 0:101 ip community-list standard 1_96_100 permit 65000:1 0:96 0:100 ip community-list standard 1_97_99 permit 65000:1 0:97 0:99 ip community-list standard 1_98_98 permit 65000:1 0:98 0:98 ip community-list expanded c196 permit 1 ^65000:4_0:196_0:1$ ip community-list expanded c196 permit 2 ^65000:3_0:197_0:1$ ip community-list expanded c196 permit 3 ^65000:3_0:198_0:2$ ip community-list expanded c196 permit 4 ^65000:3_0:199_0:3$ ip community-list expanded c196 permit 5 ^65000:3_0:200_0:4$ ip community-list expanded c196 permit 6 ^65000:3_0:201_0:5$ ip community-list expanded c196 permit 7 ^65000:3_0:202_0:6$ ip community-list expanded c196 permit 8 ^65000:3_0:203_0:7$ ip community-list expanded c196 permit 9 ^65000:3_0:204_0:8$ ip community-list expanded c196 permit 10 ^65000:3_0:205_0:9$ ip community-list expanded c196 permit 11 ^65000:3_0:206_0:10$ ip community-list expanded c196 permit 12 ^65000:3_0:207_0:11$ ip community-list expanded c196 permit 13 ^65000:3_0:208_0:12$ ip community-list expanded c196 permit 14 ^65000:3_0:209_0:13$ ip community-list expanded c196 permit 15 ^65000:3_0:210_0:14$ ip community-list expanded c196 permit 16 ^65000:3_0:211_0:15$ ip community-list expanded c196 permit 17 ^65000:3_0:212_0:16$ ip community-list expanded c196 permit 18 ^65000:3_0:213_0:17$ ip community-list expanded c196 permit 19 ^65000:3_0:214_0:18$ ip community-list expanded c196 permit 20 ^65000:3_0:215_0:19$ ip community-list expanded c196 permit 21 ^65000:3_0:216_0:20$ ip community-list expanded c196 permit 22 ^65000:3_0:217_0:21$ ip community-list expanded c196 permit 23 ^65000:3_0:218_0:22$ ip community-list expanded c196 permit 24 ^65000:3_0:219_0:23$ ip community-list expanded c196 permit 25 ^65000:3_0:220_0:24$ ip community-list expanded c196 permit 26 ^65000:3_0:221_0:25$ ip community-list expanded c196 permit 27 ^65000:3_0:222_0:26$ ip community-list expanded c196 permit 28 ^65000:3_0:223_0:27$ ip community-list expanded c196 permit 29 ^65000:3_0:224_0:28$ ip community-list expanded c196 permit 30 ^65000:3_0:225_0:29$ ip community-list expanded c196 permit 31 ^65000:3_0:226_0:30$ ip community-list expanded c196 permit 32 ^65000:3_0:227_0:31$ ip community-list expanded c196 permit 33 ^65000:3_0:228_0:32$ ip community-list expanded c196 permit 34 ^65000:3_0:229_0:33$ ip community-list expanded c196 permit 35 ^65000:3_0:230_0:34$ ip community-list expanded c196 permit 36 ^65000:3_0:231_0:35$ ip community-list expanded c196 permit 37 ^65000:3_0:232_0:36$ ip community-list expanded c196 permit 38 ^65000:3_0:233_0:37$ ip community-list expanded c196 permit 39 ^65000:3_0:234_0:38$ ip community-list expanded c196 permit 40 ^65000:3_0:235_0:39$ ip community-list expanded c196 permit 41 ^65000:3_0:236_0:40$ ip community-list expanded c196 permit 42 ^65000:3_0:237_0:41$ ip community-list expanded c196 permit 43 ^65000:3_0:238_0:42$ ip community-list expanded c196 permit 44 ^65000:3_0:239_0:43$ ip community-list expanded c196 permit 45 ^65000:3_0:240_0:44$ ip community-list expanded c196 permit 46 ^65000:3_0:241_0:45$ ip community-list expanded c196 permit 47 ^65000:3_0:242_0:46$ ip community-list expanded c196 permit 48 ^65000:3_0:243_0:47$ ip community-list expanded c196 permit 49 ^65000:3_0:244_0:48$ ip community-list expanded c196 permit 50 ^65000:3_0:245_0:49$ ip community-list expanded c196 permit 51 ^65000:3_0:246_0:50$ ip community-list expanded c196 permit 52 ^65000:3_0:247_0:51$ ip community-list expanded c196 permit 53 ^65000:3_0:248_0:52$ ip community-list expanded c196 permit 54 ^65000:3_0:249_0:53$ ip community-list expanded c196 permit 55 ^65000:3_0:250_0:54$ ip community-list expanded c196 permit 56 ^65000:3_0:251_0:55$ ip community-list expanded c196 permit 57 ^65000:3_0:252_0:56$ ip community-list expanded c196 permit 58 ^65000:3_0:253_0:57$ ip community-list expanded c196 permit 59 ^65000:3_0:254_0:58$ ip community-list expanded c196 permit 60 ^65000:3_0:255_0:59$ ip community-list expanded c196 permit 61 ^65000:3_0:256_0:60$ route-map calculator permit 2621 match community 1_1_195 2_1_196 2_2_98 1_2_194 1_3_193 set community 0:196 route-map calculator permit 2622 match community 2_4_49 1_4_192 1_5_191 1_6_190 2_7_28 set community 0:196 route-map calculator permit 2623 match community 1_7_189 1_8_188 1_9_187 1_10_186 1_11_185 set community 0:196 route-map calculator permit 2624 match community 1_12_184 1_13_183 2_14_14 1_14_182 1_15_181 set community 0:196 route-map calculator permit 2625 match community 1_16_180 1_17_179 1_18_178 1_19_177 1_20_176 set community 0:196 route-map calculator permit 2626 match community 1_21_175 1_22_174 1_23_173 1_24_172 1_25_171 set community 0:196 route-map calculator permit 2627 match community 1_26_170 1_27_169 1_28_168 1_29_167 1_30_166 set community 0:196 route-map calculator permit 2628 match community 1_31_165 1_32_164 1_33_163 1_34_162 1_35_161 set community 0:196 route-map calculator permit 2629 match community 1_36_160 1_37_159 1_38_158 1_39_157 1_40_156 set community 0:196 route-map calculator permit 2630 match community 1_41_155 1_42_154 1_43_153 1_44_152 1_45_151 set community 0:196 route-map calculator permit 2631 match community 1_46_150 1_47_149 1_48_148 1_49_147 1_50_146 set community 0:196 route-map calculator permit 2632 match community 1_51_145 1_52_144 1_53_143 1_54_142 1_55_141 set community 0:196 route-map calculator permit 2633 match community 1_56_140 1_57_139 1_58_138 1_59_137 1_60_136 set community 0:196 route-map calculator permit 2634 match community 1_61_135 1_62_134 1_63_133 1_64_132 1_65_131 set community 0:196 route-map calculator permit 2635 match community 1_66_130 1_67_129 1_68_128 1_69_127 1_70_126 set community 0:196 route-map calculator permit 2636 match community 1_71_125 1_72_124 1_73_123 1_74_122 1_75_121 set community 0:196 route-map calculator permit 2637 match community 1_76_120 1_77_119 1_78_118 1_79_117 1_80_116 set community 0:196 route-map calculator permit 2638 match community 1_81_115 1_82_114 1_83_113 1_84_112 1_85_111 set community 0:196 route-map calculator permit 2639 match community 1_86_110 1_87_109 1_88_108 1_89_107 1_90_106 set community 0:196 route-map calculator permit 2640 match community 1_91_105 1_92_104 1_93_103 1_94_102 1_95_101 set community 0:196 route-map calculator permit 2641 match community 1_96_100 1_97_99 1_98_98 c4_196_1 c3_197_1 set community 0:196 route-map calculator permit 2642 match community c3_198_2 c3_199_3 c3_200_4 c3_201_5 c3_202_6 set community 0:196 route-map calculator permit 2643 match community c3_203_7 c3_204_8 c3_205_9 c3_206_10 c3_207_11 set community 0:196 route-map calculator permit 2644 match community c3_208_12 c3_209_13 c3_210_14 c3_211_15 c3_212_16 set community 0:196 route-map calculator permit 2645 match community c3_213_17 c3_214_18 c3_215_19 c3_216_20 c3_217_21 set community 0:196 route-map calculator permit 2646 match community c3_218_22 c3_219_23 c3_220_24 c3_221_25 c3_222_26 set community 0:196 route-map calculator permit 2647 match community c3_223_27 c3_224_28 c3_225_29 c3_226_30 c3_227_31 set community 0:196 route-map calculator permit 2648 match community c3_228_32 c3_229_33 c3_230_34 c3_231_35 c3_232_36 set community 0:196 route-map calculator permit 2649 match community c3_233_37 c3_234_38 c3_235_39 c3_236_40 c3_237_41 set community 0:196 route-map calculator permit 2650 match community c3_238_42 c3_239_43 c3_240_44 c3_241_45 c3_242_46 set community 0:196 route-map calculator permit 2651 match community c3_243_47 c3_244_48 c3_245_49 c3_246_50 c3_247_51 set community 0:196 route-map calculator permit 2652 match community c3_248_52 c3_249_53 c3_250_54 c3_251_55 c3_252_56 set community 0:196 route-map calculator permit 2653 match community c3_253_57 c3_254_58 c3_255_59 c3_256_60 set community 0:196 ip community-list standard 2_8_255 permit 65000:2 0:8 0:255 ip community-list standard 2_10_204 permit 65000:2 0:10 0:204 ip community-list standard 2_12_170 permit 65000:2 0:12 0:170 ip community-list standard 2_15_136 permit 65000:2 0:15 0:136 ip community-list standard 2_17_120 permit 65000:2 0:17 0:120 ip community-list standard 2_20_102 permit 65000:2 0:20 0:102 ip community-list standard 2_24_85 permit 65000:2 0:24 0:85 ip community-list standard 2_30_68 permit 65000:2 0:30 0:68 ip community-list standard 2_34_60 permit 65000:2 0:34 0:60 ip community-list standard 2_40_51 permit 65000:2 0:40 0:51 route-map calculator permit 2654 match community 2_8_255 2_10_204 2_12_170 2_15_136 2_17_120 set community 0:2040 route-map calculator permit 2655 match community 2_20_102 2_24_85 2_30_68 2_34_60 2_40_51 set community 0:2040 ip community-list standard 2_11_169 permit 65000:2 0:11 0:169 ip community-list standard 2_13_143 permit 65000:2 0:13 0:143 route-map calculator permit 2656 match community 2_11_169 2_13_143 set community 0:1859 ip community-list standard 2_11_155 permit 65000:2 0:11 0:155 ip community-list standard 2_31_55 permit 65000:2 0:31 0:55 route-map calculator permit 2657 match community 2_11_155 2_31_55 set community 0:1705 ip community-list standard 2_41_61 permit 65000:2 0:41 0:61 route-map calculator permit 2658 match community 2_41_61 set community 0:2501 ip community-list standard 2_148_206 permit 65000:2 0:148 0:206 route-map calculator permit 2659 match community 2_148_206 set community 0:30488 ip community-list standard 2_140_142 permit 65000:2 0:140 0:142 route-map calculator permit 2660 match community 2_140_142 set community 0:19880 ip community-list standard 2_205_207 permit 65000:2 0:205 0:207 route-map calculator permit 2661 match community 2_205_207 set community 0:42435 ip community-list standard 2_44_157 permit 65000:2 0:44 0:157 route-map calculator permit 2662 match community 2_44_157 set community 0:6908 ip community-list standard 2_124_185 permit 65000:2 0:124 0:185 ip community-list standard 2_148_155 permit 65000:2 0:148 0:155 route-map calculator permit 2663 match community 2_124_185 2_148_155 set community 0:22940 ip community-list standard 2_200_236 permit 65000:2 0:200 0:236 route-map calculator permit 2664 match community 2_200_236 set community 0:47200 ip community-list standard 2_48_157 permit 65000:2 0:48 0:157 route-map calculator permit 2665 match community 2_48_157 set community 0:7536 ip community-list standard 2_72_131 permit 65000:2 0:72 0:131 route-map calculator permit 2666 match community 2_72_131 set community 0:9432 ip community-list standard 2_44_237 permit 65000:2 0:44 0:237 ip community-list standard 2_66_158 permit 65000:2 0:66 0:158 ip community-list standard 2_79_132 permit 65000:2 0:79 0:132 route-map calculator permit 2667 match community 2_44_237 2_66_158 2_79_132 set community 0:10428 ip community-list standard 2_60_230 permit 65000:2 0:60 0:230 ip community-list standard 2_69_200 permit 65000:2 0:69 0:200 ip community-list standard 2_75_184 permit 65000:2 0:75 0:184 ip community-list standard 2_92_150 permit 65000:2 0:92 0:150 ip community-list standard 2_100_138 permit 65000:2 0:100 0:138 ip community-list standard 2_115_120 permit 65000:2 0:115 0:120 route-map calculator permit 2668 match community 2_60_230 2_69_200 2_75_184 2_92_150 2_100_138 set community 0:13800 route-map calculator permit 2669 match community 2_115_120 set community 0:13800 ip community-list standard 2_39_234 permit 65000:2 0:39 0:234 ip community-list standard 2_54_169 permit 65000:2 0:54 0:169 ip community-list standard 2_78_117 permit 65000:2 0:78 0:117 route-map calculator permit 2670 match community 2_39_234 2_54_169 2_78_117 set community 0:9126 ip community-list standard 2_194_211 permit 65000:2 0:194 0:211 route-map calculator permit 2671 match community 2_194_211 set community 0:40934 ip community-list standard 2_231_236 permit 65000:2 0:231 0:236 route-map calculator permit 2672 match community 2_231_236 set community 0:54516 ip community-list standard 2_58_250 permit 65000:2 0:58 0:250 ip community-list standard 2_100_145 permit 65000:2 0:100 0:145 ip community-list standard 2_116_125 permit 65000:2 0:116 0:125 route-map calculator permit 2673 match community 2_58_250 2_100_145 2_116_125 set community 0:14500 ip community-list standard 2_31_94 permit 65000:2 0:31 0:94 ip community-list standard 2_47_62 permit 65000:2 0:47 0:62 route-map calculator permit 2674 match community 2_31_94 2_47_62 set community 0:2914 ip community-list standard 2_179_256 permit 65000:2 0:179 0:256 route-map calculator permit 2675 match community 2_179_256 set community 0:45824 ip community-list standard 2_85_197 permit 65000:2 0:85 0:197 route-map calculator permit 2676 match community 2_85_197 set community 0:16745 ip community-list standard 2_20_222 permit 65000:2 0:20 0:222 ip community-list standard 2_24_185 permit 65000:2 0:24 0:185 ip community-list standard 2_30_148 permit 65000:2 0:30 0:148 ip community-list standard 2_37_120 permit 65000:2 0:37 0:120 ip community-list standard 2_40_111 permit 65000:2 0:40 0:111 ip community-list standard 2_60_74 permit 65000:2 0:60 0:74 route-map calculator permit 2677 match community 2_20_222 2_24_185 2_30_148 2_37_120 2_40_111 set community 0:4440 route-map calculator permit 2678 match community 2_60_74 set community 0:4440 ip community-list standard 2_47_166 permit 65000:2 0:47 0:166 ip community-list standard 2_83_94 permit 65000:2 0:83 0:94 route-map calculator permit 2679 match community 2_47_166 2_83_94 set community 0:7802 ip community-list standard 2_151_171 permit 65000:2 0:151 0:171 route-map calculator permit 2680 match community 2_151_171 set community 0:25821 ip community-list standard 2_43_166 permit 65000:2 0:43 0:166 ip community-list standard 2_83_86 permit 65000:2 0:83 0:86 route-map calculator permit 2681 match community 2_43_166 2_83_86 set community 0:7138 ip community-list standard 2_19_184 permit 65000:2 0:19 0:184 ip community-list standard 2_23_152 permit 65000:2 0:23 0:152 ip community-list standard 2_38_92 permit 65000:2 0:38 0:92 ip community-list standard 2_46_76 permit 65000:2 0:46 0:76 route-map calculator permit 2682 match community 2_19_184 2_23_152 2_38_92 2_46_76 set community 0:3496 ip community-list standard 2_116_193 permit 65000:2 0:116 0:193 route-map calculator permit 2683 match community 2_116_193 set community 0:22388 ip community-list standard 2_8_166 permit 65000:2 0:8 0:166 ip community-list standard 2_16_83 permit 65000:2 0:16 0:83 route-map calculator permit 2684 match community 2_8_166 2_16_83 set community 0:1328 ip community-list standard 2_233_237 permit 65000:2 0:233 0:237 route-map calculator permit 2685 match community 2_233_237 set community 0:55221 ip community-list standard 2_233_233 permit 65000:2 0:233 0:233 route-map calculator permit 2686 match community 2_233_233 set community 0:54289 ip community-list standard 2_65_145 permit 65000:2 0:65 0:145 route-map calculator permit 2687 match community 2_65_145 set community 0:9425 ip community-list standard 2_4_240 permit 65000:2 0:4 0:240 ip community-list standard 2_5_192 permit 65000:2 0:5 0:192 ip community-list standard 2_6_160 permit 65000:2 0:6 0:160 ip community-list standard 2_8_120 permit 65000:2 0:8 0:120 ip community-list standard 2_10_96 permit 65000:2 0:10 0:96 ip community-list standard 2_12_80 permit 65000:2 0:12 0:80 ip community-list standard 2_15_64 permit 65000:2 0:15 0:64 ip community-list standard 2_16_60 permit 65000:2 0:16 0:60 ip community-list standard 2_20_48 permit 65000:2 0:20 0:48 ip community-list standard 2_24_40 permit 65000:2 0:24 0:40 ip community-list standard 2_30_32 permit 65000:2 0:30 0:32 route-map calculator permit 2688 match community 2_4_240 2_5_192 2_6_160 2_8_120 2_10_96 set community 0:960 route-map calculator permit 2689 match community 2_12_80 2_15_64 2_16_60 2_20_48 2_24_40 set community 0:960 route-map calculator permit 2690 match community 2_30_32 set community 0:960 ip community-list standard 2_19_101 permit 65000:2 0:19 0:101 route-map calculator permit 2691 match community 2_19_101 set community 0:1919 ip community-list standard 2_3_248 permit 65000:2 0:3 0:248 ip community-list standard 2_4_186 permit 65000:2 0:4 0:186 ip community-list standard 2_6_124 permit 65000:2 0:6 0:124 ip community-list standard 2_8_93 permit 65000:2 0:8 0:93 ip community-list standard 2_12_62 permit 65000:2 0:12 0:62 ip community-list standard 2_24_31 permit 65000:2 0:24 0:31 route-map calculator permit 2692 match community 2_3_248 2_4_186 2_6_124 2_8_93 2_12_62 set community 0:744 route-map calculator permit 2693 match community 2_24_31 set community 0:744 ip community-list standard 2_213_232 permit 65000:2 0:213 0:232 route-map calculator permit 2694 match community 2_213_232 set community 0:49416 ip community-list standard 2_16_172 permit 65000:2 0:16 0:172 ip community-list standard 2_32_86 permit 65000:2 0:32 0:86 ip community-list standard 2_43_64 permit 65000:2 0:43 0:64 route-map calculator permit 2695 match community 2_16_172 2_32_86 2_43_64 set community 0:2752 ip community-list standard 2_16_239 permit 65000:2 0:16 0:239 route-map calculator permit 2696 match community 2_16_239 set community 0:3824 ip community-list standard 2_142_202 permit 65000:2 0:142 0:202 route-map calculator permit 2697 match community 2_142_202 set community 0:28684 ip community-list standard 2_211_227 permit 65000:2 0:211 0:227 route-map calculator permit 2698 match community 2_211_227 set community 0:47897 ip community-list standard 2_70_241 permit 65000:2 0:70 0:241 route-map calculator permit 2699 match community 2_70_241 set community 0:16870 ip community-list standard 2_76_233 permit 65000:2 0:76 0:233 route-map calculator permit 2700 match community 2_76_233 set community 0:17708 ip community-list standard 2_17_242 permit 65000:2 0:17 0:242 ip community-list standard 2_22_187 permit 65000:2 0:22 0:187 ip community-list standard 2_34_121 permit 65000:2 0:34 0:121 route-map calculator permit 2701 match community 2_17_242 2_22_187 2_34_121 set community 0:4114 ip community-list standard 2_43_246 permit 65000:2 0:43 0:246 ip community-list standard 2_82_129 permit 65000:2 0:82 0:129 ip community-list standard 2_86_123 permit 65000:2 0:86 0:123 route-map calculator permit 2702 match community 2_43_246 2_82_129 2_86_123 set community 0:10578 ip community-list standard 2_170_221 permit 65000:2 0:170 0:221 route-map calculator permit 2703 match community 2_170_221 set community 0:37570 ip community-list standard 2_45_240 permit 65000:2 0:45 0:240 ip community-list standard 2_48_225 permit 65000:2 0:48 0:225 ip community-list standard 2_50_216 permit 65000:2 0:50 0:216 ip community-list standard 2_54_200 permit 65000:2 0:54 0:200 ip community-list standard 2_60_180 permit 65000:2 0:60 0:180 ip community-list standard 2_72_150 permit 65000:2 0:72 0:150 ip community-list standard 2_75_144 permit 65000:2 0:75 0:144 ip community-list standard 2_80_135 permit 65000:2 0:80 0:135 ip community-list standard 2_90_120 permit 65000:2 0:90 0:120 ip community-list standard 2_100_108 permit 65000:2 0:100 0:108 route-map calculator permit 2704 match community 2_45_240 2_48_225 2_50_216 2_54_200 2_60_180 set community 0:10800 route-map calculator permit 2705 match community 2_72_150 2_75_144 2_80_135 2_90_120 2_100_108 set community 0:10800 ip community-list standard 2_74_181 permit 65000:2 0:74 0:181 route-map calculator permit 2706 match community 2_74_181 set community 0:13394 ip community-list standard 2_71_224 permit 65000:2 0:71 0:224 ip community-list standard 2_112_142 permit 65000:2 0:112 0:142 route-map calculator permit 2707 match community 2_71_224 2_112_142 set community 0:15904 ip community-list standard 2_85_191 permit 65000:2 0:85 0:191 route-map calculator permit 2708 match community 2_85_191 set community 0:16235 ip community-list standard 2_169_219 permit 65000:2 0:169 0:219 route-map calculator permit 2709 match community 2_169_219 set community 0:37011 ip community-list standard 2_137_206 permit 65000:2 0:137 0:206 route-map calculator permit 2710 match community 2_137_206 set community 0:28222 ip community-list standard 2_156_169 permit 65000:2 0:156 0:169 route-map calculator permit 2711 match community 2_156_169 set community 0:26364 ip community-list standard 2_63_225 permit 65000:2 0:63 0:225 ip community-list standard 2_75_189 permit 65000:2 0:75 0:189 ip community-list standard 2_81_175 permit 65000:2 0:81 0:175 ip community-list standard 2_105_135 permit 65000:2 0:105 0:135 route-map calculator permit 2712 match community 2_63_225 2_75_189 2_81_175 2_105_135 set community 0:14175 ip community-list standard 2_65_234 permit 65000:2 0:65 0:234 ip community-list standard 2_78_195 permit 65000:2 0:78 0:195 ip community-list standard 2_90_169 permit 65000:2 0:90 0:169 ip community-list standard 2_117_130 permit 65000:2 0:117 0:130 route-map calculator permit 2713 match community 2_65_234 2_78_195 2_90_169 2_117_130 set community 0:15210 ip community-list standard 2_76_203 permit 65000:2 0:76 0:203 ip community-list standard 2_116_133 permit 65000:2 0:116 0:133 route-map calculator permit 2714 match community 2_76_203 2_116_133 set community 0:15428 ip community-list standard 2_11_146 permit 65000:2 0:11 0:146 ip community-list standard 2_22_73 permit 65000:2 0:22 0:73 route-map calculator permit 2715 match community 2_11_146 2_22_73 set community 0:1606 ip community-list standard 2_4_224 permit 65000:2 0:4 0:224 ip community-list standard 2_7_128 permit 65000:2 0:7 0:128 ip community-list standard 2_8_112 permit 65000:2 0:8 0:112 ip community-list standard 2_14_64 permit 65000:2 0:14 0:64 ip community-list standard 2_16_56 permit 65000:2 0:16 0:56 ip community-list standard 2_28_32 permit 65000:2 0:28 0:32 route-map calculator permit 2716 match community 2_4_224 2_7_128 2_8_112 2_14_64 2_16_56 set community 0:896 route-map calculator permit 2717 match community 2_28_32 set community 0:896 ip community-list standard 2_22_208 permit 65000:2 0:22 0:208 ip community-list standard 2_26_176 permit 65000:2 0:26 0:176 ip community-list standard 2_32_143 permit 65000:2 0:32 0:143 ip community-list standard 2_44_104 permit 65000:2 0:44 0:104 ip community-list standard 2_52_88 permit 65000:2 0:52 0:88 route-map calculator permit 2718 match community 2_22_208 2_26_176 2_32_143 2_44_104 2_52_88 set community 0:4576 ip community-list standard 2_178_207 permit 65000:2 0:178 0:207 route-map calculator permit 2719 match community 2_178_207 set community 0:36846 ip community-list standard 2_212_251 permit 65000:2 0:212 0:251 route-map calculator permit 2720 match community 2_212_251 set community 0:53212 ip community-list standard 2_200_253 permit 65000:2 0:200 0:253 ip community-list standard 2_220_230 permit 65000:2 0:220 0:230 route-map calculator permit 2721 match community 2_200_253 2_220_230 set community 0:50600 ip community-list standard 2_12_249 permit 65000:2 0:12 0:249 ip community-list standard 2_18_166 permit 65000:2 0:18 0:166 ip community-list standard 2_36_83 permit 65000:2 0:36 0:83 route-map calculator permit 2722 match community 2_12_249 2_18_166 2_36_83 set community 0:2988 ip community-list standard 2_177_201 permit 65000:2 0:177 0:201 route-map calculator permit 2723 match community 2_177_201 set community 0:35577 ip community-list standard 2_248_255 permit 65000:2 0:248 0:255 route-map calculator permit 2724 match community 2_248_255 set community 0:63240 ip community-list standard 2_178_189 permit 65000:2 0:178 0:189 route-map calculator permit 2725 match community 2_178_189 set community 0:33642 ip community-list standard 2_171_240 permit 65000:2 0:171 0:240 ip community-list standard 2_180_228 permit 65000:2 0:180 0:228 ip community-list standard 2_190_216 permit 65000:2 0:190 0:216 route-map calculator permit 2726 match community 2_171_240 2_180_228 2_190_216 set community 0:41040 ip community-list standard 2_73_176 permit 65000:2 0:73 0:176 ip community-list standard 2_88_146 permit 65000:2 0:88 0:146 route-map calculator permit 2727 match community 2_73_176 2_88_146 set community 0:12848 ip community-list standard 2_32_188 permit 65000:2 0:32 0:188 ip community-list standard 2_47_128 permit 65000:2 0:47 0:128 ip community-list standard 2_64_94 permit 65000:2 0:64 0:94 route-map calculator permit 2728 match community 2_32_188 2_47_128 2_64_94 set community 0:6016 ip community-list standard 2_46_230 permit 65000:2 0:46 0:230 ip community-list standard 2_92_115 permit 65000:2 0:92 0:115 route-map calculator permit 2729 match community 2_46_230 2_92_115 set community 0:10580 ip community-list standard 2_45_131 permit 65000:2 0:45 0:131 route-map calculator permit 2730 match community 2_45_131 set community 0:5895 ip community-list standard 2_190_249 permit 65000:2 0:190 0:249 route-map calculator permit 2731 match community 2_190_249 set community 0:47310 ip community-list standard 2_181_225 permit 65000:2 0:181 0:225 route-map calculator permit 2732 match community 2_181_225 set community 0:40725 ip community-list standard 2_48_234 permit 65000:2 0:48 0:234 ip community-list standard 2_52_216 permit 65000:2 0:52 0:216 ip community-list standard 2_54_208 permit 65000:2 0:54 0:208 ip community-list standard 2_72_156 permit 65000:2 0:72 0:156 ip community-list standard 2_78_144 permit 65000:2 0:78 0:144 ip community-list standard 2_96_117 permit 65000:2 0:96 0:117 ip community-list standard 2_104_108 permit 65000:2 0:104 0:108 route-map calculator permit 2733 match community 2_48_234 2_52_216 2_54_208 2_72_156 2_78_144 set community 0:11232 route-map calculator permit 2734 match community 2_96_117 2_104_108 set community 0:11232 ip community-list standard 2_14_137 permit 65000:2 0:14 0:137 route-map calculator permit 2735 match community 2_14_137 set community 0:1918 ip community-list standard 2_206_216 permit 65000:2 0:206 0:216 route-map calculator permit 2736 match community 2_206_216 set community 0:44496 ip community-list standard 2_57_171 permit 65000:2 0:57 0:171 route-map calculator permit 2737 match community 2_57_171 set community 0:9747 ip community-list standard 2_113_113 permit 65000:2 0:113 0:113 route-map calculator permit 2738 match community 2_113_113 set community 0:12769 ip community-list standard 2_194_201 permit 65000:2 0:194 0:201 route-map calculator permit 2739 match community 2_194_201 set community 0:38994 ip community-list standard 2_5_198 permit 65000:2 0:5 0:198 ip community-list standard 2_6_165 permit 65000:2 0:6 0:165 ip community-list standard 2_9_110 permit 65000:2 0:9 0:110 ip community-list standard 2_10_99 permit 65000:2 0:10 0:99 ip community-list standard 2_11_90 permit 65000:2 0:11 0:90 ip community-list standard 2_15_66 permit 65000:2 0:15 0:66 ip community-list standard 2_18_55 permit 65000:2 0:18 0:55 ip community-list standard 2_22_45 permit 65000:2 0:22 0:45 ip community-list standard 2_30_33 permit 65000:2 0:30 0:33 route-map calculator permit 2740 match community 2_5_198 2_6_165 2_9_110 2_10_99 2_11_90 set community 0:990 route-map calculator permit 2741 match community 2_15_66 2_18_55 2_22_45 2_30_33 set community 0:990 ip community-list standard 2_191_226 permit 65000:2 0:191 0:226 route-map calculator permit 2742 match community 2_191_226 set community 0:43166 ip community-list standard 2_184_214 permit 65000:2 0:184 0:214 route-map calculator permit 2743 match community 2_184_214 set community 0:39376 ip community-list standard 2_156_193 permit 65000:2 0:156 0:193 route-map calculator permit 2744 match community 2_156_193 set community 0:30108 ip community-list standard 2_187_239 permit 65000:2 0:187 0:239 route-map calculator permit 2745 match community 2_187_239 set community 0:44693 ip community-list standard 2_185_220 permit 65000:2 0:185 0:220 route-map calculator permit 2746 match community 2_185_220 set community 0:40700 ip community-list standard 2_130_202 permit 65000:2 0:130 0:202 route-map calculator permit 2747 match community 2_130_202 set community 0:26260 ip community-list standard 2_43_49 permit 65000:2 0:43 0:49 route-map calculator permit 2748 match community 2_43_49 set community 0:2107 ip community-list standard 2_54_242 permit 65000:2 0:54 0:242 ip community-list standard 2_66_198 permit 65000:2 0:66 0:198 ip community-list standard 2_99_132 permit 65000:2 0:99 0:132 ip community-list standard 2_108_121 permit 65000:2 0:108 0:121 route-map calculator permit 2749 match community 2_54_242 2_66_198 2_99_132 2_108_121 set community 0:13068 ip community-list standard 2_217_217 permit 65000:2 0:217 0:217 route-map calculator permit 2750 match community 2_217_217 set community 0:47089 ip community-list standard 2_152_223 permit 65000:2 0:152 0:223 route-map calculator permit 2751 match community 2_152_223 set community 0:33896 ip community-list standard 2_173_240 permit 65000:2 0:173 0:240 route-map calculator permit 2752 match community 2_173_240 set community 0:41520 ip community-list standard 2_61_170 permit 65000:2 0:61 0:170 ip community-list standard 2_85_122 permit 65000:2 0:85 0:122 route-map calculator permit 2753 match community 2_61_170 2_85_122 set community 0:10370 ip community-list standard 2_143_163 permit 65000:2 0:143 0:163 route-map calculator permit 2754 match community 2_143_163 set community 0:23309 ip community-list standard 2_198_226 permit 65000:2 0:198 0:226 route-map calculator permit 2755 match community 2_198_226 set community 0:44748 ip community-list standard 2_65_101 permit 65000:2 0:65 0:101 route-map calculator permit 2756 match community 2_65_101 set community 0:6565 ip community-list standard 2_123_123 permit 65000:2 0:123 0:123 route-map calculator permit 2757 match community 2_123_123 set community 0:15129 ip community-list standard 2_31_124 permit 65000:2 0:31 0:124 ip community-list standard 2_62_62 permit 65000:2 0:62 0:62 route-map calculator permit 2758 match community 2_31_124 2_62_62 set community 0:3844 ip community-list standard 2_160_256 permit 65000:2 0:160 0:256 route-map calculator permit 2759 match community 2_160_256 set community 0:40960 ip community-list standard 2_46_166 permit 65000:2 0:46 0:166 ip community-list standard 2_83_92 permit 65000:2 0:83 0:92 route-map calculator permit 2760 match community 2_46_166 2_83_92 set community 0:7636 ip community-list standard 2_198_240 permit 65000:2 0:198 0:240 ip community-list standard 2_216_220 permit 65000:2 0:216 0:220 route-map calculator permit 2761 match community 2_198_240 2_216_220 set community 0:47520 ip community-list standard 2_71_232 permit 65000:2 0:71 0:232 ip community-list standard 2_116_142 permit 65000:2 0:116 0:142 route-map calculator permit 2762 match community 2_71_232 2_116_142 set community 0:16472 ip community-list standard 2_16_209 permit 65000:2 0:16 0:209 ip community-list standard 2_19_176 permit 65000:2 0:19 0:176 ip community-list standard 2_22_152 permit 65000:2 0:22 0:152 ip community-list standard 2_38_88 permit 65000:2 0:38 0:88 ip community-list standard 2_44_76 permit 65000:2 0:44 0:76 route-map calculator permit 2763 match community 2_16_209 2_19_176 2_22_152 2_38_88 2_44_76 set community 0:3344 ip community-list standard 2_128_253 permit 65000:2 0:128 0:253 ip community-list standard 2_176_184 permit 65000:2 0:176 0:184 route-map calculator permit 2764 match community 2_128_253 2_176_184 set community 0:32384 ip community-list standard 2_169_206 permit 65000:2 0:169 0:206 route-map calculator permit 2765 match community 2_169_206 set community 0:34814 ip community-list standard 2_109_250 permit 65000:2 0:109 0:250 ip community-list standard 2_125_218 permit 65000:2 0:125 0:218 route-map calculator permit 2766 match community 2_109_250 2_125_218 set community 0:27250 ip community-list standard 2_59_209 permit 65000:2 0:59 0:209 route-map calculator permit 2767 match community 2_59_209 set community 0:12331 ip community-list standard 2_165_232 permit 65000:2 0:165 0:232 ip community-list standard 2_174_220 permit 65000:2 0:174 0:220 route-map calculator permit 2768 match community 2_165_232 2_174_220 set community 0:38280 ip community-list standard 2_43_219 permit 65000:2 0:43 0:219 ip community-list standard 2_73_129 permit 65000:2 0:73 0:129 route-map calculator permit 2769 match community 2_43_219 2_73_129 set community 0:9417 ip community-list standard 2_49_238 permit 65000:2 0:49 0:238 ip community-list standard 2_98_119 permit 65000:2 0:98 0:119 route-map calculator permit 2770 match community 2_49_238 2_98_119 set community 0:11662 ip community-list standard 2_75_181 permit 65000:2 0:75 0:181 route-map calculator permit 2771 match community 2_75_181 set community 0:13575 ip community-list standard 2_133_179 permit 65000:2 0:133 0:179 route-map calculator permit 2772 match community 2_133_179 set community 0:23807 ip community-list standard 2_66_169 permit 65000:2 0:66 0:169 ip community-list standard 2_78_143 permit 65000:2 0:78 0:143 route-map calculator permit 2773 match community 2_66_169 2_78_143 set community 0:11154 ip community-list standard 2_22_243 permit 65000:2 0:22 0:243 ip community-list standard 2_27_198 permit 65000:2 0:27 0:198 ip community-list standard 2_33_162 permit 65000:2 0:33 0:162 ip community-list standard 2_54_99 permit 65000:2 0:54 0:99 ip community-list standard 2_66_81 permit 65000:2 0:66 0:81 route-map calculator permit 2774 match community 2_22_243 2_27_198 2_33_162 2_54_99 2_66_81 set community 0:5346 ip community-list standard 2_162_203 permit 65000:2 0:162 0:203 ip community-list standard 2_174_189 permit 65000:2 0:174 0:189 route-map calculator permit 2775 match community 2_162_203 2_174_189 set community 0:32886 ip community-list standard 2_130_217 permit 65000:2 0:130 0:217 ip community-list standard 2_155_182 permit 65000:2 0:155 0:182 route-map calculator permit 2776 match community 2_130_217 2_155_182 set community 0:28210 ip community-list standard 2_189_255 permit 65000:2 0:189 0:255 route-map calculator permit 2777 match community 2_189_255 set community 0:48195 ip community-list standard 2_146_211 permit 65000:2 0:146 0:211 route-map calculator permit 2778 match community 2_146_211 set community 0:30806 ip community-list standard 2_107_153 permit 65000:2 0:107 0:153 route-map calculator permit 2779 match community 2_107_153 set community 0:16371 ip community-list standard 2_37_59 permit 65000:2 0:37 0:59 route-map calculator permit 2780 match community 2_37_59 set community 0:2183 ip community-list standard 2_203_248 permit 65000:2 0:203 0:248 ip community-list standard 2_217_232 permit 65000:2 0:217 0:232 route-map calculator permit 2781 match community 2_203_248 2_217_232 set community 0:50344 ip community-list standard 2_25_61 permit 65000:2 0:25 0:61 route-map calculator permit 2782 match community 2_25_61 set community 0:1525 ip community-list standard 2_95_131 permit 65000:2 0:95 0:131 route-map calculator permit 2783 match community 2_95_131 set community 0:12445 ip community-list standard 2_123_235 permit 65000:2 0:123 0:235 ip community-list standard 2_141_205 permit 65000:2 0:141 0:205 route-map calculator permit 2784 match community 2_123_235 2_141_205 set community 0:28905 ip community-list standard 2_160_212 permit 65000:2 0:160 0:212 route-map calculator permit 2785 match community 2_160_212 set community 0:33920 ip community-list standard 2_11_256 permit 65000:2 0:11 0:256 ip community-list standard 2_16_176 permit 65000:2 0:16 0:176 ip community-list standard 2_22_128 permit 65000:2 0:22 0:128 ip community-list standard 2_32_88 permit 65000:2 0:32 0:88 ip community-list standard 2_44_64 permit 65000:2 0:44 0:64 route-map calculator permit 2786 match community 2_11_256 2_16_176 2_22_128 2_32_88 2_44_64 set community 0:2816 ip community-list standard 2_120_219 permit 65000:2 0:120 0:219 ip community-list standard 2_146_180 permit 65000:2 0:146 0:180 route-map calculator permit 2787 match community 2_120_219 2_146_180 set community 0:26280 ip community-list standard 2_217_243 permit 65000:2 0:217 0:243 route-map calculator permit 2788 match community 2_217_243 set community 0:52731 ip community-list standard 2_191_230 permit 65000:2 0:191 0:230 route-map calculator permit 2789 match community 2_191_230 set community 0:43930 ip community-list standard 2_25_255 permit 65000:2 0:25 0:255 ip community-list standard 2_51_125 permit 65000:2 0:51 0:125 ip community-list standard 2_75_85 permit 65000:2 0:75 0:85 route-map calculator permit 2790 match community 2_25_255 2_51_125 2_75_85 set community 0:6375 ip community-list standard 2_201_218 permit 65000:2 0:201 0:218 route-map calculator permit 2791 match community 2_201_218 set community 0:43818 ip community-list standard 2_131_148 permit 65000:2 0:131 0:148 route-map calculator permit 2792 match community 2_131_148 set community 0:19388 ip community-list standard 2_250_253 permit 65000:2 0:250 0:253 route-map calculator permit 2793 match community 2_250_253 set community 0:63250 ip community-list standard 2_182_240 permit 65000:2 0:182 0:240 ip community-list standard 2_195_224 permit 65000:2 0:195 0:224 ip community-list standard 2_208_210 permit 65000:2 0:208 0:210 route-map calculator permit 2794 match community 2_182_240 2_195_224 2_208_210 set community 0:43680 ip community-list standard 2_69_235 permit 65000:2 0:69 0:235 ip community-list standard 2_115_141 permit 65000:2 0:115 0:141 route-map calculator permit 2795 match community 2_69_235 2_115_141 set community 0:16215 ip community-list standard 2_141_239 permit 65000:2 0:141 0:239 route-map calculator permit 2796 match community 2_141_239 set community 0:33699 ip community-list standard 2_105_236 permit 65000:2 0:105 0:236 ip community-list standard 2_118_210 permit 65000:2 0:118 0:210 ip community-list standard 2_140_177 permit 65000:2 0:140 0:177 route-map calculator permit 2797 match community 2_105_236 2_118_210 2_140_177 set community 0:24780 ip community-list standard 2_237_247 permit 65000:2 0:237 0:247 route-map calculator permit 2798 match community 2_237_247 set community 0:58539 ip community-list standard 2_178_217 permit 65000:2 0:178 0:217 route-map calculator permit 2799 match community 2_178_217 set community 0:38626 ip community-list standard 2_88_219 permit 65000:2 0:88 0:219 ip community-list standard 2_132_146 permit 65000:2 0:132 0:146 route-map calculator permit 2800 match community 2_88_219 2_132_146 set community 0:19272 ip community-list standard 2_81_149 permit 65000:2 0:81 0:149 route-map calculator permit 2801 match community 2_81_149 set community 0:12069 ip community-list standard 2_132_245 permit 65000:2 0:132 0:245 ip community-list standard 2_140_231 permit 65000:2 0:140 0:231 ip community-list standard 2_147_220 permit 65000:2 0:147 0:220 ip community-list standard 2_154_210 permit 65000:2 0:154 0:210 ip community-list standard 2_165_196 permit 65000:2 0:165 0:196 route-map calculator permit 2802 match community 2_132_245 2_140_231 2_147_220 2_154_210 2_165_196 set community 0:32340 ip community-list standard 2_83_241 permit 65000:2 0:83 0:241 route-map calculator permit 2803 match community 2_83_241 set community 0:20003 ip community-list standard 2_56_131 permit 65000:2 0:56 0:131 route-map calculator permit 2804 match community 2_56_131 set community 0:7336 ip community-list standard 2_122_209 permit 65000:2 0:122 0:209 route-map calculator permit 2805 match community 2_122_209 set community 0:25498 ip community-list standard 2_144_163 permit 65000:2 0:144 0:163 route-map calculator permit 2806 match community 2_144_163 set community 0:23472 ip community-list standard 2_106_177 permit 65000:2 0:106 0:177 ip community-list standard 2_118_159 permit 65000:2 0:118 0:159 route-map calculator permit 2807 match community 2_106_177 2_118_159 set community 0:18762 ip community-list standard 2_21_161 permit 65000:2 0:21 0:161 ip community-list standard 2_23_147 permit 65000:2 0:23 0:147 ip community-list standard 2_49_69 permit 65000:2 0:49 0:69 route-map calculator permit 2808 match community 2_21_161 2_23_147 2_49_69 set community 0:3381 ip community-list standard 2_55_193 permit 65000:2 0:55 0:193 route-map calculator permit 2809 match community 2_55_193 set community 0:10615 ip community-list standard 2_232_254 permit 65000:2 0:232 0:254 route-map calculator permit 2810 match community 2_232_254 set community 0:58928 ip community-list standard 2_87_127 permit 65000:2 0:87 0:127 route-map calculator permit 2811 match community 2_87_127 set community 0:11049 ip community-list standard 2_183_183 permit 65000:2 0:183 0:183 route-map calculator permit 2812 match community 2_183_183 set community 0:33489 ip community-list standard 2_31_236 permit 65000:2 0:31 0:236 ip community-list standard 2_59_124 permit 65000:2 0:59 0:124 ip community-list standard 2_62_118 permit 65000:2 0:62 0:118 route-map calculator permit 2813 match community 2_31_236 2_59_124 2_62_118 set community 0:7316 ip community-list standard 2_11_31 permit 65000:2 0:11 0:31 ip community-list standard 1_85_256 permit 65000:1 0:85 0:256 ip community-list standard 1_86_255 permit 65000:1 0:86 0:255 ip community-list standard 1_87_254 permit 65000:1 0:87 0:254 ip community-list standard 1_88_253 permit 65000:1 0:88 0:253 ip community-list standard 1_89_252 permit 65000:1 0:89 0:252 ip community-list standard 1_90_251 permit 65000:1 0:90 0:251 ip community-list standard 1_91_250 permit 65000:1 0:91 0:250 ip community-list standard 1_92_249 permit 65000:1 0:92 0:249 ip community-list standard 1_93_248 permit 65000:1 0:93 0:248 ip community-list standard 1_94_247 permit 65000:1 0:94 0:247 ip community-list standard 1_95_246 permit 65000:1 0:95 0:246 ip community-list standard 1_96_245 permit 65000:1 0:96 0:245 ip community-list standard 1_97_244 permit 65000:1 0:97 0:244 ip community-list standard 1_98_243 permit 65000:1 0:98 0:243 ip community-list standard 1_99_242 permit 65000:1 0:99 0:242 ip community-list standard 1_100_241 permit 65000:1 0:100 0:241 ip community-list standard 1_101_240 permit 65000:1 0:101 0:240 ip community-list standard 1_102_239 permit 65000:1 0:102 0:239 ip community-list standard 1_103_238 permit 65000:1 0:103 0:238 ip community-list standard 1_104_237 permit 65000:1 0:104 0:237 ip community-list standard 1_105_236 permit 65000:1 0:105 0:236 ip community-list standard 1_106_235 permit 65000:1 0:106 0:235 ip community-list standard 1_107_234 permit 65000:1 0:107 0:234 ip community-list standard 1_108_233 permit 65000:1 0:108 0:233 ip community-list standard 1_109_232 permit 65000:1 0:109 0:232 ip community-list standard 1_110_231 permit 65000:1 0:110 0:231 ip community-list standard 1_111_230 permit 65000:1 0:111 0:230 ip community-list standard 1_112_229 permit 65000:1 0:112 0:229 ip community-list standard 1_113_228 permit 65000:1 0:113 0:228 ip community-list standard 1_114_227 permit 65000:1 0:114 0:227 ip community-list standard 1_115_226 permit 65000:1 0:115 0:226 ip community-list standard 1_116_225 permit 65000:1 0:116 0:225 ip community-list standard 1_117_224 permit 65000:1 0:117 0:224 ip community-list standard 1_118_223 permit 65000:1 0:118 0:223 ip community-list standard 1_119_222 permit 65000:1 0:119 0:222 ip community-list standard 1_120_221 permit 65000:1 0:120 0:221 ip community-list standard 1_121_220 permit 65000:1 0:121 0:220 ip community-list standard 1_122_219 permit 65000:1 0:122 0:219 ip community-list standard 1_123_218 permit 65000:1 0:123 0:218 ip community-list standard 1_124_217 permit 65000:1 0:124 0:217 ip community-list standard 1_125_216 permit 65000:1 0:125 0:216 ip community-list standard 1_126_215 permit 65000:1 0:126 0:215 ip community-list standard 1_127_214 permit 65000:1 0:127 0:214 ip community-list standard 1_128_213 permit 65000:1 0:128 0:213 ip community-list standard 1_129_212 permit 65000:1 0:129 0:212 ip community-list standard 1_130_211 permit 65000:1 0:130 0:211 ip community-list standard 1_131_210 permit 65000:1 0:131 0:210 ip community-list standard 1_132_209 permit 65000:1 0:132 0:209 ip community-list standard 1_133_208 permit 65000:1 0:133 0:208 ip community-list standard 1_134_207 permit 65000:1 0:134 0:207 ip community-list standard 1_135_206 permit 65000:1 0:135 0:206 ip community-list standard 1_136_205 permit 65000:1 0:136 0:205 ip community-list standard 1_137_204 permit 65000:1 0:137 0:204 ip community-list standard 1_138_203 permit 65000:1 0:138 0:203 ip community-list standard 1_139_202 permit 65000:1 0:139 0:202 ip community-list standard 1_140_201 permit 65000:1 0:140 0:201 ip community-list standard 1_141_200 permit 65000:1 0:141 0:200 ip community-list standard 1_142_199 permit 65000:1 0:142 0:199 ip community-list standard 1_143_198 permit 65000:1 0:143 0:198 ip community-list standard 1_144_197 permit 65000:1 0:144 0:197 ip community-list standard 1_145_196 permit 65000:1 0:145 0:196 ip community-list standard 1_146_195 permit 65000:1 0:146 0:195 ip community-list standard 1_147_194 permit 65000:1 0:147 0:194 ip community-list standard 1_148_193 permit 65000:1 0:148 0:193 ip community-list standard 1_149_192 permit 65000:1 0:149 0:192 ip community-list standard 1_150_191 permit 65000:1 0:150 0:191 ip community-list standard 1_151_190 permit 65000:1 0:151 0:190 ip community-list standard 1_152_189 permit 65000:1 0:152 0:189 ip community-list standard 1_153_188 permit 65000:1 0:153 0:188 ip community-list standard 1_154_187 permit 65000:1 0:154 0:187 ip community-list standard 1_155_186 permit 65000:1 0:155 0:186 ip community-list standard 1_156_185 permit 65000:1 0:156 0:185 ip community-list standard 1_157_184 permit 65000:1 0:157 0:184 ip community-list standard 1_158_183 permit 65000:1 0:158 0:183 ip community-list standard 1_159_182 permit 65000:1 0:159 0:182 ip community-list standard 1_160_181 permit 65000:1 0:160 0:181 ip community-list standard 1_161_180 permit 65000:1 0:161 0:180 ip community-list standard 1_162_179 permit 65000:1 0:162 0:179 ip community-list standard 1_163_178 permit 65000:1 0:163 0:178 ip community-list standard 1_164_177 permit 65000:1 0:164 0:177 ip community-list standard 1_165_176 permit 65000:1 0:165 0:176 ip community-list standard 1_166_175 permit 65000:1 0:166 0:175 ip community-list standard 1_167_174 permit 65000:1 0:167 0:174 ip community-list standard 1_168_173 permit 65000:1 0:168 0:173 ip community-list standard 1_169_172 permit 65000:1 0:169 0:172 ip community-list standard 1_170_171 permit 65000:1 0:170 0:171 route-map calculator permit 2814 match community 2_11_31 1_85_256 1_86_255 1_87_254 1_88_253 set community 0:341 route-map calculator permit 2815 match community 1_89_252 1_90_251 1_91_250 1_92_249 1_93_248 set community 0:341 route-map calculator permit 2816 match community 1_94_247 1_95_246 1_96_245 1_97_244 1_98_243 set community 0:341 route-map calculator permit 2817 match community 1_99_242 1_100_241 1_101_240 1_102_239 1_103_238 set community 0:341 route-map calculator permit 2818 match community 1_104_237 1_105_236 1_106_235 1_107_234 1_108_233 set community 0:341 route-map calculator permit 2819 match community 1_109_232 1_110_231 1_111_230 1_112_229 1_113_228 set community 0:341 route-map calculator permit 2820 match community 1_114_227 1_115_226 1_116_225 1_117_224 1_118_223 set community 0:341 route-map calculator permit 2821 match community 1_119_222 1_120_221 1_121_220 1_122_219 1_123_218 set community 0:341 route-map calculator permit 2822 match community 1_124_217 1_125_216 1_126_215 1_127_214 1_128_213 set community 0:341 route-map calculator permit 2823 match community 1_129_212 1_130_211 1_131_210 1_132_209 1_133_208 set community 0:341 route-map calculator permit 2824 match community 1_134_207 1_135_206 1_136_205 1_137_204 1_138_203 set community 0:341 route-map calculator permit 2825 match community 1_139_202 1_140_201 1_141_200 1_142_199 1_143_198 set community 0:341 route-map calculator permit 2826 match community 1_144_197 1_145_196 1_146_195 1_147_194 1_148_193 set community 0:341 route-map calculator permit 2827 match community 1_149_192 1_150_191 1_151_190 1_152_189 1_153_188 set community 0:341 route-map calculator permit 2828 match community 1_154_187 1_155_186 1_156_185 1_157_184 1_158_183 set community 0:341 route-map calculator permit 2829 match community 1_159_182 1_160_181 1_161_180 1_162_179 1_163_178 set community 0:341 route-map calculator permit 2830 match community 1_164_177 1_165_176 1_166_175 1_167_174 1_168_173 set community 0:341 route-map calculator permit 2831 match community 1_169_172 1_170_171 set community 0:341 ip community-list standard 2_61_211 permit 65000:2 0:61 0:211 route-map calculator permit 2832 match community 2_61_211 set community 0:12871 ip community-list standard 2_185_233 permit 65000:2 0:185 0:233 route-map calculator permit 2833 match community 2_185_233 set community 0:43105 ip community-list standard 2_52_224 permit 65000:2 0:52 0:224 ip community-list standard 2_56_208 permit 65000:2 0:56 0:208 ip community-list standard 2_64_182 permit 65000:2 0:64 0:182 ip community-list standard 2_91_128 permit 65000:2 0:91 0:128 ip community-list standard 2_104_112 permit 65000:2 0:104 0:112 route-map calculator permit 2834 match community 2_52_224 2_56_208 2_64_182 2_91_128 2_104_112 set community 0:11648 ip community-list standard 2_171_178 permit 65000:2 0:171 0:178 route-map calculator permit 2835 match community 2_171_178 set community 0:30438 ip community-list standard 2_172_184 permit 65000:2 0:172 0:184 route-map calculator permit 2836 match community 2_172_184 set community 0:31648 ip community-list standard 2_191_203 permit 65000:2 0:191 0:203 route-map calculator permit 2837 match community 2_191_203 set community 0:38773 ip community-list standard 2_60_247 permit 65000:2 0:60 0:247 ip community-list standard 2_65_228 permit 65000:2 0:65 0:228 ip community-list standard 2_76_195 permit 65000:2 0:76 0:195 ip community-list standard 2_78_190 permit 65000:2 0:78 0:190 ip community-list standard 2_95_156 permit 65000:2 0:95 0:156 ip community-list standard 2_114_130 permit 65000:2 0:114 0:130 route-map calculator permit 2838 match community 2_60_247 2_65_228 2_76_195 2_78_190 2_95_156 set community 0:14820 route-map calculator permit 2839 match community 2_114_130 set community 0:14820 ip community-list standard 2_153_232 permit 65000:2 0:153 0:232 ip community-list standard 2_174_204 permit 65000:2 0:174 0:204 route-map calculator permit 2840 match community 2_153_232 2_174_204 set community 0:35496 ip community-list standard 2_190_201 permit 65000:2 0:190 0:201 route-map calculator permit 2841 match community 2_190_201 set community 0:38190 ip community-list standard 2_139_229 permit 65000:2 0:139 0:229 route-map calculator permit 2842 match community 2_139_229 set community 0:31831 ip community-list standard 2_141_229 permit 65000:2 0:141 0:229 route-map calculator permit 2843 match community 2_141_229 set community 0:32289 ip community-list standard 2_49_171 permit 65000:2 0:49 0:171 ip community-list standard 2_57_147 permit 65000:2 0:57 0:147 ip community-list standard 2_63_133 permit 65000:2 0:63 0:133 route-map calculator permit 2844 match community 2_49_171 2_57_147 2_63_133 set community 0:8379 ip community-list standard 2_72_157 permit 65000:2 0:72 0:157 route-map calculator permit 2845 match community 2_72_157 set community 0:11304 ip community-list standard 2_29_71 permit 65000:2 0:29 0:71 route-map calculator permit 2846 match community 2_29_71 set community 0:2059 ip community-list standard 2_19_252 permit 65000:2 0:19 0:252 ip community-list standard 2_21_228 permit 65000:2 0:21 0:228 ip community-list standard 2_28_171 permit 65000:2 0:28 0:171 ip community-list standard 2_36_133 permit 65000:2 0:36 0:133 ip community-list standard 2_38_126 permit 65000:2 0:38 0:126 ip community-list standard 2_42_114 permit 65000:2 0:42 0:114 ip community-list standard 2_57_84 permit 65000:2 0:57 0:84 ip community-list standard 2_63_76 permit 65000:2 0:63 0:76 route-map calculator permit 2847 match community 2_19_252 2_21_228 2_28_171 2_36_133 2_38_126 set community 0:4788 route-map calculator permit 2848 match community 2_42_114 2_57_84 2_63_76 set community 0:4788 ip community-list standard 2_38_237 permit 65000:2 0:38 0:237 ip community-list standard 2_57_158 permit 65000:2 0:57 0:158 ip community-list standard 2_79_114 permit 65000:2 0:79 0:114 route-map calculator permit 2849 match community 2_38_237 2_57_158 2_79_114 set community 0:9006 ip community-list standard 2_77_113 permit 65000:2 0:77 0:113 route-map calculator permit 2850 match community 2_77_113 set community 0:8701 ip community-list standard 2_163_208 permit 65000:2 0:163 0:208 route-map calculator permit 2851 match community 2_163_208 set community 0:33904 ip community-list standard 2_59_203 permit 65000:2 0:59 0:203 route-map calculator permit 2852 match community 2_59_203 set community 0:11977 ip community-list standard 2_102_243 permit 65000:2 0:102 0:243 ip community-list standard 2_153_162 permit 65000:2 0:153 0:162 route-map calculator permit 2853 match community 2_102_243 2_153_162 set community 0:24786 ip community-list standard 2_58_240 permit 65000:2 0:58 0:240 ip community-list standard 2_60_232 permit 65000:2 0:60 0:232 ip community-list standard 2_80_174 permit 65000:2 0:80 0:174 ip community-list standard 2_87_160 permit 65000:2 0:87 0:160 ip community-list standard 2_96_145 permit 65000:2 0:96 0:145 ip community-list standard 2_116_120 permit 65000:2 0:116 0:120 route-map calculator permit 2854 match community 2_58_240 2_60_232 2_80_174 2_87_160 2_96_145 set community 0:13920 route-map calculator permit 2855 match community 2_116_120 set community 0:13920 ip community-list standard 1_1_19 permit 65000:1 0:1 0:19 ip community-list standard 2_1_20 permit 65000:2 0:1 0:20 ip community-list standard 2_2_10 permit 65000:2 0:2 0:10 ip community-list standard 1_2_18 permit 65000:1 0:2 0:18 ip community-list standard 1_3_17 permit 65000:1 0:3 0:17 ip community-list standard 2_4_5 permit 65000:2 0:4 0:5 ip community-list standard 1_4_16 permit 65000:1 0:4 0:16 ip community-list standard 1_5_15 permit 65000:1 0:5 0:15 ip community-list standard 1_6_14 permit 65000:1 0:6 0:14 ip community-list standard 1_7_13 permit 65000:1 0:7 0:13 ip community-list standard 1_8_12 permit 65000:1 0:8 0:12 ip community-list standard 1_9_11 permit 65000:1 0:9 0:11 ip community-list standard 1_10_10 permit 65000:1 0:10 0:10 ip community-list expanded c20 permit 1 ^65000:4_0:20_0:1$ ip community-list expanded c20 permit 2 ^65000:3_0:21_0:1$ ip community-list expanded c20 permit 3 ^65000:3_0:22_0:2$ ip community-list expanded c20 permit 4 ^65000:3_0:23_0:3$ ip community-list expanded c20 permit 5 ^65000:3_0:24_0:4$ ip community-list expanded c20 permit 6 ^65000:3_0:25_0:5$ ip community-list expanded c20 permit 7 ^65000:3_0:26_0:6$ ip community-list expanded c20 permit 8 ^65000:3_0:27_0:7$ ip community-list expanded c20 permit 9 ^65000:3_0:28_0:8$ ip community-list expanded c20 permit 10 ^65000:3_0:29_0:9$ ip community-list expanded c20 permit 11 ^65000:3_0:30_0:10$ ip community-list expanded c20 permit 12 ^65000:3_0:31_0:11$ ip community-list expanded c20 permit 13 ^65000:3_0:32_0:12$ ip community-list expanded c20 permit 14 ^65000:3_0:33_0:13$ ip community-list expanded c20 permit 15 ^65000:3_0:34_0:14$ ip community-list expanded c20 permit 16 ^65000:3_0:35_0:15$ ip community-list expanded c20 permit 17 ^65000:3_0:36_0:16$ ip community-list expanded c20 permit 18 ^65000:3_0:37_0:17$ ip community-list expanded c20 permit 19 ^65000:3_0:38_0:18$ ip community-list expanded c20 permit 20 ^65000:3_0:39_0:19$ ip community-list expanded c20 permit 21 ^65000:4_0:40_0:2$ ip community-list expanded c20 permit 22 ^65000:3_0:40_0:20$ ip community-list expanded c20 permit 23 ^65000:4_0:41_0:2$ ip community-list expanded c20 permit 24 ^65000:3_0:41_0:21$ ip community-list expanded c20 permit 25 ^65000:3_0:42_0:22$ ip community-list expanded c20 permit 26 ^65000:3_0:43_0:23$ ip community-list expanded c20 permit 27 ^65000:3_0:44_0:24$ ip community-list expanded c20 permit 28 ^65000:3_0:45_0:25$ ip community-list expanded c20 permit 29 ^65000:3_0:46_0:26$ ip community-list expanded c20 permit 30 ^65000:3_0:47_0:27$ ip community-list expanded c20 permit 31 ^65000:3_0:48_0:28$ ip community-list expanded c20 permit 32 ^65000:3_0:49_0:29$ ip community-list expanded c20 permit 33 ^65000:3_0:50_0:30$ ip community-list expanded c20 permit 34 ^65000:3_0:51_0:31$ ip community-list expanded c20 permit 35 ^65000:3_0:52_0:32$ ip community-list expanded c20 permit 36 ^65000:3_0:53_0:33$ ip community-list expanded c20 permit 37 ^65000:3_0:54_0:34$ ip community-list expanded c20 permit 38 ^65000:3_0:55_0:35$ ip community-list expanded c20 permit 39 ^65000:3_0:56_0:36$ ip community-list expanded c20 permit 40 ^65000:3_0:57_0:37$ ip community-list expanded c20 permit 41 ^65000:3_0:58_0:38$ ip community-list expanded c20 permit 42 ^65000:3_0:59_0:39$ ip community-list expanded c20 permit 43 ^65000:4_0:60_0:3$ ip community-list expanded c20 permit 44 ^65000:3_0:60_0:40$ ip community-list expanded c20 permit 45 ^65000:4_0:61_0:3$ ip community-list expanded c20 permit 46 ^65000:3_0:61_0:41$ ip community-list expanded c20 permit 47 ^65000:4_0:62_0:3$ ip community-list expanded c20 permit 48 ^65000:3_0:62_0:42$ ip community-list expanded c20 permit 49 ^65000:3_0:63_0:43$ ip community-list expanded c20 permit 50 ^65000:3_0:64_0:44$ ip community-list expanded c20 permit 51 ^65000:3_0:65_0:45$ ip community-list expanded c20 permit 52 ^65000:3_0:66_0:46$ ip community-list expanded c20 permit 53 ^65000:3_0:67_0:47$ ip community-list expanded c20 permit 54 ^65000:3_0:68_0:48$ ip community-list expanded c20 permit 55 ^65000:3_0:69_0:49$ ip community-list expanded c20 permit 56 ^65000:3_0:70_0:50$ ip community-list expanded c20 permit 57 ^65000:3_0:71_0:51$ ip community-list expanded c20 permit 58 ^65000:3_0:72_0:52$ ip community-list expanded c20 permit 59 ^65000:3_0:73_0:53$ ip community-list expanded c20 permit 60 ^65000:3_0:74_0:54$ ip community-list expanded c20 permit 61 ^65000:3_0:75_0:55$ ip community-list expanded c20 permit 62 ^65000:3_0:76_0:56$ ip community-list expanded c20 permit 63 ^65000:3_0:77_0:57$ ip community-list expanded c20 permit 64 ^65000:3_0:78_0:58$ ip community-list expanded c20 permit 65 ^65000:3_0:79_0:59$ ip community-list expanded c20 permit 66 ^65000:4_0:80_0:4$ ip community-list expanded c20 permit 67 ^65000:3_0:80_0:60$ ip community-list expanded c20 permit 68 ^65000:4_0:81_0:4$ ip community-list expanded c20 permit 69 ^65000:3_0:81_0:61$ ip community-list expanded c20 permit 70 ^65000:4_0:82_0:4$ ip community-list expanded c20 permit 71 ^65000:3_0:82_0:62$ ip community-list expanded c20 permit 72 ^65000:4_0:83_0:4$ ip community-list expanded c20 permit 73 ^65000:3_0:83_0:63$ ip community-list expanded c20 permit 74 ^65000:3_0:84_0:64$ ip community-list expanded c20 permit 75 ^65000:3_0:85_0:65$ ip community-list expanded c20 permit 76 ^65000:3_0:86_0:66$ ip community-list expanded c20 permit 77 ^65000:3_0:87_0:67$ ip community-list expanded c20 permit 78 ^65000:3_0:88_0:68$ ip community-list expanded c20 permit 79 ^65000:3_0:89_0:69$ ip community-list expanded c20 permit 80 ^65000:3_0:90_0:70$ ip community-list expanded c20 permit 81 ^65000:3_0:91_0:71$ ip community-list expanded c20 permit 82 ^65000:3_0:92_0:72$ ip community-list expanded c20 permit 83 ^65000:3_0:93_0:73$ ip community-list expanded c20 permit 84 ^65000:3_0:94_0:74$ ip community-list expanded c20 permit 85 ^65000:3_0:95_0:75$ ip community-list expanded c20 permit 86 ^65000:3_0:96_0:76$ ip community-list expanded c20 permit 87 ^65000:3_0:97_0:77$ ip community-list expanded c20 permit 88 ^65000:3_0:98_0:78$ ip community-list expanded c20 permit 89 ^65000:3_0:99_0:79$ ip community-list expanded c20 permit 90 ^65000:4_0:100_0:5$ ip community-list expanded c20 permit 91 ^65000:3_0:100_0:80$ ip community-list expanded c20 permit 92 ^65000:4_0:101_0:5$ ip community-list expanded c20 permit 93 ^65000:3_0:101_0:81$ ip community-list expanded c20 permit 94 ^65000:4_0:102_0:5$ ip community-list expanded c20 permit 95 ^65000:3_0:102_0:82$ ip community-list expanded c20 permit 96 ^65000:4_0:103_0:5$ ip community-list expanded c20 permit 97 ^65000:3_0:103_0:83$ ip community-list expanded c20 permit 98 ^65000:4_0:104_0:5$ ip community-list expanded c20 permit 99 ^65000:3_0:104_0:84$ ip community-list expanded c20 permit 100 ^65000:3_0:105_0:85$ ip community-list expanded c20 permit 101 ^65000:3_0:106_0:86$ ip community-list expanded c20 permit 102 ^65000:3_0:107_0:87$ ip community-list expanded c20 permit 103 ^65000:3_0:108_0:88$ ip community-list expanded c20 permit 104 ^65000:3_0:109_0:89$ ip community-list expanded c20 permit 105 ^65000:3_0:110_0:90$ ip community-list expanded c20 permit 106 ^65000:3_0:111_0:91$ ip community-list expanded c20 permit 107 ^65000:3_0:112_0:92$ ip community-list expanded c20 permit 108 ^65000:3_0:113_0:93$ ip community-list expanded c20 permit 109 ^65000:3_0:114_0:94$ ip community-list expanded c20 permit 110 ^65000:3_0:115_0:95$ ip community-list expanded c20 permit 111 ^65000:3_0:116_0:96$ ip community-list expanded c20 permit 112 ^65000:3_0:117_0:97$ ip community-list expanded c20 permit 113 ^65000:3_0:118_0:98$ ip community-list expanded c20 permit 114 ^65000:3_0:119_0:99$ ip community-list expanded c20 permit 115 ^65000:4_0:120_0:6$ ip community-list expanded c20 permit 116 ^65000:3_0:120_0:100$ ip community-list expanded c20 permit 117 ^65000:4_0:121_0:6$ ip community-list expanded c20 permit 118 ^65000:3_0:121_0:101$ ip community-list expanded c20 permit 119 ^65000:4_0:122_0:6$ ip community-list expanded c20 permit 120 ^65000:3_0:122_0:102$ ip community-list expanded c20 permit 121 ^65000:4_0:123_0:6$ ip community-list expanded c20 permit 122 ^65000:3_0:123_0:103$ ip community-list expanded c20 permit 123 ^65000:4_0:124_0:6$ ip community-list expanded c20 permit 124 ^65000:3_0:124_0:104$ ip community-list expanded c20 permit 125 ^65000:4_0:125_0:6$ ip community-list expanded c20 permit 126 ^65000:3_0:125_0:105$ ip community-list expanded c20 permit 127 ^65000:3_0:126_0:106$ ip community-list expanded c20 permit 128 ^65000:3_0:127_0:107$ ip community-list expanded c20 permit 129 ^65000:3_0:128_0:108$ ip community-list expanded c20 permit 130 ^65000:3_0:129_0:109$ ip community-list expanded c20 permit 131 ^65000:3_0:130_0:110$ ip community-list expanded c20 permit 132 ^65000:3_0:131_0:111$ ip community-list expanded c20 permit 133 ^65000:3_0:132_0:112$ ip community-list expanded c20 permit 134 ^65000:3_0:133_0:113$ ip community-list expanded c20 permit 135 ^65000:3_0:134_0:114$ ip community-list expanded c20 permit 136 ^65000:3_0:135_0:115$ ip community-list expanded c20 permit 137 ^65000:3_0:136_0:116$ ip community-list expanded c20 permit 138 ^65000:3_0:137_0:117$ ip community-list expanded c20 permit 139 ^65000:3_0:138_0:118$ ip community-list expanded c20 permit 140 ^65000:3_0:139_0:119$ ip community-list expanded c20 permit 141 ^65000:4_0:140_0:7$ ip community-list expanded c20 permit 142 ^65000:3_0:140_0:120$ ip community-list expanded c20 permit 143 ^65000:4_0:141_0:7$ ip community-list expanded c20 permit 144 ^65000:3_0:141_0:121$ ip community-list expanded c20 permit 145 ^65000:4_0:142_0:7$ ip community-list expanded c20 permit 146 ^65000:3_0:142_0:122$ ip community-list expanded c20 permit 147 ^65000:4_0:143_0:7$ ip community-list expanded c20 permit 148 ^65000:3_0:143_0:123$ ip community-list expanded c20 permit 149 ^65000:4_0:144_0:7$ ip community-list expanded c20 permit 150 ^65000:3_0:144_0:124$ ip community-list expanded c20 permit 151 ^65000:4_0:145_0:7$ ip community-list expanded c20 permit 152 ^65000:3_0:145_0:125$ ip community-list expanded c20 permit 153 ^65000:4_0:146_0:7$ ip community-list expanded c20 permit 154 ^65000:3_0:146_0:126$ ip community-list expanded c20 permit 155 ^65000:3_0:147_0:127$ ip community-list expanded c20 permit 156 ^65000:3_0:148_0:128$ ip community-list expanded c20 permit 157 ^65000:3_0:149_0:129$ ip community-list expanded c20 permit 158 ^65000:3_0:150_0:130$ ip community-list expanded c20 permit 159 ^65000:3_0:151_0:131$ ip community-list expanded c20 permit 160 ^65000:3_0:152_0:132$ ip community-list expanded c20 permit 161 ^65000:3_0:153_0:133$ ip community-list expanded c20 permit 162 ^65000:3_0:154_0:134$ ip community-list expanded c20 permit 163 ^65000:3_0:155_0:135$ ip community-list expanded c20 permit 164 ^65000:3_0:156_0:136$ ip community-list expanded c20 permit 165 ^65000:3_0:157_0:137$ ip community-list expanded c20 permit 166 ^65000:3_0:158_0:138$ ip community-list expanded c20 permit 167 ^65000:3_0:159_0:139$ ip community-list expanded c20 permit 168 ^65000:4_0:160_0:8$ ip community-list expanded c20 permit 169 ^65000:3_0:160_0:140$ ip community-list expanded c20 permit 170 ^65000:4_0:161_0:8$ ip community-list expanded c20 permit 171 ^65000:3_0:161_0:141$ ip community-list expanded c20 permit 172 ^65000:4_0:162_0:8$ ip community-list expanded c20 permit 173 ^65000:3_0:162_0:142$ ip community-list expanded c20 permit 174 ^65000:4_0:163_0:8$ ip community-list expanded c20 permit 175 ^65000:3_0:163_0:143$ ip community-list expanded c20 permit 176 ^65000:4_0:164_0:8$ ip community-list expanded c20 permit 177 ^65000:3_0:164_0:144$ ip community-list expanded c20 permit 178 ^65000:4_0:165_0:8$ ip community-list expanded c20 permit 179 ^65000:3_0:165_0:145$ ip community-list expanded c20 permit 180 ^65000:4_0:166_0:8$ ip community-list expanded c20 permit 181 ^65000:3_0:166_0:146$ ip community-list expanded c20 permit 182 ^65000:4_0:167_0:8$ ip community-list expanded c20 permit 183 ^65000:3_0:167_0:147$ ip community-list expanded c20 permit 184 ^65000:3_0:168_0:148$ ip community-list expanded c20 permit 185 ^65000:3_0:169_0:149$ ip community-list expanded c20 permit 186 ^65000:3_0:170_0:150$ ip community-list expanded c20 permit 187 ^65000:3_0:171_0:151$ ip community-list expanded c20 permit 188 ^65000:3_0:172_0:152$ ip community-list expanded c20 permit 189 ^65000:3_0:173_0:153$ ip community-list expanded c20 permit 190 ^65000:3_0:174_0:154$ ip community-list expanded c20 permit 191 ^65000:3_0:175_0:155$ ip community-list expanded c20 permit 192 ^65000:3_0:176_0:156$ ip community-list expanded c20 permit 193 ^65000:3_0:177_0:157$ ip community-list expanded c20 permit 194 ^65000:3_0:178_0:158$ ip community-list expanded c20 permit 195 ^65000:3_0:179_0:159$ ip community-list expanded c20 permit 196 ^65000:4_0:180_0:9$ ip community-list expanded c20 permit 197 ^65000:3_0:180_0:160$ ip community-list expanded c20 permit 198 ^65000:4_0:181_0:9$ ip community-list expanded c20 permit 199 ^65000:3_0:181_0:161$ ip community-list expanded c20 permit 200 ^65000:4_0:182_0:9$ ip community-list expanded c20 permit 201 ^65000:3_0:182_0:162$ ip community-list expanded c20 permit 202 ^65000:4_0:183_0:9$ ip community-list expanded c20 permit 203 ^65000:3_0:183_0:163$ ip community-list expanded c20 permit 204 ^65000:4_0:184_0:9$ ip community-list expanded c20 permit 205 ^65000:3_0:184_0:164$ ip community-list expanded c20 permit 206 ^65000:4_0:185_0:9$ ip community-list expanded c20 permit 207 ^65000:3_0:185_0:165$ ip community-list expanded c20 permit 208 ^65000:4_0:186_0:9$ ip community-list expanded c20 permit 209 ^65000:3_0:186_0:166$ ip community-list expanded c20 permit 210 ^65000:4_0:187_0:9$ ip community-list expanded c20 permit 211 ^65000:3_0:187_0:167$ ip community-list expanded c20 permit 212 ^65000:4_0:188_0:9$ ip community-list expanded c20 permit 213 ^65000:3_0:188_0:168$ ip community-list expanded c20 permit 214 ^65000:3_0:189_0:169$ ip community-list expanded c20 permit 215 ^65000:3_0:190_0:170$ ip community-list expanded c20 permit 216 ^65000:3_0:191_0:171$ ip community-list expanded c20 permit 217 ^65000:3_0:192_0:172$ ip community-list expanded c20 permit 218 ^65000:3_0:193_0:173$ ip community-list expanded c20 permit 219 ^65000:3_0:194_0:174$ ip community-list expanded c20 permit 220 ^65000:3_0:195_0:175$ ip community-list expanded c20 permit 221 ^65000:3_0:196_0:176$ ip community-list expanded c20 permit 222 ^65000:3_0:197_0:177$ ip community-list expanded c20 permit 223 ^65000:3_0:198_0:178$ ip community-list expanded c20 permit 224 ^65000:3_0:199_0:179$ ip community-list expanded c20 permit 225 ^65000:4_0:200_0:10$ ip community-list expanded c20 permit 226 ^65000:3_0:200_0:180$ ip community-list expanded c20 permit 227 ^65000:4_0:201_0:10$ ip community-list expanded c20 permit 228 ^65000:3_0:201_0:181$ ip community-list expanded c20 permit 229 ^65000:4_0:202_0:10$ ip community-list expanded c20 permit 230 ^65000:3_0:202_0:182$ ip community-list expanded c20 permit 231 ^65000:4_0:203_0:10$ ip community-list expanded c20 permit 232 ^65000:3_0:203_0:183$ ip community-list expanded c20 permit 233 ^65000:4_0:204_0:10$ ip community-list expanded c20 permit 234 ^65000:3_0:204_0:184$ ip community-list expanded c20 permit 235 ^65000:4_0:205_0:10$ ip community-list expanded c20 permit 236 ^65000:3_0:205_0:185$ ip community-list expanded c20 permit 237 ^65000:4_0:206_0:10$ ip community-list expanded c20 permit 238 ^65000:3_0:206_0:186$ ip community-list expanded c20 permit 239 ^65000:4_0:207_0:10$ ip community-list expanded c20 permit 240 ^65000:3_0:207_0:187$ ip community-list expanded c20 permit 241 ^65000:4_0:208_0:10$ ip community-list expanded c20 permit 242 ^65000:3_0:208_0:188$ ip community-list expanded c20 permit 243 ^65000:4_0:209_0:10$ ip community-list expanded c20 permit 244 ^65000:3_0:209_0:189$ ip community-list expanded c20 permit 245 ^65000:3_0:210_0:190$ ip community-list expanded c20 permit 246 ^65000:3_0:211_0:191$ ip community-list expanded c20 permit 247 ^65000:3_0:212_0:192$ ip community-list expanded c20 permit 248 ^65000:3_0:213_0:193$ ip community-list expanded c20 permit 249 ^65000:3_0:214_0:194$ ip community-list expanded c20 permit 250 ^65000:3_0:215_0:195$ ip community-list expanded c20 permit 251 ^65000:3_0:216_0:196$ ip community-list expanded c20 permit 252 ^65000:3_0:217_0:197$ ip community-list expanded c20 permit 253 ^65000:3_0:218_0:198$ ip community-list expanded c20 permit 254 ^65000:3_0:219_0:199$ ip community-list expanded c20 permit 255 ^65000:4_0:220_0:11$ ip community-list expanded c20 permit 256 ^65000:3_0:220_0:200$ ip community-list expanded c20 permit 257 ^65000:4_0:221_0:11$ ip community-list expanded c20 permit 258 ^65000:3_0:221_0:201$ ip community-list expanded c20 permit 259 ^65000:4_0:222_0:11$ ip community-list expanded c20 permit 260 ^65000:3_0:222_0:202$ ip community-list expanded c20 permit 261 ^65000:4_0:223_0:11$ ip community-list expanded c20 permit 262 ^65000:3_0:223_0:203$ ip community-list expanded c20 permit 263 ^65000:4_0:224_0:11$ ip community-list expanded c20 permit 264 ^65000:3_0:224_0:204$ ip community-list expanded c20 permit 265 ^65000:4_0:225_0:11$ ip community-list expanded c20 permit 266 ^65000:3_0:225_0:205$ ip community-list expanded c20 permit 267 ^65000:4_0:226_0:11$ ip community-list expanded c20 permit 268 ^65000:3_0:226_0:206$ ip community-list expanded c20 permit 269 ^65000:4_0:227_0:11$ ip community-list expanded c20 permit 270 ^65000:3_0:227_0:207$ ip community-list expanded c20 permit 271 ^65000:4_0:228_0:11$ ip community-list expanded c20 permit 272 ^65000:3_0:228_0:208$ ip community-list expanded c20 permit 273 ^65000:4_0:229_0:11$ ip community-list expanded c20 permit 274 ^65000:3_0:229_0:209$ ip community-list expanded c20 permit 275 ^65000:4_0:230_0:11$ ip community-list expanded c20 permit 276 ^65000:3_0:230_0:210$ ip community-list expanded c20 permit 277 ^65000:3_0:231_0:211$ ip community-list expanded c20 permit 278 ^65000:3_0:232_0:212$ ip community-list expanded c20 permit 279 ^65000:3_0:233_0:213$ ip community-list expanded c20 permit 280 ^65000:3_0:234_0:214$ ip community-list expanded c20 permit 281 ^65000:3_0:235_0:215$ ip community-list expanded c20 permit 282 ^65000:3_0:236_0:216$ ip community-list expanded c20 permit 283 ^65000:3_0:237_0:217$ ip community-list expanded c20 permit 284 ^65000:3_0:238_0:218$ ip community-list expanded c20 permit 285 ^65000:3_0:239_0:219$ ip community-list expanded c20 permit 286 ^65000:4_0:240_0:12$ ip community-list expanded c20 permit 287 ^65000:3_0:240_0:220$ ip community-list expanded c20 permit 288 ^65000:4_0:241_0:12$ ip community-list expanded c20 permit 289 ^65000:3_0:241_0:221$ ip community-list expanded c20 permit 290 ^65000:4_0:242_0:12$ ip community-list expanded c20 permit 291 ^65000:3_0:242_0:222$ ip community-list expanded c20 permit 292 ^65000:4_0:243_0:12$ ip community-list expanded c20 permit 293 ^65000:3_0:243_0:223$ ip community-list expanded c20 permit 294 ^65000:4_0:244_0:12$ ip community-list expanded c20 permit 295 ^65000:3_0:244_0:224$ ip community-list expanded c20 permit 296 ^65000:4_0:245_0:12$ ip community-list expanded c20 permit 297 ^65000:3_0:245_0:225$ ip community-list expanded c20 permit 298 ^65000:4_0:246_0:12$ ip community-list expanded c20 permit 299 ^65000:3_0:246_0:226$ ip community-list expanded c20 permit 300 ^65000:4_0:247_0:12$ ip community-list expanded c20 permit 301 ^65000:3_0:247_0:227$ ip community-list expanded c20 permit 302 ^65000:4_0:248_0:12$ ip community-list expanded c20 permit 303 ^65000:3_0:248_0:228$ ip community-list expanded c20 permit 304 ^65000:4_0:249_0:12$ ip community-list expanded c20 permit 305 ^65000:3_0:249_0:229$ ip community-list expanded c20 permit 306 ^65000:4_0:250_0:12$ ip community-list expanded c20 permit 307 ^65000:3_0:250_0:230$ ip community-list expanded c20 permit 308 ^65000:4_0:251_0:12$ ip community-list expanded c20 permit 309 ^65000:3_0:251_0:231$ ip community-list expanded c20 permit 310 ^65000:3_0:252_0:232$ ip community-list expanded c20 permit 311 ^65000:3_0:253_0:233$ ip community-list expanded c20 permit 312 ^65000:3_0:254_0:234$ ip community-list expanded c20 permit 313 ^65000:3_0:255_0:235$ ip community-list expanded c20 permit 314 ^65000:3_0:256_0:236$ route-map calculator permit 2856 match community 1_1_19 2_1_20 2_2_10 1_2_18 1_3_17 set community 0:20 route-map calculator permit 2857 match community 2_4_5 1_4_16 1_5_15 1_6_14 1_7_13 set community 0:20 route-map calculator permit 2858 match community 1_8_12 1_9_11 1_10_10 c4_20_1 c3_21_1 set community 0:20 route-map calculator permit 2859 match community c3_22_2 c3_23_3 c3_24_4 c3_25_5 c3_26_6 set community 0:20 route-map calculator permit 2860 match community c3_27_7 c3_28_8 c3_29_9 c3_30_10 c3_31_11 set community 0:20 route-map calculator permit 2861 match community c3_32_12 c3_33_13 c3_34_14 c3_35_15 c3_36_16 set community 0:20 route-map calculator permit 2862 match community c3_37_17 c3_38_18 c3_39_19 c4_40_2 c3_40_20 set community 0:20 route-map calculator permit 2863 match community c4_41_2 c3_41_21 c3_42_22 c3_43_23 c3_44_24 set community 0:20 route-map calculator permit 2864 match community c3_45_25 c3_46_26 c3_47_27 c3_48_28 c3_49_29 set community 0:20 route-map calculator permit 2865 match community c3_50_30 c3_51_31 c3_52_32 c3_53_33 c3_54_34 set community 0:20 route-map calculator permit 2866 match community c3_55_35 c3_56_36 c3_57_37 c3_58_38 c3_59_39 set community 0:20 route-map calculator permit 2867 match community c4_60_3 c3_60_40 c4_61_3 c3_61_41 c4_62_3 set community 0:20 route-map calculator permit 2868 match community c3_62_42 c3_63_43 c3_64_44 c3_65_45 c3_66_46 set community 0:20 route-map calculator permit 2869 match community c3_67_47 c3_68_48 c3_69_49 c3_70_50 c3_71_51 set community 0:20 route-map calculator permit 2870 match community c3_72_52 c3_73_53 c3_74_54 c3_75_55 c3_76_56 set community 0:20 route-map calculator permit 2871 match community c3_77_57 c3_78_58 c3_79_59 c4_80_4 c3_80_60 set community 0:20 route-map calculator permit 2872 match community c4_81_4 c3_81_61 c4_82_4 c3_82_62 c4_83_4 set community 0:20 route-map calculator permit 2873 match community c3_83_63 c3_84_64 c3_85_65 c3_86_66 c3_87_67 set community 0:20 route-map calculator permit 2874 match community c3_88_68 c3_89_69 c3_90_70 c3_91_71 c3_92_72 set community 0:20 route-map calculator permit 2875 match community c3_93_73 c3_94_74 c3_95_75 c3_96_76 c3_97_77 set community 0:20 route-map calculator permit 2876 match community c3_98_78 c3_99_79 c4_100_5 c3_100_80 c4_101_5 set community 0:20 route-map calculator permit 2877 match community c3_101_81 c4_102_5 c3_102_82 c4_103_5 c3_103_83 set community 0:20 route-map calculator permit 2878 match community c4_104_5 c3_104_84 c3_105_85 c3_106_86 c3_107_87 set community 0:20 route-map calculator permit 2879 match community c3_108_88 c3_109_89 c3_110_90 c3_111_91 c3_112_92 set community 0:20 route-map calculator permit 2880 match community c3_113_93 c3_114_94 c3_115_95 c3_116_96 c3_117_97 set community 0:20 route-map calculator permit 2881 match community c3_118_98 c3_119_99 c4_120_6 c3_120_100 c4_121_6 set community 0:20 route-map calculator permit 2882 match community c3_121_101 c4_122_6 c3_122_102 c4_123_6 c3_123_103 set community 0:20 route-map calculator permit 2883 match community c4_124_6 c3_124_104 c4_125_6 c3_125_105 c3_126_106 set community 0:20 route-map calculator permit 2884 match community c3_127_107 c3_128_108 c3_129_109 c3_130_110 c3_131_111 set community 0:20 route-map calculator permit 2885 match community c3_132_112 c3_133_113 c3_134_114 c3_135_115 c3_136_116 set community 0:20 route-map calculator permit 2886 match community c3_137_117 c3_138_118 c3_139_119 c4_140_7 c3_140_120 set community 0:20 route-map calculator permit 2887 match community c4_141_7 c3_141_121 c4_142_7 c3_142_122 c4_143_7 set community 0:20 route-map calculator permit 2888 match community c3_143_123 c4_144_7 c3_144_124 c4_145_7 c3_145_125 set community 0:20 route-map calculator permit 2889 match community c4_146_7 c3_146_126 c3_147_127 c3_148_128 c3_149_129 set community 0:20 route-map calculator permit 2890 match community c3_150_130 c3_151_131 c3_152_132 c3_153_133 c3_154_134 set community 0:20 route-map calculator permit 2891 match community c3_155_135 c3_156_136 c3_157_137 c3_158_138 c3_159_139 set community 0:20 route-map calculator permit 2892 match community c4_160_8 c3_160_140 c4_161_8 c3_161_141 c4_162_8 set community 0:20 route-map calculator permit 2893 match community c3_162_142 c4_163_8 c3_163_143 c4_164_8 c3_164_144 set community 0:20 route-map calculator permit 2894 match community c4_165_8 c3_165_145 c4_166_8 c3_166_146 c4_167_8 set community 0:20 route-map calculator permit 2895 match community c3_167_147 c3_168_148 c3_169_149 c3_170_150 c3_171_151 set community 0:20 route-map calculator permit 2896 match community c3_172_152 c3_173_153 c3_174_154 c3_175_155 c3_176_156 set community 0:20 route-map calculator permit 2897 match community c3_177_157 c3_178_158 c3_179_159 c4_180_9 c3_180_160 set community 0:20 route-map calculator permit 2898 match community c4_181_9 c3_181_161 c4_182_9 c3_182_162 c4_183_9 set community 0:20 route-map calculator permit 2899 match community c3_183_163 c4_184_9 c3_184_164 c4_185_9 c3_185_165 set community 0:20 route-map calculator permit 2900 match community c4_186_9 c3_186_166 c4_187_9 c3_187_167 c4_188_9 set community 0:20 route-map calculator permit 2901 match community c3_188_168 c3_189_169 c3_190_170 c3_191_171 c3_192_172 set community 0:20 route-map calculator permit 2902 match community c3_193_173 c3_194_174 c3_195_175 c3_196_176 c3_197_177 set community 0:20 route-map calculator permit 2903 match community c3_198_178 c3_199_179 c4_200_10 c3_200_180 c4_201_10 set community 0:20 route-map calculator permit 2904 match community c3_201_181 c4_202_10 c3_202_182 c4_203_10 c3_203_183 set community 0:20 route-map calculator permit 2905 match community c4_204_10 c3_204_184 c4_205_10 c3_205_185 c4_206_10 set community 0:20 route-map calculator permit 2906 match community c3_206_186 c4_207_10 c3_207_187 c4_208_10 c3_208_188 set community 0:20 route-map calculator permit 2907 match community c4_209_10 c3_209_189 c3_210_190 c3_211_191 c3_212_192 set community 0:20 route-map calculator permit 2908 match community c3_213_193 c3_214_194 c3_215_195 c3_216_196 c3_217_197 set community 0:20 route-map calculator permit 2909 match community c3_218_198 c3_219_199 c4_220_11 c3_220_200 c4_221_11 set community 0:20 route-map calculator permit 2910 match community c3_221_201 c4_222_11 c3_222_202 c4_223_11 c3_223_203 set community 0:20 route-map calculator permit 2911 match community c4_224_11 c3_224_204 c4_225_11 c3_225_205 c4_226_11 set community 0:20 route-map calculator permit 2912 match community c3_226_206 c4_227_11 c3_227_207 c4_228_11 c3_228_208 set community 0:20 route-map calculator permit 2913 match community c4_229_11 c3_229_209 c4_230_11 c3_230_210 c3_231_211 set community 0:20 route-map calculator permit 2914 match community c3_232_212 c3_233_213 c3_234_214 c3_235_215 c3_236_216 set community 0:20 route-map calculator permit 2915 match community c3_237_217 c3_238_218 c3_239_219 c4_240_12 c3_240_220 set community 0:20 route-map calculator permit 2916 match community c4_241_12 c3_241_221 c4_242_12 c3_242_222 c4_243_12 set community 0:20 route-map calculator permit 2917 match community c3_243_223 c4_244_12 c3_244_224 c4_245_12 c3_245_225 set community 0:20 route-map calculator permit 2918 match community c4_246_12 c3_246_226 c4_247_12 c3_247_227 c4_248_12 set community 0:20 route-map calculator permit 2919 match community c3_248_228 c4_249_12 c3_249_229 c4_250_12 c3_250_230 set community 0:20 route-map calculator permit 2920 match community c4_251_12 c3_251_231 c3_252_232 c3_253_233 c3_254_234 set community 0:20 route-map calculator permit 2921 match community c3_255_235 c3_256_236 set community 0:20 ip community-list standard 2_17_198 permit 65000:2 0:17 0:198 ip community-list standard 2_18_187 permit 65000:2 0:18 0:187 ip community-list standard 2_22_153 permit 65000:2 0:22 0:153 ip community-list standard 2_33_102 permit 65000:2 0:33 0:102 ip community-list standard 2_34_99 permit 65000:2 0:34 0:99 ip community-list standard 2_51_66 permit 65000:2 0:51 0:66 route-map calculator permit 2922 match community 2_17_198 2_18_187 2_22_153 2_33_102 2_34_99 set community 0:3366 route-map calculator permit 2923 match community 2_51_66 set community 0:3366 ip community-list standard 2_16_228 permit 65000:2 0:16 0:228 ip community-list standard 2_19_192 permit 65000:2 0:19 0:192 ip community-list standard 2_24_152 permit 65000:2 0:24 0:152 ip community-list standard 2_32_114 permit 65000:2 0:32 0:114 ip community-list standard 2_38_96 permit 65000:2 0:38 0:96 ip community-list standard 2_48_76 permit 65000:2 0:48 0:76 ip community-list standard 2_57_64 permit 65000:2 0:57 0:64 route-map calculator permit 2924 match community 2_16_228 2_19_192 2_24_152 2_32_114 2_38_96 set community 0:3648 route-map calculator permit 2925 match community 2_48_76 2_57_64 set community 0:3648 ip community-list standard 2_111_121 permit 65000:2 0:111 0:121 route-map calculator permit 2926 match community 2_111_121 set community 0:13431 ip community-list standard 2_22_221 permit 65000:2 0:22 0:221 ip community-list standard 2_26_187 permit 65000:2 0:26 0:187 ip community-list standard 2_34_143 permit 65000:2 0:34 0:143 route-map calculator permit 2927 match community 2_22_221 2_26_187 2_34_143 set community 0:4862 ip community-list standard 2_37_143 permit 65000:2 0:37 0:143 route-map calculator permit 2928 match community 2_37_143 set community 0:5291 ip community-list standard 2_246_254 permit 65000:2 0:246 0:254 route-map calculator permit 2929 match community 2_246_254 set community 0:62484 ip community-list standard 2_54_228 permit 65000:2 0:54 0:228 ip community-list standard 2_57_216 permit 65000:2 0:57 0:216 ip community-list standard 2_72_171 permit 65000:2 0:72 0:171 ip community-list standard 2_76_162 permit 65000:2 0:76 0:162 ip community-list standard 2_81_152 permit 65000:2 0:81 0:152 ip community-list standard 2_108_114 permit 65000:2 0:108 0:114 route-map calculator permit 2930 match community 2_54_228 2_57_216 2_72_171 2_76_162 2_81_152 set community 0:12312 route-map calculator permit 2931 match community 2_108_114 set community 0:12312 ip community-list standard 2_106_133 permit 65000:2 0:106 0:133 route-map calculator permit 2932 match community 2_106_133 set community 0:14098 ip community-list standard 2_19_111 permit 65000:2 0:19 0:111 ip community-list standard 2_37_57 permit 65000:2 0:37 0:57 route-map calculator permit 2933 match community 2_19_111 2_37_57 set community 0:2109 ip community-list standard 2_158_254 permit 65000:2 0:158 0:254 route-map calculator permit 2934 match community 2_158_254 set community 0:40132 ip community-list standard 2_172_250 permit 65000:2 0:172 0:250 ip community-list standard 2_200_215 permit 65000:2 0:200 0:215 route-map calculator permit 2935 match community 2_172_250 2_200_215 set community 0:43000 ip community-list standard 2_140_146 permit 65000:2 0:140 0:146 route-map calculator permit 2936 match community 2_140_146 set community 0:20440 ip community-list standard 2_182_201 permit 65000:2 0:182 0:201 route-map calculator permit 2937 match community 2_182_201 set community 0:36582 ip community-list standard 2_219_253 permit 65000:2 0:219 0:253 route-map calculator permit 2938 match community 2_219_253 set community 0:55407 ip community-list standard 2_32_173 permit 65000:2 0:32 0:173 route-map calculator permit 2939 match community 2_32_173 set community 0:5536 ip community-list standard 2_176_199 permit 65000:2 0:176 0:199 route-map calculator permit 2940 match community 2_176_199 set community 0:35024 ip community-list standard 2_56_246 permit 65000:2 0:56 0:246 ip community-list standard 2_82_168 permit 65000:2 0:82 0:168 ip community-list standard 2_84_164 permit 65000:2 0:84 0:164 ip community-list standard 2_112_123 permit 65000:2 0:112 0:123 route-map calculator permit 2941 match community 2_56_246 2_82_168 2_84_164 2_112_123 set community 0:13776 ip community-list standard 2_219_219 permit 65000:2 0:219 0:219 route-map calculator permit 2942 match community 2_219_219 set community 0:47961 ip community-list standard 2_149_154 permit 65000:2 0:149 0:154 route-map calculator permit 2943 match community 2_149_154 set community 0:22946 ip community-list standard 2_31_209 permit 65000:2 0:31 0:209 route-map calculator permit 2944 match community 2_31_209 set community 0:6479 ip community-list standard 2_124_187 permit 65000:2 0:124 0:187 route-map calculator permit 2945 match community 2_124_187 set community 0:23188 ip community-list standard 2_202_223 permit 65000:2 0:202 0:223 route-map calculator permit 2946 match community 2_202_223 set community 0:45046 ip community-list standard 2_149_166 permit 65000:2 0:149 0:166 route-map calculator permit 2947 match community 2_149_166 set community 0:24734 ip community-list standard 2_144_218 permit 65000:2 0:144 0:218 route-map calculator permit 2948 match community 2_144_218 set community 0:31392 ip community-list standard 2_70_151 permit 65000:2 0:70 0:151 route-map calculator permit 2949 match community 2_70_151 set community 0:10570 ip community-list standard 2_218_234 permit 65000:2 0:218 0:234 route-map calculator permit 2950 match community 2_218_234 set community 0:51012 ip community-list standard 2_43_182 permit 65000:2 0:43 0:182 ip community-list standard 2_86_91 permit 65000:2 0:86 0:91 route-map calculator permit 2951 match community 2_43_182 2_86_91 set community 0:7826 ip community-list standard 2_60_201 permit 65000:2 0:60 0:201 ip community-list standard 2_67_180 permit 65000:2 0:67 0:180 ip community-list standard 2_90_134 permit 65000:2 0:90 0:134 route-map calculator permit 2952 match community 2_60_201 2_67_180 2_90_134 set community 0:12060 ip community-list standard 2_47_162 permit 65000:2 0:47 0:162 ip community-list standard 2_54_141 permit 65000:2 0:54 0:141 ip community-list standard 2_81_94 permit 65000:2 0:81 0:94 route-map calculator permit 2953 match community 2_47_162 2_54_141 2_81_94 set community 0:7614 ip community-list standard 2_136_256 permit 65000:2 0:136 0:256 route-map calculator permit 2954 match community 2_136_256 set community 0:34816 ip community-list standard 2_3_211 permit 65000:2 0:3 0:211 route-map calculator permit 2955 match community 2_3_211 set community 0:633 ip community-list standard 2_77_247 permit 65000:2 0:77 0:247 ip community-list standard 2_91_209 permit 65000:2 0:91 0:209 ip community-list standard 2_133_143 permit 65000:2 0:133 0:143 route-map calculator permit 2956 match community 2_77_247 2_91_209 2_133_143 set community 0:19019 ip community-list standard 2_18_167 permit 65000:2 0:18 0:167 route-map calculator permit 2957 match community 2_18_167 set community 0:3006 ip community-list standard 2_207_238 permit 65000:2 0:207 0:238 route-map calculator permit 2958 match community 2_207_238 set community 0:49266 ip community-list standard 2_185_221 permit 65000:2 0:185 0:221 route-map calculator permit 2959 match community 2_185_221 set community 0:40885 ip community-list standard 2_66_233 permit 65000:2 0:66 0:233 route-map calculator permit 2960 match community 2_66_233 set community 0:15378 ip community-list standard 2_84_163 permit 65000:2 0:84 0:163 route-map calculator permit 2961 match community 2_84_163 set community 0:13692 ip community-list standard 2_52_256 permit 65000:2 0:52 0:256 ip community-list standard 2_64_208 permit 65000:2 0:64 0:208 ip community-list standard 2_104_128 permit 65000:2 0:104 0:128 route-map calculator permit 2962 match community 2_52_256 2_64_208 2_104_128 set community 0:13312 ip community-list standard 2_209_236 permit 65000:2 0:209 0:236 route-map calculator permit 2963 match community 2_209_236 set community 0:49324 ip community-list standard 2_140_254 permit 65000:2 0:140 0:254 route-map calculator permit 2964 match community 2_140_254 set community 0:35560 ip community-list standard 2_158_221 permit 65000:2 0:158 0:221 route-map calculator permit 2965 match community 2_158_221 set community 0:34918 ip community-list standard 2_11_228 permit 65000:2 0:11 0:228 ip community-list standard 2_12_209 permit 65000:2 0:12 0:209 ip community-list standard 2_19_132 permit 65000:2 0:19 0:132 ip community-list standard 2_22_114 permit 65000:2 0:22 0:114 ip community-list standard 2_33_76 permit 65000:2 0:33 0:76 ip community-list standard 2_38_66 permit 65000:2 0:38 0:66 ip community-list standard 2_44_57 permit 65000:2 0:44 0:57 route-map calculator permit 2966 match community 2_11_228 2_12_209 2_19_132 2_22_114 2_33_76 set community 0:2508 route-map calculator permit 2967 match community 2_38_66 2_44_57 set community 0:2508 ip community-list standard 2_115_149 permit 65000:2 0:115 0:149 route-map calculator permit 2968 match community 2_115_149 set community 0:17135 ip community-list standard 1_1_99 permit 65000:1 0:1 0:99 ip community-list standard 2_1_100 permit 65000:2 0:1 0:100 ip community-list standard 2_2_50 permit 65000:2 0:2 0:50 ip community-list standard 1_2_98 permit 65000:1 0:2 0:98 ip community-list standard 1_3_97 permit 65000:1 0:3 0:97 ip community-list standard 2_4_25 permit 65000:2 0:4 0:25 ip community-list standard 1_4_96 permit 65000:1 0:4 0:96 ip community-list standard 2_5_20 permit 65000:2 0:5 0:20 ip community-list standard 1_5_95 permit 65000:1 0:5 0:95 ip community-list standard 1_6_94 permit 65000:1 0:6 0:94 ip community-list standard 1_7_93 permit 65000:1 0:7 0:93 ip community-list standard 1_8_92 permit 65000:1 0:8 0:92 ip community-list standard 1_9_91 permit 65000:1 0:9 0:91 ip community-list standard 2_10_10 permit 65000:2 0:10 0:10 ip community-list standard 1_10_90 permit 65000:1 0:10 0:90 ip community-list standard 1_11_89 permit 65000:1 0:11 0:89 ip community-list standard 1_12_88 permit 65000:1 0:12 0:88 ip community-list standard 1_13_87 permit 65000:1 0:13 0:87 ip community-list standard 1_14_86 permit 65000:1 0:14 0:86 ip community-list standard 1_15_85 permit 65000:1 0:15 0:85 ip community-list standard 1_16_84 permit 65000:1 0:16 0:84 ip community-list standard 1_17_83 permit 65000:1 0:17 0:83 ip community-list standard 1_18_82 permit 65000:1 0:18 0:82 ip community-list standard 1_19_81 permit 65000:1 0:19 0:81 ip community-list standard 1_20_80 permit 65000:1 0:20 0:80 ip community-list standard 1_21_79 permit 65000:1 0:21 0:79 ip community-list standard 1_22_78 permit 65000:1 0:22 0:78 ip community-list standard 1_23_77 permit 65000:1 0:23 0:77 ip community-list standard 1_24_76 permit 65000:1 0:24 0:76 ip community-list standard 1_25_75 permit 65000:1 0:25 0:75 ip community-list standard 1_26_74 permit 65000:1 0:26 0:74 ip community-list standard 1_27_73 permit 65000:1 0:27 0:73 ip community-list standard 1_28_72 permit 65000:1 0:28 0:72 ip community-list standard 1_29_71 permit 65000:1 0:29 0:71 ip community-list standard 1_30_70 permit 65000:1 0:30 0:70 ip community-list standard 1_31_69 permit 65000:1 0:31 0:69 ip community-list standard 1_32_68 permit 65000:1 0:32 0:68 ip community-list standard 1_33_67 permit 65000:1 0:33 0:67 ip community-list standard 1_34_66 permit 65000:1 0:34 0:66 ip community-list standard 1_35_65 permit 65000:1 0:35 0:65 ip community-list standard 1_36_64 permit 65000:1 0:36 0:64 ip community-list standard 1_37_63 permit 65000:1 0:37 0:63 ip community-list standard 1_38_62 permit 65000:1 0:38 0:62 ip community-list standard 1_39_61 permit 65000:1 0:39 0:61 ip community-list standard 1_40_60 permit 65000:1 0:40 0:60 ip community-list standard 1_41_59 permit 65000:1 0:41 0:59 ip community-list standard 1_42_58 permit 65000:1 0:42 0:58 ip community-list standard 1_43_57 permit 65000:1 0:43 0:57 ip community-list standard 1_44_56 permit 65000:1 0:44 0:56 ip community-list standard 1_45_55 permit 65000:1 0:45 0:55 ip community-list standard 1_46_54 permit 65000:1 0:46 0:54 ip community-list standard 1_47_53 permit 65000:1 0:47 0:53 ip community-list standard 1_48_52 permit 65000:1 0:48 0:52 ip community-list standard 1_49_51 permit 65000:1 0:49 0:51 ip community-list standard 1_50_50 permit 65000:1 0:50 0:50 ip community-list expanded c100 permit 1 ^65000:4_0:100_0:1$ ip community-list expanded c100 permit 2 ^65000:3_0:101_0:1$ ip community-list expanded c100 permit 3 ^65000:3_0:102_0:2$ ip community-list expanded c100 permit 4 ^65000:3_0:103_0:3$ ip community-list expanded c100 permit 5 ^65000:3_0:104_0:4$ ip community-list expanded c100 permit 6 ^65000:3_0:105_0:5$ ip community-list expanded c100 permit 7 ^65000:3_0:106_0:6$ ip community-list expanded c100 permit 8 ^65000:3_0:107_0:7$ ip community-list expanded c100 permit 9 ^65000:3_0:108_0:8$ ip community-list expanded c100 permit 10 ^65000:3_0:109_0:9$ ip community-list expanded c100 permit 11 ^65000:3_0:110_0:10$ ip community-list expanded c100 permit 12 ^65000:3_0:111_0:11$ ip community-list expanded c100 permit 13 ^65000:3_0:112_0:12$ ip community-list expanded c100 permit 14 ^65000:3_0:113_0:13$ ip community-list expanded c100 permit 15 ^65000:3_0:114_0:14$ ip community-list expanded c100 permit 16 ^65000:3_0:115_0:15$ ip community-list expanded c100 permit 17 ^65000:3_0:116_0:16$ ip community-list expanded c100 permit 18 ^65000:3_0:117_0:17$ ip community-list expanded c100 permit 19 ^65000:3_0:118_0:18$ ip community-list expanded c100 permit 20 ^65000:3_0:119_0:19$ ip community-list expanded c100 permit 21 ^65000:3_0:120_0:20$ ip community-list expanded c100 permit 22 ^65000:3_0:121_0:21$ ip community-list expanded c100 permit 23 ^65000:3_0:122_0:22$ ip community-list expanded c100 permit 24 ^65000:3_0:123_0:23$ ip community-list expanded c100 permit 25 ^65000:3_0:124_0:24$ ip community-list expanded c100 permit 26 ^65000:3_0:125_0:25$ ip community-list expanded c100 permit 27 ^65000:3_0:126_0:26$ ip community-list expanded c100 permit 28 ^65000:3_0:127_0:27$ ip community-list expanded c100 permit 29 ^65000:3_0:128_0:28$ ip community-list expanded c100 permit 30 ^65000:3_0:129_0:29$ ip community-list expanded c100 permit 31 ^65000:3_0:130_0:30$ ip community-list expanded c100 permit 32 ^65000:3_0:131_0:31$ ip community-list expanded c100 permit 33 ^65000:3_0:132_0:32$ ip community-list expanded c100 permit 34 ^65000:3_0:133_0:33$ ip community-list expanded c100 permit 35 ^65000:3_0:134_0:34$ ip community-list expanded c100 permit 36 ^65000:3_0:135_0:35$ ip community-list expanded c100 permit 37 ^65000:3_0:136_0:36$ ip community-list expanded c100 permit 38 ^65000:3_0:137_0:37$ ip community-list expanded c100 permit 39 ^65000:3_0:138_0:38$ ip community-list expanded c100 permit 40 ^65000:3_0:139_0:39$ ip community-list expanded c100 permit 41 ^65000:3_0:140_0:40$ ip community-list expanded c100 permit 42 ^65000:3_0:141_0:41$ ip community-list expanded c100 permit 43 ^65000:3_0:142_0:42$ ip community-list expanded c100 permit 44 ^65000:3_0:143_0:43$ ip community-list expanded c100 permit 45 ^65000:3_0:144_0:44$ ip community-list expanded c100 permit 46 ^65000:3_0:145_0:45$ ip community-list expanded c100 permit 47 ^65000:3_0:146_0:46$ ip community-list expanded c100 permit 48 ^65000:3_0:147_0:47$ ip community-list expanded c100 permit 49 ^65000:3_0:148_0:48$ ip community-list expanded c100 permit 50 ^65000:3_0:149_0:49$ ip community-list expanded c100 permit 51 ^65000:3_0:150_0:50$ ip community-list expanded c100 permit 52 ^65000:3_0:151_0:51$ ip community-list expanded c100 permit 53 ^65000:3_0:152_0:52$ ip community-list expanded c100 permit 54 ^65000:3_0:153_0:53$ ip community-list expanded c100 permit 55 ^65000:3_0:154_0:54$ ip community-list expanded c100 permit 56 ^65000:3_0:155_0:55$ ip community-list expanded c100 permit 57 ^65000:3_0:156_0:56$ ip community-list expanded c100 permit 58 ^65000:3_0:157_0:57$ ip community-list expanded c100 permit 59 ^65000:3_0:158_0:58$ ip community-list expanded c100 permit 60 ^65000:3_0:159_0:59$ ip community-list expanded c100 permit 61 ^65000:3_0:160_0:60$ ip community-list expanded c100 permit 62 ^65000:3_0:161_0:61$ ip community-list expanded c100 permit 63 ^65000:3_0:162_0:62$ ip community-list expanded c100 permit 64 ^65000:3_0:163_0:63$ ip community-list expanded c100 permit 65 ^65000:3_0:164_0:64$ ip community-list expanded c100 permit 66 ^65000:3_0:165_0:65$ ip community-list expanded c100 permit 67 ^65000:3_0:166_0:66$ ip community-list expanded c100 permit 68 ^65000:3_0:167_0:67$ ip community-list expanded c100 permit 69 ^65000:3_0:168_0:68$ ip community-list expanded c100 permit 70 ^65000:3_0:169_0:69$ ip community-list expanded c100 permit 71 ^65000:3_0:170_0:70$ ip community-list expanded c100 permit 72 ^65000:3_0:171_0:71$ ip community-list expanded c100 permit 73 ^65000:3_0:172_0:72$ ip community-list expanded c100 permit 74 ^65000:3_0:173_0:73$ ip community-list expanded c100 permit 75 ^65000:3_0:174_0:74$ ip community-list expanded c100 permit 76 ^65000:3_0:175_0:75$ ip community-list expanded c100 permit 77 ^65000:3_0:176_0:76$ ip community-list expanded c100 permit 78 ^65000:3_0:177_0:77$ ip community-list expanded c100 permit 79 ^65000:3_0:178_0:78$ ip community-list expanded c100 permit 80 ^65000:3_0:179_0:79$ ip community-list expanded c100 permit 81 ^65000:3_0:180_0:80$ ip community-list expanded c100 permit 82 ^65000:3_0:181_0:81$ ip community-list expanded c100 permit 83 ^65000:3_0:182_0:82$ ip community-list expanded c100 permit 84 ^65000:3_0:183_0:83$ ip community-list expanded c100 permit 85 ^65000:3_0:184_0:84$ ip community-list expanded c100 permit 86 ^65000:3_0:185_0:85$ ip community-list expanded c100 permit 87 ^65000:3_0:186_0:86$ ip community-list expanded c100 permit 88 ^65000:3_0:187_0:87$ ip community-list expanded c100 permit 89 ^65000:3_0:188_0:88$ ip community-list expanded c100 permit 90 ^65000:3_0:189_0:89$ ip community-list expanded c100 permit 91 ^65000:3_0:190_0:90$ ip community-list expanded c100 permit 92 ^65000:3_0:191_0:91$ ip community-list expanded c100 permit 93 ^65000:3_0:192_0:92$ ip community-list expanded c100 permit 94 ^65000:3_0:193_0:93$ ip community-list expanded c100 permit 95 ^65000:3_0:194_0:94$ ip community-list expanded c100 permit 96 ^65000:3_0:195_0:95$ ip community-list expanded c100 permit 97 ^65000:3_0:196_0:96$ ip community-list expanded c100 permit 98 ^65000:3_0:197_0:97$ ip community-list expanded c100 permit 99 ^65000:3_0:198_0:98$ ip community-list expanded c100 permit 100 ^65000:3_0:199_0:99$ ip community-list expanded c100 permit 101 ^65000:4_0:200_0:2$ ip community-list expanded c100 permit 102 ^65000:3_0:200_0:100$ ip community-list expanded c100 permit 103 ^65000:4_0:201_0:2$ ip community-list expanded c100 permit 104 ^65000:3_0:201_0:101$ ip community-list expanded c100 permit 105 ^65000:3_0:202_0:102$ ip community-list expanded c100 permit 106 ^65000:3_0:203_0:103$ ip community-list expanded c100 permit 107 ^65000:3_0:204_0:104$ ip community-list expanded c100 permit 108 ^65000:3_0:205_0:105$ ip community-list expanded c100 permit 109 ^65000:3_0:206_0:106$ ip community-list expanded c100 permit 110 ^65000:3_0:207_0:107$ ip community-list expanded c100 permit 111 ^65000:3_0:208_0:108$ ip community-list expanded c100 permit 112 ^65000:3_0:209_0:109$ ip community-list expanded c100 permit 113 ^65000:3_0:210_0:110$ ip community-list expanded c100 permit 114 ^65000:3_0:211_0:111$ ip community-list expanded c100 permit 115 ^65000:3_0:212_0:112$ ip community-list expanded c100 permit 116 ^65000:3_0:213_0:113$ ip community-list expanded c100 permit 117 ^65000:3_0:214_0:114$ ip community-list expanded c100 permit 118 ^65000:3_0:215_0:115$ ip community-list expanded c100 permit 119 ^65000:3_0:216_0:116$ ip community-list expanded c100 permit 120 ^65000:3_0:217_0:117$ ip community-list expanded c100 permit 121 ^65000:3_0:218_0:118$ ip community-list expanded c100 permit 122 ^65000:3_0:219_0:119$ ip community-list expanded c100 permit 123 ^65000:3_0:220_0:120$ ip community-list expanded c100 permit 124 ^65000:3_0:221_0:121$ ip community-list expanded c100 permit 125 ^65000:3_0:222_0:122$ ip community-list expanded c100 permit 126 ^65000:3_0:223_0:123$ ip community-list expanded c100 permit 127 ^65000:3_0:224_0:124$ ip community-list expanded c100 permit 128 ^65000:3_0:225_0:125$ ip community-list expanded c100 permit 129 ^65000:3_0:226_0:126$ ip community-list expanded c100 permit 130 ^65000:3_0:227_0:127$ ip community-list expanded c100 permit 131 ^65000:3_0:228_0:128$ ip community-list expanded c100 permit 132 ^65000:3_0:229_0:129$ ip community-list expanded c100 permit 133 ^65000:3_0:230_0:130$ ip community-list expanded c100 permit 134 ^65000:3_0:231_0:131$ ip community-list expanded c100 permit 135 ^65000:3_0:232_0:132$ ip community-list expanded c100 permit 136 ^65000:3_0:233_0:133$ ip community-list expanded c100 permit 137 ^65000:3_0:234_0:134$ ip community-list expanded c100 permit 138 ^65000:3_0:235_0:135$ ip community-list expanded c100 permit 139 ^65000:3_0:236_0:136$ ip community-list expanded c100 permit 140 ^65000:3_0:237_0:137$ ip community-list expanded c100 permit 141 ^65000:3_0:238_0:138$ ip community-list expanded c100 permit 142 ^65000:3_0:239_0:139$ ip community-list expanded c100 permit 143 ^65000:3_0:240_0:140$ ip community-list expanded c100 permit 144 ^65000:3_0:241_0:141$ ip community-list expanded c100 permit 145 ^65000:3_0:242_0:142$ ip community-list expanded c100 permit 146 ^65000:3_0:243_0:143$ ip community-list expanded c100 permit 147 ^65000:3_0:244_0:144$ ip community-list expanded c100 permit 148 ^65000:3_0:245_0:145$ ip community-list expanded c100 permit 149 ^65000:3_0:246_0:146$ ip community-list expanded c100 permit 150 ^65000:3_0:247_0:147$ ip community-list expanded c100 permit 151 ^65000:3_0:248_0:148$ ip community-list expanded c100 permit 152 ^65000:3_0:249_0:149$ ip community-list expanded c100 permit 153 ^65000:3_0:250_0:150$ ip community-list expanded c100 permit 154 ^65000:3_0:251_0:151$ ip community-list expanded c100 permit 155 ^65000:3_0:252_0:152$ ip community-list expanded c100 permit 156 ^65000:3_0:253_0:153$ ip community-list expanded c100 permit 157 ^65000:3_0:254_0:154$ ip community-list expanded c100 permit 158 ^65000:3_0:255_0:155$ ip community-list expanded c100 permit 159 ^65000:3_0:256_0:156$ route-map calculator permit 2969 match community 1_1_99 2_1_100 2_2_50 1_2_98 1_3_97 set community 0:100 route-map calculator permit 2970 match community 2_4_25 1_4_96 2_5_20 1_5_95 1_6_94 set community 0:100 route-map calculator permit 2971 match community 1_7_93 1_8_92 1_9_91 2_10_10 1_10_90 set community 0:100 route-map calculator permit 2972 match community 1_11_89 1_12_88 1_13_87 1_14_86 1_15_85 set community 0:100 route-map calculator permit 2973 match community 1_16_84 1_17_83 1_18_82 1_19_81 1_20_80 set community 0:100 route-map calculator permit 2974 match community 1_21_79 1_22_78 1_23_77 1_24_76 1_25_75 set community 0:100 route-map calculator permit 2975 match community 1_26_74 1_27_73 1_28_72 1_29_71 1_30_70 set community 0:100 route-map calculator permit 2976 match community 1_31_69 1_32_68 1_33_67 1_34_66 1_35_65 set community 0:100 route-map calculator permit 2977 match community 1_36_64 1_37_63 1_38_62 1_39_61 1_40_60 set community 0:100 route-map calculator permit 2978 match community 1_41_59 1_42_58 1_43_57 1_44_56 1_45_55 set community 0:100 route-map calculator permit 2979 match community 1_46_54 1_47_53 1_48_52 1_49_51 1_50_50 set community 0:100 route-map calculator permit 2980 match community c4_100_1 c3_101_1 c3_102_2 c3_103_3 c3_104_4 set community 0:100 route-map calculator permit 2981 match community c3_105_5 c3_106_6 c3_107_7 c3_108_8 c3_109_9 set community 0:100 route-map calculator permit 2982 match community c3_110_10 c3_111_11 c3_112_12 c3_113_13 c3_114_14 set community 0:100 route-map calculator permit 2983 match community c3_115_15 c3_116_16 c3_117_17 c3_118_18 c3_119_19 set community 0:100 route-map calculator permit 2984 match community c3_120_20 c3_121_21 c3_122_22 c3_123_23 c3_124_24 set community 0:100 route-map calculator permit 2985 match community c3_125_25 c3_126_26 c3_127_27 c3_128_28 c3_129_29 set community 0:100 route-map calculator permit 2986 match community c3_130_30 c3_131_31 c3_132_32 c3_133_33 c3_134_34 set community 0:100 route-map calculator permit 2987 match community c3_135_35 c3_136_36 c3_137_37 c3_138_38 c3_139_39 set community 0:100 route-map calculator permit 2988 match community c3_140_40 c3_141_41 c3_142_42 c3_143_43 c3_144_44 set community 0:100 route-map calculator permit 2989 match community c3_145_45 c3_146_46 c3_147_47 c3_148_48 c3_149_49 set community 0:100 route-map calculator permit 2990 match community c3_150_50 c3_151_51 c3_152_52 c3_153_53 c3_154_54 set community 0:100 route-map calculator permit 2991 match community c3_155_55 c3_156_56 c3_157_57 c3_158_58 c3_159_59 set community 0:100 route-map calculator permit 2992 match community c3_160_60 c3_161_61 c3_162_62 c3_163_63 c3_164_64 set community 0:100 route-map calculator permit 2993 match community c3_165_65 c3_166_66 c3_167_67 c3_168_68 c3_169_69 set community 0:100 route-map calculator permit 2994 match community c3_170_70 c3_171_71 c3_172_72 c3_173_73 c3_174_74 set community 0:100 route-map calculator permit 2995 match community c3_175_75 c3_176_76 c3_177_77 c3_178_78 c3_179_79 set community 0:100 route-map calculator permit 2996 match community c3_180_80 c3_181_81 c3_182_82 c3_183_83 c3_184_84 set community 0:100 route-map calculator permit 2997 match community c3_185_85 c3_186_86 c3_187_87 c3_188_88 c3_189_89 set community 0:100 route-map calculator permit 2998 match community c3_190_90 c3_191_91 c3_192_92 c3_193_93 c3_194_94 set community 0:100 route-map calculator permit 2999 match community c3_195_95 c3_196_96 c3_197_97 c3_198_98 c3_199_99 set community 0:100 route-map calculator permit 3000 match community c4_200_2 c3_200_100 c4_201_2 c3_201_101 c3_202_102 set community 0:100 route-map calculator permit 3001 match community c3_203_103 c3_204_104 c3_205_105 c3_206_106 c3_207_107 set community 0:100 route-map calculator permit 3002 match community c3_208_108 c3_209_109 c3_210_110 c3_211_111 c3_212_112 set community 0:100 route-map calculator permit 3003 match community c3_213_113 c3_214_114 c3_215_115 c3_216_116 c3_217_117 set community 0:100 route-map calculator permit 3004 match community c3_218_118 c3_219_119 c3_220_120 c3_221_121 c3_222_122 set community 0:100 route-map calculator permit 3005 match community c3_223_123 c3_224_124 c3_225_125 c3_226_126 c3_227_127 set community 0:100 route-map calculator permit 3006 match community c3_228_128 c3_229_129 c3_230_130 c3_231_131 c3_232_132 set community 0:100 route-map calculator permit 3007 match community c3_233_133 c3_234_134 c3_235_135 c3_236_136 c3_237_137 set community 0:100 route-map calculator permit 3008 match community c3_238_138 c3_239_139 c3_240_140 c3_241_141 c3_242_142 set community 0:100 route-map calculator permit 3009 match community c3_243_143 c3_244_144 c3_245_145 c3_246_146 c3_247_147 set community 0:100 route-map calculator permit 3010 match community c3_248_148 c3_249_149 c3_250_150 c3_251_151 c3_252_152 set community 0:100 route-map calculator permit 3011 match community c3_253_153 c3_254_154 c3_255_155 c3_256_156 set community 0:100 ip community-list standard 2_39_182 permit 65000:2 0:39 0:182 ip community-list standard 2_42_169 permit 65000:2 0:42 0:169 ip community-list standard 2_78_91 permit 65000:2 0:78 0:91 route-map calculator permit 3012 match community 2_39_182 2_42_169 2_78_91 set community 0:7098 ip community-list standard 2_170_238 permit 65000:2 0:170 0:238 route-map calculator permit 3013 match community 2_170_238 set community 0:40460 ip community-list standard 2_47_67 permit 65000:2 0:47 0:67 route-map calculator permit 3014 match community 2_47_67 set community 0:3149 ip community-list standard 2_118_131 permit 65000:2 0:118 0:131 route-map calculator permit 3015 match community 2_118_131 set community 0:15458 ip community-list standard 2_46_207 permit 65000:2 0:46 0:207 ip community-list standard 2_69_138 permit 65000:2 0:69 0:138 route-map calculator permit 3016 match community 2_46_207 2_69_138 set community 0:9522 ip community-list standard 2_11_255 permit 65000:2 0:11 0:255 ip community-list standard 2_15_187 permit 65000:2 0:15 0:187 ip community-list standard 2_17_165 permit 65000:2 0:17 0:165 ip community-list standard 2_33_85 permit 65000:2 0:33 0:85 ip community-list standard 2_51_55 permit 65000:2 0:51 0:55 route-map calculator permit 3017 match community 2_11_255 2_15_187 2_17_165 2_33_85 2_51_55 set community 0:2805 ip community-list standard 1_1_78 permit 65000:1 0:1 0:78 ip community-list standard 2_1_79 permit 65000:2 0:1 0:79 ip community-list standard 1_2_77 permit 65000:1 0:2 0:77 ip community-list standard 1_3_76 permit 65000:1 0:3 0:76 ip community-list standard 1_4_75 permit 65000:1 0:4 0:75 ip community-list standard 1_5_74 permit 65000:1 0:5 0:74 ip community-list standard 1_6_73 permit 65000:1 0:6 0:73 ip community-list standard 1_7_72 permit 65000:1 0:7 0:72 ip community-list standard 1_8_71 permit 65000:1 0:8 0:71 ip community-list standard 1_9_70 permit 65000:1 0:9 0:70 ip community-list standard 1_10_69 permit 65000:1 0:10 0:69 ip community-list standard 1_11_68 permit 65000:1 0:11 0:68 ip community-list standard 1_12_67 permit 65000:1 0:12 0:67 ip community-list standard 1_13_66 permit 65000:1 0:13 0:66 ip community-list standard 1_14_65 permit 65000:1 0:14 0:65 ip community-list standard 1_15_64 permit 65000:1 0:15 0:64 ip community-list standard 1_16_63 permit 65000:1 0:16 0:63 ip community-list standard 1_17_62 permit 65000:1 0:17 0:62 ip community-list standard 1_18_61 permit 65000:1 0:18 0:61 ip community-list standard 1_19_60 permit 65000:1 0:19 0:60 ip community-list standard 1_20_59 permit 65000:1 0:20 0:59 ip community-list standard 1_21_58 permit 65000:1 0:21 0:58 ip community-list standard 1_22_57 permit 65000:1 0:22 0:57 ip community-list standard 1_23_56 permit 65000:1 0:23 0:56 ip community-list standard 1_24_55 permit 65000:1 0:24 0:55 ip community-list standard 1_25_54 permit 65000:1 0:25 0:54 ip community-list standard 1_26_53 permit 65000:1 0:26 0:53 ip community-list standard 1_27_52 permit 65000:1 0:27 0:52 ip community-list standard 1_28_51 permit 65000:1 0:28 0:51 ip community-list standard 1_29_50 permit 65000:1 0:29 0:50 ip community-list standard 1_30_49 permit 65000:1 0:30 0:49 ip community-list standard 1_31_48 permit 65000:1 0:31 0:48 ip community-list standard 1_32_47 permit 65000:1 0:32 0:47 ip community-list standard 1_33_46 permit 65000:1 0:33 0:46 ip community-list standard 1_34_45 permit 65000:1 0:34 0:45 ip community-list standard 1_35_44 permit 65000:1 0:35 0:44 ip community-list standard 1_36_43 permit 65000:1 0:36 0:43 ip community-list standard 1_37_42 permit 65000:1 0:37 0:42 ip community-list standard 1_38_41 permit 65000:1 0:38 0:41 ip community-list standard 1_39_40 permit 65000:1 0:39 0:40 ip community-list expanded c79 permit 1 ^65000:4_0:79_0:1$ ip community-list expanded c79 permit 2 ^65000:3_0:80_0:1$ ip community-list expanded c79 permit 3 ^65000:3_0:81_0:2$ ip community-list expanded c79 permit 4 ^65000:3_0:82_0:3$ ip community-list expanded c79 permit 5 ^65000:3_0:83_0:4$ ip community-list expanded c79 permit 6 ^65000:3_0:84_0:5$ ip community-list expanded c79 permit 7 ^65000:3_0:85_0:6$ ip community-list expanded c79 permit 8 ^65000:3_0:86_0:7$ ip community-list expanded c79 permit 9 ^65000:3_0:87_0:8$ ip community-list expanded c79 permit 10 ^65000:3_0:88_0:9$ ip community-list expanded c79 permit 11 ^65000:3_0:89_0:10$ ip community-list expanded c79 permit 12 ^65000:3_0:90_0:11$ ip community-list expanded c79 permit 13 ^65000:3_0:91_0:12$ ip community-list expanded c79 permit 14 ^65000:3_0:92_0:13$ ip community-list expanded c79 permit 15 ^65000:3_0:93_0:14$ ip community-list expanded c79 permit 16 ^65000:3_0:94_0:15$ ip community-list expanded c79 permit 17 ^65000:3_0:95_0:16$ ip community-list expanded c79 permit 18 ^65000:3_0:96_0:17$ ip community-list expanded c79 permit 19 ^65000:3_0:97_0:18$ ip community-list expanded c79 permit 20 ^65000:3_0:98_0:19$ ip community-list expanded c79 permit 21 ^65000:3_0:99_0:20$ ip community-list expanded c79 permit 22 ^65000:3_0:100_0:21$ ip community-list expanded c79 permit 23 ^65000:3_0:101_0:22$ ip community-list expanded c79 permit 24 ^65000:3_0:102_0:23$ ip community-list expanded c79 permit 25 ^65000:3_0:103_0:24$ ip community-list expanded c79 permit 26 ^65000:3_0:104_0:25$ ip community-list expanded c79 permit 27 ^65000:3_0:105_0:26$ ip community-list expanded c79 permit 28 ^65000:3_0:106_0:27$ ip community-list expanded c79 permit 29 ^65000:3_0:107_0:28$ ip community-list expanded c79 permit 30 ^65000:3_0:108_0:29$ ip community-list expanded c79 permit 31 ^65000:3_0:109_0:30$ ip community-list expanded c79 permit 32 ^65000:3_0:110_0:31$ ip community-list expanded c79 permit 33 ^65000:3_0:111_0:32$ ip community-list expanded c79 permit 34 ^65000:3_0:112_0:33$ ip community-list expanded c79 permit 35 ^65000:3_0:113_0:34$ ip community-list expanded c79 permit 36 ^65000:3_0:114_0:35$ ip community-list expanded c79 permit 37 ^65000:3_0:115_0:36$ ip community-list expanded c79 permit 38 ^65000:3_0:116_0:37$ ip community-list expanded c79 permit 39 ^65000:3_0:117_0:38$ ip community-list expanded c79 permit 40 ^65000:3_0:118_0:39$ ip community-list expanded c79 permit 41 ^65000:3_0:119_0:40$ ip community-list expanded c79 permit 42 ^65000:3_0:120_0:41$ ip community-list expanded c79 permit 43 ^65000:3_0:121_0:42$ ip community-list expanded c79 permit 44 ^65000:3_0:122_0:43$ ip community-list expanded c79 permit 45 ^65000:3_0:123_0:44$ ip community-list expanded c79 permit 46 ^65000:3_0:124_0:45$ ip community-list expanded c79 permit 47 ^65000:3_0:125_0:46$ ip community-list expanded c79 permit 48 ^65000:3_0:126_0:47$ ip community-list expanded c79 permit 49 ^65000:3_0:127_0:48$ ip community-list expanded c79 permit 50 ^65000:3_0:128_0:49$ ip community-list expanded c79 permit 51 ^65000:3_0:129_0:50$ ip community-list expanded c79 permit 52 ^65000:3_0:130_0:51$ ip community-list expanded c79 permit 53 ^65000:3_0:131_0:52$ ip community-list expanded c79 permit 54 ^65000:3_0:132_0:53$ ip community-list expanded c79 permit 55 ^65000:3_0:133_0:54$ ip community-list expanded c79 permit 56 ^65000:3_0:134_0:55$ ip community-list expanded c79 permit 57 ^65000:3_0:135_0:56$ ip community-list expanded c79 permit 58 ^65000:3_0:136_0:57$ ip community-list expanded c79 permit 59 ^65000:3_0:137_0:58$ ip community-list expanded c79 permit 60 ^65000:3_0:138_0:59$ ip community-list expanded c79 permit 61 ^65000:3_0:139_0:60$ ip community-list expanded c79 permit 62 ^65000:3_0:140_0:61$ ip community-list expanded c79 permit 63 ^65000:3_0:141_0:62$ ip community-list expanded c79 permit 64 ^65000:3_0:142_0:63$ ip community-list expanded c79 permit 65 ^65000:3_0:143_0:64$ ip community-list expanded c79 permit 66 ^65000:3_0:144_0:65$ ip community-list expanded c79 permit 67 ^65000:3_0:145_0:66$ ip community-list expanded c79 permit 68 ^65000:3_0:146_0:67$ ip community-list expanded c79 permit 69 ^65000:3_0:147_0:68$ ip community-list expanded c79 permit 70 ^65000:3_0:148_0:69$ ip community-list expanded c79 permit 71 ^65000:3_0:149_0:70$ ip community-list expanded c79 permit 72 ^65000:3_0:150_0:71$ ip community-list expanded c79 permit 73 ^65000:3_0:151_0:72$ ip community-list expanded c79 permit 74 ^65000:3_0:152_0:73$ ip community-list expanded c79 permit 75 ^65000:3_0:153_0:74$ ip community-list expanded c79 permit 76 ^65000:3_0:154_0:75$ ip community-list expanded c79 permit 77 ^65000:3_0:155_0:76$ ip community-list expanded c79 permit 78 ^65000:3_0:156_0:77$ ip community-list expanded c79 permit 79 ^65000:3_0:157_0:78$ ip community-list expanded c79 permit 80 ^65000:4_0:158_0:2$ ip community-list expanded c79 permit 81 ^65000:3_0:158_0:79$ ip community-list expanded c79 permit 82 ^65000:4_0:159_0:2$ ip community-list expanded c79 permit 83 ^65000:3_0:159_0:80$ ip community-list expanded c79 permit 84 ^65000:3_0:160_0:81$ ip community-list expanded c79 permit 85 ^65000:3_0:161_0:82$ ip community-list expanded c79 permit 86 ^65000:3_0:162_0:83$ ip community-list expanded c79 permit 87 ^65000:3_0:163_0:84$ ip community-list expanded c79 permit 88 ^65000:3_0:164_0:85$ ip community-list expanded c79 permit 89 ^65000:3_0:165_0:86$ ip community-list expanded c79 permit 90 ^65000:3_0:166_0:87$ ip community-list expanded c79 permit 91 ^65000:3_0:167_0:88$ ip community-list expanded c79 permit 92 ^65000:3_0:168_0:89$ ip community-list expanded c79 permit 93 ^65000:3_0:169_0:90$ ip community-list expanded c79 permit 94 ^65000:3_0:170_0:91$ ip community-list expanded c79 permit 95 ^65000:3_0:171_0:92$ ip community-list expanded c79 permit 96 ^65000:3_0:172_0:93$ ip community-list expanded c79 permit 97 ^65000:3_0:173_0:94$ ip community-list expanded c79 permit 98 ^65000:3_0:174_0:95$ ip community-list expanded c79 permit 99 ^65000:3_0:175_0:96$ ip community-list expanded c79 permit 100 ^65000:3_0:176_0:97$ ip community-list expanded c79 permit 101 ^65000:3_0:177_0:98$ ip community-list expanded c79 permit 102 ^65000:3_0:178_0:99$ ip community-list expanded c79 permit 103 ^65000:3_0:179_0:100$ ip community-list expanded c79 permit 104 ^65000:3_0:180_0:101$ ip community-list expanded c79 permit 105 ^65000:3_0:181_0:102$ ip community-list expanded c79 permit 106 ^65000:3_0:182_0:103$ ip community-list expanded c79 permit 107 ^65000:3_0:183_0:104$ ip community-list expanded c79 permit 108 ^65000:3_0:184_0:105$ ip community-list expanded c79 permit 109 ^65000:3_0:185_0:106$ ip community-list expanded c79 permit 110 ^65000:3_0:186_0:107$ ip community-list expanded c79 permit 111 ^65000:3_0:187_0:108$ ip community-list expanded c79 permit 112 ^65000:3_0:188_0:109$ ip community-list expanded c79 permit 113 ^65000:3_0:189_0:110$ ip community-list expanded c79 permit 114 ^65000:3_0:190_0:111$ ip community-list expanded c79 permit 115 ^65000:3_0:191_0:112$ ip community-list expanded c79 permit 116 ^65000:3_0:192_0:113$ ip community-list expanded c79 permit 117 ^65000:3_0:193_0:114$ ip community-list expanded c79 permit 118 ^65000:3_0:194_0:115$ ip community-list expanded c79 permit 119 ^65000:3_0:195_0:116$ ip community-list expanded c79 permit 120 ^65000:3_0:196_0:117$ ip community-list expanded c79 permit 121 ^65000:3_0:197_0:118$ ip community-list expanded c79 permit 122 ^65000:3_0:198_0:119$ ip community-list expanded c79 permit 123 ^65000:3_0:199_0:120$ ip community-list expanded c79 permit 124 ^65000:3_0:200_0:121$ ip community-list expanded c79 permit 125 ^65000:3_0:201_0:122$ ip community-list expanded c79 permit 126 ^65000:3_0:202_0:123$ ip community-list expanded c79 permit 127 ^65000:3_0:203_0:124$ ip community-list expanded c79 permit 128 ^65000:3_0:204_0:125$ ip community-list expanded c79 permit 129 ^65000:3_0:205_0:126$ ip community-list expanded c79 permit 130 ^65000:3_0:206_0:127$ ip community-list expanded c79 permit 131 ^65000:3_0:207_0:128$ ip community-list expanded c79 permit 132 ^65000:3_0:208_0:129$ ip community-list expanded c79 permit 133 ^65000:3_0:209_0:130$ ip community-list expanded c79 permit 134 ^65000:3_0:210_0:131$ ip community-list expanded c79 permit 135 ^65000:3_0:211_0:132$ ip community-list expanded c79 permit 136 ^65000:3_0:212_0:133$ ip community-list expanded c79 permit 137 ^65000:3_0:213_0:134$ ip community-list expanded c79 permit 138 ^65000:3_0:214_0:135$ ip community-list expanded c79 permit 139 ^65000:3_0:215_0:136$ ip community-list expanded c79 permit 140 ^65000:3_0:216_0:137$ ip community-list expanded c79 permit 141 ^65000:3_0:217_0:138$ ip community-list expanded c79 permit 142 ^65000:3_0:218_0:139$ ip community-list expanded c79 permit 143 ^65000:3_0:219_0:140$ ip community-list expanded c79 permit 144 ^65000:3_0:220_0:141$ ip community-list expanded c79 permit 145 ^65000:3_0:221_0:142$ ip community-list expanded c79 permit 146 ^65000:3_0:222_0:143$ ip community-list expanded c79 permit 147 ^65000:3_0:223_0:144$ ip community-list expanded c79 permit 148 ^65000:3_0:224_0:145$ ip community-list expanded c79 permit 149 ^65000:3_0:225_0:146$ ip community-list expanded c79 permit 150 ^65000:3_0:226_0:147$ ip community-list expanded c79 permit 151 ^65000:3_0:227_0:148$ ip community-list expanded c79 permit 152 ^65000:3_0:228_0:149$ ip community-list expanded c79 permit 153 ^65000:3_0:229_0:150$ ip community-list expanded c79 permit 154 ^65000:3_0:230_0:151$ ip community-list expanded c79 permit 155 ^65000:3_0:231_0:152$ ip community-list expanded c79 permit 156 ^65000:3_0:232_0:153$ ip community-list expanded c79 permit 157 ^65000:3_0:233_0:154$ ip community-list expanded c79 permit 158 ^65000:3_0:234_0:155$ ip community-list expanded c79 permit 159 ^65000:3_0:235_0:156$ ip community-list expanded c79 permit 160 ^65000:3_0:236_0:157$ ip community-list expanded c79 permit 161 ^65000:4_0:237_0:3$ ip community-list expanded c79 permit 162 ^65000:3_0:237_0:158$ ip community-list expanded c79 permit 163 ^65000:4_0:238_0:3$ ip community-list expanded c79 permit 164 ^65000:3_0:238_0:159$ ip community-list expanded c79 permit 165 ^65000:4_0:239_0:3$ ip community-list expanded c79 permit 166 ^65000:3_0:239_0:160$ ip community-list expanded c79 permit 167 ^65000:3_0:240_0:161$ ip community-list expanded c79 permit 168 ^65000:3_0:241_0:162$ ip community-list expanded c79 permit 169 ^65000:3_0:242_0:163$ ip community-list expanded c79 permit 170 ^65000:3_0:243_0:164$ ip community-list expanded c79 permit 171 ^65000:3_0:244_0:165$ ip community-list expanded c79 permit 172 ^65000:3_0:245_0:166$ ip community-list expanded c79 permit 173 ^65000:3_0:246_0:167$ ip community-list expanded c79 permit 174 ^65000:3_0:247_0:168$ ip community-list expanded c79 permit 175 ^65000:3_0:248_0:169$ ip community-list expanded c79 permit 176 ^65000:3_0:249_0:170$ ip community-list expanded c79 permit 177 ^65000:3_0:250_0:171$ ip community-list expanded c79 permit 178 ^65000:3_0:251_0:172$ ip community-list expanded c79 permit 179 ^65000:3_0:252_0:173$ ip community-list expanded c79 permit 180 ^65000:3_0:253_0:174$ ip community-list expanded c79 permit 181 ^65000:3_0:254_0:175$ ip community-list expanded c79 permit 182 ^65000:3_0:255_0:176$ ip community-list expanded c79 permit 183 ^65000:3_0:256_0:177$ route-map calculator permit 3018 match community 1_1_78 2_1_79 1_2_77 1_3_76 1_4_75 set community 0:79 route-map calculator permit 3019 match community 1_5_74 1_6_73 1_7_72 1_8_71 1_9_70 set community 0:79 route-map calculator permit 3020 match community 1_10_69 1_11_68 1_12_67 1_13_66 1_14_65 set community 0:79 route-map calculator permit 3021 match community 1_15_64 1_16_63 1_17_62 1_18_61 1_19_60 set community 0:79 route-map calculator permit 3022 match community 1_20_59 1_21_58 1_22_57 1_23_56 1_24_55 set community 0:79 route-map calculator permit 3023 match community 1_25_54 1_26_53 1_27_52 1_28_51 1_29_50 set community 0:79 route-map calculator permit 3024 match community 1_30_49 1_31_48 1_32_47 1_33_46 1_34_45 set community 0:79 route-map calculator permit 3025 match community 1_35_44 1_36_43 1_37_42 1_38_41 1_39_40 set community 0:79 route-map calculator permit 3026 match community c4_79_1 c3_80_1 c3_81_2 c3_82_3 c3_83_4 set community 0:79 route-map calculator permit 3027 match community c3_84_5 c3_85_6 c3_86_7 c3_87_8 c3_88_9 set community 0:79 route-map calculator permit 3028 match community c3_89_10 c3_90_11 c3_91_12 c3_92_13 c3_93_14 set community 0:79 route-map calculator permit 3029 match community c3_94_15 c3_95_16 c3_96_17 c3_97_18 c3_98_19 set community 0:79 route-map calculator permit 3030 match community c3_99_20 c3_100_21 c3_101_22 c3_102_23 c3_103_24 set community 0:79 route-map calculator permit 3031 match community c3_104_25 c3_105_26 c3_106_27 c3_107_28 c3_108_29 set community 0:79 route-map calculator permit 3032 match community c3_109_30 c3_110_31 c3_111_32 c3_112_33 c3_113_34 set community 0:79 route-map calculator permit 3033 match community c3_114_35 c3_115_36 c3_116_37 c3_117_38 c3_118_39 set community 0:79 route-map calculator permit 3034 match community c3_119_40 c3_120_41 c3_121_42 c3_122_43 c3_123_44 set community 0:79 route-map calculator permit 3035 match community c3_124_45 c3_125_46 c3_126_47 c3_127_48 c3_128_49 set community 0:79 route-map calculator permit 3036 match community c3_129_50 c3_130_51 c3_131_52 c3_132_53 c3_133_54 set community 0:79 route-map calculator permit 3037 match community c3_134_55 c3_135_56 c3_136_57 c3_137_58 c3_138_59 set community 0:79 route-map calculator permit 3038 match community c3_139_60 c3_140_61 c3_141_62 c3_142_63 c3_143_64 set community 0:79 route-map calculator permit 3039 match community c3_144_65 c3_145_66 c3_146_67 c3_147_68 c3_148_69 set community 0:79 route-map calculator permit 3040 match community c3_149_70 c3_150_71 c3_151_72 c3_152_73 c3_153_74 set community 0:79 route-map calculator permit 3041 match community c3_154_75 c3_155_76 c3_156_77 c3_157_78 c4_158_2 set community 0:79 route-map calculator permit 3042 match community c3_158_79 c4_159_2 c3_159_80 c3_160_81 c3_161_82 set community 0:79 route-map calculator permit 3043 match community c3_162_83 c3_163_84 c3_164_85 c3_165_86 c3_166_87 set community 0:79 route-map calculator permit 3044 match community c3_167_88 c3_168_89 c3_169_90 c3_170_91 c3_171_92 set community 0:79 route-map calculator permit 3045 match community c3_172_93 c3_173_94 c3_174_95 c3_175_96 c3_176_97 set community 0:79 route-map calculator permit 3046 match community c3_177_98 c3_178_99 c3_179_100 c3_180_101 c3_181_102 set community 0:79 route-map calculator permit 3047 match community c3_182_103 c3_183_104 c3_184_105 c3_185_106 c3_186_107 set community 0:79 route-map calculator permit 3048 match community c3_187_108 c3_188_109 c3_189_110 c3_190_111 c3_191_112 set community 0:79 route-map calculator permit 3049 match community c3_192_113 c3_193_114 c3_194_115 c3_195_116 c3_196_117 set community 0:79 route-map calculator permit 3050 match community c3_197_118 c3_198_119 c3_199_120 c3_200_121 c3_201_122 set community 0:79 route-map calculator permit 3051 match community c3_202_123 c3_203_124 c3_204_125 c3_205_126 c3_206_127 set community 0:79 route-map calculator permit 3052 match community c3_207_128 c3_208_129 c3_209_130 c3_210_131 c3_211_132 set community 0:79 route-map calculator permit 3053 match community c3_212_133 c3_213_134 c3_214_135 c3_215_136 c3_216_137 set community 0:79 route-map calculator permit 3054 match community c3_217_138 c3_218_139 c3_219_140 c3_220_141 c3_221_142 set community 0:79 route-map calculator permit 3055 match community c3_222_143 c3_223_144 c3_224_145 c3_225_146 c3_226_147 set community 0:79 route-map calculator permit 3056 match community c3_227_148 c3_228_149 c3_229_150 c3_230_151 c3_231_152 set community 0:79 route-map calculator permit 3057 match community c3_232_153 c3_233_154 c3_234_155 c3_235_156 c3_236_157 set community 0:79 route-map calculator permit 3058 match community c4_237_3 c3_237_158 c4_238_3 c3_238_159 c4_239_3 set community 0:79 route-map calculator permit 3059 match community c3_239_160 c3_240_161 c3_241_162 c3_242_163 c3_243_164 set community 0:79 route-map calculator permit 3060 match community c3_244_165 c3_245_166 c3_246_167 c3_247_168 c3_248_169 set community 0:79 route-map calculator permit 3061 match community c3_249_170 c3_250_171 c3_251_172 c3_252_173 c3_253_174 set community 0:79 route-map calculator permit 3062 match community c3_254_175 c3_255_176 c3_256_177 set community 0:79 ip community-list standard 2_201_249 permit 65000:2 0:201 0:249 route-map calculator permit 3063 match community 2_201_249 set community 0:50049 ip community-list standard 2_30_237 permit 65000:2 0:30 0:237 ip community-list standard 2_45_158 permit 65000:2 0:45 0:158 ip community-list standard 2_79_90 permit 65000:2 0:79 0:90 route-map calculator permit 3064 match community 2_30_237 2_45_158 2_79_90 set community 0:7110 ip community-list standard 2_161_232 permit 65000:2 0:161 0:232 ip community-list standard 2_184_203 permit 65000:2 0:184 0:203 route-map calculator permit 3065 match community 2_161_232 2_184_203 set community 0:37352 ip community-list standard 2_71_196 permit 65000:2 0:71 0:196 ip community-list standard 2_98_142 permit 65000:2 0:98 0:142 route-map calculator permit 3066 match community 2_71_196 2_98_142 set community 0:13916 ip community-list standard 2_87_194 permit 65000:2 0:87 0:194 ip community-list standard 2_97_174 permit 65000:2 0:97 0:174 route-map calculator permit 3067 match community 2_87_194 2_97_174 set community 0:16878 ip community-list standard 2_191_251 permit 65000:2 0:191 0:251 route-map calculator permit 3068 match community 2_191_251 set community 0:47941 ip community-list standard 2_199_237 permit 65000:2 0:199 0:237 route-map calculator permit 3069 match community 2_199_237 set community 0:47163 ip community-list standard 2_94_179 permit 65000:2 0:94 0:179 route-map calculator permit 3070 match community 2_94_179 set community 0:16826 ip community-list standard 2_214_250 permit 65000:2 0:214 0:250 route-map calculator permit 3071 match community 2_214_250 set community 0:53500 ip community-list standard 2_18_151 permit 65000:2 0:18 0:151 route-map calculator permit 3072 match community 2_18_151 set community 0:2718 ip community-list standard 2_143_232 permit 65000:2 0:143 0:232 route-map calculator permit 3073 match community 2_143_232 set community 0:33176 ip community-list standard 2_11_67 permit 65000:2 0:11 0:67 route-map calculator permit 3074 match community 2_11_67 set community 0:737 ip community-list standard 2_179_187 permit 65000:2 0:179 0:187 route-map calculator permit 3075 match community 2_179_187 set community 0:33473 ip community-list standard 2_142_238 permit 65000:2 0:142 0:238 route-map calculator permit 3076 match community 2_142_238 set community 0:33796 ip community-list standard 2_99_127 permit 65000:2 0:99 0:127 route-map calculator permit 3077 match community 2_99_127 set community 0:12573 ip community-list standard 2_50_143 permit 65000:2 0:50 0:143 ip community-list standard 2_55_130 permit 65000:2 0:55 0:130 ip community-list standard 2_65_110 permit 65000:2 0:65 0:110 route-map calculator permit 3078 match community 2_50_143 2_55_130 2_65_110 set community 0:7150 ip community-list standard 2_11_208 permit 65000:2 0:11 0:208 ip community-list standard 2_13_176 permit 65000:2 0:13 0:176 ip community-list standard 2_16_143 permit 65000:2 0:16 0:143 ip community-list standard 2_22_104 permit 65000:2 0:22 0:104 ip community-list standard 2_26_88 permit 65000:2 0:26 0:88 ip community-list standard 2_44_52 permit 65000:2 0:44 0:52 route-map calculator permit 3079 match community 2_11_208 2_13_176 2_16_143 2_22_104 2_26_88 set community 0:2288 route-map calculator permit 3080 match community 2_44_52 set community 0:2288 ip community-list standard 2_113_179 permit 65000:2 0:113 0:179 route-map calculator permit 3081 match community 2_113_179 set community 0:20227 ip community-list standard 2_238_239 permit 65000:2 0:238 0:239 route-map calculator permit 3082 match community 2_238_239 set community 0:56882 ip community-list standard 2_67_242 permit 65000:2 0:67 0:242 ip community-list standard 2_121_134 permit 65000:2 0:121 0:134 route-map calculator permit 3083 match community 2_67_242 2_121_134 set community 0:16214 ip community-list standard 2_3_202 permit 65000:2 0:3 0:202 ip community-list standard 2_6_101 permit 65000:2 0:6 0:101 route-map calculator permit 3084 match community 2_3_202 2_6_101 set community 0:606 ip community-list standard 2_149_243 permit 65000:2 0:149 0:243 route-map calculator permit 3085 match community 2_149_243 set community 0:36207 ip community-list standard 2_107_185 permit 65000:2 0:107 0:185 route-map calculator permit 3086 match community 2_107_185 set community 0:19795 ip community-list standard 2_158_173 permit 65000:2 0:158 0:173 route-map calculator permit 3087 match community 2_158_173 set community 0:27334 ip community-list standard 2_147_206 permit 65000:2 0:147 0:206 route-map calculator permit 3088 match community 2_147_206 set community 0:30282 ip community-list standard 2_51_163 permit 65000:2 0:51 0:163 route-map calculator permit 3089 match community 2_51_163 set community 0:8313 ip community-list standard 2_6_207 permit 65000:2 0:6 0:207 ip community-list standard 2_9_138 permit 65000:2 0:9 0:138 ip community-list standard 2_18_69 permit 65000:2 0:18 0:69 ip community-list standard 2_23_54 permit 65000:2 0:23 0:54 ip community-list standard 2_27_46 permit 65000:2 0:27 0:46 route-map calculator permit 3090 match community 2_6_207 2_9_138 2_18_69 2_23_54 2_27_46 set community 0:1242 ip community-list standard 2_21_188 permit 65000:2 0:21 0:188 ip community-list standard 2_28_141 permit 65000:2 0:28 0:141 ip community-list standard 2_42_94 permit 65000:2 0:42 0:94 ip community-list standard 2_47_84 permit 65000:2 0:47 0:84 route-map calculator permit 3091 match community 2_21_188 2_28_141 2_42_94 2_47_84 set community 0:3948 ip community-list standard 2_193_196 permit 65000:2 0:193 0:196 route-map calculator permit 3092 match community 2_193_196 set community 0:37828 ip community-list standard 2_44_181 permit 65000:2 0:44 0:181 route-map calculator permit 3093 match community 2_44_181 set community 0:7964 ip community-list standard 2_13_74 permit 65000:2 0:13 0:74 ip community-list standard 2_26_37 permit 65000:2 0:26 0:37 route-map calculator permit 3094 match community 2_13_74 2_26_37 set community 0:962 ip community-list standard 2_98_248 permit 65000:2 0:98 0:248 ip community-list standard 2_112_217 permit 65000:2 0:112 0:217 ip community-list standard 2_124_196 permit 65000:2 0:124 0:196 route-map calculator permit 3095 match community 2_98_248 2_112_217 2_124_196 set community 0:24304 ip community-list standard 2_116_239 permit 65000:2 0:116 0:239 route-map calculator permit 3096 match community 2_116_239 set community 0:27724 ip community-list standard 2_165_234 permit 65000:2 0:165 0:234 ip community-list standard 2_195_198 permit 65000:2 0:195 0:198 route-map calculator permit 3097 match community 2_165_234 2_195_198 set community 0:38610 ip community-list standard 2_12_251 permit 65000:2 0:12 0:251 route-map calculator permit 3098 match community 2_12_251 set community 0:3012 ip community-list standard 2_170_193 permit 65000:2 0:170 0:193 route-map calculator permit 3099 match community 2_170_193 set community 0:32810 ip community-list standard 2_82_143 permit 65000:2 0:82 0:143 route-map calculator permit 3100 match community 2_82_143 set community 0:11726 ip community-list standard 2_42_202 permit 65000:2 0:42 0:202 ip community-list standard 2_84_101 permit 65000:2 0:84 0:101 route-map calculator permit 3101 match community 2_42_202 2_84_101 set community 0:8484 ip community-list standard 2_96_199 permit 65000:2 0:96 0:199 route-map calculator permit 3102 match community 2_96_199 set community 0:19104 ip community-list standard 2_102_197 permit 65000:2 0:102 0:197 route-map calculator permit 3103 match community 2_102_197 set community 0:20094 ip community-list standard 2_59_191 permit 65000:2 0:59 0:191 route-map calculator permit 3104 match community 2_59_191 set community 0:11269 ip community-list standard 2_44_236 permit 65000:2 0:44 0:236 ip community-list standard 2_59_176 permit 65000:2 0:59 0:176 ip community-list standard 2_88_118 permit 65000:2 0:88 0:118 route-map calculator permit 3105 match community 2_44_236 2_59_176 2_88_118 set community 0:10384 ip community-list standard 2_11_125 permit 65000:2 0:11 0:125 ip community-list standard 2_25_55 permit 65000:2 0:25 0:55 route-map calculator permit 3106 match community 2_11_125 2_25_55 set community 0:1375 ip community-list standard 2_126_213 permit 65000:2 0:126 0:213 ip community-list standard 2_142_189 permit 65000:2 0:142 0:189 route-map calculator permit 3107 match community 2_126_213 2_142_189 set community 0:26838 ip community-list standard 2_3_228 permit 65000:2 0:3 0:228 ip community-list standard 2_4_171 permit 65000:2 0:4 0:171 ip community-list standard 2_6_114 permit 65000:2 0:6 0:114 ip community-list standard 2_9_76 permit 65000:2 0:9 0:76 ip community-list standard 2_12_57 permit 65000:2 0:12 0:57 ip community-list standard 2_18_38 permit 65000:2 0:18 0:38 ip community-list standard 2_19_36 permit 65000:2 0:19 0:36 route-map calculator permit 3108 match community 2_3_228 2_4_171 2_6_114 2_9_76 2_12_57 set community 0:684 route-map calculator permit 3109 match community 2_18_38 2_19_36 set community 0:684 ip community-list standard 2_145_206 permit 65000:2 0:145 0:206 route-map calculator permit 3110 match community 2_145_206 set community 0:29870 ip community-list standard 2_107_239 permit 65000:2 0:107 0:239 route-map calculator permit 3111 match community 2_107_239 set community 0:25573 ip community-list standard 2_53_214 permit 65000:2 0:53 0:214 ip community-list standard 2_106_107 permit 65000:2 0:106 0:107 route-map calculator permit 3112 match community 2_53_214 2_106_107 set community 0:11342 ip community-list standard 2_193_256 permit 65000:2 0:193 0:256 route-map calculator permit 3113 match community 2_193_256 set community 0:49408 ip community-list standard 2_163_173 permit 65000:2 0:163 0:173 route-map calculator permit 3114 match community 2_163_173 set community 0:28199 ip community-list standard 2_210_236 permit 65000:2 0:210 0:236 route-map calculator permit 3115 match community 2_210_236 set community 0:49560 ip community-list standard 2_59_175 permit 65000:2 0:59 0:175 route-map calculator permit 3116 match community 2_59_175 set community 0:10325 ip community-list standard 2_197_233 permit 65000:2 0:197 0:233 route-map calculator permit 3117 match community 2_197_233 set community 0:45901 ip community-list standard 2_76_236 permit 65000:2 0:76 0:236 ip community-list standard 2_118_152 permit 65000:2 0:118 0:152 route-map calculator permit 3118 match community 2_76_236 2_118_152 set community 0:17936 ip community-list standard 2_101_195 permit 65000:2 0:101 0:195 route-map calculator permit 3119 match community 2_101_195 set community 0:19695 ip community-list standard 2_121_123 permit 65000:2 0:121 0:123 route-map calculator permit 3120 match community 2_121_123 set community 0:14883 ip community-list standard 2_181_194 permit 65000:2 0:181 0:194 route-map calculator permit 3121 match community 2_181_194 set community 0:35114 ip community-list standard 2_76_139 permit 65000:2 0:76 0:139 route-map calculator permit 3122 match community 2_76_139 set community 0:10564 ip community-list standard 2_103_135 permit 65000:2 0:103 0:135 route-map calculator permit 3123 match community 2_103_135 set community 0:13905 ip community-list standard 2_2_211 permit 65000:2 0:2 0:211 ip community-list standard 1_166_256 permit 65000:1 0:166 0:256 ip community-list standard 1_167_255 permit 65000:1 0:167 0:255 ip community-list standard 1_168_254 permit 65000:1 0:168 0:254 ip community-list standard 1_169_253 permit 65000:1 0:169 0:253 ip community-list standard 1_170_252 permit 65000:1 0:170 0:252 ip community-list standard 1_171_251 permit 65000:1 0:171 0:251 ip community-list standard 1_172_250 permit 65000:1 0:172 0:250 ip community-list standard 1_173_249 permit 65000:1 0:173 0:249 ip community-list standard 1_174_248 permit 65000:1 0:174 0:248 ip community-list standard 1_175_247 permit 65000:1 0:175 0:247 ip community-list standard 1_176_246 permit 65000:1 0:176 0:246 ip community-list standard 1_177_245 permit 65000:1 0:177 0:245 ip community-list standard 1_178_244 permit 65000:1 0:178 0:244 ip community-list standard 1_179_243 permit 65000:1 0:179 0:243 ip community-list standard 1_180_242 permit 65000:1 0:180 0:242 ip community-list standard 1_181_241 permit 65000:1 0:181 0:241 ip community-list standard 1_182_240 permit 65000:1 0:182 0:240 ip community-list standard 1_183_239 permit 65000:1 0:183 0:239 ip community-list standard 1_184_238 permit 65000:1 0:184 0:238 ip community-list standard 1_185_237 permit 65000:1 0:185 0:237 ip community-list standard 1_186_236 permit 65000:1 0:186 0:236 ip community-list standard 1_187_235 permit 65000:1 0:187 0:235 ip community-list standard 1_188_234 permit 65000:1 0:188 0:234 ip community-list standard 1_189_233 permit 65000:1 0:189 0:233 ip community-list standard 1_190_232 permit 65000:1 0:190 0:232 ip community-list standard 1_191_231 permit 65000:1 0:191 0:231 ip community-list standard 1_192_230 permit 65000:1 0:192 0:230 ip community-list standard 1_193_229 permit 65000:1 0:193 0:229 ip community-list standard 1_194_228 permit 65000:1 0:194 0:228 ip community-list standard 1_195_227 permit 65000:1 0:195 0:227 ip community-list standard 1_196_226 permit 65000:1 0:196 0:226 ip community-list standard 1_197_225 permit 65000:1 0:197 0:225 ip community-list standard 1_198_224 permit 65000:1 0:198 0:224 ip community-list standard 1_199_223 permit 65000:1 0:199 0:223 ip community-list standard 1_200_222 permit 65000:1 0:200 0:222 ip community-list standard 1_201_221 permit 65000:1 0:201 0:221 ip community-list standard 1_202_220 permit 65000:1 0:202 0:220 ip community-list standard 1_203_219 permit 65000:1 0:203 0:219 ip community-list standard 1_204_218 permit 65000:1 0:204 0:218 ip community-list standard 1_205_217 permit 65000:1 0:205 0:217 ip community-list standard 1_206_216 permit 65000:1 0:206 0:216 ip community-list standard 1_207_215 permit 65000:1 0:207 0:215 ip community-list standard 1_208_214 permit 65000:1 0:208 0:214 ip community-list standard 1_209_213 permit 65000:1 0:209 0:213 ip community-list standard 1_210_212 permit 65000:1 0:210 0:212 ip community-list standard 1_211_211 permit 65000:1 0:211 0:211 route-map calculator permit 3124 match community 2_2_211 1_166_256 1_167_255 1_168_254 1_169_253 set community 0:422 route-map calculator permit 3125 match community 1_170_252 1_171_251 1_172_250 1_173_249 1_174_248 set community 0:422 route-map calculator permit 3126 match community 1_175_247 1_176_246 1_177_245 1_178_244 1_179_243 set community 0:422 route-map calculator permit 3127 match community 1_180_242 1_181_241 1_182_240 1_183_239 1_184_238 set community 0:422 route-map calculator permit 3128 match community 1_185_237 1_186_236 1_187_235 1_188_234 1_189_233 set community 0:422 route-map calculator permit 3129 match community 1_190_232 1_191_231 1_192_230 1_193_229 1_194_228 set community 0:422 route-map calculator permit 3130 match community 1_195_227 1_196_226 1_197_225 1_198_224 1_199_223 set community 0:422 route-map calculator permit 3131 match community 1_200_222 1_201_221 1_202_220 1_203_219 1_204_218 set community 0:422 route-map calculator permit 3132 match community 1_205_217 1_206_216 1_207_215 1_208_214 1_209_213 set community 0:422 route-map calculator permit 3133 match community 1_210_212 1_211_211 set community 0:422 ip community-list standard 2_23_178 permit 65000:2 0:23 0:178 ip community-list standard 2_46_89 permit 65000:2 0:46 0:89 route-map calculator permit 3134 match community 2_23_178 2_46_89 set community 0:4094 ip community-list standard 2_157_251 permit 65000:2 0:157 0:251 route-map calculator permit 3135 match community 2_157_251 set community 0:39407 ip community-list standard 2_89_202 permit 65000:2 0:89 0:202 ip community-list standard 2_101_178 permit 65000:2 0:101 0:178 route-map calculator permit 3136 match community 2_89_202 2_101_178 set community 0:17978 ip community-list standard 2_151_217 permit 65000:2 0:151 0:217 route-map calculator permit 3137 match community 2_151_217 set community 0:32767 ip community-list standard 2_209_224 permit 65000:2 0:209 0:224 route-map calculator permit 3138 match community 2_209_224 set community 0:46816 ip community-list standard 2_204_243 permit 65000:2 0:204 0:243 route-map calculator permit 3139 match community 2_204_243 set community 0:49572 ip community-list standard 2_66_228 permit 65000:2 0:66 0:228 ip community-list standard 2_72_209 permit 65000:2 0:72 0:209 ip community-list standard 2_76_198 permit 65000:2 0:76 0:198 ip community-list standard 2_88_171 permit 65000:2 0:88 0:171 ip community-list standard 2_99_152 permit 65000:2 0:99 0:152 ip community-list standard 2_114_132 permit 65000:2 0:114 0:132 route-map calculator permit 3140 match community 2_66_228 2_72_209 2_76_198 2_88_171 2_99_152 set community 0:15048 route-map calculator permit 3141 match community 2_114_132 set community 0:15048 ip community-list standard 2_11_93 permit 65000:2 0:11 0:93 ip community-list standard 2_31_33 permit 65000:2 0:31 0:33 route-map calculator permit 3142 match community 2_11_93 2_31_33 set community 0:1023 ip community-list standard 2_78_139 permit 65000:2 0:78 0:139 route-map calculator permit 3143 match community 2_78_139 set community 0:10842 ip community-list standard 2_51_157 permit 65000:2 0:51 0:157 route-map calculator permit 3144 match community 2_51_157 set community 0:8007 ip community-list standard 2_127_205 permit 65000:2 0:127 0:205 route-map calculator permit 3145 match community 2_127_205 set community 0:26035 ip community-list standard 2_20_146 permit 65000:2 0:20 0:146 ip community-list standard 2_40_73 permit 65000:2 0:40 0:73 route-map calculator permit 3146 match community 2_20_146 2_40_73 set community 0:2920 ip community-list standard 2_87_231 permit 65000:2 0:87 0:231 ip community-list standard 2_99_203 permit 65000:2 0:99 0:203 route-map calculator permit 3147 match community 2_87_231 2_99_203 set community 0:20097 ip community-list standard 2_131_239 permit 65000:2 0:131 0:239 route-map calculator permit 3148 match community 2_131_239 set community 0:31309 ip community-list standard 2_97_251 permit 65000:2 0:97 0:251 route-map calculator permit 3149 match community 2_97_251 set community 0:24347 ip community-list standard 2_13_224 permit 65000:2 0:13 0:224 ip community-list standard 2_14_208 permit 65000:2 0:14 0:208 ip community-list standard 2_16_182 permit 65000:2 0:16 0:182 ip community-list standard 2_26_112 permit 65000:2 0:26 0:112 ip community-list standard 2_28_104 permit 65000:2 0:28 0:104 ip community-list standard 2_32_91 permit 65000:2 0:32 0:91 ip community-list standard 2_52_56 permit 65000:2 0:52 0:56 route-map calculator permit 3150 match community 2_13_224 2_14_208 2_16_182 2_26_112 2_28_104 set community 0:2912 route-map calculator permit 3151 match community 2_32_91 2_52_56 set community 0:2912 ip community-list standard 2_93_117 permit 65000:2 0:93 0:117 route-map calculator permit 3152 match community 2_93_117 set community 0:10881 ip community-list standard 2_102_242 permit 65000:2 0:102 0:242 ip community-list standard 2_121_204 permit 65000:2 0:121 0:204 ip community-list standard 2_132_187 permit 65000:2 0:132 0:187 route-map calculator permit 3153 match community 2_102_242 2_121_204 2_132_187 set community 0:24684 ip community-list standard 2_157_187 permit 65000:2 0:157 0:187 route-map calculator permit 3154 match community 2_157_187 set community 0:29359 ip community-list standard 2_209_244 permit 65000:2 0:209 0:244 route-map calculator permit 3155 match community 2_209_244 set community 0:50996 ip community-list standard 2_107_209 permit 65000:2 0:107 0:209 route-map calculator permit 3156 match community 2_107_209 set community 0:22363 ip community-list standard 2_156_179 permit 65000:2 0:156 0:179 route-map calculator permit 3157 match community 2_156_179 set community 0:27924 ip community-list standard 2_47_227 permit 65000:2 0:47 0:227 route-map calculator permit 3158 match community 2_47_227 set community 0:10669 ip community-list standard 2_59_230 permit 65000:2 0:59 0:230 ip community-list standard 2_115_118 permit 65000:2 0:115 0:118 route-map calculator permit 3159 match community 2_59_230 2_115_118 set community 0:13570 ip community-list standard 2_174_246 permit 65000:2 0:174 0:246 route-map calculator permit 3160 match community 2_174_246 set community 0:42804 ip community-list standard 2_85_245 permit 65000:2 0:85 0:245 ip community-list standard 2_119_175 permit 65000:2 0:119 0:175 route-map calculator permit 3161 match community 2_85_245 2_119_175 set community 0:20825 ip community-list standard 2_80_249 permit 65000:2 0:80 0:249 ip community-list standard 2_83_240 permit 65000:2 0:83 0:240 ip community-list standard 2_120_166 permit 65000:2 0:120 0:166 route-map calculator permit 3162 match community 2_80_249 2_83_240 2_120_166 set community 0:19920 ip community-list standard 2_181_214 permit 65000:2 0:181 0:214 route-map calculator permit 3163 match community 2_181_214 set community 0:38734 ip community-list standard 2_5_185 permit 65000:2 0:5 0:185 ip community-list standard 2_25_37 permit 65000:2 0:25 0:37 route-map calculator permit 3164 match community 2_5_185 2_25_37 set community 0:925 ip community-list standard 2_99_215 permit 65000:2 0:99 0:215 ip community-list standard 2_129_165 permit 65000:2 0:129 0:165 route-map calculator permit 3165 match community 2_99_215 2_129_165 set community 0:21285 ip community-list standard 2_137_210 permit 65000:2 0:137 0:210 route-map calculator permit 3166 match community 2_137_210 set community 0:28770 ip community-list standard 2_152_163 permit 65000:2 0:152 0:163 route-map calculator permit 3167 match community 2_152_163 set community 0:24776 ip community-list standard 2_186_227 permit 65000:2 0:186 0:227 route-map calculator permit 3168 match community 2_186_227 set community 0:42222 ip community-list standard 2_56_254 permit 65000:2 0:56 0:254 ip community-list standard 2_112_127 permit 65000:2 0:112 0:127 route-map calculator permit 3169 match community 2_56_254 2_112_127 set community 0:14224 ip community-list standard 2_49_169 permit 65000:2 0:49 0:169 ip community-list standard 2_91_91 permit 65000:2 0:91 0:91 route-map calculator permit 3170 match community 2_49_169 2_91_91 set community 0:8281 ip community-list standard 2_163_198 permit 65000:2 0:163 0:198 route-map calculator permit 3171 match community 2_163_198 set community 0:32274 ip community-list standard 2_155_185 permit 65000:2 0:155 0:185 route-map calculator permit 3172 match community 2_155_185 set community 0:28675 ip community-list standard 2_86_179 permit 65000:2 0:86 0:179 route-map calculator permit 3173 match community 2_86_179 set community 0:15394 ip community-list standard 2_126_255 permit 65000:2 0:126 0:255 ip community-list standard 2_135_238 permit 65000:2 0:135 0:238 ip community-list standard 2_153_210 permit 65000:2 0:153 0:210 ip community-list standard 2_170_189 permit 65000:2 0:170 0:189 route-map calculator permit 3174 match community 2_126_255 2_135_238 2_153_210 2_170_189 set community 0:32130 ip community-list standard 2_121_237 permit 65000:2 0:121 0:237 route-map calculator permit 3175 match community 2_121_237 set community 0:28677 ip community-list standard 2_42_235 permit 65000:2 0:42 0:235 ip community-list standard 2_47_210 permit 65000:2 0:47 0:210 ip community-list standard 2_70_141 permit 65000:2 0:70 0:141 ip community-list standard 2_94_105 permit 65000:2 0:94 0:105 route-map calculator permit 3176 match community 2_42_235 2_47_210 2_70_141 2_94_105 set community 0:9870 ip community-list standard 2_208_226 permit 65000:2 0:208 0:226 route-map calculator permit 3177 match community 2_208_226 set community 0:47008 ip community-list standard 2_32_134 permit 65000:2 0:32 0:134 ip community-list standard 2_64_67 permit 65000:2 0:64 0:67 route-map calculator permit 3178 match community 2_32_134 2_64_67 set community 0:4288 ip community-list standard 2_116_225 permit 65000:2 0:116 0:225 ip community-list standard 2_145_180 permit 65000:2 0:145 0:180 ip community-list standard 2_150_174 permit 65000:2 0:150 0:174 route-map calculator permit 3179 match community 2_116_225 2_145_180 2_150_174 set community 0:26100 ip community-list standard 2_216_249 permit 65000:2 0:216 0:249 route-map calculator permit 3180 match community 2_216_249 set community 0:53784 ip community-list standard 2_122_229 permit 65000:2 0:122 0:229 route-map calculator permit 3181 match community 2_122_229 set community 0:27938 ip community-list standard 2_99_253 permit 65000:2 0:99 0:253 ip community-list standard 2_121_207 permit 65000:2 0:121 0:207 route-map calculator permit 3182 match community 2_99_253 2_121_207 set community 0:25047 ip community-list standard 2_222_241 permit 65000:2 0:222 0:241 route-map calculator permit 3183 match community 2_222_241 set community 0:53502 ip community-list standard 2_102_216 permit 65000:2 0:102 0:216 ip community-list standard 2_108_204 permit 65000:2 0:108 0:204 ip community-list standard 2_136_162 permit 65000:2 0:136 0:162 ip community-list standard 2_144_153 permit 65000:2 0:144 0:153 route-map calculator permit 3184 match community 2_102_216 2_108_204 2_136_162 2_144_153 set community 0:22032 ip community-list standard 2_182_227 permit 65000:2 0:182 0:227 route-map calculator permit 3185 match community 2_182_227 set community 0:41314 ip community-list standard 2_178_230 permit 65000:2 0:178 0:230 route-map calculator permit 3186 match community 2_178_230 set community 0:40940 ip community-list standard 2_13_213 permit 65000:2 0:13 0:213 ip community-list standard 2_39_71 permit 65000:2 0:39 0:71 route-map calculator permit 3187 match community 2_13_213 2_39_71 set community 0:2769 ip community-list standard 2_175_211 permit 65000:2 0:175 0:211 route-map calculator permit 3188 match community 2_175_211 set community 0:36925 ip community-list standard 2_31_178 permit 65000:2 0:31 0:178 ip community-list standard 2_62_89 permit 65000:2 0:62 0:89 route-map calculator permit 3189 match community 2_31_178 2_62_89 set community 0:5518 ip community-list standard 2_141_252 permit 65000:2 0:141 0:252 ip community-list standard 2_188_189 permit 65000:2 0:188 0:189 route-map calculator permit 3190 match community 2_141_252 2_188_189 set community 0:35532 ip community-list standard 2_99_247 permit 65000:2 0:99 0:247 ip community-list standard 2_117_209 permit 65000:2 0:117 0:209 ip community-list standard 2_143_171 permit 65000:2 0:143 0:171 route-map calculator permit 3191 match community 2_99_247 2_117_209 2_143_171 set community 0:24453 ip community-list standard 2_109_236 permit 65000:2 0:109 0:236 ip community-list standard 2_118_218 permit 65000:2 0:118 0:218 route-map calculator permit 3192 match community 2_109_236 2_118_218 set community 0:25724 ip community-list standard 2_3_97 permit 65000:2 0:3 0:97 ip community-list standard 1_35_256 permit 65000:1 0:35 0:256 ip community-list standard 1_36_255 permit 65000:1 0:36 0:255 ip community-list standard 1_37_254 permit 65000:1 0:37 0:254 ip community-list standard 1_38_253 permit 65000:1 0:38 0:253 ip community-list standard 1_39_252 permit 65000:1 0:39 0:252 ip community-list standard 1_40_251 permit 65000:1 0:40 0:251 ip community-list standard 1_41_250 permit 65000:1 0:41 0:250 ip community-list standard 1_42_249 permit 65000:1 0:42 0:249 ip community-list standard 1_43_248 permit 65000:1 0:43 0:248 ip community-list standard 1_44_247 permit 65000:1 0:44 0:247 ip community-list standard 1_45_246 permit 65000:1 0:45 0:246 ip community-list standard 1_46_245 permit 65000:1 0:46 0:245 ip community-list standard 1_47_244 permit 65000:1 0:47 0:244 ip community-list standard 1_48_243 permit 65000:1 0:48 0:243 ip community-list standard 1_49_242 permit 65000:1 0:49 0:242 ip community-list standard 1_50_241 permit 65000:1 0:50 0:241 ip community-list standard 1_51_240 permit 65000:1 0:51 0:240 ip community-list standard 1_52_239 permit 65000:1 0:52 0:239 ip community-list standard 1_53_238 permit 65000:1 0:53 0:238 ip community-list standard 1_54_237 permit 65000:1 0:54 0:237 ip community-list standard 1_55_236 permit 65000:1 0:55 0:236 ip community-list standard 1_56_235 permit 65000:1 0:56 0:235 ip community-list standard 1_57_234 permit 65000:1 0:57 0:234 ip community-list standard 1_58_233 permit 65000:1 0:58 0:233 ip community-list standard 1_59_232 permit 65000:1 0:59 0:232 ip community-list standard 1_60_231 permit 65000:1 0:60 0:231 ip community-list standard 1_61_230 permit 65000:1 0:61 0:230 ip community-list standard 1_62_229 permit 65000:1 0:62 0:229 ip community-list standard 1_63_228 permit 65000:1 0:63 0:228 ip community-list standard 1_64_227 permit 65000:1 0:64 0:227 ip community-list standard 1_65_226 permit 65000:1 0:65 0:226 ip community-list standard 1_66_225 permit 65000:1 0:66 0:225 ip community-list standard 1_67_224 permit 65000:1 0:67 0:224 ip community-list standard 1_68_223 permit 65000:1 0:68 0:223 ip community-list standard 1_69_222 permit 65000:1 0:69 0:222 ip community-list standard 1_70_221 permit 65000:1 0:70 0:221 ip community-list standard 1_71_220 permit 65000:1 0:71 0:220 ip community-list standard 1_72_219 permit 65000:1 0:72 0:219 ip community-list standard 1_73_218 permit 65000:1 0:73 0:218 ip community-list standard 1_74_217 permit 65000:1 0:74 0:217 ip community-list standard 1_75_216 permit 65000:1 0:75 0:216 ip community-list standard 1_76_215 permit 65000:1 0:76 0:215 ip community-list standard 1_77_214 permit 65000:1 0:77 0:214 ip community-list standard 1_78_213 permit 65000:1 0:78 0:213 ip community-list standard 1_79_212 permit 65000:1 0:79 0:212 ip community-list standard 1_80_211 permit 65000:1 0:80 0:211 ip community-list standard 1_81_210 permit 65000:1 0:81 0:210 ip community-list standard 1_82_209 permit 65000:1 0:82 0:209 ip community-list standard 1_83_208 permit 65000:1 0:83 0:208 ip community-list standard 1_84_207 permit 65000:1 0:84 0:207 ip community-list standard 1_85_206 permit 65000:1 0:85 0:206 ip community-list standard 1_86_205 permit 65000:1 0:86 0:205 ip community-list standard 1_87_204 permit 65000:1 0:87 0:204 ip community-list standard 1_88_203 permit 65000:1 0:88 0:203 ip community-list standard 1_89_202 permit 65000:1 0:89 0:202 ip community-list standard 1_90_201 permit 65000:1 0:90 0:201 ip community-list standard 1_91_200 permit 65000:1 0:91 0:200 ip community-list standard 1_92_199 permit 65000:1 0:92 0:199 ip community-list standard 1_93_198 permit 65000:1 0:93 0:198 ip community-list standard 1_94_197 permit 65000:1 0:94 0:197 ip community-list standard 1_95_196 permit 65000:1 0:95 0:196 ip community-list standard 1_96_195 permit 65000:1 0:96 0:195 ip community-list standard 1_97_194 permit 65000:1 0:97 0:194 ip community-list standard 1_98_193 permit 65000:1 0:98 0:193 ip community-list standard 1_99_192 permit 65000:1 0:99 0:192 ip community-list standard 1_100_191 permit 65000:1 0:100 0:191 ip community-list standard 1_101_190 permit 65000:1 0:101 0:190 ip community-list standard 1_102_189 permit 65000:1 0:102 0:189 ip community-list standard 1_103_188 permit 65000:1 0:103 0:188 ip community-list standard 1_104_187 permit 65000:1 0:104 0:187 ip community-list standard 1_105_186 permit 65000:1 0:105 0:186 ip community-list standard 1_106_185 permit 65000:1 0:106 0:185 ip community-list standard 1_107_184 permit 65000:1 0:107 0:184 ip community-list standard 1_108_183 permit 65000:1 0:108 0:183 ip community-list standard 1_109_182 permit 65000:1 0:109 0:182 ip community-list standard 1_110_181 permit 65000:1 0:110 0:181 ip community-list standard 1_111_180 permit 65000:1 0:111 0:180 ip community-list standard 1_112_179 permit 65000:1 0:112 0:179 ip community-list standard 1_113_178 permit 65000:1 0:113 0:178 ip community-list standard 1_114_177 permit 65000:1 0:114 0:177 ip community-list standard 1_115_176 permit 65000:1 0:115 0:176 ip community-list standard 1_116_175 permit 65000:1 0:116 0:175 ip community-list standard 1_117_174 permit 65000:1 0:117 0:174 ip community-list standard 1_118_173 permit 65000:1 0:118 0:173 ip community-list standard 1_119_172 permit 65000:1 0:119 0:172 ip community-list standard 1_120_171 permit 65000:1 0:120 0:171 ip community-list standard 1_121_170 permit 65000:1 0:121 0:170 ip community-list standard 1_122_169 permit 65000:1 0:122 0:169 ip community-list standard 1_123_168 permit 65000:1 0:123 0:168 ip community-list standard 1_124_167 permit 65000:1 0:124 0:167 ip community-list standard 1_125_166 permit 65000:1 0:125 0:166 ip community-list standard 1_126_165 permit 65000:1 0:126 0:165 ip community-list standard 1_127_164 permit 65000:1 0:127 0:164 ip community-list standard 1_128_163 permit 65000:1 0:128 0:163 ip community-list standard 1_129_162 permit 65000:1 0:129 0:162 ip community-list standard 1_130_161 permit 65000:1 0:130 0:161 ip community-list standard 1_131_160 permit 65000:1 0:131 0:160 ip community-list standard 1_132_159 permit 65000:1 0:132 0:159 ip community-list standard 1_133_158 permit 65000:1 0:133 0:158 ip community-list standard 1_134_157 permit 65000:1 0:134 0:157 ip community-list standard 1_135_156 permit 65000:1 0:135 0:156 ip community-list standard 1_136_155 permit 65000:1 0:136 0:155 ip community-list standard 1_137_154 permit 65000:1 0:137 0:154 ip community-list standard 1_138_153 permit 65000:1 0:138 0:153 ip community-list standard 1_139_152 permit 65000:1 0:139 0:152 ip community-list standard 1_140_151 permit 65000:1 0:140 0:151 ip community-list standard 1_141_150 permit 65000:1 0:141 0:150 ip community-list standard 1_142_149 permit 65000:1 0:142 0:149 ip community-list standard 1_143_148 permit 65000:1 0:143 0:148 ip community-list standard 1_144_147 permit 65000:1 0:144 0:147 ip community-list standard 1_145_146 permit 65000:1 0:145 0:146 route-map calculator permit 3193 match community 2_3_97 1_35_256 1_36_255 1_37_254 1_38_253 set community 0:291 route-map calculator permit 3194 match community 1_39_252 1_40_251 1_41_250 1_42_249 1_43_248 set community 0:291 route-map calculator permit 3195 match community 1_44_247 1_45_246 1_46_245 1_47_244 1_48_243 set community 0:291 route-map calculator permit 3196 match community 1_49_242 1_50_241 1_51_240 1_52_239 1_53_238 set community 0:291 route-map calculator permit 3197 match community 1_54_237 1_55_236 1_56_235 1_57_234 1_58_233 set community 0:291 route-map calculator permit 3198 match community 1_59_232 1_60_231 1_61_230 1_62_229 1_63_228 set community 0:291 route-map calculator permit 3199 match community 1_64_227 1_65_226 1_66_225 1_67_224 1_68_223 set community 0:291 route-map calculator permit 3200 match community 1_69_222 1_70_221 1_71_220 1_72_219 1_73_218 set community 0:291 route-map calculator permit 3201 match community 1_74_217 1_75_216 1_76_215 1_77_214 1_78_213 set community 0:291 route-map calculator permit 3202 match community 1_79_212 1_80_211 1_81_210 1_82_209 1_83_208 set community 0:291 route-map calculator permit 3203 match community 1_84_207 1_85_206 1_86_205 1_87_204 1_88_203 set community 0:291 route-map calculator permit 3204 match community 1_89_202 1_90_201 1_91_200 1_92_199 1_93_198 set community 0:291 route-map calculator permit 3205 match community 1_94_197 1_95_196 1_96_195 1_97_194 1_98_193 set community 0:291 route-map calculator permit 3206 match community 1_99_192 1_100_191 1_101_190 1_102_189 1_103_188 set community 0:291 route-map calculator permit 3207 match community 1_104_187 1_105_186 1_106_185 1_107_184 1_108_183 set community 0:291 route-map calculator permit 3208 match community 1_109_182 1_110_181 1_111_180 1_112_179 1_113_178 set community 0:291 route-map calculator permit 3209 match community 1_114_177 1_115_176 1_116_175 1_117_174 1_118_173 set community 0:291 route-map calculator permit 3210 match community 1_119_172 1_120_171 1_121_170 1_122_169 1_123_168 set community 0:291 route-map calculator permit 3211 match community 1_124_167 1_125_166 1_126_165 1_127_164 1_128_163 set community 0:291 route-map calculator permit 3212 match community 1_129_162 1_130_161 1_131_160 1_132_159 1_133_158 set community 0:291 route-map calculator permit 3213 match community 1_134_157 1_135_156 1_136_155 1_137_154 1_138_153 set community 0:291 route-map calculator permit 3214 match community 1_139_152 1_140_151 1_141_150 1_142_149 1_143_148 set community 0:291 route-map calculator permit 3215 match community 1_144_147 1_145_146 set community 0:291 ip community-list standard 2_76_166 permit 65000:2 0:76 0:166 ip community-list standard 2_83_152 permit 65000:2 0:83 0:152 route-map calculator permit 3216 match community 2_76_166 2_83_152 set community 0:12616 ip community-list standard 2_194_205 permit 65000:2 0:194 0:205 route-map calculator permit 3217 match community 2_194_205 set community 0:39770 ip community-list standard 2_19_240 permit 65000:2 0:19 0:240 ip community-list standard 2_20_228 permit 65000:2 0:20 0:228 ip community-list standard 2_24_190 permit 65000:2 0:24 0:190 ip community-list standard 2_30_152 permit 65000:2 0:30 0:152 ip community-list standard 2_38_120 permit 65000:2 0:38 0:120 ip community-list standard 2_40_114 permit 65000:2 0:40 0:114 ip community-list standard 2_48_95 permit 65000:2 0:48 0:95 ip community-list standard 2_57_80 permit 65000:2 0:57 0:80 ip community-list standard 2_60_76 permit 65000:2 0:60 0:76 route-map calculator permit 3218 match community 2_19_240 2_20_228 2_24_190 2_30_152 2_38_120 set community 0:4560 route-map calculator permit 3219 match community 2_40_114 2_48_95 2_57_80 2_60_76 set community 0:4560 ip community-list standard 2_85_239 permit 65000:2 0:85 0:239 route-map calculator permit 3220 match community 2_85_239 set community 0:20315 ip community-list standard 2_166_244 permit 65000:2 0:166 0:244 route-map calculator permit 3221 match community 2_166_244 set community 0:40504 ip community-list standard 2_93_237 permit 65000:2 0:93 0:237 route-map calculator permit 3222 match community 2_93_237 set community 0:22041 ip community-list standard 2_237_250 permit 65000:2 0:237 0:250 route-map calculator permit 3223 match community 2_237_250 set community 0:59250 ip community-list standard 2_109_201 permit 65000:2 0:109 0:201 route-map calculator permit 3224 match community 2_109_201 set community 0:21909 ip community-list standard 2_137_230 permit 65000:2 0:137 0:230 route-map calculator permit 3225 match community 2_137_230 set community 0:31510 ip community-list standard 2_242_256 permit 65000:2 0:242 0:256 route-map calculator permit 3226 match community 2_242_256 set community 0:61952 ip community-list standard 2_153_211 permit 65000:2 0:153 0:211 route-map calculator permit 3227 match community 2_153_211 set community 0:32283 ip community-list standard 2_137_166 permit 65000:2 0:137 0:166 route-map calculator permit 3228 match community 2_137_166 set community 0:22742 ip community-list standard 2_18_199 permit 65000:2 0:18 0:199 route-map calculator permit 3229 match community 2_18_199 set community 0:3582 ip community-list standard 2_31_229 permit 65000:2 0:31 0:229 route-map calculator permit 3230 match community 2_31_229 set community 0:7099 ip community-list standard 2_156_246 permit 65000:2 0:156 0:246 ip community-list standard 2_164_234 permit 65000:2 0:164 0:234 route-map calculator permit 3231 match community 2_156_246 2_164_234 set community 0:38376 ip community-list standard 2_43_67 permit 65000:2 0:43 0:67 route-map calculator permit 3232 match community 2_43_67 set community 0:2881 ip community-list standard 2_62_223 permit 65000:2 0:62 0:223 route-map calculator permit 3233 match community 2_62_223 set community 0:13826 ip community-list standard 2_230_255 permit 65000:2 0:230 0:255 route-map calculator permit 3234 match community 2_230_255 set community 0:58650 ip community-list standard 2_71_107 permit 65000:2 0:71 0:107 route-map calculator permit 3235 match community 2_71_107 set community 0:7597 ip community-list standard 2_146_154 permit 65000:2 0:146 0:154 route-map calculator permit 3236 match community 2_146_154 set community 0:22484 ip community-list standard 2_133_148 permit 65000:2 0:133 0:148 route-map calculator permit 3237 match community 2_133_148 set community 0:19684 ip community-list standard 2_191_255 permit 65000:2 0:191 0:255 route-map calculator permit 3238 match community 2_191_255 set community 0:48705 ip community-list standard 2_71_161 permit 65000:2 0:71 0:161 route-map calculator permit 3239 match community 2_71_161 set community 0:11431 ip community-list standard 2_69_229 permit 65000:2 0:69 0:229 route-map calculator permit 3240 match community 2_69_229 set community 0:15801 ip community-list standard 2_53_193 permit 65000:2 0:53 0:193 route-map calculator permit 3241 match community 2_53_193 set community 0:10229 ip community-list standard 2_100_218 permit 65000:2 0:100 0:218 ip community-list standard 2_109_200 permit 65000:2 0:109 0:200 route-map calculator permit 3242 match community 2_100_218 2_109_200 set community 0:21800 ip community-list standard 2_55_205 permit 65000:2 0:55 0:205 route-map calculator permit 3243 match community 2_55_205 set community 0:11275 ip community-list standard 2_211_215 permit 65000:2 0:211 0:215 route-map calculator permit 3244 match community 2_211_215 set community 0:45365 ip community-list standard 1_1_157 permit 65000:1 0:1 0:157 ip community-list standard 2_1_158 permit 65000:2 0:1 0:158 ip community-list standard 2_2_79 permit 65000:2 0:2 0:79 ip community-list standard 1_2_156 permit 65000:1 0:2 0:156 ip community-list standard 1_3_155 permit 65000:1 0:3 0:155 ip community-list standard 1_4_154 permit 65000:1 0:4 0:154 ip community-list standard 1_5_153 permit 65000:1 0:5 0:153 ip community-list standard 1_6_152 permit 65000:1 0:6 0:152 ip community-list standard 1_7_151 permit 65000:1 0:7 0:151 ip community-list standard 1_8_150 permit 65000:1 0:8 0:150 ip community-list standard 1_9_149 permit 65000:1 0:9 0:149 ip community-list standard 1_10_148 permit 65000:1 0:10 0:148 ip community-list standard 1_11_147 permit 65000:1 0:11 0:147 ip community-list standard 1_12_146 permit 65000:1 0:12 0:146 ip community-list standard 1_13_145 permit 65000:1 0:13 0:145 ip community-list standard 1_14_144 permit 65000:1 0:14 0:144 ip community-list standard 1_15_143 permit 65000:1 0:15 0:143 ip community-list standard 1_16_142 permit 65000:1 0:16 0:142 ip community-list standard 1_17_141 permit 65000:1 0:17 0:141 ip community-list standard 1_18_140 permit 65000:1 0:18 0:140 ip community-list standard 1_19_139 permit 65000:1 0:19 0:139 ip community-list standard 1_20_138 permit 65000:1 0:20 0:138 ip community-list standard 1_21_137 permit 65000:1 0:21 0:137 ip community-list standard 1_22_136 permit 65000:1 0:22 0:136 ip community-list standard 1_23_135 permit 65000:1 0:23 0:135 ip community-list standard 1_24_134 permit 65000:1 0:24 0:134 ip community-list standard 1_25_133 permit 65000:1 0:25 0:133 ip community-list standard 1_26_132 permit 65000:1 0:26 0:132 ip community-list standard 1_27_131 permit 65000:1 0:27 0:131 ip community-list standard 1_28_130 permit 65000:1 0:28 0:130 ip community-list standard 1_29_129 permit 65000:1 0:29 0:129 ip community-list standard 1_30_128 permit 65000:1 0:30 0:128 ip community-list standard 1_31_127 permit 65000:1 0:31 0:127 ip community-list standard 1_32_126 permit 65000:1 0:32 0:126 ip community-list standard 1_33_125 permit 65000:1 0:33 0:125 ip community-list standard 1_34_124 permit 65000:1 0:34 0:124 ip community-list standard 1_35_123 permit 65000:1 0:35 0:123 ip community-list standard 1_36_122 permit 65000:1 0:36 0:122 ip community-list standard 1_37_121 permit 65000:1 0:37 0:121 ip community-list standard 1_38_120 permit 65000:1 0:38 0:120 ip community-list standard 1_39_119 permit 65000:1 0:39 0:119 ip community-list standard 1_40_118 permit 65000:1 0:40 0:118 ip community-list standard 1_41_117 permit 65000:1 0:41 0:117 ip community-list standard 1_42_116 permit 65000:1 0:42 0:116 ip community-list standard 1_43_115 permit 65000:1 0:43 0:115 ip community-list standard 1_44_114 permit 65000:1 0:44 0:114 ip community-list standard 1_45_113 permit 65000:1 0:45 0:113 ip community-list standard 1_46_112 permit 65000:1 0:46 0:112 ip community-list standard 1_47_111 permit 65000:1 0:47 0:111 ip community-list standard 1_48_110 permit 65000:1 0:48 0:110 ip community-list standard 1_49_109 permit 65000:1 0:49 0:109 ip community-list standard 1_50_108 permit 65000:1 0:50 0:108 ip community-list standard 1_51_107 permit 65000:1 0:51 0:107 ip community-list standard 1_52_106 permit 65000:1 0:52 0:106 ip community-list standard 1_53_105 permit 65000:1 0:53 0:105 ip community-list standard 1_54_104 permit 65000:1 0:54 0:104 ip community-list standard 1_55_103 permit 65000:1 0:55 0:103 ip community-list standard 1_56_102 permit 65000:1 0:56 0:102 ip community-list standard 1_57_101 permit 65000:1 0:57 0:101 ip community-list standard 1_58_100 permit 65000:1 0:58 0:100 ip community-list standard 1_59_99 permit 65000:1 0:59 0:99 ip community-list standard 1_60_98 permit 65000:1 0:60 0:98 ip community-list standard 1_61_97 permit 65000:1 0:61 0:97 ip community-list standard 1_62_96 permit 65000:1 0:62 0:96 ip community-list standard 1_63_95 permit 65000:1 0:63 0:95 ip community-list standard 1_64_94 permit 65000:1 0:64 0:94 ip community-list standard 1_65_93 permit 65000:1 0:65 0:93 ip community-list standard 1_66_92 permit 65000:1 0:66 0:92 ip community-list standard 1_67_91 permit 65000:1 0:67 0:91 ip community-list standard 1_68_90 permit 65000:1 0:68 0:90 ip community-list standard 1_69_89 permit 65000:1 0:69 0:89 ip community-list standard 1_70_88 permit 65000:1 0:70 0:88 ip community-list standard 1_71_87 permit 65000:1 0:71 0:87 ip community-list standard 1_72_86 permit 65000:1 0:72 0:86 ip community-list standard 1_73_85 permit 65000:1 0:73 0:85 ip community-list standard 1_74_84 permit 65000:1 0:74 0:84 ip community-list standard 1_75_83 permit 65000:1 0:75 0:83 ip community-list standard 1_76_82 permit 65000:1 0:76 0:82 ip community-list standard 1_77_81 permit 65000:1 0:77 0:81 ip community-list standard 1_78_80 permit 65000:1 0:78 0:80 ip community-list standard 1_79_79 permit 65000:1 0:79 0:79 ip community-list expanded c158 permit 1 ^65000:4_0:158_0:1$ ip community-list expanded c158 permit 2 ^65000:3_0:159_0:1$ ip community-list expanded c158 permit 3 ^65000:3_0:160_0:2$ ip community-list expanded c158 permit 4 ^65000:3_0:161_0:3$ ip community-list expanded c158 permit 5 ^65000:3_0:162_0:4$ ip community-list expanded c158 permit 6 ^65000:3_0:163_0:5$ ip community-list expanded c158 permit 7 ^65000:3_0:164_0:6$ ip community-list expanded c158 permit 8 ^65000:3_0:165_0:7$ ip community-list expanded c158 permit 9 ^65000:3_0:166_0:8$ ip community-list expanded c158 permit 10 ^65000:3_0:167_0:9$ ip community-list expanded c158 permit 11 ^65000:3_0:168_0:10$ ip community-list expanded c158 permit 12 ^65000:3_0:169_0:11$ ip community-list expanded c158 permit 13 ^65000:3_0:170_0:12$ ip community-list expanded c158 permit 14 ^65000:3_0:171_0:13$ ip community-list expanded c158 permit 15 ^65000:3_0:172_0:14$ ip community-list expanded c158 permit 16 ^65000:3_0:173_0:15$ ip community-list expanded c158 permit 17 ^65000:3_0:174_0:16$ ip community-list expanded c158 permit 18 ^65000:3_0:175_0:17$ ip community-list expanded c158 permit 19 ^65000:3_0:176_0:18$ ip community-list expanded c158 permit 20 ^65000:3_0:177_0:19$ ip community-list expanded c158 permit 21 ^65000:3_0:178_0:20$ ip community-list expanded c158 permit 22 ^65000:3_0:179_0:21$ ip community-list expanded c158 permit 23 ^65000:3_0:180_0:22$ ip community-list expanded c158 permit 24 ^65000:3_0:181_0:23$ ip community-list expanded c158 permit 25 ^65000:3_0:182_0:24$ ip community-list expanded c158 permit 26 ^65000:3_0:183_0:25$ ip community-list expanded c158 permit 27 ^65000:3_0:184_0:26$ ip community-list expanded c158 permit 28 ^65000:3_0:185_0:27$ ip community-list expanded c158 permit 29 ^65000:3_0:186_0:28$ ip community-list expanded c158 permit 30 ^65000:3_0:187_0:29$ ip community-list expanded c158 permit 31 ^65000:3_0:188_0:30$ ip community-list expanded c158 permit 32 ^65000:3_0:189_0:31$ ip community-list expanded c158 permit 33 ^65000:3_0:190_0:32$ ip community-list expanded c158 permit 34 ^65000:3_0:191_0:33$ ip community-list expanded c158 permit 35 ^65000:3_0:192_0:34$ ip community-list expanded c158 permit 36 ^65000:3_0:193_0:35$ ip community-list expanded c158 permit 37 ^65000:3_0:194_0:36$ ip community-list expanded c158 permit 38 ^65000:3_0:195_0:37$ ip community-list expanded c158 permit 39 ^65000:3_0:196_0:38$ ip community-list expanded c158 permit 40 ^65000:3_0:197_0:39$ ip community-list expanded c158 permit 41 ^65000:3_0:198_0:40$ ip community-list expanded c158 permit 42 ^65000:3_0:199_0:41$ ip community-list expanded c158 permit 43 ^65000:3_0:200_0:42$ ip community-list expanded c158 permit 44 ^65000:3_0:201_0:43$ ip community-list expanded c158 permit 45 ^65000:3_0:202_0:44$ ip community-list expanded c158 permit 46 ^65000:3_0:203_0:45$ ip community-list expanded c158 permit 47 ^65000:3_0:204_0:46$ ip community-list expanded c158 permit 48 ^65000:3_0:205_0:47$ ip community-list expanded c158 permit 49 ^65000:3_0:206_0:48$ ip community-list expanded c158 permit 50 ^65000:3_0:207_0:49$ ip community-list expanded c158 permit 51 ^65000:3_0:208_0:50$ ip community-list expanded c158 permit 52 ^65000:3_0:209_0:51$ ip community-list expanded c158 permit 53 ^65000:3_0:210_0:52$ ip community-list expanded c158 permit 54 ^65000:3_0:211_0:53$ ip community-list expanded c158 permit 55 ^65000:3_0:212_0:54$ ip community-list expanded c158 permit 56 ^65000:3_0:213_0:55$ ip community-list expanded c158 permit 57 ^65000:3_0:214_0:56$ ip community-list expanded c158 permit 58 ^65000:3_0:215_0:57$ ip community-list expanded c158 permit 59 ^65000:3_0:216_0:58$ ip community-list expanded c158 permit 60 ^65000:3_0:217_0:59$ ip community-list expanded c158 permit 61 ^65000:3_0:218_0:60$ ip community-list expanded c158 permit 62 ^65000:3_0:219_0:61$ ip community-list expanded c158 permit 63 ^65000:3_0:220_0:62$ ip community-list expanded c158 permit 64 ^65000:3_0:221_0:63$ ip community-list expanded c158 permit 65 ^65000:3_0:222_0:64$ ip community-list expanded c158 permit 66 ^65000:3_0:223_0:65$ ip community-list expanded c158 permit 67 ^65000:3_0:224_0:66$ ip community-list expanded c158 permit 68 ^65000:3_0:225_0:67$ ip community-list expanded c158 permit 69 ^65000:3_0:226_0:68$ ip community-list expanded c158 permit 70 ^65000:3_0:227_0:69$ ip community-list expanded c158 permit 71 ^65000:3_0:228_0:70$ ip community-list expanded c158 permit 72 ^65000:3_0:229_0:71$ ip community-list expanded c158 permit 73 ^65000:3_0:230_0:72$ ip community-list expanded c158 permit 74 ^65000:3_0:231_0:73$ ip community-list expanded c158 permit 75 ^65000:3_0:232_0:74$ ip community-list expanded c158 permit 76 ^65000:3_0:233_0:75$ ip community-list expanded c158 permit 77 ^65000:3_0:234_0:76$ ip community-list expanded c158 permit 78 ^65000:3_0:235_0:77$ ip community-list expanded c158 permit 79 ^65000:3_0:236_0:78$ ip community-list expanded c158 permit 80 ^65000:3_0:237_0:79$ ip community-list expanded c158 permit 81 ^65000:3_0:238_0:80$ ip community-list expanded c158 permit 82 ^65000:3_0:239_0:81$ ip community-list expanded c158 permit 83 ^65000:3_0:240_0:82$ ip community-list expanded c158 permit 84 ^65000:3_0:241_0:83$ ip community-list expanded c158 permit 85 ^65000:3_0:242_0:84$ ip community-list expanded c158 permit 86 ^65000:3_0:243_0:85$ ip community-list expanded c158 permit 87 ^65000:3_0:244_0:86$ ip community-list expanded c158 permit 88 ^65000:3_0:245_0:87$ ip community-list expanded c158 permit 89 ^65000:3_0:246_0:88$ ip community-list expanded c158 permit 90 ^65000:3_0:247_0:89$ ip community-list expanded c158 permit 91 ^65000:3_0:248_0:90$ ip community-list expanded c158 permit 92 ^65000:3_0:249_0:91$ ip community-list expanded c158 permit 93 ^65000:3_0:250_0:92$ ip community-list expanded c158 permit 94 ^65000:3_0:251_0:93$ ip community-list expanded c158 permit 95 ^65000:3_0:252_0:94$ ip community-list expanded c158 permit 96 ^65000:3_0:253_0:95$ ip community-list expanded c158 permit 97 ^65000:3_0:254_0:96$ ip community-list expanded c158 permit 98 ^65000:3_0:255_0:97$ ip community-list expanded c158 permit 99 ^65000:3_0:256_0:98$ route-map calculator permit 3245 match community 1_1_157 2_1_158 2_2_79 1_2_156 1_3_155 set community 0:158 route-map calculator permit 3246 match community 1_4_154 1_5_153 1_6_152 1_7_151 1_8_150 set community 0:158 route-map calculator permit 3247 match community 1_9_149 1_10_148 1_11_147 1_12_146 1_13_145 set community 0:158 route-map calculator permit 3248 match community 1_14_144 1_15_143 1_16_142 1_17_141 1_18_140 set community 0:158 route-map calculator permit 3249 match community 1_19_139 1_20_138 1_21_137 1_22_136 1_23_135 set community 0:158 route-map calculator permit 3250 match community 1_24_134 1_25_133 1_26_132 1_27_131 1_28_130 set community 0:158 route-map calculator permit 3251 match community 1_29_129 1_30_128 1_31_127 1_32_126 1_33_125 set community 0:158 route-map calculator permit 3252 match community 1_34_124 1_35_123 1_36_122 1_37_121 1_38_120 set community 0:158 route-map calculator permit 3253 match community 1_39_119 1_40_118 1_41_117 1_42_116 1_43_115 set community 0:158 route-map calculator permit 3254 match community 1_44_114 1_45_113 1_46_112 1_47_111 1_48_110 set community 0:158 route-map calculator permit 3255 match community 1_49_109 1_50_108 1_51_107 1_52_106 1_53_105 set community 0:158 route-map calculator permit 3256 match community 1_54_104 1_55_103 1_56_102 1_57_101 1_58_100 set community 0:158 route-map calculator permit 3257 match community 1_59_99 1_60_98 1_61_97 1_62_96 1_63_95 set community 0:158 route-map calculator permit 3258 match community 1_64_94 1_65_93 1_66_92 1_67_91 1_68_90 set community 0:158 route-map calculator permit 3259 match community 1_69_89 1_70_88 1_71_87 1_72_86 1_73_85 set community 0:158 route-map calculator permit 3260 match community 1_74_84 1_75_83 1_76_82 1_77_81 1_78_80 set community 0:158 route-map calculator permit 3261 match community 1_79_79 c4_158_1 c3_159_1 c3_160_2 c3_161_3 set community 0:158 route-map calculator permit 3262 match community c3_162_4 c3_163_5 c3_164_6 c3_165_7 c3_166_8 set community 0:158 route-map calculator permit 3263 match community c3_167_9 c3_168_10 c3_169_11 c3_170_12 c3_171_13 set community 0:158 route-map calculator permit 3264 match community c3_172_14 c3_173_15 c3_174_16 c3_175_17 c3_176_18 set community 0:158 route-map calculator permit 3265 match community c3_177_19 c3_178_20 c3_179_21 c3_180_22 c3_181_23 set community 0:158 route-map calculator permit 3266 match community c3_182_24 c3_183_25 c3_184_26 c3_185_27 c3_186_28 set community 0:158 route-map calculator permit 3267 match community c3_187_29 c3_188_30 c3_189_31 c3_190_32 c3_191_33 set community 0:158 route-map calculator permit 3268 match community c3_192_34 c3_193_35 c3_194_36 c3_195_37 c3_196_38 set community 0:158 route-map calculator permit 3269 match community c3_197_39 c3_198_40 c3_199_41 c3_200_42 c3_201_43 set community 0:158 route-map calculator permit 3270 match community c3_202_44 c3_203_45 c3_204_46 c3_205_47 c3_206_48 set community 0:158 route-map calculator permit 3271 match community c3_207_49 c3_208_50 c3_209_51 c3_210_52 c3_211_53 set community 0:158 route-map calculator permit 3272 match community c3_212_54 c3_213_55 c3_214_56 c3_215_57 c3_216_58 set community 0:158 route-map calculator permit 3273 match community c3_217_59 c3_218_60 c3_219_61 c3_220_62 c3_221_63 set community 0:158 route-map calculator permit 3274 match community c3_222_64 c3_223_65 c3_224_66 c3_225_67 c3_226_68 set community 0:158 route-map calculator permit 3275 match community c3_227_69 c3_228_70 c3_229_71 c3_230_72 c3_231_73 set community 0:158 route-map calculator permit 3276 match community c3_232_74 c3_233_75 c3_234_76 c3_235_77 c3_236_78 set community 0:158 route-map calculator permit 3277 match community c3_237_79 c3_238_80 c3_239_81 c3_240_82 c3_241_83 set community 0:158 route-map calculator permit 3278 match community c3_242_84 c3_243_85 c3_244_86 c3_245_87 c3_246_88 set community 0:158 route-map calculator permit 3279 match community c3_247_89 c3_248_90 c3_249_91 c3_250_92 c3_251_93 set community 0:158 route-map calculator permit 3280 match community c3_252_94 c3_253_95 c3_254_96 c3_255_97 c3_256_98 set community 0:158 ip community-list standard 2_156_217 permit 65000:2 0:156 0:217 ip community-list standard 2_182_186 permit 65000:2 0:182 0:186 route-map calculator permit 3281 match community 2_156_217 2_182_186 set community 0:33852 ip community-list standard 2_103_167 permit 65000:2 0:103 0:167 route-map calculator permit 3282 match community 2_103_167 set community 0:17201 ip community-list standard 2_188_232 permit 65000:2 0:188 0:232 route-map calculator permit 3283 match community 2_188_232 set community 0:43616 ip community-list standard 2_185_245 permit 65000:2 0:185 0:245 route-map calculator permit 3284 match community 2_185_245 set community 0:45325 ip community-list standard 2_202_254 permit 65000:2 0:202 0:254 route-map calculator permit 3285 match community 2_202_254 set community 0:51308 ip community-list standard 2_49_113 permit 65000:2 0:49 0:113 route-map calculator permit 3286 match community 2_49_113 set community 0:5537 ip community-list standard 2_5_245 permit 65000:2 0:5 0:245 ip community-list standard 2_7_175 permit 65000:2 0:7 0:175 ip community-list standard 2_25_49 permit 65000:2 0:25 0:49 ip community-list standard 2_35_35 permit 65000:2 0:35 0:35 route-map calculator permit 3287 match community 2_5_245 2_7_175 2_25_49 2_35_35 set community 0:1225 ip community-list standard 2_169_223 permit 65000:2 0:169 0:223 route-map calculator permit 3288 match community 2_169_223 set community 0:37687 ip community-list standard 2_8_250 permit 65000:2 0:8 0:250 ip community-list standard 2_10_200 permit 65000:2 0:10 0:200 ip community-list standard 2_16_125 permit 65000:2 0:16 0:125 ip community-list standard 2_20_100 permit 65000:2 0:20 0:100 ip community-list standard 2_25_80 permit 65000:2 0:25 0:80 ip community-list standard 2_40_50 permit 65000:2 0:40 0:50 route-map calculator permit 3289 match community 2_8_250 2_10_200 2_16_125 2_20_100 2_25_80 set community 0:2000 route-map calculator permit 3290 match community 2_40_50 set community 0:2000 ip community-list standard 2_102_183 permit 65000:2 0:102 0:183 ip community-list standard 2_122_153 permit 65000:2 0:122 0:153 route-map calculator permit 3291 match community 2_102_183 2_122_153 set community 0:18666 ip community-list standard 2_232_238 permit 65000:2 0:232 0:238 route-map calculator permit 3292 match community 2_232_238 set community 0:55216 ip community-list standard 1_1_17 permit 65000:1 0:1 0:17 ip community-list standard 2_1_18 permit 65000:2 0:1 0:18 ip community-list standard 2_2_9 permit 65000:2 0:2 0:9 ip community-list standard 1_2_16 permit 65000:1 0:2 0:16 ip community-list standard 2_3_6 permit 65000:2 0:3 0:6 ip community-list standard 1_3_15 permit 65000:1 0:3 0:15 ip community-list standard 1_4_14 permit 65000:1 0:4 0:14 ip community-list standard 1_5_13 permit 65000:1 0:5 0:13 ip community-list standard 1_6_12 permit 65000:1 0:6 0:12 ip community-list standard 1_7_11 permit 65000:1 0:7 0:11 ip community-list standard 1_8_10 permit 65000:1 0:8 0:10 ip community-list standard 1_9_9 permit 65000:1 0:9 0:9 ip community-list expanded c18 permit 1 ^65000:4_0:18_0:1$ ip community-list expanded c18 permit 2 ^65000:3_0:19_0:1$ ip community-list expanded c18 permit 3 ^65000:3_0:20_0:2$ ip community-list expanded c18 permit 4 ^65000:3_0:21_0:3$ ip community-list expanded c18 permit 5 ^65000:3_0:22_0:4$ ip community-list expanded c18 permit 6 ^65000:3_0:23_0:5$ ip community-list expanded c18 permit 7 ^65000:3_0:24_0:6$ ip community-list expanded c18 permit 8 ^65000:3_0:25_0:7$ ip community-list expanded c18 permit 9 ^65000:3_0:26_0:8$ ip community-list expanded c18 permit 10 ^65000:3_0:27_0:9$ ip community-list expanded c18 permit 11 ^65000:3_0:28_0:10$ ip community-list expanded c18 permit 12 ^65000:3_0:29_0:11$ ip community-list expanded c18 permit 13 ^65000:3_0:30_0:12$ ip community-list expanded c18 permit 14 ^65000:3_0:31_0:13$ ip community-list expanded c18 permit 15 ^65000:3_0:32_0:14$ ip community-list expanded c18 permit 16 ^65000:3_0:33_0:15$ ip community-list expanded c18 permit 17 ^65000:3_0:34_0:16$ ip community-list expanded c18 permit 18 ^65000:3_0:35_0:17$ ip community-list expanded c18 permit 19 ^65000:4_0:36_0:2$ ip community-list expanded c18 permit 20 ^65000:3_0:36_0:18$ ip community-list expanded c18 permit 21 ^65000:4_0:37_0:2$ ip community-list expanded c18 permit 22 ^65000:3_0:37_0:19$ ip community-list expanded c18 permit 23 ^65000:3_0:38_0:20$ ip community-list expanded c18 permit 24 ^65000:3_0:39_0:21$ ip community-list expanded c18 permit 25 ^65000:3_0:40_0:22$ ip community-list expanded c18 permit 26 ^65000:3_0:41_0:23$ ip community-list expanded c18 permit 27 ^65000:3_0:42_0:24$ ip community-list expanded c18 permit 28 ^65000:3_0:43_0:25$ ip community-list expanded c18 permit 29 ^65000:3_0:44_0:26$ ip community-list expanded c18 permit 30 ^65000:3_0:45_0:27$ ip community-list expanded c18 permit 31 ^65000:3_0:46_0:28$ ip community-list expanded c18 permit 32 ^65000:3_0:47_0:29$ ip community-list expanded c18 permit 33 ^65000:3_0:48_0:30$ ip community-list expanded c18 permit 34 ^65000:3_0:49_0:31$ ip community-list expanded c18 permit 35 ^65000:3_0:50_0:32$ ip community-list expanded c18 permit 36 ^65000:3_0:51_0:33$ ip community-list expanded c18 permit 37 ^65000:3_0:52_0:34$ ip community-list expanded c18 permit 38 ^65000:3_0:53_0:35$ ip community-list expanded c18 permit 39 ^65000:4_0:54_0:3$ ip community-list expanded c18 permit 40 ^65000:3_0:54_0:36$ ip community-list expanded c18 permit 41 ^65000:4_0:55_0:3$ ip community-list expanded c18 permit 42 ^65000:3_0:55_0:37$ ip community-list expanded c18 permit 43 ^65000:4_0:56_0:3$ ip community-list expanded c18 permit 44 ^65000:3_0:56_0:38$ ip community-list expanded c18 permit 45 ^65000:3_0:57_0:39$ ip community-list expanded c18 permit 46 ^65000:3_0:58_0:40$ ip community-list expanded c18 permit 47 ^65000:3_0:59_0:41$ ip community-list expanded c18 permit 48 ^65000:3_0:60_0:42$ ip community-list expanded c18 permit 49 ^65000:3_0:61_0:43$ ip community-list expanded c18 permit 50 ^65000:3_0:62_0:44$ ip community-list expanded c18 permit 51 ^65000:3_0:63_0:45$ ip community-list expanded c18 permit 52 ^65000:3_0:64_0:46$ ip community-list expanded c18 permit 53 ^65000:3_0:65_0:47$ ip community-list expanded c18 permit 54 ^65000:3_0:66_0:48$ ip community-list expanded c18 permit 55 ^65000:3_0:67_0:49$ ip community-list expanded c18 permit 56 ^65000:3_0:68_0:50$ ip community-list expanded c18 permit 57 ^65000:3_0:69_0:51$ ip community-list expanded c18 permit 58 ^65000:3_0:70_0:52$ ip community-list expanded c18 permit 59 ^65000:3_0:71_0:53$ ip community-list expanded c18 permit 60 ^65000:4_0:72_0:4$ ip community-list expanded c18 permit 61 ^65000:3_0:72_0:54$ ip community-list expanded c18 permit 62 ^65000:4_0:73_0:4$ ip community-list expanded c18 permit 63 ^65000:3_0:73_0:55$ ip community-list expanded c18 permit 64 ^65000:4_0:74_0:4$ ip community-list expanded c18 permit 65 ^65000:3_0:74_0:56$ ip community-list expanded c18 permit 66 ^65000:4_0:75_0:4$ ip community-list expanded c18 permit 67 ^65000:3_0:75_0:57$ ip community-list expanded c18 permit 68 ^65000:3_0:76_0:58$ ip community-list expanded c18 permit 69 ^65000:3_0:77_0:59$ ip community-list expanded c18 permit 70 ^65000:3_0:78_0:60$ ip community-list expanded c18 permit 71 ^65000:3_0:79_0:61$ ip community-list expanded c18 permit 72 ^65000:3_0:80_0:62$ ip community-list expanded c18 permit 73 ^65000:3_0:81_0:63$ ip community-list expanded c18 permit 74 ^65000:3_0:82_0:64$ ip community-list expanded c18 permit 75 ^65000:3_0:83_0:65$ ip community-list expanded c18 permit 76 ^65000:3_0:84_0:66$ ip community-list expanded c18 permit 77 ^65000:3_0:85_0:67$ ip community-list expanded c18 permit 78 ^65000:3_0:86_0:68$ ip community-list expanded c18 permit 79 ^65000:3_0:87_0:69$ ip community-list expanded c18 permit 80 ^65000:3_0:88_0:70$ ip community-list expanded c18 permit 81 ^65000:3_0:89_0:71$ ip community-list expanded c18 permit 82 ^65000:4_0:90_0:5$ ip community-list expanded c18 permit 83 ^65000:3_0:90_0:72$ ip community-list expanded c18 permit 84 ^65000:4_0:91_0:5$ ip community-list expanded c18 permit 85 ^65000:3_0:91_0:73$ ip community-list expanded c18 permit 86 ^65000:4_0:92_0:5$ ip community-list expanded c18 permit 87 ^65000:3_0:92_0:74$ ip community-list expanded c18 permit 88 ^65000:4_0:93_0:5$ ip community-list expanded c18 permit 89 ^65000:3_0:93_0:75$ ip community-list expanded c18 permit 90 ^65000:4_0:94_0:5$ ip community-list expanded c18 permit 91 ^65000:3_0:94_0:76$ ip community-list expanded c18 permit 92 ^65000:3_0:95_0:77$ ip community-list expanded c18 permit 93 ^65000:3_0:96_0:78$ ip community-list expanded c18 permit 94 ^65000:3_0:97_0:79$ ip community-list expanded c18 permit 95 ^65000:3_0:98_0:80$ ip community-list expanded c18 permit 96 ^65000:3_0:99_0:81$ ip community-list expanded c18 permit 97 ^65000:3_0:100_0:82$ ip community-list expanded c18 permit 98 ^65000:3_0:101_0:83$ ip community-list expanded c18 permit 99 ^65000:3_0:102_0:84$ ip community-list expanded c18 permit 100 ^65000:3_0:103_0:85$ ip community-list expanded c18 permit 101 ^65000:3_0:104_0:86$ ip community-list expanded c18 permit 102 ^65000:3_0:105_0:87$ ip community-list expanded c18 permit 103 ^65000:3_0:106_0:88$ ip community-list expanded c18 permit 104 ^65000:3_0:107_0:89$ ip community-list expanded c18 permit 105 ^65000:4_0:108_0:6$ ip community-list expanded c18 permit 106 ^65000:3_0:108_0:90$ ip community-list expanded c18 permit 107 ^65000:4_0:109_0:6$ ip community-list expanded c18 permit 108 ^65000:3_0:109_0:91$ ip community-list expanded c18 permit 109 ^65000:4_0:110_0:6$ ip community-list expanded c18 permit 110 ^65000:3_0:110_0:92$ ip community-list expanded c18 permit 111 ^65000:4_0:111_0:6$ ip community-list expanded c18 permit 112 ^65000:3_0:111_0:93$ ip community-list expanded c18 permit 113 ^65000:4_0:112_0:6$ ip community-list expanded c18 permit 114 ^65000:3_0:112_0:94$ ip community-list expanded c18 permit 115 ^65000:4_0:113_0:6$ ip community-list expanded c18 permit 116 ^65000:3_0:113_0:95$ ip community-list expanded c18 permit 117 ^65000:3_0:114_0:96$ ip community-list expanded c18 permit 118 ^65000:3_0:115_0:97$ ip community-list expanded c18 permit 119 ^65000:3_0:116_0:98$ ip community-list expanded c18 permit 120 ^65000:3_0:117_0:99$ ip community-list expanded c18 permit 121 ^65000:3_0:118_0:100$ ip community-list expanded c18 permit 122 ^65000:3_0:119_0:101$ ip community-list expanded c18 permit 123 ^65000:3_0:120_0:102$ ip community-list expanded c18 permit 124 ^65000:3_0:121_0:103$ ip community-list expanded c18 permit 125 ^65000:3_0:122_0:104$ ip community-list expanded c18 permit 126 ^65000:3_0:123_0:105$ ip community-list expanded c18 permit 127 ^65000:3_0:124_0:106$ ip community-list expanded c18 permit 128 ^65000:3_0:125_0:107$ ip community-list expanded c18 permit 129 ^65000:4_0:126_0:7$ ip community-list expanded c18 permit 130 ^65000:3_0:126_0:108$ ip community-list expanded c18 permit 131 ^65000:4_0:127_0:7$ ip community-list expanded c18 permit 132 ^65000:3_0:127_0:109$ ip community-list expanded c18 permit 133 ^65000:4_0:128_0:7$ ip community-list expanded c18 permit 134 ^65000:3_0:128_0:110$ ip community-list expanded c18 permit 135 ^65000:4_0:129_0:7$ ip community-list expanded c18 permit 136 ^65000:3_0:129_0:111$ ip community-list expanded c18 permit 137 ^65000:4_0:130_0:7$ ip community-list expanded c18 permit 138 ^65000:3_0:130_0:112$ ip community-list expanded c18 permit 139 ^65000:4_0:131_0:7$ ip community-list expanded c18 permit 140 ^65000:3_0:131_0:113$ ip community-list expanded c18 permit 141 ^65000:4_0:132_0:7$ ip community-list expanded c18 permit 142 ^65000:3_0:132_0:114$ ip community-list expanded c18 permit 143 ^65000:3_0:133_0:115$ ip community-list expanded c18 permit 144 ^65000:3_0:134_0:116$ ip community-list expanded c18 permit 145 ^65000:3_0:135_0:117$ ip community-list expanded c18 permit 146 ^65000:3_0:136_0:118$ ip community-list expanded c18 permit 147 ^65000:3_0:137_0:119$ ip community-list expanded c18 permit 148 ^65000:3_0:138_0:120$ ip community-list expanded c18 permit 149 ^65000:3_0:139_0:121$ ip community-list expanded c18 permit 150 ^65000:3_0:140_0:122$ ip community-list expanded c18 permit 151 ^65000:3_0:141_0:123$ ip community-list expanded c18 permit 152 ^65000:3_0:142_0:124$ ip community-list expanded c18 permit 153 ^65000:3_0:143_0:125$ ip community-list expanded c18 permit 154 ^65000:4_0:144_0:8$ ip community-list expanded c18 permit 155 ^65000:3_0:144_0:126$ ip community-list expanded c18 permit 156 ^65000:4_0:145_0:8$ ip community-list expanded c18 permit 157 ^65000:3_0:145_0:127$ ip community-list expanded c18 permit 158 ^65000:4_0:146_0:8$ ip community-list expanded c18 permit 159 ^65000:3_0:146_0:128$ ip community-list expanded c18 permit 160 ^65000:4_0:147_0:8$ ip community-list expanded c18 permit 161 ^65000:3_0:147_0:129$ ip community-list expanded c18 permit 162 ^65000:4_0:148_0:8$ ip community-list expanded c18 permit 163 ^65000:3_0:148_0:130$ ip community-list expanded c18 permit 164 ^65000:4_0:149_0:8$ ip community-list expanded c18 permit 165 ^65000:3_0:149_0:131$ ip community-list expanded c18 permit 166 ^65000:4_0:150_0:8$ ip community-list expanded c18 permit 167 ^65000:3_0:150_0:132$ ip community-list expanded c18 permit 168 ^65000:4_0:151_0:8$ ip community-list expanded c18 permit 169 ^65000:3_0:151_0:133$ ip community-list expanded c18 permit 170 ^65000:3_0:152_0:134$ ip community-list expanded c18 permit 171 ^65000:3_0:153_0:135$ ip community-list expanded c18 permit 172 ^65000:3_0:154_0:136$ ip community-list expanded c18 permit 173 ^65000:3_0:155_0:137$ ip community-list expanded c18 permit 174 ^65000:3_0:156_0:138$ ip community-list expanded c18 permit 175 ^65000:3_0:157_0:139$ ip community-list expanded c18 permit 176 ^65000:3_0:158_0:140$ ip community-list expanded c18 permit 177 ^65000:3_0:159_0:141$ ip community-list expanded c18 permit 178 ^65000:3_0:160_0:142$ ip community-list expanded c18 permit 179 ^65000:3_0:161_0:143$ ip community-list expanded c18 permit 180 ^65000:4_0:162_0:9$ ip community-list expanded c18 permit 181 ^65000:3_0:162_0:144$ ip community-list expanded c18 permit 182 ^65000:4_0:163_0:9$ ip community-list expanded c18 permit 183 ^65000:3_0:163_0:145$ ip community-list expanded c18 permit 184 ^65000:4_0:164_0:9$ ip community-list expanded c18 permit 185 ^65000:3_0:164_0:146$ ip community-list expanded c18 permit 186 ^65000:4_0:165_0:9$ ip community-list expanded c18 permit 187 ^65000:3_0:165_0:147$ ip community-list expanded c18 permit 188 ^65000:4_0:166_0:9$ ip community-list expanded c18 permit 189 ^65000:3_0:166_0:148$ ip community-list expanded c18 permit 190 ^65000:4_0:167_0:9$ ip community-list expanded c18 permit 191 ^65000:3_0:167_0:149$ ip community-list expanded c18 permit 192 ^65000:4_0:168_0:9$ ip community-list expanded c18 permit 193 ^65000:3_0:168_0:150$ ip community-list expanded c18 permit 194 ^65000:4_0:169_0:9$ ip community-list expanded c18 permit 195 ^65000:3_0:169_0:151$ ip community-list expanded c18 permit 196 ^65000:4_0:170_0:9$ ip community-list expanded c18 permit 197 ^65000:3_0:170_0:152$ ip community-list expanded c18 permit 198 ^65000:3_0:171_0:153$ ip community-list expanded c18 permit 199 ^65000:3_0:172_0:154$ ip community-list expanded c18 permit 200 ^65000:3_0:173_0:155$ ip community-list expanded c18 permit 201 ^65000:3_0:174_0:156$ ip community-list expanded c18 permit 202 ^65000:3_0:175_0:157$ ip community-list expanded c18 permit 203 ^65000:3_0:176_0:158$ ip community-list expanded c18 permit 204 ^65000:3_0:177_0:159$ ip community-list expanded c18 permit 205 ^65000:3_0:178_0:160$ ip community-list expanded c18 permit 206 ^65000:3_0:179_0:161$ ip community-list expanded c18 permit 207 ^65000:4_0:180_0:10$ ip community-list expanded c18 permit 208 ^65000:3_0:180_0:162$ ip community-list expanded c18 permit 209 ^65000:4_0:181_0:10$ ip community-list expanded c18 permit 210 ^65000:3_0:181_0:163$ ip community-list expanded c18 permit 211 ^65000:4_0:182_0:10$ ip community-list expanded c18 permit 212 ^65000:3_0:182_0:164$ ip community-list expanded c18 permit 213 ^65000:4_0:183_0:10$ ip community-list expanded c18 permit 214 ^65000:3_0:183_0:165$ ip community-list expanded c18 permit 215 ^65000:4_0:184_0:10$ ip community-list expanded c18 permit 216 ^65000:3_0:184_0:166$ ip community-list expanded c18 permit 217 ^65000:4_0:185_0:10$ ip community-list expanded c18 permit 218 ^65000:3_0:185_0:167$ ip community-list expanded c18 permit 219 ^65000:4_0:186_0:10$ ip community-list expanded c18 permit 220 ^65000:3_0:186_0:168$ ip community-list expanded c18 permit 221 ^65000:4_0:187_0:10$ ip community-list expanded c18 permit 222 ^65000:3_0:187_0:169$ ip community-list expanded c18 permit 223 ^65000:4_0:188_0:10$ ip community-list expanded c18 permit 224 ^65000:3_0:188_0:170$ ip community-list expanded c18 permit 225 ^65000:4_0:189_0:10$ ip community-list expanded c18 permit 226 ^65000:3_0:189_0:171$ ip community-list expanded c18 permit 227 ^65000:3_0:190_0:172$ ip community-list expanded c18 permit 228 ^65000:3_0:191_0:173$ ip community-list expanded c18 permit 229 ^65000:3_0:192_0:174$ ip community-list expanded c18 permit 230 ^65000:3_0:193_0:175$ ip community-list expanded c18 permit 231 ^65000:3_0:194_0:176$ ip community-list expanded c18 permit 232 ^65000:3_0:195_0:177$ ip community-list expanded c18 permit 233 ^65000:3_0:196_0:178$ ip community-list expanded c18 permit 234 ^65000:3_0:197_0:179$ ip community-list expanded c18 permit 235 ^65000:4_0:198_0:11$ ip community-list expanded c18 permit 236 ^65000:3_0:198_0:180$ ip community-list expanded c18 permit 237 ^65000:4_0:199_0:11$ ip community-list expanded c18 permit 238 ^65000:3_0:199_0:181$ ip community-list expanded c18 permit 239 ^65000:4_0:200_0:11$ ip community-list expanded c18 permit 240 ^65000:3_0:200_0:182$ ip community-list expanded c18 permit 241 ^65000:4_0:201_0:11$ ip community-list expanded c18 permit 242 ^65000:3_0:201_0:183$ ip community-list expanded c18 permit 243 ^65000:4_0:202_0:11$ ip community-list expanded c18 permit 244 ^65000:3_0:202_0:184$ ip community-list expanded c18 permit 245 ^65000:4_0:203_0:11$ ip community-list expanded c18 permit 246 ^65000:3_0:203_0:185$ ip community-list expanded c18 permit 247 ^65000:4_0:204_0:11$ ip community-list expanded c18 permit 248 ^65000:3_0:204_0:186$ ip community-list expanded c18 permit 249 ^65000:4_0:205_0:11$ ip community-list expanded c18 permit 250 ^65000:3_0:205_0:187$ ip community-list expanded c18 permit 251 ^65000:4_0:206_0:11$ ip community-list expanded c18 permit 252 ^65000:3_0:206_0:188$ ip community-list expanded c18 permit 253 ^65000:4_0:207_0:11$ ip community-list expanded c18 permit 254 ^65000:3_0:207_0:189$ ip community-list expanded c18 permit 255 ^65000:4_0:208_0:11$ ip community-list expanded c18 permit 256 ^65000:3_0:208_0:190$ ip community-list expanded c18 permit 257 ^65000:3_0:209_0:191$ ip community-list expanded c18 permit 258 ^65000:3_0:210_0:192$ ip community-list expanded c18 permit 259 ^65000:3_0:211_0:193$ ip community-list expanded c18 permit 260 ^65000:3_0:212_0:194$ ip community-list expanded c18 permit 261 ^65000:3_0:213_0:195$ ip community-list expanded c18 permit 262 ^65000:3_0:214_0:196$ ip community-list expanded c18 permit 263 ^65000:3_0:215_0:197$ ip community-list expanded c18 permit 264 ^65000:4_0:216_0:12$ ip community-list expanded c18 permit 265 ^65000:3_0:216_0:198$ ip community-list expanded c18 permit 266 ^65000:4_0:217_0:12$ ip community-list expanded c18 permit 267 ^65000:3_0:217_0:199$ ip community-list expanded c18 permit 268 ^65000:4_0:218_0:12$ ip community-list expanded c18 permit 269 ^65000:3_0:218_0:200$ ip community-list expanded c18 permit 270 ^65000:4_0:219_0:12$ ip community-list expanded c18 permit 271 ^65000:3_0:219_0:201$ ip community-list expanded c18 permit 272 ^65000:4_0:220_0:12$ ip community-list expanded c18 permit 273 ^65000:3_0:220_0:202$ ip community-list expanded c18 permit 274 ^65000:4_0:221_0:12$ ip community-list expanded c18 permit 275 ^65000:3_0:221_0:203$ ip community-list expanded c18 permit 276 ^65000:4_0:222_0:12$ ip community-list expanded c18 permit 277 ^65000:3_0:222_0:204$ ip community-list expanded c18 permit 278 ^65000:4_0:223_0:12$ ip community-list expanded c18 permit 279 ^65000:3_0:223_0:205$ ip community-list expanded c18 permit 280 ^65000:4_0:224_0:12$ ip community-list expanded c18 permit 281 ^65000:3_0:224_0:206$ ip community-list expanded c18 permit 282 ^65000:4_0:225_0:12$ ip community-list expanded c18 permit 283 ^65000:3_0:225_0:207$ ip community-list expanded c18 permit 284 ^65000:4_0:226_0:12$ ip community-list expanded c18 permit 285 ^65000:3_0:226_0:208$ ip community-list expanded c18 permit 286 ^65000:4_0:227_0:12$ ip community-list expanded c18 permit 287 ^65000:3_0:227_0:209$ ip community-list expanded c18 permit 288 ^65000:3_0:228_0:210$ ip community-list expanded c18 permit 289 ^65000:3_0:229_0:211$ ip community-list expanded c18 permit 290 ^65000:3_0:230_0:212$ ip community-list expanded c18 permit 291 ^65000:3_0:231_0:213$ ip community-list expanded c18 permit 292 ^65000:3_0:232_0:214$ ip community-list expanded c18 permit 293 ^65000:3_0:233_0:215$ ip community-list expanded c18 permit 294 ^65000:4_0:234_0:13$ ip community-list expanded c18 permit 295 ^65000:3_0:234_0:216$ ip community-list expanded c18 permit 296 ^65000:4_0:235_0:13$ ip community-list expanded c18 permit 297 ^65000:3_0:235_0:217$ ip community-list expanded c18 permit 298 ^65000:4_0:236_0:13$ ip community-list expanded c18 permit 299 ^65000:3_0:236_0:218$ ip community-list expanded c18 permit 300 ^65000:4_0:237_0:13$ ip community-list expanded c18 permit 301 ^65000:3_0:237_0:219$ ip community-list expanded c18 permit 302 ^65000:4_0:238_0:13$ ip community-list expanded c18 permit 303 ^65000:3_0:238_0:220$ ip community-list expanded c18 permit 304 ^65000:4_0:239_0:13$ ip community-list expanded c18 permit 305 ^65000:3_0:239_0:221$ ip community-list expanded c18 permit 306 ^65000:4_0:240_0:13$ ip community-list expanded c18 permit 307 ^65000:3_0:240_0:222$ ip community-list expanded c18 permit 308 ^65000:4_0:241_0:13$ ip community-list expanded c18 permit 309 ^65000:3_0:241_0:223$ ip community-list expanded c18 permit 310 ^65000:4_0:242_0:13$ ip community-list expanded c18 permit 311 ^65000:3_0:242_0:224$ ip community-list expanded c18 permit 312 ^65000:4_0:243_0:13$ ip community-list expanded c18 permit 313 ^65000:3_0:243_0:225$ ip community-list expanded c18 permit 314 ^65000:4_0:244_0:13$ ip community-list expanded c18 permit 315 ^65000:3_0:244_0:226$ ip community-list expanded c18 permit 316 ^65000:4_0:245_0:13$ ip community-list expanded c18 permit 317 ^65000:3_0:245_0:227$ ip community-list expanded c18 permit 318 ^65000:4_0:246_0:13$ ip community-list expanded c18 permit 319 ^65000:3_0:246_0:228$ ip community-list expanded c18 permit 320 ^65000:3_0:247_0:229$ ip community-list expanded c18 permit 321 ^65000:3_0:248_0:230$ ip community-list expanded c18 permit 322 ^65000:3_0:249_0:231$ ip community-list expanded c18 permit 323 ^65000:3_0:250_0:232$ ip community-list expanded c18 permit 324 ^65000:3_0:251_0:233$ ip community-list expanded c18 permit 325 ^65000:4_0:252_0:14$ ip community-list expanded c18 permit 326 ^65000:3_0:252_0:234$ ip community-list expanded c18 permit 327 ^65000:4_0:253_0:14$ ip community-list expanded c18 permit 328 ^65000:3_0:253_0:235$ ip community-list expanded c18 permit 329 ^65000:4_0:254_0:14$ ip community-list expanded c18 permit 330 ^65000:3_0:254_0:236$ ip community-list expanded c18 permit 331 ^65000:4_0:255_0:14$ ip community-list expanded c18 permit 332 ^65000:3_0:255_0:237$ ip community-list expanded c18 permit 333 ^65000:4_0:256_0:14$ ip community-list expanded c18 permit 334 ^65000:3_0:256_0:238$ route-map calculator permit 3293 match community 1_1_17 2_1_18 2_2_9 1_2_16 2_3_6 set community 0:18 route-map calculator permit 3294 match community 1_3_15 1_4_14 1_5_13 1_6_12 1_7_11 set community 0:18 route-map calculator permit 3295 match community 1_8_10 1_9_9 c4_18_1 c3_19_1 c3_20_2 set community 0:18 route-map calculator permit 3296 match community c3_21_3 c3_22_4 c3_23_5 c3_24_6 c3_25_7 set community 0:18 route-map calculator permit 3297 match community c3_26_8 c3_27_9 c3_28_10 c3_29_11 c3_30_12 set community 0:18 route-map calculator permit 3298 match community c3_31_13 c3_32_14 c3_33_15 c3_34_16 c3_35_17 set community 0:18 route-map calculator permit 3299 match community c4_36_2 c3_36_18 c4_37_2 c3_37_19 c3_38_20 set community 0:18 route-map calculator permit 3300 match community c3_39_21 c3_40_22 c3_41_23 c3_42_24 c3_43_25 set community 0:18 route-map calculator permit 3301 match community c3_44_26 c3_45_27 c3_46_28 c3_47_29 c3_48_30 set community 0:18 route-map calculator permit 3302 match community c3_49_31 c3_50_32 c3_51_33 c3_52_34 c3_53_35 set community 0:18 route-map calculator permit 3303 match community c4_54_3 c3_54_36 c4_55_3 c3_55_37 c4_56_3 set community 0:18 route-map calculator permit 3304 match community c3_56_38 c3_57_39 c3_58_40 c3_59_41 c3_60_42 set community 0:18 route-map calculator permit 3305 match community c3_61_43 c3_62_44 c3_63_45 c3_64_46 c3_65_47 set community 0:18 route-map calculator permit 3306 match community c3_66_48 c3_67_49 c3_68_50 c3_69_51 c3_70_52 set community 0:18 route-map calculator permit 3307 match community c3_71_53 c4_72_4 c3_72_54 c4_73_4 c3_73_55 set community 0:18 route-map calculator permit 3308 match community c4_74_4 c3_74_56 c4_75_4 c3_75_57 c3_76_58 set community 0:18 route-map calculator permit 3309 match community c3_77_59 c3_78_60 c3_79_61 c3_80_62 c3_81_63 set community 0:18 route-map calculator permit 3310 match community c3_82_64 c3_83_65 c3_84_66 c3_85_67 c3_86_68 set community 0:18 route-map calculator permit 3311 match community c3_87_69 c3_88_70 c3_89_71 c4_90_5 c3_90_72 set community 0:18 route-map calculator permit 3312 match community c4_91_5 c3_91_73 c4_92_5 c3_92_74 c4_93_5 set community 0:18 route-map calculator permit 3313 match community c3_93_75 c4_94_5 c3_94_76 c3_95_77 c3_96_78 set community 0:18 route-map calculator permit 3314 match community c3_97_79 c3_98_80 c3_99_81 c3_100_82 c3_101_83 set community 0:18 route-map calculator permit 3315 match community c3_102_84 c3_103_85 c3_104_86 c3_105_87 c3_106_88 set community 0:18 route-map calculator permit 3316 match community c3_107_89 c4_108_6 c3_108_90 c4_109_6 c3_109_91 set community 0:18 route-map calculator permit 3317 match community c4_110_6 c3_110_92 c4_111_6 c3_111_93 c4_112_6 set community 0:18 route-map calculator permit 3318 match community c3_112_94 c4_113_6 c3_113_95 c3_114_96 c3_115_97 set community 0:18 route-map calculator permit 3319 match community c3_116_98 c3_117_99 c3_118_100 c3_119_101 c3_120_102 set community 0:18 route-map calculator permit 3320 match community c3_121_103 c3_122_104 c3_123_105 c3_124_106 c3_125_107 set community 0:18 route-map calculator permit 3321 match community c4_126_7 c3_126_108 c4_127_7 c3_127_109 c4_128_7 set community 0:18 route-map calculator permit 3322 match community c3_128_110 c4_129_7 c3_129_111 c4_130_7 c3_130_112 set community 0:18 route-map calculator permit 3323 match community c4_131_7 c3_131_113 c4_132_7 c3_132_114 c3_133_115 set community 0:18 route-map calculator permit 3324 match community c3_134_116 c3_135_117 c3_136_118 c3_137_119 c3_138_120 set community 0:18 route-map calculator permit 3325 match community c3_139_121 c3_140_122 c3_141_123 c3_142_124 c3_143_125 set community 0:18 route-map calculator permit 3326 match community c4_144_8 c3_144_126 c4_145_8 c3_145_127 c4_146_8 set community 0:18 route-map calculator permit 3327 match community c3_146_128 c4_147_8 c3_147_129 c4_148_8 c3_148_130 set community 0:18 route-map calculator permit 3328 match community c4_149_8 c3_149_131 c4_150_8 c3_150_132 c4_151_8 set community 0:18 route-map calculator permit 3329 match community c3_151_133 c3_152_134 c3_153_135 c3_154_136 c3_155_137 set community 0:18 route-map calculator permit 3330 match community c3_156_138 c3_157_139 c3_158_140 c3_159_141 c3_160_142 set community 0:18 route-map calculator permit 3331 match community c3_161_143 c4_162_9 c3_162_144 c4_163_9 c3_163_145 set community 0:18 route-map calculator permit 3332 match community c4_164_9 c3_164_146 c4_165_9 c3_165_147 c4_166_9 set community 0:18 route-map calculator permit 3333 match community c3_166_148 c4_167_9 c3_167_149 c4_168_9 c3_168_150 set community 0:18 route-map calculator permit 3334 match community c4_169_9 c3_169_151 c4_170_9 c3_170_152 c3_171_153 set community 0:18 route-map calculator permit 3335 match community c3_172_154 c3_173_155 c3_174_156 c3_175_157 c3_176_158 set community 0:18 route-map calculator permit 3336 match community c3_177_159 c3_178_160 c3_179_161 c4_180_10 c3_180_162 set community 0:18 route-map calculator permit 3337 match community c4_181_10 c3_181_163 c4_182_10 c3_182_164 c4_183_10 set community 0:18 route-map calculator permit 3338 match community c3_183_165 c4_184_10 c3_184_166 c4_185_10 c3_185_167 set community 0:18 route-map calculator permit 3339 match community c4_186_10 c3_186_168 c4_187_10 c3_187_169 c4_188_10 set community 0:18 route-map calculator permit 3340 match community c3_188_170 c4_189_10 c3_189_171 c3_190_172 c3_191_173 set community 0:18 route-map calculator permit 3341 match community c3_192_174 c3_193_175 c3_194_176 c3_195_177 c3_196_178 set community 0:18 route-map calculator permit 3342 match community c3_197_179 c4_198_11 c3_198_180 c4_199_11 c3_199_181 set community 0:18 route-map calculator permit 3343 match community c4_200_11 c3_200_182 c4_201_11 c3_201_183 c4_202_11 set community 0:18 route-map calculator permit 3344 match community c3_202_184 c4_203_11 c3_203_185 c4_204_11 c3_204_186 set community 0:18 route-map calculator permit 3345 match community c4_205_11 c3_205_187 c4_206_11 c3_206_188 c4_207_11 set community 0:18 route-map calculator permit 3346 match community c3_207_189 c4_208_11 c3_208_190 c3_209_191 c3_210_192 set community 0:18 route-map calculator permit 3347 match community c3_211_193 c3_212_194 c3_213_195 c3_214_196 c3_215_197 set community 0:18 route-map calculator permit 3348 match community c4_216_12 c3_216_198 c4_217_12 c3_217_199 c4_218_12 set community 0:18 route-map calculator permit 3349 match community c3_218_200 c4_219_12 c3_219_201 c4_220_12 c3_220_202 set community 0:18 route-map calculator permit 3350 match community c4_221_12 c3_221_203 c4_222_12 c3_222_204 c4_223_12 set community 0:18 route-map calculator permit 3351 match community c3_223_205 c4_224_12 c3_224_206 c4_225_12 c3_225_207 set community 0:18 route-map calculator permit 3352 match community c4_226_12 c3_226_208 c4_227_12 c3_227_209 c3_228_210 set community 0:18 route-map calculator permit 3353 match community c3_229_211 c3_230_212 c3_231_213 c3_232_214 c3_233_215 set community 0:18 route-map calculator permit 3354 match community c4_234_13 c3_234_216 c4_235_13 c3_235_217 c4_236_13 set community 0:18 route-map calculator permit 3355 match community c3_236_218 c4_237_13 c3_237_219 c4_238_13 c3_238_220 set community 0:18 route-map calculator permit 3356 match community c4_239_13 c3_239_221 c4_240_13 c3_240_222 c4_241_13 set community 0:18 route-map calculator permit 3357 match community c3_241_223 c4_242_13 c3_242_224 c4_243_13 c3_243_225 set community 0:18 route-map calculator permit 3358 match community c4_244_13 c3_244_226 c4_245_13 c3_245_227 c4_246_13 set community 0:18 route-map calculator permit 3359 match community c3_246_228 c3_247_229 c3_248_230 c3_249_231 c3_250_232 set community 0:18 route-map calculator permit 3360 match community c3_251_233 c4_252_14 c3_252_234 c4_253_14 c3_253_235 set community 0:18 route-map calculator permit 3361 match community c4_254_14 c3_254_236 c4_255_14 c3_255_237 c4_256_14 set community 0:18 route-map calculator permit 3362 match community c3_256_238 set community 0:18 ip community-list standard 2_99_201 permit 65000:2 0:99 0:201 route-map calculator permit 3363 match community 2_99_201 set community 0:19899 ip community-list standard 2_87_129 permit 65000:2 0:87 0:129 route-map calculator permit 3364 match community 2_87_129 set community 0:11223 ip community-list standard 2_3_183 permit 65000:2 0:3 0:183 ip community-list standard 2_9_61 permit 65000:2 0:9 0:61 route-map calculator permit 3365 match community 2_3_183 2_9_61 set community 0:549 ip community-list standard 2_13_226 permit 65000:2 0:13 0:226 ip community-list standard 2_26_113 permit 65000:2 0:26 0:113 route-map calculator permit 3366 match community 2_13_226 2_26_113 set community 0:2938 ip community-list standard 2_127_203 permit 65000:2 0:127 0:203 route-map calculator permit 3367 match community 2_127_203 set community 0:25781 ip community-list standard 2_84_239 permit 65000:2 0:84 0:239 route-map calculator permit 3368 match community 2_84_239 set community 0:20076 ip community-list standard 2_143_247 permit 65000:2 0:143 0:247 ip community-list standard 2_169_209 permit 65000:2 0:169 0:209 route-map calculator permit 3369 match community 2_143_247 2_169_209 set community 0:35321 ip community-list standard 2_19_254 permit 65000:2 0:19 0:254 ip community-list standard 2_38_127 permit 65000:2 0:38 0:127 route-map calculator permit 3370 match community 2_19_254 2_38_127 set community 0:4826 ip community-list standard 2_117_227 permit 65000:2 0:117 0:227 route-map calculator permit 3371 match community 2_117_227 set community 0:26559 ip community-list standard 2_166_172 permit 65000:2 0:166 0:172 route-map calculator permit 3372 match community 2_166_172 set community 0:28552 ip community-list standard 2_71_236 permit 65000:2 0:71 0:236 ip community-list standard 2_118_142 permit 65000:2 0:118 0:142 route-map calculator permit 3373 match community 2_71_236 2_118_142 set community 0:16756 ip community-list standard 2_169_234 permit 65000:2 0:169 0:234 route-map calculator permit 3374 match community 2_169_234 set community 0:39546 ip community-list standard 2_44_151 permit 65000:2 0:44 0:151 route-map calculator permit 3375 match community 2_44_151 set community 0:6644 ip community-list standard 2_90_252 permit 65000:2 0:90 0:252 ip community-list standard 2_105_216 permit 65000:2 0:105 0:216 ip community-list standard 2_108_210 permit 65000:2 0:108 0:210 ip community-list standard 2_120_189 permit 65000:2 0:120 0:189 ip community-list standard 2_126_180 permit 65000:2 0:126 0:180 ip community-list standard 2_135_168 permit 65000:2 0:135 0:168 ip community-list standard 2_140_162 permit 65000:2 0:140 0:162 route-map calculator permit 3376 match community 2_90_252 2_105_216 2_108_210 2_120_189 2_126_180 set community 0:22680 route-map calculator permit 3377 match community 2_135_168 2_140_162 set community 0:22680 ip community-list standard 2_233_239 permit 65000:2 0:233 0:239 route-map calculator permit 3378 match community 2_233_239 set community 0:55687 ip community-list standard 2_177_229 permit 65000:2 0:177 0:229 route-map calculator permit 3379 match community 2_177_229 set community 0:40533 ip community-list standard 2_104_247 permit 65000:2 0:104 0:247 ip community-list standard 2_152_169 permit 65000:2 0:152 0:169 route-map calculator permit 3380 match community 2_104_247 2_152_169 set community 0:25688 ip community-list standard 2_13_123 permit 65000:2 0:13 0:123 ip community-list standard 2_39_41 permit 65000:2 0:39 0:41 route-map calculator permit 3381 match community 2_13_123 2_39_41 set community 0:1599 ip community-list standard 2_116_241 permit 65000:2 0:116 0:241 route-map calculator permit 3382 match community 2_116_241 set community 0:27956 ip community-list standard 2_170_229 permit 65000:2 0:170 0:229 route-map calculator permit 3383 match community 2_170_229 set community 0:38930 ip community-list standard 2_13_244 permit 65000:2 0:13 0:244 ip community-list standard 2_26_122 permit 65000:2 0:26 0:122 ip community-list standard 2_52_61 permit 65000:2 0:52 0:61 route-map calculator permit 3384 match community 2_13_244 2_26_122 2_52_61 set community 0:3172 ip community-list standard 2_154_233 permit 65000:2 0:154 0:233 route-map calculator permit 3385 match community 2_154_233 set community 0:35882 ip community-list standard 2_5_209 permit 65000:2 0:5 0:209 ip community-list standard 2_11_95 permit 65000:2 0:11 0:95 ip community-list standard 2_19_55 permit 65000:2 0:19 0:55 route-map calculator permit 3386 match community 2_5_209 2_11_95 2_19_55 set community 0:1045 ip community-list standard 2_22_206 permit 65000:2 0:22 0:206 ip community-list standard 2_44_103 permit 65000:2 0:44 0:103 route-map calculator permit 3387 match community 2_22_206 2_44_103 set community 0:4532 ip community-list standard 2_216_244 permit 65000:2 0:216 0:244 route-map calculator permit 3388 match community 2_216_244 set community 0:52704 ip community-list standard 2_5_161 permit 65000:2 0:5 0:161 ip community-list standard 2_7_115 permit 65000:2 0:7 0:115 ip community-list standard 2_23_35 permit 65000:2 0:23 0:35 route-map calculator permit 3389 match community 2_5_161 2_7_115 2_23_35 set community 0:805 ip community-list standard 2_182_244 permit 65000:2 0:182 0:244 route-map calculator permit 3390 match community 2_182_244 set community 0:44408 ip community-list standard 2_66_201 permit 65000:2 0:66 0:201 ip community-list standard 2_67_198 permit 65000:2 0:67 0:198 ip community-list standard 2_99_134 permit 65000:2 0:99 0:134 route-map calculator permit 3391 match community 2_66_201 2_67_198 2_99_134 set community 0:13266 ip community-list standard 2_15_103 permit 65000:2 0:15 0:103 route-map calculator permit 3392 match community 2_15_103 set community 0:1545 ip community-list standard 2_121_169 permit 65000:2 0:121 0:169 ip community-list standard 2_143_143 permit 65000:2 0:143 0:143 route-map calculator permit 3393 match community 2_121_169 2_143_143 set community 0:20449 ip community-list standard 2_107_223 permit 65000:2 0:107 0:223 route-map calculator permit 3394 match community 2_107_223 set community 0:23861 ip community-list standard 2_141_201 permit 65000:2 0:141 0:201 route-map calculator permit 3395 match community 2_141_201 set community 0:28341 ip community-list standard 1_1_7 permit 65000:1 0:1 0:7 ip community-list standard 2_1_8 permit 65000:2 0:1 0:8 ip community-list standard 2_2_4 permit 65000:2 0:2 0:4 ip community-list standard 1_2_6 permit 65000:1 0:2 0:6 ip community-list standard 1_3_5 permit 65000:1 0:3 0:5 ip community-list standard 1_4_4 permit 65000:1 0:4 0:4 ip community-list expanded c8 permit 1 ^65000:4_0:8_0:1$ ip community-list expanded c8 permit 2 ^65000:3_0:9_0:1$ ip community-list expanded c8 permit 3 ^65000:3_0:10_0:2$ ip community-list expanded c8 permit 4 ^65000:3_0:11_0:3$ ip community-list expanded c8 permit 5 ^65000:3_0:12_0:4$ ip community-list expanded c8 permit 6 ^65000:3_0:13_0:5$ ip community-list expanded c8 permit 7 ^65000:3_0:14_0:6$ ip community-list expanded c8 permit 8 ^65000:3_0:15_0:7$ ip community-list expanded c8 permit 9 ^65000:4_0:16_0:2$ ip community-list expanded c8 permit 10 ^65000:3_0:16_0:8$ ip community-list expanded c8 permit 11 ^65000:4_0:17_0:2$ ip community-list expanded c8 permit 12 ^65000:3_0:17_0:9$ ip community-list expanded c8 permit 13 ^65000:3_0:18_0:10$ ip community-list expanded c8 permit 14 ^65000:3_0:19_0:11$ ip community-list expanded c8 permit 15 ^65000:3_0:20_0:12$ ip community-list expanded c8 permit 16 ^65000:3_0:21_0:13$ ip community-list expanded c8 permit 17 ^65000:3_0:22_0:14$ ip community-list expanded c8 permit 18 ^65000:3_0:23_0:15$ ip community-list expanded c8 permit 19 ^65000:4_0:24_0:3$ ip community-list expanded c8 permit 20 ^65000:3_0:24_0:16$ ip community-list expanded c8 permit 21 ^65000:4_0:25_0:3$ ip community-list expanded c8 permit 22 ^65000:3_0:25_0:17$ ip community-list expanded c8 permit 23 ^65000:4_0:26_0:3$ ip community-list expanded c8 permit 24 ^65000:3_0:26_0:18$ ip community-list expanded c8 permit 25 ^65000:3_0:27_0:19$ ip community-list expanded c8 permit 26 ^65000:3_0:28_0:20$ ip community-list expanded c8 permit 27 ^65000:3_0:29_0:21$ ip community-list expanded c8 permit 28 ^65000:3_0:30_0:22$ ip community-list expanded c8 permit 29 ^65000:3_0:31_0:23$ ip community-list expanded c8 permit 30 ^65000:4_0:32_0:4$ ip community-list expanded c8 permit 31 ^65000:3_0:32_0:24$ ip community-list expanded c8 permit 32 ^65000:4_0:33_0:4$ ip community-list expanded c8 permit 33 ^65000:3_0:33_0:25$ ip community-list expanded c8 permit 34 ^65000:4_0:34_0:4$ ip community-list expanded c8 permit 35 ^65000:3_0:34_0:26$ ip community-list expanded c8 permit 36 ^65000:4_0:35_0:4$ ip community-list expanded c8 permit 37 ^65000:3_0:35_0:27$ ip community-list expanded c8 permit 38 ^65000:3_0:36_0:28$ ip community-list expanded c8 permit 39 ^65000:3_0:37_0:29$ ip community-list expanded c8 permit 40 ^65000:3_0:38_0:30$ ip community-list expanded c8 permit 41 ^65000:3_0:39_0:31$ ip community-list expanded c8 permit 42 ^65000:4_0:40_0:5$ ip community-list expanded c8 permit 43 ^65000:3_0:40_0:32$ ip community-list expanded c8 permit 44 ^65000:4_0:41_0:5$ ip community-list expanded c8 permit 45 ^65000:3_0:41_0:33$ ip community-list expanded c8 permit 46 ^65000:4_0:42_0:5$ ip community-list expanded c8 permit 47 ^65000:3_0:42_0:34$ ip community-list expanded c8 permit 48 ^65000:4_0:43_0:5$ ip community-list expanded c8 permit 49 ^65000:3_0:43_0:35$ ip community-list expanded c8 permit 50 ^65000:4_0:44_0:5$ ip community-list expanded c8 permit 51 ^65000:3_0:44_0:36$ ip community-list expanded c8 permit 52 ^65000:3_0:45_0:37$ ip community-list expanded c8 permit 53 ^65000:3_0:46_0:38$ ip community-list expanded c8 permit 54 ^65000:3_0:47_0:39$ ip community-list expanded c8 permit 55 ^65000:4_0:48_0:6$ ip community-list expanded c8 permit 56 ^65000:3_0:48_0:40$ ip community-list expanded c8 permit 57 ^65000:4_0:49_0:6$ ip community-list expanded c8 permit 58 ^65000:3_0:49_0:41$ ip community-list expanded c8 permit 59 ^65000:4_0:50_0:6$ ip community-list expanded c8 permit 60 ^65000:3_0:50_0:42$ ip community-list expanded c8 permit 61 ^65000:4_0:51_0:6$ ip community-list expanded c8 permit 62 ^65000:3_0:51_0:43$ ip community-list expanded c8 permit 63 ^65000:4_0:52_0:6$ ip community-list expanded c8 permit 64 ^65000:3_0:52_0:44$ ip community-list expanded c8 permit 65 ^65000:4_0:53_0:6$ ip community-list expanded c8 permit 66 ^65000:3_0:53_0:45$ ip community-list expanded c8 permit 67 ^65000:3_0:54_0:46$ ip community-list expanded c8 permit 68 ^65000:3_0:55_0:47$ ip community-list expanded c8 permit 69 ^65000:4_0:56_0:7$ ip community-list expanded c8 permit 70 ^65000:3_0:56_0:48$ ip community-list expanded c8 permit 71 ^65000:4_0:57_0:7$ ip community-list expanded c8 permit 72 ^65000:3_0:57_0:49$ ip community-list expanded c8 permit 73 ^65000:4_0:58_0:7$ ip community-list expanded c8 permit 74 ^65000:3_0:58_0:50$ ip community-list expanded c8 permit 75 ^65000:4_0:59_0:7$ ip community-list expanded c8 permit 76 ^65000:3_0:59_0:51$ ip community-list expanded c8 permit 77 ^65000:4_0:60_0:7$ ip community-list expanded c8 permit 78 ^65000:3_0:60_0:52$ ip community-list expanded c8 permit 79 ^65000:4_0:61_0:7$ ip community-list expanded c8 permit 80 ^65000:3_0:61_0:53$ ip community-list expanded c8 permit 81 ^65000:4_0:62_0:7$ ip community-list expanded c8 permit 82 ^65000:3_0:62_0:54$ ip community-list expanded c8 permit 83 ^65000:3_0:63_0:55$ ip community-list expanded c8 permit 84 ^65000:4_0:64_0:8$ ip community-list expanded c8 permit 85 ^65000:3_0:64_0:56$ ip community-list expanded c8 permit 86 ^65000:4_0:65_0:8$ ip community-list expanded c8 permit 87 ^65000:3_0:65_0:57$ ip community-list expanded c8 permit 88 ^65000:4_0:66_0:8$ ip community-list expanded c8 permit 89 ^65000:3_0:66_0:58$ ip community-list expanded c8 permit 90 ^65000:4_0:67_0:8$ ip community-list expanded c8 permit 91 ^65000:3_0:67_0:59$ ip community-list expanded c8 permit 92 ^65000:4_0:68_0:8$ ip community-list expanded c8 permit 93 ^65000:3_0:68_0:60$ ip community-list expanded c8 permit 94 ^65000:4_0:69_0:8$ ip community-list expanded c8 permit 95 ^65000:3_0:69_0:61$ ip community-list expanded c8 permit 96 ^65000:4_0:70_0:8$ ip community-list expanded c8 permit 97 ^65000:3_0:70_0:62$ ip community-list expanded c8 permit 98 ^65000:4_0:71_0:8$ ip community-list expanded c8 permit 99 ^65000:3_0:71_0:63$ ip community-list expanded c8 permit 100 ^65000:4_0:72_0:9$ ip community-list expanded c8 permit 101 ^65000:3_0:72_0:64$ ip community-list expanded c8 permit 102 ^65000:4_0:73_0:9$ ip community-list expanded c8 permit 103 ^65000:3_0:73_0:65$ ip community-list expanded c8 permit 104 ^65000:4_0:74_0:9$ ip community-list expanded c8 permit 105 ^65000:3_0:74_0:66$ ip community-list expanded c8 permit 106 ^65000:4_0:75_0:9$ ip community-list expanded c8 permit 107 ^65000:3_0:75_0:67$ ip community-list expanded c8 permit 108 ^65000:4_0:76_0:9$ ip community-list expanded c8 permit 109 ^65000:3_0:76_0:68$ ip community-list expanded c8 permit 110 ^65000:4_0:77_0:9$ ip community-list expanded c8 permit 111 ^65000:3_0:77_0:69$ ip community-list expanded c8 permit 112 ^65000:4_0:78_0:9$ ip community-list expanded c8 permit 113 ^65000:3_0:78_0:70$ ip community-list expanded c8 permit 114 ^65000:4_0:79_0:9$ ip community-list expanded c8 permit 115 ^65000:3_0:79_0:71$ ip community-list expanded c8 permit 116 ^65000:4_0:80_0:9$ ip community-list expanded c8 permit 117 ^65000:4_0:80_0:10$ ip community-list expanded c8 permit 118 ^65000:3_0:80_0:72$ ip community-list expanded c8 permit 119 ^65000:4_0:81_0:10$ ip community-list expanded c8 permit 120 ^65000:3_0:81_0:73$ ip community-list expanded c8 permit 121 ^65000:4_0:82_0:10$ ip community-list expanded c8 permit 122 ^65000:3_0:82_0:74$ ip community-list expanded c8 permit 123 ^65000:4_0:83_0:10$ ip community-list expanded c8 permit 124 ^65000:3_0:83_0:75$ ip community-list expanded c8 permit 125 ^65000:4_0:84_0:10$ ip community-list expanded c8 permit 126 ^65000:3_0:84_0:76$ ip community-list expanded c8 permit 127 ^65000:4_0:85_0:10$ ip community-list expanded c8 permit 128 ^65000:3_0:85_0:77$ ip community-list expanded c8 permit 129 ^65000:4_0:86_0:10$ ip community-list expanded c8 permit 130 ^65000:3_0:86_0:78$ ip community-list expanded c8 permit 131 ^65000:4_0:87_0:10$ ip community-list expanded c8 permit 132 ^65000:3_0:87_0:79$ ip community-list expanded c8 permit 133 ^65000:4_0:88_0:10$ ip community-list expanded c8 permit 134 ^65000:4_0:88_0:11$ ip community-list expanded c8 permit 135 ^65000:3_0:88_0:80$ ip community-list expanded c8 permit 136 ^65000:4_0:89_0:10$ ip community-list expanded c8 permit 137 ^65000:4_0:89_0:11$ ip community-list expanded c8 permit 138 ^65000:3_0:89_0:81$ ip community-list expanded c8 permit 139 ^65000:4_0:90_0:11$ ip community-list expanded c8 permit 140 ^65000:3_0:90_0:82$ ip community-list expanded c8 permit 141 ^65000:4_0:91_0:11$ ip community-list expanded c8 permit 142 ^65000:3_0:91_0:83$ ip community-list expanded c8 permit 143 ^65000:4_0:92_0:11$ ip community-list expanded c8 permit 144 ^65000:3_0:92_0:84$ ip community-list expanded c8 permit 145 ^65000:4_0:93_0:11$ ip community-list expanded c8 permit 146 ^65000:3_0:93_0:85$ ip community-list expanded c8 permit 147 ^65000:4_0:94_0:11$ ip community-list expanded c8 permit 148 ^65000:3_0:94_0:86$ ip community-list expanded c8 permit 149 ^65000:4_0:95_0:11$ ip community-list expanded c8 permit 150 ^65000:3_0:95_0:87$ ip community-list expanded c8 permit 151 ^65000:4_0:96_0:11$ ip community-list expanded c8 permit 152 ^65000:4_0:96_0:12$ ip community-list expanded c8 permit 153 ^65000:3_0:96_0:88$ ip community-list expanded c8 permit 154 ^65000:4_0:97_0:11$ ip community-list expanded c8 permit 155 ^65000:4_0:97_0:12$ ip community-list expanded c8 permit 156 ^65000:3_0:97_0:89$ ip community-list expanded c8 permit 157 ^65000:4_0:98_0:11$ ip community-list expanded c8 permit 158 ^65000:4_0:98_0:12$ ip community-list expanded c8 permit 159 ^65000:3_0:98_0:90$ ip community-list expanded c8 permit 160 ^65000:4_0:99_0:12$ ip community-list expanded c8 permit 161 ^65000:3_0:99_0:91$ ip community-list expanded c8 permit 162 ^65000:4_0:100_0:12$ ip community-list expanded c8 permit 163 ^65000:3_0:100_0:92$ ip community-list expanded c8 permit 164 ^65000:4_0:101_0:12$ ip community-list expanded c8 permit 165 ^65000:3_0:101_0:93$ ip community-list expanded c8 permit 166 ^65000:4_0:102_0:12$ ip community-list expanded c8 permit 167 ^65000:3_0:102_0:94$ ip community-list expanded c8 permit 168 ^65000:4_0:103_0:12$ ip community-list expanded c8 permit 169 ^65000:3_0:103_0:95$ ip community-list expanded c8 permit 170 ^65000:4_0:104_0:12$ ip community-list expanded c8 permit 171 ^65000:4_0:104_0:13$ ip community-list expanded c8 permit 172 ^65000:3_0:104_0:96$ ip community-list expanded c8 permit 173 ^65000:4_0:105_0:12$ ip community-list expanded c8 permit 174 ^65000:4_0:105_0:13$ ip community-list expanded c8 permit 175 ^65000:3_0:105_0:97$ ip community-list expanded c8 permit 176 ^65000:4_0:106_0:12$ ip community-list expanded c8 permit 177 ^65000:4_0:106_0:13$ ip community-list expanded c8 permit 178 ^65000:3_0:106_0:98$ ip community-list expanded c8 permit 179 ^65000:4_0:107_0:12$ ip community-list expanded c8 permit 180 ^65000:4_0:107_0:13$ ip community-list expanded c8 permit 181 ^65000:3_0:107_0:99$ ip community-list expanded c8 permit 182 ^65000:4_0:108_0:13$ ip community-list expanded c8 permit 183 ^65000:3_0:108_0:100$ ip community-list expanded c8 permit 184 ^65000:4_0:109_0:13$ ip community-list expanded c8 permit 185 ^65000:3_0:109_0:101$ ip community-list expanded c8 permit 186 ^65000:4_0:110_0:13$ ip community-list expanded c8 permit 187 ^65000:3_0:110_0:102$ ip community-list expanded c8 permit 188 ^65000:4_0:111_0:13$ ip community-list expanded c8 permit 189 ^65000:3_0:111_0:103$ ip community-list expanded c8 permit 190 ^65000:4_0:112_0:13$ ip community-list expanded c8 permit 191 ^65000:4_0:112_0:14$ ip community-list expanded c8 permit 192 ^65000:3_0:112_0:104$ ip community-list expanded c8 permit 193 ^65000:4_0:113_0:13$ ip community-list expanded c8 permit 194 ^65000:4_0:113_0:14$ ip community-list expanded c8 permit 195 ^65000:3_0:113_0:105$ ip community-list expanded c8 permit 196 ^65000:4_0:114_0:13$ ip community-list expanded c8 permit 197 ^65000:4_0:114_0:14$ ip community-list expanded c8 permit 198 ^65000:3_0:114_0:106$ ip community-list expanded c8 permit 199 ^65000:4_0:115_0:13$ ip community-list expanded c8 permit 200 ^65000:4_0:115_0:14$ ip community-list expanded c8 permit 201 ^65000:3_0:115_0:107$ ip community-list expanded c8 permit 202 ^65000:4_0:116_0:13$ ip community-list expanded c8 permit 203 ^65000:4_0:116_0:14$ ip community-list expanded c8 permit 204 ^65000:3_0:116_0:108$ ip community-list expanded c8 permit 205 ^65000:4_0:117_0:14$ ip community-list expanded c8 permit 206 ^65000:3_0:117_0:109$ ip community-list expanded c8 permit 207 ^65000:4_0:118_0:14$ ip community-list expanded c8 permit 208 ^65000:3_0:118_0:110$ ip community-list expanded c8 permit 209 ^65000:4_0:119_0:14$ ip community-list expanded c8 permit 210 ^65000:3_0:119_0:111$ ip community-list expanded c8 permit 211 ^65000:4_0:120_0:14$ ip community-list expanded c8 permit 212 ^65000:4_0:120_0:15$ ip community-list expanded c8 permit 213 ^65000:3_0:120_0:112$ ip community-list expanded c8 permit 214 ^65000:4_0:121_0:14$ ip community-list expanded c8 permit 215 ^65000:4_0:121_0:15$ ip community-list expanded c8 permit 216 ^65000:3_0:121_0:113$ ip community-list expanded c8 permit 217 ^65000:4_0:122_0:14$ ip community-list expanded c8 permit 218 ^65000:4_0:122_0:15$ ip community-list expanded c8 permit 219 ^65000:3_0:122_0:114$ ip community-list expanded c8 permit 220 ^65000:4_0:123_0:14$ ip community-list expanded c8 permit 221 ^65000:4_0:123_0:15$ ip community-list expanded c8 permit 222 ^65000:3_0:123_0:115$ ip community-list expanded c8 permit 223 ^65000:4_0:124_0:14$ ip community-list expanded c8 permit 224 ^65000:4_0:124_0:15$ ip community-list expanded c8 permit 225 ^65000:3_0:124_0:116$ ip community-list expanded c8 permit 226 ^65000:4_0:125_0:14$ ip community-list expanded c8 permit 227 ^65000:4_0:125_0:15$ ip community-list expanded c8 permit 228 ^65000:3_0:125_0:117$ ip community-list expanded c8 permit 229 ^65000:4_0:126_0:15$ ip community-list expanded c8 permit 230 ^65000:3_0:126_0:118$ ip community-list expanded c8 permit 231 ^65000:4_0:127_0:15$ ip community-list expanded c8 permit 232 ^65000:3_0:127_0:119$ ip community-list expanded c8 permit 233 ^65000:4_0:128_0:15$ ip community-list expanded c8 permit 234 ^65000:4_0:128_0:16$ ip community-list expanded c8 permit 235 ^65000:3_0:128_0:120$ ip community-list expanded c8 permit 236 ^65000:4_0:129_0:15$ ip community-list expanded c8 permit 237 ^65000:4_0:129_0:16$ ip community-list expanded c8 permit 238 ^65000:3_0:129_0:121$ ip community-list expanded c8 permit 239 ^65000:4_0:130_0:15$ ip community-list expanded c8 permit 240 ^65000:4_0:130_0:16$ ip community-list expanded c8 permit 241 ^65000:3_0:130_0:122$ ip community-list expanded c8 permit 242 ^65000:4_0:131_0:15$ ip community-list expanded c8 permit 243 ^65000:4_0:131_0:16$ ip community-list expanded c8 permit 244 ^65000:3_0:131_0:123$ ip community-list expanded c8 permit 245 ^65000:4_0:132_0:15$ ip community-list expanded c8 permit 246 ^65000:4_0:132_0:16$ ip community-list expanded c8 permit 247 ^65000:3_0:132_0:124$ ip community-list expanded c8 permit 248 ^65000:4_0:133_0:15$ ip community-list expanded c8 permit 249 ^65000:4_0:133_0:16$ ip community-list expanded c8 permit 250 ^65000:3_0:133_0:125$ ip community-list expanded c8 permit 251 ^65000:4_0:134_0:15$ ip community-list expanded c8 permit 252 ^65000:4_0:134_0:16$ ip community-list expanded c8 permit 253 ^65000:3_0:134_0:126$ ip community-list expanded c8 permit 254 ^65000:4_0:135_0:16$ ip community-list expanded c8 permit 255 ^65000:3_0:135_0:127$ ip community-list expanded c8 permit 256 ^65000:4_0:136_0:16$ ip community-list expanded c8 permit 257 ^65000:4_0:136_0:17$ ip community-list expanded c8 permit 258 ^65000:3_0:136_0:128$ ip community-list expanded c8 permit 259 ^65000:4_0:137_0:16$ ip community-list expanded c8 permit 260 ^65000:4_0:137_0:17$ ip community-list expanded c8 permit 261 ^65000:3_0:137_0:129$ ip community-list expanded c8 permit 262 ^65000:4_0:138_0:16$ ip community-list expanded c8 permit 263 ^65000:4_0:138_0:17$ ip community-list expanded c8 permit 264 ^65000:3_0:138_0:130$ ip community-list expanded c8 permit 265 ^65000:4_0:139_0:16$ ip community-list expanded c8 permit 266 ^65000:4_0:139_0:17$ ip community-list expanded c8 permit 267 ^65000:3_0:139_0:131$ ip community-list expanded c8 permit 268 ^65000:4_0:140_0:16$ ip community-list expanded c8 permit 269 ^65000:4_0:140_0:17$ ip community-list expanded c8 permit 270 ^65000:3_0:140_0:132$ ip community-list expanded c8 permit 271 ^65000:4_0:141_0:16$ ip community-list expanded c8 permit 272 ^65000:4_0:141_0:17$ ip community-list expanded c8 permit 273 ^65000:3_0:141_0:133$ ip community-list expanded c8 permit 274 ^65000:4_0:142_0:16$ ip community-list expanded c8 permit 275 ^65000:4_0:142_0:17$ ip community-list expanded c8 permit 276 ^65000:3_0:142_0:134$ ip community-list expanded c8 permit 277 ^65000:4_0:143_0:16$ ip community-list expanded c8 permit 278 ^65000:4_0:143_0:17$ ip community-list expanded c8 permit 279 ^65000:3_0:143_0:135$ ip community-list expanded c8 permit 280 ^65000:4_0:144_0:17$ ip community-list expanded c8 permit 281 ^65000:4_0:144_0:18$ ip community-list expanded c8 permit 282 ^65000:3_0:144_0:136$ ip community-list expanded c8 permit 283 ^65000:4_0:145_0:17$ ip community-list expanded c8 permit 284 ^65000:4_0:145_0:18$ ip community-list expanded c8 permit 285 ^65000:3_0:145_0:137$ ip community-list expanded c8 permit 286 ^65000:4_0:146_0:17$ ip community-list expanded c8 permit 287 ^65000:4_0:146_0:18$ ip community-list expanded c8 permit 288 ^65000:3_0:146_0:138$ ip community-list expanded c8 permit 289 ^65000:4_0:147_0:17$ ip community-list expanded c8 permit 290 ^65000:4_0:147_0:18$ ip community-list expanded c8 permit 291 ^65000:3_0:147_0:139$ ip community-list expanded c8 permit 292 ^65000:4_0:148_0:17$ ip community-list expanded c8 permit 293 ^65000:4_0:148_0:18$ ip community-list expanded c8 permit 294 ^65000:3_0:148_0:140$ ip community-list expanded c8 permit 295 ^65000:4_0:149_0:17$ ip community-list expanded c8 permit 296 ^65000:4_0:149_0:18$ ip community-list expanded c8 permit 297 ^65000:3_0:149_0:141$ ip community-list expanded c8 permit 298 ^65000:4_0:150_0:17$ ip community-list expanded c8 permit 299 ^65000:4_0:150_0:18$ ip community-list expanded c8 permit 300 ^65000:3_0:150_0:142$ ip community-list expanded c8 permit 301 ^65000:4_0:151_0:17$ ip community-list expanded c8 permit 302 ^65000:4_0:151_0:18$ ip community-list expanded c8 permit 303 ^65000:3_0:151_0:143$ ip community-list expanded c8 permit 304 ^65000:4_0:152_0:17$ ip community-list expanded c8 permit 305 ^65000:4_0:152_0:18$ ip community-list expanded c8 permit 306 ^65000:4_0:152_0:19$ ip community-list expanded c8 permit 307 ^65000:3_0:152_0:144$ ip community-list expanded c8 permit 308 ^65000:4_0:153_0:18$ ip community-list expanded c8 permit 309 ^65000:4_0:153_0:19$ ip community-list expanded c8 permit 310 ^65000:3_0:153_0:145$ ip community-list expanded c8 permit 311 ^65000:4_0:154_0:18$ ip community-list expanded c8 permit 312 ^65000:4_0:154_0:19$ ip community-list expanded c8 permit 313 ^65000:3_0:154_0:146$ ip community-list expanded c8 permit 314 ^65000:4_0:155_0:18$ ip community-list expanded c8 permit 315 ^65000:4_0:155_0:19$ ip community-list expanded c8 permit 316 ^65000:3_0:155_0:147$ ip community-list expanded c8 permit 317 ^65000:4_0:156_0:18$ ip community-list expanded c8 permit 318 ^65000:4_0:156_0:19$ ip community-list expanded c8 permit 319 ^65000:3_0:156_0:148$ ip community-list expanded c8 permit 320 ^65000:4_0:157_0:18$ ip community-list expanded c8 permit 321 ^65000:4_0:157_0:19$ ip community-list expanded c8 permit 322 ^65000:3_0:157_0:149$ ip community-list expanded c8 permit 323 ^65000:4_0:158_0:18$ ip community-list expanded c8 permit 324 ^65000:4_0:158_0:19$ ip community-list expanded c8 permit 325 ^65000:3_0:158_0:150$ ip community-list expanded c8 permit 326 ^65000:4_0:159_0:18$ ip community-list expanded c8 permit 327 ^65000:4_0:159_0:19$ ip community-list expanded c8 permit 328 ^65000:3_0:159_0:151$ ip community-list expanded c8 permit 329 ^65000:4_0:160_0:18$ ip community-list expanded c8 permit 330 ^65000:4_0:160_0:19$ ip community-list expanded c8 permit 331 ^65000:4_0:160_0:20$ ip community-list expanded c8 permit 332 ^65000:3_0:160_0:152$ ip community-list expanded c8 permit 333 ^65000:4_0:161_0:18$ ip community-list expanded c8 permit 334 ^65000:4_0:161_0:19$ ip community-list expanded c8 permit 335 ^65000:4_0:161_0:20$ ip community-list expanded c8 permit 336 ^65000:3_0:161_0:153$ ip community-list expanded c8 permit 337 ^65000:4_0:162_0:19$ ip community-list expanded c8 permit 338 ^65000:4_0:162_0:20$ ip community-list expanded c8 permit 339 ^65000:3_0:162_0:154$ ip community-list expanded c8 permit 340 ^65000:4_0:163_0:19$ ip community-list expanded c8 permit 341 ^65000:4_0:163_0:20$ ip community-list expanded c8 permit 342 ^65000:3_0:163_0:155$ ip community-list expanded c8 permit 343 ^65000:4_0:164_0:19$ ip community-list expanded c8 permit 344 ^65000:4_0:164_0:20$ ip community-list expanded c8 permit 345 ^65000:3_0:164_0:156$ ip community-list expanded c8 permit 346 ^65000:4_0:165_0:19$ ip community-list expanded c8 permit 347 ^65000:4_0:165_0:20$ ip community-list expanded c8 permit 348 ^65000:3_0:165_0:157$ ip community-list expanded c8 permit 349 ^65000:4_0:166_0:19$ ip community-list expanded c8 permit 350 ^65000:4_0:166_0:20$ ip community-list expanded c8 permit 351 ^65000:3_0:166_0:158$ ip community-list expanded c8 permit 352 ^65000:4_0:167_0:19$ ip community-list expanded c8 permit 353 ^65000:4_0:167_0:20$ ip community-list expanded c8 permit 354 ^65000:3_0:167_0:159$ ip community-list expanded c8 permit 355 ^65000:4_0:168_0:19$ ip community-list expanded c8 permit 356 ^65000:4_0:168_0:20$ ip community-list expanded c8 permit 357 ^65000:4_0:168_0:21$ ip community-list expanded c8 permit 358 ^65000:3_0:168_0:160$ ip community-list expanded c8 permit 359 ^65000:4_0:169_0:19$ ip community-list expanded c8 permit 360 ^65000:4_0:169_0:20$ ip community-list expanded c8 permit 361 ^65000:4_0:169_0:21$ ip community-list expanded c8 permit 362 ^65000:3_0:169_0:161$ ip community-list expanded c8 permit 363 ^65000:4_0:170_0:19$ ip community-list expanded c8 permit 364 ^65000:4_0:170_0:20$ ip community-list expanded c8 permit 365 ^65000:4_0:170_0:21$ ip community-list expanded c8 permit 366 ^65000:3_0:170_0:162$ ip community-list expanded c8 permit 367 ^65000:4_0:171_0:20$ ip community-list expanded c8 permit 368 ^65000:4_0:171_0:21$ ip community-list expanded c8 permit 369 ^65000:3_0:171_0:163$ ip community-list expanded c8 permit 370 ^65000:4_0:172_0:20$ ip community-list expanded c8 permit 371 ^65000:4_0:172_0:21$ ip community-list expanded c8 permit 372 ^65000:3_0:172_0:164$ ip community-list expanded c8 permit 373 ^65000:4_0:173_0:20$ ip community-list expanded c8 permit 374 ^65000:4_0:173_0:21$ ip community-list expanded c8 permit 375 ^65000:3_0:173_0:165$ ip community-list expanded c8 permit 376 ^65000:4_0:174_0:20$ ip community-list expanded c8 permit 377 ^65000:4_0:174_0:21$ ip community-list expanded c8 permit 378 ^65000:3_0:174_0:166$ ip community-list expanded c8 permit 379 ^65000:4_0:175_0:20$ ip community-list expanded c8 permit 380 ^65000:4_0:175_0:21$ ip community-list expanded c8 permit 381 ^65000:3_0:175_0:167$ ip community-list expanded c8 permit 382 ^65000:4_0:176_0:20$ ip community-list expanded c8 permit 383 ^65000:4_0:176_0:21$ ip community-list expanded c8 permit 384 ^65000:4_0:176_0:22$ ip community-list expanded c8 permit 385 ^65000:3_0:176_0:168$ ip community-list expanded c8 permit 386 ^65000:4_0:177_0:20$ ip community-list expanded c8 permit 387 ^65000:4_0:177_0:21$ ip community-list expanded c8 permit 388 ^65000:4_0:177_0:22$ ip community-list expanded c8 permit 389 ^65000:3_0:177_0:169$ ip community-list expanded c8 permit 390 ^65000:4_0:178_0:20$ ip community-list expanded c8 permit 391 ^65000:4_0:178_0:21$ ip community-list expanded c8 permit 392 ^65000:4_0:178_0:22$ ip community-list expanded c8 permit 393 ^65000:3_0:178_0:170$ ip community-list expanded c8 permit 394 ^65000:4_0:179_0:20$ ip community-list expanded c8 permit 395 ^65000:4_0:179_0:21$ ip community-list expanded c8 permit 396 ^65000:4_0:179_0:22$ ip community-list expanded c8 permit 397 ^65000:3_0:179_0:171$ ip community-list expanded c8 permit 398 ^65000:4_0:180_0:21$ ip community-list expanded c8 permit 399 ^65000:4_0:180_0:22$ ip community-list expanded c8 permit 400 ^65000:3_0:180_0:172$ ip community-list expanded c8 permit 401 ^65000:4_0:181_0:21$ ip community-list expanded c8 permit 402 ^65000:4_0:181_0:22$ ip community-list expanded c8 permit 403 ^65000:3_0:181_0:173$ ip community-list expanded c8 permit 404 ^65000:4_0:182_0:21$ ip community-list expanded c8 permit 405 ^65000:4_0:182_0:22$ ip community-list expanded c8 permit 406 ^65000:3_0:182_0:174$ ip community-list expanded c8 permit 407 ^65000:4_0:183_0:21$ ip community-list expanded c8 permit 408 ^65000:4_0:183_0:22$ ip community-list expanded c8 permit 409 ^65000:3_0:183_0:175$ ip community-list expanded c8 permit 410 ^65000:4_0:184_0:21$ ip community-list expanded c8 permit 411 ^65000:4_0:184_0:22$ ip community-list expanded c8 permit 412 ^65000:4_0:184_0:23$ ip community-list expanded c8 permit 413 ^65000:3_0:184_0:176$ ip community-list expanded c8 permit 414 ^65000:4_0:185_0:21$ ip community-list expanded c8 permit 415 ^65000:4_0:185_0:22$ ip community-list expanded c8 permit 416 ^65000:4_0:185_0:23$ ip community-list expanded c8 permit 417 ^65000:3_0:185_0:177$ ip community-list expanded c8 permit 418 ^65000:4_0:186_0:21$ ip community-list expanded c8 permit 419 ^65000:4_0:186_0:22$ ip community-list expanded c8 permit 420 ^65000:4_0:186_0:23$ ip community-list expanded c8 permit 421 ^65000:3_0:186_0:178$ ip community-list expanded c8 permit 422 ^65000:4_0:187_0:21$ ip community-list expanded c8 permit 423 ^65000:4_0:187_0:22$ ip community-list expanded c8 permit 424 ^65000:4_0:187_0:23$ ip community-list expanded c8 permit 425 ^65000:3_0:187_0:179$ ip community-list expanded c8 permit 426 ^65000:4_0:188_0:21$ ip community-list expanded c8 permit 427 ^65000:4_0:188_0:22$ ip community-list expanded c8 permit 428 ^65000:4_0:188_0:23$ ip community-list expanded c8 permit 429 ^65000:3_0:188_0:180$ ip community-list expanded c8 permit 430 ^65000:4_0:189_0:22$ ip community-list expanded c8 permit 431 ^65000:4_0:189_0:23$ ip community-list expanded c8 permit 432 ^65000:3_0:189_0:181$ ip community-list expanded c8 permit 433 ^65000:4_0:190_0:22$ ip community-list expanded c8 permit 434 ^65000:4_0:190_0:23$ ip community-list expanded c8 permit 435 ^65000:3_0:190_0:182$ ip community-list expanded c8 permit 436 ^65000:4_0:191_0:22$ ip community-list expanded c8 permit 437 ^65000:4_0:191_0:23$ ip community-list expanded c8 permit 438 ^65000:3_0:191_0:183$ ip community-list expanded c8 permit 439 ^65000:4_0:192_0:22$ ip community-list expanded c8 permit 440 ^65000:4_0:192_0:23$ ip community-list expanded c8 permit 441 ^65000:4_0:192_0:24$ ip community-list expanded c8 permit 442 ^65000:3_0:192_0:184$ ip community-list expanded c8 permit 443 ^65000:4_0:193_0:22$ ip community-list expanded c8 permit 444 ^65000:4_0:193_0:23$ ip community-list expanded c8 permit 445 ^65000:4_0:193_0:24$ ip community-list expanded c8 permit 446 ^65000:3_0:193_0:185$ ip community-list expanded c8 permit 447 ^65000:4_0:194_0:22$ ip community-list expanded c8 permit 448 ^65000:4_0:194_0:23$ ip community-list expanded c8 permit 449 ^65000:4_0:194_0:24$ ip community-list expanded c8 permit 450 ^65000:3_0:194_0:186$ ip community-list expanded c8 permit 451 ^65000:4_0:195_0:22$ ip community-list expanded c8 permit 452 ^65000:4_0:195_0:23$ ip community-list expanded c8 permit 453 ^65000:4_0:195_0:24$ ip community-list expanded c8 permit 454 ^65000:3_0:195_0:187$ ip community-list expanded c8 permit 455 ^65000:4_0:196_0:22$ ip community-list expanded c8 permit 456 ^65000:4_0:196_0:23$ ip community-list expanded c8 permit 457 ^65000:4_0:196_0:24$ ip community-list expanded c8 permit 458 ^65000:3_0:196_0:188$ ip community-list expanded c8 permit 459 ^65000:4_0:197_0:22$ ip community-list expanded c8 permit 460 ^65000:4_0:197_0:23$ ip community-list expanded c8 permit 461 ^65000:4_0:197_0:24$ ip community-list expanded c8 permit 462 ^65000:3_0:197_0:189$ ip community-list expanded c8 permit 463 ^65000:4_0:198_0:23$ ip community-list expanded c8 permit 464 ^65000:4_0:198_0:24$ ip community-list expanded c8 permit 465 ^65000:3_0:198_0:190$ ip community-list expanded c8 permit 466 ^65000:4_0:199_0:23$ ip community-list expanded c8 permit 467 ^65000:4_0:199_0:24$ ip community-list expanded c8 permit 468 ^65000:3_0:199_0:191$ ip community-list expanded c8 permit 469 ^65000:4_0:200_0:23$ ip community-list expanded c8 permit 470 ^65000:4_0:200_0:24$ ip community-list expanded c8 permit 471 ^65000:4_0:200_0:25$ ip community-list expanded c8 permit 472 ^65000:3_0:200_0:192$ ip community-list expanded c8 permit 473 ^65000:4_0:201_0:23$ ip community-list expanded c8 permit 474 ^65000:4_0:201_0:24$ ip community-list expanded c8 permit 475 ^65000:4_0:201_0:25$ ip community-list expanded c8 permit 476 ^65000:3_0:201_0:193$ ip community-list expanded c8 permit 477 ^65000:4_0:202_0:23$ ip community-list expanded c8 permit 478 ^65000:4_0:202_0:24$ ip community-list expanded c8 permit 479 ^65000:4_0:202_0:25$ ip community-list expanded c8 permit 480 ^65000:3_0:202_0:194$ ip community-list expanded c8 permit 481 ^65000:4_0:203_0:23$ ip community-list expanded c8 permit 482 ^65000:4_0:203_0:24$ ip community-list expanded c8 permit 483 ^65000:4_0:203_0:25$ ip community-list expanded c8 permit 484 ^65000:3_0:203_0:195$ ip community-list expanded c8 permit 485 ^65000:4_0:204_0:23$ ip community-list expanded c8 permit 486 ^65000:4_0:204_0:24$ ip community-list expanded c8 permit 487 ^65000:4_0:204_0:25$ ip community-list expanded c8 permit 488 ^65000:3_0:204_0:196$ ip community-list expanded c8 permit 489 ^65000:4_0:205_0:23$ ip community-list expanded c8 permit 490 ^65000:4_0:205_0:24$ ip community-list expanded c8 permit 491 ^65000:4_0:205_0:25$ ip community-list expanded c8 permit 492 ^65000:3_0:205_0:197$ ip community-list expanded c8 permit 493 ^65000:4_0:206_0:23$ ip community-list expanded c8 permit 494 ^65000:4_0:206_0:24$ ip community-list expanded c8 permit 495 ^65000:4_0:206_0:25$ ip community-list expanded c8 permit 496 ^65000:3_0:206_0:198$ ip community-list expanded c8 permit 497 ^65000:4_0:207_0:24$ ip community-list expanded c8 permit 498 ^65000:4_0:207_0:25$ ip community-list expanded c8 permit 499 ^65000:3_0:207_0:199$ ip community-list expanded c8 permit 500 ^65000:4_0:208_0:24$ ip community-list expanded c8 permit 501 ^65000:4_0:208_0:25$ ip community-list expanded c8 permit 502 ^65000:4_0:208_0:26$ ip community-list expanded c8 permit 503 ^65000:3_0:208_0:200$ ip community-list expanded c8 permit 504 ^65000:4_0:209_0:24$ ip community-list expanded c8 permit 505 ^65000:4_0:209_0:25$ ip community-list expanded c8 permit 506 ^65000:4_0:209_0:26$ ip community-list expanded c8 permit 507 ^65000:3_0:209_0:201$ ip community-list expanded c8 permit 508 ^65000:4_0:210_0:24$ ip community-list expanded c8 permit 509 ^65000:4_0:210_0:25$ ip community-list expanded c8 permit 510 ^65000:4_0:210_0:26$ ip community-list expanded c8 permit 511 ^65000:3_0:210_0:202$ ip community-list expanded c8 permit 512 ^65000:4_0:211_0:24$ ip community-list expanded c8 permit 513 ^65000:4_0:211_0:25$ ip community-list expanded c8 permit 514 ^65000:4_0:211_0:26$ ip community-list expanded c8 permit 515 ^65000:3_0:211_0:203$ ip community-list expanded c8 permit 516 ^65000:4_0:212_0:24$ ip community-list expanded c8 permit 517 ^65000:4_0:212_0:25$ ip community-list expanded c8 permit 518 ^65000:4_0:212_0:26$ ip community-list expanded c8 permit 519 ^65000:3_0:212_0:204$ ip community-list expanded c8 permit 520 ^65000:4_0:213_0:24$ ip community-list expanded c8 permit 521 ^65000:4_0:213_0:25$ ip community-list expanded c8 permit 522 ^65000:4_0:213_0:26$ ip community-list expanded c8 permit 523 ^65000:3_0:213_0:205$ ip community-list expanded c8 permit 524 ^65000:4_0:214_0:24$ ip community-list expanded c8 permit 525 ^65000:4_0:214_0:25$ ip community-list expanded c8 permit 526 ^65000:4_0:214_0:26$ ip community-list expanded c8 permit 527 ^65000:3_0:214_0:206$ ip community-list expanded c8 permit 528 ^65000:4_0:215_0:24$ ip community-list expanded c8 permit 529 ^65000:4_0:215_0:25$ ip community-list expanded c8 permit 530 ^65000:4_0:215_0:26$ ip community-list expanded c8 permit 531 ^65000:3_0:215_0:207$ ip community-list expanded c8 permit 532 ^65000:4_0:216_0:25$ ip community-list expanded c8 permit 533 ^65000:4_0:216_0:26$ ip community-list expanded c8 permit 534 ^65000:4_0:216_0:27$ ip community-list expanded c8 permit 535 ^65000:3_0:216_0:208$ ip community-list expanded c8 permit 536 ^65000:4_0:217_0:25$ ip community-list expanded c8 permit 537 ^65000:4_0:217_0:26$ ip community-list expanded c8 permit 538 ^65000:4_0:217_0:27$ ip community-list expanded c8 permit 539 ^65000:3_0:217_0:209$ ip community-list expanded c8 permit 540 ^65000:4_0:218_0:25$ ip community-list expanded c8 permit 541 ^65000:4_0:218_0:26$ ip community-list expanded c8 permit 542 ^65000:4_0:218_0:27$ ip community-list expanded c8 permit 543 ^65000:3_0:218_0:210$ ip community-list expanded c8 permit 544 ^65000:4_0:219_0:25$ ip community-list expanded c8 permit 545 ^65000:4_0:219_0:26$ ip community-list expanded c8 permit 546 ^65000:4_0:219_0:27$ ip community-list expanded c8 permit 547 ^65000:3_0:219_0:211$ ip community-list expanded c8 permit 548 ^65000:4_0:220_0:25$ ip community-list expanded c8 permit 549 ^65000:4_0:220_0:26$ ip community-list expanded c8 permit 550 ^65000:4_0:220_0:27$ ip community-list expanded c8 permit 551 ^65000:3_0:220_0:212$ ip community-list expanded c8 permit 552 ^65000:4_0:221_0:25$ ip community-list expanded c8 permit 553 ^65000:4_0:221_0:26$ ip community-list expanded c8 permit 554 ^65000:4_0:221_0:27$ ip community-list expanded c8 permit 555 ^65000:3_0:221_0:213$ ip community-list expanded c8 permit 556 ^65000:4_0:222_0:25$ ip community-list expanded c8 permit 557 ^65000:4_0:222_0:26$ ip community-list expanded c8 permit 558 ^65000:4_0:222_0:27$ ip community-list expanded c8 permit 559 ^65000:3_0:222_0:214$ ip community-list expanded c8 permit 560 ^65000:4_0:223_0:25$ ip community-list expanded c8 permit 561 ^65000:4_0:223_0:26$ ip community-list expanded c8 permit 562 ^65000:4_0:223_0:27$ ip community-list expanded c8 permit 563 ^65000:3_0:223_0:215$ ip community-list expanded c8 permit 564 ^65000:4_0:224_0:25$ ip community-list expanded c8 permit 565 ^65000:4_0:224_0:26$ ip community-list expanded c8 permit 566 ^65000:4_0:224_0:27$ ip community-list expanded c8 permit 567 ^65000:4_0:224_0:28$ ip community-list expanded c8 permit 568 ^65000:3_0:224_0:216$ ip community-list expanded c8 permit 569 ^65000:4_0:225_0:26$ ip community-list expanded c8 permit 570 ^65000:4_0:225_0:27$ ip community-list expanded c8 permit 571 ^65000:4_0:225_0:28$ ip community-list expanded c8 permit 572 ^65000:3_0:225_0:217$ ip community-list expanded c8 permit 573 ^65000:4_0:226_0:26$ ip community-list expanded c8 permit 574 ^65000:4_0:226_0:27$ ip community-list expanded c8 permit 575 ^65000:4_0:226_0:28$ ip community-list expanded c8 permit 576 ^65000:3_0:226_0:218$ ip community-list expanded c8 permit 577 ^65000:4_0:227_0:26$ ip community-list expanded c8 permit 578 ^65000:4_0:227_0:27$ ip community-list expanded c8 permit 579 ^65000:4_0:227_0:28$ ip community-list expanded c8 permit 580 ^65000:3_0:227_0:219$ ip community-list expanded c8 permit 581 ^65000:4_0:228_0:26$ ip community-list expanded c8 permit 582 ^65000:4_0:228_0:27$ ip community-list expanded c8 permit 583 ^65000:4_0:228_0:28$ ip community-list expanded c8 permit 584 ^65000:3_0:228_0:220$ ip community-list expanded c8 permit 585 ^65000:4_0:229_0:26$ ip community-list expanded c8 permit 586 ^65000:4_0:229_0:27$ ip community-list expanded c8 permit 587 ^65000:4_0:229_0:28$ ip community-list expanded c8 permit 588 ^65000:3_0:229_0:221$ ip community-list expanded c8 permit 589 ^65000:4_0:230_0:26$ ip community-list expanded c8 permit 590 ^65000:4_0:230_0:27$ ip community-list expanded c8 permit 591 ^65000:4_0:230_0:28$ ip community-list expanded c8 permit 592 ^65000:3_0:230_0:222$ ip community-list expanded c8 permit 593 ^65000:4_0:231_0:26$ ip community-list expanded c8 permit 594 ^65000:4_0:231_0:27$ ip community-list expanded c8 permit 595 ^65000:4_0:231_0:28$ ip community-list expanded c8 permit 596 ^65000:3_0:231_0:223$ ip community-list expanded c8 permit 597 ^65000:4_0:232_0:26$ ip community-list expanded c8 permit 598 ^65000:4_0:232_0:27$ ip community-list expanded c8 permit 599 ^65000:4_0:232_0:28$ ip community-list expanded c8 permit 600 ^65000:4_0:232_0:29$ ip community-list expanded c8 permit 601 ^65000:3_0:232_0:224$ ip community-list expanded c8 permit 602 ^65000:4_0:233_0:26$ ip community-list expanded c8 permit 603 ^65000:4_0:233_0:27$ ip community-list expanded c8 permit 604 ^65000:4_0:233_0:28$ ip community-list expanded c8 permit 605 ^65000:4_0:233_0:29$ ip community-list expanded c8 permit 606 ^65000:3_0:233_0:225$ ip community-list expanded c8 permit 607 ^65000:4_0:234_0:27$ ip community-list expanded c8 permit 608 ^65000:4_0:234_0:28$ ip community-list expanded c8 permit 609 ^65000:4_0:234_0:29$ ip community-list expanded c8 permit 610 ^65000:3_0:234_0:226$ ip community-list expanded c8 permit 611 ^65000:4_0:235_0:27$ ip community-list expanded c8 permit 612 ^65000:4_0:235_0:28$ ip community-list expanded c8 permit 613 ^65000:4_0:235_0:29$ ip community-list expanded c8 permit 614 ^65000:3_0:235_0:227$ ip community-list expanded c8 permit 615 ^65000:4_0:236_0:27$ ip community-list expanded c8 permit 616 ^65000:4_0:236_0:28$ ip community-list expanded c8 permit 617 ^65000:4_0:236_0:29$ ip community-list expanded c8 permit 618 ^65000:3_0:236_0:228$ ip community-list expanded c8 permit 619 ^65000:4_0:237_0:27$ ip community-list expanded c8 permit 620 ^65000:4_0:237_0:28$ ip community-list expanded c8 permit 621 ^65000:4_0:237_0:29$ ip community-list expanded c8 permit 622 ^65000:3_0:237_0:229$ ip community-list expanded c8 permit 623 ^65000:4_0:238_0:27$ ip community-list expanded c8 permit 624 ^65000:4_0:238_0:28$ ip community-list expanded c8 permit 625 ^65000:4_0:238_0:29$ ip community-list expanded c8 permit 626 ^65000:3_0:238_0:230$ ip community-list expanded c8 permit 627 ^65000:4_0:239_0:27$ ip community-list expanded c8 permit 628 ^65000:4_0:239_0:28$ ip community-list expanded c8 permit 629 ^65000:4_0:239_0:29$ ip community-list expanded c8 permit 630 ^65000:3_0:239_0:231$ ip community-list expanded c8 permit 631 ^65000:4_0:240_0:27$ ip community-list expanded c8 permit 632 ^65000:4_0:240_0:28$ ip community-list expanded c8 permit 633 ^65000:4_0:240_0:29$ ip community-list expanded c8 permit 634 ^65000:4_0:240_0:30$ ip community-list expanded c8 permit 635 ^65000:3_0:240_0:232$ ip community-list expanded c8 permit 636 ^65000:4_0:241_0:27$ ip community-list expanded c8 permit 637 ^65000:4_0:241_0:28$ ip community-list expanded c8 permit 638 ^65000:4_0:241_0:29$ ip community-list expanded c8 permit 639 ^65000:4_0:241_0:30$ ip community-list expanded c8 permit 640 ^65000:3_0:241_0:233$ ip community-list expanded c8 permit 641 ^65000:4_0:242_0:27$ ip community-list expanded c8 permit 642 ^65000:4_0:242_0:28$ ip community-list expanded c8 permit 643 ^65000:4_0:242_0:29$ ip community-list expanded c8 permit 644 ^65000:4_0:242_0:30$ ip community-list expanded c8 permit 645 ^65000:3_0:242_0:234$ ip community-list expanded c8 permit 646 ^65000:4_0:243_0:28$ ip community-list expanded c8 permit 647 ^65000:4_0:243_0:29$ ip community-list expanded c8 permit 648 ^65000:4_0:243_0:30$ ip community-list expanded c8 permit 649 ^65000:3_0:243_0:235$ ip community-list expanded c8 permit 650 ^65000:4_0:244_0:28$ ip community-list expanded c8 permit 651 ^65000:4_0:244_0:29$ ip community-list expanded c8 permit 652 ^65000:4_0:244_0:30$ ip community-list expanded c8 permit 653 ^65000:3_0:244_0:236$ ip community-list expanded c8 permit 654 ^65000:4_0:245_0:28$ ip community-list expanded c8 permit 655 ^65000:4_0:245_0:29$ ip community-list expanded c8 permit 656 ^65000:4_0:245_0:30$ ip community-list expanded c8 permit 657 ^65000:3_0:245_0:237$ ip community-list expanded c8 permit 658 ^65000:4_0:246_0:28$ ip community-list expanded c8 permit 659 ^65000:4_0:246_0:29$ ip community-list expanded c8 permit 660 ^65000:4_0:246_0:30$ ip community-list expanded c8 permit 661 ^65000:3_0:246_0:238$ ip community-list expanded c8 permit 662 ^65000:4_0:247_0:28$ ip community-list expanded c8 permit 663 ^65000:4_0:247_0:29$ ip community-list expanded c8 permit 664 ^65000:4_0:247_0:30$ ip community-list expanded c8 permit 665 ^65000:3_0:247_0:239$ ip community-list expanded c8 permit 666 ^65000:4_0:248_0:28$ ip community-list expanded c8 permit 667 ^65000:4_0:248_0:29$ ip community-list expanded c8 permit 668 ^65000:4_0:248_0:30$ ip community-list expanded c8 permit 669 ^65000:4_0:248_0:31$ ip community-list expanded c8 permit 670 ^65000:3_0:248_0:240$ ip community-list expanded c8 permit 671 ^65000:4_0:249_0:28$ ip community-list expanded c8 permit 672 ^65000:4_0:249_0:29$ ip community-list expanded c8 permit 673 ^65000:4_0:249_0:30$ ip community-list expanded c8 permit 674 ^65000:4_0:249_0:31$ ip community-list expanded c8 permit 675 ^65000:3_0:249_0:241$ ip community-list expanded c8 permit 676 ^65000:4_0:250_0:28$ ip community-list expanded c8 permit 677 ^65000:4_0:250_0:29$ ip community-list expanded c8 permit 678 ^65000:4_0:250_0:30$ ip community-list expanded c8 permit 679 ^65000:4_0:250_0:31$ ip community-list expanded c8 permit 680 ^65000:3_0:250_0:242$ ip community-list expanded c8 permit 681 ^65000:4_0:251_0:28$ ip community-list expanded c8 permit 682 ^65000:4_0:251_0:29$ ip community-list expanded c8 permit 683 ^65000:4_0:251_0:30$ ip community-list expanded c8 permit 684 ^65000:4_0:251_0:31$ ip community-list expanded c8 permit 685 ^65000:3_0:251_0:243$ ip community-list expanded c8 permit 686 ^65000:4_0:252_0:29$ ip community-list expanded c8 permit 687 ^65000:4_0:252_0:30$ ip community-list expanded c8 permit 688 ^65000:4_0:252_0:31$ ip community-list expanded c8 permit 689 ^65000:3_0:252_0:244$ ip community-list expanded c8 permit 690 ^65000:4_0:253_0:29$ ip community-list expanded c8 permit 691 ^65000:4_0:253_0:30$ ip community-list expanded c8 permit 692 ^65000:4_0:253_0:31$ ip community-list expanded c8 permit 693 ^65000:3_0:253_0:245$ ip community-list expanded c8 permit 694 ^65000:4_0:254_0:29$ ip community-list expanded c8 permit 695 ^65000:4_0:254_0:30$ ip community-list expanded c8 permit 696 ^65000:4_0:254_0:31$ ip community-list expanded c8 permit 697 ^65000:3_0:254_0:246$ ip community-list expanded c8 permit 698 ^65000:4_0:255_0:29$ ip community-list expanded c8 permit 699 ^65000:4_0:255_0:30$ ip community-list expanded c8 permit 700 ^65000:4_0:255_0:31$ ip community-list expanded c8 permit 701 ^65000:3_0:255_0:247$ ip community-list expanded c8 permit 702 ^65000:4_0:256_0:29$ ip community-list expanded c8 permit 703 ^65000:4_0:256_0:30$ ip community-list expanded c8 permit 704 ^65000:4_0:256_0:31$ ip community-list expanded c8 permit 705 ^65000:4_0:256_0:32$ ip community-list expanded c8 permit 706 ^65000:3_0:256_0:248$ route-map calculator permit 3396 match community 1_1_7 2_1_8 2_2_4 1_2_6 1_3_5 set community 0:8 route-map calculator permit 3397 match community 1_4_4 c4_8_1 c3_9_1 c3_10_2 c3_11_3 set community 0:8 route-map calculator permit 3398 match community c3_12_4 c3_13_5 c3_14_6 c3_15_7 c4_16_2 set community 0:8 route-map calculator permit 3399 match community c3_16_8 c4_17_2 c3_17_9 c3_18_10 c3_19_11 set community 0:8 route-map calculator permit 3400 match community c3_20_12 c3_21_13 c3_22_14 c3_23_15 c4_24_3 set community 0:8 route-map calculator permit 3401 match community c3_24_16 c4_25_3 c3_25_17 c4_26_3 c3_26_18 set community 0:8 route-map calculator permit 3402 match community c3_27_19 c3_28_20 c3_29_21 c3_30_22 c3_31_23 set community 0:8 route-map calculator permit 3403 match community c4_32_4 c3_32_24 c4_33_4 c3_33_25 c4_34_4 set community 0:8 route-map calculator permit 3404 match community c3_34_26 c4_35_4 c3_35_27 c3_36_28 c3_37_29 set community 0:8 route-map calculator permit 3405 match community c3_38_30 c3_39_31 c4_40_5 c3_40_32 c4_41_5 set community 0:8 route-map calculator permit 3406 match community c3_41_33 c4_42_5 c3_42_34 c4_43_5 c3_43_35 set community 0:8 route-map calculator permit 3407 match community c4_44_5 c3_44_36 c3_45_37 c3_46_38 c3_47_39 set community 0:8 route-map calculator permit 3408 match community c4_48_6 c3_48_40 c4_49_6 c3_49_41 c4_50_6 set community 0:8 route-map calculator permit 3409 match community c3_50_42 c4_51_6 c3_51_43 c4_52_6 c3_52_44 set community 0:8 route-map calculator permit 3410 match community c4_53_6 c3_53_45 c3_54_46 c3_55_47 c4_56_7 set community 0:8 route-map calculator permit 3411 match community c3_56_48 c4_57_7 c3_57_49 c4_58_7 c3_58_50 set community 0:8 route-map calculator permit 3412 match community c4_59_7 c3_59_51 c4_60_7 c3_60_52 c4_61_7 set community 0:8 route-map calculator permit 3413 match community c3_61_53 c4_62_7 c3_62_54 c3_63_55 c4_64_8 set community 0:8 route-map calculator permit 3414 match community c3_64_56 c4_65_8 c3_65_57 c4_66_8 c3_66_58 set community 0:8 route-map calculator permit 3415 match community c4_67_8 c3_67_59 c4_68_8 c3_68_60 c4_69_8 set community 0:8 route-map calculator permit 3416 match community c3_69_61 c4_70_8 c3_70_62 c4_71_8 c3_71_63 set community 0:8 route-map calculator permit 3417 match community c4_72_9 c3_72_64 c4_73_9 c3_73_65 c4_74_9 set community 0:8 route-map calculator permit 3418 match community c3_74_66 c4_75_9 c3_75_67 c4_76_9 c3_76_68 set community 0:8 route-map calculator permit 3419 match community c4_77_9 c3_77_69 c4_78_9 c3_78_70 c4_79_9 set community 0:8 route-map calculator permit 3420 match community c3_79_71 c4_80_9 c4_80_10 c3_80_72 c4_81_10 set community 0:8 route-map calculator permit 3421 match community c3_81_73 c4_82_10 c3_82_74 c4_83_10 c3_83_75 set community 0:8 route-map calculator permit 3422 match community c4_84_10 c3_84_76 c4_85_10 c3_85_77 c4_86_10 set community 0:8 route-map calculator permit 3423 match community c3_86_78 c4_87_10 c3_87_79 c4_88_10 c4_88_11 set community 0:8 route-map calculator permit 3424 match community c3_88_80 c4_89_10 c4_89_11 c3_89_81 c4_90_11 set community 0:8 route-map calculator permit 3425 match community c3_90_82 c4_91_11 c3_91_83 c4_92_11 c3_92_84 set community 0:8 route-map calculator permit 3426 match community c4_93_11 c3_93_85 c4_94_11 c3_94_86 c4_95_11 set community 0:8 route-map calculator permit 3427 match community c3_95_87 c4_96_11 c4_96_12 c3_96_88 c4_97_11 set community 0:8 route-map calculator permit 3428 match community c4_97_12 c3_97_89 c4_98_11 c4_98_12 c3_98_90 set community 0:8 route-map calculator permit 3429 match community c4_99_12 c3_99_91 c4_100_12 c3_100_92 c4_101_12 set community 0:8 route-map calculator permit 3430 match community c3_101_93 c4_102_12 c3_102_94 c4_103_12 c3_103_95 set community 0:8 route-map calculator permit 3431 match community c4_104_12 c4_104_13 c3_104_96 c4_105_12 c4_105_13 set community 0:8 route-map calculator permit 3432 match community c3_105_97 c4_106_12 c4_106_13 c3_106_98 c4_107_12 set community 0:8 route-map calculator permit 3433 match community c4_107_13 c3_107_99 c4_108_13 c3_108_100 c4_109_13 set community 0:8 route-map calculator permit 3434 match community c3_109_101 c4_110_13 c3_110_102 c4_111_13 c3_111_103 set community 0:8 route-map calculator permit 3435 match community c4_112_13 c4_112_14 c3_112_104 c4_113_13 c4_113_14 set community 0:8 route-map calculator permit 3436 match community c3_113_105 c4_114_13 c4_114_14 c3_114_106 c4_115_13 set community 0:8 route-map calculator permit 3437 match community c4_115_14 c3_115_107 c4_116_13 c4_116_14 c3_116_108 set community 0:8 route-map calculator permit 3438 match community c4_117_14 c3_117_109 c4_118_14 c3_118_110 c4_119_14 set community 0:8 route-map calculator permit 3439 match community c3_119_111 c4_120_14 c4_120_15 c3_120_112 c4_121_14 set community 0:8 route-map calculator permit 3440 match community c4_121_15 c3_121_113 c4_122_14 c4_122_15 c3_122_114 set community 0:8 route-map calculator permit 3441 match community c4_123_14 c4_123_15 c3_123_115 c4_124_14 c4_124_15 set community 0:8 route-map calculator permit 3442 match community c3_124_116 c4_125_14 c4_125_15 c3_125_117 c4_126_15 set community 0:8 route-map calculator permit 3443 match community c3_126_118 c4_127_15 c3_127_119 c4_128_15 c4_128_16 set community 0:8 route-map calculator permit 3444 match community c3_128_120 c4_129_15 c4_129_16 c3_129_121 c4_130_15 set community 0:8 route-map calculator permit 3445 match community c4_130_16 c3_130_122 c4_131_15 c4_131_16 c3_131_123 set community 0:8 route-map calculator permit 3446 match community c4_132_15 c4_132_16 c3_132_124 c4_133_15 c4_133_16 set community 0:8 route-map calculator permit 3447 match community c3_133_125 c4_134_15 c4_134_16 c3_134_126 c4_135_16 set community 0:8 route-map calculator permit 3448 match community c3_135_127 c4_136_16 c4_136_17 c3_136_128 c4_137_16 set community 0:8 route-map calculator permit 3449 match community c4_137_17 c3_137_129 c4_138_16 c4_138_17 c3_138_130 set community 0:8 route-map calculator permit 3450 match community c4_139_16 c4_139_17 c3_139_131 c4_140_16 c4_140_17 set community 0:8 route-map calculator permit 3451 match community c3_140_132 c4_141_16 c4_141_17 c3_141_133 c4_142_16 set community 0:8 route-map calculator permit 3452 match community c4_142_17 c3_142_134 c4_143_16 c4_143_17 c3_143_135 set community 0:8 route-map calculator permit 3453 match community c4_144_17 c4_144_18 c3_144_136 c4_145_17 c4_145_18 set community 0:8 route-map calculator permit 3454 match community c3_145_137 c4_146_17 c4_146_18 c3_146_138 c4_147_17 set community 0:8 route-map calculator permit 3455 match community c4_147_18 c3_147_139 c4_148_17 c4_148_18 c3_148_140 set community 0:8 route-map calculator permit 3456 match community c4_149_17 c4_149_18 c3_149_141 c4_150_17 c4_150_18 set community 0:8 route-map calculator permit 3457 match community c3_150_142 c4_151_17 c4_151_18 c3_151_143 c4_152_17 set community 0:8 route-map calculator permit 3458 match community c4_152_18 c4_152_19 c3_152_144 c4_153_18 c4_153_19 set community 0:8 route-map calculator permit 3459 match community c3_153_145 c4_154_18 c4_154_19 c3_154_146 c4_155_18 set community 0:8 route-map calculator permit 3460 match community c4_155_19 c3_155_147 c4_156_18 c4_156_19 c3_156_148 set community 0:8 route-map calculator permit 3461 match community c4_157_18 c4_157_19 c3_157_149 c4_158_18 c4_158_19 set community 0:8 route-map calculator permit 3462 match community c3_158_150 c4_159_18 c4_159_19 c3_159_151 c4_160_18 set community 0:8 route-map calculator permit 3463 match community c4_160_19 c4_160_20 c3_160_152 c4_161_18 c4_161_19 set community 0:8 route-map calculator permit 3464 match community c4_161_20 c3_161_153 c4_162_19 c4_162_20 c3_162_154 set community 0:8 route-map calculator permit 3465 match community c4_163_19 c4_163_20 c3_163_155 c4_164_19 c4_164_20 set community 0:8 route-map calculator permit 3466 match community c3_164_156 c4_165_19 c4_165_20 c3_165_157 c4_166_19 set community 0:8 route-map calculator permit 3467 match community c4_166_20 c3_166_158 c4_167_19 c4_167_20 c3_167_159 set community 0:8 route-map calculator permit 3468 match community c4_168_19 c4_168_20 c4_168_21 c3_168_160 c4_169_19 set community 0:8 route-map calculator permit 3469 match community c4_169_20 c4_169_21 c3_169_161 c4_170_19 c4_170_20 set community 0:8 route-map calculator permit 3470 match community c4_170_21 c3_170_162 c4_171_20 c4_171_21 c3_171_163 set community 0:8 route-map calculator permit 3471 match community c4_172_20 c4_172_21 c3_172_164 c4_173_20 c4_173_21 set community 0:8 route-map calculator permit 3472 match community c3_173_165 c4_174_20 c4_174_21 c3_174_166 c4_175_20 set community 0:8 route-map calculator permit 3473 match community c4_175_21 c3_175_167 c4_176_20 c4_176_21 c4_176_22 set community 0:8 route-map calculator permit 3474 match community c3_176_168 c4_177_20 c4_177_21 c4_177_22 c3_177_169 set community 0:8 route-map calculator permit 3475 match community c4_178_20 c4_178_21 c4_178_22 c3_178_170 c4_179_20 set community 0:8 route-map calculator permit 3476 match community c4_179_21 c4_179_22 c3_179_171 c4_180_21 c4_180_22 set community 0:8 route-map calculator permit 3477 match community c3_180_172 c4_181_21 c4_181_22 c3_181_173 c4_182_21 set community 0:8 route-map calculator permit 3478 match community c4_182_22 c3_182_174 c4_183_21 c4_183_22 c3_183_175 set community 0:8 route-map calculator permit 3479 match community c4_184_21 c4_184_22 c4_184_23 c3_184_176 c4_185_21 set community 0:8 route-map calculator permit 3480 match community c4_185_22 c4_185_23 c3_185_177 c4_186_21 c4_186_22 set community 0:8 route-map calculator permit 3481 match community c4_186_23 c3_186_178 c4_187_21 c4_187_22 c4_187_23 set community 0:8 route-map calculator permit 3482 match community c3_187_179 c4_188_21 c4_188_22 c4_188_23 c3_188_180 set community 0:8 route-map calculator permit 3483 match community c4_189_22 c4_189_23 c3_189_181 c4_190_22 c4_190_23 set community 0:8 route-map calculator permit 3484 match community c3_190_182 c4_191_22 c4_191_23 c3_191_183 c4_192_22 set community 0:8 route-map calculator permit 3485 match community c4_192_23 c4_192_24 c3_192_184 c4_193_22 c4_193_23 set community 0:8 route-map calculator permit 3486 match community c4_193_24 c3_193_185 c4_194_22 c4_194_23 c4_194_24 set community 0:8 route-map calculator permit 3487 match community c3_194_186 c4_195_22 c4_195_23 c4_195_24 c3_195_187 set community 0:8 route-map calculator permit 3488 match community c4_196_22 c4_196_23 c4_196_24 c3_196_188 c4_197_22 set community 0:8 route-map calculator permit 3489 match community c4_197_23 c4_197_24 c3_197_189 c4_198_23 c4_198_24 set community 0:8 route-map calculator permit 3490 match community c3_198_190 c4_199_23 c4_199_24 c3_199_191 c4_200_23 set community 0:8 route-map calculator permit 3491 match community c4_200_24 c4_200_25 c3_200_192 c4_201_23 c4_201_24 set community 0:8 route-map calculator permit 3492 match community c4_201_25 c3_201_193 c4_202_23 c4_202_24 c4_202_25 set community 0:8 route-map calculator permit 3493 match community c3_202_194 c4_203_23 c4_203_24 c4_203_25 c3_203_195 set community 0:8 route-map calculator permit 3494 match community c4_204_23 c4_204_24 c4_204_25 c3_204_196 c4_205_23 set community 0:8 route-map calculator permit 3495 match community c4_205_24 c4_205_25 c3_205_197 c4_206_23 c4_206_24 set community 0:8 route-map calculator permit 3496 match community c4_206_25 c3_206_198 c4_207_24 c4_207_25 c3_207_199 set community 0:8 route-map calculator permit 3497 match community c4_208_24 c4_208_25 c4_208_26 c3_208_200 c4_209_24 set community 0:8 route-map calculator permit 3498 match community c4_209_25 c4_209_26 c3_209_201 c4_210_24 c4_210_25 set community 0:8 route-map calculator permit 3499 match community c4_210_26 c3_210_202 c4_211_24 c4_211_25 c4_211_26 set community 0:8 route-map calculator permit 3500 match community c3_211_203 c4_212_24 c4_212_25 c4_212_26 c3_212_204 set community 0:8 route-map calculator permit 3501 match community c4_213_24 c4_213_25 c4_213_26 c3_213_205 c4_214_24 set community 0:8 route-map calculator permit 3502 match community c4_214_25 c4_214_26 c3_214_206 c4_215_24 c4_215_25 set community 0:8 route-map calculator permit 3503 match community c4_215_26 c3_215_207 c4_216_25 c4_216_26 c4_216_27 set community 0:8 route-map calculator permit 3504 match community c3_216_208 c4_217_25 c4_217_26 c4_217_27 c3_217_209 set community 0:8 route-map calculator permit 3505 match community c4_218_25 c4_218_26 c4_218_27 c3_218_210 c4_219_25 set community 0:8 route-map calculator permit 3506 match community c4_219_26 c4_219_27 c3_219_211 c4_220_25 c4_220_26 set community 0:8 route-map calculator permit 3507 match community c4_220_27 c3_220_212 c4_221_25 c4_221_26 c4_221_27 set community 0:8 route-map calculator permit 3508 match community c3_221_213 c4_222_25 c4_222_26 c4_222_27 c3_222_214 set community 0:8 route-map calculator permit 3509 match community c4_223_25 c4_223_26 c4_223_27 c3_223_215 c4_224_25 set community 0:8 route-map calculator permit 3510 match community c4_224_26 c4_224_27 c4_224_28 c3_224_216 c4_225_26 set community 0:8 route-map calculator permit 3511 match community c4_225_27 c4_225_28 c3_225_217 c4_226_26 c4_226_27 set community 0:8 route-map calculator permit 3512 match community c4_226_28 c3_226_218 c4_227_26 c4_227_27 c4_227_28 set community 0:8 route-map calculator permit 3513 match community c3_227_219 c4_228_26 c4_228_27 c4_228_28 c3_228_220 set community 0:8 route-map calculator permit 3514 match community c4_229_26 c4_229_27 c4_229_28 c3_229_221 c4_230_26 set community 0:8 route-map calculator permit 3515 match community c4_230_27 c4_230_28 c3_230_222 c4_231_26 c4_231_27 set community 0:8 route-map calculator permit 3516 match community c4_231_28 c3_231_223 c4_232_26 c4_232_27 c4_232_28 set community 0:8 route-map calculator permit 3517 match community c4_232_29 c3_232_224 c4_233_26 c4_233_27 c4_233_28 set community 0:8 route-map calculator permit 3518 match community c4_233_29 c3_233_225 c4_234_27 c4_234_28 c4_234_29 set community 0:8 route-map calculator permit 3519 match community c3_234_226 c4_235_27 c4_235_28 c4_235_29 c3_235_227 set community 0:8 route-map calculator permit 3520 match community c4_236_27 c4_236_28 c4_236_29 c3_236_228 c4_237_27 set community 0:8 route-map calculator permit 3521 match community c4_237_28 c4_237_29 c3_237_229 c4_238_27 c4_238_28 set community 0:8 route-map calculator permit 3522 match community c4_238_29 c3_238_230 c4_239_27 c4_239_28 c4_239_29 set community 0:8 route-map calculator permit 3523 match community c3_239_231 c4_240_27 c4_240_28 c4_240_29 c4_240_30 set community 0:8 route-map calculator permit 3524 match community c3_240_232 c4_241_27 c4_241_28 c4_241_29 c4_241_30 set community 0:8 route-map calculator permit 3525 match community c3_241_233 c4_242_27 c4_242_28 c4_242_29 c4_242_30 set community 0:8 route-map calculator permit 3526 match community c3_242_234 c4_243_28 c4_243_29 c4_243_30 c3_243_235 set community 0:8 route-map calculator permit 3527 match community c4_244_28 c4_244_29 c4_244_30 c3_244_236 c4_245_28 set community 0:8 route-map calculator permit 3528 match community c4_245_29 c4_245_30 c3_245_237 c4_246_28 c4_246_29 set community 0:8 route-map calculator permit 3529 match community c4_246_30 c3_246_238 c4_247_28 c4_247_29 c4_247_30 set community 0:8 route-map calculator permit 3530 match community c3_247_239 c4_248_28 c4_248_29 c4_248_30 c4_248_31 set community 0:8 route-map calculator permit 3531 match community c3_248_240 c4_249_28 c4_249_29 c4_249_30 c4_249_31 set community 0:8 route-map calculator permit 3532 match community c3_249_241 c4_250_28 c4_250_29 c4_250_30 c4_250_31 set community 0:8 route-map calculator permit 3533 match community c3_250_242 c4_251_28 c4_251_29 c4_251_30 c4_251_31 set community 0:8 route-map calculator permit 3534 match community c3_251_243 c4_252_29 c4_252_30 c4_252_31 c3_252_244 set community 0:8 route-map calculator permit 3535 match community c4_253_29 c4_253_30 c4_253_31 c3_253_245 c4_254_29 set community 0:8 route-map calculator permit 3536 match community c4_254_30 c4_254_31 c3_254_246 c4_255_29 c4_255_30 set community 0:8 route-map calculator permit 3537 match community c4_255_31 c3_255_247 c4_256_29 c4_256_30 c4_256_31 set community 0:8 route-map calculator permit 3538 match community c4_256_32 c3_256_248 set community 0:8 ip community-list standard 2_96_237 permit 65000:2 0:96 0:237 ip community-list standard 2_144_158 permit 65000:2 0:144 0:158 route-map calculator permit 3539 match community 2_96_237 2_144_158 set community 0:22752 ip community-list standard 2_166_241 permit 65000:2 0:166 0:241 route-map calculator permit 3540 match community 2_166_241 set community 0:40006 ip community-list standard 2_35_252 permit 65000:2 0:35 0:252 ip community-list standard 2_36_245 permit 65000:2 0:36 0:245 ip community-list standard 2_42_210 permit 65000:2 0:42 0:210 ip community-list standard 2_45_196 permit 65000:2 0:45 0:196 ip community-list standard 2_49_180 permit 65000:2 0:49 0:180 ip community-list standard 2_60_147 permit 65000:2 0:60 0:147 ip community-list standard 2_63_140 permit 65000:2 0:63 0:140 ip community-list standard 2_70_126 permit 65000:2 0:70 0:126 ip community-list standard 2_84_105 permit 65000:2 0:84 0:105 ip community-list standard 2_90_98 permit 65000:2 0:90 0:98 route-map calculator permit 3541 match community 2_35_252 2_36_245 2_42_210 2_45_196 2_49_180 set community 0:8820 route-map calculator permit 3542 match community 2_60_147 2_63_140 2_70_126 2_84_105 2_90_98 set community 0:8820 ip community-list standard 2_212_240 permit 65000:2 0:212 0:240 route-map calculator permit 3543 match community 2_212_240 set community 0:50880 ip community-list standard 2_186_238 permit 65000:2 0:186 0:238 ip community-list standard 2_204_217 permit 65000:2 0:204 0:217 route-map calculator permit 3544 match community 2_186_238 2_204_217 set community 0:44268 ip community-list standard 2_79_208 permit 65000:2 0:79 0:208 ip community-list standard 2_104_158 permit 65000:2 0:104 0:158 route-map calculator permit 3545 match community 2_79_208 2_104_158 set community 0:16432 ip community-list standard 2_52_181 permit 65000:2 0:52 0:181 route-map calculator permit 3546 match community 2_52_181 set community 0:9412 ip community-list standard 2_248_251 permit 65000:2 0:248 0:251 route-map calculator permit 3547 match community 2_248_251 set community 0:62248 ip community-list standard 2_153_159 permit 65000:2 0:153 0:159 route-map calculator permit 3548 match community 2_153_159 set community 0:24327 ip community-list standard 2_45_252 permit 65000:2 0:45 0:252 ip community-list standard 2_54_210 permit 65000:2 0:54 0:210 ip community-list standard 2_60_189 permit 65000:2 0:60 0:189 ip community-list standard 2_63_180 permit 65000:2 0:63 0:180 ip community-list standard 2_70_162 permit 65000:2 0:70 0:162 ip community-list standard 2_81_140 permit 65000:2 0:81 0:140 ip community-list standard 2_84_135 permit 65000:2 0:84 0:135 ip community-list standard 2_90_126 permit 65000:2 0:90 0:126 ip community-list standard 2_105_108 permit 65000:2 0:105 0:108 route-map calculator permit 3549 match community 2_45_252 2_54_210 2_60_189 2_63_180 2_70_162 set community 0:11340 route-map calculator permit 3550 match community 2_81_140 2_84_135 2_90_126 2_105_108 set community 0:11340 ip community-list standard 2_119_137 permit 65000:2 0:119 0:137 route-map calculator permit 3551 match community 2_119_137 set community 0:16303 ip community-list standard 2_50_209 permit 65000:2 0:50 0:209 ip community-list standard 2_55_190 permit 65000:2 0:55 0:190 ip community-list standard 2_95_110 permit 65000:2 0:95 0:110 route-map calculator permit 3552 match community 2_50_209 2_55_190 2_95_110 set community 0:10450 ip community-list standard 2_116_240 permit 65000:2 0:116 0:240 ip community-list standard 2_120_232 permit 65000:2 0:120 0:232 ip community-list standard 2_145_192 permit 65000:2 0:145 0:192 ip community-list standard 2_160_174 permit 65000:2 0:160 0:174 route-map calculator permit 3553 match community 2_116_240 2_120_232 2_145_192 2_160_174 set community 0:27840 ip community-list standard 2_128_187 permit 65000:2 0:128 0:187 ip community-list standard 2_136_176 permit 65000:2 0:136 0:176 route-map calculator permit 3554 match community 2_128_187 2_136_176 set community 0:23936 ip community-list standard 2_35_163 permit 65000:2 0:35 0:163 route-map calculator permit 3555 match community 2_35_163 set community 0:5705 ip community-list standard 2_55_237 permit 65000:2 0:55 0:237 ip community-list standard 2_79_165 permit 65000:2 0:79 0:165 route-map calculator permit 3556 match community 2_55_237 2_79_165 set community 0:13035 ip community-list standard 2_146_149 permit 65000:2 0:146 0:149 route-map calculator permit 3557 match community 2_146_149 set community 0:21754 ip community-list standard 2_128_207 permit 65000:2 0:128 0:207 ip community-list standard 2_138_192 permit 65000:2 0:138 0:192 ip community-list standard 2_144_184 permit 65000:2 0:144 0:184 route-map calculator permit 3558 match community 2_128_207 2_138_192 2_144_184 set community 0:26496 ip community-list standard 2_51_214 permit 65000:2 0:51 0:214 ip community-list standard 2_102_107 permit 65000:2 0:102 0:107 route-map calculator permit 3559 match community 2_51_214 2_102_107 set community 0:10914 ip community-list standard 2_13_69 permit 65000:2 0:13 0:69 ip community-list standard 2_23_39 permit 65000:2 0:23 0:39 route-map calculator permit 3560 match community 2_13_69 2_23_39 set community 0:897 ip community-list standard 2_34_153 permit 65000:2 0:34 0:153 ip community-list standard 2_51_102 permit 65000:2 0:51 0:102 route-map calculator permit 3561 match community 2_34_153 2_51_102 set community 0:5202 ip community-list standard 2_74_235 permit 65000:2 0:74 0:235 ip community-list standard 2_94_185 permit 65000:2 0:94 0:185 route-map calculator permit 3562 match community 2_74_235 2_94_185 set community 0:17390 ip community-list standard 2_132_235 permit 65000:2 0:132 0:235 ip community-list standard 2_141_220 permit 65000:2 0:141 0:220 ip community-list standard 2_165_188 permit 65000:2 0:165 0:188 route-map calculator permit 3563 match community 2_132_235 2_141_220 2_165_188 set community 0:31020 ip community-list standard 2_177_181 permit 65000:2 0:177 0:181 route-map calculator permit 3564 match community 2_177_181 set community 0:32037 ip community-list standard 2_53_256 permit 65000:2 0:53 0:256 ip community-list standard 2_64_212 permit 65000:2 0:64 0:212 ip community-list standard 2_106_128 permit 65000:2 0:106 0:128 route-map calculator permit 3565 match community 2_53_256 2_64_212 2_106_128 set community 0:13568 ip community-list standard 2_49_247 permit 65000:2 0:49 0:247 ip community-list standard 2_91_133 permit 65000:2 0:91 0:133 route-map calculator permit 3566 match community 2_49_247 2_91_133 set community 0:12103 ip community-list standard 2_210_247 permit 65000:2 0:210 0:247 route-map calculator permit 3567 match community 2_210_247 set community 0:51870 ip community-list standard 2_50_206 permit 65000:2 0:50 0:206 ip community-list standard 2_100_103 permit 65000:2 0:100 0:103 route-map calculator permit 3568 match community 2_50_206 2_100_103 set community 0:10300 ip community-list standard 2_113_225 permit 65000:2 0:113 0:225 route-map calculator permit 3569 match community 2_113_225 set community 0:25425 ip community-list standard 2_9_143 permit 65000:2 0:9 0:143 ip community-list standard 2_11_117 permit 65000:2 0:11 0:117 ip community-list standard 2_13_99 permit 65000:2 0:13 0:99 ip community-list standard 2_33_39 permit 65000:2 0:33 0:39 route-map calculator permit 3570 match community 2_9_143 2_11_117 2_13_99 2_33_39 set community 0:1287 ip community-list standard 2_22_197 permit 65000:2 0:22 0:197 route-map calculator permit 3571 match community 2_22_197 set community 0:4334 ip community-list standard 2_179_212 permit 65000:2 0:179 0:212 route-map calculator permit 3572 match community 2_179_212 set community 0:37948 ip community-list standard 2_13_127 permit 65000:2 0:13 0:127 route-map calculator permit 3573 match community 2_13_127 set community 0:1651 ip community-list standard 2_12_219 permit 65000:2 0:12 0:219 ip community-list standard 2_18_146 permit 65000:2 0:18 0:146 ip community-list standard 2_36_73 permit 65000:2 0:36 0:73 route-map calculator permit 3574 match community 2_12_219 2_18_146 2_36_73 set community 0:2628 ip community-list standard 2_47_141 permit 65000:2 0:47 0:141 route-map calculator permit 3575 match community 2_47_141 set community 0:6627 ip community-list standard 2_3_201 permit 65000:2 0:3 0:201 ip community-list standard 2_9_67 permit 65000:2 0:9 0:67 route-map calculator permit 3576 match community 2_3_201 2_9_67 set community 0:603 ip community-list standard 2_19_190 permit 65000:2 0:19 0:190 ip community-list standard 2_38_95 permit 65000:2 0:38 0:95 route-map calculator permit 3577 match community 2_19_190 2_38_95 set community 0:3610 ip community-list standard 2_107_167 permit 65000:2 0:107 0:167 route-map calculator permit 3578 match community 2_107_167 set community 0:17869 ip community-list standard 2_101_237 permit 65000:2 0:101 0:237 route-map calculator permit 3579 match community 2_101_237 set community 0:23937 ip community-list standard 2_111_167 permit 65000:2 0:111 0:167 route-map calculator permit 3580 match community 2_111_167 set community 0:18537 ip community-list standard 2_169_212 permit 65000:2 0:169 0:212 route-map calculator permit 3581 match community 2_169_212 set community 0:35828 ip community-list standard 2_94_189 permit 65000:2 0:94 0:189 ip community-list standard 2_126_141 permit 65000:2 0:126 0:141 route-map calculator permit 3582 match community 2_94_189 2_126_141 set community 0:17766 ip community-list standard 2_33_219 permit 65000:2 0:33 0:219 ip community-list standard 2_73_99 permit 65000:2 0:73 0:99 route-map calculator permit 3583 match community 2_33_219 2_73_99 set community 0:7227 ip community-list standard 2_21_247 permit 65000:2 0:21 0:247 ip community-list standard 2_39_133 permit 65000:2 0:39 0:133 ip community-list standard 2_57_91 permit 65000:2 0:57 0:91 route-map calculator permit 3584 match community 2_21_247 2_39_133 2_57_91 set community 0:5187 ip community-list standard 2_45_194 permit 65000:2 0:45 0:194 ip community-list standard 2_90_97 permit 65000:2 0:90 0:97 route-map calculator permit 3585 match community 2_45_194 2_90_97 set community 0:8730 ip community-list standard 2_11_101 permit 65000:2 0:11 0:101 route-map calculator permit 3586 match community 2_11_101 set community 0:1111 ip community-list standard 2_86_159 permit 65000:2 0:86 0:159 ip community-list standard 2_106_129 permit 65000:2 0:106 0:129 route-map calculator permit 3587 match community 2_86_159 2_106_129 set community 0:13674 ip community-list standard 2_74_205 permit 65000:2 0:74 0:205 ip community-list standard 2_82_185 permit 65000:2 0:82 0:185 route-map calculator permit 3588 match community 2_74_205 2_82_185 set community 0:15170 ip community-list standard 2_212_236 permit 65000:2 0:212 0:236 route-map calculator permit 3589 match community 2_212_236 set community 0:50032 ip community-list standard 2_15_241 permit 65000:2 0:15 0:241 route-map calculator permit 3590 match community 2_15_241 set community 0:3615 ip community-list standard 2_69_155 permit 65000:2 0:69 0:155 ip community-list standard 2_93_115 permit 65000:2 0:93 0:115 route-map calculator permit 3591 match community 2_69_155 2_93_115 set community 0:10695 ip community-list standard 2_184_244 permit 65000:2 0:184 0:244 route-map calculator permit 3592 match community 2_184_244 set community 0:44896 ip community-list standard 2_174_183 permit 65000:2 0:174 0:183 route-map calculator permit 3593 match community 2_174_183 set community 0:31842 ip community-list standard 1_1_24 permit 65000:1 0:1 0:24 ip community-list standard 2_1_25 permit 65000:2 0:1 0:25 ip community-list standard 1_2_23 permit 65000:1 0:2 0:23 ip community-list standard 1_3_22 permit 65000:1 0:3 0:22 ip community-list standard 1_4_21 permit 65000:1 0:4 0:21 ip community-list standard 2_5_5 permit 65000:2 0:5 0:5 ip community-list standard 1_5_20 permit 65000:1 0:5 0:20 ip community-list standard 1_6_19 permit 65000:1 0:6 0:19 ip community-list standard 1_7_18 permit 65000:1 0:7 0:18 ip community-list standard 1_8_17 permit 65000:1 0:8 0:17 ip community-list standard 1_9_16 permit 65000:1 0:9 0:16 ip community-list standard 1_10_15 permit 65000:1 0:10 0:15 ip community-list standard 1_11_14 permit 65000:1 0:11 0:14 ip community-list standard 1_12_13 permit 65000:1 0:12 0:13 ip community-list expanded c25 permit 1 ^65000:4_0:25_0:1$ ip community-list expanded c25 permit 2 ^65000:3_0:26_0:1$ ip community-list expanded c25 permit 3 ^65000:3_0:27_0:2$ ip community-list expanded c25 permit 4 ^65000:3_0:28_0:3$ ip community-list expanded c25 permit 5 ^65000:3_0:29_0:4$ ip community-list expanded c25 permit 6 ^65000:3_0:30_0:5$ ip community-list expanded c25 permit 7 ^65000:3_0:31_0:6$ ip community-list expanded c25 permit 8 ^65000:3_0:32_0:7$ ip community-list expanded c25 permit 9 ^65000:3_0:33_0:8$ ip community-list expanded c25 permit 10 ^65000:3_0:34_0:9$ ip community-list expanded c25 permit 11 ^65000:3_0:35_0:10$ ip community-list expanded c25 permit 12 ^65000:3_0:36_0:11$ ip community-list expanded c25 permit 13 ^65000:3_0:37_0:12$ ip community-list expanded c25 permit 14 ^65000:3_0:38_0:13$ ip community-list expanded c25 permit 15 ^65000:3_0:39_0:14$ ip community-list expanded c25 permit 16 ^65000:3_0:40_0:15$ ip community-list expanded c25 permit 17 ^65000:3_0:41_0:16$ ip community-list expanded c25 permit 18 ^65000:3_0:42_0:17$ ip community-list expanded c25 permit 19 ^65000:3_0:43_0:18$ ip community-list expanded c25 permit 20 ^65000:3_0:44_0:19$ ip community-list expanded c25 permit 21 ^65000:3_0:45_0:20$ ip community-list expanded c25 permit 22 ^65000:3_0:46_0:21$ ip community-list expanded c25 permit 23 ^65000:3_0:47_0:22$ ip community-list expanded c25 permit 24 ^65000:3_0:48_0:23$ ip community-list expanded c25 permit 25 ^65000:3_0:49_0:24$ ip community-list expanded c25 permit 26 ^65000:4_0:50_0:2$ ip community-list expanded c25 permit 27 ^65000:3_0:50_0:25$ ip community-list expanded c25 permit 28 ^65000:4_0:51_0:2$ ip community-list expanded c25 permit 29 ^65000:3_0:51_0:26$ ip community-list expanded c25 permit 30 ^65000:3_0:52_0:27$ ip community-list expanded c25 permit 31 ^65000:3_0:53_0:28$ ip community-list expanded c25 permit 32 ^65000:3_0:54_0:29$ ip community-list expanded c25 permit 33 ^65000:3_0:55_0:30$ ip community-list expanded c25 permit 34 ^65000:3_0:56_0:31$ ip community-list expanded c25 permit 35 ^65000:3_0:57_0:32$ ip community-list expanded c25 permit 36 ^65000:3_0:58_0:33$ ip community-list expanded c25 permit 37 ^65000:3_0:59_0:34$ ip community-list expanded c25 permit 38 ^65000:3_0:60_0:35$ ip community-list expanded c25 permit 39 ^65000:3_0:61_0:36$ ip community-list expanded c25 permit 40 ^65000:3_0:62_0:37$ ip community-list expanded c25 permit 41 ^65000:3_0:63_0:38$ ip community-list expanded c25 permit 42 ^65000:3_0:64_0:39$ ip community-list expanded c25 permit 43 ^65000:3_0:65_0:40$ ip community-list expanded c25 permit 44 ^65000:3_0:66_0:41$ ip community-list expanded c25 permit 45 ^65000:3_0:67_0:42$ ip community-list expanded c25 permit 46 ^65000:3_0:68_0:43$ ip community-list expanded c25 permit 47 ^65000:3_0:69_0:44$ ip community-list expanded c25 permit 48 ^65000:3_0:70_0:45$ ip community-list expanded c25 permit 49 ^65000:3_0:71_0:46$ ip community-list expanded c25 permit 50 ^65000:3_0:72_0:47$ ip community-list expanded c25 permit 51 ^65000:3_0:73_0:48$ ip community-list expanded c25 permit 52 ^65000:3_0:74_0:49$ ip community-list expanded c25 permit 53 ^65000:4_0:75_0:3$ ip community-list expanded c25 permit 54 ^65000:3_0:75_0:50$ ip community-list expanded c25 permit 55 ^65000:4_0:76_0:3$ ip community-list expanded c25 permit 56 ^65000:3_0:76_0:51$ ip community-list expanded c25 permit 57 ^65000:4_0:77_0:3$ ip community-list expanded c25 permit 58 ^65000:3_0:77_0:52$ ip community-list expanded c25 permit 59 ^65000:3_0:78_0:53$ ip community-list expanded c25 permit 60 ^65000:3_0:79_0:54$ ip community-list expanded c25 permit 61 ^65000:3_0:80_0:55$ ip community-list expanded c25 permit 62 ^65000:3_0:81_0:56$ ip community-list expanded c25 permit 63 ^65000:3_0:82_0:57$ ip community-list expanded c25 permit 64 ^65000:3_0:83_0:58$ ip community-list expanded c25 permit 65 ^65000:3_0:84_0:59$ ip community-list expanded c25 permit 66 ^65000:3_0:85_0:60$ ip community-list expanded c25 permit 67 ^65000:3_0:86_0:61$ ip community-list expanded c25 permit 68 ^65000:3_0:87_0:62$ ip community-list expanded c25 permit 69 ^65000:3_0:88_0:63$ ip community-list expanded c25 permit 70 ^65000:3_0:89_0:64$ ip community-list expanded c25 permit 71 ^65000:3_0:90_0:65$ ip community-list expanded c25 permit 72 ^65000:3_0:91_0:66$ ip community-list expanded c25 permit 73 ^65000:3_0:92_0:67$ ip community-list expanded c25 permit 74 ^65000:3_0:93_0:68$ ip community-list expanded c25 permit 75 ^65000:3_0:94_0:69$ ip community-list expanded c25 permit 76 ^65000:3_0:95_0:70$ ip community-list expanded c25 permit 77 ^65000:3_0:96_0:71$ ip community-list expanded c25 permit 78 ^65000:3_0:97_0:72$ ip community-list expanded c25 permit 79 ^65000:3_0:98_0:73$ ip community-list expanded c25 permit 80 ^65000:3_0:99_0:74$ ip community-list expanded c25 permit 81 ^65000:4_0:100_0:4$ ip community-list expanded c25 permit 82 ^65000:3_0:100_0:75$ ip community-list expanded c25 permit 83 ^65000:4_0:101_0:4$ ip community-list expanded c25 permit 84 ^65000:3_0:101_0:76$ ip community-list expanded c25 permit 85 ^65000:4_0:102_0:4$ ip community-list expanded c25 permit 86 ^65000:3_0:102_0:77$ ip community-list expanded c25 permit 87 ^65000:4_0:103_0:4$ ip community-list expanded c25 permit 88 ^65000:3_0:103_0:78$ ip community-list expanded c25 permit 89 ^65000:3_0:104_0:79$ ip community-list expanded c25 permit 90 ^65000:3_0:105_0:80$ ip community-list expanded c25 permit 91 ^65000:3_0:106_0:81$ ip community-list expanded c25 permit 92 ^65000:3_0:107_0:82$ ip community-list expanded c25 permit 93 ^65000:3_0:108_0:83$ ip community-list expanded c25 permit 94 ^65000:3_0:109_0:84$ ip community-list expanded c25 permit 95 ^65000:3_0:110_0:85$ ip community-list expanded c25 permit 96 ^65000:3_0:111_0:86$ ip community-list expanded c25 permit 97 ^65000:3_0:112_0:87$ ip community-list expanded c25 permit 98 ^65000:3_0:113_0:88$ ip community-list expanded c25 permit 99 ^65000:3_0:114_0:89$ ip community-list expanded c25 permit 100 ^65000:3_0:115_0:90$ ip community-list expanded c25 permit 101 ^65000:3_0:116_0:91$ ip community-list expanded c25 permit 102 ^65000:3_0:117_0:92$ ip community-list expanded c25 permit 103 ^65000:3_0:118_0:93$ ip community-list expanded c25 permit 104 ^65000:3_0:119_0:94$ ip community-list expanded c25 permit 105 ^65000:3_0:120_0:95$ ip community-list expanded c25 permit 106 ^65000:3_0:121_0:96$ ip community-list expanded c25 permit 107 ^65000:3_0:122_0:97$ ip community-list expanded c25 permit 108 ^65000:3_0:123_0:98$ ip community-list expanded c25 permit 109 ^65000:3_0:124_0:99$ ip community-list expanded c25 permit 110 ^65000:4_0:125_0:5$ ip community-list expanded c25 permit 111 ^65000:3_0:125_0:100$ ip community-list expanded c25 permit 112 ^65000:4_0:126_0:5$ ip community-list expanded c25 permit 113 ^65000:3_0:126_0:101$ ip community-list expanded c25 permit 114 ^65000:4_0:127_0:5$ ip community-list expanded c25 permit 115 ^65000:3_0:127_0:102$ ip community-list expanded c25 permit 116 ^65000:4_0:128_0:5$ ip community-list expanded c25 permit 117 ^65000:3_0:128_0:103$ ip community-list expanded c25 permit 118 ^65000:4_0:129_0:5$ ip community-list expanded c25 permit 119 ^65000:3_0:129_0:104$ ip community-list expanded c25 permit 120 ^65000:3_0:130_0:105$ ip community-list expanded c25 permit 121 ^65000:3_0:131_0:106$ ip community-list expanded c25 permit 122 ^65000:3_0:132_0:107$ ip community-list expanded c25 permit 123 ^65000:3_0:133_0:108$ ip community-list expanded c25 permit 124 ^65000:3_0:134_0:109$ ip community-list expanded c25 permit 125 ^65000:3_0:135_0:110$ ip community-list expanded c25 permit 126 ^65000:3_0:136_0:111$ ip community-list expanded c25 permit 127 ^65000:3_0:137_0:112$ ip community-list expanded c25 permit 128 ^65000:3_0:138_0:113$ ip community-list expanded c25 permit 129 ^65000:3_0:139_0:114$ ip community-list expanded c25 permit 130 ^65000:3_0:140_0:115$ ip community-list expanded c25 permit 131 ^65000:3_0:141_0:116$ ip community-list expanded c25 permit 132 ^65000:3_0:142_0:117$ ip community-list expanded c25 permit 133 ^65000:3_0:143_0:118$ ip community-list expanded c25 permit 134 ^65000:3_0:144_0:119$ ip community-list expanded c25 permit 135 ^65000:3_0:145_0:120$ ip community-list expanded c25 permit 136 ^65000:3_0:146_0:121$ ip community-list expanded c25 permit 137 ^65000:3_0:147_0:122$ ip community-list expanded c25 permit 138 ^65000:3_0:148_0:123$ ip community-list expanded c25 permit 139 ^65000:3_0:149_0:124$ ip community-list expanded c25 permit 140 ^65000:4_0:150_0:6$ ip community-list expanded c25 permit 141 ^65000:3_0:150_0:125$ ip community-list expanded c25 permit 142 ^65000:4_0:151_0:6$ ip community-list expanded c25 permit 143 ^65000:3_0:151_0:126$ ip community-list expanded c25 permit 144 ^65000:4_0:152_0:6$ ip community-list expanded c25 permit 145 ^65000:3_0:152_0:127$ ip community-list expanded c25 permit 146 ^65000:4_0:153_0:6$ ip community-list expanded c25 permit 147 ^65000:3_0:153_0:128$ ip community-list expanded c25 permit 148 ^65000:4_0:154_0:6$ ip community-list expanded c25 permit 149 ^65000:3_0:154_0:129$ ip community-list expanded c25 permit 150 ^65000:4_0:155_0:6$ ip community-list expanded c25 permit 151 ^65000:3_0:155_0:130$ ip community-list expanded c25 permit 152 ^65000:3_0:156_0:131$ ip community-list expanded c25 permit 153 ^65000:3_0:157_0:132$ ip community-list expanded c25 permit 154 ^65000:3_0:158_0:133$ ip community-list expanded c25 permit 155 ^65000:3_0:159_0:134$ ip community-list expanded c25 permit 156 ^65000:3_0:160_0:135$ ip community-list expanded c25 permit 157 ^65000:3_0:161_0:136$ ip community-list expanded c25 permit 158 ^65000:3_0:162_0:137$ ip community-list expanded c25 permit 159 ^65000:3_0:163_0:138$ ip community-list expanded c25 permit 160 ^65000:3_0:164_0:139$ ip community-list expanded c25 permit 161 ^65000:3_0:165_0:140$ ip community-list expanded c25 permit 162 ^65000:3_0:166_0:141$ ip community-list expanded c25 permit 163 ^65000:3_0:167_0:142$ ip community-list expanded c25 permit 164 ^65000:3_0:168_0:143$ ip community-list expanded c25 permit 165 ^65000:3_0:169_0:144$ ip community-list expanded c25 permit 166 ^65000:3_0:170_0:145$ ip community-list expanded c25 permit 167 ^65000:3_0:171_0:146$ ip community-list expanded c25 permit 168 ^65000:3_0:172_0:147$ ip community-list expanded c25 permit 169 ^65000:3_0:173_0:148$ ip community-list expanded c25 permit 170 ^65000:3_0:174_0:149$ ip community-list expanded c25 permit 171 ^65000:4_0:175_0:7$ ip community-list expanded c25 permit 172 ^65000:3_0:175_0:150$ ip community-list expanded c25 permit 173 ^65000:4_0:176_0:7$ ip community-list expanded c25 permit 174 ^65000:3_0:176_0:151$ ip community-list expanded c25 permit 175 ^65000:4_0:177_0:7$ ip community-list expanded c25 permit 176 ^65000:3_0:177_0:152$ ip community-list expanded c25 permit 177 ^65000:4_0:178_0:7$ ip community-list expanded c25 permit 178 ^65000:3_0:178_0:153$ ip community-list expanded c25 permit 179 ^65000:4_0:179_0:7$ ip community-list expanded c25 permit 180 ^65000:3_0:179_0:154$ ip community-list expanded c25 permit 181 ^65000:4_0:180_0:7$ ip community-list expanded c25 permit 182 ^65000:3_0:180_0:155$ ip community-list expanded c25 permit 183 ^65000:4_0:181_0:7$ ip community-list expanded c25 permit 184 ^65000:3_0:181_0:156$ ip community-list expanded c25 permit 185 ^65000:3_0:182_0:157$ ip community-list expanded c25 permit 186 ^65000:3_0:183_0:158$ ip community-list expanded c25 permit 187 ^65000:3_0:184_0:159$ ip community-list expanded c25 permit 188 ^65000:3_0:185_0:160$ ip community-list expanded c25 permit 189 ^65000:3_0:186_0:161$ ip community-list expanded c25 permit 190 ^65000:3_0:187_0:162$ ip community-list expanded c25 permit 191 ^65000:3_0:188_0:163$ ip community-list expanded c25 permit 192 ^65000:3_0:189_0:164$ ip community-list expanded c25 permit 193 ^65000:3_0:190_0:165$ ip community-list expanded c25 permit 194 ^65000:3_0:191_0:166$ ip community-list expanded c25 permit 195 ^65000:3_0:192_0:167$ ip community-list expanded c25 permit 196 ^65000:3_0:193_0:168$ ip community-list expanded c25 permit 197 ^65000:3_0:194_0:169$ ip community-list expanded c25 permit 198 ^65000:3_0:195_0:170$ ip community-list expanded c25 permit 199 ^65000:3_0:196_0:171$ ip community-list expanded c25 permit 200 ^65000:3_0:197_0:172$ ip community-list expanded c25 permit 201 ^65000:3_0:198_0:173$ ip community-list expanded c25 permit 202 ^65000:3_0:199_0:174$ ip community-list expanded c25 permit 203 ^65000:4_0:200_0:8$ ip community-list expanded c25 permit 204 ^65000:3_0:200_0:175$ ip community-list expanded c25 permit 205 ^65000:4_0:201_0:8$ ip community-list expanded c25 permit 206 ^65000:3_0:201_0:176$ ip community-list expanded c25 permit 207 ^65000:4_0:202_0:8$ ip community-list expanded c25 permit 208 ^65000:3_0:202_0:177$ ip community-list expanded c25 permit 209 ^65000:4_0:203_0:8$ ip community-list expanded c25 permit 210 ^65000:3_0:203_0:178$ ip community-list expanded c25 permit 211 ^65000:4_0:204_0:8$ ip community-list expanded c25 permit 212 ^65000:3_0:204_0:179$ ip community-list expanded c25 permit 213 ^65000:4_0:205_0:8$ ip community-list expanded c25 permit 214 ^65000:3_0:205_0:180$ ip community-list expanded c25 permit 215 ^65000:4_0:206_0:8$ ip community-list expanded c25 permit 216 ^65000:3_0:206_0:181$ ip community-list expanded c25 permit 217 ^65000:4_0:207_0:8$ ip community-list expanded c25 permit 218 ^65000:3_0:207_0:182$ ip community-list expanded c25 permit 219 ^65000:3_0:208_0:183$ ip community-list expanded c25 permit 220 ^65000:3_0:209_0:184$ ip community-list expanded c25 permit 221 ^65000:3_0:210_0:185$ ip community-list expanded c25 permit 222 ^65000:3_0:211_0:186$ ip community-list expanded c25 permit 223 ^65000:3_0:212_0:187$ ip community-list expanded c25 permit 224 ^65000:3_0:213_0:188$ ip community-list expanded c25 permit 225 ^65000:3_0:214_0:189$ ip community-list expanded c25 permit 226 ^65000:3_0:215_0:190$ ip community-list expanded c25 permit 227 ^65000:3_0:216_0:191$ ip community-list expanded c25 permit 228 ^65000:3_0:217_0:192$ ip community-list expanded c25 permit 229 ^65000:3_0:218_0:193$ ip community-list expanded c25 permit 230 ^65000:3_0:219_0:194$ ip community-list expanded c25 permit 231 ^65000:3_0:220_0:195$ ip community-list expanded c25 permit 232 ^65000:3_0:221_0:196$ ip community-list expanded c25 permit 233 ^65000:3_0:222_0:197$ ip community-list expanded c25 permit 234 ^65000:3_0:223_0:198$ ip community-list expanded c25 permit 235 ^65000:3_0:224_0:199$ ip community-list expanded c25 permit 236 ^65000:4_0:225_0:9$ ip community-list expanded c25 permit 237 ^65000:3_0:225_0:200$ ip community-list expanded c25 permit 238 ^65000:4_0:226_0:9$ ip community-list expanded c25 permit 239 ^65000:3_0:226_0:201$ ip community-list expanded c25 permit 240 ^65000:4_0:227_0:9$ ip community-list expanded c25 permit 241 ^65000:3_0:227_0:202$ ip community-list expanded c25 permit 242 ^65000:4_0:228_0:9$ ip community-list expanded c25 permit 243 ^65000:3_0:228_0:203$ ip community-list expanded c25 permit 244 ^65000:4_0:229_0:9$ ip community-list expanded c25 permit 245 ^65000:3_0:229_0:204$ ip community-list expanded c25 permit 246 ^65000:4_0:230_0:9$ ip community-list expanded c25 permit 247 ^65000:3_0:230_0:205$ ip community-list expanded c25 permit 248 ^65000:4_0:231_0:9$ ip community-list expanded c25 permit 249 ^65000:3_0:231_0:206$ ip community-list expanded c25 permit 250 ^65000:4_0:232_0:9$ ip community-list expanded c25 permit 251 ^65000:3_0:232_0:207$ ip community-list expanded c25 permit 252 ^65000:4_0:233_0:9$ ip community-list expanded c25 permit 253 ^65000:3_0:233_0:208$ ip community-list expanded c25 permit 254 ^65000:3_0:234_0:209$ ip community-list expanded c25 permit 255 ^65000:3_0:235_0:210$ ip community-list expanded c25 permit 256 ^65000:3_0:236_0:211$ ip community-list expanded c25 permit 257 ^65000:3_0:237_0:212$ ip community-list expanded c25 permit 258 ^65000:3_0:238_0:213$ ip community-list expanded c25 permit 259 ^65000:3_0:239_0:214$ ip community-list expanded c25 permit 260 ^65000:3_0:240_0:215$ ip community-list expanded c25 permit 261 ^65000:3_0:241_0:216$ ip community-list expanded c25 permit 262 ^65000:3_0:242_0:217$ ip community-list expanded c25 permit 263 ^65000:3_0:243_0:218$ ip community-list expanded c25 permit 264 ^65000:3_0:244_0:219$ ip community-list expanded c25 permit 265 ^65000:3_0:245_0:220$ ip community-list expanded c25 permit 266 ^65000:3_0:246_0:221$ ip community-list expanded c25 permit 267 ^65000:3_0:247_0:222$ ip community-list expanded c25 permit 268 ^65000:3_0:248_0:223$ ip community-list expanded c25 permit 269 ^65000:3_0:249_0:224$ ip community-list expanded c25 permit 270 ^65000:4_0:250_0:10$ ip community-list expanded c25 permit 271 ^65000:3_0:250_0:225$ ip community-list expanded c25 permit 272 ^65000:4_0:251_0:10$ ip community-list expanded c25 permit 273 ^65000:3_0:251_0:226$ ip community-list expanded c25 permit 274 ^65000:4_0:252_0:10$ ip community-list expanded c25 permit 275 ^65000:3_0:252_0:227$ ip community-list expanded c25 permit 276 ^65000:4_0:253_0:10$ ip community-list expanded c25 permit 277 ^65000:3_0:253_0:228$ ip community-list expanded c25 permit 278 ^65000:4_0:254_0:10$ ip community-list expanded c25 permit 279 ^65000:3_0:254_0:229$ ip community-list expanded c25 permit 280 ^65000:4_0:255_0:10$ ip community-list expanded c25 permit 281 ^65000:3_0:255_0:230$ ip community-list expanded c25 permit 282 ^65000:4_0:256_0:10$ ip community-list expanded c25 permit 283 ^65000:3_0:256_0:231$ route-map calculator permit 3594 match community 1_1_24 2_1_25 1_2_23 1_3_22 1_4_21 set community 0:25 route-map calculator permit 3595 match community 2_5_5 1_5_20 1_6_19 1_7_18 1_8_17 set community 0:25 route-map calculator permit 3596 match community 1_9_16 1_10_15 1_11_14 1_12_13 c4_25_1 set community 0:25 route-map calculator permit 3597 match community c3_26_1 c3_27_2 c3_28_3 c3_29_4 c3_30_5 set community 0:25 route-map calculator permit 3598 match community c3_31_6 c3_32_7 c3_33_8 c3_34_9 c3_35_10 set community 0:25 route-map calculator permit 3599 match community c3_36_11 c3_37_12 c3_38_13 c3_39_14 c3_40_15 set community 0:25 route-map calculator permit 3600 match community c3_41_16 c3_42_17 c3_43_18 c3_44_19 c3_45_20 set community 0:25 route-map calculator permit 3601 match community c3_46_21 c3_47_22 c3_48_23 c3_49_24 c4_50_2 set community 0:25 route-map calculator permit 3602 match community c3_50_25 c4_51_2 c3_51_26 c3_52_27 c3_53_28 set community 0:25 route-map calculator permit 3603 match community c3_54_29 c3_55_30 c3_56_31 c3_57_32 c3_58_33 set community 0:25 route-map calculator permit 3604 match community c3_59_34 c3_60_35 c3_61_36 c3_62_37 c3_63_38 set community 0:25 route-map calculator permit 3605 match community c3_64_39 c3_65_40 c3_66_41 c3_67_42 c3_68_43 set community 0:25 route-map calculator permit 3606 match community c3_69_44 c3_70_45 c3_71_46 c3_72_47 c3_73_48 set community 0:25 route-map calculator permit 3607 match community c3_74_49 c4_75_3 c3_75_50 c4_76_3 c3_76_51 set community 0:25 route-map calculator permit 3608 match community c4_77_3 c3_77_52 c3_78_53 c3_79_54 c3_80_55 set community 0:25 route-map calculator permit 3609 match community c3_81_56 c3_82_57 c3_83_58 c3_84_59 c3_85_60 set community 0:25 route-map calculator permit 3610 match community c3_86_61 c3_87_62 c3_88_63 c3_89_64 c3_90_65 set community 0:25 route-map calculator permit 3611 match community c3_91_66 c3_92_67 c3_93_68 c3_94_69 c3_95_70 set community 0:25 route-map calculator permit 3612 match community c3_96_71 c3_97_72 c3_98_73 c3_99_74 c4_100_4 set community 0:25 route-map calculator permit 3613 match community c3_100_75 c4_101_4 c3_101_76 c4_102_4 c3_102_77 set community 0:25 route-map calculator permit 3614 match community c4_103_4 c3_103_78 c3_104_79 c3_105_80 c3_106_81 set community 0:25 route-map calculator permit 3615 match community c3_107_82 c3_108_83 c3_109_84 c3_110_85 c3_111_86 set community 0:25 route-map calculator permit 3616 match community c3_112_87 c3_113_88 c3_114_89 c3_115_90 c3_116_91 set community 0:25 route-map calculator permit 3617 match community c3_117_92 c3_118_93 c3_119_94 c3_120_95 c3_121_96 set community 0:25 route-map calculator permit 3618 match community c3_122_97 c3_123_98 c3_124_99 c4_125_5 c3_125_100 set community 0:25 route-map calculator permit 3619 match community c4_126_5 c3_126_101 c4_127_5 c3_127_102 c4_128_5 set community 0:25 route-map calculator permit 3620 match community c3_128_103 c4_129_5 c3_129_104 c3_130_105 c3_131_106 set community 0:25 route-map calculator permit 3621 match community c3_132_107 c3_133_108 c3_134_109 c3_135_110 c3_136_111 set community 0:25 route-map calculator permit 3622 match community c3_137_112 c3_138_113 c3_139_114 c3_140_115 c3_141_116 set community 0:25 route-map calculator permit 3623 match community c3_142_117 c3_143_118 c3_144_119 c3_145_120 c3_146_121 set community 0:25 route-map calculator permit 3624 match community c3_147_122 c3_148_123 c3_149_124 c4_150_6 c3_150_125 set community 0:25 route-map calculator permit 3625 match community c4_151_6 c3_151_126 c4_152_6 c3_152_127 c4_153_6 set community 0:25 route-map calculator permit 3626 match community c3_153_128 c4_154_6 c3_154_129 c4_155_6 c3_155_130 set community 0:25 route-map calculator permit 3627 match community c3_156_131 c3_157_132 c3_158_133 c3_159_134 c3_160_135 set community 0:25 route-map calculator permit 3628 match community c3_161_136 c3_162_137 c3_163_138 c3_164_139 c3_165_140 set community 0:25 route-map calculator permit 3629 match community c3_166_141 c3_167_142 c3_168_143 c3_169_144 c3_170_145 set community 0:25 route-map calculator permit 3630 match community c3_171_146 c3_172_147 c3_173_148 c3_174_149 c4_175_7 set community 0:25 route-map calculator permit 3631 match community c3_175_150 c4_176_7 c3_176_151 c4_177_7 c3_177_152 set community 0:25 route-map calculator permit 3632 match community c4_178_7 c3_178_153 c4_179_7 c3_179_154 c4_180_7 set community 0:25 route-map calculator permit 3633 match community c3_180_155 c4_181_7 c3_181_156 c3_182_157 c3_183_158 set community 0:25 route-map calculator permit 3634 match community c3_184_159 c3_185_160 c3_186_161 c3_187_162 c3_188_163 set community 0:25 route-map calculator permit 3635 match community c3_189_164 c3_190_165 c3_191_166 c3_192_167 c3_193_168 set community 0:25 route-map calculator permit 3636 match community c3_194_169 c3_195_170 c3_196_171 c3_197_172 c3_198_173 set community 0:25 route-map calculator permit 3637 match community c3_199_174 c4_200_8 c3_200_175 c4_201_8 c3_201_176 set community 0:25 route-map calculator permit 3638 match community c4_202_8 c3_202_177 c4_203_8 c3_203_178 c4_204_8 set community 0:25 route-map calculator permit 3639 match community c3_204_179 c4_205_8 c3_205_180 c4_206_8 c3_206_181 set community 0:25 route-map calculator permit 3640 match community c4_207_8 c3_207_182 c3_208_183 c3_209_184 c3_210_185 set community 0:25 route-map calculator permit 3641 match community c3_211_186 c3_212_187 c3_213_188 c3_214_189 c3_215_190 set community 0:25 route-map calculator permit 3642 match community c3_216_191 c3_217_192 c3_218_193 c3_219_194 c3_220_195 set community 0:25 route-map calculator permit 3643 match community c3_221_196 c3_222_197 c3_223_198 c3_224_199 c4_225_9 set community 0:25 route-map calculator permit 3644 match community c3_225_200 c4_226_9 c3_226_201 c4_227_9 c3_227_202 set community 0:25 route-map calculator permit 3645 match community c4_228_9 c3_228_203 c4_229_9 c3_229_204 c4_230_9 set community 0:25 route-map calculator permit 3646 match community c3_230_205 c4_231_9 c3_231_206 c4_232_9 c3_232_207 set community 0:25 route-map calculator permit 3647 match community c4_233_9 c3_233_208 c3_234_209 c3_235_210 c3_236_211 set community 0:25 route-map calculator permit 3648 match community c3_237_212 c3_238_213 c3_239_214 c3_240_215 c3_241_216 set community 0:25 route-map calculator permit 3649 match community c3_242_217 c3_243_218 c3_244_219 c3_245_220 c3_246_221 set community 0:25 route-map calculator permit 3650 match community c3_247_222 c3_248_223 c3_249_224 c4_250_10 c3_250_225 set community 0:25 route-map calculator permit 3651 match community c4_251_10 c3_251_226 c4_252_10 c3_252_227 c4_253_10 set community 0:25 route-map calculator permit 3652 match community c3_253_228 c4_254_10 c3_254_229 c4_255_10 c3_255_230 set community 0:25 route-map calculator permit 3653 match community c4_256_10 c3_256_231 set community 0:25 ip community-list standard 2_53_133 permit 65000:2 0:53 0:133 route-map calculator permit 3654 match community 2_53_133 set community 0:7049 ip community-list standard 2_132_191 permit 65000:2 0:132 0:191 route-map calculator permit 3655 match community 2_132_191 set community 0:25212 ip community-list standard 2_197_201 permit 65000:2 0:197 0:201 route-map calculator permit 3656 match community 2_197_201 set community 0:39597 ip community-list standard 2_121_242 permit 65000:2 0:121 0:242 route-map calculator permit 3657 match community 2_121_242 set community 0:29282 ip community-list standard 2_184_238 permit 65000:2 0:184 0:238 route-map calculator permit 3658 match community 2_184_238 set community 0:43792 ip community-list standard 2_229_229 permit 65000:2 0:229 0:229 route-map calculator permit 3659 match community 2_229_229 set community 0:52441 ip community-list standard 2_83_194 permit 65000:2 0:83 0:194 ip community-list standard 2_97_166 permit 65000:2 0:97 0:166 route-map calculator permit 3660 match community 2_83_194 2_97_166 set community 0:16102 ip community-list standard 2_186_194 permit 65000:2 0:186 0:194 route-map calculator permit 3661 match community 2_186_194 set community 0:36084 ip community-list standard 2_99_177 permit 65000:2 0:99 0:177 route-map calculator permit 3662 match community 2_99_177 set community 0:17523 ip community-list standard 2_81_137 permit 65000:2 0:81 0:137 route-map calculator permit 3663 match community 2_81_137 set community 0:11097 ip community-list standard 2_220_237 permit 65000:2 0:220 0:237 route-map calculator permit 3664 match community 2_220_237 set community 0:52140 ip community-list standard 2_21_206 permit 65000:2 0:21 0:206 ip community-list standard 2_42_103 permit 65000:2 0:42 0:103 route-map calculator permit 3665 match community 2_21_206 2_42_103 set community 0:4326 ip community-list standard 2_133_223 permit 65000:2 0:133 0:223 route-map calculator permit 3666 match community 2_133_223 set community 0:29659 ip community-list standard 2_58_166 permit 65000:2 0:58 0:166 ip community-list standard 2_83_116 permit 65000:2 0:83 0:116 route-map calculator permit 3667 match community 2_58_166 2_83_116 set community 0:9628 ip community-list standard 2_7_97 permit 65000:2 0:7 0:97 route-map calculator permit 3668 match community 2_7_97 set community 0:679 ip community-list standard 2_9_232 permit 65000:2 0:9 0:232 ip community-list standard 2_12_174 permit 65000:2 0:12 0:174 ip community-list standard 2_18_116 permit 65000:2 0:18 0:116 ip community-list standard 2_24_87 permit 65000:2 0:24 0:87 ip community-list standard 2_29_72 permit 65000:2 0:29 0:72 ip community-list standard 2_36_58 permit 65000:2 0:36 0:58 route-map calculator permit 3669 match community 2_9_232 2_12_174 2_18_116 2_24_87 2_29_72 set community 0:2088 route-map calculator permit 3670 match community 2_36_58 set community 0:2088 ip community-list standard 2_136_254 permit 65000:2 0:136 0:254 route-map calculator permit 3671 match community 2_136_254 set community 0:34544 ip community-list standard 2_83_182 permit 65000:2 0:83 0:182 ip community-list standard 2_91_166 permit 65000:2 0:91 0:166 route-map calculator permit 3672 match community 2_83_182 2_91_166 set community 0:15106 ip community-list standard 2_5_134 permit 65000:2 0:5 0:134 ip community-list standard 2_10_67 permit 65000:2 0:10 0:67 route-map calculator permit 3673 match community 2_5_134 2_10_67 set community 0:670 ip community-list standard 2_129_247 permit 65000:2 0:129 0:247 route-map calculator permit 3674 match community 2_129_247 set community 0:31863 ip community-list standard 2_146_245 permit 65000:2 0:146 0:245 route-map calculator permit 3675 match community 2_146_245 set community 0:35770 ip community-list standard 2_73_246 permit 65000:2 0:73 0:246 ip community-list standard 2_82_219 permit 65000:2 0:82 0:219 ip community-list standard 2_123_146 permit 65000:2 0:123 0:146 route-map calculator permit 3676 match community 2_73_246 2_82_219 2_123_146 set community 0:17958 ip community-list standard 2_169_175 permit 65000:2 0:169 0:175 route-map calculator permit 3677 match community 2_169_175 set community 0:29575 ip community-list standard 2_4_213 permit 65000:2 0:4 0:213 ip community-list standard 2_6_142 permit 65000:2 0:6 0:142 ip community-list standard 2_12_71 permit 65000:2 0:12 0:71 route-map calculator permit 3678 match community 2_4_213 2_6_142 2_12_71 set community 0:852 ip community-list standard 2_8_163 permit 65000:2 0:8 0:163 route-map calculator permit 3679 match community 2_8_163 set community 0:1304 ip community-list standard 2_80_137 permit 65000:2 0:80 0:137 route-map calculator permit 3680 match community 2_80_137 set community 0:10960 ip community-list standard 2_120_256 permit 65000:2 0:120 0:256 ip community-list standard 2_128_240 permit 65000:2 0:128 0:240 ip community-list standard 2_160_192 permit 65000:2 0:160 0:192 route-map calculator permit 3681 match community 2_120_256 2_128_240 2_160_192 set community 0:30720 ip community-list standard 2_50_149 permit 65000:2 0:50 0:149 route-map calculator permit 3682 match community 2_50_149 set community 0:7450 ip community-list standard 2_8_213 permit 65000:2 0:8 0:213 ip community-list standard 2_12_142 permit 65000:2 0:12 0:142 ip community-list standard 2_24_71 permit 65000:2 0:24 0:71 route-map calculator permit 3683 match community 2_8_213 2_12_142 2_24_71 set community 0:1704 ip community-list standard 2_115_252 permit 65000:2 0:115 0:252 ip community-list standard 2_126_230 permit 65000:2 0:126 0:230 ip community-list standard 2_138_210 permit 65000:2 0:138 0:210 ip community-list standard 2_140_207 permit 65000:2 0:140 0:207 ip community-list standard 2_161_180 permit 65000:2 0:161 0:180 route-map calculator permit 3684 match community 2_115_252 2_126_230 2_138_210 2_140_207 2_161_180 set community 0:28980 ip community-list standard 2_127_253 permit 65000:2 0:127 0:253 route-map calculator permit 3685 match community 2_127_253 set community 0:32131 ip community-list standard 2_46_229 permit 65000:2 0:46 0:229 route-map calculator permit 3686 match community 2_46_229 set community 0:10534 ip community-list standard 2_15_183 permit 65000:2 0:15 0:183 ip community-list standard 2_45_61 permit 65000:2 0:45 0:61 route-map calculator permit 3687 match community 2_15_183 2_45_61 set community 0:2745 ip community-list standard 2_132_197 permit 65000:2 0:132 0:197 route-map calculator permit 3688 match community 2_132_197 set community 0:26004 ip community-list standard 2_20_155 permit 65000:2 0:20 0:155 ip community-list standard 2_25_124 permit 65000:2 0:25 0:124 ip community-list standard 2_31_100 permit 65000:2 0:31 0:100 ip community-list standard 2_50_62 permit 65000:2 0:50 0:62 route-map calculator permit 3689 match community 2_20_155 2_25_124 2_31_100 2_50_62 set community 0:3100 ip community-list standard 1_211_256 permit 65000:1 0:211 0:256 ip community-list standard 1_212_255 permit 65000:1 0:212 0:255 ip community-list standard 1_213_254 permit 65000:1 0:213 0:254 ip community-list standard 1_214_253 permit 65000:1 0:214 0:253 ip community-list standard 1_215_252 permit 65000:1 0:215 0:252 ip community-list standard 1_216_251 permit 65000:1 0:216 0:251 ip community-list standard 1_217_250 permit 65000:1 0:217 0:250 ip community-list standard 1_218_249 permit 65000:1 0:218 0:249 ip community-list standard 1_219_248 permit 65000:1 0:219 0:248 ip community-list standard 1_220_247 permit 65000:1 0:220 0:247 ip community-list standard 1_221_246 permit 65000:1 0:221 0:246 ip community-list standard 1_222_245 permit 65000:1 0:222 0:245 ip community-list standard 1_223_244 permit 65000:1 0:223 0:244 ip community-list standard 1_224_243 permit 65000:1 0:224 0:243 ip community-list standard 1_225_242 permit 65000:1 0:225 0:242 ip community-list standard 1_226_241 permit 65000:1 0:226 0:241 ip community-list standard 1_227_240 permit 65000:1 0:227 0:240 ip community-list standard 1_228_239 permit 65000:1 0:228 0:239 ip community-list standard 1_229_238 permit 65000:1 0:229 0:238 ip community-list standard 1_230_237 permit 65000:1 0:230 0:237 ip community-list standard 1_231_236 permit 65000:1 0:231 0:236 ip community-list standard 1_232_235 permit 65000:1 0:232 0:235 ip community-list standard 1_233_234 permit 65000:1 0:233 0:234 route-map calculator permit 3690 match community 1_211_256 1_212_255 1_213_254 1_214_253 1_215_252 set community 0:467 route-map calculator permit 3691 match community 1_216_251 1_217_250 1_218_249 1_219_248 1_220_247 set community 0:467 route-map calculator permit 3692 match community 1_221_246 1_222_245 1_223_244 1_224_243 1_225_242 set community 0:467 route-map calculator permit 3693 match community 1_226_241 1_227_240 1_228_239 1_229_238 1_230_237 set community 0:467 route-map calculator permit 3694 match community 1_231_236 1_232_235 1_233_234 set community 0:467 ip community-list standard 2_163_222 permit 65000:2 0:163 0:222 route-map calculator permit 3695 match community 2_163_222 set community 0:36186 ip community-list standard 2_190_190 permit 65000:2 0:190 0:190 route-map calculator permit 3696 match community 2_190_190 set community 0:36100 ip community-list standard 2_253_255 permit 65000:2 0:253 0:255 route-map calculator permit 3697 match community 2_253_255 set community 0:64515 ip community-list standard 2_146_155 permit 65000:2 0:146 0:155 route-map calculator permit 3698 match community 2_146_155 set community 0:22630 ip community-list standard 2_152_152 permit 65000:2 0:152 0:152 route-map calculator permit 3699 match community 2_152_152 set community 0:23104 ip community-list standard 2_73_151 permit 65000:2 0:73 0:151 route-map calculator permit 3700 match community 2_73_151 set community 0:11023 ip community-list standard 2_178_234 permit 65000:2 0:178 0:234 route-map calculator permit 3701 match community 2_178_234 set community 0:41652 ip community-list standard 2_202_243 permit 65000:2 0:202 0:243 route-map calculator permit 3702 match community 2_202_243 set community 0:49086 ip community-list standard 2_15_219 permit 65000:2 0:15 0:219 ip community-list standard 2_45_73 permit 65000:2 0:45 0:73 route-map calculator permit 3703 match community 2_15_219 2_45_73 set community 0:3285 ip community-list standard 2_22_226 permit 65000:2 0:22 0:226 ip community-list standard 2_44_113 permit 65000:2 0:44 0:113 route-map calculator permit 3704 match community 2_22_226 2_44_113 set community 0:4972 ip community-list standard 2_229_251 permit 65000:2 0:229 0:251 route-map calculator permit 3705 match community 2_229_251 set community 0:57479 ip community-list standard 2_228_242 permit 65000:2 0:228 0:242 route-map calculator permit 3706 match community 2_228_242 set community 0:55176 ip community-list standard 2_247_254 permit 65000:2 0:247 0:254 route-map calculator permit 3707 match community 2_247_254 set community 0:62738 ip community-list standard 2_149_159 permit 65000:2 0:149 0:159 route-map calculator permit 3708 match community 2_149_159 set community 0:23691 ip community-list standard 2_75_193 permit 65000:2 0:75 0:193 route-map calculator permit 3709 match community 2_75_193 set community 0:14475 ip community-list standard 2_21_151 permit 65000:2 0:21 0:151 route-map calculator permit 3710 match community 2_21_151 set community 0:3171 ip community-list standard 2_63_193 permit 65000:2 0:63 0:193 route-map calculator permit 3711 match community 2_63_193 set community 0:12159 ip community-list standard 2_142_236 permit 65000:2 0:142 0:236 route-map calculator permit 3712 match community 2_142_236 set community 0:33512 ip community-list standard 2_151_201 permit 65000:2 0:151 0:201 route-map calculator permit 3713 match community 2_151_201 set community 0:30351 ip community-list standard 2_134_245 permit 65000:2 0:134 0:245 route-map calculator permit 3714 match community 2_134_245 set community 0:32830 ip community-list standard 2_167_248 permit 65000:2 0:167 0:248 route-map calculator permit 3715 match community 2_167_248 set community 0:41416 ip community-list standard 2_58_243 permit 65000:2 0:58 0:243 ip community-list standard 2_81_174 permit 65000:2 0:81 0:174 ip community-list standard 2_87_162 permit 65000:2 0:87 0:162 route-map calculator permit 3716 match community 2_58_243 2_81_174 2_87_162 set community 0:14094 ip community-list standard 2_131_237 permit 65000:2 0:131 0:237 route-map calculator permit 3717 match community 2_131_237 set community 0:31047 ip community-list standard 2_81_230 permit 65000:2 0:81 0:230 ip community-list standard 2_90_207 permit 65000:2 0:90 0:207 ip community-list standard 2_115_162 permit 65000:2 0:115 0:162 ip community-list standard 2_135_138 permit 65000:2 0:135 0:138 route-map calculator permit 3718 match community 2_81_230 2_90_207 2_115_162 2_135_138 set community 0:18630 ip community-list standard 2_59_225 permit 65000:2 0:59 0:225 ip community-list standard 2_75_177 permit 65000:2 0:75 0:177 route-map calculator permit 3719 match community 2_59_225 2_75_177 set community 0:13275 ip community-list standard 2_178_212 permit 65000:2 0:178 0:212 route-map calculator permit 3720 match community 2_178_212 set community 0:37736 ip community-list standard 2_146_179 permit 65000:2 0:146 0:179 route-map calculator permit 3721 match community 2_146_179 set community 0:26134 ip community-list standard 2_160_233 permit 65000:2 0:160 0:233 route-map calculator permit 3722 match community 2_160_233 set community 0:37280 ip community-list standard 2_30_178 permit 65000:2 0:30 0:178 ip community-list standard 2_60_89 permit 65000:2 0:60 0:89 route-map calculator permit 3723 match community 2_30_178 2_60_89 set community 0:5340 ip community-list standard 2_121_251 permit 65000:2 0:121 0:251 route-map calculator permit 3724 match community 2_121_251 set community 0:30371 ip community-list standard 2_43_244 permit 65000:2 0:43 0:244 ip community-list standard 2_61_172 permit 65000:2 0:61 0:172 ip community-list standard 2_86_122 permit 65000:2 0:86 0:122 route-map calculator permit 3725 match community 2_43_244 2_61_172 2_86_122 set community 0:10492 ip community-list standard 2_19_224 permit 65000:2 0:19 0:224 ip community-list standard 2_28_152 permit 65000:2 0:28 0:152 ip community-list standard 2_32_133 permit 65000:2 0:32 0:133 ip community-list standard 2_38_112 permit 65000:2 0:38 0:112 ip community-list standard 2_56_76 permit 65000:2 0:56 0:76 route-map calculator permit 3726 match community 2_19_224 2_28_152 2_32_133 2_38_112 2_56_76 set community 0:4256 ip community-list standard 2_232_236 permit 65000:2 0:232 0:236 route-map calculator permit 3727 match community 2_232_236 set community 0:54752 ip community-list standard 2_41_101 permit 65000:2 0:41 0:101 route-map calculator permit 3728 match community 2_41_101 set community 0:4141 ip community-list standard 2_11_172 permit 65000:2 0:11 0:172 ip community-list standard 2_22_86 permit 65000:2 0:22 0:86 ip community-list standard 2_43_44 permit 65000:2 0:43 0:44 route-map calculator permit 3729 match community 2_11_172 2_22_86 2_43_44 set community 0:1892 ip community-list standard 2_204_256 permit 65000:2 0:204 0:256 route-map calculator permit 3730 match community 2_204_256 set community 0:52224 ip community-list standard 2_196_251 permit 65000:2 0:196 0:251 route-map calculator permit 3731 match community 2_196_251 set community 0:49196 ip community-list standard 2_44_173 permit 65000:2 0:44 0:173 route-map calculator permit 3732 match community 2_44_173 set community 0:7612 ip community-list standard 2_119_171 permit 65000:2 0:119 0:171 ip community-list standard 2_133_153 permit 65000:2 0:133 0:153 route-map calculator permit 3733 match community 2_119_171 2_133_153 set community 0:20349 ip community-list standard 2_181_216 permit 65000:2 0:181 0:216 route-map calculator permit 3734 match community 2_181_216 set community 0:39096 ip community-list standard 2_179_224 permit 65000:2 0:179 0:224 route-map calculator permit 3735 match community 2_179_224 set community 0:40096 ip community-list standard 2_19_218 permit 65000:2 0:19 0:218 ip community-list standard 2_38_109 permit 65000:2 0:38 0:109 route-map calculator permit 3736 match community 2_19_218 2_38_109 set community 0:4142 ip community-list standard 2_37_49 permit 65000:2 0:37 0:49 route-map calculator permit 3737 match community 2_37_49 set community 0:1813 ip community-list standard 2_121_193 permit 65000:2 0:121 0:193 route-map calculator permit 3738 match community 2_121_193 set community 0:23353 ip community-list standard 2_18_252 permit 65000:2 0:18 0:252 ip community-list standard 2_21_216 permit 65000:2 0:21 0:216 ip community-list standard 2_24_189 permit 65000:2 0:24 0:189 ip community-list standard 2_27_168 permit 65000:2 0:27 0:168 ip community-list standard 2_28_162 permit 65000:2 0:28 0:162 ip community-list standard 2_36_126 permit 65000:2 0:36 0:126 ip community-list standard 2_42_108 permit 65000:2 0:42 0:108 ip community-list standard 2_54_84 permit 65000:2 0:54 0:84 ip community-list standard 2_56_81 permit 65000:2 0:56 0:81 ip community-list standard 2_63_72 permit 65000:2 0:63 0:72 route-map calculator permit 3739 match community 2_18_252 2_21_216 2_24_189 2_27_168 2_28_162 set community 0:4536 route-map calculator permit 3740 match community 2_36_126 2_42_108 2_54_84 2_56_81 2_63_72 set community 0:4536 ip community-list standard 2_34_221 permit 65000:2 0:34 0:221 route-map calculator permit 3741 match community 2_34_221 set community 0:7514 ip community-list standard 2_4_212 permit 65000:2 0:4 0:212 ip community-list standard 2_8_106 permit 65000:2 0:8 0:106 ip community-list standard 2_16_53 permit 65000:2 0:16 0:53 route-map calculator permit 3742 match community 2_4_212 2_8_106 2_16_53 set community 0:848 ip community-list standard 2_123_256 permit 65000:2 0:123 0:256 ip community-list standard 2_128_246 permit 65000:2 0:128 0:246 ip community-list standard 2_164_192 permit 65000:2 0:164 0:192 route-map calculator permit 3743 match community 2_123_256 2_128_246 2_164_192 set community 0:31488 ip community-list standard 2_143_181 permit 65000:2 0:143 0:181 route-map calculator permit 3744 match community 2_143_181 set community 0:25883 ip community-list standard 2_26_199 permit 65000:2 0:26 0:199 route-map calculator permit 3745 match community 2_26_199 set community 0:5174 ip community-list standard 2_74_143 permit 65000:2 0:74 0:143 route-map calculator permit 3746 match community 2_74_143 set community 0:10582 ip community-list standard 2_219_234 permit 65000:2 0:219 0:234 route-map calculator permit 3747 match community 2_219_234 set community 0:51246 ip community-list standard 2_97_216 permit 65000:2 0:97 0:216 ip community-list standard 2_108_194 permit 65000:2 0:108 0:194 route-map calculator permit 3748 match community 2_97_216 2_108_194 set community 0:20952 ip community-list standard 2_247_251 permit 65000:2 0:247 0:251 route-map calculator permit 3749 match community 2_247_251 set community 0:61997 ip community-list standard 2_105_254 permit 65000:2 0:105 0:254 ip community-list standard 2_127_210 permit 65000:2 0:127 0:210 route-map calculator permit 3750 match community 2_105_254 2_127_210 set community 0:26670 ip community-list standard 2_187_203 permit 65000:2 0:187 0:203 route-map calculator permit 3751 match community 2_187_203 set community 0:37961 ip community-list standard 2_53_103 permit 65000:2 0:53 0:103 route-map calculator permit 3752 match community 2_53_103 set community 0:5459 ip community-list standard 2_221_223 permit 65000:2 0:221 0:223 route-map calculator permit 3753 match community 2_221_223 set community 0:49283 ip community-list standard 2_208_245 permit 65000:2 0:208 0:245 route-map calculator permit 3754 match community 2_208_245 set community 0:50960 ip community-list standard 2_164_173 permit 65000:2 0:164 0:173 route-map calculator permit 3755 match community 2_164_173 set community 0:28372 ip community-list standard 2_249_254 permit 65000:2 0:249 0:254 route-map calculator permit 3756 match community 2_249_254 set community 0:63246 ip community-list standard 2_43_71 permit 65000:2 0:43 0:71 route-map calculator permit 3757 match community 2_43_71 set community 0:3053 ip community-list standard 2_11_143 permit 65000:2 0:11 0:143 ip community-list standard 2_13_121 permit 65000:2 0:13 0:121 route-map calculator permit 3758 match community 2_11_143 2_13_121 set community 0:1573 ip community-list standard 2_52_253 permit 65000:2 0:52 0:253 ip community-list standard 2_92_143 permit 65000:2 0:92 0:143 route-map calculator permit 3759 match community 2_52_253 2_92_143 set community 0:13156 ip community-list standard 2_167_183 permit 65000:2 0:167 0:183 route-map calculator permit 3760 match community 2_167_183 set community 0:30561 ip community-list standard 2_14_213 permit 65000:2 0:14 0:213 ip community-list standard 2_21_142 permit 65000:2 0:21 0:142 ip community-list standard 2_42_71 permit 65000:2 0:42 0:71 route-map calculator permit 3761 match community 2_14_213 2_21_142 2_42_71 set community 0:2982 ip community-list standard 2_193_231 permit 65000:2 0:193 0:231 route-map calculator permit 3762 match community 2_193_231 set community 0:44583 ip community-list standard 2_201_244 permit 65000:2 0:201 0:244 route-map calculator permit 3763 match community 2_201_244 set community 0:49044 ip community-list standard 2_91_189 permit 65000:2 0:91 0:189 ip community-list standard 2_117_147 permit 65000:2 0:117 0:147 route-map calculator permit 3764 match community 2_91_189 2_117_147 set community 0:17199 ip community-list standard 2_131_247 permit 65000:2 0:131 0:247 route-map calculator permit 3765 match community 2_131_247 set community 0:32357 ip community-list standard 2_21_182 permit 65000:2 0:21 0:182 ip community-list standard 2_26_147 permit 65000:2 0:26 0:147 ip community-list standard 2_39_98 permit 65000:2 0:39 0:98 ip community-list standard 2_42_91 permit 65000:2 0:42 0:91 ip community-list standard 2_49_78 permit 65000:2 0:49 0:78 route-map calculator permit 3766 match community 2_21_182 2_26_147 2_39_98 2_42_91 2_49_78 set community 0:3822 ip community-list standard 2_11_250 permit 65000:2 0:11 0:250 ip community-list standard 2_22_125 permit 65000:2 0:22 0:125 ip community-list standard 2_25_110 permit 65000:2 0:25 0:110 ip community-list standard 2_50_55 permit 65000:2 0:50 0:55 route-map calculator permit 3767 match community 2_11_250 2_22_125 2_25_110 2_50_55 set community 0:2750 ip community-list standard 2_92_243 permit 65000:2 0:92 0:243 ip community-list standard 2_108_207 permit 65000:2 0:108 0:207 ip community-list standard 2_138_162 permit 65000:2 0:138 0:162 route-map calculator permit 3768 match community 2_92_243 2_108_207 2_138_162 set community 0:22356 ip community-list standard 2_198_218 permit 65000:2 0:198 0:218 route-map calculator permit 3769 match community 2_198_218 set community 0:43164 ip community-list standard 2_130_232 permit 65000:2 0:130 0:232 ip community-list standard 2_145_208 permit 65000:2 0:145 0:208 route-map calculator permit 3770 match community 2_130_232 2_145_208 set community 0:30160 ip community-list standard 2_187_253 permit 65000:2 0:187 0:253 route-map calculator permit 3771 match community 2_187_253 set community 0:47311 ip community-list standard 2_91_223 permit 65000:2 0:91 0:223 route-map calculator permit 3772 match community 2_91_223 set community 0:20293 ip community-list standard 2_144_157 permit 65000:2 0:144 0:157 route-map calculator permit 3773 match community 2_144_157 set community 0:22608 ip community-list standard 2_114_235 permit 65000:2 0:114 0:235 ip community-list standard 2_141_190 permit 65000:2 0:141 0:190 route-map calculator permit 3774 match community 2_114_235 2_141_190 set community 0:26790 ip community-list standard 2_240_247 permit 65000:2 0:240 0:247 route-map calculator permit 3775 match community 2_240_247 set community 0:59280 ip community-list standard 2_136_242 permit 65000:2 0:136 0:242 ip community-list standard 2_176_187 permit 65000:2 0:176 0:187 route-map calculator permit 3776 match community 2_136_242 2_176_187 set community 0:32912 ip community-list standard 2_104_255 permit 65000:2 0:104 0:255 ip community-list standard 2_120_221 permit 65000:2 0:120 0:221 ip community-list standard 2_130_204 permit 65000:2 0:130 0:204 ip community-list standard 2_136_195 permit 65000:2 0:136 0:195 ip community-list standard 2_156_170 permit 65000:2 0:156 0:170 route-map calculator permit 3777 match community 2_104_255 2_120_221 2_130_204 2_136_195 2_156_170 set community 0:26520 ip community-list standard 2_97_214 permit 65000:2 0:97 0:214 ip community-list standard 2_107_194 permit 65000:2 0:107 0:194 route-map calculator permit 3778 match community 2_97_214 2_107_194 set community 0:20758 ip community-list standard 2_56_250 permit 65000:2 0:56 0:250 ip community-list standard 2_70_200 permit 65000:2 0:70 0:200 ip community-list standard 2_80_175 permit 65000:2 0:80 0:175 ip community-list standard 2_100_140 permit 65000:2 0:100 0:140 ip community-list standard 2_112_125 permit 65000:2 0:112 0:125 route-map calculator permit 3779 match community 2_56_250 2_70_200 2_80_175 2_100_140 2_112_125 set community 0:14000 ip community-list standard 2_181_231 permit 65000:2 0:181 0:231 route-map calculator permit 3780 match community 2_181_231 set community 0:41811 ip community-list standard 2_166_173 permit 65000:2 0:166 0:173 route-map calculator permit 3781 match community 2_166_173 set community 0:28718 ip community-list standard 2_163_207 permit 65000:2 0:163 0:207 route-map calculator permit 3782 match community 2_163_207 set community 0:33741 ip community-list standard 2_35_226 permit 65000:2 0:35 0:226 ip community-list standard 2_70_113 permit 65000:2 0:70 0:113 route-map calculator permit 3783 match community 2_35_226 2_70_113 set community 0:7910 ip community-list standard 2_76_211 permit 65000:2 0:76 0:211 route-map calculator permit 3784 match community 2_76_211 set community 0:16036 ip community-list standard 2_117_244 permit 65000:2 0:117 0:244 ip community-list standard 2_122_234 permit 65000:2 0:122 0:234 ip community-list standard 2_156_183 permit 65000:2 0:156 0:183 route-map calculator permit 3785 match community 2_117_244 2_122_234 2_156_183 set community 0:28548 ip community-list standard 2_72_212 permit 65000:2 0:72 0:212 ip community-list standard 2_96_159 permit 65000:2 0:96 0:159 ip community-list standard 2_106_144 permit 65000:2 0:106 0:144 route-map calculator permit 3786 match community 2_72_212 2_96_159 2_106_144 set community 0:15264 ip community-list standard 2_149_254 permit 65000:2 0:149 0:254 route-map calculator permit 3787 match community 2_149_254 set community 0:37846 ip community-list standard 2_154_251 permit 65000:2 0:154 0:251 route-map calculator permit 3788 match community 2_154_251 set community 0:38654 ip community-list standard 2_88_248 permit 65000:2 0:88 0:248 ip community-list standard 2_124_176 permit 65000:2 0:124 0:176 route-map calculator permit 3789 match community 2_88_248 2_124_176 set community 0:21824 ip community-list standard 2_240_253 permit 65000:2 0:240 0:253 route-map calculator permit 3790 match community 2_240_253 set community 0:60720 ip community-list standard 2_52_173 permit 65000:2 0:52 0:173 route-map calculator permit 3791 match community 2_52_173 set community 0:8996 ip community-list standard 2_147_251 permit 65000:2 0:147 0:251 route-map calculator permit 3792 match community 2_147_251 set community 0:36897 ip community-list standard 2_87_191 permit 65000:2 0:87 0:191 route-map calculator permit 3793 match community 2_87_191 set community 0:16617 ip community-list standard 2_103_214 permit 65000:2 0:103 0:214 ip community-list standard 2_107_206 permit 65000:2 0:107 0:206 route-map calculator permit 3794 match community 2_103_214 2_107_206 set community 0:22042 ip community-list standard 2_47_218 permit 65000:2 0:47 0:218 ip community-list standard 2_94_109 permit 65000:2 0:94 0:109 route-map calculator permit 3795 match community 2_47_218 2_94_109 set community 0:10246 ip community-list standard 2_75_251 permit 65000:2 0:75 0:251 route-map calculator permit 3796 match community 2_75_251 set community 0:18825 ip community-list standard 2_32_166 permit 65000:2 0:32 0:166 ip community-list standard 2_64_83 permit 65000:2 0:64 0:83 route-map calculator permit 3797 match community 2_32_166 2_64_83 set community 0:5312 ip community-list standard 2_77_240 permit 65000:2 0:77 0:240 ip community-list standard 2_80_231 permit 65000:2 0:80 0:231 ip community-list standard 2_84_220 permit 65000:2 0:84 0:220 ip community-list standard 2_88_210 permit 65000:2 0:88 0:210 ip community-list standard 2_105_176 permit 65000:2 0:105 0:176 ip community-list standard 2_110_168 permit 65000:2 0:110 0:168 ip community-list standard 2_112_165 permit 65000:2 0:112 0:165 ip community-list standard 2_120_154 permit 65000:2 0:120 0:154 ip community-list standard 2_132_140 permit 65000:2 0:132 0:140 route-map calculator permit 3798 match community 2_77_240 2_80_231 2_84_220 2_88_210 2_105_176 set community 0:18480 route-map calculator permit 3799 match community 2_110_168 2_112_165 2_120_154 2_132_140 set community 0:18480 ip community-list standard 2_9_181 permit 65000:2 0:9 0:181 route-map calculator permit 3800 match community 2_9_181 set community 0:1629 ip community-list standard 2_31_199 permit 65000:2 0:31 0:199 route-map calculator permit 3801 match community 2_31_199 set community 0:6169 ip community-list standard 2_143_222 permit 65000:2 0:143 0:222 route-map calculator permit 3802 match community 2_143_222 set community 0:31746 ip community-list standard 2_74_218 permit 65000:2 0:74 0:218 ip community-list standard 2_109_148 permit 65000:2 0:109 0:148 route-map calculator permit 3803 match community 2_74_218 2_109_148 set community 0:16132 ip community-list standard 2_92_201 permit 65000:2 0:92 0:201 ip community-list standard 2_134_138 permit 65000:2 0:134 0:138 route-map calculator permit 3804 match community 2_92_201 2_134_138 set community 0:18492 ip community-list standard 2_65_231 permit 65000:2 0:65 0:231 ip community-list standard 2_77_195 permit 65000:2 0:77 0:195 ip community-list standard 2_91_165 permit 65000:2 0:91 0:165 ip community-list standard 2_105_143 permit 65000:2 0:105 0:143 route-map calculator permit 3805 match community 2_65_231 2_77_195 2_91_165 2_105_143 set community 0:15015 ip community-list standard 2_23_151 permit 65000:2 0:23 0:151 route-map calculator permit 3806 match community 2_23_151 set community 0:3473 ip community-list standard 2_19_115 permit 65000:2 0:19 0:115 ip community-list standard 2_23_95 permit 65000:2 0:23 0:95 route-map calculator permit 3807 match community 2_19_115 2_23_95 set community 0:2185 ip community-list standard 2_169_227 permit 65000:2 0:169 0:227 route-map calculator permit 3808 match community 2_169_227 set community 0:38363 ip community-list standard 2_4_196 permit 65000:2 0:4 0:196 ip community-list standard 2_7_112 permit 65000:2 0:7 0:112 ip community-list standard 2_8_98 permit 65000:2 0:8 0:98 ip community-list standard 2_14_56 permit 65000:2 0:14 0:56 ip community-list standard 2_16_49 permit 65000:2 0:16 0:49 ip community-list standard 2_28_28 permit 65000:2 0:28 0:28 route-map calculator permit 3809 match community 2_4_196 2_7_112 2_8_98 2_14_56 2_16_49 set community 0:784 route-map calculator permit 3810 match community 2_28_28 set community 0:784 ip community-list standard 2_207_232 permit 65000:2 0:207 0:232 route-map calculator permit 3811 match community 2_207_232 set community 0:48024 ip community-list standard 2_97_238 permit 65000:2 0:97 0:238 ip community-list standard 2_119_194 permit 65000:2 0:119 0:194 route-map calculator permit 3812 match community 2_97_238 2_119_194 set community 0:23086 ip community-list standard 2_48_194 permit 65000:2 0:48 0:194 ip community-list standard 2_96_97 permit 65000:2 0:96 0:97 route-map calculator permit 3813 match community 2_48_194 2_96_97 set community 0:9312 ip community-list standard 2_187_206 permit 65000:2 0:187 0:206 route-map calculator permit 3814 match community 2_187_206 set community 0:38522 ip community-list standard 2_122_191 permit 65000:2 0:122 0:191 route-map calculator permit 3815 match community 2_122_191 set community 0:23302 ip community-list standard 2_94_213 permit 65000:2 0:94 0:213 ip community-list standard 2_141_142 permit 65000:2 0:141 0:142 route-map calculator permit 3816 match community 2_94_213 2_141_142 set community 0:20022 ip community-list standard 2_146_215 permit 65000:2 0:146 0:215 route-map calculator permit 3817 match community 2_146_215 set community 0:31390 ip community-list standard 2_40_205 permit 65000:2 0:40 0:205 ip community-list standard 2_41_200 permit 65000:2 0:41 0:200 ip community-list standard 2_50_164 permit 65000:2 0:50 0:164 ip community-list standard 2_82_100 permit 65000:2 0:82 0:100 route-map calculator permit 3818 match community 2_40_205 2_41_200 2_50_164 2_82_100 set community 0:8200 ip community-list standard 2_51_247 permit 65000:2 0:51 0:247 ip community-list standard 2_57_221 permit 65000:2 0:57 0:221 route-map calculator permit 3819 match community 2_51_247 2_57_221 set community 0:12597 ip community-list standard 2_37_221 permit 65000:2 0:37 0:221 route-map calculator permit 3820 match community 2_37_221 set community 0:8177 ip community-list standard 2_143_223 permit 65000:2 0:143 0:223 route-map calculator permit 3821 match community 2_143_223 set community 0:31889 ip community-list standard 2_73_255 permit 65000:2 0:73 0:255 ip community-list standard 2_85_219 permit 65000:2 0:85 0:219 route-map calculator permit 3822 match community 2_73_255 2_85_219 set community 0:18615 ip community-list standard 2_48_246 permit 65000:2 0:48 0:246 ip community-list standard 2_72_164 permit 65000:2 0:72 0:164 ip community-list standard 2_82_144 permit 65000:2 0:82 0:144 ip community-list standard 2_96_123 permit 65000:2 0:96 0:123 route-map calculator permit 3823 match community 2_48_246 2_72_164 2_82_144 2_96_123 set community 0:11808 ip community-list standard 2_178_209 permit 65000:2 0:178 0:209 route-map calculator permit 3824 match community 2_178_209 set community 0:37202 ip community-list standard 2_140_256 permit 65000:2 0:140 0:256 ip community-list standard 2_160_224 permit 65000:2 0:160 0:224 route-map calculator permit 3825 match community 2_140_256 2_160_224 set community 0:35840 ip community-list standard 2_21_230 permit 65000:2 0:21 0:230 ip community-list standard 2_23_210 permit 65000:2 0:23 0:210 ip community-list standard 2_30_161 permit 65000:2 0:30 0:161 ip community-list standard 2_35_138 permit 65000:2 0:35 0:138 ip community-list standard 2_42_115 permit 65000:2 0:42 0:115 ip community-list standard 2_46_105 permit 65000:2 0:46 0:105 ip community-list standard 2_69_70 permit 65000:2 0:69 0:70 route-map calculator permit 3826 match community 2_21_230 2_23_210 2_30_161 2_35_138 2_42_115 set community 0:4830 route-map calculator permit 3827 match community 2_46_105 2_69_70 set community 0:4830 ip community-list standard 2_72_181 permit 65000:2 0:72 0:181 route-map calculator permit 3828 match community 2_72_181 set community 0:13032 ip community-list standard 2_67_206 permit 65000:2 0:67 0:206 ip community-list standard 2_103_134 permit 65000:2 0:103 0:134 route-map calculator permit 3829 match community 2_67_206 2_103_134 set community 0:13802 ip community-list standard 2_106_250 permit 65000:2 0:106 0:250 ip community-list standard 2_125_212 permit 65000:2 0:125 0:212 route-map calculator permit 3830 match community 2_106_250 2_125_212 set community 0:26500 ip community-list standard 2_114_161 permit 65000:2 0:114 0:161 ip community-list standard 2_133_138 permit 65000:2 0:133 0:138 route-map calculator permit 3831 match community 2_114_161 2_133_138 set community 0:18354 ip community-list standard 2_23_213 permit 65000:2 0:23 0:213 ip community-list standard 2_69_71 permit 65000:2 0:69 0:71 route-map calculator permit 3832 match community 2_23_213 2_69_71 set community 0:4899 ip community-list standard 2_157_180 permit 65000:2 0:157 0:180 route-map calculator permit 3833 match community 2_157_180 set community 0:28260 ip community-list standard 2_61_163 permit 65000:2 0:61 0:163 route-map calculator permit 3834 match community 2_61_163 set community 0:9943 ip community-list standard 2_171_185 permit 65000:2 0:171 0:185 route-map calculator permit 3835 match community 2_171_185 set community 0:31635 ip community-list standard 2_5_146 permit 65000:2 0:5 0:146 ip community-list standard 2_10_73 permit 65000:2 0:10 0:73 route-map calculator permit 3836 match community 2_5_146 2_10_73 set community 0:730 ip community-list standard 2_47_137 permit 65000:2 0:47 0:137 route-map calculator permit 3837 match community 2_47_137 set community 0:6439 ip community-list standard 2_7_152 permit 65000:2 0:7 0:152 ip community-list standard 2_8_133 permit 65000:2 0:8 0:133 ip community-list standard 2_14_76 permit 65000:2 0:14 0:76 ip community-list standard 2_19_56 permit 65000:2 0:19 0:56 ip community-list standard 2_28_38 permit 65000:2 0:28 0:38 route-map calculator permit 3838 match community 2_7_152 2_8_133 2_14_76 2_19_56 2_28_38 set community 0:1064 ip community-list standard 2_53_169 permit 65000:2 0:53 0:169 route-map calculator permit 3839 match community 2_53_169 set community 0:8957 ip community-list standard 2_97_254 permit 65000:2 0:97 0:254 ip community-list standard 2_127_194 permit 65000:2 0:127 0:194 route-map calculator permit 3840 match community 2_97_254 2_127_194 set community 0:24638 ip community-list standard 2_48_151 permit 65000:2 0:48 0:151 route-map calculator permit 3841 match community 2_48_151 set community 0:7248 ip community-list standard 2_177_189 permit 65000:2 0:177 0:189 route-map calculator permit 3842 match community 2_177_189 set community 0:33453 ip community-list standard 2_210_255 permit 65000:2 0:210 0:255 ip community-list standard 2_225_238 permit 65000:2 0:225 0:238 route-map calculator permit 3843 match community 2_210_255 2_225_238 set community 0:53550 ip community-list standard 2_73_235 permit 65000:2 0:73 0:235 route-map calculator permit 3844 match community 2_73_235 set community 0:17155 ip community-list standard 2_87_101 permit 65000:2 0:87 0:101 route-map calculator permit 3845 match community 2_87_101 set community 0:8787 ip community-list standard 2_39_243 permit 65000:2 0:39 0:243 ip community-list standard 2_81_117 permit 65000:2 0:81 0:117 route-map calculator permit 3846 match community 2_39_243 2_81_117 set community 0:9477 ip community-list standard 2_17_213 permit 65000:2 0:17 0:213 ip community-list standard 2_51_71 permit 65000:2 0:51 0:71 route-map calculator permit 3847 match community 2_17_213 2_51_71 set community 0:3621 ip community-list standard 1_81_256 permit 65000:1 0:81 0:256 ip community-list standard 1_82_255 permit 65000:1 0:82 0:255 ip community-list standard 1_83_254 permit 65000:1 0:83 0:254 ip community-list standard 1_84_253 permit 65000:1 0:84 0:253 ip community-list standard 1_85_252 permit 65000:1 0:85 0:252 ip community-list standard 1_86_251 permit 65000:1 0:86 0:251 ip community-list standard 1_87_250 permit 65000:1 0:87 0:250 ip community-list standard 1_88_249 permit 65000:1 0:88 0:249 ip community-list standard 1_89_248 permit 65000:1 0:89 0:248 ip community-list standard 1_90_247 permit 65000:1 0:90 0:247 ip community-list standard 1_91_246 permit 65000:1 0:91 0:246 ip community-list standard 1_92_245 permit 65000:1 0:92 0:245 ip community-list standard 1_93_244 permit 65000:1 0:93 0:244 ip community-list standard 1_94_243 permit 65000:1 0:94 0:243 ip community-list standard 1_95_242 permit 65000:1 0:95 0:242 ip community-list standard 1_96_241 permit 65000:1 0:96 0:241 ip community-list standard 1_97_240 permit 65000:1 0:97 0:240 ip community-list standard 1_98_239 permit 65000:1 0:98 0:239 ip community-list standard 1_99_238 permit 65000:1 0:99 0:238 ip community-list standard 1_100_237 permit 65000:1 0:100 0:237 ip community-list standard 1_101_236 permit 65000:1 0:101 0:236 ip community-list standard 1_102_235 permit 65000:1 0:102 0:235 ip community-list standard 1_103_234 permit 65000:1 0:103 0:234 ip community-list standard 1_104_233 permit 65000:1 0:104 0:233 ip community-list standard 1_105_232 permit 65000:1 0:105 0:232 ip community-list standard 1_106_231 permit 65000:1 0:106 0:231 ip community-list standard 1_107_230 permit 65000:1 0:107 0:230 ip community-list standard 1_108_229 permit 65000:1 0:108 0:229 ip community-list standard 1_109_228 permit 65000:1 0:109 0:228 ip community-list standard 1_110_227 permit 65000:1 0:110 0:227 ip community-list standard 1_111_226 permit 65000:1 0:111 0:226 ip community-list standard 1_112_225 permit 65000:1 0:112 0:225 ip community-list standard 1_113_224 permit 65000:1 0:113 0:224 ip community-list standard 1_114_223 permit 65000:1 0:114 0:223 ip community-list standard 1_115_222 permit 65000:1 0:115 0:222 ip community-list standard 1_116_221 permit 65000:1 0:116 0:221 ip community-list standard 1_117_220 permit 65000:1 0:117 0:220 ip community-list standard 1_118_219 permit 65000:1 0:118 0:219 ip community-list standard 1_119_218 permit 65000:1 0:119 0:218 ip community-list standard 1_120_217 permit 65000:1 0:120 0:217 ip community-list standard 1_121_216 permit 65000:1 0:121 0:216 ip community-list standard 1_122_215 permit 65000:1 0:122 0:215 ip community-list standard 1_123_214 permit 65000:1 0:123 0:214 ip community-list standard 1_124_213 permit 65000:1 0:124 0:213 ip community-list standard 1_125_212 permit 65000:1 0:125 0:212 ip community-list standard 1_126_211 permit 65000:1 0:126 0:211 ip community-list standard 1_127_210 permit 65000:1 0:127 0:210 ip community-list standard 1_128_209 permit 65000:1 0:128 0:209 ip community-list standard 1_129_208 permit 65000:1 0:129 0:208 ip community-list standard 1_130_207 permit 65000:1 0:130 0:207 ip community-list standard 1_131_206 permit 65000:1 0:131 0:206 ip community-list standard 1_132_205 permit 65000:1 0:132 0:205 ip community-list standard 1_133_204 permit 65000:1 0:133 0:204 ip community-list standard 1_134_203 permit 65000:1 0:134 0:203 ip community-list standard 1_135_202 permit 65000:1 0:135 0:202 ip community-list standard 1_136_201 permit 65000:1 0:136 0:201 ip community-list standard 1_137_200 permit 65000:1 0:137 0:200 ip community-list standard 1_138_199 permit 65000:1 0:138 0:199 ip community-list standard 1_139_198 permit 65000:1 0:139 0:198 ip community-list standard 1_140_197 permit 65000:1 0:140 0:197 ip community-list standard 1_141_196 permit 65000:1 0:141 0:196 ip community-list standard 1_142_195 permit 65000:1 0:142 0:195 ip community-list standard 1_143_194 permit 65000:1 0:143 0:194 ip community-list standard 1_144_193 permit 65000:1 0:144 0:193 ip community-list standard 1_145_192 permit 65000:1 0:145 0:192 ip community-list standard 1_146_191 permit 65000:1 0:146 0:191 ip community-list standard 1_147_190 permit 65000:1 0:147 0:190 ip community-list standard 1_148_189 permit 65000:1 0:148 0:189 ip community-list standard 1_149_188 permit 65000:1 0:149 0:188 ip community-list standard 1_150_187 permit 65000:1 0:150 0:187 ip community-list standard 1_151_186 permit 65000:1 0:151 0:186 ip community-list standard 1_152_185 permit 65000:1 0:152 0:185 ip community-list standard 1_153_184 permit 65000:1 0:153 0:184 ip community-list standard 1_154_183 permit 65000:1 0:154 0:183 ip community-list standard 1_155_182 permit 65000:1 0:155 0:182 ip community-list standard 1_156_181 permit 65000:1 0:156 0:181 ip community-list standard 1_157_180 permit 65000:1 0:157 0:180 ip community-list standard 1_158_179 permit 65000:1 0:158 0:179 ip community-list standard 1_159_178 permit 65000:1 0:159 0:178 ip community-list standard 1_160_177 permit 65000:1 0:160 0:177 ip community-list standard 1_161_176 permit 65000:1 0:161 0:176 ip community-list standard 1_162_175 permit 65000:1 0:162 0:175 ip community-list standard 1_163_174 permit 65000:1 0:163 0:174 ip community-list standard 1_164_173 permit 65000:1 0:164 0:173 ip community-list standard 1_165_172 permit 65000:1 0:165 0:172 ip community-list standard 1_166_171 permit 65000:1 0:166 0:171 ip community-list standard 1_167_170 permit 65000:1 0:167 0:170 ip community-list standard 1_168_169 permit 65000:1 0:168 0:169 route-map calculator permit 3848 match community 1_81_256 1_82_255 1_83_254 1_84_253 1_85_252 set community 0:337 route-map calculator permit 3849 match community 1_86_251 1_87_250 1_88_249 1_89_248 1_90_247 set community 0:337 route-map calculator permit 3850 match community 1_91_246 1_92_245 1_93_244 1_94_243 1_95_242 set community 0:337 route-map calculator permit 3851 match community 1_96_241 1_97_240 1_98_239 1_99_238 1_100_237 set community 0:337 route-map calculator permit 3852 match community 1_101_236 1_102_235 1_103_234 1_104_233 1_105_232 set community 0:337 route-map calculator permit 3853 match community 1_106_231 1_107_230 1_108_229 1_109_228 1_110_227 set community 0:337 route-map calculator permit 3854 match community 1_111_226 1_112_225 1_113_224 1_114_223 1_115_222 set community 0:337 route-map calculator permit 3855 match community 1_116_221 1_117_220 1_118_219 1_119_218 1_120_217 set community 0:337 route-map calculator permit 3856 match community 1_121_216 1_122_215 1_123_214 1_124_213 1_125_212 set community 0:337 route-map calculator permit 3857 match community 1_126_211 1_127_210 1_128_209 1_129_208 1_130_207 set community 0:337 route-map calculator permit 3858 match community 1_131_206 1_132_205 1_133_204 1_134_203 1_135_202 set community 0:337 route-map calculator permit 3859 match community 1_136_201 1_137_200 1_138_199 1_139_198 1_140_197 set community 0:337 route-map calculator permit 3860 match community 1_141_196 1_142_195 1_143_194 1_144_193 1_145_192 set community 0:337 route-map calculator permit 3861 match community 1_146_191 1_147_190 1_148_189 1_149_188 1_150_187 set community 0:337 route-map calculator permit 3862 match community 1_151_186 1_152_185 1_153_184 1_154_183 1_155_182 set community 0:337 route-map calculator permit 3863 match community 1_156_181 1_157_180 1_158_179 1_159_178 1_160_177 set community 0:337 route-map calculator permit 3864 match community 1_161_176 1_162_175 1_163_174 1_164_173 1_165_172 set community 0:337 route-map calculator permit 3865 match community 1_166_171 1_167_170 1_168_169 set community 0:337 ip community-list standard 2_37_225 permit 65000:2 0:37 0:225 ip community-list standard 2_45_185 permit 65000:2 0:45 0:185 ip community-list standard 2_75_111 permit 65000:2 0:75 0:111 route-map calculator permit 3866 match community 2_37_225 2_45_185 2_75_111 set community 0:8325 ip community-list standard 2_6_163 permit 65000:2 0:6 0:163 route-map calculator permit 3867 match community 2_6_163 set community 0:978 ip community-list standard 2_13_71 permit 65000:2 0:13 0:71 route-map calculator permit 3868 match community 2_13_71 set community 0:923 ip community-list standard 2_73_240 permit 65000:2 0:73 0:240 ip community-list standard 2_80_219 permit 65000:2 0:80 0:219 ip community-list standard 2_120_146 permit 65000:2 0:120 0:146 route-map calculator permit 3869 match community 2_73_240 2_80_219 2_120_146 set community 0:17520 ip community-list standard 2_128_241 permit 65000:2 0:128 0:241 route-map calculator permit 3870 match community 2_128_241 set community 0:30848 ip community-list standard 2_117_236 permit 65000:2 0:117 0:236 ip community-list standard 2_118_234 permit 65000:2 0:118 0:234 ip community-list standard 2_156_177 permit 65000:2 0:156 0:177 route-map calculator permit 3871 match community 2_117_236 2_118_234 2_156_177 set community 0:27612 ip community-list standard 2_179_244 permit 65000:2 0:179 0:244 route-map calculator permit 3872 match community 2_179_244 set community 0:43676 ip community-list standard 2_205_230 permit 65000:2 0:205 0:230 route-map calculator permit 3873 match community 2_205_230 set community 0:47150 ip community-list standard 2_8_176 permit 65000:2 0:8 0:176 ip community-list standard 2_11_128 permit 65000:2 0:11 0:128 ip community-list standard 2_16_88 permit 65000:2 0:16 0:88 ip community-list standard 2_22_64 permit 65000:2 0:22 0:64 ip community-list standard 2_32_44 permit 65000:2 0:32 0:44 route-map calculator permit 3874 match community 2_8_176 2_11_128 2_16_88 2_22_64 2_32_44 set community 0:1408 ip community-list standard 2_6_181 permit 65000:2 0:6 0:181 route-map calculator permit 3875 match community 2_6_181 set community 0:1086 ip community-list standard 2_218_243 permit 65000:2 0:218 0:243 route-map calculator permit 3876 match community 2_218_243 set community 0:52974 ip community-list standard 2_19_207 permit 65000:2 0:19 0:207 ip community-list standard 2_23_171 permit 65000:2 0:23 0:171 ip community-list standard 2_57_69 permit 65000:2 0:57 0:69 route-map calculator permit 3877 match community 2_19_207 2_23_171 2_57_69 set community 0:3933 ip community-list standard 2_178_253 permit 65000:2 0:178 0:253 route-map calculator permit 3878 match community 2_178_253 set community 0:45034 ip community-list standard 2_169_208 permit 65000:2 0:169 0:208 route-map calculator permit 3879 match community 2_169_208 set community 0:35152 ip community-list standard 2_82_226 permit 65000:2 0:82 0:226 ip community-list standard 2_113_164 permit 65000:2 0:113 0:164 route-map calculator permit 3880 match community 2_82_226 2_113_164 set community 0:18532 ip community-list standard 2_110_236 permit 65000:2 0:110 0:236 ip community-list standard 2_118_220 permit 65000:2 0:118 0:220 route-map calculator permit 3881 match community 2_110_236 2_118_220 set community 0:25960 ip community-list standard 2_13_146 permit 65000:2 0:13 0:146 ip community-list standard 2_26_73 permit 65000:2 0:26 0:73 route-map calculator permit 3882 match community 2_13_146 2_26_73 set community 0:1898 ip community-list standard 2_152_245 permit 65000:2 0:152 0:245 ip community-list standard 2_190_196 permit 65000:2 0:190 0:196 route-map calculator permit 3883 match community 2_152_245 2_190_196 set community 0:37240 ip community-list standard 2_118_197 permit 65000:2 0:118 0:197 route-map calculator permit 3884 match community 2_118_197 set community 0:23246 ip community-list standard 2_11_187 permit 65000:2 0:11 0:187 ip community-list standard 2_17_121 permit 65000:2 0:17 0:121 route-map calculator permit 3885 match community 2_11_187 2_17_121 set community 0:2057 ip community-list standard 2_150_167 permit 65000:2 0:150 0:167 route-map calculator permit 3886 match community 2_150_167 set community 0:25050 ip community-list standard 2_58_202 permit 65000:2 0:58 0:202 ip community-list standard 2_101_116 permit 65000:2 0:101 0:116 route-map calculator permit 3887 match community 2_58_202 2_101_116 set community 0:11716 ip community-list standard 2_121_199 permit 65000:2 0:121 0:199 route-map calculator permit 3888 match community 2_121_199 set community 0:24079 ip community-list standard 2_35_213 permit 65000:2 0:35 0:213 ip community-list standard 2_71_105 permit 65000:2 0:71 0:105 route-map calculator permit 3889 match community 2_35_213 2_71_105 set community 0:7455 ip community-list standard 2_211_245 permit 65000:2 0:211 0:245 route-map calculator permit 3890 match community 2_211_245 set community 0:51695 ip community-list standard 2_169_183 permit 65000:2 0:169 0:183 route-map calculator permit 3891 match community 2_169_183 set community 0:30927 ip community-list standard 2_157_205 permit 65000:2 0:157 0:205 route-map calculator permit 3892 match community 2_157_205 set community 0:32185 ip community-list standard 2_124_253 permit 65000:2 0:124 0:253 route-map calculator permit 3893 match community 2_124_253 set community 0:31372 ip community-list standard 2_131_180 permit 65000:2 0:131 0:180 route-map calculator permit 3894 match community 2_131_180 set community 0:23580 ip community-list standard 2_2_243 permit 65000:2 0:2 0:243 ip community-list standard 2_3_162 permit 65000:2 0:3 0:162 ip community-list standard 2_6_81 permit 65000:2 0:6 0:81 ip community-list standard 2_9_54 permit 65000:2 0:9 0:54 ip community-list standard 2_18_27 permit 65000:2 0:18 0:27 ip community-list standard 1_230_256 permit 65000:1 0:230 0:256 ip community-list standard 1_231_255 permit 65000:1 0:231 0:255 ip community-list standard 1_232_254 permit 65000:1 0:232 0:254 ip community-list standard 1_233_253 permit 65000:1 0:233 0:253 ip community-list standard 1_234_252 permit 65000:1 0:234 0:252 ip community-list standard 1_235_251 permit 65000:1 0:235 0:251 ip community-list standard 1_236_250 permit 65000:1 0:236 0:250 ip community-list standard 1_237_249 permit 65000:1 0:237 0:249 ip community-list standard 1_238_248 permit 65000:1 0:238 0:248 ip community-list standard 1_239_247 permit 65000:1 0:239 0:247 ip community-list standard 1_240_246 permit 65000:1 0:240 0:246 ip community-list standard 1_241_245 permit 65000:1 0:241 0:245 ip community-list standard 1_242_244 permit 65000:1 0:242 0:244 ip community-list standard 1_243_243 permit 65000:1 0:243 0:243 route-map calculator permit 3895 match community 2_2_243 2_3_162 2_6_81 2_9_54 2_18_27 set community 0:486 route-map calculator permit 3896 match community 1_230_256 1_231_255 1_232_254 1_233_253 1_234_252 set community 0:486 route-map calculator permit 3897 match community 1_235_251 1_236_250 1_237_249 1_238_248 1_239_247 set community 0:486 route-map calculator permit 3898 match community 1_240_246 1_241_245 1_242_244 1_243_243 set community 0:486 ip community-list standard 2_3_172 permit 65000:2 0:3 0:172 ip community-list standard 2_4_129 permit 65000:2 0:4 0:129 ip community-list standard 2_6_86 permit 65000:2 0:6 0:86 ip community-list standard 2_12_43 permit 65000:2 0:12 0:43 route-map calculator permit 3899 match community 2_3_172 2_4_129 2_6_86 2_12_43 set community 0:516 ip community-list standard 2_33_172 permit 65000:2 0:33 0:172 ip community-list standard 2_43_132 permit 65000:2 0:43 0:132 ip community-list standard 2_44_129 permit 65000:2 0:44 0:129 ip community-list standard 2_66_86 permit 65000:2 0:66 0:86 route-map calculator permit 3900 match community 2_33_172 2_43_132 2_44_129 2_66_86 set community 0:5676 ip community-list standard 2_146_181 permit 65000:2 0:146 0:181 route-map calculator permit 3901 match community 2_146_181 set community 0:26426 ip community-list standard 2_114_219 permit 65000:2 0:114 0:219 ip community-list standard 2_146_171 permit 65000:2 0:146 0:171 route-map calculator permit 3902 match community 2_114_219 2_146_171 set community 0:24966 ip community-list standard 2_27_155 permit 65000:2 0:27 0:155 ip community-list standard 2_31_135 permit 65000:2 0:31 0:135 ip community-list standard 2_45_93 permit 65000:2 0:45 0:93 route-map calculator permit 3903 match community 2_27_155 2_31_135 2_45_93 set community 0:4185 ip community-list standard 2_159_251 permit 65000:2 0:159 0:251 route-map calculator permit 3904 match community 2_159_251 set community 0:39909 ip community-list standard 2_67_188 permit 65000:2 0:67 0:188 ip community-list standard 2_94_134 permit 65000:2 0:94 0:134 route-map calculator permit 3905 match community 2_67_188 2_94_134 set community 0:12596 ip community-list standard 2_19_139 permit 65000:2 0:19 0:139 route-map calculator permit 3906 match community 2_19_139 set community 0:2641 ip community-list standard 2_174_215 permit 65000:2 0:174 0:215 route-map calculator permit 3907 match community 2_174_215 set community 0:37410 ip community-list standard 2_23_122 permit 65000:2 0:23 0:122 ip community-list standard 2_46_61 permit 65000:2 0:46 0:61 route-map calculator permit 3908 match community 2_23_122 2_46_61 set community 0:2806 ip community-list standard 2_199_233 permit 65000:2 0:199 0:233 route-map calculator permit 3909 match community 2_199_233 set community 0:46367 ip community-list standard 2_112_199 permit 65000:2 0:112 0:199 route-map calculator permit 3910 match community 2_112_199 set community 0:22288 ip community-list standard 2_64_256 permit 65000:2 0:64 0:256 ip community-list standard 2_128_128 permit 65000:2 0:128 0:128 route-map calculator permit 3911 match community 2_64_256 2_128_128 set community 0:16384 ip community-list standard 2_131_213 permit 65000:2 0:131 0:213 route-map calculator permit 3912 match community 2_131_213 set community 0:27903 ip community-list standard 2_201_226 permit 65000:2 0:201 0:226 route-map calculator permit 3913 match community 2_201_226 set community 0:45426 ip community-list standard 2_13_214 permit 65000:2 0:13 0:214 ip community-list standard 2_26_107 permit 65000:2 0:26 0:107 route-map calculator permit 3914 match community 2_13_214 2_26_107 set community 0:2782 ip community-list standard 2_182_241 permit 65000:2 0:182 0:241 route-map calculator permit 3915 match community 2_182_241 set community 0:43862 ip community-list standard 2_228_241 permit 65000:2 0:228 0:241 route-map calculator permit 3916 match community 2_228_241 set community 0:54948 ip community-list standard 2_13_169 permit 65000:2 0:13 0:169 route-map calculator permit 3917 match community 2_13_169 set community 0:2197 ip community-list standard 2_13_73 permit 65000:2 0:13 0:73 route-map calculator permit 3918 match community 2_13_73 set community 0:949 ip community-list standard 2_190_247 permit 65000:2 0:190 0:247 route-map calculator permit 3919 match community 2_190_247 set community 0:46930 ip community-list standard 2_26_155 permit 65000:2 0:26 0:155 ip community-list standard 2_31_130 permit 65000:2 0:31 0:130 ip community-list standard 2_62_65 permit 65000:2 0:62 0:65 route-map calculator permit 3920 match community 2_26_155 2_31_130 2_62_65 set community 0:4030 ip community-list standard 2_196_223 permit 65000:2 0:196 0:223 route-map calculator permit 3921 match community 2_196_223 set community 0:43708 ip community-list standard 2_38_188 permit 65000:2 0:38 0:188 ip community-list standard 2_47_152 permit 65000:2 0:47 0:152 ip community-list standard 2_76_94 permit 65000:2 0:76 0:94 route-map calculator permit 3922 match community 2_38_188 2_47_152 2_76_94 set community 0:7144 ip community-list standard 2_120_197 permit 65000:2 0:120 0:197 route-map calculator permit 3923 match community 2_120_197 set community 0:23640 ip community-list standard 2_143_234 permit 65000:2 0:143 0:234 ip community-list standard 2_169_198 permit 65000:2 0:169 0:198 route-map calculator permit 3924 match community 2_143_234 2_169_198 set community 0:33462 ip community-list standard 2_40_220 permit 65000:2 0:40 0:220 ip community-list standard 2_44_200 permit 65000:2 0:44 0:200 ip community-list standard 2_50_176 permit 65000:2 0:50 0:176 ip community-list standard 2_55_160 permit 65000:2 0:55 0:160 ip community-list standard 2_80_110 permit 65000:2 0:80 0:110 ip community-list standard 2_88_100 permit 65000:2 0:88 0:100 route-map calculator permit 3925 match community 2_40_220 2_44_200 2_50_176 2_55_160 2_80_110 set community 0:8800 route-map calculator permit 3926 match community 2_88_100 set community 0:8800 ip community-list standard 2_139_174 permit 65000:2 0:139 0:174 route-map calculator permit 3927 match community 2_139_174 set community 0:24186 ip community-list standard 2_5_178 permit 65000:2 0:5 0:178 ip community-list standard 2_10_89 permit 65000:2 0:10 0:89 route-map calculator permit 3928 match community 2_5_178 2_10_89 set community 0:890 ip community-list standard 2_166_191 permit 65000:2 0:166 0:191 route-map calculator permit 3929 match community 2_166_191 set community 0:31706 ip community-list standard 2_45_212 permit 65000:2 0:45 0:212 ip community-list standard 2_53_180 permit 65000:2 0:53 0:180 ip community-list standard 2_60_159 permit 65000:2 0:60 0:159 ip community-list standard 2_90_106 permit 65000:2 0:90 0:106 route-map calculator permit 3930 match community 2_45_212 2_53_180 2_60_159 2_90_106 set community 0:9540 ip community-list standard 2_147_189 permit 65000:2 0:147 0:189 route-map calculator permit 3931 match community 2_147_189 set community 0:27783 ip community-list standard 2_8_152 permit 65000:2 0:8 0:152 ip community-list standard 2_16_76 permit 65000:2 0:16 0:76 ip community-list standard 2_19_64 permit 65000:2 0:19 0:64 ip community-list standard 2_32_38 permit 65000:2 0:32 0:38 route-map calculator permit 3932 match community 2_8_152 2_16_76 2_19_64 2_32_38 set community 0:1216 ip community-list standard 2_15_197 permit 65000:2 0:15 0:197 route-map calculator permit 3933 match community 2_15_197 set community 0:2955 ip community-list standard 2_29_188 permit 65000:2 0:29 0:188 ip community-list standard 2_47_116 permit 65000:2 0:47 0:116 ip community-list standard 2_58_94 permit 65000:2 0:58 0:94 route-map calculator permit 3934 match community 2_29_188 2_47_116 2_58_94 set community 0:5452 ip community-list standard 1_1_12 permit 65000:1 0:1 0:12 ip community-list standard 2_1_13 permit 65000:2 0:1 0:13 ip community-list standard 1_2_11 permit 65000:1 0:2 0:11 ip community-list standard 1_3_10 permit 65000:1 0:3 0:10 ip community-list standard 1_4_9 permit 65000:1 0:4 0:9 ip community-list standard 1_5_8 permit 65000:1 0:5 0:8 ip community-list standard 1_6_7 permit 65000:1 0:6 0:7 ip community-list expanded c13 permit 1 ^65000:4_0:13_0:1$ ip community-list expanded c13 permit 2 ^65000:3_0:14_0:1$ ip community-list expanded c13 permit 3 ^65000:3_0:15_0:2$ ip community-list expanded c13 permit 4 ^65000:3_0:16_0:3$ ip community-list expanded c13 permit 5 ^65000:3_0:17_0:4$ ip community-list expanded c13 permit 6 ^65000:3_0:18_0:5$ ip community-list expanded c13 permit 7 ^65000:3_0:19_0:6$ ip community-list expanded c13 permit 8 ^65000:3_0:20_0:7$ ip community-list expanded c13 permit 9 ^65000:3_0:21_0:8$ ip community-list expanded c13 permit 10 ^65000:3_0:22_0:9$ ip community-list expanded c13 permit 11 ^65000:3_0:23_0:10$ ip community-list expanded c13 permit 12 ^65000:3_0:24_0:11$ ip community-list expanded c13 permit 13 ^65000:3_0:25_0:12$ ip community-list expanded c13 permit 14 ^65000:4_0:26_0:2$ ip community-list expanded c13 permit 15 ^65000:3_0:26_0:13$ ip community-list expanded c13 permit 16 ^65000:4_0:27_0:2$ ip community-list expanded c13 permit 17 ^65000:3_0:27_0:14$ ip community-list expanded c13 permit 18 ^65000:3_0:28_0:15$ ip community-list expanded c13 permit 19 ^65000:3_0:29_0:16$ ip community-list expanded c13 permit 20 ^65000:3_0:30_0:17$ ip community-list expanded c13 permit 21 ^65000:3_0:31_0:18$ ip community-list expanded c13 permit 22 ^65000:3_0:32_0:19$ ip community-list expanded c13 permit 23 ^65000:3_0:33_0:20$ ip community-list expanded c13 permit 24 ^65000:3_0:34_0:21$ ip community-list expanded c13 permit 25 ^65000:3_0:35_0:22$ ip community-list expanded c13 permit 26 ^65000:3_0:36_0:23$ ip community-list expanded c13 permit 27 ^65000:3_0:37_0:24$ ip community-list expanded c13 permit 28 ^65000:3_0:38_0:25$ ip community-list expanded c13 permit 29 ^65000:4_0:39_0:3$ ip community-list expanded c13 permit 30 ^65000:3_0:39_0:26$ ip community-list expanded c13 permit 31 ^65000:4_0:40_0:3$ ip community-list expanded c13 permit 32 ^65000:3_0:40_0:27$ ip community-list expanded c13 permit 33 ^65000:4_0:41_0:3$ ip community-list expanded c13 permit 34 ^65000:3_0:41_0:28$ ip community-list expanded c13 permit 35 ^65000:3_0:42_0:29$ ip community-list expanded c13 permit 36 ^65000:3_0:43_0:30$ ip community-list expanded c13 permit 37 ^65000:3_0:44_0:31$ ip community-list expanded c13 permit 38 ^65000:3_0:45_0:32$ ip community-list expanded c13 permit 39 ^65000:3_0:46_0:33$ ip community-list expanded c13 permit 40 ^65000:3_0:47_0:34$ ip community-list expanded c13 permit 41 ^65000:3_0:48_0:35$ ip community-list expanded c13 permit 42 ^65000:3_0:49_0:36$ ip community-list expanded c13 permit 43 ^65000:3_0:50_0:37$ ip community-list expanded c13 permit 44 ^65000:3_0:51_0:38$ ip community-list expanded c13 permit 45 ^65000:4_0:52_0:4$ ip community-list expanded c13 permit 46 ^65000:3_0:52_0:39$ ip community-list expanded c13 permit 47 ^65000:4_0:53_0:4$ ip community-list expanded c13 permit 48 ^65000:3_0:53_0:40$ ip community-list expanded c13 permit 49 ^65000:4_0:54_0:4$ ip community-list expanded c13 permit 50 ^65000:3_0:54_0:41$ ip community-list expanded c13 permit 51 ^65000:4_0:55_0:4$ ip community-list expanded c13 permit 52 ^65000:3_0:55_0:42$ ip community-list expanded c13 permit 53 ^65000:3_0:56_0:43$ ip community-list expanded c13 permit 54 ^65000:3_0:57_0:44$ ip community-list expanded c13 permit 55 ^65000:3_0:58_0:45$ ip community-list expanded c13 permit 56 ^65000:3_0:59_0:46$ ip community-list expanded c13 permit 57 ^65000:3_0:60_0:47$ ip community-list expanded c13 permit 58 ^65000:3_0:61_0:48$ ip community-list expanded c13 permit 59 ^65000:3_0:62_0:49$ ip community-list expanded c13 permit 60 ^65000:3_0:63_0:50$ ip community-list expanded c13 permit 61 ^65000:3_0:64_0:51$ ip community-list expanded c13 permit 62 ^65000:4_0:65_0:5$ ip community-list expanded c13 permit 63 ^65000:3_0:65_0:52$ ip community-list expanded c13 permit 64 ^65000:4_0:66_0:5$ ip community-list expanded c13 permit 65 ^65000:3_0:66_0:53$ ip community-list expanded c13 permit 66 ^65000:4_0:67_0:5$ ip community-list expanded c13 permit 67 ^65000:3_0:67_0:54$ ip community-list expanded c13 permit 68 ^65000:4_0:68_0:5$ ip community-list expanded c13 permit 69 ^65000:3_0:68_0:55$ ip community-list expanded c13 permit 70 ^65000:4_0:69_0:5$ ip community-list expanded c13 permit 71 ^65000:3_0:69_0:56$ ip community-list expanded c13 permit 72 ^65000:3_0:70_0:57$ ip community-list expanded c13 permit 73 ^65000:3_0:71_0:58$ ip community-list expanded c13 permit 74 ^65000:3_0:72_0:59$ ip community-list expanded c13 permit 75 ^65000:3_0:73_0:60$ ip community-list expanded c13 permit 76 ^65000:3_0:74_0:61$ ip community-list expanded c13 permit 77 ^65000:3_0:75_0:62$ ip community-list expanded c13 permit 78 ^65000:3_0:76_0:63$ ip community-list expanded c13 permit 79 ^65000:3_0:77_0:64$ ip community-list expanded c13 permit 80 ^65000:4_0:78_0:6$ ip community-list expanded c13 permit 81 ^65000:3_0:78_0:65$ ip community-list expanded c13 permit 82 ^65000:4_0:79_0:6$ ip community-list expanded c13 permit 83 ^65000:3_0:79_0:66$ ip community-list expanded c13 permit 84 ^65000:4_0:80_0:6$ ip community-list expanded c13 permit 85 ^65000:3_0:80_0:67$ ip community-list expanded c13 permit 86 ^65000:4_0:81_0:6$ ip community-list expanded c13 permit 87 ^65000:3_0:81_0:68$ ip community-list expanded c13 permit 88 ^65000:4_0:82_0:6$ ip community-list expanded c13 permit 89 ^65000:3_0:82_0:69$ ip community-list expanded c13 permit 90 ^65000:4_0:83_0:6$ ip community-list expanded c13 permit 91 ^65000:3_0:83_0:70$ ip community-list expanded c13 permit 92 ^65000:3_0:84_0:71$ ip community-list expanded c13 permit 93 ^65000:3_0:85_0:72$ ip community-list expanded c13 permit 94 ^65000:3_0:86_0:73$ ip community-list expanded c13 permit 95 ^65000:3_0:87_0:74$ ip community-list expanded c13 permit 96 ^65000:3_0:88_0:75$ ip community-list expanded c13 permit 97 ^65000:3_0:89_0:76$ ip community-list expanded c13 permit 98 ^65000:3_0:90_0:77$ ip community-list expanded c13 permit 99 ^65000:4_0:91_0:7$ ip community-list expanded c13 permit 100 ^65000:3_0:91_0:78$ ip community-list expanded c13 permit 101 ^65000:4_0:92_0:7$ ip community-list expanded c13 permit 102 ^65000:3_0:92_0:79$ ip community-list expanded c13 permit 103 ^65000:4_0:93_0:7$ ip community-list expanded c13 permit 104 ^65000:3_0:93_0:80$ ip community-list expanded c13 permit 105 ^65000:4_0:94_0:7$ ip community-list expanded c13 permit 106 ^65000:3_0:94_0:81$ ip community-list expanded c13 permit 107 ^65000:4_0:95_0:7$ ip community-list expanded c13 permit 108 ^65000:3_0:95_0:82$ ip community-list expanded c13 permit 109 ^65000:4_0:96_0:7$ ip community-list expanded c13 permit 110 ^65000:3_0:96_0:83$ ip community-list expanded c13 permit 111 ^65000:4_0:97_0:7$ ip community-list expanded c13 permit 112 ^65000:3_0:97_0:84$ ip community-list expanded c13 permit 113 ^65000:3_0:98_0:85$ ip community-list expanded c13 permit 114 ^65000:3_0:99_0:86$ ip community-list expanded c13 permit 115 ^65000:3_0:100_0:87$ ip community-list expanded c13 permit 116 ^65000:3_0:101_0:88$ ip community-list expanded c13 permit 117 ^65000:3_0:102_0:89$ ip community-list expanded c13 permit 118 ^65000:3_0:103_0:90$ ip community-list expanded c13 permit 119 ^65000:4_0:104_0:8$ ip community-list expanded c13 permit 120 ^65000:3_0:104_0:91$ ip community-list expanded c13 permit 121 ^65000:4_0:105_0:8$ ip community-list expanded c13 permit 122 ^65000:3_0:105_0:92$ ip community-list expanded c13 permit 123 ^65000:4_0:106_0:8$ ip community-list expanded c13 permit 124 ^65000:3_0:106_0:93$ ip community-list expanded c13 permit 125 ^65000:4_0:107_0:8$ ip community-list expanded c13 permit 126 ^65000:3_0:107_0:94$ ip community-list expanded c13 permit 127 ^65000:4_0:108_0:8$ ip community-list expanded c13 permit 128 ^65000:3_0:108_0:95$ ip community-list expanded c13 permit 129 ^65000:4_0:109_0:8$ ip community-list expanded c13 permit 130 ^65000:3_0:109_0:96$ ip community-list expanded c13 permit 131 ^65000:4_0:110_0:8$ ip community-list expanded c13 permit 132 ^65000:3_0:110_0:97$ ip community-list expanded c13 permit 133 ^65000:4_0:111_0:8$ ip community-list expanded c13 permit 134 ^65000:3_0:111_0:98$ ip community-list expanded c13 permit 135 ^65000:3_0:112_0:99$ ip community-list expanded c13 permit 136 ^65000:3_0:113_0:100$ ip community-list expanded c13 permit 137 ^65000:3_0:114_0:101$ ip community-list expanded c13 permit 138 ^65000:3_0:115_0:102$ ip community-list expanded c13 permit 139 ^65000:3_0:116_0:103$ ip community-list expanded c13 permit 140 ^65000:4_0:117_0:9$ ip community-list expanded c13 permit 141 ^65000:3_0:117_0:104$ ip community-list expanded c13 permit 142 ^65000:4_0:118_0:9$ ip community-list expanded c13 permit 143 ^65000:3_0:118_0:105$ ip community-list expanded c13 permit 144 ^65000:4_0:119_0:9$ ip community-list expanded c13 permit 145 ^65000:3_0:119_0:106$ ip community-list expanded c13 permit 146 ^65000:4_0:120_0:9$ ip community-list expanded c13 permit 147 ^65000:3_0:120_0:107$ ip community-list expanded c13 permit 148 ^65000:4_0:121_0:9$ ip community-list expanded c13 permit 149 ^65000:3_0:121_0:108$ ip community-list expanded c13 permit 150 ^65000:4_0:122_0:9$ ip community-list expanded c13 permit 151 ^65000:3_0:122_0:109$ ip community-list expanded c13 permit 152 ^65000:4_0:123_0:9$ ip community-list expanded c13 permit 153 ^65000:3_0:123_0:110$ ip community-list expanded c13 permit 154 ^65000:4_0:124_0:9$ ip community-list expanded c13 permit 155 ^65000:3_0:124_0:111$ ip community-list expanded c13 permit 156 ^65000:4_0:125_0:9$ ip community-list expanded c13 permit 157 ^65000:3_0:125_0:112$ ip community-list expanded c13 permit 158 ^65000:3_0:126_0:113$ ip community-list expanded c13 permit 159 ^65000:3_0:127_0:114$ ip community-list expanded c13 permit 160 ^65000:3_0:128_0:115$ ip community-list expanded c13 permit 161 ^65000:3_0:129_0:116$ ip community-list expanded c13 permit 162 ^65000:4_0:130_0:10$ ip community-list expanded c13 permit 163 ^65000:3_0:130_0:117$ ip community-list expanded c13 permit 164 ^65000:4_0:131_0:10$ ip community-list expanded c13 permit 165 ^65000:3_0:131_0:118$ ip community-list expanded c13 permit 166 ^65000:4_0:132_0:10$ ip community-list expanded c13 permit 167 ^65000:3_0:132_0:119$ ip community-list expanded c13 permit 168 ^65000:4_0:133_0:10$ ip community-list expanded c13 permit 169 ^65000:3_0:133_0:120$ ip community-list expanded c13 permit 170 ^65000:4_0:134_0:10$ ip community-list expanded c13 permit 171 ^65000:3_0:134_0:121$ ip community-list expanded c13 permit 172 ^65000:4_0:135_0:10$ ip community-list expanded c13 permit 173 ^65000:3_0:135_0:122$ ip community-list expanded c13 permit 174 ^65000:4_0:136_0:10$ ip community-list expanded c13 permit 175 ^65000:3_0:136_0:123$ ip community-list expanded c13 permit 176 ^65000:4_0:137_0:10$ ip community-list expanded c13 permit 177 ^65000:3_0:137_0:124$ ip community-list expanded c13 permit 178 ^65000:4_0:138_0:10$ ip community-list expanded c13 permit 179 ^65000:3_0:138_0:125$ ip community-list expanded c13 permit 180 ^65000:4_0:139_0:10$ ip community-list expanded c13 permit 181 ^65000:3_0:139_0:126$ ip community-list expanded c13 permit 182 ^65000:3_0:140_0:127$ ip community-list expanded c13 permit 183 ^65000:3_0:141_0:128$ ip community-list expanded c13 permit 184 ^65000:3_0:142_0:129$ ip community-list expanded c13 permit 185 ^65000:4_0:143_0:11$ ip community-list expanded c13 permit 186 ^65000:3_0:143_0:130$ ip community-list expanded c13 permit 187 ^65000:4_0:144_0:11$ ip community-list expanded c13 permit 188 ^65000:3_0:144_0:131$ ip community-list expanded c13 permit 189 ^65000:4_0:145_0:11$ ip community-list expanded c13 permit 190 ^65000:3_0:145_0:132$ ip community-list expanded c13 permit 191 ^65000:4_0:146_0:11$ ip community-list expanded c13 permit 192 ^65000:3_0:146_0:133$ ip community-list expanded c13 permit 193 ^65000:4_0:147_0:11$ ip community-list expanded c13 permit 194 ^65000:3_0:147_0:134$ ip community-list expanded c13 permit 195 ^65000:4_0:148_0:11$ ip community-list expanded c13 permit 196 ^65000:3_0:148_0:135$ ip community-list expanded c13 permit 197 ^65000:4_0:149_0:11$ ip community-list expanded c13 permit 198 ^65000:3_0:149_0:136$ ip community-list expanded c13 permit 199 ^65000:4_0:150_0:11$ ip community-list expanded c13 permit 200 ^65000:3_0:150_0:137$ ip community-list expanded c13 permit 201 ^65000:4_0:151_0:11$ ip community-list expanded c13 permit 202 ^65000:3_0:151_0:138$ ip community-list expanded c13 permit 203 ^65000:4_0:152_0:11$ ip community-list expanded c13 permit 204 ^65000:3_0:152_0:139$ ip community-list expanded c13 permit 205 ^65000:4_0:153_0:11$ ip community-list expanded c13 permit 206 ^65000:3_0:153_0:140$ ip community-list expanded c13 permit 207 ^65000:3_0:154_0:141$ ip community-list expanded c13 permit 208 ^65000:3_0:155_0:142$ ip community-list expanded c13 permit 209 ^65000:4_0:156_0:12$ ip community-list expanded c13 permit 210 ^65000:3_0:156_0:143$ ip community-list expanded c13 permit 211 ^65000:4_0:157_0:12$ ip community-list expanded c13 permit 212 ^65000:3_0:157_0:144$ ip community-list expanded c13 permit 213 ^65000:4_0:158_0:12$ ip community-list expanded c13 permit 214 ^65000:3_0:158_0:145$ ip community-list expanded c13 permit 215 ^65000:4_0:159_0:12$ ip community-list expanded c13 permit 216 ^65000:3_0:159_0:146$ ip community-list expanded c13 permit 217 ^65000:4_0:160_0:12$ ip community-list expanded c13 permit 218 ^65000:3_0:160_0:147$ ip community-list expanded c13 permit 219 ^65000:4_0:161_0:12$ ip community-list expanded c13 permit 220 ^65000:3_0:161_0:148$ ip community-list expanded c13 permit 221 ^65000:4_0:162_0:12$ ip community-list expanded c13 permit 222 ^65000:3_0:162_0:149$ ip community-list expanded c13 permit 223 ^65000:4_0:163_0:12$ ip community-list expanded c13 permit 224 ^65000:3_0:163_0:150$ ip community-list expanded c13 permit 225 ^65000:4_0:164_0:12$ ip community-list expanded c13 permit 226 ^65000:3_0:164_0:151$ ip community-list expanded c13 permit 227 ^65000:4_0:165_0:12$ ip community-list expanded c13 permit 228 ^65000:3_0:165_0:152$ ip community-list expanded c13 permit 229 ^65000:4_0:166_0:12$ ip community-list expanded c13 permit 230 ^65000:3_0:166_0:153$ ip community-list expanded c13 permit 231 ^65000:4_0:167_0:12$ ip community-list expanded c13 permit 232 ^65000:3_0:167_0:154$ ip community-list expanded c13 permit 233 ^65000:3_0:168_0:155$ ip community-list expanded c13 permit 234 ^65000:4_0:169_0:13$ ip community-list expanded c13 permit 235 ^65000:3_0:169_0:156$ ip community-list expanded c13 permit 236 ^65000:4_0:170_0:13$ ip community-list expanded c13 permit 237 ^65000:3_0:170_0:157$ ip community-list expanded c13 permit 238 ^65000:4_0:171_0:13$ ip community-list expanded c13 permit 239 ^65000:3_0:171_0:158$ ip community-list expanded c13 permit 240 ^65000:4_0:172_0:13$ ip community-list expanded c13 permit 241 ^65000:3_0:172_0:159$ ip community-list expanded c13 permit 242 ^65000:4_0:173_0:13$ ip community-list expanded c13 permit 243 ^65000:3_0:173_0:160$ ip community-list expanded c13 permit 244 ^65000:4_0:174_0:13$ ip community-list expanded c13 permit 245 ^65000:3_0:174_0:161$ ip community-list expanded c13 permit 246 ^65000:4_0:175_0:13$ ip community-list expanded c13 permit 247 ^65000:3_0:175_0:162$ ip community-list expanded c13 permit 248 ^65000:4_0:176_0:13$ ip community-list expanded c13 permit 249 ^65000:3_0:176_0:163$ ip community-list expanded c13 permit 250 ^65000:4_0:177_0:13$ ip community-list expanded c13 permit 251 ^65000:3_0:177_0:164$ ip community-list expanded c13 permit 252 ^65000:4_0:178_0:13$ ip community-list expanded c13 permit 253 ^65000:3_0:178_0:165$ ip community-list expanded c13 permit 254 ^65000:4_0:179_0:13$ ip community-list expanded c13 permit 255 ^65000:3_0:179_0:166$ ip community-list expanded c13 permit 256 ^65000:4_0:180_0:13$ ip community-list expanded c13 permit 257 ^65000:3_0:180_0:167$ ip community-list expanded c13 permit 258 ^65000:4_0:181_0:13$ ip community-list expanded c13 permit 259 ^65000:3_0:181_0:168$ ip community-list expanded c13 permit 260 ^65000:4_0:182_0:14$ ip community-list expanded c13 permit 261 ^65000:3_0:182_0:169$ ip community-list expanded c13 permit 262 ^65000:4_0:183_0:14$ ip community-list expanded c13 permit 263 ^65000:3_0:183_0:170$ ip community-list expanded c13 permit 264 ^65000:4_0:184_0:14$ ip community-list expanded c13 permit 265 ^65000:3_0:184_0:171$ ip community-list expanded c13 permit 266 ^65000:4_0:185_0:14$ ip community-list expanded c13 permit 267 ^65000:3_0:185_0:172$ ip community-list expanded c13 permit 268 ^65000:4_0:186_0:14$ ip community-list expanded c13 permit 269 ^65000:3_0:186_0:173$ ip community-list expanded c13 permit 270 ^65000:4_0:187_0:14$ ip community-list expanded c13 permit 271 ^65000:3_0:187_0:174$ ip community-list expanded c13 permit 272 ^65000:4_0:188_0:14$ ip community-list expanded c13 permit 273 ^65000:3_0:188_0:175$ ip community-list expanded c13 permit 274 ^65000:4_0:189_0:14$ ip community-list expanded c13 permit 275 ^65000:3_0:189_0:176$ ip community-list expanded c13 permit 276 ^65000:4_0:190_0:14$ ip community-list expanded c13 permit 277 ^65000:3_0:190_0:177$ ip community-list expanded c13 permit 278 ^65000:4_0:191_0:14$ ip community-list expanded c13 permit 279 ^65000:3_0:191_0:178$ ip community-list expanded c13 permit 280 ^65000:4_0:192_0:14$ ip community-list expanded c13 permit 281 ^65000:3_0:192_0:179$ ip community-list expanded c13 permit 282 ^65000:4_0:193_0:14$ ip community-list expanded c13 permit 283 ^65000:3_0:193_0:180$ ip community-list expanded c13 permit 284 ^65000:4_0:194_0:14$ ip community-list expanded c13 permit 285 ^65000:3_0:194_0:181$ ip community-list expanded c13 permit 286 ^65000:4_0:195_0:14$ ip community-list expanded c13 permit 287 ^65000:4_0:195_0:15$ ip community-list expanded c13 permit 288 ^65000:3_0:195_0:182$ ip community-list expanded c13 permit 289 ^65000:4_0:196_0:15$ ip community-list expanded c13 permit 290 ^65000:3_0:196_0:183$ ip community-list expanded c13 permit 291 ^65000:4_0:197_0:15$ ip community-list expanded c13 permit 292 ^65000:3_0:197_0:184$ ip community-list expanded c13 permit 293 ^65000:4_0:198_0:15$ ip community-list expanded c13 permit 294 ^65000:3_0:198_0:185$ ip community-list expanded c13 permit 295 ^65000:4_0:199_0:15$ ip community-list expanded c13 permit 296 ^65000:3_0:199_0:186$ ip community-list expanded c13 permit 297 ^65000:4_0:200_0:15$ ip community-list expanded c13 permit 298 ^65000:3_0:200_0:187$ ip community-list expanded c13 permit 299 ^65000:4_0:201_0:15$ ip community-list expanded c13 permit 300 ^65000:3_0:201_0:188$ ip community-list expanded c13 permit 301 ^65000:4_0:202_0:15$ ip community-list expanded c13 permit 302 ^65000:3_0:202_0:189$ ip community-list expanded c13 permit 303 ^65000:4_0:203_0:15$ ip community-list expanded c13 permit 304 ^65000:3_0:203_0:190$ ip community-list expanded c13 permit 305 ^65000:4_0:204_0:15$ ip community-list expanded c13 permit 306 ^65000:3_0:204_0:191$ ip community-list expanded c13 permit 307 ^65000:4_0:205_0:15$ ip community-list expanded c13 permit 308 ^65000:3_0:205_0:192$ ip community-list expanded c13 permit 309 ^65000:4_0:206_0:15$ ip community-list expanded c13 permit 310 ^65000:3_0:206_0:193$ ip community-list expanded c13 permit 311 ^65000:4_0:207_0:15$ ip community-list expanded c13 permit 312 ^65000:3_0:207_0:194$ ip community-list expanded c13 permit 313 ^65000:4_0:208_0:15$ ip community-list expanded c13 permit 314 ^65000:4_0:208_0:16$ ip community-list expanded c13 permit 315 ^65000:3_0:208_0:195$ ip community-list expanded c13 permit 316 ^65000:4_0:209_0:15$ ip community-list expanded c13 permit 317 ^65000:4_0:209_0:16$ ip community-list expanded c13 permit 318 ^65000:3_0:209_0:196$ ip community-list expanded c13 permit 319 ^65000:4_0:210_0:16$ ip community-list expanded c13 permit 320 ^65000:3_0:210_0:197$ ip community-list expanded c13 permit 321 ^65000:4_0:211_0:16$ ip community-list expanded c13 permit 322 ^65000:3_0:211_0:198$ ip community-list expanded c13 permit 323 ^65000:4_0:212_0:16$ ip community-list expanded c13 permit 324 ^65000:3_0:212_0:199$ ip community-list expanded c13 permit 325 ^65000:4_0:213_0:16$ ip community-list expanded c13 permit 326 ^65000:3_0:213_0:200$ ip community-list expanded c13 permit 327 ^65000:4_0:214_0:16$ ip community-list expanded c13 permit 328 ^65000:3_0:214_0:201$ ip community-list expanded c13 permit 329 ^65000:4_0:215_0:16$ ip community-list expanded c13 permit 330 ^65000:3_0:215_0:202$ ip community-list expanded c13 permit 331 ^65000:4_0:216_0:16$ ip community-list expanded c13 permit 332 ^65000:3_0:216_0:203$ ip community-list expanded c13 permit 333 ^65000:4_0:217_0:16$ ip community-list expanded c13 permit 334 ^65000:3_0:217_0:204$ ip community-list expanded c13 permit 335 ^65000:4_0:218_0:16$ ip community-list expanded c13 permit 336 ^65000:3_0:218_0:205$ ip community-list expanded c13 permit 337 ^65000:4_0:219_0:16$ ip community-list expanded c13 permit 338 ^65000:3_0:219_0:206$ ip community-list expanded c13 permit 339 ^65000:4_0:220_0:16$ ip community-list expanded c13 permit 340 ^65000:3_0:220_0:207$ ip community-list expanded c13 permit 341 ^65000:4_0:221_0:16$ ip community-list expanded c13 permit 342 ^65000:4_0:221_0:17$ ip community-list expanded c13 permit 343 ^65000:3_0:221_0:208$ ip community-list expanded c13 permit 344 ^65000:4_0:222_0:16$ ip community-list expanded c13 permit 345 ^65000:4_0:222_0:17$ ip community-list expanded c13 permit 346 ^65000:3_0:222_0:209$ ip community-list expanded c13 permit 347 ^65000:4_0:223_0:16$ ip community-list expanded c13 permit 348 ^65000:4_0:223_0:17$ ip community-list expanded c13 permit 349 ^65000:3_0:223_0:210$ ip community-list expanded c13 permit 350 ^65000:4_0:224_0:17$ ip community-list expanded c13 permit 351 ^65000:3_0:224_0:211$ ip community-list expanded c13 permit 352 ^65000:4_0:225_0:17$ ip community-list expanded c13 permit 353 ^65000:3_0:225_0:212$ ip community-list expanded c13 permit 354 ^65000:4_0:226_0:17$ ip community-list expanded c13 permit 355 ^65000:3_0:226_0:213$ ip community-list expanded c13 permit 356 ^65000:4_0:227_0:17$ ip community-list expanded c13 permit 357 ^65000:3_0:227_0:214$ ip community-list expanded c13 permit 358 ^65000:4_0:228_0:17$ ip community-list expanded c13 permit 359 ^65000:3_0:228_0:215$ ip community-list expanded c13 permit 360 ^65000:4_0:229_0:17$ ip community-list expanded c13 permit 361 ^65000:3_0:229_0:216$ ip community-list expanded c13 permit 362 ^65000:4_0:230_0:17$ ip community-list expanded c13 permit 363 ^65000:3_0:230_0:217$ ip community-list expanded c13 permit 364 ^65000:4_0:231_0:17$ ip community-list expanded c13 permit 365 ^65000:3_0:231_0:218$ ip community-list expanded c13 permit 366 ^65000:4_0:232_0:17$ ip community-list expanded c13 permit 367 ^65000:3_0:232_0:219$ ip community-list expanded c13 permit 368 ^65000:4_0:233_0:17$ ip community-list expanded c13 permit 369 ^65000:3_0:233_0:220$ ip community-list expanded c13 permit 370 ^65000:4_0:234_0:17$ ip community-list expanded c13 permit 371 ^65000:4_0:234_0:18$ ip community-list expanded c13 permit 372 ^65000:3_0:234_0:221$ ip community-list expanded c13 permit 373 ^65000:4_0:235_0:17$ ip community-list expanded c13 permit 374 ^65000:4_0:235_0:18$ ip community-list expanded c13 permit 375 ^65000:3_0:235_0:222$ ip community-list expanded c13 permit 376 ^65000:4_0:236_0:17$ ip community-list expanded c13 permit 377 ^65000:4_0:236_0:18$ ip community-list expanded c13 permit 378 ^65000:3_0:236_0:223$ ip community-list expanded c13 permit 379 ^65000:4_0:237_0:17$ ip community-list expanded c13 permit 380 ^65000:4_0:237_0:18$ ip community-list expanded c13 permit 381 ^65000:3_0:237_0:224$ ip community-list expanded c13 permit 382 ^65000:4_0:238_0:18$ ip community-list expanded c13 permit 383 ^65000:3_0:238_0:225$ ip community-list expanded c13 permit 384 ^65000:4_0:239_0:18$ ip community-list expanded c13 permit 385 ^65000:3_0:239_0:226$ ip community-list expanded c13 permit 386 ^65000:4_0:240_0:18$ ip community-list expanded c13 permit 387 ^65000:3_0:240_0:227$ ip community-list expanded c13 permit 388 ^65000:4_0:241_0:18$ ip community-list expanded c13 permit 389 ^65000:3_0:241_0:228$ ip community-list expanded c13 permit 390 ^65000:4_0:242_0:18$ ip community-list expanded c13 permit 391 ^65000:3_0:242_0:229$ ip community-list expanded c13 permit 392 ^65000:4_0:243_0:18$ ip community-list expanded c13 permit 393 ^65000:3_0:243_0:230$ ip community-list expanded c13 permit 394 ^65000:4_0:244_0:18$ ip community-list expanded c13 permit 395 ^65000:3_0:244_0:231$ ip community-list expanded c13 permit 396 ^65000:4_0:245_0:18$ ip community-list expanded c13 permit 397 ^65000:3_0:245_0:232$ ip community-list expanded c13 permit 398 ^65000:4_0:246_0:18$ ip community-list expanded c13 permit 399 ^65000:3_0:246_0:233$ ip community-list expanded c13 permit 400 ^65000:4_0:247_0:18$ ip community-list expanded c13 permit 401 ^65000:4_0:247_0:19$ ip community-list expanded c13 permit 402 ^65000:3_0:247_0:234$ ip community-list expanded c13 permit 403 ^65000:4_0:248_0:18$ ip community-list expanded c13 permit 404 ^65000:4_0:248_0:19$ ip community-list expanded c13 permit 405 ^65000:3_0:248_0:235$ ip community-list expanded c13 permit 406 ^65000:4_0:249_0:18$ ip community-list expanded c13 permit 407 ^65000:4_0:249_0:19$ ip community-list expanded c13 permit 408 ^65000:3_0:249_0:236$ ip community-list expanded c13 permit 409 ^65000:4_0:250_0:18$ ip community-list expanded c13 permit 410 ^65000:4_0:250_0:19$ ip community-list expanded c13 permit 411 ^65000:3_0:250_0:237$ ip community-list expanded c13 permit 412 ^65000:4_0:251_0:18$ ip community-list expanded c13 permit 413 ^65000:4_0:251_0:19$ ip community-list expanded c13 permit 414 ^65000:3_0:251_0:238$ ip community-list expanded c13 permit 415 ^65000:4_0:252_0:19$ ip community-list expanded c13 permit 416 ^65000:3_0:252_0:239$ ip community-list expanded c13 permit 417 ^65000:4_0:253_0:19$ ip community-list expanded c13 permit 418 ^65000:3_0:253_0:240$ ip community-list expanded c13 permit 419 ^65000:4_0:254_0:19$ ip community-list expanded c13 permit 420 ^65000:3_0:254_0:241$ ip community-list expanded c13 permit 421 ^65000:4_0:255_0:19$ ip community-list expanded c13 permit 422 ^65000:3_0:255_0:242$ ip community-list expanded c13 permit 423 ^65000:4_0:256_0:19$ ip community-list expanded c13 permit 424 ^65000:3_0:256_0:243$ route-map calculator permit 3935 match community 1_1_12 2_1_13 1_2_11 1_3_10 1_4_9 set community 0:13 route-map calculator permit 3936 match community 1_5_8 1_6_7 c4_13_1 c3_14_1 c3_15_2 set community 0:13 route-map calculator permit 3937 match community c3_16_3 c3_17_4 c3_18_5 c3_19_6 c3_20_7 set community 0:13 route-map calculator permit 3938 match community c3_21_8 c3_22_9 c3_23_10 c3_24_11 c3_25_12 set community 0:13 route-map calculator permit 3939 match community c4_26_2 c3_26_13 c4_27_2 c3_27_14 c3_28_15 set community 0:13 route-map calculator permit 3940 match community c3_29_16 c3_30_17 c3_31_18 c3_32_19 c3_33_20 set community 0:13 route-map calculator permit 3941 match community c3_34_21 c3_35_22 c3_36_23 c3_37_24 c3_38_25 set community 0:13 route-map calculator permit 3942 match community c4_39_3 c3_39_26 c4_40_3 c3_40_27 c4_41_3 set community 0:13 route-map calculator permit 3943 match community c3_41_28 c3_42_29 c3_43_30 c3_44_31 c3_45_32 set community 0:13 route-map calculator permit 3944 match community c3_46_33 c3_47_34 c3_48_35 c3_49_36 c3_50_37 set community 0:13 route-map calculator permit 3945 match community c3_51_38 c4_52_4 c3_52_39 c4_53_4 c3_53_40 set community 0:13 route-map calculator permit 3946 match community c4_54_4 c3_54_41 c4_55_4 c3_55_42 c3_56_43 set community 0:13 route-map calculator permit 3947 match community c3_57_44 c3_58_45 c3_59_46 c3_60_47 c3_61_48 set community 0:13 route-map calculator permit 3948 match community c3_62_49 c3_63_50 c3_64_51 c4_65_5 c3_65_52 set community 0:13 route-map calculator permit 3949 match community c4_66_5 c3_66_53 c4_67_5 c3_67_54 c4_68_5 set community 0:13 route-map calculator permit 3950 match community c3_68_55 c4_69_5 c3_69_56 c3_70_57 c3_71_58 set community 0:13 route-map calculator permit 3951 match community c3_72_59 c3_73_60 c3_74_61 c3_75_62 c3_76_63 set community 0:13 route-map calculator permit 3952 match community c3_77_64 c4_78_6 c3_78_65 c4_79_6 c3_79_66 set community 0:13 route-map calculator permit 3953 match community c4_80_6 c3_80_67 c4_81_6 c3_81_68 c4_82_6 set community 0:13 route-map calculator permit 3954 match community c3_82_69 c4_83_6 c3_83_70 c3_84_71 c3_85_72 set community 0:13 route-map calculator permit 3955 match community c3_86_73 c3_87_74 c3_88_75 c3_89_76 c3_90_77 set community 0:13 route-map calculator permit 3956 match community c4_91_7 c3_91_78 c4_92_7 c3_92_79 c4_93_7 set community 0:13 route-map calculator permit 3957 match community c3_93_80 c4_94_7 c3_94_81 c4_95_7 c3_95_82 set community 0:13 route-map calculator permit 3958 match community c4_96_7 c3_96_83 c4_97_7 c3_97_84 c3_98_85 set community 0:13 route-map calculator permit 3959 match community c3_99_86 c3_100_87 c3_101_88 c3_102_89 c3_103_90 set community 0:13 route-map calculator permit 3960 match community c4_104_8 c3_104_91 c4_105_8 c3_105_92 c4_106_8 set community 0:13 route-map calculator permit 3961 match community c3_106_93 c4_107_8 c3_107_94 c4_108_8 c3_108_95 set community 0:13 route-map calculator permit 3962 match community c4_109_8 c3_109_96 c4_110_8 c3_110_97 c4_111_8 set community 0:13 route-map calculator permit 3963 match community c3_111_98 c3_112_99 c3_113_100 c3_114_101 c3_115_102 set community 0:13 route-map calculator permit 3964 match community c3_116_103 c4_117_9 c3_117_104 c4_118_9 c3_118_105 set community 0:13 route-map calculator permit 3965 match community c4_119_9 c3_119_106 c4_120_9 c3_120_107 c4_121_9 set community 0:13 route-map calculator permit 3966 match community c3_121_108 c4_122_9 c3_122_109 c4_123_9 c3_123_110 set community 0:13 route-map calculator permit 3967 match community c4_124_9 c3_124_111 c4_125_9 c3_125_112 c3_126_113 set community 0:13 route-map calculator permit 3968 match community c3_127_114 c3_128_115 c3_129_116 c4_130_10 c3_130_117 set community 0:13 route-map calculator permit 3969 match community c4_131_10 c3_131_118 c4_132_10 c3_132_119 c4_133_10 set community 0:13 route-map calculator permit 3970 match community c3_133_120 c4_134_10 c3_134_121 c4_135_10 c3_135_122 set community 0:13 route-map calculator permit 3971 match community c4_136_10 c3_136_123 c4_137_10 c3_137_124 c4_138_10 set community 0:13 route-map calculator permit 3972 match community c3_138_125 c4_139_10 c3_139_126 c3_140_127 c3_141_128 set community 0:13 route-map calculator permit 3973 match community c3_142_129 c4_143_11 c3_143_130 c4_144_11 c3_144_131 set community 0:13 route-map calculator permit 3974 match community c4_145_11 c3_145_132 c4_146_11 c3_146_133 c4_147_11 set community 0:13 route-map calculator permit 3975 match community c3_147_134 c4_148_11 c3_148_135 c4_149_11 c3_149_136 set community 0:13 route-map calculator permit 3976 match community c4_150_11 c3_150_137 c4_151_11 c3_151_138 c4_152_11 set community 0:13 route-map calculator permit 3977 match community c3_152_139 c4_153_11 c3_153_140 c3_154_141 c3_155_142 set community 0:13 route-map calculator permit 3978 match community c4_156_12 c3_156_143 c4_157_12 c3_157_144 c4_158_12 set community 0:13 route-map calculator permit 3979 match community c3_158_145 c4_159_12 c3_159_146 c4_160_12 c3_160_147 set community 0:13 route-map calculator permit 3980 match community c4_161_12 c3_161_148 c4_162_12 c3_162_149 c4_163_12 set community 0:13 route-map calculator permit 3981 match community c3_163_150 c4_164_12 c3_164_151 c4_165_12 c3_165_152 set community 0:13 route-map calculator permit 3982 match community c4_166_12 c3_166_153 c4_167_12 c3_167_154 c3_168_155 set community 0:13 route-map calculator permit 3983 match community c4_169_13 c3_169_156 c4_170_13 c3_170_157 c4_171_13 set community 0:13 route-map calculator permit 3984 match community c3_171_158 c4_172_13 c3_172_159 c4_173_13 c3_173_160 set community 0:13 route-map calculator permit 3985 match community c4_174_13 c3_174_161 c4_175_13 c3_175_162 c4_176_13 set community 0:13 route-map calculator permit 3986 match community c3_176_163 c4_177_13 c3_177_164 c4_178_13 c3_178_165 set community 0:13 route-map calculator permit 3987 match community c4_179_13 c3_179_166 c4_180_13 c3_180_167 c4_181_13 set community 0:13 route-map calculator permit 3988 match community c3_181_168 c4_182_14 c3_182_169 c4_183_14 c3_183_170 set community 0:13 route-map calculator permit 3989 match community c4_184_14 c3_184_171 c4_185_14 c3_185_172 c4_186_14 set community 0:13 route-map calculator permit 3990 match community c3_186_173 c4_187_14 c3_187_174 c4_188_14 c3_188_175 set community 0:13 route-map calculator permit 3991 match community c4_189_14 c3_189_176 c4_190_14 c3_190_177 c4_191_14 set community 0:13 route-map calculator permit 3992 match community c3_191_178 c4_192_14 c3_192_179 c4_193_14 c3_193_180 set community 0:13 route-map calculator permit 3993 match community c4_194_14 c3_194_181 c4_195_14 c4_195_15 c3_195_182 set community 0:13 route-map calculator permit 3994 match community c4_196_15 c3_196_183 c4_197_15 c3_197_184 c4_198_15 set community 0:13 route-map calculator permit 3995 match community c3_198_185 c4_199_15 c3_199_186 c4_200_15 c3_200_187 set community 0:13 route-map calculator permit 3996 match community c4_201_15 c3_201_188 c4_202_15 c3_202_189 c4_203_15 set community 0:13 route-map calculator permit 3997 match community c3_203_190 c4_204_15 c3_204_191 c4_205_15 c3_205_192 set community 0:13 route-map calculator permit 3998 match community c4_206_15 c3_206_193 c4_207_15 c3_207_194 c4_208_15 set community 0:13 route-map calculator permit 3999 match community c4_208_16 c3_208_195 c4_209_15 c4_209_16 c3_209_196 set community 0:13 route-map calculator permit 4000 match community c4_210_16 c3_210_197 c4_211_16 c3_211_198 c4_212_16 set community 0:13 route-map calculator permit 4001 match community c3_212_199 c4_213_16 c3_213_200 c4_214_16 c3_214_201 set community 0:13 route-map calculator permit 4002 match community c4_215_16 c3_215_202 c4_216_16 c3_216_203 c4_217_16 set community 0:13 route-map calculator permit 4003 match community c3_217_204 c4_218_16 c3_218_205 c4_219_16 c3_219_206 set community 0:13 route-map calculator permit 4004 match community c4_220_16 c3_220_207 c4_221_16 c4_221_17 c3_221_208 set community 0:13 route-map calculator permit 4005 match community c4_222_16 c4_222_17 c3_222_209 c4_223_16 c4_223_17 set community 0:13 route-map calculator permit 4006 match community c3_223_210 c4_224_17 c3_224_211 c4_225_17 c3_225_212 set community 0:13 route-map calculator permit 4007 match community c4_226_17 c3_226_213 c4_227_17 c3_227_214 c4_228_17 set community 0:13 route-map calculator permit 4008 match community c3_228_215 c4_229_17 c3_229_216 c4_230_17 c3_230_217 set community 0:13 route-map calculator permit 4009 match community c4_231_17 c3_231_218 c4_232_17 c3_232_219 c4_233_17 set community 0:13 route-map calculator permit 4010 match community c3_233_220 c4_234_17 c4_234_18 c3_234_221 c4_235_17 set community 0:13 route-map calculator permit 4011 match community c4_235_18 c3_235_222 c4_236_17 c4_236_18 c3_236_223 set community 0:13 route-map calculator permit 4012 match community c4_237_17 c4_237_18 c3_237_224 c4_238_18 c3_238_225 set community 0:13 route-map calculator permit 4013 match community c4_239_18 c3_239_226 c4_240_18 c3_240_227 c4_241_18 set community 0:13 route-map calculator permit 4014 match community c3_241_228 c4_242_18 c3_242_229 c4_243_18 c3_243_230 set community 0:13 route-map calculator permit 4015 match community c4_244_18 c3_244_231 c4_245_18 c3_245_232 c4_246_18 set community 0:13 route-map calculator permit 4016 match community c3_246_233 c4_247_18 c4_247_19 c3_247_234 c4_248_18 set community 0:13 route-map calculator permit 4017 match community c4_248_19 c3_248_235 c4_249_18 c4_249_19 c3_249_236 set community 0:13 route-map calculator permit 4018 match community c4_250_18 c4_250_19 c3_250_237 c4_251_18 c4_251_19 set community 0:13 route-map calculator permit 4019 match community c3_251_238 c4_252_19 c3_252_239 c4_253_19 c3_253_240 set community 0:13 route-map calculator permit 4020 match community c4_254_19 c3_254_241 c4_255_19 c3_255_242 c4_256_19 set community 0:13 route-map calculator permit 4021 match community c3_256_243 set community 0:13 ip community-list standard 2_153_173 permit 65000:2 0:153 0:173 route-map calculator permit 4022 match community 2_153_173 set community 0:26469 ip community-list standard 2_123_243 permit 65000:2 0:123 0:243 route-map calculator permit 4023 match community 2_123_243 set community 0:29889 ip community-list standard 2_147_250 permit 65000:2 0:147 0:250 ip community-list standard 2_150_245 permit 65000:2 0:150 0:245 ip community-list standard 2_175_210 permit 65000:2 0:175 0:210 route-map calculator permit 4024 match community 2_147_250 2_150_245 2_175_210 set community 0:36750 ip community-list standard 2_41_211 permit 65000:2 0:41 0:211 route-map calculator permit 4025 match community 2_41_211 set community 0:8651 ip community-list standard 2_43_245 permit 65000:2 0:43 0:245 ip community-list standard 2_49_215 permit 65000:2 0:49 0:215 route-map calculator permit 4026 match community 2_43_245 2_49_215 set community 0:10535 ip community-list standard 2_148_254 permit 65000:2 0:148 0:254 route-map calculator permit 4027 match community 2_148_254 set community 0:37592 ip community-list standard 2_95_228 permit 65000:2 0:95 0:228 ip community-list standard 2_114_190 permit 65000:2 0:114 0:190 route-map calculator permit 4028 match community 2_95_228 2_114_190 set community 0:21660 ip community-list standard 2_124_199 permit 65000:2 0:124 0:199 route-map calculator permit 4029 match community 2_124_199 set community 0:24676 ip community-list standard 2_62_218 permit 65000:2 0:62 0:218 ip community-list standard 2_109_124 permit 65000:2 0:109 0:124 route-map calculator permit 4030 match community 2_62_218 2_109_124 set community 0:13516 ip community-list standard 2_114_245 permit 65000:2 0:114 0:245 ip community-list standard 2_133_210 permit 65000:2 0:133 0:210 ip community-list standard 2_147_190 permit 65000:2 0:147 0:190 route-map calculator permit 4031 match community 2_114_245 2_133_210 2_147_190 set community 0:27930 ip community-list standard 2_13_178 permit 65000:2 0:13 0:178 ip community-list standard 2_26_89 permit 65000:2 0:26 0:89 route-map calculator permit 4032 match community 2_13_178 2_26_89 set community 0:2314 ip community-list standard 2_215_220 permit 65000:2 0:215 0:220 route-map calculator permit 4033 match community 2_215_220 set community 0:47300 ip community-list standard 2_164_223 permit 65000:2 0:164 0:223 route-map calculator permit 4034 match community 2_164_223 set community 0:36572 ip community-list standard 2_15_101 permit 65000:2 0:15 0:101 route-map calculator permit 4035 match community 2_15_101 set community 0:1515 ip community-list standard 2_169_200 permit 65000:2 0:169 0:200 route-map calculator permit 4036 match community 2_169_200 set community 0:33800 ip community-list standard 2_57_202 permit 65000:2 0:57 0:202 ip community-list standard 2_101_114 permit 65000:2 0:101 0:114 route-map calculator permit 4037 match community 2_57_202 2_101_114 set community 0:11514 ip community-list standard 2_53_191 permit 65000:2 0:53 0:191 route-map calculator permit 4038 match community 2_53_191 set community 0:10123 ip community-list standard 1_1_105 permit 65000:1 0:1 0:105 ip community-list standard 2_1_106 permit 65000:2 0:1 0:106 ip community-list standard 2_2_53 permit 65000:2 0:2 0:53 ip community-list standard 1_2_104 permit 65000:1 0:2 0:104 ip community-list standard 1_3_103 permit 65000:1 0:3 0:103 ip community-list standard 1_4_102 permit 65000:1 0:4 0:102 ip community-list standard 1_5_101 permit 65000:1 0:5 0:101 ip community-list standard 1_6_100 permit 65000:1 0:6 0:100 ip community-list standard 1_7_99 permit 65000:1 0:7 0:99 ip community-list standard 1_8_98 permit 65000:1 0:8 0:98 ip community-list standard 1_9_97 permit 65000:1 0:9 0:97 ip community-list standard 1_10_96 permit 65000:1 0:10 0:96 ip community-list standard 1_11_95 permit 65000:1 0:11 0:95 ip community-list standard 1_12_94 permit 65000:1 0:12 0:94 ip community-list standard 1_13_93 permit 65000:1 0:13 0:93 ip community-list standard 1_14_92 permit 65000:1 0:14 0:92 ip community-list standard 1_15_91 permit 65000:1 0:15 0:91 ip community-list standard 1_16_90 permit 65000:1 0:16 0:90 ip community-list standard 1_17_89 permit 65000:1 0:17 0:89 ip community-list standard 1_18_88 permit 65000:1 0:18 0:88 ip community-list standard 1_19_87 permit 65000:1 0:19 0:87 ip community-list standard 1_20_86 permit 65000:1 0:20 0:86 ip community-list standard 1_21_85 permit 65000:1 0:21 0:85 ip community-list standard 1_22_84 permit 65000:1 0:22 0:84 ip community-list standard 1_23_83 permit 65000:1 0:23 0:83 ip community-list standard 1_24_82 permit 65000:1 0:24 0:82 ip community-list standard 1_25_81 permit 65000:1 0:25 0:81 ip community-list standard 1_26_80 permit 65000:1 0:26 0:80 ip community-list standard 1_27_79 permit 65000:1 0:27 0:79 ip community-list standard 1_28_78 permit 65000:1 0:28 0:78 ip community-list standard 1_29_77 permit 65000:1 0:29 0:77 ip community-list standard 1_30_76 permit 65000:1 0:30 0:76 ip community-list standard 1_31_75 permit 65000:1 0:31 0:75 ip community-list standard 1_32_74 permit 65000:1 0:32 0:74 ip community-list standard 1_33_73 permit 65000:1 0:33 0:73 ip community-list standard 1_34_72 permit 65000:1 0:34 0:72 ip community-list standard 1_35_71 permit 65000:1 0:35 0:71 ip community-list standard 1_36_70 permit 65000:1 0:36 0:70 ip community-list standard 1_37_69 permit 65000:1 0:37 0:69 ip community-list standard 1_38_68 permit 65000:1 0:38 0:68 ip community-list standard 1_39_67 permit 65000:1 0:39 0:67 ip community-list standard 1_40_66 permit 65000:1 0:40 0:66 ip community-list standard 1_41_65 permit 65000:1 0:41 0:65 ip community-list standard 1_42_64 permit 65000:1 0:42 0:64 ip community-list standard 1_43_63 permit 65000:1 0:43 0:63 ip community-list standard 1_44_62 permit 65000:1 0:44 0:62 ip community-list standard 1_45_61 permit 65000:1 0:45 0:61 ip community-list standard 1_46_60 permit 65000:1 0:46 0:60 ip community-list standard 1_47_59 permit 65000:1 0:47 0:59 ip community-list standard 1_48_58 permit 65000:1 0:48 0:58 ip community-list standard 1_49_57 permit 65000:1 0:49 0:57 ip community-list standard 1_50_56 permit 65000:1 0:50 0:56 ip community-list standard 1_51_55 permit 65000:1 0:51 0:55 ip community-list standard 1_52_54 permit 65000:1 0:52 0:54 ip community-list standard 1_53_53 permit 65000:1 0:53 0:53 ip community-list expanded c106 permit 1 ^65000:4_0:106_0:1$ ip community-list expanded c106 permit 2 ^65000:3_0:107_0:1$ ip community-list expanded c106 permit 3 ^65000:3_0:108_0:2$ ip community-list expanded c106 permit 4 ^65000:3_0:109_0:3$ ip community-list expanded c106 permit 5 ^65000:3_0:110_0:4$ ip community-list expanded c106 permit 6 ^65000:3_0:111_0:5$ ip community-list expanded c106 permit 7 ^65000:3_0:112_0:6$ ip community-list expanded c106 permit 8 ^65000:3_0:113_0:7$ ip community-list expanded c106 permit 9 ^65000:3_0:114_0:8$ ip community-list expanded c106 permit 10 ^65000:3_0:115_0:9$ ip community-list expanded c106 permit 11 ^65000:3_0:116_0:10$ ip community-list expanded c106 permit 12 ^65000:3_0:117_0:11$ ip community-list expanded c106 permit 13 ^65000:3_0:118_0:12$ ip community-list expanded c106 permit 14 ^65000:3_0:119_0:13$ ip community-list expanded c106 permit 15 ^65000:3_0:120_0:14$ ip community-list expanded c106 permit 16 ^65000:3_0:121_0:15$ ip community-list expanded c106 permit 17 ^65000:3_0:122_0:16$ ip community-list expanded c106 permit 18 ^65000:3_0:123_0:17$ ip community-list expanded c106 permit 19 ^65000:3_0:124_0:18$ ip community-list expanded c106 permit 20 ^65000:3_0:125_0:19$ ip community-list expanded c106 permit 21 ^65000:3_0:126_0:20$ ip community-list expanded c106 permit 22 ^65000:3_0:127_0:21$ ip community-list expanded c106 permit 23 ^65000:3_0:128_0:22$ ip community-list expanded c106 permit 24 ^65000:3_0:129_0:23$ ip community-list expanded c106 permit 25 ^65000:3_0:130_0:24$ ip community-list expanded c106 permit 26 ^65000:3_0:131_0:25$ ip community-list expanded c106 permit 27 ^65000:3_0:132_0:26$ ip community-list expanded c106 permit 28 ^65000:3_0:133_0:27$ ip community-list expanded c106 permit 29 ^65000:3_0:134_0:28$ ip community-list expanded c106 permit 30 ^65000:3_0:135_0:29$ ip community-list expanded c106 permit 31 ^65000:3_0:136_0:30$ ip community-list expanded c106 permit 32 ^65000:3_0:137_0:31$ ip community-list expanded c106 permit 33 ^65000:3_0:138_0:32$ ip community-list expanded c106 permit 34 ^65000:3_0:139_0:33$ ip community-list expanded c106 permit 35 ^65000:3_0:140_0:34$ ip community-list expanded c106 permit 36 ^65000:3_0:141_0:35$ ip community-list expanded c106 permit 37 ^65000:3_0:142_0:36$ ip community-list expanded c106 permit 38 ^65000:3_0:143_0:37$ ip community-list expanded c106 permit 39 ^65000:3_0:144_0:38$ ip community-list expanded c106 permit 40 ^65000:3_0:145_0:39$ ip community-list expanded c106 permit 41 ^65000:3_0:146_0:40$ ip community-list expanded c106 permit 42 ^65000:3_0:147_0:41$ ip community-list expanded c106 permit 43 ^65000:3_0:148_0:42$ ip community-list expanded c106 permit 44 ^65000:3_0:149_0:43$ ip community-list expanded c106 permit 45 ^65000:3_0:150_0:44$ ip community-list expanded c106 permit 46 ^65000:3_0:151_0:45$ ip community-list expanded c106 permit 47 ^65000:3_0:152_0:46$ ip community-list expanded c106 permit 48 ^65000:3_0:153_0:47$ ip community-list expanded c106 permit 49 ^65000:3_0:154_0:48$ ip community-list expanded c106 permit 50 ^65000:3_0:155_0:49$ ip community-list expanded c106 permit 51 ^65000:3_0:156_0:50$ ip community-list expanded c106 permit 52 ^65000:3_0:157_0:51$ ip community-list expanded c106 permit 53 ^65000:3_0:158_0:52$ ip community-list expanded c106 permit 54 ^65000:3_0:159_0:53$ ip community-list expanded c106 permit 55 ^65000:3_0:160_0:54$ ip community-list expanded c106 permit 56 ^65000:3_0:161_0:55$ ip community-list expanded c106 permit 57 ^65000:3_0:162_0:56$ ip community-list expanded c106 permit 58 ^65000:3_0:163_0:57$ ip community-list expanded c106 permit 59 ^65000:3_0:164_0:58$ ip community-list expanded c106 permit 60 ^65000:3_0:165_0:59$ ip community-list expanded c106 permit 61 ^65000:3_0:166_0:60$ ip community-list expanded c106 permit 62 ^65000:3_0:167_0:61$ ip community-list expanded c106 permit 63 ^65000:3_0:168_0:62$ ip community-list expanded c106 permit 64 ^65000:3_0:169_0:63$ ip community-list expanded c106 permit 65 ^65000:3_0:170_0:64$ ip community-list expanded c106 permit 66 ^65000:3_0:171_0:65$ ip community-list expanded c106 permit 67 ^65000:3_0:172_0:66$ ip community-list expanded c106 permit 68 ^65000:3_0:173_0:67$ ip community-list expanded c106 permit 69 ^65000:3_0:174_0:68$ ip community-list expanded c106 permit 70 ^65000:3_0:175_0:69$ ip community-list expanded c106 permit 71 ^65000:3_0:176_0:70$ ip community-list expanded c106 permit 72 ^65000:3_0:177_0:71$ ip community-list expanded c106 permit 73 ^65000:3_0:178_0:72$ ip community-list expanded c106 permit 74 ^65000:3_0:179_0:73$ ip community-list expanded c106 permit 75 ^65000:3_0:180_0:74$ ip community-list expanded c106 permit 76 ^65000:3_0:181_0:75$ ip community-list expanded c106 permit 77 ^65000:3_0:182_0:76$ ip community-list expanded c106 permit 78 ^65000:3_0:183_0:77$ ip community-list expanded c106 permit 79 ^65000:3_0:184_0:78$ ip community-list expanded c106 permit 80 ^65000:3_0:185_0:79$ ip community-list expanded c106 permit 81 ^65000:3_0:186_0:80$ ip community-list expanded c106 permit 82 ^65000:3_0:187_0:81$ ip community-list expanded c106 permit 83 ^65000:3_0:188_0:82$ ip community-list expanded c106 permit 84 ^65000:3_0:189_0:83$ ip community-list expanded c106 permit 85 ^65000:3_0:190_0:84$ ip community-list expanded c106 permit 86 ^65000:3_0:191_0:85$ ip community-list expanded c106 permit 87 ^65000:3_0:192_0:86$ ip community-list expanded c106 permit 88 ^65000:3_0:193_0:87$ ip community-list expanded c106 permit 89 ^65000:3_0:194_0:88$ ip community-list expanded c106 permit 90 ^65000:3_0:195_0:89$ ip community-list expanded c106 permit 91 ^65000:3_0:196_0:90$ ip community-list expanded c106 permit 92 ^65000:3_0:197_0:91$ ip community-list expanded c106 permit 93 ^65000:3_0:198_0:92$ ip community-list expanded c106 permit 94 ^65000:3_0:199_0:93$ ip community-list expanded c106 permit 95 ^65000:3_0:200_0:94$ ip community-list expanded c106 permit 96 ^65000:3_0:201_0:95$ ip community-list expanded c106 permit 97 ^65000:3_0:202_0:96$ ip community-list expanded c106 permit 98 ^65000:3_0:203_0:97$ ip community-list expanded c106 permit 99 ^65000:3_0:204_0:98$ ip community-list expanded c106 permit 100 ^65000:3_0:205_0:99$ ip community-list expanded c106 permit 101 ^65000:3_0:206_0:100$ ip community-list expanded c106 permit 102 ^65000:3_0:207_0:101$ ip community-list expanded c106 permit 103 ^65000:3_0:208_0:102$ ip community-list expanded c106 permit 104 ^65000:3_0:209_0:103$ ip community-list expanded c106 permit 105 ^65000:3_0:210_0:104$ ip community-list expanded c106 permit 106 ^65000:3_0:211_0:105$ ip community-list expanded c106 permit 107 ^65000:4_0:212_0:2$ ip community-list expanded c106 permit 108 ^65000:3_0:212_0:106$ ip community-list expanded c106 permit 109 ^65000:4_0:213_0:2$ ip community-list expanded c106 permit 110 ^65000:3_0:213_0:107$ ip community-list expanded c106 permit 111 ^65000:3_0:214_0:108$ ip community-list expanded c106 permit 112 ^65000:3_0:215_0:109$ ip community-list expanded c106 permit 113 ^65000:3_0:216_0:110$ ip community-list expanded c106 permit 114 ^65000:3_0:217_0:111$ ip community-list expanded c106 permit 115 ^65000:3_0:218_0:112$ ip community-list expanded c106 permit 116 ^65000:3_0:219_0:113$ ip community-list expanded c106 permit 117 ^65000:3_0:220_0:114$ ip community-list expanded c106 permit 118 ^65000:3_0:221_0:115$ ip community-list expanded c106 permit 119 ^65000:3_0:222_0:116$ ip community-list expanded c106 permit 120 ^65000:3_0:223_0:117$ ip community-list expanded c106 permit 121 ^65000:3_0:224_0:118$ ip community-list expanded c106 permit 122 ^65000:3_0:225_0:119$ ip community-list expanded c106 permit 123 ^65000:3_0:226_0:120$ ip community-list expanded c106 permit 124 ^65000:3_0:227_0:121$ ip community-list expanded c106 permit 125 ^65000:3_0:228_0:122$ ip community-list expanded c106 permit 126 ^65000:3_0:229_0:123$ ip community-list expanded c106 permit 127 ^65000:3_0:230_0:124$ ip community-list expanded c106 permit 128 ^65000:3_0:231_0:125$ ip community-list expanded c106 permit 129 ^65000:3_0:232_0:126$ ip community-list expanded c106 permit 130 ^65000:3_0:233_0:127$ ip community-list expanded c106 permit 131 ^65000:3_0:234_0:128$ ip community-list expanded c106 permit 132 ^65000:3_0:235_0:129$ ip community-list expanded c106 permit 133 ^65000:3_0:236_0:130$ ip community-list expanded c106 permit 134 ^65000:3_0:237_0:131$ ip community-list expanded c106 permit 135 ^65000:3_0:238_0:132$ ip community-list expanded c106 permit 136 ^65000:3_0:239_0:133$ ip community-list expanded c106 permit 137 ^65000:3_0:240_0:134$ ip community-list expanded c106 permit 138 ^65000:3_0:241_0:135$ ip community-list expanded c106 permit 139 ^65000:3_0:242_0:136$ ip community-list expanded c106 permit 140 ^65000:3_0:243_0:137$ ip community-list expanded c106 permit 141 ^65000:3_0:244_0:138$ ip community-list expanded c106 permit 142 ^65000:3_0:245_0:139$ ip community-list expanded c106 permit 143 ^65000:3_0:246_0:140$ ip community-list expanded c106 permit 144 ^65000:3_0:247_0:141$ ip community-list expanded c106 permit 145 ^65000:3_0:248_0:142$ ip community-list expanded c106 permit 146 ^65000:3_0:249_0:143$ ip community-list expanded c106 permit 147 ^65000:3_0:250_0:144$ ip community-list expanded c106 permit 148 ^65000:3_0:251_0:145$ ip community-list expanded c106 permit 149 ^65000:3_0:252_0:146$ ip community-list expanded c106 permit 150 ^65000:3_0:253_0:147$ ip community-list expanded c106 permit 151 ^65000:3_0:254_0:148$ ip community-list expanded c106 permit 152 ^65000:3_0:255_0:149$ ip community-list expanded c106 permit 153 ^65000:3_0:256_0:150$ route-map calculator permit 4039 match community 1_1_105 2_1_106 2_2_53 1_2_104 1_3_103 set community 0:106 route-map calculator permit 4040 match community 1_4_102 1_5_101 1_6_100 1_7_99 1_8_98 set community 0:106 route-map calculator permit 4041 match community 1_9_97 1_10_96 1_11_95 1_12_94 1_13_93 set community 0:106 route-map calculator permit 4042 match community 1_14_92 1_15_91 1_16_90 1_17_89 1_18_88 set community 0:106 route-map calculator permit 4043 match community 1_19_87 1_20_86 1_21_85 1_22_84 1_23_83 set community 0:106 route-map calculator permit 4044 match community 1_24_82 1_25_81 1_26_80 1_27_79 1_28_78 set community 0:106 route-map calculator permit 4045 match community 1_29_77 1_30_76 1_31_75 1_32_74 1_33_73 set community 0:106 route-map calculator permit 4046 match community 1_34_72 1_35_71 1_36_70 1_37_69 1_38_68 set community 0:106 route-map calculator permit 4047 match community 1_39_67 1_40_66 1_41_65 1_42_64 1_43_63 set community 0:106 route-map calculator permit 4048 match community 1_44_62 1_45_61 1_46_60 1_47_59 1_48_58 set community 0:106 route-map calculator permit 4049 match community 1_49_57 1_50_56 1_51_55 1_52_54 1_53_53 set community 0:106 route-map calculator permit 4050 match community c4_106_1 c3_107_1 c3_108_2 c3_109_3 c3_110_4 set community 0:106 route-map calculator permit 4051 match community c3_111_5 c3_112_6 c3_113_7 c3_114_8 c3_115_9 set community 0:106 route-map calculator permit 4052 match community c3_116_10 c3_117_11 c3_118_12 c3_119_13 c3_120_14 set community 0:106 route-map calculator permit 4053 match community c3_121_15 c3_122_16 c3_123_17 c3_124_18 c3_125_19 set community 0:106 route-map calculator permit 4054 match community c3_126_20 c3_127_21 c3_128_22 c3_129_23 c3_130_24 set community 0:106 route-map calculator permit 4055 match community c3_131_25 c3_132_26 c3_133_27 c3_134_28 c3_135_29 set community 0:106 route-map calculator permit 4056 match community c3_136_30 c3_137_31 c3_138_32 c3_139_33 c3_140_34 set community 0:106 route-map calculator permit 4057 match community c3_141_35 c3_142_36 c3_143_37 c3_144_38 c3_145_39 set community 0:106 route-map calculator permit 4058 match community c3_146_40 c3_147_41 c3_148_42 c3_149_43 c3_150_44 set community 0:106 route-map calculator permit 4059 match community c3_151_45 c3_152_46 c3_153_47 c3_154_48 c3_155_49 set community 0:106 route-map calculator permit 4060 match community c3_156_50 c3_157_51 c3_158_52 c3_159_53 c3_160_54 set community 0:106 route-map calculator permit 4061 match community c3_161_55 c3_162_56 c3_163_57 c3_164_58 c3_165_59 set community 0:106 route-map calculator permit 4062 match community c3_166_60 c3_167_61 c3_168_62 c3_169_63 c3_170_64 set community 0:106 route-map calculator permit 4063 match community c3_171_65 c3_172_66 c3_173_67 c3_174_68 c3_175_69 set community 0:106 route-map calculator permit 4064 match community c3_176_70 c3_177_71 c3_178_72 c3_179_73 c3_180_74 set community 0:106 route-map calculator permit 4065 match community c3_181_75 c3_182_76 c3_183_77 c3_184_78 c3_185_79 set community 0:106 route-map calculator permit 4066 match community c3_186_80 c3_187_81 c3_188_82 c3_189_83 c3_190_84 set community 0:106 route-map calculator permit 4067 match community c3_191_85 c3_192_86 c3_193_87 c3_194_88 c3_195_89 set community 0:106 route-map calculator permit 4068 match community c3_196_90 c3_197_91 c3_198_92 c3_199_93 c3_200_94 set community 0:106 route-map calculator permit 4069 match community c3_201_95 c3_202_96 c3_203_97 c3_204_98 c3_205_99 set community 0:106 route-map calculator permit 4070 match community c3_206_100 c3_207_101 c3_208_102 c3_209_103 c3_210_104 set community 0:106 route-map calculator permit 4071 match community c3_211_105 c4_212_2 c3_212_106 c4_213_2 c3_213_107 set community 0:106 route-map calculator permit 4072 match community c3_214_108 c3_215_109 c3_216_110 c3_217_111 c3_218_112 set community 0:106 route-map calculator permit 4073 match community c3_219_113 c3_220_114 c3_221_115 c3_222_116 c3_223_117 set community 0:106 route-map calculator permit 4074 match community c3_224_118 c3_225_119 c3_226_120 c3_227_121 c3_228_122 set community 0:106 route-map calculator permit 4075 match community c3_229_123 c3_230_124 c3_231_125 c3_232_126 c3_233_127 set community 0:106 route-map calculator permit 4076 match community c3_234_128 c3_235_129 c3_236_130 c3_237_131 c3_238_132 set community 0:106 route-map calculator permit 4077 match community c3_239_133 c3_240_134 c3_241_135 c3_242_136 c3_243_137 set community 0:106 route-map calculator permit 4078 match community c3_244_138 c3_245_139 c3_246_140 c3_247_141 c3_248_142 set community 0:106 route-map calculator permit 4079 match community c3_249_143 c3_250_144 c3_251_145 c3_252_146 c3_253_147 set community 0:106 route-map calculator permit 4080 match community c3_254_148 c3_255_149 c3_256_150 set community 0:106 ip community-list standard 2_115_197 permit 65000:2 0:115 0:197 route-map calculator permit 4081 match community 2_115_197 set community 0:22655 ip community-list standard 2_176_222 permit 65000:2 0:176 0:222 route-map calculator permit 4082 match community 2_176_222 set community 0:39072 ip community-list standard 2_119_241 permit 65000:2 0:119 0:241 route-map calculator permit 4083 match community 2_119_241 set community 0:28679 ip community-list standard 2_56_239 permit 65000:2 0:56 0:239 route-map calculator permit 4084 match community 2_56_239 set community 0:13384 ip community-list standard 2_114_227 permit 65000:2 0:114 0:227 route-map calculator permit 4085 match community 2_114_227 set community 0:25878 ip community-list standard 2_2_250 permit 65000:2 0:2 0:250 ip community-list standard 2_4_125 permit 65000:2 0:4 0:125 ip community-list standard 2_5_100 permit 65000:2 0:5 0:100 ip community-list standard 2_10_50 permit 65000:2 0:10 0:50 ip community-list standard 2_20_25 permit 65000:2 0:20 0:25 ip community-list standard 1_244_256 permit 65000:1 0:244 0:256 ip community-list standard 1_245_255 permit 65000:1 0:245 0:255 ip community-list standard 1_246_254 permit 65000:1 0:246 0:254 ip community-list standard 1_247_253 permit 65000:1 0:247 0:253 ip community-list standard 1_248_252 permit 65000:1 0:248 0:252 ip community-list standard 1_249_251 permit 65000:1 0:249 0:251 ip community-list standard 1_250_250 permit 65000:1 0:250 0:250 route-map calculator permit 4086 match community 2_2_250 2_4_125 2_5_100 2_10_50 2_20_25 set community 0:500 route-map calculator permit 4087 match community 1_244_256 1_245_255 1_246_254 1_247_253 1_248_252 set community 0:500 route-map calculator permit 4088 match community 1_249_251 1_250_250 set community 0:500 ip community-list standard 2_173_232 permit 65000:2 0:173 0:232 route-map calculator permit 4089 match community 2_173_232 set community 0:40136 ip community-list standard 2_134_207 permit 65000:2 0:134 0:207 ip community-list standard 2_138_201 permit 65000:2 0:138 0:201 route-map calculator permit 4090 match community 2_134_207 2_138_201 set community 0:27738 ip community-list standard 2_4_136 permit 65000:2 0:4 0:136 ip community-list standard 2_8_68 permit 65000:2 0:8 0:68 ip community-list standard 2_16_34 permit 65000:2 0:16 0:34 ip community-list standard 2_17_32 permit 65000:2 0:17 0:32 route-map calculator permit 4091 match community 2_4_136 2_8_68 2_16_34 2_17_32 set community 0:544 ip community-list standard 2_19_178 permit 65000:2 0:19 0:178 ip community-list standard 2_38_89 permit 65000:2 0:38 0:89 route-map calculator permit 4092 match community 2_19_178 2_38_89 set community 0:3382 ip community-list standard 2_206_240 permit 65000:2 0:206 0:240 route-map calculator permit 4093 match community 2_206_240 set community 0:49440 ip community-list standard 2_5_169 permit 65000:2 0:5 0:169 ip community-list standard 2_13_65 permit 65000:2 0:13 0:65 route-map calculator permit 4094 match community 2_5_169 2_13_65 set community 0:845 ip community-list standard 2_81_199 permit 65000:2 0:81 0:199 route-map calculator permit 4095 match community 2_81_199 set community 0:16119 ip community-list standard 2_32_157 permit 65000:2 0:32 0:157 route-map calculator permit 4096 match community 2_32_157 set community 0:5024 ip community-list standard 2_10_231 permit 65000:2 0:10 0:231 ip community-list standard 2_11_210 permit 65000:2 0:11 0:210 ip community-list standard 2_14_165 permit 65000:2 0:14 0:165 ip community-list standard 2_15_154 permit 65000:2 0:15 0:154 ip community-list standard 2_21_110 permit 65000:2 0:21 0:110 ip community-list standard 2_22_105 permit 65000:2 0:22 0:105 ip community-list standard 2_30_77 permit 65000:2 0:30 0:77 ip community-list standard 2_33_70 permit 65000:2 0:33 0:70 ip community-list standard 2_35_66 permit 65000:2 0:35 0:66 ip community-list standard 2_42_55 permit 65000:2 0:42 0:55 route-map calculator permit 4097 match community 2_10_231 2_11_210 2_14_165 2_15_154 2_21_110 set community 0:2310 route-map calculator permit 4098 match community 2_22_105 2_30_77 2_33_70 2_35_66 2_42_55 set community 0:2310 ip community-list standard 2_15_214 permit 65000:2 0:15 0:214 ip community-list standard 2_30_107 permit 65000:2 0:30 0:107 route-map calculator permit 4099 match community 2_15_214 2_30_107 set community 0:3210 ip community-list standard 2_138_161 permit 65000:2 0:138 0:161 route-map calculator permit 4100 match community 2_138_161 set community 0:22218 ip community-list standard 2_29_106 permit 65000:2 0:29 0:106 ip community-list standard 2_53_58 permit 65000:2 0:53 0:58 route-map calculator permit 4101 match community 2_29_106 2_53_58 set community 0:3074 ip community-list standard 2_189_253 permit 65000:2 0:189 0:253 ip community-list standard 2_207_231 permit 65000:2 0:207 0:231 route-map calculator permit 4102 match community 2_189_253 2_207_231 set community 0:47817 ip community-list standard 2_15_242 permit 65000:2 0:15 0:242 ip community-list standard 2_22_165 permit 65000:2 0:22 0:165 ip community-list standard 2_30_121 permit 65000:2 0:30 0:121 ip community-list standard 2_33_110 permit 65000:2 0:33 0:110 ip community-list standard 2_55_66 permit 65000:2 0:55 0:66 route-map calculator permit 4103 match community 2_15_242 2_22_165 2_30_121 2_33_110 2_55_66 set community 0:3630 ip community-list standard 2_78_181 permit 65000:2 0:78 0:181 route-map calculator permit 4104 match community 2_78_181 set community 0:14118 ip community-list standard 2_43_131 permit 65000:2 0:43 0:131 route-map calculator permit 4105 match community 2_43_131 set community 0:5633 ip community-list standard 2_7_94 permit 65000:2 0:7 0:94 ip community-list standard 2_14_47 permit 65000:2 0:14 0:47 route-map calculator permit 4106 match community 2_7_94 2_14_47 set community 0:658 ip community-list standard 2_137_203 permit 65000:2 0:137 0:203 route-map calculator permit 4107 match community 2_137_203 set community 0:27811 ip community-list standard 2_32_167 permit 65000:2 0:32 0:167 route-map calculator permit 4108 match community 2_32_167 set community 0:5344 ip community-list standard 2_173_196 permit 65000:2 0:173 0:196 route-map calculator permit 4109 match community 2_173_196 set community 0:33908 ip community-list standard 2_49_209 permit 65000:2 0:49 0:209 ip community-list standard 2_77_133 permit 65000:2 0:77 0:133 route-map calculator permit 4110 match community 2_49_209 2_77_133 set community 0:10241 ip community-list standard 2_28_254 permit 65000:2 0:28 0:254 ip community-list standard 2_56_127 permit 65000:2 0:56 0:127 route-map calculator permit 4111 match community 2_28_254 2_56_127 set community 0:7112 ip community-list standard 2_213_236 permit 65000:2 0:213 0:236 route-map calculator permit 4112 match community 2_213_236 set community 0:50268 ip community-list standard 2_187_209 permit 65000:2 0:187 0:209 route-map calculator permit 4113 match community 2_187_209 set community 0:39083 ip community-list standard 2_50_201 permit 65000:2 0:50 0:201 ip community-list standard 2_67_150 permit 65000:2 0:67 0:150 ip community-list standard 2_75_134 permit 65000:2 0:75 0:134 route-map calculator permit 4114 match community 2_50_201 2_67_150 2_75_134 set community 0:10050 ip community-list standard 2_184_194 permit 65000:2 0:184 0:194 route-map calculator permit 4115 match community 2_184_194 set community 0:35696 ip community-list standard 2_181_193 permit 65000:2 0:181 0:193 route-map calculator permit 4116 match community 2_181_193 set community 0:34933 ip community-list standard 1_123_256 permit 65000:1 0:123 0:256 ip community-list standard 1_124_255 permit 65000:1 0:124 0:255 ip community-list standard 1_125_254 permit 65000:1 0:125 0:254 ip community-list standard 1_126_253 permit 65000:1 0:126 0:253 ip community-list standard 1_127_252 permit 65000:1 0:127 0:252 ip community-list standard 1_128_251 permit 65000:1 0:128 0:251 ip community-list standard 1_129_250 permit 65000:1 0:129 0:250 ip community-list standard 1_130_249 permit 65000:1 0:130 0:249 ip community-list standard 1_131_248 permit 65000:1 0:131 0:248 ip community-list standard 1_132_247 permit 65000:1 0:132 0:247 ip community-list standard 1_133_246 permit 65000:1 0:133 0:246 ip community-list standard 1_134_245 permit 65000:1 0:134 0:245 ip community-list standard 1_135_244 permit 65000:1 0:135 0:244 ip community-list standard 1_136_243 permit 65000:1 0:136 0:243 ip community-list standard 1_137_242 permit 65000:1 0:137 0:242 ip community-list standard 1_138_241 permit 65000:1 0:138 0:241 ip community-list standard 1_139_240 permit 65000:1 0:139 0:240 ip community-list standard 1_140_239 permit 65000:1 0:140 0:239 ip community-list standard 1_141_238 permit 65000:1 0:141 0:238 ip community-list standard 1_142_237 permit 65000:1 0:142 0:237 ip community-list standard 1_143_236 permit 65000:1 0:143 0:236 ip community-list standard 1_144_235 permit 65000:1 0:144 0:235 ip community-list standard 1_145_234 permit 65000:1 0:145 0:234 ip community-list standard 1_146_233 permit 65000:1 0:146 0:233 ip community-list standard 1_147_232 permit 65000:1 0:147 0:232 ip community-list standard 1_148_231 permit 65000:1 0:148 0:231 ip community-list standard 1_149_230 permit 65000:1 0:149 0:230 ip community-list standard 1_150_229 permit 65000:1 0:150 0:229 ip community-list standard 1_151_228 permit 65000:1 0:151 0:228 ip community-list standard 1_152_227 permit 65000:1 0:152 0:227 ip community-list standard 1_153_226 permit 65000:1 0:153 0:226 ip community-list standard 1_154_225 permit 65000:1 0:154 0:225 ip community-list standard 1_155_224 permit 65000:1 0:155 0:224 ip community-list standard 1_156_223 permit 65000:1 0:156 0:223 ip community-list standard 1_157_222 permit 65000:1 0:157 0:222 ip community-list standard 1_158_221 permit 65000:1 0:158 0:221 ip community-list standard 1_159_220 permit 65000:1 0:159 0:220 ip community-list standard 1_160_219 permit 65000:1 0:160 0:219 ip community-list standard 1_161_218 permit 65000:1 0:161 0:218 ip community-list standard 1_162_217 permit 65000:1 0:162 0:217 ip community-list standard 1_163_216 permit 65000:1 0:163 0:216 ip community-list standard 1_164_215 permit 65000:1 0:164 0:215 ip community-list standard 1_165_214 permit 65000:1 0:165 0:214 ip community-list standard 1_166_213 permit 65000:1 0:166 0:213 ip community-list standard 1_167_212 permit 65000:1 0:167 0:212 ip community-list standard 1_168_211 permit 65000:1 0:168 0:211 ip community-list standard 1_169_210 permit 65000:1 0:169 0:210 ip community-list standard 1_170_209 permit 65000:1 0:170 0:209 ip community-list standard 1_171_208 permit 65000:1 0:171 0:208 ip community-list standard 1_172_207 permit 65000:1 0:172 0:207 ip community-list standard 1_173_206 permit 65000:1 0:173 0:206 ip community-list standard 1_174_205 permit 65000:1 0:174 0:205 ip community-list standard 1_175_204 permit 65000:1 0:175 0:204 ip community-list standard 1_176_203 permit 65000:1 0:176 0:203 ip community-list standard 1_177_202 permit 65000:1 0:177 0:202 ip community-list standard 1_178_201 permit 65000:1 0:178 0:201 ip community-list standard 1_179_200 permit 65000:1 0:179 0:200 ip community-list standard 1_180_199 permit 65000:1 0:180 0:199 ip community-list standard 1_181_198 permit 65000:1 0:181 0:198 ip community-list standard 1_182_197 permit 65000:1 0:182 0:197 ip community-list standard 1_183_196 permit 65000:1 0:183 0:196 ip community-list standard 1_184_195 permit 65000:1 0:184 0:195 ip community-list standard 1_185_194 permit 65000:1 0:185 0:194 ip community-list standard 1_186_193 permit 65000:1 0:186 0:193 ip community-list standard 1_187_192 permit 65000:1 0:187 0:192 ip community-list standard 1_188_191 permit 65000:1 0:188 0:191 ip community-list standard 1_189_190 permit 65000:1 0:189 0:190 route-map calculator permit 4117 match community 1_123_256 1_124_255 1_125_254 1_126_253 1_127_252 set community 0:379 route-map calculator permit 4118 match community 1_128_251 1_129_250 1_130_249 1_131_248 1_132_247 set community 0:379 route-map calculator permit 4119 match community 1_133_246 1_134_245 1_135_244 1_136_243 1_137_242 set community 0:379 route-map calculator permit 4120 match community 1_138_241 1_139_240 1_140_239 1_141_238 1_142_237 set community 0:379 route-map calculator permit 4121 match community 1_143_236 1_144_235 1_145_234 1_146_233 1_147_232 set community 0:379 route-map calculator permit 4122 match community 1_148_231 1_149_230 1_150_229 1_151_228 1_152_227 set community 0:379 route-map calculator permit 4123 match community 1_153_226 1_154_225 1_155_224 1_156_223 1_157_222 set community 0:379 route-map calculator permit 4124 match community 1_158_221 1_159_220 1_160_219 1_161_218 1_162_217 set community 0:379 route-map calculator permit 4125 match community 1_163_216 1_164_215 1_165_214 1_166_213 1_167_212 set community 0:379 route-map calculator permit 4126 match community 1_168_211 1_169_210 1_170_209 1_171_208 1_172_207 set community 0:379 route-map calculator permit 4127 match community 1_173_206 1_174_205 1_175_204 1_176_203 1_177_202 set community 0:379 route-map calculator permit 4128 match community 1_178_201 1_179_200 1_180_199 1_181_198 1_182_197 set community 0:379 route-map calculator permit 4129 match community 1_183_196 1_184_195 1_185_194 1_186_193 1_187_192 set community 0:379 route-map calculator permit 4130 match community 1_188_191 1_189_190 set community 0:379 ip community-list standard 2_14_151 permit 65000:2 0:14 0:151 route-map calculator permit 4131 match community 2_14_151 set community 0:2114 ip community-list standard 2_22_240 permit 65000:2 0:22 0:240 ip community-list standard 2_24_220 permit 65000:2 0:24 0:220 ip community-list standard 2_30_176 permit 65000:2 0:30 0:176 ip community-list standard 2_32_165 permit 65000:2 0:32 0:165 ip community-list standard 2_33_160 permit 65000:2 0:33 0:160 ip community-list standard 2_40_132 permit 65000:2 0:40 0:132 ip community-list standard 2_44_120 permit 65000:2 0:44 0:120 ip community-list standard 2_48_110 permit 65000:2 0:48 0:110 ip community-list standard 2_55_96 permit 65000:2 0:55 0:96 ip community-list standard 2_60_88 permit 65000:2 0:60 0:88 ip community-list standard 2_66_80 permit 65000:2 0:66 0:80 route-map calculator permit 4132 match community 2_22_240 2_24_220 2_30_176 2_32_165 2_33_160 set community 0:5280 route-map calculator permit 4133 match community 2_40_132 2_44_120 2_48_110 2_55_96 2_60_88 set community 0:5280 route-map calculator permit 4134 match community 2_66_80 set community 0:5280 ip community-list standard 2_138_254 permit 65000:2 0:138 0:254 route-map calculator permit 4135 match community 2_138_254 set community 0:35052 ip community-list standard 2_3_198 permit 65000:2 0:3 0:198 ip community-list standard 2_6_99 permit 65000:2 0:6 0:99 ip community-list standard 2_9_66 permit 65000:2 0:9 0:66 ip community-list standard 2_11_54 permit 65000:2 0:11 0:54 ip community-list standard 2_18_33 permit 65000:2 0:18 0:33 ip community-list standard 2_22_27 permit 65000:2 0:22 0:27 route-map calculator permit 4136 match community 2_3_198 2_6_99 2_9_66 2_11_54 2_18_33 set community 0:594 route-map calculator permit 4137 match community 2_22_27 set community 0:594 ip community-list standard 2_158_217 permit 65000:2 0:158 0:217 route-map calculator permit 4138 match community 2_158_217 set community 0:34286 ip community-list standard 2_243_252 permit 65000:2 0:243 0:252 route-map calculator permit 4139 match community 2_243_252 set community 0:61236 ip community-list standard 2_203_226 permit 65000:2 0:203 0:226 route-map calculator permit 4140 match community 2_203_226 set community 0:45878 ip community-list standard 2_19_67 permit 65000:2 0:19 0:67 route-map calculator permit 4141 match community 2_19_67 set community 0:1273 ip community-list standard 2_101_222 permit 65000:2 0:101 0:222 ip community-list standard 2_111_202 permit 65000:2 0:111 0:202 route-map calculator permit 4142 match community 2_101_222 2_111_202 set community 0:22422 ip community-list standard 2_137_145 permit 65000:2 0:137 0:145 route-map calculator permit 4143 match community 2_137_145 set community 0:19865 ip community-list standard 2_86_215 permit 65000:2 0:86 0:215 route-map calculator permit 4144 match community 2_86_215 set community 0:18490 ip community-list standard 2_17_62 permit 65000:2 0:17 0:62 ip community-list standard 2_31_34 permit 65000:2 0:31 0:34 route-map calculator permit 4145 match community 2_17_62 2_31_34 set community 0:1054 ip community-list standard 2_10_237 permit 65000:2 0:10 0:237 ip community-list standard 2_15_158 permit 65000:2 0:15 0:158 ip community-list standard 2_30_79 permit 65000:2 0:30 0:79 route-map calculator permit 4146 match community 2_10_237 2_15_158 2_30_79 set community 0:2370 ip community-list standard 2_97_223 permit 65000:2 0:97 0:223 route-map calculator permit 4147 match community 2_97_223 set community 0:21631 ip community-list standard 2_124_235 permit 65000:2 0:124 0:235 ip community-list standard 2_155_188 permit 65000:2 0:155 0:188 route-map calculator permit 4148 match community 2_124_235 2_155_188 set community 0:29140 ip community-list standard 2_227_237 permit 65000:2 0:227 0:237 route-map calculator permit 4149 match community 2_227_237 set community 0:53799 ip community-list standard 2_125_231 permit 65000:2 0:125 0:231 ip community-list standard 2_165_175 permit 65000:2 0:165 0:175 route-map calculator permit 4150 match community 2_125_231 2_165_175 set community 0:28875 ip community-list standard 2_170_254 permit 65000:2 0:170 0:254 route-map calculator permit 4151 match community 2_170_254 set community 0:43180 ip community-list standard 2_15_137 permit 65000:2 0:15 0:137 route-map calculator permit 4152 match community 2_15_137 set community 0:2055 ip community-list standard 2_157_256 permit 65000:2 0:157 0:256 route-map calculator permit 4153 match community 2_157_256 set community 0:40192 ip community-list standard 2_156_178 permit 65000:2 0:156 0:178 route-map calculator permit 4154 match community 2_156_178 set community 0:27768 ip community-list standard 1_1_165 permit 65000:1 0:1 0:165 ip community-list standard 2_1_166 permit 65000:2 0:1 0:166 ip community-list standard 2_2_83 permit 65000:2 0:2 0:83 ip community-list standard 1_2_164 permit 65000:1 0:2 0:164 ip community-list standard 1_3_163 permit 65000:1 0:3 0:163 ip community-list standard 1_4_162 permit 65000:1 0:4 0:162 ip community-list standard 1_5_161 permit 65000:1 0:5 0:161 ip community-list standard 1_6_160 permit 65000:1 0:6 0:160 ip community-list standard 1_7_159 permit 65000:1 0:7 0:159 ip community-list standard 1_8_158 permit 65000:1 0:8 0:158 ip community-list standard 1_9_157 permit 65000:1 0:9 0:157 ip community-list standard 1_10_156 permit 65000:1 0:10 0:156 ip community-list standard 1_11_155 permit 65000:1 0:11 0:155 ip community-list standard 1_12_154 permit 65000:1 0:12 0:154 ip community-list standard 1_13_153 permit 65000:1 0:13 0:153 ip community-list standard 1_14_152 permit 65000:1 0:14 0:152 ip community-list standard 1_15_151 permit 65000:1 0:15 0:151 ip community-list standard 1_16_150 permit 65000:1 0:16 0:150 ip community-list standard 1_17_149 permit 65000:1 0:17 0:149 ip community-list standard 1_18_148 permit 65000:1 0:18 0:148 ip community-list standard 1_19_147 permit 65000:1 0:19 0:147 ip community-list standard 1_20_146 permit 65000:1 0:20 0:146 ip community-list standard 1_21_145 permit 65000:1 0:21 0:145 ip community-list standard 1_22_144 permit 65000:1 0:22 0:144 ip community-list standard 1_23_143 permit 65000:1 0:23 0:143 ip community-list standard 1_24_142 permit 65000:1 0:24 0:142 ip community-list standard 1_25_141 permit 65000:1 0:25 0:141 ip community-list standard 1_26_140 permit 65000:1 0:26 0:140 ip community-list standard 1_27_139 permit 65000:1 0:27 0:139 ip community-list standard 1_28_138 permit 65000:1 0:28 0:138 ip community-list standard 1_29_137 permit 65000:1 0:29 0:137 ip community-list standard 1_30_136 permit 65000:1 0:30 0:136 ip community-list standard 1_31_135 permit 65000:1 0:31 0:135 ip community-list standard 1_32_134 permit 65000:1 0:32 0:134 ip community-list standard 1_33_133 permit 65000:1 0:33 0:133 ip community-list standard 1_34_132 permit 65000:1 0:34 0:132 ip community-list standard 1_35_131 permit 65000:1 0:35 0:131 ip community-list standard 1_36_130 permit 65000:1 0:36 0:130 ip community-list standard 1_37_129 permit 65000:1 0:37 0:129 ip community-list standard 1_38_128 permit 65000:1 0:38 0:128 ip community-list standard 1_39_127 permit 65000:1 0:39 0:127 ip community-list standard 1_40_126 permit 65000:1 0:40 0:126 ip community-list standard 1_41_125 permit 65000:1 0:41 0:125 ip community-list standard 1_42_124 permit 65000:1 0:42 0:124 ip community-list standard 1_43_123 permit 65000:1 0:43 0:123 ip community-list standard 1_44_122 permit 65000:1 0:44 0:122 ip community-list standard 1_45_121 permit 65000:1 0:45 0:121 ip community-list standard 1_46_120 permit 65000:1 0:46 0:120 ip community-list standard 1_47_119 permit 65000:1 0:47 0:119 ip community-list standard 1_48_118 permit 65000:1 0:48 0:118 ip community-list standard 1_49_117 permit 65000:1 0:49 0:117 ip community-list standard 1_50_116 permit 65000:1 0:50 0:116 ip community-list standard 1_51_115 permit 65000:1 0:51 0:115 ip community-list standard 1_52_114 permit 65000:1 0:52 0:114 ip community-list standard 1_53_113 permit 65000:1 0:53 0:113 ip community-list standard 1_54_112 permit 65000:1 0:54 0:112 ip community-list standard 1_55_111 permit 65000:1 0:55 0:111 ip community-list standard 1_56_110 permit 65000:1 0:56 0:110 ip community-list standard 1_57_109 permit 65000:1 0:57 0:109 ip community-list standard 1_58_108 permit 65000:1 0:58 0:108 ip community-list standard 1_59_107 permit 65000:1 0:59 0:107 ip community-list standard 1_60_106 permit 65000:1 0:60 0:106 ip community-list standard 1_61_105 permit 65000:1 0:61 0:105 ip community-list standard 1_62_104 permit 65000:1 0:62 0:104 ip community-list standard 1_63_103 permit 65000:1 0:63 0:103 ip community-list standard 1_64_102 permit 65000:1 0:64 0:102 ip community-list standard 1_65_101 permit 65000:1 0:65 0:101 ip community-list standard 1_66_100 permit 65000:1 0:66 0:100 ip community-list standard 1_67_99 permit 65000:1 0:67 0:99 ip community-list standard 1_68_98 permit 65000:1 0:68 0:98 ip community-list standard 1_69_97 permit 65000:1 0:69 0:97 ip community-list standard 1_70_96 permit 65000:1 0:70 0:96 ip community-list standard 1_71_95 permit 65000:1 0:71 0:95 ip community-list standard 1_72_94 permit 65000:1 0:72 0:94 ip community-list standard 1_73_93 permit 65000:1 0:73 0:93 ip community-list standard 1_74_92 permit 65000:1 0:74 0:92 ip community-list standard 1_75_91 permit 65000:1 0:75 0:91 ip community-list standard 1_76_90 permit 65000:1 0:76 0:90 ip community-list standard 1_77_89 permit 65000:1 0:77 0:89 ip community-list standard 1_78_88 permit 65000:1 0:78 0:88 ip community-list standard 1_79_87 permit 65000:1 0:79 0:87 ip community-list standard 1_80_86 permit 65000:1 0:80 0:86 ip community-list standard 1_81_85 permit 65000:1 0:81 0:85 ip community-list standard 1_82_84 permit 65000:1 0:82 0:84 ip community-list standard 1_83_83 permit 65000:1 0:83 0:83 ip community-list expanded c166 permit 1 ^65000:4_0:166_0:1$ ip community-list expanded c166 permit 2 ^65000:3_0:167_0:1$ ip community-list expanded c166 permit 3 ^65000:3_0:168_0:2$ ip community-list expanded c166 permit 4 ^65000:3_0:169_0:3$ ip community-list expanded c166 permit 5 ^65000:3_0:170_0:4$ ip community-list expanded c166 permit 6 ^65000:3_0:171_0:5$ ip community-list expanded c166 permit 7 ^65000:3_0:172_0:6$ ip community-list expanded c166 permit 8 ^65000:3_0:173_0:7$ ip community-list expanded c166 permit 9 ^65000:3_0:174_0:8$ ip community-list expanded c166 permit 10 ^65000:3_0:175_0:9$ ip community-list expanded c166 permit 11 ^65000:3_0:176_0:10$ ip community-list expanded c166 permit 12 ^65000:3_0:177_0:11$ ip community-list expanded c166 permit 13 ^65000:3_0:178_0:12$ ip community-list expanded c166 permit 14 ^65000:3_0:179_0:13$ ip community-list expanded c166 permit 15 ^65000:3_0:180_0:14$ ip community-list expanded c166 permit 16 ^65000:3_0:181_0:15$ ip community-list expanded c166 permit 17 ^65000:3_0:182_0:16$ ip community-list expanded c166 permit 18 ^65000:3_0:183_0:17$ ip community-list expanded c166 permit 19 ^65000:3_0:184_0:18$ ip community-list expanded c166 permit 20 ^65000:3_0:185_0:19$ ip community-list expanded c166 permit 21 ^65000:3_0:186_0:20$ ip community-list expanded c166 permit 22 ^65000:3_0:187_0:21$ ip community-list expanded c166 permit 23 ^65000:3_0:188_0:22$ ip community-list expanded c166 permit 24 ^65000:3_0:189_0:23$ ip community-list expanded c166 permit 25 ^65000:3_0:190_0:24$ ip community-list expanded c166 permit 26 ^65000:3_0:191_0:25$ ip community-list expanded c166 permit 27 ^65000:3_0:192_0:26$ ip community-list expanded c166 permit 28 ^65000:3_0:193_0:27$ ip community-list expanded c166 permit 29 ^65000:3_0:194_0:28$ ip community-list expanded c166 permit 30 ^65000:3_0:195_0:29$ ip community-list expanded c166 permit 31 ^65000:3_0:196_0:30$ ip community-list expanded c166 permit 32 ^65000:3_0:197_0:31$ ip community-list expanded c166 permit 33 ^65000:3_0:198_0:32$ ip community-list expanded c166 permit 34 ^65000:3_0:199_0:33$ ip community-list expanded c166 permit 35 ^65000:3_0:200_0:34$ ip community-list expanded c166 permit 36 ^65000:3_0:201_0:35$ ip community-list expanded c166 permit 37 ^65000:3_0:202_0:36$ ip community-list expanded c166 permit 38 ^65000:3_0:203_0:37$ ip community-list expanded c166 permit 39 ^65000:3_0:204_0:38$ ip community-list expanded c166 permit 40 ^65000:3_0:205_0:39$ ip community-list expanded c166 permit 41 ^65000:3_0:206_0:40$ ip community-list expanded c166 permit 42 ^65000:3_0:207_0:41$ ip community-list expanded c166 permit 43 ^65000:3_0:208_0:42$ ip community-list expanded c166 permit 44 ^65000:3_0:209_0:43$ ip community-list expanded c166 permit 45 ^65000:3_0:210_0:44$ ip community-list expanded c166 permit 46 ^65000:3_0:211_0:45$ ip community-list expanded c166 permit 47 ^65000:3_0:212_0:46$ ip community-list expanded c166 permit 48 ^65000:3_0:213_0:47$ ip community-list expanded c166 permit 49 ^65000:3_0:214_0:48$ ip community-list expanded c166 permit 50 ^65000:3_0:215_0:49$ ip community-list expanded c166 permit 51 ^65000:3_0:216_0:50$ ip community-list expanded c166 permit 52 ^65000:3_0:217_0:51$ ip community-list expanded c166 permit 53 ^65000:3_0:218_0:52$ ip community-list expanded c166 permit 54 ^65000:3_0:219_0:53$ ip community-list expanded c166 permit 55 ^65000:3_0:220_0:54$ ip community-list expanded c166 permit 56 ^65000:3_0:221_0:55$ ip community-list expanded c166 permit 57 ^65000:3_0:222_0:56$ ip community-list expanded c166 permit 58 ^65000:3_0:223_0:57$ ip community-list expanded c166 permit 59 ^65000:3_0:224_0:58$ ip community-list expanded c166 permit 60 ^65000:3_0:225_0:59$ ip community-list expanded c166 permit 61 ^65000:3_0:226_0:60$ ip community-list expanded c166 permit 62 ^65000:3_0:227_0:61$ ip community-list expanded c166 permit 63 ^65000:3_0:228_0:62$ ip community-list expanded c166 permit 64 ^65000:3_0:229_0:63$ ip community-list expanded c166 permit 65 ^65000:3_0:230_0:64$ ip community-list expanded c166 permit 66 ^65000:3_0:231_0:65$ ip community-list expanded c166 permit 67 ^65000:3_0:232_0:66$ ip community-list expanded c166 permit 68 ^65000:3_0:233_0:67$ ip community-list expanded c166 permit 69 ^65000:3_0:234_0:68$ ip community-list expanded c166 permit 70 ^65000:3_0:235_0:69$ ip community-list expanded c166 permit 71 ^65000:3_0:236_0:70$ ip community-list expanded c166 permit 72 ^65000:3_0:237_0:71$ ip community-list expanded c166 permit 73 ^65000:3_0:238_0:72$ ip community-list expanded c166 permit 74 ^65000:3_0:239_0:73$ ip community-list expanded c166 permit 75 ^65000:3_0:240_0:74$ ip community-list expanded c166 permit 76 ^65000:3_0:241_0:75$ ip community-list expanded c166 permit 77 ^65000:3_0:242_0:76$ ip community-list expanded c166 permit 78 ^65000:3_0:243_0:77$ ip community-list expanded c166 permit 79 ^65000:3_0:244_0:78$ ip community-list expanded c166 permit 80 ^65000:3_0:245_0:79$ ip community-list expanded c166 permit 81 ^65000:3_0:246_0:80$ ip community-list expanded c166 permit 82 ^65000:3_0:247_0:81$ ip community-list expanded c166 permit 83 ^65000:3_0:248_0:82$ ip community-list expanded c166 permit 84 ^65000:3_0:249_0:83$ ip community-list expanded c166 permit 85 ^65000:3_0:250_0:84$ ip community-list expanded c166 permit 86 ^65000:3_0:251_0:85$ ip community-list expanded c166 permit 87 ^65000:3_0:252_0:86$ ip community-list expanded c166 permit 88 ^65000:3_0:253_0:87$ ip community-list expanded c166 permit 89 ^65000:3_0:254_0:88$ ip community-list expanded c166 permit 90 ^65000:3_0:255_0:89$ ip community-list expanded c166 permit 91 ^65000:3_0:256_0:90$ route-map calculator permit 4155 match community 1_1_165 2_1_166 2_2_83 1_2_164 1_3_163 set community 0:166 route-map calculator permit 4156 match community 1_4_162 1_5_161 1_6_160 1_7_159 1_8_158 set community 0:166 route-map calculator permit 4157 match community 1_9_157 1_10_156 1_11_155 1_12_154 1_13_153 set community 0:166 route-map calculator permit 4158 match community 1_14_152 1_15_151 1_16_150 1_17_149 1_18_148 set community 0:166 route-map calculator permit 4159 match community 1_19_147 1_20_146 1_21_145 1_22_144 1_23_143 set community 0:166 route-map calculator permit 4160 match community 1_24_142 1_25_141 1_26_140 1_27_139 1_28_138 set community 0:166 route-map calculator permit 4161 match community 1_29_137 1_30_136 1_31_135 1_32_134 1_33_133 set community 0:166 route-map calculator permit 4162 match community 1_34_132 1_35_131 1_36_130 1_37_129 1_38_128 set community 0:166 route-map calculator permit 4163 match community 1_39_127 1_40_126 1_41_125 1_42_124 1_43_123 set community 0:166 route-map calculator permit 4164 match community 1_44_122 1_45_121 1_46_120 1_47_119 1_48_118 set community 0:166 route-map calculator permit 4165 match community 1_49_117 1_50_116 1_51_115 1_52_114 1_53_113 set community 0:166 route-map calculator permit 4166 match community 1_54_112 1_55_111 1_56_110 1_57_109 1_58_108 set community 0:166 route-map calculator permit 4167 match community 1_59_107 1_60_106 1_61_105 1_62_104 1_63_103 set community 0:166 route-map calculator permit 4168 match community 1_64_102 1_65_101 1_66_100 1_67_99 1_68_98 set community 0:166 route-map calculator permit 4169 match community 1_69_97 1_70_96 1_71_95 1_72_94 1_73_93 set community 0:166 route-map calculator permit 4170 match community 1_74_92 1_75_91 1_76_90 1_77_89 1_78_88 set community 0:166 route-map calculator permit 4171 match community 1_79_87 1_80_86 1_81_85 1_82_84 1_83_83 set community 0:166 route-map calculator permit 4172 match community c4_166_1 c3_167_1 c3_168_2 c3_169_3 c3_170_4 set community 0:166 route-map calculator permit 4173 match community c3_171_5 c3_172_6 c3_173_7 c3_174_8 c3_175_9 set community 0:166 route-map calculator permit 4174 match community c3_176_10 c3_177_11 c3_178_12 c3_179_13 c3_180_14 set community 0:166 route-map calculator permit 4175 match community c3_181_15 c3_182_16 c3_183_17 c3_184_18 c3_185_19 set community 0:166 route-map calculator permit 4176 match community c3_186_20 c3_187_21 c3_188_22 c3_189_23 c3_190_24 set community 0:166 route-map calculator permit 4177 match community c3_191_25 c3_192_26 c3_193_27 c3_194_28 c3_195_29 set community 0:166 route-map calculator permit 4178 match community c3_196_30 c3_197_31 c3_198_32 c3_199_33 c3_200_34 set community 0:166 route-map calculator permit 4179 match community c3_201_35 c3_202_36 c3_203_37 c3_204_38 c3_205_39 set community 0:166 route-map calculator permit 4180 match community c3_206_40 c3_207_41 c3_208_42 c3_209_43 c3_210_44 set community 0:166 route-map calculator permit 4181 match community c3_211_45 c3_212_46 c3_213_47 c3_214_48 c3_215_49 set community 0:166 route-map calculator permit 4182 match community c3_216_50 c3_217_51 c3_218_52 c3_219_53 c3_220_54 set community 0:166 route-map calculator permit 4183 match community c3_221_55 c3_222_56 c3_223_57 c3_224_58 c3_225_59 set community 0:166 route-map calculator permit 4184 match community c3_226_60 c3_227_61 c3_228_62 c3_229_63 c3_230_64 set community 0:166 route-map calculator permit 4185 match community c3_231_65 c3_232_66 c3_233_67 c3_234_68 c3_235_69 set community 0:166 route-map calculator permit 4186 match community c3_236_70 c3_237_71 c3_238_72 c3_239_73 c3_240_74 set community 0:166 route-map calculator permit 4187 match community c3_241_75 c3_242_76 c3_243_77 c3_244_78 c3_245_79 set community 0:166 route-map calculator permit 4188 match community c3_246_80 c3_247_81 c3_248_82 c3_249_83 c3_250_84 set community 0:166 route-map calculator permit 4189 match community c3_251_85 c3_252_86 c3_253_87 c3_254_88 c3_255_89 set community 0:166 route-map calculator permit 4190 match community c3_256_90 set community 0:166 ip community-list standard 2_85_151 permit 65000:2 0:85 0:151 route-map calculator permit 4191 match community 2_85_151 set community 0:12835 ip community-list standard 2_80_199 permit 65000:2 0:80 0:199 route-map calculator permit 4192 match community 2_80_199 set community 0:15920 ip community-list standard 2_79_158 permit 65000:2 0:79 0:158 route-map calculator permit 4193 match community 2_79_158 set community 0:12482 ip community-list standard 2_125_125 permit 65000:2 0:125 0:125 route-map calculator permit 4194 match community 2_125_125 set community 0:15625 ip community-list standard 2_26_229 permit 65000:2 0:26 0:229 route-map calculator permit 4195 match community 2_26_229 set community 0:5954 ip community-list standard 2_55_142 permit 65000:2 0:55 0:142 ip community-list standard 2_71_110 permit 65000:2 0:71 0:110 route-map calculator permit 4196 match community 2_55_142 2_71_110 set community 0:7810 ip community-list standard 2_213_250 permit 65000:2 0:213 0:250 route-map calculator permit 4197 match community 2_213_250 set community 0:53250 ip community-list standard 2_26_255 permit 65000:2 0:26 0:255 ip community-list standard 2_30_221 permit 65000:2 0:30 0:221 ip community-list standard 2_34_195 permit 65000:2 0:34 0:195 ip community-list standard 2_39_170 permit 65000:2 0:39 0:170 ip community-list standard 2_51_130 permit 65000:2 0:51 0:130 ip community-list standard 2_65_102 permit 65000:2 0:65 0:102 ip community-list standard 2_78_85 permit 65000:2 0:78 0:85 route-map calculator permit 4198 match community 2_26_255 2_30_221 2_34_195 2_39_170 2_51_130 set community 0:6630 route-map calculator permit 4199 match community 2_65_102 2_78_85 set community 0:6630 ip community-list standard 2_219_223 permit 65000:2 0:219 0:223 route-map calculator permit 4200 match community 2_219_223 set community 0:48837 ip community-list standard 2_41_89 permit 65000:2 0:41 0:89 route-map calculator permit 4201 match community 2_41_89 set community 0:3649 ip community-list standard 2_82_211 permit 65000:2 0:82 0:211 route-map calculator permit 4202 match community 2_82_211 set community 0:17302 ip community-list standard 2_50_217 permit 65000:2 0:50 0:217 ip community-list standard 2_62_175 permit 65000:2 0:62 0:175 ip community-list standard 2_70_155 permit 65000:2 0:70 0:155 route-map calculator permit 4203 match community 2_50_217 2_62_175 2_70_155 set community 0:10850 ip community-list standard 2_82_157 permit 65000:2 0:82 0:157 route-map calculator permit 4204 match community 2_82_157 set community 0:12874 ip community-list standard 2_176_256 permit 65000:2 0:176 0:256 route-map calculator permit 4205 match community 2_176_256 set community 0:45056 ip community-list standard 2_118_237 permit 65000:2 0:118 0:237 ip community-list standard 2_158_177 permit 65000:2 0:158 0:177 route-map calculator permit 4206 match community 2_118_237 2_158_177 set community 0:27966 ip community-list standard 2_49_219 permit 65000:2 0:49 0:219 ip community-list standard 2_73_147 permit 65000:2 0:73 0:147 route-map calculator permit 4207 match community 2_49_219 2_73_147 set community 0:10731 ip community-list standard 2_62_209 permit 65000:2 0:62 0:209 route-map calculator permit 4208 match community 2_62_209 set community 0:12958 ip community-list standard 2_119_252 permit 65000:2 0:119 0:252 ip community-list standard 2_126_238 permit 65000:2 0:126 0:238 ip community-list standard 2_147_204 permit 65000:2 0:147 0:204 ip community-list standard 2_153_196 permit 65000:2 0:153 0:196 route-map calculator permit 4209 match community 2_119_252 2_126_238 2_147_204 2_153_196 set community 0:29988 ip community-list standard 2_115_223 permit 65000:2 0:115 0:223 route-map calculator permit 4210 match community 2_115_223 set community 0:25645 ip community-list standard 2_43_151 permit 65000:2 0:43 0:151 route-map calculator permit 4211 match community 2_43_151 set community 0:6493 ip community-list standard 2_41_167 permit 65000:2 0:41 0:167 route-map calculator permit 4212 match community 2_41_167 set community 0:6847 ip community-list standard 2_85_107 permit 65000:2 0:85 0:107 route-map calculator permit 4213 match community 2_85_107 set community 0:9095 ip community-list standard 2_23_87 permit 65000:2 0:23 0:87 ip community-list standard 2_29_69 permit 65000:2 0:29 0:69 route-map calculator permit 4214 match community 2_23_87 2_29_69 set community 0:2001 ip community-list standard 2_157_195 permit 65000:2 0:157 0:195 route-map calculator permit 4215 match community 2_157_195 set community 0:30615 ip community-list standard 2_140_179 permit 65000:2 0:140 0:179 route-map calculator permit 4216 match community 2_140_179 set community 0:25060 ip community-list standard 2_25_103 permit 65000:2 0:25 0:103 route-map calculator permit 4217 match community 2_25_103 set community 0:2575 ip community-list standard 2_89_244 permit 65000:2 0:89 0:244 ip community-list standard 2_122_178 permit 65000:2 0:122 0:178 route-map calculator permit 4218 match community 2_89_244 2_122_178 set community 0:21716 ip community-list standard 2_130_197 permit 65000:2 0:130 0:197 route-map calculator permit 4219 match community 2_130_197 set community 0:25610 ip community-list standard 2_55_137 permit 65000:2 0:55 0:137 route-map calculator permit 4220 match community 2_55_137 set community 0:7535 ip community-list standard 2_137_159 permit 65000:2 0:137 0:159 route-map calculator permit 4221 match community 2_137_159 set community 0:21783 ip community-list standard 2_58_249 permit 65000:2 0:58 0:249 ip community-list standard 2_83_174 permit 65000:2 0:83 0:174 ip community-list standard 2_87_166 permit 65000:2 0:87 0:166 route-map calculator permit 4222 match community 2_58_249 2_83_174 2_87_166 set community 0:14442 ip community-list standard 2_124_231 permit 65000:2 0:124 0:231 ip community-list standard 2_132_217 permit 65000:2 0:132 0:217 ip community-list standard 2_154_186 permit 65000:2 0:154 0:186 route-map calculator permit 4223 match community 2_124_231 2_132_217 2_154_186 set community 0:28644 ip community-list standard 2_2_154 permit 65000:2 0:2 0:154 ip community-list standard 2_4_77 permit 65000:2 0:4 0:77 ip community-list standard 2_7_44 permit 65000:2 0:7 0:44 ip community-list standard 2_11_28 permit 65000:2 0:11 0:28 ip community-list standard 2_14_22 permit 65000:2 0:14 0:22 ip community-list standard 1_52_256 permit 65000:1 0:52 0:256 ip community-list standard 1_53_255 permit 65000:1 0:53 0:255 ip community-list standard 1_54_254 permit 65000:1 0:54 0:254 ip community-list standard 1_55_253 permit 65000:1 0:55 0:253 ip community-list standard 1_56_252 permit 65000:1 0:56 0:252 ip community-list standard 1_57_251 permit 65000:1 0:57 0:251 ip community-list standard 1_58_250 permit 65000:1 0:58 0:250 ip community-list standard 1_59_249 permit 65000:1 0:59 0:249 ip community-list standard 1_60_248 permit 65000:1 0:60 0:248 ip community-list standard 1_61_247 permit 65000:1 0:61 0:247 ip community-list standard 1_62_246 permit 65000:1 0:62 0:246 ip community-list standard 1_63_245 permit 65000:1 0:63 0:245 ip community-list standard 1_64_244 permit 65000:1 0:64 0:244 ip community-list standard 1_65_243 permit 65000:1 0:65 0:243 ip community-list standard 1_66_242 permit 65000:1 0:66 0:242 ip community-list standard 1_67_241 permit 65000:1 0:67 0:241 ip community-list standard 1_68_240 permit 65000:1 0:68 0:240 ip community-list standard 1_69_239 permit 65000:1 0:69 0:239 ip community-list standard 1_70_238 permit 65000:1 0:70 0:238 ip community-list standard 1_71_237 permit 65000:1 0:71 0:237 ip community-list standard 1_72_236 permit 65000:1 0:72 0:236 ip community-list standard 1_73_235 permit 65000:1 0:73 0:235 ip community-list standard 1_74_234 permit 65000:1 0:74 0:234 ip community-list standard 1_75_233 permit 65000:1 0:75 0:233 ip community-list standard 1_76_232 permit 65000:1 0:76 0:232 ip community-list standard 1_77_231 permit 65000:1 0:77 0:231 ip community-list standard 1_78_230 permit 65000:1 0:78 0:230 ip community-list standard 1_79_229 permit 65000:1 0:79 0:229 ip community-list standard 1_80_228 permit 65000:1 0:80 0:228 ip community-list standard 1_81_227 permit 65000:1 0:81 0:227 ip community-list standard 1_82_226 permit 65000:1 0:82 0:226 ip community-list standard 1_83_225 permit 65000:1 0:83 0:225 ip community-list standard 1_84_224 permit 65000:1 0:84 0:224 ip community-list standard 1_85_223 permit 65000:1 0:85 0:223 ip community-list standard 1_86_222 permit 65000:1 0:86 0:222 ip community-list standard 1_87_221 permit 65000:1 0:87 0:221 ip community-list standard 1_88_220 permit 65000:1 0:88 0:220 ip community-list standard 1_89_219 permit 65000:1 0:89 0:219 ip community-list standard 1_90_218 permit 65000:1 0:90 0:218 ip community-list standard 1_91_217 permit 65000:1 0:91 0:217 ip community-list standard 1_92_216 permit 65000:1 0:92 0:216 ip community-list standard 1_93_215 permit 65000:1 0:93 0:215 ip community-list standard 1_94_214 permit 65000:1 0:94 0:214 ip community-list standard 1_95_213 permit 65000:1 0:95 0:213 ip community-list standard 1_96_212 permit 65000:1 0:96 0:212 ip community-list standard 1_97_211 permit 65000:1 0:97 0:211 ip community-list standard 1_98_210 permit 65000:1 0:98 0:210 ip community-list standard 1_99_209 permit 65000:1 0:99 0:209 ip community-list standard 1_100_208 permit 65000:1 0:100 0:208 ip community-list standard 1_101_207 permit 65000:1 0:101 0:207 ip community-list standard 1_102_206 permit 65000:1 0:102 0:206 ip community-list standard 1_103_205 permit 65000:1 0:103 0:205 ip community-list standard 1_104_204 permit 65000:1 0:104 0:204 ip community-list standard 1_105_203 permit 65000:1 0:105 0:203 ip community-list standard 1_106_202 permit 65000:1 0:106 0:202 ip community-list standard 1_107_201 permit 65000:1 0:107 0:201 ip community-list standard 1_108_200 permit 65000:1 0:108 0:200 ip community-list standard 1_109_199 permit 65000:1 0:109 0:199 ip community-list standard 1_110_198 permit 65000:1 0:110 0:198 ip community-list standard 1_111_197 permit 65000:1 0:111 0:197 ip community-list standard 1_112_196 permit 65000:1 0:112 0:196 ip community-list standard 1_113_195 permit 65000:1 0:113 0:195 ip community-list standard 1_114_194 permit 65000:1 0:114 0:194 ip community-list standard 1_115_193 permit 65000:1 0:115 0:193 ip community-list standard 1_116_192 permit 65000:1 0:116 0:192 ip community-list standard 1_117_191 permit 65000:1 0:117 0:191 ip community-list standard 1_118_190 permit 65000:1 0:118 0:190 ip community-list standard 1_119_189 permit 65000:1 0:119 0:189 ip community-list standard 1_120_188 permit 65000:1 0:120 0:188 ip community-list standard 1_121_187 permit 65000:1 0:121 0:187 ip community-list standard 1_122_186 permit 65000:1 0:122 0:186 ip community-list standard 1_123_185 permit 65000:1 0:123 0:185 ip community-list standard 1_124_184 permit 65000:1 0:124 0:184 ip community-list standard 1_125_183 permit 65000:1 0:125 0:183 ip community-list standard 1_126_182 permit 65000:1 0:126 0:182 ip community-list standard 1_127_181 permit 65000:1 0:127 0:181 ip community-list standard 1_128_180 permit 65000:1 0:128 0:180 ip community-list standard 1_129_179 permit 65000:1 0:129 0:179 ip community-list standard 1_130_178 permit 65000:1 0:130 0:178 ip community-list standard 1_131_177 permit 65000:1 0:131 0:177 ip community-list standard 1_132_176 permit 65000:1 0:132 0:176 ip community-list standard 1_133_175 permit 65000:1 0:133 0:175 ip community-list standard 1_134_174 permit 65000:1 0:134 0:174 ip community-list standard 1_135_173 permit 65000:1 0:135 0:173 ip community-list standard 1_136_172 permit 65000:1 0:136 0:172 ip community-list standard 1_137_171 permit 65000:1 0:137 0:171 ip community-list standard 1_138_170 permit 65000:1 0:138 0:170 ip community-list standard 1_139_169 permit 65000:1 0:139 0:169 ip community-list standard 1_140_168 permit 65000:1 0:140 0:168 ip community-list standard 1_141_167 permit 65000:1 0:141 0:167 ip community-list standard 1_142_166 permit 65000:1 0:142 0:166 ip community-list standard 1_143_165 permit 65000:1 0:143 0:165 ip community-list standard 1_144_164 permit 65000:1 0:144 0:164 ip community-list standard 1_145_163 permit 65000:1 0:145 0:163 ip community-list standard 1_146_162 permit 65000:1 0:146 0:162 ip community-list standard 1_147_161 permit 65000:1 0:147 0:161 ip community-list standard 1_148_160 permit 65000:1 0:148 0:160 ip community-list standard 1_149_159 permit 65000:1 0:149 0:159 ip community-list standard 1_150_158 permit 65000:1 0:150 0:158 ip community-list standard 1_151_157 permit 65000:1 0:151 0:157 ip community-list standard 1_152_156 permit 65000:1 0:152 0:156 ip community-list standard 1_153_155 permit 65000:1 0:153 0:155 ip community-list standard 1_154_154 permit 65000:1 0:154 0:154 route-map calculator permit 4224 match community 2_2_154 2_4_77 2_7_44 2_11_28 2_14_22 set community 0:308 route-map calculator permit 4225 match community 1_52_256 1_53_255 1_54_254 1_55_253 1_56_252 set community 0:308 route-map calculator permit 4226 match community 1_57_251 1_58_250 1_59_249 1_60_248 1_61_247 set community 0:308 route-map calculator permit 4227 match community 1_62_246 1_63_245 1_64_244 1_65_243 1_66_242 set community 0:308 route-map calculator permit 4228 match community 1_67_241 1_68_240 1_69_239 1_70_238 1_71_237 set community 0:308 route-map calculator permit 4229 match community 1_72_236 1_73_235 1_74_234 1_75_233 1_76_232 set community 0:308 route-map calculator permit 4230 match community 1_77_231 1_78_230 1_79_229 1_80_228 1_81_227 set community 0:308 route-map calculator permit 4231 match community 1_82_226 1_83_225 1_84_224 1_85_223 1_86_222 set community 0:308 route-map calculator permit 4232 match community 1_87_221 1_88_220 1_89_219 1_90_218 1_91_217 set community 0:308 route-map calculator permit 4233 match community 1_92_216 1_93_215 1_94_214 1_95_213 1_96_212 set community 0:308 route-map calculator permit 4234 match community 1_97_211 1_98_210 1_99_209 1_100_208 1_101_207 set community 0:308 route-map calculator permit 4235 match community 1_102_206 1_103_205 1_104_204 1_105_203 1_106_202 set community 0:308 route-map calculator permit 4236 match community 1_107_201 1_108_200 1_109_199 1_110_198 1_111_197 set community 0:308 route-map calculator permit 4237 match community 1_112_196 1_113_195 1_114_194 1_115_193 1_116_192 set community 0:308 route-map calculator permit 4238 match community 1_117_191 1_118_190 1_119_189 1_120_188 1_121_187 set community 0:308 route-map calculator permit 4239 match community 1_122_186 1_123_185 1_124_184 1_125_183 1_126_182 set community 0:308 route-map calculator permit 4240 match community 1_127_181 1_128_180 1_129_179 1_130_178 1_131_177 set community 0:308 route-map calculator permit 4241 match community 1_132_176 1_133_175 1_134_174 1_135_173 1_136_172 set community 0:308 route-map calculator permit 4242 match community 1_137_171 1_138_170 1_139_169 1_140_168 1_141_167 set community 0:308 route-map calculator permit 4243 match community 1_142_166 1_143_165 1_144_164 1_145_163 1_146_162 set community 0:308 route-map calculator permit 4244 match community 1_147_161 1_148_160 1_149_159 1_150_158 1_151_157 set community 0:308 route-map calculator permit 4245 match community 1_152_156 1_153_155 1_154_154 set community 0:308 ip community-list standard 2_173_224 permit 65000:2 0:173 0:224 route-map calculator permit 4246 match community 2_173_224 set community 0:38752 ip community-list standard 2_122_246 permit 65000:2 0:122 0:246 ip community-list standard 2_123_244 permit 65000:2 0:123 0:244 ip community-list standard 2_164_183 permit 65000:2 0:164 0:183 route-map calculator permit 4247 match community 2_122_246 2_123_244 2_164_183 set community 0:30012 ip community-list standard 2_53_195 permit 65000:2 0:53 0:195 ip community-list standard 2_65_159 permit 65000:2 0:65 0:159 route-map calculator permit 4248 match community 2_53_195 2_65_159 set community 0:10335 ip community-list standard 2_82_191 permit 65000:2 0:82 0:191 route-map calculator permit 4249 match community 2_82_191 set community 0:15662 ip community-list standard 2_8_167 permit 65000:2 0:8 0:167 route-map calculator permit 4250 match community 2_8_167 set community 0:1336 ip community-list standard 2_87_186 permit 65000:2 0:87 0:186 ip community-list standard 2_93_174 permit 65000:2 0:93 0:174 route-map calculator permit 4251 match community 2_87_186 2_93_174 set community 0:16182 ip community-list standard 2_10_186 permit 65000:2 0:10 0:186 ip community-list standard 2_12_155 permit 65000:2 0:12 0:155 ip community-list standard 2_15_124 permit 65000:2 0:15 0:124 ip community-list standard 2_20_93 permit 65000:2 0:20 0:93 ip community-list standard 2_30_62 permit 65000:2 0:30 0:62 ip community-list standard 2_31_60 permit 65000:2 0:31 0:60 route-map calculator permit 4252 match community 2_10_186 2_12_155 2_15_124 2_20_93 2_30_62 set community 0:1860 route-map calculator permit 4253 match community 2_31_60 set community 0:1860 ip community-list standard 2_141_236 permit 65000:2 0:141 0:236 ip community-list standard 2_177_188 permit 65000:2 0:177 0:188 route-map calculator permit 4254 match community 2_141_236 2_177_188 set community 0:33276 ip community-list standard 2_20_219 permit 65000:2 0:20 0:219 ip community-list standard 2_30_146 permit 65000:2 0:30 0:146 ip community-list standard 2_60_73 permit 65000:2 0:60 0:73 route-map calculator permit 4255 match community 2_20_219 2_30_146 2_60_73 set community 0:4380 ip community-list standard 2_137_233 permit 65000:2 0:137 0:233 route-map calculator permit 4256 match community 2_137_233 set community 0:31921 ip community-list standard 2_20_237 permit 65000:2 0:20 0:237 ip community-list standard 2_30_158 permit 65000:2 0:30 0:158 ip community-list standard 2_60_79 permit 65000:2 0:60 0:79 route-map calculator permit 4257 match community 2_20_237 2_30_158 2_60_79 set community 0:4740 ip community-list standard 2_2_169 permit 65000:2 0:2 0:169 ip community-list standard 2_13_26 permit 65000:2 0:13 0:26 ip community-list standard 1_82_256 permit 65000:1 0:82 0:256 ip community-list standard 1_83_255 permit 65000:1 0:83 0:255 ip community-list standard 1_84_254 permit 65000:1 0:84 0:254 ip community-list standard 1_85_253 permit 65000:1 0:85 0:253 ip community-list standard 1_86_252 permit 65000:1 0:86 0:252 ip community-list standard 1_87_251 permit 65000:1 0:87 0:251 ip community-list standard 1_88_250 permit 65000:1 0:88 0:250 ip community-list standard 1_89_249 permit 65000:1 0:89 0:249 ip community-list standard 1_90_248 permit 65000:1 0:90 0:248 ip community-list standard 1_91_247 permit 65000:1 0:91 0:247 ip community-list standard 1_92_246 permit 65000:1 0:92 0:246 ip community-list standard 1_93_245 permit 65000:1 0:93 0:245 ip community-list standard 1_94_244 permit 65000:1 0:94 0:244 ip community-list standard 1_95_243 permit 65000:1 0:95 0:243 ip community-list standard 1_96_242 permit 65000:1 0:96 0:242 ip community-list standard 1_97_241 permit 65000:1 0:97 0:241 ip community-list standard 1_98_240 permit 65000:1 0:98 0:240 ip community-list standard 1_99_239 permit 65000:1 0:99 0:239 ip community-list standard 1_100_238 permit 65000:1 0:100 0:238 ip community-list standard 1_101_237 permit 65000:1 0:101 0:237 ip community-list standard 1_102_236 permit 65000:1 0:102 0:236 ip community-list standard 1_103_235 permit 65000:1 0:103 0:235 ip community-list standard 1_104_234 permit 65000:1 0:104 0:234 ip community-list standard 1_105_233 permit 65000:1 0:105 0:233 ip community-list standard 1_106_232 permit 65000:1 0:106 0:232 ip community-list standard 1_107_231 permit 65000:1 0:107 0:231 ip community-list standard 1_108_230 permit 65000:1 0:108 0:230 ip community-list standard 1_109_229 permit 65000:1 0:109 0:229 ip community-list standard 1_110_228 permit 65000:1 0:110 0:228 ip community-list standard 1_111_227 permit 65000:1 0:111 0:227 ip community-list standard 1_112_226 permit 65000:1 0:112 0:226 ip community-list standard 1_113_225 permit 65000:1 0:113 0:225 ip community-list standard 1_114_224 permit 65000:1 0:114 0:224 ip community-list standard 1_115_223 permit 65000:1 0:115 0:223 ip community-list standard 1_116_222 permit 65000:1 0:116 0:222 ip community-list standard 1_117_221 permit 65000:1 0:117 0:221 ip community-list standard 1_118_220 permit 65000:1 0:118 0:220 ip community-list standard 1_119_219 permit 65000:1 0:119 0:219 ip community-list standard 1_120_218 permit 65000:1 0:120 0:218 ip community-list standard 1_121_217 permit 65000:1 0:121 0:217 ip community-list standard 1_122_216 permit 65000:1 0:122 0:216 ip community-list standard 1_123_215 permit 65000:1 0:123 0:215 ip community-list standard 1_124_214 permit 65000:1 0:124 0:214 ip community-list standard 1_125_213 permit 65000:1 0:125 0:213 ip community-list standard 1_126_212 permit 65000:1 0:126 0:212 ip community-list standard 1_127_211 permit 65000:1 0:127 0:211 ip community-list standard 1_128_210 permit 65000:1 0:128 0:210 ip community-list standard 1_129_209 permit 65000:1 0:129 0:209 ip community-list standard 1_130_208 permit 65000:1 0:130 0:208 ip community-list standard 1_131_207 permit 65000:1 0:131 0:207 ip community-list standard 1_132_206 permit 65000:1 0:132 0:206 ip community-list standard 1_133_205 permit 65000:1 0:133 0:205 ip community-list standard 1_134_204 permit 65000:1 0:134 0:204 ip community-list standard 1_135_203 permit 65000:1 0:135 0:203 ip community-list standard 1_136_202 permit 65000:1 0:136 0:202 ip community-list standard 1_137_201 permit 65000:1 0:137 0:201 ip community-list standard 1_138_200 permit 65000:1 0:138 0:200 ip community-list standard 1_139_199 permit 65000:1 0:139 0:199 ip community-list standard 1_140_198 permit 65000:1 0:140 0:198 ip community-list standard 1_141_197 permit 65000:1 0:141 0:197 ip community-list standard 1_142_196 permit 65000:1 0:142 0:196 ip community-list standard 1_143_195 permit 65000:1 0:143 0:195 ip community-list standard 1_144_194 permit 65000:1 0:144 0:194 ip community-list standard 1_145_193 permit 65000:1 0:145 0:193 ip community-list standard 1_146_192 permit 65000:1 0:146 0:192 ip community-list standard 1_147_191 permit 65000:1 0:147 0:191 ip community-list standard 1_148_190 permit 65000:1 0:148 0:190 ip community-list standard 1_149_189 permit 65000:1 0:149 0:189 ip community-list standard 1_150_188 permit 65000:1 0:150 0:188 ip community-list standard 1_151_187 permit 65000:1 0:151 0:187 ip community-list standard 1_152_186 permit 65000:1 0:152 0:186 ip community-list standard 1_153_185 permit 65000:1 0:153 0:185 ip community-list standard 1_154_184 permit 65000:1 0:154 0:184 ip community-list standard 1_155_183 permit 65000:1 0:155 0:183 ip community-list standard 1_156_182 permit 65000:1 0:156 0:182 ip community-list standard 1_157_181 permit 65000:1 0:157 0:181 ip community-list standard 1_158_180 permit 65000:1 0:158 0:180 ip community-list standard 1_159_179 permit 65000:1 0:159 0:179 ip community-list standard 1_160_178 permit 65000:1 0:160 0:178 ip community-list standard 1_161_177 permit 65000:1 0:161 0:177 ip community-list standard 1_162_176 permit 65000:1 0:162 0:176 ip community-list standard 1_163_175 permit 65000:1 0:163 0:175 ip community-list standard 1_164_174 permit 65000:1 0:164 0:174 ip community-list standard 1_165_173 permit 65000:1 0:165 0:173 ip community-list standard 1_166_172 permit 65000:1 0:166 0:172 ip community-list standard 1_167_171 permit 65000:1 0:167 0:171 ip community-list standard 1_168_170 permit 65000:1 0:168 0:170 ip community-list standard 1_169_169 permit 65000:1 0:169 0:169 route-map calculator permit 4258 match community 2_2_169 2_13_26 1_82_256 1_83_255 1_84_254 set community 0:338 route-map calculator permit 4259 match community 1_85_253 1_86_252 1_87_251 1_88_250 1_89_249 set community 0:338 route-map calculator permit 4260 match community 1_90_248 1_91_247 1_92_246 1_93_245 1_94_244 set community 0:338 route-map calculator permit 4261 match community 1_95_243 1_96_242 1_97_241 1_98_240 1_99_239 set community 0:338 route-map calculator permit 4262 match community 1_100_238 1_101_237 1_102_236 1_103_235 1_104_234 set community 0:338 route-map calculator permit 4263 match community 1_105_233 1_106_232 1_107_231 1_108_230 1_109_229 set community 0:338 route-map calculator permit 4264 match community 1_110_228 1_111_227 1_112_226 1_113_225 1_114_224 set community 0:338 route-map calculator permit 4265 match community 1_115_223 1_116_222 1_117_221 1_118_220 1_119_219 set community 0:338 route-map calculator permit 4266 match community 1_120_218 1_121_217 1_122_216 1_123_215 1_124_214 set community 0:338 route-map calculator permit 4267 match community 1_125_213 1_126_212 1_127_211 1_128_210 1_129_209 set community 0:338 route-map calculator permit 4268 match community 1_130_208 1_131_207 1_132_206 1_133_205 1_134_204 set community 0:338 route-map calculator permit 4269 match community 1_135_203 1_136_202 1_137_201 1_138_200 1_139_199 set community 0:338 route-map calculator permit 4270 match community 1_140_198 1_141_197 1_142_196 1_143_195 1_144_194 set community 0:338 route-map calculator permit 4271 match community 1_145_193 1_146_192 1_147_191 1_148_190 1_149_189 set community 0:338 route-map calculator permit 4272 match community 1_150_188 1_151_187 1_152_186 1_153_185 1_154_184 set community 0:338 route-map calculator permit 4273 match community 1_155_183 1_156_182 1_157_181 1_158_180 1_159_179 set community 0:338 route-map calculator permit 4274 match community 1_160_178 1_161_177 1_162_176 1_163_175 1_164_174 set community 0:338 route-map calculator permit 4275 match community 1_165_173 1_166_172 1_167_171 1_168_170 1_169_169 set community 0:338 ip community-list standard 2_36_234 permit 65000:2 0:36 0:234 ip community-list standard 2_39_216 permit 65000:2 0:39 0:216 ip community-list standard 2_52_162 permit 65000:2 0:52 0:162 ip community-list standard 2_54_156 permit 65000:2 0:54 0:156 ip community-list standard 2_72_117 permit 65000:2 0:72 0:117 ip community-list standard 2_78_108 permit 65000:2 0:78 0:108 ip community-list standard 2_81_104 permit 65000:2 0:81 0:104 route-map calculator permit 4276 match community 2_36_234 2_39_216 2_52_162 2_54_156 2_72_117 set community 0:8424 route-map calculator permit 4277 match community 2_78_108 2_81_104 set community 0:8424 ip community-list standard 2_129_194 permit 65000:2 0:129 0:194 route-map calculator permit 4278 match community 2_129_194 set community 0:25026 ip community-list standard 2_19_151 permit 65000:2 0:19 0:151 route-map calculator permit 4279 match community 2_19_151 set community 0:2869 ip community-list standard 2_124_247 permit 65000:2 0:124 0:247 route-map calculator permit 4280 match community 2_124_247 set community 0:30628 ip community-list standard 2_76_232 permit 65000:2 0:76 0:232 ip community-list standard 2_116_152 permit 65000:2 0:116 0:152 route-map calculator permit 4281 match community 2_76_232 2_116_152 set community 0:17632 ip community-list standard 2_155_165 permit 65000:2 0:155 0:165 route-map calculator permit 4282 match community 2_155_165 set community 0:25575 ip community-list standard 2_31_67 permit 65000:2 0:31 0:67 route-map calculator permit 4283 match community 2_31_67 set community 0:2077 ip community-list standard 2_174_241 permit 65000:2 0:174 0:241 route-map calculator permit 4284 match community 2_174_241 set community 0:41934 ip community-list standard 2_2_140 permit 65000:2 0:2 0:140 ip community-list standard 2_4_70 permit 65000:2 0:4 0:70 ip community-list standard 2_5_56 permit 65000:2 0:5 0:56 ip community-list standard 2_7_40 permit 65000:2 0:7 0:40 ip community-list standard 2_8_35 permit 65000:2 0:8 0:35 ip community-list standard 2_10_28 permit 65000:2 0:10 0:28 ip community-list standard 2_14_20 permit 65000:2 0:14 0:20 ip community-list standard 1_24_256 permit 65000:1 0:24 0:256 ip community-list standard 1_25_255 permit 65000:1 0:25 0:255 ip community-list standard 1_26_254 permit 65000:1 0:26 0:254 ip community-list standard 1_27_253 permit 65000:1 0:27 0:253 ip community-list standard 1_28_252 permit 65000:1 0:28 0:252 ip community-list standard 1_29_251 permit 65000:1 0:29 0:251 ip community-list standard 1_30_250 permit 65000:1 0:30 0:250 ip community-list standard 1_31_249 permit 65000:1 0:31 0:249 ip community-list standard 1_32_248 permit 65000:1 0:32 0:248 ip community-list standard 1_33_247 permit 65000:1 0:33 0:247 ip community-list standard 1_34_246 permit 65000:1 0:34 0:246 ip community-list standard 1_35_245 permit 65000:1 0:35 0:245 ip community-list standard 1_36_244 permit 65000:1 0:36 0:244 ip community-list standard 1_37_243 permit 65000:1 0:37 0:243 ip community-list standard 1_38_242 permit 65000:1 0:38 0:242 ip community-list standard 1_39_241 permit 65000:1 0:39 0:241 ip community-list standard 1_40_240 permit 65000:1 0:40 0:240 ip community-list standard 1_41_239 permit 65000:1 0:41 0:239 ip community-list standard 1_42_238 permit 65000:1 0:42 0:238 ip community-list standard 1_43_237 permit 65000:1 0:43 0:237 ip community-list standard 1_44_236 permit 65000:1 0:44 0:236 ip community-list standard 1_45_235 permit 65000:1 0:45 0:235 ip community-list standard 1_46_234 permit 65000:1 0:46 0:234 ip community-list standard 1_47_233 permit 65000:1 0:47 0:233 ip community-list standard 1_48_232 permit 65000:1 0:48 0:232 ip community-list standard 1_49_231 permit 65000:1 0:49 0:231 ip community-list standard 1_50_230 permit 65000:1 0:50 0:230 ip community-list standard 1_51_229 permit 65000:1 0:51 0:229 ip community-list standard 1_52_228 permit 65000:1 0:52 0:228 ip community-list standard 1_53_227 permit 65000:1 0:53 0:227 ip community-list standard 1_54_226 permit 65000:1 0:54 0:226 ip community-list standard 1_55_225 permit 65000:1 0:55 0:225 ip community-list standard 1_56_224 permit 65000:1 0:56 0:224 ip community-list standard 1_57_223 permit 65000:1 0:57 0:223 ip community-list standard 1_58_222 permit 65000:1 0:58 0:222 ip community-list standard 1_59_221 permit 65000:1 0:59 0:221 ip community-list standard 1_60_220 permit 65000:1 0:60 0:220 ip community-list standard 1_61_219 permit 65000:1 0:61 0:219 ip community-list standard 1_62_218 permit 65000:1 0:62 0:218 ip community-list standard 1_63_217 permit 65000:1 0:63 0:217 ip community-list standard 1_64_216 permit 65000:1 0:64 0:216 ip community-list standard 1_65_215 permit 65000:1 0:65 0:215 ip community-list standard 1_66_214 permit 65000:1 0:66 0:214 ip community-list standard 1_67_213 permit 65000:1 0:67 0:213 ip community-list standard 1_68_212 permit 65000:1 0:68 0:212 ip community-list standard 1_69_211 permit 65000:1 0:69 0:211 ip community-list standard 1_70_210 permit 65000:1 0:70 0:210 ip community-list standard 1_71_209 permit 65000:1 0:71 0:209 ip community-list standard 1_72_208 permit 65000:1 0:72 0:208 ip community-list standard 1_73_207 permit 65000:1 0:73 0:207 ip community-list standard 1_74_206 permit 65000:1 0:74 0:206 ip community-list standard 1_75_205 permit 65000:1 0:75 0:205 ip community-list standard 1_76_204 permit 65000:1 0:76 0:204 ip community-list standard 1_77_203 permit 65000:1 0:77 0:203 ip community-list standard 1_78_202 permit 65000:1 0:78 0:202 ip community-list standard 1_79_201 permit 65000:1 0:79 0:201 ip community-list standard 1_80_200 permit 65000:1 0:80 0:200 ip community-list standard 1_81_199 permit 65000:1 0:81 0:199 ip community-list standard 1_82_198 permit 65000:1 0:82 0:198 ip community-list standard 1_83_197 permit 65000:1 0:83 0:197 ip community-list standard 1_84_196 permit 65000:1 0:84 0:196 ip community-list standard 1_85_195 permit 65000:1 0:85 0:195 ip community-list standard 1_86_194 permit 65000:1 0:86 0:194 ip community-list standard 1_87_193 permit 65000:1 0:87 0:193 ip community-list standard 1_88_192 permit 65000:1 0:88 0:192 ip community-list standard 1_89_191 permit 65000:1 0:89 0:191 ip community-list standard 1_90_190 permit 65000:1 0:90 0:190 ip community-list standard 1_91_189 permit 65000:1 0:91 0:189 ip community-list standard 1_92_188 permit 65000:1 0:92 0:188 ip community-list standard 1_93_187 permit 65000:1 0:93 0:187 ip community-list standard 1_94_186 permit 65000:1 0:94 0:186 ip community-list standard 1_95_185 permit 65000:1 0:95 0:185 ip community-list standard 1_96_184 permit 65000:1 0:96 0:184 ip community-list standard 1_97_183 permit 65000:1 0:97 0:183 ip community-list standard 1_98_182 permit 65000:1 0:98 0:182 ip community-list standard 1_99_181 permit 65000:1 0:99 0:181 ip community-list standard 1_100_180 permit 65000:1 0:100 0:180 ip community-list standard 1_101_179 permit 65000:1 0:101 0:179 ip community-list standard 1_102_178 permit 65000:1 0:102 0:178 ip community-list standard 1_103_177 permit 65000:1 0:103 0:177 ip community-list standard 1_104_176 permit 65000:1 0:104 0:176 ip community-list standard 1_105_175 permit 65000:1 0:105 0:175 ip community-list standard 1_106_174 permit 65000:1 0:106 0:174 ip community-list standard 1_107_173 permit 65000:1 0:107 0:173 ip community-list standard 1_108_172 permit 65000:1 0:108 0:172 ip community-list standard 1_109_171 permit 65000:1 0:109 0:171 ip community-list standard 1_110_170 permit 65000:1 0:110 0:170 ip community-list standard 1_111_169 permit 65000:1 0:111 0:169 ip community-list standard 1_112_168 permit 65000:1 0:112 0:168 ip community-list standard 1_113_167 permit 65000:1 0:113 0:167 ip community-list standard 1_114_166 permit 65000:1 0:114 0:166 ip community-list standard 1_115_165 permit 65000:1 0:115 0:165 ip community-list standard 1_116_164 permit 65000:1 0:116 0:164 ip community-list standard 1_117_163 permit 65000:1 0:117 0:163 ip community-list standard 1_118_162 permit 65000:1 0:118 0:162 ip community-list standard 1_119_161 permit 65000:1 0:119 0:161 ip community-list standard 1_120_160 permit 65000:1 0:120 0:160 ip community-list standard 1_121_159 permit 65000:1 0:121 0:159 ip community-list standard 1_122_158 permit 65000:1 0:122 0:158 ip community-list standard 1_123_157 permit 65000:1 0:123 0:157 ip community-list standard 1_124_156 permit 65000:1 0:124 0:156 ip community-list standard 1_125_155 permit 65000:1 0:125 0:155 ip community-list standard 1_126_154 permit 65000:1 0:126 0:154 ip community-list standard 1_127_153 permit 65000:1 0:127 0:153 ip community-list standard 1_128_152 permit 65000:1 0:128 0:152 ip community-list standard 1_129_151 permit 65000:1 0:129 0:151 ip community-list standard 1_130_150 permit 65000:1 0:130 0:150 ip community-list standard 1_131_149 permit 65000:1 0:131 0:149 ip community-list standard 1_132_148 permit 65000:1 0:132 0:148 ip community-list standard 1_133_147 permit 65000:1 0:133 0:147 ip community-list standard 1_134_146 permit 65000:1 0:134 0:146 ip community-list standard 1_135_145 permit 65000:1 0:135 0:145 ip community-list standard 1_136_144 permit 65000:1 0:136 0:144 ip community-list standard 1_137_143 permit 65000:1 0:137 0:143 ip community-list standard 1_138_142 permit 65000:1 0:138 0:142 ip community-list standard 1_139_141 permit 65000:1 0:139 0:141 ip community-list standard 1_140_140 permit 65000:1 0:140 0:140 route-map calculator permit 4285 match community 2_2_140 2_4_70 2_5_56 2_7_40 2_8_35 set community 0:280 route-map calculator permit 4286 match community 2_10_28 2_14_20 1_24_256 1_25_255 1_26_254 set community 0:280 route-map calculator permit 4287 match community 1_27_253 1_28_252 1_29_251 1_30_250 1_31_249 set community 0:280 route-map calculator permit 4288 match community 1_32_248 1_33_247 1_34_246 1_35_245 1_36_244 set community 0:280 route-map calculator permit 4289 match community 1_37_243 1_38_242 1_39_241 1_40_240 1_41_239 set community 0:280 route-map calculator permit 4290 match community 1_42_238 1_43_237 1_44_236 1_45_235 1_46_234 set community 0:280 route-map calculator permit 4291 match community 1_47_233 1_48_232 1_49_231 1_50_230 1_51_229 set community 0:280 route-map calculator permit 4292 match community 1_52_228 1_53_227 1_54_226 1_55_225 1_56_224 set community 0:280 route-map calculator permit 4293 match community 1_57_223 1_58_222 1_59_221 1_60_220 1_61_219 set community 0:280 route-map calculator permit 4294 match community 1_62_218 1_63_217 1_64_216 1_65_215 1_66_214 set community 0:280 route-map calculator permit 4295 match community 1_67_213 1_68_212 1_69_211 1_70_210 1_71_209 set community 0:280 route-map calculator permit 4296 match community 1_72_208 1_73_207 1_74_206 1_75_205 1_76_204 set community 0:280 route-map calculator permit 4297 match community 1_77_203 1_78_202 1_79_201 1_80_200 1_81_199 set community 0:280 route-map calculator permit 4298 match community 1_82_198 1_83_197 1_84_196 1_85_195 1_86_194 set community 0:280 route-map calculator permit 4299 match community 1_87_193 1_88_192 1_89_191 1_90_190 1_91_189 set community 0:280 route-map calculator permit 4300 match community 1_92_188 1_93_187 1_94_186 1_95_185 1_96_184 set community 0:280 route-map calculator permit 4301 match community 1_97_183 1_98_182 1_99_181 1_100_180 1_101_179 set community 0:280 route-map calculator permit 4302 match community 1_102_178 1_103_177 1_104_176 1_105_175 1_106_174 set community 0:280 route-map calculator permit 4303 match community 1_107_173 1_108_172 1_109_171 1_110_170 1_111_169 set community 0:280 route-map calculator permit 4304 match community 1_112_168 1_113_167 1_114_166 1_115_165 1_116_164 set community 0:280 route-map calculator permit 4305 match community 1_117_163 1_118_162 1_119_161 1_120_160 1_121_159 set community 0:280 route-map calculator permit 4306 match community 1_122_158 1_123_157 1_124_156 1_125_155 1_126_154 set community 0:280 route-map calculator permit 4307 match community 1_127_153 1_128_152 1_129_151 1_130_150 1_131_149 set community 0:280 route-map calculator permit 4308 match community 1_132_148 1_133_147 1_134_146 1_135_145 1_136_144 set community 0:280 route-map calculator permit 4309 match community 1_137_143 1_138_142 1_139_141 1_140_140 set community 0:280 ip community-list standard 2_20_182 permit 65000:2 0:20 0:182 ip community-list standard 2_26_140 permit 65000:2 0:26 0:140 ip community-list standard 2_28_130 permit 65000:2 0:28 0:130 ip community-list standard 2_35_104 permit 65000:2 0:35 0:104 ip community-list standard 2_40_91 permit 65000:2 0:40 0:91 ip community-list standard 2_52_70 permit 65000:2 0:52 0:70 ip community-list standard 2_56_65 permit 65000:2 0:56 0:65 route-map calculator permit 4310 match community 2_20_182 2_26_140 2_28_130 2_35_104 2_40_91 set community 0:3640 route-map calculator permit 4311 match community 2_52_70 2_56_65 set community 0:3640 ip community-list standard 2_91_147 permit 65000:2 0:91 0:147 route-map calculator permit 4312 match community 2_91_147 set community 0:13377 ip community-list standard 2_5_142 permit 65000:2 0:5 0:142 ip community-list standard 2_10_71 permit 65000:2 0:10 0:71 route-map calculator permit 4313 match community 2_5_142 2_10_71 set community 0:710 ip community-list standard 2_212_239 permit 65000:2 0:212 0:239 route-map calculator permit 4314 match community 2_212_239 set community 0:50668 ip community-list standard 2_114_223 permit 65000:2 0:114 0:223 route-map calculator permit 4315 match community 2_114_223 set community 0:25422 ip community-list standard 2_149_251 permit 65000:2 0:149 0:251 route-map calculator permit 4316 match community 2_149_251 set community 0:37399 ip community-list standard 2_219_243 permit 65000:2 0:219 0:243 route-map calculator permit 4317 match community 2_219_243 set community 0:53217 ip community-list standard 2_122_205 permit 65000:2 0:122 0:205 route-map calculator permit 4318 match community 2_122_205 set community 0:25010 ip community-list standard 2_138_253 permit 65000:2 0:138 0:253 route-map calculator permit 4319 match community 2_138_253 set community 0:34914 ip community-list standard 2_202_242 permit 65000:2 0:202 0:242 route-map calculator permit 4320 match community 2_202_242 set community 0:48884 ip community-list standard 2_147_202 permit 65000:2 0:147 0:202 route-map calculator permit 4321 match community 2_147_202 set community 0:29694 ip community-list standard 2_30_252 permit 65000:2 0:30 0:252 ip community-list standard 2_35_216 permit 65000:2 0:35 0:216 ip community-list standard 2_36_210 permit 65000:2 0:36 0:210 ip community-list standard 2_40_189 permit 65000:2 0:40 0:189 ip community-list standard 2_42_180 permit 65000:2 0:42 0:180 ip community-list standard 2_45_168 permit 65000:2 0:45 0:168 ip community-list standard 2_54_140 permit 65000:2 0:54 0:140 ip community-list standard 2_56_135 permit 65000:2 0:56 0:135 ip community-list standard 2_60_126 permit 65000:2 0:60 0:126 ip community-list standard 2_63_120 permit 65000:2 0:63 0:120 ip community-list standard 2_70_108 permit 65000:2 0:70 0:108 ip community-list standard 2_72_105 permit 65000:2 0:72 0:105 ip community-list standard 2_84_90 permit 65000:2 0:84 0:90 route-map calculator permit 4322 match community 2_30_252 2_35_216 2_36_210 2_40_189 2_42_180 set community 0:7560 route-map calculator permit 4323 match community 2_45_168 2_54_140 2_56_135 2_60_126 2_63_120 set community 0:7560 route-map calculator permit 4324 match community 2_70_108 2_72_105 2_84_90 set community 0:7560 ip community-list standard 2_218_246 permit 65000:2 0:218 0:246 route-map calculator permit 4325 match community 2_218_246 set community 0:53628 ip community-list standard 2_73_187 permit 65000:2 0:73 0:187 route-map calculator permit 4326 match community 2_73_187 set community 0:13651 ip community-list standard 2_206_247 permit 65000:2 0:206 0:247 route-map calculator permit 4327 match community 2_206_247 set community 0:50882 ip community-list standard 2_103_237 permit 65000:2 0:103 0:237 route-map calculator permit 4328 match community 2_103_237 set community 0:24411 ip community-list standard 2_171_201 permit 65000:2 0:171 0:201 route-map calculator permit 4329 match community 2_171_201 set community 0:34371 ip community-list standard 2_199_231 permit 65000:2 0:199 0:231 route-map calculator permit 4330 match community 2_199_231 set community 0:45969 ip community-list standard 2_85_247 permit 65000:2 0:85 0:247 ip community-list standard 2_95_221 permit 65000:2 0:95 0:221 route-map calculator permit 4331 match community 2_85_247 2_95_221 set community 0:20995 ip community-list standard 2_57_247 permit 65000:2 0:57 0:247 route-map calculator permit 4332 match community 2_57_247 set community 0:14079 ip community-list standard 2_186_199 permit 65000:2 0:186 0:199 route-map calculator permit 4333 match community 2_186_199 set community 0:37014 ip community-list standard 2_47_163 permit 65000:2 0:47 0:163 route-map calculator permit 4334 match community 2_47_163 set community 0:7661 ip community-list standard 2_159_175 permit 65000:2 0:159 0:175 route-map calculator permit 4335 match community 2_159_175 set community 0:27825 ip community-list standard 2_55_202 permit 65000:2 0:55 0:202 ip community-list standard 2_101_110 permit 65000:2 0:101 0:110 route-map calculator permit 4336 match community 2_55_202 2_101_110 set community 0:11110 ip community-list standard 2_11_251 permit 65000:2 0:11 0:251 route-map calculator permit 4337 match community 2_11_251 set community 0:2761 ip community-list standard 2_99_202 permit 65000:2 0:99 0:202 ip community-list standard 2_101_198 permit 65000:2 0:101 0:198 route-map calculator permit 4338 match community 2_99_202 2_101_198 set community 0:19998 ip community-list standard 2_79_185 permit 65000:2 0:79 0:185 route-map calculator permit 4339 match community 2_79_185 set community 0:14615 ip community-list standard 2_43_137 permit 65000:2 0:43 0:137 route-map calculator permit 4340 match community 2_43_137 set community 0:5891 ip community-list standard 2_38_220 permit 65000:2 0:38 0:220 ip community-list standard 2_40_209 permit 65000:2 0:40 0:209 ip community-list standard 2_44_190 permit 65000:2 0:44 0:190 ip community-list standard 2_55_152 permit 65000:2 0:55 0:152 ip community-list standard 2_76_110 permit 65000:2 0:76 0:110 ip community-list standard 2_88_95 permit 65000:2 0:88 0:95 route-map calculator permit 4341 match community 2_38_220 2_40_209 2_44_190 2_55_152 2_76_110 set community 0:8360 route-map calculator permit 4342 match community 2_88_95 set community 0:8360 ip community-list standard 2_208_219 permit 65000:2 0:208 0:219 route-map calculator permit 4343 match community 2_208_219 set community 0:45552 ip community-list standard 2_235_236 permit 65000:2 0:235 0:236 route-map calculator permit 4344 match community 2_235_236 set community 0:55460 ip community-list standard 2_68_166 permit 65000:2 0:68 0:166 ip community-list standard 2_83_136 permit 65000:2 0:83 0:136 route-map calculator permit 4345 match community 2_68_166 2_83_136 set community 0:11288 ip community-list standard 2_13_253 permit 65000:2 0:13 0:253 ip community-list standard 2_23_143 permit 65000:2 0:23 0:143 route-map calculator permit 4346 match community 2_13_253 2_23_143 set community 0:3289 ip community-list standard 2_53_61 permit 65000:2 0:53 0:61 route-map calculator permit 4347 match community 2_53_61 set community 0:3233 ip community-list standard 2_103_213 permit 65000:2 0:103 0:213 route-map calculator permit 4348 match community 2_103_213 set community 0:21939 ip community-list standard 2_66_139 permit 65000:2 0:66 0:139 route-map calculator permit 4349 match community 2_66_139 set community 0:9174 ip community-list standard 2_158_220 permit 65000:2 0:158 0:220 route-map calculator permit 4350 match community 2_158_220 set community 0:34760 ip community-list standard 2_173_193 permit 65000:2 0:173 0:193 route-map calculator permit 4351 match community 2_173_193 set community 0:33389 ip community-list standard 2_12_213 permit 65000:2 0:12 0:213 ip community-list standard 2_18_142 permit 65000:2 0:18 0:142 ip community-list standard 2_36_71 permit 65000:2 0:36 0:71 route-map calculator permit 4352 match community 2_12_213 2_18_142 2_36_71 set community 0:2556 ip community-list standard 2_67_139 permit 65000:2 0:67 0:139 route-map calculator permit 4353 match community 2_67_139 set community 0:9313 ip community-list standard 2_105_226 permit 65000:2 0:105 0:226 ip community-list standard 2_113_210 permit 65000:2 0:113 0:210 route-map calculator permit 4354 match community 2_105_226 2_113_210 set community 0:23730 ip community-list standard 2_195_234 permit 65000:2 0:195 0:234 route-map calculator permit 4355 match community 2_195_234 set community 0:45630 ip community-list standard 2_70_178 permit 65000:2 0:70 0:178 ip community-list standard 2_89_140 permit 65000:2 0:89 0:140 route-map calculator permit 4356 match community 2_70_178 2_89_140 set community 0:12460 ip community-list standard 2_82_215 permit 65000:2 0:82 0:215 ip community-list standard 2_86_205 permit 65000:2 0:86 0:205 route-map calculator permit 4357 match community 2_82_215 2_86_205 set community 0:17630 ip community-list standard 2_2_230 permit 65000:2 0:2 0:230 ip community-list standard 2_4_115 permit 65000:2 0:4 0:115 ip community-list standard 2_5_92 permit 65000:2 0:5 0:92 ip community-list standard 2_10_46 permit 65000:2 0:10 0:46 ip community-list standard 2_20_23 permit 65000:2 0:20 0:23 ip community-list standard 1_204_256 permit 65000:1 0:204 0:256 ip community-list standard 1_205_255 permit 65000:1 0:205 0:255 ip community-list standard 1_206_254 permit 65000:1 0:206 0:254 ip community-list standard 1_207_253 permit 65000:1 0:207 0:253 ip community-list standard 1_208_252 permit 65000:1 0:208 0:252 ip community-list standard 1_209_251 permit 65000:1 0:209 0:251 ip community-list standard 1_210_250 permit 65000:1 0:210 0:250 ip community-list standard 1_211_249 permit 65000:1 0:211 0:249 ip community-list standard 1_212_248 permit 65000:1 0:212 0:248 ip community-list standard 1_213_247 permit 65000:1 0:213 0:247 ip community-list standard 1_214_246 permit 65000:1 0:214 0:246 ip community-list standard 1_215_245 permit 65000:1 0:215 0:245 ip community-list standard 1_216_244 permit 65000:1 0:216 0:244 ip community-list standard 1_217_243 permit 65000:1 0:217 0:243 ip community-list standard 1_218_242 permit 65000:1 0:218 0:242 ip community-list standard 1_219_241 permit 65000:1 0:219 0:241 ip community-list standard 1_220_240 permit 65000:1 0:220 0:240 ip community-list standard 1_221_239 permit 65000:1 0:221 0:239 ip community-list standard 1_222_238 permit 65000:1 0:222 0:238 ip community-list standard 1_223_237 permit 65000:1 0:223 0:237 ip community-list standard 1_224_236 permit 65000:1 0:224 0:236 ip community-list standard 1_225_235 permit 65000:1 0:225 0:235 ip community-list standard 1_226_234 permit 65000:1 0:226 0:234 ip community-list standard 1_227_233 permit 65000:1 0:227 0:233 ip community-list standard 1_228_232 permit 65000:1 0:228 0:232 ip community-list standard 1_229_231 permit 65000:1 0:229 0:231 ip community-list standard 1_230_230 permit 65000:1 0:230 0:230 route-map calculator permit 4358 match community 2_2_230 2_4_115 2_5_92 2_10_46 2_20_23 set community 0:460 route-map calculator permit 4359 match community 1_204_256 1_205_255 1_206_254 1_207_253 1_208_252 set community 0:460 route-map calculator permit 4360 match community 1_209_251 1_210_250 1_211_249 1_212_248 1_213_247 set community 0:460 route-map calculator permit 4361 match community 1_214_246 1_215_245 1_216_244 1_217_243 1_218_242 set community 0:460 route-map calculator permit 4362 match community 1_219_241 1_220_240 1_221_239 1_222_238 1_223_237 set community 0:460 route-map calculator permit 4363 match community 1_224_236 1_225_235 1_226_234 1_227_233 1_228_232 set community 0:460 route-map calculator permit 4364 match community 1_229_231 1_230_230 set community 0:460 ip community-list standard 2_29_174 permit 65000:2 0:29 0:174 ip community-list standard 2_58_87 permit 65000:2 0:58 0:87 route-map calculator permit 4365 match community 2_29_174 2_58_87 set community 0:5046 ip community-list standard 2_194_234 permit 65000:2 0:194 0:234 route-map calculator permit 4366 match community 2_194_234 set community 0:45396 ip community-list standard 1_1_93 permit 65000:1 0:1 0:93 ip community-list standard 2_1_94 permit 65000:2 0:1 0:94 ip community-list standard 2_2_47 permit 65000:2 0:2 0:47 ip community-list standard 1_2_92 permit 65000:1 0:2 0:92 ip community-list standard 1_3_91 permit 65000:1 0:3 0:91 ip community-list standard 1_4_90 permit 65000:1 0:4 0:90 ip community-list standard 1_5_89 permit 65000:1 0:5 0:89 ip community-list standard 1_6_88 permit 65000:1 0:6 0:88 ip community-list standard 1_7_87 permit 65000:1 0:7 0:87 ip community-list standard 1_8_86 permit 65000:1 0:8 0:86 ip community-list standard 1_9_85 permit 65000:1 0:9 0:85 ip community-list standard 1_10_84 permit 65000:1 0:10 0:84 ip community-list standard 1_11_83 permit 65000:1 0:11 0:83 ip community-list standard 1_12_82 permit 65000:1 0:12 0:82 ip community-list standard 1_13_81 permit 65000:1 0:13 0:81 ip community-list standard 1_14_80 permit 65000:1 0:14 0:80 ip community-list standard 1_15_79 permit 65000:1 0:15 0:79 ip community-list standard 1_16_78 permit 65000:1 0:16 0:78 ip community-list standard 1_17_77 permit 65000:1 0:17 0:77 ip community-list standard 1_18_76 permit 65000:1 0:18 0:76 ip community-list standard 1_19_75 permit 65000:1 0:19 0:75 ip community-list standard 1_20_74 permit 65000:1 0:20 0:74 ip community-list standard 1_21_73 permit 65000:1 0:21 0:73 ip community-list standard 1_22_72 permit 65000:1 0:22 0:72 ip community-list standard 1_23_71 permit 65000:1 0:23 0:71 ip community-list standard 1_24_70 permit 65000:1 0:24 0:70 ip community-list standard 1_25_69 permit 65000:1 0:25 0:69 ip community-list standard 1_26_68 permit 65000:1 0:26 0:68 ip community-list standard 1_27_67 permit 65000:1 0:27 0:67 ip community-list standard 1_28_66 permit 65000:1 0:28 0:66 ip community-list standard 1_29_65 permit 65000:1 0:29 0:65 ip community-list standard 1_30_64 permit 65000:1 0:30 0:64 ip community-list standard 1_31_63 permit 65000:1 0:31 0:63 ip community-list standard 1_32_62 permit 65000:1 0:32 0:62 ip community-list standard 1_33_61 permit 65000:1 0:33 0:61 ip community-list standard 1_34_60 permit 65000:1 0:34 0:60 ip community-list standard 1_35_59 permit 65000:1 0:35 0:59 ip community-list standard 1_36_58 permit 65000:1 0:36 0:58 ip community-list standard 1_37_57 permit 65000:1 0:37 0:57 ip community-list standard 1_38_56 permit 65000:1 0:38 0:56 ip community-list standard 1_39_55 permit 65000:1 0:39 0:55 ip community-list standard 1_40_54 permit 65000:1 0:40 0:54 ip community-list standard 1_41_53 permit 65000:1 0:41 0:53 ip community-list standard 1_42_52 permit 65000:1 0:42 0:52 ip community-list standard 1_43_51 permit 65000:1 0:43 0:51 ip community-list standard 1_44_50 permit 65000:1 0:44 0:50 ip community-list standard 1_45_49 permit 65000:1 0:45 0:49 ip community-list standard 1_46_48 permit 65000:1 0:46 0:48 ip community-list standard 1_47_47 permit 65000:1 0:47 0:47 ip community-list expanded c94 permit 1 ^65000:4_0:94_0:1$ ip community-list expanded c94 permit 2 ^65000:3_0:95_0:1$ ip community-list expanded c94 permit 3 ^65000:3_0:96_0:2$ ip community-list expanded c94 permit 4 ^65000:3_0:97_0:3$ ip community-list expanded c94 permit 5 ^65000:3_0:98_0:4$ ip community-list expanded c94 permit 6 ^65000:3_0:99_0:5$ ip community-list expanded c94 permit 7 ^65000:3_0:100_0:6$ ip community-list expanded c94 permit 8 ^65000:3_0:101_0:7$ ip community-list expanded c94 permit 9 ^65000:3_0:102_0:8$ ip community-list expanded c94 permit 10 ^65000:3_0:103_0:9$ ip community-list expanded c94 permit 11 ^65000:3_0:104_0:10$ ip community-list expanded c94 permit 12 ^65000:3_0:105_0:11$ ip community-list expanded c94 permit 13 ^65000:3_0:106_0:12$ ip community-list expanded c94 permit 14 ^65000:3_0:107_0:13$ ip community-list expanded c94 permit 15 ^65000:3_0:108_0:14$ ip community-list expanded c94 permit 16 ^65000:3_0:109_0:15$ ip community-list expanded c94 permit 17 ^65000:3_0:110_0:16$ ip community-list expanded c94 permit 18 ^65000:3_0:111_0:17$ ip community-list expanded c94 permit 19 ^65000:3_0:112_0:18$ ip community-list expanded c94 permit 20 ^65000:3_0:113_0:19$ ip community-list expanded c94 permit 21 ^65000:3_0:114_0:20$ ip community-list expanded c94 permit 22 ^65000:3_0:115_0:21$ ip community-list expanded c94 permit 23 ^65000:3_0:116_0:22$ ip community-list expanded c94 permit 24 ^65000:3_0:117_0:23$ ip community-list expanded c94 permit 25 ^65000:3_0:118_0:24$ ip community-list expanded c94 permit 26 ^65000:3_0:119_0:25$ ip community-list expanded c94 permit 27 ^65000:3_0:120_0:26$ ip community-list expanded c94 permit 28 ^65000:3_0:121_0:27$ ip community-list expanded c94 permit 29 ^65000:3_0:122_0:28$ ip community-list expanded c94 permit 30 ^65000:3_0:123_0:29$ ip community-list expanded c94 permit 31 ^65000:3_0:124_0:30$ ip community-list expanded c94 permit 32 ^65000:3_0:125_0:31$ ip community-list expanded c94 permit 33 ^65000:3_0:126_0:32$ ip community-list expanded c94 permit 34 ^65000:3_0:127_0:33$ ip community-list expanded c94 permit 35 ^65000:3_0:128_0:34$ ip community-list expanded c94 permit 36 ^65000:3_0:129_0:35$ ip community-list expanded c94 permit 37 ^65000:3_0:130_0:36$ ip community-list expanded c94 permit 38 ^65000:3_0:131_0:37$ ip community-list expanded c94 permit 39 ^65000:3_0:132_0:38$ ip community-list expanded c94 permit 40 ^65000:3_0:133_0:39$ ip community-list expanded c94 permit 41 ^65000:3_0:134_0:40$ ip community-list expanded c94 permit 42 ^65000:3_0:135_0:41$ ip community-list expanded c94 permit 43 ^65000:3_0:136_0:42$ ip community-list expanded c94 permit 44 ^65000:3_0:137_0:43$ ip community-list expanded c94 permit 45 ^65000:3_0:138_0:44$ ip community-list expanded c94 permit 46 ^65000:3_0:139_0:45$ ip community-list expanded c94 permit 47 ^65000:3_0:140_0:46$ ip community-list expanded c94 permit 48 ^65000:3_0:141_0:47$ ip community-list expanded c94 permit 49 ^65000:3_0:142_0:48$ ip community-list expanded c94 permit 50 ^65000:3_0:143_0:49$ ip community-list expanded c94 permit 51 ^65000:3_0:144_0:50$ ip community-list expanded c94 permit 52 ^65000:3_0:145_0:51$ ip community-list expanded c94 permit 53 ^65000:3_0:146_0:52$ ip community-list expanded c94 permit 54 ^65000:3_0:147_0:53$ ip community-list expanded c94 permit 55 ^65000:3_0:148_0:54$ ip community-list expanded c94 permit 56 ^65000:3_0:149_0:55$ ip community-list expanded c94 permit 57 ^65000:3_0:150_0:56$ ip community-list expanded c94 permit 58 ^65000:3_0:151_0:57$ ip community-list expanded c94 permit 59 ^65000:3_0:152_0:58$ ip community-list expanded c94 permit 60 ^65000:3_0:153_0:59$ ip community-list expanded c94 permit 61 ^65000:3_0:154_0:60$ ip community-list expanded c94 permit 62 ^65000:3_0:155_0:61$ ip community-list expanded c94 permit 63 ^65000:3_0:156_0:62$ ip community-list expanded c94 permit 64 ^65000:3_0:157_0:63$ ip community-list expanded c94 permit 65 ^65000:3_0:158_0:64$ ip community-list expanded c94 permit 66 ^65000:3_0:159_0:65$ ip community-list expanded c94 permit 67 ^65000:3_0:160_0:66$ ip community-list expanded c94 permit 68 ^65000:3_0:161_0:67$ ip community-list expanded c94 permit 69 ^65000:3_0:162_0:68$ ip community-list expanded c94 permit 70 ^65000:3_0:163_0:69$ ip community-list expanded c94 permit 71 ^65000:3_0:164_0:70$ ip community-list expanded c94 permit 72 ^65000:3_0:165_0:71$ ip community-list expanded c94 permit 73 ^65000:3_0:166_0:72$ ip community-list expanded c94 permit 74 ^65000:3_0:167_0:73$ ip community-list expanded c94 permit 75 ^65000:3_0:168_0:74$ ip community-list expanded c94 permit 76 ^65000:3_0:169_0:75$ ip community-list expanded c94 permit 77 ^65000:3_0:170_0:76$ ip community-list expanded c94 permit 78 ^65000:3_0:171_0:77$ ip community-list expanded c94 permit 79 ^65000:3_0:172_0:78$ ip community-list expanded c94 permit 80 ^65000:3_0:173_0:79$ ip community-list expanded c94 permit 81 ^65000:3_0:174_0:80$ ip community-list expanded c94 permit 82 ^65000:3_0:175_0:81$ ip community-list expanded c94 permit 83 ^65000:3_0:176_0:82$ ip community-list expanded c94 permit 84 ^65000:3_0:177_0:83$ ip community-list expanded c94 permit 85 ^65000:3_0:178_0:84$ ip community-list expanded c94 permit 86 ^65000:3_0:179_0:85$ ip community-list expanded c94 permit 87 ^65000:3_0:180_0:86$ ip community-list expanded c94 permit 88 ^65000:3_0:181_0:87$ ip community-list expanded c94 permit 89 ^65000:3_0:182_0:88$ ip community-list expanded c94 permit 90 ^65000:3_0:183_0:89$ ip community-list expanded c94 permit 91 ^65000:3_0:184_0:90$ ip community-list expanded c94 permit 92 ^65000:3_0:185_0:91$ ip community-list expanded c94 permit 93 ^65000:3_0:186_0:92$ ip community-list expanded c94 permit 94 ^65000:3_0:187_0:93$ ip community-list expanded c94 permit 95 ^65000:4_0:188_0:2$ ip community-list expanded c94 permit 96 ^65000:3_0:188_0:94$ ip community-list expanded c94 permit 97 ^65000:4_0:189_0:2$ ip community-list expanded c94 permit 98 ^65000:3_0:189_0:95$ ip community-list expanded c94 permit 99 ^65000:3_0:190_0:96$ ip community-list expanded c94 permit 100 ^65000:3_0:191_0:97$ ip community-list expanded c94 permit 101 ^65000:3_0:192_0:98$ ip community-list expanded c94 permit 102 ^65000:3_0:193_0:99$ ip community-list expanded c94 permit 103 ^65000:3_0:194_0:100$ ip community-list expanded c94 permit 104 ^65000:3_0:195_0:101$ ip community-list expanded c94 permit 105 ^65000:3_0:196_0:102$ ip community-list expanded c94 permit 106 ^65000:3_0:197_0:103$ ip community-list expanded c94 permit 107 ^65000:3_0:198_0:104$ ip community-list expanded c94 permit 108 ^65000:3_0:199_0:105$ ip community-list expanded c94 permit 109 ^65000:3_0:200_0:106$ ip community-list expanded c94 permit 110 ^65000:3_0:201_0:107$ ip community-list expanded c94 permit 111 ^65000:3_0:202_0:108$ ip community-list expanded c94 permit 112 ^65000:3_0:203_0:109$ ip community-list expanded c94 permit 113 ^65000:3_0:204_0:110$ ip community-list expanded c94 permit 114 ^65000:3_0:205_0:111$ ip community-list expanded c94 permit 115 ^65000:3_0:206_0:112$ ip community-list expanded c94 permit 116 ^65000:3_0:207_0:113$ ip community-list expanded c94 permit 117 ^65000:3_0:208_0:114$ ip community-list expanded c94 permit 118 ^65000:3_0:209_0:115$ ip community-list expanded c94 permit 119 ^65000:3_0:210_0:116$ ip community-list expanded c94 permit 120 ^65000:3_0:211_0:117$ ip community-list expanded c94 permit 121 ^65000:3_0:212_0:118$ ip community-list expanded c94 permit 122 ^65000:3_0:213_0:119$ ip community-list expanded c94 permit 123 ^65000:3_0:214_0:120$ ip community-list expanded c94 permit 124 ^65000:3_0:215_0:121$ ip community-list expanded c94 permit 125 ^65000:3_0:216_0:122$ ip community-list expanded c94 permit 126 ^65000:3_0:217_0:123$ ip community-list expanded c94 permit 127 ^65000:3_0:218_0:124$ ip community-list expanded c94 permit 128 ^65000:3_0:219_0:125$ ip community-list expanded c94 permit 129 ^65000:3_0:220_0:126$ ip community-list expanded c94 permit 130 ^65000:3_0:221_0:127$ ip community-list expanded c94 permit 131 ^65000:3_0:222_0:128$ ip community-list expanded c94 permit 132 ^65000:3_0:223_0:129$ ip community-list expanded c94 permit 133 ^65000:3_0:224_0:130$ ip community-list expanded c94 permit 134 ^65000:3_0:225_0:131$ ip community-list expanded c94 permit 135 ^65000:3_0:226_0:132$ ip community-list expanded c94 permit 136 ^65000:3_0:227_0:133$ ip community-list expanded c94 permit 137 ^65000:3_0:228_0:134$ ip community-list expanded c94 permit 138 ^65000:3_0:229_0:135$ ip community-list expanded c94 permit 139 ^65000:3_0:230_0:136$ ip community-list expanded c94 permit 140 ^65000:3_0:231_0:137$ ip community-list expanded c94 permit 141 ^65000:3_0:232_0:138$ ip community-list expanded c94 permit 142 ^65000:3_0:233_0:139$ ip community-list expanded c94 permit 143 ^65000:3_0:234_0:140$ ip community-list expanded c94 permit 144 ^65000:3_0:235_0:141$ ip community-list expanded c94 permit 145 ^65000:3_0:236_0:142$ ip community-list expanded c94 permit 146 ^65000:3_0:237_0:143$ ip community-list expanded c94 permit 147 ^65000:3_0:238_0:144$ ip community-list expanded c94 permit 148 ^65000:3_0:239_0:145$ ip community-list expanded c94 permit 149 ^65000:3_0:240_0:146$ ip community-list expanded c94 permit 150 ^65000:3_0:241_0:147$ ip community-list expanded c94 permit 151 ^65000:3_0:242_0:148$ ip community-list expanded c94 permit 152 ^65000:3_0:243_0:149$ ip community-list expanded c94 permit 153 ^65000:3_0:244_0:150$ ip community-list expanded c94 permit 154 ^65000:3_0:245_0:151$ ip community-list expanded c94 permit 155 ^65000:3_0:246_0:152$ ip community-list expanded c94 permit 156 ^65000:3_0:247_0:153$ ip community-list expanded c94 permit 157 ^65000:3_0:248_0:154$ ip community-list expanded c94 permit 158 ^65000:3_0:249_0:155$ ip community-list expanded c94 permit 159 ^65000:3_0:250_0:156$ ip community-list expanded c94 permit 160 ^65000:3_0:251_0:157$ ip community-list expanded c94 permit 161 ^65000:3_0:252_0:158$ ip community-list expanded c94 permit 162 ^65000:3_0:253_0:159$ ip community-list expanded c94 permit 163 ^65000:3_0:254_0:160$ ip community-list expanded c94 permit 164 ^65000:3_0:255_0:161$ ip community-list expanded c94 permit 165 ^65000:3_0:256_0:162$ route-map calculator permit 4367 match community 1_1_93 2_1_94 2_2_47 1_2_92 1_3_91 set community 0:94 route-map calculator permit 4368 match community 1_4_90 1_5_89 1_6_88 1_7_87 1_8_86 set community 0:94 route-map calculator permit 4369 match community 1_9_85 1_10_84 1_11_83 1_12_82 1_13_81 set community 0:94 route-map calculator permit 4370 match community 1_14_80 1_15_79 1_16_78 1_17_77 1_18_76 set community 0:94 route-map calculator permit 4371 match community 1_19_75 1_20_74 1_21_73 1_22_72 1_23_71 set community 0:94 route-map calculator permit 4372 match community 1_24_70 1_25_69 1_26_68 1_27_67 1_28_66 set community 0:94 route-map calculator permit 4373 match community 1_29_65 1_30_64 1_31_63 1_32_62 1_33_61 set community 0:94 route-map calculator permit 4374 match community 1_34_60 1_35_59 1_36_58 1_37_57 1_38_56 set community 0:94 route-map calculator permit 4375 match community 1_39_55 1_40_54 1_41_53 1_42_52 1_43_51 set community 0:94 route-map calculator permit 4376 match community 1_44_50 1_45_49 1_46_48 1_47_47 c4_94_1 set community 0:94 route-map calculator permit 4377 match community c3_95_1 c3_96_2 c3_97_3 c3_98_4 c3_99_5 set community 0:94 route-map calculator permit 4378 match community c3_100_6 c3_101_7 c3_102_8 c3_103_9 c3_104_10 set community 0:94 route-map calculator permit 4379 match community c3_105_11 c3_106_12 c3_107_13 c3_108_14 c3_109_15 set community 0:94 route-map calculator permit 4380 match community c3_110_16 c3_111_17 c3_112_18 c3_113_19 c3_114_20 set community 0:94 route-map calculator permit 4381 match community c3_115_21 c3_116_22 c3_117_23 c3_118_24 c3_119_25 set community 0:94 route-map calculator permit 4382 match community c3_120_26 c3_121_27 c3_122_28 c3_123_29 c3_124_30 set community 0:94 route-map calculator permit 4383 match community c3_125_31 c3_126_32 c3_127_33 c3_128_34 c3_129_35 set community 0:94 route-map calculator permit 4384 match community c3_130_36 c3_131_37 c3_132_38 c3_133_39 c3_134_40 set community 0:94 route-map calculator permit 4385 match community c3_135_41 c3_136_42 c3_137_43 c3_138_44 c3_139_45 set community 0:94 route-map calculator permit 4386 match community c3_140_46 c3_141_47 c3_142_48 c3_143_49 c3_144_50 set community 0:94 route-map calculator permit 4387 match community c3_145_51 c3_146_52 c3_147_53 c3_148_54 c3_149_55 set community 0:94 route-map calculator permit 4388 match community c3_150_56 c3_151_57 c3_152_58 c3_153_59 c3_154_60 set community 0:94 route-map calculator permit 4389 match community c3_155_61 c3_156_62 c3_157_63 c3_158_64 c3_159_65 set community 0:94 route-map calculator permit 4390 match community c3_160_66 c3_161_67 c3_162_68 c3_163_69 c3_164_70 set community 0:94 route-map calculator permit 4391 match community c3_165_71 c3_166_72 c3_167_73 c3_168_74 c3_169_75 set community 0:94 route-map calculator permit 4392 match community c3_170_76 c3_171_77 c3_172_78 c3_173_79 c3_174_80 set community 0:94 route-map calculator permit 4393 match community c3_175_81 c3_176_82 c3_177_83 c3_178_84 c3_179_85 set community 0:94 route-map calculator permit 4394 match community c3_180_86 c3_181_87 c3_182_88 c3_183_89 c3_184_90 set community 0:94 route-map calculator permit 4395 match community c3_185_91 c3_186_92 c3_187_93 c4_188_2 c3_188_94 set community 0:94 route-map calculator permit 4396 match community c4_189_2 c3_189_95 c3_190_96 c3_191_97 c3_192_98 set community 0:94 route-map calculator permit 4397 match community c3_193_99 c3_194_100 c3_195_101 c3_196_102 c3_197_103 set community 0:94 route-map calculator permit 4398 match community c3_198_104 c3_199_105 c3_200_106 c3_201_107 c3_202_108 set community 0:94 route-map calculator permit 4399 match community c3_203_109 c3_204_110 c3_205_111 c3_206_112 c3_207_113 set community 0:94 route-map calculator permit 4400 match community c3_208_114 c3_209_115 c3_210_116 c3_211_117 c3_212_118 set community 0:94 route-map calculator permit 4401 match community c3_213_119 c3_214_120 c3_215_121 c3_216_122 c3_217_123 set community 0:94 route-map calculator permit 4402 match community c3_218_124 c3_219_125 c3_220_126 c3_221_127 c3_222_128 set community 0:94 route-map calculator permit 4403 match community c3_223_129 c3_224_130 c3_225_131 c3_226_132 c3_227_133 set community 0:94 route-map calculator permit 4404 match community c3_228_134 c3_229_135 c3_230_136 c3_231_137 c3_232_138 set community 0:94 route-map calculator permit 4405 match community c3_233_139 c3_234_140 c3_235_141 c3_236_142 c3_237_143 set community 0:94 route-map calculator permit 4406 match community c3_238_144 c3_239_145 c3_240_146 c3_241_147 c3_242_148 set community 0:94 route-map calculator permit 4407 match community c3_243_149 c3_244_150 c3_245_151 c3_246_152 c3_247_153 set community 0:94 route-map calculator permit 4408 match community c3_248_154 c3_249_155 c3_250_156 c3_251_157 c3_252_158 set community 0:94 route-map calculator permit 4409 match community c3_253_159 c3_254_160 c3_255_161 c3_256_162 set community 0:94 ip community-list standard 2_35_107 permit 65000:2 0:35 0:107 route-map calculator permit 4410 match community 2_35_107 set community 0:3745 ip community-list standard 2_99_256 permit 65000:2 0:99 0:256 ip community-list standard 2_128_198 permit 65000:2 0:128 0:198 ip community-list standard 2_132_192 permit 65000:2 0:132 0:192 ip community-list standard 2_144_176 permit 65000:2 0:144 0:176 route-map calculator permit 4411 match community 2_99_256 2_128_198 2_132_192 2_144_176 set community 0:25344 ip community-list standard 2_146_191 permit 65000:2 0:146 0:191 route-map calculator permit 4412 match community 2_146_191 set community 0:27886 ip community-list standard 2_173_212 permit 65000:2 0:173 0:212 route-map calculator permit 4413 match community 2_173_212 set community 0:36676 ip community-list standard 2_101_214 permit 65000:2 0:101 0:214 ip community-list standard 2_107_202 permit 65000:2 0:107 0:202 route-map calculator permit 4414 match community 2_101_214 2_107_202 set community 0:21614 ip community-list standard 2_137_200 permit 65000:2 0:137 0:200 route-map calculator permit 4415 match community 2_137_200 set community 0:27400 ip community-list standard 2_117_239 permit 65000:2 0:117 0:239 route-map calculator permit 4416 match community 2_117_239 set community 0:27963 ip community-list standard 2_97_179 permit 65000:2 0:97 0:179 route-map calculator permit 4417 match community 2_97_179 set community 0:17363 ip community-list standard 2_196_236 permit 65000:2 0:196 0:236 route-map calculator permit 4418 match community 2_196_236 set community 0:46256 ip community-list standard 2_13_87 permit 65000:2 0:13 0:87 ip community-list standard 2_29_39 permit 65000:2 0:29 0:39 route-map calculator permit 4419 match community 2_13_87 2_29_39 set community 0:1131 ip community-list standard 2_35_73 permit 65000:2 0:35 0:73 route-map calculator permit 4420 match community 2_35_73 set community 0:2555 ip community-list standard 2_71_212 permit 65000:2 0:71 0:212 ip community-list standard 2_106_142 permit 65000:2 0:106 0:142 route-map calculator permit 4421 match community 2_71_212 2_106_142 set community 0:15052 ip community-list standard 2_144_246 permit 65000:2 0:144 0:246 ip community-list standard 2_164_216 permit 65000:2 0:164 0:216 route-map calculator permit 4422 match community 2_144_246 2_164_216 set community 0:35424 ip community-list standard 2_138_197 permit 65000:2 0:138 0:197 route-map calculator permit 4423 match community 2_138_197 set community 0:27186 ip community-list standard 2_75_256 permit 65000:2 0:75 0:256 ip community-list standard 2_80_240 permit 65000:2 0:80 0:240 ip community-list standard 2_96_200 permit 65000:2 0:96 0:200 ip community-list standard 2_100_192 permit 65000:2 0:100 0:192 ip community-list standard 2_120_160 permit 65000:2 0:120 0:160 ip community-list standard 2_128_150 permit 65000:2 0:128 0:150 route-map calculator permit 4424 match community 2_75_256 2_80_240 2_96_200 2_100_192 2_120_160 set community 0:19200 route-map calculator permit 4425 match community 2_128_150 set community 0:19200 ip community-list standard 2_72_235 permit 65000:2 0:72 0:235 ip community-list standard 2_90_188 permit 65000:2 0:90 0:188 ip community-list standard 2_94_180 permit 65000:2 0:94 0:180 ip community-list standard 2_120_141 permit 65000:2 0:120 0:141 route-map calculator permit 4426 match community 2_72_235 2_90_188 2_94_180 2_120_141 set community 0:16920 ip community-list standard 2_61_203 permit 65000:2 0:61 0:203 route-map calculator permit 4427 match community 2_61_203 set community 0:12383 ip community-list standard 2_181_252 permit 65000:2 0:181 0:252 route-map calculator permit 4428 match community 2_181_252 set community 0:45612 ip community-list standard 2_63_151 permit 65000:2 0:63 0:151 route-map calculator permit 4429 match community 2_63_151 set community 0:9513 ip community-list standard 2_182_194 permit 65000:2 0:182 0:194 route-map calculator permit 4430 match community 2_182_194 set community 0:35308 ip community-list standard 2_89_204 permit 65000:2 0:89 0:204 ip community-list standard 2_102_178 permit 65000:2 0:102 0:178 route-map calculator permit 4431 match community 2_89_204 2_102_178 set community 0:18156 ip community-list standard 2_103_139 permit 65000:2 0:103 0:139 route-map calculator permit 4432 match community 2_103_139 set community 0:14317 ip community-list standard 2_46_244 permit 65000:2 0:46 0:244 ip community-list standard 2_61_184 permit 65000:2 0:61 0:184 ip community-list standard 2_92_122 permit 65000:2 0:92 0:122 route-map calculator permit 4433 match community 2_46_244 2_61_184 2_92_122 set community 0:11224 ip community-list standard 2_181_200 permit 65000:2 0:181 0:200 route-map calculator permit 4434 match community 2_181_200 set community 0:36200 ip community-list standard 2_130_149 permit 65000:2 0:130 0:149 route-map calculator permit 4435 match community 2_130_149 set community 0:19370 ip community-list standard 2_217_220 permit 65000:2 0:217 0:220 route-map calculator permit 4436 match community 2_217_220 set community 0:47740 ip community-list standard 1_21_256 permit 65000:1 0:21 0:256 ip community-list standard 1_22_255 permit 65000:1 0:22 0:255 ip community-list standard 1_23_254 permit 65000:1 0:23 0:254 ip community-list standard 1_24_253 permit 65000:1 0:24 0:253 ip community-list standard 1_25_252 permit 65000:1 0:25 0:252 ip community-list standard 1_26_251 permit 65000:1 0:26 0:251 ip community-list standard 1_27_250 permit 65000:1 0:27 0:250 ip community-list standard 1_28_249 permit 65000:1 0:28 0:249 ip community-list standard 1_29_248 permit 65000:1 0:29 0:248 ip community-list standard 1_30_247 permit 65000:1 0:30 0:247 ip community-list standard 1_31_246 permit 65000:1 0:31 0:246 ip community-list standard 1_32_245 permit 65000:1 0:32 0:245 ip community-list standard 1_33_244 permit 65000:1 0:33 0:244 ip community-list standard 1_34_243 permit 65000:1 0:34 0:243 ip community-list standard 1_35_242 permit 65000:1 0:35 0:242 ip community-list standard 1_36_241 permit 65000:1 0:36 0:241 ip community-list standard 1_37_240 permit 65000:1 0:37 0:240 ip community-list standard 1_38_239 permit 65000:1 0:38 0:239 ip community-list standard 1_39_238 permit 65000:1 0:39 0:238 ip community-list standard 1_40_237 permit 65000:1 0:40 0:237 ip community-list standard 1_41_236 permit 65000:1 0:41 0:236 ip community-list standard 1_42_235 permit 65000:1 0:42 0:235 ip community-list standard 1_43_234 permit 65000:1 0:43 0:234 ip community-list standard 1_44_233 permit 65000:1 0:44 0:233 ip community-list standard 1_45_232 permit 65000:1 0:45 0:232 ip community-list standard 1_46_231 permit 65000:1 0:46 0:231 ip community-list standard 1_47_230 permit 65000:1 0:47 0:230 ip community-list standard 1_48_229 permit 65000:1 0:48 0:229 ip community-list standard 1_49_228 permit 65000:1 0:49 0:228 ip community-list standard 1_50_227 permit 65000:1 0:50 0:227 ip community-list standard 1_51_226 permit 65000:1 0:51 0:226 ip community-list standard 1_52_225 permit 65000:1 0:52 0:225 ip community-list standard 1_53_224 permit 65000:1 0:53 0:224 ip community-list standard 1_54_223 permit 65000:1 0:54 0:223 ip community-list standard 1_55_222 permit 65000:1 0:55 0:222 ip community-list standard 1_56_221 permit 65000:1 0:56 0:221 ip community-list standard 1_57_220 permit 65000:1 0:57 0:220 ip community-list standard 1_58_219 permit 65000:1 0:58 0:219 ip community-list standard 1_59_218 permit 65000:1 0:59 0:218 ip community-list standard 1_60_217 permit 65000:1 0:60 0:217 ip community-list standard 1_61_216 permit 65000:1 0:61 0:216 ip community-list standard 1_62_215 permit 65000:1 0:62 0:215 ip community-list standard 1_63_214 permit 65000:1 0:63 0:214 ip community-list standard 1_64_213 permit 65000:1 0:64 0:213 ip community-list standard 1_65_212 permit 65000:1 0:65 0:212 ip community-list standard 1_66_211 permit 65000:1 0:66 0:211 ip community-list standard 1_67_210 permit 65000:1 0:67 0:210 ip community-list standard 1_68_209 permit 65000:1 0:68 0:209 ip community-list standard 1_69_208 permit 65000:1 0:69 0:208 ip community-list standard 1_70_207 permit 65000:1 0:70 0:207 ip community-list standard 1_71_206 permit 65000:1 0:71 0:206 ip community-list standard 1_72_205 permit 65000:1 0:72 0:205 ip community-list standard 1_73_204 permit 65000:1 0:73 0:204 ip community-list standard 1_74_203 permit 65000:1 0:74 0:203 ip community-list standard 1_75_202 permit 65000:1 0:75 0:202 ip community-list standard 1_76_201 permit 65000:1 0:76 0:201 ip community-list standard 1_77_200 permit 65000:1 0:77 0:200 ip community-list standard 1_78_199 permit 65000:1 0:78 0:199 ip community-list standard 1_79_198 permit 65000:1 0:79 0:198 ip community-list standard 1_80_197 permit 65000:1 0:80 0:197 ip community-list standard 1_81_196 permit 65000:1 0:81 0:196 ip community-list standard 1_82_195 permit 65000:1 0:82 0:195 ip community-list standard 1_83_194 permit 65000:1 0:83 0:194 ip community-list standard 1_84_193 permit 65000:1 0:84 0:193 ip community-list standard 1_85_192 permit 65000:1 0:85 0:192 ip community-list standard 1_86_191 permit 65000:1 0:86 0:191 ip community-list standard 1_87_190 permit 65000:1 0:87 0:190 ip community-list standard 1_88_189 permit 65000:1 0:88 0:189 ip community-list standard 1_89_188 permit 65000:1 0:89 0:188 ip community-list standard 1_90_187 permit 65000:1 0:90 0:187 ip community-list standard 1_91_186 permit 65000:1 0:91 0:186 ip community-list standard 1_92_185 permit 65000:1 0:92 0:185 ip community-list standard 1_93_184 permit 65000:1 0:93 0:184 ip community-list standard 1_94_183 permit 65000:1 0:94 0:183 ip community-list standard 1_95_182 permit 65000:1 0:95 0:182 ip community-list standard 1_96_181 permit 65000:1 0:96 0:181 ip community-list standard 1_97_180 permit 65000:1 0:97 0:180 ip community-list standard 1_98_179 permit 65000:1 0:98 0:179 ip community-list standard 1_99_178 permit 65000:1 0:99 0:178 ip community-list standard 1_100_177 permit 65000:1 0:100 0:177 ip community-list standard 1_101_176 permit 65000:1 0:101 0:176 ip community-list standard 1_102_175 permit 65000:1 0:102 0:175 ip community-list standard 1_103_174 permit 65000:1 0:103 0:174 ip community-list standard 1_104_173 permit 65000:1 0:104 0:173 ip community-list standard 1_105_172 permit 65000:1 0:105 0:172 ip community-list standard 1_106_171 permit 65000:1 0:106 0:171 ip community-list standard 1_107_170 permit 65000:1 0:107 0:170 ip community-list standard 1_108_169 permit 65000:1 0:108 0:169 ip community-list standard 1_109_168 permit 65000:1 0:109 0:168 ip community-list standard 1_110_167 permit 65000:1 0:110 0:167 ip community-list standard 1_111_166 permit 65000:1 0:111 0:166 ip community-list standard 1_112_165 permit 65000:1 0:112 0:165 ip community-list standard 1_113_164 permit 65000:1 0:113 0:164 ip community-list standard 1_114_163 permit 65000:1 0:114 0:163 ip community-list standard 1_115_162 permit 65000:1 0:115 0:162 ip community-list standard 1_116_161 permit 65000:1 0:116 0:161 ip community-list standard 1_117_160 permit 65000:1 0:117 0:160 ip community-list standard 1_118_159 permit 65000:1 0:118 0:159 ip community-list standard 1_119_158 permit 65000:1 0:119 0:158 ip community-list standard 1_120_157 permit 65000:1 0:120 0:157 ip community-list standard 1_121_156 permit 65000:1 0:121 0:156 ip community-list standard 1_122_155 permit 65000:1 0:122 0:155 ip community-list standard 1_123_154 permit 65000:1 0:123 0:154 ip community-list standard 1_124_153 permit 65000:1 0:124 0:153 ip community-list standard 1_125_152 permit 65000:1 0:125 0:152 ip community-list standard 1_126_151 permit 65000:1 0:126 0:151 ip community-list standard 1_127_150 permit 65000:1 0:127 0:150 ip community-list standard 1_128_149 permit 65000:1 0:128 0:149 ip community-list standard 1_129_148 permit 65000:1 0:129 0:148 ip community-list standard 1_130_147 permit 65000:1 0:130 0:147 ip community-list standard 1_131_146 permit 65000:1 0:131 0:146 ip community-list standard 1_132_145 permit 65000:1 0:132 0:145 ip community-list standard 1_133_144 permit 65000:1 0:133 0:144 ip community-list standard 1_134_143 permit 65000:1 0:134 0:143 ip community-list standard 1_135_142 permit 65000:1 0:135 0:142 ip community-list standard 1_136_141 permit 65000:1 0:136 0:141 ip community-list standard 1_137_140 permit 65000:1 0:137 0:140 ip community-list standard 1_138_139 permit 65000:1 0:138 0:139 route-map calculator permit 4437 match community 1_21_256 1_22_255 1_23_254 1_24_253 1_25_252 set community 0:277 route-map calculator permit 4438 match community 1_26_251 1_27_250 1_28_249 1_29_248 1_30_247 set community 0:277 route-map calculator permit 4439 match community 1_31_246 1_32_245 1_33_244 1_34_243 1_35_242 set community 0:277 route-map calculator permit 4440 match community 1_36_241 1_37_240 1_38_239 1_39_238 1_40_237 set community 0:277 route-map calculator permit 4441 match community 1_41_236 1_42_235 1_43_234 1_44_233 1_45_232 set community 0:277 route-map calculator permit 4442 match community 1_46_231 1_47_230 1_48_229 1_49_228 1_50_227 set community 0:277 route-map calculator permit 4443 match community 1_51_226 1_52_225 1_53_224 1_54_223 1_55_222 set community 0:277 route-map calculator permit 4444 match community 1_56_221 1_57_220 1_58_219 1_59_218 1_60_217 set community 0:277 route-map calculator permit 4445 match community 1_61_216 1_62_215 1_63_214 1_64_213 1_65_212 set community 0:277 route-map calculator permit 4446 match community 1_66_211 1_67_210 1_68_209 1_69_208 1_70_207 set community 0:277 route-map calculator permit 4447 match community 1_71_206 1_72_205 1_73_204 1_74_203 1_75_202 set community 0:277 route-map calculator permit 4448 match community 1_76_201 1_77_200 1_78_199 1_79_198 1_80_197 set community 0:277 route-map calculator permit 4449 match community 1_81_196 1_82_195 1_83_194 1_84_193 1_85_192 set community 0:277 route-map calculator permit 4450 match community 1_86_191 1_87_190 1_88_189 1_89_188 1_90_187 set community 0:277 route-map calculator permit 4451 match community 1_91_186 1_92_185 1_93_184 1_94_183 1_95_182 set community 0:277 route-map calculator permit 4452 match community 1_96_181 1_97_180 1_98_179 1_99_178 1_100_177 set community 0:277 route-map calculator permit 4453 match community 1_101_176 1_102_175 1_103_174 1_104_173 1_105_172 set community 0:277 route-map calculator permit 4454 match community 1_106_171 1_107_170 1_108_169 1_109_168 1_110_167 set community 0:277 route-map calculator permit 4455 match community 1_111_166 1_112_165 1_113_164 1_114_163 1_115_162 set community 0:277 route-map calculator permit 4456 match community 1_116_161 1_117_160 1_118_159 1_119_158 1_120_157 set community 0:277 route-map calculator permit 4457 match community 1_121_156 1_122_155 1_123_154 1_124_153 1_125_152 set community 0:277 route-map calculator permit 4458 match community 1_126_151 1_127_150 1_128_149 1_129_148 1_130_147 set community 0:277 route-map calculator permit 4459 match community 1_131_146 1_132_145 1_133_144 1_134_143 1_135_142 set community 0:277 route-map calculator permit 4460 match community 1_136_141 1_137_140 1_138_139 set community 0:277 ip community-list standard 2_146_163 permit 65000:2 0:146 0:163 route-map calculator permit 4461 match community 2_146_163 set community 0:23798 ip community-list standard 2_52_131 permit 65000:2 0:52 0:131 route-map calculator permit 4462 match community 2_52_131 set community 0:6812 ip community-list standard 2_10_139 permit 65000:2 0:10 0:139 route-map calculator permit 4463 match community 2_10_139 set community 0:1390 ip community-list standard 2_26_213 permit 65000:2 0:26 0:213 ip community-list standard 2_39_142 permit 65000:2 0:39 0:142 ip community-list standard 2_71_78 permit 65000:2 0:71 0:78 route-map calculator permit 4464 match community 2_26_213 2_39_142 2_71_78 set community 0:5538 ip community-list standard 2_146_235 permit 65000:2 0:146 0:235 route-map calculator permit 4465 match community 2_146_235 set community 0:34310 ip community-list standard 2_71_125 permit 65000:2 0:71 0:125 route-map calculator permit 4466 match community 2_71_125 set community 0:8875 ip community-list standard 2_139_209 permit 65000:2 0:139 0:209 route-map calculator permit 4467 match community 2_139_209 set community 0:29051 ip community-list standard 2_72_239 permit 65000:2 0:72 0:239 route-map calculator permit 4468 match community 2_72_239 set community 0:17208 ip community-list standard 2_176_226 permit 65000:2 0:176 0:226 route-map calculator permit 4469 match community 2_176_226 set community 0:39776 ip community-list standard 2_47_245 permit 65000:2 0:47 0:245 ip community-list standard 2_49_235 permit 65000:2 0:49 0:235 route-map calculator permit 4470 match community 2_47_245 2_49_235 set community 0:11515 ip community-list standard 2_64_221 permit 65000:2 0:64 0:221 ip community-list standard 2_68_208 permit 65000:2 0:68 0:208 ip community-list standard 2_104_136 permit 65000:2 0:104 0:136 route-map calculator permit 4471 match community 2_64_221 2_68_208 2_104_136 set community 0:14144 ip community-list standard 2_85_178 permit 65000:2 0:85 0:178 ip community-list standard 2_89_170 permit 65000:2 0:89 0:170 route-map calculator permit 4472 match community 2_85_178 2_89_170 set community 0:15130 ip community-list standard 2_159_234 permit 65000:2 0:159 0:234 route-map calculator permit 4473 match community 2_159_234 set community 0:37206 ip community-list standard 2_249_250 permit 65000:2 0:249 0:250 route-map calculator permit 4474 match community 2_249_250 set community 0:62250 ip community-list standard 1_1_79 permit 65000:1 0:1 0:79 ip community-list standard 2_1_80 permit 65000:2 0:1 0:80 ip community-list standard 2_2_40 permit 65000:2 0:2 0:40 ip community-list standard 1_2_78 permit 65000:1 0:2 0:78 ip community-list standard 1_3_77 permit 65000:1 0:3 0:77 ip community-list standard 2_4_20 permit 65000:2 0:4 0:20 ip community-list standard 1_4_76 permit 65000:1 0:4 0:76 ip community-list standard 2_5_16 permit 65000:2 0:5 0:16 ip community-list standard 1_5_75 permit 65000:1 0:5 0:75 ip community-list standard 1_6_74 permit 65000:1 0:6 0:74 ip community-list standard 1_7_73 permit 65000:1 0:7 0:73 ip community-list standard 2_8_10 permit 65000:2 0:8 0:10 ip community-list standard 1_8_72 permit 65000:1 0:8 0:72 ip community-list standard 1_9_71 permit 65000:1 0:9 0:71 ip community-list standard 1_10_70 permit 65000:1 0:10 0:70 ip community-list standard 1_11_69 permit 65000:1 0:11 0:69 ip community-list standard 1_12_68 permit 65000:1 0:12 0:68 ip community-list standard 1_13_67 permit 65000:1 0:13 0:67 ip community-list standard 1_14_66 permit 65000:1 0:14 0:66 ip community-list standard 1_15_65 permit 65000:1 0:15 0:65 ip community-list standard 1_16_64 permit 65000:1 0:16 0:64 ip community-list standard 1_17_63 permit 65000:1 0:17 0:63 ip community-list standard 1_18_62 permit 65000:1 0:18 0:62 ip community-list standard 1_19_61 permit 65000:1 0:19 0:61 ip community-list standard 1_20_60 permit 65000:1 0:20 0:60 ip community-list standard 1_21_59 permit 65000:1 0:21 0:59 ip community-list standard 1_22_58 permit 65000:1 0:22 0:58 ip community-list standard 1_23_57 permit 65000:1 0:23 0:57 ip community-list standard 1_24_56 permit 65000:1 0:24 0:56 ip community-list standard 1_25_55 permit 65000:1 0:25 0:55 ip community-list standard 1_26_54 permit 65000:1 0:26 0:54 ip community-list standard 1_27_53 permit 65000:1 0:27 0:53 ip community-list standard 1_28_52 permit 65000:1 0:28 0:52 ip community-list standard 1_29_51 permit 65000:1 0:29 0:51 ip community-list standard 1_30_50 permit 65000:1 0:30 0:50 ip community-list standard 1_31_49 permit 65000:1 0:31 0:49 ip community-list standard 1_32_48 permit 65000:1 0:32 0:48 ip community-list standard 1_33_47 permit 65000:1 0:33 0:47 ip community-list standard 1_34_46 permit 65000:1 0:34 0:46 ip community-list standard 1_35_45 permit 65000:1 0:35 0:45 ip community-list standard 1_36_44 permit 65000:1 0:36 0:44 ip community-list standard 1_37_43 permit 65000:1 0:37 0:43 ip community-list standard 1_38_42 permit 65000:1 0:38 0:42 ip community-list standard 1_39_41 permit 65000:1 0:39 0:41 ip community-list standard 1_40_40 permit 65000:1 0:40 0:40 ip community-list expanded c80 permit 1 ^65000:4_0:80_0:1$ ip community-list expanded c80 permit 2 ^65000:3_0:81_0:1$ ip community-list expanded c80 permit 3 ^65000:3_0:82_0:2$ ip community-list expanded c80 permit 4 ^65000:3_0:83_0:3$ ip community-list expanded c80 permit 5 ^65000:3_0:84_0:4$ ip community-list expanded c80 permit 6 ^65000:3_0:85_0:5$ ip community-list expanded c80 permit 7 ^65000:3_0:86_0:6$ ip community-list expanded c80 permit 8 ^65000:3_0:87_0:7$ ip community-list expanded c80 permit 9 ^65000:3_0:88_0:8$ ip community-list expanded c80 permit 10 ^65000:3_0:89_0:9$ ip community-list expanded c80 permit 11 ^65000:3_0:90_0:10$ ip community-list expanded c80 permit 12 ^65000:3_0:91_0:11$ ip community-list expanded c80 permit 13 ^65000:3_0:92_0:12$ ip community-list expanded c80 permit 14 ^65000:3_0:93_0:13$ ip community-list expanded c80 permit 15 ^65000:3_0:94_0:14$ ip community-list expanded c80 permit 16 ^65000:3_0:95_0:15$ ip community-list expanded c80 permit 17 ^65000:3_0:96_0:16$ ip community-list expanded c80 permit 18 ^65000:3_0:97_0:17$ ip community-list expanded c80 permit 19 ^65000:3_0:98_0:18$ ip community-list expanded c80 permit 20 ^65000:3_0:99_0:19$ ip community-list expanded c80 permit 21 ^65000:3_0:100_0:20$ ip community-list expanded c80 permit 22 ^65000:3_0:101_0:21$ ip community-list expanded c80 permit 23 ^65000:3_0:102_0:22$ ip community-list expanded c80 permit 24 ^65000:3_0:103_0:23$ ip community-list expanded c80 permit 25 ^65000:3_0:104_0:24$ ip community-list expanded c80 permit 26 ^65000:3_0:105_0:25$ ip community-list expanded c80 permit 27 ^65000:3_0:106_0:26$ ip community-list expanded c80 permit 28 ^65000:3_0:107_0:27$ ip community-list expanded c80 permit 29 ^65000:3_0:108_0:28$ ip community-list expanded c80 permit 30 ^65000:3_0:109_0:29$ ip community-list expanded c80 permit 31 ^65000:3_0:110_0:30$ ip community-list expanded c80 permit 32 ^65000:3_0:111_0:31$ ip community-list expanded c80 permit 33 ^65000:3_0:112_0:32$ ip community-list expanded c80 permit 34 ^65000:3_0:113_0:33$ ip community-list expanded c80 permit 35 ^65000:3_0:114_0:34$ ip community-list expanded c80 permit 36 ^65000:3_0:115_0:35$ ip community-list expanded c80 permit 37 ^65000:3_0:116_0:36$ ip community-list expanded c80 permit 38 ^65000:3_0:117_0:37$ ip community-list expanded c80 permit 39 ^65000:3_0:118_0:38$ ip community-list expanded c80 permit 40 ^65000:3_0:119_0:39$ ip community-list expanded c80 permit 41 ^65000:3_0:120_0:40$ ip community-list expanded c80 permit 42 ^65000:3_0:121_0:41$ ip community-list expanded c80 permit 43 ^65000:3_0:122_0:42$ ip community-list expanded c80 permit 44 ^65000:3_0:123_0:43$ ip community-list expanded c80 permit 45 ^65000:3_0:124_0:44$ ip community-list expanded c80 permit 46 ^65000:3_0:125_0:45$ ip community-list expanded c80 permit 47 ^65000:3_0:126_0:46$ ip community-list expanded c80 permit 48 ^65000:3_0:127_0:47$ ip community-list expanded c80 permit 49 ^65000:3_0:128_0:48$ ip community-list expanded c80 permit 50 ^65000:3_0:129_0:49$ ip community-list expanded c80 permit 51 ^65000:3_0:130_0:50$ ip community-list expanded c80 permit 52 ^65000:3_0:131_0:51$ ip community-list expanded c80 permit 53 ^65000:3_0:132_0:52$ ip community-list expanded c80 permit 54 ^65000:3_0:133_0:53$ ip community-list expanded c80 permit 55 ^65000:3_0:134_0:54$ ip community-list expanded c80 permit 56 ^65000:3_0:135_0:55$ ip community-list expanded c80 permit 57 ^65000:3_0:136_0:56$ ip community-list expanded c80 permit 58 ^65000:3_0:137_0:57$ ip community-list expanded c80 permit 59 ^65000:3_0:138_0:58$ ip community-list expanded c80 permit 60 ^65000:3_0:139_0:59$ ip community-list expanded c80 permit 61 ^65000:3_0:140_0:60$ ip community-list expanded c80 permit 62 ^65000:3_0:141_0:61$ ip community-list expanded c80 permit 63 ^65000:3_0:142_0:62$ ip community-list expanded c80 permit 64 ^65000:3_0:143_0:63$ ip community-list expanded c80 permit 65 ^65000:3_0:144_0:64$ ip community-list expanded c80 permit 66 ^65000:3_0:145_0:65$ ip community-list expanded c80 permit 67 ^65000:3_0:146_0:66$ ip community-list expanded c80 permit 68 ^65000:3_0:147_0:67$ ip community-list expanded c80 permit 69 ^65000:3_0:148_0:68$ ip community-list expanded c80 permit 70 ^65000:3_0:149_0:69$ ip community-list expanded c80 permit 71 ^65000:3_0:150_0:70$ ip community-list expanded c80 permit 72 ^65000:3_0:151_0:71$ ip community-list expanded c80 permit 73 ^65000:3_0:152_0:72$ ip community-list expanded c80 permit 74 ^65000:3_0:153_0:73$ ip community-list expanded c80 permit 75 ^65000:3_0:154_0:74$ ip community-list expanded c80 permit 76 ^65000:3_0:155_0:75$ ip community-list expanded c80 permit 77 ^65000:3_0:156_0:76$ ip community-list expanded c80 permit 78 ^65000:3_0:157_0:77$ ip community-list expanded c80 permit 79 ^65000:3_0:158_0:78$ ip community-list expanded c80 permit 80 ^65000:3_0:159_0:79$ ip community-list expanded c80 permit 81 ^65000:4_0:160_0:2$ ip community-list expanded c80 permit 82 ^65000:3_0:160_0:80$ ip community-list expanded c80 permit 83 ^65000:4_0:161_0:2$ ip community-list expanded c80 permit 84 ^65000:3_0:161_0:81$ ip community-list expanded c80 permit 85 ^65000:3_0:162_0:82$ ip community-list expanded c80 permit 86 ^65000:3_0:163_0:83$ ip community-list expanded c80 permit 87 ^65000:3_0:164_0:84$ ip community-list expanded c80 permit 88 ^65000:3_0:165_0:85$ ip community-list expanded c80 permit 89 ^65000:3_0:166_0:86$ ip community-list expanded c80 permit 90 ^65000:3_0:167_0:87$ ip community-list expanded c80 permit 91 ^65000:3_0:168_0:88$ ip community-list expanded c80 permit 92 ^65000:3_0:169_0:89$ ip community-list expanded c80 permit 93 ^65000:3_0:170_0:90$ ip community-list expanded c80 permit 94 ^65000:3_0:171_0:91$ ip community-list expanded c80 permit 95 ^65000:3_0:172_0:92$ ip community-list expanded c80 permit 96 ^65000:3_0:173_0:93$ ip community-list expanded c80 permit 97 ^65000:3_0:174_0:94$ ip community-list expanded c80 permit 98 ^65000:3_0:175_0:95$ ip community-list expanded c80 permit 99 ^65000:3_0:176_0:96$ ip community-list expanded c80 permit 100 ^65000:3_0:177_0:97$ ip community-list expanded c80 permit 101 ^65000:3_0:178_0:98$ ip community-list expanded c80 permit 102 ^65000:3_0:179_0:99$ ip community-list expanded c80 permit 103 ^65000:3_0:180_0:100$ ip community-list expanded c80 permit 104 ^65000:3_0:181_0:101$ ip community-list expanded c80 permit 105 ^65000:3_0:182_0:102$ ip community-list expanded c80 permit 106 ^65000:3_0:183_0:103$ ip community-list expanded c80 permit 107 ^65000:3_0:184_0:104$ ip community-list expanded c80 permit 108 ^65000:3_0:185_0:105$ ip community-list expanded c80 permit 109 ^65000:3_0:186_0:106$ ip community-list expanded c80 permit 110 ^65000:3_0:187_0:107$ ip community-list expanded c80 permit 111 ^65000:3_0:188_0:108$ ip community-list expanded c80 permit 112 ^65000:3_0:189_0:109$ ip community-list expanded c80 permit 113 ^65000:3_0:190_0:110$ ip community-list expanded c80 permit 114 ^65000:3_0:191_0:111$ ip community-list expanded c80 permit 115 ^65000:3_0:192_0:112$ ip community-list expanded c80 permit 116 ^65000:3_0:193_0:113$ ip community-list expanded c80 permit 117 ^65000:3_0:194_0:114$ ip community-list expanded c80 permit 118 ^65000:3_0:195_0:115$ ip community-list expanded c80 permit 119 ^65000:3_0:196_0:116$ ip community-list expanded c80 permit 120 ^65000:3_0:197_0:117$ ip community-list expanded c80 permit 121 ^65000:3_0:198_0:118$ ip community-list expanded c80 permit 122 ^65000:3_0:199_0:119$ ip community-list expanded c80 permit 123 ^65000:3_0:200_0:120$ ip community-list expanded c80 permit 124 ^65000:3_0:201_0:121$ ip community-list expanded c80 permit 125 ^65000:3_0:202_0:122$ ip community-list expanded c80 permit 126 ^65000:3_0:203_0:123$ ip community-list expanded c80 permit 127 ^65000:3_0:204_0:124$ ip community-list expanded c80 permit 128 ^65000:3_0:205_0:125$ ip community-list expanded c80 permit 129 ^65000:3_0:206_0:126$ ip community-list expanded c80 permit 130 ^65000:3_0:207_0:127$ ip community-list expanded c80 permit 131 ^65000:3_0:208_0:128$ ip community-list expanded c80 permit 132 ^65000:3_0:209_0:129$ ip community-list expanded c80 permit 133 ^65000:3_0:210_0:130$ ip community-list expanded c80 permit 134 ^65000:3_0:211_0:131$ ip community-list expanded c80 permit 135 ^65000:3_0:212_0:132$ ip community-list expanded c80 permit 136 ^65000:3_0:213_0:133$ ip community-list expanded c80 permit 137 ^65000:3_0:214_0:134$ ip community-list expanded c80 permit 138 ^65000:3_0:215_0:135$ ip community-list expanded c80 permit 139 ^65000:3_0:216_0:136$ ip community-list expanded c80 permit 140 ^65000:3_0:217_0:137$ ip community-list expanded c80 permit 141 ^65000:3_0:218_0:138$ ip community-list expanded c80 permit 142 ^65000:3_0:219_0:139$ ip community-list expanded c80 permit 143 ^65000:3_0:220_0:140$ ip community-list expanded c80 permit 144 ^65000:3_0:221_0:141$ ip community-list expanded c80 permit 145 ^65000:3_0:222_0:142$ ip community-list expanded c80 permit 146 ^65000:3_0:223_0:143$ ip community-list expanded c80 permit 147 ^65000:3_0:224_0:144$ ip community-list expanded c80 permit 148 ^65000:3_0:225_0:145$ ip community-list expanded c80 permit 149 ^65000:3_0:226_0:146$ ip community-list expanded c80 permit 150 ^65000:3_0:227_0:147$ ip community-list expanded c80 permit 151 ^65000:3_0:228_0:148$ ip community-list expanded c80 permit 152 ^65000:3_0:229_0:149$ ip community-list expanded c80 permit 153 ^65000:3_0:230_0:150$ ip community-list expanded c80 permit 154 ^65000:3_0:231_0:151$ ip community-list expanded c80 permit 155 ^65000:3_0:232_0:152$ ip community-list expanded c80 permit 156 ^65000:3_0:233_0:153$ ip community-list expanded c80 permit 157 ^65000:3_0:234_0:154$ ip community-list expanded c80 permit 158 ^65000:3_0:235_0:155$ ip community-list expanded c80 permit 159 ^65000:3_0:236_0:156$ ip community-list expanded c80 permit 160 ^65000:3_0:237_0:157$ ip community-list expanded c80 permit 161 ^65000:3_0:238_0:158$ ip community-list expanded c80 permit 162 ^65000:3_0:239_0:159$ ip community-list expanded c80 permit 163 ^65000:4_0:240_0:3$ ip community-list expanded c80 permit 164 ^65000:3_0:240_0:160$ ip community-list expanded c80 permit 165 ^65000:4_0:241_0:3$ ip community-list expanded c80 permit 166 ^65000:3_0:241_0:161$ ip community-list expanded c80 permit 167 ^65000:4_0:242_0:3$ ip community-list expanded c80 permit 168 ^65000:3_0:242_0:162$ ip community-list expanded c80 permit 169 ^65000:3_0:243_0:163$ ip community-list expanded c80 permit 170 ^65000:3_0:244_0:164$ ip community-list expanded c80 permit 171 ^65000:3_0:245_0:165$ ip community-list expanded c80 permit 172 ^65000:3_0:246_0:166$ ip community-list expanded c80 permit 173 ^65000:3_0:247_0:167$ ip community-list expanded c80 permit 174 ^65000:3_0:248_0:168$ ip community-list expanded c80 permit 175 ^65000:3_0:249_0:169$ ip community-list expanded c80 permit 176 ^65000:3_0:250_0:170$ ip community-list expanded c80 permit 177 ^65000:3_0:251_0:171$ ip community-list expanded c80 permit 178 ^65000:3_0:252_0:172$ ip community-list expanded c80 permit 179 ^65000:3_0:253_0:173$ ip community-list expanded c80 permit 180 ^65000:3_0:254_0:174$ ip community-list expanded c80 permit 181 ^65000:3_0:255_0:175$ ip community-list expanded c80 permit 182 ^65000:3_0:256_0:176$ route-map calculator permit 4475 match community 1_1_79 2_1_80 2_2_40 1_2_78 1_3_77 set community 0:80 route-map calculator permit 4476 match community 2_4_20 1_4_76 2_5_16 1_5_75 1_6_74 set community 0:80 route-map calculator permit 4477 match community 1_7_73 2_8_10 1_8_72 1_9_71 1_10_70 set community 0:80 route-map calculator permit 4478 match community 1_11_69 1_12_68 1_13_67 1_14_66 1_15_65 set community 0:80 route-map calculator permit 4479 match community 1_16_64 1_17_63 1_18_62 1_19_61 1_20_60 set community 0:80 route-map calculator permit 4480 match community 1_21_59 1_22_58 1_23_57 1_24_56 1_25_55 set community 0:80 route-map calculator permit 4481 match community 1_26_54 1_27_53 1_28_52 1_29_51 1_30_50 set community 0:80 route-map calculator permit 4482 match community 1_31_49 1_32_48 1_33_47 1_34_46 1_35_45 set community 0:80 route-map calculator permit 4483 match community 1_36_44 1_37_43 1_38_42 1_39_41 1_40_40 set community 0:80 route-map calculator permit 4484 match community c4_80_1 c3_81_1 c3_82_2 c3_83_3 c3_84_4 set community 0:80 route-map calculator permit 4485 match community c3_85_5 c3_86_6 c3_87_7 c3_88_8 c3_89_9 set community 0:80 route-map calculator permit 4486 match community c3_90_10 c3_91_11 c3_92_12 c3_93_13 c3_94_14 set community 0:80 route-map calculator permit 4487 match community c3_95_15 c3_96_16 c3_97_17 c3_98_18 c3_99_19 set community 0:80 route-map calculator permit 4488 match community c3_100_20 c3_101_21 c3_102_22 c3_103_23 c3_104_24 set community 0:80 route-map calculator permit 4489 match community c3_105_25 c3_106_26 c3_107_27 c3_108_28 c3_109_29 set community 0:80 route-map calculator permit 4490 match community c3_110_30 c3_111_31 c3_112_32 c3_113_33 c3_114_34 set community 0:80 route-map calculator permit 4491 match community c3_115_35 c3_116_36 c3_117_37 c3_118_38 c3_119_39 set community 0:80 route-map calculator permit 4492 match community c3_120_40 c3_121_41 c3_122_42 c3_123_43 c3_124_44 set community 0:80 route-map calculator permit 4493 match community c3_125_45 c3_126_46 c3_127_47 c3_128_48 c3_129_49 set community 0:80 route-map calculator permit 4494 match community c3_130_50 c3_131_51 c3_132_52 c3_133_53 c3_134_54 set community 0:80 route-map calculator permit 4495 match community c3_135_55 c3_136_56 c3_137_57 c3_138_58 c3_139_59 set community 0:80 route-map calculator permit 4496 match community c3_140_60 c3_141_61 c3_142_62 c3_143_63 c3_144_64 set community 0:80 route-map calculator permit 4497 match community c3_145_65 c3_146_66 c3_147_67 c3_148_68 c3_149_69 set community 0:80 route-map calculator permit 4498 match community c3_150_70 c3_151_71 c3_152_72 c3_153_73 c3_154_74 set community 0:80 route-map calculator permit 4499 match community c3_155_75 c3_156_76 c3_157_77 c3_158_78 c3_159_79 set community 0:80 route-map calculator permit 4500 match community c4_160_2 c3_160_80 c4_161_2 c3_161_81 c3_162_82 set community 0:80 route-map calculator permit 4501 match community c3_163_83 c3_164_84 c3_165_85 c3_166_86 c3_167_87 set community 0:80 route-map calculator permit 4502 match community c3_168_88 c3_169_89 c3_170_90 c3_171_91 c3_172_92 set community 0:80 route-map calculator permit 4503 match community c3_173_93 c3_174_94 c3_175_95 c3_176_96 c3_177_97 set community 0:80 route-map calculator permit 4504 match community c3_178_98 c3_179_99 c3_180_100 c3_181_101 c3_182_102 set community 0:80 route-map calculator permit 4505 match community c3_183_103 c3_184_104 c3_185_105 c3_186_106 c3_187_107 set community 0:80 route-map calculator permit 4506 match community c3_188_108 c3_189_109 c3_190_110 c3_191_111 c3_192_112 set community 0:80 route-map calculator permit 4507 match community c3_193_113 c3_194_114 c3_195_115 c3_196_116 c3_197_117 set community 0:80 route-map calculator permit 4508 match community c3_198_118 c3_199_119 c3_200_120 c3_201_121 c3_202_122 set community 0:80 route-map calculator permit 4509 match community c3_203_123 c3_204_124 c3_205_125 c3_206_126 c3_207_127 set community 0:80 route-map calculator permit 4510 match community c3_208_128 c3_209_129 c3_210_130 c3_211_131 c3_212_132 set community 0:80 route-map calculator permit 4511 match community c3_213_133 c3_214_134 c3_215_135 c3_216_136 c3_217_137 set community 0:80 route-map calculator permit 4512 match community c3_218_138 c3_219_139 c3_220_140 c3_221_141 c3_222_142 set community 0:80 route-map calculator permit 4513 match community c3_223_143 c3_224_144 c3_225_145 c3_226_146 c3_227_147 set community 0:80 route-map calculator permit 4514 match community c3_228_148 c3_229_149 c3_230_150 c3_231_151 c3_232_152 set community 0:80 route-map calculator permit 4515 match community c3_233_153 c3_234_154 c3_235_155 c3_236_156 c3_237_157 set community 0:80 route-map calculator permit 4516 match community c3_238_158 c3_239_159 c4_240_3 c3_240_160 c4_241_3 set community 0:80 route-map calculator permit 4517 match community c3_241_161 c4_242_3 c3_242_162 c3_243_163 c3_244_164 set community 0:80 route-map calculator permit 4518 match community c3_245_165 c3_246_166 c3_247_167 c3_248_168 c3_249_169 set community 0:80 route-map calculator permit 4519 match community c3_250_170 c3_251_171 c3_252_172 c3_253_173 c3_254_174 set community 0:80 route-map calculator permit 4520 match community c3_255_175 c3_256_176 set community 0:80 ip community-list standard 2_83_255 permit 65000:2 0:83 0:255 ip community-list standard 2_85_249 permit 65000:2 0:85 0:249 route-map calculator permit 4521 match community 2_83_255 2_85_249 set community 0:21165 ip community-list standard 2_138_188 permit 65000:2 0:138 0:188 ip community-list standard 2_141_184 permit 65000:2 0:141 0:184 route-map calculator permit 4522 match community 2_138_188 2_141_184 set community 0:25944 ip community-list standard 2_205_219 permit 65000:2 0:205 0:219 route-map calculator permit 4523 match community 2_205_219 set community 0:44895 ip community-list standard 2_69_233 permit 65000:2 0:69 0:233 route-map calculator permit 4524 match community 2_69_233 set community 0:16077 ip community-list standard 2_73_143 permit 65000:2 0:73 0:143 route-map calculator permit 4525 match community 2_73_143 set community 0:10439 ip community-list standard 2_63_221 permit 65000:2 0:63 0:221 ip community-list standard 2_91_153 permit 65000:2 0:91 0:153 ip community-list standard 2_117_119 permit 65000:2 0:117 0:119 route-map calculator permit 4526 match community 2_63_221 2_91_153 2_117_119 set community 0:13923 ip community-list standard 2_107_219 permit 65000:2 0:107 0:219 route-map calculator permit 4527 match community 2_107_219 set community 0:23433 ip community-list standard 2_153_242 permit 65000:2 0:153 0:242 ip community-list standard 2_187_198 permit 65000:2 0:187 0:198 route-map calculator permit 4528 match community 2_153_242 2_187_198 set community 0:37026 ip community-list standard 2_163_211 permit 65000:2 0:163 0:211 route-map calculator permit 4529 match community 2_163_211 set community 0:34393 ip community-list standard 2_97_173 permit 65000:2 0:97 0:173 route-map calculator permit 4530 match community 2_97_173 set community 0:16781 ip community-list standard 2_26_196 permit 65000:2 0:26 0:196 ip community-list standard 2_28_182 permit 65000:2 0:28 0:182 ip community-list standard 2_49_104 permit 65000:2 0:49 0:104 ip community-list standard 2_52_98 permit 65000:2 0:52 0:98 ip community-list standard 2_56_91 permit 65000:2 0:56 0:91 route-map calculator permit 4531 match community 2_26_196 2_28_182 2_49_104 2_52_98 2_56_91 set community 0:5096 ip community-list standard 2_193_243 permit 65000:2 0:193 0:243 route-map calculator permit 4532 match community 2_193_243 set community 0:46899 ip community-list standard 2_226_254 permit 65000:2 0:226 0:254 route-map calculator permit 4533 match community 2_226_254 set community 0:57404 ip community-list standard 2_224_245 permit 65000:2 0:224 0:245 route-map calculator permit 4534 match community 2_224_245 set community 0:54880 ip community-list standard 2_57_139 permit 65000:2 0:57 0:139 route-map calculator permit 4535 match community 2_57_139 set community 0:7923 ip community-list standard 2_57_213 permit 65000:2 0:57 0:213 ip community-list standard 2_71_171 permit 65000:2 0:71 0:171 route-map calculator permit 4536 match community 2_57_213 2_71_171 set community 0:12141 ip community-list standard 2_117_240 permit 65000:2 0:117 0:240 ip community-list standard 2_120_234 permit 65000:2 0:120 0:234 ip community-list standard 2_130_216 permit 65000:2 0:130 0:216 ip community-list standard 2_135_208 permit 65000:2 0:135 0:208 ip community-list standard 2_144_195 permit 65000:2 0:144 0:195 ip community-list standard 2_156_180 permit 65000:2 0:156 0:180 route-map calculator permit 4537 match community 2_117_240 2_120_234 2_130_216 2_135_208 2_144_195 set community 0:28080 route-map calculator permit 4538 match community 2_156_180 set community 0:28080 ip community-list standard 2_158_179 permit 65000:2 0:158 0:179 route-map calculator permit 4539 match community 2_158_179 set community 0:28282 ip community-list standard 2_93_248 permit 65000:2 0:93 0:248 ip community-list standard 2_124_186 permit 65000:2 0:124 0:186 route-map calculator permit 4540 match community 2_93_248 2_124_186 set community 0:23064 ip community-list standard 2_93_159 permit 65000:2 0:93 0:159 route-map calculator permit 4541 match community 2_93_159 set community 0:14787 ip community-list standard 2_67_145 permit 65000:2 0:67 0:145 route-map calculator permit 4542 match community 2_67_145 set community 0:9715 ip community-list standard 2_121_175 permit 65000:2 0:121 0:175 route-map calculator permit 4543 match community 2_121_175 set community 0:21175 ip community-list standard 2_28_242 permit 65000:2 0:28 0:242 ip community-list standard 2_44_154 permit 65000:2 0:44 0:154 ip community-list standard 2_56_121 permit 65000:2 0:56 0:121 ip community-list standard 2_77_88 permit 65000:2 0:77 0:88 route-map calculator permit 4544 match community 2_28_242 2_44_154 2_56_121 2_77_88 set community 0:6776 ip community-list standard 2_24_213 permit 65000:2 0:24 0:213 ip community-list standard 2_36_142 permit 65000:2 0:36 0:142 ip community-list standard 2_71_72 permit 65000:2 0:71 0:72 route-map calculator permit 4545 match community 2_24_213 2_36_142 2_71_72 set community 0:5112 ip community-list standard 2_94_229 permit 65000:2 0:94 0:229 route-map calculator permit 4546 match community 2_94_229 set community 0:21526 ip community-list standard 2_42_248 permit 65000:2 0:42 0:248 ip community-list standard 2_48_217 permit 65000:2 0:48 0:217 ip community-list standard 2_56_186 permit 65000:2 0:56 0:186 ip community-list standard 2_62_168 permit 65000:2 0:62 0:168 ip community-list standard 2_84_124 permit 65000:2 0:84 0:124 ip community-list standard 2_93_112 permit 65000:2 0:93 0:112 route-map calculator permit 4547 match community 2_42_248 2_48_217 2_56_186 2_62_168 2_84_124 set community 0:10416 route-map calculator permit 4548 match community 2_93_112 set community 0:10416 ip community-list standard 2_93_236 permit 65000:2 0:93 0:236 ip community-list standard 2_118_186 permit 65000:2 0:118 0:186 ip community-list standard 2_124_177 permit 65000:2 0:124 0:177 route-map calculator permit 4549 match community 2_93_236 2_118_186 2_124_177 set community 0:21948 ip community-list standard 2_111_197 permit 65000:2 0:111 0:197 route-map calculator permit 4550 match community 2_111_197 set community 0:21867 ip community-list standard 2_227_243 permit 65000:2 0:227 0:243 route-map calculator permit 4551 match community 2_227_243 set community 0:55161 ip community-list standard 2_97_202 permit 65000:2 0:97 0:202 ip community-list standard 2_101_194 permit 65000:2 0:101 0:194 route-map calculator permit 4552 match community 2_97_202 2_101_194 set community 0:19594 ip community-list standard 2_169_194 permit 65000:2 0:169 0:194 route-map calculator permit 4553 match community 2_169_194 set community 0:32786 ip community-list standard 2_16_139 permit 65000:2 0:16 0:139 route-map calculator permit 4554 match community 2_16_139 set community 0:2224 ip community-list standard 2_111_207 permit 65000:2 0:111 0:207 route-map calculator permit 4555 match community 2_111_207 set community 0:22977 ip community-list standard 2_235_254 permit 65000:2 0:235 0:254 route-map calculator permit 4556 match community 2_235_254 set community 0:59690 ip community-list standard 2_102_254 permit 65000:2 0:102 0:254 ip community-list standard 2_127_204 permit 65000:2 0:127 0:204 route-map calculator permit 4557 match community 2_102_254 2_127_204 set community 0:25908 ip community-list standard 2_106_167 permit 65000:2 0:106 0:167 route-map calculator permit 4558 match community 2_106_167 set community 0:17702 ip community-list standard 2_11_141 permit 65000:2 0:11 0:141 ip community-list standard 2_33_47 permit 65000:2 0:33 0:47 route-map calculator permit 4559 match community 2_11_141 2_33_47 set community 0:1551 ip community-list standard 2_32_137 permit 65000:2 0:32 0:137 route-map calculator permit 4560 match community 2_32_137 set community 0:4384 ip community-list standard 2_196_217 permit 65000:2 0:196 0:217 route-map calculator permit 4561 match community 2_196_217 set community 0:42532 ip community-list standard 2_8_247 permit 65000:2 0:8 0:247 ip community-list standard 2_13_152 permit 65000:2 0:13 0:152 ip community-list standard 2_19_104 permit 65000:2 0:19 0:104 ip community-list standard 2_26_76 permit 65000:2 0:26 0:76 ip community-list standard 2_38_52 permit 65000:2 0:38 0:52 route-map calculator permit 4562 match community 2_8_247 2_13_152 2_19_104 2_26_76 2_38_52 set community 0:1976 ip community-list standard 2_160_242 permit 65000:2 0:160 0:242 ip community-list standard 2_176_220 permit 65000:2 0:176 0:220 route-map calculator permit 4563 match community 2_160_242 2_176_220 set community 0:38720 ip community-list standard 2_97_204 permit 65000:2 0:97 0:204 ip community-list standard 2_102_194 permit 65000:2 0:102 0:194 route-map calculator permit 4564 match community 2_97_204 2_102_194 set community 0:19788 ip community-list standard 2_12_253 permit 65000:2 0:12 0:253 ip community-list standard 2_22_138 permit 65000:2 0:22 0:138 ip community-list standard 2_23_132 permit 65000:2 0:23 0:132 ip community-list standard 2_33_92 permit 65000:2 0:33 0:92 ip community-list standard 2_44_69 permit 65000:2 0:44 0:69 ip community-list standard 2_46_66 permit 65000:2 0:46 0:66 route-map calculator permit 4565 match community 2_12_253 2_22_138 2_23_132 2_33_92 2_44_69 set community 0:3036 route-map calculator permit 4566 match community 2_46_66 set community 0:3036 ip community-list standard 2_177_183 permit 65000:2 0:177 0:183 route-map calculator permit 4567 match community 2_177_183 set community 0:32391 ip community-list standard 2_4_227 permit 65000:2 0:4 0:227 route-map calculator permit 4568 match community 2_4_227 set community 0:908 ip community-list standard 2_99_179 permit 65000:2 0:99 0:179 route-map calculator permit 4569 match community 2_99_179 set community 0:17721 ip community-list standard 2_92_137 permit 65000:2 0:92 0:137 route-map calculator permit 4570 match community 2_92_137 set community 0:12604 ip community-list standard 2_171_191 permit 65000:2 0:171 0:191 route-map calculator permit 4571 match community 2_171_191 set community 0:32661 ip community-list standard 2_72_179 permit 65000:2 0:72 0:179 route-map calculator permit 4572 match community 2_72_179 set community 0:12888 ip community-list standard 2_195_199 permit 65000:2 0:195 0:199 route-map calculator permit 4573 match community 2_195_199 set community 0:38805 ip community-list standard 2_139_255 permit 65000:2 0:139 0:255 route-map calculator permit 4574 match community 2_139_255 set community 0:35445 ip community-list standard 2_96_242 permit 65000:2 0:96 0:242 ip community-list standard 2_121_192 permit 65000:2 0:121 0:192 ip community-list standard 2_132_176 permit 65000:2 0:132 0:176 route-map calculator permit 4575 match community 2_96_242 2_121_192 2_132_176 set community 0:23232 ip community-list standard 2_16_181 permit 65000:2 0:16 0:181 route-map calculator permit 4576 match community 2_16_181 set community 0:2896 ip community-list standard 2_73_157 permit 65000:2 0:73 0:157 route-map calculator permit 4577 match community 2_73_157 set community 0:11461 ip community-list standard 2_155_206 permit 65000:2 0:155 0:206 route-map calculator permit 4578 match community 2_155_206 set community 0:31930 ip community-list standard 2_84_251 permit 65000:2 0:84 0:251 route-map calculator permit 4579 match community 2_84_251 set community 0:21084 ip community-list standard 2_166_238 permit 65000:2 0:166 0:238 route-map calculator permit 4580 match community 2_166_238 set community 0:39508 ip community-list standard 2_107_195 permit 65000:2 0:107 0:195 route-map calculator permit 4581 match community 2_107_195 set community 0:20865 ip community-list standard 2_30_217 permit 65000:2 0:30 0:217 ip community-list standard 2_31_210 permit 65000:2 0:31 0:210 ip community-list standard 2_35_186 permit 65000:2 0:35 0:186 ip community-list standard 2_42_155 permit 65000:2 0:42 0:155 ip community-list standard 2_62_105 permit 65000:2 0:62 0:105 ip community-list standard 2_70_93 permit 65000:2 0:70 0:93 route-map calculator permit 4582 match community 2_30_217 2_31_210 2_35_186 2_42_155 2_62_105 set community 0:6510 route-map calculator permit 4583 match community 2_70_93 set community 0:6510 ip community-list standard 2_73_155 permit 65000:2 0:73 0:155 route-map calculator permit 4584 match community 2_73_155 set community 0:11315 ip community-list standard 2_23_255 permit 65000:2 0:23 0:255 ip community-list standard 2_51_115 permit 65000:2 0:51 0:115 ip community-list standard 2_69_85 permit 65000:2 0:69 0:85 route-map calculator permit 4585 match community 2_23_255 2_51_115 2_69_85 set community 0:5865 ip community-list standard 2_25_179 permit 65000:2 0:25 0:179 route-map calculator permit 4586 match community 2_25_179 set community 0:4475 ip community-list standard 2_7_188 permit 65000:2 0:7 0:188 ip community-list standard 2_14_94 permit 65000:2 0:14 0:94 ip community-list standard 2_28_47 permit 65000:2 0:28 0:47 route-map calculator permit 4587 match community 2_7_188 2_14_94 2_28_47 set community 0:1316 ip community-list standard 2_37_137 permit 65000:2 0:37 0:137 route-map calculator permit 4588 match community 2_37_137 set community 0:5069 ip community-list standard 2_63_199 permit 65000:2 0:63 0:199 route-map calculator permit 4589 match community 2_63_199 set community 0:12537 ip community-list standard 2_7_226 permit 65000:2 0:7 0:226 ip community-list standard 2_14_113 permit 65000:2 0:14 0:113 route-map calculator permit 4590 match community 2_7_226 2_14_113 set community 0:1582 ip community-list standard 2_121_219 permit 65000:2 0:121 0:219 route-map calculator permit 4591 match community 2_121_219 set community 0:26499 ip community-list standard 2_225_245 permit 65000:2 0:225 0:245 route-map calculator permit 4592 match community 2_225_245 set community 0:55125 ip community-list standard 2_188_203 permit 65000:2 0:188 0:203 route-map calculator permit 4593 match community 2_188_203 set community 0:38164 ip community-list standard 2_70_157 permit 65000:2 0:70 0:157 route-map calculator permit 4594 match community 2_70_157 set community 0:10990 ip community-list standard 2_160_211 permit 65000:2 0:160 0:211 route-map calculator permit 4595 match community 2_160_211 set community 0:33760 ip community-list standard 2_140_251 permit 65000:2 0:140 0:251 route-map calculator permit 4596 match community 2_140_251 set community 0:35140 ip community-list standard 2_95_155 permit 65000:2 0:95 0:155 route-map calculator permit 4597 match community 2_95_155 set community 0:14725 ip community-list standard 2_43_162 permit 65000:2 0:43 0:162 ip community-list standard 2_54_129 permit 65000:2 0:54 0:129 ip community-list standard 2_81_86 permit 65000:2 0:81 0:86 route-map calculator permit 4598 match community 2_43_162 2_54_129 2_81_86 set community 0:6966 ip community-list standard 2_20_151 permit 65000:2 0:20 0:151 route-map calculator permit 4599 match community 2_20_151 set community 0:3020 ip community-list standard 2_117_242 permit 65000:2 0:117 0:242 ip community-list standard 2_121_234 permit 65000:2 0:121 0:234 ip community-list standard 2_143_198 permit 65000:2 0:143 0:198 route-map calculator permit 4600 match community 2_117_242 2_121_234 2_143_198 set community 0:28314 ip community-list standard 2_99_123 permit 65000:2 0:99 0:123 route-map calculator permit 4601 match community 2_99_123 set community 0:12177 ip community-list standard 2_95_230 permit 65000:2 0:95 0:230 ip community-list standard 2_115_190 permit 65000:2 0:115 0:190 route-map calculator permit 4602 match community 2_95_230 2_115_190 set community 0:21850 ip community-list standard 2_42_137 permit 65000:2 0:42 0:137 route-map calculator permit 4603 match community 2_42_137 set community 0:5754 ip community-list standard 2_51_97 permit 65000:2 0:51 0:97 route-map calculator permit 4604 match community 2_51_97 set community 0:4947 ip community-list standard 2_18_201 permit 65000:2 0:18 0:201 ip community-list standard 2_27_134 permit 65000:2 0:27 0:134 ip community-list standard 2_54_67 permit 65000:2 0:54 0:67 route-map calculator permit 4605 match community 2_18_201 2_27_134 2_54_67 set community 0:3618 ip community-list standard 2_27_227 permit 65000:2 0:27 0:227 route-map calculator permit 4606 match community 2_27_227 set community 0:6129 ip community-list standard 2_51_212 permit 65000:2 0:51 0:212 ip community-list standard 2_53_204 permit 65000:2 0:53 0:204 ip community-list standard 2_68_159 permit 65000:2 0:68 0:159 ip community-list standard 2_102_106 permit 65000:2 0:102 0:106 route-map calculator permit 4607 match community 2_51_212 2_53_204 2_68_159 2_102_106 set community 0:10812 ip community-list standard 2_85_220 permit 65000:2 0:85 0:220 ip community-list standard 2_100_187 permit 65000:2 0:100 0:187 ip community-list standard 2_110_170 permit 65000:2 0:110 0:170 route-map calculator permit 4608 match community 2_85_220 2_100_187 2_110_170 set community 0:18700 ip community-list standard 2_63_157 permit 65000:2 0:63 0:157 route-map calculator permit 4609 match community 2_63_157 set community 0:9891 ip community-list standard 2_29_99 permit 65000:2 0:29 0:99 ip community-list standard 2_33_87 permit 65000:2 0:33 0:87 route-map calculator permit 4610 match community 2_29_99 2_33_87 set community 0:2871 ip community-list standard 2_44_221 permit 65000:2 0:44 0:221 ip community-list standard 2_52_187 permit 65000:2 0:52 0:187 ip community-list standard 2_68_143 permit 65000:2 0:68 0:143 route-map calculator permit 4611 match community 2_44_221 2_52_187 2_68_143 set community 0:9724 ip community-list standard 2_16_131 permit 65000:2 0:16 0:131 route-map calculator permit 4612 match community 2_16_131 set community 0:2096 ip community-list standard 2_181_249 permit 65000:2 0:181 0:249 route-map calculator permit 4613 match community 2_181_249 set community 0:45069 ip community-list standard 2_228_232 permit 65000:2 0:228 0:232 route-map calculator permit 4614 match community 2_228_232 set community 0:52896 ip community-list standard 2_74_173 permit 65000:2 0:74 0:173 route-map calculator permit 4615 match community 2_74_173 set community 0:12802 ip community-list standard 2_71_172 permit 65000:2 0:71 0:172 ip community-list standard 2_86_142 permit 65000:2 0:86 0:142 route-map calculator permit 4616 match community 2_71_172 2_86_142 set community 0:12212 ip community-list standard 1_97_256 permit 65000:1 0:97 0:256 ip community-list standard 1_98_255 permit 65000:1 0:98 0:255 ip community-list standard 1_99_254 permit 65000:1 0:99 0:254 ip community-list standard 1_100_253 permit 65000:1 0:100 0:253 ip community-list standard 1_101_252 permit 65000:1 0:101 0:252 ip community-list standard 1_102_251 permit 65000:1 0:102 0:251 ip community-list standard 1_103_250 permit 65000:1 0:103 0:250 ip community-list standard 1_104_249 permit 65000:1 0:104 0:249 ip community-list standard 1_105_248 permit 65000:1 0:105 0:248 ip community-list standard 1_106_247 permit 65000:1 0:106 0:247 ip community-list standard 1_107_246 permit 65000:1 0:107 0:246 ip community-list standard 1_108_245 permit 65000:1 0:108 0:245 ip community-list standard 1_109_244 permit 65000:1 0:109 0:244 ip community-list standard 1_110_243 permit 65000:1 0:110 0:243 ip community-list standard 1_111_242 permit 65000:1 0:111 0:242 ip community-list standard 1_112_241 permit 65000:1 0:112 0:241 ip community-list standard 1_113_240 permit 65000:1 0:113 0:240 ip community-list standard 1_114_239 permit 65000:1 0:114 0:239 ip community-list standard 1_115_238 permit 65000:1 0:115 0:238 ip community-list standard 1_116_237 permit 65000:1 0:116 0:237 ip community-list standard 1_117_236 permit 65000:1 0:117 0:236 ip community-list standard 1_118_235 permit 65000:1 0:118 0:235 ip community-list standard 1_119_234 permit 65000:1 0:119 0:234 ip community-list standard 1_120_233 permit 65000:1 0:120 0:233 ip community-list standard 1_121_232 permit 65000:1 0:121 0:232 ip community-list standard 1_122_231 permit 65000:1 0:122 0:231 ip community-list standard 1_123_230 permit 65000:1 0:123 0:230 ip community-list standard 1_124_229 permit 65000:1 0:124 0:229 ip community-list standard 1_125_228 permit 65000:1 0:125 0:228 ip community-list standard 1_126_227 permit 65000:1 0:126 0:227 ip community-list standard 1_127_226 permit 65000:1 0:127 0:226 ip community-list standard 1_128_225 permit 65000:1 0:128 0:225 ip community-list standard 1_129_224 permit 65000:1 0:129 0:224 ip community-list standard 1_130_223 permit 65000:1 0:130 0:223 ip community-list standard 1_131_222 permit 65000:1 0:131 0:222 ip community-list standard 1_132_221 permit 65000:1 0:132 0:221 ip community-list standard 1_133_220 permit 65000:1 0:133 0:220 ip community-list standard 1_134_219 permit 65000:1 0:134 0:219 ip community-list standard 1_135_218 permit 65000:1 0:135 0:218 ip community-list standard 1_136_217 permit 65000:1 0:136 0:217 ip community-list standard 1_137_216 permit 65000:1 0:137 0:216 ip community-list standard 1_138_215 permit 65000:1 0:138 0:215 ip community-list standard 1_139_214 permit 65000:1 0:139 0:214 ip community-list standard 1_140_213 permit 65000:1 0:140 0:213 ip community-list standard 1_141_212 permit 65000:1 0:141 0:212 ip community-list standard 1_142_211 permit 65000:1 0:142 0:211 ip community-list standard 1_143_210 permit 65000:1 0:143 0:210 ip community-list standard 1_144_209 permit 65000:1 0:144 0:209 ip community-list standard 1_145_208 permit 65000:1 0:145 0:208 ip community-list standard 1_146_207 permit 65000:1 0:146 0:207 ip community-list standard 1_147_206 permit 65000:1 0:147 0:206 ip community-list standard 1_148_205 permit 65000:1 0:148 0:205 ip community-list standard 1_149_204 permit 65000:1 0:149 0:204 ip community-list standard 1_150_203 permit 65000:1 0:150 0:203 ip community-list standard 1_151_202 permit 65000:1 0:151 0:202 ip community-list standard 1_152_201 permit 65000:1 0:152 0:201 ip community-list standard 1_153_200 permit 65000:1 0:153 0:200 ip community-list standard 1_154_199 permit 65000:1 0:154 0:199 ip community-list standard 1_155_198 permit 65000:1 0:155 0:198 ip community-list standard 1_156_197 permit 65000:1 0:156 0:197 ip community-list standard 1_157_196 permit 65000:1 0:157 0:196 ip community-list standard 1_158_195 permit 65000:1 0:158 0:195 ip community-list standard 1_159_194 permit 65000:1 0:159 0:194 ip community-list standard 1_160_193 permit 65000:1 0:160 0:193 ip community-list standard 1_161_192 permit 65000:1 0:161 0:192 ip community-list standard 1_162_191 permit 65000:1 0:162 0:191 ip community-list standard 1_163_190 permit 65000:1 0:163 0:190 ip community-list standard 1_164_189 permit 65000:1 0:164 0:189 ip community-list standard 1_165_188 permit 65000:1 0:165 0:188 ip community-list standard 1_166_187 permit 65000:1 0:166 0:187 ip community-list standard 1_167_186 permit 65000:1 0:167 0:186 ip community-list standard 1_168_185 permit 65000:1 0:168 0:185 ip community-list standard 1_169_184 permit 65000:1 0:169 0:184 ip community-list standard 1_170_183 permit 65000:1 0:170 0:183 ip community-list standard 1_171_182 permit 65000:1 0:171 0:182 ip community-list standard 1_172_181 permit 65000:1 0:172 0:181 ip community-list standard 1_173_180 permit 65000:1 0:173 0:180 ip community-list standard 1_174_179 permit 65000:1 0:174 0:179 ip community-list standard 1_175_178 permit 65000:1 0:175 0:178 ip community-list standard 1_176_177 permit 65000:1 0:176 0:177 route-map calculator permit 4617 match community 1_97_256 1_98_255 1_99_254 1_100_253 1_101_252 set community 0:353 route-map calculator permit 4618 match community 1_102_251 1_103_250 1_104_249 1_105_248 1_106_247 set community 0:353 route-map calculator permit 4619 match community 1_107_246 1_108_245 1_109_244 1_110_243 1_111_242 set community 0:353 route-map calculator permit 4620 match community 1_112_241 1_113_240 1_114_239 1_115_238 1_116_237 set community 0:353 route-map calculator permit 4621 match community 1_117_236 1_118_235 1_119_234 1_120_233 1_121_232 set community 0:353 route-map calculator permit 4622 match community 1_122_231 1_123_230 1_124_229 1_125_228 1_126_227 set community 0:353 route-map calculator permit 4623 match community 1_127_226 1_128_225 1_129_224 1_130_223 1_131_222 set community 0:353 route-map calculator permit 4624 match community 1_132_221 1_133_220 1_134_219 1_135_218 1_136_217 set community 0:353 route-map calculator permit 4625 match community 1_137_216 1_138_215 1_139_214 1_140_213 1_141_212 set community 0:353 route-map calculator permit 4626 match community 1_142_211 1_143_210 1_144_209 1_145_208 1_146_207 set community 0:353 route-map calculator permit 4627 match community 1_147_206 1_148_205 1_149_204 1_150_203 1_151_202 set community 0:353 route-map calculator permit 4628 match community 1_152_201 1_153_200 1_154_199 1_155_198 1_156_197 set community 0:353 route-map calculator permit 4629 match community 1_157_196 1_158_195 1_159_194 1_160_193 1_161_192 set community 0:353 route-map calculator permit 4630 match community 1_162_191 1_163_190 1_164_189 1_165_188 1_166_187 set community 0:353 route-map calculator permit 4631 match community 1_167_186 1_168_185 1_169_184 1_170_183 1_171_182 set community 0:353 route-map calculator permit 4632 match community 1_172_181 1_173_180 1_174_179 1_175_178 1_176_177 set community 0:353 ip community-list standard 2_82_229 permit 65000:2 0:82 0:229 route-map calculator permit 4633 match community 2_82_229 set community 0:18778 ip community-list standard 2_99_206 permit 65000:2 0:99 0:206 ip community-list standard 2_103_198 permit 65000:2 0:103 0:198 route-map calculator permit 4634 match community 2_99_206 2_103_198 set community 0:20394 ip community-list standard 2_216_253 permit 65000:2 0:216 0:253 route-map calculator permit 4635 match community 2_216_253 set community 0:54648 ip community-list standard 2_151_154 permit 65000:2 0:151 0:154 route-map calculator permit 4636 match community 2_151_154 set community 0:23254 ip community-list standard 2_67_235 permit 65000:2 0:67 0:235 route-map calculator permit 4637 match community 2_67_235 set community 0:15745 ip community-list standard 2_175_234 permit 65000:2 0:175 0:234 ip community-list standard 2_182_225 permit 65000:2 0:182 0:225 ip community-list standard 2_195_210 permit 65000:2 0:195 0:210 route-map calculator permit 4638 match community 2_175_234 2_182_225 2_195_210 set community 0:40950 ip community-list standard 2_25_155 permit 65000:2 0:25 0:155 ip community-list standard 2_31_125 permit 65000:2 0:31 0:125 route-map calculator permit 4639 match community 2_25_155 2_31_125 set community 0:3875 ip community-list standard 2_15_113 permit 65000:2 0:15 0:113 route-map calculator permit 4640 match community 2_15_113 set community 0:1695 ip community-list standard 2_23_204 permit 65000:2 0:23 0:204 ip community-list standard 2_34_138 permit 65000:2 0:34 0:138 ip community-list standard 2_46_102 permit 65000:2 0:46 0:102 ip community-list standard 2_51_92 permit 65000:2 0:51 0:92 ip community-list standard 2_68_69 permit 65000:2 0:68 0:69 route-map calculator permit 4641 match community 2_23_204 2_34_138 2_46_102 2_51_92 2_68_69 set community 0:4692 ip community-list standard 2_202_221 permit 65000:2 0:202 0:221 route-map calculator permit 4642 match community 2_202_221 set community 0:44642 ip community-list standard 2_129_238 permit 65000:2 0:129 0:238 route-map calculator permit 4643 match community 2_129_238 set community 0:30702 ip community-list standard 2_67_140 permit 65000:2 0:67 0:140 ip community-list standard 2_70_134 permit 65000:2 0:70 0:134 route-map calculator permit 4644 match community 2_67_140 2_70_134 set community 0:9380 ip community-list standard 2_44_158 permit 65000:2 0:44 0:158 ip community-list standard 2_79_88 permit 65000:2 0:79 0:88 route-map calculator permit 4645 match community 2_44_158 2_79_88 set community 0:6952 ip community-list standard 2_49_239 permit 65000:2 0:49 0:239 route-map calculator permit 4646 match community 2_49_239 set community 0:11711 ip community-list standard 2_138_169 permit 65000:2 0:138 0:169 route-map calculator permit 4647 match community 2_138_169 set community 0:23322 ip community-list standard 2_195_205 permit 65000:2 0:195 0:205 route-map calculator permit 4648 match community 2_195_205 set community 0:39975 ip community-list standard 2_206_234 permit 65000:2 0:206 0:234 route-map calculator permit 4649 match community 2_206_234 set community 0:48204 ip community-list standard 2_22_228 permit 65000:2 0:22 0:228 ip community-list standard 2_24_209 permit 65000:2 0:24 0:209 ip community-list standard 2_33_152 permit 65000:2 0:33 0:152 ip community-list standard 2_38_132 permit 65000:2 0:38 0:132 ip community-list standard 2_44_114 permit 65000:2 0:44 0:114 ip community-list standard 2_57_88 permit 65000:2 0:57 0:88 ip community-list standard 2_66_76 permit 65000:2 0:66 0:76 route-map calculator permit 4650 match community 2_22_228 2_24_209 2_33_152 2_38_132 2_44_114 set community 0:5016 route-map calculator permit 4651 match community 2_57_88 2_66_76 set community 0:5016 ip community-list standard 2_46_193 permit 65000:2 0:46 0:193 route-map calculator permit 4652 match community 2_46_193 set community 0:8878 ip community-list standard 2_69_245 permit 65000:2 0:69 0:245 ip community-list standard 2_105_161 permit 65000:2 0:105 0:161 ip community-list standard 2_115_147 permit 65000:2 0:115 0:147 route-map calculator permit 4653 match community 2_69_245 2_105_161 2_115_147 set community 0:16905 ip community-list standard 2_177_250 permit 65000:2 0:177 0:250 route-map calculator permit 4654 match community 2_177_250 set community 0:44250 ip community-list standard 2_60_218 permit 65000:2 0:60 0:218 ip community-list standard 2_109_120 permit 65000:2 0:109 0:120 route-map calculator permit 4655 match community 2_60_218 2_109_120 set community 0:13080 ip community-list standard 2_199_199 permit 65000:2 0:199 0:199 route-map calculator permit 4656 match community 2_199_199 set community 0:39601 ip community-list standard 2_209_214 permit 65000:2 0:209 0:214 route-map calculator permit 4657 match community 2_209_214 set community 0:44726 ip community-list standard 2_165_222 permit 65000:2 0:165 0:222 ip community-list standard 2_185_198 permit 65000:2 0:185 0:198 route-map calculator permit 4658 match community 2_165_222 2_185_198 set community 0:36630 ip community-list standard 2_16_158 permit 65000:2 0:16 0:158 ip community-list standard 2_32_79 permit 65000:2 0:32 0:79 route-map calculator permit 4659 match community 2_16_158 2_32_79 set community 0:2528 ip community-list standard 2_142_216 permit 65000:2 0:142 0:216 ip community-list standard 2_144_213 permit 65000:2 0:144 0:213 route-map calculator permit 4660 match community 2_142_216 2_144_213 set community 0:30672 ip community-list standard 2_5_212 permit 65000:2 0:5 0:212 ip community-list standard 2_10_106 permit 65000:2 0:10 0:106 ip community-list standard 2_20_53 permit 65000:2 0:20 0:53 route-map calculator permit 4661 match community 2_5_212 2_10_106 2_20_53 set community 0:1060 ip community-list standard 2_8_216 permit 65000:2 0:8 0:216 ip community-list standard 2_9_192 permit 65000:2 0:9 0:192 ip community-list standard 2_12_144 permit 65000:2 0:12 0:144 ip community-list standard 2_16_108 permit 65000:2 0:16 0:108 ip community-list standard 2_18_96 permit 65000:2 0:18 0:96 ip community-list standard 2_24_72 permit 65000:2 0:24 0:72 ip community-list standard 2_27_64 permit 65000:2 0:27 0:64 ip community-list standard 2_32_54 permit 65000:2 0:32 0:54 ip community-list standard 2_36_48 permit 65000:2 0:36 0:48 route-map calculator permit 4662 match community 2_8_216 2_9_192 2_12_144 2_16_108 2_18_96 set community 0:1728 route-map calculator permit 4663 match community 2_24_72 2_27_64 2_32_54 2_36_48 set community 0:1728 ip community-list standard 2_35_248 permit 65000:2 0:35 0:248 ip community-list standard 2_40_217 permit 65000:2 0:40 0:217 ip community-list standard 2_56_155 permit 65000:2 0:56 0:155 ip community-list standard 2_62_140 permit 65000:2 0:62 0:140 ip community-list standard 2_70_124 permit 65000:2 0:70 0:124 route-map calculator permit 4664 match community 2_35_248 2_40_217 2_56_155 2_62_140 2_70_124 set community 0:8680 ip community-list standard 2_172_220 permit 65000:2 0:172 0:220 ip community-list standard 2_176_215 permit 65000:2 0:176 0:215 route-map calculator permit 4665 match community 2_172_220 2_176_215 set community 0:37840 ip community-list standard 2_162_197 permit 65000:2 0:162 0:197 route-map calculator permit 4666 match community 2_162_197 set community 0:31914 ip community-list standard 2_199_208 permit 65000:2 0:199 0:208 route-map calculator permit 4667 match community 2_199_208 set community 0:41392 ip community-list standard 2_20_229 permit 65000:2 0:20 0:229 route-map calculator permit 4668 match community 2_20_229 set community 0:4580 ip community-list standard 2_32_181 permit 65000:2 0:32 0:181 route-map calculator permit 4669 match community 2_32_181 set community 0:5792 ip community-list standard 2_133_249 permit 65000:2 0:133 0:249 route-map calculator permit 4670 match community 2_133_249 set community 0:33117 ip community-list standard 2_195_201 permit 65000:2 0:195 0:201 route-map calculator permit 4671 match community 2_195_201 set community 0:39195 ip community-list standard 2_6_193 permit 65000:2 0:6 0:193 route-map calculator permit 4672 match community 2_6_193 set community 0:1158 ip community-list standard 2_169_217 permit 65000:2 0:169 0:217 route-map calculator permit 4673 match community 2_169_217 set community 0:36673 ip community-list standard 2_118_139 permit 65000:2 0:118 0:139 route-map calculator permit 4674 match community 2_118_139 set community 0:16402 ip community-list standard 1_1_199 permit 65000:1 0:1 0:199 ip community-list standard 2_1_200 permit 65000:2 0:1 0:200 ip community-list standard 2_2_100 permit 65000:2 0:2 0:100 ip community-list standard 1_2_198 permit 65000:1 0:2 0:198 ip community-list standard 1_3_197 permit 65000:1 0:3 0:197 ip community-list standard 2_4_50 permit 65000:2 0:4 0:50 ip community-list standard 1_4_196 permit 65000:1 0:4 0:196 ip community-list standard 2_5_40 permit 65000:2 0:5 0:40 ip community-list standard 1_5_195 permit 65000:1 0:5 0:195 ip community-list standard 1_6_194 permit 65000:1 0:6 0:194 ip community-list standard 1_7_193 permit 65000:1 0:7 0:193 ip community-list standard 2_8_25 permit 65000:2 0:8 0:25 ip community-list standard 1_8_192 permit 65000:1 0:8 0:192 ip community-list standard 1_9_191 permit 65000:1 0:9 0:191 ip community-list standard 2_10_20 permit 65000:2 0:10 0:20 ip community-list standard 1_10_190 permit 65000:1 0:10 0:190 ip community-list standard 1_11_189 permit 65000:1 0:11 0:189 ip community-list standard 1_12_188 permit 65000:1 0:12 0:188 ip community-list standard 1_13_187 permit 65000:1 0:13 0:187 ip community-list standard 1_14_186 permit 65000:1 0:14 0:186 ip community-list standard 1_15_185 permit 65000:1 0:15 0:185 ip community-list standard 1_16_184 permit 65000:1 0:16 0:184 ip community-list standard 1_17_183 permit 65000:1 0:17 0:183 ip community-list standard 1_18_182 permit 65000:1 0:18 0:182 ip community-list standard 1_19_181 permit 65000:1 0:19 0:181 ip community-list standard 1_20_180 permit 65000:1 0:20 0:180 ip community-list standard 1_21_179 permit 65000:1 0:21 0:179 ip community-list standard 1_22_178 permit 65000:1 0:22 0:178 ip community-list standard 1_23_177 permit 65000:1 0:23 0:177 ip community-list standard 1_24_176 permit 65000:1 0:24 0:176 ip community-list standard 1_25_175 permit 65000:1 0:25 0:175 ip community-list standard 1_26_174 permit 65000:1 0:26 0:174 ip community-list standard 1_27_173 permit 65000:1 0:27 0:173 ip community-list standard 1_28_172 permit 65000:1 0:28 0:172 ip community-list standard 1_29_171 permit 65000:1 0:29 0:171 ip community-list standard 1_30_170 permit 65000:1 0:30 0:170 ip community-list standard 1_31_169 permit 65000:1 0:31 0:169 ip community-list standard 1_32_168 permit 65000:1 0:32 0:168 ip community-list standard 1_33_167 permit 65000:1 0:33 0:167 ip community-list standard 1_34_166 permit 65000:1 0:34 0:166 ip community-list standard 1_35_165 permit 65000:1 0:35 0:165 ip community-list standard 1_36_164 permit 65000:1 0:36 0:164 ip community-list standard 1_37_163 permit 65000:1 0:37 0:163 ip community-list standard 1_38_162 permit 65000:1 0:38 0:162 ip community-list standard 1_39_161 permit 65000:1 0:39 0:161 ip community-list standard 1_40_160 permit 65000:1 0:40 0:160 ip community-list standard 1_41_159 permit 65000:1 0:41 0:159 ip community-list standard 1_42_158 permit 65000:1 0:42 0:158 ip community-list standard 1_43_157 permit 65000:1 0:43 0:157 ip community-list standard 1_44_156 permit 65000:1 0:44 0:156 ip community-list standard 1_45_155 permit 65000:1 0:45 0:155 ip community-list standard 1_46_154 permit 65000:1 0:46 0:154 ip community-list standard 1_47_153 permit 65000:1 0:47 0:153 ip community-list standard 1_48_152 permit 65000:1 0:48 0:152 ip community-list standard 1_49_151 permit 65000:1 0:49 0:151 ip community-list standard 1_50_150 permit 65000:1 0:50 0:150 ip community-list standard 1_51_149 permit 65000:1 0:51 0:149 ip community-list standard 1_52_148 permit 65000:1 0:52 0:148 ip community-list standard 1_53_147 permit 65000:1 0:53 0:147 ip community-list standard 1_54_146 permit 65000:1 0:54 0:146 ip community-list standard 1_55_145 permit 65000:1 0:55 0:145 ip community-list standard 1_56_144 permit 65000:1 0:56 0:144 ip community-list standard 1_57_143 permit 65000:1 0:57 0:143 ip community-list standard 1_58_142 permit 65000:1 0:58 0:142 ip community-list standard 1_59_141 permit 65000:1 0:59 0:141 ip community-list standard 1_60_140 permit 65000:1 0:60 0:140 ip community-list standard 1_61_139 permit 65000:1 0:61 0:139 ip community-list standard 1_62_138 permit 65000:1 0:62 0:138 ip community-list standard 1_63_137 permit 65000:1 0:63 0:137 ip community-list standard 1_64_136 permit 65000:1 0:64 0:136 ip community-list standard 1_65_135 permit 65000:1 0:65 0:135 ip community-list standard 1_66_134 permit 65000:1 0:66 0:134 ip community-list standard 1_67_133 permit 65000:1 0:67 0:133 ip community-list standard 1_68_132 permit 65000:1 0:68 0:132 ip community-list standard 1_69_131 permit 65000:1 0:69 0:131 ip community-list standard 1_70_130 permit 65000:1 0:70 0:130 ip community-list standard 1_71_129 permit 65000:1 0:71 0:129 ip community-list standard 1_72_128 permit 65000:1 0:72 0:128 ip community-list standard 1_73_127 permit 65000:1 0:73 0:127 ip community-list standard 1_74_126 permit 65000:1 0:74 0:126 ip community-list standard 1_75_125 permit 65000:1 0:75 0:125 ip community-list standard 1_76_124 permit 65000:1 0:76 0:124 ip community-list standard 1_77_123 permit 65000:1 0:77 0:123 ip community-list standard 1_78_122 permit 65000:1 0:78 0:122 ip community-list standard 1_79_121 permit 65000:1 0:79 0:121 ip community-list standard 1_80_120 permit 65000:1 0:80 0:120 ip community-list standard 1_81_119 permit 65000:1 0:81 0:119 ip community-list standard 1_82_118 permit 65000:1 0:82 0:118 ip community-list standard 1_83_117 permit 65000:1 0:83 0:117 ip community-list standard 1_84_116 permit 65000:1 0:84 0:116 ip community-list standard 1_85_115 permit 65000:1 0:85 0:115 ip community-list standard 1_86_114 permit 65000:1 0:86 0:114 ip community-list standard 1_87_113 permit 65000:1 0:87 0:113 ip community-list standard 1_88_112 permit 65000:1 0:88 0:112 ip community-list standard 1_89_111 permit 65000:1 0:89 0:111 ip community-list standard 1_90_110 permit 65000:1 0:90 0:110 ip community-list standard 1_91_109 permit 65000:1 0:91 0:109 ip community-list standard 1_92_108 permit 65000:1 0:92 0:108 ip community-list standard 1_93_107 permit 65000:1 0:93 0:107 ip community-list standard 1_94_106 permit 65000:1 0:94 0:106 ip community-list standard 1_95_105 permit 65000:1 0:95 0:105 ip community-list standard 1_96_104 permit 65000:1 0:96 0:104 ip community-list standard 1_97_103 permit 65000:1 0:97 0:103 ip community-list standard 1_98_102 permit 65000:1 0:98 0:102 ip community-list standard 1_99_101 permit 65000:1 0:99 0:101 ip community-list standard 1_100_100 permit 65000:1 0:100 0:100 ip community-list expanded c200 permit 1 ^65000:4_0:200_0:1$ ip community-list expanded c200 permit 2 ^65000:3_0:201_0:1$ ip community-list expanded c200 permit 3 ^65000:3_0:202_0:2$ ip community-list expanded c200 permit 4 ^65000:3_0:203_0:3$ ip community-list expanded c200 permit 5 ^65000:3_0:204_0:4$ ip community-list expanded c200 permit 6 ^65000:3_0:205_0:5$ ip community-list expanded c200 permit 7 ^65000:3_0:206_0:6$ ip community-list expanded c200 permit 8 ^65000:3_0:207_0:7$ ip community-list expanded c200 permit 9 ^65000:3_0:208_0:8$ ip community-list expanded c200 permit 10 ^65000:3_0:209_0:9$ ip community-list expanded c200 permit 11 ^65000:3_0:210_0:10$ ip community-list expanded c200 permit 12 ^65000:3_0:211_0:11$ ip community-list expanded c200 permit 13 ^65000:3_0:212_0:12$ ip community-list expanded c200 permit 14 ^65000:3_0:213_0:13$ ip community-list expanded c200 permit 15 ^65000:3_0:214_0:14$ ip community-list expanded c200 permit 16 ^65000:3_0:215_0:15$ ip community-list expanded c200 permit 17 ^65000:3_0:216_0:16$ ip community-list expanded c200 permit 18 ^65000:3_0:217_0:17$ ip community-list expanded c200 permit 19 ^65000:3_0:218_0:18$ ip community-list expanded c200 permit 20 ^65000:3_0:219_0:19$ ip community-list expanded c200 permit 21 ^65000:3_0:220_0:20$ ip community-list expanded c200 permit 22 ^65000:3_0:221_0:21$ ip community-list expanded c200 permit 23 ^65000:3_0:222_0:22$ ip community-list expanded c200 permit 24 ^65000:3_0:223_0:23$ ip community-list expanded c200 permit 25 ^65000:3_0:224_0:24$ ip community-list expanded c200 permit 26 ^65000:3_0:225_0:25$ ip community-list expanded c200 permit 27 ^65000:3_0:226_0:26$ ip community-list expanded c200 permit 28 ^65000:3_0:227_0:27$ ip community-list expanded c200 permit 29 ^65000:3_0:228_0:28$ ip community-list expanded c200 permit 30 ^65000:3_0:229_0:29$ ip community-list expanded c200 permit 31 ^65000:3_0:230_0:30$ ip community-list expanded c200 permit 32 ^65000:3_0:231_0:31$ ip community-list expanded c200 permit 33 ^65000:3_0:232_0:32$ ip community-list expanded c200 permit 34 ^65000:3_0:233_0:33$ ip community-list expanded c200 permit 35 ^65000:3_0:234_0:34$ ip community-list expanded c200 permit 36 ^65000:3_0:235_0:35$ ip community-list expanded c200 permit 37 ^65000:3_0:236_0:36$ ip community-list expanded c200 permit 38 ^65000:3_0:237_0:37$ ip community-list expanded c200 permit 39 ^65000:3_0:238_0:38$ ip community-list expanded c200 permit 40 ^65000:3_0:239_0:39$ ip community-list expanded c200 permit 41 ^65000:3_0:240_0:40$ ip community-list expanded c200 permit 42 ^65000:3_0:241_0:41$ ip community-list expanded c200 permit 43 ^65000:3_0:242_0:42$ ip community-list expanded c200 permit 44 ^65000:3_0:243_0:43$ ip community-list expanded c200 permit 45 ^65000:3_0:244_0:44$ ip community-list expanded c200 permit 46 ^65000:3_0:245_0:45$ ip community-list expanded c200 permit 47 ^65000:3_0:246_0:46$ ip community-list expanded c200 permit 48 ^65000:3_0:247_0:47$ ip community-list expanded c200 permit 49 ^65000:3_0:248_0:48$ ip community-list expanded c200 permit 50 ^65000:3_0:249_0:49$ ip community-list expanded c200 permit 51 ^65000:3_0:250_0:50$ ip community-list expanded c200 permit 52 ^65000:3_0:251_0:51$ ip community-list expanded c200 permit 53 ^65000:3_0:252_0:52$ ip community-list expanded c200 permit 54 ^65000:3_0:253_0:53$ ip community-list expanded c200 permit 55 ^65000:3_0:254_0:54$ ip community-list expanded c200 permit 56 ^65000:3_0:255_0:55$ ip community-list expanded c200 permit 57 ^65000:3_0:256_0:56$ route-map calculator permit 4675 match community 1_1_199 2_1_200 2_2_100 1_2_198 1_3_197 set community 0:200 route-map calculator permit 4676 match community 2_4_50 1_4_196 2_5_40 1_5_195 1_6_194 set community 0:200 route-map calculator permit 4677 match community 1_7_193 2_8_25 1_8_192 1_9_191 2_10_20 set community 0:200 route-map calculator permit 4678 match community 1_10_190 1_11_189 1_12_188 1_13_187 1_14_186 set community 0:200 route-map calculator permit 4679 match community 1_15_185 1_16_184 1_17_183 1_18_182 1_19_181 set community 0:200 route-map calculator permit 4680 match community 1_20_180 1_21_179 1_22_178 1_23_177 1_24_176 set community 0:200 route-map calculator permit 4681 match community 1_25_175 1_26_174 1_27_173 1_28_172 1_29_171 set community 0:200 route-map calculator permit 4682 match community 1_30_170 1_31_169 1_32_168 1_33_167 1_34_166 set community 0:200 route-map calculator permit 4683 match community 1_35_165 1_36_164 1_37_163 1_38_162 1_39_161 set community 0:200 route-map calculator permit 4684 match community 1_40_160 1_41_159 1_42_158 1_43_157 1_44_156 set community 0:200 route-map calculator permit 4685 match community 1_45_155 1_46_154 1_47_153 1_48_152 1_49_151 set community 0:200 route-map calculator permit 4686 match community 1_50_150 1_51_149 1_52_148 1_53_147 1_54_146 set community 0:200 route-map calculator permit 4687 match community 1_55_145 1_56_144 1_57_143 1_58_142 1_59_141 set community 0:200 route-map calculator permit 4688 match community 1_60_140 1_61_139 1_62_138 1_63_137 1_64_136 set community 0:200 route-map calculator permit 4689 match community 1_65_135 1_66_134 1_67_133 1_68_132 1_69_131 set community 0:200 route-map calculator permit 4690 match community 1_70_130 1_71_129 1_72_128 1_73_127 1_74_126 set community 0:200 route-map calculator permit 4691 match community 1_75_125 1_76_124 1_77_123 1_78_122 1_79_121 set community 0:200 route-map calculator permit 4692 match community 1_80_120 1_81_119 1_82_118 1_83_117 1_84_116 set community 0:200 route-map calculator permit 4693 match community 1_85_115 1_86_114 1_87_113 1_88_112 1_89_111 set community 0:200 route-map calculator permit 4694 match community 1_90_110 1_91_109 1_92_108 1_93_107 1_94_106 set community 0:200 route-map calculator permit 4695 match community 1_95_105 1_96_104 1_97_103 1_98_102 1_99_101 set community 0:200 route-map calculator permit 4696 match community 1_100_100 c4_200_1 c3_201_1 c3_202_2 c3_203_3 set community 0:200 route-map calculator permit 4697 match community c3_204_4 c3_205_5 c3_206_6 c3_207_7 c3_208_8 set community 0:200 route-map calculator permit 4698 match community c3_209_9 c3_210_10 c3_211_11 c3_212_12 c3_213_13 set community 0:200 route-map calculator permit 4699 match community c3_214_14 c3_215_15 c3_216_16 c3_217_17 c3_218_18 set community 0:200 route-map calculator permit 4700 match community c3_219_19 c3_220_20 c3_221_21 c3_222_22 c3_223_23 set community 0:200 route-map calculator permit 4701 match community c3_224_24 c3_225_25 c3_226_26 c3_227_27 c3_228_28 set community 0:200 route-map calculator permit 4702 match community c3_229_29 c3_230_30 c3_231_31 c3_232_32 c3_233_33 set community 0:200 route-map calculator permit 4703 match community c3_234_34 c3_235_35 c3_236_36 c3_237_37 c3_238_38 set community 0:200 route-map calculator permit 4704 match community c3_239_39 c3_240_40 c3_241_41 c3_242_42 c3_243_43 set community 0:200 route-map calculator permit 4705 match community c3_244_44 c3_245_45 c3_246_46 c3_247_47 c3_248_48 set community 0:200 route-map calculator permit 4706 match community c3_249_49 c3_250_50 c3_251_51 c3_252_52 c3_253_53 set community 0:200 route-map calculator permit 4707 match community c3_254_54 c3_255_55 c3_256_56 set community 0:200 ip community-list standard 2_26_233 permit 65000:2 0:26 0:233 route-map calculator permit 4708 match community 2_26_233 set community 0:6058 ip community-list standard 2_85_214 permit 65000:2 0:85 0:214 ip community-list standard 2_107_170 permit 65000:2 0:107 0:170 route-map calculator permit 4709 match community 2_85_214 2_107_170 set community 0:18190 ip community-list standard 2_67_187 permit 65000:2 0:67 0:187 route-map calculator permit 4710 match community 2_67_187 set community 0:12529 ip community-list standard 2_58_232 permit 65000:2 0:58 0:232 ip community-list standard 2_116_116 permit 65000:2 0:116 0:116 route-map calculator permit 4711 match community 2_58_232 2_116_116 set community 0:13456 ip community-list standard 2_137_254 permit 65000:2 0:137 0:254 route-map calculator permit 4712 match community 2_137_254 set community 0:34798 ip community-list standard 2_61_254 permit 65000:2 0:61 0:254 ip community-list standard 2_122_127 permit 65000:2 0:122 0:127 route-map calculator permit 4713 match community 2_61_254 2_122_127 set community 0:15494 ip community-list standard 2_71_227 permit 65000:2 0:71 0:227 route-map calculator permit 4714 match community 2_71_227 set community 0:16117 ip community-list standard 2_30_183 permit 65000:2 0:30 0:183 ip community-list standard 2_45_122 permit 65000:2 0:45 0:122 ip community-list standard 2_61_90 permit 65000:2 0:61 0:90 route-map calculator permit 4715 match community 2_30_183 2_45_122 2_61_90 set community 0:5490 ip community-list standard 2_27_121 permit 65000:2 0:27 0:121 ip community-list standard 2_33_99 permit 65000:2 0:33 0:99 route-map calculator permit 4716 match community 2_27_121 2_33_99 set community 0:3267 ip community-list standard 2_30_209 permit 65000:2 0:30 0:209 ip community-list standard 2_33_190 permit 65000:2 0:33 0:190 ip community-list standard 2_38_165 permit 65000:2 0:38 0:165 ip community-list standard 2_55_114 permit 65000:2 0:55 0:114 ip community-list standard 2_57_110 permit 65000:2 0:57 0:110 ip community-list standard 2_66_95 permit 65000:2 0:66 0:95 route-map calculator permit 4717 match community 2_30_209 2_33_190 2_38_165 2_55_114 2_57_110 set community 0:6270 route-map calculator permit 4718 match community 2_66_95 set community 0:6270 ip community-list standard 2_30_243 permit 65000:2 0:30 0:243 ip community-list standard 2_45_162 permit 65000:2 0:45 0:162 ip community-list standard 2_54_135 permit 65000:2 0:54 0:135 ip community-list standard 2_81_90 permit 65000:2 0:81 0:90 route-map calculator permit 4719 match community 2_30_243 2_45_162 2_54_135 2_81_90 set community 0:7290 ip community-list standard 2_121_248 permit 65000:2 0:121 0:248 ip community-list standard 2_124_242 permit 65000:2 0:124 0:242 route-map calculator permit 4720 match community 2_121_248 2_124_242 set community 0:30008 ip community-list standard 2_99_219 permit 65000:2 0:99 0:219 route-map calculator permit 4721 match community 2_99_219 set community 0:21681 ip community-list standard 2_15_159 permit 65000:2 0:15 0:159 ip community-list standard 2_45_53 permit 65000:2 0:45 0:53 route-map calculator permit 4722 match community 2_15_159 2_45_53 set community 0:2385 ip community-list standard 2_151_199 permit 65000:2 0:151 0:199 route-map calculator permit 4723 match community 2_151_199 set community 0:30049 ip community-list standard 2_81_178 permit 65000:2 0:81 0:178 ip community-list standard 2_89_162 permit 65000:2 0:89 0:162 route-map calculator permit 4724 match community 2_81_178 2_89_162 set community 0:14418 ip community-list standard 2_30_241 permit 65000:2 0:30 0:241 route-map calculator permit 4725 match community 2_30_241 set community 0:7230 ip community-list standard 2_198_241 permit 65000:2 0:198 0:241 route-map calculator permit 4726 match community 2_198_241 set community 0:47718 ip community-list standard 2_143_167 permit 65000:2 0:143 0:167 route-map calculator permit 4727 match community 2_143_167 set community 0:23881 ip community-list standard 2_224_253 permit 65000:2 0:224 0:253 route-map calculator permit 4728 match community 2_224_253 set community 0:56672 ip community-list standard 2_212_235 permit 65000:2 0:212 0:235 route-map calculator permit 4729 match community 2_212_235 set community 0:49820 ip community-list standard 2_71_121 permit 65000:2 0:71 0:121 route-map calculator permit 4730 match community 2_71_121 set community 0:8591 ip community-list standard 2_146_173 permit 65000:2 0:146 0:173 route-map calculator permit 4731 match community 2_146_173 set community 0:25258 ip community-list standard 2_65_213 permit 65000:2 0:65 0:213 ip community-list standard 2_71_195 permit 65000:2 0:71 0:195 route-map calculator permit 4732 match community 2_65_213 2_71_195 set community 0:13845 ip community-list standard 2_47_229 permit 65000:2 0:47 0:229 route-map calculator permit 4733 match community 2_47_229 set community 0:10763 ip community-list standard 2_134_228 permit 65000:2 0:134 0:228 ip community-list standard 2_152_201 permit 65000:2 0:152 0:201 route-map calculator permit 4734 match community 2_134_228 2_152_201 set community 0:30552 ip community-list standard 2_114_242 permit 65000:2 0:114 0:242 ip community-list standard 2_121_228 permit 65000:2 0:121 0:228 ip community-list standard 2_132_209 permit 65000:2 0:132 0:209 route-map calculator permit 4735 match community 2_114_242 2_121_228 2_132_209 set community 0:27588 ip community-list standard 2_157_253 permit 65000:2 0:157 0:253 route-map calculator permit 4736 match community 2_157_253 set community 0:39721 ip community-list standard 2_113_239 permit 65000:2 0:113 0:239 route-map calculator permit 4737 match community 2_113_239 set community 0:27007 ip community-list standard 2_112_245 permit 65000:2 0:112 0:245 ip community-list standard 2_140_196 permit 65000:2 0:140 0:196 route-map calculator permit 4738 match community 2_112_245 2_140_196 set community 0:27440 ip community-list standard 2_112_238 permit 65000:2 0:112 0:238 ip community-list standard 2_119_224 permit 65000:2 0:119 0:224 ip community-list standard 2_136_196 permit 65000:2 0:136 0:196 route-map calculator permit 4739 match community 2_112_238 2_119_224 2_136_196 set community 0:26656 ip community-list standard 2_147_203 permit 65000:2 0:147 0:203 route-map calculator permit 4740 match community 2_147_203 set community 0:29841 ip community-list standard 2_18_163 permit 65000:2 0:18 0:163 route-map calculator permit 4741 match community 2_18_163 set community 0:2934 ip community-list standard 2_114_251 permit 65000:2 0:114 0:251 route-map calculator permit 4742 match community 2_114_251 set community 0:28614 ip community-list standard 1_1_20 permit 65000:1 0:1 0:20 ip community-list standard 2_1_21 permit 65000:2 0:1 0:21 ip community-list standard 1_2_19 permit 65000:1 0:2 0:19 ip community-list standard 2_3_7 permit 65000:2 0:3 0:7 ip community-list standard 1_3_18 permit 65000:1 0:3 0:18 ip community-list standard 1_4_17 permit 65000:1 0:4 0:17 ip community-list standard 1_5_16 permit 65000:1 0:5 0:16 ip community-list standard 1_6_15 permit 65000:1 0:6 0:15 ip community-list standard 1_7_14 permit 65000:1 0:7 0:14 ip community-list standard 1_8_13 permit 65000:1 0:8 0:13 ip community-list standard 1_9_12 permit 65000:1 0:9 0:12 ip community-list standard 1_10_11 permit 65000:1 0:10 0:11 ip community-list expanded c21 permit 1 ^65000:4_0:21_0:1$ ip community-list expanded c21 permit 2 ^65000:3_0:22_0:1$ ip community-list expanded c21 permit 3 ^65000:3_0:23_0:2$ ip community-list expanded c21 permit 4 ^65000:3_0:24_0:3$ ip community-list expanded c21 permit 5 ^65000:3_0:25_0:4$ ip community-list expanded c21 permit 6 ^65000:3_0:26_0:5$ ip community-list expanded c21 permit 7 ^65000:3_0:27_0:6$ ip community-list expanded c21 permit 8 ^65000:3_0:28_0:7$ ip community-list expanded c21 permit 9 ^65000:3_0:29_0:8$ ip community-list expanded c21 permit 10 ^65000:3_0:30_0:9$ ip community-list expanded c21 permit 11 ^65000:3_0:31_0:10$ ip community-list expanded c21 permit 12 ^65000:3_0:32_0:11$ ip community-list expanded c21 permit 13 ^65000:3_0:33_0:12$ ip community-list expanded c21 permit 14 ^65000:3_0:34_0:13$ ip community-list expanded c21 permit 15 ^65000:3_0:35_0:14$ ip community-list expanded c21 permit 16 ^65000:3_0:36_0:15$ ip community-list expanded c21 permit 17 ^65000:3_0:37_0:16$ ip community-list expanded c21 permit 18 ^65000:3_0:38_0:17$ ip community-list expanded c21 permit 19 ^65000:3_0:39_0:18$ ip community-list expanded c21 permit 20 ^65000:3_0:40_0:19$ ip community-list expanded c21 permit 21 ^65000:3_0:41_0:20$ ip community-list expanded c21 permit 22 ^65000:4_0:42_0:2$ ip community-list expanded c21 permit 23 ^65000:3_0:42_0:21$ ip community-list expanded c21 permit 24 ^65000:4_0:43_0:2$ ip community-list expanded c21 permit 25 ^65000:3_0:43_0:22$ ip community-list expanded c21 permit 26 ^65000:3_0:44_0:23$ ip community-list expanded c21 permit 27 ^65000:3_0:45_0:24$ ip community-list expanded c21 permit 28 ^65000:3_0:46_0:25$ ip community-list expanded c21 permit 29 ^65000:3_0:47_0:26$ ip community-list expanded c21 permit 30 ^65000:3_0:48_0:27$ ip community-list expanded c21 permit 31 ^65000:3_0:49_0:28$ ip community-list expanded c21 permit 32 ^65000:3_0:50_0:29$ ip community-list expanded c21 permit 33 ^65000:3_0:51_0:30$ ip community-list expanded c21 permit 34 ^65000:3_0:52_0:31$ ip community-list expanded c21 permit 35 ^65000:3_0:53_0:32$ ip community-list expanded c21 permit 36 ^65000:3_0:54_0:33$ ip community-list expanded c21 permit 37 ^65000:3_0:55_0:34$ ip community-list expanded c21 permit 38 ^65000:3_0:56_0:35$ ip community-list expanded c21 permit 39 ^65000:3_0:57_0:36$ ip community-list expanded c21 permit 40 ^65000:3_0:58_0:37$ ip community-list expanded c21 permit 41 ^65000:3_0:59_0:38$ ip community-list expanded c21 permit 42 ^65000:3_0:60_0:39$ ip community-list expanded c21 permit 43 ^65000:3_0:61_0:40$ ip community-list expanded c21 permit 44 ^65000:3_0:62_0:41$ ip community-list expanded c21 permit 45 ^65000:4_0:63_0:3$ ip community-list expanded c21 permit 46 ^65000:3_0:63_0:42$ ip community-list expanded c21 permit 47 ^65000:4_0:64_0:3$ ip community-list expanded c21 permit 48 ^65000:3_0:64_0:43$ ip community-list expanded c21 permit 49 ^65000:4_0:65_0:3$ ip community-list expanded c21 permit 50 ^65000:3_0:65_0:44$ ip community-list expanded c21 permit 51 ^65000:3_0:66_0:45$ ip community-list expanded c21 permit 52 ^65000:3_0:67_0:46$ ip community-list expanded c21 permit 53 ^65000:3_0:68_0:47$ ip community-list expanded c21 permit 54 ^65000:3_0:69_0:48$ ip community-list expanded c21 permit 55 ^65000:3_0:70_0:49$ ip community-list expanded c21 permit 56 ^65000:3_0:71_0:50$ ip community-list expanded c21 permit 57 ^65000:3_0:72_0:51$ ip community-list expanded c21 permit 58 ^65000:3_0:73_0:52$ ip community-list expanded c21 permit 59 ^65000:3_0:74_0:53$ ip community-list expanded c21 permit 60 ^65000:3_0:75_0:54$ ip community-list expanded c21 permit 61 ^65000:3_0:76_0:55$ ip community-list expanded c21 permit 62 ^65000:3_0:77_0:56$ ip community-list expanded c21 permit 63 ^65000:3_0:78_0:57$ ip community-list expanded c21 permit 64 ^65000:3_0:79_0:58$ ip community-list expanded c21 permit 65 ^65000:3_0:80_0:59$ ip community-list expanded c21 permit 66 ^65000:3_0:81_0:60$ ip community-list expanded c21 permit 67 ^65000:3_0:82_0:61$ ip community-list expanded c21 permit 68 ^65000:3_0:83_0:62$ ip community-list expanded c21 permit 69 ^65000:4_0:84_0:4$ ip community-list expanded c21 permit 70 ^65000:3_0:84_0:63$ ip community-list expanded c21 permit 71 ^65000:4_0:85_0:4$ ip community-list expanded c21 permit 72 ^65000:3_0:85_0:64$ ip community-list expanded c21 permit 73 ^65000:4_0:86_0:4$ ip community-list expanded c21 permit 74 ^65000:3_0:86_0:65$ ip community-list expanded c21 permit 75 ^65000:4_0:87_0:4$ ip community-list expanded c21 permit 76 ^65000:3_0:87_0:66$ ip community-list expanded c21 permit 77 ^65000:3_0:88_0:67$ ip community-list expanded c21 permit 78 ^65000:3_0:89_0:68$ ip community-list expanded c21 permit 79 ^65000:3_0:90_0:69$ ip community-list expanded c21 permit 80 ^65000:3_0:91_0:70$ ip community-list expanded c21 permit 81 ^65000:3_0:92_0:71$ ip community-list expanded c21 permit 82 ^65000:3_0:93_0:72$ ip community-list expanded c21 permit 83 ^65000:3_0:94_0:73$ ip community-list expanded c21 permit 84 ^65000:3_0:95_0:74$ ip community-list expanded c21 permit 85 ^65000:3_0:96_0:75$ ip community-list expanded c21 permit 86 ^65000:3_0:97_0:76$ ip community-list expanded c21 permit 87 ^65000:3_0:98_0:77$ ip community-list expanded c21 permit 88 ^65000:3_0:99_0:78$ ip community-list expanded c21 permit 89 ^65000:3_0:100_0:79$ ip community-list expanded c21 permit 90 ^65000:3_0:101_0:80$ ip community-list expanded c21 permit 91 ^65000:3_0:102_0:81$ ip community-list expanded c21 permit 92 ^65000:3_0:103_0:82$ ip community-list expanded c21 permit 93 ^65000:3_0:104_0:83$ ip community-list expanded c21 permit 94 ^65000:4_0:105_0:5$ ip community-list expanded c21 permit 95 ^65000:3_0:105_0:84$ ip community-list expanded c21 permit 96 ^65000:4_0:106_0:5$ ip community-list expanded c21 permit 97 ^65000:3_0:106_0:85$ ip community-list expanded c21 permit 98 ^65000:4_0:107_0:5$ ip community-list expanded c21 permit 99 ^65000:3_0:107_0:86$ ip community-list expanded c21 permit 100 ^65000:4_0:108_0:5$ ip community-list expanded c21 permit 101 ^65000:3_0:108_0:87$ ip community-list expanded c21 permit 102 ^65000:4_0:109_0:5$ ip community-list expanded c21 permit 103 ^65000:3_0:109_0:88$ ip community-list expanded c21 permit 104 ^65000:3_0:110_0:89$ ip community-list expanded c21 permit 105 ^65000:3_0:111_0:90$ ip community-list expanded c21 permit 106 ^65000:3_0:112_0:91$ ip community-list expanded c21 permit 107 ^65000:3_0:113_0:92$ ip community-list expanded c21 permit 108 ^65000:3_0:114_0:93$ ip community-list expanded c21 permit 109 ^65000:3_0:115_0:94$ ip community-list expanded c21 permit 110 ^65000:3_0:116_0:95$ ip community-list expanded c21 permit 111 ^65000:3_0:117_0:96$ ip community-list expanded c21 permit 112 ^65000:3_0:118_0:97$ ip community-list expanded c21 permit 113 ^65000:3_0:119_0:98$ ip community-list expanded c21 permit 114 ^65000:3_0:120_0:99$ ip community-list expanded c21 permit 115 ^65000:3_0:121_0:100$ ip community-list expanded c21 permit 116 ^65000:3_0:122_0:101$ ip community-list expanded c21 permit 117 ^65000:3_0:123_0:102$ ip community-list expanded c21 permit 118 ^65000:3_0:124_0:103$ ip community-list expanded c21 permit 119 ^65000:3_0:125_0:104$ ip community-list expanded c21 permit 120 ^65000:4_0:126_0:6$ ip community-list expanded c21 permit 121 ^65000:3_0:126_0:105$ ip community-list expanded c21 permit 122 ^65000:4_0:127_0:6$ ip community-list expanded c21 permit 123 ^65000:3_0:127_0:106$ ip community-list expanded c21 permit 124 ^65000:4_0:128_0:6$ ip community-list expanded c21 permit 125 ^65000:3_0:128_0:107$ ip community-list expanded c21 permit 126 ^65000:4_0:129_0:6$ ip community-list expanded c21 permit 127 ^65000:3_0:129_0:108$ ip community-list expanded c21 permit 128 ^65000:4_0:130_0:6$ ip community-list expanded c21 permit 129 ^65000:3_0:130_0:109$ ip community-list expanded c21 permit 130 ^65000:4_0:131_0:6$ ip community-list expanded c21 permit 131 ^65000:3_0:131_0:110$ ip community-list expanded c21 permit 132 ^65000:3_0:132_0:111$ ip community-list expanded c21 permit 133 ^65000:3_0:133_0:112$ ip community-list expanded c21 permit 134 ^65000:3_0:134_0:113$ ip community-list expanded c21 permit 135 ^65000:3_0:135_0:114$ ip community-list expanded c21 permit 136 ^65000:3_0:136_0:115$ ip community-list expanded c21 permit 137 ^65000:3_0:137_0:116$ ip community-list expanded c21 permit 138 ^65000:3_0:138_0:117$ ip community-list expanded c21 permit 139 ^65000:3_0:139_0:118$ ip community-list expanded c21 permit 140 ^65000:3_0:140_0:119$ ip community-list expanded c21 permit 141 ^65000:3_0:141_0:120$ ip community-list expanded c21 permit 142 ^65000:3_0:142_0:121$ ip community-list expanded c21 permit 143 ^65000:3_0:143_0:122$ ip community-list expanded c21 permit 144 ^65000:3_0:144_0:123$ ip community-list expanded c21 permit 145 ^65000:3_0:145_0:124$ ip community-list expanded c21 permit 146 ^65000:3_0:146_0:125$ ip community-list expanded c21 permit 147 ^65000:4_0:147_0:7$ ip community-list expanded c21 permit 148 ^65000:3_0:147_0:126$ ip community-list expanded c21 permit 149 ^65000:4_0:148_0:7$ ip community-list expanded c21 permit 150 ^65000:3_0:148_0:127$ ip community-list expanded c21 permit 151 ^65000:4_0:149_0:7$ ip community-list expanded c21 permit 152 ^65000:3_0:149_0:128$ ip community-list expanded c21 permit 153 ^65000:4_0:150_0:7$ ip community-list expanded c21 permit 154 ^65000:3_0:150_0:129$ ip community-list expanded c21 permit 155 ^65000:4_0:151_0:7$ ip community-list expanded c21 permit 156 ^65000:3_0:151_0:130$ ip community-list expanded c21 permit 157 ^65000:4_0:152_0:7$ ip community-list expanded c21 permit 158 ^65000:3_0:152_0:131$ ip community-list expanded c21 permit 159 ^65000:4_0:153_0:7$ ip community-list expanded c21 permit 160 ^65000:3_0:153_0:132$ ip community-list expanded c21 permit 161 ^65000:3_0:154_0:133$ ip community-list expanded c21 permit 162 ^65000:3_0:155_0:134$ ip community-list expanded c21 permit 163 ^65000:3_0:156_0:135$ ip community-list expanded c21 permit 164 ^65000:3_0:157_0:136$ ip community-list expanded c21 permit 165 ^65000:3_0:158_0:137$ ip community-list expanded c21 permit 166 ^65000:3_0:159_0:138$ ip community-list expanded c21 permit 167 ^65000:3_0:160_0:139$ ip community-list expanded c21 permit 168 ^65000:3_0:161_0:140$ ip community-list expanded c21 permit 169 ^65000:3_0:162_0:141$ ip community-list expanded c21 permit 170 ^65000:3_0:163_0:142$ ip community-list expanded c21 permit 171 ^65000:3_0:164_0:143$ ip community-list expanded c21 permit 172 ^65000:3_0:165_0:144$ ip community-list expanded c21 permit 173 ^65000:3_0:166_0:145$ ip community-list expanded c21 permit 174 ^65000:3_0:167_0:146$ ip community-list expanded c21 permit 175 ^65000:4_0:168_0:8$ ip community-list expanded c21 permit 176 ^65000:3_0:168_0:147$ ip community-list expanded c21 permit 177 ^65000:4_0:169_0:8$ ip community-list expanded c21 permit 178 ^65000:3_0:169_0:148$ ip community-list expanded c21 permit 179 ^65000:4_0:170_0:8$ ip community-list expanded c21 permit 180 ^65000:3_0:170_0:149$ ip community-list expanded c21 permit 181 ^65000:4_0:171_0:8$ ip community-list expanded c21 permit 182 ^65000:3_0:171_0:150$ ip community-list expanded c21 permit 183 ^65000:4_0:172_0:8$ ip community-list expanded c21 permit 184 ^65000:3_0:172_0:151$ ip community-list expanded c21 permit 185 ^65000:4_0:173_0:8$ ip community-list expanded c21 permit 186 ^65000:3_0:173_0:152$ ip community-list expanded c21 permit 187 ^65000:4_0:174_0:8$ ip community-list expanded c21 permit 188 ^65000:3_0:174_0:153$ ip community-list expanded c21 permit 189 ^65000:4_0:175_0:8$ ip community-list expanded c21 permit 190 ^65000:3_0:175_0:154$ ip community-list expanded c21 permit 191 ^65000:3_0:176_0:155$ ip community-list expanded c21 permit 192 ^65000:3_0:177_0:156$ ip community-list expanded c21 permit 193 ^65000:3_0:178_0:157$ ip community-list expanded c21 permit 194 ^65000:3_0:179_0:158$ ip community-list expanded c21 permit 195 ^65000:3_0:180_0:159$ ip community-list expanded c21 permit 196 ^65000:3_0:181_0:160$ ip community-list expanded c21 permit 197 ^65000:3_0:182_0:161$ ip community-list expanded c21 permit 198 ^65000:3_0:183_0:162$ ip community-list expanded c21 permit 199 ^65000:3_0:184_0:163$ ip community-list expanded c21 permit 200 ^65000:3_0:185_0:164$ ip community-list expanded c21 permit 201 ^65000:3_0:186_0:165$ ip community-list expanded c21 permit 202 ^65000:3_0:187_0:166$ ip community-list expanded c21 permit 203 ^65000:3_0:188_0:167$ ip community-list expanded c21 permit 204 ^65000:4_0:189_0:9$ ip community-list expanded c21 permit 205 ^65000:3_0:189_0:168$ ip community-list expanded c21 permit 206 ^65000:4_0:190_0:9$ ip community-list expanded c21 permit 207 ^65000:3_0:190_0:169$ ip community-list expanded c21 permit 208 ^65000:4_0:191_0:9$ ip community-list expanded c21 permit 209 ^65000:3_0:191_0:170$ ip community-list expanded c21 permit 210 ^65000:4_0:192_0:9$ ip community-list expanded c21 permit 211 ^65000:3_0:192_0:171$ ip community-list expanded c21 permit 212 ^65000:4_0:193_0:9$ ip community-list expanded c21 permit 213 ^65000:3_0:193_0:172$ ip community-list expanded c21 permit 214 ^65000:4_0:194_0:9$ ip community-list expanded c21 permit 215 ^65000:3_0:194_0:173$ ip community-list expanded c21 permit 216 ^65000:4_0:195_0:9$ ip community-list expanded c21 permit 217 ^65000:3_0:195_0:174$ ip community-list expanded c21 permit 218 ^65000:4_0:196_0:9$ ip community-list expanded c21 permit 219 ^65000:3_0:196_0:175$ ip community-list expanded c21 permit 220 ^65000:4_0:197_0:9$ ip community-list expanded c21 permit 221 ^65000:3_0:197_0:176$ ip community-list expanded c21 permit 222 ^65000:3_0:198_0:177$ ip community-list expanded c21 permit 223 ^65000:3_0:199_0:178$ ip community-list expanded c21 permit 224 ^65000:3_0:200_0:179$ ip community-list expanded c21 permit 225 ^65000:3_0:201_0:180$ ip community-list expanded c21 permit 226 ^65000:3_0:202_0:181$ ip community-list expanded c21 permit 227 ^65000:3_0:203_0:182$ ip community-list expanded c21 permit 228 ^65000:3_0:204_0:183$ ip community-list expanded c21 permit 229 ^65000:3_0:205_0:184$ ip community-list expanded c21 permit 230 ^65000:3_0:206_0:185$ ip community-list expanded c21 permit 231 ^65000:3_0:207_0:186$ ip community-list expanded c21 permit 232 ^65000:3_0:208_0:187$ ip community-list expanded c21 permit 233 ^65000:3_0:209_0:188$ ip community-list expanded c21 permit 234 ^65000:4_0:210_0:10$ ip community-list expanded c21 permit 235 ^65000:3_0:210_0:189$ ip community-list expanded c21 permit 236 ^65000:4_0:211_0:10$ ip community-list expanded c21 permit 237 ^65000:3_0:211_0:190$ ip community-list expanded c21 permit 238 ^65000:4_0:212_0:10$ ip community-list expanded c21 permit 239 ^65000:3_0:212_0:191$ ip community-list expanded c21 permit 240 ^65000:4_0:213_0:10$ ip community-list expanded c21 permit 241 ^65000:3_0:213_0:192$ ip community-list expanded c21 permit 242 ^65000:4_0:214_0:10$ ip community-list expanded c21 permit 243 ^65000:3_0:214_0:193$ ip community-list expanded c21 permit 244 ^65000:4_0:215_0:10$ ip community-list expanded c21 permit 245 ^65000:3_0:215_0:194$ ip community-list expanded c21 permit 246 ^65000:4_0:216_0:10$ ip community-list expanded c21 permit 247 ^65000:3_0:216_0:195$ ip community-list expanded c21 permit 248 ^65000:4_0:217_0:10$ ip community-list expanded c21 permit 249 ^65000:3_0:217_0:196$ ip community-list expanded c21 permit 250 ^65000:4_0:218_0:10$ ip community-list expanded c21 permit 251 ^65000:3_0:218_0:197$ ip community-list expanded c21 permit 252 ^65000:4_0:219_0:10$ ip community-list expanded c21 permit 253 ^65000:3_0:219_0:198$ ip community-list expanded c21 permit 254 ^65000:3_0:220_0:199$ ip community-list expanded c21 permit 255 ^65000:3_0:221_0:200$ ip community-list expanded c21 permit 256 ^65000:3_0:222_0:201$ ip community-list expanded c21 permit 257 ^65000:3_0:223_0:202$ ip community-list expanded c21 permit 258 ^65000:3_0:224_0:203$ ip community-list expanded c21 permit 259 ^65000:3_0:225_0:204$ ip community-list expanded c21 permit 260 ^65000:3_0:226_0:205$ ip community-list expanded c21 permit 261 ^65000:3_0:227_0:206$ ip community-list expanded c21 permit 262 ^65000:3_0:228_0:207$ ip community-list expanded c21 permit 263 ^65000:3_0:229_0:208$ ip community-list expanded c21 permit 264 ^65000:3_0:230_0:209$ ip community-list expanded c21 permit 265 ^65000:4_0:231_0:11$ ip community-list expanded c21 permit 266 ^65000:3_0:231_0:210$ ip community-list expanded c21 permit 267 ^65000:4_0:232_0:11$ ip community-list expanded c21 permit 268 ^65000:3_0:232_0:211$ ip community-list expanded c21 permit 269 ^65000:4_0:233_0:11$ ip community-list expanded c21 permit 270 ^65000:3_0:233_0:212$ ip community-list expanded c21 permit 271 ^65000:4_0:234_0:11$ ip community-list expanded c21 permit 272 ^65000:3_0:234_0:213$ ip community-list expanded c21 permit 273 ^65000:4_0:235_0:11$ ip community-list expanded c21 permit 274 ^65000:3_0:235_0:214$ ip community-list expanded c21 permit 275 ^65000:4_0:236_0:11$ ip community-list expanded c21 permit 276 ^65000:3_0:236_0:215$ ip community-list expanded c21 permit 277 ^65000:4_0:237_0:11$ ip community-list expanded c21 permit 278 ^65000:3_0:237_0:216$ ip community-list expanded c21 permit 279 ^65000:4_0:238_0:11$ ip community-list expanded c21 permit 280 ^65000:3_0:238_0:217$ ip community-list expanded c21 permit 281 ^65000:4_0:239_0:11$ ip community-list expanded c21 permit 282 ^65000:3_0:239_0:218$ ip community-list expanded c21 permit 283 ^65000:4_0:240_0:11$ ip community-list expanded c21 permit 284 ^65000:3_0:240_0:219$ ip community-list expanded c21 permit 285 ^65000:4_0:241_0:11$ ip community-list expanded c21 permit 286 ^65000:3_0:241_0:220$ ip community-list expanded c21 permit 287 ^65000:3_0:242_0:221$ ip community-list expanded c21 permit 288 ^65000:3_0:243_0:222$ ip community-list expanded c21 permit 289 ^65000:3_0:244_0:223$ ip community-list expanded c21 permit 290 ^65000:3_0:245_0:224$ ip community-list expanded c21 permit 291 ^65000:3_0:246_0:225$ ip community-list expanded c21 permit 292 ^65000:3_0:247_0:226$ ip community-list expanded c21 permit 293 ^65000:3_0:248_0:227$ ip community-list expanded c21 permit 294 ^65000:3_0:249_0:228$ ip community-list expanded c21 permit 295 ^65000:3_0:250_0:229$ ip community-list expanded c21 permit 296 ^65000:3_0:251_0:230$ ip community-list expanded c21 permit 297 ^65000:4_0:252_0:12$ ip community-list expanded c21 permit 298 ^65000:3_0:252_0:231$ ip community-list expanded c21 permit 299 ^65000:4_0:253_0:12$ ip community-list expanded c21 permit 300 ^65000:3_0:253_0:232$ ip community-list expanded c21 permit 301 ^65000:4_0:254_0:12$ ip community-list expanded c21 permit 302 ^65000:3_0:254_0:233$ ip community-list expanded c21 permit 303 ^65000:4_0:255_0:12$ ip community-list expanded c21 permit 304 ^65000:3_0:255_0:234$ ip community-list expanded c21 permit 305 ^65000:4_0:256_0:12$ ip community-list expanded c21 permit 306 ^65000:3_0:256_0:235$ route-map calculator permit 4743 match community 1_1_20 2_1_21 1_2_19 2_3_7 1_3_18 set community 0:21 route-map calculator permit 4744 match community 1_4_17 1_5_16 1_6_15 1_7_14 1_8_13 set community 0:21 route-map calculator permit 4745 match community 1_9_12 1_10_11 c4_21_1 c3_22_1 c3_23_2 set community 0:21 route-map calculator permit 4746 match community c3_24_3 c3_25_4 c3_26_5 c3_27_6 c3_28_7 set community 0:21 route-map calculator permit 4747 match community c3_29_8 c3_30_9 c3_31_10 c3_32_11 c3_33_12 set community 0:21 route-map calculator permit 4748 match community c3_34_13 c3_35_14 c3_36_15 c3_37_16 c3_38_17 set community 0:21 route-map calculator permit 4749 match community c3_39_18 c3_40_19 c3_41_20 c4_42_2 c3_42_21 set community 0:21 route-map calculator permit 4750 match community c4_43_2 c3_43_22 c3_44_23 c3_45_24 c3_46_25 set community 0:21 route-map calculator permit 4751 match community c3_47_26 c3_48_27 c3_49_28 c3_50_29 c3_51_30 set community 0:21 route-map calculator permit 4752 match community c3_52_31 c3_53_32 c3_54_33 c3_55_34 c3_56_35 set community 0:21 route-map calculator permit 4753 match community c3_57_36 c3_58_37 c3_59_38 c3_60_39 c3_61_40 set community 0:21 route-map calculator permit 4754 match community c3_62_41 c4_63_3 c3_63_42 c4_64_3 c3_64_43 set community 0:21 route-map calculator permit 4755 match community c4_65_3 c3_65_44 c3_66_45 c3_67_46 c3_68_47 set community 0:21 route-map calculator permit 4756 match community c3_69_48 c3_70_49 c3_71_50 c3_72_51 c3_73_52 set community 0:21 route-map calculator permit 4757 match community c3_74_53 c3_75_54 c3_76_55 c3_77_56 c3_78_57 set community 0:21 route-map calculator permit 4758 match community c3_79_58 c3_80_59 c3_81_60 c3_82_61 c3_83_62 set community 0:21 route-map calculator permit 4759 match community c4_84_4 c3_84_63 c4_85_4 c3_85_64 c4_86_4 set community 0:21 route-map calculator permit 4760 match community c3_86_65 c4_87_4 c3_87_66 c3_88_67 c3_89_68 set community 0:21 route-map calculator permit 4761 match community c3_90_69 c3_91_70 c3_92_71 c3_93_72 c3_94_73 set community 0:21 route-map calculator permit 4762 match community c3_95_74 c3_96_75 c3_97_76 c3_98_77 c3_99_78 set community 0:21 route-map calculator permit 4763 match community c3_100_79 c3_101_80 c3_102_81 c3_103_82 c3_104_83 set community 0:21 route-map calculator permit 4764 match community c4_105_5 c3_105_84 c4_106_5 c3_106_85 c4_107_5 set community 0:21 route-map calculator permit 4765 match community c3_107_86 c4_108_5 c3_108_87 c4_109_5 c3_109_88 set community 0:21 route-map calculator permit 4766 match community c3_110_89 c3_111_90 c3_112_91 c3_113_92 c3_114_93 set community 0:21 route-map calculator permit 4767 match community c3_115_94 c3_116_95 c3_117_96 c3_118_97 c3_119_98 set community 0:21 route-map calculator permit 4768 match community c3_120_99 c3_121_100 c3_122_101 c3_123_102 c3_124_103 set community 0:21 route-map calculator permit 4769 match community c3_125_104 c4_126_6 c3_126_105 c4_127_6 c3_127_106 set community 0:21 route-map calculator permit 4770 match community c4_128_6 c3_128_107 c4_129_6 c3_129_108 c4_130_6 set community 0:21 route-map calculator permit 4771 match community c3_130_109 c4_131_6 c3_131_110 c3_132_111 c3_133_112 set community 0:21 route-map calculator permit 4772 match community c3_134_113 c3_135_114 c3_136_115 c3_137_116 c3_138_117 set community 0:21 route-map calculator permit 4773 match community c3_139_118 c3_140_119 c3_141_120 c3_142_121 c3_143_122 set community 0:21 route-map calculator permit 4774 match community c3_144_123 c3_145_124 c3_146_125 c4_147_7 c3_147_126 set community 0:21 route-map calculator permit 4775 match community c4_148_7 c3_148_127 c4_149_7 c3_149_128 c4_150_7 set community 0:21 route-map calculator permit 4776 match community c3_150_129 c4_151_7 c3_151_130 c4_152_7 c3_152_131 set community 0:21 route-map calculator permit 4777 match community c4_153_7 c3_153_132 c3_154_133 c3_155_134 c3_156_135 set community 0:21 route-map calculator permit 4778 match community c3_157_136 c3_158_137 c3_159_138 c3_160_139 c3_161_140 set community 0:21 route-map calculator permit 4779 match community c3_162_141 c3_163_142 c3_164_143 c3_165_144 c3_166_145 set community 0:21 route-map calculator permit 4780 match community c3_167_146 c4_168_8 c3_168_147 c4_169_8 c3_169_148 set community 0:21 route-map calculator permit 4781 match community c4_170_8 c3_170_149 c4_171_8 c3_171_150 c4_172_8 set community 0:21 route-map calculator permit 4782 match community c3_172_151 c4_173_8 c3_173_152 c4_174_8 c3_174_153 set community 0:21 route-map calculator permit 4783 match community c4_175_8 c3_175_154 c3_176_155 c3_177_156 c3_178_157 set community 0:21 route-map calculator permit 4784 match community c3_179_158 c3_180_159 c3_181_160 c3_182_161 c3_183_162 set community 0:21 route-map calculator permit 4785 match community c3_184_163 c3_185_164 c3_186_165 c3_187_166 c3_188_167 set community 0:21 route-map calculator permit 4786 match community c4_189_9 c3_189_168 c4_190_9 c3_190_169 c4_191_9 set community 0:21 route-map calculator permit 4787 match community c3_191_170 c4_192_9 c3_192_171 c4_193_9 c3_193_172 set community 0:21 route-map calculator permit 4788 match community c4_194_9 c3_194_173 c4_195_9 c3_195_174 c4_196_9 set community 0:21 route-map calculator permit 4789 match community c3_196_175 c4_197_9 c3_197_176 c3_198_177 c3_199_178 set community 0:21 route-map calculator permit 4790 match community c3_200_179 c3_201_180 c3_202_181 c3_203_182 c3_204_183 set community 0:21 route-map calculator permit 4791 match community c3_205_184 c3_206_185 c3_207_186 c3_208_187 c3_209_188 set community 0:21 route-map calculator permit 4792 match community c4_210_10 c3_210_189 c4_211_10 c3_211_190 c4_212_10 set community 0:21 route-map calculator permit 4793 match community c3_212_191 c4_213_10 c3_213_192 c4_214_10 c3_214_193 set community 0:21 route-map calculator permit 4794 match community c4_215_10 c3_215_194 c4_216_10 c3_216_195 c4_217_10 set community 0:21 route-map calculator permit 4795 match community c3_217_196 c4_218_10 c3_218_197 c4_219_10 c3_219_198 set community 0:21 route-map calculator permit 4796 match community c3_220_199 c3_221_200 c3_222_201 c3_223_202 c3_224_203 set community 0:21 route-map calculator permit 4797 match community c3_225_204 c3_226_205 c3_227_206 c3_228_207 c3_229_208 set community 0:21 route-map calculator permit 4798 match community c3_230_209 c4_231_11 c3_231_210 c4_232_11 c3_232_211 set community 0:21 route-map calculator permit 4799 match community c4_233_11 c3_233_212 c4_234_11 c3_234_213 c4_235_11 set community 0:21 route-map calculator permit 4800 match community c3_235_214 c4_236_11 c3_236_215 c4_237_11 c3_237_216 set community 0:21 route-map calculator permit 4801 match community c4_238_11 c3_238_217 c4_239_11 c3_239_218 c4_240_11 set community 0:21 route-map calculator permit 4802 match community c3_240_219 c4_241_11 c3_241_220 c3_242_221 c3_243_222 set community 0:21 route-map calculator permit 4803 match community c3_244_223 c3_245_224 c3_246_225 c3_247_226 c3_248_227 set community 0:21 route-map calculator permit 4804 match community c3_249_228 c3_250_229 c3_251_230 c4_252_12 c3_252_231 set community 0:21 route-map calculator permit 4805 match community c4_253_12 c3_253_232 c4_254_12 c3_254_233 c4_255_12 set community 0:21 route-map calculator permit 4806 match community c3_255_234 c4_256_12 c3_256_235 set community 0:21 ip community-list standard 2_20_167 permit 65000:2 0:20 0:167 route-map calculator permit 4807 match community 2_20_167 set community 0:3340 ip community-list standard 2_190_212 permit 65000:2 0:190 0:212 route-map calculator permit 4808 match community 2_190_212 set community 0:40280 ip community-list standard 2_41_232 permit 65000:2 0:41 0:232 ip community-list standard 2_58_164 permit 65000:2 0:58 0:164 ip community-list standard 2_82_116 permit 65000:2 0:82 0:116 route-map calculator permit 4809 match community 2_41_232 2_58_164 2_82_116 set community 0:9512 ip community-list standard 2_142_196 permit 65000:2 0:142 0:196 route-map calculator permit 4810 match community 2_142_196 set community 0:27832 ip community-list standard 2_86_244 permit 65000:2 0:86 0:244 ip community-list standard 2_122_172 permit 65000:2 0:122 0:172 route-map calculator permit 4811 match community 2_86_244 2_122_172 set community 0:20984 ip community-list standard 2_60_252 permit 65000:2 0:60 0:252 ip community-list standard 2_63_240 permit 65000:2 0:63 0:240 ip community-list standard 2_70_216 permit 65000:2 0:70 0:216 ip community-list standard 2_72_210 permit 65000:2 0:72 0:210 ip community-list standard 2_80_189 permit 65000:2 0:80 0:189 ip community-list standard 2_84_180 permit 65000:2 0:84 0:180 ip community-list standard 2_90_168 permit 65000:2 0:90 0:168 ip community-list standard 2_105_144 permit 65000:2 0:105 0:144 ip community-list standard 2_108_140 permit 65000:2 0:108 0:140 ip community-list standard 2_112_135 permit 65000:2 0:112 0:135 ip community-list standard 2_120_126 permit 65000:2 0:120 0:126 route-map calculator permit 4812 match community 2_60_252 2_63_240 2_70_216 2_72_210 2_80_189 set community 0:15120 route-map calculator permit 4813 match community 2_84_180 2_90_168 2_105_144 2_108_140 2_112_135 set community 0:15120 route-map calculator permit 4814 match community 2_120_126 set community 0:15120 ip community-list standard 2_88_227 permit 65000:2 0:88 0:227 route-map calculator permit 4815 match community 2_88_227 set community 0:19976 ip community-list standard 2_190_256 permit 65000:2 0:190 0:256 route-map calculator permit 4816 match community 2_190_256 set community 0:48640 ip community-list standard 2_78_248 permit 65000:2 0:78 0:248 ip community-list standard 2_93_208 permit 65000:2 0:93 0:208 ip community-list standard 2_104_186 permit 65000:2 0:104 0:186 ip community-list standard 2_124_156 permit 65000:2 0:124 0:156 route-map calculator permit 4817 match community 2_78_248 2_93_208 2_104_186 2_124_156 set community 0:19344 ip community-list standard 2_90_194 permit 65000:2 0:90 0:194 ip community-list standard 2_97_180 permit 65000:2 0:97 0:180 route-map calculator permit 4818 match community 2_90_194 2_97_180 set community 0:17460 ip community-list standard 2_86_232 permit 65000:2 0:86 0:232 ip community-list standard 2_116_172 permit 65000:2 0:116 0:172 route-map calculator permit 4819 match community 2_86_232 2_116_172 set community 0:19952 ip community-list standard 2_132_252 permit 65000:2 0:132 0:252 ip community-list standard 2_144_231 permit 65000:2 0:144 0:231 ip community-list standard 2_154_216 permit 65000:2 0:154 0:216 ip community-list standard 2_168_198 permit 65000:2 0:168 0:198 ip community-list standard 2_176_189 permit 65000:2 0:176 0:189 route-map calculator permit 4820 match community 2_132_252 2_144_231 2_154_216 2_168_198 2_176_189 set community 0:33264 ip community-list standard 2_101_211 permit 65000:2 0:101 0:211 route-map calculator permit 4821 match community 2_101_211 set community 0:21311 ip community-list standard 2_58_187 permit 65000:2 0:58 0:187 route-map calculator permit 4822 match community 2_58_187 set community 0:10846 ip community-list standard 2_233_252 permit 65000:2 0:233 0:252 route-map calculator permit 4823 match community 2_233_252 set community 0:58716 ip community-list standard 2_42_151 permit 65000:2 0:42 0:151 route-map calculator permit 4824 match community 2_42_151 set community 0:6342 ip community-list standard 2_29_79 permit 65000:2 0:29 0:79 route-map calculator permit 4825 match community 2_29_79 set community 0:2291 ip community-list standard 2_19_253 permit 65000:2 0:19 0:253 ip community-list standard 2_23_209 permit 65000:2 0:23 0:209 route-map calculator permit 4826 match community 2_19_253 2_23_209 set community 0:4807 ip community-list standard 2_110_183 permit 65000:2 0:110 0:183 ip community-list standard 2_122_165 permit 65000:2 0:122 0:165 route-map calculator permit 4827 match community 2_110_183 2_122_165 set community 0:20130 ip community-list standard 2_98_209 permit 65000:2 0:98 0:209 ip community-list standard 2_133_154 permit 65000:2 0:133 0:154 route-map calculator permit 4828 match community 2_98_209 2_133_154 set community 0:20482 ip community-list standard 1_1_219 permit 65000:1 0:1 0:219 ip community-list standard 2_1_220 permit 65000:2 0:1 0:220 ip community-list standard 2_2_110 permit 65000:2 0:2 0:110 ip community-list standard 1_2_218 permit 65000:1 0:2 0:218 ip community-list standard 1_3_217 permit 65000:1 0:3 0:217 ip community-list standard 2_4_55 permit 65000:2 0:4 0:55 ip community-list standard 1_4_216 permit 65000:1 0:4 0:216 ip community-list standard 2_5_44 permit 65000:2 0:5 0:44 ip community-list standard 1_5_215 permit 65000:1 0:5 0:215 ip community-list standard 1_6_214 permit 65000:1 0:6 0:214 ip community-list standard 1_7_213 permit 65000:1 0:7 0:213 ip community-list standard 1_8_212 permit 65000:1 0:8 0:212 ip community-list standard 1_9_211 permit 65000:1 0:9 0:211 ip community-list standard 2_10_22 permit 65000:2 0:10 0:22 ip community-list standard 1_10_210 permit 65000:1 0:10 0:210 ip community-list standard 2_11_20 permit 65000:2 0:11 0:20 ip community-list standard 1_11_209 permit 65000:1 0:11 0:209 ip community-list standard 1_12_208 permit 65000:1 0:12 0:208 ip community-list standard 1_13_207 permit 65000:1 0:13 0:207 ip community-list standard 1_14_206 permit 65000:1 0:14 0:206 ip community-list standard 1_15_205 permit 65000:1 0:15 0:205 ip community-list standard 1_16_204 permit 65000:1 0:16 0:204 ip community-list standard 1_17_203 permit 65000:1 0:17 0:203 ip community-list standard 1_18_202 permit 65000:1 0:18 0:202 ip community-list standard 1_19_201 permit 65000:1 0:19 0:201 ip community-list standard 1_20_200 permit 65000:1 0:20 0:200 ip community-list standard 1_21_199 permit 65000:1 0:21 0:199 ip community-list standard 1_22_198 permit 65000:1 0:22 0:198 ip community-list standard 1_23_197 permit 65000:1 0:23 0:197 ip community-list standard 1_24_196 permit 65000:1 0:24 0:196 ip community-list standard 1_25_195 permit 65000:1 0:25 0:195 ip community-list standard 1_26_194 permit 65000:1 0:26 0:194 ip community-list standard 1_27_193 permit 65000:1 0:27 0:193 ip community-list standard 1_28_192 permit 65000:1 0:28 0:192 ip community-list standard 1_29_191 permit 65000:1 0:29 0:191 ip community-list standard 1_30_190 permit 65000:1 0:30 0:190 ip community-list standard 1_31_189 permit 65000:1 0:31 0:189 ip community-list standard 1_32_188 permit 65000:1 0:32 0:188 ip community-list standard 1_33_187 permit 65000:1 0:33 0:187 ip community-list standard 1_34_186 permit 65000:1 0:34 0:186 ip community-list standard 1_35_185 permit 65000:1 0:35 0:185 ip community-list standard 1_36_184 permit 65000:1 0:36 0:184 ip community-list standard 1_37_183 permit 65000:1 0:37 0:183 ip community-list standard 1_38_182 permit 65000:1 0:38 0:182 ip community-list standard 1_39_181 permit 65000:1 0:39 0:181 ip community-list standard 1_40_180 permit 65000:1 0:40 0:180 ip community-list standard 1_41_179 permit 65000:1 0:41 0:179 ip community-list standard 1_42_178 permit 65000:1 0:42 0:178 ip community-list standard 1_43_177 permit 65000:1 0:43 0:177 ip community-list standard 1_44_176 permit 65000:1 0:44 0:176 ip community-list standard 1_45_175 permit 65000:1 0:45 0:175 ip community-list standard 1_46_174 permit 65000:1 0:46 0:174 ip community-list standard 1_47_173 permit 65000:1 0:47 0:173 ip community-list standard 1_48_172 permit 65000:1 0:48 0:172 ip community-list standard 1_49_171 permit 65000:1 0:49 0:171 ip community-list standard 1_50_170 permit 65000:1 0:50 0:170 ip community-list standard 1_51_169 permit 65000:1 0:51 0:169 ip community-list standard 1_52_168 permit 65000:1 0:52 0:168 ip community-list standard 1_53_167 permit 65000:1 0:53 0:167 ip community-list standard 1_54_166 permit 65000:1 0:54 0:166 ip community-list standard 1_55_165 permit 65000:1 0:55 0:165 ip community-list standard 1_56_164 permit 65000:1 0:56 0:164 ip community-list standard 1_57_163 permit 65000:1 0:57 0:163 ip community-list standard 1_58_162 permit 65000:1 0:58 0:162 ip community-list standard 1_59_161 permit 65000:1 0:59 0:161 ip community-list standard 1_60_160 permit 65000:1 0:60 0:160 ip community-list standard 1_61_159 permit 65000:1 0:61 0:159 ip community-list standard 1_62_158 permit 65000:1 0:62 0:158 ip community-list standard 1_63_157 permit 65000:1 0:63 0:157 ip community-list standard 1_64_156 permit 65000:1 0:64 0:156 ip community-list standard 1_65_155 permit 65000:1 0:65 0:155 ip community-list standard 1_66_154 permit 65000:1 0:66 0:154 ip community-list standard 1_67_153 permit 65000:1 0:67 0:153 ip community-list standard 1_68_152 permit 65000:1 0:68 0:152 ip community-list standard 1_69_151 permit 65000:1 0:69 0:151 ip community-list standard 1_70_150 permit 65000:1 0:70 0:150 ip community-list standard 1_71_149 permit 65000:1 0:71 0:149 ip community-list standard 1_72_148 permit 65000:1 0:72 0:148 ip community-list standard 1_73_147 permit 65000:1 0:73 0:147 ip community-list standard 1_74_146 permit 65000:1 0:74 0:146 ip community-list standard 1_75_145 permit 65000:1 0:75 0:145 ip community-list standard 1_76_144 permit 65000:1 0:76 0:144 ip community-list standard 1_77_143 permit 65000:1 0:77 0:143 ip community-list standard 1_78_142 permit 65000:1 0:78 0:142 ip community-list standard 1_79_141 permit 65000:1 0:79 0:141 ip community-list standard 1_80_140 permit 65000:1 0:80 0:140 ip community-list standard 1_81_139 permit 65000:1 0:81 0:139 ip community-list standard 1_82_138 permit 65000:1 0:82 0:138 ip community-list standard 1_83_137 permit 65000:1 0:83 0:137 ip community-list standard 1_84_136 permit 65000:1 0:84 0:136 ip community-list standard 1_85_135 permit 65000:1 0:85 0:135 ip community-list standard 1_86_134 permit 65000:1 0:86 0:134 ip community-list standard 1_87_133 permit 65000:1 0:87 0:133 ip community-list standard 1_88_132 permit 65000:1 0:88 0:132 ip community-list standard 1_89_131 permit 65000:1 0:89 0:131 ip community-list standard 1_90_130 permit 65000:1 0:90 0:130 ip community-list standard 1_91_129 permit 65000:1 0:91 0:129 ip community-list standard 1_92_128 permit 65000:1 0:92 0:128 ip community-list standard 1_93_127 permit 65000:1 0:93 0:127 ip community-list standard 1_94_126 permit 65000:1 0:94 0:126 ip community-list standard 1_95_125 permit 65000:1 0:95 0:125 ip community-list standard 1_96_124 permit 65000:1 0:96 0:124 ip community-list standard 1_97_123 permit 65000:1 0:97 0:123 ip community-list standard 1_98_122 permit 65000:1 0:98 0:122 ip community-list standard 1_99_121 permit 65000:1 0:99 0:121 ip community-list standard 1_100_120 permit 65000:1 0:100 0:120 ip community-list standard 1_101_119 permit 65000:1 0:101 0:119 ip community-list standard 1_102_118 permit 65000:1 0:102 0:118 ip community-list standard 1_103_117 permit 65000:1 0:103 0:117 ip community-list standard 1_104_116 permit 65000:1 0:104 0:116 ip community-list standard 1_105_115 permit 65000:1 0:105 0:115 ip community-list standard 1_106_114 permit 65000:1 0:106 0:114 ip community-list standard 1_107_113 permit 65000:1 0:107 0:113 ip community-list standard 1_108_112 permit 65000:1 0:108 0:112 ip community-list standard 1_109_111 permit 65000:1 0:109 0:111 ip community-list standard 1_110_110 permit 65000:1 0:110 0:110 ip community-list expanded c220 permit 1 ^65000:4_0:220_0:1$ ip community-list expanded c220 permit 2 ^65000:3_0:221_0:1$ ip community-list expanded c220 permit 3 ^65000:3_0:222_0:2$ ip community-list expanded c220 permit 4 ^65000:3_0:223_0:3$ ip community-list expanded c220 permit 5 ^65000:3_0:224_0:4$ ip community-list expanded c220 permit 6 ^65000:3_0:225_0:5$ ip community-list expanded c220 permit 7 ^65000:3_0:226_0:6$ ip community-list expanded c220 permit 8 ^65000:3_0:227_0:7$ ip community-list expanded c220 permit 9 ^65000:3_0:228_0:8$ ip community-list expanded c220 permit 10 ^65000:3_0:229_0:9$ ip community-list expanded c220 permit 11 ^65000:3_0:230_0:10$ ip community-list expanded c220 permit 12 ^65000:3_0:231_0:11$ ip community-list expanded c220 permit 13 ^65000:3_0:232_0:12$ ip community-list expanded c220 permit 14 ^65000:3_0:233_0:13$ ip community-list expanded c220 permit 15 ^65000:3_0:234_0:14$ ip community-list expanded c220 permit 16 ^65000:3_0:235_0:15$ ip community-list expanded c220 permit 17 ^65000:3_0:236_0:16$ ip community-list expanded c220 permit 18 ^65000:3_0:237_0:17$ ip community-list expanded c220 permit 19 ^65000:3_0:238_0:18$ ip community-list expanded c220 permit 20 ^65000:3_0:239_0:19$ ip community-list expanded c220 permit 21 ^65000:3_0:240_0:20$ ip community-list expanded c220 permit 22 ^65000:3_0:241_0:21$ ip community-list expanded c220 permit 23 ^65000:3_0:242_0:22$ ip community-list expanded c220 permit 24 ^65000:3_0:243_0:23$ ip community-list expanded c220 permit 25 ^65000:3_0:244_0:24$ ip community-list expanded c220 permit 26 ^65000:3_0:245_0:25$ ip community-list expanded c220 permit 27 ^65000:3_0:246_0:26$ ip community-list expanded c220 permit 28 ^65000:3_0:247_0:27$ ip community-list expanded c220 permit 29 ^65000:3_0:248_0:28$ ip community-list expanded c220 permit 30 ^65000:3_0:249_0:29$ ip community-list expanded c220 permit 31 ^65000:3_0:250_0:30$ ip community-list expanded c220 permit 32 ^65000:3_0:251_0:31$ ip community-list expanded c220 permit 33 ^65000:3_0:252_0:32$ ip community-list expanded c220 permit 34 ^65000:3_0:253_0:33$ ip community-list expanded c220 permit 35 ^65000:3_0:254_0:34$ ip community-list expanded c220 permit 36 ^65000:3_0:255_0:35$ ip community-list expanded c220 permit 37 ^65000:3_0:256_0:36$ route-map calculator permit 4829 match community 1_1_219 2_1_220 2_2_110 1_2_218 1_3_217 set community 0:220 route-map calculator permit 4830 match community 2_4_55 1_4_216 2_5_44 1_5_215 1_6_214 set community 0:220 route-map calculator permit 4831 match community 1_7_213 1_8_212 1_9_211 2_10_22 1_10_210 set community 0:220 route-map calculator permit 4832 match community 2_11_20 1_11_209 1_12_208 1_13_207 1_14_206 set community 0:220 route-map calculator permit 4833 match community 1_15_205 1_16_204 1_17_203 1_18_202 1_19_201 set community 0:220 route-map calculator permit 4834 match community 1_20_200 1_21_199 1_22_198 1_23_197 1_24_196 set community 0:220 route-map calculator permit 4835 match community 1_25_195 1_26_194 1_27_193 1_28_192 1_29_191 set community 0:220 route-map calculator permit 4836 match community 1_30_190 1_31_189 1_32_188 1_33_187 1_34_186 set community 0:220 route-map calculator permit 4837 match community 1_35_185 1_36_184 1_37_183 1_38_182 1_39_181 set community 0:220 route-map calculator permit 4838 match community 1_40_180 1_41_179 1_42_178 1_43_177 1_44_176 set community 0:220 route-map calculator permit 4839 match community 1_45_175 1_46_174 1_47_173 1_48_172 1_49_171 set community 0:220 route-map calculator permit 4840 match community 1_50_170 1_51_169 1_52_168 1_53_167 1_54_166 set community 0:220 route-map calculator permit 4841 match community 1_55_165 1_56_164 1_57_163 1_58_162 1_59_161 set community 0:220 route-map calculator permit 4842 match community 1_60_160 1_61_159 1_62_158 1_63_157 1_64_156 set community 0:220 route-map calculator permit 4843 match community 1_65_155 1_66_154 1_67_153 1_68_152 1_69_151 set community 0:220 route-map calculator permit 4844 match community 1_70_150 1_71_149 1_72_148 1_73_147 1_74_146 set community 0:220 route-map calculator permit 4845 match community 1_75_145 1_76_144 1_77_143 1_78_142 1_79_141 set community 0:220 route-map calculator permit 4846 match community 1_80_140 1_81_139 1_82_138 1_83_137 1_84_136 set community 0:220 route-map calculator permit 4847 match community 1_85_135 1_86_134 1_87_133 1_88_132 1_89_131 set community 0:220 route-map calculator permit 4848 match community 1_90_130 1_91_129 1_92_128 1_93_127 1_94_126 set community 0:220 route-map calculator permit 4849 match community 1_95_125 1_96_124 1_97_123 1_98_122 1_99_121 set community 0:220 route-map calculator permit 4850 match community 1_100_120 1_101_119 1_102_118 1_103_117 1_104_116 set community 0:220 route-map calculator permit 4851 match community 1_105_115 1_106_114 1_107_113 1_108_112 1_109_111 set community 0:220 route-map calculator permit 4852 match community 1_110_110 c4_220_1 c3_221_1 c3_222_2 c3_223_3 set community 0:220 route-map calculator permit 4853 match community c3_224_4 c3_225_5 c3_226_6 c3_227_7 c3_228_8 set community 0:220 route-map calculator permit 4854 match community c3_229_9 c3_230_10 c3_231_11 c3_232_12 c3_233_13 set community 0:220 route-map calculator permit 4855 match community c3_234_14 c3_235_15 c3_236_16 c3_237_17 c3_238_18 set community 0:220 route-map calculator permit 4856 match community c3_239_19 c3_240_20 c3_241_21 c3_242_22 c3_243_23 set community 0:220 route-map calculator permit 4857 match community c3_244_24 c3_245_25 c3_246_26 c3_247_27 c3_248_28 set community 0:220 route-map calculator permit 4858 match community c3_249_29 c3_250_30 c3_251_31 c3_252_32 c3_253_33 set community 0:220 route-map calculator permit 4859 match community c3_254_34 c3_255_35 c3_256_36 set community 0:220 ip community-list standard 2_11_240 permit 65000:2 0:11 0:240 ip community-list standard 2_12_220 permit 65000:2 0:12 0:220 ip community-list standard 2_15_176 permit 65000:2 0:15 0:176 ip community-list standard 2_16_165 permit 65000:2 0:16 0:165 ip community-list standard 2_20_132 permit 65000:2 0:20 0:132 ip community-list standard 2_22_120 permit 65000:2 0:22 0:120 ip community-list standard 2_24_110 permit 65000:2 0:24 0:110 ip community-list standard 2_30_88 permit 65000:2 0:30 0:88 ip community-list standard 2_33_80 permit 65000:2 0:33 0:80 ip community-list standard 2_40_66 permit 65000:2 0:40 0:66 ip community-list standard 2_44_60 permit 65000:2 0:44 0:60 ip community-list standard 2_48_55 permit 65000:2 0:48 0:55 route-map calculator permit 4860 match community 2_11_240 2_12_220 2_15_176 2_16_165 2_20_132 set community 0:2640 route-map calculator permit 4861 match community 2_22_120 2_24_110 2_30_88 2_33_80 2_40_66 set community 0:2640 route-map calculator permit 4862 match community 2_44_60 2_48_55 set community 0:2640 ip community-list standard 2_20_145 permit 65000:2 0:20 0:145 ip community-list standard 2_25_116 permit 65000:2 0:25 0:116 ip community-list standard 2_29_100 permit 65000:2 0:29 0:100 ip community-list standard 2_50_58 permit 65000:2 0:50 0:58 route-map calculator permit 4863 match community 2_20_145 2_25_116 2_29_100 2_50_58 set community 0:2900 ip community-list standard 2_55_236 permit 65000:2 0:55 0:236 ip community-list standard 2_59_220 permit 65000:2 0:59 0:220 ip community-list standard 2_110_118 permit 65000:2 0:110 0:118 route-map calculator permit 4864 match community 2_55_236 2_59_220 2_110_118 set community 0:12980 ip community-list standard 2_4_219 permit 65000:2 0:4 0:219 ip community-list standard 2_6_146 permit 65000:2 0:6 0:146 ip community-list standard 2_12_73 permit 65000:2 0:12 0:73 route-map calculator permit 4865 match community 2_4_219 2_6_146 2_12_73 set community 0:876 ip community-list standard 2_100_139 permit 65000:2 0:100 0:139 route-map calculator permit 4866 match community 2_100_139 set community 0:13900 ip community-list standard 2_188_228 permit 65000:2 0:188 0:228 route-map calculator permit 4867 match community 2_188_228 set community 0:42864 ip community-list standard 2_142_230 permit 65000:2 0:142 0:230 route-map calculator permit 4868 match community 2_142_230 set community 0:32660 ip community-list standard 2_79_211 permit 65000:2 0:79 0:211 route-map calculator permit 4869 match community 2_79_211 set community 0:16669 ip community-list standard 2_43_231 permit 65000:2 0:43 0:231 ip community-list standard 2_77_129 permit 65000:2 0:77 0:129 route-map calculator permit 4870 match community 2_43_231 2_77_129 set community 0:9933 ip community-list standard 2_160_252 permit 65000:2 0:160 0:252 ip community-list standard 2_168_240 permit 65000:2 0:168 0:240 ip community-list standard 2_180_224 permit 65000:2 0:180 0:224 ip community-list standard 2_192_210 permit 65000:2 0:192 0:210 route-map calculator permit 4871 match community 2_160_252 2_168_240 2_180_224 2_192_210 set community 0:40320 ip community-list standard 2_174_203 permit 65000:2 0:174 0:203 route-map calculator permit 4872 match community 2_174_203 set community 0:35322 ip community-list standard 2_205_229 permit 65000:2 0:205 0:229 route-map calculator permit 4873 match community 2_205_229 set community 0:46945 ip community-list standard 2_56_226 permit 65000:2 0:56 0:226 ip community-list standard 2_112_113 permit 65000:2 0:112 0:113 route-map calculator permit 4874 match community 2_56_226 2_112_113 set community 0:12656 ip community-list standard 2_62_214 permit 65000:2 0:62 0:214 ip community-list standard 2_107_124 permit 65000:2 0:107 0:124 route-map calculator permit 4875 match community 2_62_214 2_107_124 set community 0:13268 ip community-list standard 2_148_181 permit 65000:2 0:148 0:181 route-map calculator permit 4876 match community 2_148_181 set community 0:26788 ip community-list standard 2_133_230 permit 65000:2 0:133 0:230 ip community-list standard 2_161_190 permit 65000:2 0:161 0:190 route-map calculator permit 4877 match community 2_133_230 2_161_190 set community 0:30590 ip community-list standard 2_207_214 permit 65000:2 0:207 0:214 route-map calculator permit 4878 match community 2_207_214 set community 0:44298 ip community-list standard 2_44_229 permit 65000:2 0:44 0:229 route-map calculator permit 4879 match community 2_44_229 set community 0:10076 ip community-list standard 2_100_201 permit 65000:2 0:100 0:201 ip community-list standard 2_134_150 permit 65000:2 0:134 0:150 route-map calculator permit 4880 match community 2_100_201 2_134_150 set community 0:20100 ip community-list standard 2_48_243 permit 65000:2 0:48 0:243 ip community-list standard 2_54_216 permit 65000:2 0:54 0:216 ip community-list standard 2_72_162 permit 65000:2 0:72 0:162 ip community-list standard 2_81_144 permit 65000:2 0:81 0:144 ip community-list standard 2_108_108 permit 65000:2 0:108 0:108 route-map calculator permit 4881 match community 2_48_243 2_54_216 2_72_162 2_81_144 2_108_108 set community 0:11664 ip community-list standard 2_17_193 permit 65000:2 0:17 0:193 route-map calculator permit 4882 match community 2_17_193 set community 0:3281 ip community-list standard 2_48_241 permit 65000:2 0:48 0:241 route-map calculator permit 4883 match community 2_48_241 set community 0:11568 ip community-list standard 2_187_204 permit 65000:2 0:187 0:204 route-map calculator permit 4884 match community 2_187_204 set community 0:38148 ip community-list standard 2_228_238 permit 65000:2 0:228 0:238 route-map calculator permit 4885 match community 2_228_238 set community 0:54264 ip community-list standard 2_72_199 permit 65000:2 0:72 0:199 route-map calculator permit 4886 match community 2_72_199 set community 0:14328 ip community-list standard 2_31_109 permit 65000:2 0:31 0:109 route-map calculator permit 4887 match community 2_31_109 set community 0:3379 ip community-list standard 2_32_146 permit 65000:2 0:32 0:146 ip community-list standard 2_64_73 permit 65000:2 0:64 0:73 route-map calculator permit 4888 match community 2_32_146 2_64_73 set community 0:4672 ip community-list standard 2_176_252 permit 65000:2 0:176 0:252 ip community-list standard 2_192_231 permit 65000:2 0:192 0:231 ip community-list standard 2_198_224 permit 65000:2 0:198 0:224 route-map calculator permit 4889 match community 2_176_252 2_192_231 2_198_224 set community 0:44352 ip community-list standard 2_204_213 permit 65000:2 0:204 0:213 route-map calculator permit 4890 match community 2_204_213 set community 0:43452 ip community-list standard 2_43_106 permit 65000:2 0:43 0:106 ip community-list standard 2_53_86 permit 65000:2 0:53 0:86 route-map calculator permit 4891 match community 2_43_106 2_53_86 set community 0:4558 ip community-list standard 2_30_139 permit 65000:2 0:30 0:139 route-map calculator permit 4892 match community 2_30_139 set community 0:4170 ip community-list standard 2_213_255 permit 65000:2 0:213 0:255 route-map calculator permit 4893 match community 2_213_255 set community 0:54315 ip community-list standard 2_3_177 permit 65000:2 0:3 0:177 ip community-list standard 2_9_59 permit 65000:2 0:9 0:59 route-map calculator permit 4894 match community 2_3_177 2_9_59 set community 0:531 ip community-list standard 2_18_242 permit 65000:2 0:18 0:242 ip community-list standard 2_22_198 permit 65000:2 0:22 0:198 ip community-list standard 2_33_132 permit 65000:2 0:33 0:132 ip community-list standard 2_36_121 permit 65000:2 0:36 0:121 ip community-list standard 2_44_99 permit 65000:2 0:44 0:99 ip community-list standard 2_66_66 permit 65000:2 0:66 0:66 route-map calculator permit 4895 match community 2_18_242 2_22_198 2_33_132 2_36_121 2_44_99 set community 0:4356 route-map calculator permit 4896 match community 2_66_66 set community 0:4356 ip community-list standard 2_74_212 permit 65000:2 0:74 0:212 ip community-list standard 2_106_148 permit 65000:2 0:106 0:148 route-map calculator permit 4897 match community 2_74_212 2_106_148 set community 0:15688 ip community-list standard 2_125_227 permit 65000:2 0:125 0:227 route-map calculator permit 4898 match community 2_125_227 set community 0:28375 ip community-list standard 2_161_222 permit 65000:2 0:161 0:222 route-map calculator permit 4899 match community 2_161_222 set community 0:35742 ip community-list standard 2_238_246 permit 65000:2 0:238 0:246 route-map calculator permit 4900 match community 2_238_246 set community 0:58548 ip community-list standard 2_113_221 permit 65000:2 0:113 0:221 route-map calculator permit 4901 match community 2_113_221 set community 0:24973 ip community-list standard 2_101_197 permit 65000:2 0:101 0:197 route-map calculator permit 4902 match community 2_101_197 set community 0:19897 ip community-list standard 2_180_226 permit 65000:2 0:180 0:226 route-map calculator permit 4903 match community 2_180_226 set community 0:40680 ip community-list standard 2_27_157 permit 65000:2 0:27 0:157 route-map calculator permit 4904 match community 2_27_157 set community 0:4239 ip community-list standard 2_73_73 permit 65000:2 0:73 0:73 route-map calculator permit 4905 match community 2_73_73 set community 0:5329 ip community-list standard 2_69_226 permit 65000:2 0:69 0:226 ip community-list standard 2_113_138 permit 65000:2 0:113 0:138 route-map calculator permit 4906 match community 2_69_226 2_113_138 set community 0:15594 ip community-list standard 2_191_218 permit 65000:2 0:191 0:218 route-map calculator permit 4907 match community 2_191_218 set community 0:41638 ip community-list standard 2_66_181 permit 65000:2 0:66 0:181 route-map calculator permit 4908 match community 2_66_181 set community 0:11946 ip community-list standard 2_82_139 permit 65000:2 0:82 0:139 route-map calculator permit 4909 match community 2_82_139 set community 0:11398 ip community-list standard 2_89_97 permit 65000:2 0:89 0:97 route-map calculator permit 4910 match community 2_89_97 set community 0:8633 ip community-list standard 2_21_167 permit 65000:2 0:21 0:167 route-map calculator permit 4911 match community 2_21_167 set community 0:3507 ip community-list standard 2_19_225 permit 65000:2 0:19 0:225 ip community-list standard 2_25_171 permit 65000:2 0:25 0:171 ip community-list standard 2_45_95 permit 65000:2 0:45 0:95 ip community-list standard 2_57_75 permit 65000:2 0:57 0:75 route-map calculator permit 4912 match community 2_19_225 2_25_171 2_45_95 2_57_75 set community 0:4275 ip community-list standard 2_121_254 permit 65000:2 0:121 0:254 ip community-list standard 2_127_242 permit 65000:2 0:127 0:242 route-map calculator permit 4913 match community 2_121_254 2_127_242 set community 0:30734 ip community-list standard 2_169_172 permit 65000:2 0:169 0:172 route-map calculator permit 4914 match community 2_169_172 set community 0:29068 ip community-list standard 2_71_253 permit 65000:2 0:71 0:253 route-map calculator permit 4915 match community 2_71_253 set community 0:17963 ip community-list standard 2_49_73 permit 65000:2 0:49 0:73 route-map calculator permit 4916 match community 2_49_73 set community 0:3577 ip community-list standard 2_57_145 permit 65000:2 0:57 0:145 ip community-list standard 2_87_95 permit 65000:2 0:87 0:95 route-map calculator permit 4917 match community 2_57_145 2_87_95 set community 0:8265 ip community-list standard 2_232_248 permit 65000:2 0:232 0:248 route-map calculator permit 4918 match community 2_232_248 set community 0:57536 ip community-list standard 2_146_161 permit 65000:2 0:146 0:161 route-map calculator permit 4919 match community 2_146_161 set community 0:23506 ip community-list standard 2_52_178 permit 65000:2 0:52 0:178 ip community-list standard 2_89_104 permit 65000:2 0:89 0:104 route-map calculator permit 4920 match community 2_52_178 2_89_104 set community 0:9256 ip community-list standard 2_92_208 permit 65000:2 0:92 0:208 ip community-list standard 2_104_184 permit 65000:2 0:104 0:184 route-map calculator permit 4921 match community 2_92_208 2_104_184 set community 0:19136 ip community-list standard 2_45_256 permit 65000:2 0:45 0:256 ip community-list standard 2_48_240 permit 65000:2 0:48 0:240 ip community-list standard 2_60_192 permit 65000:2 0:60 0:192 ip community-list standard 2_64_180 permit 65000:2 0:64 0:180 ip community-list standard 2_72_160 permit 65000:2 0:72 0:160 ip community-list standard 2_80_144 permit 65000:2 0:80 0:144 ip community-list standard 2_90_128 permit 65000:2 0:90 0:128 ip community-list standard 2_96_120 permit 65000:2 0:96 0:120 route-map calculator permit 4922 match community 2_45_256 2_48_240 2_60_192 2_64_180 2_72_160 set community 0:11520 route-map calculator permit 4923 match community 2_80_144 2_90_128 2_96_120 set community 0:11520 ip community-list standard 2_135_240 permit 65000:2 0:135 0:240 ip community-list standard 2_144_225 permit 65000:2 0:144 0:225 ip community-list standard 2_150_216 permit 65000:2 0:150 0:216 ip community-list standard 2_162_200 permit 65000:2 0:162 0:200 ip community-list standard 2_180_180 permit 65000:2 0:180 0:180 route-map calculator permit 4924 match community 2_135_240 2_144_225 2_150_216 2_162_200 2_180_180 set community 0:32400 ip community-list standard 2_190_228 permit 65000:2 0:190 0:228 route-map calculator permit 4925 match community 2_190_228 set community 0:43320 ip community-list standard 2_83_252 permit 65000:2 0:83 0:252 ip community-list standard 2_84_249 permit 65000:2 0:84 0:249 ip community-list standard 2_126_166 permit 65000:2 0:126 0:166 route-map calculator permit 4926 match community 2_83_252 2_84_249 2_126_166 set community 0:20916 ip community-list standard 2_170_244 permit 65000:2 0:170 0:244 route-map calculator permit 4927 match community 2_170_244 set community 0:41480 ip community-list standard 2_163_232 permit 65000:2 0:163 0:232 route-map calculator permit 4928 match community 2_163_232 set community 0:37816 ip community-list standard 2_187_247 permit 65000:2 0:187 0:247 ip community-list standard 2_209_221 permit 65000:2 0:209 0:221 route-map calculator permit 4929 match community 2_187_247 2_209_221 set community 0:46189 ip community-list standard 2_130_155 permit 65000:2 0:130 0:155 route-map calculator permit 4930 match community 2_130_155 set community 0:20150 ip community-list standard 2_147_194 permit 65000:2 0:147 0:194 route-map calculator permit 4931 match community 2_147_194 set community 0:28518 ip community-list standard 2_220_253 permit 65000:2 0:220 0:253 ip community-list standard 2_230_242 permit 65000:2 0:230 0:242 route-map calculator permit 4932 match community 2_220_253 2_230_242 set community 0:55660 ip community-list standard 2_25_167 permit 65000:2 0:25 0:167 route-map calculator permit 4933 match community 2_25_167 set community 0:4175 ip community-list standard 2_143_211 permit 65000:2 0:143 0:211 route-map calculator permit 4934 match community 2_143_211 set community 0:30173 ip community-list standard 2_71_238 permit 65000:2 0:71 0:238 ip community-list standard 2_119_142 permit 65000:2 0:119 0:142 route-map calculator permit 4935 match community 2_71_238 2_119_142 set community 0:16898 ip community-list standard 2_57_113 permit 65000:2 0:57 0:113 route-map calculator permit 4936 match community 2_57_113 set community 0:6441 ip community-list standard 2_44_142 permit 65000:2 0:44 0:142 ip community-list standard 2_71_88 permit 65000:2 0:71 0:88 route-map calculator permit 4937 match community 2_44_142 2_71_88 set community 0:6248 ip community-list standard 2_162_256 permit 65000:2 0:162 0:256 ip community-list standard 2_192_216 permit 65000:2 0:192 0:216 route-map calculator permit 4938 match community 2_162_256 2_192_216 set community 0:41472 ip community-list standard 2_175_185 permit 65000:2 0:175 0:185 route-map calculator permit 4939 match community 2_175_185 set community 0:32375 ip community-list standard 2_214_228 permit 65000:2 0:214 0:228 route-map calculator permit 4940 match community 2_214_228 set community 0:48792 ip community-list standard 2_187_187 permit 65000:2 0:187 0:187 route-map calculator permit 4941 match community 2_187_187 set community 0:34969 ip community-list standard 2_19_189 permit 65000:2 0:19 0:189 ip community-list standard 2_21_171 permit 65000:2 0:21 0:171 ip community-list standard 2_27_133 permit 65000:2 0:27 0:133 ip community-list standard 2_57_63 permit 65000:2 0:57 0:63 route-map calculator permit 4942 match community 2_19_189 2_21_171 2_27_133 2_57_63 set community 0:3591 ip community-list standard 2_208_213 permit 65000:2 0:208 0:213 route-map calculator permit 4943 match community 2_208_213 set community 0:44304 ip community-list standard 2_9_247 permit 65000:2 0:9 0:247 ip community-list standard 2_13_171 permit 65000:2 0:13 0:171 ip community-list standard 2_19_117 permit 65000:2 0:19 0:117 ip community-list standard 2_39_57 permit 65000:2 0:39 0:57 route-map calculator permit 4944 match community 2_9_247 2_13_171 2_19_117 2_39_57 set community 0:2223 ip community-list standard 2_178_218 permit 65000:2 0:178 0:218 route-map calculator permit 4945 match community 2_178_218 set community 0:38804 ip community-list standard 2_37_158 permit 65000:2 0:37 0:158 ip community-list standard 2_74_79 permit 65000:2 0:74 0:79 route-map calculator permit 4946 match community 2_37_158 2_74_79 set community 0:5846 ip community-list standard 2_108_254 permit 65000:2 0:108 0:254 ip community-list standard 2_127_216 permit 65000:2 0:127 0:216 route-map calculator permit 4947 match community 2_108_254 2_127_216 set community 0:27432 ip community-list standard 2_100_244 permit 65000:2 0:100 0:244 ip community-list standard 2_122_200 permit 65000:2 0:122 0:200 route-map calculator permit 4948 match community 2_100_244 2_122_200 set community 0:24400 ip community-list standard 2_99_251 permit 65000:2 0:99 0:251 route-map calculator permit 4949 match community 2_99_251 set community 0:24849 ip community-list standard 2_120_239 permit 65000:2 0:120 0:239 route-map calculator permit 4950 match community 2_120_239 set community 0:28680 ip community-list standard 2_87_210 permit 65000:2 0:87 0:210 ip community-list standard 2_90_203 permit 65000:2 0:90 0:203 ip community-list standard 2_105_174 permit 65000:2 0:105 0:174 ip community-list standard 2_126_145 permit 65000:2 0:126 0:145 route-map calculator permit 4951 match community 2_87_210 2_90_203 2_105_174 2_126_145 set community 0:18270 ip community-list standard 2_104_243 permit 65000:2 0:104 0:243 ip community-list standard 2_108_234 permit 65000:2 0:108 0:234 ip community-list standard 2_117_216 permit 65000:2 0:117 0:216 ip community-list standard 2_156_162 permit 65000:2 0:156 0:162 route-map calculator permit 4952 match community 2_104_243 2_108_234 2_117_216 2_156_162 set community 0:25272 ip community-list standard 2_87_141 permit 65000:2 0:87 0:141 route-map calculator permit 4953 match community 2_87_141 set community 0:12267 ip community-list standard 2_199_211 permit 65000:2 0:199 0:211 route-map calculator permit 4954 match community 2_199_211 set community 0:41989 ip community-list standard 2_28_248 permit 65000:2 0:28 0:248 ip community-list standard 2_31_224 permit 65000:2 0:31 0:224 ip community-list standard 2_32_217 permit 65000:2 0:32 0:217 ip community-list standard 2_56_124 permit 65000:2 0:56 0:124 ip community-list standard 2_62_112 permit 65000:2 0:62 0:112 route-map calculator permit 4955 match community 2_28_248 2_31_224 2_32_217 2_56_124 2_62_112 set community 0:6944 ip community-list standard 2_37_139 permit 65000:2 0:37 0:139 route-map calculator permit 4956 match community 2_37_139 set community 0:5143 ip community-list standard 2_129_176 permit 65000:2 0:129 0:176 ip community-list standard 2_132_172 permit 65000:2 0:132 0:172 route-map calculator permit 4957 match community 2_129_176 2_132_172 set community 0:22704 ip community-list standard 2_175_199 permit 65000:2 0:175 0:199 route-map calculator permit 4958 match community 2_175_199 set community 0:34825 ip community-list standard 2_35_97 permit 65000:2 0:35 0:97 route-map calculator permit 4959 match community 2_35_97 set community 0:3395 ip community-list standard 2_31_137 permit 65000:2 0:31 0:137 route-map calculator permit 4960 match community 2_31_137 set community 0:4247 ip community-list standard 2_171_203 permit 65000:2 0:171 0:203 route-map calculator permit 4961 match community 2_171_203 set community 0:34713 ip community-list standard 2_167_190 permit 65000:2 0:167 0:190 route-map calculator permit 4962 match community 2_167_190 set community 0:31730 ip community-list standard 2_56_232 permit 65000:2 0:56 0:232 ip community-list standard 2_58_224 permit 65000:2 0:58 0:224 ip community-list standard 2_64_203 permit 65000:2 0:64 0:203 ip community-list standard 2_112_116 permit 65000:2 0:112 0:116 route-map calculator permit 4963 match community 2_56_232 2_58_224 2_64_203 2_112_116 set community 0:12992 ip community-list standard 2_41_166 permit 65000:2 0:41 0:166 ip community-list standard 2_82_83 permit 65000:2 0:82 0:83 route-map calculator permit 4964 match community 2_41_166 2_82_83 set community 0:6806 ip community-list standard 2_2_147 permit 65000:2 0:2 0:147 ip community-list standard 2_3_98 permit 65000:2 0:3 0:98 ip community-list standard 2_6_49 permit 65000:2 0:6 0:49 ip community-list standard 2_7_42 permit 65000:2 0:7 0:42 ip community-list standard 2_14_21 permit 65000:2 0:14 0:21 ip community-list standard 1_38_256 permit 65000:1 0:38 0:256 ip community-list standard 1_39_255 permit 65000:1 0:39 0:255 ip community-list standard 1_40_254 permit 65000:1 0:40 0:254 ip community-list standard 1_41_253 permit 65000:1 0:41 0:253 ip community-list standard 1_42_252 permit 65000:1 0:42 0:252 ip community-list standard 1_43_251 permit 65000:1 0:43 0:251 ip community-list standard 1_44_250 permit 65000:1 0:44 0:250 ip community-list standard 1_45_249 permit 65000:1 0:45 0:249 ip community-list standard 1_46_248 permit 65000:1 0:46 0:248 ip community-list standard 1_47_247 permit 65000:1 0:47 0:247 ip community-list standard 1_48_246 permit 65000:1 0:48 0:246 ip community-list standard 1_49_245 permit 65000:1 0:49 0:245 ip community-list standard 1_50_244 permit 65000:1 0:50 0:244 ip community-list standard 1_51_243 permit 65000:1 0:51 0:243 ip community-list standard 1_52_242 permit 65000:1 0:52 0:242 ip community-list standard 1_53_241 permit 65000:1 0:53 0:241 ip community-list standard 1_54_240 permit 65000:1 0:54 0:240 ip community-list standard 1_55_239 permit 65000:1 0:55 0:239 ip community-list standard 1_56_238 permit 65000:1 0:56 0:238 ip community-list standard 1_57_237 permit 65000:1 0:57 0:237 ip community-list standard 1_58_236 permit 65000:1 0:58 0:236 ip community-list standard 1_59_235 permit 65000:1 0:59 0:235 ip community-list standard 1_60_234 permit 65000:1 0:60 0:234 ip community-list standard 1_61_233 permit 65000:1 0:61 0:233 ip community-list standard 1_62_232 permit 65000:1 0:62 0:232 ip community-list standard 1_63_231 permit 65000:1 0:63 0:231 ip community-list standard 1_64_230 permit 65000:1 0:64 0:230 ip community-list standard 1_65_229 permit 65000:1 0:65 0:229 ip community-list standard 1_66_228 permit 65000:1 0:66 0:228 ip community-list standard 1_67_227 permit 65000:1 0:67 0:227 ip community-list standard 1_68_226 permit 65000:1 0:68 0:226 ip community-list standard 1_69_225 permit 65000:1 0:69 0:225 ip community-list standard 1_70_224 permit 65000:1 0:70 0:224 ip community-list standard 1_71_223 permit 65000:1 0:71 0:223 ip community-list standard 1_72_222 permit 65000:1 0:72 0:222 ip community-list standard 1_73_221 permit 65000:1 0:73 0:221 ip community-list standard 1_74_220 permit 65000:1 0:74 0:220 ip community-list standard 1_75_219 permit 65000:1 0:75 0:219 ip community-list standard 1_76_218 permit 65000:1 0:76 0:218 ip community-list standard 1_77_217 permit 65000:1 0:77 0:217 ip community-list standard 1_78_216 permit 65000:1 0:78 0:216 ip community-list standard 1_79_215 permit 65000:1 0:79 0:215 ip community-list standard 1_80_214 permit 65000:1 0:80 0:214 ip community-list standard 1_81_213 permit 65000:1 0:81 0:213 ip community-list standard 1_82_212 permit 65000:1 0:82 0:212 ip community-list standard 1_83_211 permit 65000:1 0:83 0:211 ip community-list standard 1_84_210 permit 65000:1 0:84 0:210 ip community-list standard 1_85_209 permit 65000:1 0:85 0:209 ip community-list standard 1_86_208 permit 65000:1 0:86 0:208 ip community-list standard 1_87_207 permit 65000:1 0:87 0:207 ip community-list standard 1_88_206 permit 65000:1 0:88 0:206 ip community-list standard 1_89_205 permit 65000:1 0:89 0:205 ip community-list standard 1_90_204 permit 65000:1 0:90 0:204 ip community-list standard 1_91_203 permit 65000:1 0:91 0:203 ip community-list standard 1_92_202 permit 65000:1 0:92 0:202 ip community-list standard 1_93_201 permit 65000:1 0:93 0:201 ip community-list standard 1_94_200 permit 65000:1 0:94 0:200 ip community-list standard 1_95_199 permit 65000:1 0:95 0:199 ip community-list standard 1_96_198 permit 65000:1 0:96 0:198 ip community-list standard 1_97_197 permit 65000:1 0:97 0:197 ip community-list standard 1_98_196 permit 65000:1 0:98 0:196 ip community-list standard 1_99_195 permit 65000:1 0:99 0:195 ip community-list standard 1_100_194 permit 65000:1 0:100 0:194 ip community-list standard 1_101_193 permit 65000:1 0:101 0:193 ip community-list standard 1_102_192 permit 65000:1 0:102 0:192 ip community-list standard 1_103_191 permit 65000:1 0:103 0:191 ip community-list standard 1_104_190 permit 65000:1 0:104 0:190 ip community-list standard 1_105_189 permit 65000:1 0:105 0:189 ip community-list standard 1_106_188 permit 65000:1 0:106 0:188 ip community-list standard 1_107_187 permit 65000:1 0:107 0:187 ip community-list standard 1_108_186 permit 65000:1 0:108 0:186 ip community-list standard 1_109_185 permit 65000:1 0:109 0:185 ip community-list standard 1_110_184 permit 65000:1 0:110 0:184 ip community-list standard 1_111_183 permit 65000:1 0:111 0:183 ip community-list standard 1_112_182 permit 65000:1 0:112 0:182 ip community-list standard 1_113_181 permit 65000:1 0:113 0:181 ip community-list standard 1_114_180 permit 65000:1 0:114 0:180 ip community-list standard 1_115_179 permit 65000:1 0:115 0:179 ip community-list standard 1_116_178 permit 65000:1 0:116 0:178 ip community-list standard 1_117_177 permit 65000:1 0:117 0:177 ip community-list standard 1_118_176 permit 65000:1 0:118 0:176 ip community-list standard 1_119_175 permit 65000:1 0:119 0:175 ip community-list standard 1_120_174 permit 65000:1 0:120 0:174 ip community-list standard 1_121_173 permit 65000:1 0:121 0:173 ip community-list standard 1_122_172 permit 65000:1 0:122 0:172 ip community-list standard 1_123_171 permit 65000:1 0:123 0:171 ip community-list standard 1_124_170 permit 65000:1 0:124 0:170 ip community-list standard 1_125_169 permit 65000:1 0:125 0:169 ip community-list standard 1_126_168 permit 65000:1 0:126 0:168 ip community-list standard 1_127_167 permit 65000:1 0:127 0:167 ip community-list standard 1_128_166 permit 65000:1 0:128 0:166 ip community-list standard 1_129_165 permit 65000:1 0:129 0:165 ip community-list standard 1_130_164 permit 65000:1 0:130 0:164 ip community-list standard 1_131_163 permit 65000:1 0:131 0:163 ip community-list standard 1_132_162 permit 65000:1 0:132 0:162 ip community-list standard 1_133_161 permit 65000:1 0:133 0:161 ip community-list standard 1_134_160 permit 65000:1 0:134 0:160 ip community-list standard 1_135_159 permit 65000:1 0:135 0:159 ip community-list standard 1_136_158 permit 65000:1 0:136 0:158 ip community-list standard 1_137_157 permit 65000:1 0:137 0:157 ip community-list standard 1_138_156 permit 65000:1 0:138 0:156 ip community-list standard 1_139_155 permit 65000:1 0:139 0:155 ip community-list standard 1_140_154 permit 65000:1 0:140 0:154 ip community-list standard 1_141_153 permit 65000:1 0:141 0:153 ip community-list standard 1_142_152 permit 65000:1 0:142 0:152 ip community-list standard 1_143_151 permit 65000:1 0:143 0:151 ip community-list standard 1_144_150 permit 65000:1 0:144 0:150 ip community-list standard 1_145_149 permit 65000:1 0:145 0:149 ip community-list standard 1_146_148 permit 65000:1 0:146 0:148 ip community-list standard 1_147_147 permit 65000:1 0:147 0:147 route-map calculator permit 4965 match community 2_2_147 2_3_98 2_6_49 2_7_42 2_14_21 set community 0:294 route-map calculator permit 4966 match community 1_38_256 1_39_255 1_40_254 1_41_253 1_42_252 set community 0:294 route-map calculator permit 4967 match community 1_43_251 1_44_250 1_45_249 1_46_248 1_47_247 set community 0:294 route-map calculator permit 4968 match community 1_48_246 1_49_245 1_50_244 1_51_243 1_52_242 set community 0:294 route-map calculator permit 4969 match community 1_53_241 1_54_240 1_55_239 1_56_238 1_57_237 set community 0:294 route-map calculator permit 4970 match community 1_58_236 1_59_235 1_60_234 1_61_233 1_62_232 set community 0:294 route-map calculator permit 4971 match community 1_63_231 1_64_230 1_65_229 1_66_228 1_67_227 set community 0:294 route-map calculator permit 4972 match community 1_68_226 1_69_225 1_70_224 1_71_223 1_72_222 set community 0:294 route-map calculator permit 4973 match community 1_73_221 1_74_220 1_75_219 1_76_218 1_77_217 set community 0:294 route-map calculator permit 4974 match community 1_78_216 1_79_215 1_80_214 1_81_213 1_82_212 set community 0:294 route-map calculator permit 4975 match community 1_83_211 1_84_210 1_85_209 1_86_208 1_87_207 set community 0:294 route-map calculator permit 4976 match community 1_88_206 1_89_205 1_90_204 1_91_203 1_92_202 set community 0:294 route-map calculator permit 4977 match community 1_93_201 1_94_200 1_95_199 1_96_198 1_97_197 set community 0:294 route-map calculator permit 4978 match community 1_98_196 1_99_195 1_100_194 1_101_193 1_102_192 set community 0:294 route-map calculator permit 4979 match community 1_103_191 1_104_190 1_105_189 1_106_188 1_107_187 set community 0:294 route-map calculator permit 4980 match community 1_108_186 1_109_185 1_110_184 1_111_183 1_112_182 set community 0:294 route-map calculator permit 4981 match community 1_113_181 1_114_180 1_115_179 1_116_178 1_117_177 set community 0:294 route-map calculator permit 4982 match community 1_118_176 1_119_175 1_120_174 1_121_173 1_122_172 set community 0:294 route-map calculator permit 4983 match community 1_123_171 1_124_170 1_125_169 1_126_168 1_127_167 set community 0:294 route-map calculator permit 4984 match community 1_128_166 1_129_165 1_130_164 1_131_163 1_132_162 set community 0:294 route-map calculator permit 4985 match community 1_133_161 1_134_160 1_135_159 1_136_158 1_137_157 set community 0:294 route-map calculator permit 4986 match community 1_138_156 1_139_155 1_140_154 1_141_153 1_142_152 set community 0:294 route-map calculator permit 4987 match community 1_143_151 1_144_150 1_145_149 1_146_148 1_147_147 set community 0:294 ip community-list standard 2_15_218 permit 65000:2 0:15 0:218 ip community-list standard 2_30_109 permit 65000:2 0:30 0:109 route-map calculator permit 4988 match community 2_15_218 2_30_109 set community 0:3270 ip community-list standard 2_168_181 permit 65000:2 0:168 0:181 route-map calculator permit 4989 match community 2_168_181 set community 0:30408 ip community-list standard 2_12_167 permit 65000:2 0:12 0:167 route-map calculator permit 4990 match community 2_12_167 set community 0:2004 ip community-list standard 2_174_254 permit 65000:2 0:174 0:254 route-map calculator permit 4991 match community 2_174_254 set community 0:44196 ip community-list standard 2_49_121 permit 65000:2 0:49 0:121 ip community-list standard 2_77_77 permit 65000:2 0:77 0:77 route-map calculator permit 4992 match community 2_49_121 2_77_77 set community 0:5929 ip community-list standard 2_131_214 permit 65000:2 0:131 0:214 route-map calculator permit 4993 match community 2_131_214 set community 0:28034 ip community-list standard 2_248_249 permit 65000:2 0:248 0:249 route-map calculator permit 4994 match community 2_248_249 set community 0:61752 ip community-list standard 2_19_249 permit 65000:2 0:19 0:249 ip community-list standard 2_57_83 permit 65000:2 0:57 0:83 route-map calculator permit 4995 match community 2_19_249 2_57_83 set community 0:4731 ip community-list standard 2_168_242 permit 65000:2 0:168 0:242 ip community-list standard 2_176_231 permit 65000:2 0:176 0:231 route-map calculator permit 4996 match community 2_168_242 2_176_231 set community 0:40656 ip community-list standard 2_131_193 permit 65000:2 0:131 0:193 route-map calculator permit 4997 match community 2_131_193 set community 0:25283 ip community-list standard 2_13_256 permit 65000:2 0:13 0:256 ip community-list standard 2_16_208 permit 65000:2 0:16 0:208 ip community-list standard 2_26_128 permit 65000:2 0:26 0:128 ip community-list standard 2_32_104 permit 65000:2 0:32 0:104 ip community-list standard 2_52_64 permit 65000:2 0:52 0:64 route-map calculator permit 4998 match community 2_13_256 2_16_208 2_26_128 2_32_104 2_52_64 set community 0:3328 ip community-list standard 2_238_242 permit 65000:2 0:238 0:242 route-map calculator permit 4999 match community 2_238_242 set community 0:57596 ip community-list standard 2_67_216 permit 65000:2 0:67 0:216 ip community-list standard 2_72_201 permit 65000:2 0:72 0:201 ip community-list standard 2_108_134 permit 65000:2 0:108 0:134 route-map calculator permit 5000 match community 2_67_216 2_72_201 2_108_134 set community 0:14472 ip community-list standard 2_178_203 permit 65000:2 0:178 0:203 route-map calculator permit 5001 match community 2_178_203 set community 0:36134 ip community-list standard 2_155_177 permit 65000:2 0:155 0:177 route-map calculator permit 5002 match community 2_155_177 set community 0:27435 ip community-list standard 2_63_131 permit 65000:2 0:63 0:131 route-map calculator permit 5003 match community 2_63_131 set community 0:8253 ip community-list standard 2_65_232 permit 65000:2 0:65 0:232 ip community-list standard 2_104_145 permit 65000:2 0:104 0:145 ip community-list standard 2_116_130 permit 65000:2 0:116 0:130 route-map calculator permit 5004 match community 2_65_232 2_104_145 2_116_130 set community 0:15080 ip community-list standard 2_173_194 permit 65000:2 0:173 0:194 route-map calculator permit 5005 match community 2_173_194 set community 0:33562 ip community-list standard 2_145_210 permit 65000:2 0:145 0:210 ip community-list standard 2_150_203 permit 65000:2 0:150 0:203 ip community-list standard 2_174_175 permit 65000:2 0:174 0:175 route-map calculator permit 5006 match community 2_145_210 2_150_203 2_174_175 set community 0:30450 ip community-list standard 2_54_217 permit 65000:2 0:54 0:217 ip community-list standard 2_62_189 permit 65000:2 0:62 0:189 ip community-list standard 2_63_186 permit 65000:2 0:63 0:186 ip community-list standard 2_93_126 permit 65000:2 0:93 0:126 route-map calculator permit 5007 match community 2_54_217 2_62_189 2_63_186 2_93_126 set community 0:11718 ip community-list standard 2_46_206 permit 65000:2 0:46 0:206 ip community-list standard 2_92_103 permit 65000:2 0:92 0:103 route-map calculator permit 5008 match community 2_46_206 2_92_103 set community 0:9476 ip community-list standard 2_73_163 permit 65000:2 0:73 0:163 route-map calculator permit 5009 match community 2_73_163 set community 0:11899 ip community-list standard 1_1_172 permit 65000:1 0:1 0:172 ip community-list standard 2_1_173 permit 65000:2 0:1 0:173 ip community-list standard 1_2_171 permit 65000:1 0:2 0:171 ip community-list standard 1_3_170 permit 65000:1 0:3 0:170 ip community-list standard 1_4_169 permit 65000:1 0:4 0:169 ip community-list standard 1_5_168 permit 65000:1 0:5 0:168 ip community-list standard 1_6_167 permit 65000:1 0:6 0:167 ip community-list standard 1_7_166 permit 65000:1 0:7 0:166 ip community-list standard 1_8_165 permit 65000:1 0:8 0:165 ip community-list standard 1_9_164 permit 65000:1 0:9 0:164 ip community-list standard 1_10_163 permit 65000:1 0:10 0:163 ip community-list standard 1_11_162 permit 65000:1 0:11 0:162 ip community-list standard 1_12_161 permit 65000:1 0:12 0:161 ip community-list standard 1_13_160 permit 65000:1 0:13 0:160 ip community-list standard 1_14_159 permit 65000:1 0:14 0:159 ip community-list standard 1_15_158 permit 65000:1 0:15 0:158 ip community-list standard 1_16_157 permit 65000:1 0:16 0:157 ip community-list standard 1_17_156 permit 65000:1 0:17 0:156 ip community-list standard 1_18_155 permit 65000:1 0:18 0:155 ip community-list standard 1_19_154 permit 65000:1 0:19 0:154 ip community-list standard 1_20_153 permit 65000:1 0:20 0:153 ip community-list standard 1_21_152 permit 65000:1 0:21 0:152 ip community-list standard 1_22_151 permit 65000:1 0:22 0:151 ip community-list standard 1_23_150 permit 65000:1 0:23 0:150 ip community-list standard 1_24_149 permit 65000:1 0:24 0:149 ip community-list standard 1_25_148 permit 65000:1 0:25 0:148 ip community-list standard 1_26_147 permit 65000:1 0:26 0:147 ip community-list standard 1_27_146 permit 65000:1 0:27 0:146 ip community-list standard 1_28_145 permit 65000:1 0:28 0:145 ip community-list standard 1_29_144 permit 65000:1 0:29 0:144 ip community-list standard 1_30_143 permit 65000:1 0:30 0:143 ip community-list standard 1_31_142 permit 65000:1 0:31 0:142 ip community-list standard 1_32_141 permit 65000:1 0:32 0:141 ip community-list standard 1_33_140 permit 65000:1 0:33 0:140 ip community-list standard 1_34_139 permit 65000:1 0:34 0:139 ip community-list standard 1_35_138 permit 65000:1 0:35 0:138 ip community-list standard 1_36_137 permit 65000:1 0:36 0:137 ip community-list standard 1_37_136 permit 65000:1 0:37 0:136 ip community-list standard 1_38_135 permit 65000:1 0:38 0:135 ip community-list standard 1_39_134 permit 65000:1 0:39 0:134 ip community-list standard 1_40_133 permit 65000:1 0:40 0:133 ip community-list standard 1_41_132 permit 65000:1 0:41 0:132 ip community-list standard 1_42_131 permit 65000:1 0:42 0:131 ip community-list standard 1_43_130 permit 65000:1 0:43 0:130 ip community-list standard 1_44_129 permit 65000:1 0:44 0:129 ip community-list standard 1_45_128 permit 65000:1 0:45 0:128 ip community-list standard 1_46_127 permit 65000:1 0:46 0:127 ip community-list standard 1_47_126 permit 65000:1 0:47 0:126 ip community-list standard 1_48_125 permit 65000:1 0:48 0:125 ip community-list standard 1_49_124 permit 65000:1 0:49 0:124 ip community-list standard 1_50_123 permit 65000:1 0:50 0:123 ip community-list standard 1_51_122 permit 65000:1 0:51 0:122 ip community-list standard 1_52_121 permit 65000:1 0:52 0:121 ip community-list standard 1_53_120 permit 65000:1 0:53 0:120 ip community-list standard 1_54_119 permit 65000:1 0:54 0:119 ip community-list standard 1_55_118 permit 65000:1 0:55 0:118 ip community-list standard 1_56_117 permit 65000:1 0:56 0:117 ip community-list standard 1_57_116 permit 65000:1 0:57 0:116 ip community-list standard 1_58_115 permit 65000:1 0:58 0:115 ip community-list standard 1_59_114 permit 65000:1 0:59 0:114 ip community-list standard 1_60_113 permit 65000:1 0:60 0:113 ip community-list standard 1_61_112 permit 65000:1 0:61 0:112 ip community-list standard 1_62_111 permit 65000:1 0:62 0:111 ip community-list standard 1_63_110 permit 65000:1 0:63 0:110 ip community-list standard 1_64_109 permit 65000:1 0:64 0:109 ip community-list standard 1_65_108 permit 65000:1 0:65 0:108 ip community-list standard 1_66_107 permit 65000:1 0:66 0:107 ip community-list standard 1_67_106 permit 65000:1 0:67 0:106 ip community-list standard 1_68_105 permit 65000:1 0:68 0:105 ip community-list standard 1_69_104 permit 65000:1 0:69 0:104 ip community-list standard 1_70_103 permit 65000:1 0:70 0:103 ip community-list standard 1_71_102 permit 65000:1 0:71 0:102 ip community-list standard 1_72_101 permit 65000:1 0:72 0:101 ip community-list standard 1_73_100 permit 65000:1 0:73 0:100 ip community-list standard 1_74_99 permit 65000:1 0:74 0:99 ip community-list standard 1_75_98 permit 65000:1 0:75 0:98 ip community-list standard 1_76_97 permit 65000:1 0:76 0:97 ip community-list standard 1_77_96 permit 65000:1 0:77 0:96 ip community-list standard 1_78_95 permit 65000:1 0:78 0:95 ip community-list standard 1_79_94 permit 65000:1 0:79 0:94 ip community-list standard 1_80_93 permit 65000:1 0:80 0:93 ip community-list standard 1_81_92 permit 65000:1 0:81 0:92 ip community-list standard 1_82_91 permit 65000:1 0:82 0:91 ip community-list standard 1_83_90 permit 65000:1 0:83 0:90 ip community-list standard 1_84_89 permit 65000:1 0:84 0:89 ip community-list standard 1_85_88 permit 65000:1 0:85 0:88 ip community-list standard 1_86_87 permit 65000:1 0:86 0:87 ip community-list expanded c173 permit 1 ^65000:4_0:173_0:1$ ip community-list expanded c173 permit 2 ^65000:3_0:174_0:1$ ip community-list expanded c173 permit 3 ^65000:3_0:175_0:2$ ip community-list expanded c173 permit 4 ^65000:3_0:176_0:3$ ip community-list expanded c173 permit 5 ^65000:3_0:177_0:4$ ip community-list expanded c173 permit 6 ^65000:3_0:178_0:5$ ip community-list expanded c173 permit 7 ^65000:3_0:179_0:6$ ip community-list expanded c173 permit 8 ^65000:3_0:180_0:7$ ip community-list expanded c173 permit 9 ^65000:3_0:181_0:8$ ip community-list expanded c173 permit 10 ^65000:3_0:182_0:9$ ip community-list expanded c173 permit 11 ^65000:3_0:183_0:10$ ip community-list expanded c173 permit 12 ^65000:3_0:184_0:11$ ip community-list expanded c173 permit 13 ^65000:3_0:185_0:12$ ip community-list expanded c173 permit 14 ^65000:3_0:186_0:13$ ip community-list expanded c173 permit 15 ^65000:3_0:187_0:14$ ip community-list expanded c173 permit 16 ^65000:3_0:188_0:15$ ip community-list expanded c173 permit 17 ^65000:3_0:189_0:16$ ip community-list expanded c173 permit 18 ^65000:3_0:190_0:17$ ip community-list expanded c173 permit 19 ^65000:3_0:191_0:18$ ip community-list expanded c173 permit 20 ^65000:3_0:192_0:19$ ip community-list expanded c173 permit 21 ^65000:3_0:193_0:20$ ip community-list expanded c173 permit 22 ^65000:3_0:194_0:21$ ip community-list expanded c173 permit 23 ^65000:3_0:195_0:22$ ip community-list expanded c173 permit 24 ^65000:3_0:196_0:23$ ip community-list expanded c173 permit 25 ^65000:3_0:197_0:24$ ip community-list expanded c173 permit 26 ^65000:3_0:198_0:25$ ip community-list expanded c173 permit 27 ^65000:3_0:199_0:26$ ip community-list expanded c173 permit 28 ^65000:3_0:200_0:27$ ip community-list expanded c173 permit 29 ^65000:3_0:201_0:28$ ip community-list expanded c173 permit 30 ^65000:3_0:202_0:29$ ip community-list expanded c173 permit 31 ^65000:3_0:203_0:30$ ip community-list expanded c173 permit 32 ^65000:3_0:204_0:31$ ip community-list expanded c173 permit 33 ^65000:3_0:205_0:32$ ip community-list expanded c173 permit 34 ^65000:3_0:206_0:33$ ip community-list expanded c173 permit 35 ^65000:3_0:207_0:34$ ip community-list expanded c173 permit 36 ^65000:3_0:208_0:35$ ip community-list expanded c173 permit 37 ^65000:3_0:209_0:36$ ip community-list expanded c173 permit 38 ^65000:3_0:210_0:37$ ip community-list expanded c173 permit 39 ^65000:3_0:211_0:38$ ip community-list expanded c173 permit 40 ^65000:3_0:212_0:39$ ip community-list expanded c173 permit 41 ^65000:3_0:213_0:40$ ip community-list expanded c173 permit 42 ^65000:3_0:214_0:41$ ip community-list expanded c173 permit 43 ^65000:3_0:215_0:42$ ip community-list expanded c173 permit 44 ^65000:3_0:216_0:43$ ip community-list expanded c173 permit 45 ^65000:3_0:217_0:44$ ip community-list expanded c173 permit 46 ^65000:3_0:218_0:45$ ip community-list expanded c173 permit 47 ^65000:3_0:219_0:46$ ip community-list expanded c173 permit 48 ^65000:3_0:220_0:47$ ip community-list expanded c173 permit 49 ^65000:3_0:221_0:48$ ip community-list expanded c173 permit 50 ^65000:3_0:222_0:49$ ip community-list expanded c173 permit 51 ^65000:3_0:223_0:50$ ip community-list expanded c173 permit 52 ^65000:3_0:224_0:51$ ip community-list expanded c173 permit 53 ^65000:3_0:225_0:52$ ip community-list expanded c173 permit 54 ^65000:3_0:226_0:53$ ip community-list expanded c173 permit 55 ^65000:3_0:227_0:54$ ip community-list expanded c173 permit 56 ^65000:3_0:228_0:55$ ip community-list expanded c173 permit 57 ^65000:3_0:229_0:56$ ip community-list expanded c173 permit 58 ^65000:3_0:230_0:57$ ip community-list expanded c173 permit 59 ^65000:3_0:231_0:58$ ip community-list expanded c173 permit 60 ^65000:3_0:232_0:59$ ip community-list expanded c173 permit 61 ^65000:3_0:233_0:60$ ip community-list expanded c173 permit 62 ^65000:3_0:234_0:61$ ip community-list expanded c173 permit 63 ^65000:3_0:235_0:62$ ip community-list expanded c173 permit 64 ^65000:3_0:236_0:63$ ip community-list expanded c173 permit 65 ^65000:3_0:237_0:64$ ip community-list expanded c173 permit 66 ^65000:3_0:238_0:65$ ip community-list expanded c173 permit 67 ^65000:3_0:239_0:66$ ip community-list expanded c173 permit 68 ^65000:3_0:240_0:67$ ip community-list expanded c173 permit 69 ^65000:3_0:241_0:68$ ip community-list expanded c173 permit 70 ^65000:3_0:242_0:69$ ip community-list expanded c173 permit 71 ^65000:3_0:243_0:70$ ip community-list expanded c173 permit 72 ^65000:3_0:244_0:71$ ip community-list expanded c173 permit 73 ^65000:3_0:245_0:72$ ip community-list expanded c173 permit 74 ^65000:3_0:246_0:73$ ip community-list expanded c173 permit 75 ^65000:3_0:247_0:74$ ip community-list expanded c173 permit 76 ^65000:3_0:248_0:75$ ip community-list expanded c173 permit 77 ^65000:3_0:249_0:76$ ip community-list expanded c173 permit 78 ^65000:3_0:250_0:77$ ip community-list expanded c173 permit 79 ^65000:3_0:251_0:78$ ip community-list expanded c173 permit 80 ^65000:3_0:252_0:79$ ip community-list expanded c173 permit 81 ^65000:3_0:253_0:80$ ip community-list expanded c173 permit 82 ^65000:3_0:254_0:81$ ip community-list expanded c173 permit 83 ^65000:3_0:255_0:82$ ip community-list expanded c173 permit 84 ^65000:3_0:256_0:83$ route-map calculator permit 5010 match community 1_1_172 2_1_173 1_2_171 1_3_170 1_4_169 set community 0:173 route-map calculator permit 5011 match community 1_5_168 1_6_167 1_7_166 1_8_165 1_9_164 set community 0:173 route-map calculator permit 5012 match community 1_10_163 1_11_162 1_12_161 1_13_160 1_14_159 set community 0:173 route-map calculator permit 5013 match community 1_15_158 1_16_157 1_17_156 1_18_155 1_19_154 set community 0:173 route-map calculator permit 5014 match community 1_20_153 1_21_152 1_22_151 1_23_150 1_24_149 set community 0:173 route-map calculator permit 5015 match community 1_25_148 1_26_147 1_27_146 1_28_145 1_29_144 set community 0:173 route-map calculator permit 5016 match community 1_30_143 1_31_142 1_32_141 1_33_140 1_34_139 set community 0:173 route-map calculator permit 5017 match community 1_35_138 1_36_137 1_37_136 1_38_135 1_39_134 set community 0:173 route-map calculator permit 5018 match community 1_40_133 1_41_132 1_42_131 1_43_130 1_44_129 set community 0:173 route-map calculator permit 5019 match community 1_45_128 1_46_127 1_47_126 1_48_125 1_49_124 set community 0:173 route-map calculator permit 5020 match community 1_50_123 1_51_122 1_52_121 1_53_120 1_54_119 set community 0:173 route-map calculator permit 5021 match community 1_55_118 1_56_117 1_57_116 1_58_115 1_59_114 set community 0:173 route-map calculator permit 5022 match community 1_60_113 1_61_112 1_62_111 1_63_110 1_64_109 set community 0:173 route-map calculator permit 5023 match community 1_65_108 1_66_107 1_67_106 1_68_105 1_69_104 set community 0:173 route-map calculator permit 5024 match community 1_70_103 1_71_102 1_72_101 1_73_100 1_74_99 set community 0:173 route-map calculator permit 5025 match community 1_75_98 1_76_97 1_77_96 1_78_95 1_79_94 set community 0:173 route-map calculator permit 5026 match community 1_80_93 1_81_92 1_82_91 1_83_90 1_84_89 set community 0:173 route-map calculator permit 5027 match community 1_85_88 1_86_87 c4_173_1 c3_174_1 c3_175_2 set community 0:173 route-map calculator permit 5028 match community c3_176_3 c3_177_4 c3_178_5 c3_179_6 c3_180_7 set community 0:173 route-map calculator permit 5029 match community c3_181_8 c3_182_9 c3_183_10 c3_184_11 c3_185_12 set community 0:173 route-map calculator permit 5030 match community c3_186_13 c3_187_14 c3_188_15 c3_189_16 c3_190_17 set community 0:173 route-map calculator permit 5031 match community c3_191_18 c3_192_19 c3_193_20 c3_194_21 c3_195_22 set community 0:173 route-map calculator permit 5032 match community c3_196_23 c3_197_24 c3_198_25 c3_199_26 c3_200_27 set community 0:173 route-map calculator permit 5033 match community c3_201_28 c3_202_29 c3_203_30 c3_204_31 c3_205_32 set community 0:173 route-map calculator permit 5034 match community c3_206_33 c3_207_34 c3_208_35 c3_209_36 c3_210_37 set community 0:173 route-map calculator permit 5035 match community c3_211_38 c3_212_39 c3_213_40 c3_214_41 c3_215_42 set community 0:173 route-map calculator permit 5036 match community c3_216_43 c3_217_44 c3_218_45 c3_219_46 c3_220_47 set community 0:173 route-map calculator permit 5037 match community c3_221_48 c3_222_49 c3_223_50 c3_224_51 c3_225_52 set community 0:173 route-map calculator permit 5038 match community c3_226_53 c3_227_54 c3_228_55 c3_229_56 c3_230_57 set community 0:173 route-map calculator permit 5039 match community c3_231_58 c3_232_59 c3_233_60 c3_234_61 c3_235_62 set community 0:173 route-map calculator permit 5040 match community c3_236_63 c3_237_64 c3_238_65 c3_239_66 c3_240_67 set community 0:173 route-map calculator permit 5041 match community c3_241_68 c3_242_69 c3_243_70 c3_244_71 c3_245_72 set community 0:173 route-map calculator permit 5042 match community c3_246_73 c3_247_74 c3_248_75 c3_249_76 c3_250_77 set community 0:173 route-map calculator permit 5043 match community c3_251_78 c3_252_79 c3_253_80 c3_254_81 c3_255_82 set community 0:173 route-map calculator permit 5044 match community c3_256_83 set community 0:173 ip community-list standard 2_8_221 permit 65000:2 0:8 0:221 ip community-list standard 2_13_136 permit 65000:2 0:13 0:136 ip community-list standard 2_17_104 permit 65000:2 0:17 0:104 ip community-list standard 2_26_68 permit 65000:2 0:26 0:68 ip community-list standard 2_34_52 permit 65000:2 0:34 0:52 route-map calculator permit 5045 match community 2_8_221 2_13_136 2_17_104 2_26_68 2_34_52 set community 0:1768 ip community-list standard 2_124_223 permit 65000:2 0:124 0:223 route-map calculator permit 5046 match community 2_124_223 set community 0:27652 ip community-list standard 2_147_218 permit 65000:2 0:147 0:218 route-map calculator permit 5047 match community 2_147_218 set community 0:32046 ip community-list standard 2_238_253 permit 65000:2 0:238 0:253 route-map calculator permit 5048 match community 2_238_253 set community 0:60214 ip community-list standard 2_99_205 permit 65000:2 0:99 0:205 ip community-list standard 2_123_165 permit 65000:2 0:123 0:165 route-map calculator permit 5049 match community 2_99_205 2_123_165 set community 0:20295 ip community-list standard 2_137_205 permit 65000:2 0:137 0:205 route-map calculator permit 5050 match community 2_137_205 set community 0:28085 ip community-list standard 2_142_179 permit 65000:2 0:142 0:179 route-map calculator permit 5051 match community 2_142_179 set community 0:25418 ip community-list standard 2_74_131 permit 65000:2 0:74 0:131 route-map calculator permit 5052 match community 2_74_131 set community 0:9694 ip community-list standard 2_129_203 permit 65000:2 0:129 0:203 route-map calculator permit 5053 match community 2_129_203 set community 0:26187 ip community-list standard 2_188_235 permit 65000:2 0:188 0:235 route-map calculator permit 5054 match community 2_188_235 set community 0:44180 ip community-list standard 2_129_131 permit 65000:2 0:129 0:131 route-map calculator permit 5055 match community 2_129_131 set community 0:16899 ip community-list standard 2_178_199 permit 65000:2 0:178 0:199 route-map calculator permit 5056 match community 2_178_199 set community 0:35422 ip community-list standard 2_97_169 permit 65000:2 0:97 0:169 route-map calculator permit 5057 match community 2_97_169 set community 0:16393 ip community-list standard 1_1_29 permit 65000:1 0:1 0:29 ip community-list standard 2_1_30 permit 65000:2 0:1 0:30 ip community-list standard 2_2_15 permit 65000:2 0:2 0:15 ip community-list standard 1_2_28 permit 65000:1 0:2 0:28 ip community-list standard 2_3_10 permit 65000:2 0:3 0:10 ip community-list standard 1_3_27 permit 65000:1 0:3 0:27 ip community-list standard 1_4_26 permit 65000:1 0:4 0:26 ip community-list standard 2_5_6 permit 65000:2 0:5 0:6 ip community-list standard 1_5_25 permit 65000:1 0:5 0:25 ip community-list standard 1_6_24 permit 65000:1 0:6 0:24 ip community-list standard 1_7_23 permit 65000:1 0:7 0:23 ip community-list standard 1_8_22 permit 65000:1 0:8 0:22 ip community-list standard 1_9_21 permit 65000:1 0:9 0:21 ip community-list standard 1_10_20 permit 65000:1 0:10 0:20 ip community-list standard 1_11_19 permit 65000:1 0:11 0:19 ip community-list standard 1_12_18 permit 65000:1 0:12 0:18 ip community-list standard 1_13_17 permit 65000:1 0:13 0:17 ip community-list standard 1_14_16 permit 65000:1 0:14 0:16 ip community-list standard 1_15_15 permit 65000:1 0:15 0:15 ip community-list expanded c30 permit 1 ^65000:4_0:30_0:1$ ip community-list expanded c30 permit 2 ^65000:3_0:31_0:1$ ip community-list expanded c30 permit 3 ^65000:3_0:32_0:2$ ip community-list expanded c30 permit 4 ^65000:3_0:33_0:3$ ip community-list expanded c30 permit 5 ^65000:3_0:34_0:4$ ip community-list expanded c30 permit 6 ^65000:3_0:35_0:5$ ip community-list expanded c30 permit 7 ^65000:3_0:36_0:6$ ip community-list expanded c30 permit 8 ^65000:3_0:37_0:7$ ip community-list expanded c30 permit 9 ^65000:3_0:38_0:8$ ip community-list expanded c30 permit 10 ^65000:3_0:39_0:9$ ip community-list expanded c30 permit 11 ^65000:3_0:40_0:10$ ip community-list expanded c30 permit 12 ^65000:3_0:41_0:11$ ip community-list expanded c30 permit 13 ^65000:3_0:42_0:12$ ip community-list expanded c30 permit 14 ^65000:3_0:43_0:13$ ip community-list expanded c30 permit 15 ^65000:3_0:44_0:14$ ip community-list expanded c30 permit 16 ^65000:3_0:45_0:15$ ip community-list expanded c30 permit 17 ^65000:3_0:46_0:16$ ip community-list expanded c30 permit 18 ^65000:3_0:47_0:17$ ip community-list expanded c30 permit 19 ^65000:3_0:48_0:18$ ip community-list expanded c30 permit 20 ^65000:3_0:49_0:19$ ip community-list expanded c30 permit 21 ^65000:3_0:50_0:20$ ip community-list expanded c30 permit 22 ^65000:3_0:51_0:21$ ip community-list expanded c30 permit 23 ^65000:3_0:52_0:22$ ip community-list expanded c30 permit 24 ^65000:3_0:53_0:23$ ip community-list expanded c30 permit 25 ^65000:3_0:54_0:24$ ip community-list expanded c30 permit 26 ^65000:3_0:55_0:25$ ip community-list expanded c30 permit 27 ^65000:3_0:56_0:26$ ip community-list expanded c30 permit 28 ^65000:3_0:57_0:27$ ip community-list expanded c30 permit 29 ^65000:3_0:58_0:28$ ip community-list expanded c30 permit 30 ^65000:3_0:59_0:29$ ip community-list expanded c30 permit 31 ^65000:4_0:60_0:2$ ip community-list expanded c30 permit 32 ^65000:3_0:60_0:30$ ip community-list expanded c30 permit 33 ^65000:4_0:61_0:2$ ip community-list expanded c30 permit 34 ^65000:3_0:61_0:31$ ip community-list expanded c30 permit 35 ^65000:3_0:62_0:32$ ip community-list expanded c30 permit 36 ^65000:3_0:63_0:33$ ip community-list expanded c30 permit 37 ^65000:3_0:64_0:34$ ip community-list expanded c30 permit 38 ^65000:3_0:65_0:35$ ip community-list expanded c30 permit 39 ^65000:3_0:66_0:36$ ip community-list expanded c30 permit 40 ^65000:3_0:67_0:37$ ip community-list expanded c30 permit 41 ^65000:3_0:68_0:38$ ip community-list expanded c30 permit 42 ^65000:3_0:69_0:39$ ip community-list expanded c30 permit 43 ^65000:3_0:70_0:40$ ip community-list expanded c30 permit 44 ^65000:3_0:71_0:41$ ip community-list expanded c30 permit 45 ^65000:3_0:72_0:42$ ip community-list expanded c30 permit 46 ^65000:3_0:73_0:43$ ip community-list expanded c30 permit 47 ^65000:3_0:74_0:44$ ip community-list expanded c30 permit 48 ^65000:3_0:75_0:45$ ip community-list expanded c30 permit 49 ^65000:3_0:76_0:46$ ip community-list expanded c30 permit 50 ^65000:3_0:77_0:47$ ip community-list expanded c30 permit 51 ^65000:3_0:78_0:48$ ip community-list expanded c30 permit 52 ^65000:3_0:79_0:49$ ip community-list expanded c30 permit 53 ^65000:3_0:80_0:50$ ip community-list expanded c30 permit 54 ^65000:3_0:81_0:51$ ip community-list expanded c30 permit 55 ^65000:3_0:82_0:52$ ip community-list expanded c30 permit 56 ^65000:3_0:83_0:53$ ip community-list expanded c30 permit 57 ^65000:3_0:84_0:54$ ip community-list expanded c30 permit 58 ^65000:3_0:85_0:55$ ip community-list expanded c30 permit 59 ^65000:3_0:86_0:56$ ip community-list expanded c30 permit 60 ^65000:3_0:87_0:57$ ip community-list expanded c30 permit 61 ^65000:3_0:88_0:58$ ip community-list expanded c30 permit 62 ^65000:3_0:89_0:59$ ip community-list expanded c30 permit 63 ^65000:4_0:90_0:3$ ip community-list expanded c30 permit 64 ^65000:3_0:90_0:60$ ip community-list expanded c30 permit 65 ^65000:4_0:91_0:3$ ip community-list expanded c30 permit 66 ^65000:3_0:91_0:61$ ip community-list expanded c30 permit 67 ^65000:4_0:92_0:3$ ip community-list expanded c30 permit 68 ^65000:3_0:92_0:62$ ip community-list expanded c30 permit 69 ^65000:3_0:93_0:63$ ip community-list expanded c30 permit 70 ^65000:3_0:94_0:64$ ip community-list expanded c30 permit 71 ^65000:3_0:95_0:65$ ip community-list expanded c30 permit 72 ^65000:3_0:96_0:66$ ip community-list expanded c30 permit 73 ^65000:3_0:97_0:67$ ip community-list expanded c30 permit 74 ^65000:3_0:98_0:68$ ip community-list expanded c30 permit 75 ^65000:3_0:99_0:69$ ip community-list expanded c30 permit 76 ^65000:3_0:100_0:70$ ip community-list expanded c30 permit 77 ^65000:3_0:101_0:71$ ip community-list expanded c30 permit 78 ^65000:3_0:102_0:72$ ip community-list expanded c30 permit 79 ^65000:3_0:103_0:73$ ip community-list expanded c30 permit 80 ^65000:3_0:104_0:74$ ip community-list expanded c30 permit 81 ^65000:3_0:105_0:75$ ip community-list expanded c30 permit 82 ^65000:3_0:106_0:76$ ip community-list expanded c30 permit 83 ^65000:3_0:107_0:77$ ip community-list expanded c30 permit 84 ^65000:3_0:108_0:78$ ip community-list expanded c30 permit 85 ^65000:3_0:109_0:79$ ip community-list expanded c30 permit 86 ^65000:3_0:110_0:80$ ip community-list expanded c30 permit 87 ^65000:3_0:111_0:81$ ip community-list expanded c30 permit 88 ^65000:3_0:112_0:82$ ip community-list expanded c30 permit 89 ^65000:3_0:113_0:83$ ip community-list expanded c30 permit 90 ^65000:3_0:114_0:84$ ip community-list expanded c30 permit 91 ^65000:3_0:115_0:85$ ip community-list expanded c30 permit 92 ^65000:3_0:116_0:86$ ip community-list expanded c30 permit 93 ^65000:3_0:117_0:87$ ip community-list expanded c30 permit 94 ^65000:3_0:118_0:88$ ip community-list expanded c30 permit 95 ^65000:3_0:119_0:89$ ip community-list expanded c30 permit 96 ^65000:4_0:120_0:4$ ip community-list expanded c30 permit 97 ^65000:3_0:120_0:90$ ip community-list expanded c30 permit 98 ^65000:4_0:121_0:4$ ip community-list expanded c30 permit 99 ^65000:3_0:121_0:91$ ip community-list expanded c30 permit 100 ^65000:4_0:122_0:4$ ip community-list expanded c30 permit 101 ^65000:3_0:122_0:92$ ip community-list expanded c30 permit 102 ^65000:4_0:123_0:4$ ip community-list expanded c30 permit 103 ^65000:3_0:123_0:93$ ip community-list expanded c30 permit 104 ^65000:3_0:124_0:94$ ip community-list expanded c30 permit 105 ^65000:3_0:125_0:95$ ip community-list expanded c30 permit 106 ^65000:3_0:126_0:96$ ip community-list expanded c30 permit 107 ^65000:3_0:127_0:97$ ip community-list expanded c30 permit 108 ^65000:3_0:128_0:98$ ip community-list expanded c30 permit 109 ^65000:3_0:129_0:99$ ip community-list expanded c30 permit 110 ^65000:3_0:130_0:100$ ip community-list expanded c30 permit 111 ^65000:3_0:131_0:101$ ip community-list expanded c30 permit 112 ^65000:3_0:132_0:102$ ip community-list expanded c30 permit 113 ^65000:3_0:133_0:103$ ip community-list expanded c30 permit 114 ^65000:3_0:134_0:104$ ip community-list expanded c30 permit 115 ^65000:3_0:135_0:105$ ip community-list expanded c30 permit 116 ^65000:3_0:136_0:106$ ip community-list expanded c30 permit 117 ^65000:3_0:137_0:107$ ip community-list expanded c30 permit 118 ^65000:3_0:138_0:108$ ip community-list expanded c30 permit 119 ^65000:3_0:139_0:109$ ip community-list expanded c30 permit 120 ^65000:3_0:140_0:110$ ip community-list expanded c30 permit 121 ^65000:3_0:141_0:111$ ip community-list expanded c30 permit 122 ^65000:3_0:142_0:112$ ip community-list expanded c30 permit 123 ^65000:3_0:143_0:113$ ip community-list expanded c30 permit 124 ^65000:3_0:144_0:114$ ip community-list expanded c30 permit 125 ^65000:3_0:145_0:115$ ip community-list expanded c30 permit 126 ^65000:3_0:146_0:116$ ip community-list expanded c30 permit 127 ^65000:3_0:147_0:117$ ip community-list expanded c30 permit 128 ^65000:3_0:148_0:118$ ip community-list expanded c30 permit 129 ^65000:3_0:149_0:119$ ip community-list expanded c30 permit 130 ^65000:4_0:150_0:5$ ip community-list expanded c30 permit 131 ^65000:3_0:150_0:120$ ip community-list expanded c30 permit 132 ^65000:4_0:151_0:5$ ip community-list expanded c30 permit 133 ^65000:3_0:151_0:121$ ip community-list expanded c30 permit 134 ^65000:4_0:152_0:5$ ip community-list expanded c30 permit 135 ^65000:3_0:152_0:122$ ip community-list expanded c30 permit 136 ^65000:4_0:153_0:5$ ip community-list expanded c30 permit 137 ^65000:3_0:153_0:123$ ip community-list expanded c30 permit 138 ^65000:4_0:154_0:5$ ip community-list expanded c30 permit 139 ^65000:3_0:154_0:124$ ip community-list expanded c30 permit 140 ^65000:3_0:155_0:125$ ip community-list expanded c30 permit 141 ^65000:3_0:156_0:126$ ip community-list expanded c30 permit 142 ^65000:3_0:157_0:127$ ip community-list expanded c30 permit 143 ^65000:3_0:158_0:128$ ip community-list expanded c30 permit 144 ^65000:3_0:159_0:129$ ip community-list expanded c30 permit 145 ^65000:3_0:160_0:130$ ip community-list expanded c30 permit 146 ^65000:3_0:161_0:131$ ip community-list expanded c30 permit 147 ^65000:3_0:162_0:132$ ip community-list expanded c30 permit 148 ^65000:3_0:163_0:133$ ip community-list expanded c30 permit 149 ^65000:3_0:164_0:134$ ip community-list expanded c30 permit 150 ^65000:3_0:165_0:135$ ip community-list expanded c30 permit 151 ^65000:3_0:166_0:136$ ip community-list expanded c30 permit 152 ^65000:3_0:167_0:137$ ip community-list expanded c30 permit 153 ^65000:3_0:168_0:138$ ip community-list expanded c30 permit 154 ^65000:3_0:169_0:139$ ip community-list expanded c30 permit 155 ^65000:3_0:170_0:140$ ip community-list expanded c30 permit 156 ^65000:3_0:171_0:141$ ip community-list expanded c30 permit 157 ^65000:3_0:172_0:142$ ip community-list expanded c30 permit 158 ^65000:3_0:173_0:143$ ip community-list expanded c30 permit 159 ^65000:3_0:174_0:144$ ip community-list expanded c30 permit 160 ^65000:3_0:175_0:145$ ip community-list expanded c30 permit 161 ^65000:3_0:176_0:146$ ip community-list expanded c30 permit 162 ^65000:3_0:177_0:147$ ip community-list expanded c30 permit 163 ^65000:3_0:178_0:148$ ip community-list expanded c30 permit 164 ^65000:3_0:179_0:149$ ip community-list expanded c30 permit 165 ^65000:4_0:180_0:6$ ip community-list expanded c30 permit 166 ^65000:3_0:180_0:150$ ip community-list expanded c30 permit 167 ^65000:4_0:181_0:6$ ip community-list expanded c30 permit 168 ^65000:3_0:181_0:151$ ip community-list expanded c30 permit 169 ^65000:4_0:182_0:6$ ip community-list expanded c30 permit 170 ^65000:3_0:182_0:152$ ip community-list expanded c30 permit 171 ^65000:4_0:183_0:6$ ip community-list expanded c30 permit 172 ^65000:3_0:183_0:153$ ip community-list expanded c30 permit 173 ^65000:4_0:184_0:6$ ip community-list expanded c30 permit 174 ^65000:3_0:184_0:154$ ip community-list expanded c30 permit 175 ^65000:4_0:185_0:6$ ip community-list expanded c30 permit 176 ^65000:3_0:185_0:155$ ip community-list expanded c30 permit 177 ^65000:3_0:186_0:156$ ip community-list expanded c30 permit 178 ^65000:3_0:187_0:157$ ip community-list expanded c30 permit 179 ^65000:3_0:188_0:158$ ip community-list expanded c30 permit 180 ^65000:3_0:189_0:159$ ip community-list expanded c30 permit 181 ^65000:3_0:190_0:160$ ip community-list expanded c30 permit 182 ^65000:3_0:191_0:161$ ip community-list expanded c30 permit 183 ^65000:3_0:192_0:162$ ip community-list expanded c30 permit 184 ^65000:3_0:193_0:163$ ip community-list expanded c30 permit 185 ^65000:3_0:194_0:164$ ip community-list expanded c30 permit 186 ^65000:3_0:195_0:165$ ip community-list expanded c30 permit 187 ^65000:3_0:196_0:166$ ip community-list expanded c30 permit 188 ^65000:3_0:197_0:167$ ip community-list expanded c30 permit 189 ^65000:3_0:198_0:168$ ip community-list expanded c30 permit 190 ^65000:3_0:199_0:169$ ip community-list expanded c30 permit 191 ^65000:3_0:200_0:170$ ip community-list expanded c30 permit 192 ^65000:3_0:201_0:171$ ip community-list expanded c30 permit 193 ^65000:3_0:202_0:172$ ip community-list expanded c30 permit 194 ^65000:3_0:203_0:173$ ip community-list expanded c30 permit 195 ^65000:3_0:204_0:174$ ip community-list expanded c30 permit 196 ^65000:3_0:205_0:175$ ip community-list expanded c30 permit 197 ^65000:3_0:206_0:176$ ip community-list expanded c30 permit 198 ^65000:3_0:207_0:177$ ip community-list expanded c30 permit 199 ^65000:3_0:208_0:178$ ip community-list expanded c30 permit 200 ^65000:3_0:209_0:179$ ip community-list expanded c30 permit 201 ^65000:4_0:210_0:7$ ip community-list expanded c30 permit 202 ^65000:3_0:210_0:180$ ip community-list expanded c30 permit 203 ^65000:4_0:211_0:7$ ip community-list expanded c30 permit 204 ^65000:3_0:211_0:181$ ip community-list expanded c30 permit 205 ^65000:4_0:212_0:7$ ip community-list expanded c30 permit 206 ^65000:3_0:212_0:182$ ip community-list expanded c30 permit 207 ^65000:4_0:213_0:7$ ip community-list expanded c30 permit 208 ^65000:3_0:213_0:183$ ip community-list expanded c30 permit 209 ^65000:4_0:214_0:7$ ip community-list expanded c30 permit 210 ^65000:3_0:214_0:184$ ip community-list expanded c30 permit 211 ^65000:4_0:215_0:7$ ip community-list expanded c30 permit 212 ^65000:3_0:215_0:185$ ip community-list expanded c30 permit 213 ^65000:4_0:216_0:7$ ip community-list expanded c30 permit 214 ^65000:3_0:216_0:186$ ip community-list expanded c30 permit 215 ^65000:3_0:217_0:187$ ip community-list expanded c30 permit 216 ^65000:3_0:218_0:188$ ip community-list expanded c30 permit 217 ^65000:3_0:219_0:189$ ip community-list expanded c30 permit 218 ^65000:3_0:220_0:190$ ip community-list expanded c30 permit 219 ^65000:3_0:221_0:191$ ip community-list expanded c30 permit 220 ^65000:3_0:222_0:192$ ip community-list expanded c30 permit 221 ^65000:3_0:223_0:193$ ip community-list expanded c30 permit 222 ^65000:3_0:224_0:194$ ip community-list expanded c30 permit 223 ^65000:3_0:225_0:195$ ip community-list expanded c30 permit 224 ^65000:3_0:226_0:196$ ip community-list expanded c30 permit 225 ^65000:3_0:227_0:197$ ip community-list expanded c30 permit 226 ^65000:3_0:228_0:198$ ip community-list expanded c30 permit 227 ^65000:3_0:229_0:199$ ip community-list expanded c30 permit 228 ^65000:3_0:230_0:200$ ip community-list expanded c30 permit 229 ^65000:3_0:231_0:201$ ip community-list expanded c30 permit 230 ^65000:3_0:232_0:202$ ip community-list expanded c30 permit 231 ^65000:3_0:233_0:203$ ip community-list expanded c30 permit 232 ^65000:3_0:234_0:204$ ip community-list expanded c30 permit 233 ^65000:3_0:235_0:205$ ip community-list expanded c30 permit 234 ^65000:3_0:236_0:206$ ip community-list expanded c30 permit 235 ^65000:3_0:237_0:207$ ip community-list expanded c30 permit 236 ^65000:3_0:238_0:208$ ip community-list expanded c30 permit 237 ^65000:3_0:239_0:209$ ip community-list expanded c30 permit 238 ^65000:4_0:240_0:8$ ip community-list expanded c30 permit 239 ^65000:3_0:240_0:210$ ip community-list expanded c30 permit 240 ^65000:4_0:241_0:8$ ip community-list expanded c30 permit 241 ^65000:3_0:241_0:211$ ip community-list expanded c30 permit 242 ^65000:4_0:242_0:8$ ip community-list expanded c30 permit 243 ^65000:3_0:242_0:212$ ip community-list expanded c30 permit 244 ^65000:4_0:243_0:8$ ip community-list expanded c30 permit 245 ^65000:3_0:243_0:213$ ip community-list expanded c30 permit 246 ^65000:4_0:244_0:8$ ip community-list expanded c30 permit 247 ^65000:3_0:244_0:214$ ip community-list expanded c30 permit 248 ^65000:4_0:245_0:8$ ip community-list expanded c30 permit 249 ^65000:3_0:245_0:215$ ip community-list expanded c30 permit 250 ^65000:4_0:246_0:8$ ip community-list expanded c30 permit 251 ^65000:3_0:246_0:216$ ip community-list expanded c30 permit 252 ^65000:4_0:247_0:8$ ip community-list expanded c30 permit 253 ^65000:3_0:247_0:217$ ip community-list expanded c30 permit 254 ^65000:3_0:248_0:218$ ip community-list expanded c30 permit 255 ^65000:3_0:249_0:219$ ip community-list expanded c30 permit 256 ^65000:3_0:250_0:220$ ip community-list expanded c30 permit 257 ^65000:3_0:251_0:221$ ip community-list expanded c30 permit 258 ^65000:3_0:252_0:222$ ip community-list expanded c30 permit 259 ^65000:3_0:253_0:223$ ip community-list expanded c30 permit 260 ^65000:3_0:254_0:224$ ip community-list expanded c30 permit 261 ^65000:3_0:255_0:225$ ip community-list expanded c30 permit 262 ^65000:3_0:256_0:226$ route-map calculator permit 5058 match community 1_1_29 2_1_30 2_2_15 1_2_28 2_3_10 set community 0:30 route-map calculator permit 5059 match community 1_3_27 1_4_26 2_5_6 1_5_25 1_6_24 set community 0:30 route-map calculator permit 5060 match community 1_7_23 1_8_22 1_9_21 1_10_20 1_11_19 set community 0:30 route-map calculator permit 5061 match community 1_12_18 1_13_17 1_14_16 1_15_15 c4_30_1 set community 0:30 route-map calculator permit 5062 match community c3_31_1 c3_32_2 c3_33_3 c3_34_4 c3_35_5 set community 0:30 route-map calculator permit 5063 match community c3_36_6 c3_37_7 c3_38_8 c3_39_9 c3_40_10 set community 0:30 route-map calculator permit 5064 match community c3_41_11 c3_42_12 c3_43_13 c3_44_14 c3_45_15 set community 0:30 route-map calculator permit 5065 match community c3_46_16 c3_47_17 c3_48_18 c3_49_19 c3_50_20 set community 0:30 route-map calculator permit 5066 match community c3_51_21 c3_52_22 c3_53_23 c3_54_24 c3_55_25 set community 0:30 route-map calculator permit 5067 match community c3_56_26 c3_57_27 c3_58_28 c3_59_29 c4_60_2 set community 0:30 route-map calculator permit 5068 match community c3_60_30 c4_61_2 c3_61_31 c3_62_32 c3_63_33 set community 0:30 route-map calculator permit 5069 match community c3_64_34 c3_65_35 c3_66_36 c3_67_37 c3_68_38 set community 0:30 route-map calculator permit 5070 match community c3_69_39 c3_70_40 c3_71_41 c3_72_42 c3_73_43 set community 0:30 route-map calculator permit 5071 match community c3_74_44 c3_75_45 c3_76_46 c3_77_47 c3_78_48 set community 0:30 route-map calculator permit 5072 match community c3_79_49 c3_80_50 c3_81_51 c3_82_52 c3_83_53 set community 0:30 route-map calculator permit 5073 match community c3_84_54 c3_85_55 c3_86_56 c3_87_57 c3_88_58 set community 0:30 route-map calculator permit 5074 match community c3_89_59 c4_90_3 c3_90_60 c4_91_3 c3_91_61 set community 0:30 route-map calculator permit 5075 match community c4_92_3 c3_92_62 c3_93_63 c3_94_64 c3_95_65 set community 0:30 route-map calculator permit 5076 match community c3_96_66 c3_97_67 c3_98_68 c3_99_69 c3_100_70 set community 0:30 route-map calculator permit 5077 match community c3_101_71 c3_102_72 c3_103_73 c3_104_74 c3_105_75 set community 0:30 route-map calculator permit 5078 match community c3_106_76 c3_107_77 c3_108_78 c3_109_79 c3_110_80 set community 0:30 route-map calculator permit 5079 match community c3_111_81 c3_112_82 c3_113_83 c3_114_84 c3_115_85 set community 0:30 route-map calculator permit 5080 match community c3_116_86 c3_117_87 c3_118_88 c3_119_89 c4_120_4 set community 0:30 route-map calculator permit 5081 match community c3_120_90 c4_121_4 c3_121_91 c4_122_4 c3_122_92 set community 0:30 route-map calculator permit 5082 match community c4_123_4 c3_123_93 c3_124_94 c3_125_95 c3_126_96 set community 0:30 route-map calculator permit 5083 match community c3_127_97 c3_128_98 c3_129_99 c3_130_100 c3_131_101 set community 0:30 route-map calculator permit 5084 match community c3_132_102 c3_133_103 c3_134_104 c3_135_105 c3_136_106 set community 0:30 route-map calculator permit 5085 match community c3_137_107 c3_138_108 c3_139_109 c3_140_110 c3_141_111 set community 0:30 route-map calculator permit 5086 match community c3_142_112 c3_143_113 c3_144_114 c3_145_115 c3_146_116 set community 0:30 route-map calculator permit 5087 match community c3_147_117 c3_148_118 c3_149_119 c4_150_5 c3_150_120 set community 0:30 route-map calculator permit 5088 match community c4_151_5 c3_151_121 c4_152_5 c3_152_122 c4_153_5 set community 0:30 route-map calculator permit 5089 match community c3_153_123 c4_154_5 c3_154_124 c3_155_125 c3_156_126 set community 0:30 route-map calculator permit 5090 match community c3_157_127 c3_158_128 c3_159_129 c3_160_130 c3_161_131 set community 0:30 route-map calculator permit 5091 match community c3_162_132 c3_163_133 c3_164_134 c3_165_135 c3_166_136 set community 0:30 route-map calculator permit 5092 match community c3_167_137 c3_168_138 c3_169_139 c3_170_140 c3_171_141 set community 0:30 route-map calculator permit 5093 match community c3_172_142 c3_173_143 c3_174_144 c3_175_145 c3_176_146 set community 0:30 route-map calculator permit 5094 match community c3_177_147 c3_178_148 c3_179_149 c4_180_6 c3_180_150 set community 0:30 route-map calculator permit 5095 match community c4_181_6 c3_181_151 c4_182_6 c3_182_152 c4_183_6 set community 0:30 route-map calculator permit 5096 match community c3_183_153 c4_184_6 c3_184_154 c4_185_6 c3_185_155 set community 0:30 route-map calculator permit 5097 match community c3_186_156 c3_187_157 c3_188_158 c3_189_159 c3_190_160 set community 0:30 route-map calculator permit 5098 match community c3_191_161 c3_192_162 c3_193_163 c3_194_164 c3_195_165 set community 0:30 route-map calculator permit 5099 match community c3_196_166 c3_197_167 c3_198_168 c3_199_169 c3_200_170 set community 0:30 route-map calculator permit 5100 match community c3_201_171 c3_202_172 c3_203_173 c3_204_174 c3_205_175 set community 0:30 route-map calculator permit 5101 match community c3_206_176 c3_207_177 c3_208_178 c3_209_179 c4_210_7 set community 0:30 route-map calculator permit 5102 match community c3_210_180 c4_211_7 c3_211_181 c4_212_7 c3_212_182 set community 0:30 route-map calculator permit 5103 match community c4_213_7 c3_213_183 c4_214_7 c3_214_184 c4_215_7 set community 0:30 route-map calculator permit 5104 match community c3_215_185 c4_216_7 c3_216_186 c3_217_187 c3_218_188 set community 0:30 route-map calculator permit 5105 match community c3_219_189 c3_220_190 c3_221_191 c3_222_192 c3_223_193 set community 0:30 route-map calculator permit 5106 match community c3_224_194 c3_225_195 c3_226_196 c3_227_197 c3_228_198 set community 0:30 route-map calculator permit 5107 match community c3_229_199 c3_230_200 c3_231_201 c3_232_202 c3_233_203 set community 0:30 route-map calculator permit 5108 match community c3_234_204 c3_235_205 c3_236_206 c3_237_207 c3_238_208 set community 0:30 route-map calculator permit 5109 match community c3_239_209 c4_240_8 c3_240_210 c4_241_8 c3_241_211 set community 0:30 route-map calculator permit 5110 match community c4_242_8 c3_242_212 c4_243_8 c3_243_213 c4_244_8 set community 0:30 route-map calculator permit 5111 match community c3_244_214 c4_245_8 c3_245_215 c4_246_8 c3_246_216 set community 0:30 route-map calculator permit 5112 match community c4_247_8 c3_247_217 c3_248_218 c3_249_219 c3_250_220 set community 0:30 route-map calculator permit 5113 match community c3_251_221 c3_252_222 c3_253_223 c3_254_224 c3_255_225 set community 0:30 route-map calculator permit 5114 match community c3_256_226 set community 0:30 ip community-list standard 2_10_199 permit 65000:2 0:10 0:199 route-map calculator permit 5115 match community 2_10_199 set community 0:1990 ip community-list standard 2_28_185 permit 65000:2 0:28 0:185 ip community-list standard 2_35_148 permit 65000:2 0:35 0:148 ip community-list standard 2_37_140 permit 65000:2 0:37 0:140 ip community-list standard 2_70_74 permit 65000:2 0:70 0:74 route-map calculator permit 5116 match community 2_28_185 2_35_148 2_37_140 2_70_74 set community 0:5180 ip community-list standard 2_41_246 permit 65000:2 0:41 0:246 ip community-list standard 2_82_123 permit 65000:2 0:82 0:123 route-map calculator permit 5117 match community 2_41_246 2_82_123 set community 0:10086 ip community-list standard 2_102_193 permit 65000:2 0:102 0:193 route-map calculator permit 5118 match community 2_102_193 set community 0:19686 ip community-list standard 2_176_223 permit 65000:2 0:176 0:223 route-map calculator permit 5119 match community 2_176_223 set community 0:39248 ip community-list standard 2_17_243 permit 65000:2 0:17 0:243 ip community-list standard 2_27_153 permit 65000:2 0:27 0:153 ip community-list standard 2_51_81 permit 65000:2 0:51 0:81 route-map calculator permit 5120 match community 2_17_243 2_27_153 2_51_81 set community 0:4131 ip community-list standard 2_62_166 permit 65000:2 0:62 0:166 ip community-list standard 2_83_124 permit 65000:2 0:83 0:124 route-map calculator permit 5121 match community 2_62_166 2_83_124 set community 0:10292 ip community-list standard 2_35_143 permit 65000:2 0:35 0:143 ip community-list standard 2_55_91 permit 65000:2 0:55 0:91 ip community-list standard 2_65_77 permit 65000:2 0:65 0:77 route-map calculator permit 5122 match community 2_35_143 2_55_91 2_65_77 set community 0:5005 ip community-list standard 2_36_139 permit 65000:2 0:36 0:139 route-map calculator permit 5123 match community 2_36_139 set community 0:5004 ip community-list standard 2_174_240 permit 65000:2 0:174 0:240 ip community-list standard 2_180_232 permit 65000:2 0:180 0:232 route-map calculator permit 5124 match community 2_174_240 2_180_232 set community 0:41760 ip community-list standard 2_97_171 permit 65000:2 0:97 0:171 route-map calculator permit 5125 match community 2_97_171 set community 0:16587 ip community-list standard 2_171_250 permit 65000:2 0:171 0:250 ip community-list standard 2_190_225 permit 65000:2 0:190 0:225 route-map calculator permit 5126 match community 2_171_250 2_190_225 set community 0:42750 ip community-list standard 2_169_245 permit 65000:2 0:169 0:245 route-map calculator permit 5127 match community 2_169_245 set community 0:41405 ip community-list standard 2_7_143 permit 65000:2 0:7 0:143 ip community-list standard 2_11_91 permit 65000:2 0:11 0:91 ip community-list standard 2_13_77 permit 65000:2 0:13 0:77 route-map calculator permit 5128 match community 2_7_143 2_11_91 2_13_77 set community 0:1001 ip community-list standard 2_32_204 permit 65000:2 0:32 0:204 ip community-list standard 2_34_192 permit 65000:2 0:34 0:192 ip community-list standard 2_48_136 permit 65000:2 0:48 0:136 ip community-list standard 2_51_128 permit 65000:2 0:51 0:128 ip community-list standard 2_64_102 permit 65000:2 0:64 0:102 ip community-list standard 2_68_96 permit 65000:2 0:68 0:96 route-map calculator permit 5129 match community 2_32_204 2_34_192 2_48_136 2_51_128 2_64_102 set community 0:6528 route-map calculator permit 5130 match community 2_68_96 set community 0:6528 ip community-list standard 1_1_108 permit 65000:1 0:1 0:108 ip community-list standard 2_1_109 permit 65000:2 0:1 0:109 ip community-list standard 1_2_107 permit 65000:1 0:2 0:107 ip community-list standard 1_3_106 permit 65000:1 0:3 0:106 ip community-list standard 1_4_105 permit 65000:1 0:4 0:105 ip community-list standard 1_5_104 permit 65000:1 0:5 0:104 ip community-list standard 1_6_103 permit 65000:1 0:6 0:103 ip community-list standard 1_7_102 permit 65000:1 0:7 0:102 ip community-list standard 1_8_101 permit 65000:1 0:8 0:101 ip community-list standard 1_9_100 permit 65000:1 0:9 0:100 ip community-list standard 1_10_99 permit 65000:1 0:10 0:99 ip community-list standard 1_11_98 permit 65000:1 0:11 0:98 ip community-list standard 1_12_97 permit 65000:1 0:12 0:97 ip community-list standard 1_13_96 permit 65000:1 0:13 0:96 ip community-list standard 1_14_95 permit 65000:1 0:14 0:95 ip community-list standard 1_15_94 permit 65000:1 0:15 0:94 ip community-list standard 1_16_93 permit 65000:1 0:16 0:93 ip community-list standard 1_17_92 permit 65000:1 0:17 0:92 ip community-list standard 1_18_91 permit 65000:1 0:18 0:91 ip community-list standard 1_19_90 permit 65000:1 0:19 0:90 ip community-list standard 1_20_89 permit 65000:1 0:20 0:89 ip community-list standard 1_21_88 permit 65000:1 0:21 0:88 ip community-list standard 1_22_87 permit 65000:1 0:22 0:87 ip community-list standard 1_23_86 permit 65000:1 0:23 0:86 ip community-list standard 1_24_85 permit 65000:1 0:24 0:85 ip community-list standard 1_25_84 permit 65000:1 0:25 0:84 ip community-list standard 1_26_83 permit 65000:1 0:26 0:83 ip community-list standard 1_27_82 permit 65000:1 0:27 0:82 ip community-list standard 1_28_81 permit 65000:1 0:28 0:81 ip community-list standard 1_29_80 permit 65000:1 0:29 0:80 ip community-list standard 1_30_79 permit 65000:1 0:30 0:79 ip community-list standard 1_31_78 permit 65000:1 0:31 0:78 ip community-list standard 1_32_77 permit 65000:1 0:32 0:77 ip community-list standard 1_33_76 permit 65000:1 0:33 0:76 ip community-list standard 1_34_75 permit 65000:1 0:34 0:75 ip community-list standard 1_35_74 permit 65000:1 0:35 0:74 ip community-list standard 1_36_73 permit 65000:1 0:36 0:73 ip community-list standard 1_37_72 permit 65000:1 0:37 0:72 ip community-list standard 1_38_71 permit 65000:1 0:38 0:71 ip community-list standard 1_39_70 permit 65000:1 0:39 0:70 ip community-list standard 1_40_69 permit 65000:1 0:40 0:69 ip community-list standard 1_41_68 permit 65000:1 0:41 0:68 ip community-list standard 1_42_67 permit 65000:1 0:42 0:67 ip community-list standard 1_43_66 permit 65000:1 0:43 0:66 ip community-list standard 1_44_65 permit 65000:1 0:44 0:65 ip community-list standard 1_45_64 permit 65000:1 0:45 0:64 ip community-list standard 1_46_63 permit 65000:1 0:46 0:63 ip community-list standard 1_47_62 permit 65000:1 0:47 0:62 ip community-list standard 1_48_61 permit 65000:1 0:48 0:61 ip community-list standard 1_49_60 permit 65000:1 0:49 0:60 ip community-list standard 1_50_59 permit 65000:1 0:50 0:59 ip community-list standard 1_51_58 permit 65000:1 0:51 0:58 ip community-list standard 1_52_57 permit 65000:1 0:52 0:57 ip community-list standard 1_53_56 permit 65000:1 0:53 0:56 ip community-list standard 1_54_55 permit 65000:1 0:54 0:55 ip community-list expanded c109 permit 1 ^65000:4_0:109_0:1$ ip community-list expanded c109 permit 2 ^65000:3_0:110_0:1$ ip community-list expanded c109 permit 3 ^65000:3_0:111_0:2$ ip community-list expanded c109 permit 4 ^65000:3_0:112_0:3$ ip community-list expanded c109 permit 5 ^65000:3_0:113_0:4$ ip community-list expanded c109 permit 6 ^65000:3_0:114_0:5$ ip community-list expanded c109 permit 7 ^65000:3_0:115_0:6$ ip community-list expanded c109 permit 8 ^65000:3_0:116_0:7$ ip community-list expanded c109 permit 9 ^65000:3_0:117_0:8$ ip community-list expanded c109 permit 10 ^65000:3_0:118_0:9$ ip community-list expanded c109 permit 11 ^65000:3_0:119_0:10$ ip community-list expanded c109 permit 12 ^65000:3_0:120_0:11$ ip community-list expanded c109 permit 13 ^65000:3_0:121_0:12$ ip community-list expanded c109 permit 14 ^65000:3_0:122_0:13$ ip community-list expanded c109 permit 15 ^65000:3_0:123_0:14$ ip community-list expanded c109 permit 16 ^65000:3_0:124_0:15$ ip community-list expanded c109 permit 17 ^65000:3_0:125_0:16$ ip community-list expanded c109 permit 18 ^65000:3_0:126_0:17$ ip community-list expanded c109 permit 19 ^65000:3_0:127_0:18$ ip community-list expanded c109 permit 20 ^65000:3_0:128_0:19$ ip community-list expanded c109 permit 21 ^65000:3_0:129_0:20$ ip community-list expanded c109 permit 22 ^65000:3_0:130_0:21$ ip community-list expanded c109 permit 23 ^65000:3_0:131_0:22$ ip community-list expanded c109 permit 24 ^65000:3_0:132_0:23$ ip community-list expanded c109 permit 25 ^65000:3_0:133_0:24$ ip community-list expanded c109 permit 26 ^65000:3_0:134_0:25$ ip community-list expanded c109 permit 27 ^65000:3_0:135_0:26$ ip community-list expanded c109 permit 28 ^65000:3_0:136_0:27$ ip community-list expanded c109 permit 29 ^65000:3_0:137_0:28$ ip community-list expanded c109 permit 30 ^65000:3_0:138_0:29$ ip community-list expanded c109 permit 31 ^65000:3_0:139_0:30$ ip community-list expanded c109 permit 32 ^65000:3_0:140_0:31$ ip community-list expanded c109 permit 33 ^65000:3_0:141_0:32$ ip community-list expanded c109 permit 34 ^65000:3_0:142_0:33$ ip community-list expanded c109 permit 35 ^65000:3_0:143_0:34$ ip community-list expanded c109 permit 36 ^65000:3_0:144_0:35$ ip community-list expanded c109 permit 37 ^65000:3_0:145_0:36$ ip community-list expanded c109 permit 38 ^65000:3_0:146_0:37$ ip community-list expanded c109 permit 39 ^65000:3_0:147_0:38$ ip community-list expanded c109 permit 40 ^65000:3_0:148_0:39$ ip community-list expanded c109 permit 41 ^65000:3_0:149_0:40$ ip community-list expanded c109 permit 42 ^65000:3_0:150_0:41$ ip community-list expanded c109 permit 43 ^65000:3_0:151_0:42$ ip community-list expanded c109 permit 44 ^65000:3_0:152_0:43$ ip community-list expanded c109 permit 45 ^65000:3_0:153_0:44$ ip community-list expanded c109 permit 46 ^65000:3_0:154_0:45$ ip community-list expanded c109 permit 47 ^65000:3_0:155_0:46$ ip community-list expanded c109 permit 48 ^65000:3_0:156_0:47$ ip community-list expanded c109 permit 49 ^65000:3_0:157_0:48$ ip community-list expanded c109 permit 50 ^65000:3_0:158_0:49$ ip community-list expanded c109 permit 51 ^65000:3_0:159_0:50$ ip community-list expanded c109 permit 52 ^65000:3_0:160_0:51$ ip community-list expanded c109 permit 53 ^65000:3_0:161_0:52$ ip community-list expanded c109 permit 54 ^65000:3_0:162_0:53$ ip community-list expanded c109 permit 55 ^65000:3_0:163_0:54$ ip community-list expanded c109 permit 56 ^65000:3_0:164_0:55$ ip community-list expanded c109 permit 57 ^65000:3_0:165_0:56$ ip community-list expanded c109 permit 58 ^65000:3_0:166_0:57$ ip community-list expanded c109 permit 59 ^65000:3_0:167_0:58$ ip community-list expanded c109 permit 60 ^65000:3_0:168_0:59$ ip community-list expanded c109 permit 61 ^65000:3_0:169_0:60$ ip community-list expanded c109 permit 62 ^65000:3_0:170_0:61$ ip community-list expanded c109 permit 63 ^65000:3_0:171_0:62$ ip community-list expanded c109 permit 64 ^65000:3_0:172_0:63$ ip community-list expanded c109 permit 65 ^65000:3_0:173_0:64$ ip community-list expanded c109 permit 66 ^65000:3_0:174_0:65$ ip community-list expanded c109 permit 67 ^65000:3_0:175_0:66$ ip community-list expanded c109 permit 68 ^65000:3_0:176_0:67$ ip community-list expanded c109 permit 69 ^65000:3_0:177_0:68$ ip community-list expanded c109 permit 70 ^65000:3_0:178_0:69$ ip community-list expanded c109 permit 71 ^65000:3_0:179_0:70$ ip community-list expanded c109 permit 72 ^65000:3_0:180_0:71$ ip community-list expanded c109 permit 73 ^65000:3_0:181_0:72$ ip community-list expanded c109 permit 74 ^65000:3_0:182_0:73$ ip community-list expanded c109 permit 75 ^65000:3_0:183_0:74$ ip community-list expanded c109 permit 76 ^65000:3_0:184_0:75$ ip community-list expanded c109 permit 77 ^65000:3_0:185_0:76$ ip community-list expanded c109 permit 78 ^65000:3_0:186_0:77$ ip community-list expanded c109 permit 79 ^65000:3_0:187_0:78$ ip community-list expanded c109 permit 80 ^65000:3_0:188_0:79$ ip community-list expanded c109 permit 81 ^65000:3_0:189_0:80$ ip community-list expanded c109 permit 82 ^65000:3_0:190_0:81$ ip community-list expanded c109 permit 83 ^65000:3_0:191_0:82$ ip community-list expanded c109 permit 84 ^65000:3_0:192_0:83$ ip community-list expanded c109 permit 85 ^65000:3_0:193_0:84$ ip community-list expanded c109 permit 86 ^65000:3_0:194_0:85$ ip community-list expanded c109 permit 87 ^65000:3_0:195_0:86$ ip community-list expanded c109 permit 88 ^65000:3_0:196_0:87$ ip community-list expanded c109 permit 89 ^65000:3_0:197_0:88$ ip community-list expanded c109 permit 90 ^65000:3_0:198_0:89$ ip community-list expanded c109 permit 91 ^65000:3_0:199_0:90$ ip community-list expanded c109 permit 92 ^65000:3_0:200_0:91$ ip community-list expanded c109 permit 93 ^65000:3_0:201_0:92$ ip community-list expanded c109 permit 94 ^65000:3_0:202_0:93$ ip community-list expanded c109 permit 95 ^65000:3_0:203_0:94$ ip community-list expanded c109 permit 96 ^65000:3_0:204_0:95$ ip community-list expanded c109 permit 97 ^65000:3_0:205_0:96$ ip community-list expanded c109 permit 98 ^65000:3_0:206_0:97$ ip community-list expanded c109 permit 99 ^65000:3_0:207_0:98$ ip community-list expanded c109 permit 100 ^65000:3_0:208_0:99$ ip community-list expanded c109 permit 101 ^65000:3_0:209_0:100$ ip community-list expanded c109 permit 102 ^65000:3_0:210_0:101$ ip community-list expanded c109 permit 103 ^65000:3_0:211_0:102$ ip community-list expanded c109 permit 104 ^65000:3_0:212_0:103$ ip community-list expanded c109 permit 105 ^65000:3_0:213_0:104$ ip community-list expanded c109 permit 106 ^65000:3_0:214_0:105$ ip community-list expanded c109 permit 107 ^65000:3_0:215_0:106$ ip community-list expanded c109 permit 108 ^65000:3_0:216_0:107$ ip community-list expanded c109 permit 109 ^65000:3_0:217_0:108$ ip community-list expanded c109 permit 110 ^65000:4_0:218_0:2$ ip community-list expanded c109 permit 111 ^65000:3_0:218_0:109$ ip community-list expanded c109 permit 112 ^65000:4_0:219_0:2$ ip community-list expanded c109 permit 113 ^65000:3_0:219_0:110$ ip community-list expanded c109 permit 114 ^65000:3_0:220_0:111$ ip community-list expanded c109 permit 115 ^65000:3_0:221_0:112$ ip community-list expanded c109 permit 116 ^65000:3_0:222_0:113$ ip community-list expanded c109 permit 117 ^65000:3_0:223_0:114$ ip community-list expanded c109 permit 118 ^65000:3_0:224_0:115$ ip community-list expanded c109 permit 119 ^65000:3_0:225_0:116$ ip community-list expanded c109 permit 120 ^65000:3_0:226_0:117$ ip community-list expanded c109 permit 121 ^65000:3_0:227_0:118$ ip community-list expanded c109 permit 122 ^65000:3_0:228_0:119$ ip community-list expanded c109 permit 123 ^65000:3_0:229_0:120$ ip community-list expanded c109 permit 124 ^65000:3_0:230_0:121$ ip community-list expanded c109 permit 125 ^65000:3_0:231_0:122$ ip community-list expanded c109 permit 126 ^65000:3_0:232_0:123$ ip community-list expanded c109 permit 127 ^65000:3_0:233_0:124$ ip community-list expanded c109 permit 128 ^65000:3_0:234_0:125$ ip community-list expanded c109 permit 129 ^65000:3_0:235_0:126$ ip community-list expanded c109 permit 130 ^65000:3_0:236_0:127$ ip community-list expanded c109 permit 131 ^65000:3_0:237_0:128$ ip community-list expanded c109 permit 132 ^65000:3_0:238_0:129$ ip community-list expanded c109 permit 133 ^65000:3_0:239_0:130$ ip community-list expanded c109 permit 134 ^65000:3_0:240_0:131$ ip community-list expanded c109 permit 135 ^65000:3_0:241_0:132$ ip community-list expanded c109 permit 136 ^65000:3_0:242_0:133$ ip community-list expanded c109 permit 137 ^65000:3_0:243_0:134$ ip community-list expanded c109 permit 138 ^65000:3_0:244_0:135$ ip community-list expanded c109 permit 139 ^65000:3_0:245_0:136$ ip community-list expanded c109 permit 140 ^65000:3_0:246_0:137$ ip community-list expanded c109 permit 141 ^65000:3_0:247_0:138$ ip community-list expanded c109 permit 142 ^65000:3_0:248_0:139$ ip community-list expanded c109 permit 143 ^65000:3_0:249_0:140$ ip community-list expanded c109 permit 144 ^65000:3_0:250_0:141$ ip community-list expanded c109 permit 145 ^65000:3_0:251_0:142$ ip community-list expanded c109 permit 146 ^65000:3_0:252_0:143$ ip community-list expanded c109 permit 147 ^65000:3_0:253_0:144$ ip community-list expanded c109 permit 148 ^65000:3_0:254_0:145$ ip community-list expanded c109 permit 149 ^65000:3_0:255_0:146$ ip community-list expanded c109 permit 150 ^65000:3_0:256_0:147$ route-map calculator permit 5131 match community 1_1_108 2_1_109 1_2_107 1_3_106 1_4_105 set community 0:109 route-map calculator permit 5132 match community 1_5_104 1_6_103 1_7_102 1_8_101 1_9_100 set community 0:109 route-map calculator permit 5133 match community 1_10_99 1_11_98 1_12_97 1_13_96 1_14_95 set community 0:109 route-map calculator permit 5134 match community 1_15_94 1_16_93 1_17_92 1_18_91 1_19_90 set community 0:109 route-map calculator permit 5135 match community 1_20_89 1_21_88 1_22_87 1_23_86 1_24_85 set community 0:109 route-map calculator permit 5136 match community 1_25_84 1_26_83 1_27_82 1_28_81 1_29_80 set community 0:109 route-map calculator permit 5137 match community 1_30_79 1_31_78 1_32_77 1_33_76 1_34_75 set community 0:109 route-map calculator permit 5138 match community 1_35_74 1_36_73 1_37_72 1_38_71 1_39_70 set community 0:109 route-map calculator permit 5139 match community 1_40_69 1_41_68 1_42_67 1_43_66 1_44_65 set community 0:109 route-map calculator permit 5140 match community 1_45_64 1_46_63 1_47_62 1_48_61 1_49_60 set community 0:109 route-map calculator permit 5141 match community 1_50_59 1_51_58 1_52_57 1_53_56 1_54_55 set community 0:109 route-map calculator permit 5142 match community c4_109_1 c3_110_1 c3_111_2 c3_112_3 c3_113_4 set community 0:109 route-map calculator permit 5143 match community c3_114_5 c3_115_6 c3_116_7 c3_117_8 c3_118_9 set community 0:109 route-map calculator permit 5144 match community c3_119_10 c3_120_11 c3_121_12 c3_122_13 c3_123_14 set community 0:109 route-map calculator permit 5145 match community c3_124_15 c3_125_16 c3_126_17 c3_127_18 c3_128_19 set community 0:109 route-map calculator permit 5146 match community c3_129_20 c3_130_21 c3_131_22 c3_132_23 c3_133_24 set community 0:109 route-map calculator permit 5147 match community c3_134_25 c3_135_26 c3_136_27 c3_137_28 c3_138_29 set community 0:109 route-map calculator permit 5148 match community c3_139_30 c3_140_31 c3_141_32 c3_142_33 c3_143_34 set community 0:109 route-map calculator permit 5149 match community c3_144_35 c3_145_36 c3_146_37 c3_147_38 c3_148_39 set community 0:109 route-map calculator permit 5150 match community c3_149_40 c3_150_41 c3_151_42 c3_152_43 c3_153_44 set community 0:109 route-map calculator permit 5151 match community c3_154_45 c3_155_46 c3_156_47 c3_157_48 c3_158_49 set community 0:109 route-map calculator permit 5152 match community c3_159_50 c3_160_51 c3_161_52 c3_162_53 c3_163_54 set community 0:109 route-map calculator permit 5153 match community c3_164_55 c3_165_56 c3_166_57 c3_167_58 c3_168_59 set community 0:109 route-map calculator permit 5154 match community c3_169_60 c3_170_61 c3_171_62 c3_172_63 c3_173_64 set community 0:109 route-map calculator permit 5155 match community c3_174_65 c3_175_66 c3_176_67 c3_177_68 c3_178_69 set community 0:109 route-map calculator permit 5156 match community c3_179_70 c3_180_71 c3_181_72 c3_182_73 c3_183_74 set community 0:109 route-map calculator permit 5157 match community c3_184_75 c3_185_76 c3_186_77 c3_187_78 c3_188_79 set community 0:109 route-map calculator permit 5158 match community c3_189_80 c3_190_81 c3_191_82 c3_192_83 c3_193_84 set community 0:109 route-map calculator permit 5159 match community c3_194_85 c3_195_86 c3_196_87 c3_197_88 c3_198_89 set community 0:109 route-map calculator permit 5160 match community c3_199_90 c3_200_91 c3_201_92 c3_202_93 c3_203_94 set community 0:109 route-map calculator permit 5161 match community c3_204_95 c3_205_96 c3_206_97 c3_207_98 c3_208_99 set community 0:109 route-map calculator permit 5162 match community c3_209_100 c3_210_101 c3_211_102 c3_212_103 c3_213_104 set community 0:109 route-map calculator permit 5163 match community c3_214_105 c3_215_106 c3_216_107 c3_217_108 c4_218_2 set community 0:109 route-map calculator permit 5164 match community c3_218_109 c4_219_2 c3_219_110 c3_220_111 c3_221_112 set community 0:109 route-map calculator permit 5165 match community c3_222_113 c3_223_114 c3_224_115 c3_225_116 c3_226_117 set community 0:109 route-map calculator permit 5166 match community c3_227_118 c3_228_119 c3_229_120 c3_230_121 c3_231_122 set community 0:109 route-map calculator permit 5167 match community c3_232_123 c3_233_124 c3_234_125 c3_235_126 c3_236_127 set community 0:109 route-map calculator permit 5168 match community c3_237_128 c3_238_129 c3_239_130 c3_240_131 c3_241_132 set community 0:109 route-map calculator permit 5169 match community c3_242_133 c3_243_134 c3_244_135 c3_245_136 c3_246_137 set community 0:109 route-map calculator permit 5170 match community c3_247_138 c3_248_139 c3_249_140 c3_250_141 c3_251_142 set community 0:109 route-map calculator permit 5171 match community c3_252_143 c3_253_144 c3_254_145 c3_255_146 c3_256_147 set community 0:109 ip community-list standard 2_187_202 permit 65000:2 0:187 0:202 route-map calculator permit 5172 match community 2_187_202 set community 0:37774 ip community-list standard 2_5_167 permit 65000:2 0:5 0:167 route-map calculator permit 5173 match community 2_5_167 set community 0:835 ip community-list standard 2_100_213 permit 65000:2 0:100 0:213 ip community-list standard 2_142_150 permit 65000:2 0:142 0:150 route-map calculator permit 5174 match community 2_100_213 2_142_150 set community 0:21300 ip community-list standard 2_55_89 permit 65000:2 0:55 0:89 route-map calculator permit 5175 match community 2_55_89 set community 0:4895 ip community-list standard 2_18_230 permit 65000:2 0:18 0:230 ip community-list standard 2_20_207 permit 65000:2 0:20 0:207 ip community-list standard 2_23_180 permit 65000:2 0:23 0:180 ip community-list standard 2_30_138 permit 65000:2 0:30 0:138 ip community-list standard 2_36_115 permit 65000:2 0:36 0:115 ip community-list standard 2_45_92 permit 65000:2 0:45 0:92 ip community-list standard 2_46_90 permit 65000:2 0:46 0:90 ip community-list standard 2_60_69 permit 65000:2 0:60 0:69 route-map calculator permit 5176 match community 2_18_230 2_20_207 2_23_180 2_30_138 2_36_115 set community 0:4140 route-map calculator permit 5177 match community 2_45_92 2_46_90 2_60_69 set community 0:4140 ip community-list standard 2_4_221 permit 65000:2 0:4 0:221 ip community-list standard 2_13_68 permit 65000:2 0:13 0:68 ip community-list standard 2_17_52 permit 65000:2 0:17 0:52 ip community-list standard 2_26_34 permit 65000:2 0:26 0:34 route-map calculator permit 5178 match community 2_4_221 2_13_68 2_17_52 2_26_34 set community 0:884 ip community-list standard 2_152_188 permit 65000:2 0:152 0:188 route-map calculator permit 5179 match community 2_152_188 set community 0:28576 ip community-list standard 2_4_233 permit 65000:2 0:4 0:233 route-map calculator permit 5180 match community 2_4_233 set community 0:932 ip community-list standard 2_143_174 permit 65000:2 0:143 0:174 route-map calculator permit 5181 match community 2_143_174 set community 0:24882 ip community-list standard 2_222_240 permit 65000:2 0:222 0:240 route-map calculator permit 5182 match community 2_222_240 set community 0:53280 ip community-list standard 2_64_231 permit 65000:2 0:64 0:231 ip community-list standard 2_66_224 permit 65000:2 0:66 0:224 ip community-list standard 2_77_192 permit 65000:2 0:77 0:192 ip community-list standard 2_84_176 permit 65000:2 0:84 0:176 ip community-list standard 2_88_168 permit 65000:2 0:88 0:168 ip community-list standard 2_96_154 permit 65000:2 0:96 0:154 ip community-list standard 2_112_132 permit 65000:2 0:112 0:132 route-map calculator permit 5183 match community 2_64_231 2_66_224 2_77_192 2_84_176 2_88_168 set community 0:14784 route-map calculator permit 5184 match community 2_96_154 2_112_132 set community 0:14784 ip community-list standard 2_150_239 permit 65000:2 0:150 0:239 route-map calculator permit 5185 match community 2_150_239 set community 0:35850 ip community-list standard 1_1_64 permit 65000:1 0:1 0:64 ip community-list standard 2_1_65 permit 65000:2 0:1 0:65 ip community-list standard 1_2_63 permit 65000:1 0:2 0:63 ip community-list standard 1_3_62 permit 65000:1 0:3 0:62 ip community-list standard 1_4_61 permit 65000:1 0:4 0:61 ip community-list standard 2_5_13 permit 65000:2 0:5 0:13 ip community-list standard 1_5_60 permit 65000:1 0:5 0:60 ip community-list standard 1_6_59 permit 65000:1 0:6 0:59 ip community-list standard 1_7_58 permit 65000:1 0:7 0:58 ip community-list standard 1_8_57 permit 65000:1 0:8 0:57 ip community-list standard 1_9_56 permit 65000:1 0:9 0:56 ip community-list standard 1_10_55 permit 65000:1 0:10 0:55 ip community-list standard 1_11_54 permit 65000:1 0:11 0:54 ip community-list standard 1_12_53 permit 65000:1 0:12 0:53 ip community-list standard 1_13_52 permit 65000:1 0:13 0:52 ip community-list standard 1_14_51 permit 65000:1 0:14 0:51 ip community-list standard 1_15_50 permit 65000:1 0:15 0:50 ip community-list standard 1_16_49 permit 65000:1 0:16 0:49 ip community-list standard 1_17_48 permit 65000:1 0:17 0:48 ip community-list standard 1_18_47 permit 65000:1 0:18 0:47 ip community-list standard 1_19_46 permit 65000:1 0:19 0:46 ip community-list standard 1_20_45 permit 65000:1 0:20 0:45 ip community-list standard 1_21_44 permit 65000:1 0:21 0:44 ip community-list standard 1_22_43 permit 65000:1 0:22 0:43 ip community-list standard 1_23_42 permit 65000:1 0:23 0:42 ip community-list standard 1_24_41 permit 65000:1 0:24 0:41 ip community-list standard 1_25_40 permit 65000:1 0:25 0:40 ip community-list standard 1_26_39 permit 65000:1 0:26 0:39 ip community-list standard 1_27_38 permit 65000:1 0:27 0:38 ip community-list standard 1_28_37 permit 65000:1 0:28 0:37 ip community-list standard 1_29_36 permit 65000:1 0:29 0:36 ip community-list standard 1_30_35 permit 65000:1 0:30 0:35 ip community-list standard 1_31_34 permit 65000:1 0:31 0:34 ip community-list standard 1_32_33 permit 65000:1 0:32 0:33 ip community-list expanded c65 permit 1 ^65000:4_0:65_0:1$ ip community-list expanded c65 permit 2 ^65000:3_0:66_0:1$ ip community-list expanded c65 permit 3 ^65000:3_0:67_0:2$ ip community-list expanded c65 permit 4 ^65000:3_0:68_0:3$ ip community-list expanded c65 permit 5 ^65000:3_0:69_0:4$ ip community-list expanded c65 permit 6 ^65000:3_0:70_0:5$ ip community-list expanded c65 permit 7 ^65000:3_0:71_0:6$ ip community-list expanded c65 permit 8 ^65000:3_0:72_0:7$ ip community-list expanded c65 permit 9 ^65000:3_0:73_0:8$ ip community-list expanded c65 permit 10 ^65000:3_0:74_0:9$ ip community-list expanded c65 permit 11 ^65000:3_0:75_0:10$ ip community-list expanded c65 permit 12 ^65000:3_0:76_0:11$ ip community-list expanded c65 permit 13 ^65000:3_0:77_0:12$ ip community-list expanded c65 permit 14 ^65000:3_0:78_0:13$ ip community-list expanded c65 permit 15 ^65000:3_0:79_0:14$ ip community-list expanded c65 permit 16 ^65000:3_0:80_0:15$ ip community-list expanded c65 permit 17 ^65000:3_0:81_0:16$ ip community-list expanded c65 permit 18 ^65000:3_0:82_0:17$ ip community-list expanded c65 permit 19 ^65000:3_0:83_0:18$ ip community-list expanded c65 permit 20 ^65000:3_0:84_0:19$ ip community-list expanded c65 permit 21 ^65000:3_0:85_0:20$ ip community-list expanded c65 permit 22 ^65000:3_0:86_0:21$ ip community-list expanded c65 permit 23 ^65000:3_0:87_0:22$ ip community-list expanded c65 permit 24 ^65000:3_0:88_0:23$ ip community-list expanded c65 permit 25 ^65000:3_0:89_0:24$ ip community-list expanded c65 permit 26 ^65000:3_0:90_0:25$ ip community-list expanded c65 permit 27 ^65000:3_0:91_0:26$ ip community-list expanded c65 permit 28 ^65000:3_0:92_0:27$ ip community-list expanded c65 permit 29 ^65000:3_0:93_0:28$ ip community-list expanded c65 permit 30 ^65000:3_0:94_0:29$ ip community-list expanded c65 permit 31 ^65000:3_0:95_0:30$ ip community-list expanded c65 permit 32 ^65000:3_0:96_0:31$ ip community-list expanded c65 permit 33 ^65000:3_0:97_0:32$ ip community-list expanded c65 permit 34 ^65000:3_0:98_0:33$ ip community-list expanded c65 permit 35 ^65000:3_0:99_0:34$ ip community-list expanded c65 permit 36 ^65000:3_0:100_0:35$ ip community-list expanded c65 permit 37 ^65000:3_0:101_0:36$ ip community-list expanded c65 permit 38 ^65000:3_0:102_0:37$ ip community-list expanded c65 permit 39 ^65000:3_0:103_0:38$ ip community-list expanded c65 permit 40 ^65000:3_0:104_0:39$ ip community-list expanded c65 permit 41 ^65000:3_0:105_0:40$ ip community-list expanded c65 permit 42 ^65000:3_0:106_0:41$ ip community-list expanded c65 permit 43 ^65000:3_0:107_0:42$ ip community-list expanded c65 permit 44 ^65000:3_0:108_0:43$ ip community-list expanded c65 permit 45 ^65000:3_0:109_0:44$ ip community-list expanded c65 permit 46 ^65000:3_0:110_0:45$ ip community-list expanded c65 permit 47 ^65000:3_0:111_0:46$ ip community-list expanded c65 permit 48 ^65000:3_0:112_0:47$ ip community-list expanded c65 permit 49 ^65000:3_0:113_0:48$ ip community-list expanded c65 permit 50 ^65000:3_0:114_0:49$ ip community-list expanded c65 permit 51 ^65000:3_0:115_0:50$ ip community-list expanded c65 permit 52 ^65000:3_0:116_0:51$ ip community-list expanded c65 permit 53 ^65000:3_0:117_0:52$ ip community-list expanded c65 permit 54 ^65000:3_0:118_0:53$ ip community-list expanded c65 permit 55 ^65000:3_0:119_0:54$ ip community-list expanded c65 permit 56 ^65000:3_0:120_0:55$ ip community-list expanded c65 permit 57 ^65000:3_0:121_0:56$ ip community-list expanded c65 permit 58 ^65000:3_0:122_0:57$ ip community-list expanded c65 permit 59 ^65000:3_0:123_0:58$ ip community-list expanded c65 permit 60 ^65000:3_0:124_0:59$ ip community-list expanded c65 permit 61 ^65000:3_0:125_0:60$ ip community-list expanded c65 permit 62 ^65000:3_0:126_0:61$ ip community-list expanded c65 permit 63 ^65000:3_0:127_0:62$ ip community-list expanded c65 permit 64 ^65000:3_0:128_0:63$ ip community-list expanded c65 permit 65 ^65000:3_0:129_0:64$ ip community-list expanded c65 permit 66 ^65000:4_0:130_0:2$ ip community-list expanded c65 permit 67 ^65000:3_0:130_0:65$ ip community-list expanded c65 permit 68 ^65000:4_0:131_0:2$ ip community-list expanded c65 permit 69 ^65000:3_0:131_0:66$ ip community-list expanded c65 permit 70 ^65000:3_0:132_0:67$ ip community-list expanded c65 permit 71 ^65000:3_0:133_0:68$ ip community-list expanded c65 permit 72 ^65000:3_0:134_0:69$ ip community-list expanded c65 permit 73 ^65000:3_0:135_0:70$ ip community-list expanded c65 permit 74 ^65000:3_0:136_0:71$ ip community-list expanded c65 permit 75 ^65000:3_0:137_0:72$ ip community-list expanded c65 permit 76 ^65000:3_0:138_0:73$ ip community-list expanded c65 permit 77 ^65000:3_0:139_0:74$ ip community-list expanded c65 permit 78 ^65000:3_0:140_0:75$ ip community-list expanded c65 permit 79 ^65000:3_0:141_0:76$ ip community-list expanded c65 permit 80 ^65000:3_0:142_0:77$ ip community-list expanded c65 permit 81 ^65000:3_0:143_0:78$ ip community-list expanded c65 permit 82 ^65000:3_0:144_0:79$ ip community-list expanded c65 permit 83 ^65000:3_0:145_0:80$ ip community-list expanded c65 permit 84 ^65000:3_0:146_0:81$ ip community-list expanded c65 permit 85 ^65000:3_0:147_0:82$ ip community-list expanded c65 permit 86 ^65000:3_0:148_0:83$ ip community-list expanded c65 permit 87 ^65000:3_0:149_0:84$ ip community-list expanded c65 permit 88 ^65000:3_0:150_0:85$ ip community-list expanded c65 permit 89 ^65000:3_0:151_0:86$ ip community-list expanded c65 permit 90 ^65000:3_0:152_0:87$ ip community-list expanded c65 permit 91 ^65000:3_0:153_0:88$ ip community-list expanded c65 permit 92 ^65000:3_0:154_0:89$ ip community-list expanded c65 permit 93 ^65000:3_0:155_0:90$ ip community-list expanded c65 permit 94 ^65000:3_0:156_0:91$ ip community-list expanded c65 permit 95 ^65000:3_0:157_0:92$ ip community-list expanded c65 permit 96 ^65000:3_0:158_0:93$ ip community-list expanded c65 permit 97 ^65000:3_0:159_0:94$ ip community-list expanded c65 permit 98 ^65000:3_0:160_0:95$ ip community-list expanded c65 permit 99 ^65000:3_0:161_0:96$ ip community-list expanded c65 permit 100 ^65000:3_0:162_0:97$ ip community-list expanded c65 permit 101 ^65000:3_0:163_0:98$ ip community-list expanded c65 permit 102 ^65000:3_0:164_0:99$ ip community-list expanded c65 permit 103 ^65000:3_0:165_0:100$ ip community-list expanded c65 permit 104 ^65000:3_0:166_0:101$ ip community-list expanded c65 permit 105 ^65000:3_0:167_0:102$ ip community-list expanded c65 permit 106 ^65000:3_0:168_0:103$ ip community-list expanded c65 permit 107 ^65000:3_0:169_0:104$ ip community-list expanded c65 permit 108 ^65000:3_0:170_0:105$ ip community-list expanded c65 permit 109 ^65000:3_0:171_0:106$ ip community-list expanded c65 permit 110 ^65000:3_0:172_0:107$ ip community-list expanded c65 permit 111 ^65000:3_0:173_0:108$ ip community-list expanded c65 permit 112 ^65000:3_0:174_0:109$ ip community-list expanded c65 permit 113 ^65000:3_0:175_0:110$ ip community-list expanded c65 permit 114 ^65000:3_0:176_0:111$ ip community-list expanded c65 permit 115 ^65000:3_0:177_0:112$ ip community-list expanded c65 permit 116 ^65000:3_0:178_0:113$ ip community-list expanded c65 permit 117 ^65000:3_0:179_0:114$ ip community-list expanded c65 permit 118 ^65000:3_0:180_0:115$ ip community-list expanded c65 permit 119 ^65000:3_0:181_0:116$ ip community-list expanded c65 permit 120 ^65000:3_0:182_0:117$ ip community-list expanded c65 permit 121 ^65000:3_0:183_0:118$ ip community-list expanded c65 permit 122 ^65000:3_0:184_0:119$ ip community-list expanded c65 permit 123 ^65000:3_0:185_0:120$ ip community-list expanded c65 permit 124 ^65000:3_0:186_0:121$ ip community-list expanded c65 permit 125 ^65000:3_0:187_0:122$ ip community-list expanded c65 permit 126 ^65000:3_0:188_0:123$ ip community-list expanded c65 permit 127 ^65000:3_0:189_0:124$ ip community-list expanded c65 permit 128 ^65000:3_0:190_0:125$ ip community-list expanded c65 permit 129 ^65000:3_0:191_0:126$ ip community-list expanded c65 permit 130 ^65000:3_0:192_0:127$ ip community-list expanded c65 permit 131 ^65000:3_0:193_0:128$ ip community-list expanded c65 permit 132 ^65000:3_0:194_0:129$ ip community-list expanded c65 permit 133 ^65000:4_0:195_0:3$ ip community-list expanded c65 permit 134 ^65000:3_0:195_0:130$ ip community-list expanded c65 permit 135 ^65000:4_0:196_0:3$ ip community-list expanded c65 permit 136 ^65000:3_0:196_0:131$ ip community-list expanded c65 permit 137 ^65000:4_0:197_0:3$ ip community-list expanded c65 permit 138 ^65000:3_0:197_0:132$ ip community-list expanded c65 permit 139 ^65000:3_0:198_0:133$ ip community-list expanded c65 permit 140 ^65000:3_0:199_0:134$ ip community-list expanded c65 permit 141 ^65000:3_0:200_0:135$ ip community-list expanded c65 permit 142 ^65000:3_0:201_0:136$ ip community-list expanded c65 permit 143 ^65000:3_0:202_0:137$ ip community-list expanded c65 permit 144 ^65000:3_0:203_0:138$ ip community-list expanded c65 permit 145 ^65000:3_0:204_0:139$ ip community-list expanded c65 permit 146 ^65000:3_0:205_0:140$ ip community-list expanded c65 permit 147 ^65000:3_0:206_0:141$ ip community-list expanded c65 permit 148 ^65000:3_0:207_0:142$ ip community-list expanded c65 permit 149 ^65000:3_0:208_0:143$ ip community-list expanded c65 permit 150 ^65000:3_0:209_0:144$ ip community-list expanded c65 permit 151 ^65000:3_0:210_0:145$ ip community-list expanded c65 permit 152 ^65000:3_0:211_0:146$ ip community-list expanded c65 permit 153 ^65000:3_0:212_0:147$ ip community-list expanded c65 permit 154 ^65000:3_0:213_0:148$ ip community-list expanded c65 permit 155 ^65000:3_0:214_0:149$ ip community-list expanded c65 permit 156 ^65000:3_0:215_0:150$ ip community-list expanded c65 permit 157 ^65000:3_0:216_0:151$ ip community-list expanded c65 permit 158 ^65000:3_0:217_0:152$ ip community-list expanded c65 permit 159 ^65000:3_0:218_0:153$ ip community-list expanded c65 permit 160 ^65000:3_0:219_0:154$ ip community-list expanded c65 permit 161 ^65000:3_0:220_0:155$ ip community-list expanded c65 permit 162 ^65000:3_0:221_0:156$ ip community-list expanded c65 permit 163 ^65000:3_0:222_0:157$ ip community-list expanded c65 permit 164 ^65000:3_0:223_0:158$ ip community-list expanded c65 permit 165 ^65000:3_0:224_0:159$ ip community-list expanded c65 permit 166 ^65000:3_0:225_0:160$ ip community-list expanded c65 permit 167 ^65000:3_0:226_0:161$ ip community-list expanded c65 permit 168 ^65000:3_0:227_0:162$ ip community-list expanded c65 permit 169 ^65000:3_0:228_0:163$ ip community-list expanded c65 permit 170 ^65000:3_0:229_0:164$ ip community-list expanded c65 permit 171 ^65000:3_0:230_0:165$ ip community-list expanded c65 permit 172 ^65000:3_0:231_0:166$ ip community-list expanded c65 permit 173 ^65000:3_0:232_0:167$ ip community-list expanded c65 permit 174 ^65000:3_0:233_0:168$ ip community-list expanded c65 permit 175 ^65000:3_0:234_0:169$ ip community-list expanded c65 permit 176 ^65000:3_0:235_0:170$ ip community-list expanded c65 permit 177 ^65000:3_0:236_0:171$ ip community-list expanded c65 permit 178 ^65000:3_0:237_0:172$ ip community-list expanded c65 permit 179 ^65000:3_0:238_0:173$ ip community-list expanded c65 permit 180 ^65000:3_0:239_0:174$ ip community-list expanded c65 permit 181 ^65000:3_0:240_0:175$ ip community-list expanded c65 permit 182 ^65000:3_0:241_0:176$ ip community-list expanded c65 permit 183 ^65000:3_0:242_0:177$ ip community-list expanded c65 permit 184 ^65000:3_0:243_0:178$ ip community-list expanded c65 permit 185 ^65000:3_0:244_0:179$ ip community-list expanded c65 permit 186 ^65000:3_0:245_0:180$ ip community-list expanded c65 permit 187 ^65000:3_0:246_0:181$ ip community-list expanded c65 permit 188 ^65000:3_0:247_0:182$ ip community-list expanded c65 permit 189 ^65000:3_0:248_0:183$ ip community-list expanded c65 permit 190 ^65000:3_0:249_0:184$ ip community-list expanded c65 permit 191 ^65000:3_0:250_0:185$ ip community-list expanded c65 permit 192 ^65000:3_0:251_0:186$ ip community-list expanded c65 permit 193 ^65000:3_0:252_0:187$ ip community-list expanded c65 permit 194 ^65000:3_0:253_0:188$ ip community-list expanded c65 permit 195 ^65000:3_0:254_0:189$ ip community-list expanded c65 permit 196 ^65000:3_0:255_0:190$ ip community-list expanded c65 permit 197 ^65000:3_0:256_0:191$ route-map calculator permit 5186 match community 1_1_64 2_1_65 1_2_63 1_3_62 1_4_61 set community 0:65 route-map calculator permit 5187 match community 2_5_13 1_5_60 1_6_59 1_7_58 1_8_57 set community 0:65 route-map calculator permit 5188 match community 1_9_56 1_10_55 1_11_54 1_12_53 1_13_52 set community 0:65 route-map calculator permit 5189 match community 1_14_51 1_15_50 1_16_49 1_17_48 1_18_47 set community 0:65 route-map calculator permit 5190 match community 1_19_46 1_20_45 1_21_44 1_22_43 1_23_42 set community 0:65 route-map calculator permit 5191 match community 1_24_41 1_25_40 1_26_39 1_27_38 1_28_37 set community 0:65 route-map calculator permit 5192 match community 1_29_36 1_30_35 1_31_34 1_32_33 c4_65_1 set community 0:65 route-map calculator permit 5193 match community c3_66_1 c3_67_2 c3_68_3 c3_69_4 c3_70_5 set community 0:65 route-map calculator permit 5194 match community c3_71_6 c3_72_7 c3_73_8 c3_74_9 c3_75_10 set community 0:65 route-map calculator permit 5195 match community c3_76_11 c3_77_12 c3_78_13 c3_79_14 c3_80_15 set community 0:65 route-map calculator permit 5196 match community c3_81_16 c3_82_17 c3_83_18 c3_84_19 c3_85_20 set community 0:65 route-map calculator permit 5197 match community c3_86_21 c3_87_22 c3_88_23 c3_89_24 c3_90_25 set community 0:65 route-map calculator permit 5198 match community c3_91_26 c3_92_27 c3_93_28 c3_94_29 c3_95_30 set community 0:65 route-map calculator permit 5199 match community c3_96_31 c3_97_32 c3_98_33 c3_99_34 c3_100_35 set community 0:65 route-map calculator permit 5200 match community c3_101_36 c3_102_37 c3_103_38 c3_104_39 c3_105_40 set community 0:65 route-map calculator permit 5201 match community c3_106_41 c3_107_42 c3_108_43 c3_109_44 c3_110_45 set community 0:65 route-map calculator permit 5202 match community c3_111_46 c3_112_47 c3_113_48 c3_114_49 c3_115_50 set community 0:65 route-map calculator permit 5203 match community c3_116_51 c3_117_52 c3_118_53 c3_119_54 c3_120_55 set community 0:65 route-map calculator permit 5204 match community c3_121_56 c3_122_57 c3_123_58 c3_124_59 c3_125_60 set community 0:65 route-map calculator permit 5205 match community c3_126_61 c3_127_62 c3_128_63 c3_129_64 c4_130_2 set community 0:65 route-map calculator permit 5206 match community c3_130_65 c4_131_2 c3_131_66 c3_132_67 c3_133_68 set community 0:65 route-map calculator permit 5207 match community c3_134_69 c3_135_70 c3_136_71 c3_137_72 c3_138_73 set community 0:65 route-map calculator permit 5208 match community c3_139_74 c3_140_75 c3_141_76 c3_142_77 c3_143_78 set community 0:65 route-map calculator permit 5209 match community c3_144_79 c3_145_80 c3_146_81 c3_147_82 c3_148_83 set community 0:65 route-map calculator permit 5210 match community c3_149_84 c3_150_85 c3_151_86 c3_152_87 c3_153_88 set community 0:65 route-map calculator permit 5211 match community c3_154_89 c3_155_90 c3_156_91 c3_157_92 c3_158_93 set community 0:65 route-map calculator permit 5212 match community c3_159_94 c3_160_95 c3_161_96 c3_162_97 c3_163_98 set community 0:65 route-map calculator permit 5213 match community c3_164_99 c3_165_100 c3_166_101 c3_167_102 c3_168_103 set community 0:65 route-map calculator permit 5214 match community c3_169_104 c3_170_105 c3_171_106 c3_172_107 c3_173_108 set community 0:65 route-map calculator permit 5215 match community c3_174_109 c3_175_110 c3_176_111 c3_177_112 c3_178_113 set community 0:65 route-map calculator permit 5216 match community c3_179_114 c3_180_115 c3_181_116 c3_182_117 c3_183_118 set community 0:65 route-map calculator permit 5217 match community c3_184_119 c3_185_120 c3_186_121 c3_187_122 c3_188_123 set community 0:65 route-map calculator permit 5218 match community c3_189_124 c3_190_125 c3_191_126 c3_192_127 c3_193_128 set community 0:65 route-map calculator permit 5219 match community c3_194_129 c4_195_3 c3_195_130 c4_196_3 c3_196_131 set community 0:65 route-map calculator permit 5220 match community c4_197_3 c3_197_132 c3_198_133 c3_199_134 c3_200_135 set community 0:65 route-map calculator permit 5221 match community c3_201_136 c3_202_137 c3_203_138 c3_204_139 c3_205_140 set community 0:65 route-map calculator permit 5222 match community c3_206_141 c3_207_142 c3_208_143 c3_209_144 c3_210_145 set community 0:65 route-map calculator permit 5223 match community c3_211_146 c3_212_147 c3_213_148 c3_214_149 c3_215_150 set community 0:65 route-map calculator permit 5224 match community c3_216_151 c3_217_152 c3_218_153 c3_219_154 c3_220_155 set community 0:65 route-map calculator permit 5225 match community c3_221_156 c3_222_157 c3_223_158 c3_224_159 c3_225_160 set community 0:65 route-map calculator permit 5226 match community c3_226_161 c3_227_162 c3_228_163 c3_229_164 c3_230_165 set community 0:65 route-map calculator permit 5227 match community c3_231_166 c3_232_167 c3_233_168 c3_234_169 c3_235_170 set community 0:65 route-map calculator permit 5228 match community c3_236_171 c3_237_172 c3_238_173 c3_239_174 c3_240_175 set community 0:65 route-map calculator permit 5229 match community c3_241_176 c3_242_177 c3_243_178 c3_244_179 c3_245_180 set community 0:65 route-map calculator permit 5230 match community c3_246_181 c3_247_182 c3_248_183 c3_249_184 c3_250_185 set community 0:65 route-map calculator permit 5231 match community c3_251_186 c3_252_187 c3_253_188 c3_254_189 c3_255_190 set community 0:65 route-map calculator permit 5232 match community c3_256_191 set community 0:65 ip community-list standard 2_81_89 permit 65000:2 0:81 0:89 route-map calculator permit 5233 match community 2_81_89 set community 0:7209 ip community-list standard 2_137_190 permit 65000:2 0:137 0:190 route-map calculator permit 5234 match community 2_137_190 set community 0:26030 ip community-list standard 2_153_252 permit 65000:2 0:153 0:252 ip community-list standard 2_162_238 permit 65000:2 0:162 0:238 ip community-list standard 2_189_204 permit 65000:2 0:189 0:204 route-map calculator permit 5235 match community 2_153_252 2_162_238 2_189_204 set community 0:38556 ip community-list standard 2_19_158 permit 65000:2 0:19 0:158 ip community-list standard 2_38_79 permit 65000:2 0:38 0:79 route-map calculator permit 5236 match community 2_19_158 2_38_79 set community 0:3002 ip community-list standard 2_71_119 permit 65000:2 0:71 0:119 route-map calculator permit 5237 match community 2_71_119 set community 0:8449 ip community-list standard 2_6_243 permit 65000:2 0:6 0:243 ip community-list standard 2_9_162 permit 65000:2 0:9 0:162 ip community-list standard 2_18_81 permit 65000:2 0:18 0:81 ip community-list standard 2_27_54 permit 65000:2 0:27 0:54 route-map calculator permit 5238 match community 2_6_243 2_9_162 2_18_81 2_27_54 set community 0:1458 ip community-list standard 2_172_219 permit 65000:2 0:172 0:219 route-map calculator permit 5239 match community 2_172_219 set community 0:37668 ip community-list standard 2_97_107 permit 65000:2 0:97 0:107 route-map calculator permit 5240 match community 2_97_107 set community 0:10379 ip community-list standard 2_69_252 permit 65000:2 0:69 0:252 ip community-list standard 2_84_207 permit 65000:2 0:84 0:207 ip community-list standard 2_92_189 permit 65000:2 0:92 0:189 ip community-list standard 2_108_161 permit 65000:2 0:108 0:161 ip community-list standard 2_126_138 permit 65000:2 0:126 0:138 route-map calculator permit 5241 match community 2_69_252 2_84_207 2_92_189 2_108_161 2_126_138 set community 0:17388 ip community-list standard 2_89_188 permit 65000:2 0:89 0:188 ip community-list standard 2_94_178 permit 65000:2 0:94 0:178 route-map calculator permit 5242 match community 2_89_188 2_94_178 set community 0:16732 ip community-list standard 2_37_200 permit 65000:2 0:37 0:200 ip community-list standard 2_40_185 permit 65000:2 0:40 0:185 ip community-list standard 2_50_148 permit 65000:2 0:50 0:148 ip community-list standard 2_74_100 permit 65000:2 0:74 0:100 route-map calculator permit 5243 match community 2_37_200 2_40_185 2_50_148 2_74_100 set community 0:7400 ip community-list standard 2_57_229 permit 65000:2 0:57 0:229 route-map calculator permit 5244 match community 2_57_229 set community 0:13053 ip community-list standard 2_21_256 permit 65000:2 0:21 0:256 ip community-list standard 2_24_224 permit 65000:2 0:24 0:224 ip community-list standard 2_28_192 permit 65000:2 0:28 0:192 ip community-list standard 2_32_168 permit 65000:2 0:32 0:168 ip community-list standard 2_42_128 permit 65000:2 0:42 0:128 ip community-list standard 2_48_112 permit 65000:2 0:48 0:112 ip community-list standard 2_56_96 permit 65000:2 0:56 0:96 ip community-list standard 2_64_84 permit 65000:2 0:64 0:84 route-map calculator permit 5245 match community 2_21_256 2_24_224 2_28_192 2_32_168 2_42_128 set community 0:5376 route-map calculator permit 5246 match community 2_48_112 2_56_96 2_64_84 set community 0:5376 ip community-list standard 2_181_201 permit 65000:2 0:181 0:201 route-map calculator permit 5247 match community 2_181_201 set community 0:36381 ip community-list standard 2_233_247 permit 65000:2 0:233 0:247 route-map calculator permit 5248 match community 2_233_247 set community 0:57551 ip community-list standard 2_4_197 permit 65000:2 0:4 0:197 route-map calculator permit 5249 match community 2_4_197 set community 0:788 ip community-list standard 2_110_139 permit 65000:2 0:110 0:139 route-map calculator permit 5250 match community 2_110_139 set community 0:15290 ip community-list standard 2_72_223 permit 65000:2 0:72 0:223 route-map calculator permit 5251 match community 2_72_223 set community 0:16056 ip community-list standard 2_189_219 permit 65000:2 0:189 0:219 route-map calculator permit 5252 match community 2_189_219 set community 0:41391 ip community-list standard 2_89_177 permit 65000:2 0:89 0:177 route-map calculator permit 5253 match community 2_89_177 set community 0:15753 ip community-list standard 1_1_129 permit 65000:1 0:1 0:129 ip community-list standard 2_1_130 permit 65000:2 0:1 0:130 ip community-list standard 2_2_65 permit 65000:2 0:2 0:65 ip community-list standard 1_2_128 permit 65000:1 0:2 0:128 ip community-list standard 1_3_127 permit 65000:1 0:3 0:127 ip community-list standard 1_4_126 permit 65000:1 0:4 0:126 ip community-list standard 2_5_26 permit 65000:2 0:5 0:26 ip community-list standard 1_5_125 permit 65000:1 0:5 0:125 ip community-list standard 1_6_124 permit 65000:1 0:6 0:124 ip community-list standard 1_7_123 permit 65000:1 0:7 0:123 ip community-list standard 1_8_122 permit 65000:1 0:8 0:122 ip community-list standard 1_9_121 permit 65000:1 0:9 0:121 ip community-list standard 2_10_13 permit 65000:2 0:10 0:13 ip community-list standard 1_10_120 permit 65000:1 0:10 0:120 ip community-list standard 1_11_119 permit 65000:1 0:11 0:119 ip community-list standard 1_12_118 permit 65000:1 0:12 0:118 ip community-list standard 1_13_117 permit 65000:1 0:13 0:117 ip community-list standard 1_14_116 permit 65000:1 0:14 0:116 ip community-list standard 1_15_115 permit 65000:1 0:15 0:115 ip community-list standard 1_16_114 permit 65000:1 0:16 0:114 ip community-list standard 1_17_113 permit 65000:1 0:17 0:113 ip community-list standard 1_18_112 permit 65000:1 0:18 0:112 ip community-list standard 1_19_111 permit 65000:1 0:19 0:111 ip community-list standard 1_20_110 permit 65000:1 0:20 0:110 ip community-list standard 1_21_109 permit 65000:1 0:21 0:109 ip community-list standard 1_22_108 permit 65000:1 0:22 0:108 ip community-list standard 1_23_107 permit 65000:1 0:23 0:107 ip community-list standard 1_24_106 permit 65000:1 0:24 0:106 ip community-list standard 1_25_105 permit 65000:1 0:25 0:105 ip community-list standard 1_26_104 permit 65000:1 0:26 0:104 ip community-list standard 1_27_103 permit 65000:1 0:27 0:103 ip community-list standard 1_28_102 permit 65000:1 0:28 0:102 ip community-list standard 1_29_101 permit 65000:1 0:29 0:101 ip community-list standard 1_30_100 permit 65000:1 0:30 0:100 ip community-list standard 1_31_99 permit 65000:1 0:31 0:99 ip community-list standard 1_32_98 permit 65000:1 0:32 0:98 ip community-list standard 1_33_97 permit 65000:1 0:33 0:97 ip community-list standard 1_34_96 permit 65000:1 0:34 0:96 ip community-list standard 1_35_95 permit 65000:1 0:35 0:95 ip community-list standard 1_36_94 permit 65000:1 0:36 0:94 ip community-list standard 1_37_93 permit 65000:1 0:37 0:93 ip community-list standard 1_38_92 permit 65000:1 0:38 0:92 ip community-list standard 1_39_91 permit 65000:1 0:39 0:91 ip community-list standard 1_40_90 permit 65000:1 0:40 0:90 ip community-list standard 1_41_89 permit 65000:1 0:41 0:89 ip community-list standard 1_42_88 permit 65000:1 0:42 0:88 ip community-list standard 1_43_87 permit 65000:1 0:43 0:87 ip community-list standard 1_44_86 permit 65000:1 0:44 0:86 ip community-list standard 1_45_85 permit 65000:1 0:45 0:85 ip community-list standard 1_46_84 permit 65000:1 0:46 0:84 ip community-list standard 1_47_83 permit 65000:1 0:47 0:83 ip community-list standard 1_48_82 permit 65000:1 0:48 0:82 ip community-list standard 1_49_81 permit 65000:1 0:49 0:81 ip community-list standard 1_50_80 permit 65000:1 0:50 0:80 ip community-list standard 1_51_79 permit 65000:1 0:51 0:79 ip community-list standard 1_52_78 permit 65000:1 0:52 0:78 ip community-list standard 1_53_77 permit 65000:1 0:53 0:77 ip community-list standard 1_54_76 permit 65000:1 0:54 0:76 ip community-list standard 1_55_75 permit 65000:1 0:55 0:75 ip community-list standard 1_56_74 permit 65000:1 0:56 0:74 ip community-list standard 1_57_73 permit 65000:1 0:57 0:73 ip community-list standard 1_58_72 permit 65000:1 0:58 0:72 ip community-list standard 1_59_71 permit 65000:1 0:59 0:71 ip community-list standard 1_60_70 permit 65000:1 0:60 0:70 ip community-list standard 1_61_69 permit 65000:1 0:61 0:69 ip community-list standard 1_62_68 permit 65000:1 0:62 0:68 ip community-list standard 1_63_67 permit 65000:1 0:63 0:67 ip community-list standard 1_64_66 permit 65000:1 0:64 0:66 ip community-list standard 1_65_65 permit 65000:1 0:65 0:65 ip community-list expanded c130 permit 1 ^65000:4_0:130_0:1$ ip community-list expanded c130 permit 2 ^65000:3_0:131_0:1$ ip community-list expanded c130 permit 3 ^65000:3_0:132_0:2$ ip community-list expanded c130 permit 4 ^65000:3_0:133_0:3$ ip community-list expanded c130 permit 5 ^65000:3_0:134_0:4$ ip community-list expanded c130 permit 6 ^65000:3_0:135_0:5$ ip community-list expanded c130 permit 7 ^65000:3_0:136_0:6$ ip community-list expanded c130 permit 8 ^65000:3_0:137_0:7$ ip community-list expanded c130 permit 9 ^65000:3_0:138_0:8$ ip community-list expanded c130 permit 10 ^65000:3_0:139_0:9$ ip community-list expanded c130 permit 11 ^65000:3_0:140_0:10$ ip community-list expanded c130 permit 12 ^65000:3_0:141_0:11$ ip community-list expanded c130 permit 13 ^65000:3_0:142_0:12$ ip community-list expanded c130 permit 14 ^65000:3_0:143_0:13$ ip community-list expanded c130 permit 15 ^65000:3_0:144_0:14$ ip community-list expanded c130 permit 16 ^65000:3_0:145_0:15$ ip community-list expanded c130 permit 17 ^65000:3_0:146_0:16$ ip community-list expanded c130 permit 18 ^65000:3_0:147_0:17$ ip community-list expanded c130 permit 19 ^65000:3_0:148_0:18$ ip community-list expanded c130 permit 20 ^65000:3_0:149_0:19$ ip community-list expanded c130 permit 21 ^65000:3_0:150_0:20$ ip community-list expanded c130 permit 22 ^65000:3_0:151_0:21$ ip community-list expanded c130 permit 23 ^65000:3_0:152_0:22$ ip community-list expanded c130 permit 24 ^65000:3_0:153_0:23$ ip community-list expanded c130 permit 25 ^65000:3_0:154_0:24$ ip community-list expanded c130 permit 26 ^65000:3_0:155_0:25$ ip community-list expanded c130 permit 27 ^65000:3_0:156_0:26$ ip community-list expanded c130 permit 28 ^65000:3_0:157_0:27$ ip community-list expanded c130 permit 29 ^65000:3_0:158_0:28$ ip community-list expanded c130 permit 30 ^65000:3_0:159_0:29$ ip community-list expanded c130 permit 31 ^65000:3_0:160_0:30$ ip community-list expanded c130 permit 32 ^65000:3_0:161_0:31$ ip community-list expanded c130 permit 33 ^65000:3_0:162_0:32$ ip community-list expanded c130 permit 34 ^65000:3_0:163_0:33$ ip community-list expanded c130 permit 35 ^65000:3_0:164_0:34$ ip community-list expanded c130 permit 36 ^65000:3_0:165_0:35$ ip community-list expanded c130 permit 37 ^65000:3_0:166_0:36$ ip community-list expanded c130 permit 38 ^65000:3_0:167_0:37$ ip community-list expanded c130 permit 39 ^65000:3_0:168_0:38$ ip community-list expanded c130 permit 40 ^65000:3_0:169_0:39$ ip community-list expanded c130 permit 41 ^65000:3_0:170_0:40$ ip community-list expanded c130 permit 42 ^65000:3_0:171_0:41$ ip community-list expanded c130 permit 43 ^65000:3_0:172_0:42$ ip community-list expanded c130 permit 44 ^65000:3_0:173_0:43$ ip community-list expanded c130 permit 45 ^65000:3_0:174_0:44$ ip community-list expanded c130 permit 46 ^65000:3_0:175_0:45$ ip community-list expanded c130 permit 47 ^65000:3_0:176_0:46$ ip community-list expanded c130 permit 48 ^65000:3_0:177_0:47$ ip community-list expanded c130 permit 49 ^65000:3_0:178_0:48$ ip community-list expanded c130 permit 50 ^65000:3_0:179_0:49$ ip community-list expanded c130 permit 51 ^65000:3_0:180_0:50$ ip community-list expanded c130 permit 52 ^65000:3_0:181_0:51$ ip community-list expanded c130 permit 53 ^65000:3_0:182_0:52$ ip community-list expanded c130 permit 54 ^65000:3_0:183_0:53$ ip community-list expanded c130 permit 55 ^65000:3_0:184_0:54$ ip community-list expanded c130 permit 56 ^65000:3_0:185_0:55$ ip community-list expanded c130 permit 57 ^65000:3_0:186_0:56$ ip community-list expanded c130 permit 58 ^65000:3_0:187_0:57$ ip community-list expanded c130 permit 59 ^65000:3_0:188_0:58$ ip community-list expanded c130 permit 60 ^65000:3_0:189_0:59$ ip community-list expanded c130 permit 61 ^65000:3_0:190_0:60$ ip community-list expanded c130 permit 62 ^65000:3_0:191_0:61$ ip community-list expanded c130 permit 63 ^65000:3_0:192_0:62$ ip community-list expanded c130 permit 64 ^65000:3_0:193_0:63$ ip community-list expanded c130 permit 65 ^65000:3_0:194_0:64$ ip community-list expanded c130 permit 66 ^65000:3_0:195_0:65$ ip community-list expanded c130 permit 67 ^65000:3_0:196_0:66$ ip community-list expanded c130 permit 68 ^65000:3_0:197_0:67$ ip community-list expanded c130 permit 69 ^65000:3_0:198_0:68$ ip community-list expanded c130 permit 70 ^65000:3_0:199_0:69$ ip community-list expanded c130 permit 71 ^65000:3_0:200_0:70$ ip community-list expanded c130 permit 72 ^65000:3_0:201_0:71$ ip community-list expanded c130 permit 73 ^65000:3_0:202_0:72$ ip community-list expanded c130 permit 74 ^65000:3_0:203_0:73$ ip community-list expanded c130 permit 75 ^65000:3_0:204_0:74$ ip community-list expanded c130 permit 76 ^65000:3_0:205_0:75$ ip community-list expanded c130 permit 77 ^65000:3_0:206_0:76$ ip community-list expanded c130 permit 78 ^65000:3_0:207_0:77$ ip community-list expanded c130 permit 79 ^65000:3_0:208_0:78$ ip community-list expanded c130 permit 80 ^65000:3_0:209_0:79$ ip community-list expanded c130 permit 81 ^65000:3_0:210_0:80$ ip community-list expanded c130 permit 82 ^65000:3_0:211_0:81$ ip community-list expanded c130 permit 83 ^65000:3_0:212_0:82$ ip community-list expanded c130 permit 84 ^65000:3_0:213_0:83$ ip community-list expanded c130 permit 85 ^65000:3_0:214_0:84$ ip community-list expanded c130 permit 86 ^65000:3_0:215_0:85$ ip community-list expanded c130 permit 87 ^65000:3_0:216_0:86$ ip community-list expanded c130 permit 88 ^65000:3_0:217_0:87$ ip community-list expanded c130 permit 89 ^65000:3_0:218_0:88$ ip community-list expanded c130 permit 90 ^65000:3_0:219_0:89$ ip community-list expanded c130 permit 91 ^65000:3_0:220_0:90$ ip community-list expanded c130 permit 92 ^65000:3_0:221_0:91$ ip community-list expanded c130 permit 93 ^65000:3_0:222_0:92$ ip community-list expanded c130 permit 94 ^65000:3_0:223_0:93$ ip community-list expanded c130 permit 95 ^65000:3_0:224_0:94$ ip community-list expanded c130 permit 96 ^65000:3_0:225_0:95$ ip community-list expanded c130 permit 97 ^65000:3_0:226_0:96$ ip community-list expanded c130 permit 98 ^65000:3_0:227_0:97$ ip community-list expanded c130 permit 99 ^65000:3_0:228_0:98$ ip community-list expanded c130 permit 100 ^65000:3_0:229_0:99$ ip community-list expanded c130 permit 101 ^65000:3_0:230_0:100$ ip community-list expanded c130 permit 102 ^65000:3_0:231_0:101$ ip community-list expanded c130 permit 103 ^65000:3_0:232_0:102$ ip community-list expanded c130 permit 104 ^65000:3_0:233_0:103$ ip community-list expanded c130 permit 105 ^65000:3_0:234_0:104$ ip community-list expanded c130 permit 106 ^65000:3_0:235_0:105$ ip community-list expanded c130 permit 107 ^65000:3_0:236_0:106$ ip community-list expanded c130 permit 108 ^65000:3_0:237_0:107$ ip community-list expanded c130 permit 109 ^65000:3_0:238_0:108$ ip community-list expanded c130 permit 110 ^65000:3_0:239_0:109$ ip community-list expanded c130 permit 111 ^65000:3_0:240_0:110$ ip community-list expanded c130 permit 112 ^65000:3_0:241_0:111$ ip community-list expanded c130 permit 113 ^65000:3_0:242_0:112$ ip community-list expanded c130 permit 114 ^65000:3_0:243_0:113$ ip community-list expanded c130 permit 115 ^65000:3_0:244_0:114$ ip community-list expanded c130 permit 116 ^65000:3_0:245_0:115$ ip community-list expanded c130 permit 117 ^65000:3_0:246_0:116$ ip community-list expanded c130 permit 118 ^65000:3_0:247_0:117$ ip community-list expanded c130 permit 119 ^65000:3_0:248_0:118$ ip community-list expanded c130 permit 120 ^65000:3_0:249_0:119$ ip community-list expanded c130 permit 121 ^65000:3_0:250_0:120$ ip community-list expanded c130 permit 122 ^65000:3_0:251_0:121$ ip community-list expanded c130 permit 123 ^65000:3_0:252_0:122$ ip community-list expanded c130 permit 124 ^65000:3_0:253_0:123$ ip community-list expanded c130 permit 125 ^65000:3_0:254_0:124$ ip community-list expanded c130 permit 126 ^65000:3_0:255_0:125$ ip community-list expanded c130 permit 127 ^65000:3_0:256_0:126$ route-map calculator permit 5254 match community 1_1_129 2_1_130 2_2_65 1_2_128 1_3_127 set community 0:130 route-map calculator permit 5255 match community 1_4_126 2_5_26 1_5_125 1_6_124 1_7_123 set community 0:130 route-map calculator permit 5256 match community 1_8_122 1_9_121 2_10_13 1_10_120 1_11_119 set community 0:130 route-map calculator permit 5257 match community 1_12_118 1_13_117 1_14_116 1_15_115 1_16_114 set community 0:130 route-map calculator permit 5258 match community 1_17_113 1_18_112 1_19_111 1_20_110 1_21_109 set community 0:130 route-map calculator permit 5259 match community 1_22_108 1_23_107 1_24_106 1_25_105 1_26_104 set community 0:130 route-map calculator permit 5260 match community 1_27_103 1_28_102 1_29_101 1_30_100 1_31_99 set community 0:130 route-map calculator permit 5261 match community 1_32_98 1_33_97 1_34_96 1_35_95 1_36_94 set community 0:130 route-map calculator permit 5262 match community 1_37_93 1_38_92 1_39_91 1_40_90 1_41_89 set community 0:130 route-map calculator permit 5263 match community 1_42_88 1_43_87 1_44_86 1_45_85 1_46_84 set community 0:130 route-map calculator permit 5264 match community 1_47_83 1_48_82 1_49_81 1_50_80 1_51_79 set community 0:130 route-map calculator permit 5265 match community 1_52_78 1_53_77 1_54_76 1_55_75 1_56_74 set community 0:130 route-map calculator permit 5266 match community 1_57_73 1_58_72 1_59_71 1_60_70 1_61_69 set community 0:130 route-map calculator permit 5267 match community 1_62_68 1_63_67 1_64_66 1_65_65 c4_130_1 set community 0:130 route-map calculator permit 5268 match community c3_131_1 c3_132_2 c3_133_3 c3_134_4 c3_135_5 set community 0:130 route-map calculator permit 5269 match community c3_136_6 c3_137_7 c3_138_8 c3_139_9 c3_140_10 set community 0:130 route-map calculator permit 5270 match community c3_141_11 c3_142_12 c3_143_13 c3_144_14 c3_145_15 set community 0:130 route-map calculator permit 5271 match community c3_146_16 c3_147_17 c3_148_18 c3_149_19 c3_150_20 set community 0:130 route-map calculator permit 5272 match community c3_151_21 c3_152_22 c3_153_23 c3_154_24 c3_155_25 set community 0:130 route-map calculator permit 5273 match community c3_156_26 c3_157_27 c3_158_28 c3_159_29 c3_160_30 set community 0:130 route-map calculator permit 5274 match community c3_161_31 c3_162_32 c3_163_33 c3_164_34 c3_165_35 set community 0:130 route-map calculator permit 5275 match community c3_166_36 c3_167_37 c3_168_38 c3_169_39 c3_170_40 set community 0:130 route-map calculator permit 5276 match community c3_171_41 c3_172_42 c3_173_43 c3_174_44 c3_175_45 set community 0:130 route-map calculator permit 5277 match community c3_176_46 c3_177_47 c3_178_48 c3_179_49 c3_180_50 set community 0:130 route-map calculator permit 5278 match community c3_181_51 c3_182_52 c3_183_53 c3_184_54 c3_185_55 set community 0:130 route-map calculator permit 5279 match community c3_186_56 c3_187_57 c3_188_58 c3_189_59 c3_190_60 set community 0:130 route-map calculator permit 5280 match community c3_191_61 c3_192_62 c3_193_63 c3_194_64 c3_195_65 set community 0:130 route-map calculator permit 5281 match community c3_196_66 c3_197_67 c3_198_68 c3_199_69 c3_200_70 set community 0:130 route-map calculator permit 5282 match community c3_201_71 c3_202_72 c3_203_73 c3_204_74 c3_205_75 set community 0:130 route-map calculator permit 5283 match community c3_206_76 c3_207_77 c3_208_78 c3_209_79 c3_210_80 set community 0:130 route-map calculator permit 5284 match community c3_211_81 c3_212_82 c3_213_83 c3_214_84 c3_215_85 set community 0:130 route-map calculator permit 5285 match community c3_216_86 c3_217_87 c3_218_88 c3_219_89 c3_220_90 set community 0:130 route-map calculator permit 5286 match community c3_221_91 c3_222_92 c3_223_93 c3_224_94 c3_225_95 set community 0:130 route-map calculator permit 5287 match community c3_226_96 c3_227_97 c3_228_98 c3_229_99 c3_230_100 set community 0:130 route-map calculator permit 5288 match community c3_231_101 c3_232_102 c3_233_103 c3_234_104 c3_235_105 set community 0:130 route-map calculator permit 5289 match community c3_236_106 c3_237_107 c3_238_108 c3_239_109 c3_240_110 set community 0:130 route-map calculator permit 5290 match community c3_241_111 c3_242_112 c3_243_113 c3_244_114 c3_245_115 set community 0:130 route-map calculator permit 5291 match community c3_246_116 c3_247_117 c3_248_118 c3_249_119 c3_250_120 set community 0:130 route-map calculator permit 5292 match community c3_251_121 c3_252_122 c3_253_123 c3_254_124 c3_255_125 set community 0:130 route-map calculator permit 5293 match community c3_256_126 set community 0:130 ip community-list standard 2_165_214 permit 65000:2 0:165 0:214 route-map calculator permit 5294 match community 2_165_214 set community 0:35310 ip community-list standard 2_100_167 permit 65000:2 0:100 0:167 route-map calculator permit 5295 match community 2_100_167 set community 0:16700 ip community-list standard 2_17_87 permit 65000:2 0:17 0:87 ip community-list standard 2_29_51 permit 65000:2 0:29 0:51 route-map calculator permit 5296 match community 2_17_87 2_29_51 set community 0:1479 ip community-list standard 2_59_91 permit 65000:2 0:59 0:91 route-map calculator permit 5297 match community 2_59_91 set community 0:5369 ip community-list standard 2_42_247 permit 65000:2 0:42 0:247 ip community-list standard 2_57_182 permit 65000:2 0:57 0:182 ip community-list standard 2_78_133 permit 65000:2 0:78 0:133 ip community-list standard 2_91_114 permit 65000:2 0:91 0:114 route-map calculator permit 5298 match community 2_42_247 2_57_182 2_78_133 2_91_114 set community 0:10374 ip community-list standard 2_83_179 permit 65000:2 0:83 0:179 route-map calculator permit 5299 match community 2_83_179 set community 0:14857 ip community-list standard 2_55_173 permit 65000:2 0:55 0:173 route-map calculator permit 5300 match community 2_55_173 set community 0:9515 ip community-list standard 2_21_194 permit 65000:2 0:21 0:194 ip community-list standard 2_42_97 permit 65000:2 0:42 0:97 route-map calculator permit 5301 match community 2_21_194 2_42_97 set community 0:4074 ip community-list standard 2_34_218 permit 65000:2 0:34 0:218 ip community-list standard 2_68_109 permit 65000:2 0:68 0:109 route-map calculator permit 5302 match community 2_34_218 2_68_109 set community 0:7412 ip community-list standard 2_134_230 permit 65000:2 0:134 0:230 route-map calculator permit 5303 match community 2_134_230 set community 0:30820 ip community-list standard 2_133_253 permit 65000:2 0:133 0:253 ip community-list standard 2_161_209 permit 65000:2 0:161 0:209 route-map calculator permit 5304 match community 2_133_253 2_161_209 set community 0:33649 ip community-list standard 2_129_213 permit 65000:2 0:129 0:213 route-map calculator permit 5305 match community 2_129_213 set community 0:27477 ip community-list standard 2_52_230 permit 65000:2 0:52 0:230 ip community-list standard 2_65_184 permit 65000:2 0:65 0:184 ip community-list standard 2_92_130 permit 65000:2 0:92 0:130 ip community-list standard 2_104_115 permit 65000:2 0:104 0:115 route-map calculator permit 5306 match community 2_52_230 2_65_184 2_92_130 2_104_115 set community 0:11960 ip community-list standard 2_45_107 permit 65000:2 0:45 0:107 route-map calculator permit 5307 match community 2_45_107 set community 0:4815 ip community-list standard 2_143_157 permit 65000:2 0:143 0:157 route-map calculator permit 5308 match community 2_143_157 set community 0:22451 ip community-list standard 2_153_181 permit 65000:2 0:153 0:181 route-map calculator permit 5309 match community 2_153_181 set community 0:27693 ip community-list standard 2_116_250 permit 65000:2 0:116 0:250 ip community-list standard 2_125_232 permit 65000:2 0:125 0:232 ip community-list standard 2_145_200 permit 65000:2 0:145 0:200 route-map calculator permit 5310 match community 2_116_250 2_125_232 2_145_200 set community 0:29000 ip community-list standard 2_10_163 permit 65000:2 0:10 0:163 route-map calculator permit 5311 match community 2_10_163 set community 0:1630 ip community-list standard 2_186_246 permit 65000:2 0:186 0:246 route-map calculator permit 5312 match community 2_186_246 set community 0:45756 ip community-list standard 2_3_215 permit 65000:2 0:3 0:215 ip community-list standard 2_5_129 permit 65000:2 0:5 0:129 ip community-list standard 2_15_43 permit 65000:2 0:15 0:43 route-map calculator permit 5313 match community 2_3_215 2_5_129 2_15_43 set community 0:645 ip community-list standard 2_47_187 permit 65000:2 0:47 0:187 route-map calculator permit 5314 match community 2_47_187 set community 0:8789 ip community-list standard 2_30_222 permit 65000:2 0:30 0:222 ip community-list standard 2_36_185 permit 65000:2 0:36 0:185 ip community-list standard 2_37_180 permit 65000:2 0:37 0:180 ip community-list standard 2_45_148 permit 65000:2 0:45 0:148 ip community-list standard 2_60_111 permit 65000:2 0:60 0:111 ip community-list standard 2_74_90 permit 65000:2 0:74 0:90 route-map calculator permit 5315 match community 2_30_222 2_36_185 2_37_180 2_45_148 2_60_111 set community 0:6660 route-map calculator permit 5316 match community 2_74_90 set community 0:6660 ip community-list standard 2_96_253 permit 65000:2 0:96 0:253 ip community-list standard 2_132_184 permit 65000:2 0:132 0:184 ip community-list standard 2_138_176 permit 65000:2 0:138 0:176 route-map calculator permit 5317 match community 2_96_253 2_132_184 2_138_176 set community 0:24288 ip community-list standard 2_171_210 permit 65000:2 0:171 0:210 ip community-list standard 2_189_190 permit 65000:2 0:189 0:190 route-map calculator permit 5318 match community 2_171_210 2_189_190 set community 0:35910 ip community-list standard 2_153_177 permit 65000:2 0:153 0:177 route-map calculator permit 5319 match community 2_153_177 set community 0:27081 ip community-list standard 2_3_216 permit 65000:2 0:3 0:216 ip community-list standard 2_4_162 permit 65000:2 0:4 0:162 ip community-list standard 2_6_108 permit 65000:2 0:6 0:108 ip community-list standard 2_8_81 permit 65000:2 0:8 0:81 ip community-list standard 2_9_72 permit 65000:2 0:9 0:72 ip community-list standard 2_12_54 permit 65000:2 0:12 0:54 ip community-list standard 2_18_36 permit 65000:2 0:18 0:36 ip community-list standard 2_24_27 permit 65000:2 0:24 0:27 route-map calculator permit 5320 match community 2_3_216 2_4_162 2_6_108 2_8_81 2_9_72 set community 0:648 route-map calculator permit 5321 match community 2_12_54 2_18_36 2_24_27 set community 0:648 ip community-list standard 2_63_97 permit 65000:2 0:63 0:97 route-map calculator permit 5322 match community 2_63_97 set community 0:6111 ip community-list standard 2_83_139 permit 65000:2 0:83 0:139 route-map calculator permit 5323 match community 2_83_139 set community 0:11537 ip community-list standard 2_223_225 permit 65000:2 0:223 0:225 route-map calculator permit 5324 match community 2_223_225 set community 0:50175 ip community-list standard 2_5_109 permit 65000:2 0:5 0:109 route-map calculator permit 5325 match community 2_5_109 set community 0:545 ip community-list standard 2_154_244 permit 65000:2 0:154 0:244 route-map calculator permit 5326 match community 2_154_244 set community 0:37576 ip community-list standard 2_125_197 permit 65000:2 0:125 0:197 route-map calculator permit 5327 match community 2_125_197 set community 0:24625 ip community-list standard 2_75_194 permit 65000:2 0:75 0:194 ip community-list standard 2_97_150 permit 65000:2 0:97 0:150 route-map calculator permit 5328 match community 2_75_194 2_97_150 set community 0:14550 ip community-list standard 2_46_151 permit 65000:2 0:46 0:151 route-map calculator permit 5329 match community 2_46_151 set community 0:6946 ip community-list standard 2_22_229 permit 65000:2 0:22 0:229 route-map calculator permit 5330 match community 2_22_229 set community 0:5038 ip community-list standard 2_59_219 permit 65000:2 0:59 0:219 ip community-list standard 2_73_177 permit 65000:2 0:73 0:177 route-map calculator permit 5331 match community 2_59_219 2_73_177 set community 0:12921 ip community-list standard 2_29_227 permit 65000:2 0:29 0:227 route-map calculator permit 5332 match community 2_29_227 set community 0:6583 ip community-list standard 2_74_253 permit 65000:2 0:74 0:253 route-map calculator permit 5333 match community 2_74_253 set community 0:18722 ip community-list standard 2_48_238 permit 65000:2 0:48 0:238 ip community-list standard 2_51_224 permit 65000:2 0:51 0:224 ip community-list standard 2_56_204 permit 65000:2 0:56 0:204 ip community-list standard 2_68_168 permit 65000:2 0:68 0:168 ip community-list standard 2_84_136 permit 65000:2 0:84 0:136 ip community-list standard 2_96_119 permit 65000:2 0:96 0:119 ip community-list standard 2_102_112 permit 65000:2 0:102 0:112 route-map calculator permit 5334 match community 2_48_238 2_51_224 2_56_204 2_68_168 2_84_136 set community 0:11424 route-map calculator permit 5335 match community 2_96_119 2_102_112 set community 0:11424 ip community-list standard 2_64_213 permit 65000:2 0:64 0:213 ip community-list standard 2_71_192 permit 65000:2 0:71 0:192 ip community-list standard 2_96_142 permit 65000:2 0:96 0:142 route-map calculator permit 5336 match community 2_64_213 2_71_192 2_96_142 set community 0:13632 ip community-list standard 2_103_255 permit 65000:2 0:103 0:255 route-map calculator permit 5337 match community 2_103_255 set community 0:26265 ip community-list standard 1_1_55 permit 65000:1 0:1 0:55 ip community-list standard 2_1_56 permit 65000:2 0:1 0:56 ip community-list standard 2_2_28 permit 65000:2 0:2 0:28 ip community-list standard 1_2_54 permit 65000:1 0:2 0:54 ip community-list standard 1_3_53 permit 65000:1 0:3 0:53 ip community-list standard 2_4_14 permit 65000:2 0:4 0:14 ip community-list standard 1_4_52 permit 65000:1 0:4 0:52 ip community-list standard 1_5_51 permit 65000:1 0:5 0:51 ip community-list standard 1_6_50 permit 65000:1 0:6 0:50 ip community-list standard 2_7_8 permit 65000:2 0:7 0:8 ip community-list standard 1_7_49 permit 65000:1 0:7 0:49 ip community-list standard 1_8_48 permit 65000:1 0:8 0:48 ip community-list standard 1_9_47 permit 65000:1 0:9 0:47 ip community-list standard 1_10_46 permit 65000:1 0:10 0:46 ip community-list standard 1_11_45 permit 65000:1 0:11 0:45 ip community-list standard 1_12_44 permit 65000:1 0:12 0:44 ip community-list standard 1_13_43 permit 65000:1 0:13 0:43 ip community-list standard 1_14_42 permit 65000:1 0:14 0:42 ip community-list standard 1_15_41 permit 65000:1 0:15 0:41 ip community-list standard 1_16_40 permit 65000:1 0:16 0:40 ip community-list standard 1_17_39 permit 65000:1 0:17 0:39 ip community-list standard 1_18_38 permit 65000:1 0:18 0:38 ip community-list standard 1_19_37 permit 65000:1 0:19 0:37 ip community-list standard 1_20_36 permit 65000:1 0:20 0:36 ip community-list standard 1_21_35 permit 65000:1 0:21 0:35 ip community-list standard 1_22_34 permit 65000:1 0:22 0:34 ip community-list standard 1_23_33 permit 65000:1 0:23 0:33 ip community-list standard 1_24_32 permit 65000:1 0:24 0:32 ip community-list standard 1_25_31 permit 65000:1 0:25 0:31 ip community-list standard 1_26_30 permit 65000:1 0:26 0:30 ip community-list standard 1_27_29 permit 65000:1 0:27 0:29 ip community-list standard 1_28_28 permit 65000:1 0:28 0:28 ip community-list expanded c56 permit 1 ^65000:4_0:56_0:1$ ip community-list expanded c56 permit 2 ^65000:3_0:57_0:1$ ip community-list expanded c56 permit 3 ^65000:3_0:58_0:2$ ip community-list expanded c56 permit 4 ^65000:3_0:59_0:3$ ip community-list expanded c56 permit 5 ^65000:3_0:60_0:4$ ip community-list expanded c56 permit 6 ^65000:3_0:61_0:5$ ip community-list expanded c56 permit 7 ^65000:3_0:62_0:6$ ip community-list expanded c56 permit 8 ^65000:3_0:63_0:7$ ip community-list expanded c56 permit 9 ^65000:3_0:64_0:8$ ip community-list expanded c56 permit 10 ^65000:3_0:65_0:9$ ip community-list expanded c56 permit 11 ^65000:3_0:66_0:10$ ip community-list expanded c56 permit 12 ^65000:3_0:67_0:11$ ip community-list expanded c56 permit 13 ^65000:3_0:68_0:12$ ip community-list expanded c56 permit 14 ^65000:3_0:69_0:13$ ip community-list expanded c56 permit 15 ^65000:3_0:70_0:14$ ip community-list expanded c56 permit 16 ^65000:3_0:71_0:15$ ip community-list expanded c56 permit 17 ^65000:3_0:72_0:16$ ip community-list expanded c56 permit 18 ^65000:3_0:73_0:17$ ip community-list expanded c56 permit 19 ^65000:3_0:74_0:18$ ip community-list expanded c56 permit 20 ^65000:3_0:75_0:19$ ip community-list expanded c56 permit 21 ^65000:3_0:76_0:20$ ip community-list expanded c56 permit 22 ^65000:3_0:77_0:21$ ip community-list expanded c56 permit 23 ^65000:3_0:78_0:22$ ip community-list expanded c56 permit 24 ^65000:3_0:79_0:23$ ip community-list expanded c56 permit 25 ^65000:3_0:80_0:24$ ip community-list expanded c56 permit 26 ^65000:3_0:81_0:25$ ip community-list expanded c56 permit 27 ^65000:3_0:82_0:26$ ip community-list expanded c56 permit 28 ^65000:3_0:83_0:27$ ip community-list expanded c56 permit 29 ^65000:3_0:84_0:28$ ip community-list expanded c56 permit 30 ^65000:3_0:85_0:29$ ip community-list expanded c56 permit 31 ^65000:3_0:86_0:30$ ip community-list expanded c56 permit 32 ^65000:3_0:87_0:31$ ip community-list expanded c56 permit 33 ^65000:3_0:88_0:32$ ip community-list expanded c56 permit 34 ^65000:3_0:89_0:33$ ip community-list expanded c56 permit 35 ^65000:3_0:90_0:34$ ip community-list expanded c56 permit 36 ^65000:3_0:91_0:35$ ip community-list expanded c56 permit 37 ^65000:3_0:92_0:36$ ip community-list expanded c56 permit 38 ^65000:3_0:93_0:37$ ip community-list expanded c56 permit 39 ^65000:3_0:94_0:38$ ip community-list expanded c56 permit 40 ^65000:3_0:95_0:39$ ip community-list expanded c56 permit 41 ^65000:3_0:96_0:40$ ip community-list expanded c56 permit 42 ^65000:3_0:97_0:41$ ip community-list expanded c56 permit 43 ^65000:3_0:98_0:42$ ip community-list expanded c56 permit 44 ^65000:3_0:99_0:43$ ip community-list expanded c56 permit 45 ^65000:3_0:100_0:44$ ip community-list expanded c56 permit 46 ^65000:3_0:101_0:45$ ip community-list expanded c56 permit 47 ^65000:3_0:102_0:46$ ip community-list expanded c56 permit 48 ^65000:3_0:103_0:47$ ip community-list expanded c56 permit 49 ^65000:3_0:104_0:48$ ip community-list expanded c56 permit 50 ^65000:3_0:105_0:49$ ip community-list expanded c56 permit 51 ^65000:3_0:106_0:50$ ip community-list expanded c56 permit 52 ^65000:3_0:107_0:51$ ip community-list expanded c56 permit 53 ^65000:3_0:108_0:52$ ip community-list expanded c56 permit 54 ^65000:3_0:109_0:53$ ip community-list expanded c56 permit 55 ^65000:3_0:110_0:54$ ip community-list expanded c56 permit 56 ^65000:3_0:111_0:55$ ip community-list expanded c56 permit 57 ^65000:4_0:112_0:2$ ip community-list expanded c56 permit 58 ^65000:3_0:112_0:56$ ip community-list expanded c56 permit 59 ^65000:4_0:113_0:2$ ip community-list expanded c56 permit 60 ^65000:3_0:113_0:57$ ip community-list expanded c56 permit 61 ^65000:3_0:114_0:58$ ip community-list expanded c56 permit 62 ^65000:3_0:115_0:59$ ip community-list expanded c56 permit 63 ^65000:3_0:116_0:60$ ip community-list expanded c56 permit 64 ^65000:3_0:117_0:61$ ip community-list expanded c56 permit 65 ^65000:3_0:118_0:62$ ip community-list expanded c56 permit 66 ^65000:3_0:119_0:63$ ip community-list expanded c56 permit 67 ^65000:3_0:120_0:64$ ip community-list expanded c56 permit 68 ^65000:3_0:121_0:65$ ip community-list expanded c56 permit 69 ^65000:3_0:122_0:66$ ip community-list expanded c56 permit 70 ^65000:3_0:123_0:67$ ip community-list expanded c56 permit 71 ^65000:3_0:124_0:68$ ip community-list expanded c56 permit 72 ^65000:3_0:125_0:69$ ip community-list expanded c56 permit 73 ^65000:3_0:126_0:70$ ip community-list expanded c56 permit 74 ^65000:3_0:127_0:71$ ip community-list expanded c56 permit 75 ^65000:3_0:128_0:72$ ip community-list expanded c56 permit 76 ^65000:3_0:129_0:73$ ip community-list expanded c56 permit 77 ^65000:3_0:130_0:74$ ip community-list expanded c56 permit 78 ^65000:3_0:131_0:75$ ip community-list expanded c56 permit 79 ^65000:3_0:132_0:76$ ip community-list expanded c56 permit 80 ^65000:3_0:133_0:77$ ip community-list expanded c56 permit 81 ^65000:3_0:134_0:78$ ip community-list expanded c56 permit 82 ^65000:3_0:135_0:79$ ip community-list expanded c56 permit 83 ^65000:3_0:136_0:80$ ip community-list expanded c56 permit 84 ^65000:3_0:137_0:81$ ip community-list expanded c56 permit 85 ^65000:3_0:138_0:82$ ip community-list expanded c56 permit 86 ^65000:3_0:139_0:83$ ip community-list expanded c56 permit 87 ^65000:3_0:140_0:84$ ip community-list expanded c56 permit 88 ^65000:3_0:141_0:85$ ip community-list expanded c56 permit 89 ^65000:3_0:142_0:86$ ip community-list expanded c56 permit 90 ^65000:3_0:143_0:87$ ip community-list expanded c56 permit 91 ^65000:3_0:144_0:88$ ip community-list expanded c56 permit 92 ^65000:3_0:145_0:89$ ip community-list expanded c56 permit 93 ^65000:3_0:146_0:90$ ip community-list expanded c56 permit 94 ^65000:3_0:147_0:91$ ip community-list expanded c56 permit 95 ^65000:3_0:148_0:92$ ip community-list expanded c56 permit 96 ^65000:3_0:149_0:93$ ip community-list expanded c56 permit 97 ^65000:3_0:150_0:94$ ip community-list expanded c56 permit 98 ^65000:3_0:151_0:95$ ip community-list expanded c56 permit 99 ^65000:3_0:152_0:96$ ip community-list expanded c56 permit 100 ^65000:3_0:153_0:97$ ip community-list expanded c56 permit 101 ^65000:3_0:154_0:98$ ip community-list expanded c56 permit 102 ^65000:3_0:155_0:99$ ip community-list expanded c56 permit 103 ^65000:3_0:156_0:100$ ip community-list expanded c56 permit 104 ^65000:3_0:157_0:101$ ip community-list expanded c56 permit 105 ^65000:3_0:158_0:102$ ip community-list expanded c56 permit 106 ^65000:3_0:159_0:103$ ip community-list expanded c56 permit 107 ^65000:3_0:160_0:104$ ip community-list expanded c56 permit 108 ^65000:3_0:161_0:105$ ip community-list expanded c56 permit 109 ^65000:3_0:162_0:106$ ip community-list expanded c56 permit 110 ^65000:3_0:163_0:107$ ip community-list expanded c56 permit 111 ^65000:3_0:164_0:108$ ip community-list expanded c56 permit 112 ^65000:3_0:165_0:109$ ip community-list expanded c56 permit 113 ^65000:3_0:166_0:110$ ip community-list expanded c56 permit 114 ^65000:3_0:167_0:111$ ip community-list expanded c56 permit 115 ^65000:4_0:168_0:3$ ip community-list expanded c56 permit 116 ^65000:3_0:168_0:112$ ip community-list expanded c56 permit 117 ^65000:4_0:169_0:3$ ip community-list expanded c56 permit 118 ^65000:3_0:169_0:113$ ip community-list expanded c56 permit 119 ^65000:4_0:170_0:3$ ip community-list expanded c56 permit 120 ^65000:3_0:170_0:114$ ip community-list expanded c56 permit 121 ^65000:3_0:171_0:115$ ip community-list expanded c56 permit 122 ^65000:3_0:172_0:116$ ip community-list expanded c56 permit 123 ^65000:3_0:173_0:117$ ip community-list expanded c56 permit 124 ^65000:3_0:174_0:118$ ip community-list expanded c56 permit 125 ^65000:3_0:175_0:119$ ip community-list expanded c56 permit 126 ^65000:3_0:176_0:120$ ip community-list expanded c56 permit 127 ^65000:3_0:177_0:121$ ip community-list expanded c56 permit 128 ^65000:3_0:178_0:122$ ip community-list expanded c56 permit 129 ^65000:3_0:179_0:123$ ip community-list expanded c56 permit 130 ^65000:3_0:180_0:124$ ip community-list expanded c56 permit 131 ^65000:3_0:181_0:125$ ip community-list expanded c56 permit 132 ^65000:3_0:182_0:126$ ip community-list expanded c56 permit 133 ^65000:3_0:183_0:127$ ip community-list expanded c56 permit 134 ^65000:3_0:184_0:128$ ip community-list expanded c56 permit 135 ^65000:3_0:185_0:129$ ip community-list expanded c56 permit 136 ^65000:3_0:186_0:130$ ip community-list expanded c56 permit 137 ^65000:3_0:187_0:131$ ip community-list expanded c56 permit 138 ^65000:3_0:188_0:132$ ip community-list expanded c56 permit 139 ^65000:3_0:189_0:133$ ip community-list expanded c56 permit 140 ^65000:3_0:190_0:134$ ip community-list expanded c56 permit 141 ^65000:3_0:191_0:135$ ip community-list expanded c56 permit 142 ^65000:3_0:192_0:136$ ip community-list expanded c56 permit 143 ^65000:3_0:193_0:137$ ip community-list expanded c56 permit 144 ^65000:3_0:194_0:138$ ip community-list expanded c56 permit 145 ^65000:3_0:195_0:139$ ip community-list expanded c56 permit 146 ^65000:3_0:196_0:140$ ip community-list expanded c56 permit 147 ^65000:3_0:197_0:141$ ip community-list expanded c56 permit 148 ^65000:3_0:198_0:142$ ip community-list expanded c56 permit 149 ^65000:3_0:199_0:143$ ip community-list expanded c56 permit 150 ^65000:3_0:200_0:144$ ip community-list expanded c56 permit 151 ^65000:3_0:201_0:145$ ip community-list expanded c56 permit 152 ^65000:3_0:202_0:146$ ip community-list expanded c56 permit 153 ^65000:3_0:203_0:147$ ip community-list expanded c56 permit 154 ^65000:3_0:204_0:148$ ip community-list expanded c56 permit 155 ^65000:3_0:205_0:149$ ip community-list expanded c56 permit 156 ^65000:3_0:206_0:150$ ip community-list expanded c56 permit 157 ^65000:3_0:207_0:151$ ip community-list expanded c56 permit 158 ^65000:3_0:208_0:152$ ip community-list expanded c56 permit 159 ^65000:3_0:209_0:153$ ip community-list expanded c56 permit 160 ^65000:3_0:210_0:154$ ip community-list expanded c56 permit 161 ^65000:3_0:211_0:155$ ip community-list expanded c56 permit 162 ^65000:3_0:212_0:156$ ip community-list expanded c56 permit 163 ^65000:3_0:213_0:157$ ip community-list expanded c56 permit 164 ^65000:3_0:214_0:158$ ip community-list expanded c56 permit 165 ^65000:3_0:215_0:159$ ip community-list expanded c56 permit 166 ^65000:3_0:216_0:160$ ip community-list expanded c56 permit 167 ^65000:3_0:217_0:161$ ip community-list expanded c56 permit 168 ^65000:3_0:218_0:162$ ip community-list expanded c56 permit 169 ^65000:3_0:219_0:163$ ip community-list expanded c56 permit 170 ^65000:3_0:220_0:164$ ip community-list expanded c56 permit 171 ^65000:3_0:221_0:165$ ip community-list expanded c56 permit 172 ^65000:3_0:222_0:166$ ip community-list expanded c56 permit 173 ^65000:3_0:223_0:167$ ip community-list expanded c56 permit 174 ^65000:4_0:224_0:4$ ip community-list expanded c56 permit 175 ^65000:3_0:224_0:168$ ip community-list expanded c56 permit 176 ^65000:4_0:225_0:4$ ip community-list expanded c56 permit 177 ^65000:3_0:225_0:169$ ip community-list expanded c56 permit 178 ^65000:4_0:226_0:4$ ip community-list expanded c56 permit 179 ^65000:3_0:226_0:170$ ip community-list expanded c56 permit 180 ^65000:4_0:227_0:4$ ip community-list expanded c56 permit 181 ^65000:3_0:227_0:171$ ip community-list expanded c56 permit 182 ^65000:3_0:228_0:172$ ip community-list expanded c56 permit 183 ^65000:3_0:229_0:173$ ip community-list expanded c56 permit 184 ^65000:3_0:230_0:174$ ip community-list expanded c56 permit 185 ^65000:3_0:231_0:175$ ip community-list expanded c56 permit 186 ^65000:3_0:232_0:176$ ip community-list expanded c56 permit 187 ^65000:3_0:233_0:177$ ip community-list expanded c56 permit 188 ^65000:3_0:234_0:178$ ip community-list expanded c56 permit 189 ^65000:3_0:235_0:179$ ip community-list expanded c56 permit 190 ^65000:3_0:236_0:180$ ip community-list expanded c56 permit 191 ^65000:3_0:237_0:181$ ip community-list expanded c56 permit 192 ^65000:3_0:238_0:182$ ip community-list expanded c56 permit 193 ^65000:3_0:239_0:183$ ip community-list expanded c56 permit 194 ^65000:3_0:240_0:184$ ip community-list expanded c56 permit 195 ^65000:3_0:241_0:185$ ip community-list expanded c56 permit 196 ^65000:3_0:242_0:186$ ip community-list expanded c56 permit 197 ^65000:3_0:243_0:187$ ip community-list expanded c56 permit 198 ^65000:3_0:244_0:188$ ip community-list expanded c56 permit 199 ^65000:3_0:245_0:189$ ip community-list expanded c56 permit 200 ^65000:3_0:246_0:190$ ip community-list expanded c56 permit 201 ^65000:3_0:247_0:191$ ip community-list expanded c56 permit 202 ^65000:3_0:248_0:192$ ip community-list expanded c56 permit 203 ^65000:3_0:249_0:193$ ip community-list expanded c56 permit 204 ^65000:3_0:250_0:194$ ip community-list expanded c56 permit 205 ^65000:3_0:251_0:195$ ip community-list expanded c56 permit 206 ^65000:3_0:252_0:196$ ip community-list expanded c56 permit 207 ^65000:3_0:253_0:197$ ip community-list expanded c56 permit 208 ^65000:3_0:254_0:198$ ip community-list expanded c56 permit 209 ^65000:3_0:255_0:199$ ip community-list expanded c56 permit 210 ^65000:3_0:256_0:200$ route-map calculator permit 5338 match community 1_1_55 2_1_56 2_2_28 1_2_54 1_3_53 set community 0:56 route-map calculator permit 5339 match community 2_4_14 1_4_52 1_5_51 1_6_50 2_7_8 set community 0:56 route-map calculator permit 5340 match community 1_7_49 1_8_48 1_9_47 1_10_46 1_11_45 set community 0:56 route-map calculator permit 5341 match community 1_12_44 1_13_43 1_14_42 1_15_41 1_16_40 set community 0:56 route-map calculator permit 5342 match community 1_17_39 1_18_38 1_19_37 1_20_36 1_21_35 set community 0:56 route-map calculator permit 5343 match community 1_22_34 1_23_33 1_24_32 1_25_31 1_26_30 set community 0:56 route-map calculator permit 5344 match community 1_27_29 1_28_28 c4_56_1 c3_57_1 c3_58_2 set community 0:56 route-map calculator permit 5345 match community c3_59_3 c3_60_4 c3_61_5 c3_62_6 c3_63_7 set community 0:56 route-map calculator permit 5346 match community c3_64_8 c3_65_9 c3_66_10 c3_67_11 c3_68_12 set community 0:56 route-map calculator permit 5347 match community c3_69_13 c3_70_14 c3_71_15 c3_72_16 c3_73_17 set community 0:56 route-map calculator permit 5348 match community c3_74_18 c3_75_19 c3_76_20 c3_77_21 c3_78_22 set community 0:56 route-map calculator permit 5349 match community c3_79_23 c3_80_24 c3_81_25 c3_82_26 c3_83_27 set community 0:56 route-map calculator permit 5350 match community c3_84_28 c3_85_29 c3_86_30 c3_87_31 c3_88_32 set community 0:56 route-map calculator permit 5351 match community c3_89_33 c3_90_34 c3_91_35 c3_92_36 c3_93_37 set community 0:56 route-map calculator permit 5352 match community c3_94_38 c3_95_39 c3_96_40 c3_97_41 c3_98_42 set community 0:56 route-map calculator permit 5353 match community c3_99_43 c3_100_44 c3_101_45 c3_102_46 c3_103_47 set community 0:56 route-map calculator permit 5354 match community c3_104_48 c3_105_49 c3_106_50 c3_107_51 c3_108_52 set community 0:56 route-map calculator permit 5355 match community c3_109_53 c3_110_54 c3_111_55 c4_112_2 c3_112_56 set community 0:56 route-map calculator permit 5356 match community c4_113_2 c3_113_57 c3_114_58 c3_115_59 c3_116_60 set community 0:56 route-map calculator permit 5357 match community c3_117_61 c3_118_62 c3_119_63 c3_120_64 c3_121_65 set community 0:56 route-map calculator permit 5358 match community c3_122_66 c3_123_67 c3_124_68 c3_125_69 c3_126_70 set community 0:56 route-map calculator permit 5359 match community c3_127_71 c3_128_72 c3_129_73 c3_130_74 c3_131_75 set community 0:56 route-map calculator permit 5360 match community c3_132_76 c3_133_77 c3_134_78 c3_135_79 c3_136_80 set community 0:56 route-map calculator permit 5361 match community c3_137_81 c3_138_82 c3_139_83 c3_140_84 c3_141_85 set community 0:56 route-map calculator permit 5362 match community c3_142_86 c3_143_87 c3_144_88 c3_145_89 c3_146_90 set community 0:56 route-map calculator permit 5363 match community c3_147_91 c3_148_92 c3_149_93 c3_150_94 c3_151_95 set community 0:56 route-map calculator permit 5364 match community c3_152_96 c3_153_97 c3_154_98 c3_155_99 c3_156_100 set community 0:56 route-map calculator permit 5365 match community c3_157_101 c3_158_102 c3_159_103 c3_160_104 c3_161_105 set community 0:56 route-map calculator permit 5366 match community c3_162_106 c3_163_107 c3_164_108 c3_165_109 c3_166_110 set community 0:56 route-map calculator permit 5367 match community c3_167_111 c4_168_3 c3_168_112 c4_169_3 c3_169_113 set community 0:56 route-map calculator permit 5368 match community c4_170_3 c3_170_114 c3_171_115 c3_172_116 c3_173_117 set community 0:56 route-map calculator permit 5369 match community c3_174_118 c3_175_119 c3_176_120 c3_177_121 c3_178_122 set community 0:56 route-map calculator permit 5370 match community c3_179_123 c3_180_124 c3_181_125 c3_182_126 c3_183_127 set community 0:56 route-map calculator permit 5371 match community c3_184_128 c3_185_129 c3_186_130 c3_187_131 c3_188_132 set community 0:56 route-map calculator permit 5372 match community c3_189_133 c3_190_134 c3_191_135 c3_192_136 c3_193_137 set community 0:56 route-map calculator permit 5373 match community c3_194_138 c3_195_139 c3_196_140 c3_197_141 c3_198_142 set community 0:56 route-map calculator permit 5374 match community c3_199_143 c3_200_144 c3_201_145 c3_202_146 c3_203_147 set community 0:56 route-map calculator permit 5375 match community c3_204_148 c3_205_149 c3_206_150 c3_207_151 c3_208_152 set community 0:56 route-map calculator permit 5376 match community c3_209_153 c3_210_154 c3_211_155 c3_212_156 c3_213_157 set community 0:56 route-map calculator permit 5377 match community c3_214_158 c3_215_159 c3_216_160 c3_217_161 c3_218_162 set community 0:56 route-map calculator permit 5378 match community c3_219_163 c3_220_164 c3_221_165 c3_222_166 c3_223_167 set community 0:56 route-map calculator permit 5379 match community c4_224_4 c3_224_168 c4_225_4 c3_225_169 c4_226_4 set community 0:56 route-map calculator permit 5380 match community c3_226_170 c4_227_4 c3_227_171 c3_228_172 c3_229_173 set community 0:56 route-map calculator permit 5381 match community c3_230_174 c3_231_175 c3_232_176 c3_233_177 c3_234_178 set community 0:56 route-map calculator permit 5382 match community c3_235_179 c3_236_180 c3_237_181 c3_238_182 c3_239_183 set community 0:56 route-map calculator permit 5383 match community c3_240_184 c3_241_185 c3_242_186 c3_243_187 c3_244_188 set community 0:56 route-map calculator permit 5384 match community c3_245_189 c3_246_190 c3_247_191 c3_248_192 c3_249_193 set community 0:56 route-map calculator permit 5385 match community c3_250_194 c3_251_195 c3_252_196 c3_253_197 c3_254_198 set community 0:56 route-map calculator permit 5386 match community c3_255_199 c3_256_200 set community 0:56 ip community-list standard 1_1_148 permit 65000:1 0:1 0:148 ip community-list standard 2_1_149 permit 65000:2 0:1 0:149 ip community-list standard 1_2_147 permit 65000:1 0:2 0:147 ip community-list standard 1_3_146 permit 65000:1 0:3 0:146 ip community-list standard 1_4_145 permit 65000:1 0:4 0:145 ip community-list standard 1_5_144 permit 65000:1 0:5 0:144 ip community-list standard 1_6_143 permit 65000:1 0:6 0:143 ip community-list standard 1_7_142 permit 65000:1 0:7 0:142 ip community-list standard 1_8_141 permit 65000:1 0:8 0:141 ip community-list standard 1_9_140 permit 65000:1 0:9 0:140 ip community-list standard 1_10_139 permit 65000:1 0:10 0:139 ip community-list standard 1_11_138 permit 65000:1 0:11 0:138 ip community-list standard 1_12_137 permit 65000:1 0:12 0:137 ip community-list standard 1_13_136 permit 65000:1 0:13 0:136 ip community-list standard 1_14_135 permit 65000:1 0:14 0:135 ip community-list standard 1_15_134 permit 65000:1 0:15 0:134 ip community-list standard 1_16_133 permit 65000:1 0:16 0:133 ip community-list standard 1_17_132 permit 65000:1 0:17 0:132 ip community-list standard 1_18_131 permit 65000:1 0:18 0:131 ip community-list standard 1_19_130 permit 65000:1 0:19 0:130 ip community-list standard 1_20_129 permit 65000:1 0:20 0:129 ip community-list standard 1_21_128 permit 65000:1 0:21 0:128 ip community-list standard 1_22_127 permit 65000:1 0:22 0:127 ip community-list standard 1_23_126 permit 65000:1 0:23 0:126 ip community-list standard 1_24_125 permit 65000:1 0:24 0:125 ip community-list standard 1_25_124 permit 65000:1 0:25 0:124 ip community-list standard 1_26_123 permit 65000:1 0:26 0:123 ip community-list standard 1_27_122 permit 65000:1 0:27 0:122 ip community-list standard 1_28_121 permit 65000:1 0:28 0:121 ip community-list standard 1_29_120 permit 65000:1 0:29 0:120 ip community-list standard 1_30_119 permit 65000:1 0:30 0:119 ip community-list standard 1_31_118 permit 65000:1 0:31 0:118 ip community-list standard 1_32_117 permit 65000:1 0:32 0:117 ip community-list standard 1_33_116 permit 65000:1 0:33 0:116 ip community-list standard 1_34_115 permit 65000:1 0:34 0:115 ip community-list standard 1_35_114 permit 65000:1 0:35 0:114 ip community-list standard 1_36_113 permit 65000:1 0:36 0:113 ip community-list standard 1_37_112 permit 65000:1 0:37 0:112 ip community-list standard 1_38_111 permit 65000:1 0:38 0:111 ip community-list standard 1_39_110 permit 65000:1 0:39 0:110 ip community-list standard 1_40_109 permit 65000:1 0:40 0:109 ip community-list standard 1_41_108 permit 65000:1 0:41 0:108 ip community-list standard 1_42_107 permit 65000:1 0:42 0:107 ip community-list standard 1_43_106 permit 65000:1 0:43 0:106 ip community-list standard 1_44_105 permit 65000:1 0:44 0:105 ip community-list standard 1_45_104 permit 65000:1 0:45 0:104 ip community-list standard 1_46_103 permit 65000:1 0:46 0:103 ip community-list standard 1_47_102 permit 65000:1 0:47 0:102 ip community-list standard 1_48_101 permit 65000:1 0:48 0:101 ip community-list standard 1_49_100 permit 65000:1 0:49 0:100 ip community-list standard 1_50_99 permit 65000:1 0:50 0:99 ip community-list standard 1_51_98 permit 65000:1 0:51 0:98 ip community-list standard 1_52_97 permit 65000:1 0:52 0:97 ip community-list standard 1_53_96 permit 65000:1 0:53 0:96 ip community-list standard 1_54_95 permit 65000:1 0:54 0:95 ip community-list standard 1_55_94 permit 65000:1 0:55 0:94 ip community-list standard 1_56_93 permit 65000:1 0:56 0:93 ip community-list standard 1_57_92 permit 65000:1 0:57 0:92 ip community-list standard 1_58_91 permit 65000:1 0:58 0:91 ip community-list standard 1_59_90 permit 65000:1 0:59 0:90 ip community-list standard 1_60_89 permit 65000:1 0:60 0:89 ip community-list standard 1_61_88 permit 65000:1 0:61 0:88 ip community-list standard 1_62_87 permit 65000:1 0:62 0:87 ip community-list standard 1_63_86 permit 65000:1 0:63 0:86 ip community-list standard 1_64_85 permit 65000:1 0:64 0:85 ip community-list standard 1_65_84 permit 65000:1 0:65 0:84 ip community-list standard 1_66_83 permit 65000:1 0:66 0:83 ip community-list standard 1_67_82 permit 65000:1 0:67 0:82 ip community-list standard 1_68_81 permit 65000:1 0:68 0:81 ip community-list standard 1_69_80 permit 65000:1 0:69 0:80 ip community-list standard 1_70_79 permit 65000:1 0:70 0:79 ip community-list standard 1_71_78 permit 65000:1 0:71 0:78 ip community-list standard 1_72_77 permit 65000:1 0:72 0:77 ip community-list standard 1_73_76 permit 65000:1 0:73 0:76 ip community-list standard 1_74_75 permit 65000:1 0:74 0:75 ip community-list expanded c149 permit 1 ^65000:4_0:149_0:1$ ip community-list expanded c149 permit 2 ^65000:3_0:150_0:1$ ip community-list expanded c149 permit 3 ^65000:3_0:151_0:2$ ip community-list expanded c149 permit 4 ^65000:3_0:152_0:3$ ip community-list expanded c149 permit 5 ^65000:3_0:153_0:4$ ip community-list expanded c149 permit 6 ^65000:3_0:154_0:5$ ip community-list expanded c149 permit 7 ^65000:3_0:155_0:6$ ip community-list expanded c149 permit 8 ^65000:3_0:156_0:7$ ip community-list expanded c149 permit 9 ^65000:3_0:157_0:8$ ip community-list expanded c149 permit 10 ^65000:3_0:158_0:9$ ip community-list expanded c149 permit 11 ^65000:3_0:159_0:10$ ip community-list expanded c149 permit 12 ^65000:3_0:160_0:11$ ip community-list expanded c149 permit 13 ^65000:3_0:161_0:12$ ip community-list expanded c149 permit 14 ^65000:3_0:162_0:13$ ip community-list expanded c149 permit 15 ^65000:3_0:163_0:14$ ip community-list expanded c149 permit 16 ^65000:3_0:164_0:15$ ip community-list expanded c149 permit 17 ^65000:3_0:165_0:16$ ip community-list expanded c149 permit 18 ^65000:3_0:166_0:17$ ip community-list expanded c149 permit 19 ^65000:3_0:167_0:18$ ip community-list expanded c149 permit 20 ^65000:3_0:168_0:19$ ip community-list expanded c149 permit 21 ^65000:3_0:169_0:20$ ip community-list expanded c149 permit 22 ^65000:3_0:170_0:21$ ip community-list expanded c149 permit 23 ^65000:3_0:171_0:22$ ip community-list expanded c149 permit 24 ^65000:3_0:172_0:23$ ip community-list expanded c149 permit 25 ^65000:3_0:173_0:24$ ip community-list expanded c149 permit 26 ^65000:3_0:174_0:25$ ip community-list expanded c149 permit 27 ^65000:3_0:175_0:26$ ip community-list expanded c149 permit 28 ^65000:3_0:176_0:27$ ip community-list expanded c149 permit 29 ^65000:3_0:177_0:28$ ip community-list expanded c149 permit 30 ^65000:3_0:178_0:29$ ip community-list expanded c149 permit 31 ^65000:3_0:179_0:30$ ip community-list expanded c149 permit 32 ^65000:3_0:180_0:31$ ip community-list expanded c149 permit 33 ^65000:3_0:181_0:32$ ip community-list expanded c149 permit 34 ^65000:3_0:182_0:33$ ip community-list expanded c149 permit 35 ^65000:3_0:183_0:34$ ip community-list expanded c149 permit 36 ^65000:3_0:184_0:35$ ip community-list expanded c149 permit 37 ^65000:3_0:185_0:36$ ip community-list expanded c149 permit 38 ^65000:3_0:186_0:37$ ip community-list expanded c149 permit 39 ^65000:3_0:187_0:38$ ip community-list expanded c149 permit 40 ^65000:3_0:188_0:39$ ip community-list expanded c149 permit 41 ^65000:3_0:189_0:40$ ip community-list expanded c149 permit 42 ^65000:3_0:190_0:41$ ip community-list expanded c149 permit 43 ^65000:3_0:191_0:42$ ip community-list expanded c149 permit 44 ^65000:3_0:192_0:43$ ip community-list expanded c149 permit 45 ^65000:3_0:193_0:44$ ip community-list expanded c149 permit 46 ^65000:3_0:194_0:45$ ip community-list expanded c149 permit 47 ^65000:3_0:195_0:46$ ip community-list expanded c149 permit 48 ^65000:3_0:196_0:47$ ip community-list expanded c149 permit 49 ^65000:3_0:197_0:48$ ip community-list expanded c149 permit 50 ^65000:3_0:198_0:49$ ip community-list expanded c149 permit 51 ^65000:3_0:199_0:50$ ip community-list expanded c149 permit 52 ^65000:3_0:200_0:51$ ip community-list expanded c149 permit 53 ^65000:3_0:201_0:52$ ip community-list expanded c149 permit 54 ^65000:3_0:202_0:53$ ip community-list expanded c149 permit 55 ^65000:3_0:203_0:54$ ip community-list expanded c149 permit 56 ^65000:3_0:204_0:55$ ip community-list expanded c149 permit 57 ^65000:3_0:205_0:56$ ip community-list expanded c149 permit 58 ^65000:3_0:206_0:57$ ip community-list expanded c149 permit 59 ^65000:3_0:207_0:58$ ip community-list expanded c149 permit 60 ^65000:3_0:208_0:59$ ip community-list expanded c149 permit 61 ^65000:3_0:209_0:60$ ip community-list expanded c149 permit 62 ^65000:3_0:210_0:61$ ip community-list expanded c149 permit 63 ^65000:3_0:211_0:62$ ip community-list expanded c149 permit 64 ^65000:3_0:212_0:63$ ip community-list expanded c149 permit 65 ^65000:3_0:213_0:64$ ip community-list expanded c149 permit 66 ^65000:3_0:214_0:65$ ip community-list expanded c149 permit 67 ^65000:3_0:215_0:66$ ip community-list expanded c149 permit 68 ^65000:3_0:216_0:67$ ip community-list expanded c149 permit 69 ^65000:3_0:217_0:68$ ip community-list expanded c149 permit 70 ^65000:3_0:218_0:69$ ip community-list expanded c149 permit 71 ^65000:3_0:219_0:70$ ip community-list expanded c149 permit 72 ^65000:3_0:220_0:71$ ip community-list expanded c149 permit 73 ^65000:3_0:221_0:72$ ip community-list expanded c149 permit 74 ^65000:3_0:222_0:73$ ip community-list expanded c149 permit 75 ^65000:3_0:223_0:74$ ip community-list expanded c149 permit 76 ^65000:3_0:224_0:75$ ip community-list expanded c149 permit 77 ^65000:3_0:225_0:76$ ip community-list expanded c149 permit 78 ^65000:3_0:226_0:77$ ip community-list expanded c149 permit 79 ^65000:3_0:227_0:78$ ip community-list expanded c149 permit 80 ^65000:3_0:228_0:79$ ip community-list expanded c149 permit 81 ^65000:3_0:229_0:80$ ip community-list expanded c149 permit 82 ^65000:3_0:230_0:81$ ip community-list expanded c149 permit 83 ^65000:3_0:231_0:82$ ip community-list expanded c149 permit 84 ^65000:3_0:232_0:83$ ip community-list expanded c149 permit 85 ^65000:3_0:233_0:84$ ip community-list expanded c149 permit 86 ^65000:3_0:234_0:85$ ip community-list expanded c149 permit 87 ^65000:3_0:235_0:86$ ip community-list expanded c149 permit 88 ^65000:3_0:236_0:87$ ip community-list expanded c149 permit 89 ^65000:3_0:237_0:88$ ip community-list expanded c149 permit 90 ^65000:3_0:238_0:89$ ip community-list expanded c149 permit 91 ^65000:3_0:239_0:90$ ip community-list expanded c149 permit 92 ^65000:3_0:240_0:91$ ip community-list expanded c149 permit 93 ^65000:3_0:241_0:92$ ip community-list expanded c149 permit 94 ^65000:3_0:242_0:93$ ip community-list expanded c149 permit 95 ^65000:3_0:243_0:94$ ip community-list expanded c149 permit 96 ^65000:3_0:244_0:95$ ip community-list expanded c149 permit 97 ^65000:3_0:245_0:96$ ip community-list expanded c149 permit 98 ^65000:3_0:246_0:97$ ip community-list expanded c149 permit 99 ^65000:3_0:247_0:98$ ip community-list expanded c149 permit 100 ^65000:3_0:248_0:99$ ip community-list expanded c149 permit 101 ^65000:3_0:249_0:100$ ip community-list expanded c149 permit 102 ^65000:3_0:250_0:101$ ip community-list expanded c149 permit 103 ^65000:3_0:251_0:102$ ip community-list expanded c149 permit 104 ^65000:3_0:252_0:103$ ip community-list expanded c149 permit 105 ^65000:3_0:253_0:104$ ip community-list expanded c149 permit 106 ^65000:3_0:254_0:105$ ip community-list expanded c149 permit 107 ^65000:3_0:255_0:106$ ip community-list expanded c149 permit 108 ^65000:3_0:256_0:107$ route-map calculator permit 5387 match community 1_1_148 2_1_149 1_2_147 1_3_146 1_4_145 set community 0:149 route-map calculator permit 5388 match community 1_5_144 1_6_143 1_7_142 1_8_141 1_9_140 set community 0:149 route-map calculator permit 5389 match community 1_10_139 1_11_138 1_12_137 1_13_136 1_14_135 set community 0:149 route-map calculator permit 5390 match community 1_15_134 1_16_133 1_17_132 1_18_131 1_19_130 set community 0:149 route-map calculator permit 5391 match community 1_20_129 1_21_128 1_22_127 1_23_126 1_24_125 set community 0:149 route-map calculator permit 5392 match community 1_25_124 1_26_123 1_27_122 1_28_121 1_29_120 set community 0:149 route-map calculator permit 5393 match community 1_30_119 1_31_118 1_32_117 1_33_116 1_34_115 set community 0:149 route-map calculator permit 5394 match community 1_35_114 1_36_113 1_37_112 1_38_111 1_39_110 set community 0:149 route-map calculator permit 5395 match community 1_40_109 1_41_108 1_42_107 1_43_106 1_44_105 set community 0:149 route-map calculator permit 5396 match community 1_45_104 1_46_103 1_47_102 1_48_101 1_49_100 set community 0:149 route-map calculator permit 5397 match community 1_50_99 1_51_98 1_52_97 1_53_96 1_54_95 set community 0:149 route-map calculator permit 5398 match community 1_55_94 1_56_93 1_57_92 1_58_91 1_59_90 set community 0:149 route-map calculator permit 5399 match community 1_60_89 1_61_88 1_62_87 1_63_86 1_64_85 set community 0:149 route-map calculator permit 5400 match community 1_65_84 1_66_83 1_67_82 1_68_81 1_69_80 set community 0:149 route-map calculator permit 5401 match community 1_70_79 1_71_78 1_72_77 1_73_76 1_74_75 set community 0:149 route-map calculator permit 5402 match community c4_149_1 c3_150_1 c3_151_2 c3_152_3 c3_153_4 set community 0:149 route-map calculator permit 5403 match community c3_154_5 c3_155_6 c3_156_7 c3_157_8 c3_158_9 set community 0:149 route-map calculator permit 5404 match community c3_159_10 c3_160_11 c3_161_12 c3_162_13 c3_163_14 set community 0:149 route-map calculator permit 5405 match community c3_164_15 c3_165_16 c3_166_17 c3_167_18 c3_168_19 set community 0:149 route-map calculator permit 5406 match community c3_169_20 c3_170_21 c3_171_22 c3_172_23 c3_173_24 set community 0:149 route-map calculator permit 5407 match community c3_174_25 c3_175_26 c3_176_27 c3_177_28 c3_178_29 set community 0:149 route-map calculator permit 5408 match community c3_179_30 c3_180_31 c3_181_32 c3_182_33 c3_183_34 set community 0:149 route-map calculator permit 5409 match community c3_184_35 c3_185_36 c3_186_37 c3_187_38 c3_188_39 set community 0:149 route-map calculator permit 5410 match community c3_189_40 c3_190_41 c3_191_42 c3_192_43 c3_193_44 set community 0:149 route-map calculator permit 5411 match community c3_194_45 c3_195_46 c3_196_47 c3_197_48 c3_198_49 set community 0:149 route-map calculator permit 5412 match community c3_199_50 c3_200_51 c3_201_52 c3_202_53 c3_203_54 set community 0:149 route-map calculator permit 5413 match community c3_204_55 c3_205_56 c3_206_57 c3_207_58 c3_208_59 set community 0:149 route-map calculator permit 5414 match community c3_209_60 c3_210_61 c3_211_62 c3_212_63 c3_213_64 set community 0:149 route-map calculator permit 5415 match community c3_214_65 c3_215_66 c3_216_67 c3_217_68 c3_218_69 set community 0:149 route-map calculator permit 5416 match community c3_219_70 c3_220_71 c3_221_72 c3_222_73 c3_223_74 set community 0:149 route-map calculator permit 5417 match community c3_224_75 c3_225_76 c3_226_77 c3_227_78 c3_228_79 set community 0:149 route-map calculator permit 5418 match community c3_229_80 c3_230_81 c3_231_82 c3_232_83 c3_233_84 set community 0:149 route-map calculator permit 5419 match community c3_234_85 c3_235_86 c3_236_87 c3_237_88 c3_238_89 set community 0:149 route-map calculator permit 5420 match community c3_239_90 c3_240_91 c3_241_92 c3_242_93 c3_243_94 set community 0:149 route-map calculator permit 5421 match community c3_244_95 c3_245_96 c3_246_97 c3_247_98 c3_248_99 set community 0:149 route-map calculator permit 5422 match community c3_249_100 c3_250_101 c3_251_102 c3_252_103 c3_253_104 set community 0:149 route-map calculator permit 5423 match community c3_254_105 c3_255_106 c3_256_107 set community 0:149 ip community-list standard 2_139_228 permit 65000:2 0:139 0:228 route-map calculator permit 5424 match community 2_139_228 set community 0:31692 ip community-list standard 2_51_209 permit 65000:2 0:51 0:209 ip community-list standard 2_57_187 permit 65000:2 0:57 0:187 route-map calculator permit 5425 match community 2_51_209 2_57_187 set community 0:10659 ip community-list standard 2_203_239 permit 65000:2 0:203 0:239 route-map calculator permit 5426 match community 2_203_239 set community 0:48517 ip community-list standard 2_157_182 permit 65000:2 0:157 0:182 route-map calculator permit 5427 match community 2_157_182 set community 0:28574 ip community-list standard 2_2_183 permit 65000:2 0:2 0:183 ip community-list standard 2_3_122 permit 65000:2 0:3 0:122 ip community-list standard 2_6_61 permit 65000:2 0:6 0:61 ip community-list standard 1_110_256 permit 65000:1 0:110 0:256 ip community-list standard 1_111_255 permit 65000:1 0:111 0:255 ip community-list standard 1_112_254 permit 65000:1 0:112 0:254 ip community-list standard 1_113_253 permit 65000:1 0:113 0:253 ip community-list standard 1_114_252 permit 65000:1 0:114 0:252 ip community-list standard 1_115_251 permit 65000:1 0:115 0:251 ip community-list standard 1_116_250 permit 65000:1 0:116 0:250 ip community-list standard 1_117_249 permit 65000:1 0:117 0:249 ip community-list standard 1_118_248 permit 65000:1 0:118 0:248 ip community-list standard 1_119_247 permit 65000:1 0:119 0:247 ip community-list standard 1_120_246 permit 65000:1 0:120 0:246 ip community-list standard 1_121_245 permit 65000:1 0:121 0:245 ip community-list standard 1_122_244 permit 65000:1 0:122 0:244 ip community-list standard 1_123_243 permit 65000:1 0:123 0:243 ip community-list standard 1_124_242 permit 65000:1 0:124 0:242 ip community-list standard 1_125_241 permit 65000:1 0:125 0:241 ip community-list standard 1_126_240 permit 65000:1 0:126 0:240 ip community-list standard 1_127_239 permit 65000:1 0:127 0:239 ip community-list standard 1_128_238 permit 65000:1 0:128 0:238 ip community-list standard 1_129_237 permit 65000:1 0:129 0:237 ip community-list standard 1_130_236 permit 65000:1 0:130 0:236 ip community-list standard 1_131_235 permit 65000:1 0:131 0:235 ip community-list standard 1_132_234 permit 65000:1 0:132 0:234 ip community-list standard 1_133_233 permit 65000:1 0:133 0:233 ip community-list standard 1_134_232 permit 65000:1 0:134 0:232 ip community-list standard 1_135_231 permit 65000:1 0:135 0:231 ip community-list standard 1_136_230 permit 65000:1 0:136 0:230 ip community-list standard 1_137_229 permit 65000:1 0:137 0:229 ip community-list standard 1_138_228 permit 65000:1 0:138 0:228 ip community-list standard 1_139_227 permit 65000:1 0:139 0:227 ip community-list standard 1_140_226 permit 65000:1 0:140 0:226 ip community-list standard 1_141_225 permit 65000:1 0:141 0:225 ip community-list standard 1_142_224 permit 65000:1 0:142 0:224 ip community-list standard 1_143_223 permit 65000:1 0:143 0:223 ip community-list standard 1_144_222 permit 65000:1 0:144 0:222 ip community-list standard 1_145_221 permit 65000:1 0:145 0:221 ip community-list standard 1_146_220 permit 65000:1 0:146 0:220 ip community-list standard 1_147_219 permit 65000:1 0:147 0:219 ip community-list standard 1_148_218 permit 65000:1 0:148 0:218 ip community-list standard 1_149_217 permit 65000:1 0:149 0:217 ip community-list standard 1_150_216 permit 65000:1 0:150 0:216 ip community-list standard 1_151_215 permit 65000:1 0:151 0:215 ip community-list standard 1_152_214 permit 65000:1 0:152 0:214 ip community-list standard 1_153_213 permit 65000:1 0:153 0:213 ip community-list standard 1_154_212 permit 65000:1 0:154 0:212 ip community-list standard 1_155_211 permit 65000:1 0:155 0:211 ip community-list standard 1_156_210 permit 65000:1 0:156 0:210 ip community-list standard 1_157_209 permit 65000:1 0:157 0:209 ip community-list standard 1_158_208 permit 65000:1 0:158 0:208 ip community-list standard 1_159_207 permit 65000:1 0:159 0:207 ip community-list standard 1_160_206 permit 65000:1 0:160 0:206 ip community-list standard 1_161_205 permit 65000:1 0:161 0:205 ip community-list standard 1_162_204 permit 65000:1 0:162 0:204 ip community-list standard 1_163_203 permit 65000:1 0:163 0:203 ip community-list standard 1_164_202 permit 65000:1 0:164 0:202 ip community-list standard 1_165_201 permit 65000:1 0:165 0:201 ip community-list standard 1_166_200 permit 65000:1 0:166 0:200 ip community-list standard 1_167_199 permit 65000:1 0:167 0:199 ip community-list standard 1_168_198 permit 65000:1 0:168 0:198 ip community-list standard 1_169_197 permit 65000:1 0:169 0:197 ip community-list standard 1_170_196 permit 65000:1 0:170 0:196 ip community-list standard 1_171_195 permit 65000:1 0:171 0:195 ip community-list standard 1_172_194 permit 65000:1 0:172 0:194 ip community-list standard 1_173_193 permit 65000:1 0:173 0:193 ip community-list standard 1_174_192 permit 65000:1 0:174 0:192 ip community-list standard 1_175_191 permit 65000:1 0:175 0:191 ip community-list standard 1_176_190 permit 65000:1 0:176 0:190 ip community-list standard 1_177_189 permit 65000:1 0:177 0:189 ip community-list standard 1_178_188 permit 65000:1 0:178 0:188 ip community-list standard 1_179_187 permit 65000:1 0:179 0:187 ip community-list standard 1_180_186 permit 65000:1 0:180 0:186 ip community-list standard 1_181_185 permit 65000:1 0:181 0:185 ip community-list standard 1_182_184 permit 65000:1 0:182 0:184 ip community-list standard 1_183_183 permit 65000:1 0:183 0:183 route-map calculator permit 5428 match community 2_2_183 2_3_122 2_6_61 1_110_256 1_111_255 set community 0:366 route-map calculator permit 5429 match community 1_112_254 1_113_253 1_114_252 1_115_251 1_116_250 set community 0:366 route-map calculator permit 5430 match community 1_117_249 1_118_248 1_119_247 1_120_246 1_121_245 set community 0:366 route-map calculator permit 5431 match community 1_122_244 1_123_243 1_124_242 1_125_241 1_126_240 set community 0:366 route-map calculator permit 5432 match community 1_127_239 1_128_238 1_129_237 1_130_236 1_131_235 set community 0:366 route-map calculator permit 5433 match community 1_132_234 1_133_233 1_134_232 1_135_231 1_136_230 set community 0:366 route-map calculator permit 5434 match community 1_137_229 1_138_228 1_139_227 1_140_226 1_141_225 set community 0:366 route-map calculator permit 5435 match community 1_142_224 1_143_223 1_144_222 1_145_221 1_146_220 set community 0:366 route-map calculator permit 5436 match community 1_147_219 1_148_218 1_149_217 1_150_216 1_151_215 set community 0:366 route-map calculator permit 5437 match community 1_152_214 1_153_213 1_154_212 1_155_211 1_156_210 set community 0:366 route-map calculator permit 5438 match community 1_157_209 1_158_208 1_159_207 1_160_206 1_161_205 set community 0:366 route-map calculator permit 5439 match community 1_162_204 1_163_203 1_164_202 1_165_201 1_166_200 set community 0:366 route-map calculator permit 5440 match community 1_167_199 1_168_198 1_169_197 1_170_196 1_171_195 set community 0:366 route-map calculator permit 5441 match community 1_172_194 1_173_193 1_174_192 1_175_191 1_176_190 set community 0:366 route-map calculator permit 5442 match community 1_177_189 1_178_188 1_179_187 1_180_186 1_181_185 set community 0:366 route-map calculator permit 5443 match community 1_182_184 1_183_183 set community 0:366 ip community-list standard 2_146_196 permit 65000:2 0:146 0:196 route-map calculator permit 5444 match community 2_146_196 set community 0:28616 ip community-list standard 2_13_116 permit 65000:2 0:13 0:116 ip community-list standard 2_26_58 permit 65000:2 0:26 0:58 ip community-list standard 2_29_52 permit 65000:2 0:29 0:52 route-map calculator permit 5445 match community 2_13_116 2_26_58 2_29_52 set community 0:1508 ip community-list standard 2_133_205 permit 65000:2 0:133 0:205 route-map calculator permit 5446 match community 2_133_205 set community 0:27265 ip community-list standard 2_130_146 permit 65000:2 0:130 0:146 route-map calculator permit 5447 match community 2_130_146 set community 0:18980 ip community-list standard 2_61_134 permit 65000:2 0:61 0:134 ip community-list standard 2_67_122 permit 65000:2 0:67 0:122 route-map calculator permit 5448 match community 2_61_134 2_67_122 set community 0:8174 ip community-list standard 2_214_227 permit 65000:2 0:214 0:227 route-map calculator permit 5449 match community 2_214_227 set community 0:48578 ip community-list standard 2_85_163 permit 65000:2 0:85 0:163 route-map calculator permit 5450 match community 2_85_163 set community 0:13855 ip community-list standard 2_147_219 permit 65000:2 0:147 0:219 route-map calculator permit 5451 match community 2_147_219 set community 0:32193 ip community-list standard 2_102_167 permit 65000:2 0:102 0:167 route-map calculator permit 5452 match community 2_102_167 set community 0:17034 ip community-list standard 2_177_248 permit 65000:2 0:177 0:248 ip community-list standard 2_186_236 permit 65000:2 0:186 0:236 route-map calculator permit 5453 match community 2_177_248 2_186_236 set community 0:43896 ip community-list standard 2_37_254 permit 65000:2 0:37 0:254 ip community-list standard 2_74_127 permit 65000:2 0:74 0:127 route-map calculator permit 5454 match community 2_37_254 2_74_127 set community 0:9398 ip community-list standard 2_215_248 permit 65000:2 0:215 0:248 route-map calculator permit 5455 match community 2_215_248 set community 0:53320 ip community-list standard 2_151_231 permit 65000:2 0:151 0:231 route-map calculator permit 5456 match community 2_151_231 set community 0:34881 ip community-list standard 2_34_209 permit 65000:2 0:34 0:209 ip community-list standard 2_38_187 permit 65000:2 0:38 0:187 route-map calculator permit 5457 match community 2_34_209 2_38_187 set community 0:7106 ip community-list standard 2_5_79 permit 65000:2 0:5 0:79 ip community-list standard 1_139_256 permit 65000:1 0:139 0:256 ip community-list standard 1_140_255 permit 65000:1 0:140 0:255 ip community-list standard 1_141_254 permit 65000:1 0:141 0:254 ip community-list standard 1_142_253 permit 65000:1 0:142 0:253 ip community-list standard 1_143_252 permit 65000:1 0:143 0:252 ip community-list standard 1_144_251 permit 65000:1 0:144 0:251 ip community-list standard 1_145_250 permit 65000:1 0:145 0:250 ip community-list standard 1_146_249 permit 65000:1 0:146 0:249 ip community-list standard 1_147_248 permit 65000:1 0:147 0:248 ip community-list standard 1_148_247 permit 65000:1 0:148 0:247 ip community-list standard 1_149_246 permit 65000:1 0:149 0:246 ip community-list standard 1_150_245 permit 65000:1 0:150 0:245 ip community-list standard 1_151_244 permit 65000:1 0:151 0:244 ip community-list standard 1_152_243 permit 65000:1 0:152 0:243 ip community-list standard 1_153_242 permit 65000:1 0:153 0:242 ip community-list standard 1_154_241 permit 65000:1 0:154 0:241 ip community-list standard 1_155_240 permit 65000:1 0:155 0:240 ip community-list standard 1_156_239 permit 65000:1 0:156 0:239 ip community-list standard 1_157_238 permit 65000:1 0:157 0:238 ip community-list standard 1_158_237 permit 65000:1 0:158 0:237 ip community-list standard 1_159_236 permit 65000:1 0:159 0:236 ip community-list standard 1_160_235 permit 65000:1 0:160 0:235 ip community-list standard 1_161_234 permit 65000:1 0:161 0:234 ip community-list standard 1_162_233 permit 65000:1 0:162 0:233 ip community-list standard 1_163_232 permit 65000:1 0:163 0:232 ip community-list standard 1_164_231 permit 65000:1 0:164 0:231 ip community-list standard 1_165_230 permit 65000:1 0:165 0:230 ip community-list standard 1_166_229 permit 65000:1 0:166 0:229 ip community-list standard 1_167_228 permit 65000:1 0:167 0:228 ip community-list standard 1_168_227 permit 65000:1 0:168 0:227 ip community-list standard 1_169_226 permit 65000:1 0:169 0:226 ip community-list standard 1_170_225 permit 65000:1 0:170 0:225 ip community-list standard 1_171_224 permit 65000:1 0:171 0:224 ip community-list standard 1_172_223 permit 65000:1 0:172 0:223 ip community-list standard 1_173_222 permit 65000:1 0:173 0:222 ip community-list standard 1_174_221 permit 65000:1 0:174 0:221 ip community-list standard 1_175_220 permit 65000:1 0:175 0:220 ip community-list standard 1_176_219 permit 65000:1 0:176 0:219 ip community-list standard 1_177_218 permit 65000:1 0:177 0:218 ip community-list standard 1_178_217 permit 65000:1 0:178 0:217 ip community-list standard 1_179_216 permit 65000:1 0:179 0:216 ip community-list standard 1_180_215 permit 65000:1 0:180 0:215 ip community-list standard 1_181_214 permit 65000:1 0:181 0:214 ip community-list standard 1_182_213 permit 65000:1 0:182 0:213 ip community-list standard 1_183_212 permit 65000:1 0:183 0:212 ip community-list standard 1_184_211 permit 65000:1 0:184 0:211 ip community-list standard 1_185_210 permit 65000:1 0:185 0:210 ip community-list standard 1_186_209 permit 65000:1 0:186 0:209 ip community-list standard 1_187_208 permit 65000:1 0:187 0:208 ip community-list standard 1_188_207 permit 65000:1 0:188 0:207 ip community-list standard 1_189_206 permit 65000:1 0:189 0:206 ip community-list standard 1_190_205 permit 65000:1 0:190 0:205 ip community-list standard 1_191_204 permit 65000:1 0:191 0:204 ip community-list standard 1_192_203 permit 65000:1 0:192 0:203 ip community-list standard 1_193_202 permit 65000:1 0:193 0:202 ip community-list standard 1_194_201 permit 65000:1 0:194 0:201 ip community-list standard 1_195_200 permit 65000:1 0:195 0:200 ip community-list standard 1_196_199 permit 65000:1 0:196 0:199 ip community-list standard 1_197_198 permit 65000:1 0:197 0:198 route-map calculator permit 5458 match community 2_5_79 1_139_256 1_140_255 1_141_254 1_142_253 set community 0:395 route-map calculator permit 5459 match community 1_143_252 1_144_251 1_145_250 1_146_249 1_147_248 set community 0:395 route-map calculator permit 5460 match community 1_148_247 1_149_246 1_150_245 1_151_244 1_152_243 set community 0:395 route-map calculator permit 5461 match community 1_153_242 1_154_241 1_155_240 1_156_239 1_157_238 set community 0:395 route-map calculator permit 5462 match community 1_158_237 1_159_236 1_160_235 1_161_234 1_162_233 set community 0:395 route-map calculator permit 5463 match community 1_163_232 1_164_231 1_165_230 1_166_229 1_167_228 set community 0:395 route-map calculator permit 5464 match community 1_168_227 1_169_226 1_170_225 1_171_224 1_172_223 set community 0:395 route-map calculator permit 5465 match community 1_173_222 1_174_221 1_175_220 1_176_219 1_177_218 set community 0:395 route-map calculator permit 5466 match community 1_178_217 1_179_216 1_180_215 1_181_214 1_182_213 set community 0:395 route-map calculator permit 5467 match community 1_183_212 1_184_211 1_185_210 1_186_209 1_187_208 set community 0:395 route-map calculator permit 5468 match community 1_188_207 1_189_206 1_190_205 1_191_204 1_192_203 set community 0:395 route-map calculator permit 5469 match community 1_193_202 1_194_201 1_195_200 1_196_199 1_197_198 set community 0:395 ip community-list standard 2_66_218 permit 65000:2 0:66 0:218 ip community-list standard 2_109_132 permit 65000:2 0:109 0:132 route-map calculator permit 5470 match community 2_66_218 2_109_132 set community 0:14388 ip community-list standard 2_109_135 permit 65000:2 0:109 0:135 route-map calculator permit 5471 match community 2_109_135 set community 0:14715 ip community-list standard 2_76_237 permit 65000:2 0:76 0:237 ip community-list standard 2_79_228 permit 65000:2 0:79 0:228 ip community-list standard 2_114_158 permit 65000:2 0:114 0:158 route-map calculator permit 5472 match community 2_76_237 2_79_228 2_114_158 set community 0:18012 ip community-list standard 2_182_246 permit 65000:2 0:182 0:246 route-map calculator permit 5473 match community 2_182_246 set community 0:44772 ip community-list standard 2_223_249 permit 65000:2 0:223 0:249 route-map calculator permit 5474 match community 2_223_249 set community 0:55527 ip community-list standard 2_237_246 permit 65000:2 0:237 0:246 route-map calculator permit 5475 match community 2_237_246 set community 0:58302 ip community-list standard 2_165_167 permit 65000:2 0:165 0:167 route-map calculator permit 5476 match community 2_165_167 set community 0:27555 ip community-list standard 2_207_223 permit 65000:2 0:207 0:223 route-map calculator permit 5477 match community 2_207_223 set community 0:46161 ip community-list standard 2_17_254 permit 65000:2 0:17 0:254 ip community-list standard 2_34_127 permit 65000:2 0:34 0:127 route-map calculator permit 5478 match community 2_17_254 2_34_127 set community 0:4318 ip community-list standard 2_28_151 permit 65000:2 0:28 0:151 route-map calculator permit 5479 match community 2_28_151 set community 0:4228 ip community-list standard 2_237_255 permit 65000:2 0:237 0:255 route-map calculator permit 5480 match community 2_237_255 set community 0:60435 ip community-list standard 2_155_227 permit 65000:2 0:155 0:227 route-map calculator permit 5481 match community 2_155_227 set community 0:35185 ip community-list standard 2_109_247 permit 65000:2 0:109 0:247 route-map calculator permit 5482 match community 2_109_247 set community 0:26923 ip community-list standard 2_88_131 permit 65000:2 0:88 0:131 route-map calculator permit 5483 match community 2_88_131 set community 0:11528 ip community-list standard 2_29_225 permit 65000:2 0:29 0:225 ip community-list standard 2_45_145 permit 65000:2 0:45 0:145 ip community-list standard 2_75_87 permit 65000:2 0:75 0:87 route-map calculator permit 5484 match community 2_29_225 2_45_145 2_75_87 set community 0:6525 ip community-list standard 2_31_190 permit 65000:2 0:31 0:190 ip community-list standard 2_38_155 permit 65000:2 0:38 0:155 ip community-list standard 2_62_95 permit 65000:2 0:62 0:95 route-map calculator permit 5485 match community 2_31_190 2_38_155 2_62_95 set community 0:5890 ip community-list standard 2_146_246 permit 65000:2 0:146 0:246 ip community-list standard 2_164_219 permit 65000:2 0:164 0:219 route-map calculator permit 5486 match community 2_146_246 2_164_219 set community 0:35916 ip community-list standard 2_59_198 permit 65000:2 0:59 0:198 ip community-list standard 2_66_177 permit 65000:2 0:66 0:177 ip community-list standard 2_99_118 permit 65000:2 0:99 0:118 route-map calculator permit 5487 match community 2_59_198 2_66_177 2_99_118 set community 0:11682 ip community-list standard 2_4_255 permit 65000:2 0:4 0:255 ip community-list standard 2_5_204 permit 65000:2 0:5 0:204 ip community-list standard 2_6_170 permit 65000:2 0:6 0:170 ip community-list standard 2_10_102 permit 65000:2 0:10 0:102 ip community-list standard 2_12_85 permit 65000:2 0:12 0:85 ip community-list standard 2_15_68 permit 65000:2 0:15 0:68 ip community-list standard 2_17_60 permit 65000:2 0:17 0:60 ip community-list standard 2_20_51 permit 65000:2 0:20 0:51 ip community-list standard 2_30_34 permit 65000:2 0:30 0:34 route-map calculator permit 5488 match community 2_4_255 2_5_204 2_6_170 2_10_102 2_12_85 set community 0:1020 route-map calculator permit 5489 match community 2_15_68 2_17_60 2_20_51 2_30_34 set community 0:1020 ip community-list standard 2_150_217 permit 65000:2 0:150 0:217 ip community-list standard 2_155_210 permit 65000:2 0:155 0:210 ip community-list standard 2_175_186 permit 65000:2 0:175 0:186 route-map calculator permit 5490 match community 2_150_217 2_155_210 2_175_186 set community 0:32550 ip community-list standard 2_141_221 permit 65000:2 0:141 0:221 route-map calculator permit 5491 match community 2_141_221 set community 0:31161 ip community-list standard 2_159_231 permit 65000:2 0:159 0:231 route-map calculator permit 5492 match community 2_159_231 set community 0:36729 ip community-list standard 2_174_218 permit 65000:2 0:174 0:218 route-map calculator permit 5493 match community 2_174_218 set community 0:37932 ip community-list standard 2_99_233 permit 65000:2 0:99 0:233 route-map calculator permit 5494 match community 2_99_233 set community 0:23067 ip community-list standard 2_25_244 permit 65000:2 0:25 0:244 ip community-list standard 2_50_122 permit 65000:2 0:50 0:122 ip community-list standard 2_61_100 permit 65000:2 0:61 0:100 route-map calculator permit 5495 match community 2_25_244 2_50_122 2_61_100 set community 0:6100 ip community-list standard 2_81_187 permit 65000:2 0:81 0:187 ip community-list standard 2_99_153 permit 65000:2 0:99 0:153 route-map calculator permit 5496 match community 2_81_187 2_99_153 set community 0:15147 ip community-list standard 2_61_229 permit 65000:2 0:61 0:229 route-map calculator permit 5497 match community 2_61_229 set community 0:13969 ip community-list standard 2_111_185 permit 65000:2 0:111 0:185 route-map calculator permit 5498 match community 2_111_185 set community 0:20535 ip community-list standard 2_151_175 permit 65000:2 0:151 0:175 route-map calculator permit 5499 match community 2_151_175 set community 0:26425 ip community-list standard 2_53_236 permit 65000:2 0:53 0:236 ip community-list standard 2_59_212 permit 65000:2 0:59 0:212 ip community-list standard 2_106_118 permit 65000:2 0:106 0:118 route-map calculator permit 5500 match community 2_53_236 2_59_212 2_106_118 set community 0:12508 ip community-list standard 2_163_248 permit 65000:2 0:163 0:248 route-map calculator permit 5501 match community 2_163_248 set community 0:40424 ip community-list standard 2_83_244 permit 65000:2 0:83 0:244 ip community-list standard 2_122_166 permit 65000:2 0:122 0:166 route-map calculator permit 5502 match community 2_83_244 2_122_166 set community 0:20252 ip community-list standard 2_102_151 permit 65000:2 0:102 0:151 route-map calculator permit 5503 match community 2_102_151 set community 0:15402 ip community-list standard 2_58_167 permit 65000:2 0:58 0:167 route-map calculator permit 5504 match community 2_58_167 set community 0:9686 ip community-list standard 2_78_151 permit 65000:2 0:78 0:151 route-map calculator permit 5505 match community 2_78_151 set community 0:11778 ip community-list standard 2_14_173 permit 65000:2 0:14 0:173 route-map calculator permit 5506 match community 2_14_173 set community 0:2422 ip community-list standard 2_27_238 permit 65000:2 0:27 0:238 ip community-list standard 2_34_189 permit 65000:2 0:34 0:189 ip community-list standard 2_42_153 permit 65000:2 0:42 0:153 ip community-list standard 2_51_126 permit 65000:2 0:51 0:126 ip community-list standard 2_54_119 permit 65000:2 0:54 0:119 ip community-list standard 2_63_102 permit 65000:2 0:63 0:102 route-map calculator permit 5507 match community 2_27_238 2_34_189 2_42_153 2_51_126 2_54_119 set community 0:6426 route-map calculator permit 5508 match community 2_63_102 set community 0:6426 ip community-list standard 2_67_194 permit 65000:2 0:67 0:194 ip community-list standard 2_97_134 permit 65000:2 0:97 0:134 route-map calculator permit 5509 match community 2_67_194 2_97_134 set community 0:12998 ip community-list standard 2_102_241 permit 65000:2 0:102 0:241 route-map calculator permit 5510 match community 2_102_241 set community 0:24582 ip community-list standard 2_137_219 permit 65000:2 0:137 0:219 route-map calculator permit 5511 match community 2_137_219 set community 0:30003 ip community-list standard 2_54_223 permit 65000:2 0:54 0:223 route-map calculator permit 5512 match community 2_54_223 set community 0:12042 ip community-list standard 2_106_229 permit 65000:2 0:106 0:229 route-map calculator permit 5513 match community 2_106_229 set community 0:24274 ip community-list standard 2_91_161 permit 65000:2 0:91 0:161 route-map calculator permit 5514 match community 2_91_161 set community 0:14651 ip community-list standard 2_171_213 permit 65000:2 0:171 0:213 route-map calculator permit 5515 match community 2_171_213 set community 0:36423 ip community-list standard 2_91_149 permit 65000:2 0:91 0:149 route-map calculator permit 5516 match community 2_91_149 set community 0:13559 ip community-list standard 2_88_221 permit 65000:2 0:88 0:221 ip community-list standard 2_104_187 permit 65000:2 0:104 0:187 ip community-list standard 2_136_143 permit 65000:2 0:136 0:143 route-map calculator permit 5517 match community 2_88_221 2_104_187 2_136_143 set community 0:19448 ip community-list standard 2_50_256 permit 65000:2 0:50 0:256 ip community-list standard 2_64_200 permit 65000:2 0:64 0:200 ip community-list standard 2_80_160 permit 65000:2 0:80 0:160 ip community-list standard 2_100_128 permit 65000:2 0:100 0:128 route-map calculator permit 5518 match community 2_50_256 2_64_200 2_80_160 2_100_128 set community 0:12800 ip community-list standard 2_2_254 permit 65000:2 0:2 0:254 ip community-list standard 2_4_127 permit 65000:2 0:4 0:127 ip community-list standard 1_252_256 permit 65000:1 0:252 0:256 ip community-list standard 1_253_255 permit 65000:1 0:253 0:255 ip community-list standard 1_254_254 permit 65000:1 0:254 0:254 route-map calculator permit 5519 match community 2_2_254 2_4_127 1_252_256 1_253_255 1_254_254 set community 0:508 ip community-list standard 2_30_253 permit 65000:2 0:30 0:253 ip community-list standard 2_33_230 permit 65000:2 0:33 0:230 ip community-list standard 2_46_165 permit 65000:2 0:46 0:165 ip community-list standard 2_55_138 permit 65000:2 0:55 0:138 ip community-list standard 2_66_115 permit 65000:2 0:66 0:115 ip community-list standard 2_69_110 permit 65000:2 0:69 0:110 route-map calculator permit 5520 match community 2_30_253 2_33_230 2_46_165 2_55_138 2_66_115 set community 0:7590 route-map calculator permit 5521 match community 2_69_110 set community 0:7590 ip community-list standard 2_153_203 permit 65000:2 0:153 0:203 route-map calculator permit 5522 match community 2_153_203 set community 0:31059 ip community-list standard 2_33_255 permit 65000:2 0:33 0:255 ip community-list standard 2_45_187 permit 65000:2 0:45 0:187 ip community-list standard 2_51_165 permit 65000:2 0:51 0:165 ip community-list standard 2_55_153 permit 65000:2 0:55 0:153 ip community-list standard 2_85_99 permit 65000:2 0:85 0:99 route-map calculator permit 5523 match community 2_33_255 2_45_187 2_51_165 2_55_153 2_85_99 set community 0:8415 ip community-list standard 2_114_254 permit 65000:2 0:114 0:254 ip community-list standard 2_127_228 permit 65000:2 0:127 0:228 route-map calculator permit 5524 match community 2_114_254 2_127_228 set community 0:28956 ip community-list standard 2_115_235 permit 65000:2 0:115 0:235 route-map calculator permit 5525 match community 2_115_235 set community 0:27025 ip community-list standard 2_130_203 permit 65000:2 0:130 0:203 ip community-list standard 2_145_182 permit 65000:2 0:145 0:182 route-map calculator permit 5526 match community 2_130_203 2_145_182 set community 0:26390 ip community-list standard 2_194_248 permit 65000:2 0:194 0:248 route-map calculator permit 5527 match community 2_194_248 set community 0:48112 ip community-list standard 2_138_251 permit 65000:2 0:138 0:251 route-map calculator permit 5528 match community 2_138_251 set community 0:34638 ip community-list standard 2_228_248 permit 65000:2 0:228 0:248 route-map calculator permit 5529 match community 2_228_248 set community 0:56544 ip community-list standard 2_138_246 permit 65000:2 0:138 0:246 ip community-list standard 2_164_207 permit 65000:2 0:164 0:207 route-map calculator permit 5530 match community 2_138_246 2_164_207 set community 0:33948 ip community-list standard 2_107_228 permit 65000:2 0:107 0:228 ip community-list standard 2_114_214 permit 65000:2 0:114 0:214 route-map calculator permit 5531 match community 2_107_228 2_114_214 set community 0:24396 ip community-list standard 2_131_132 permit 65000:2 0:131 0:132 route-map calculator permit 5532 match community 2_131_132 set community 0:17292 ip community-list standard 2_112_191 permit 65000:2 0:112 0:191 route-map calculator permit 5533 match community 2_112_191 set community 0:21392 ip community-list standard 2_235_246 permit 65000:2 0:235 0:246 route-map calculator permit 5534 match community 2_235_246 set community 0:57810 ip community-list standard 2_47_139 permit 65000:2 0:47 0:139 route-map calculator permit 5535 match community 2_47_139 set community 0:6533 ip community-list standard 2_136_149 permit 65000:2 0:136 0:149 route-map calculator permit 5536 match community 2_136_149 set community 0:20264 ip community-list standard 2_179_211 permit 65000:2 0:179 0:211 route-map calculator permit 5537 match community 2_179_211 set community 0:37769 ip community-list standard 2_151_207 permit 65000:2 0:151 0:207 route-map calculator permit 5538 match community 2_151_207 set community 0:31257 ip community-list standard 2_26_174 permit 65000:2 0:26 0:174 ip community-list standard 2_29_156 permit 65000:2 0:29 0:156 ip community-list standard 2_39_116 permit 65000:2 0:39 0:116 ip community-list standard 2_52_87 permit 65000:2 0:52 0:87 ip community-list standard 2_58_78 permit 65000:2 0:58 0:78 route-map calculator permit 5539 match community 2_26_174 2_29_156 2_39_116 2_52_87 2_58_78 set community 0:4524 ip community-list standard 2_11_241 permit 65000:2 0:11 0:241 route-map calculator permit 5540 match community 2_11_241 set community 0:2651 ip community-list standard 2_47_197 permit 65000:2 0:47 0:197 route-map calculator permit 5541 match community 2_47_197 set community 0:9259 ip community-list standard 2_188_233 permit 65000:2 0:188 0:233 route-map calculator permit 5542 match community 2_188_233 set community 0:43804 ip community-list standard 2_24_246 permit 65000:2 0:24 0:246 ip community-list standard 2_36_164 permit 65000:2 0:36 0:164 ip community-list standard 2_41_144 permit 65000:2 0:41 0:144 ip community-list standard 2_48_123 permit 65000:2 0:48 0:123 ip community-list standard 2_72_82 permit 65000:2 0:72 0:82 route-map calculator permit 5543 match community 2_24_246 2_36_164 2_41_144 2_48_123 2_72_82 set community 0:5904 ip community-list standard 2_10_143 permit 65000:2 0:10 0:143 ip community-list standard 2_11_130 permit 65000:2 0:11 0:130 ip community-list standard 2_13_110 permit 65000:2 0:13 0:110 ip community-list standard 2_22_65 permit 65000:2 0:22 0:65 ip community-list standard 2_26_55 permit 65000:2 0:26 0:55 route-map calculator permit 5544 match community 2_10_143 2_11_130 2_13_110 2_22_65 2_26_55 set community 0:1430 ip community-list standard 2_153_218 permit 65000:2 0:153 0:218 route-map calculator permit 5545 match community 2_153_218 set community 0:33354 ip community-list standard 2_168_215 permit 65000:2 0:168 0:215 ip community-list standard 2_172_210 permit 65000:2 0:172 0:210 route-map calculator permit 5546 match community 2_168_215 2_172_210 set community 0:36120 ip community-list standard 2_139_199 permit 65000:2 0:139 0:199 route-map calculator permit 5547 match community 2_139_199 set community 0:27661 ip community-list standard 2_13_172 permit 65000:2 0:13 0:172 ip community-list standard 2_26_86 permit 65000:2 0:26 0:86 ip community-list standard 2_43_52 permit 65000:2 0:43 0:52 route-map calculator permit 5548 match community 2_13_172 2_26_86 2_43_52 set community 0:2236 ip community-list standard 2_90_202 permit 65000:2 0:90 0:202 ip community-list standard 2_101_180 permit 65000:2 0:101 0:180 route-map calculator permit 5549 match community 2_90_202 2_101_180 set community 0:18180 ip community-list standard 2_165_191 permit 65000:2 0:165 0:191 route-map calculator permit 5550 match community 2_165_191 set community 0:31515 ip community-list standard 2_208_223 permit 65000:2 0:208 0:223 route-map calculator permit 5551 match community 2_208_223 set community 0:46384 ip community-list standard 2_90_217 permit 65000:2 0:90 0:217 ip community-list standard 2_93_210 permit 65000:2 0:93 0:210 ip community-list standard 2_105_186 permit 65000:2 0:105 0:186 ip community-list standard 2_126_155 permit 65000:2 0:126 0:155 route-map calculator permit 5552 match community 2_90_217 2_93_210 2_105_186 2_126_155 set community 0:19530 ip community-list standard 2_79_209 permit 65000:2 0:79 0:209 route-map calculator permit 5553 match community 2_79_209 set community 0:16511 ip community-list standard 2_35_232 permit 65000:2 0:35 0:232 ip community-list standard 2_40_203 permit 65000:2 0:40 0:203 ip community-list standard 2_56_145 permit 65000:2 0:56 0:145 ip community-list standard 2_58_140 permit 65000:2 0:58 0:140 ip community-list standard 2_70_116 permit 65000:2 0:70 0:116 route-map calculator permit 5554 match community 2_35_232 2_40_203 2_56_145 2_58_140 2_70_116 set community 0:8120 ip community-list standard 2_116_233 permit 65000:2 0:116 0:233 route-map calculator permit 5555 match community 2_116_233 set community 0:27028 ip community-list standard 2_222_229 permit 65000:2 0:222 0:229 route-map calculator permit 5556 match community 2_222_229 set community 0:50838 ip community-list standard 2_95_149 permit 65000:2 0:95 0:149 route-map calculator permit 5557 match community 2_95_149 set community 0:14155 ip community-list standard 2_37_205 permit 65000:2 0:37 0:205 ip community-list standard 2_41_185 permit 65000:2 0:41 0:185 route-map calculator permit 5558 match community 2_37_205 2_41_185 set community 0:7585 ip community-list standard 2_58_205 permit 65000:2 0:58 0:205 ip community-list standard 2_82_145 permit 65000:2 0:82 0:145 route-map calculator permit 5559 match community 2_58_205 2_82_145 set community 0:11890 ip community-list standard 2_58_217 permit 65000:2 0:58 0:217 ip community-list standard 2_62_203 permit 65000:2 0:62 0:203 route-map calculator permit 5560 match community 2_58_217 2_62_203 set community 0:12586 ip community-list standard 2_196_238 permit 65000:2 0:196 0:238 route-map calculator permit 5561 match community 2_196_238 set community 0:46648 ip community-list standard 2_223_256 permit 65000:2 0:223 0:256 route-map calculator permit 5562 match community 2_223_256 set community 0:57088 ip community-list standard 2_59_235 permit 65000:2 0:59 0:235 route-map calculator permit 5563 match community 2_59_235 set community 0:13865 ip community-list standard 2_67_220 permit 65000:2 0:67 0:220 ip community-list standard 2_110_134 permit 65000:2 0:110 0:134 route-map calculator permit 5564 match community 2_67_220 2_110_134 set community 0:14740 ip community-list standard 2_170_250 permit 65000:2 0:170 0:250 route-map calculator permit 5565 match community 2_170_250 set community 0:42500 ip community-list standard 2_60_244 permit 65000:2 0:60 0:244 ip community-list standard 2_61_240 permit 65000:2 0:61 0:240 ip community-list standard 2_80_183 permit 65000:2 0:80 0:183 ip community-list standard 2_120_122 permit 65000:2 0:120 0:122 route-map calculator permit 5566 match community 2_60_244 2_61_240 2_80_183 2_120_122 set community 0:14640 ip community-list standard 2_12_161 permit 65000:2 0:12 0:161 ip community-list standard 2_14_138 permit 65000:2 0:14 0:138 ip community-list standard 2_21_92 permit 65000:2 0:21 0:92 ip community-list standard 2_23_84 permit 65000:2 0:23 0:84 ip community-list standard 2_28_69 permit 65000:2 0:28 0:69 ip community-list standard 2_42_46 permit 65000:2 0:42 0:46 route-map calculator permit 5567 match community 2_12_161 2_14_138 2_21_92 2_23_84 2_28_69 set community 0:1932 route-map calculator permit 5568 match community 2_42_46 set community 0:1932 ip community-list standard 2_10_178 permit 65000:2 0:10 0:178 ip community-list standard 2_20_89 permit 65000:2 0:20 0:89 route-map calculator permit 5569 match community 2_10_178 2_20_89 set community 0:1780 ip community-list standard 2_105_185 permit 65000:2 0:105 0:185 ip community-list standard 2_111_175 permit 65000:2 0:111 0:175 route-map calculator permit 5570 match community 2_105_185 2_111_175 set community 0:19425 ip community-list standard 2_186_250 permit 65000:2 0:186 0:250 route-map calculator permit 5571 match community 2_186_250 set community 0:46500 ip community-list standard 2_96_229 permit 65000:2 0:96 0:229 route-map calculator permit 5572 match community 2_96_229 set community 0:21984 ip community-list standard 2_90_254 permit 65000:2 0:90 0:254 ip community-list standard 2_127_180 permit 65000:2 0:127 0:180 route-map calculator permit 5573 match community 2_90_254 2_127_180 set community 0:22860 ip community-list standard 2_205_213 permit 65000:2 0:205 0:213 route-map calculator permit 5574 match community 2_205_213 set community 0:43665 ip community-list standard 2_57_246 permit 65000:2 0:57 0:246 ip community-list standard 2_82_171 permit 65000:2 0:82 0:171 ip community-list standard 2_114_123 permit 65000:2 0:114 0:123 route-map calculator permit 5575 match community 2_57_246 2_82_171 2_114_123 set community 0:14022 ip community-list standard 2_183_245 permit 65000:2 0:183 0:245 route-map calculator permit 5576 match community 2_183_245 set community 0:44835 ip community-list standard 2_134_222 permit 65000:2 0:134 0:222 ip community-list standard 2_148_201 permit 65000:2 0:148 0:201 route-map calculator permit 5577 match community 2_134_222 2_148_201 set community 0:29748 ip community-list standard 2_162_244 permit 65000:2 0:162 0:244 ip community-list standard 2_183_216 permit 65000:2 0:183 0:216 route-map calculator permit 5578 match community 2_162_244 2_183_216 set community 0:39528 ip community-list standard 2_145_146 permit 65000:2 0:145 0:146 route-map calculator permit 5579 match community 2_145_146 set community 0:21170 ip community-list standard 2_163_256 permit 65000:2 0:163 0:256 route-map calculator permit 5580 match community 2_163_256 set community 0:41728 ip community-list standard 2_213_244 permit 65000:2 0:213 0:244 route-map calculator permit 5581 match community 2_213_244 set community 0:51972 ip community-list standard 2_191_240 permit 65000:2 0:191 0:240 route-map calculator permit 5582 match community 2_191_240 set community 0:45840 ip community-list standard 2_158_244 permit 65000:2 0:158 0:244 route-map calculator permit 5583 match community 2_158_244 set community 0:38552 ip community-list standard 2_65_193 permit 65000:2 0:65 0:193 route-map calculator permit 5584 match community 2_65_193 set community 0:12545 ip community-list standard 2_145_219 permit 65000:2 0:145 0:219 route-map calculator permit 5585 match community 2_145_219 set community 0:31755 ip community-list standard 2_194_215 permit 65000:2 0:194 0:215 route-map calculator permit 5586 match community 2_194_215 set community 0:41710 ip community-list standard 2_137_227 permit 65000:2 0:137 0:227 route-map calculator permit 5587 match community 2_137_227 set community 0:31099 ip community-list standard 2_221_231 permit 65000:2 0:221 0:231 route-map calculator permit 5588 match community 2_221_231 set community 0:51051 ip community-list standard 2_92_245 permit 65000:2 0:92 0:245 ip community-list standard 2_98_230 permit 65000:2 0:98 0:230 ip community-list standard 2_115_196 permit 65000:2 0:115 0:196 ip community-list standard 2_140_161 permit 65000:2 0:140 0:161 route-map calculator permit 5589 match community 2_92_245 2_98_230 2_115_196 2_140_161 set community 0:22540 ip community-list standard 2_135_217 permit 65000:2 0:135 0:217 ip community-list standard 2_155_189 permit 65000:2 0:155 0:189 route-map calculator permit 5590 match community 2_135_217 2_155_189 set community 0:29295 ip community-list standard 2_170_178 permit 65000:2 0:170 0:178 route-map calculator permit 5591 match community 2_170_178 set community 0:30260 ip community-list standard 2_78_252 permit 65000:2 0:78 0:252 ip community-list standard 2_84_234 permit 65000:2 0:84 0:234 ip community-list standard 2_91_216 permit 65000:2 0:91 0:216 ip community-list standard 2_104_189 permit 65000:2 0:104 0:189 ip community-list standard 2_108_182 permit 65000:2 0:108 0:182 ip community-list standard 2_117_168 permit 65000:2 0:117 0:168 ip community-list standard 2_126_156 permit 65000:2 0:126 0:156 route-map calculator permit 5592 match community 2_78_252 2_84_234 2_91_216 2_104_189 2_108_182 set community 0:19656 route-map calculator permit 5593 match community 2_117_168 2_126_156 set community 0:19656 ip community-list standard 2_16_250 permit 65000:2 0:16 0:250 ip community-list standard 2_20_200 permit 65000:2 0:20 0:200 ip community-list standard 2_25_160 permit 65000:2 0:25 0:160 ip community-list standard 2_32_125 permit 65000:2 0:32 0:125 ip community-list standard 2_40_100 permit 65000:2 0:40 0:100 ip community-list standard 2_50_80 permit 65000:2 0:50 0:80 route-map calculator permit 5594 match community 2_16_250 2_20_200 2_25_160 2_32_125 2_40_100 set community 0:4000 route-map calculator permit 5595 match community 2_50_80 set community 0:4000 ip community-list standard 2_58_255 permit 65000:2 0:58 0:255 ip community-list standard 2_85_174 permit 65000:2 0:85 0:174 ip community-list standard 2_87_170 permit 65000:2 0:87 0:170 ip community-list standard 2_102_145 permit 65000:2 0:102 0:145 route-map calculator permit 5596 match community 2_58_255 2_85_174 2_87_170 2_102_145 set community 0:14790 ip community-list standard 2_40_179 permit 65000:2 0:40 0:179 route-map calculator permit 5597 match community 2_40_179 set community 0:7160 ip community-list standard 2_21_223 permit 65000:2 0:21 0:223 route-map calculator permit 5598 match community 2_21_223 set community 0:4683 ip community-list standard 2_175_221 permit 65000:2 0:175 0:221 route-map calculator permit 5599 match community 2_175_221 set community 0:38675 ip community-list standard 2_12_232 permit 65000:2 0:12 0:232 ip community-list standard 2_16_174 permit 65000:2 0:16 0:174 ip community-list standard 2_24_116 permit 65000:2 0:24 0:116 ip community-list standard 2_29_96 permit 65000:2 0:29 0:96 ip community-list standard 2_32_87 permit 65000:2 0:32 0:87 ip community-list standard 2_48_58 permit 65000:2 0:48 0:58 route-map calculator permit 5600 match community 2_12_232 2_16_174 2_24_116 2_29_96 2_32_87 set community 0:2784 route-map calculator permit 5601 match community 2_48_58 set community 0:2784 ip community-list standard 2_133_251 permit 65000:2 0:133 0:251 route-map calculator permit 5602 match community 2_133_251 set community 0:33383 ip community-list standard 2_53_253 permit 65000:2 0:53 0:253 route-map calculator permit 5603 match community 2_53_253 set community 0:13409 ip community-list standard 2_78_230 permit 65000:2 0:78 0:230 ip community-list standard 2_92_195 permit 65000:2 0:92 0:195 ip community-list standard 2_115_156 permit 65000:2 0:115 0:156 ip community-list standard 2_130_138 permit 65000:2 0:130 0:138 route-map calculator permit 5604 match community 2_78_230 2_92_195 2_115_156 2_130_138 set community 0:17940 ip community-list standard 2_141_233 permit 65000:2 0:141 0:233 route-map calculator permit 5605 match community 2_141_233 set community 0:32853 ip community-list standard 2_42_172 permit 65000:2 0:42 0:172 ip community-list standard 2_43_168 permit 65000:2 0:43 0:168 ip community-list standard 2_56_129 permit 65000:2 0:56 0:129 ip community-list standard 2_84_86 permit 65000:2 0:84 0:86 route-map calculator permit 5606 match community 2_42_172 2_43_168 2_56_129 2_84_86 set community 0:7224 ip community-list standard 2_138_207 permit 65000:2 0:138 0:207 route-map calculator permit 5607 match community 2_138_207 set community 0:28566 ip community-list standard 2_6_141 permit 65000:2 0:6 0:141 ip community-list standard 2_9_94 permit 65000:2 0:9 0:94 ip community-list standard 2_18_47 permit 65000:2 0:18 0:47 route-map calculator permit 5608 match community 2_6_141 2_9_94 2_18_47 set community 0:846 ip community-list standard 2_41_231 permit 65000:2 0:41 0:231 ip community-list standard 2_77_123 permit 65000:2 0:77 0:123 route-map calculator permit 5609 match community 2_41_231 2_77_123 set community 0:9471 ip community-list standard 2_88_212 permit 65000:2 0:88 0:212 ip community-list standard 2_106_176 permit 65000:2 0:106 0:176 route-map calculator permit 5610 match community 2_88_212 2_106_176 set community 0:18656 ip community-list standard 2_23_205 permit 65000:2 0:23 0:205 ip community-list standard 2_41_115 permit 65000:2 0:41 0:115 route-map calculator permit 5611 match community 2_23_205 2_41_115 set community 0:4715 ip community-list standard 2_36_207 permit 65000:2 0:36 0:207 ip community-list standard 2_46_162 permit 65000:2 0:46 0:162 ip community-list standard 2_54_138 permit 65000:2 0:54 0:138 ip community-list standard 2_69_108 permit 65000:2 0:69 0:108 ip community-list standard 2_81_92 permit 65000:2 0:81 0:92 route-map calculator permit 5612 match community 2_36_207 2_46_162 2_54_138 2_69_108 2_81_92 set community 0:7452 ip community-list standard 2_6_174 permit 65000:2 0:6 0:174 ip community-list standard 2_9_116 permit 65000:2 0:9 0:116 ip community-list standard 2_12_87 permit 65000:2 0:12 0:87 ip community-list standard 2_18_58 permit 65000:2 0:18 0:58 ip community-list standard 2_29_36 permit 65000:2 0:29 0:36 route-map calculator permit 5613 match community 2_6_174 2_9_116 2_12_87 2_18_58 2_29_36 set community 0:1044 ip community-list standard 2_3_117 permit 65000:2 0:3 0:117 ip community-list standard 2_9_39 permit 65000:2 0:9 0:39 ip community-list standard 2_13_27 permit 65000:2 0:13 0:27 ip community-list standard 1_95_256 permit 65000:1 0:95 0:256 ip community-list standard 1_96_255 permit 65000:1 0:96 0:255 ip community-list standard 1_97_254 permit 65000:1 0:97 0:254 ip community-list standard 1_98_253 permit 65000:1 0:98 0:253 ip community-list standard 1_99_252 permit 65000:1 0:99 0:252 ip community-list standard 1_100_251 permit 65000:1 0:100 0:251 ip community-list standard 1_101_250 permit 65000:1 0:101 0:250 ip community-list standard 1_102_249 permit 65000:1 0:102 0:249 ip community-list standard 1_103_248 permit 65000:1 0:103 0:248 ip community-list standard 1_104_247 permit 65000:1 0:104 0:247 ip community-list standard 1_105_246 permit 65000:1 0:105 0:246 ip community-list standard 1_106_245 permit 65000:1 0:106 0:245 ip community-list standard 1_107_244 permit 65000:1 0:107 0:244 ip community-list standard 1_108_243 permit 65000:1 0:108 0:243 ip community-list standard 1_109_242 permit 65000:1 0:109 0:242 ip community-list standard 1_110_241 permit 65000:1 0:110 0:241 ip community-list standard 1_111_240 permit 65000:1 0:111 0:240 ip community-list standard 1_112_239 permit 65000:1 0:112 0:239 ip community-list standard 1_113_238 permit 65000:1 0:113 0:238 ip community-list standard 1_114_237 permit 65000:1 0:114 0:237 ip community-list standard 1_115_236 permit 65000:1 0:115 0:236 ip community-list standard 1_116_235 permit 65000:1 0:116 0:235 ip community-list standard 1_117_234 permit 65000:1 0:117 0:234 ip community-list standard 1_118_233 permit 65000:1 0:118 0:233 ip community-list standard 1_119_232 permit 65000:1 0:119 0:232 ip community-list standard 1_120_231 permit 65000:1 0:120 0:231 ip community-list standard 1_121_230 permit 65000:1 0:121 0:230 ip community-list standard 1_122_229 permit 65000:1 0:122 0:229 ip community-list standard 1_123_228 permit 65000:1 0:123 0:228 ip community-list standard 1_124_227 permit 65000:1 0:124 0:227 ip community-list standard 1_125_226 permit 65000:1 0:125 0:226 ip community-list standard 1_126_225 permit 65000:1 0:126 0:225 ip community-list standard 1_127_224 permit 65000:1 0:127 0:224 ip community-list standard 1_128_223 permit 65000:1 0:128 0:223 ip community-list standard 1_129_222 permit 65000:1 0:129 0:222 ip community-list standard 1_130_221 permit 65000:1 0:130 0:221 ip community-list standard 1_131_220 permit 65000:1 0:131 0:220 ip community-list standard 1_132_219 permit 65000:1 0:132 0:219 ip community-list standard 1_133_218 permit 65000:1 0:133 0:218 ip community-list standard 1_134_217 permit 65000:1 0:134 0:217 ip community-list standard 1_135_216 permit 65000:1 0:135 0:216 ip community-list standard 1_136_215 permit 65000:1 0:136 0:215 ip community-list standard 1_137_214 permit 65000:1 0:137 0:214 ip community-list standard 1_138_213 permit 65000:1 0:138 0:213 ip community-list standard 1_139_212 permit 65000:1 0:139 0:212 ip community-list standard 1_140_211 permit 65000:1 0:140 0:211 ip community-list standard 1_141_210 permit 65000:1 0:141 0:210 ip community-list standard 1_142_209 permit 65000:1 0:142 0:209 ip community-list standard 1_143_208 permit 65000:1 0:143 0:208 ip community-list standard 1_144_207 permit 65000:1 0:144 0:207 ip community-list standard 1_145_206 permit 65000:1 0:145 0:206 ip community-list standard 1_146_205 permit 65000:1 0:146 0:205 ip community-list standard 1_147_204 permit 65000:1 0:147 0:204 ip community-list standard 1_148_203 permit 65000:1 0:148 0:203 ip community-list standard 1_149_202 permit 65000:1 0:149 0:202 ip community-list standard 1_150_201 permit 65000:1 0:150 0:201 ip community-list standard 1_151_200 permit 65000:1 0:151 0:200 ip community-list standard 1_152_199 permit 65000:1 0:152 0:199 ip community-list standard 1_153_198 permit 65000:1 0:153 0:198 ip community-list standard 1_154_197 permit 65000:1 0:154 0:197 ip community-list standard 1_155_196 permit 65000:1 0:155 0:196 ip community-list standard 1_156_195 permit 65000:1 0:156 0:195 ip community-list standard 1_157_194 permit 65000:1 0:157 0:194 ip community-list standard 1_158_193 permit 65000:1 0:158 0:193 ip community-list standard 1_159_192 permit 65000:1 0:159 0:192 ip community-list standard 1_160_191 permit 65000:1 0:160 0:191 ip community-list standard 1_161_190 permit 65000:1 0:161 0:190 ip community-list standard 1_162_189 permit 65000:1 0:162 0:189 ip community-list standard 1_163_188 permit 65000:1 0:163 0:188 ip community-list standard 1_164_187 permit 65000:1 0:164 0:187 ip community-list standard 1_165_186 permit 65000:1 0:165 0:186 ip community-list standard 1_166_185 permit 65000:1 0:166 0:185 ip community-list standard 1_167_184 permit 65000:1 0:167 0:184 ip community-list standard 1_168_183 permit 65000:1 0:168 0:183 ip community-list standard 1_169_182 permit 65000:1 0:169 0:182 ip community-list standard 1_170_181 permit 65000:1 0:170 0:181 ip community-list standard 1_171_180 permit 65000:1 0:171 0:180 ip community-list standard 1_172_179 permit 65000:1 0:172 0:179 ip community-list standard 1_173_178 permit 65000:1 0:173 0:178 ip community-list standard 1_174_177 permit 65000:1 0:174 0:177 ip community-list standard 1_175_176 permit 65000:1 0:175 0:176 route-map calculator permit 5614 match community 2_3_117 2_9_39 2_13_27 1_95_256 1_96_255 set community 0:351 route-map calculator permit 5615 match community 1_97_254 1_98_253 1_99_252 1_100_251 1_101_250 set community 0:351 route-map calculator permit 5616 match community 1_102_249 1_103_248 1_104_247 1_105_246 1_106_245 set community 0:351 route-map calculator permit 5617 match community 1_107_244 1_108_243 1_109_242 1_110_241 1_111_240 set community 0:351 route-map calculator permit 5618 match community 1_112_239 1_113_238 1_114_237 1_115_236 1_116_235 set community 0:351 route-map calculator permit 5619 match community 1_117_234 1_118_233 1_119_232 1_120_231 1_121_230 set community 0:351 route-map calculator permit 5620 match community 1_122_229 1_123_228 1_124_227 1_125_226 1_126_225 set community 0:351 route-map calculator permit 5621 match community 1_127_224 1_128_223 1_129_222 1_130_221 1_131_220 set community 0:351 route-map calculator permit 5622 match community 1_132_219 1_133_218 1_134_217 1_135_216 1_136_215 set community 0:351 route-map calculator permit 5623 match community 1_137_214 1_138_213 1_139_212 1_140_211 1_141_210 set community 0:351 route-map calculator permit 5624 match community 1_142_209 1_143_208 1_144_207 1_145_206 1_146_205 set community 0:351 route-map calculator permit 5625 match community 1_147_204 1_148_203 1_149_202 1_150_201 1_151_200 set community 0:351 route-map calculator permit 5626 match community 1_152_199 1_153_198 1_154_197 1_155_196 1_156_195 set community 0:351 route-map calculator permit 5627 match community 1_157_194 1_158_193 1_159_192 1_160_191 1_161_190 set community 0:351 route-map calculator permit 5628 match community 1_162_189 1_163_188 1_164_187 1_165_186 1_166_185 set community 0:351 route-map calculator permit 5629 match community 1_167_184 1_168_183 1_169_182 1_170_181 1_171_180 set community 0:351 route-map calculator permit 5630 match community 1_172_179 1_173_178 1_174_177 1_175_176 set community 0:351 ip community-list standard 2_87_241 permit 65000:2 0:87 0:241 route-map calculator permit 5631 match community 2_87_241 set community 0:20967 ip community-list standard 2_152_230 permit 65000:2 0:152 0:230 ip community-list standard 2_184_190 permit 65000:2 0:184 0:190 route-map calculator permit 5632 match community 2_152_230 2_184_190 set community 0:34960 ip community-list standard 2_92_173 permit 65000:2 0:92 0:173 route-map calculator permit 5633 match community 2_92_173 set community 0:15916 ip community-list standard 2_37_61 permit 65000:2 0:37 0:61 route-map calculator permit 5634 match community 2_37_61 set community 0:2257 ip community-list standard 2_89_245 permit 65000:2 0:89 0:245 route-map calculator permit 5635 match community 2_89_245 set community 0:21805 ip community-list standard 2_33_139 permit 65000:2 0:33 0:139 route-map calculator permit 5636 match community 2_33_139 set community 0:4587 ip community-list standard 2_46_157 permit 65000:2 0:46 0:157 route-map calculator permit 5637 match community 2_46_157 set community 0:7222 ip community-list standard 2_78_167 permit 65000:2 0:78 0:167 route-map calculator permit 5638 match community 2_78_167 set community 0:13026 ip community-list standard 2_153_241 permit 65000:2 0:153 0:241 route-map calculator permit 5639 match community 2_153_241 set community 0:36873 ip community-list standard 2_141_177 permit 65000:2 0:141 0:177 route-map calculator permit 5640 match community 2_141_177 set community 0:24957 ip community-list standard 2_139_184 permit 65000:2 0:139 0:184 route-map calculator permit 5641 match community 2_139_184 set community 0:25576 ip community-list standard 2_151_251 permit 65000:2 0:151 0:251 route-map calculator permit 5642 match community 2_151_251 set community 0:37901 ip community-list standard 2_82_249 permit 65000:2 0:82 0:249 ip community-list standard 2_83_246 permit 65000:2 0:83 0:246 ip community-list standard 2_123_166 permit 65000:2 0:123 0:166 route-map calculator permit 5643 match community 2_82_249 2_83_246 2_123_166 set community 0:20418 ip community-list standard 2_10_255 permit 65000:2 0:10 0:255 ip community-list standard 2_15_170 permit 65000:2 0:15 0:170 ip community-list standard 2_17_150 permit 65000:2 0:17 0:150 ip community-list standard 2_25_102 permit 65000:2 0:25 0:102 ip community-list standard 2_30_85 permit 65000:2 0:30 0:85 ip community-list standard 2_34_75 permit 65000:2 0:34 0:75 ip community-list standard 2_50_51 permit 65000:2 0:50 0:51 route-map calculator permit 5644 match community 2_10_255 2_15_170 2_17_150 2_25_102 2_30_85 set community 0:2550 route-map calculator permit 5645 match community 2_34_75 2_50_51 set community 0:2550 ip community-list standard 2_17_245 permit 65000:2 0:17 0:245 ip community-list standard 2_35_119 permit 65000:2 0:35 0:119 ip community-list standard 2_49_85 permit 65000:2 0:49 0:85 route-map calculator permit 5646 match community 2_17_245 2_35_119 2_49_85 set community 0:4165 ip community-list standard 2_219_251 permit 65000:2 0:219 0:251 route-map calculator permit 5647 match community 2_219_251 set community 0:54969 ip community-list standard 2_104_238 permit 65000:2 0:104 0:238 ip community-list standard 2_112_221 permit 65000:2 0:112 0:221 ip community-list standard 2_119_208 permit 65000:2 0:119 0:208 ip community-list standard 2_136_182 permit 65000:2 0:136 0:182 route-map calculator permit 5648 match community 2_104_238 2_112_221 2_119_208 2_136_182 set community 0:24752 ip community-list standard 2_43_236 permit 65000:2 0:43 0:236 ip community-list standard 2_59_172 permit 65000:2 0:59 0:172 ip community-list standard 2_86_118 permit 65000:2 0:86 0:118 route-map calculator permit 5649 match community 2_43_236 2_59_172 2_86_118 set community 0:10148 ip community-list standard 2_155_197 permit 65000:2 0:155 0:197 route-map calculator permit 5650 match community 2_155_197 set community 0:30535 ip community-list standard 2_164_238 permit 65000:2 0:164 0:238 route-map calculator permit 5651 match community 2_164_238 set community 0:39032 ip community-list standard 2_3_151 permit 65000:2 0:3 0:151 ip community-list standard 1_197_256 permit 65000:1 0:197 0:256 ip community-list standard 1_198_255 permit 65000:1 0:198 0:255 ip community-list standard 1_199_254 permit 65000:1 0:199 0:254 ip community-list standard 1_200_253 permit 65000:1 0:200 0:253 ip community-list standard 1_201_252 permit 65000:1 0:201 0:252 ip community-list standard 1_202_251 permit 65000:1 0:202 0:251 ip community-list standard 1_203_250 permit 65000:1 0:203 0:250 ip community-list standard 1_204_249 permit 65000:1 0:204 0:249 ip community-list standard 1_205_248 permit 65000:1 0:205 0:248 ip community-list standard 1_206_247 permit 65000:1 0:206 0:247 ip community-list standard 1_207_246 permit 65000:1 0:207 0:246 ip community-list standard 1_208_245 permit 65000:1 0:208 0:245 ip community-list standard 1_209_244 permit 65000:1 0:209 0:244 ip community-list standard 1_210_243 permit 65000:1 0:210 0:243 ip community-list standard 1_211_242 permit 65000:1 0:211 0:242 ip community-list standard 1_212_241 permit 65000:1 0:212 0:241 ip community-list standard 1_213_240 permit 65000:1 0:213 0:240 ip community-list standard 1_214_239 permit 65000:1 0:214 0:239 ip community-list standard 1_215_238 permit 65000:1 0:215 0:238 ip community-list standard 1_216_237 permit 65000:1 0:216 0:237 ip community-list standard 1_217_236 permit 65000:1 0:217 0:236 ip community-list standard 1_218_235 permit 65000:1 0:218 0:235 ip community-list standard 1_219_234 permit 65000:1 0:219 0:234 ip community-list standard 1_220_233 permit 65000:1 0:220 0:233 ip community-list standard 1_221_232 permit 65000:1 0:221 0:232 ip community-list standard 1_222_231 permit 65000:1 0:222 0:231 ip community-list standard 1_223_230 permit 65000:1 0:223 0:230 ip community-list standard 1_224_229 permit 65000:1 0:224 0:229 ip community-list standard 1_225_228 permit 65000:1 0:225 0:228 ip community-list standard 1_226_227 permit 65000:1 0:226 0:227 route-map calculator permit 5652 match community 2_3_151 1_197_256 1_198_255 1_199_254 1_200_253 set community 0:453 route-map calculator permit 5653 match community 1_201_252 1_202_251 1_203_250 1_204_249 1_205_248 set community 0:453 route-map calculator permit 5654 match community 1_206_247 1_207_246 1_208_245 1_209_244 1_210_243 set community 0:453 route-map calculator permit 5655 match community 1_211_242 1_212_241 1_213_240 1_214_239 1_215_238 set community 0:453 route-map calculator permit 5656 match community 1_216_237 1_217_236 1_218_235 1_219_234 1_220_233 set community 0:453 route-map calculator permit 5657 match community 1_221_232 1_222_231 1_223_230 1_224_229 1_225_228 set community 0:453 route-map calculator permit 5658 match community 1_226_227 set community 0:453 ip community-list standard 2_187_212 permit 65000:2 0:187 0:212 route-map calculator permit 5659 match community 2_187_212 set community 0:39644 ip community-list standard 2_8_193 permit 65000:2 0:8 0:193 route-map calculator permit 5660 match community 2_8_193 set community 0:1544 ip community-list standard 2_35_71 permit 65000:2 0:35 0:71 route-map calculator permit 5661 match community 2_35_71 set community 0:2485 ip community-list standard 2_106_181 permit 65000:2 0:106 0:181 route-map calculator permit 5662 match community 2_106_181 set community 0:19186 ip community-list standard 2_156_226 permit 65000:2 0:156 0:226 route-map calculator permit 5663 match community 2_156_226 set community 0:35256 ip community-list standard 2_20_240 permit 65000:2 0:20 0:240 ip community-list standard 2_24_200 permit 65000:2 0:24 0:200 ip community-list standard 2_25_192 permit 65000:2 0:25 0:192 ip community-list standard 2_30_160 permit 65000:2 0:30 0:160 ip community-list standard 2_32_150 permit 65000:2 0:32 0:150 ip community-list standard 2_40_120 permit 65000:2 0:40 0:120 ip community-list standard 2_48_100 permit 65000:2 0:48 0:100 ip community-list standard 2_50_96 permit 65000:2 0:50 0:96 ip community-list standard 2_60_80 permit 65000:2 0:60 0:80 ip community-list standard 2_64_75 permit 65000:2 0:64 0:75 route-map calculator permit 5664 match community 2_20_240 2_24_200 2_25_192 2_30_160 2_32_150 set community 0:4800 route-map calculator permit 5665 match community 2_40_120 2_48_100 2_50_96 2_60_80 2_64_75 set community 0:4800 ip community-list standard 2_99_229 permit 65000:2 0:99 0:229 route-map calculator permit 5666 match community 2_99_229 set community 0:22671 ip community-list standard 2_6_253 permit 65000:2 0:6 0:253 ip community-list standard 2_11_138 permit 65000:2 0:11 0:138 ip community-list standard 2_22_69 permit 65000:2 0:22 0:69 ip community-list standard 2_23_66 permit 65000:2 0:23 0:66 ip community-list standard 2_33_46 permit 65000:2 0:33 0:46 route-map calculator permit 5667 match community 2_6_253 2_11_138 2_22_69 2_23_66 2_33_46 set community 0:1518 ip community-list standard 2_157_254 permit 65000:2 0:157 0:254 route-map calculator permit 5668 match community 2_157_254 set community 0:39878 ip community-list standard 2_37_184 permit 65000:2 0:37 0:184 ip community-list standard 2_46_148 permit 65000:2 0:46 0:148 ip community-list standard 2_74_92 permit 65000:2 0:74 0:92 route-map calculator permit 5669 match community 2_37_184 2_46_148 2_74_92 set community 0:6808 ip community-list standard 2_174_232 permit 65000:2 0:174 0:232 route-map calculator permit 5670 match community 2_174_232 set community 0:40368 ip community-list standard 2_35_181 permit 65000:2 0:35 0:181 route-map calculator permit 5671 match community 2_35_181 set community 0:6335 ip community-list standard 2_42_139 permit 65000:2 0:42 0:139 route-map calculator permit 5672 match community 2_42_139 set community 0:5838 ip community-list standard 2_6_139 permit 65000:2 0:6 0:139 route-map calculator permit 5673 match community 2_6_139 set community 0:834 ip community-list standard 2_149_163 permit 65000:2 0:149 0:163 route-map calculator permit 5674 match community 2_149_163 set community 0:24287 ip community-list standard 2_77_227 permit 65000:2 0:77 0:227 route-map calculator permit 5675 match community 2_77_227 set community 0:17479 ip community-list standard 2_8_146 permit 65000:2 0:8 0:146 ip community-list standard 2_16_73 permit 65000:2 0:16 0:73 route-map calculator permit 5676 match community 2_8_146 2_16_73 set community 0:1168 ip community-list standard 2_169_203 permit 65000:2 0:169 0:203 route-map calculator permit 5677 match community 2_169_203 set community 0:34307 ip community-list standard 2_193_229 permit 65000:2 0:193 0:229 route-map calculator permit 5678 match community 2_193_229 set community 0:44197 ip community-list standard 2_148_253 permit 65000:2 0:148 0:253 route-map calculator permit 5679 match community 2_148_253 set community 0:37444 ip community-list standard 2_167_177 permit 65000:2 0:167 0:177 route-map calculator permit 5680 match community 2_167_177 set community 0:29559 ip community-list standard 2_192_223 permit 65000:2 0:192 0:223 route-map calculator permit 5681 match community 2_192_223 set community 0:42816 ip community-list standard 2_102_255 permit 65000:2 0:102 0:255 ip community-list standard 2_153_170 permit 65000:2 0:153 0:170 route-map calculator permit 5682 match community 2_102_255 2_153_170 set community 0:26010 ip community-list standard 2_146_187 permit 65000:2 0:146 0:187 route-map calculator permit 5683 match community 2_146_187 set community 0:27302 ip community-list standard 2_99_111 permit 65000:2 0:99 0:111 route-map calculator permit 5684 match community 2_99_111 set community 0:10989 ip community-list standard 2_154_235 permit 65000:2 0:154 0:235 route-map calculator permit 5685 match community 2_154_235 set community 0:36190 ip community-list standard 2_49_222 permit 65000:2 0:49 0:222 ip community-list standard 2_74_147 permit 65000:2 0:74 0:147 ip community-list standard 2_98_111 permit 65000:2 0:98 0:111 route-map calculator permit 5686 match community 2_49_222 2_74_147 2_98_111 set community 0:10878 ip community-list standard 2_67_158 permit 65000:2 0:67 0:158 ip community-list standard 2_79_134 permit 65000:2 0:79 0:134 route-map calculator permit 5687 match community 2_67_158 2_79_134 set community 0:10586 ip community-list standard 2_87_211 permit 65000:2 0:87 0:211 route-map calculator permit 5688 match community 2_87_211 set community 0:18357 ip community-list standard 2_65_181 permit 65000:2 0:65 0:181 route-map calculator permit 5689 match community 2_65_181 set community 0:11765 ip community-list standard 2_98_193 permit 65000:2 0:98 0:193 route-map calculator permit 5690 match community 2_98_193 set community 0:18914 ip community-list standard 2_31_164 permit 65000:2 0:31 0:164 ip community-list standard 2_41_124 permit 65000:2 0:41 0:124 ip community-list standard 2_62_82 permit 65000:2 0:62 0:82 route-map calculator permit 5691 match community 2_31_164 2_41_124 2_62_82 set community 0:5084 ip community-list standard 2_27_213 permit 65000:2 0:27 0:213 ip community-list standard 2_71_81 permit 65000:2 0:71 0:81 route-map calculator permit 5692 match community 2_27_213 2_71_81 set community 0:5751 ip community-list standard 2_113_195 permit 65000:2 0:113 0:195 route-map calculator permit 5693 match community 2_113_195 set community 0:22035 ip community-list standard 2_14_188 permit 65000:2 0:14 0:188 ip community-list standard 2_28_94 permit 65000:2 0:28 0:94 ip community-list standard 2_47_56 permit 65000:2 0:47 0:56 route-map calculator permit 5694 match community 2_14_188 2_28_94 2_47_56 set community 0:2632 ip community-list standard 2_47_122 permit 65000:2 0:47 0:122 ip community-list standard 2_61_94 permit 65000:2 0:61 0:94 route-map calculator permit 5695 match community 2_47_122 2_61_94 set community 0:5734 ip community-list standard 2_151_210 permit 65000:2 0:151 0:210 route-map calculator permit 5696 match community 2_151_210 set community 0:31710 ip community-list standard 2_12_233 permit 65000:2 0:12 0:233 route-map calculator permit 5697 match community 2_12_233 set community 0:2796 ip community-list standard 2_97_113 permit 65000:2 0:97 0:113 route-map calculator permit 5698 match community 2_97_113 set community 0:10961 ip community-list standard 2_63_227 permit 65000:2 0:63 0:227 route-map calculator permit 5699 match community 2_63_227 set community 0:14301 ip community-list standard 2_89_103 permit 65000:2 0:89 0:103 route-map calculator permit 5700 match community 2_89_103 set community 0:9167 ip community-list standard 2_209_219 permit 65000:2 0:209 0:219 route-map calculator permit 5701 match community 2_209_219 set community 0:45771 ip community-list standard 2_67_205 permit 65000:2 0:67 0:205 route-map calculator permit 5702 match community 2_67_205 set community 0:13735 ip community-list standard 2_121_255 permit 65000:2 0:121 0:255 ip community-list standard 2_165_187 permit 65000:2 0:165 0:187 route-map calculator permit 5703 match community 2_121_255 2_165_187 set community 0:30855 ip community-list standard 2_185_239 permit 65000:2 0:185 0:239 route-map calculator permit 5704 match community 2_185_239 set community 0:44215 ip community-list standard 2_35_212 permit 65000:2 0:35 0:212 ip community-list standard 2_53_140 permit 65000:2 0:53 0:140 ip community-list standard 2_70_106 permit 65000:2 0:70 0:106 route-map calculator permit 5705 match community 2_35_212 2_53_140 2_70_106 set community 0:7420 ip community-list standard 2_37_253 permit 65000:2 0:37 0:253 route-map calculator permit 5706 match community 2_37_253 set community 0:9361 ip community-list standard 2_17_37 permit 65000:2 0:17 0:37 route-map calculator permit 5707 match community 2_17_37 set community 0:629 ip community-list standard 2_28_213 permit 65000:2 0:28 0:213 ip community-list standard 2_42_142 permit 65000:2 0:42 0:142 ip community-list standard 2_71_84 permit 65000:2 0:71 0:84 route-map calculator permit 5708 match community 2_28_213 2_42_142 2_71_84 set community 0:5964 ip community-list standard 2_206_207 permit 65000:2 0:206 0:207 route-map calculator permit 5709 match community 2_206_207 set community 0:42642 ip community-list standard 2_99_209 permit 65000:2 0:99 0:209 ip community-list standard 2_121_171 permit 65000:2 0:121 0:171 route-map calculator permit 5710 match community 2_99_209 2_121_171 set community 0:20691 ip community-list standard 2_69_205 permit 65000:2 0:69 0:205 ip community-list standard 2_115_123 permit 65000:2 0:115 0:123 route-map calculator permit 5711 match community 2_69_205 2_115_123 set community 0:14145 ip community-list standard 2_153_223 permit 65000:2 0:153 0:223 route-map calculator permit 5712 match community 2_153_223 set community 0:34119 ip community-list standard 2_118_191 permit 65000:2 0:118 0:191 route-map calculator permit 5713 match community 2_118_191 set community 0:22538 ip community-list standard 2_7_47 permit 65000:2 0:7 0:47 ip community-list standard 1_73_256 permit 65000:1 0:73 0:256 ip community-list standard 1_74_255 permit 65000:1 0:74 0:255 ip community-list standard 1_75_254 permit 65000:1 0:75 0:254 ip community-list standard 1_76_253 permit 65000:1 0:76 0:253 ip community-list standard 1_77_252 permit 65000:1 0:77 0:252 ip community-list standard 1_78_251 permit 65000:1 0:78 0:251 ip community-list standard 1_79_250 permit 65000:1 0:79 0:250 ip community-list standard 1_80_249 permit 65000:1 0:80 0:249 ip community-list standard 1_81_248 permit 65000:1 0:81 0:248 ip community-list standard 1_82_247 permit 65000:1 0:82 0:247 ip community-list standard 1_83_246 permit 65000:1 0:83 0:246 ip community-list standard 1_84_245 permit 65000:1 0:84 0:245 ip community-list standard 1_85_244 permit 65000:1 0:85 0:244 ip community-list standard 1_86_243 permit 65000:1 0:86 0:243 ip community-list standard 1_87_242 permit 65000:1 0:87 0:242 ip community-list standard 1_88_241 permit 65000:1 0:88 0:241 ip community-list standard 1_89_240 permit 65000:1 0:89 0:240 ip community-list standard 1_90_239 permit 65000:1 0:90 0:239 ip community-list standard 1_91_238 permit 65000:1 0:91 0:238 ip community-list standard 1_92_237 permit 65000:1 0:92 0:237 ip community-list standard 1_93_236 permit 65000:1 0:93 0:236 ip community-list standard 1_94_235 permit 65000:1 0:94 0:235 ip community-list standard 1_95_234 permit 65000:1 0:95 0:234 ip community-list standard 1_96_233 permit 65000:1 0:96 0:233 ip community-list standard 1_97_232 permit 65000:1 0:97 0:232 ip community-list standard 1_98_231 permit 65000:1 0:98 0:231 ip community-list standard 1_99_230 permit 65000:1 0:99 0:230 ip community-list standard 1_100_229 permit 65000:1 0:100 0:229 ip community-list standard 1_101_228 permit 65000:1 0:101 0:228 ip community-list standard 1_102_227 permit 65000:1 0:102 0:227 ip community-list standard 1_103_226 permit 65000:1 0:103 0:226 ip community-list standard 1_104_225 permit 65000:1 0:104 0:225 ip community-list standard 1_105_224 permit 65000:1 0:105 0:224 ip community-list standard 1_106_223 permit 65000:1 0:106 0:223 ip community-list standard 1_107_222 permit 65000:1 0:107 0:222 ip community-list standard 1_108_221 permit 65000:1 0:108 0:221 ip community-list standard 1_109_220 permit 65000:1 0:109 0:220 ip community-list standard 1_110_219 permit 65000:1 0:110 0:219 ip community-list standard 1_111_218 permit 65000:1 0:111 0:218 ip community-list standard 1_112_217 permit 65000:1 0:112 0:217 ip community-list standard 1_113_216 permit 65000:1 0:113 0:216 ip community-list standard 1_114_215 permit 65000:1 0:114 0:215 ip community-list standard 1_115_214 permit 65000:1 0:115 0:214 ip community-list standard 1_116_213 permit 65000:1 0:116 0:213 ip community-list standard 1_117_212 permit 65000:1 0:117 0:212 ip community-list standard 1_118_211 permit 65000:1 0:118 0:211 ip community-list standard 1_119_210 permit 65000:1 0:119 0:210 ip community-list standard 1_120_209 permit 65000:1 0:120 0:209 ip community-list standard 1_121_208 permit 65000:1 0:121 0:208 ip community-list standard 1_122_207 permit 65000:1 0:122 0:207 ip community-list standard 1_123_206 permit 65000:1 0:123 0:206 ip community-list standard 1_124_205 permit 65000:1 0:124 0:205 ip community-list standard 1_125_204 permit 65000:1 0:125 0:204 ip community-list standard 1_126_203 permit 65000:1 0:126 0:203 ip community-list standard 1_127_202 permit 65000:1 0:127 0:202 ip community-list standard 1_128_201 permit 65000:1 0:128 0:201 ip community-list standard 1_129_200 permit 65000:1 0:129 0:200 ip community-list standard 1_130_199 permit 65000:1 0:130 0:199 ip community-list standard 1_131_198 permit 65000:1 0:131 0:198 ip community-list standard 1_132_197 permit 65000:1 0:132 0:197 ip community-list standard 1_133_196 permit 65000:1 0:133 0:196 ip community-list standard 1_134_195 permit 65000:1 0:134 0:195 ip community-list standard 1_135_194 permit 65000:1 0:135 0:194 ip community-list standard 1_136_193 permit 65000:1 0:136 0:193 ip community-list standard 1_137_192 permit 65000:1 0:137 0:192 ip community-list standard 1_138_191 permit 65000:1 0:138 0:191 ip community-list standard 1_139_190 permit 65000:1 0:139 0:190 ip community-list standard 1_140_189 permit 65000:1 0:140 0:189 ip community-list standard 1_141_188 permit 65000:1 0:141 0:188 ip community-list standard 1_142_187 permit 65000:1 0:142 0:187 ip community-list standard 1_143_186 permit 65000:1 0:143 0:186 ip community-list standard 1_144_185 permit 65000:1 0:144 0:185 ip community-list standard 1_145_184 permit 65000:1 0:145 0:184 ip community-list standard 1_146_183 permit 65000:1 0:146 0:183 ip community-list standard 1_147_182 permit 65000:1 0:147 0:182 ip community-list standard 1_148_181 permit 65000:1 0:148 0:181 ip community-list standard 1_149_180 permit 65000:1 0:149 0:180 ip community-list standard 1_150_179 permit 65000:1 0:150 0:179 ip community-list standard 1_151_178 permit 65000:1 0:151 0:178 ip community-list standard 1_152_177 permit 65000:1 0:152 0:177 ip community-list standard 1_153_176 permit 65000:1 0:153 0:176 ip community-list standard 1_154_175 permit 65000:1 0:154 0:175 ip community-list standard 1_155_174 permit 65000:1 0:155 0:174 ip community-list standard 1_156_173 permit 65000:1 0:156 0:173 ip community-list standard 1_157_172 permit 65000:1 0:157 0:172 ip community-list standard 1_158_171 permit 65000:1 0:158 0:171 ip community-list standard 1_159_170 permit 65000:1 0:159 0:170 ip community-list standard 1_160_169 permit 65000:1 0:160 0:169 ip community-list standard 1_161_168 permit 65000:1 0:161 0:168 ip community-list standard 1_162_167 permit 65000:1 0:162 0:167 ip community-list standard 1_163_166 permit 65000:1 0:163 0:166 ip community-list standard 1_164_165 permit 65000:1 0:164 0:165 route-map calculator permit 5714 match community 2_7_47 1_73_256 1_74_255 1_75_254 1_76_253 set community 0:329 route-map calculator permit 5715 match community 1_77_252 1_78_251 1_79_250 1_80_249 1_81_248 set community 0:329 route-map calculator permit 5716 match community 1_82_247 1_83_246 1_84_245 1_85_244 1_86_243 set community 0:329 route-map calculator permit 5717 match community 1_87_242 1_88_241 1_89_240 1_90_239 1_91_238 set community 0:329 route-map calculator permit 5718 match community 1_92_237 1_93_236 1_94_235 1_95_234 1_96_233 set community 0:329 route-map calculator permit 5719 match community 1_97_232 1_98_231 1_99_230 1_100_229 1_101_228 set community 0:329 route-map calculator permit 5720 match community 1_102_227 1_103_226 1_104_225 1_105_224 1_106_223 set community 0:329 route-map calculator permit 5721 match community 1_107_222 1_108_221 1_109_220 1_110_219 1_111_218 set community 0:329 route-map calculator permit 5722 match community 1_112_217 1_113_216 1_114_215 1_115_214 1_116_213 set community 0:329 route-map calculator permit 5723 match community 1_117_212 1_118_211 1_119_210 1_120_209 1_121_208 set community 0:329 route-map calculator permit 5724 match community 1_122_207 1_123_206 1_124_205 1_125_204 1_126_203 set community 0:329 route-map calculator permit 5725 match community 1_127_202 1_128_201 1_129_200 1_130_199 1_131_198 set community 0:329 route-map calculator permit 5726 match community 1_132_197 1_133_196 1_134_195 1_135_194 1_136_193 set community 0:329 route-map calculator permit 5727 match community 1_137_192 1_138_191 1_139_190 1_140_189 1_141_188 set community 0:329 route-map calculator permit 5728 match community 1_142_187 1_143_186 1_144_185 1_145_184 1_146_183 set community 0:329 route-map calculator permit 5729 match community 1_147_182 1_148_181 1_149_180 1_150_179 1_151_178 set community 0:329 route-map calculator permit 5730 match community 1_152_177 1_153_176 1_154_175 1_155_174 1_156_173 set community 0:329 route-map calculator permit 5731 match community 1_157_172 1_158_171 1_159_170 1_160_169 1_161_168 set community 0:329 route-map calculator permit 5732 match community 1_162_167 1_163_166 1_164_165 set community 0:329 ip community-list standard 1_1_153 permit 65000:1 0:1 0:153 ip community-list standard 2_1_154 permit 65000:2 0:1 0:154 ip community-list standard 2_2_77 permit 65000:2 0:2 0:77 ip community-list standard 1_2_152 permit 65000:1 0:2 0:152 ip community-list standard 1_3_151 permit 65000:1 0:3 0:151 ip community-list standard 1_4_150 permit 65000:1 0:4 0:150 ip community-list standard 1_5_149 permit 65000:1 0:5 0:149 ip community-list standard 1_6_148 permit 65000:1 0:6 0:148 ip community-list standard 2_7_22 permit 65000:2 0:7 0:22 ip community-list standard 1_7_147 permit 65000:1 0:7 0:147 ip community-list standard 1_8_146 permit 65000:1 0:8 0:146 ip community-list standard 1_9_145 permit 65000:1 0:9 0:145 ip community-list standard 1_10_144 permit 65000:1 0:10 0:144 ip community-list standard 2_11_14 permit 65000:2 0:11 0:14 ip community-list standard 1_11_143 permit 65000:1 0:11 0:143 ip community-list standard 1_12_142 permit 65000:1 0:12 0:142 ip community-list standard 1_13_141 permit 65000:1 0:13 0:141 ip community-list standard 1_14_140 permit 65000:1 0:14 0:140 ip community-list standard 1_15_139 permit 65000:1 0:15 0:139 ip community-list standard 1_16_138 permit 65000:1 0:16 0:138 ip community-list standard 1_17_137 permit 65000:1 0:17 0:137 ip community-list standard 1_18_136 permit 65000:1 0:18 0:136 ip community-list standard 1_19_135 permit 65000:1 0:19 0:135 ip community-list standard 1_20_134 permit 65000:1 0:20 0:134 ip community-list standard 1_21_133 permit 65000:1 0:21 0:133 ip community-list standard 1_22_132 permit 65000:1 0:22 0:132 ip community-list standard 1_23_131 permit 65000:1 0:23 0:131 ip community-list standard 1_24_130 permit 65000:1 0:24 0:130 ip community-list standard 1_25_129 permit 65000:1 0:25 0:129 ip community-list standard 1_26_128 permit 65000:1 0:26 0:128 ip community-list standard 1_27_127 permit 65000:1 0:27 0:127 ip community-list standard 1_28_126 permit 65000:1 0:28 0:126 ip community-list standard 1_29_125 permit 65000:1 0:29 0:125 ip community-list standard 1_30_124 permit 65000:1 0:30 0:124 ip community-list standard 1_31_123 permit 65000:1 0:31 0:123 ip community-list standard 1_32_122 permit 65000:1 0:32 0:122 ip community-list standard 1_33_121 permit 65000:1 0:33 0:121 ip community-list standard 1_34_120 permit 65000:1 0:34 0:120 ip community-list standard 1_35_119 permit 65000:1 0:35 0:119 ip community-list standard 1_36_118 permit 65000:1 0:36 0:118 ip community-list standard 1_37_117 permit 65000:1 0:37 0:117 ip community-list standard 1_38_116 permit 65000:1 0:38 0:116 ip community-list standard 1_39_115 permit 65000:1 0:39 0:115 ip community-list standard 1_40_114 permit 65000:1 0:40 0:114 ip community-list standard 1_41_113 permit 65000:1 0:41 0:113 ip community-list standard 1_42_112 permit 65000:1 0:42 0:112 ip community-list standard 1_43_111 permit 65000:1 0:43 0:111 ip community-list standard 1_44_110 permit 65000:1 0:44 0:110 ip community-list standard 1_45_109 permit 65000:1 0:45 0:109 ip community-list standard 1_46_108 permit 65000:1 0:46 0:108 ip community-list standard 1_47_107 permit 65000:1 0:47 0:107 ip community-list standard 1_48_106 permit 65000:1 0:48 0:106 ip community-list standard 1_49_105 permit 65000:1 0:49 0:105 ip community-list standard 1_50_104 permit 65000:1 0:50 0:104 ip community-list standard 1_51_103 permit 65000:1 0:51 0:103 ip community-list standard 1_52_102 permit 65000:1 0:52 0:102 ip community-list standard 1_53_101 permit 65000:1 0:53 0:101 ip community-list standard 1_54_100 permit 65000:1 0:54 0:100 ip community-list standard 1_55_99 permit 65000:1 0:55 0:99 ip community-list standard 1_56_98 permit 65000:1 0:56 0:98 ip community-list standard 1_57_97 permit 65000:1 0:57 0:97 ip community-list standard 1_58_96 permit 65000:1 0:58 0:96 ip community-list standard 1_59_95 permit 65000:1 0:59 0:95 ip community-list standard 1_60_94 permit 65000:1 0:60 0:94 ip community-list standard 1_61_93 permit 65000:1 0:61 0:93 ip community-list standard 1_62_92 permit 65000:1 0:62 0:92 ip community-list standard 1_63_91 permit 65000:1 0:63 0:91 ip community-list standard 1_64_90 permit 65000:1 0:64 0:90 ip community-list standard 1_65_89 permit 65000:1 0:65 0:89 ip community-list standard 1_66_88 permit 65000:1 0:66 0:88 ip community-list standard 1_67_87 permit 65000:1 0:67 0:87 ip community-list standard 1_68_86 permit 65000:1 0:68 0:86 ip community-list standard 1_69_85 permit 65000:1 0:69 0:85 ip community-list standard 1_70_84 permit 65000:1 0:70 0:84 ip community-list standard 1_71_83 permit 65000:1 0:71 0:83 ip community-list standard 1_72_82 permit 65000:1 0:72 0:82 ip community-list standard 1_73_81 permit 65000:1 0:73 0:81 ip community-list standard 1_74_80 permit 65000:1 0:74 0:80 ip community-list standard 1_75_79 permit 65000:1 0:75 0:79 ip community-list standard 1_76_78 permit 65000:1 0:76 0:78 ip community-list standard 1_77_77 permit 65000:1 0:77 0:77 ip community-list expanded c154 permit 1 ^65000:4_0:154_0:1$ ip community-list expanded c154 permit 2 ^65000:3_0:155_0:1$ ip community-list expanded c154 permit 3 ^65000:3_0:156_0:2$ ip community-list expanded c154 permit 4 ^65000:3_0:157_0:3$ ip community-list expanded c154 permit 5 ^65000:3_0:158_0:4$ ip community-list expanded c154 permit 6 ^65000:3_0:159_0:5$ ip community-list expanded c154 permit 7 ^65000:3_0:160_0:6$ ip community-list expanded c154 permit 8 ^65000:3_0:161_0:7$ ip community-list expanded c154 permit 9 ^65000:3_0:162_0:8$ ip community-list expanded c154 permit 10 ^65000:3_0:163_0:9$ ip community-list expanded c154 permit 11 ^65000:3_0:164_0:10$ ip community-list expanded c154 permit 12 ^65000:3_0:165_0:11$ ip community-list expanded c154 permit 13 ^65000:3_0:166_0:12$ ip community-list expanded c154 permit 14 ^65000:3_0:167_0:13$ ip community-list expanded c154 permit 15 ^65000:3_0:168_0:14$ ip community-list expanded c154 permit 16 ^65000:3_0:169_0:15$ ip community-list expanded c154 permit 17 ^65000:3_0:170_0:16$ ip community-list expanded c154 permit 18 ^65000:3_0:171_0:17$ ip community-list expanded c154 permit 19 ^65000:3_0:172_0:18$ ip community-list expanded c154 permit 20 ^65000:3_0:173_0:19$ ip community-list expanded c154 permit 21 ^65000:3_0:174_0:20$ ip community-list expanded c154 permit 22 ^65000:3_0:175_0:21$ ip community-list expanded c154 permit 23 ^65000:3_0:176_0:22$ ip community-list expanded c154 permit 24 ^65000:3_0:177_0:23$ ip community-list expanded c154 permit 25 ^65000:3_0:178_0:24$ ip community-list expanded c154 permit 26 ^65000:3_0:179_0:25$ ip community-list expanded c154 permit 27 ^65000:3_0:180_0:26$ ip community-list expanded c154 permit 28 ^65000:3_0:181_0:27$ ip community-list expanded c154 permit 29 ^65000:3_0:182_0:28$ ip community-list expanded c154 permit 30 ^65000:3_0:183_0:29$ ip community-list expanded c154 permit 31 ^65000:3_0:184_0:30$ ip community-list expanded c154 permit 32 ^65000:3_0:185_0:31$ ip community-list expanded c154 permit 33 ^65000:3_0:186_0:32$ ip community-list expanded c154 permit 34 ^65000:3_0:187_0:33$ ip community-list expanded c154 permit 35 ^65000:3_0:188_0:34$ ip community-list expanded c154 permit 36 ^65000:3_0:189_0:35$ ip community-list expanded c154 permit 37 ^65000:3_0:190_0:36$ ip community-list expanded c154 permit 38 ^65000:3_0:191_0:37$ ip community-list expanded c154 permit 39 ^65000:3_0:192_0:38$ ip community-list expanded c154 permit 40 ^65000:3_0:193_0:39$ ip community-list expanded c154 permit 41 ^65000:3_0:194_0:40$ ip community-list expanded c154 permit 42 ^65000:3_0:195_0:41$ ip community-list expanded c154 permit 43 ^65000:3_0:196_0:42$ ip community-list expanded c154 permit 44 ^65000:3_0:197_0:43$ ip community-list expanded c154 permit 45 ^65000:3_0:198_0:44$ ip community-list expanded c154 permit 46 ^65000:3_0:199_0:45$ ip community-list expanded c154 permit 47 ^65000:3_0:200_0:46$ ip community-list expanded c154 permit 48 ^65000:3_0:201_0:47$ ip community-list expanded c154 permit 49 ^65000:3_0:202_0:48$ ip community-list expanded c154 permit 50 ^65000:3_0:203_0:49$ ip community-list expanded c154 permit 51 ^65000:3_0:204_0:50$ ip community-list expanded c154 permit 52 ^65000:3_0:205_0:51$ ip community-list expanded c154 permit 53 ^65000:3_0:206_0:52$ ip community-list expanded c154 permit 54 ^65000:3_0:207_0:53$ ip community-list expanded c154 permit 55 ^65000:3_0:208_0:54$ ip community-list expanded c154 permit 56 ^65000:3_0:209_0:55$ ip community-list expanded c154 permit 57 ^65000:3_0:210_0:56$ ip community-list expanded c154 permit 58 ^65000:3_0:211_0:57$ ip community-list expanded c154 permit 59 ^65000:3_0:212_0:58$ ip community-list expanded c154 permit 60 ^65000:3_0:213_0:59$ ip community-list expanded c154 permit 61 ^65000:3_0:214_0:60$ ip community-list expanded c154 permit 62 ^65000:3_0:215_0:61$ ip community-list expanded c154 permit 63 ^65000:3_0:216_0:62$ ip community-list expanded c154 permit 64 ^65000:3_0:217_0:63$ ip community-list expanded c154 permit 65 ^65000:3_0:218_0:64$ ip community-list expanded c154 permit 66 ^65000:3_0:219_0:65$ ip community-list expanded c154 permit 67 ^65000:3_0:220_0:66$ ip community-list expanded c154 permit 68 ^65000:3_0:221_0:67$ ip community-list expanded c154 permit 69 ^65000:3_0:222_0:68$ ip community-list expanded c154 permit 70 ^65000:3_0:223_0:69$ ip community-list expanded c154 permit 71 ^65000:3_0:224_0:70$ ip community-list expanded c154 permit 72 ^65000:3_0:225_0:71$ ip community-list expanded c154 permit 73 ^65000:3_0:226_0:72$ ip community-list expanded c154 permit 74 ^65000:3_0:227_0:73$ ip community-list expanded c154 permit 75 ^65000:3_0:228_0:74$ ip community-list expanded c154 permit 76 ^65000:3_0:229_0:75$ ip community-list expanded c154 permit 77 ^65000:3_0:230_0:76$ ip community-list expanded c154 permit 78 ^65000:3_0:231_0:77$ ip community-list expanded c154 permit 79 ^65000:3_0:232_0:78$ ip community-list expanded c154 permit 80 ^65000:3_0:233_0:79$ ip community-list expanded c154 permit 81 ^65000:3_0:234_0:80$ ip community-list expanded c154 permit 82 ^65000:3_0:235_0:81$ ip community-list expanded c154 permit 83 ^65000:3_0:236_0:82$ ip community-list expanded c154 permit 84 ^65000:3_0:237_0:83$ ip community-list expanded c154 permit 85 ^65000:3_0:238_0:84$ ip community-list expanded c154 permit 86 ^65000:3_0:239_0:85$ ip community-list expanded c154 permit 87 ^65000:3_0:240_0:86$ ip community-list expanded c154 permit 88 ^65000:3_0:241_0:87$ ip community-list expanded c154 permit 89 ^65000:3_0:242_0:88$ ip community-list expanded c154 permit 90 ^65000:3_0:243_0:89$ ip community-list expanded c154 permit 91 ^65000:3_0:244_0:90$ ip community-list expanded c154 permit 92 ^65000:3_0:245_0:91$ ip community-list expanded c154 permit 93 ^65000:3_0:246_0:92$ ip community-list expanded c154 permit 94 ^65000:3_0:247_0:93$ ip community-list expanded c154 permit 95 ^65000:3_0:248_0:94$ ip community-list expanded c154 permit 96 ^65000:3_0:249_0:95$ ip community-list expanded c154 permit 97 ^65000:3_0:250_0:96$ ip community-list expanded c154 permit 98 ^65000:3_0:251_0:97$ ip community-list expanded c154 permit 99 ^65000:3_0:252_0:98$ ip community-list expanded c154 permit 100 ^65000:3_0:253_0:99$ ip community-list expanded c154 permit 101 ^65000:3_0:254_0:100$ ip community-list expanded c154 permit 102 ^65000:3_0:255_0:101$ ip community-list expanded c154 permit 103 ^65000:3_0:256_0:102$ route-map calculator permit 5733 match community 1_1_153 2_1_154 2_2_77 1_2_152 1_3_151 set community 0:154 route-map calculator permit 5734 match community 1_4_150 1_5_149 1_6_148 2_7_22 1_7_147 set community 0:154 route-map calculator permit 5735 match community 1_8_146 1_9_145 1_10_144 2_11_14 1_11_143 set community 0:154 route-map calculator permit 5736 match community 1_12_142 1_13_141 1_14_140 1_15_139 1_16_138 set community 0:154 route-map calculator permit 5737 match community 1_17_137 1_18_136 1_19_135 1_20_134 1_21_133 set community 0:154 route-map calculator permit 5738 match community 1_22_132 1_23_131 1_24_130 1_25_129 1_26_128 set community 0:154 route-map calculator permit 5739 match community 1_27_127 1_28_126 1_29_125 1_30_124 1_31_123 set community 0:154 route-map calculator permit 5740 match community 1_32_122 1_33_121 1_34_120 1_35_119 1_36_118 set community 0:154 route-map calculator permit 5741 match community 1_37_117 1_38_116 1_39_115 1_40_114 1_41_113 set community 0:154 route-map calculator permit 5742 match community 1_42_112 1_43_111 1_44_110 1_45_109 1_46_108 set community 0:154 route-map calculator permit 5743 match community 1_47_107 1_48_106 1_49_105 1_50_104 1_51_103 set community 0:154 route-map calculator permit 5744 match community 1_52_102 1_53_101 1_54_100 1_55_99 1_56_98 set community 0:154 route-map calculator permit 5745 match community 1_57_97 1_58_96 1_59_95 1_60_94 1_61_93 set community 0:154 route-map calculator permit 5746 match community 1_62_92 1_63_91 1_64_90 1_65_89 1_66_88 set community 0:154 route-map calculator permit 5747 match community 1_67_87 1_68_86 1_69_85 1_70_84 1_71_83 set community 0:154 route-map calculator permit 5748 match community 1_72_82 1_73_81 1_74_80 1_75_79 1_76_78 set community 0:154 route-map calculator permit 5749 match community 1_77_77 c4_154_1 c3_155_1 c3_156_2 c3_157_3 set community 0:154 route-map calculator permit 5750 match community c3_158_4 c3_159_5 c3_160_6 c3_161_7 c3_162_8 set community 0:154 route-map calculator permit 5751 match community c3_163_9 c3_164_10 c3_165_11 c3_166_12 c3_167_13 set community 0:154 route-map calculator permit 5752 match community c3_168_14 c3_169_15 c3_170_16 c3_171_17 c3_172_18 set community 0:154 route-map calculator permit 5753 match community c3_173_19 c3_174_20 c3_175_21 c3_176_22 c3_177_23 set community 0:154 route-map calculator permit 5754 match community c3_178_24 c3_179_25 c3_180_26 c3_181_27 c3_182_28 set community 0:154 route-map calculator permit 5755 match community c3_183_29 c3_184_30 c3_185_31 c3_186_32 c3_187_33 set community 0:154 route-map calculator permit 5756 match community c3_188_34 c3_189_35 c3_190_36 c3_191_37 c3_192_38 set community 0:154 route-map calculator permit 5757 match community c3_193_39 c3_194_40 c3_195_41 c3_196_42 c3_197_43 set community 0:154 route-map calculator permit 5758 match community c3_198_44 c3_199_45 c3_200_46 c3_201_47 c3_202_48 set community 0:154 route-map calculator permit 5759 match community c3_203_49 c3_204_50 c3_205_51 c3_206_52 c3_207_53 set community 0:154 route-map calculator permit 5760 match community c3_208_54 c3_209_55 c3_210_56 c3_211_57 c3_212_58 set community 0:154 route-map calculator permit 5761 match community c3_213_59 c3_214_60 c3_215_61 c3_216_62 c3_217_63 set community 0:154 route-map calculator permit 5762 match community c3_218_64 c3_219_65 c3_220_66 c3_221_67 c3_222_68 set community 0:154 route-map calculator permit 5763 match community c3_223_69 c3_224_70 c3_225_71 c3_226_72 c3_227_73 set community 0:154 route-map calculator permit 5764 match community c3_228_74 c3_229_75 c3_230_76 c3_231_77 c3_232_78 set community 0:154 route-map calculator permit 5765 match community c3_233_79 c3_234_80 c3_235_81 c3_236_82 c3_237_83 set community 0:154 route-map calculator permit 5766 match community c3_238_84 c3_239_85 c3_240_86 c3_241_87 c3_242_88 set community 0:154 route-map calculator permit 5767 match community c3_243_89 c3_244_90 c3_245_91 c3_246_92 c3_247_93 set community 0:154 route-map calculator permit 5768 match community c3_248_94 c3_249_95 c3_250_96 c3_251_97 c3_252_98 set community 0:154 route-map calculator permit 5769 match community c3_253_99 c3_254_100 c3_255_101 c3_256_102 set community 0:154 ip community-list standard 2_21_212 permit 65000:2 0:21 0:212 ip community-list standard 2_28_159 permit 65000:2 0:28 0:159 ip community-list standard 2_42_106 permit 65000:2 0:42 0:106 ip community-list standard 2_53_84 permit 65000:2 0:53 0:84 route-map calculator permit 5770 match community 2_21_212 2_28_159 2_42_106 2_53_84 set community 0:4452 ip community-list standard 2_213_221 permit 65000:2 0:213 0:221 route-map calculator permit 5771 match community 2_213_221 set community 0:47073 ip community-list standard 2_69_248 permit 65000:2 0:69 0:248 ip community-list standard 2_92_186 permit 65000:2 0:92 0:186 ip community-list standard 2_93_184 permit 65000:2 0:93 0:184 ip community-list standard 2_124_138 permit 65000:2 0:124 0:138 route-map calculator permit 5772 match community 2_69_248 2_92_186 2_93_184 2_124_138 set community 0:17112 ip community-list standard 2_119_245 permit 65000:2 0:119 0:245 route-map calculator permit 5773 match community 2_119_245 set community 0:29155 ip community-list standard 2_132_246 permit 65000:2 0:132 0:246 ip community-list standard 2_164_198 permit 65000:2 0:164 0:198 route-map calculator permit 5774 match community 2_132_246 2_164_198 set community 0:32472 ip community-list standard 2_169_195 permit 65000:2 0:169 0:195 route-map calculator permit 5775 match community 2_169_195 set community 0:32955 ip community-list standard 2_14_207 permit 65000:2 0:14 0:207 ip community-list standard 2_18_161 permit 65000:2 0:18 0:161 ip community-list standard 2_21_138 permit 65000:2 0:21 0:138 ip community-list standard 2_23_126 permit 65000:2 0:23 0:126 ip community-list standard 2_42_69 permit 65000:2 0:42 0:69 ip community-list standard 2_46_63 permit 65000:2 0:46 0:63 route-map calculator permit 5776 match community 2_14_207 2_18_161 2_21_138 2_23_126 2_42_69 set community 0:2898 route-map calculator permit 5777 match community 2_46_63 set community 0:2898 ip community-list standard 2_69_249 permit 65000:2 0:69 0:249 ip community-list standard 2_83_207 permit 65000:2 0:83 0:207 route-map calculator permit 5778 match community 2_69_249 2_83_207 set community 0:17181 ip community-list standard 2_84_188 permit 65000:2 0:84 0:188 ip community-list standard 2_94_168 permit 65000:2 0:94 0:168 ip community-list standard 2_112_141 permit 65000:2 0:112 0:141 route-map calculator permit 5779 match community 2_84_188 2_94_168 2_112_141 set community 0:15792 ip community-list standard 2_177_233 permit 65000:2 0:177 0:233 route-map calculator permit 5780 match community 2_177_233 set community 0:41241 ip community-list standard 2_61_145 permit 65000:2 0:61 0:145 route-map calculator permit 5781 match community 2_61_145 set community 0:8845 ip community-list standard 2_177_194 permit 65000:2 0:177 0:194 route-map calculator permit 5782 match community 2_177_194 set community 0:34338 ip community-list standard 1_1_214 permit 65000:1 0:1 0:214 ip community-list standard 2_1_215 permit 65000:2 0:1 0:215 ip community-list standard 1_2_213 permit 65000:1 0:2 0:213 ip community-list standard 1_3_212 permit 65000:1 0:3 0:212 ip community-list standard 1_4_211 permit 65000:1 0:4 0:211 ip community-list standard 2_5_43 permit 65000:2 0:5 0:43 ip community-list standard 1_5_210 permit 65000:1 0:5 0:210 ip community-list standard 1_6_209 permit 65000:1 0:6 0:209 ip community-list standard 1_7_208 permit 65000:1 0:7 0:208 ip community-list standard 1_8_207 permit 65000:1 0:8 0:207 ip community-list standard 1_9_206 permit 65000:1 0:9 0:206 ip community-list standard 1_10_205 permit 65000:1 0:10 0:205 ip community-list standard 1_11_204 permit 65000:1 0:11 0:204 ip community-list standard 1_12_203 permit 65000:1 0:12 0:203 ip community-list standard 1_13_202 permit 65000:1 0:13 0:202 ip community-list standard 1_14_201 permit 65000:1 0:14 0:201 ip community-list standard 1_15_200 permit 65000:1 0:15 0:200 ip community-list standard 1_16_199 permit 65000:1 0:16 0:199 ip community-list standard 1_17_198 permit 65000:1 0:17 0:198 ip community-list standard 1_18_197 permit 65000:1 0:18 0:197 ip community-list standard 1_19_196 permit 65000:1 0:19 0:196 ip community-list standard 1_20_195 permit 65000:1 0:20 0:195 ip community-list standard 1_21_194 permit 65000:1 0:21 0:194 ip community-list standard 1_22_193 permit 65000:1 0:22 0:193 ip community-list standard 1_23_192 permit 65000:1 0:23 0:192 ip community-list standard 1_24_191 permit 65000:1 0:24 0:191 ip community-list standard 1_25_190 permit 65000:1 0:25 0:190 ip community-list standard 1_26_189 permit 65000:1 0:26 0:189 ip community-list standard 1_27_188 permit 65000:1 0:27 0:188 ip community-list standard 1_28_187 permit 65000:1 0:28 0:187 ip community-list standard 1_29_186 permit 65000:1 0:29 0:186 ip community-list standard 1_30_185 permit 65000:1 0:30 0:185 ip community-list standard 1_31_184 permit 65000:1 0:31 0:184 ip community-list standard 1_32_183 permit 65000:1 0:32 0:183 ip community-list standard 1_33_182 permit 65000:1 0:33 0:182 ip community-list standard 1_34_181 permit 65000:1 0:34 0:181 ip community-list standard 1_35_180 permit 65000:1 0:35 0:180 ip community-list standard 1_36_179 permit 65000:1 0:36 0:179 ip community-list standard 1_37_178 permit 65000:1 0:37 0:178 ip community-list standard 1_38_177 permit 65000:1 0:38 0:177 ip community-list standard 1_39_176 permit 65000:1 0:39 0:176 ip community-list standard 1_40_175 permit 65000:1 0:40 0:175 ip community-list standard 1_41_174 permit 65000:1 0:41 0:174 ip community-list standard 1_42_173 permit 65000:1 0:42 0:173 ip community-list standard 1_43_172 permit 65000:1 0:43 0:172 ip community-list standard 1_44_171 permit 65000:1 0:44 0:171 ip community-list standard 1_45_170 permit 65000:1 0:45 0:170 ip community-list standard 1_46_169 permit 65000:1 0:46 0:169 ip community-list standard 1_47_168 permit 65000:1 0:47 0:168 ip community-list standard 1_48_167 permit 65000:1 0:48 0:167 ip community-list standard 1_49_166 permit 65000:1 0:49 0:166 ip community-list standard 1_50_165 permit 65000:1 0:50 0:165 ip community-list standard 1_51_164 permit 65000:1 0:51 0:164 ip community-list standard 1_52_163 permit 65000:1 0:52 0:163 ip community-list standard 1_53_162 permit 65000:1 0:53 0:162 ip community-list standard 1_54_161 permit 65000:1 0:54 0:161 ip community-list standard 1_55_160 permit 65000:1 0:55 0:160 ip community-list standard 1_56_159 permit 65000:1 0:56 0:159 ip community-list standard 1_57_158 permit 65000:1 0:57 0:158 ip community-list standard 1_58_157 permit 65000:1 0:58 0:157 ip community-list standard 1_59_156 permit 65000:1 0:59 0:156 ip community-list standard 1_60_155 permit 65000:1 0:60 0:155 ip community-list standard 1_61_154 permit 65000:1 0:61 0:154 ip community-list standard 1_62_153 permit 65000:1 0:62 0:153 ip community-list standard 1_63_152 permit 65000:1 0:63 0:152 ip community-list standard 1_64_151 permit 65000:1 0:64 0:151 ip community-list standard 1_65_150 permit 65000:1 0:65 0:150 ip community-list standard 1_66_149 permit 65000:1 0:66 0:149 ip community-list standard 1_67_148 permit 65000:1 0:67 0:148 ip community-list standard 1_68_147 permit 65000:1 0:68 0:147 ip community-list standard 1_69_146 permit 65000:1 0:69 0:146 ip community-list standard 1_70_145 permit 65000:1 0:70 0:145 ip community-list standard 1_71_144 permit 65000:1 0:71 0:144 ip community-list standard 1_72_143 permit 65000:1 0:72 0:143 ip community-list standard 1_73_142 permit 65000:1 0:73 0:142 ip community-list standard 1_74_141 permit 65000:1 0:74 0:141 ip community-list standard 1_75_140 permit 65000:1 0:75 0:140 ip community-list standard 1_76_139 permit 65000:1 0:76 0:139 ip community-list standard 1_77_138 permit 65000:1 0:77 0:138 ip community-list standard 1_78_137 permit 65000:1 0:78 0:137 ip community-list standard 1_79_136 permit 65000:1 0:79 0:136 ip community-list standard 1_80_135 permit 65000:1 0:80 0:135 ip community-list standard 1_81_134 permit 65000:1 0:81 0:134 ip community-list standard 1_82_133 permit 65000:1 0:82 0:133 ip community-list standard 1_83_132 permit 65000:1 0:83 0:132 ip community-list standard 1_84_131 permit 65000:1 0:84 0:131 ip community-list standard 1_85_130 permit 65000:1 0:85 0:130 ip community-list standard 1_86_129 permit 65000:1 0:86 0:129 ip community-list standard 1_87_128 permit 65000:1 0:87 0:128 ip community-list standard 1_88_127 permit 65000:1 0:88 0:127 ip community-list standard 1_89_126 permit 65000:1 0:89 0:126 ip community-list standard 1_90_125 permit 65000:1 0:90 0:125 ip community-list standard 1_91_124 permit 65000:1 0:91 0:124 ip community-list standard 1_92_123 permit 65000:1 0:92 0:123 ip community-list standard 1_93_122 permit 65000:1 0:93 0:122 ip community-list standard 1_94_121 permit 65000:1 0:94 0:121 ip community-list standard 1_95_120 permit 65000:1 0:95 0:120 ip community-list standard 1_96_119 permit 65000:1 0:96 0:119 ip community-list standard 1_97_118 permit 65000:1 0:97 0:118 ip community-list standard 1_98_117 permit 65000:1 0:98 0:117 ip community-list standard 1_99_116 permit 65000:1 0:99 0:116 ip community-list standard 1_100_115 permit 65000:1 0:100 0:115 ip community-list standard 1_101_114 permit 65000:1 0:101 0:114 ip community-list standard 1_102_113 permit 65000:1 0:102 0:113 ip community-list standard 1_103_112 permit 65000:1 0:103 0:112 ip community-list standard 1_104_111 permit 65000:1 0:104 0:111 ip community-list standard 1_105_110 permit 65000:1 0:105 0:110 ip community-list standard 1_106_109 permit 65000:1 0:106 0:109 ip community-list standard 1_107_108 permit 65000:1 0:107 0:108 ip community-list expanded c215 permit 1 ^65000:4_0:215_0:1$ ip community-list expanded c215 permit 2 ^65000:3_0:216_0:1$ ip community-list expanded c215 permit 3 ^65000:3_0:217_0:2$ ip community-list expanded c215 permit 4 ^65000:3_0:218_0:3$ ip community-list expanded c215 permit 5 ^65000:3_0:219_0:4$ ip community-list expanded c215 permit 6 ^65000:3_0:220_0:5$ ip community-list expanded c215 permit 7 ^65000:3_0:221_0:6$ ip community-list expanded c215 permit 8 ^65000:3_0:222_0:7$ ip community-list expanded c215 permit 9 ^65000:3_0:223_0:8$ ip community-list expanded c215 permit 10 ^65000:3_0:224_0:9$ ip community-list expanded c215 permit 11 ^65000:3_0:225_0:10$ ip community-list expanded c215 permit 12 ^65000:3_0:226_0:11$ ip community-list expanded c215 permit 13 ^65000:3_0:227_0:12$ ip community-list expanded c215 permit 14 ^65000:3_0:228_0:13$ ip community-list expanded c215 permit 15 ^65000:3_0:229_0:14$ ip community-list expanded c215 permit 16 ^65000:3_0:230_0:15$ ip community-list expanded c215 permit 17 ^65000:3_0:231_0:16$ ip community-list expanded c215 permit 18 ^65000:3_0:232_0:17$ ip community-list expanded c215 permit 19 ^65000:3_0:233_0:18$ ip community-list expanded c215 permit 20 ^65000:3_0:234_0:19$ ip community-list expanded c215 permit 21 ^65000:3_0:235_0:20$ ip community-list expanded c215 permit 22 ^65000:3_0:236_0:21$ ip community-list expanded c215 permit 23 ^65000:3_0:237_0:22$ ip community-list expanded c215 permit 24 ^65000:3_0:238_0:23$ ip community-list expanded c215 permit 25 ^65000:3_0:239_0:24$ ip community-list expanded c215 permit 26 ^65000:3_0:240_0:25$ ip community-list expanded c215 permit 27 ^65000:3_0:241_0:26$ ip community-list expanded c215 permit 28 ^65000:3_0:242_0:27$ ip community-list expanded c215 permit 29 ^65000:3_0:243_0:28$ ip community-list expanded c215 permit 30 ^65000:3_0:244_0:29$ ip community-list expanded c215 permit 31 ^65000:3_0:245_0:30$ ip community-list expanded c215 permit 32 ^65000:3_0:246_0:31$ ip community-list expanded c215 permit 33 ^65000:3_0:247_0:32$ ip community-list expanded c215 permit 34 ^65000:3_0:248_0:33$ ip community-list expanded c215 permit 35 ^65000:3_0:249_0:34$ ip community-list expanded c215 permit 36 ^65000:3_0:250_0:35$ ip community-list expanded c215 permit 37 ^65000:3_0:251_0:36$ ip community-list expanded c215 permit 38 ^65000:3_0:252_0:37$ ip community-list expanded c215 permit 39 ^65000:3_0:253_0:38$ ip community-list expanded c215 permit 40 ^65000:3_0:254_0:39$ ip community-list expanded c215 permit 41 ^65000:3_0:255_0:40$ ip community-list expanded c215 permit 42 ^65000:3_0:256_0:41$ route-map calculator permit 5783 match community 1_1_214 2_1_215 1_2_213 1_3_212 1_4_211 set community 0:215 route-map calculator permit 5784 match community 2_5_43 1_5_210 1_6_209 1_7_208 1_8_207 set community 0:215 route-map calculator permit 5785 match community 1_9_206 1_10_205 1_11_204 1_12_203 1_13_202 set community 0:215 route-map calculator permit 5786 match community 1_14_201 1_15_200 1_16_199 1_17_198 1_18_197 set community 0:215 route-map calculator permit 5787 match community 1_19_196 1_20_195 1_21_194 1_22_193 1_23_192 set community 0:215 route-map calculator permit 5788 match community 1_24_191 1_25_190 1_26_189 1_27_188 1_28_187 set community 0:215 route-map calculator permit 5789 match community 1_29_186 1_30_185 1_31_184 1_32_183 1_33_182 set community 0:215 route-map calculator permit 5790 match community 1_34_181 1_35_180 1_36_179 1_37_178 1_38_177 set community 0:215 route-map calculator permit 5791 match community 1_39_176 1_40_175 1_41_174 1_42_173 1_43_172 set community 0:215 route-map calculator permit 5792 match community 1_44_171 1_45_170 1_46_169 1_47_168 1_48_167 set community 0:215 route-map calculator permit 5793 match community 1_49_166 1_50_165 1_51_164 1_52_163 1_53_162 set community 0:215 route-map calculator permit 5794 match community 1_54_161 1_55_160 1_56_159 1_57_158 1_58_157 set community 0:215 route-map calculator permit 5795 match community 1_59_156 1_60_155 1_61_154 1_62_153 1_63_152 set community 0:215 route-map calculator permit 5796 match community 1_64_151 1_65_150 1_66_149 1_67_148 1_68_147 set community 0:215 route-map calculator permit 5797 match community 1_69_146 1_70_145 1_71_144 1_72_143 1_73_142 set community 0:215 route-map calculator permit 5798 match community 1_74_141 1_75_140 1_76_139 1_77_138 1_78_137 set community 0:215 route-map calculator permit 5799 match community 1_79_136 1_80_135 1_81_134 1_82_133 1_83_132 set community 0:215 route-map calculator permit 5800 match community 1_84_131 1_85_130 1_86_129 1_87_128 1_88_127 set community 0:215 route-map calculator permit 5801 match community 1_89_126 1_90_125 1_91_124 1_92_123 1_93_122 set community 0:215 route-map calculator permit 5802 match community 1_94_121 1_95_120 1_96_119 1_97_118 1_98_117 set community 0:215 route-map calculator permit 5803 match community 1_99_116 1_100_115 1_101_114 1_102_113 1_103_112 set community 0:215 route-map calculator permit 5804 match community 1_104_111 1_105_110 1_106_109 1_107_108 c4_215_1 set community 0:215 route-map calculator permit 5805 match community c3_216_1 c3_217_2 c3_218_3 c3_219_4 c3_220_5 set community 0:215 route-map calculator permit 5806 match community c3_221_6 c3_222_7 c3_223_8 c3_224_9 c3_225_10 set community 0:215 route-map calculator permit 5807 match community c3_226_11 c3_227_12 c3_228_13 c3_229_14 c3_230_15 set community 0:215 route-map calculator permit 5808 match community c3_231_16 c3_232_17 c3_233_18 c3_234_19 c3_235_20 set community 0:215 route-map calculator permit 5809 match community c3_236_21 c3_237_22 c3_238_23 c3_239_24 c3_240_25 set community 0:215 route-map calculator permit 5810 match community c3_241_26 c3_242_27 c3_243_28 c3_244_29 c3_245_30 set community 0:215 route-map calculator permit 5811 match community c3_246_31 c3_247_32 c3_248_33 c3_249_34 c3_250_35 set community 0:215 route-map calculator permit 5812 match community c3_251_36 c3_252_37 c3_253_38 c3_254_39 c3_255_40 set community 0:215 route-map calculator permit 5813 match community c3_256_41 set community 0:215 ip community-list standard 2_137_150 permit 65000:2 0:137 0:150 route-map calculator permit 5814 match community 2_137_150 set community 0:20550 ip community-list standard 2_29_201 permit 65000:2 0:29 0:201 ip community-list standard 2_67_87 permit 65000:2 0:67 0:87 route-map calculator permit 5815 match community 2_29_201 2_67_87 set community 0:5829 ip community-list standard 2_47_159 permit 65000:2 0:47 0:159 ip community-list standard 2_53_141 permit 65000:2 0:53 0:141 route-map calculator permit 5816 match community 2_47_159 2_53_141 set community 0:7473 ip community-list standard 2_49_234 permit 65000:2 0:49 0:234 ip community-list standard 2_63_182 permit 65000:2 0:63 0:182 ip community-list standard 2_78_147 permit 65000:2 0:78 0:147 ip community-list standard 2_91_126 permit 65000:2 0:91 0:126 ip community-list standard 2_98_117 permit 65000:2 0:98 0:117 route-map calculator permit 5817 match community 2_49_234 2_63_182 2_78_147 2_91_126 2_98_117 set community 0:11466 ip community-list standard 2_9_157 permit 65000:2 0:9 0:157 route-map calculator permit 5818 match community 2_9_157 set community 0:1413 ip community-list standard 2_88_233 permit 65000:2 0:88 0:233 route-map calculator permit 5819 match community 2_88_233 set community 0:20504 ip community-list standard 2_136_215 permit 65000:2 0:136 0:215 ip community-list standard 2_170_172 permit 65000:2 0:170 0:172 route-map calculator permit 5820 match community 2_136_215 2_170_172 set community 0:29240 ip community-list standard 2_135_193 permit 65000:2 0:135 0:193 route-map calculator permit 5821 match community 2_135_193 set community 0:26055 ip community-list standard 2_117_149 permit 65000:2 0:117 0:149 route-map calculator permit 5822 match community 2_117_149 set community 0:17433 ip community-list standard 2_187_255 permit 65000:2 0:187 0:255 route-map calculator permit 5823 match community 2_187_255 set community 0:47685 ip community-list standard 2_87_137 permit 65000:2 0:87 0:137 route-map calculator permit 5824 match community 2_87_137 set community 0:11919 ip community-list standard 2_75_235 permit 65000:2 0:75 0:235 ip community-list standard 2_125_141 permit 65000:2 0:125 0:141 route-map calculator permit 5825 match community 2_75_235 2_125_141 set community 0:17625 ip community-list standard 2_23_69 permit 65000:2 0:23 0:69 route-map calculator permit 5826 match community 2_23_69 set community 0:1587 ip community-list standard 2_50_183 permit 65000:2 0:50 0:183 ip community-list standard 2_61_150 permit 65000:2 0:61 0:150 ip community-list standard 2_75_122 permit 65000:2 0:75 0:122 route-map calculator permit 5827 match community 2_50_183 2_61_150 2_75_122 set community 0:9150 ip community-list standard 2_112_256 permit 65000:2 0:112 0:256 ip community-list standard 2_128_224 permit 65000:2 0:128 0:224 route-map calculator permit 5828 match community 2_112_256 2_128_224 set community 0:28672 ip community-list standard 2_13_177 permit 65000:2 0:13 0:177 ip community-list standard 2_39_59 permit 65000:2 0:39 0:59 route-map calculator permit 5829 match community 2_13_177 2_39_59 set community 0:2301 ip community-list standard 2_215_252 permit 65000:2 0:215 0:252 route-map calculator permit 5830 match community 2_215_252 set community 0:54180 ip community-list standard 2_149_224 permit 65000:2 0:149 0:224 route-map calculator permit 5831 match community 2_149_224 set community 0:33376 ip community-list standard 2_145_247 permit 65000:2 0:145 0:247 route-map calculator permit 5832 match community 2_145_247 set community 0:35815 ip community-list standard 2_36_213 permit 65000:2 0:36 0:213 ip community-list standard 2_54_142 permit 65000:2 0:54 0:142 ip community-list standard 2_71_108 permit 65000:2 0:71 0:108 route-map calculator permit 5833 match community 2_36_213 2_54_142 2_71_108 set community 0:7668 ip community-list standard 2_33_149 permit 65000:2 0:33 0:149 route-map calculator permit 5834 match community 2_33_149 set community 0:4917 ip community-list standard 2_139_236 permit 65000:2 0:139 0:236 route-map calculator permit 5835 match community 2_139_236 set community 0:32804 ip community-list standard 2_20_234 permit 65000:2 0:20 0:234 ip community-list standard 2_24_195 permit 65000:2 0:24 0:195 ip community-list standard 2_26_180 permit 65000:2 0:26 0:180 ip community-list standard 2_30_156 permit 65000:2 0:30 0:156 ip community-list standard 2_36_130 permit 65000:2 0:36 0:130 ip community-list standard 2_39_120 permit 65000:2 0:39 0:120 ip community-list standard 2_40_117 permit 65000:2 0:40 0:117 ip community-list standard 2_45_104 permit 65000:2 0:45 0:104 ip community-list standard 2_52_90 permit 65000:2 0:52 0:90 ip community-list standard 2_60_78 permit 65000:2 0:60 0:78 ip community-list standard 2_65_72 permit 65000:2 0:65 0:72 route-map calculator permit 5836 match community 2_20_234 2_24_195 2_26_180 2_30_156 2_36_130 set community 0:4680 route-map calculator permit 5837 match community 2_39_120 2_40_117 2_45_104 2_52_90 2_60_78 set community 0:4680 route-map calculator permit 5838 match community 2_65_72 set community 0:4680 ip community-list standard 2_31_181 permit 65000:2 0:31 0:181 route-map calculator permit 5839 match community 2_31_181 set community 0:5611 ip community-list standard 2_197_243 permit 65000:2 0:197 0:243 route-map calculator permit 5840 match community 2_197_243 set community 0:47871 ip community-list standard 2_217_253 permit 65000:2 0:217 0:253 route-map calculator permit 5841 match community 2_217_253 set community 0:54901 ip community-list standard 2_71_217 permit 65000:2 0:71 0:217 route-map calculator permit 5842 match community 2_71_217 set community 0:15407 ip community-list standard 2_18_250 permit 65000:2 0:18 0:250 ip community-list standard 2_20_225 permit 65000:2 0:20 0:225 ip community-list standard 2_25_180 permit 65000:2 0:25 0:180 ip community-list standard 2_30_150 permit 65000:2 0:30 0:150 ip community-list standard 2_36_125 permit 65000:2 0:36 0:125 ip community-list standard 2_45_100 permit 65000:2 0:45 0:100 ip community-list standard 2_50_90 permit 65000:2 0:50 0:90 ip community-list standard 2_60_75 permit 65000:2 0:60 0:75 route-map calculator permit 5843 match community 2_18_250 2_20_225 2_25_180 2_30_150 2_36_125 set community 0:4500 route-map calculator permit 5844 match community 2_45_100 2_50_90 2_60_75 set community 0:4500 ip community-list standard 2_180_191 permit 65000:2 0:180 0:191 route-map calculator permit 5845 match community 2_180_191 set community 0:34380 ip community-list standard 2_79_194 permit 65000:2 0:79 0:194 ip community-list standard 2_97_158 permit 65000:2 0:97 0:158 route-map calculator permit 5846 match community 2_79_194 2_97_158 set community 0:15326 ip community-list standard 2_168_202 permit 65000:2 0:168 0:202 route-map calculator permit 5847 match community 2_168_202 set community 0:33936 ip community-list standard 2_154_215 permit 65000:2 0:154 0:215 route-map calculator permit 5848 match community 2_154_215 set community 0:33110 ip community-list standard 2_55_71 permit 65000:2 0:55 0:71 route-map calculator permit 5849 match community 2_55_71 set community 0:3905 ip community-list standard 2_86_139 permit 65000:2 0:86 0:139 route-map calculator permit 5850 match community 2_86_139 set community 0:11954 ip community-list standard 2_161_184 permit 65000:2 0:161 0:184 route-map calculator permit 5851 match community 2_161_184 set community 0:29624 ip community-list standard 2_209_237 permit 65000:2 0:209 0:237 route-map calculator permit 5852 match community 2_209_237 set community 0:49533 ip community-list standard 2_65_217 permit 65000:2 0:65 0:217 ip community-list standard 2_91_155 permit 65000:2 0:91 0:155 route-map calculator permit 5853 match community 2_65_217 2_91_155 set community 0:14105 ip community-list standard 2_88_163 permit 65000:2 0:88 0:163 route-map calculator permit 5854 match community 2_88_163 set community 0:14344 ip community-list standard 2_37_209 permit 65000:2 0:37 0:209 route-map calculator permit 5855 match community 2_37_209 set community 0:7733 ip community-list standard 2_142_249 permit 65000:2 0:142 0:249 ip community-list standard 2_166_213 permit 65000:2 0:166 0:213 route-map calculator permit 5856 match community 2_142_249 2_166_213 set community 0:35358 ip community-list standard 2_83_256 permit 65000:2 0:83 0:256 ip community-list standard 2_128_166 permit 65000:2 0:128 0:166 route-map calculator permit 5857 match community 2_83_256 2_128_166 set community 0:21248 ip community-list standard 2_19_94 permit 65000:2 0:19 0:94 ip community-list standard 2_38_47 permit 65000:2 0:38 0:47 route-map calculator permit 5858 match community 2_19_94 2_38_47 set community 0:1786 ip community-list standard 2_35_223 permit 65000:2 0:35 0:223 route-map calculator permit 5859 match community 2_35_223 set community 0:7805 ip community-list standard 2_133_235 permit 65000:2 0:133 0:235 route-map calculator permit 5860 match community 2_133_235 set community 0:31255 ip community-list standard 2_5_125 permit 65000:2 0:5 0:125 ip community-list standard 2_25_25 permit 65000:2 0:25 0:25 route-map calculator permit 5861 match community 2_5_125 2_25_25 set community 0:625 ip community-list standard 2_117_223 permit 65000:2 0:117 0:223 route-map calculator permit 5862 match community 2_117_223 set community 0:26091 ip community-list standard 2_101_119 permit 65000:2 0:101 0:119 route-map calculator permit 5863 match community 2_101_119 set community 0:12019 ip community-list standard 2_123_171 permit 65000:2 0:123 0:171 route-map calculator permit 5864 match community 2_123_171 set community 0:21033 ip community-list standard 2_6_244 permit 65000:2 0:6 0:244 ip community-list standard 2_8_183 permit 65000:2 0:8 0:183 ip community-list standard 2_12_122 permit 65000:2 0:12 0:122 ip community-list standard 2_24_61 permit 65000:2 0:24 0:61 route-map calculator permit 5865 match community 2_6_244 2_8_183 2_12_122 2_24_61 set community 0:1464 ip community-list standard 2_147_179 permit 65000:2 0:147 0:179 route-map calculator permit 5866 match community 2_147_179 set community 0:26313 ip community-list standard 2_60_206 permit 65000:2 0:60 0:206 ip community-list standard 2_103_120 permit 65000:2 0:103 0:120 route-map calculator permit 5867 match community 2_60_206 2_103_120 set community 0:12360 ip community-list standard 2_178_200 permit 65000:2 0:178 0:200 route-map calculator permit 5868 match community 2_178_200 set community 0:35600 ip community-list standard 2_37_134 permit 65000:2 0:37 0:134 ip community-list standard 2_67_74 permit 65000:2 0:67 0:74 route-map calculator permit 5869 match community 2_37_134 2_67_74 set community 0:4958 ip community-list standard 2_178_228 permit 65000:2 0:178 0:228 route-map calculator permit 5870 match community 2_178_228 set community 0:40584 ip community-list standard 2_42_161 permit 65000:2 0:42 0:161 ip community-list standard 2_46_147 permit 65000:2 0:46 0:147 ip community-list standard 2_49_138 permit 65000:2 0:49 0:138 ip community-list standard 2_69_98 permit 65000:2 0:69 0:98 route-map calculator permit 5871 match community 2_42_161 2_46_147 2_49_138 2_69_98 set community 0:6762 ip community-list standard 2_31_254 permit 65000:2 0:31 0:254 ip community-list standard 2_62_127 permit 65000:2 0:62 0:127 route-map calculator permit 5872 match community 2_31_254 2_62_127 set community 0:7874 ip community-list standard 2_92_227 permit 65000:2 0:92 0:227 route-map calculator permit 5873 match community 2_92_227 set community 0:20884 ip community-list standard 2_219_226 permit 65000:2 0:219 0:226 route-map calculator permit 5874 match community 2_219_226 set community 0:49494 ip community-list standard 2_15_178 permit 65000:2 0:15 0:178 ip community-list standard 2_30_89 permit 65000:2 0:30 0:89 route-map calculator permit 5875 match community 2_15_178 2_30_89 set community 0:2670 ip community-list standard 2_109_121 permit 65000:2 0:109 0:121 route-map calculator permit 5876 match community 2_109_121 set community 0:13189 ip community-list standard 2_153_254 permit 65000:2 0:153 0:254 route-map calculator permit 5877 match community 2_153_254 set community 0:38862 ip community-list standard 2_77_185 permit 65000:2 0:77 0:185 route-map calculator permit 5878 match community 2_77_185 set community 0:14245 ip community-list standard 2_109_149 permit 65000:2 0:109 0:149 route-map calculator permit 5879 match community 2_109_149 set community 0:16241 ip community-list standard 2_76_218 permit 65000:2 0:76 0:218 ip community-list standard 2_109_152 permit 65000:2 0:109 0:152 route-map calculator permit 5880 match community 2_76_218 2_109_152 set community 0:16568 ip community-list standard 2_145_193 permit 65000:2 0:145 0:193 route-map calculator permit 5881 match community 2_145_193 set community 0:27985 ip community-list standard 2_8_199 permit 65000:2 0:8 0:199 route-map calculator permit 5882 match community 2_8_199 set community 0:1592 ip community-list standard 2_245_255 permit 65000:2 0:245 0:255 route-map calculator permit 5883 match community 2_245_255 set community 0:62475 ip community-list standard 2_44_253 permit 65000:2 0:44 0:253 ip community-list standard 2_46_242 permit 65000:2 0:46 0:242 ip community-list standard 2_92_121 permit 65000:2 0:92 0:121 route-map calculator permit 5884 match community 2_44_253 2_46_242 2_92_121 set community 0:11132 ip community-list standard 2_89_212 permit 65000:2 0:89 0:212 ip community-list standard 2_106_178 permit 65000:2 0:106 0:178 route-map calculator permit 5885 match community 2_89_212 2_106_178 set community 0:18868 ip community-list standard 2_147_253 permit 65000:2 0:147 0:253 ip community-list standard 2_161_231 permit 65000:2 0:161 0:231 route-map calculator permit 5886 match community 2_147_253 2_161_231 set community 0:37191 ip community-list standard 2_176_218 permit 65000:2 0:176 0:218 route-map calculator permit 5887 match community 2_176_218 set community 0:38368 ip community-list standard 2_20_131 permit 65000:2 0:20 0:131 route-map calculator permit 5888 match community 2_20_131 set community 0:2620 ip community-list standard 2_84_255 permit 65000:2 0:84 0:255 ip community-list standard 2_85_252 permit 65000:2 0:85 0:252 ip community-list standard 2_90_238 permit 65000:2 0:90 0:238 ip community-list standard 2_102_210 permit 65000:2 0:102 0:210 ip community-list standard 2_105_204 permit 65000:2 0:105 0:204 ip community-list standard 2_119_180 permit 65000:2 0:119 0:180 ip community-list standard 2_126_170 permit 65000:2 0:126 0:170 ip community-list standard 2_140_153 permit 65000:2 0:140 0:153 route-map calculator permit 5889 match community 2_84_255 2_85_252 2_90_238 2_102_210 2_105_204 set community 0:21420 route-map calculator permit 5890 match community 2_119_180 2_126_170 2_140_153 set community 0:21420 ip community-list standard 2_2_143 permit 65000:2 0:2 0:143 ip community-list standard 2_11_26 permit 65000:2 0:11 0:26 ip community-list standard 2_13_22 permit 65000:2 0:13 0:22 ip community-list standard 1_30_256 permit 65000:1 0:30 0:256 ip community-list standard 1_31_255 permit 65000:1 0:31 0:255 ip community-list standard 1_32_254 permit 65000:1 0:32 0:254 ip community-list standard 1_33_253 permit 65000:1 0:33 0:253 ip community-list standard 1_34_252 permit 65000:1 0:34 0:252 ip community-list standard 1_35_251 permit 65000:1 0:35 0:251 ip community-list standard 1_36_250 permit 65000:1 0:36 0:250 ip community-list standard 1_37_249 permit 65000:1 0:37 0:249 ip community-list standard 1_38_248 permit 65000:1 0:38 0:248 ip community-list standard 1_39_247 permit 65000:1 0:39 0:247 ip community-list standard 1_40_246 permit 65000:1 0:40 0:246 ip community-list standard 1_41_245 permit 65000:1 0:41 0:245 ip community-list standard 1_42_244 permit 65000:1 0:42 0:244 ip community-list standard 1_43_243 permit 65000:1 0:43 0:243 ip community-list standard 1_44_242 permit 65000:1 0:44 0:242 ip community-list standard 1_45_241 permit 65000:1 0:45 0:241 ip community-list standard 1_46_240 permit 65000:1 0:46 0:240 ip community-list standard 1_47_239 permit 65000:1 0:47 0:239 ip community-list standard 1_48_238 permit 65000:1 0:48 0:238 ip community-list standard 1_49_237 permit 65000:1 0:49 0:237 ip community-list standard 1_50_236 permit 65000:1 0:50 0:236 ip community-list standard 1_51_235 permit 65000:1 0:51 0:235 ip community-list standard 1_52_234 permit 65000:1 0:52 0:234 ip community-list standard 1_53_233 permit 65000:1 0:53 0:233 ip community-list standard 1_54_232 permit 65000:1 0:54 0:232 ip community-list standard 1_55_231 permit 65000:1 0:55 0:231 ip community-list standard 1_56_230 permit 65000:1 0:56 0:230 ip community-list standard 1_57_229 permit 65000:1 0:57 0:229 ip community-list standard 1_58_228 permit 65000:1 0:58 0:228 ip community-list standard 1_59_227 permit 65000:1 0:59 0:227 ip community-list standard 1_60_226 permit 65000:1 0:60 0:226 ip community-list standard 1_61_225 permit 65000:1 0:61 0:225 ip community-list standard 1_62_224 permit 65000:1 0:62 0:224 ip community-list standard 1_63_223 permit 65000:1 0:63 0:223 ip community-list standard 1_64_222 permit 65000:1 0:64 0:222 ip community-list standard 1_65_221 permit 65000:1 0:65 0:221 ip community-list standard 1_66_220 permit 65000:1 0:66 0:220 ip community-list standard 1_67_219 permit 65000:1 0:67 0:219 ip community-list standard 1_68_218 permit 65000:1 0:68 0:218 ip community-list standard 1_69_217 permit 65000:1 0:69 0:217 ip community-list standard 1_70_216 permit 65000:1 0:70 0:216 ip community-list standard 1_71_215 permit 65000:1 0:71 0:215 ip community-list standard 1_72_214 permit 65000:1 0:72 0:214 ip community-list standard 1_73_213 permit 65000:1 0:73 0:213 ip community-list standard 1_74_212 permit 65000:1 0:74 0:212 ip community-list standard 1_75_211 permit 65000:1 0:75 0:211 ip community-list standard 1_76_210 permit 65000:1 0:76 0:210 ip community-list standard 1_77_209 permit 65000:1 0:77 0:209 ip community-list standard 1_78_208 permit 65000:1 0:78 0:208 ip community-list standard 1_79_207 permit 65000:1 0:79 0:207 ip community-list standard 1_80_206 permit 65000:1 0:80 0:206 ip community-list standard 1_81_205 permit 65000:1 0:81 0:205 ip community-list standard 1_82_204 permit 65000:1 0:82 0:204 ip community-list standard 1_83_203 permit 65000:1 0:83 0:203 ip community-list standard 1_84_202 permit 65000:1 0:84 0:202 ip community-list standard 1_85_201 permit 65000:1 0:85 0:201 ip community-list standard 1_86_200 permit 65000:1 0:86 0:200 ip community-list standard 1_87_199 permit 65000:1 0:87 0:199 ip community-list standard 1_88_198 permit 65000:1 0:88 0:198 ip community-list standard 1_89_197 permit 65000:1 0:89 0:197 ip community-list standard 1_90_196 permit 65000:1 0:90 0:196 ip community-list standard 1_91_195 permit 65000:1 0:91 0:195 ip community-list standard 1_92_194 permit 65000:1 0:92 0:194 ip community-list standard 1_93_193 permit 65000:1 0:93 0:193 ip community-list standard 1_94_192 permit 65000:1 0:94 0:192 ip community-list standard 1_95_191 permit 65000:1 0:95 0:191 ip community-list standard 1_96_190 permit 65000:1 0:96 0:190 ip community-list standard 1_97_189 permit 65000:1 0:97 0:189 ip community-list standard 1_98_188 permit 65000:1 0:98 0:188 ip community-list standard 1_99_187 permit 65000:1 0:99 0:187 ip community-list standard 1_100_186 permit 65000:1 0:100 0:186 ip community-list standard 1_101_185 permit 65000:1 0:101 0:185 ip community-list standard 1_102_184 permit 65000:1 0:102 0:184 ip community-list standard 1_103_183 permit 65000:1 0:103 0:183 ip community-list standard 1_104_182 permit 65000:1 0:104 0:182 ip community-list standard 1_105_181 permit 65000:1 0:105 0:181 ip community-list standard 1_106_180 permit 65000:1 0:106 0:180 ip community-list standard 1_107_179 permit 65000:1 0:107 0:179 ip community-list standard 1_108_178 permit 65000:1 0:108 0:178 ip community-list standard 1_109_177 permit 65000:1 0:109 0:177 ip community-list standard 1_110_176 permit 65000:1 0:110 0:176 ip community-list standard 1_111_175 permit 65000:1 0:111 0:175 ip community-list standard 1_112_174 permit 65000:1 0:112 0:174 ip community-list standard 1_113_173 permit 65000:1 0:113 0:173 ip community-list standard 1_114_172 permit 65000:1 0:114 0:172 ip community-list standard 1_115_171 permit 65000:1 0:115 0:171 ip community-list standard 1_116_170 permit 65000:1 0:116 0:170 ip community-list standard 1_117_169 permit 65000:1 0:117 0:169 ip community-list standard 1_118_168 permit 65000:1 0:118 0:168 ip community-list standard 1_119_167 permit 65000:1 0:119 0:167 ip community-list standard 1_120_166 permit 65000:1 0:120 0:166 ip community-list standard 1_121_165 permit 65000:1 0:121 0:165 ip community-list standard 1_122_164 permit 65000:1 0:122 0:164 ip community-list standard 1_123_163 permit 65000:1 0:123 0:163 ip community-list standard 1_124_162 permit 65000:1 0:124 0:162 ip community-list standard 1_125_161 permit 65000:1 0:125 0:161 ip community-list standard 1_126_160 permit 65000:1 0:126 0:160 ip community-list standard 1_127_159 permit 65000:1 0:127 0:159 ip community-list standard 1_128_158 permit 65000:1 0:128 0:158 ip community-list standard 1_129_157 permit 65000:1 0:129 0:157 ip community-list standard 1_130_156 permit 65000:1 0:130 0:156 ip community-list standard 1_131_155 permit 65000:1 0:131 0:155 ip community-list standard 1_132_154 permit 65000:1 0:132 0:154 ip community-list standard 1_133_153 permit 65000:1 0:133 0:153 ip community-list standard 1_134_152 permit 65000:1 0:134 0:152 ip community-list standard 1_135_151 permit 65000:1 0:135 0:151 ip community-list standard 1_136_150 permit 65000:1 0:136 0:150 ip community-list standard 1_137_149 permit 65000:1 0:137 0:149 ip community-list standard 1_138_148 permit 65000:1 0:138 0:148 ip community-list standard 1_139_147 permit 65000:1 0:139 0:147 ip community-list standard 1_140_146 permit 65000:1 0:140 0:146 ip community-list standard 1_141_145 permit 65000:1 0:141 0:145 ip community-list standard 1_142_144 permit 65000:1 0:142 0:144 ip community-list standard 1_143_143 permit 65000:1 0:143 0:143 route-map calculator permit 5891 match community 2_2_143 2_11_26 2_13_22 1_30_256 1_31_255 set community 0:286 route-map calculator permit 5892 match community 1_32_254 1_33_253 1_34_252 1_35_251 1_36_250 set community 0:286 route-map calculator permit 5893 match community 1_37_249 1_38_248 1_39_247 1_40_246 1_41_245 set community 0:286 route-map calculator permit 5894 match community 1_42_244 1_43_243 1_44_242 1_45_241 1_46_240 set community 0:286 route-map calculator permit 5895 match community 1_47_239 1_48_238 1_49_237 1_50_236 1_51_235 set community 0:286 route-map calculator permit 5896 match community 1_52_234 1_53_233 1_54_232 1_55_231 1_56_230 set community 0:286 route-map calculator permit 5897 match community 1_57_229 1_58_228 1_59_227 1_60_226 1_61_225 set community 0:286 route-map calculator permit 5898 match community 1_62_224 1_63_223 1_64_222 1_65_221 1_66_220 set community 0:286 route-map calculator permit 5899 match community 1_67_219 1_68_218 1_69_217 1_70_216 1_71_215 set community 0:286 route-map calculator permit 5900 match community 1_72_214 1_73_213 1_74_212 1_75_211 1_76_210 set community 0:286 route-map calculator permit 5901 match community 1_77_209 1_78_208 1_79_207 1_80_206 1_81_205 set community 0:286 route-map calculator permit 5902 match community 1_82_204 1_83_203 1_84_202 1_85_201 1_86_200 set community 0:286 route-map calculator permit 5903 match community 1_87_199 1_88_198 1_89_197 1_90_196 1_91_195 set community 0:286 route-map calculator permit 5904 match community 1_92_194 1_93_193 1_94_192 1_95_191 1_96_190 set community 0:286 route-map calculator permit 5905 match community 1_97_189 1_98_188 1_99_187 1_100_186 1_101_185 set community 0:286 route-map calculator permit 5906 match community 1_102_184 1_103_183 1_104_182 1_105_181 1_106_180 set community 0:286 route-map calculator permit 5907 match community 1_107_179 1_108_178 1_109_177 1_110_176 1_111_175 set community 0:286 route-map calculator permit 5908 match community 1_112_174 1_113_173 1_114_172 1_115_171 1_116_170 set community 0:286 route-map calculator permit 5909 match community 1_117_169 1_118_168 1_119_167 1_120_166 1_121_165 set community 0:286 route-map calculator permit 5910 match community 1_122_164 1_123_163 1_124_162 1_125_161 1_126_160 set community 0:286 route-map calculator permit 5911 match community 1_127_159 1_128_158 1_129_157 1_130_156 1_131_155 set community 0:286 route-map calculator permit 5912 match community 1_132_154 1_133_153 1_134_152 1_135_151 1_136_150 set community 0:286 route-map calculator permit 5913 match community 1_137_149 1_138_148 1_139_147 1_140_146 1_141_145 set community 0:286 route-map calculator permit 5914 match community 1_142_144 1_143_143 set community 0:286 ip community-list standard 2_113_235 permit 65000:2 0:113 0:235 route-map calculator permit 5915 match community 2_113_235 set community 0:26555 ip community-list standard 2_41_134 permit 65000:2 0:41 0:134 ip community-list standard 2_67_82 permit 65000:2 0:67 0:82 route-map calculator permit 5916 match community 2_41_134 2_67_82 set community 0:5494 ip community-list standard 2_29_82 permit 65000:2 0:29 0:82 ip community-list standard 2_41_58 permit 65000:2 0:41 0:58 route-map calculator permit 5917 match community 2_29_82 2_41_58 set community 0:2378 ip community-list standard 2_152_191 permit 65000:2 0:152 0:191 route-map calculator permit 5918 match community 2_152_191 set community 0:29032 ip community-list standard 2_121_201 permit 65000:2 0:121 0:201 route-map calculator permit 5919 match community 2_121_201 set community 0:24321 ip community-list standard 2_27_97 permit 65000:2 0:27 0:97 route-map calculator permit 5920 match community 2_27_97 set community 0:2619 ip community-list standard 2_123_191 permit 65000:2 0:123 0:191 route-map calculator permit 5921 match community 2_123_191 set community 0:23493 ip community-list standard 2_93_181 permit 65000:2 0:93 0:181 route-map calculator permit 5922 match community 2_93_181 set community 0:16833 ip community-list standard 2_124_197 permit 65000:2 0:124 0:197 route-map calculator permit 5923 match community 2_124_197 set community 0:24428 ip community-list standard 2_53_118 permit 65000:2 0:53 0:118 ip community-list standard 2_59_106 permit 65000:2 0:59 0:106 route-map calculator permit 5924 match community 2_53_118 2_59_106 set community 0:6254 ip community-list standard 2_143_159 permit 65000:2 0:143 0:159 route-map calculator permit 5925 match community 2_143_159 set community 0:22737 ip community-list standard 2_219_250 permit 65000:2 0:219 0:250 route-map calculator permit 5926 match community 2_219_250 set community 0:54750 ip community-list standard 2_160_253 permit 65000:2 0:160 0:253 ip community-list standard 2_176_230 permit 65000:2 0:176 0:230 ip community-list standard 2_184_220 permit 65000:2 0:184 0:220 route-map calculator permit 5927 match community 2_160_253 2_176_230 2_184_220 set community 0:40480 ip community-list standard 2_147_199 permit 65000:2 0:147 0:199 route-map calculator permit 5928 match community 2_147_199 set community 0:29253 ip community-list standard 2_43_107 permit 65000:2 0:43 0:107 route-map calculator permit 5929 match community 2_43_107 set community 0:4601 ip community-list standard 2_160_251 permit 65000:2 0:160 0:251 route-map calculator permit 5930 match community 2_160_251 set community 0:40160 ip community-list standard 2_62_194 permit 65000:2 0:62 0:194 ip community-list standard 2_97_124 permit 65000:2 0:97 0:124 route-map calculator permit 5931 match community 2_62_194 2_97_124 set community 0:12028 ip community-list standard 2_213_224 permit 65000:2 0:213 0:224 route-map calculator permit 5932 match community 2_213_224 set community 0:47712 ip community-list standard 2_34_185 permit 65000:2 0:34 0:185 ip community-list standard 2_37_170 permit 65000:2 0:37 0:170 ip community-list standard 2_74_85 permit 65000:2 0:74 0:85 route-map calculator permit 5933 match community 2_34_185 2_37_170 2_74_85 set community 0:6290 ip community-list standard 2_99_195 permit 65000:2 0:99 0:195 ip community-list standard 2_117_165 permit 65000:2 0:117 0:165 ip community-list standard 2_135_143 permit 65000:2 0:135 0:143 route-map calculator permit 5934 match community 2_99_195 2_117_165 2_135_143 set community 0:19305 ip community-list standard 2_57_193 permit 65000:2 0:57 0:193 route-map calculator permit 5935 match community 2_57_193 set community 0:11001 ip community-list standard 1_1_155 permit 65000:1 0:1 0:155 ip community-list standard 2_1_156 permit 65000:2 0:1 0:156 ip community-list standard 2_2_78 permit 65000:2 0:2 0:78 ip community-list standard 1_2_154 permit 65000:1 0:2 0:154 ip community-list standard 2_3_52 permit 65000:2 0:3 0:52 ip community-list standard 1_3_153 permit 65000:1 0:3 0:153 ip community-list standard 2_4_39 permit 65000:2 0:4 0:39 ip community-list standard 1_4_152 permit 65000:1 0:4 0:152 ip community-list standard 1_5_151 permit 65000:1 0:5 0:151 ip community-list standard 2_6_26 permit 65000:2 0:6 0:26 ip community-list standard 1_6_150 permit 65000:1 0:6 0:150 ip community-list standard 1_7_149 permit 65000:1 0:7 0:149 ip community-list standard 1_8_148 permit 65000:1 0:8 0:148 ip community-list standard 1_9_147 permit 65000:1 0:9 0:147 ip community-list standard 1_10_146 permit 65000:1 0:10 0:146 ip community-list standard 1_11_145 permit 65000:1 0:11 0:145 ip community-list standard 2_12_13 permit 65000:2 0:12 0:13 ip community-list standard 1_12_144 permit 65000:1 0:12 0:144 ip community-list standard 1_13_143 permit 65000:1 0:13 0:143 ip community-list standard 1_14_142 permit 65000:1 0:14 0:142 ip community-list standard 1_15_141 permit 65000:1 0:15 0:141 ip community-list standard 1_16_140 permit 65000:1 0:16 0:140 ip community-list standard 1_17_139 permit 65000:1 0:17 0:139 ip community-list standard 1_18_138 permit 65000:1 0:18 0:138 ip community-list standard 1_19_137 permit 65000:1 0:19 0:137 ip community-list standard 1_20_136 permit 65000:1 0:20 0:136 ip community-list standard 1_21_135 permit 65000:1 0:21 0:135 ip community-list standard 1_22_134 permit 65000:1 0:22 0:134 ip community-list standard 1_23_133 permit 65000:1 0:23 0:133 ip community-list standard 1_24_132 permit 65000:1 0:24 0:132 ip community-list standard 1_25_131 permit 65000:1 0:25 0:131 ip community-list standard 1_26_130 permit 65000:1 0:26 0:130 ip community-list standard 1_27_129 permit 65000:1 0:27 0:129 ip community-list standard 1_28_128 permit 65000:1 0:28 0:128 ip community-list standard 1_29_127 permit 65000:1 0:29 0:127 ip community-list standard 1_30_126 permit 65000:1 0:30 0:126 ip community-list standard 1_31_125 permit 65000:1 0:31 0:125 ip community-list standard 1_32_124 permit 65000:1 0:32 0:124 ip community-list standard 1_33_123 permit 65000:1 0:33 0:123 ip community-list standard 1_34_122 permit 65000:1 0:34 0:122 ip community-list standard 1_35_121 permit 65000:1 0:35 0:121 ip community-list standard 1_36_120 permit 65000:1 0:36 0:120 ip community-list standard 1_37_119 permit 65000:1 0:37 0:119 ip community-list standard 1_38_118 permit 65000:1 0:38 0:118 ip community-list standard 1_39_117 permit 65000:1 0:39 0:117 ip community-list standard 1_40_116 permit 65000:1 0:40 0:116 ip community-list standard 1_41_115 permit 65000:1 0:41 0:115 ip community-list standard 1_42_114 permit 65000:1 0:42 0:114 ip community-list standard 1_43_113 permit 65000:1 0:43 0:113 ip community-list standard 1_44_112 permit 65000:1 0:44 0:112 ip community-list standard 1_45_111 permit 65000:1 0:45 0:111 ip community-list standard 1_46_110 permit 65000:1 0:46 0:110 ip community-list standard 1_47_109 permit 65000:1 0:47 0:109 ip community-list standard 1_48_108 permit 65000:1 0:48 0:108 ip community-list standard 1_49_107 permit 65000:1 0:49 0:107 ip community-list standard 1_50_106 permit 65000:1 0:50 0:106 ip community-list standard 1_51_105 permit 65000:1 0:51 0:105 ip community-list standard 1_52_104 permit 65000:1 0:52 0:104 ip community-list standard 1_53_103 permit 65000:1 0:53 0:103 ip community-list standard 1_54_102 permit 65000:1 0:54 0:102 ip community-list standard 1_55_101 permit 65000:1 0:55 0:101 ip community-list standard 1_56_100 permit 65000:1 0:56 0:100 ip community-list standard 1_57_99 permit 65000:1 0:57 0:99 ip community-list standard 1_58_98 permit 65000:1 0:58 0:98 ip community-list standard 1_59_97 permit 65000:1 0:59 0:97 ip community-list standard 1_60_96 permit 65000:1 0:60 0:96 ip community-list standard 1_61_95 permit 65000:1 0:61 0:95 ip community-list standard 1_62_94 permit 65000:1 0:62 0:94 ip community-list standard 1_63_93 permit 65000:1 0:63 0:93 ip community-list standard 1_64_92 permit 65000:1 0:64 0:92 ip community-list standard 1_65_91 permit 65000:1 0:65 0:91 ip community-list standard 1_66_90 permit 65000:1 0:66 0:90 ip community-list standard 1_67_89 permit 65000:1 0:67 0:89 ip community-list standard 1_68_88 permit 65000:1 0:68 0:88 ip community-list standard 1_69_87 permit 65000:1 0:69 0:87 ip community-list standard 1_70_86 permit 65000:1 0:70 0:86 ip community-list standard 1_71_85 permit 65000:1 0:71 0:85 ip community-list standard 1_72_84 permit 65000:1 0:72 0:84 ip community-list standard 1_73_83 permit 65000:1 0:73 0:83 ip community-list standard 1_74_82 permit 65000:1 0:74 0:82 ip community-list standard 1_75_81 permit 65000:1 0:75 0:81 ip community-list standard 1_76_80 permit 65000:1 0:76 0:80 ip community-list standard 1_77_79 permit 65000:1 0:77 0:79 ip community-list standard 1_78_78 permit 65000:1 0:78 0:78 ip community-list expanded c156 permit 1 ^65000:4_0:156_0:1$ ip community-list expanded c156 permit 2 ^65000:3_0:157_0:1$ ip community-list expanded c156 permit 3 ^65000:3_0:158_0:2$ ip community-list expanded c156 permit 4 ^65000:3_0:159_0:3$ ip community-list expanded c156 permit 5 ^65000:3_0:160_0:4$ ip community-list expanded c156 permit 6 ^65000:3_0:161_0:5$ ip community-list expanded c156 permit 7 ^65000:3_0:162_0:6$ ip community-list expanded c156 permit 8 ^65000:3_0:163_0:7$ ip community-list expanded c156 permit 9 ^65000:3_0:164_0:8$ ip community-list expanded c156 permit 10 ^65000:3_0:165_0:9$ ip community-list expanded c156 permit 11 ^65000:3_0:166_0:10$ ip community-list expanded c156 permit 12 ^65000:3_0:167_0:11$ ip community-list expanded c156 permit 13 ^65000:3_0:168_0:12$ ip community-list expanded c156 permit 14 ^65000:3_0:169_0:13$ ip community-list expanded c156 permit 15 ^65000:3_0:170_0:14$ ip community-list expanded c156 permit 16 ^65000:3_0:171_0:15$ ip community-list expanded c156 permit 17 ^65000:3_0:172_0:16$ ip community-list expanded c156 permit 18 ^65000:3_0:173_0:17$ ip community-list expanded c156 permit 19 ^65000:3_0:174_0:18$ ip community-list expanded c156 permit 20 ^65000:3_0:175_0:19$ ip community-list expanded c156 permit 21 ^65000:3_0:176_0:20$ ip community-list expanded c156 permit 22 ^65000:3_0:177_0:21$ ip community-list expanded c156 permit 23 ^65000:3_0:178_0:22$ ip community-list expanded c156 permit 24 ^65000:3_0:179_0:23$ ip community-list expanded c156 permit 25 ^65000:3_0:180_0:24$ ip community-list expanded c156 permit 26 ^65000:3_0:181_0:25$ ip community-list expanded c156 permit 27 ^65000:3_0:182_0:26$ ip community-list expanded c156 permit 28 ^65000:3_0:183_0:27$ ip community-list expanded c156 permit 29 ^65000:3_0:184_0:28$ ip community-list expanded c156 permit 30 ^65000:3_0:185_0:29$ ip community-list expanded c156 permit 31 ^65000:3_0:186_0:30$ ip community-list expanded c156 permit 32 ^65000:3_0:187_0:31$ ip community-list expanded c156 permit 33 ^65000:3_0:188_0:32$ ip community-list expanded c156 permit 34 ^65000:3_0:189_0:33$ ip community-list expanded c156 permit 35 ^65000:3_0:190_0:34$ ip community-list expanded c156 permit 36 ^65000:3_0:191_0:35$ ip community-list expanded c156 permit 37 ^65000:3_0:192_0:36$ ip community-list expanded c156 permit 38 ^65000:3_0:193_0:37$ ip community-list expanded c156 permit 39 ^65000:3_0:194_0:38$ ip community-list expanded c156 permit 40 ^65000:3_0:195_0:39$ ip community-list expanded c156 permit 41 ^65000:3_0:196_0:40$ ip community-list expanded c156 permit 42 ^65000:3_0:197_0:41$ ip community-list expanded c156 permit 43 ^65000:3_0:198_0:42$ ip community-list expanded c156 permit 44 ^65000:3_0:199_0:43$ ip community-list expanded c156 permit 45 ^65000:3_0:200_0:44$ ip community-list expanded c156 permit 46 ^65000:3_0:201_0:45$ ip community-list expanded c156 permit 47 ^65000:3_0:202_0:46$ ip community-list expanded c156 permit 48 ^65000:3_0:203_0:47$ ip community-list expanded c156 permit 49 ^65000:3_0:204_0:48$ ip community-list expanded c156 permit 50 ^65000:3_0:205_0:49$ ip community-list expanded c156 permit 51 ^65000:3_0:206_0:50$ ip community-list expanded c156 permit 52 ^65000:3_0:207_0:51$ ip community-list expanded c156 permit 53 ^65000:3_0:208_0:52$ ip community-list expanded c156 permit 54 ^65000:3_0:209_0:53$ ip community-list expanded c156 permit 55 ^65000:3_0:210_0:54$ ip community-list expanded c156 permit 56 ^65000:3_0:211_0:55$ ip community-list expanded c156 permit 57 ^65000:3_0:212_0:56$ ip community-list expanded c156 permit 58 ^65000:3_0:213_0:57$ ip community-list expanded c156 permit 59 ^65000:3_0:214_0:58$ ip community-list expanded c156 permit 60 ^65000:3_0:215_0:59$ ip community-list expanded c156 permit 61 ^65000:3_0:216_0:60$ ip community-list expanded c156 permit 62 ^65000:3_0:217_0:61$ ip community-list expanded c156 permit 63 ^65000:3_0:218_0:62$ ip community-list expanded c156 permit 64 ^65000:3_0:219_0:63$ ip community-list expanded c156 permit 65 ^65000:3_0:220_0:64$ ip community-list expanded c156 permit 66 ^65000:3_0:221_0:65$ ip community-list expanded c156 permit 67 ^65000:3_0:222_0:66$ ip community-list expanded c156 permit 68 ^65000:3_0:223_0:67$ ip community-list expanded c156 permit 69 ^65000:3_0:224_0:68$ ip community-list expanded c156 permit 70 ^65000:3_0:225_0:69$ ip community-list expanded c156 permit 71 ^65000:3_0:226_0:70$ ip community-list expanded c156 permit 72 ^65000:3_0:227_0:71$ ip community-list expanded c156 permit 73 ^65000:3_0:228_0:72$ ip community-list expanded c156 permit 74 ^65000:3_0:229_0:73$ ip community-list expanded c156 permit 75 ^65000:3_0:230_0:74$ ip community-list expanded c156 permit 76 ^65000:3_0:231_0:75$ ip community-list expanded c156 permit 77 ^65000:3_0:232_0:76$ ip community-list expanded c156 permit 78 ^65000:3_0:233_0:77$ ip community-list expanded c156 permit 79 ^65000:3_0:234_0:78$ ip community-list expanded c156 permit 80 ^65000:3_0:235_0:79$ ip community-list expanded c156 permit 81 ^65000:3_0:236_0:80$ ip community-list expanded c156 permit 82 ^65000:3_0:237_0:81$ ip community-list expanded c156 permit 83 ^65000:3_0:238_0:82$ ip community-list expanded c156 permit 84 ^65000:3_0:239_0:83$ ip community-list expanded c156 permit 85 ^65000:3_0:240_0:84$ ip community-list expanded c156 permit 86 ^65000:3_0:241_0:85$ ip community-list expanded c156 permit 87 ^65000:3_0:242_0:86$ ip community-list expanded c156 permit 88 ^65000:3_0:243_0:87$ ip community-list expanded c156 permit 89 ^65000:3_0:244_0:88$ ip community-list expanded c156 permit 90 ^65000:3_0:245_0:89$ ip community-list expanded c156 permit 91 ^65000:3_0:246_0:90$ ip community-list expanded c156 permit 92 ^65000:3_0:247_0:91$ ip community-list expanded c156 permit 93 ^65000:3_0:248_0:92$ ip community-list expanded c156 permit 94 ^65000:3_0:249_0:93$ ip community-list expanded c156 permit 95 ^65000:3_0:250_0:94$ ip community-list expanded c156 permit 96 ^65000:3_0:251_0:95$ ip community-list expanded c156 permit 97 ^65000:3_0:252_0:96$ ip community-list expanded c156 permit 98 ^65000:3_0:253_0:97$ ip community-list expanded c156 permit 99 ^65000:3_0:254_0:98$ ip community-list expanded c156 permit 100 ^65000:3_0:255_0:99$ ip community-list expanded c156 permit 101 ^65000:3_0:256_0:100$ route-map calculator permit 5936 match community 1_1_155 2_1_156 2_2_78 1_2_154 2_3_52 set community 0:156 route-map calculator permit 5937 match community 1_3_153 2_4_39 1_4_152 1_5_151 2_6_26 set community 0:156 route-map calculator permit 5938 match community 1_6_150 1_7_149 1_8_148 1_9_147 1_10_146 set community 0:156 route-map calculator permit 5939 match community 1_11_145 2_12_13 1_12_144 1_13_143 1_14_142 set community 0:156 route-map calculator permit 5940 match community 1_15_141 1_16_140 1_17_139 1_18_138 1_19_137 set community 0:156 route-map calculator permit 5941 match community 1_20_136 1_21_135 1_22_134 1_23_133 1_24_132 set community 0:156 route-map calculator permit 5942 match community 1_25_131 1_26_130 1_27_129 1_28_128 1_29_127 set community 0:156 route-map calculator permit 5943 match community 1_30_126 1_31_125 1_32_124 1_33_123 1_34_122 set community 0:156 route-map calculator permit 5944 match community 1_35_121 1_36_120 1_37_119 1_38_118 1_39_117 set community 0:156 route-map calculator permit 5945 match community 1_40_116 1_41_115 1_42_114 1_43_113 1_44_112 set community 0:156 route-map calculator permit 5946 match community 1_45_111 1_46_110 1_47_109 1_48_108 1_49_107 set community 0:156 route-map calculator permit 5947 match community 1_50_106 1_51_105 1_52_104 1_53_103 1_54_102 set community 0:156 route-map calculator permit 5948 match community 1_55_101 1_56_100 1_57_99 1_58_98 1_59_97 set community 0:156 route-map calculator permit 5949 match community 1_60_96 1_61_95 1_62_94 1_63_93 1_64_92 set community 0:156 route-map calculator permit 5950 match community 1_65_91 1_66_90 1_67_89 1_68_88 1_69_87 set community 0:156 route-map calculator permit 5951 match community 1_70_86 1_71_85 1_72_84 1_73_83 1_74_82 set community 0:156 route-map calculator permit 5952 match community 1_75_81 1_76_80 1_77_79 1_78_78 c4_156_1 set community 0:156 route-map calculator permit 5953 match community c3_157_1 c3_158_2 c3_159_3 c3_160_4 c3_161_5 set community 0:156 route-map calculator permit 5954 match community c3_162_6 c3_163_7 c3_164_8 c3_165_9 c3_166_10 set community 0:156 route-map calculator permit 5955 match community c3_167_11 c3_168_12 c3_169_13 c3_170_14 c3_171_15 set community 0:156 route-map calculator permit 5956 match community c3_172_16 c3_173_17 c3_174_18 c3_175_19 c3_176_20 set community 0:156 route-map calculator permit 5957 match community c3_177_21 c3_178_22 c3_179_23 c3_180_24 c3_181_25 set community 0:156 route-map calculator permit 5958 match community c3_182_26 c3_183_27 c3_184_28 c3_185_29 c3_186_30 set community 0:156 route-map calculator permit 5959 match community c3_187_31 c3_188_32 c3_189_33 c3_190_34 c3_191_35 set community 0:156 route-map calculator permit 5960 match community c3_192_36 c3_193_37 c3_194_38 c3_195_39 c3_196_40 set community 0:156 route-map calculator permit 5961 match community c3_197_41 c3_198_42 c3_199_43 c3_200_44 c3_201_45 set community 0:156 route-map calculator permit 5962 match community c3_202_46 c3_203_47 c3_204_48 c3_205_49 c3_206_50 set community 0:156 route-map calculator permit 5963 match community c3_207_51 c3_208_52 c3_209_53 c3_210_54 c3_211_55 set community 0:156 route-map calculator permit 5964 match community c3_212_56 c3_213_57 c3_214_58 c3_215_59 c3_216_60 set community 0:156 route-map calculator permit 5965 match community c3_217_61 c3_218_62 c3_219_63 c3_220_64 c3_221_65 set community 0:156 route-map calculator permit 5966 match community c3_222_66 c3_223_67 c3_224_68 c3_225_69 c3_226_70 set community 0:156 route-map calculator permit 5967 match community c3_227_71 c3_228_72 c3_229_73 c3_230_74 c3_231_75 set community 0:156 route-map calculator permit 5968 match community c3_232_76 c3_233_77 c3_234_78 c3_235_79 c3_236_80 set community 0:156 route-map calculator permit 5969 match community c3_237_81 c3_238_82 c3_239_83 c3_240_84 c3_241_85 set community 0:156 route-map calculator permit 5970 match community c3_242_86 c3_243_87 c3_244_88 c3_245_89 c3_246_90 set community 0:156 route-map calculator permit 5971 match community c3_247_91 c3_248_92 c3_249_93 c3_250_94 c3_251_95 set community 0:156 route-map calculator permit 5972 match community c3_252_96 c3_253_97 c3_254_98 c3_255_99 c3_256_100 set community 0:156 ip community-list standard 2_58_157 permit 65000:2 0:58 0:157 route-map calculator permit 5973 match community 2_58_157 set community 0:9106 ip community-list standard 2_166_250 permit 65000:2 0:166 0:250 route-map calculator permit 5974 match community 2_166_250 set community 0:41500 ip community-list standard 2_241_246 permit 65000:2 0:241 0:246 route-map calculator permit 5975 match community 2_241_246 set community 0:59286 ip community-list standard 2_33_234 permit 65000:2 0:33 0:234 ip community-list standard 2_39_198 permit 65000:2 0:39 0:198 ip community-list standard 2_54_143 permit 65000:2 0:54 0:143 ip community-list standard 2_66_117 permit 65000:2 0:66 0:117 ip community-list standard 2_78_99 permit 65000:2 0:78 0:99 route-map calculator permit 5976 match community 2_33_234 2_39_198 2_54_143 2_66_117 2_78_99 set community 0:7722 ip community-list standard 2_17_223 permit 65000:2 0:17 0:223 route-map calculator permit 5977 match community 2_17_223 set community 0:3791 ip community-list standard 2_14_129 permit 65000:2 0:14 0:129 ip community-list standard 2_21_86 permit 65000:2 0:21 0:86 ip community-list standard 2_42_43 permit 65000:2 0:42 0:43 route-map calculator permit 5978 match community 2_14_129 2_21_86 2_42_43 set community 0:1806 ip community-list standard 2_177_177 permit 65000:2 0:177 0:177 route-map calculator permit 5979 match community 2_177_177 set community 0:31329 ip community-list standard 2_9_173 permit 65000:2 0:9 0:173 route-map calculator permit 5980 match community 2_9_173 set community 0:1557 ip community-list standard 2_41_183 permit 65000:2 0:41 0:183 ip community-list standard 2_61_123 permit 65000:2 0:61 0:123 route-map calculator permit 5981 match community 2_41_183 2_61_123 set community 0:7503 ip community-list standard 2_55_229 permit 65000:2 0:55 0:229 route-map calculator permit 5982 match community 2_55_229 set community 0:12595 ip community-list standard 2_65_97 permit 65000:2 0:65 0:97 route-map calculator permit 5983 match community 2_65_97 set community 0:6305 ip community-list standard 2_12_244 permit 65000:2 0:12 0:244 ip community-list standard 2_16_183 permit 65000:2 0:16 0:183 ip community-list standard 2_24_122 permit 65000:2 0:24 0:122 ip community-list standard 2_48_61 permit 65000:2 0:48 0:61 route-map calculator permit 5984 match community 2_12_244 2_16_183 2_24_122 2_48_61 set community 0:2928 ip community-list standard 2_3_241 permit 65000:2 0:3 0:241 route-map calculator permit 5985 match community 2_3_241 set community 0:723 ip community-list standard 2_23_93 permit 65000:2 0:23 0:93 ip community-list standard 2_31_69 permit 65000:2 0:31 0:69 route-map calculator permit 5986 match community 2_23_93 2_31_69 set community 0:2139 ip community-list standard 2_189_221 permit 65000:2 0:189 0:221 route-map calculator permit 5987 match community 2_189_221 set community 0:41769 ip community-list standard 2_11_47 permit 65000:2 0:11 0:47 route-map calculator permit 5988 match community 2_11_47 set community 0:517 ip community-list standard 2_15_89 permit 65000:2 0:15 0:89 route-map calculator permit 5989 match community 2_15_89 set community 0:1335 ip community-list standard 2_133_237 permit 65000:2 0:133 0:237 route-map calculator permit 5990 match community 2_133_237 set community 0:31521 ip community-list standard 2_176_188 permit 65000:2 0:176 0:188 route-map calculator permit 5991 match community 2_176_188 set community 0:33088 ip community-list standard 2_131_174 permit 65000:2 0:131 0:174 route-map calculator permit 5992 match community 2_131_174 set community 0:22794 ip community-list standard 2_30_227 permit 65000:2 0:30 0:227 route-map calculator permit 5993 match community 2_30_227 set community 0:6810 ip community-list standard 2_32_197 permit 65000:2 0:32 0:197 route-map calculator permit 5994 match community 2_32_197 set community 0:6304 ip community-list standard 2_11_246 permit 65000:2 0:11 0:246 ip community-list standard 2_22_123 permit 65000:2 0:22 0:123 ip community-list standard 2_33_82 permit 65000:2 0:33 0:82 ip community-list standard 2_41_66 permit 65000:2 0:41 0:66 route-map calculator permit 5995 match community 2_11_246 2_22_123 2_33_82 2_41_66 set community 0:2706 ip community-list standard 2_9_180 permit 65000:2 0:9 0:180 ip community-list standard 2_10_162 permit 65000:2 0:10 0:162 ip community-list standard 2_12_135 permit 65000:2 0:12 0:135 ip community-list standard 2_15_108 permit 65000:2 0:15 0:108 ip community-list standard 2_18_90 permit 65000:2 0:18 0:90 ip community-list standard 2_20_81 permit 65000:2 0:20 0:81 ip community-list standard 2_27_60 permit 65000:2 0:27 0:60 ip community-list standard 2_30_54 permit 65000:2 0:30 0:54 ip community-list standard 2_36_45 permit 65000:2 0:36 0:45 route-map calculator permit 5996 match community 2_9_180 2_10_162 2_12_135 2_15_108 2_18_90 set community 0:1620 route-map calculator permit 5997 match community 2_20_81 2_27_60 2_30_54 2_36_45 set community 0:1620 ip community-list standard 2_62_213 permit 65000:2 0:62 0:213 ip community-list standard 2_71_186 permit 65000:2 0:71 0:186 ip community-list standard 2_93_142 permit 65000:2 0:93 0:142 route-map calculator permit 5998 match community 2_62_213 2_71_186 2_93_142 set community 0:13206 ip community-list standard 2_21_245 permit 65000:2 0:21 0:245 ip community-list standard 2_35_147 permit 65000:2 0:35 0:147 ip community-list standard 2_49_105 permit 65000:2 0:49 0:105 route-map calculator permit 5999 match community 2_21_245 2_35_147 2_49_105 set community 0:5145 ip community-list standard 2_218_252 permit 65000:2 0:218 0:252 route-map calculator permit 6000 match community 2_218_252 set community 0:54936 ip community-list standard 2_97_149 permit 65000:2 0:97 0:149 route-map calculator permit 6001 match community 2_97_149 set community 0:14453 ip community-list standard 2_116_157 permit 65000:2 0:116 0:157 route-map calculator permit 6002 match community 2_116_157 set community 0:18212 ip community-list standard 1_1_200 permit 65000:1 0:1 0:200 ip community-list standard 2_1_201 permit 65000:2 0:1 0:201 ip community-list standard 1_2_199 permit 65000:1 0:2 0:199 ip community-list standard 2_3_67 permit 65000:2 0:3 0:67 ip community-list standard 1_3_198 permit 65000:1 0:3 0:198 ip community-list standard 1_4_197 permit 65000:1 0:4 0:197 ip community-list standard 1_5_196 permit 65000:1 0:5 0:196 ip community-list standard 1_6_195 permit 65000:1 0:6 0:195 ip community-list standard 1_7_194 permit 65000:1 0:7 0:194 ip community-list standard 1_8_193 permit 65000:1 0:8 0:193 ip community-list standard 1_9_192 permit 65000:1 0:9 0:192 ip community-list standard 1_10_191 permit 65000:1 0:10 0:191 ip community-list standard 1_11_190 permit 65000:1 0:11 0:190 ip community-list standard 1_12_189 permit 65000:1 0:12 0:189 ip community-list standard 1_13_188 permit 65000:1 0:13 0:188 ip community-list standard 1_14_187 permit 65000:1 0:14 0:187 ip community-list standard 1_15_186 permit 65000:1 0:15 0:186 ip community-list standard 1_16_185 permit 65000:1 0:16 0:185 ip community-list standard 1_17_184 permit 65000:1 0:17 0:184 ip community-list standard 1_18_183 permit 65000:1 0:18 0:183 ip community-list standard 1_19_182 permit 65000:1 0:19 0:182 ip community-list standard 1_20_181 permit 65000:1 0:20 0:181 ip community-list standard 1_21_180 permit 65000:1 0:21 0:180 ip community-list standard 1_22_179 permit 65000:1 0:22 0:179 ip community-list standard 1_23_178 permit 65000:1 0:23 0:178 ip community-list standard 1_24_177 permit 65000:1 0:24 0:177 ip community-list standard 1_25_176 permit 65000:1 0:25 0:176 ip community-list standard 1_26_175 permit 65000:1 0:26 0:175 ip community-list standard 1_27_174 permit 65000:1 0:27 0:174 ip community-list standard 1_28_173 permit 65000:1 0:28 0:173 ip community-list standard 1_29_172 permit 65000:1 0:29 0:172 ip community-list standard 1_30_171 permit 65000:1 0:30 0:171 ip community-list standard 1_31_170 permit 65000:1 0:31 0:170 ip community-list standard 1_32_169 permit 65000:1 0:32 0:169 ip community-list standard 1_33_168 permit 65000:1 0:33 0:168 ip community-list standard 1_34_167 permit 65000:1 0:34 0:167 ip community-list standard 1_35_166 permit 65000:1 0:35 0:166 ip community-list standard 1_36_165 permit 65000:1 0:36 0:165 ip community-list standard 1_37_164 permit 65000:1 0:37 0:164 ip community-list standard 1_38_163 permit 65000:1 0:38 0:163 ip community-list standard 1_39_162 permit 65000:1 0:39 0:162 ip community-list standard 1_40_161 permit 65000:1 0:40 0:161 ip community-list standard 1_41_160 permit 65000:1 0:41 0:160 ip community-list standard 1_42_159 permit 65000:1 0:42 0:159 ip community-list standard 1_43_158 permit 65000:1 0:43 0:158 ip community-list standard 1_44_157 permit 65000:1 0:44 0:157 ip community-list standard 1_45_156 permit 65000:1 0:45 0:156 ip community-list standard 1_46_155 permit 65000:1 0:46 0:155 ip community-list standard 1_47_154 permit 65000:1 0:47 0:154 ip community-list standard 1_48_153 permit 65000:1 0:48 0:153 ip community-list standard 1_49_152 permit 65000:1 0:49 0:152 ip community-list standard 1_50_151 permit 65000:1 0:50 0:151 ip community-list standard 1_51_150 permit 65000:1 0:51 0:150 ip community-list standard 1_52_149 permit 65000:1 0:52 0:149 ip community-list standard 1_53_148 permit 65000:1 0:53 0:148 ip community-list standard 1_54_147 permit 65000:1 0:54 0:147 ip community-list standard 1_55_146 permit 65000:1 0:55 0:146 ip community-list standard 1_56_145 permit 65000:1 0:56 0:145 ip community-list standard 1_57_144 permit 65000:1 0:57 0:144 ip community-list standard 1_58_143 permit 65000:1 0:58 0:143 ip community-list standard 1_59_142 permit 65000:1 0:59 0:142 ip community-list standard 1_60_141 permit 65000:1 0:60 0:141 ip community-list standard 1_61_140 permit 65000:1 0:61 0:140 ip community-list standard 1_62_139 permit 65000:1 0:62 0:139 ip community-list standard 1_63_138 permit 65000:1 0:63 0:138 ip community-list standard 1_64_137 permit 65000:1 0:64 0:137 ip community-list standard 1_65_136 permit 65000:1 0:65 0:136 ip community-list standard 1_66_135 permit 65000:1 0:66 0:135 ip community-list standard 1_67_134 permit 65000:1 0:67 0:134 ip community-list standard 1_68_133 permit 65000:1 0:68 0:133 ip community-list standard 1_69_132 permit 65000:1 0:69 0:132 ip community-list standard 1_70_131 permit 65000:1 0:70 0:131 ip community-list standard 1_71_130 permit 65000:1 0:71 0:130 ip community-list standard 1_72_129 permit 65000:1 0:72 0:129 ip community-list standard 1_73_128 permit 65000:1 0:73 0:128 ip community-list standard 1_74_127 permit 65000:1 0:74 0:127 ip community-list standard 1_75_126 permit 65000:1 0:75 0:126 ip community-list standard 1_76_125 permit 65000:1 0:76 0:125 ip community-list standard 1_77_124 permit 65000:1 0:77 0:124 ip community-list standard 1_78_123 permit 65000:1 0:78 0:123 ip community-list standard 1_79_122 permit 65000:1 0:79 0:122 ip community-list standard 1_80_121 permit 65000:1 0:80 0:121 ip community-list standard 1_81_120 permit 65000:1 0:81 0:120 ip community-list standard 1_82_119 permit 65000:1 0:82 0:119 ip community-list standard 1_83_118 permit 65000:1 0:83 0:118 ip community-list standard 1_84_117 permit 65000:1 0:84 0:117 ip community-list standard 1_85_116 permit 65000:1 0:85 0:116 ip community-list standard 1_86_115 permit 65000:1 0:86 0:115 ip community-list standard 1_87_114 permit 65000:1 0:87 0:114 ip community-list standard 1_88_113 permit 65000:1 0:88 0:113 ip community-list standard 1_89_112 permit 65000:1 0:89 0:112 ip community-list standard 1_90_111 permit 65000:1 0:90 0:111 ip community-list standard 1_91_110 permit 65000:1 0:91 0:110 ip community-list standard 1_92_109 permit 65000:1 0:92 0:109 ip community-list standard 1_93_108 permit 65000:1 0:93 0:108 ip community-list standard 1_94_107 permit 65000:1 0:94 0:107 ip community-list standard 1_95_106 permit 65000:1 0:95 0:106 ip community-list standard 1_96_105 permit 65000:1 0:96 0:105 ip community-list standard 1_97_104 permit 65000:1 0:97 0:104 ip community-list standard 1_98_103 permit 65000:1 0:98 0:103 ip community-list standard 1_99_102 permit 65000:1 0:99 0:102 ip community-list standard 1_100_101 permit 65000:1 0:100 0:101 ip community-list expanded c201 permit 1 ^65000:4_0:201_0:1$ ip community-list expanded c201 permit 2 ^65000:3_0:202_0:1$ ip community-list expanded c201 permit 3 ^65000:3_0:203_0:2$ ip community-list expanded c201 permit 4 ^65000:3_0:204_0:3$ ip community-list expanded c201 permit 5 ^65000:3_0:205_0:4$ ip community-list expanded c201 permit 6 ^65000:3_0:206_0:5$ ip community-list expanded c201 permit 7 ^65000:3_0:207_0:6$ ip community-list expanded c201 permit 8 ^65000:3_0:208_0:7$ ip community-list expanded c201 permit 9 ^65000:3_0:209_0:8$ ip community-list expanded c201 permit 10 ^65000:3_0:210_0:9$ ip community-list expanded c201 permit 11 ^65000:3_0:211_0:10$ ip community-list expanded c201 permit 12 ^65000:3_0:212_0:11$ ip community-list expanded c201 permit 13 ^65000:3_0:213_0:12$ ip community-list expanded c201 permit 14 ^65000:3_0:214_0:13$ ip community-list expanded c201 permit 15 ^65000:3_0:215_0:14$ ip community-list expanded c201 permit 16 ^65000:3_0:216_0:15$ ip community-list expanded c201 permit 17 ^65000:3_0:217_0:16$ ip community-list expanded c201 permit 18 ^65000:3_0:218_0:17$ ip community-list expanded c201 permit 19 ^65000:3_0:219_0:18$ ip community-list expanded c201 permit 20 ^65000:3_0:220_0:19$ ip community-list expanded c201 permit 21 ^65000:3_0:221_0:20$ ip community-list expanded c201 permit 22 ^65000:3_0:222_0:21$ ip community-list expanded c201 permit 23 ^65000:3_0:223_0:22$ ip community-list expanded c201 permit 24 ^65000:3_0:224_0:23$ ip community-list expanded c201 permit 25 ^65000:3_0:225_0:24$ ip community-list expanded c201 permit 26 ^65000:3_0:226_0:25$ ip community-list expanded c201 permit 27 ^65000:3_0:227_0:26$ ip community-list expanded c201 permit 28 ^65000:3_0:228_0:27$ ip community-list expanded c201 permit 29 ^65000:3_0:229_0:28$ ip community-list expanded c201 permit 30 ^65000:3_0:230_0:29$ ip community-list expanded c201 permit 31 ^65000:3_0:231_0:30$ ip community-list expanded c201 permit 32 ^65000:3_0:232_0:31$ ip community-list expanded c201 permit 33 ^65000:3_0:233_0:32$ ip community-list expanded c201 permit 34 ^65000:3_0:234_0:33$ ip community-list expanded c201 permit 35 ^65000:3_0:235_0:34$ ip community-list expanded c201 permit 36 ^65000:3_0:236_0:35$ ip community-list expanded c201 permit 37 ^65000:3_0:237_0:36$ ip community-list expanded c201 permit 38 ^65000:3_0:238_0:37$ ip community-list expanded c201 permit 39 ^65000:3_0:239_0:38$ ip community-list expanded c201 permit 40 ^65000:3_0:240_0:39$ ip community-list expanded c201 permit 41 ^65000:3_0:241_0:40$ ip community-list expanded c201 permit 42 ^65000:3_0:242_0:41$ ip community-list expanded c201 permit 43 ^65000:3_0:243_0:42$ ip community-list expanded c201 permit 44 ^65000:3_0:244_0:43$ ip community-list expanded c201 permit 45 ^65000:3_0:245_0:44$ ip community-list expanded c201 permit 46 ^65000:3_0:246_0:45$ ip community-list expanded c201 permit 47 ^65000:3_0:247_0:46$ ip community-list expanded c201 permit 48 ^65000:3_0:248_0:47$ ip community-list expanded c201 permit 49 ^65000:3_0:249_0:48$ ip community-list expanded c201 permit 50 ^65000:3_0:250_0:49$ ip community-list expanded c201 permit 51 ^65000:3_0:251_0:50$ ip community-list expanded c201 permit 52 ^65000:3_0:252_0:51$ ip community-list expanded c201 permit 53 ^65000:3_0:253_0:52$ ip community-list expanded c201 permit 54 ^65000:3_0:254_0:53$ ip community-list expanded c201 permit 55 ^65000:3_0:255_0:54$ ip community-list expanded c201 permit 56 ^65000:3_0:256_0:55$ route-map calculator permit 6003 match community 1_1_200 2_1_201 1_2_199 2_3_67 1_3_198 set community 0:201 route-map calculator permit 6004 match community 1_4_197 1_5_196 1_6_195 1_7_194 1_8_193 set community 0:201 route-map calculator permit 6005 match community 1_9_192 1_10_191 1_11_190 1_12_189 1_13_188 set community 0:201 route-map calculator permit 6006 match community 1_14_187 1_15_186 1_16_185 1_17_184 1_18_183 set community 0:201 route-map calculator permit 6007 match community 1_19_182 1_20_181 1_21_180 1_22_179 1_23_178 set community 0:201 route-map calculator permit 6008 match community 1_24_177 1_25_176 1_26_175 1_27_174 1_28_173 set community 0:201 route-map calculator permit 6009 match community 1_29_172 1_30_171 1_31_170 1_32_169 1_33_168 set community 0:201 route-map calculator permit 6010 match community 1_34_167 1_35_166 1_36_165 1_37_164 1_38_163 set community 0:201 route-map calculator permit 6011 match community 1_39_162 1_40_161 1_41_160 1_42_159 1_43_158 set community 0:201 route-map calculator permit 6012 match community 1_44_157 1_45_156 1_46_155 1_47_154 1_48_153 set community 0:201 route-map calculator permit 6013 match community 1_49_152 1_50_151 1_51_150 1_52_149 1_53_148 set community 0:201 route-map calculator permit 6014 match community 1_54_147 1_55_146 1_56_145 1_57_144 1_58_143 set community 0:201 route-map calculator permit 6015 match community 1_59_142 1_60_141 1_61_140 1_62_139 1_63_138 set community 0:201 route-map calculator permit 6016 match community 1_64_137 1_65_136 1_66_135 1_67_134 1_68_133 set community 0:201 route-map calculator permit 6017 match community 1_69_132 1_70_131 1_71_130 1_72_129 1_73_128 set community 0:201 route-map calculator permit 6018 match community 1_74_127 1_75_126 1_76_125 1_77_124 1_78_123 set community 0:201 route-map calculator permit 6019 match community 1_79_122 1_80_121 1_81_120 1_82_119 1_83_118 set community 0:201 route-map calculator permit 6020 match community 1_84_117 1_85_116 1_86_115 1_87_114 1_88_113 set community 0:201 route-map calculator permit 6021 match community 1_89_112 1_90_111 1_91_110 1_92_109 1_93_108 set community 0:201 route-map calculator permit 6022 match community 1_94_107 1_95_106 1_96_105 1_97_104 1_98_103 set community 0:201 route-map calculator permit 6023 match community 1_99_102 1_100_101 c4_201_1 c3_202_1 c3_203_2 set community 0:201 route-map calculator permit 6024 match community c3_204_3 c3_205_4 c3_206_5 c3_207_6 c3_208_7 set community 0:201 route-map calculator permit 6025 match community c3_209_8 c3_210_9 c3_211_10 c3_212_11 c3_213_12 set community 0:201 route-map calculator permit 6026 match community c3_214_13 c3_215_14 c3_216_15 c3_217_16 c3_218_17 set community 0:201 route-map calculator permit 6027 match community c3_219_18 c3_220_19 c3_221_20 c3_222_21 c3_223_22 set community 0:201 route-map calculator permit 6028 match community c3_224_23 c3_225_24 c3_226_25 c3_227_26 c3_228_27 set community 0:201 route-map calculator permit 6029 match community c3_229_28 c3_230_29 c3_231_30 c3_232_31 c3_233_32 set community 0:201 route-map calculator permit 6030 match community c3_234_33 c3_235_34 c3_236_35 c3_237_36 c3_238_37 set community 0:201 route-map calculator permit 6031 match community c3_239_38 c3_240_39 c3_241_40 c3_242_41 c3_243_42 set community 0:201 route-map calculator permit 6032 match community c3_244_43 c3_245_44 c3_246_45 c3_247_46 c3_248_47 set community 0:201 route-map calculator permit 6033 match community c3_249_48 c3_250_49 c3_251_50 c3_252_51 c3_253_52 set community 0:201 route-map calculator permit 6034 match community c3_254_53 c3_255_54 c3_256_55 set community 0:201 ip community-list standard 2_43_73 permit 65000:2 0:43 0:73 route-map calculator permit 6035 match community 2_43_73 set community 0:3139 ip community-list standard 2_82_252 permit 65000:2 0:82 0:252 ip community-list standard 2_84_246 permit 65000:2 0:84 0:246 ip community-list standard 2_123_168 permit 65000:2 0:123 0:168 ip community-list standard 2_126_164 permit 65000:2 0:126 0:164 route-map calculator permit 6036 match community 2_82_252 2_84_246 2_123_168 2_126_164 set community 0:20664 ip community-list standard 2_58_215 permit 65000:2 0:58 0:215 ip community-list standard 2_86_145 permit 65000:2 0:86 0:145 route-map calculator permit 6037 match community 2_58_215 2_86_145 set community 0:12470 ip community-list standard 2_171_181 permit 65000:2 0:171 0:181 route-map calculator permit 6038 match community 2_171_181 set community 0:30951 ip community-list standard 2_82_161 permit 65000:2 0:82 0:161 route-map calculator permit 6039 match community 2_82_161 set community 0:13202 ip community-list standard 2_53_239 permit 65000:2 0:53 0:239 route-map calculator permit 6040 match community 2_53_239 set community 0:12667 ip community-list standard 2_53_174 permit 65000:2 0:53 0:174 ip community-list standard 2_58_159 permit 65000:2 0:58 0:159 ip community-list standard 2_87_106 permit 65000:2 0:87 0:106 route-map calculator permit 6041 match community 2_53_174 2_58_159 2_87_106 set community 0:9222 ip community-list standard 2_122_237 permit 65000:2 0:122 0:237 ip community-list standard 2_158_183 permit 65000:2 0:158 0:183 route-map calculator permit 6042 match community 2_122_237 2_158_183 set community 0:28914 ip community-list standard 2_173_250 permit 65000:2 0:173 0:250 route-map calculator permit 6043 match community 2_173_250 set community 0:43250 ip community-list standard 2_107_220 permit 65000:2 0:107 0:220 ip community-list standard 2_110_214 permit 65000:2 0:110 0:214 route-map calculator permit 6044 match community 2_107_220 2_110_214 set community 0:23540 ip community-list standard 2_111_232 permit 65000:2 0:111 0:232 ip community-list standard 2_116_222 permit 65000:2 0:116 0:222 ip community-list standard 2_148_174 permit 65000:2 0:148 0:174 route-map calculator permit 6045 match community 2_111_232 2_116_222 2_148_174 set community 0:25752 ip community-list standard 2_114_233 permit 65000:2 0:114 0:233 route-map calculator permit 6046 match community 2_114_233 set community 0:26562 ip community-list standard 2_3_230 permit 65000:2 0:3 0:230 ip community-list standard 2_5_138 permit 65000:2 0:5 0:138 ip community-list standard 2_6_115 permit 65000:2 0:6 0:115 ip community-list standard 2_10_69 permit 65000:2 0:10 0:69 ip community-list standard 2_15_46 permit 65000:2 0:15 0:46 ip community-list standard 2_23_30 permit 65000:2 0:23 0:30 route-map calculator permit 6047 match community 2_3_230 2_5_138 2_6_115 2_10_69 2_15_46 set community 0:690 route-map calculator permit 6048 match community 2_23_30 set community 0:690 ip community-list standard 2_35_113 permit 65000:2 0:35 0:113 route-map calculator permit 6049 match community 2_35_113 set community 0:3955 ip community-list standard 2_128_199 permit 65000:2 0:128 0:199 route-map calculator permit 6050 match community 2_128_199 set community 0:25472 ip community-list standard 2_32_199 permit 65000:2 0:32 0:199 route-map calculator permit 6051 match community 2_32_199 set community 0:6368 ip community-list standard 2_9_103 permit 65000:2 0:9 0:103 route-map calculator permit 6052 match community 2_9_103 set community 0:927 ip community-list standard 2_19_231 permit 65000:2 0:19 0:231 ip community-list standard 2_21_209 permit 65000:2 0:21 0:209 ip community-list standard 2_33_133 permit 65000:2 0:33 0:133 ip community-list standard 2_57_77 permit 65000:2 0:57 0:77 route-map calculator permit 6053 match community 2_19_231 2_21_209 2_33_133 2_57_77 set community 0:4389 ip community-list standard 2_51_239 permit 65000:2 0:51 0:239 route-map calculator permit 6054 match community 2_51_239 set community 0:12189 ip community-list standard 2_229_234 permit 65000:2 0:229 0:234 route-map calculator permit 6055 match community 2_229_234 set community 0:53586 ip community-list standard 1_1_76 permit 65000:1 0:1 0:76 ip community-list standard 2_1_77 permit 65000:2 0:1 0:77 ip community-list standard 1_2_75 permit 65000:1 0:2 0:75 ip community-list standard 1_3_74 permit 65000:1 0:3 0:74 ip community-list standard 1_4_73 permit 65000:1 0:4 0:73 ip community-list standard 1_5_72 permit 65000:1 0:5 0:72 ip community-list standard 1_6_71 permit 65000:1 0:6 0:71 ip community-list standard 2_7_11 permit 65000:2 0:7 0:11 ip community-list standard 1_7_70 permit 65000:1 0:7 0:70 ip community-list standard 1_8_69 permit 65000:1 0:8 0:69 ip community-list standard 1_9_68 permit 65000:1 0:9 0:68 ip community-list standard 1_10_67 permit 65000:1 0:10 0:67 ip community-list standard 1_11_66 permit 65000:1 0:11 0:66 ip community-list standard 1_12_65 permit 65000:1 0:12 0:65 ip community-list standard 1_13_64 permit 65000:1 0:13 0:64 ip community-list standard 1_14_63 permit 65000:1 0:14 0:63 ip community-list standard 1_15_62 permit 65000:1 0:15 0:62 ip community-list standard 1_16_61 permit 65000:1 0:16 0:61 ip community-list standard 1_17_60 permit 65000:1 0:17 0:60 ip community-list standard 1_18_59 permit 65000:1 0:18 0:59 ip community-list standard 1_19_58 permit 65000:1 0:19 0:58 ip community-list standard 1_20_57 permit 65000:1 0:20 0:57 ip community-list standard 1_21_56 permit 65000:1 0:21 0:56 ip community-list standard 1_22_55 permit 65000:1 0:22 0:55 ip community-list standard 1_23_54 permit 65000:1 0:23 0:54 ip community-list standard 1_24_53 permit 65000:1 0:24 0:53 ip community-list standard 1_25_52 permit 65000:1 0:25 0:52 ip community-list standard 1_26_51 permit 65000:1 0:26 0:51 ip community-list standard 1_27_50 permit 65000:1 0:27 0:50 ip community-list standard 1_28_49 permit 65000:1 0:28 0:49 ip community-list standard 1_29_48 permit 65000:1 0:29 0:48 ip community-list standard 1_30_47 permit 65000:1 0:30 0:47 ip community-list standard 1_31_46 permit 65000:1 0:31 0:46 ip community-list standard 1_32_45 permit 65000:1 0:32 0:45 ip community-list standard 1_33_44 permit 65000:1 0:33 0:44 ip community-list standard 1_34_43 permit 65000:1 0:34 0:43 ip community-list standard 1_35_42 permit 65000:1 0:35 0:42 ip community-list standard 1_36_41 permit 65000:1 0:36 0:41 ip community-list standard 1_37_40 permit 65000:1 0:37 0:40 ip community-list standard 1_38_39 permit 65000:1 0:38 0:39 ip community-list expanded c77 permit 1 ^65000:4_0:77_0:1$ ip community-list expanded c77 permit 2 ^65000:3_0:78_0:1$ ip community-list expanded c77 permit 3 ^65000:3_0:79_0:2$ ip community-list expanded c77 permit 4 ^65000:3_0:80_0:3$ ip community-list expanded c77 permit 5 ^65000:3_0:81_0:4$ ip community-list expanded c77 permit 6 ^65000:3_0:82_0:5$ ip community-list expanded c77 permit 7 ^65000:3_0:83_0:6$ ip community-list expanded c77 permit 8 ^65000:3_0:84_0:7$ ip community-list expanded c77 permit 9 ^65000:3_0:85_0:8$ ip community-list expanded c77 permit 10 ^65000:3_0:86_0:9$ ip community-list expanded c77 permit 11 ^65000:3_0:87_0:10$ ip community-list expanded c77 permit 12 ^65000:3_0:88_0:11$ ip community-list expanded c77 permit 13 ^65000:3_0:89_0:12$ ip community-list expanded c77 permit 14 ^65000:3_0:90_0:13$ ip community-list expanded c77 permit 15 ^65000:3_0:91_0:14$ ip community-list expanded c77 permit 16 ^65000:3_0:92_0:15$ ip community-list expanded c77 permit 17 ^65000:3_0:93_0:16$ ip community-list expanded c77 permit 18 ^65000:3_0:94_0:17$ ip community-list expanded c77 permit 19 ^65000:3_0:95_0:18$ ip community-list expanded c77 permit 20 ^65000:3_0:96_0:19$ ip community-list expanded c77 permit 21 ^65000:3_0:97_0:20$ ip community-list expanded c77 permit 22 ^65000:3_0:98_0:21$ ip community-list expanded c77 permit 23 ^65000:3_0:99_0:22$ ip community-list expanded c77 permit 24 ^65000:3_0:100_0:23$ ip community-list expanded c77 permit 25 ^65000:3_0:101_0:24$ ip community-list expanded c77 permit 26 ^65000:3_0:102_0:25$ ip community-list expanded c77 permit 27 ^65000:3_0:103_0:26$ ip community-list expanded c77 permit 28 ^65000:3_0:104_0:27$ ip community-list expanded c77 permit 29 ^65000:3_0:105_0:28$ ip community-list expanded c77 permit 30 ^65000:3_0:106_0:29$ ip community-list expanded c77 permit 31 ^65000:3_0:107_0:30$ ip community-list expanded c77 permit 32 ^65000:3_0:108_0:31$ ip community-list expanded c77 permit 33 ^65000:3_0:109_0:32$ ip community-list expanded c77 permit 34 ^65000:3_0:110_0:33$ ip community-list expanded c77 permit 35 ^65000:3_0:111_0:34$ ip community-list expanded c77 permit 36 ^65000:3_0:112_0:35$ ip community-list expanded c77 permit 37 ^65000:3_0:113_0:36$ ip community-list expanded c77 permit 38 ^65000:3_0:114_0:37$ ip community-list expanded c77 permit 39 ^65000:3_0:115_0:38$ ip community-list expanded c77 permit 40 ^65000:3_0:116_0:39$ ip community-list expanded c77 permit 41 ^65000:3_0:117_0:40$ ip community-list expanded c77 permit 42 ^65000:3_0:118_0:41$ ip community-list expanded c77 permit 43 ^65000:3_0:119_0:42$ ip community-list expanded c77 permit 44 ^65000:3_0:120_0:43$ ip community-list expanded c77 permit 45 ^65000:3_0:121_0:44$ ip community-list expanded c77 permit 46 ^65000:3_0:122_0:45$ ip community-list expanded c77 permit 47 ^65000:3_0:123_0:46$ ip community-list expanded c77 permit 48 ^65000:3_0:124_0:47$ ip community-list expanded c77 permit 49 ^65000:3_0:125_0:48$ ip community-list expanded c77 permit 50 ^65000:3_0:126_0:49$ ip community-list expanded c77 permit 51 ^65000:3_0:127_0:50$ ip community-list expanded c77 permit 52 ^65000:3_0:128_0:51$ ip community-list expanded c77 permit 53 ^65000:3_0:129_0:52$ ip community-list expanded c77 permit 54 ^65000:3_0:130_0:53$ ip community-list expanded c77 permit 55 ^65000:3_0:131_0:54$ ip community-list expanded c77 permit 56 ^65000:3_0:132_0:55$ ip community-list expanded c77 permit 57 ^65000:3_0:133_0:56$ ip community-list expanded c77 permit 58 ^65000:3_0:134_0:57$ ip community-list expanded c77 permit 59 ^65000:3_0:135_0:58$ ip community-list expanded c77 permit 60 ^65000:3_0:136_0:59$ ip community-list expanded c77 permit 61 ^65000:3_0:137_0:60$ ip community-list expanded c77 permit 62 ^65000:3_0:138_0:61$ ip community-list expanded c77 permit 63 ^65000:3_0:139_0:62$ ip community-list expanded c77 permit 64 ^65000:3_0:140_0:63$ ip community-list expanded c77 permit 65 ^65000:3_0:141_0:64$ ip community-list expanded c77 permit 66 ^65000:3_0:142_0:65$ ip community-list expanded c77 permit 67 ^65000:3_0:143_0:66$ ip community-list expanded c77 permit 68 ^65000:3_0:144_0:67$ ip community-list expanded c77 permit 69 ^65000:3_0:145_0:68$ ip community-list expanded c77 permit 70 ^65000:3_0:146_0:69$ ip community-list expanded c77 permit 71 ^65000:3_0:147_0:70$ ip community-list expanded c77 permit 72 ^65000:3_0:148_0:71$ ip community-list expanded c77 permit 73 ^65000:3_0:149_0:72$ ip community-list expanded c77 permit 74 ^65000:3_0:150_0:73$ ip community-list expanded c77 permit 75 ^65000:3_0:151_0:74$ ip community-list expanded c77 permit 76 ^65000:3_0:152_0:75$ ip community-list expanded c77 permit 77 ^65000:3_0:153_0:76$ ip community-list expanded c77 permit 78 ^65000:4_0:154_0:2$ ip community-list expanded c77 permit 79 ^65000:3_0:154_0:77$ ip community-list expanded c77 permit 80 ^65000:4_0:155_0:2$ ip community-list expanded c77 permit 81 ^65000:3_0:155_0:78$ ip community-list expanded c77 permit 82 ^65000:3_0:156_0:79$ ip community-list expanded c77 permit 83 ^65000:3_0:157_0:80$ ip community-list expanded c77 permit 84 ^65000:3_0:158_0:81$ ip community-list expanded c77 permit 85 ^65000:3_0:159_0:82$ ip community-list expanded c77 permit 86 ^65000:3_0:160_0:83$ ip community-list expanded c77 permit 87 ^65000:3_0:161_0:84$ ip community-list expanded c77 permit 88 ^65000:3_0:162_0:85$ ip community-list expanded c77 permit 89 ^65000:3_0:163_0:86$ ip community-list expanded c77 permit 90 ^65000:3_0:164_0:87$ ip community-list expanded c77 permit 91 ^65000:3_0:165_0:88$ ip community-list expanded c77 permit 92 ^65000:3_0:166_0:89$ ip community-list expanded c77 permit 93 ^65000:3_0:167_0:90$ ip community-list expanded c77 permit 94 ^65000:3_0:168_0:91$ ip community-list expanded c77 permit 95 ^65000:3_0:169_0:92$ ip community-list expanded c77 permit 96 ^65000:3_0:170_0:93$ ip community-list expanded c77 permit 97 ^65000:3_0:171_0:94$ ip community-list expanded c77 permit 98 ^65000:3_0:172_0:95$ ip community-list expanded c77 permit 99 ^65000:3_0:173_0:96$ ip community-list expanded c77 permit 100 ^65000:3_0:174_0:97$ ip community-list expanded c77 permit 101 ^65000:3_0:175_0:98$ ip community-list expanded c77 permit 102 ^65000:3_0:176_0:99$ ip community-list expanded c77 permit 103 ^65000:3_0:177_0:100$ ip community-list expanded c77 permit 104 ^65000:3_0:178_0:101$ ip community-list expanded c77 permit 105 ^65000:3_0:179_0:102$ ip community-list expanded c77 permit 106 ^65000:3_0:180_0:103$ ip community-list expanded c77 permit 107 ^65000:3_0:181_0:104$ ip community-list expanded c77 permit 108 ^65000:3_0:182_0:105$ ip community-list expanded c77 permit 109 ^65000:3_0:183_0:106$ ip community-list expanded c77 permit 110 ^65000:3_0:184_0:107$ ip community-list expanded c77 permit 111 ^65000:3_0:185_0:108$ ip community-list expanded c77 permit 112 ^65000:3_0:186_0:109$ ip community-list expanded c77 permit 113 ^65000:3_0:187_0:110$ ip community-list expanded c77 permit 114 ^65000:3_0:188_0:111$ ip community-list expanded c77 permit 115 ^65000:3_0:189_0:112$ ip community-list expanded c77 permit 116 ^65000:3_0:190_0:113$ ip community-list expanded c77 permit 117 ^65000:3_0:191_0:114$ ip community-list expanded c77 permit 118 ^65000:3_0:192_0:115$ ip community-list expanded c77 permit 119 ^65000:3_0:193_0:116$ ip community-list expanded c77 permit 120 ^65000:3_0:194_0:117$ ip community-list expanded c77 permit 121 ^65000:3_0:195_0:118$ ip community-list expanded c77 permit 122 ^65000:3_0:196_0:119$ ip community-list expanded c77 permit 123 ^65000:3_0:197_0:120$ ip community-list expanded c77 permit 124 ^65000:3_0:198_0:121$ ip community-list expanded c77 permit 125 ^65000:3_0:199_0:122$ ip community-list expanded c77 permit 126 ^65000:3_0:200_0:123$ ip community-list expanded c77 permit 127 ^65000:3_0:201_0:124$ ip community-list expanded c77 permit 128 ^65000:3_0:202_0:125$ ip community-list expanded c77 permit 129 ^65000:3_0:203_0:126$ ip community-list expanded c77 permit 130 ^65000:3_0:204_0:127$ ip community-list expanded c77 permit 131 ^65000:3_0:205_0:128$ ip community-list expanded c77 permit 132 ^65000:3_0:206_0:129$ ip community-list expanded c77 permit 133 ^65000:3_0:207_0:130$ ip community-list expanded c77 permit 134 ^65000:3_0:208_0:131$ ip community-list expanded c77 permit 135 ^65000:3_0:209_0:132$ ip community-list expanded c77 permit 136 ^65000:3_0:210_0:133$ ip community-list expanded c77 permit 137 ^65000:3_0:211_0:134$ ip community-list expanded c77 permit 138 ^65000:3_0:212_0:135$ ip community-list expanded c77 permit 139 ^65000:3_0:213_0:136$ ip community-list expanded c77 permit 140 ^65000:3_0:214_0:137$ ip community-list expanded c77 permit 141 ^65000:3_0:215_0:138$ ip community-list expanded c77 permit 142 ^65000:3_0:216_0:139$ ip community-list expanded c77 permit 143 ^65000:3_0:217_0:140$ ip community-list expanded c77 permit 144 ^65000:3_0:218_0:141$ ip community-list expanded c77 permit 145 ^65000:3_0:219_0:142$ ip community-list expanded c77 permit 146 ^65000:3_0:220_0:143$ ip community-list expanded c77 permit 147 ^65000:3_0:221_0:144$ ip community-list expanded c77 permit 148 ^65000:3_0:222_0:145$ ip community-list expanded c77 permit 149 ^65000:3_0:223_0:146$ ip community-list expanded c77 permit 150 ^65000:3_0:224_0:147$ ip community-list expanded c77 permit 151 ^65000:3_0:225_0:148$ ip community-list expanded c77 permit 152 ^65000:3_0:226_0:149$ ip community-list expanded c77 permit 153 ^65000:3_0:227_0:150$ ip community-list expanded c77 permit 154 ^65000:3_0:228_0:151$ ip community-list expanded c77 permit 155 ^65000:3_0:229_0:152$ ip community-list expanded c77 permit 156 ^65000:3_0:230_0:153$ ip community-list expanded c77 permit 157 ^65000:4_0:231_0:3$ ip community-list expanded c77 permit 158 ^65000:3_0:231_0:154$ ip community-list expanded c77 permit 159 ^65000:4_0:232_0:3$ ip community-list expanded c77 permit 160 ^65000:3_0:232_0:155$ ip community-list expanded c77 permit 161 ^65000:4_0:233_0:3$ ip community-list expanded c77 permit 162 ^65000:3_0:233_0:156$ ip community-list expanded c77 permit 163 ^65000:3_0:234_0:157$ ip community-list expanded c77 permit 164 ^65000:3_0:235_0:158$ ip community-list expanded c77 permit 165 ^65000:3_0:236_0:159$ ip community-list expanded c77 permit 166 ^65000:3_0:237_0:160$ ip community-list expanded c77 permit 167 ^65000:3_0:238_0:161$ ip community-list expanded c77 permit 168 ^65000:3_0:239_0:162$ ip community-list expanded c77 permit 169 ^65000:3_0:240_0:163$ ip community-list expanded c77 permit 170 ^65000:3_0:241_0:164$ ip community-list expanded c77 permit 171 ^65000:3_0:242_0:165$ ip community-list expanded c77 permit 172 ^65000:3_0:243_0:166$ ip community-list expanded c77 permit 173 ^65000:3_0:244_0:167$ ip community-list expanded c77 permit 174 ^65000:3_0:245_0:168$ ip community-list expanded c77 permit 175 ^65000:3_0:246_0:169$ ip community-list expanded c77 permit 176 ^65000:3_0:247_0:170$ ip community-list expanded c77 permit 177 ^65000:3_0:248_0:171$ ip community-list expanded c77 permit 178 ^65000:3_0:249_0:172$ ip community-list expanded c77 permit 179 ^65000:3_0:250_0:173$ ip community-list expanded c77 permit 180 ^65000:3_0:251_0:174$ ip community-list expanded c77 permit 181 ^65000:3_0:252_0:175$ ip community-list expanded c77 permit 182 ^65000:3_0:253_0:176$ ip community-list expanded c77 permit 183 ^65000:3_0:254_0:177$ ip community-list expanded c77 permit 184 ^65000:3_0:255_0:178$ ip community-list expanded c77 permit 185 ^65000:3_0:256_0:179$ route-map calculator permit 6056 match community 1_1_76 2_1_77 1_2_75 1_3_74 1_4_73 set community 0:77 route-map calculator permit 6057 match community 1_5_72 1_6_71 2_7_11 1_7_70 1_8_69 set community 0:77 route-map calculator permit 6058 match community 1_9_68 1_10_67 1_11_66 1_12_65 1_13_64 set community 0:77 route-map calculator permit 6059 match community 1_14_63 1_15_62 1_16_61 1_17_60 1_18_59 set community 0:77 route-map calculator permit 6060 match community 1_19_58 1_20_57 1_21_56 1_22_55 1_23_54 set community 0:77 route-map calculator permit 6061 match community 1_24_53 1_25_52 1_26_51 1_27_50 1_28_49 set community 0:77 route-map calculator permit 6062 match community 1_29_48 1_30_47 1_31_46 1_32_45 1_33_44 set community 0:77 route-map calculator permit 6063 match community 1_34_43 1_35_42 1_36_41 1_37_40 1_38_39 set community 0:77 route-map calculator permit 6064 match community c4_77_1 c3_78_1 c3_79_2 c3_80_3 c3_81_4 set community 0:77 route-map calculator permit 6065 match community c3_82_5 c3_83_6 c3_84_7 c3_85_8 c3_86_9 set community 0:77 route-map calculator permit 6066 match community c3_87_10 c3_88_11 c3_89_12 c3_90_13 c3_91_14 set community 0:77 route-map calculator permit 6067 match community c3_92_15 c3_93_16 c3_94_17 c3_95_18 c3_96_19 set community 0:77 route-map calculator permit 6068 match community c3_97_20 c3_98_21 c3_99_22 c3_100_23 c3_101_24 set community 0:77 route-map calculator permit 6069 match community c3_102_25 c3_103_26 c3_104_27 c3_105_28 c3_106_29 set community 0:77 route-map calculator permit 6070 match community c3_107_30 c3_108_31 c3_109_32 c3_110_33 c3_111_34 set community 0:77 route-map calculator permit 6071 match community c3_112_35 c3_113_36 c3_114_37 c3_115_38 c3_116_39 set community 0:77 route-map calculator permit 6072 match community c3_117_40 c3_118_41 c3_119_42 c3_120_43 c3_121_44 set community 0:77 route-map calculator permit 6073 match community c3_122_45 c3_123_46 c3_124_47 c3_125_48 c3_126_49 set community 0:77 route-map calculator permit 6074 match community c3_127_50 c3_128_51 c3_129_52 c3_130_53 c3_131_54 set community 0:77 route-map calculator permit 6075 match community c3_132_55 c3_133_56 c3_134_57 c3_135_58 c3_136_59 set community 0:77 route-map calculator permit 6076 match community c3_137_60 c3_138_61 c3_139_62 c3_140_63 c3_141_64 set community 0:77 route-map calculator permit 6077 match community c3_142_65 c3_143_66 c3_144_67 c3_145_68 c3_146_69 set community 0:77 route-map calculator permit 6078 match community c3_147_70 c3_148_71 c3_149_72 c3_150_73 c3_151_74 set community 0:77 route-map calculator permit 6079 match community c3_152_75 c3_153_76 c4_154_2 c3_154_77 c4_155_2 set community 0:77 route-map calculator permit 6080 match community c3_155_78 c3_156_79 c3_157_80 c3_158_81 c3_159_82 set community 0:77 route-map calculator permit 6081 match community c3_160_83 c3_161_84 c3_162_85 c3_163_86 c3_164_87 set community 0:77 route-map calculator permit 6082 match community c3_165_88 c3_166_89 c3_167_90 c3_168_91 c3_169_92 set community 0:77 route-map calculator permit 6083 match community c3_170_93 c3_171_94 c3_172_95 c3_173_96 c3_174_97 set community 0:77 route-map calculator permit 6084 match community c3_175_98 c3_176_99 c3_177_100 c3_178_101 c3_179_102 set community 0:77 route-map calculator permit 6085 match community c3_180_103 c3_181_104 c3_182_105 c3_183_106 c3_184_107 set community 0:77 route-map calculator permit 6086 match community c3_185_108 c3_186_109 c3_187_110 c3_188_111 c3_189_112 set community 0:77 route-map calculator permit 6087 match community c3_190_113 c3_191_114 c3_192_115 c3_193_116 c3_194_117 set community 0:77 route-map calculator permit 6088 match community c3_195_118 c3_196_119 c3_197_120 c3_198_121 c3_199_122 set community 0:77 route-map calculator permit 6089 match community c3_200_123 c3_201_124 c3_202_125 c3_203_126 c3_204_127 set community 0:77 route-map calculator permit 6090 match community c3_205_128 c3_206_129 c3_207_130 c3_208_131 c3_209_132 set community 0:77 route-map calculator permit 6091 match community c3_210_133 c3_211_134 c3_212_135 c3_213_136 c3_214_137 set community 0:77 route-map calculator permit 6092 match community c3_215_138 c3_216_139 c3_217_140 c3_218_141 c3_219_142 set community 0:77 route-map calculator permit 6093 match community c3_220_143 c3_221_144 c3_222_145 c3_223_146 c3_224_147 set community 0:77 route-map calculator permit 6094 match community c3_225_148 c3_226_149 c3_227_150 c3_228_151 c3_229_152 set community 0:77 route-map calculator permit 6095 match community c3_230_153 c4_231_3 c3_231_154 c4_232_3 c3_232_155 set community 0:77 route-map calculator permit 6096 match community c4_233_3 c3_233_156 c3_234_157 c3_235_158 c3_236_159 set community 0:77 route-map calculator permit 6097 match community c3_237_160 c3_238_161 c3_239_162 c3_240_163 c3_241_164 set community 0:77 route-map calculator permit 6098 match community c3_242_165 c3_243_166 c3_244_167 c3_245_168 c3_246_169 set community 0:77 route-map calculator permit 6099 match community c3_247_170 c3_248_171 c3_249_172 c3_250_173 c3_251_174 set community 0:77 route-map calculator permit 6100 match community c3_252_175 c3_253_176 c3_254_177 c3_255_178 c3_256_179 set community 0:77 ip community-list standard 2_38_228 permit 65000:2 0:38 0:228 ip community-list standard 2_57_152 permit 65000:2 0:57 0:152 ip community-list standard 2_76_114 permit 65000:2 0:76 0:114 route-map calculator permit 6101 match community 2_38_228 2_57_152 2_76_114 set community 0:8664 ip community-list standard 2_201_209 permit 65000:2 0:201 0:209 route-map calculator permit 6102 match community 2_201_209 set community 0:42009 ip community-list standard 2_178_197 permit 65000:2 0:178 0:197 route-map calculator permit 6103 match community 2_178_197 set community 0:35066 ip community-list standard 2_101_139 permit 65000:2 0:101 0:139 route-map calculator permit 6104 match community 2_101_139 set community 0:14039 ip community-list standard 2_117_157 permit 65000:2 0:117 0:157 route-map calculator permit 6105 match community 2_117_157 set community 0:18369 ip community-list standard 2_102_179 permit 65000:2 0:102 0:179 route-map calculator permit 6106 match community 2_102_179 set community 0:18258 ip community-list standard 2_173_186 permit 65000:2 0:173 0:186 route-map calculator permit 6107 match community 2_173_186 set community 0:32178 ip community-list standard 1_1_208 permit 65000:1 0:1 0:208 ip community-list standard 2_1_209 permit 65000:2 0:1 0:209 ip community-list standard 1_2_207 permit 65000:1 0:2 0:207 ip community-list standard 1_3_206 permit 65000:1 0:3 0:206 ip community-list standard 1_4_205 permit 65000:1 0:4 0:205 ip community-list standard 1_5_204 permit 65000:1 0:5 0:204 ip community-list standard 1_6_203 permit 65000:1 0:6 0:203 ip community-list standard 1_7_202 permit 65000:1 0:7 0:202 ip community-list standard 1_8_201 permit 65000:1 0:8 0:201 ip community-list standard 1_9_200 permit 65000:1 0:9 0:200 ip community-list standard 1_10_199 permit 65000:1 0:10 0:199 ip community-list standard 2_11_19 permit 65000:2 0:11 0:19 ip community-list standard 1_11_198 permit 65000:1 0:11 0:198 ip community-list standard 1_12_197 permit 65000:1 0:12 0:197 ip community-list standard 1_13_196 permit 65000:1 0:13 0:196 ip community-list standard 1_14_195 permit 65000:1 0:14 0:195 ip community-list standard 1_15_194 permit 65000:1 0:15 0:194 ip community-list standard 1_16_193 permit 65000:1 0:16 0:193 ip community-list standard 1_17_192 permit 65000:1 0:17 0:192 ip community-list standard 1_18_191 permit 65000:1 0:18 0:191 ip community-list standard 1_19_190 permit 65000:1 0:19 0:190 ip community-list standard 1_20_189 permit 65000:1 0:20 0:189 ip community-list standard 1_21_188 permit 65000:1 0:21 0:188 ip community-list standard 1_22_187 permit 65000:1 0:22 0:187 ip community-list standard 1_23_186 permit 65000:1 0:23 0:186 ip community-list standard 1_24_185 permit 65000:1 0:24 0:185 ip community-list standard 1_25_184 permit 65000:1 0:25 0:184 ip community-list standard 1_26_183 permit 65000:1 0:26 0:183 ip community-list standard 1_27_182 permit 65000:1 0:27 0:182 ip community-list standard 1_28_181 permit 65000:1 0:28 0:181 ip community-list standard 1_29_180 permit 65000:1 0:29 0:180 ip community-list standard 1_30_179 permit 65000:1 0:30 0:179 ip community-list standard 1_31_178 permit 65000:1 0:31 0:178 ip community-list standard 1_32_177 permit 65000:1 0:32 0:177 ip community-list standard 1_33_176 permit 65000:1 0:33 0:176 ip community-list standard 1_34_175 permit 65000:1 0:34 0:175 ip community-list standard 1_35_174 permit 65000:1 0:35 0:174 ip community-list standard 1_36_173 permit 65000:1 0:36 0:173 ip community-list standard 1_37_172 permit 65000:1 0:37 0:172 ip community-list standard 1_38_171 permit 65000:1 0:38 0:171 ip community-list standard 1_39_170 permit 65000:1 0:39 0:170 ip community-list standard 1_40_169 permit 65000:1 0:40 0:169 ip community-list standard 1_41_168 permit 65000:1 0:41 0:168 ip community-list standard 1_42_167 permit 65000:1 0:42 0:167 ip community-list standard 1_43_166 permit 65000:1 0:43 0:166 ip community-list standard 1_44_165 permit 65000:1 0:44 0:165 ip community-list standard 1_45_164 permit 65000:1 0:45 0:164 ip community-list standard 1_46_163 permit 65000:1 0:46 0:163 ip community-list standard 1_47_162 permit 65000:1 0:47 0:162 ip community-list standard 1_48_161 permit 65000:1 0:48 0:161 ip community-list standard 1_49_160 permit 65000:1 0:49 0:160 ip community-list standard 1_50_159 permit 65000:1 0:50 0:159 ip community-list standard 1_51_158 permit 65000:1 0:51 0:158 ip community-list standard 1_52_157 permit 65000:1 0:52 0:157 ip community-list standard 1_53_156 permit 65000:1 0:53 0:156 ip community-list standard 1_54_155 permit 65000:1 0:54 0:155 ip community-list standard 1_55_154 permit 65000:1 0:55 0:154 ip community-list standard 1_56_153 permit 65000:1 0:56 0:153 ip community-list standard 1_57_152 permit 65000:1 0:57 0:152 ip community-list standard 1_58_151 permit 65000:1 0:58 0:151 ip community-list standard 1_59_150 permit 65000:1 0:59 0:150 ip community-list standard 1_60_149 permit 65000:1 0:60 0:149 ip community-list standard 1_61_148 permit 65000:1 0:61 0:148 ip community-list standard 1_62_147 permit 65000:1 0:62 0:147 ip community-list standard 1_63_146 permit 65000:1 0:63 0:146 ip community-list standard 1_64_145 permit 65000:1 0:64 0:145 ip community-list standard 1_65_144 permit 65000:1 0:65 0:144 ip community-list standard 1_66_143 permit 65000:1 0:66 0:143 ip community-list standard 1_67_142 permit 65000:1 0:67 0:142 ip community-list standard 1_68_141 permit 65000:1 0:68 0:141 ip community-list standard 1_69_140 permit 65000:1 0:69 0:140 ip community-list standard 1_70_139 permit 65000:1 0:70 0:139 ip community-list standard 1_71_138 permit 65000:1 0:71 0:138 ip community-list standard 1_72_137 permit 65000:1 0:72 0:137 ip community-list standard 1_73_136 permit 65000:1 0:73 0:136 ip community-list standard 1_74_135 permit 65000:1 0:74 0:135 ip community-list standard 1_75_134 permit 65000:1 0:75 0:134 ip community-list standard 1_76_133 permit 65000:1 0:76 0:133 ip community-list standard 1_77_132 permit 65000:1 0:77 0:132 ip community-list standard 1_78_131 permit 65000:1 0:78 0:131 ip community-list standard 1_79_130 permit 65000:1 0:79 0:130 ip community-list standard 1_80_129 permit 65000:1 0:80 0:129 ip community-list standard 1_81_128 permit 65000:1 0:81 0:128 ip community-list standard 1_82_127 permit 65000:1 0:82 0:127 ip community-list standard 1_83_126 permit 65000:1 0:83 0:126 ip community-list standard 1_84_125 permit 65000:1 0:84 0:125 ip community-list standard 1_85_124 permit 65000:1 0:85 0:124 ip community-list standard 1_86_123 permit 65000:1 0:86 0:123 ip community-list standard 1_87_122 permit 65000:1 0:87 0:122 ip community-list standard 1_88_121 permit 65000:1 0:88 0:121 ip community-list standard 1_89_120 permit 65000:1 0:89 0:120 ip community-list standard 1_90_119 permit 65000:1 0:90 0:119 ip community-list standard 1_91_118 permit 65000:1 0:91 0:118 ip community-list standard 1_92_117 permit 65000:1 0:92 0:117 ip community-list standard 1_93_116 permit 65000:1 0:93 0:116 ip community-list standard 1_94_115 permit 65000:1 0:94 0:115 ip community-list standard 1_95_114 permit 65000:1 0:95 0:114 ip community-list standard 1_96_113 permit 65000:1 0:96 0:113 ip community-list standard 1_97_112 permit 65000:1 0:97 0:112 ip community-list standard 1_98_111 permit 65000:1 0:98 0:111 ip community-list standard 1_99_110 permit 65000:1 0:99 0:110 ip community-list standard 1_100_109 permit 65000:1 0:100 0:109 ip community-list standard 1_101_108 permit 65000:1 0:101 0:108 ip community-list standard 1_102_107 permit 65000:1 0:102 0:107 ip community-list standard 1_103_106 permit 65000:1 0:103 0:106 ip community-list standard 1_104_105 permit 65000:1 0:104 0:105 ip community-list expanded c209 permit 1 ^65000:4_0:209_0:1$ ip community-list expanded c209 permit 2 ^65000:3_0:210_0:1$ ip community-list expanded c209 permit 3 ^65000:3_0:211_0:2$ ip community-list expanded c209 permit 4 ^65000:3_0:212_0:3$ ip community-list expanded c209 permit 5 ^65000:3_0:213_0:4$ ip community-list expanded c209 permit 6 ^65000:3_0:214_0:5$ ip community-list expanded c209 permit 7 ^65000:3_0:215_0:6$ ip community-list expanded c209 permit 8 ^65000:3_0:216_0:7$ ip community-list expanded c209 permit 9 ^65000:3_0:217_0:8$ ip community-list expanded c209 permit 10 ^65000:3_0:218_0:9$ ip community-list expanded c209 permit 11 ^65000:3_0:219_0:10$ ip community-list expanded c209 permit 12 ^65000:3_0:220_0:11$ ip community-list expanded c209 permit 13 ^65000:3_0:221_0:12$ ip community-list expanded c209 permit 14 ^65000:3_0:222_0:13$ ip community-list expanded c209 permit 15 ^65000:3_0:223_0:14$ ip community-list expanded c209 permit 16 ^65000:3_0:224_0:15$ ip community-list expanded c209 permit 17 ^65000:3_0:225_0:16$ ip community-list expanded c209 permit 18 ^65000:3_0:226_0:17$ ip community-list expanded c209 permit 19 ^65000:3_0:227_0:18$ ip community-list expanded c209 permit 20 ^65000:3_0:228_0:19$ ip community-list expanded c209 permit 21 ^65000:3_0:229_0:20$ ip community-list expanded c209 permit 22 ^65000:3_0:230_0:21$ ip community-list expanded c209 permit 23 ^65000:3_0:231_0:22$ ip community-list expanded c209 permit 24 ^65000:3_0:232_0:23$ ip community-list expanded c209 permit 25 ^65000:3_0:233_0:24$ ip community-list expanded c209 permit 26 ^65000:3_0:234_0:25$ ip community-list expanded c209 permit 27 ^65000:3_0:235_0:26$ ip community-list expanded c209 permit 28 ^65000:3_0:236_0:27$ ip community-list expanded c209 permit 29 ^65000:3_0:237_0:28$ ip community-list expanded c209 permit 30 ^65000:3_0:238_0:29$ ip community-list expanded c209 permit 31 ^65000:3_0:239_0:30$ ip community-list expanded c209 permit 32 ^65000:3_0:240_0:31$ ip community-list expanded c209 permit 33 ^65000:3_0:241_0:32$ ip community-list expanded c209 permit 34 ^65000:3_0:242_0:33$ ip community-list expanded c209 permit 35 ^65000:3_0:243_0:34$ ip community-list expanded c209 permit 36 ^65000:3_0:244_0:35$ ip community-list expanded c209 permit 37 ^65000:3_0:245_0:36$ ip community-list expanded c209 permit 38 ^65000:3_0:246_0:37$ ip community-list expanded c209 permit 39 ^65000:3_0:247_0:38$ ip community-list expanded c209 permit 40 ^65000:3_0:248_0:39$ ip community-list expanded c209 permit 41 ^65000:3_0:249_0:40$ ip community-list expanded c209 permit 42 ^65000:3_0:250_0:41$ ip community-list expanded c209 permit 43 ^65000:3_0:251_0:42$ ip community-list expanded c209 permit 44 ^65000:3_0:252_0:43$ ip community-list expanded c209 permit 45 ^65000:3_0:253_0:44$ ip community-list expanded c209 permit 46 ^65000:3_0:254_0:45$ ip community-list expanded c209 permit 47 ^65000:3_0:255_0:46$ ip community-list expanded c209 permit 48 ^65000:3_0:256_0:47$ route-map calculator permit 6108 match community 1_1_208 2_1_209 1_2_207 1_3_206 1_4_205 set community 0:209 route-map calculator permit 6109 match community 1_5_204 1_6_203 1_7_202 1_8_201 1_9_200 set community 0:209 route-map calculator permit 6110 match community 1_10_199 2_11_19 1_11_198 1_12_197 1_13_196 set community 0:209 route-map calculator permit 6111 match community 1_14_195 1_15_194 1_16_193 1_17_192 1_18_191 set community 0:209 route-map calculator permit 6112 match community 1_19_190 1_20_189 1_21_188 1_22_187 1_23_186 set community 0:209 route-map calculator permit 6113 match community 1_24_185 1_25_184 1_26_183 1_27_182 1_28_181 set community 0:209 route-map calculator permit 6114 match community 1_29_180 1_30_179 1_31_178 1_32_177 1_33_176 set community 0:209 route-map calculator permit 6115 match community 1_34_175 1_35_174 1_36_173 1_37_172 1_38_171 set community 0:209 route-map calculator permit 6116 match community 1_39_170 1_40_169 1_41_168 1_42_167 1_43_166 set community 0:209 route-map calculator permit 6117 match community 1_44_165 1_45_164 1_46_163 1_47_162 1_48_161 set community 0:209 route-map calculator permit 6118 match community 1_49_160 1_50_159 1_51_158 1_52_157 1_53_156 set community 0:209 route-map calculator permit 6119 match community 1_54_155 1_55_154 1_56_153 1_57_152 1_58_151 set community 0:209 route-map calculator permit 6120 match community 1_59_150 1_60_149 1_61_148 1_62_147 1_63_146 set community 0:209 route-map calculator permit 6121 match community 1_64_145 1_65_144 1_66_143 1_67_142 1_68_141 set community 0:209 route-map calculator permit 6122 match community 1_69_140 1_70_139 1_71_138 1_72_137 1_73_136 set community 0:209 route-map calculator permit 6123 match community 1_74_135 1_75_134 1_76_133 1_77_132 1_78_131 set community 0:209 route-map calculator permit 6124 match community 1_79_130 1_80_129 1_81_128 1_82_127 1_83_126 set community 0:209 route-map calculator permit 6125 match community 1_84_125 1_85_124 1_86_123 1_87_122 1_88_121 set community 0:209 route-map calculator permit 6126 match community 1_89_120 1_90_119 1_91_118 1_92_117 1_93_116 set community 0:209 route-map calculator permit 6127 match community 1_94_115 1_95_114 1_96_113 1_97_112 1_98_111 set community 0:209 route-map calculator permit 6128 match community 1_99_110 1_100_109 1_101_108 1_102_107 1_103_106 set community 0:209 route-map calculator permit 6129 match community 1_104_105 c4_209_1 c3_210_1 c3_211_2 c3_212_3 set community 0:209 route-map calculator permit 6130 match community c3_213_4 c3_214_5 c3_215_6 c3_216_7 c3_217_8 set community 0:209 route-map calculator permit 6131 match community c3_218_9 c3_219_10 c3_220_11 c3_221_12 c3_222_13 set community 0:209 route-map calculator permit 6132 match community c3_223_14 c3_224_15 c3_225_16 c3_226_17 c3_227_18 set community 0:209 route-map calculator permit 6133 match community c3_228_19 c3_229_20 c3_230_21 c3_231_22 c3_232_23 set community 0:209 route-map calculator permit 6134 match community c3_233_24 c3_234_25 c3_235_26 c3_236_27 c3_237_28 set community 0:209 route-map calculator permit 6135 match community c3_238_29 c3_239_30 c3_240_31 c3_241_32 c3_242_33 set community 0:209 route-map calculator permit 6136 match community c3_243_34 c3_244_35 c3_245_36 c3_246_37 c3_247_38 set community 0:209 route-map calculator permit 6137 match community c3_248_39 c3_249_40 c3_250_41 c3_251_42 c3_252_43 set community 0:209 route-map calculator permit 6138 match community c3_253_44 c3_254_45 c3_255_46 c3_256_47 set community 0:209 ip community-list standard 2_181_218 permit 65000:2 0:181 0:218 route-map calculator permit 6139 match community 2_181_218 set community 0:39458 ip community-list standard 2_110_224 permit 65000:2 0:110 0:224 ip community-list standard 2_112_220 permit 65000:2 0:112 0:220 ip community-list standard 2_140_176 permit 65000:2 0:140 0:176 ip community-list standard 2_154_160 permit 65000:2 0:154 0:160 route-map calculator permit 6140 match community 2_110_224 2_112_220 2_140_176 2_154_160 set community 0:24640 ip community-list standard 2_89_145 permit 65000:2 0:89 0:145 route-map calculator permit 6141 match community 2_89_145 set community 0:12905 ip community-list standard 2_142_211 permit 65000:2 0:142 0:211 route-map calculator permit 6142 match community 2_142_211 set community 0:29962 ip community-list standard 2_19_82 permit 65000:2 0:19 0:82 ip community-list standard 2_38_41 permit 65000:2 0:38 0:41 route-map calculator permit 6143 match community 2_19_82 2_38_41 set community 0:1558 ip community-list standard 2_52_227 permit 65000:2 0:52 0:227 route-map calculator permit 6144 match community 2_52_227 set community 0:11804 ip community-list standard 2_178_252 permit 65000:2 0:178 0:252 route-map calculator permit 6145 match community 2_178_252 set community 0:44856 ip community-list standard 2_74_256 permit 65000:2 0:74 0:256 ip community-list standard 2_128_148 permit 65000:2 0:128 0:148 route-map calculator permit 6146 match community 2_74_256 2_128_148 set community 0:18944 ip community-list standard 2_102_223 permit 65000:2 0:102 0:223 route-map calculator permit 6147 match community 2_102_223 set community 0:22746 ip community-list standard 2_53_190 permit 65000:2 0:53 0:190 ip community-list standard 2_95_106 permit 65000:2 0:95 0:106 route-map calculator permit 6148 match community 2_53_190 2_95_106 set community 0:10070 ip community-list standard 2_124_191 permit 65000:2 0:124 0:191 route-map calculator permit 6149 match community 2_124_191 set community 0:23684 ip community-list standard 2_124_233 permit 65000:2 0:124 0:233 route-map calculator permit 6150 match community 2_124_233 set community 0:28892 ip community-list standard 2_10_242 permit 65000:2 0:10 0:242 ip community-list standard 2_11_220 permit 65000:2 0:11 0:220 ip community-list standard 2_20_121 permit 65000:2 0:20 0:121 ip community-list standard 2_22_110 permit 65000:2 0:22 0:110 ip community-list standard 2_44_55 permit 65000:2 0:44 0:55 route-map calculator permit 6151 match community 2_10_242 2_11_220 2_20_121 2_22_110 2_44_55 set community 0:2420 ip community-list standard 2_141_246 permit 65000:2 0:141 0:246 route-map calculator permit 6152 match community 2_141_246 set community 0:34686 ip community-list standard 2_226_235 permit 65000:2 0:226 0:235 route-map calculator permit 6153 match community 2_226_235 set community 0:53110 ip community-list standard 2_209_233 permit 65000:2 0:209 0:233 route-map calculator permit 6154 match community 2_209_233 set community 0:48697 ip community-list standard 2_186_255 permit 65000:2 0:186 0:255 route-map calculator permit 6155 match community 2_186_255 set community 0:47430 ip community-list standard 2_218_223 permit 65000:2 0:218 0:223 route-map calculator permit 6156 match community 2_218_223 set community 0:48614 ip community-list standard 2_138_249 permit 65000:2 0:138 0:249 ip community-list standard 2_166_207 permit 65000:2 0:166 0:207 route-map calculator permit 6157 match community 2_138_249 2_166_207 set community 0:34362 ip community-list standard 2_99_237 permit 65000:2 0:99 0:237 route-map calculator permit 6158 match community 2_99_237 set community 0:23463 ip community-list standard 2_14_214 permit 65000:2 0:14 0:214 ip community-list standard 2_28_107 permit 65000:2 0:28 0:107 route-map calculator permit 6159 match community 2_14_214 2_28_107 set community 0:2996 ip community-list standard 2_21_243 permit 65000:2 0:21 0:243 ip community-list standard 2_27_189 permit 65000:2 0:27 0:189 ip community-list standard 2_63_81 permit 65000:2 0:63 0:81 route-map calculator permit 6160 match community 2_21_243 2_27_189 2_63_81 set community 0:5103 ip community-list standard 2_82_197 permit 65000:2 0:82 0:197 route-map calculator permit 6161 match community 2_82_197 set community 0:16154 ip community-list standard 2_57_127 permit 65000:2 0:57 0:127 route-map calculator permit 6162 match community 2_57_127 set community 0:7239 ip community-list standard 2_114_240 permit 65000:2 0:114 0:240 ip community-list standard 2_120_228 permit 65000:2 0:120 0:228 ip community-list standard 2_144_190 permit 65000:2 0:144 0:190 ip community-list standard 2_152_180 permit 65000:2 0:152 0:180 ip community-list standard 2_160_171 permit 65000:2 0:160 0:171 route-map calculator permit 6163 match community 2_114_240 2_120_228 2_144_190 2_152_180 2_160_171 set community 0:27360 ip community-list standard 2_86_220 permit 65000:2 0:86 0:220 ip community-list standard 2_88_215 permit 65000:2 0:88 0:215 ip community-list standard 2_110_172 permit 65000:2 0:110 0:172 route-map calculator permit 6164 match community 2_86_220 2_88_215 2_110_172 set community 0:18920 ip community-list standard 2_22_246 permit 65000:2 0:22 0:246 ip community-list standard 2_33_164 permit 65000:2 0:33 0:164 ip community-list standard 2_41_132 permit 65000:2 0:41 0:132 ip community-list standard 2_44_123 permit 65000:2 0:44 0:123 ip community-list standard 2_66_82 permit 65000:2 0:66 0:82 route-map calculator permit 6165 match community 2_22_246 2_33_164 2_41_132 2_44_123 2_66_82 set community 0:5412 ip community-list standard 2_112_254 permit 65000:2 0:112 0:254 ip community-list standard 2_127_224 permit 65000:2 0:127 0:224 route-map calculator permit 6166 match community 2_112_254 2_127_224 set community 0:28448 ip community-list standard 2_162_194 permit 65000:2 0:162 0:194 route-map calculator permit 6167 match community 2_162_194 set community 0:31428 ip community-list standard 2_169_251 permit 65000:2 0:169 0:251 route-map calculator permit 6168 match community 2_169_251 set community 0:42419 ip community-list standard 2_27_93 permit 65000:2 0:27 0:93 ip community-list standard 2_31_81 permit 65000:2 0:31 0:81 route-map calculator permit 6169 match community 2_27_93 2_31_81 set community 0:2511 ip community-list standard 2_2_200 permit 65000:2 0:2 0:200 ip community-list standard 2_4_100 permit 65000:2 0:4 0:100 ip community-list standard 2_5_80 permit 65000:2 0:5 0:80 ip community-list standard 2_8_50 permit 65000:2 0:8 0:50 ip community-list standard 2_10_40 permit 65000:2 0:10 0:40 ip community-list standard 2_16_25 permit 65000:2 0:16 0:25 ip community-list standard 2_20_20 permit 65000:2 0:20 0:20 ip community-list standard 1_144_256 permit 65000:1 0:144 0:256 ip community-list standard 1_145_255 permit 65000:1 0:145 0:255 ip community-list standard 1_146_254 permit 65000:1 0:146 0:254 ip community-list standard 1_147_253 permit 65000:1 0:147 0:253 ip community-list standard 1_148_252 permit 65000:1 0:148 0:252 ip community-list standard 1_149_251 permit 65000:1 0:149 0:251 ip community-list standard 1_150_250 permit 65000:1 0:150 0:250 ip community-list standard 1_151_249 permit 65000:1 0:151 0:249 ip community-list standard 1_152_248 permit 65000:1 0:152 0:248 ip community-list standard 1_153_247 permit 65000:1 0:153 0:247 ip community-list standard 1_154_246 permit 65000:1 0:154 0:246 ip community-list standard 1_155_245 permit 65000:1 0:155 0:245 ip community-list standard 1_156_244 permit 65000:1 0:156 0:244 ip community-list standard 1_157_243 permit 65000:1 0:157 0:243 ip community-list standard 1_158_242 permit 65000:1 0:158 0:242 ip community-list standard 1_159_241 permit 65000:1 0:159 0:241 ip community-list standard 1_160_240 permit 65000:1 0:160 0:240 ip community-list standard 1_161_239 permit 65000:1 0:161 0:239 ip community-list standard 1_162_238 permit 65000:1 0:162 0:238 ip community-list standard 1_163_237 permit 65000:1 0:163 0:237 ip community-list standard 1_164_236 permit 65000:1 0:164 0:236 ip community-list standard 1_165_235 permit 65000:1 0:165 0:235 ip community-list standard 1_166_234 permit 65000:1 0:166 0:234 ip community-list standard 1_167_233 permit 65000:1 0:167 0:233 ip community-list standard 1_168_232 permit 65000:1 0:168 0:232 ip community-list standard 1_169_231 permit 65000:1 0:169 0:231 ip community-list standard 1_170_230 permit 65000:1 0:170 0:230 ip community-list standard 1_171_229 permit 65000:1 0:171 0:229 ip community-list standard 1_172_228 permit 65000:1 0:172 0:228 ip community-list standard 1_173_227 permit 65000:1 0:173 0:227 ip community-list standard 1_174_226 permit 65000:1 0:174 0:226 ip community-list standard 1_175_225 permit 65000:1 0:175 0:225 ip community-list standard 1_176_224 permit 65000:1 0:176 0:224 ip community-list standard 1_177_223 permit 65000:1 0:177 0:223 ip community-list standard 1_178_222 permit 65000:1 0:178 0:222 ip community-list standard 1_179_221 permit 65000:1 0:179 0:221 ip community-list standard 1_180_220 permit 65000:1 0:180 0:220 ip community-list standard 1_181_219 permit 65000:1 0:181 0:219 ip community-list standard 1_182_218 permit 65000:1 0:182 0:218 ip community-list standard 1_183_217 permit 65000:1 0:183 0:217 ip community-list standard 1_184_216 permit 65000:1 0:184 0:216 ip community-list standard 1_185_215 permit 65000:1 0:185 0:215 ip community-list standard 1_186_214 permit 65000:1 0:186 0:214 ip community-list standard 1_187_213 permit 65000:1 0:187 0:213 ip community-list standard 1_188_212 permit 65000:1 0:188 0:212 ip community-list standard 1_189_211 permit 65000:1 0:189 0:211 ip community-list standard 1_190_210 permit 65000:1 0:190 0:210 ip community-list standard 1_191_209 permit 65000:1 0:191 0:209 ip community-list standard 1_192_208 permit 65000:1 0:192 0:208 ip community-list standard 1_193_207 permit 65000:1 0:193 0:207 ip community-list standard 1_194_206 permit 65000:1 0:194 0:206 ip community-list standard 1_195_205 permit 65000:1 0:195 0:205 ip community-list standard 1_196_204 permit 65000:1 0:196 0:204 ip community-list standard 1_197_203 permit 65000:1 0:197 0:203 ip community-list standard 1_198_202 permit 65000:1 0:198 0:202 ip community-list standard 1_199_201 permit 65000:1 0:199 0:201 ip community-list standard 1_200_200 permit 65000:1 0:200 0:200 route-map calculator permit 6170 match community 2_2_200 2_4_100 2_5_80 2_8_50 2_10_40 set community 0:400 route-map calculator permit 6171 match community 2_16_25 2_20_20 1_144_256 1_145_255 1_146_254 set community 0:400 route-map calculator permit 6172 match community 1_147_253 1_148_252 1_149_251 1_150_250 1_151_249 set community 0:400 route-map calculator permit 6173 match community 1_152_248 1_153_247 1_154_246 1_155_245 1_156_244 set community 0:400 route-map calculator permit 6174 match community 1_157_243 1_158_242 1_159_241 1_160_240 1_161_239 set community 0:400 route-map calculator permit 6175 match community 1_162_238 1_163_237 1_164_236 1_165_235 1_166_234 set community 0:400 route-map calculator permit 6176 match community 1_167_233 1_168_232 1_169_231 1_170_230 1_171_229 set community 0:400 route-map calculator permit 6177 match community 1_172_228 1_173_227 1_174_226 1_175_225 1_176_224 set community 0:400 route-map calculator permit 6178 match community 1_177_223 1_178_222 1_179_221 1_180_220 1_181_219 set community 0:400 route-map calculator permit 6179 match community 1_182_218 1_183_217 1_184_216 1_185_215 1_186_214 set community 0:400 route-map calculator permit 6180 match community 1_187_213 1_188_212 1_189_211 1_190_210 1_191_209 set community 0:400 route-map calculator permit 6181 match community 1_192_208 1_193_207 1_194_206 1_195_205 1_196_204 set community 0:400 route-map calculator permit 6182 match community 1_197_203 1_198_202 1_199_201 1_200_200 set community 0:400 ip community-list standard 2_12_163 permit 65000:2 0:12 0:163 route-map calculator permit 6183 match community 2_12_163 set community 0:1956 ip community-list standard 2_200_221 permit 65000:2 0:200 0:221 route-map calculator permit 6184 match community 2_200_221 set community 0:44200 ip community-list standard 2_80_205 permit 65000:2 0:80 0:205 ip community-list standard 2_82_200 permit 65000:2 0:82 0:200 ip community-list standard 2_100_164 permit 65000:2 0:100 0:164 route-map calculator permit 6185 match community 2_80_205 2_82_200 2_100_164 set community 0:16400 ip community-list standard 2_177_230 permit 65000:2 0:177 0:230 route-map calculator permit 6186 match community 2_177_230 set community 0:40710 ip community-list standard 2_83_113 permit 65000:2 0:83 0:113 route-map calculator permit 6187 match community 2_83_113 set community 0:9379 ip community-list standard 2_134_148 permit 65000:2 0:134 0:148 route-map calculator permit 6188 match community 2_134_148 set community 0:19832 ip community-list standard 2_23_146 permit 65000:2 0:23 0:146 ip community-list standard 2_46_73 permit 65000:2 0:46 0:73 route-map calculator permit 6189 match community 2_23_146 2_46_73 set community 0:3358 ip community-list standard 2_129_255 permit 65000:2 0:129 0:255 ip community-list standard 2_153_215 permit 65000:2 0:153 0:215 route-map calculator permit 6190 match community 2_129_255 2_153_215 set community 0:32895 ip community-list standard 2_42_167 permit 65000:2 0:42 0:167 route-map calculator permit 6191 match community 2_42_167 set community 0:7014 ip community-list standard 2_59_157 permit 65000:2 0:59 0:157 route-map calculator permit 6192 match community 2_59_157 set community 0:9263 ip community-list standard 2_19_122 permit 65000:2 0:19 0:122 ip community-list standard 2_38_61 permit 65000:2 0:38 0:61 route-map calculator permit 6193 match community 2_19_122 2_38_61 set community 0:2318 ip community-list standard 2_39_194 permit 65000:2 0:39 0:194 ip community-list standard 2_78_97 permit 65000:2 0:78 0:97 route-map calculator permit 6194 match community 2_39_194 2_78_97 set community 0:7566 ip community-list standard 2_85_133 permit 65000:2 0:85 0:133 ip community-list standard 2_95_119 permit 65000:2 0:95 0:119 route-map calculator permit 6195 match community 2_85_133 2_95_119 set community 0:11305 ip community-list standard 2_68_250 permit 65000:2 0:68 0:250 ip community-list standard 2_85_200 permit 65000:2 0:85 0:200 ip community-list standard 2_100_170 permit 65000:2 0:100 0:170 ip community-list standard 2_125_136 permit 65000:2 0:125 0:136 route-map calculator permit 6196 match community 2_68_250 2_85_200 2_100_170 2_125_136 set community 0:17000 ip community-list standard 2_193_225 permit 65000:2 0:193 0:225 route-map calculator permit 6197 match community 2_193_225 set community 0:43425 ip community-list standard 2_54_226 permit 65000:2 0:54 0:226 ip community-list standard 2_108_113 permit 65000:2 0:108 0:113 route-map calculator permit 6198 match community 2_54_226 2_108_113 set community 0:12204 ip community-list standard 2_113_211 permit 65000:2 0:113 0:211 route-map calculator permit 6199 match community 2_113_211 set community 0:23843 ip community-list standard 2_87_177 permit 65000:2 0:87 0:177 route-map calculator permit 6200 match community 2_87_177 set community 0:15399 ip community-list standard 2_14_236 permit 65000:2 0:14 0:236 ip community-list standard 2_28_118 permit 65000:2 0:28 0:118 ip community-list standard 2_56_59 permit 65000:2 0:56 0:59 route-map calculator permit 6201 match community 2_14_236 2_28_118 2_56_59 set community 0:3304 ip community-list standard 2_69_113 permit 65000:2 0:69 0:113 route-map calculator permit 6202 match community 2_69_113 set community 0:7797 ip community-list standard 2_3_199 permit 65000:2 0:3 0:199 route-map calculator permit 6203 match community 2_3_199 set community 0:597 ip community-list standard 2_80_206 permit 65000:2 0:80 0:206 ip community-list standard 2_103_160 permit 65000:2 0:103 0:160 route-map calculator permit 6204 match community 2_80_206 2_103_160 set community 0:16480 ip community-list standard 2_20_252 permit 65000:2 0:20 0:252 ip community-list standard 2_21_240 permit 65000:2 0:21 0:240 ip community-list standard 2_24_210 permit 65000:2 0:24 0:210 ip community-list standard 2_28_180 permit 65000:2 0:28 0:180 ip community-list standard 2_30_168 permit 65000:2 0:30 0:168 ip community-list standard 2_35_144 permit 65000:2 0:35 0:144 ip community-list standard 2_36_140 permit 65000:2 0:36 0:140 ip community-list standard 2_40_126 permit 65000:2 0:40 0:126 ip community-list standard 2_42_120 permit 65000:2 0:42 0:120 ip community-list standard 2_45_112 permit 65000:2 0:45 0:112 ip community-list standard 2_48_105 permit 65000:2 0:48 0:105 ip community-list standard 2_56_90 permit 65000:2 0:56 0:90 ip community-list standard 2_60_84 permit 65000:2 0:60 0:84 ip community-list standard 2_63_80 permit 65000:2 0:63 0:80 ip community-list standard 2_70_72 permit 65000:2 0:70 0:72 route-map calculator permit 6205 match community 2_20_252 2_21_240 2_24_210 2_28_180 2_30_168 set community 0:5040 route-map calculator permit 6206 match community 2_35_144 2_36_140 2_40_126 2_42_120 2_45_112 set community 0:5040 route-map calculator permit 6207 match community 2_48_105 2_56_90 2_60_84 2_63_80 2_70_72 set community 0:5040 ip community-list standard 2_6_250 permit 65000:2 0:6 0:250 ip community-list standard 2_10_150 permit 65000:2 0:10 0:150 ip community-list standard 2_12_125 permit 65000:2 0:12 0:125 ip community-list standard 2_15_100 permit 65000:2 0:15 0:100 ip community-list standard 2_20_75 permit 65000:2 0:20 0:75 ip community-list standard 2_25_60 permit 65000:2 0:25 0:60 ip community-list standard 2_30_50 permit 65000:2 0:30 0:50 route-map calculator permit 6208 match community 2_6_250 2_10_150 2_12_125 2_15_100 2_20_75 set community 0:1500 route-map calculator permit 6209 match community 2_25_60 2_30_50 set community 0:1500 ip community-list standard 2_187_226 permit 65000:2 0:187 0:226 route-map calculator permit 6210 match community 2_187_226 set community 0:42262 ip community-list standard 2_113_255 permit 65000:2 0:113 0:255 route-map calculator permit 6211 match community 2_113_255 set community 0:28815 ip community-list standard 2_217_222 permit 65000:2 0:217 0:222 route-map calculator permit 6212 match community 2_217_222 set community 0:48174 ip community-list standard 2_13_137 permit 65000:2 0:13 0:137 route-map calculator permit 6213 match community 2_13_137 set community 0:1781 ip community-list standard 2_7_237 permit 65000:2 0:7 0:237 ip community-list standard 2_21_79 permit 65000:2 0:21 0:79 route-map calculator permit 6214 match community 2_7_237 2_21_79 set community 0:1659 ip community-list standard 2_42_254 permit 65000:2 0:42 0:254 ip community-list standard 2_84_127 permit 65000:2 0:84 0:127 route-map calculator permit 6215 match community 2_42_254 2_84_127 set community 0:10668 ip community-list standard 2_42_189 permit 65000:2 0:42 0:189 ip community-list standard 2_49_162 permit 65000:2 0:49 0:162 ip community-list standard 2_54_147 permit 65000:2 0:54 0:147 ip community-list standard 2_63_126 permit 65000:2 0:63 0:126 ip community-list standard 2_81_98 permit 65000:2 0:81 0:98 route-map calculator permit 6216 match community 2_42_189 2_49_162 2_54_147 2_63_126 2_81_98 set community 0:7938 ip community-list standard 2_48_213 permit 65000:2 0:48 0:213 ip community-list standard 2_71_144 permit 65000:2 0:71 0:144 ip community-list standard 2_72_142 permit 65000:2 0:72 0:142 route-map calculator permit 6217 match community 2_48_213 2_71_144 2_72_142 set community 0:10224 ip community-list standard 2_188_236 permit 65000:2 0:188 0:236 route-map calculator permit 6218 match community 2_188_236 set community 0:44368 ip community-list standard 2_18_248 permit 65000:2 0:18 0:248 ip community-list standard 2_24_186 permit 65000:2 0:24 0:186 ip community-list standard 2_31_144 permit 65000:2 0:31 0:144 ip community-list standard 2_36_124 permit 65000:2 0:36 0:124 ip community-list standard 2_48_93 permit 65000:2 0:48 0:93 ip community-list standard 2_62_72 permit 65000:2 0:62 0:72 route-map calculator permit 6219 match community 2_18_248 2_24_186 2_31_144 2_36_124 2_48_93 set community 0:4464 route-map calculator permit 6220 match community 2_62_72 set community 0:4464 ip community-list standard 2_201_216 permit 65000:2 0:201 0:216 route-map calculator permit 6221 match community 2_201_216 set community 0:43416 ip community-list standard 1_111_256 permit 65000:1 0:111 0:256 ip community-list standard 1_112_255 permit 65000:1 0:112 0:255 ip community-list standard 1_113_254 permit 65000:1 0:113 0:254 ip community-list standard 1_114_253 permit 65000:1 0:114 0:253 ip community-list standard 1_115_252 permit 65000:1 0:115 0:252 ip community-list standard 1_116_251 permit 65000:1 0:116 0:251 ip community-list standard 1_117_250 permit 65000:1 0:117 0:250 ip community-list standard 1_118_249 permit 65000:1 0:118 0:249 ip community-list standard 1_119_248 permit 65000:1 0:119 0:248 ip community-list standard 1_120_247 permit 65000:1 0:120 0:247 ip community-list standard 1_121_246 permit 65000:1 0:121 0:246 ip community-list standard 1_122_245 permit 65000:1 0:122 0:245 ip community-list standard 1_123_244 permit 65000:1 0:123 0:244 ip community-list standard 1_124_243 permit 65000:1 0:124 0:243 ip community-list standard 1_125_242 permit 65000:1 0:125 0:242 ip community-list standard 1_126_241 permit 65000:1 0:126 0:241 ip community-list standard 1_127_240 permit 65000:1 0:127 0:240 ip community-list standard 1_128_239 permit 65000:1 0:128 0:239 ip community-list standard 1_129_238 permit 65000:1 0:129 0:238 ip community-list standard 1_130_237 permit 65000:1 0:130 0:237 ip community-list standard 1_131_236 permit 65000:1 0:131 0:236 ip community-list standard 1_132_235 permit 65000:1 0:132 0:235 ip community-list standard 1_133_234 permit 65000:1 0:133 0:234 ip community-list standard 1_134_233 permit 65000:1 0:134 0:233 ip community-list standard 1_135_232 permit 65000:1 0:135 0:232 ip community-list standard 1_136_231 permit 65000:1 0:136 0:231 ip community-list standard 1_137_230 permit 65000:1 0:137 0:230 ip community-list standard 1_138_229 permit 65000:1 0:138 0:229 ip community-list standard 1_139_228 permit 65000:1 0:139 0:228 ip community-list standard 1_140_227 permit 65000:1 0:140 0:227 ip community-list standard 1_141_226 permit 65000:1 0:141 0:226 ip community-list standard 1_142_225 permit 65000:1 0:142 0:225 ip community-list standard 1_143_224 permit 65000:1 0:143 0:224 ip community-list standard 1_144_223 permit 65000:1 0:144 0:223 ip community-list standard 1_145_222 permit 65000:1 0:145 0:222 ip community-list standard 1_146_221 permit 65000:1 0:146 0:221 ip community-list standard 1_147_220 permit 65000:1 0:147 0:220 ip community-list standard 1_148_219 permit 65000:1 0:148 0:219 ip community-list standard 1_149_218 permit 65000:1 0:149 0:218 ip community-list standard 1_150_217 permit 65000:1 0:150 0:217 ip community-list standard 1_151_216 permit 65000:1 0:151 0:216 ip community-list standard 1_152_215 permit 65000:1 0:152 0:215 ip community-list standard 1_153_214 permit 65000:1 0:153 0:214 ip community-list standard 1_154_213 permit 65000:1 0:154 0:213 ip community-list standard 1_155_212 permit 65000:1 0:155 0:212 ip community-list standard 1_156_211 permit 65000:1 0:156 0:211 ip community-list standard 1_157_210 permit 65000:1 0:157 0:210 ip community-list standard 1_158_209 permit 65000:1 0:158 0:209 ip community-list standard 1_159_208 permit 65000:1 0:159 0:208 ip community-list standard 1_160_207 permit 65000:1 0:160 0:207 ip community-list standard 1_161_206 permit 65000:1 0:161 0:206 ip community-list standard 1_162_205 permit 65000:1 0:162 0:205 ip community-list standard 1_163_204 permit 65000:1 0:163 0:204 ip community-list standard 1_164_203 permit 65000:1 0:164 0:203 ip community-list standard 1_165_202 permit 65000:1 0:165 0:202 ip community-list standard 1_166_201 permit 65000:1 0:166 0:201 ip community-list standard 1_167_200 permit 65000:1 0:167 0:200 ip community-list standard 1_168_199 permit 65000:1 0:168 0:199 ip community-list standard 1_169_198 permit 65000:1 0:169 0:198 ip community-list standard 1_170_197 permit 65000:1 0:170 0:197 ip community-list standard 1_171_196 permit 65000:1 0:171 0:196 ip community-list standard 1_172_195 permit 65000:1 0:172 0:195 ip community-list standard 1_173_194 permit 65000:1 0:173 0:194 ip community-list standard 1_174_193 permit 65000:1 0:174 0:193 ip community-list standard 1_175_192 permit 65000:1 0:175 0:192 ip community-list standard 1_176_191 permit 65000:1 0:176 0:191 ip community-list standard 1_177_190 permit 65000:1 0:177 0:190 ip community-list standard 1_178_189 permit 65000:1 0:178 0:189 ip community-list standard 1_179_188 permit 65000:1 0:179 0:188 ip community-list standard 1_180_187 permit 65000:1 0:180 0:187 ip community-list standard 1_181_186 permit 65000:1 0:181 0:186 ip community-list standard 1_182_185 permit 65000:1 0:182 0:185 ip community-list standard 1_183_184 permit 65000:1 0:183 0:184 route-map calculator permit 6222 match community 1_111_256 1_112_255 1_113_254 1_114_253 1_115_252 set community 0:367 route-map calculator permit 6223 match community 1_116_251 1_117_250 1_118_249 1_119_248 1_120_247 set community 0:367 route-map calculator permit 6224 match community 1_121_246 1_122_245 1_123_244 1_124_243 1_125_242 set community 0:367 route-map calculator permit 6225 match community 1_126_241 1_127_240 1_128_239 1_129_238 1_130_237 set community 0:367 route-map calculator permit 6226 match community 1_131_236 1_132_235 1_133_234 1_134_233 1_135_232 set community 0:367 route-map calculator permit 6227 match community 1_136_231 1_137_230 1_138_229 1_139_228 1_140_227 set community 0:367 route-map calculator permit 6228 match community 1_141_226 1_142_225 1_143_224 1_144_223 1_145_222 set community 0:367 route-map calculator permit 6229 match community 1_146_221 1_147_220 1_148_219 1_149_218 1_150_217 set community 0:367 route-map calculator permit 6230 match community 1_151_216 1_152_215 1_153_214 1_154_213 1_155_212 set community 0:367 route-map calculator permit 6231 match community 1_156_211 1_157_210 1_158_209 1_159_208 1_160_207 set community 0:367 route-map calculator permit 6232 match community 1_161_206 1_162_205 1_163_204 1_164_203 1_165_202 set community 0:367 route-map calculator permit 6233 match community 1_166_201 1_167_200 1_168_199 1_169_198 1_170_197 set community 0:367 route-map calculator permit 6234 match community 1_171_196 1_172_195 1_173_194 1_174_193 1_175_192 set community 0:367 route-map calculator permit 6235 match community 1_176_191 1_177_190 1_178_189 1_179_188 1_180_187 set community 0:367 route-map calculator permit 6236 match community 1_181_186 1_182_185 1_183_184 set community 0:367 ip community-list standard 2_84_241 permit 65000:2 0:84 0:241 route-map calculator permit 6237 match community 2_84_241 set community 0:20244 ip community-list standard 2_111_215 permit 65000:2 0:111 0:215 ip community-list standard 2_129_185 permit 65000:2 0:129 0:185 route-map calculator permit 6238 match community 2_111_215 2_129_185 set community 0:23865 ip community-list standard 2_67_253 permit 65000:2 0:67 0:253 route-map calculator permit 6239 match community 2_67_253 set community 0:16951 ip community-list standard 2_81_103 permit 65000:2 0:81 0:103 route-map calculator permit 6240 match community 2_81_103 set community 0:8343 ip community-list standard 2_44_208 permit 65000:2 0:44 0:208 ip community-list standard 2_52_176 permit 65000:2 0:52 0:176 ip community-list standard 2_64_143 permit 65000:2 0:64 0:143 ip community-list standard 2_88_104 permit 65000:2 0:88 0:104 route-map calculator permit 6241 match community 2_44_208 2_52_176 2_64_143 2_88_104 set community 0:9152 ip community-list standard 2_64_250 permit 65000:2 0:64 0:250 ip community-list standard 2_80_200 permit 65000:2 0:80 0:200 ip community-list standard 2_100_160 permit 65000:2 0:100 0:160 ip community-list standard 2_125_128 permit 65000:2 0:125 0:128 route-map calculator permit 6242 match community 2_64_250 2_80_200 2_100_160 2_125_128 set community 0:16000 ip community-list standard 2_76_179 permit 65000:2 0:76 0:179 route-map calculator permit 6243 match community 2_76_179 set community 0:13604 ip community-list standard 2_51_246 permit 65000:2 0:51 0:246 ip community-list standard 2_82_153 permit 65000:2 0:82 0:153 ip community-list standard 2_102_123 permit 65000:2 0:102 0:123 route-map calculator permit 6244 match community 2_51_246 2_82_153 2_102_123 set community 0:12546 ip community-list standard 2_148_240 permit 65000:2 0:148 0:240 ip community-list standard 2_160_222 permit 65000:2 0:160 0:222 ip community-list standard 2_185_192 permit 65000:2 0:185 0:192 route-map calculator permit 6245 match community 2_148_240 2_160_222 2_185_192 set community 0:35520 ip community-list standard 2_233_246 permit 65000:2 0:233 0:246 route-map calculator permit 6246 match community 2_233_246 set community 0:57318 ip community-list standard 2_28_172 permit 65000:2 0:28 0:172 ip community-list standard 2_43_112 permit 65000:2 0:43 0:112 ip community-list standard 2_56_86 permit 65000:2 0:56 0:86 route-map calculator permit 6247 match community 2_28_172 2_43_112 2_56_86 set community 0:4816 ip community-list standard 2_164_167 permit 65000:2 0:164 0:167 route-map calculator permit 6248 match community 2_164_167 set community 0:27388 ip community-list standard 2_151_160 permit 65000:2 0:151 0:160 route-map calculator permit 6249 match community 2_151_160 set community 0:24160 ip community-list standard 2_71_77 permit 65000:2 0:71 0:77 route-map calculator permit 6250 match community 2_71_77 set community 0:5467 ip community-list standard 2_74_172 permit 65000:2 0:74 0:172 ip community-list standard 2_86_148 permit 65000:2 0:86 0:148 route-map calculator permit 6251 match community 2_74_172 2_86_148 set community 0:12728 ip community-list standard 2_181_203 permit 65000:2 0:181 0:203 route-map calculator permit 6252 match community 2_181_203 set community 0:36743 ip community-list standard 2_13_205 permit 65000:2 0:13 0:205 ip community-list standard 2_41_65 permit 65000:2 0:41 0:65 route-map calculator permit 6253 match community 2_13_205 2_41_65 set community 0:2665 ip community-list standard 2_139_250 permit 65000:2 0:139 0:250 route-map calculator permit 6254 match community 2_139_250 set community 0:34750 ip community-list standard 2_6_251 permit 65000:2 0:6 0:251 route-map calculator permit 6255 match community 2_6_251 set community 0:1506 ip community-list standard 2_73_170 permit 65000:2 0:73 0:170 ip community-list standard 2_85_146 permit 65000:2 0:85 0:146 route-map calculator permit 6256 match community 2_73_170 2_85_146 set community 0:12410 ip community-list standard 2_116_217 permit 65000:2 0:116 0:217 ip community-list standard 2_124_203 permit 65000:2 0:124 0:203 route-map calculator permit 6257 match community 2_116_217 2_124_203 set community 0:25172 ip community-list standard 2_6_222 permit 65000:2 0:6 0:222 ip community-list standard 2_9_148 permit 65000:2 0:9 0:148 ip community-list standard 2_12_111 permit 65000:2 0:12 0:111 ip community-list standard 2_18_74 permit 65000:2 0:18 0:74 ip community-list standard 2_36_37 permit 65000:2 0:36 0:37 route-map calculator permit 6258 match community 2_6_222 2_9_148 2_12_111 2_18_74 2_36_37 set community 0:1332 ip community-list standard 2_38_193 permit 65000:2 0:38 0:193 route-map calculator permit 6259 match community 2_38_193 set community 0:7334 ip community-list standard 2_152_241 permit 65000:2 0:152 0:241 route-map calculator permit 6260 match community 2_152_241 set community 0:36632 ip community-list standard 2_111_242 permit 65000:2 0:111 0:242 ip community-list standard 2_121_222 permit 65000:2 0:121 0:222 route-map calculator permit 6261 match community 2_111_242 2_121_222 set community 0:26862 ip community-list standard 2_108_211 permit 65000:2 0:108 0:211 route-map calculator permit 6262 match community 2_108_211 set community 0:22788 ip community-list standard 2_103_235 permit 65000:2 0:103 0:235 route-map calculator permit 6263 match community 2_103_235 set community 0:24205 ip community-list standard 2_59_246 permit 65000:2 0:59 0:246 ip community-list standard 2_82_177 permit 65000:2 0:82 0:177 ip community-list standard 2_118_123 permit 65000:2 0:118 0:123 route-map calculator permit 6264 match community 2_59_246 2_82_177 2_118_123 set community 0:14514 ip community-list standard 2_22_185 permit 65000:2 0:22 0:185 ip community-list standard 2_37_110 permit 65000:2 0:37 0:110 ip community-list standard 2_55_74 permit 65000:2 0:55 0:74 route-map calculator permit 6265 match community 2_22_185 2_37_110 2_55_74 set community 0:4070 ip community-list standard 2_67_244 permit 65000:2 0:67 0:244 ip community-list standard 2_122_134 permit 65000:2 0:122 0:134 route-map calculator permit 6266 match community 2_67_244 2_122_134 set community 0:16348 ip community-list standard 2_243_254 permit 65000:2 0:243 0:254 route-map calculator permit 6267 match community 2_243_254 set community 0:61722 ip community-list standard 2_129_229 permit 65000:2 0:129 0:229 route-map calculator permit 6268 match community 2_129_229 set community 0:29541 ip community-list standard 2_232_243 permit 65000:2 0:232 0:243 route-map calculator permit 6269 match community 2_232_243 set community 0:56376 ip community-list standard 2_110_232 permit 65000:2 0:110 0:232 ip community-list standard 2_116_220 permit 65000:2 0:116 0:220 ip community-list standard 2_145_176 permit 65000:2 0:145 0:176 route-map calculator permit 6270 match community 2_110_232 2_116_220 2_145_176 set community 0:25520 ip community-list standard 2_167_211 permit 65000:2 0:167 0:211 route-map calculator permit 6271 match community 2_167_211 set community 0:35237 ip community-list standard 2_72_253 permit 65000:2 0:72 0:253 ip community-list standard 2_88_207 permit 65000:2 0:88 0:207 ip community-list standard 2_92_198 permit 65000:2 0:92 0:198 ip community-list standard 2_99_184 permit 65000:2 0:99 0:184 ip community-list standard 2_132_138 permit 65000:2 0:132 0:138 route-map calculator permit 6272 match community 2_72_253 2_88_207 2_92_198 2_99_184 2_132_138 set community 0:18216 ip community-list standard 2_169_235 permit 65000:2 0:169 0:235 route-map calculator permit 6273 match community 2_169_235 set community 0:39715 ip community-list standard 2_159_163 permit 65000:2 0:159 0:163 route-map calculator permit 6274 match community 2_159_163 set community 0:25917 ip community-list standard 2_79_244 permit 65000:2 0:79 0:244 ip community-list standard 2_122_158 permit 65000:2 0:122 0:158 route-map calculator permit 6275 match community 2_79_244 2_122_158 set community 0:19276 ip community-list standard 2_7_213 permit 65000:2 0:7 0:213 ip community-list standard 2_21_71 permit 65000:2 0:21 0:71 route-map calculator permit 6276 match community 2_7_213 2_21_71 set community 0:1491 ip community-list standard 2_9_165 permit 65000:2 0:9 0:165 ip community-list standard 2_11_135 permit 65000:2 0:11 0:135 ip community-list standard 2_15_99 permit 65000:2 0:15 0:99 ip community-list standard 2_27_55 permit 65000:2 0:27 0:55 ip community-list standard 2_33_45 permit 65000:2 0:33 0:45 route-map calculator permit 6277 match community 2_9_165 2_11_135 2_15_99 2_27_55 2_33_45 set community 0:1485 ip community-list standard 2_22_159 permit 65000:2 0:22 0:159 ip community-list standard 2_33_106 permit 65000:2 0:33 0:106 ip community-list standard 2_53_66 permit 65000:2 0:53 0:66 route-map calculator permit 6278 match community 2_22_159 2_33_106 2_53_66 set community 0:3498 ip community-list standard 2_86_191 permit 65000:2 0:86 0:191 route-map calculator permit 6279 match community 2_86_191 set community 0:16426 ip community-list standard 2_111_249 permit 65000:2 0:111 0:249 route-map calculator permit 6280 match community 2_111_249 set community 0:27639 ip community-list standard 2_141_235 permit 65000:2 0:141 0:235 route-map calculator permit 6281 match community 2_141_235 set community 0:33135 ip community-list standard 2_165_239 permit 65000:2 0:165 0:239 route-map calculator permit 6282 match community 2_165_239 set community 0:39435 ip community-list standard 2_78_215 permit 65000:2 0:78 0:215 ip community-list standard 2_86_195 permit 65000:2 0:86 0:195 ip community-list standard 2_129_130 permit 65000:2 0:129 0:130 route-map calculator permit 6283 match community 2_78_215 2_86_195 2_129_130 set community 0:16770 ip community-list standard 2_119_149 permit 65000:2 0:119 0:149 route-map calculator permit 6284 match community 2_119_149 set community 0:17731 ip community-list standard 2_151_232 permit 65000:2 0:151 0:232 route-map calculator permit 6285 match community 2_151_232 set community 0:35032 ip community-list standard 2_95_236 permit 65000:2 0:95 0:236 ip community-list standard 2_118_190 permit 65000:2 0:118 0:190 route-map calculator permit 6286 match community 2_95_236 2_118_190 set community 0:22420 ip community-list standard 2_112_248 permit 65000:2 0:112 0:248 ip community-list standard 2_124_224 permit 65000:2 0:124 0:224 ip community-list standard 2_128_217 permit 65000:2 0:128 0:217 route-map calculator permit 6287 match community 2_112_248 2_124_224 2_128_217 set community 0:27776 ip community-list standard 2_27_141 permit 65000:2 0:27 0:141 ip community-list standard 2_47_81 permit 65000:2 0:47 0:81 route-map calculator permit 6288 match community 2_27_141 2_47_81 set community 0:3807 ip community-list standard 2_30_181 permit 65000:2 0:30 0:181 route-map calculator permit 6289 match community 2_30_181 set community 0:5430 ip community-list standard 2_8_209 permit 65000:2 0:8 0:209 ip community-list standard 2_11_152 permit 65000:2 0:11 0:152 ip community-list standard 2_19_88 permit 65000:2 0:19 0:88 ip community-list standard 2_22_76 permit 65000:2 0:22 0:76 ip community-list standard 2_38_44 permit 65000:2 0:38 0:44 route-map calculator permit 6290 match community 2_8_209 2_11_152 2_19_88 2_22_76 2_38_44 set community 0:1672 ip community-list standard 2_25_113 permit 65000:2 0:25 0:113 route-map calculator permit 6291 match community 2_25_113 set community 0:2825 ip community-list standard 2_206_246 permit 65000:2 0:206 0:246 route-map calculator permit 6292 match community 2_206_246 set community 0:50676 ip community-list standard 2_53_127 permit 65000:2 0:53 0:127 route-map calculator permit 6293 match community 2_53_127 set community 0:6731 ip community-list standard 2_35_67 permit 65000:2 0:35 0:67 route-map calculator permit 6294 match community 2_35_67 set community 0:2345 ip community-list standard 2_101_219 permit 65000:2 0:101 0:219 route-map calculator permit 6295 match community 2_101_219 set community 0:22119 ip community-list standard 2_106_233 permit 65000:2 0:106 0:233 route-map calculator permit 6296 match community 2_106_233 set community 0:24698 ip community-list standard 2_121_173 permit 65000:2 0:121 0:173 route-map calculator permit 6297 match community 2_121_173 set community 0:20933 ip community-list standard 2_215_222 permit 65000:2 0:215 0:222 route-map calculator permit 6298 match community 2_215_222 set community 0:47730 ip community-list standard 2_133_241 permit 65000:2 0:133 0:241 route-map calculator permit 6299 match community 2_133_241 set community 0:32053 ip community-list standard 2_43_241 permit 65000:2 0:43 0:241 route-map calculator permit 6300 match community 2_43_241 set community 0:10363 ip community-list standard 2_133_172 permit 65000:2 0:133 0:172 route-map calculator permit 6301 match community 2_133_172 set community 0:22876 ip community-list standard 2_120_173 permit 65000:2 0:120 0:173 route-map calculator permit 6302 match community 2_120_173 set community 0:20760 ip community-list standard 2_53_210 permit 65000:2 0:53 0:210 ip community-list standard 2_70_159 permit 65000:2 0:70 0:159 ip community-list standard 2_105_106 permit 65000:2 0:105 0:106 route-map calculator permit 6303 match community 2_53_210 2_70_159 2_105_106 set community 0:11130 ip community-list standard 2_205_252 permit 65000:2 0:205 0:252 ip community-list standard 2_210_246 permit 65000:2 0:210 0:246 route-map calculator permit 6304 match community 2_205_252 2_210_246 set community 0:51660 ip community-list standard 2_106_211 permit 65000:2 0:106 0:211 route-map calculator permit 6305 match community 2_106_211 set community 0:22366 ip community-list standard 2_11_97 permit 65000:2 0:11 0:97 route-map calculator permit 6306 match community 2_11_97 set community 0:1067 ip community-list standard 2_123_189 permit 65000:2 0:123 0:189 route-map calculator permit 6307 match community 2_123_189 set community 0:23247 ip community-list standard 2_13_29 permit 65000:2 0:13 0:29 ip community-list standard 1_121_256 permit 65000:1 0:121 0:256 ip community-list standard 1_122_255 permit 65000:1 0:122 0:255 ip community-list standard 1_123_254 permit 65000:1 0:123 0:254 ip community-list standard 1_124_253 permit 65000:1 0:124 0:253 ip community-list standard 1_125_252 permit 65000:1 0:125 0:252 ip community-list standard 1_126_251 permit 65000:1 0:126 0:251 ip community-list standard 1_127_250 permit 65000:1 0:127 0:250 ip community-list standard 1_128_249 permit 65000:1 0:128 0:249 ip community-list standard 1_129_248 permit 65000:1 0:129 0:248 ip community-list standard 1_130_247 permit 65000:1 0:130 0:247 ip community-list standard 1_131_246 permit 65000:1 0:131 0:246 ip community-list standard 1_132_245 permit 65000:1 0:132 0:245 ip community-list standard 1_133_244 permit 65000:1 0:133 0:244 ip community-list standard 1_134_243 permit 65000:1 0:134 0:243 ip community-list standard 1_135_242 permit 65000:1 0:135 0:242 ip community-list standard 1_136_241 permit 65000:1 0:136 0:241 ip community-list standard 1_137_240 permit 65000:1 0:137 0:240 ip community-list standard 1_138_239 permit 65000:1 0:138 0:239 ip community-list standard 1_139_238 permit 65000:1 0:139 0:238 ip community-list standard 1_140_237 permit 65000:1 0:140 0:237 ip community-list standard 1_141_236 permit 65000:1 0:141 0:236 ip community-list standard 1_142_235 permit 65000:1 0:142 0:235 ip community-list standard 1_143_234 permit 65000:1 0:143 0:234 ip community-list standard 1_144_233 permit 65000:1 0:144 0:233 ip community-list standard 1_145_232 permit 65000:1 0:145 0:232 ip community-list standard 1_146_231 permit 65000:1 0:146 0:231 ip community-list standard 1_147_230 permit 65000:1 0:147 0:230 ip community-list standard 1_148_229 permit 65000:1 0:148 0:229 ip community-list standard 1_149_228 permit 65000:1 0:149 0:228 ip community-list standard 1_150_227 permit 65000:1 0:150 0:227 ip community-list standard 1_151_226 permit 65000:1 0:151 0:226 ip community-list standard 1_152_225 permit 65000:1 0:152 0:225 ip community-list standard 1_153_224 permit 65000:1 0:153 0:224 ip community-list standard 1_154_223 permit 65000:1 0:154 0:223 ip community-list standard 1_155_222 permit 65000:1 0:155 0:222 ip community-list standard 1_156_221 permit 65000:1 0:156 0:221 ip community-list standard 1_157_220 permit 65000:1 0:157 0:220 ip community-list standard 1_158_219 permit 65000:1 0:158 0:219 ip community-list standard 1_159_218 permit 65000:1 0:159 0:218 ip community-list standard 1_160_217 permit 65000:1 0:160 0:217 ip community-list standard 1_161_216 permit 65000:1 0:161 0:216 ip community-list standard 1_162_215 permit 65000:1 0:162 0:215 ip community-list standard 1_163_214 permit 65000:1 0:163 0:214 ip community-list standard 1_164_213 permit 65000:1 0:164 0:213 ip community-list standard 1_165_212 permit 65000:1 0:165 0:212 ip community-list standard 1_166_211 permit 65000:1 0:166 0:211 ip community-list standard 1_167_210 permit 65000:1 0:167 0:210 ip community-list standard 1_168_209 permit 65000:1 0:168 0:209 ip community-list standard 1_169_208 permit 65000:1 0:169 0:208 ip community-list standard 1_170_207 permit 65000:1 0:170 0:207 ip community-list standard 1_171_206 permit 65000:1 0:171 0:206 ip community-list standard 1_172_205 permit 65000:1 0:172 0:205 ip community-list standard 1_173_204 permit 65000:1 0:173 0:204 ip community-list standard 1_174_203 permit 65000:1 0:174 0:203 ip community-list standard 1_175_202 permit 65000:1 0:175 0:202 ip community-list standard 1_176_201 permit 65000:1 0:176 0:201 ip community-list standard 1_177_200 permit 65000:1 0:177 0:200 ip community-list standard 1_178_199 permit 65000:1 0:178 0:199 ip community-list standard 1_179_198 permit 65000:1 0:179 0:198 ip community-list standard 1_180_197 permit 65000:1 0:180 0:197 ip community-list standard 1_181_196 permit 65000:1 0:181 0:196 ip community-list standard 1_182_195 permit 65000:1 0:182 0:195 ip community-list standard 1_183_194 permit 65000:1 0:183 0:194 ip community-list standard 1_184_193 permit 65000:1 0:184 0:193 ip community-list standard 1_185_192 permit 65000:1 0:185 0:192 ip community-list standard 1_186_191 permit 65000:1 0:186 0:191 ip community-list standard 1_187_190 permit 65000:1 0:187 0:190 ip community-list standard 1_188_189 permit 65000:1 0:188 0:189 route-map calculator permit 6308 match community 2_13_29 1_121_256 1_122_255 1_123_254 1_124_253 set community 0:377 route-map calculator permit 6309 match community 1_125_252 1_126_251 1_127_250 1_128_249 1_129_248 set community 0:377 route-map calculator permit 6310 match community 1_130_247 1_131_246 1_132_245 1_133_244 1_134_243 set community 0:377 route-map calculator permit 6311 match community 1_135_242 1_136_241 1_137_240 1_138_239 1_139_238 set community 0:377 route-map calculator permit 6312 match community 1_140_237 1_141_236 1_142_235 1_143_234 1_144_233 set community 0:377 route-map calculator permit 6313 match community 1_145_232 1_146_231 1_147_230 1_148_229 1_149_228 set community 0:377 route-map calculator permit 6314 match community 1_150_227 1_151_226 1_152_225 1_153_224 1_154_223 set community 0:377 route-map calculator permit 6315 match community 1_155_222 1_156_221 1_157_220 1_158_219 1_159_218 set community 0:377 route-map calculator permit 6316 match community 1_160_217 1_161_216 1_162_215 1_163_214 1_164_213 set community 0:377 route-map calculator permit 6317 match community 1_165_212 1_166_211 1_167_210 1_168_209 1_169_208 set community 0:377 route-map calculator permit 6318 match community 1_170_207 1_171_206 1_172_205 1_173_204 1_174_203 set community 0:377 route-map calculator permit 6319 match community 1_175_202 1_176_201 1_177_200 1_178_199 1_179_198 set community 0:377 route-map calculator permit 6320 match community 1_180_197 1_181_196 1_182_195 1_183_194 1_184_193 set community 0:377 route-map calculator permit 6321 match community 1_185_192 1_186_191 1_187_190 1_188_189 set community 0:377 ip community-list standard 2_87_201 permit 65000:2 0:87 0:201 route-map calculator permit 6322 match community 2_87_201 set community 0:17487 ip community-list standard 2_125_139 permit 65000:2 0:125 0:139 route-map calculator permit 6323 match community 2_125_139 set community 0:17375 ip community-list standard 2_10_193 permit 65000:2 0:10 0:193 route-map calculator permit 6324 match community 2_10_193 set community 0:1930 ip community-list standard 2_43_121 permit 65000:2 0:43 0:121 route-map calculator permit 6325 match community 2_43_121 set community 0:5203 ip community-list standard 2_77_231 permit 65000:2 0:77 0:231 ip community-list standard 2_121_147 permit 65000:2 0:121 0:147 route-map calculator permit 6326 match community 2_77_231 2_121_147 set community 0:17787 ip community-list standard 2_206_232 permit 65000:2 0:206 0:232 route-map calculator permit 6327 match community 2_206_232 set community 0:47792 ip community-list standard 2_37_89 permit 65000:2 0:37 0:89 route-map calculator permit 6328 match community 2_37_89 set community 0:3293 ip community-list standard 2_223_245 permit 65000:2 0:223 0:245 route-map calculator permit 6329 match community 2_223_245 set community 0:54635 ip community-list standard 2_16_232 permit 65000:2 0:16 0:232 ip community-list standard 2_29_128 permit 65000:2 0:29 0:128 ip community-list standard 2_32_116 permit 65000:2 0:32 0:116 ip community-list standard 2_58_64 permit 65000:2 0:58 0:64 route-map calculator permit 6330 match community 2_16_232 2_29_128 2_32_116 2_58_64 set community 0:3712 ip community-list standard 2_133_207 permit 65000:2 0:133 0:207 ip community-list standard 2_161_171 permit 65000:2 0:161 0:171 route-map calculator permit 6331 match community 2_133_207 2_161_171 set community 0:27531 ip community-list standard 2_144_237 permit 65000:2 0:144 0:237 ip community-list standard 2_158_216 permit 65000:2 0:158 0:216 route-map calculator permit 6332 match community 2_144_237 2_158_216 set community 0:34128 ip community-list standard 2_19_149 permit 65000:2 0:19 0:149 route-map calculator permit 6333 match community 2_19_149 set community 0:2831 ip community-list standard 2_181_204 permit 65000:2 0:181 0:204 route-map calculator permit 6334 match community 2_181_204 set community 0:36924 ip community-list standard 2_109_232 permit 65000:2 0:109 0:232 ip community-list standard 2_116_218 permit 65000:2 0:116 0:218 route-map calculator permit 6335 match community 2_109_232 2_116_218 set community 0:25288 ip community-list standard 2_165_173 permit 65000:2 0:165 0:173 route-map calculator permit 6336 match community 2_165_173 set community 0:28545 ip community-list standard 2_50_244 permit 65000:2 0:50 0:244 ip community-list standard 2_61_200 permit 65000:2 0:61 0:200 ip community-list standard 2_100_122 permit 65000:2 0:100 0:122 route-map calculator permit 6337 match community 2_50_244 2_61_200 2_100_122 set community 0:12200 ip community-list standard 2_59_242 permit 65000:2 0:59 0:242 ip community-list standard 2_118_121 permit 65000:2 0:118 0:121 route-map calculator permit 6338 match community 2_59_242 2_118_121 set community 0:14278 ip community-list standard 2_139_241 permit 65000:2 0:139 0:241 route-map calculator permit 6339 match community 2_139_241 set community 0:33499 ip community-list standard 2_62_186 permit 65000:2 0:62 0:186 ip community-list standard 2_93_124 permit 65000:2 0:93 0:124 route-map calculator permit 6340 match community 2_62_186 2_93_124 set community 0:11532 ip community-list standard 2_34_194 permit 65000:2 0:34 0:194 ip community-list standard 2_68_97 permit 65000:2 0:68 0:97 route-map calculator permit 6341 match community 2_34_194 2_68_97 set community 0:6596 ip community-list standard 2_217_251 permit 65000:2 0:217 0:251 route-map calculator permit 6342 match community 2_217_251 set community 0:54467 ip community-list standard 2_20_238 permit 65000:2 0:20 0:238 ip community-list standard 2_28_170 permit 65000:2 0:28 0:170 ip community-list standard 2_34_140 permit 65000:2 0:34 0:140 ip community-list standard 2_35_136 permit 65000:2 0:35 0:136 ip community-list standard 2_40_119 permit 65000:2 0:40 0:119 ip community-list standard 2_56_85 permit 65000:2 0:56 0:85 ip community-list standard 2_68_70 permit 65000:2 0:68 0:70 route-map calculator permit 6343 match community 2_20_238 2_28_170 2_34_140 2_35_136 2_40_119 set community 0:4760 route-map calculator permit 6344 match community 2_56_85 2_68_70 set community 0:4760 ip community-list standard 2_2_220 permit 65000:2 0:2 0:220 ip community-list standard 2_4_110 permit 65000:2 0:4 0:110 ip community-list standard 2_5_88 permit 65000:2 0:5 0:88 ip community-list standard 2_8_55 permit 65000:2 0:8 0:55 ip community-list standard 2_10_44 permit 65000:2 0:10 0:44 ip community-list standard 2_11_40 permit 65000:2 0:11 0:40 ip community-list standard 2_20_22 permit 65000:2 0:20 0:22 ip community-list standard 1_184_256 permit 65000:1 0:184 0:256 ip community-list standard 1_185_255 permit 65000:1 0:185 0:255 ip community-list standard 1_186_254 permit 65000:1 0:186 0:254 ip community-list standard 1_187_253 permit 65000:1 0:187 0:253 ip community-list standard 1_188_252 permit 65000:1 0:188 0:252 ip community-list standard 1_189_251 permit 65000:1 0:189 0:251 ip community-list standard 1_190_250 permit 65000:1 0:190 0:250 ip community-list standard 1_191_249 permit 65000:1 0:191 0:249 ip community-list standard 1_192_248 permit 65000:1 0:192 0:248 ip community-list standard 1_193_247 permit 65000:1 0:193 0:247 ip community-list standard 1_194_246 permit 65000:1 0:194 0:246 ip community-list standard 1_195_245 permit 65000:1 0:195 0:245 ip community-list standard 1_196_244 permit 65000:1 0:196 0:244 ip community-list standard 1_197_243 permit 65000:1 0:197 0:243 ip community-list standard 1_198_242 permit 65000:1 0:198 0:242 ip community-list standard 1_199_241 permit 65000:1 0:199 0:241 ip community-list standard 1_200_240 permit 65000:1 0:200 0:240 ip community-list standard 1_201_239 permit 65000:1 0:201 0:239 ip community-list standard 1_202_238 permit 65000:1 0:202 0:238 ip community-list standard 1_203_237 permit 65000:1 0:203 0:237 ip community-list standard 1_204_236 permit 65000:1 0:204 0:236 ip community-list standard 1_205_235 permit 65000:1 0:205 0:235 ip community-list standard 1_206_234 permit 65000:1 0:206 0:234 ip community-list standard 1_207_233 permit 65000:1 0:207 0:233 ip community-list standard 1_208_232 permit 65000:1 0:208 0:232 ip community-list standard 1_209_231 permit 65000:1 0:209 0:231 ip community-list standard 1_210_230 permit 65000:1 0:210 0:230 ip community-list standard 1_211_229 permit 65000:1 0:211 0:229 ip community-list standard 1_212_228 permit 65000:1 0:212 0:228 ip community-list standard 1_213_227 permit 65000:1 0:213 0:227 ip community-list standard 1_214_226 permit 65000:1 0:214 0:226 ip community-list standard 1_215_225 permit 65000:1 0:215 0:225 ip community-list standard 1_216_224 permit 65000:1 0:216 0:224 ip community-list standard 1_217_223 permit 65000:1 0:217 0:223 ip community-list standard 1_218_222 permit 65000:1 0:218 0:222 ip community-list standard 1_219_221 permit 65000:1 0:219 0:221 ip community-list standard 1_220_220 permit 65000:1 0:220 0:220 route-map calculator permit 6345 match community 2_2_220 2_4_110 2_5_88 2_8_55 2_10_44 set community 0:440 route-map calculator permit 6346 match community 2_11_40 2_20_22 1_184_256 1_185_255 1_186_254 set community 0:440 route-map calculator permit 6347 match community 1_187_253 1_188_252 1_189_251 1_190_250 1_191_249 set community 0:440 route-map calculator permit 6348 match community 1_192_248 1_193_247 1_194_246 1_195_245 1_196_244 set community 0:440 route-map calculator permit 6349 match community 1_197_243 1_198_242 1_199_241 1_200_240 1_201_239 set community 0:440 route-map calculator permit 6350 match community 1_202_238 1_203_237 1_204_236 1_205_235 1_206_234 set community 0:440 route-map calculator permit 6351 match community 1_207_233 1_208_232 1_209_231 1_210_230 1_211_229 set community 0:440 route-map calculator permit 6352 match community 1_212_228 1_213_227 1_214_226 1_215_225 1_216_224 set community 0:440 route-map calculator permit 6353 match community 1_217_223 1_218_222 1_219_221 1_220_220 set community 0:440 ip community-list standard 2_59_95 permit 65000:2 0:59 0:95 route-map calculator permit 6354 match community 2_59_95 set community 0:5605 ip community-list standard 2_226_250 permit 65000:2 0:226 0:250 route-map calculator permit 6355 match community 2_226_250 set community 0:56500 ip community-list standard 2_29_202 permit 65000:2 0:29 0:202 ip community-list standard 2_58_101 permit 65000:2 0:58 0:101 route-map calculator permit 6356 match community 2_29_202 2_58_101 set community 0:5858 ip community-list standard 2_48_197 permit 65000:2 0:48 0:197 route-map calculator permit 6357 match community 2_48_197 set community 0:9456 ip community-list standard 2_44_242 permit 65000:2 0:44 0:242 ip community-list standard 2_88_121 permit 65000:2 0:88 0:121 route-map calculator permit 6358 match community 2_44_242 2_88_121 set community 0:10648 ip community-list standard 2_166_229 permit 65000:2 0:166 0:229 route-map calculator permit 6359 match community 2_166_229 set community 0:38014 ip community-list standard 2_212_221 permit 65000:2 0:212 0:221 route-map calculator permit 6360 match community 2_212_221 set community 0:46852 ip community-list standard 2_101_244 permit 65000:2 0:101 0:244 ip community-list standard 2_122_202 permit 65000:2 0:122 0:202 route-map calculator permit 6361 match community 2_101_244 2_122_202 set community 0:24644 ip community-list standard 2_10_174 permit 65000:2 0:10 0:174 ip community-list standard 2_12_145 permit 65000:2 0:12 0:145 ip community-list standard 2_15_116 permit 65000:2 0:15 0:116 ip community-list standard 2_20_87 permit 65000:2 0:20 0:87 ip community-list standard 2_29_60 permit 65000:2 0:29 0:60 ip community-list standard 2_30_58 permit 65000:2 0:30 0:58 route-map calculator permit 6362 match community 2_10_174 2_12_145 2_15_116 2_20_87 2_29_60 set community 0:1740 route-map calculator permit 6363 match community 2_30_58 set community 0:1740 ip community-list standard 2_209_226 permit 65000:2 0:209 0:226 route-map calculator permit 6364 match community 2_209_226 set community 0:47234 ip community-list standard 2_166_245 permit 65000:2 0:166 0:245 route-map calculator permit 6365 match community 2_166_245 set community 0:40670 ip community-list standard 2_28_188 permit 65000:2 0:28 0:188 ip community-list standard 2_47_112 permit 65000:2 0:47 0:112 ip community-list standard 2_56_94 permit 65000:2 0:56 0:94 route-map calculator permit 6366 match community 2_28_188 2_47_112 2_56_94 set community 0:5264 ip community-list standard 2_127_251 permit 65000:2 0:127 0:251 route-map calculator permit 6367 match community 2_127_251 set community 0:31877 ip community-list standard 2_63_250 permit 65000:2 0:63 0:250 ip community-list standard 2_70_225 permit 65000:2 0:70 0:225 ip community-list standard 2_75_210 permit 65000:2 0:75 0:210 ip community-list standard 2_90_175 permit 65000:2 0:90 0:175 ip community-list standard 2_105_150 permit 65000:2 0:105 0:150 ip community-list standard 2_125_126 permit 65000:2 0:125 0:126 route-map calculator permit 6368 match community 2_63_250 2_70_225 2_75_210 2_90_175 2_105_150 set community 0:15750 route-map calculator permit 6369 match community 2_125_126 set community 0:15750 ip community-list standard 2_134_161 permit 65000:2 0:134 0:161 route-map calculator permit 6370 match community 2_134_161 set community 0:21574 ip community-list standard 2_173_255 permit 65000:2 0:173 0:255 route-map calculator permit 6371 match community 2_173_255 set community 0:44115 ip community-list standard 2_18_203 permit 65000:2 0:18 0:203 ip community-list standard 2_21_174 permit 65000:2 0:21 0:174 ip community-list standard 2_29_126 permit 65000:2 0:29 0:126 ip community-list standard 2_42_87 permit 65000:2 0:42 0:87 ip community-list standard 2_58_63 permit 65000:2 0:58 0:63 route-map calculator permit 6372 match community 2_18_203 2_21_174 2_29_126 2_42_87 2_58_63 set community 0:3654 ip community-list standard 2_102_219 permit 65000:2 0:102 0:219 ip community-list standard 2_146_153 permit 65000:2 0:146 0:153 route-map calculator permit 6373 match community 2_102_219 2_146_153 set community 0:22338 ip community-list standard 2_57_191 permit 65000:2 0:57 0:191 route-map calculator permit 6374 match community 2_57_191 set community 0:10887 ip community-list standard 2_39_223 permit 65000:2 0:39 0:223 route-map calculator permit 6375 match community 2_39_223 set community 0:8697 ip community-list standard 2_44_227 permit 65000:2 0:44 0:227 route-map calculator permit 6376 match community 2_44_227 set community 0:9988 ip community-list standard 2_233_249 permit 65000:2 0:233 0:249 route-map calculator permit 6377 match community 2_233_249 set community 0:58017 ip community-list standard 2_66_172 permit 65000:2 0:66 0:172 ip community-list standard 2_86_132 permit 65000:2 0:86 0:132 ip community-list standard 2_88_129 permit 65000:2 0:88 0:129 route-map calculator permit 6378 match community 2_66_172 2_86_132 2_88_129 set community 0:11352 ip community-list standard 2_27_165 permit 65000:2 0:27 0:165 ip community-list standard 2_33_135 permit 65000:2 0:33 0:135 ip community-list standard 2_45_99 permit 65000:2 0:45 0:99 ip community-list standard 2_55_81 permit 65000:2 0:55 0:81 route-map calculator permit 6379 match community 2_27_165 2_33_135 2_45_99 2_55_81 set community 0:4455 ip community-list standard 2_22_238 permit 65000:2 0:22 0:238 ip community-list standard 2_28_187 permit 65000:2 0:28 0:187 ip community-list standard 2_34_154 permit 65000:2 0:34 0:154 ip community-list standard 2_44_119 permit 65000:2 0:44 0:119 ip community-list standard 2_68_77 permit 65000:2 0:68 0:77 route-map calculator permit 6380 match community 2_22_238 2_28_187 2_34_154 2_44_119 2_68_77 set community 0:5236 ip community-list standard 2_49_241 permit 65000:2 0:49 0:241 route-map calculator permit 6381 match community 2_49_241 set community 0:11809 ip community-list standard 2_192_206 permit 65000:2 0:192 0:206 route-map calculator permit 6382 match community 2_192_206 set community 0:39552 ip community-list standard 2_151_194 permit 65000:2 0:151 0:194 route-map calculator permit 6383 match community 2_151_194 set community 0:29294 ip community-list standard 2_16_205 permit 65000:2 0:16 0:205 ip community-list standard 2_20_164 permit 65000:2 0:20 0:164 ip community-list standard 2_40_82 permit 65000:2 0:40 0:82 ip community-list standard 2_41_80 permit 65000:2 0:41 0:80 route-map calculator permit 6384 match community 2_16_205 2_20_164 2_40_82 2_41_80 set community 0:3280 ip community-list standard 2_148_238 permit 65000:2 0:148 0:238 route-map calculator permit 6385 match community 2_148_238 set community 0:35224 ip community-list standard 2_62_191 permit 65000:2 0:62 0:191 route-map calculator permit 6386 match community 2_62_191 set community 0:11842 ip community-list standard 2_145_249 permit 65000:2 0:145 0:249 route-map calculator permit 6387 match community 2_145_249 set community 0:36105 ip community-list standard 2_89_161 permit 65000:2 0:89 0:161 route-map calculator permit 6388 match community 2_89_161 set community 0:14329 ip community-list standard 2_189_233 permit 65000:2 0:189 0:233 route-map calculator permit 6389 match community 2_189_233 set community 0:44037 ip community-list standard 2_64_163 permit 65000:2 0:64 0:163 route-map calculator permit 6390 match community 2_64_163 set community 0:10432 ip community-list standard 2_31_204 permit 65000:2 0:31 0:204 ip community-list standard 2_34_186 permit 65000:2 0:34 0:186 ip community-list standard 2_51_124 permit 65000:2 0:51 0:124 ip community-list standard 2_62_102 permit 65000:2 0:62 0:102 ip community-list standard 2_68_93 permit 65000:2 0:68 0:93 route-map calculator permit 6391 match community 2_31_204 2_34_186 2_51_124 2_62_102 2_68_93 set community 0:6324 ip community-list standard 2_3_182 permit 65000:2 0:3 0:182 ip community-list standard 2_6_91 permit 65000:2 0:6 0:91 ip community-list standard 2_7_78 permit 65000:2 0:7 0:78 ip community-list standard 2_13_42 permit 65000:2 0:13 0:42 ip community-list standard 2_14_39 permit 65000:2 0:14 0:39 ip community-list standard 2_21_26 permit 65000:2 0:21 0:26 route-map calculator permit 6392 match community 2_3_182 2_6_91 2_7_78 2_13_42 2_14_39 set community 0:546 route-map calculator permit 6393 match community 2_21_26 set community 0:546 ip community-list standard 2_29_250 permit 65000:2 0:29 0:250 ip community-list standard 2_50_145 permit 65000:2 0:50 0:145 ip community-list standard 2_58_125 permit 65000:2 0:58 0:125 route-map calculator permit 6394 match community 2_29_250 2_50_145 2_58_125 set community 0:7250 ip community-list standard 2_65_161 permit 65000:2 0:65 0:161 ip community-list standard 2_91_115 permit 65000:2 0:91 0:115 route-map calculator permit 6395 match community 2_65_161 2_91_115 set community 0:10465 ip community-list standard 2_183_202 permit 65000:2 0:183 0:202 route-map calculator permit 6396 match community 2_183_202 set community 0:36966 ip community-list standard 2_95_181 permit 65000:2 0:95 0:181 route-map calculator permit 6397 match community 2_95_181 set community 0:17195 ip community-list standard 2_193_227 permit 65000:2 0:193 0:227 route-map calculator permit 6398 match community 2_193_227 set community 0:43811 ip community-list standard 2_123_183 permit 65000:2 0:123 0:183 route-map calculator permit 6399 match community 2_123_183 set community 0:22509 ip community-list standard 2_139_183 permit 65000:2 0:139 0:183 route-map calculator permit 6400 match community 2_139_183 set community 0:25437 ip community-list standard 2_166_254 permit 65000:2 0:166 0:254 route-map calculator permit 6401 match community 2_166_254 set community 0:42164 ip community-list standard 2_110_219 permit 65000:2 0:110 0:219 ip community-list standard 2_146_165 permit 65000:2 0:146 0:165 route-map calculator permit 6402 match community 2_110_219 2_146_165 set community 0:24090 ip community-list standard 2_198_253 permit 65000:2 0:198 0:253 ip community-list standard 2_207_242 permit 65000:2 0:207 0:242 route-map calculator permit 6403 match community 2_198_253 2_207_242 set community 0:50094 ip community-list standard 2_45_217 permit 65000:2 0:45 0:217 ip community-list standard 2_63_155 permit 65000:2 0:63 0:155 ip community-list standard 2_93_105 permit 65000:2 0:93 0:105 route-map calculator permit 6404 match community 2_45_217 2_63_155 2_93_105 set community 0:9765 ip community-list standard 2_167_171 permit 65000:2 0:167 0:171 route-map calculator permit 6405 match community 2_167_171 set community 0:28557 ip community-list standard 2_132_244 permit 65000:2 0:132 0:244 ip community-list standard 2_176_183 permit 65000:2 0:176 0:183 route-map calculator permit 6406 match community 2_132_244 2_176_183 set community 0:32208 ip community-list standard 2_31_215 permit 65000:2 0:31 0:215 ip community-list standard 2_43_155 permit 65000:2 0:43 0:155 route-map calculator permit 6407 match community 2_31_215 2_43_155 set community 0:6665 ip community-list standard 2_69_151 permit 65000:2 0:69 0:151 route-map calculator permit 6408 match community 2_69_151 set community 0:10419 ip community-list standard 2_7_133 permit 65000:2 0:7 0:133 ip community-list standard 2_19_49 permit 65000:2 0:19 0:49 route-map calculator permit 6409 match community 2_7_133 2_19_49 set community 0:931 ip community-list standard 2_26_243 permit 65000:2 0:26 0:243 ip community-list standard 2_27_234 permit 65000:2 0:27 0:234 ip community-list standard 2_39_162 permit 65000:2 0:39 0:162 ip community-list standard 2_54_117 permit 65000:2 0:54 0:117 ip community-list standard 2_78_81 permit 65000:2 0:78 0:81 route-map calculator permit 6410 match community 2_26_243 2_27_234 2_39_162 2_54_117 2_78_81 set community 0:6318 ip community-list standard 2_250_251 permit 65000:2 0:250 0:251 route-map calculator permit 6411 match community 2_250_251 set community 0:62750 ip community-list standard 2_140_206 permit 65000:2 0:140 0:206 route-map calculator permit 6412 match community 2_140_206 set community 0:28840 ip community-list standard 2_127_171 permit 65000:2 0:127 0:171 route-map calculator permit 6413 match community 2_127_171 set community 0:21717 ip community-list standard 2_114_241 permit 65000:2 0:114 0:241 route-map calculator permit 6414 match community 2_114_241 set community 0:27474 ip community-list standard 2_19_141 permit 65000:2 0:19 0:141 ip community-list standard 2_47_57 permit 65000:2 0:47 0:57 route-map calculator permit 6415 match community 2_19_141 2_47_57 set community 0:2679 ip community-list standard 2_56_142 permit 65000:2 0:56 0:142 ip community-list standard 2_71_112 permit 65000:2 0:71 0:112 route-map calculator permit 6416 match community 2_56_142 2_71_112 set community 0:7952 ip community-list standard 2_158_232 permit 65000:2 0:158 0:232 route-map calculator permit 6417 match community 2_158_232 set community 0:36656 ip community-list standard 2_122_227 permit 65000:2 0:122 0:227 route-map calculator permit 6418 match community 2_122_227 set community 0:27694 ip community-list standard 2_39_233 permit 65000:2 0:39 0:233 route-map calculator permit 6419 match community 2_39_233 set community 0:9087 ip community-list standard 2_143_169 permit 65000:2 0:143 0:169 route-map calculator permit 6420 match community 2_143_169 set community 0:24167 ip community-list standard 2_86_246 permit 65000:2 0:86 0:246 ip community-list standard 2_123_172 permit 65000:2 0:123 0:172 ip community-list standard 2_129_164 permit 65000:2 0:129 0:164 route-map calculator permit 6421 match community 2_86_246 2_123_172 2_129_164 set community 0:21156 ip community-list standard 2_54_250 permit 65000:2 0:54 0:250 ip community-list standard 2_60_225 permit 65000:2 0:60 0:225 ip community-list standard 2_75_180 permit 65000:2 0:75 0:180 ip community-list standard 2_90_150 permit 65000:2 0:90 0:150 ip community-list standard 2_100_135 permit 65000:2 0:100 0:135 ip community-list standard 2_108_125 permit 65000:2 0:108 0:125 route-map calculator permit 6422 match community 2_54_250 2_60_225 2_75_180 2_90_150 2_100_135 set community 0:13500 route-map calculator permit 6423 match community 2_108_125 set community 0:13500 ip community-list standard 2_80_245 permit 65000:2 0:80 0:245 ip community-list standard 2_98_200 permit 65000:2 0:98 0:200 ip community-list standard 2_100_196 permit 65000:2 0:100 0:196 ip community-list standard 2_112_175 permit 65000:2 0:112 0:175 ip community-list standard 2_140_140 permit 65000:2 0:140 0:140 route-map calculator permit 6424 match community 2_80_245 2_98_200 2_100_196 2_112_175 2_140_140 set community 0:19600 ip community-list standard 2_59_151 permit 65000:2 0:59 0:151 route-map calculator permit 6425 match community 2_59_151 set community 0:8909 ip community-list standard 2_92_253 permit 65000:2 0:92 0:253 route-map calculator permit 6426 match community 2_92_253 set community 0:23276 ip community-list standard 2_230_244 permit 65000:2 0:230 0:244 route-map calculator permit 6427 match community 2_230_244 set community 0:56120 ip community-list standard 2_193_199 permit 65000:2 0:193 0:199 route-map calculator permit 6428 match community 2_193_199 set community 0:38407 ip community-list standard 2_81_217 permit 65000:2 0:81 0:217 ip community-list standard 2_93_189 permit 65000:2 0:93 0:189 route-map calculator permit 6429 match community 2_81_217 2_93_189 set community 0:17577 ip community-list standard 2_153_236 permit 65000:2 0:153 0:236 ip community-list standard 2_177_204 permit 65000:2 0:177 0:204 route-map calculator permit 6430 match community 2_153_236 2_177_204 set community 0:36108 ip community-list standard 2_190_236 permit 65000:2 0:190 0:236 route-map calculator permit 6431 match community 2_190_236 set community 0:44840 ip community-list standard 2_94_234 permit 65000:2 0:94 0:234 ip community-list standard 2_117_188 permit 65000:2 0:117 0:188 ip community-list standard 2_141_156 permit 65000:2 0:141 0:156 route-map calculator permit 6432 match community 2_94_234 2_117_188 2_141_156 set community 0:21996 ip community-list standard 2_82_236 permit 65000:2 0:82 0:236 ip community-list standard 2_118_164 permit 65000:2 0:118 0:164 route-map calculator permit 6433 match community 2_82_236 2_118_164 set community 0:19352 ip community-list standard 2_31_171 permit 65000:2 0:31 0:171 ip community-list standard 2_57_93 permit 65000:2 0:57 0:93 route-map calculator permit 6434 match community 2_31_171 2_57_93 set community 0:5301 ip community-list standard 2_91_213 permit 65000:2 0:91 0:213 route-map calculator permit 6435 match community 2_91_213 set community 0:19383 ip community-list standard 2_103_133 permit 65000:2 0:103 0:133 route-map calculator permit 6436 match community 2_103_133 set community 0:13699 ip community-list standard 2_36_201 permit 65000:2 0:36 0:201 ip community-list standard 2_54_134 permit 65000:2 0:54 0:134 ip community-list standard 2_67_108 permit 65000:2 0:67 0:108 route-map calculator permit 6437 match community 2_36_201 2_54_134 2_67_108 set community 0:7236 ip community-list standard 2_122_167 permit 65000:2 0:122 0:167 route-map calculator permit 6438 match community 2_122_167 set community 0:20374 ip community-list standard 2_123_252 permit 65000:2 0:123 0:252 ip community-list standard 2_126_246 permit 65000:2 0:126 0:246 ip community-list standard 2_164_189 permit 65000:2 0:164 0:189 route-map calculator permit 6439 match community 2_123_252 2_126_246 2_164_189 set community 0:30996 ip community-list standard 2_103_103 permit 65000:2 0:103 0:103 route-map calculator permit 6440 match community 2_103_103 set community 0:10609 ip community-list standard 2_15_220 permit 65000:2 0:15 0:220 ip community-list standard 2_20_165 permit 65000:2 0:20 0:165 ip community-list standard 2_22_150 permit 65000:2 0:22 0:150 ip community-list standard 2_25_132 permit 65000:2 0:25 0:132 ip community-list standard 2_30_110 permit 65000:2 0:30 0:110 ip community-list standard 2_33_100 permit 65000:2 0:33 0:100 ip community-list standard 2_44_75 permit 65000:2 0:44 0:75 ip community-list standard 2_50_66 permit 65000:2 0:50 0:66 ip community-list standard 2_55_60 permit 65000:2 0:55 0:60 route-map calculator permit 6441 match community 2_15_220 2_20_165 2_22_150 2_25_132 2_30_110 set community 0:3300 route-map calculator permit 6442 match community 2_33_100 2_44_75 2_50_66 2_55_60 set community 0:3300 ip community-list standard 2_198_215 permit 65000:2 0:198 0:215 route-map calculator permit 6443 match community 2_198_215 set community 0:42570 ip community-list standard 2_11_79 permit 65000:2 0:11 0:79 route-map calculator permit 6444 match community 2_11_79 set community 0:869 ip community-list standard 2_186_201 permit 65000:2 0:186 0:201 route-map calculator permit 6445 match community 2_186_201 set community 0:37386 ip community-list standard 2_99_242 permit 65000:2 0:99 0:242 ip community-list standard 2_121_198 permit 65000:2 0:121 0:198 route-map calculator permit 6446 match community 2_99_242 2_121_198 set community 0:23958 ip community-list standard 2_181_189 permit 65000:2 0:181 0:189 route-map calculator permit 6447 match community 2_181_189 set community 0:34209 ip community-list standard 2_107_175 permit 65000:2 0:107 0:175 route-map calculator permit 6448 match community 2_107_175 set community 0:18725 ip community-list standard 2_151_202 permit 65000:2 0:151 0:202 route-map calculator permit 6449 match community 2_151_202 set community 0:30502 ip community-list standard 2_101_256 permit 65000:2 0:101 0:256 ip community-list standard 2_128_202 permit 65000:2 0:128 0:202 route-map calculator permit 6450 match community 2_101_256 2_128_202 set community 0:25856 ip community-list standard 2_133_196 permit 65000:2 0:133 0:196 route-map calculator permit 6451 match community 2_133_196 set community 0:26068 ip community-list standard 2_158_202 permit 65000:2 0:158 0:202 route-map calculator permit 6452 match community 2_158_202 set community 0:31916 ip community-list standard 2_29_204 permit 65000:2 0:29 0:204 ip community-list standard 2_34_174 permit 65000:2 0:34 0:174 ip community-list standard 2_51_116 permit 65000:2 0:51 0:116 ip community-list standard 2_58_102 permit 65000:2 0:58 0:102 ip community-list standard 2_68_87 permit 65000:2 0:68 0:87 route-map calculator permit 6453 match community 2_29_204 2_34_174 2_51_116 2_58_102 2_68_87 set community 0:5916 ip community-list standard 2_209_245 permit 65000:2 0:209 0:245 route-map calculator permit 6454 match community 2_209_245 set community 0:51205 ip community-list standard 2_141_247 permit 65000:2 0:141 0:247 route-map calculator permit 6455 match community 2_141_247 set community 0:34827 ip community-list standard 2_118_163 permit 65000:2 0:118 0:163 route-map calculator permit 6456 match community 2_118_163 set community 0:19234 ip community-list standard 2_160_238 permit 65000:2 0:160 0:238 ip community-list standard 2_170_224 permit 65000:2 0:170 0:224 route-map calculator permit 6457 match community 2_160_238 2_170_224 set community 0:38080 ip community-list standard 2_87_151 permit 65000:2 0:87 0:151 route-map calculator permit 6458 match community 2_87_151 set community 0:13137 ip community-list standard 2_105_207 permit 65000:2 0:105 0:207 ip community-list standard 2_115_189 permit 65000:2 0:115 0:189 ip community-list standard 2_135_161 permit 65000:2 0:135 0:161 route-map calculator permit 6459 match community 2_105_207 2_115_189 2_135_161 set community 0:21735 ip community-list standard 2_81_109 permit 65000:2 0:81 0:109 route-map calculator permit 6460 match community 2_81_109 set community 0:8829 ip community-list standard 2_111_139 permit 65000:2 0:111 0:139 route-map calculator permit 6461 match community 2_111_139 set community 0:15429 ip community-list standard 2_60_213 permit 65000:2 0:60 0:213 ip community-list standard 2_71_180 permit 65000:2 0:71 0:180 ip community-list standard 2_90_142 permit 65000:2 0:90 0:142 route-map calculator permit 6462 match community 2_60_213 2_71_180 2_90_142 set community 0:12780 ip community-list standard 2_71_223 permit 65000:2 0:71 0:223 route-map calculator permit 6463 match community 2_71_223 set community 0:15833 ip community-list standard 2_72_211 permit 65000:2 0:72 0:211 route-map calculator permit 6464 match community 2_72_211 set community 0:15192 ip community-list standard 2_118_175 permit 65000:2 0:118 0:175 route-map calculator permit 6465 match community 2_118_175 set community 0:20650 ip community-list standard 2_166_255 permit 65000:2 0:166 0:255 ip community-list standard 2_170_249 permit 65000:2 0:170 0:249 route-map calculator permit 6466 match community 2_166_255 2_170_249 set community 0:42330 ip community-list standard 2_162_229 permit 65000:2 0:162 0:229 route-map calculator permit 6467 match community 2_162_229 set community 0:37098 ip community-list standard 2_54_203 permit 65000:2 0:54 0:203 ip community-list standard 2_58_189 permit 65000:2 0:58 0:189 ip community-list standard 2_63_174 permit 65000:2 0:63 0:174 ip community-list standard 2_87_126 permit 65000:2 0:87 0:126 route-map calculator permit 6468 match community 2_54_203 2_58_189 2_63_174 2_87_126 set community 0:10962 ip community-list standard 2_118_246 permit 65000:2 0:118 0:246 ip community-list standard 2_123_236 permit 65000:2 0:123 0:236 ip community-list standard 2_164_177 permit 65000:2 0:164 0:177 route-map calculator permit 6469 match community 2_118_246 2_123_236 2_164_177 set community 0:29028 ip community-list standard 2_69_107 permit 65000:2 0:69 0:107 route-map calculator permit 6470 match community 2_69_107 set community 0:7383 ip community-list standard 2_48_228 permit 65000:2 0:48 0:228 ip community-list standard 2_57_192 permit 65000:2 0:57 0:192 ip community-list standard 2_64_171 permit 65000:2 0:64 0:171 ip community-list standard 2_72_152 permit 65000:2 0:72 0:152 ip community-list standard 2_76_144 permit 65000:2 0:76 0:144 ip community-list standard 2_96_114 permit 65000:2 0:96 0:114 route-map calculator permit 6471 match community 2_48_228 2_57_192 2_64_171 2_72_152 2_76_144 set community 0:10944 route-map calculator permit 6472 match community 2_96_114 set community 0:10944 ip community-list standard 2_55_155 permit 65000:2 0:55 0:155 route-map calculator permit 6473 match community 2_55_155 set community 0:8525 ip community-list standard 2_9_153 permit 65000:2 0:9 0:153 ip community-list standard 2_17_81 permit 65000:2 0:17 0:81 ip community-list standard 2_27_51 permit 65000:2 0:27 0:51 route-map calculator permit 6474 match community 2_9_153 2_17_81 2_27_51 set community 0:1377 ip community-list standard 1_1_123 permit 65000:1 0:1 0:123 ip community-list standard 2_1_124 permit 65000:2 0:1 0:124 ip community-list standard 2_2_62 permit 65000:2 0:2 0:62 ip community-list standard 1_2_122 permit 65000:1 0:2 0:122 ip community-list standard 1_3_121 permit 65000:1 0:3 0:121 ip community-list standard 2_4_31 permit 65000:2 0:4 0:31 ip community-list standard 1_4_120 permit 65000:1 0:4 0:120 ip community-list standard 1_5_119 permit 65000:1 0:5 0:119 ip community-list standard 1_6_118 permit 65000:1 0:6 0:118 ip community-list standard 1_7_117 permit 65000:1 0:7 0:117 ip community-list standard 1_8_116 permit 65000:1 0:8 0:116 ip community-list standard 1_9_115 permit 65000:1 0:9 0:115 ip community-list standard 1_10_114 permit 65000:1 0:10 0:114 ip community-list standard 1_11_113 permit 65000:1 0:11 0:113 ip community-list standard 1_12_112 permit 65000:1 0:12 0:112 ip community-list standard 1_13_111 permit 65000:1 0:13 0:111 ip community-list standard 1_14_110 permit 65000:1 0:14 0:110 ip community-list standard 1_15_109 permit 65000:1 0:15 0:109 ip community-list standard 1_16_108 permit 65000:1 0:16 0:108 ip community-list standard 1_17_107 permit 65000:1 0:17 0:107 ip community-list standard 1_18_106 permit 65000:1 0:18 0:106 ip community-list standard 1_19_105 permit 65000:1 0:19 0:105 ip community-list standard 1_20_104 permit 65000:1 0:20 0:104 ip community-list standard 1_21_103 permit 65000:1 0:21 0:103 ip community-list standard 1_22_102 permit 65000:1 0:22 0:102 ip community-list standard 1_23_101 permit 65000:1 0:23 0:101 ip community-list standard 1_24_100 permit 65000:1 0:24 0:100 ip community-list standard 1_25_99 permit 65000:1 0:25 0:99 ip community-list standard 1_26_98 permit 65000:1 0:26 0:98 ip community-list standard 1_27_97 permit 65000:1 0:27 0:97 ip community-list standard 1_28_96 permit 65000:1 0:28 0:96 ip community-list standard 1_29_95 permit 65000:1 0:29 0:95 ip community-list standard 1_30_94 permit 65000:1 0:30 0:94 ip community-list standard 1_31_93 permit 65000:1 0:31 0:93 ip community-list standard 1_32_92 permit 65000:1 0:32 0:92 ip community-list standard 1_33_91 permit 65000:1 0:33 0:91 ip community-list standard 1_34_90 permit 65000:1 0:34 0:90 ip community-list standard 1_35_89 permit 65000:1 0:35 0:89 ip community-list standard 1_36_88 permit 65000:1 0:36 0:88 ip community-list standard 1_37_87 permit 65000:1 0:37 0:87 ip community-list standard 1_38_86 permit 65000:1 0:38 0:86 ip community-list standard 1_39_85 permit 65000:1 0:39 0:85 ip community-list standard 1_40_84 permit 65000:1 0:40 0:84 ip community-list standard 1_41_83 permit 65000:1 0:41 0:83 ip community-list standard 1_42_82 permit 65000:1 0:42 0:82 ip community-list standard 1_43_81 permit 65000:1 0:43 0:81 ip community-list standard 1_44_80 permit 65000:1 0:44 0:80 ip community-list standard 1_45_79 permit 65000:1 0:45 0:79 ip community-list standard 1_46_78 permit 65000:1 0:46 0:78 ip community-list standard 1_47_77 permit 65000:1 0:47 0:77 ip community-list standard 1_48_76 permit 65000:1 0:48 0:76 ip community-list standard 1_49_75 permit 65000:1 0:49 0:75 ip community-list standard 1_50_74 permit 65000:1 0:50 0:74 ip community-list standard 1_51_73 permit 65000:1 0:51 0:73 ip community-list standard 1_52_72 permit 65000:1 0:52 0:72 ip community-list standard 1_53_71 permit 65000:1 0:53 0:71 ip community-list standard 1_54_70 permit 65000:1 0:54 0:70 ip community-list standard 1_55_69 permit 65000:1 0:55 0:69 ip community-list standard 1_56_68 permit 65000:1 0:56 0:68 ip community-list standard 1_57_67 permit 65000:1 0:57 0:67 ip community-list standard 1_58_66 permit 65000:1 0:58 0:66 ip community-list standard 1_59_65 permit 65000:1 0:59 0:65 ip community-list standard 1_60_64 permit 65000:1 0:60 0:64 ip community-list standard 1_61_63 permit 65000:1 0:61 0:63 ip community-list standard 1_62_62 permit 65000:1 0:62 0:62 ip community-list expanded c124 permit 1 ^65000:4_0:124_0:1$ ip community-list expanded c124 permit 2 ^65000:3_0:125_0:1$ ip community-list expanded c124 permit 3 ^65000:3_0:126_0:2$ ip community-list expanded c124 permit 4 ^65000:3_0:127_0:3$ ip community-list expanded c124 permit 5 ^65000:3_0:128_0:4$ ip community-list expanded c124 permit 6 ^65000:3_0:129_0:5$ ip community-list expanded c124 permit 7 ^65000:3_0:130_0:6$ ip community-list expanded c124 permit 8 ^65000:3_0:131_0:7$ ip community-list expanded c124 permit 9 ^65000:3_0:132_0:8$ ip community-list expanded c124 permit 10 ^65000:3_0:133_0:9$ ip community-list expanded c124 permit 11 ^65000:3_0:134_0:10$ ip community-list expanded c124 permit 12 ^65000:3_0:135_0:11$ ip community-list expanded c124 permit 13 ^65000:3_0:136_0:12$ ip community-list expanded c124 permit 14 ^65000:3_0:137_0:13$ ip community-list expanded c124 permit 15 ^65000:3_0:138_0:14$ ip community-list expanded c124 permit 16 ^65000:3_0:139_0:15$ ip community-list expanded c124 permit 17 ^65000:3_0:140_0:16$ ip community-list expanded c124 permit 18 ^65000:3_0:141_0:17$ ip community-list expanded c124 permit 19 ^65000:3_0:142_0:18$ ip community-list expanded c124 permit 20 ^65000:3_0:143_0:19$ ip community-list expanded c124 permit 21 ^65000:3_0:144_0:20$ ip community-list expanded c124 permit 22 ^65000:3_0:145_0:21$ ip community-list expanded c124 permit 23 ^65000:3_0:146_0:22$ ip community-list expanded c124 permit 24 ^65000:3_0:147_0:23$ ip community-list expanded c124 permit 25 ^65000:3_0:148_0:24$ ip community-list expanded c124 permit 26 ^65000:3_0:149_0:25$ ip community-list expanded c124 permit 27 ^65000:3_0:150_0:26$ ip community-list expanded c124 permit 28 ^65000:3_0:151_0:27$ ip community-list expanded c124 permit 29 ^65000:3_0:152_0:28$ ip community-list expanded c124 permit 30 ^65000:3_0:153_0:29$ ip community-list expanded c124 permit 31 ^65000:3_0:154_0:30$ ip community-list expanded c124 permit 32 ^65000:3_0:155_0:31$ ip community-list expanded c124 permit 33 ^65000:3_0:156_0:32$ ip community-list expanded c124 permit 34 ^65000:3_0:157_0:33$ ip community-list expanded c124 permit 35 ^65000:3_0:158_0:34$ ip community-list expanded c124 permit 36 ^65000:3_0:159_0:35$ ip community-list expanded c124 permit 37 ^65000:3_0:160_0:36$ ip community-list expanded c124 permit 38 ^65000:3_0:161_0:37$ ip community-list expanded c124 permit 39 ^65000:3_0:162_0:38$ ip community-list expanded c124 permit 40 ^65000:3_0:163_0:39$ ip community-list expanded c124 permit 41 ^65000:3_0:164_0:40$ ip community-list expanded c124 permit 42 ^65000:3_0:165_0:41$ ip community-list expanded c124 permit 43 ^65000:3_0:166_0:42$ ip community-list expanded c124 permit 44 ^65000:3_0:167_0:43$ ip community-list expanded c124 permit 45 ^65000:3_0:168_0:44$ ip community-list expanded c124 permit 46 ^65000:3_0:169_0:45$ ip community-list expanded c124 permit 47 ^65000:3_0:170_0:46$ ip community-list expanded c124 permit 48 ^65000:3_0:171_0:47$ ip community-list expanded c124 permit 49 ^65000:3_0:172_0:48$ ip community-list expanded c124 permit 50 ^65000:3_0:173_0:49$ ip community-list expanded c124 permit 51 ^65000:3_0:174_0:50$ ip community-list expanded c124 permit 52 ^65000:3_0:175_0:51$ ip community-list expanded c124 permit 53 ^65000:3_0:176_0:52$ ip community-list expanded c124 permit 54 ^65000:3_0:177_0:53$ ip community-list expanded c124 permit 55 ^65000:3_0:178_0:54$ ip community-list expanded c124 permit 56 ^65000:3_0:179_0:55$ ip community-list expanded c124 permit 57 ^65000:3_0:180_0:56$ ip community-list expanded c124 permit 58 ^65000:3_0:181_0:57$ ip community-list expanded c124 permit 59 ^65000:3_0:182_0:58$ ip community-list expanded c124 permit 60 ^65000:3_0:183_0:59$ ip community-list expanded c124 permit 61 ^65000:3_0:184_0:60$ ip community-list expanded c124 permit 62 ^65000:3_0:185_0:61$ ip community-list expanded c124 permit 63 ^65000:3_0:186_0:62$ ip community-list expanded c124 permit 64 ^65000:3_0:187_0:63$ ip community-list expanded c124 permit 65 ^65000:3_0:188_0:64$ ip community-list expanded c124 permit 66 ^65000:3_0:189_0:65$ ip community-list expanded c124 permit 67 ^65000:3_0:190_0:66$ ip community-list expanded c124 permit 68 ^65000:3_0:191_0:67$ ip community-list expanded c124 permit 69 ^65000:3_0:192_0:68$ ip community-list expanded c124 permit 70 ^65000:3_0:193_0:69$ ip community-list expanded c124 permit 71 ^65000:3_0:194_0:70$ ip community-list expanded c124 permit 72 ^65000:3_0:195_0:71$ ip community-list expanded c124 permit 73 ^65000:3_0:196_0:72$ ip community-list expanded c124 permit 74 ^65000:3_0:197_0:73$ ip community-list expanded c124 permit 75 ^65000:3_0:198_0:74$ ip community-list expanded c124 permit 76 ^65000:3_0:199_0:75$ ip community-list expanded c124 permit 77 ^65000:3_0:200_0:76$ ip community-list expanded c124 permit 78 ^65000:3_0:201_0:77$ ip community-list expanded c124 permit 79 ^65000:3_0:202_0:78$ ip community-list expanded c124 permit 80 ^65000:3_0:203_0:79$ ip community-list expanded c124 permit 81 ^65000:3_0:204_0:80$ ip community-list expanded c124 permit 82 ^65000:3_0:205_0:81$ ip community-list expanded c124 permit 83 ^65000:3_0:206_0:82$ ip community-list expanded c124 permit 84 ^65000:3_0:207_0:83$ ip community-list expanded c124 permit 85 ^65000:3_0:208_0:84$ ip community-list expanded c124 permit 86 ^65000:3_0:209_0:85$ ip community-list expanded c124 permit 87 ^65000:3_0:210_0:86$ ip community-list expanded c124 permit 88 ^65000:3_0:211_0:87$ ip community-list expanded c124 permit 89 ^65000:3_0:212_0:88$ ip community-list expanded c124 permit 90 ^65000:3_0:213_0:89$ ip community-list expanded c124 permit 91 ^65000:3_0:214_0:90$ ip community-list expanded c124 permit 92 ^65000:3_0:215_0:91$ ip community-list expanded c124 permit 93 ^65000:3_0:216_0:92$ ip community-list expanded c124 permit 94 ^65000:3_0:217_0:93$ ip community-list expanded c124 permit 95 ^65000:3_0:218_0:94$ ip community-list expanded c124 permit 96 ^65000:3_0:219_0:95$ ip community-list expanded c124 permit 97 ^65000:3_0:220_0:96$ ip community-list expanded c124 permit 98 ^65000:3_0:221_0:97$ ip community-list expanded c124 permit 99 ^65000:3_0:222_0:98$ ip community-list expanded c124 permit 100 ^65000:3_0:223_0:99$ ip community-list expanded c124 permit 101 ^65000:3_0:224_0:100$ ip community-list expanded c124 permit 102 ^65000:3_0:225_0:101$ ip community-list expanded c124 permit 103 ^65000:3_0:226_0:102$ ip community-list expanded c124 permit 104 ^65000:3_0:227_0:103$ ip community-list expanded c124 permit 105 ^65000:3_0:228_0:104$ ip community-list expanded c124 permit 106 ^65000:3_0:229_0:105$ ip community-list expanded c124 permit 107 ^65000:3_0:230_0:106$ ip community-list expanded c124 permit 108 ^65000:3_0:231_0:107$ ip community-list expanded c124 permit 109 ^65000:3_0:232_0:108$ ip community-list expanded c124 permit 110 ^65000:3_0:233_0:109$ ip community-list expanded c124 permit 111 ^65000:3_0:234_0:110$ ip community-list expanded c124 permit 112 ^65000:3_0:235_0:111$ ip community-list expanded c124 permit 113 ^65000:3_0:236_0:112$ ip community-list expanded c124 permit 114 ^65000:3_0:237_0:113$ ip community-list expanded c124 permit 115 ^65000:3_0:238_0:114$ ip community-list expanded c124 permit 116 ^65000:3_0:239_0:115$ ip community-list expanded c124 permit 117 ^65000:3_0:240_0:116$ ip community-list expanded c124 permit 118 ^65000:3_0:241_0:117$ ip community-list expanded c124 permit 119 ^65000:3_0:242_0:118$ ip community-list expanded c124 permit 120 ^65000:3_0:243_0:119$ ip community-list expanded c124 permit 121 ^65000:3_0:244_0:120$ ip community-list expanded c124 permit 122 ^65000:3_0:245_0:121$ ip community-list expanded c124 permit 123 ^65000:3_0:246_0:122$ ip community-list expanded c124 permit 124 ^65000:3_0:247_0:123$ ip community-list expanded c124 permit 125 ^65000:4_0:248_0:2$ ip community-list expanded c124 permit 126 ^65000:3_0:248_0:124$ ip community-list expanded c124 permit 127 ^65000:4_0:249_0:2$ ip community-list expanded c124 permit 128 ^65000:3_0:249_0:125$ ip community-list expanded c124 permit 129 ^65000:3_0:250_0:126$ ip community-list expanded c124 permit 130 ^65000:3_0:251_0:127$ ip community-list expanded c124 permit 131 ^65000:3_0:252_0:128$ ip community-list expanded c124 permit 132 ^65000:3_0:253_0:129$ ip community-list expanded c124 permit 133 ^65000:3_0:254_0:130$ ip community-list expanded c124 permit 134 ^65000:3_0:255_0:131$ ip community-list expanded c124 permit 135 ^65000:3_0:256_0:132$ route-map calculator permit 6475 match community 1_1_123 2_1_124 2_2_62 1_2_122 1_3_121 set community 0:124 route-map calculator permit 6476 match community 2_4_31 1_4_120 1_5_119 1_6_118 1_7_117 set community 0:124 route-map calculator permit 6477 match community 1_8_116 1_9_115 1_10_114 1_11_113 1_12_112 set community 0:124 route-map calculator permit 6478 match community 1_13_111 1_14_110 1_15_109 1_16_108 1_17_107 set community 0:124 route-map calculator permit 6479 match community 1_18_106 1_19_105 1_20_104 1_21_103 1_22_102 set community 0:124 route-map calculator permit 6480 match community 1_23_101 1_24_100 1_25_99 1_26_98 1_27_97 set community 0:124 route-map calculator permit 6481 match community 1_28_96 1_29_95 1_30_94 1_31_93 1_32_92 set community 0:124 route-map calculator permit 6482 match community 1_33_91 1_34_90 1_35_89 1_36_88 1_37_87 set community 0:124 route-map calculator permit 6483 match community 1_38_86 1_39_85 1_40_84 1_41_83 1_42_82 set community 0:124 route-map calculator permit 6484 match community 1_43_81 1_44_80 1_45_79 1_46_78 1_47_77 set community 0:124 route-map calculator permit 6485 match community 1_48_76 1_49_75 1_50_74 1_51_73 1_52_72 set community 0:124 route-map calculator permit 6486 match community 1_53_71 1_54_70 1_55_69 1_56_68 1_57_67 set community 0:124 route-map calculator permit 6487 match community 1_58_66 1_59_65 1_60_64 1_61_63 1_62_62 set community 0:124 route-map calculator permit 6488 match community c4_124_1 c3_125_1 c3_126_2 c3_127_3 c3_128_4 set community 0:124 route-map calculator permit 6489 match community c3_129_5 c3_130_6 c3_131_7 c3_132_8 c3_133_9 set community 0:124 route-map calculator permit 6490 match community c3_134_10 c3_135_11 c3_136_12 c3_137_13 c3_138_14 set community 0:124 route-map calculator permit 6491 match community c3_139_15 c3_140_16 c3_141_17 c3_142_18 c3_143_19 set community 0:124 route-map calculator permit 6492 match community c3_144_20 c3_145_21 c3_146_22 c3_147_23 c3_148_24 set community 0:124 route-map calculator permit 6493 match community c3_149_25 c3_150_26 c3_151_27 c3_152_28 c3_153_29 set community 0:124 route-map calculator permit 6494 match community c3_154_30 c3_155_31 c3_156_32 c3_157_33 c3_158_34 set community 0:124 route-map calculator permit 6495 match community c3_159_35 c3_160_36 c3_161_37 c3_162_38 c3_163_39 set community 0:124 route-map calculator permit 6496 match community c3_164_40 c3_165_41 c3_166_42 c3_167_43 c3_168_44 set community 0:124 route-map calculator permit 6497 match community c3_169_45 c3_170_46 c3_171_47 c3_172_48 c3_173_49 set community 0:124 route-map calculator permit 6498 match community c3_174_50 c3_175_51 c3_176_52 c3_177_53 c3_178_54 set community 0:124 route-map calculator permit 6499 match community c3_179_55 c3_180_56 c3_181_57 c3_182_58 c3_183_59 set community 0:124 route-map calculator permit 6500 match community c3_184_60 c3_185_61 c3_186_62 c3_187_63 c3_188_64 set community 0:124 route-map calculator permit 6501 match community c3_189_65 c3_190_66 c3_191_67 c3_192_68 c3_193_69 set community 0:124 route-map calculator permit 6502 match community c3_194_70 c3_195_71 c3_196_72 c3_197_73 c3_198_74 set community 0:124 route-map calculator permit 6503 match community c3_199_75 c3_200_76 c3_201_77 c3_202_78 c3_203_79 set community 0:124 route-map calculator permit 6504 match community c3_204_80 c3_205_81 c3_206_82 c3_207_83 c3_208_84 set community 0:124 route-map calculator permit 6505 match community c3_209_85 c3_210_86 c3_211_87 c3_212_88 c3_213_89 set community 0:124 route-map calculator permit 6506 match community c3_214_90 c3_215_91 c3_216_92 c3_217_93 c3_218_94 set community 0:124 route-map calculator permit 6507 match community c3_219_95 c3_220_96 c3_221_97 c3_222_98 c3_223_99 set community 0:124 route-map calculator permit 6508 match community c3_224_100 c3_225_101 c3_226_102 c3_227_103 c3_228_104 set community 0:124 route-map calculator permit 6509 match community c3_229_105 c3_230_106 c3_231_107 c3_232_108 c3_233_109 set community 0:124 route-map calculator permit 6510 match community c3_234_110 c3_235_111 c3_236_112 c3_237_113 c3_238_114 set community 0:124 route-map calculator permit 6511 match community c3_239_115 c3_240_116 c3_241_117 c3_242_118 c3_243_119 set community 0:124 route-map calculator permit 6512 match community c3_244_120 c3_245_121 c3_246_122 c3_247_123 c4_248_2 set community 0:124 route-map calculator permit 6513 match community c3_248_124 c4_249_2 c3_249_125 c3_250_126 c3_251_127 set community 0:124 route-map calculator permit 6514 match community c3_252_128 c3_253_129 c3_254_130 c3_255_131 c3_256_132 set community 0:124 ip community-list standard 2_79_214 permit 65000:2 0:79 0:214 ip community-list standard 2_107_158 permit 65000:2 0:107 0:158 route-map calculator permit 6515 match community 2_79_214 2_107_158 set community 0:16906 ip community-list standard 2_157_244 permit 65000:2 0:157 0:244 route-map calculator permit 6516 match community 2_157_244 set community 0:38308 ip community-list standard 1_1_119 permit 65000:1 0:1 0:119 ip community-list standard 2_1_120 permit 65000:2 0:1 0:120 ip community-list standard 2_2_60 permit 65000:2 0:2 0:60 ip community-list standard 1_2_118 permit 65000:1 0:2 0:118 ip community-list standard 2_3_40 permit 65000:2 0:3 0:40 ip community-list standard 1_3_117 permit 65000:1 0:3 0:117 ip community-list standard 2_4_30 permit 65000:2 0:4 0:30 ip community-list standard 1_4_116 permit 65000:1 0:4 0:116 ip community-list standard 2_5_24 permit 65000:2 0:5 0:24 ip community-list standard 1_5_115 permit 65000:1 0:5 0:115 ip community-list standard 2_6_20 permit 65000:2 0:6 0:20 ip community-list standard 1_6_114 permit 65000:1 0:6 0:114 ip community-list standard 1_7_113 permit 65000:1 0:7 0:113 ip community-list standard 2_8_15 permit 65000:2 0:8 0:15 ip community-list standard 1_8_112 permit 65000:1 0:8 0:112 ip community-list standard 1_9_111 permit 65000:1 0:9 0:111 ip community-list standard 2_10_12 permit 65000:2 0:10 0:12 ip community-list standard 1_10_110 permit 65000:1 0:10 0:110 ip community-list standard 1_11_109 permit 65000:1 0:11 0:109 ip community-list standard 1_12_108 permit 65000:1 0:12 0:108 ip community-list standard 1_13_107 permit 65000:1 0:13 0:107 ip community-list standard 1_14_106 permit 65000:1 0:14 0:106 ip community-list standard 1_15_105 permit 65000:1 0:15 0:105 ip community-list standard 1_16_104 permit 65000:1 0:16 0:104 ip community-list standard 1_17_103 permit 65000:1 0:17 0:103 ip community-list standard 1_18_102 permit 65000:1 0:18 0:102 ip community-list standard 1_19_101 permit 65000:1 0:19 0:101 ip community-list standard 1_20_100 permit 65000:1 0:20 0:100 ip community-list standard 1_21_99 permit 65000:1 0:21 0:99 ip community-list standard 1_22_98 permit 65000:1 0:22 0:98 ip community-list standard 1_23_97 permit 65000:1 0:23 0:97 ip community-list standard 1_24_96 permit 65000:1 0:24 0:96 ip community-list standard 1_25_95 permit 65000:1 0:25 0:95 ip community-list standard 1_26_94 permit 65000:1 0:26 0:94 ip community-list standard 1_27_93 permit 65000:1 0:27 0:93 ip community-list standard 1_28_92 permit 65000:1 0:28 0:92 ip community-list standard 1_29_91 permit 65000:1 0:29 0:91 ip community-list standard 1_30_90 permit 65000:1 0:30 0:90 ip community-list standard 1_31_89 permit 65000:1 0:31 0:89 ip community-list standard 1_32_88 permit 65000:1 0:32 0:88 ip community-list standard 1_33_87 permit 65000:1 0:33 0:87 ip community-list standard 1_34_86 permit 65000:1 0:34 0:86 ip community-list standard 1_35_85 permit 65000:1 0:35 0:85 ip community-list standard 1_36_84 permit 65000:1 0:36 0:84 ip community-list standard 1_37_83 permit 65000:1 0:37 0:83 ip community-list standard 1_38_82 permit 65000:1 0:38 0:82 ip community-list standard 1_39_81 permit 65000:1 0:39 0:81 ip community-list standard 1_40_80 permit 65000:1 0:40 0:80 ip community-list standard 1_41_79 permit 65000:1 0:41 0:79 ip community-list standard 1_42_78 permit 65000:1 0:42 0:78 ip community-list standard 1_43_77 permit 65000:1 0:43 0:77 ip community-list standard 1_44_76 permit 65000:1 0:44 0:76 ip community-list standard 1_45_75 permit 65000:1 0:45 0:75 ip community-list standard 1_46_74 permit 65000:1 0:46 0:74 ip community-list standard 1_47_73 permit 65000:1 0:47 0:73 ip community-list standard 1_48_72 permit 65000:1 0:48 0:72 ip community-list standard 1_49_71 permit 65000:1 0:49 0:71 ip community-list standard 1_50_70 permit 65000:1 0:50 0:70 ip community-list standard 1_51_69 permit 65000:1 0:51 0:69 ip community-list standard 1_52_68 permit 65000:1 0:52 0:68 ip community-list standard 1_53_67 permit 65000:1 0:53 0:67 ip community-list standard 1_54_66 permit 65000:1 0:54 0:66 ip community-list standard 1_55_65 permit 65000:1 0:55 0:65 ip community-list standard 1_56_64 permit 65000:1 0:56 0:64 ip community-list standard 1_57_63 permit 65000:1 0:57 0:63 ip community-list standard 1_58_62 permit 65000:1 0:58 0:62 ip community-list standard 1_59_61 permit 65000:1 0:59 0:61 ip community-list standard 1_60_60 permit 65000:1 0:60 0:60 ip community-list expanded c120 permit 1 ^65000:4_0:120_0:1$ ip community-list expanded c120 permit 2 ^65000:3_0:121_0:1$ ip community-list expanded c120 permit 3 ^65000:3_0:122_0:2$ ip community-list expanded c120 permit 4 ^65000:3_0:123_0:3$ ip community-list expanded c120 permit 5 ^65000:3_0:124_0:4$ ip community-list expanded c120 permit 6 ^65000:3_0:125_0:5$ ip community-list expanded c120 permit 7 ^65000:3_0:126_0:6$ ip community-list expanded c120 permit 8 ^65000:3_0:127_0:7$ ip community-list expanded c120 permit 9 ^65000:3_0:128_0:8$ ip community-list expanded c120 permit 10 ^65000:3_0:129_0:9$ ip community-list expanded c120 permit 11 ^65000:3_0:130_0:10$ ip community-list expanded c120 permit 12 ^65000:3_0:131_0:11$ ip community-list expanded c120 permit 13 ^65000:3_0:132_0:12$ ip community-list expanded c120 permit 14 ^65000:3_0:133_0:13$ ip community-list expanded c120 permit 15 ^65000:3_0:134_0:14$ ip community-list expanded c120 permit 16 ^65000:3_0:135_0:15$ ip community-list expanded c120 permit 17 ^65000:3_0:136_0:16$ ip community-list expanded c120 permit 18 ^65000:3_0:137_0:17$ ip community-list expanded c120 permit 19 ^65000:3_0:138_0:18$ ip community-list expanded c120 permit 20 ^65000:3_0:139_0:19$ ip community-list expanded c120 permit 21 ^65000:3_0:140_0:20$ ip community-list expanded c120 permit 22 ^65000:3_0:141_0:21$ ip community-list expanded c120 permit 23 ^65000:3_0:142_0:22$ ip community-list expanded c120 permit 24 ^65000:3_0:143_0:23$ ip community-list expanded c120 permit 25 ^65000:3_0:144_0:24$ ip community-list expanded c120 permit 26 ^65000:3_0:145_0:25$ ip community-list expanded c120 permit 27 ^65000:3_0:146_0:26$ ip community-list expanded c120 permit 28 ^65000:3_0:147_0:27$ ip community-list expanded c120 permit 29 ^65000:3_0:148_0:28$ ip community-list expanded c120 permit 30 ^65000:3_0:149_0:29$ ip community-list expanded c120 permit 31 ^65000:3_0:150_0:30$ ip community-list expanded c120 permit 32 ^65000:3_0:151_0:31$ ip community-list expanded c120 permit 33 ^65000:3_0:152_0:32$ ip community-list expanded c120 permit 34 ^65000:3_0:153_0:33$ ip community-list expanded c120 permit 35 ^65000:3_0:154_0:34$ ip community-list expanded c120 permit 36 ^65000:3_0:155_0:35$ ip community-list expanded c120 permit 37 ^65000:3_0:156_0:36$ ip community-list expanded c120 permit 38 ^65000:3_0:157_0:37$ ip community-list expanded c120 permit 39 ^65000:3_0:158_0:38$ ip community-list expanded c120 permit 40 ^65000:3_0:159_0:39$ ip community-list expanded c120 permit 41 ^65000:3_0:160_0:40$ ip community-list expanded c120 permit 42 ^65000:3_0:161_0:41$ ip community-list expanded c120 permit 43 ^65000:3_0:162_0:42$ ip community-list expanded c120 permit 44 ^65000:3_0:163_0:43$ ip community-list expanded c120 permit 45 ^65000:3_0:164_0:44$ ip community-list expanded c120 permit 46 ^65000:3_0:165_0:45$ ip community-list expanded c120 permit 47 ^65000:3_0:166_0:46$ ip community-list expanded c120 permit 48 ^65000:3_0:167_0:47$ ip community-list expanded c120 permit 49 ^65000:3_0:168_0:48$ ip community-list expanded c120 permit 50 ^65000:3_0:169_0:49$ ip community-list expanded c120 permit 51 ^65000:3_0:170_0:50$ ip community-list expanded c120 permit 52 ^65000:3_0:171_0:51$ ip community-list expanded c120 permit 53 ^65000:3_0:172_0:52$ ip community-list expanded c120 permit 54 ^65000:3_0:173_0:53$ ip community-list expanded c120 permit 55 ^65000:3_0:174_0:54$ ip community-list expanded c120 permit 56 ^65000:3_0:175_0:55$ ip community-list expanded c120 permit 57 ^65000:3_0:176_0:56$ ip community-list expanded c120 permit 58 ^65000:3_0:177_0:57$ ip community-list expanded c120 permit 59 ^65000:3_0:178_0:58$ ip community-list expanded c120 permit 60 ^65000:3_0:179_0:59$ ip community-list expanded c120 permit 61 ^65000:3_0:180_0:60$ ip community-list expanded c120 permit 62 ^65000:3_0:181_0:61$ ip community-list expanded c120 permit 63 ^65000:3_0:182_0:62$ ip community-list expanded c120 permit 64 ^65000:3_0:183_0:63$ ip community-list expanded c120 permit 65 ^65000:3_0:184_0:64$ ip community-list expanded c120 permit 66 ^65000:3_0:185_0:65$ ip community-list expanded c120 permit 67 ^65000:3_0:186_0:66$ ip community-list expanded c120 permit 68 ^65000:3_0:187_0:67$ ip community-list expanded c120 permit 69 ^65000:3_0:188_0:68$ ip community-list expanded c120 permit 70 ^65000:3_0:189_0:69$ ip community-list expanded c120 permit 71 ^65000:3_0:190_0:70$ ip community-list expanded c120 permit 72 ^65000:3_0:191_0:71$ ip community-list expanded c120 permit 73 ^65000:3_0:192_0:72$ ip community-list expanded c120 permit 74 ^65000:3_0:193_0:73$ ip community-list expanded c120 permit 75 ^65000:3_0:194_0:74$ ip community-list expanded c120 permit 76 ^65000:3_0:195_0:75$ ip community-list expanded c120 permit 77 ^65000:3_0:196_0:76$ ip community-list expanded c120 permit 78 ^65000:3_0:197_0:77$ ip community-list expanded c120 permit 79 ^65000:3_0:198_0:78$ ip community-list expanded c120 permit 80 ^65000:3_0:199_0:79$ ip community-list expanded c120 permit 81 ^65000:3_0:200_0:80$ ip community-list expanded c120 permit 82 ^65000:3_0:201_0:81$ ip community-list expanded c120 permit 83 ^65000:3_0:202_0:82$ ip community-list expanded c120 permit 84 ^65000:3_0:203_0:83$ ip community-list expanded c120 permit 85 ^65000:3_0:204_0:84$ ip community-list expanded c120 permit 86 ^65000:3_0:205_0:85$ ip community-list expanded c120 permit 87 ^65000:3_0:206_0:86$ ip community-list expanded c120 permit 88 ^65000:3_0:207_0:87$ ip community-list expanded c120 permit 89 ^65000:3_0:208_0:88$ ip community-list expanded c120 permit 90 ^65000:3_0:209_0:89$ ip community-list expanded c120 permit 91 ^65000:3_0:210_0:90$ ip community-list expanded c120 permit 92 ^65000:3_0:211_0:91$ ip community-list expanded c120 permit 93 ^65000:3_0:212_0:92$ ip community-list expanded c120 permit 94 ^65000:3_0:213_0:93$ ip community-list expanded c120 permit 95 ^65000:3_0:214_0:94$ ip community-list expanded c120 permit 96 ^65000:3_0:215_0:95$ ip community-list expanded c120 permit 97 ^65000:3_0:216_0:96$ ip community-list expanded c120 permit 98 ^65000:3_0:217_0:97$ ip community-list expanded c120 permit 99 ^65000:3_0:218_0:98$ ip community-list expanded c120 permit 100 ^65000:3_0:219_0:99$ ip community-list expanded c120 permit 101 ^65000:3_0:220_0:100$ ip community-list expanded c120 permit 102 ^65000:3_0:221_0:101$ ip community-list expanded c120 permit 103 ^65000:3_0:222_0:102$ ip community-list expanded c120 permit 104 ^65000:3_0:223_0:103$ ip community-list expanded c120 permit 105 ^65000:3_0:224_0:104$ ip community-list expanded c120 permit 106 ^65000:3_0:225_0:105$ ip community-list expanded c120 permit 107 ^65000:3_0:226_0:106$ ip community-list expanded c120 permit 108 ^65000:3_0:227_0:107$ ip community-list expanded c120 permit 109 ^65000:3_0:228_0:108$ ip community-list expanded c120 permit 110 ^65000:3_0:229_0:109$ ip community-list expanded c120 permit 111 ^65000:3_0:230_0:110$ ip community-list expanded c120 permit 112 ^65000:3_0:231_0:111$ ip community-list expanded c120 permit 113 ^65000:3_0:232_0:112$ ip community-list expanded c120 permit 114 ^65000:3_0:233_0:113$ ip community-list expanded c120 permit 115 ^65000:3_0:234_0:114$ ip community-list expanded c120 permit 116 ^65000:3_0:235_0:115$ ip community-list expanded c120 permit 117 ^65000:3_0:236_0:116$ ip community-list expanded c120 permit 118 ^65000:3_0:237_0:117$ ip community-list expanded c120 permit 119 ^65000:3_0:238_0:118$ ip community-list expanded c120 permit 120 ^65000:3_0:239_0:119$ ip community-list expanded c120 permit 121 ^65000:4_0:240_0:2$ ip community-list expanded c120 permit 122 ^65000:3_0:240_0:120$ ip community-list expanded c120 permit 123 ^65000:4_0:241_0:2$ ip community-list expanded c120 permit 124 ^65000:3_0:241_0:121$ ip community-list expanded c120 permit 125 ^65000:3_0:242_0:122$ ip community-list expanded c120 permit 126 ^65000:3_0:243_0:123$ ip community-list expanded c120 permit 127 ^65000:3_0:244_0:124$ ip community-list expanded c120 permit 128 ^65000:3_0:245_0:125$ ip community-list expanded c120 permit 129 ^65000:3_0:246_0:126$ ip community-list expanded c120 permit 130 ^65000:3_0:247_0:127$ ip community-list expanded c120 permit 131 ^65000:3_0:248_0:128$ ip community-list expanded c120 permit 132 ^65000:3_0:249_0:129$ ip community-list expanded c120 permit 133 ^65000:3_0:250_0:130$ ip community-list expanded c120 permit 134 ^65000:3_0:251_0:131$ ip community-list expanded c120 permit 135 ^65000:3_0:252_0:132$ ip community-list expanded c120 permit 136 ^65000:3_0:253_0:133$ ip community-list expanded c120 permit 137 ^65000:3_0:254_0:134$ ip community-list expanded c120 permit 138 ^65000:3_0:255_0:135$ ip community-list expanded c120 permit 139 ^65000:3_0:256_0:136$ route-map calculator permit 6517 match community 1_1_119 2_1_120 2_2_60 1_2_118 2_3_40 set community 0:120 route-map calculator permit 6518 match community 1_3_117 2_4_30 1_4_116 2_5_24 1_5_115 set community 0:120 route-map calculator permit 6519 match community 2_6_20 1_6_114 1_7_113 2_8_15 1_8_112 set community 0:120 route-map calculator permit 6520 match community 1_9_111 2_10_12 1_10_110 1_11_109 1_12_108 set community 0:120 route-map calculator permit 6521 match community 1_13_107 1_14_106 1_15_105 1_16_104 1_17_103 set community 0:120 route-map calculator permit 6522 match community 1_18_102 1_19_101 1_20_100 1_21_99 1_22_98 set community 0:120 route-map calculator permit 6523 match community 1_23_97 1_24_96 1_25_95 1_26_94 1_27_93 set community 0:120 route-map calculator permit 6524 match community 1_28_92 1_29_91 1_30_90 1_31_89 1_32_88 set community 0:120 route-map calculator permit 6525 match community 1_33_87 1_34_86 1_35_85 1_36_84 1_37_83 set community 0:120 route-map calculator permit 6526 match community 1_38_82 1_39_81 1_40_80 1_41_79 1_42_78 set community 0:120 route-map calculator permit 6527 match community 1_43_77 1_44_76 1_45_75 1_46_74 1_47_73 set community 0:120 route-map calculator permit 6528 match community 1_48_72 1_49_71 1_50_70 1_51_69 1_52_68 set community 0:120 route-map calculator permit 6529 match community 1_53_67 1_54_66 1_55_65 1_56_64 1_57_63 set community 0:120 route-map calculator permit 6530 match community 1_58_62 1_59_61 1_60_60 c4_120_1 c3_121_1 set community 0:120 route-map calculator permit 6531 match community c3_122_2 c3_123_3 c3_124_4 c3_125_5 c3_126_6 set community 0:120 route-map calculator permit 6532 match community c3_127_7 c3_128_8 c3_129_9 c3_130_10 c3_131_11 set community 0:120 route-map calculator permit 6533 match community c3_132_12 c3_133_13 c3_134_14 c3_135_15 c3_136_16 set community 0:120 route-map calculator permit 6534 match community c3_137_17 c3_138_18 c3_139_19 c3_140_20 c3_141_21 set community 0:120 route-map calculator permit 6535 match community c3_142_22 c3_143_23 c3_144_24 c3_145_25 c3_146_26 set community 0:120 route-map calculator permit 6536 match community c3_147_27 c3_148_28 c3_149_29 c3_150_30 c3_151_31 set community 0:120 route-map calculator permit 6537 match community c3_152_32 c3_153_33 c3_154_34 c3_155_35 c3_156_36 set community 0:120 route-map calculator permit 6538 match community c3_157_37 c3_158_38 c3_159_39 c3_160_40 c3_161_41 set community 0:120 route-map calculator permit 6539 match community c3_162_42 c3_163_43 c3_164_44 c3_165_45 c3_166_46 set community 0:120 route-map calculator permit 6540 match community c3_167_47 c3_168_48 c3_169_49 c3_170_50 c3_171_51 set community 0:120 route-map calculator permit 6541 match community c3_172_52 c3_173_53 c3_174_54 c3_175_55 c3_176_56 set community 0:120 route-map calculator permit 6542 match community c3_177_57 c3_178_58 c3_179_59 c3_180_60 c3_181_61 set community 0:120 route-map calculator permit 6543 match community c3_182_62 c3_183_63 c3_184_64 c3_185_65 c3_186_66 set community 0:120 route-map calculator permit 6544 match community c3_187_67 c3_188_68 c3_189_69 c3_190_70 c3_191_71 set community 0:120 route-map calculator permit 6545 match community c3_192_72 c3_193_73 c3_194_74 c3_195_75 c3_196_76 set community 0:120 route-map calculator permit 6546 match community c3_197_77 c3_198_78 c3_199_79 c3_200_80 c3_201_81 set community 0:120 route-map calculator permit 6547 match community c3_202_82 c3_203_83 c3_204_84 c3_205_85 c3_206_86 set community 0:120 route-map calculator permit 6548 match community c3_207_87 c3_208_88 c3_209_89 c3_210_90 c3_211_91 set community 0:120 route-map calculator permit 6549 match community c3_212_92 c3_213_93 c3_214_94 c3_215_95 c3_216_96 set community 0:120 route-map calculator permit 6550 match community c3_217_97 c3_218_98 c3_219_99 c3_220_100 c3_221_101 set community 0:120 route-map calculator permit 6551 match community c3_222_102 c3_223_103 c3_224_104 c3_225_105 c3_226_106 set community 0:120 route-map calculator permit 6552 match community c3_227_107 c3_228_108 c3_229_109 c3_230_110 c3_231_111 set community 0:120 route-map calculator permit 6553 match community c3_232_112 c3_233_113 c3_234_114 c3_235_115 c3_236_116 set community 0:120 route-map calculator permit 6554 match community c3_237_117 c3_238_118 c3_239_119 c4_240_2 c3_240_120 set community 0:120 route-map calculator permit 6555 match community c4_241_2 c3_241_121 c3_242_122 c3_243_123 c3_244_124 set community 0:120 route-map calculator permit 6556 match community c3_245_125 c3_246_126 c3_247_127 c3_248_128 c3_249_129 set community 0:120 route-map calculator permit 6557 match community c3_250_130 c3_251_131 c3_252_132 c3_253_133 c3_254_134 set community 0:120 route-map calculator permit 6558 match community c3_255_135 c3_256_136 set community 0:120 ip community-list standard 2_70_205 permit 65000:2 0:70 0:205 ip community-list standard 2_82_175 permit 65000:2 0:82 0:175 route-map calculator permit 6559 match community 2_70_205 2_82_175 set community 0:14350 ip community-list standard 2_5_242 permit 65000:2 0:5 0:242 ip community-list standard 2_10_121 permit 65000:2 0:10 0:121 ip community-list standard 2_11_110 permit 65000:2 0:11 0:110 ip community-list standard 2_22_55 permit 65000:2 0:22 0:55 route-map calculator permit 6560 match community 2_5_242 2_10_121 2_11_110 2_22_55 set community 0:1210 ip community-list standard 2_30_167 permit 65000:2 0:30 0:167 route-map calculator permit 6561 match community 2_30_167 set community 0:5010 ip community-list standard 2_119_151 permit 65000:2 0:119 0:151 route-map calculator permit 6562 match community 2_119_151 set community 0:17969 ip community-list standard 2_169_184 permit 65000:2 0:169 0:184 route-map calculator permit 6563 match community 2_169_184 set community 0:31096 ip community-list standard 2_179_254 permit 65000:2 0:179 0:254 route-map calculator permit 6564 match community 2_179_254 set community 0:45466 ip community-list standard 2_68_184 permit 65000:2 0:68 0:184 ip community-list standard 2_92_136 permit 65000:2 0:92 0:136 route-map calculator permit 6565 match community 2_68_184 2_92_136 set community 0:12512 ip community-list standard 2_61_197 permit 65000:2 0:61 0:197 route-map calculator permit 6566 match community 2_61_197 set community 0:12017 ip community-list standard 2_131_153 permit 65000:2 0:131 0:153 route-map calculator permit 6567 match community 2_131_153 set community 0:20043 ip community-list standard 2_205_237 permit 65000:2 0:205 0:237 route-map calculator permit 6568 match community 2_205_237 set community 0:48585 ip community-list standard 2_120_251 permit 65000:2 0:120 0:251 route-map calculator permit 6569 match community 2_120_251 set community 0:30120 ip community-list standard 2_181_181 permit 65000:2 0:181 0:181 route-map calculator permit 6570 match community 2_181_181 set community 0:32761 ip community-list standard 2_187_250 permit 65000:2 0:187 0:250 route-map calculator permit 6571 match community 2_187_250 set community 0:46750 ip community-list standard 2_84_199 permit 65000:2 0:84 0:199 route-map calculator permit 6572 match community 2_84_199 set community 0:16716 ip community-list standard 2_52_217 permit 65000:2 0:52 0:217 ip community-list standard 2_62_182 permit 65000:2 0:62 0:182 ip community-list standard 2_91_124 permit 65000:2 0:91 0:124 route-map calculator permit 6573 match community 2_52_217 2_62_182 2_91_124 set community 0:11284 ip community-list standard 2_169_256 permit 65000:2 0:169 0:256 ip community-list standard 2_208_208 permit 65000:2 0:208 0:208 route-map calculator permit 6574 match community 2_169_256 2_208_208 set community 0:43264 ip community-list standard 2_78_234 permit 65000:2 0:78 0:234 ip community-list standard 2_108_169 permit 65000:2 0:108 0:169 ip community-list standard 2_117_156 permit 65000:2 0:117 0:156 route-map calculator permit 6575 match community 2_78_234 2_108_169 2_117_156 set community 0:18252 ip community-list standard 2_186_247 permit 65000:2 0:186 0:247 route-map calculator permit 6576 match community 2_186_247 set community 0:45942 ip community-list standard 2_142_224 permit 65000:2 0:142 0:224 route-map calculator permit 6577 match community 2_142_224 set community 0:31808 ip community-list standard 2_53_240 permit 65000:2 0:53 0:240 ip community-list standard 2_60_212 permit 65000:2 0:60 0:212 ip community-list standard 2_80_159 permit 65000:2 0:80 0:159 ip community-list standard 2_106_120 permit 65000:2 0:106 0:120 route-map calculator permit 6578 match community 2_53_240 2_60_212 2_80_159 2_106_120 set community 0:12720 ip community-list standard 2_6_221 permit 65000:2 0:6 0:221 ip community-list standard 2_13_102 permit 65000:2 0:13 0:102 ip community-list standard 2_17_78 permit 65000:2 0:17 0:78 ip community-list standard 2_26_51 permit 65000:2 0:26 0:51 ip community-list standard 2_34_39 permit 65000:2 0:34 0:39 route-map calculator permit 6579 match community 2_6_221 2_13_102 2_17_78 2_26_51 2_34_39 set community 0:1326 ip community-list standard 2_123_129 permit 65000:2 0:123 0:129 route-map calculator permit 6580 match community 2_123_129 set community 0:15867 ip community-list standard 2_90_239 permit 65000:2 0:90 0:239 route-map calculator permit 6581 match community 2_90_239 set community 0:21510 ip community-list standard 2_59_197 permit 65000:2 0:59 0:197 route-map calculator permit 6582 match community 2_59_197 set community 0:11623 ip community-list standard 2_184_213 permit 65000:2 0:184 0:213 route-map calculator permit 6583 match community 2_184_213 set community 0:39192 ip community-list standard 2_67_224 permit 65000:2 0:67 0:224 ip community-list standard 2_112_134 permit 65000:2 0:112 0:134 route-map calculator permit 6584 match community 2_67_224 2_112_134 set community 0:15008 ip community-list standard 2_148_245 permit 65000:2 0:148 0:245 ip community-list standard 2_185_196 permit 65000:2 0:185 0:196 route-map calculator permit 6585 match community 2_148_245 2_185_196 set community 0:36260 ip community-list standard 2_132_253 permit 65000:2 0:132 0:253 ip community-list standard 2_138_242 permit 65000:2 0:138 0:242 route-map calculator permit 6586 match community 2_132_253 2_138_242 set community 0:33396 ip community-list standard 2_172_245 permit 65000:2 0:172 0:245 ip community-list standard 2_196_215 permit 65000:2 0:196 0:215 route-map calculator permit 6587 match community 2_172_245 2_196_215 set community 0:42140 ip community-list standard 2_64_247 permit 65000:2 0:64 0:247 ip community-list standard 2_76_208 permit 65000:2 0:76 0:208 ip community-list standard 2_104_152 permit 65000:2 0:104 0:152 route-map calculator permit 6588 match community 2_64_247 2_76_208 2_104_152 set community 0:15808 ip community-list standard 2_219_245 permit 65000:2 0:219 0:245 route-map calculator permit 6589 match community 2_219_245 set community 0:53655 ip community-list standard 2_49_167 permit 65000:2 0:49 0:167 route-map calculator permit 6590 match community 2_49_167 set community 0:8183 ip community-list standard 2_4_210 permit 65000:2 0:4 0:210 ip community-list standard 2_5_168 permit 65000:2 0:5 0:168 ip community-list standard 2_6_140 permit 65000:2 0:6 0:140 ip community-list standard 2_7_120 permit 65000:2 0:7 0:120 ip community-list standard 2_8_105 permit 65000:2 0:8 0:105 ip community-list standard 2_10_84 permit 65000:2 0:10 0:84 ip community-list standard 2_12_70 permit 65000:2 0:12 0:70 ip community-list standard 2_14_60 permit 65000:2 0:14 0:60 ip community-list standard 2_15_56 permit 65000:2 0:15 0:56 ip community-list standard 2_20_42 permit 65000:2 0:20 0:42 ip community-list standard 2_21_40 permit 65000:2 0:21 0:40 ip community-list standard 2_24_35 permit 65000:2 0:24 0:35 ip community-list standard 2_28_30 permit 65000:2 0:28 0:30 route-map calculator permit 6591 match community 2_4_210 2_5_168 2_6_140 2_7_120 2_8_105 set community 0:840 route-map calculator permit 6592 match community 2_10_84 2_12_70 2_14_60 2_15_56 2_20_42 set community 0:840 route-map calculator permit 6593 match community 2_21_40 2_24_35 2_28_30 set community 0:840 ip community-list standard 2_143_185 permit 65000:2 0:143 0:185 route-map calculator permit 6594 match community 2_143_185 set community 0:26455 ip community-list standard 2_117_191 permit 65000:2 0:117 0:191 route-map calculator permit 6595 match community 2_117_191 set community 0:22347 ip community-list standard 2_4_214 permit 65000:2 0:4 0:214 ip community-list standard 2_8_107 permit 65000:2 0:8 0:107 route-map calculator permit 6596 match community 2_4_214 2_8_107 set community 0:856 ip community-list standard 2_27_89 permit 65000:2 0:27 0:89 route-map calculator permit 6597 match community 2_27_89 set community 0:2403 ip community-list standard 2_22_188 permit 65000:2 0:22 0:188 ip community-list standard 2_44_94 permit 65000:2 0:44 0:94 ip community-list standard 2_47_88 permit 65000:2 0:47 0:88 route-map calculator permit 6598 match community 2_22_188 2_44_94 2_47_88 set community 0:4136 ip community-list standard 2_212_212 permit 65000:2 0:212 0:212 route-map calculator permit 6599 match community 2_212_212 set community 0:44944 ip community-list standard 2_41_161 permit 65000:2 0:41 0:161 route-map calculator permit 6600 match community 2_41_161 set community 0:6601 ip community-list standard 2_20_185 permit 65000:2 0:20 0:185 ip community-list standard 2_25_148 permit 65000:2 0:25 0:148 ip community-list standard 2_37_100 permit 65000:2 0:37 0:100 ip community-list standard 2_50_74 permit 65000:2 0:50 0:74 route-map calculator permit 6601 match community 2_20_185 2_25_148 2_37_100 2_50_74 set community 0:3700 ip community-list standard 2_180_243 permit 65000:2 0:180 0:243 route-map calculator permit 6602 match community 2_180_243 set community 0:43740 ip community-list standard 1_1_77 permit 65000:1 0:1 0:77 ip community-list standard 2_1_78 permit 65000:2 0:1 0:78 ip community-list standard 2_2_39 permit 65000:2 0:2 0:39 ip community-list standard 1_2_76 permit 65000:1 0:2 0:76 ip community-list standard 2_3_26 permit 65000:2 0:3 0:26 ip community-list standard 1_3_75 permit 65000:1 0:3 0:75 ip community-list standard 1_4_74 permit 65000:1 0:4 0:74 ip community-list standard 1_5_73 permit 65000:1 0:5 0:73 ip community-list standard 2_6_13 permit 65000:2 0:6 0:13 ip community-list standard 1_6_72 permit 65000:1 0:6 0:72 ip community-list standard 1_7_71 permit 65000:1 0:7 0:71 ip community-list standard 1_8_70 permit 65000:1 0:8 0:70 ip community-list standard 1_9_69 permit 65000:1 0:9 0:69 ip community-list standard 1_10_68 permit 65000:1 0:10 0:68 ip community-list standard 1_11_67 permit 65000:1 0:11 0:67 ip community-list standard 1_12_66 permit 65000:1 0:12 0:66 ip community-list standard 1_13_65 permit 65000:1 0:13 0:65 ip community-list standard 1_14_64 permit 65000:1 0:14 0:64 ip community-list standard 1_15_63 permit 65000:1 0:15 0:63 ip community-list standard 1_16_62 permit 65000:1 0:16 0:62 ip community-list standard 1_17_61 permit 65000:1 0:17 0:61 ip community-list standard 1_18_60 permit 65000:1 0:18 0:60 ip community-list standard 1_19_59 permit 65000:1 0:19 0:59 ip community-list standard 1_20_58 permit 65000:1 0:20 0:58 ip community-list standard 1_21_57 permit 65000:1 0:21 0:57 ip community-list standard 1_22_56 permit 65000:1 0:22 0:56 ip community-list standard 1_23_55 permit 65000:1 0:23 0:55 ip community-list standard 1_24_54 permit 65000:1 0:24 0:54 ip community-list standard 1_25_53 permit 65000:1 0:25 0:53 ip community-list standard 1_26_52 permit 65000:1 0:26 0:52 ip community-list standard 1_27_51 permit 65000:1 0:27 0:51 ip community-list standard 1_28_50 permit 65000:1 0:28 0:50 ip community-list standard 1_29_49 permit 65000:1 0:29 0:49 ip community-list standard 1_30_48 permit 65000:1 0:30 0:48 ip community-list standard 1_31_47 permit 65000:1 0:31 0:47 ip community-list standard 1_32_46 permit 65000:1 0:32 0:46 ip community-list standard 1_33_45 permit 65000:1 0:33 0:45 ip community-list standard 1_34_44 permit 65000:1 0:34 0:44 ip community-list standard 1_35_43 permit 65000:1 0:35 0:43 ip community-list standard 1_36_42 permit 65000:1 0:36 0:42 ip community-list standard 1_37_41 permit 65000:1 0:37 0:41 ip community-list standard 1_38_40 permit 65000:1 0:38 0:40 ip community-list standard 1_39_39 permit 65000:1 0:39 0:39 ip community-list expanded c78 permit 1 ^65000:4_0:78_0:1$ ip community-list expanded c78 permit 2 ^65000:3_0:79_0:1$ ip community-list expanded c78 permit 3 ^65000:3_0:80_0:2$ ip community-list expanded c78 permit 4 ^65000:3_0:81_0:3$ ip community-list expanded c78 permit 5 ^65000:3_0:82_0:4$ ip community-list expanded c78 permit 6 ^65000:3_0:83_0:5$ ip community-list expanded c78 permit 7 ^65000:3_0:84_0:6$ ip community-list expanded c78 permit 8 ^65000:3_0:85_0:7$ ip community-list expanded c78 permit 9 ^65000:3_0:86_0:8$ ip community-list expanded c78 permit 10 ^65000:3_0:87_0:9$ ip community-list expanded c78 permit 11 ^65000:3_0:88_0:10$ ip community-list expanded c78 permit 12 ^65000:3_0:89_0:11$ ip community-list expanded c78 permit 13 ^65000:3_0:90_0:12$ ip community-list expanded c78 permit 14 ^65000:3_0:91_0:13$ ip community-list expanded c78 permit 15 ^65000:3_0:92_0:14$ ip community-list expanded c78 permit 16 ^65000:3_0:93_0:15$ ip community-list expanded c78 permit 17 ^65000:3_0:94_0:16$ ip community-list expanded c78 permit 18 ^65000:3_0:95_0:17$ ip community-list expanded c78 permit 19 ^65000:3_0:96_0:18$ ip community-list expanded c78 permit 20 ^65000:3_0:97_0:19$ ip community-list expanded c78 permit 21 ^65000:3_0:98_0:20$ ip community-list expanded c78 permit 22 ^65000:3_0:99_0:21$ ip community-list expanded c78 permit 23 ^65000:3_0:100_0:22$ ip community-list expanded c78 permit 24 ^65000:3_0:101_0:23$ ip community-list expanded c78 permit 25 ^65000:3_0:102_0:24$ ip community-list expanded c78 permit 26 ^65000:3_0:103_0:25$ ip community-list expanded c78 permit 27 ^65000:3_0:104_0:26$ ip community-list expanded c78 permit 28 ^65000:3_0:105_0:27$ ip community-list expanded c78 permit 29 ^65000:3_0:106_0:28$ ip community-list expanded c78 permit 30 ^65000:3_0:107_0:29$ ip community-list expanded c78 permit 31 ^65000:3_0:108_0:30$ ip community-list expanded c78 permit 32 ^65000:3_0:109_0:31$ ip community-list expanded c78 permit 33 ^65000:3_0:110_0:32$ ip community-list expanded c78 permit 34 ^65000:3_0:111_0:33$ ip community-list expanded c78 permit 35 ^65000:3_0:112_0:34$ ip community-list expanded c78 permit 36 ^65000:3_0:113_0:35$ ip community-list expanded c78 permit 37 ^65000:3_0:114_0:36$ ip community-list expanded c78 permit 38 ^65000:3_0:115_0:37$ ip community-list expanded c78 permit 39 ^65000:3_0:116_0:38$ ip community-list expanded c78 permit 40 ^65000:3_0:117_0:39$ ip community-list expanded c78 permit 41 ^65000:3_0:118_0:40$ ip community-list expanded c78 permit 42 ^65000:3_0:119_0:41$ ip community-list expanded c78 permit 43 ^65000:3_0:120_0:42$ ip community-list expanded c78 permit 44 ^65000:3_0:121_0:43$ ip community-list expanded c78 permit 45 ^65000:3_0:122_0:44$ ip community-list expanded c78 permit 46 ^65000:3_0:123_0:45$ ip community-list expanded c78 permit 47 ^65000:3_0:124_0:46$ ip community-list expanded c78 permit 48 ^65000:3_0:125_0:47$ ip community-list expanded c78 permit 49 ^65000:3_0:126_0:48$ ip community-list expanded c78 permit 50 ^65000:3_0:127_0:49$ ip community-list expanded c78 permit 51 ^65000:3_0:128_0:50$ ip community-list expanded c78 permit 52 ^65000:3_0:129_0:51$ ip community-list expanded c78 permit 53 ^65000:3_0:130_0:52$ ip community-list expanded c78 permit 54 ^65000:3_0:131_0:53$ ip community-list expanded c78 permit 55 ^65000:3_0:132_0:54$ ip community-list expanded c78 permit 56 ^65000:3_0:133_0:55$ ip community-list expanded c78 permit 57 ^65000:3_0:134_0:56$ ip community-list expanded c78 permit 58 ^65000:3_0:135_0:57$ ip community-list expanded c78 permit 59 ^65000:3_0:136_0:58$ ip community-list expanded c78 permit 60 ^65000:3_0:137_0:59$ ip community-list expanded c78 permit 61 ^65000:3_0:138_0:60$ ip community-list expanded c78 permit 62 ^65000:3_0:139_0:61$ ip community-list expanded c78 permit 63 ^65000:3_0:140_0:62$ ip community-list expanded c78 permit 64 ^65000:3_0:141_0:63$ ip community-list expanded c78 permit 65 ^65000:3_0:142_0:64$ ip community-list expanded c78 permit 66 ^65000:3_0:143_0:65$ ip community-list expanded c78 permit 67 ^65000:3_0:144_0:66$ ip community-list expanded c78 permit 68 ^65000:3_0:145_0:67$ ip community-list expanded c78 permit 69 ^65000:3_0:146_0:68$ ip community-list expanded c78 permit 70 ^65000:3_0:147_0:69$ ip community-list expanded c78 permit 71 ^65000:3_0:148_0:70$ ip community-list expanded c78 permit 72 ^65000:3_0:149_0:71$ ip community-list expanded c78 permit 73 ^65000:3_0:150_0:72$ ip community-list expanded c78 permit 74 ^65000:3_0:151_0:73$ ip community-list expanded c78 permit 75 ^65000:3_0:152_0:74$ ip community-list expanded c78 permit 76 ^65000:3_0:153_0:75$ ip community-list expanded c78 permit 77 ^65000:3_0:154_0:76$ ip community-list expanded c78 permit 78 ^65000:3_0:155_0:77$ ip community-list expanded c78 permit 79 ^65000:4_0:156_0:2$ ip community-list expanded c78 permit 80 ^65000:3_0:156_0:78$ ip community-list expanded c78 permit 81 ^65000:4_0:157_0:2$ ip community-list expanded c78 permit 82 ^65000:3_0:157_0:79$ ip community-list expanded c78 permit 83 ^65000:3_0:158_0:80$ ip community-list expanded c78 permit 84 ^65000:3_0:159_0:81$ ip community-list expanded c78 permit 85 ^65000:3_0:160_0:82$ ip community-list expanded c78 permit 86 ^65000:3_0:161_0:83$ ip community-list expanded c78 permit 87 ^65000:3_0:162_0:84$ ip community-list expanded c78 permit 88 ^65000:3_0:163_0:85$ ip community-list expanded c78 permit 89 ^65000:3_0:164_0:86$ ip community-list expanded c78 permit 90 ^65000:3_0:165_0:87$ ip community-list expanded c78 permit 91 ^65000:3_0:166_0:88$ ip community-list expanded c78 permit 92 ^65000:3_0:167_0:89$ ip community-list expanded c78 permit 93 ^65000:3_0:168_0:90$ ip community-list expanded c78 permit 94 ^65000:3_0:169_0:91$ ip community-list expanded c78 permit 95 ^65000:3_0:170_0:92$ ip community-list expanded c78 permit 96 ^65000:3_0:171_0:93$ ip community-list expanded c78 permit 97 ^65000:3_0:172_0:94$ ip community-list expanded c78 permit 98 ^65000:3_0:173_0:95$ ip community-list expanded c78 permit 99 ^65000:3_0:174_0:96$ ip community-list expanded c78 permit 100 ^65000:3_0:175_0:97$ ip community-list expanded c78 permit 101 ^65000:3_0:176_0:98$ ip community-list expanded c78 permit 102 ^65000:3_0:177_0:99$ ip community-list expanded c78 permit 103 ^65000:3_0:178_0:100$ ip community-list expanded c78 permit 104 ^65000:3_0:179_0:101$ ip community-list expanded c78 permit 105 ^65000:3_0:180_0:102$ ip community-list expanded c78 permit 106 ^65000:3_0:181_0:103$ ip community-list expanded c78 permit 107 ^65000:3_0:182_0:104$ ip community-list expanded c78 permit 108 ^65000:3_0:183_0:105$ ip community-list expanded c78 permit 109 ^65000:3_0:184_0:106$ ip community-list expanded c78 permit 110 ^65000:3_0:185_0:107$ ip community-list expanded c78 permit 111 ^65000:3_0:186_0:108$ ip community-list expanded c78 permit 112 ^65000:3_0:187_0:109$ ip community-list expanded c78 permit 113 ^65000:3_0:188_0:110$ ip community-list expanded c78 permit 114 ^65000:3_0:189_0:111$ ip community-list expanded c78 permit 115 ^65000:3_0:190_0:112$ ip community-list expanded c78 permit 116 ^65000:3_0:191_0:113$ ip community-list expanded c78 permit 117 ^65000:3_0:192_0:114$ ip community-list expanded c78 permit 118 ^65000:3_0:193_0:115$ ip community-list expanded c78 permit 119 ^65000:3_0:194_0:116$ ip community-list expanded c78 permit 120 ^65000:3_0:195_0:117$ ip community-list expanded c78 permit 121 ^65000:3_0:196_0:118$ ip community-list expanded c78 permit 122 ^65000:3_0:197_0:119$ ip community-list expanded c78 permit 123 ^65000:3_0:198_0:120$ ip community-list expanded c78 permit 124 ^65000:3_0:199_0:121$ ip community-list expanded c78 permit 125 ^65000:3_0:200_0:122$ ip community-list expanded c78 permit 126 ^65000:3_0:201_0:123$ ip community-list expanded c78 permit 127 ^65000:3_0:202_0:124$ ip community-list expanded c78 permit 128 ^65000:3_0:203_0:125$ ip community-list expanded c78 permit 129 ^65000:3_0:204_0:126$ ip community-list expanded c78 permit 130 ^65000:3_0:205_0:127$ ip community-list expanded c78 permit 131 ^65000:3_0:206_0:128$ ip community-list expanded c78 permit 132 ^65000:3_0:207_0:129$ ip community-list expanded c78 permit 133 ^65000:3_0:208_0:130$ ip community-list expanded c78 permit 134 ^65000:3_0:209_0:131$ ip community-list expanded c78 permit 135 ^65000:3_0:210_0:132$ ip community-list expanded c78 permit 136 ^65000:3_0:211_0:133$ ip community-list expanded c78 permit 137 ^65000:3_0:212_0:134$ ip community-list expanded c78 permit 138 ^65000:3_0:213_0:135$ ip community-list expanded c78 permit 139 ^65000:3_0:214_0:136$ ip community-list expanded c78 permit 140 ^65000:3_0:215_0:137$ ip community-list expanded c78 permit 141 ^65000:3_0:216_0:138$ ip community-list expanded c78 permit 142 ^65000:3_0:217_0:139$ ip community-list expanded c78 permit 143 ^65000:3_0:218_0:140$ ip community-list expanded c78 permit 144 ^65000:3_0:219_0:141$ ip community-list expanded c78 permit 145 ^65000:3_0:220_0:142$ ip community-list expanded c78 permit 146 ^65000:3_0:221_0:143$ ip community-list expanded c78 permit 147 ^65000:3_0:222_0:144$ ip community-list expanded c78 permit 148 ^65000:3_0:223_0:145$ ip community-list expanded c78 permit 149 ^65000:3_0:224_0:146$ ip community-list expanded c78 permit 150 ^65000:3_0:225_0:147$ ip community-list expanded c78 permit 151 ^65000:3_0:226_0:148$ ip community-list expanded c78 permit 152 ^65000:3_0:227_0:149$ ip community-list expanded c78 permit 153 ^65000:3_0:228_0:150$ ip community-list expanded c78 permit 154 ^65000:3_0:229_0:151$ ip community-list expanded c78 permit 155 ^65000:3_0:230_0:152$ ip community-list expanded c78 permit 156 ^65000:3_0:231_0:153$ ip community-list expanded c78 permit 157 ^65000:3_0:232_0:154$ ip community-list expanded c78 permit 158 ^65000:3_0:233_0:155$ ip community-list expanded c78 permit 159 ^65000:4_0:234_0:3$ ip community-list expanded c78 permit 160 ^65000:3_0:234_0:156$ ip community-list expanded c78 permit 161 ^65000:4_0:235_0:3$ ip community-list expanded c78 permit 162 ^65000:3_0:235_0:157$ ip community-list expanded c78 permit 163 ^65000:4_0:236_0:3$ ip community-list expanded c78 permit 164 ^65000:3_0:236_0:158$ ip community-list expanded c78 permit 165 ^65000:3_0:237_0:159$ ip community-list expanded c78 permit 166 ^65000:3_0:238_0:160$ ip community-list expanded c78 permit 167 ^65000:3_0:239_0:161$ ip community-list expanded c78 permit 168 ^65000:3_0:240_0:162$ ip community-list expanded c78 permit 169 ^65000:3_0:241_0:163$ ip community-list expanded c78 permit 170 ^65000:3_0:242_0:164$ ip community-list expanded c78 permit 171 ^65000:3_0:243_0:165$ ip community-list expanded c78 permit 172 ^65000:3_0:244_0:166$ ip community-list expanded c78 permit 173 ^65000:3_0:245_0:167$ ip community-list expanded c78 permit 174 ^65000:3_0:246_0:168$ ip community-list expanded c78 permit 175 ^65000:3_0:247_0:169$ ip community-list expanded c78 permit 176 ^65000:3_0:248_0:170$ ip community-list expanded c78 permit 177 ^65000:3_0:249_0:171$ ip community-list expanded c78 permit 178 ^65000:3_0:250_0:172$ ip community-list expanded c78 permit 179 ^65000:3_0:251_0:173$ ip community-list expanded c78 permit 180 ^65000:3_0:252_0:174$ ip community-list expanded c78 permit 181 ^65000:3_0:253_0:175$ ip community-list expanded c78 permit 182 ^65000:3_0:254_0:176$ ip community-list expanded c78 permit 183 ^65000:3_0:255_0:177$ ip community-list expanded c78 permit 184 ^65000:3_0:256_0:178$ route-map calculator permit 6603 match community 1_1_77 2_1_78 2_2_39 1_2_76 2_3_26 set community 0:78 route-map calculator permit 6604 match community 1_3_75 1_4_74 1_5_73 2_6_13 1_6_72 set community 0:78 route-map calculator permit 6605 match community 1_7_71 1_8_70 1_9_69 1_10_68 1_11_67 set community 0:78 route-map calculator permit 6606 match community 1_12_66 1_13_65 1_14_64 1_15_63 1_16_62 set community 0:78 route-map calculator permit 6607 match community 1_17_61 1_18_60 1_19_59 1_20_58 1_21_57 set community 0:78 route-map calculator permit 6608 match community 1_22_56 1_23_55 1_24_54 1_25_53 1_26_52 set community 0:78 route-map calculator permit 6609 match community 1_27_51 1_28_50 1_29_49 1_30_48 1_31_47 set community 0:78 route-map calculator permit 6610 match community 1_32_46 1_33_45 1_34_44 1_35_43 1_36_42 set community 0:78 route-map calculator permit 6611 match community 1_37_41 1_38_40 1_39_39 c4_78_1 c3_79_1 set community 0:78 route-map calculator permit 6612 match community c3_80_2 c3_81_3 c3_82_4 c3_83_5 c3_84_6 set community 0:78 route-map calculator permit 6613 match community c3_85_7 c3_86_8 c3_87_9 c3_88_10 c3_89_11 set community 0:78 route-map calculator permit 6614 match community c3_90_12 c3_91_13 c3_92_14 c3_93_15 c3_94_16 set community 0:78 route-map calculator permit 6615 match community c3_95_17 c3_96_18 c3_97_19 c3_98_20 c3_99_21 set community 0:78 route-map calculator permit 6616 match community c3_100_22 c3_101_23 c3_102_24 c3_103_25 c3_104_26 set community 0:78 route-map calculator permit 6617 match community c3_105_27 c3_106_28 c3_107_29 c3_108_30 c3_109_31 set community 0:78 route-map calculator permit 6618 match community c3_110_32 c3_111_33 c3_112_34 c3_113_35 c3_114_36 set community 0:78 route-map calculator permit 6619 match community c3_115_37 c3_116_38 c3_117_39 c3_118_40 c3_119_41 set community 0:78 route-map calculator permit 6620 match community c3_120_42 c3_121_43 c3_122_44 c3_123_45 c3_124_46 set community 0:78 route-map calculator permit 6621 match community c3_125_47 c3_126_48 c3_127_49 c3_128_50 c3_129_51 set community 0:78 route-map calculator permit 6622 match community c3_130_52 c3_131_53 c3_132_54 c3_133_55 c3_134_56 set community 0:78 route-map calculator permit 6623 match community c3_135_57 c3_136_58 c3_137_59 c3_138_60 c3_139_61 set community 0:78 route-map calculator permit 6624 match community c3_140_62 c3_141_63 c3_142_64 c3_143_65 c3_144_66 set community 0:78 route-map calculator permit 6625 match community c3_145_67 c3_146_68 c3_147_69 c3_148_70 c3_149_71 set community 0:78 route-map calculator permit 6626 match community c3_150_72 c3_151_73 c3_152_74 c3_153_75 c3_154_76 set community 0:78 route-map calculator permit 6627 match community c3_155_77 c4_156_2 c3_156_78 c4_157_2 c3_157_79 set community 0:78 route-map calculator permit 6628 match community c3_158_80 c3_159_81 c3_160_82 c3_161_83 c3_162_84 set community 0:78 route-map calculator permit 6629 match community c3_163_85 c3_164_86 c3_165_87 c3_166_88 c3_167_89 set community 0:78 route-map calculator permit 6630 match community c3_168_90 c3_169_91 c3_170_92 c3_171_93 c3_172_94 set community 0:78 route-map calculator permit 6631 match community c3_173_95 c3_174_96 c3_175_97 c3_176_98 c3_177_99 set community 0:78 route-map calculator permit 6632 match community c3_178_100 c3_179_101 c3_180_102 c3_181_103 c3_182_104 set community 0:78 route-map calculator permit 6633 match community c3_183_105 c3_184_106 c3_185_107 c3_186_108 c3_187_109 set community 0:78 route-map calculator permit 6634 match community c3_188_110 c3_189_111 c3_190_112 c3_191_113 c3_192_114 set community 0:78 route-map calculator permit 6635 match community c3_193_115 c3_194_116 c3_195_117 c3_196_118 c3_197_119 set community 0:78 route-map calculator permit 6636 match community c3_198_120 c3_199_121 c3_200_122 c3_201_123 c3_202_124 set community 0:78 route-map calculator permit 6637 match community c3_203_125 c3_204_126 c3_205_127 c3_206_128 c3_207_129 set community 0:78 route-map calculator permit 6638 match community c3_208_130 c3_209_131 c3_210_132 c3_211_133 c3_212_134 set community 0:78 route-map calculator permit 6639 match community c3_213_135 c3_214_136 c3_215_137 c3_216_138 c3_217_139 set community 0:78 route-map calculator permit 6640 match community c3_218_140 c3_219_141 c3_220_142 c3_221_143 c3_222_144 set community 0:78 route-map calculator permit 6641 match community c3_223_145 c3_224_146 c3_225_147 c3_226_148 c3_227_149 set community 0:78 route-map calculator permit 6642 match community c3_228_150 c3_229_151 c3_230_152 c3_231_153 c3_232_154 set community 0:78 route-map calculator permit 6643 match community c3_233_155 c4_234_3 c3_234_156 c4_235_3 c3_235_157 set community 0:78 route-map calculator permit 6644 match community c4_236_3 c3_236_158 c3_237_159 c3_238_160 c3_239_161 set community 0:78 route-map calculator permit 6645 match community c3_240_162 c3_241_163 c3_242_164 c3_243_165 c3_244_166 set community 0:78 route-map calculator permit 6646 match community c3_245_167 c3_246_168 c3_247_169 c3_248_170 c3_249_171 set community 0:78 route-map calculator permit 6647 match community c3_250_172 c3_251_173 c3_252_174 c3_253_175 c3_254_176 set community 0:78 route-map calculator permit 6648 match community c3_255_177 c3_256_178 set community 0:78 ip community-list standard 2_93_139 permit 65000:2 0:93 0:139 route-map calculator permit 6649 match community 2_93_139 set community 0:12927 ip community-list standard 2_134_232 permit 65000:2 0:134 0:232 route-map calculator permit 6650 match community 2_134_232 set community 0:31088 ip community-list standard 2_163_201 permit 65000:2 0:163 0:201 route-map calculator permit 6651 match community 2_163_201 set community 0:32763 ip community-list standard 2_92_234 permit 65000:2 0:92 0:234 ip community-list standard 2_104_207 permit 65000:2 0:104 0:207 ip community-list standard 2_117_184 permit 65000:2 0:117 0:184 ip community-list standard 2_138_156 permit 65000:2 0:138 0:156 route-map calculator permit 6652 match community 2_92_234 2_104_207 2_117_184 2_138_156 set community 0:21528 ip community-list standard 2_217_242 permit 65000:2 0:217 0:242 route-map calculator permit 6653 match community 2_217_242 set community 0:52514 ip community-list standard 2_151_200 permit 65000:2 0:151 0:200 route-map calculator permit 6654 match community 2_151_200 set community 0:30200 ip community-list standard 2_77_179 permit 65000:2 0:77 0:179 route-map calculator permit 6655 match community 2_77_179 set community 0:13783 ip community-list standard 2_191_250 permit 65000:2 0:191 0:250 route-map calculator permit 6656 match community 2_191_250 set community 0:47750 ip community-list standard 2_112_229 permit 65000:2 0:112 0:229 route-map calculator permit 6657 match community 2_112_229 set community 0:25648 ip community-list standard 2_208_241 permit 65000:2 0:208 0:241 route-map calculator permit 6658 match community 2_208_241 set community 0:50128 ip community-list standard 2_64_239 permit 65000:2 0:64 0:239 route-map calculator permit 6659 match community 2_64_239 set community 0:15296 ip community-list standard 2_165_235 permit 65000:2 0:165 0:235 route-map calculator permit 6660 match community 2_165_235 set community 0:38775 ip community-list standard 2_201_243 permit 65000:2 0:201 0:243 route-map calculator permit 6661 match community 2_201_243 set community 0:48843 ip community-list standard 2_150_181 permit 65000:2 0:150 0:181 route-map calculator permit 6662 match community 2_150_181 set community 0:27150 ip community-list standard 2_16_219 permit 65000:2 0:16 0:219 ip community-list standard 2_24_146 permit 65000:2 0:24 0:146 ip community-list standard 2_48_73 permit 65000:2 0:48 0:73 route-map calculator permit 6663 match community 2_16_219 2_24_146 2_48_73 set community 0:3504 ip community-list standard 2_147_193 permit 65000:2 0:147 0:193 route-map calculator permit 6664 match community 2_147_193 set community 0:28371 ip community-list standard 2_57_197 permit 65000:2 0:57 0:197 route-map calculator permit 6665 match community 2_57_197 set community 0:11229 ip community-list standard 2_89_240 permit 65000:2 0:89 0:240 ip community-list standard 2_120_178 permit 65000:2 0:120 0:178 route-map calculator permit 6666 match community 2_89_240 2_120_178 set community 0:21360 ip community-list standard 2_191_244 permit 65000:2 0:191 0:244 route-map calculator permit 6667 match community 2_191_244 set community 0:46604 ip community-list standard 2_170_227 permit 65000:2 0:170 0:227 route-map calculator permit 6668 match community 2_170_227 set community 0:38590 ip community-list standard 2_27_195 permit 65000:2 0:27 0:195 ip community-list standard 2_39_135 permit 65000:2 0:39 0:135 ip community-list standard 2_45_117 permit 65000:2 0:45 0:117 ip community-list standard 2_65_81 permit 65000:2 0:65 0:81 route-map calculator permit 6669 match community 2_27_195 2_39_135 2_45_117 2_65_81 set community 0:5265 ip community-list standard 2_146_197 permit 65000:2 0:146 0:197 route-map calculator permit 6670 match community 2_146_197 set community 0:28762 ip community-list standard 2_180_252 permit 65000:2 0:180 0:252 ip community-list standard 2_189_240 permit 65000:2 0:189 0:240 ip community-list standard 2_210_216 permit 65000:2 0:210 0:216 route-map calculator permit 6671 match community 2_180_252 2_189_240 2_210_216 set community 0:45360 ip community-list standard 2_68_243 permit 65000:2 0:68 0:243 ip community-list standard 2_81_204 permit 65000:2 0:81 0:204 ip community-list standard 2_102_162 permit 65000:2 0:102 0:162 ip community-list standard 2_108_153 permit 65000:2 0:108 0:153 route-map calculator permit 6672 match community 2_68_243 2_81_204 2_102_162 2_108_153 set community 0:16524 ip community-list standard 2_21_159 permit 65000:2 0:21 0:159 ip community-list standard 2_53_63 permit 65000:2 0:53 0:63 route-map calculator permit 6673 match community 2_21_159 2_53_63 set community 0:3339 ip community-list standard 2_252_253 permit 65000:2 0:252 0:253 route-map calculator permit 6674 match community 2_252_253 set community 0:63756 ip community-list standard 2_63_194 permit 65000:2 0:63 0:194 ip community-list standard 2_97_126 permit 65000:2 0:97 0:126 route-map calculator permit 6675 match community 2_63_194 2_97_126 set community 0:12222 ip community-list standard 2_145_239 permit 65000:2 0:145 0:239 route-map calculator permit 6676 match community 2_145_239 set community 0:34655 ip community-list standard 2_212_244 permit 65000:2 0:212 0:244 route-map calculator permit 6677 match community 2_212_244 set community 0:51728 ip community-list standard 2_43_192 permit 65000:2 0:43 0:192 ip community-list standard 2_48_172 permit 65000:2 0:48 0:172 ip community-list standard 2_64_129 permit 65000:2 0:64 0:129 ip community-list standard 2_86_96 permit 65000:2 0:86 0:96 route-map calculator permit 6678 match community 2_43_192 2_48_172 2_64_129 2_86_96 set community 0:8256 ip community-list standard 2_124_251 permit 65000:2 0:124 0:251 route-map calculator permit 6679 match community 2_124_251 set community 0:31124 ip community-list standard 2_43_214 permit 65000:2 0:43 0:214 ip community-list standard 2_86_107 permit 65000:2 0:86 0:107 route-map calculator permit 6680 match community 2_43_214 2_86_107 set community 0:9202 ip community-list standard 2_129_196 permit 65000:2 0:129 0:196 ip community-list standard 2_147_172 permit 65000:2 0:147 0:172 route-map calculator permit 6681 match community 2_129_196 2_147_172 set community 0:25284 ip community-list standard 2_29_195 permit 65000:2 0:29 0:195 ip community-list standard 2_39_145 permit 65000:2 0:39 0:145 ip community-list standard 2_65_87 permit 65000:2 0:65 0:87 route-map calculator permit 6682 match community 2_29_195 2_39_145 2_65_87 set community 0:5655 ip community-list standard 2_9_223 permit 65000:2 0:9 0:223 route-map calculator permit 6683 match community 2_9_223 set community 0:2007 ip community-list standard 2_4_207 permit 65000:2 0:4 0:207 ip community-list standard 2_6_138 permit 65000:2 0:6 0:138 ip community-list standard 2_9_92 permit 65000:2 0:9 0:92 ip community-list standard 2_12_69 permit 65000:2 0:12 0:69 ip community-list standard 2_18_46 permit 65000:2 0:18 0:46 ip community-list standard 2_23_36 permit 65000:2 0:23 0:36 route-map calculator permit 6684 match community 2_4_207 2_6_138 2_9_92 2_12_69 2_18_46 set community 0:828 route-map calculator permit 6685 match community 2_23_36 set community 0:828 ip community-list standard 2_42_229 permit 65000:2 0:42 0:229 route-map calculator permit 6686 match community 2_42_229 set community 0:9618 ip community-list standard 2_11_59 permit 65000:2 0:11 0:59 route-map calculator permit 6687 match community 2_11_59 set community 0:649 ip community-list standard 2_67_169 permit 65000:2 0:67 0:169 route-map calculator permit 6688 match community 2_67_169 set community 0:11323 ip community-list standard 2_186_209 permit 65000:2 0:186 0:209 route-map calculator permit 6689 match community 2_186_209 set community 0:38874 ip community-list standard 2_126_235 permit 65000:2 0:126 0:235 ip community-list standard 2_141_210 permit 65000:2 0:141 0:210 route-map calculator permit 6690 match community 2_126_235 2_141_210 set community 0:29610 ip community-list standard 2_13_197 permit 65000:2 0:13 0:197 route-map calculator permit 6691 match community 2_13_197 set community 0:2561 ip community-list standard 2_10_131 permit 65000:2 0:10 0:131 route-map calculator permit 6692 match community 2_10_131 set community 0:1310 ip community-list standard 2_156_238 permit 65000:2 0:156 0:238 ip community-list standard 2_168_221 permit 65000:2 0:168 0:221 ip community-list standard 2_182_204 permit 65000:2 0:182 0:204 route-map calculator permit 6693 match community 2_156_238 2_168_221 2_182_204 set community 0:37128 ip community-list standard 2_124_149 permit 65000:2 0:124 0:149 route-map calculator permit 6694 match community 2_124_149 set community 0:18476 ip community-list standard 2_5_213 permit 65000:2 0:5 0:213 ip community-list standard 2_15_71 permit 65000:2 0:15 0:71 route-map calculator permit 6695 match community 2_5_213 2_15_71 set community 0:1065 ip community-list standard 2_57_125 permit 65000:2 0:57 0:125 ip community-list standard 2_75_95 permit 65000:2 0:75 0:95 route-map calculator permit 6696 match community 2_57_125 2_75_95 set community 0:7125 ip community-list standard 2_168_254 permit 65000:2 0:168 0:254 route-map calculator permit 6697 match community 2_168_254 set community 0:42672 ip community-list standard 2_156_173 permit 65000:2 0:156 0:173 route-map calculator permit 6698 match community 2_156_173 set community 0:26988 ip community-list standard 2_72_236 permit 65000:2 0:72 0:236 ip community-list standard 2_96_177 permit 65000:2 0:96 0:177 ip community-list standard 2_118_144 permit 65000:2 0:118 0:144 route-map calculator permit 6699 match community 2_72_236 2_96_177 2_118_144 set community 0:16992 ip community-list standard 2_151_230 permit 65000:2 0:151 0:230 route-map calculator permit 6700 match community 2_151_230 set community 0:34730 ip community-list standard 2_137_194 permit 65000:2 0:137 0:194 route-map calculator permit 6701 match community 2_137_194 set community 0:26578 ip community-list standard 2_27_237 permit 65000:2 0:27 0:237 ip community-list standard 2_79_81 permit 65000:2 0:79 0:81 route-map calculator permit 6702 match community 2_27_237 2_79_81 set community 0:6399 ip community-list standard 2_22_255 permit 65000:2 0:22 0:255 ip community-list standard 2_30_187 permit 65000:2 0:30 0:187 ip community-list standard 2_33_170 permit 65000:2 0:33 0:170 ip community-list standard 2_34_165 permit 65000:2 0:34 0:165 ip community-list standard 2_51_110 permit 65000:2 0:51 0:110 ip community-list standard 2_55_102 permit 65000:2 0:55 0:102 ip community-list standard 2_66_85 permit 65000:2 0:66 0:85 route-map calculator permit 6703 match community 2_22_255 2_30_187 2_33_170 2_34_165 2_51_110 set community 0:5610 route-map calculator permit 6704 match community 2_55_102 2_66_85 set community 0:5610 ip community-list standard 2_164_194 permit 65000:2 0:164 0:194 route-map calculator permit 6705 match community 2_164_194 set community 0:31816 ip community-list standard 2_27_103 permit 65000:2 0:27 0:103 route-map calculator permit 6706 match community 2_27_103 set community 0:2781 ip community-list standard 2_99_165 permit 65000:2 0:99 0:165 ip community-list standard 2_121_135 permit 65000:2 0:121 0:135 route-map calculator permit 6707 match community 2_99_165 2_121_135 set community 0:16335 ip community-list standard 2_111_221 permit 65000:2 0:111 0:221 route-map calculator permit 6708 match community 2_111_221 set community 0:24531 ip community-list standard 2_87_205 permit 65000:2 0:87 0:205 ip community-list standard 2_123_145 permit 65000:2 0:123 0:145 route-map calculator permit 6709 match community 2_87_205 2_123_145 set community 0:17835 ip community-list standard 2_150_229 permit 65000:2 0:150 0:229 route-map calculator permit 6710 match community 2_150_229 set community 0:34350 ip community-list standard 2_13_194 permit 65000:2 0:13 0:194 ip community-list standard 2_26_97 permit 65000:2 0:26 0:97 route-map calculator permit 6711 match community 2_13_194 2_26_97 set community 0:2522 ip community-list standard 2_151_220 permit 65000:2 0:151 0:220 route-map calculator permit 6712 match community 2_151_220 set community 0:33220 ip community-list standard 2_72_151 permit 65000:2 0:72 0:151 route-map calculator permit 6713 match community 2_72_151 set community 0:10872 ip community-list standard 2_27_251 permit 65000:2 0:27 0:251 route-map calculator permit 6714 match community 2_27_251 set community 0:6777 ip community-list standard 2_35_239 permit 65000:2 0:35 0:239 route-map calculator permit 6715 match community 2_35_239 set community 0:8365 ip community-list standard 2_27_197 permit 65000:2 0:27 0:197 route-map calculator permit 6716 match community 2_27_197 set community 0:5319 ip community-list standard 2_91_141 permit 65000:2 0:91 0:141 route-map calculator permit 6717 match community 2_91_141 set community 0:12831 ip community-list standard 2_21_211 permit 65000:2 0:21 0:211 route-map calculator permit 6718 match community 2_21_211 set community 0:4431 ip community-list standard 2_52_149 permit 65000:2 0:52 0:149 route-map calculator permit 6719 match community 2_52_149 set community 0:7748 ip community-list standard 2_47_206 permit 65000:2 0:47 0:206 ip community-list standard 2_94_103 permit 65000:2 0:94 0:103 route-map calculator permit 6720 match community 2_47_206 2_94_103 set community 0:9682 ip community-list standard 2_43_53 permit 65000:2 0:43 0:53 route-map calculator permit 6721 match community 2_43_53 set community 0:2279 ip community-list standard 2_11_134 permit 65000:2 0:11 0:134 ip community-list standard 2_22_67 permit 65000:2 0:22 0:67 route-map calculator permit 6722 match community 2_11_134 2_22_67 set community 0:1474 ip community-list standard 2_102_149 permit 65000:2 0:102 0:149 route-map calculator permit 6723 match community 2_102_149 set community 0:15198 ip community-list standard 2_46_216 permit 65000:2 0:46 0:216 ip community-list standard 2_48_207 permit 65000:2 0:48 0:207 ip community-list standard 2_54_184 permit 65000:2 0:54 0:184 ip community-list standard 2_69_144 permit 65000:2 0:69 0:144 ip community-list standard 2_72_138 permit 65000:2 0:72 0:138 ip community-list standard 2_92_108 permit 65000:2 0:92 0:108 route-map calculator permit 6724 match community 2_46_216 2_48_207 2_54_184 2_69_144 2_72_138 set community 0:9936 route-map calculator permit 6725 match community 2_92_108 set community 0:9936 ip community-list standard 2_96_211 permit 65000:2 0:96 0:211 route-map calculator permit 6726 match community 2_96_211 set community 0:20256 ip community-list standard 2_3_189 permit 65000:2 0:3 0:189 ip community-list standard 2_7_81 permit 65000:2 0:7 0:81 ip community-list standard 2_9_63 permit 65000:2 0:9 0:63 ip community-list standard 2_21_27 permit 65000:2 0:21 0:27 route-map calculator permit 6727 match community 2_3_189 2_7_81 2_9_63 2_21_27 set community 0:567 ip community-list standard 2_32_209 permit 65000:2 0:32 0:209 ip community-list standard 2_38_176 permit 65000:2 0:38 0:176 ip community-list standard 2_44_152 permit 65000:2 0:44 0:152 ip community-list standard 2_76_88 permit 65000:2 0:76 0:88 route-map calculator permit 6728 match community 2_32_209 2_38_176 2_44_152 2_76_88 set community 0:6688 ip community-list standard 2_41_153 permit 65000:2 0:41 0:153 ip community-list standard 2_51_123 permit 65000:2 0:51 0:123 route-map calculator permit 6729 match community 2_41_153 2_51_123 set community 0:6273 ip community-list standard 2_42_253 permit 65000:2 0:42 0:253 ip community-list standard 2_46_231 permit 65000:2 0:46 0:231 ip community-list standard 2_66_161 permit 65000:2 0:66 0:161 ip community-list standard 2_69_154 permit 65000:2 0:69 0:154 ip community-list standard 2_77_138 permit 65000:2 0:77 0:138 route-map calculator permit 6730 match community 2_42_253 2_46_231 2_66_161 2_69_154 2_77_138 set community 0:10626 ip community-list standard 2_118_203 permit 65000:2 0:118 0:203 route-map calculator permit 6731 match community 2_118_203 set community 0:23954 ip community-list standard 2_47_167 permit 65000:2 0:47 0:167 route-map calculator permit 6732 match community 2_47_167 set community 0:7849 ip community-list standard 2_39_113 permit 65000:2 0:39 0:113 route-map calculator permit 6733 match community 2_39_113 set community 0:4407 ip community-list standard 2_93_227 permit 65000:2 0:93 0:227 route-map calculator permit 6734 match community 2_93_227 set community 0:21111 ip community-list standard 2_110_240 permit 65000:2 0:110 0:240 ip community-list standard 2_120_220 permit 65000:2 0:120 0:220 ip community-list standard 2_132_200 permit 65000:2 0:132 0:200 ip community-list standard 2_150_176 permit 65000:2 0:150 0:176 ip community-list standard 2_160_165 permit 65000:2 0:160 0:165 route-map calculator permit 6735 match community 2_110_240 2_120_220 2_132_200 2_150_176 2_160_165 set community 0:26400 ip community-list standard 2_44_249 permit 65000:2 0:44 0:249 ip community-list standard 2_66_166 permit 65000:2 0:66 0:166 ip community-list standard 2_83_132 permit 65000:2 0:83 0:132 route-map calculator permit 6736 match community 2_44_249 2_66_166 2_83_132 set community 0:10956 ip community-list standard 2_17_212 permit 65000:2 0:17 0:212 ip community-list standard 2_34_106 permit 65000:2 0:34 0:106 ip community-list standard 2_53_68 permit 65000:2 0:53 0:68 route-map calculator permit 6737 match community 2_17_212 2_34_106 2_53_68 set community 0:3604 ip community-list standard 2_168_241 permit 65000:2 0:168 0:241 route-map calculator permit 6738 match community 2_168_241 set community 0:40488 ip community-list standard 2_5_170 permit 65000:2 0:5 0:170 ip community-list standard 2_10_85 permit 65000:2 0:10 0:85 ip community-list standard 2_17_50 permit 65000:2 0:17 0:50 ip community-list standard 2_25_34 permit 65000:2 0:25 0:34 route-map calculator permit 6739 match community 2_5_170 2_10_85 2_17_50 2_25_34 set community 0:850 ip community-list standard 2_148_148 permit 65000:2 0:148 0:148 route-map calculator permit 6740 match community 2_148_148 set community 0:21904 ip community-list standard 2_202_215 permit 65000:2 0:202 0:215 route-map calculator permit 6741 match community 2_202_215 set community 0:43430 ip community-list standard 2_11_213 permit 65000:2 0:11 0:213 ip community-list standard 2_33_71 permit 65000:2 0:33 0:71 route-map calculator permit 6742 match community 2_11_213 2_33_71 set community 0:2343 ip community-list standard 2_55_228 permit 65000:2 0:55 0:228 ip community-list standard 2_57_220 permit 65000:2 0:57 0:220 ip community-list standard 2_60_209 permit 65000:2 0:60 0:209 ip community-list standard 2_66_190 permit 65000:2 0:66 0:190 ip community-list standard 2_76_165 permit 65000:2 0:76 0:165 ip community-list standard 2_95_132 permit 65000:2 0:95 0:132 ip community-list standard 2_110_114 permit 65000:2 0:110 0:114 route-map calculator permit 6743 match community 2_55_228 2_57_220 2_60_209 2_66_190 2_76_165 set community 0:12540 route-map calculator permit 6744 match community 2_95_132 2_110_114 set community 0:12540 ip community-list standard 2_171_237 permit 65000:2 0:171 0:237 route-map calculator permit 6745 match community 2_171_237 set community 0:40527 ip community-list standard 2_221_227 permit 65000:2 0:221 0:227 route-map calculator permit 6746 match community 2_221_227 set community 0:50167 ip community-list standard 2_113_189 permit 65000:2 0:113 0:189 route-map calculator permit 6747 match community 2_113_189 set community 0:21357 ip community-list standard 2_100_219 permit 65000:2 0:100 0:219 ip community-list standard 2_146_150 permit 65000:2 0:146 0:150 route-map calculator permit 6748 match community 2_100_219 2_146_150 set community 0:21900 ip community-list standard 2_49_218 permit 65000:2 0:49 0:218 ip community-list standard 2_98_109 permit 65000:2 0:98 0:109 route-map calculator permit 6749 match community 2_49_218 2_98_109 set community 0:10682 ip community-list standard 2_39_247 permit 65000:2 0:39 0:247 ip community-list standard 2_57_169 permit 65000:2 0:57 0:169 route-map calculator permit 6750 match community 2_39_247 2_57_169 set community 0:9633 ip community-list standard 2_159_178 permit 65000:2 0:159 0:178 route-map calculator permit 6751 match community 2_159_178 set community 0:28302 ip community-list standard 2_169_188 permit 65000:2 0:169 0:188 route-map calculator permit 6752 match community 2_169_188 set community 0:31772 ip community-list standard 2_35_101 permit 65000:2 0:35 0:101 route-map calculator permit 6753 match community 2_35_101 set community 0:3535 ip community-list standard 2_53_181 permit 65000:2 0:53 0:181 route-map calculator permit 6754 match community 2_53_181 set community 0:9593 ip community-list standard 2_48_178 permit 65000:2 0:48 0:178 ip community-list standard 2_89_96 permit 65000:2 0:89 0:96 route-map calculator permit 6755 match community 2_48_178 2_89_96 set community 0:8544 ip community-list standard 2_7_113 permit 65000:2 0:7 0:113 route-map calculator permit 6756 match community 2_7_113 set community 0:791 ip community-list standard 2_175_212 permit 65000:2 0:175 0:212 route-map calculator permit 6757 match community 2_175_212 set community 0:37100 ip community-list standard 2_139_158 permit 65000:2 0:139 0:158 route-map calculator permit 6758 match community 2_139_158 set community 0:21962 ip community-list standard 2_151_203 permit 65000:2 0:151 0:203 route-map calculator permit 6759 match community 2_151_203 set community 0:30653 ip community-list standard 2_193_251 permit 65000:2 0:193 0:251 route-map calculator permit 6760 match community 2_193_251 set community 0:48443 ip community-list standard 2_15_177 permit 65000:2 0:15 0:177 ip community-list standard 2_45_59 permit 65000:2 0:45 0:59 route-map calculator permit 6761 match community 2_15_177 2_45_59 set community 0:2655 ip community-list standard 2_155_178 permit 65000:2 0:155 0:178 route-map calculator permit 6762 match community 2_155_178 set community 0:27590 ip community-list standard 2_89_119 permit 65000:2 0:89 0:119 route-map calculator permit 6763 match community 2_89_119 set community 0:10591 ip community-list standard 2_158_241 permit 65000:2 0:158 0:241 route-map calculator permit 6764 match community 2_158_241 set community 0:38078 ip community-list standard 2_19_163 permit 65000:2 0:19 0:163 route-map calculator permit 6765 match community 2_19_163 set community 0:3097 ip community-list standard 2_61_201 permit 65000:2 0:61 0:201 ip community-list standard 2_67_183 permit 65000:2 0:67 0:183 route-map calculator permit 6766 match community 2_61_201 2_67_183 set community 0:12261 ip community-list standard 2_50_255 permit 65000:2 0:50 0:255 ip community-list standard 2_51_250 permit 65000:2 0:51 0:250 ip community-list standard 2_75_170 permit 65000:2 0:75 0:170 ip community-list standard 2_85_150 permit 65000:2 0:85 0:150 ip community-list standard 2_102_125 permit 65000:2 0:102 0:125 route-map calculator permit 6767 match community 2_50_255 2_51_250 2_75_170 2_85_150 2_102_125 set community 0:12750 ip community-list standard 2_90_230 permit 65000:2 0:90 0:230 ip community-list standard 2_92_225 permit 65000:2 0:92 0:225 ip community-list standard 2_100_207 permit 65000:2 0:100 0:207 ip community-list standard 2_115_180 permit 65000:2 0:115 0:180 ip community-list standard 2_138_150 permit 65000:2 0:138 0:150 route-map calculator permit 6768 match community 2_90_230 2_92_225 2_100_207 2_115_180 2_138_150 set community 0:20700 ip community-list standard 2_15_212 permit 65000:2 0:15 0:212 ip community-list standard 2_20_159 permit 65000:2 0:20 0:159 ip community-list standard 2_30_106 permit 65000:2 0:30 0:106 ip community-list standard 2_53_60 permit 65000:2 0:53 0:60 route-map calculator permit 6769 match community 2_15_212 2_20_159 2_30_106 2_53_60 set community 0:3180 ip community-list standard 2_157_196 permit 65000:2 0:157 0:196 route-map calculator permit 6770 match community 2_157_196 set community 0:30772 ip community-list standard 2_198_214 permit 65000:2 0:198 0:214 route-map calculator permit 6771 match community 2_198_214 set community 0:42372 ip community-list standard 2_91_232 permit 65000:2 0:91 0:232 ip community-list standard 2_104_203 permit 65000:2 0:104 0:203 ip community-list standard 2_116_182 permit 65000:2 0:116 0:182 route-map calculator permit 6772 match community 2_91_232 2_104_203 2_116_182 set community 0:21112 ip community-list standard 2_62_139 permit 65000:2 0:62 0:139 route-map calculator permit 6773 match community 2_62_139 set community 0:8618 ip community-list standard 2_99_204 permit 65000:2 0:99 0:204 ip community-list standard 2_102_198 permit 65000:2 0:102 0:198 ip community-list standard 2_108_187 permit 65000:2 0:108 0:187 ip community-list standard 2_132_153 permit 65000:2 0:132 0:153 route-map calculator permit 6774 match community 2_99_204 2_102_198 2_108_187 2_132_153 set community 0:20196 ip community-list standard 2_119_213 permit 65000:2 0:119 0:213 route-map calculator permit 6775 match community 2_119_213 set community 0:25347 ip community-list standard 2_143_244 permit 65000:2 0:143 0:244 route-map calculator permit 6776 match community 2_143_244 set community 0:34892 ip community-list standard 2_50_146 permit 65000:2 0:50 0:146 ip community-list standard 2_73_100 permit 65000:2 0:73 0:100 route-map calculator permit 6777 match community 2_50_146 2_73_100 set community 0:7300 ip community-list standard 2_115_236 permit 65000:2 0:115 0:236 ip community-list standard 2_118_230 permit 65000:2 0:118 0:230 route-map calculator permit 6778 match community 2_115_236 2_118_230 set community 0:27140 ip community-list standard 2_23_219 permit 65000:2 0:23 0:219 ip community-list standard 2_69_73 permit 65000:2 0:69 0:73 route-map calculator permit 6779 match community 2_23_219 2_69_73 set community 0:5037 ip community-list standard 2_47_201 permit 65000:2 0:47 0:201 ip community-list standard 2_67_141 permit 65000:2 0:67 0:141 route-map calculator permit 6780 match community 2_47_201 2_67_141 set community 0:9447 ip community-list standard 2_94_242 permit 65000:2 0:94 0:242 ip community-list standard 2_121_188 permit 65000:2 0:121 0:188 route-map calculator permit 6781 match community 2_94_242 2_121_188 set community 0:22748 ip community-list standard 2_179_200 permit 65000:2 0:179 0:200 route-map calculator permit 6782 match community 2_179_200 set community 0:35800 ip community-list standard 2_87_113 permit 65000:2 0:87 0:113 route-map calculator permit 6783 match community 2_87_113 set community 0:9831 ip community-list standard 2_25_118 permit 65000:2 0:25 0:118 ip community-list standard 2_50_59 permit 65000:2 0:50 0:59 route-map calculator permit 6784 match community 2_25_118 2_50_59 set community 0:2950 ip community-list standard 2_207_244 permit 65000:2 0:207 0:244 route-map calculator permit 6785 match community 2_207_244 set community 0:50508 ip community-list standard 2_111_253 permit 65000:2 0:111 0:253 route-map calculator permit 6786 match community 2_111_253 set community 0:28083 ip community-list standard 2_61_248 permit 65000:2 0:61 0:248 ip community-list standard 2_62_244 permit 65000:2 0:62 0:244 ip community-list standard 2_122_124 permit 65000:2 0:122 0:124 route-map calculator permit 6787 match community 2_61_248 2_62_244 2_122_124 set community 0:15128 ip community-list standard 2_6_198 permit 65000:2 0:6 0:198 ip community-list standard 2_9_132 permit 65000:2 0:9 0:132 ip community-list standard 2_11_108 permit 65000:2 0:11 0:108 ip community-list standard 2_12_99 permit 65000:2 0:12 0:99 ip community-list standard 2_18_66 permit 65000:2 0:18 0:66 ip community-list standard 2_22_54 permit 65000:2 0:22 0:54 ip community-list standard 2_27_44 permit 65000:2 0:27 0:44 ip community-list standard 2_33_36 permit 65000:2 0:33 0:36 route-map calculator permit 6788 match community 2_6_198 2_9_132 2_11_108 2_12_99 2_18_66 set community 0:1188 route-map calculator permit 6789 match community 2_22_54 2_27_44 2_33_36 set community 0:1188 ip community-list standard 2_200_256 permit 65000:2 0:200 0:256 route-map calculator permit 6790 match community 2_200_256 set community 0:51200 ip community-list standard 2_67_245 permit 65000:2 0:67 0:245 route-map calculator permit 6791 match community 2_67_245 set community 0:16415 ip community-list standard 2_73_218 permit 65000:2 0:73 0:218 ip community-list standard 2_109_146 permit 65000:2 0:109 0:146 route-map calculator permit 6792 match community 2_73_218 2_109_146 set community 0:15914 ip community-list standard 2_188_223 permit 65000:2 0:188 0:223 route-map calculator permit 6793 match community 2_188_223 set community 0:41924 ip community-list standard 2_24_245 permit 65000:2 0:24 0:245 ip community-list standard 2_28_210 permit 65000:2 0:28 0:210 ip community-list standard 2_30_196 permit 65000:2 0:30 0:196 ip community-list standard 2_35_168 permit 65000:2 0:35 0:168 ip community-list standard 2_40_147 permit 65000:2 0:40 0:147 ip community-list standard 2_42_140 permit 65000:2 0:42 0:140 ip community-list standard 2_49_120 permit 65000:2 0:49 0:120 ip community-list standard 2_56_105 permit 65000:2 0:56 0:105 ip community-list standard 2_60_98 permit 65000:2 0:60 0:98 ip community-list standard 2_70_84 permit 65000:2 0:70 0:84 route-map calculator permit 6794 match community 2_24_245 2_28_210 2_30_196 2_35_168 2_40_147 set community 0:5880 route-map calculator permit 6795 match community 2_42_140 2_49_120 2_56_105 2_60_98 2_70_84 set community 0:5880 ip community-list standard 2_124_254 permit 65000:2 0:124 0:254 ip community-list standard 2_127_248 permit 65000:2 0:127 0:248 route-map calculator permit 6796 match community 2_124_254 2_127_248 set community 0:31496 ip community-list standard 2_55_139 permit 65000:2 0:55 0:139 route-map calculator permit 6797 match community 2_55_139 set community 0:7645 ip community-list standard 2_183_210 permit 65000:2 0:183 0:210 route-map calculator permit 6798 match community 2_183_210 set community 0:38430 ip community-list standard 2_72_229 permit 65000:2 0:72 0:229 route-map calculator permit 6799 match community 2_72_229 set community 0:16488 ip community-list standard 2_243_250 permit 65000:2 0:243 0:250 route-map calculator permit 6800 match community 2_243_250 set community 0:60750 ip community-list standard 2_136_166 permit 65000:2 0:136 0:166 route-map calculator permit 6801 match community 2_136_166 set community 0:22576 ip community-list standard 2_55_191 permit 65000:2 0:55 0:191 route-map calculator permit 6802 match community 2_55_191 set community 0:10505 ip community-list standard 2_76_229 permit 65000:2 0:76 0:229 route-map calculator permit 6803 match community 2_76_229 set community 0:17404 ip community-list standard 2_46_178 permit 65000:2 0:46 0:178 ip community-list standard 2_89_92 permit 65000:2 0:89 0:92 route-map calculator permit 6804 match community 2_46_178 2_89_92 set community 0:8188 ip community-list standard 2_196_213 permit 65000:2 0:196 0:213 route-map calculator permit 6805 match community 2_196_213 set community 0:41748 ip community-list standard 2_70_197 permit 65000:2 0:70 0:197 route-map calculator permit 6806 match community 2_70_197 set community 0:13790 ip community-list standard 2_162_227 permit 65000:2 0:162 0:227 route-map calculator permit 6807 match community 2_162_227 set community 0:36774 ip community-list standard 2_128_227 permit 65000:2 0:128 0:227 route-map calculator permit 6808 match community 2_128_227 set community 0:29056 ip community-list standard 2_151_166 permit 65000:2 0:151 0:166 route-map calculator permit 6809 match community 2_151_166 set community 0:25066 ip community-list standard 2_81_215 permit 65000:2 0:81 0:215 ip community-list standard 2_129_135 permit 65000:2 0:129 0:135 route-map calculator permit 6810 match community 2_81_215 2_129_135 set community 0:17415 ip community-list standard 2_33_121 permit 65000:2 0:33 0:121 route-map calculator permit 6811 match community 2_33_121 set community 0:3993 ip community-list standard 2_206_254 permit 65000:2 0:206 0:254 route-map calculator permit 6812 match community 2_206_254 set community 0:52324 ip community-list standard 2_99_173 permit 65000:2 0:99 0:173 route-map calculator permit 6813 match community 2_99_173 set community 0:17127 ip community-list standard 2_86_229 permit 65000:2 0:86 0:229 route-map calculator permit 6814 match community 2_86_229 set community 0:19694 ip community-list standard 2_172_254 permit 65000:2 0:172 0:254 route-map calculator permit 6815 match community 2_172_254 set community 0:43688 ip community-list standard 2_161_161 permit 65000:2 0:161 0:161 route-map calculator permit 6816 match community 2_161_161 set community 0:25921 ip community-list standard 2_35_228 permit 65000:2 0:35 0:228 ip community-list standard 2_38_210 permit 65000:2 0:38 0:210 ip community-list standard 2_42_190 permit 65000:2 0:42 0:190 ip community-list standard 2_57_140 permit 65000:2 0:57 0:140 ip community-list standard 2_60_133 permit 65000:2 0:60 0:133 ip community-list standard 2_70_114 permit 65000:2 0:70 0:114 ip community-list standard 2_76_105 permit 65000:2 0:76 0:105 ip community-list standard 2_84_95 permit 65000:2 0:84 0:95 route-map calculator permit 6817 match community 2_35_228 2_38_210 2_42_190 2_57_140 2_60_133 set community 0:7980 route-map calculator permit 6818 match community 2_70_114 2_76_105 2_84_95 set community 0:7980 ip community-list standard 1_1_25 permit 65000:1 0:1 0:25 ip community-list standard 2_1_26 permit 65000:2 0:1 0:26 ip community-list standard 2_2_13 permit 65000:2 0:2 0:13 ip community-list standard 1_2_24 permit 65000:1 0:2 0:24 ip community-list standard 1_3_23 permit 65000:1 0:3 0:23 ip community-list standard 1_4_22 permit 65000:1 0:4 0:22 ip community-list standard 1_5_21 permit 65000:1 0:5 0:21 ip community-list standard 1_6_20 permit 65000:1 0:6 0:20 ip community-list standard 1_7_19 permit 65000:1 0:7 0:19 ip community-list standard 1_8_18 permit 65000:1 0:8 0:18 ip community-list standard 1_9_17 permit 65000:1 0:9 0:17 ip community-list standard 1_10_16 permit 65000:1 0:10 0:16 ip community-list standard 1_11_15 permit 65000:1 0:11 0:15 ip community-list standard 1_12_14 permit 65000:1 0:12 0:14 ip community-list standard 1_13_13 permit 65000:1 0:13 0:13 ip community-list expanded c26 permit 1 ^65000:4_0:26_0:1$ ip community-list expanded c26 permit 2 ^65000:3_0:27_0:1$ ip community-list expanded c26 permit 3 ^65000:3_0:28_0:2$ ip community-list expanded c26 permit 4 ^65000:3_0:29_0:3$ ip community-list expanded c26 permit 5 ^65000:3_0:30_0:4$ ip community-list expanded c26 permit 6 ^65000:3_0:31_0:5$ ip community-list expanded c26 permit 7 ^65000:3_0:32_0:6$ ip community-list expanded c26 permit 8 ^65000:3_0:33_0:7$ ip community-list expanded c26 permit 9 ^65000:3_0:34_0:8$ ip community-list expanded c26 permit 10 ^65000:3_0:35_0:9$ ip community-list expanded c26 permit 11 ^65000:3_0:36_0:10$ ip community-list expanded c26 permit 12 ^65000:3_0:37_0:11$ ip community-list expanded c26 permit 13 ^65000:3_0:38_0:12$ ip community-list expanded c26 permit 14 ^65000:3_0:39_0:13$ ip community-list expanded c26 permit 15 ^65000:3_0:40_0:14$ ip community-list expanded c26 permit 16 ^65000:3_0:41_0:15$ ip community-list expanded c26 permit 17 ^65000:3_0:42_0:16$ ip community-list expanded c26 permit 18 ^65000:3_0:43_0:17$ ip community-list expanded c26 permit 19 ^65000:3_0:44_0:18$ ip community-list expanded c26 permit 20 ^65000:3_0:45_0:19$ ip community-list expanded c26 permit 21 ^65000:3_0:46_0:20$ ip community-list expanded c26 permit 22 ^65000:3_0:47_0:21$ ip community-list expanded c26 permit 23 ^65000:3_0:48_0:22$ ip community-list expanded c26 permit 24 ^65000:3_0:49_0:23$ ip community-list expanded c26 permit 25 ^65000:3_0:50_0:24$ ip community-list expanded c26 permit 26 ^65000:3_0:51_0:25$ ip community-list expanded c26 permit 27 ^65000:4_0:52_0:2$ ip community-list expanded c26 permit 28 ^65000:3_0:52_0:26$ ip community-list expanded c26 permit 29 ^65000:4_0:53_0:2$ ip community-list expanded c26 permit 30 ^65000:3_0:53_0:27$ ip community-list expanded c26 permit 31 ^65000:3_0:54_0:28$ ip community-list expanded c26 permit 32 ^65000:3_0:55_0:29$ ip community-list expanded c26 permit 33 ^65000:3_0:56_0:30$ ip community-list expanded c26 permit 34 ^65000:3_0:57_0:31$ ip community-list expanded c26 permit 35 ^65000:3_0:58_0:32$ ip community-list expanded c26 permit 36 ^65000:3_0:59_0:33$ ip community-list expanded c26 permit 37 ^65000:3_0:60_0:34$ ip community-list expanded c26 permit 38 ^65000:3_0:61_0:35$ ip community-list expanded c26 permit 39 ^65000:3_0:62_0:36$ ip community-list expanded c26 permit 40 ^65000:3_0:63_0:37$ ip community-list expanded c26 permit 41 ^65000:3_0:64_0:38$ ip community-list expanded c26 permit 42 ^65000:3_0:65_0:39$ ip community-list expanded c26 permit 43 ^65000:3_0:66_0:40$ ip community-list expanded c26 permit 44 ^65000:3_0:67_0:41$ ip community-list expanded c26 permit 45 ^65000:3_0:68_0:42$ ip community-list expanded c26 permit 46 ^65000:3_0:69_0:43$ ip community-list expanded c26 permit 47 ^65000:3_0:70_0:44$ ip community-list expanded c26 permit 48 ^65000:3_0:71_0:45$ ip community-list expanded c26 permit 49 ^65000:3_0:72_0:46$ ip community-list expanded c26 permit 50 ^65000:3_0:73_0:47$ ip community-list expanded c26 permit 51 ^65000:3_0:74_0:48$ ip community-list expanded c26 permit 52 ^65000:3_0:75_0:49$ ip community-list expanded c26 permit 53 ^65000:3_0:76_0:50$ ip community-list expanded c26 permit 54 ^65000:3_0:77_0:51$ ip community-list expanded c26 permit 55 ^65000:4_0:78_0:3$ ip community-list expanded c26 permit 56 ^65000:3_0:78_0:52$ ip community-list expanded c26 permit 57 ^65000:4_0:79_0:3$ ip community-list expanded c26 permit 58 ^65000:3_0:79_0:53$ ip community-list expanded c26 permit 59 ^65000:4_0:80_0:3$ ip community-list expanded c26 permit 60 ^65000:3_0:80_0:54$ ip community-list expanded c26 permit 61 ^65000:3_0:81_0:55$ ip community-list expanded c26 permit 62 ^65000:3_0:82_0:56$ ip community-list expanded c26 permit 63 ^65000:3_0:83_0:57$ ip community-list expanded c26 permit 64 ^65000:3_0:84_0:58$ ip community-list expanded c26 permit 65 ^65000:3_0:85_0:59$ ip community-list expanded c26 permit 66 ^65000:3_0:86_0:60$ ip community-list expanded c26 permit 67 ^65000:3_0:87_0:61$ ip community-list expanded c26 permit 68 ^65000:3_0:88_0:62$ ip community-list expanded c26 permit 69 ^65000:3_0:89_0:63$ ip community-list expanded c26 permit 70 ^65000:3_0:90_0:64$ ip community-list expanded c26 permit 71 ^65000:3_0:91_0:65$ ip community-list expanded c26 permit 72 ^65000:3_0:92_0:66$ ip community-list expanded c26 permit 73 ^65000:3_0:93_0:67$ ip community-list expanded c26 permit 74 ^65000:3_0:94_0:68$ ip community-list expanded c26 permit 75 ^65000:3_0:95_0:69$ ip community-list expanded c26 permit 76 ^65000:3_0:96_0:70$ ip community-list expanded c26 permit 77 ^65000:3_0:97_0:71$ ip community-list expanded c26 permit 78 ^65000:3_0:98_0:72$ ip community-list expanded c26 permit 79 ^65000:3_0:99_0:73$ ip community-list expanded c26 permit 80 ^65000:3_0:100_0:74$ ip community-list expanded c26 permit 81 ^65000:3_0:101_0:75$ ip community-list expanded c26 permit 82 ^65000:3_0:102_0:76$ ip community-list expanded c26 permit 83 ^65000:3_0:103_0:77$ ip community-list expanded c26 permit 84 ^65000:4_0:104_0:4$ ip community-list expanded c26 permit 85 ^65000:3_0:104_0:78$ ip community-list expanded c26 permit 86 ^65000:4_0:105_0:4$ ip community-list expanded c26 permit 87 ^65000:3_0:105_0:79$ ip community-list expanded c26 permit 88 ^65000:4_0:106_0:4$ ip community-list expanded c26 permit 89 ^65000:3_0:106_0:80$ ip community-list expanded c26 permit 90 ^65000:4_0:107_0:4$ ip community-list expanded c26 permit 91 ^65000:3_0:107_0:81$ ip community-list expanded c26 permit 92 ^65000:3_0:108_0:82$ ip community-list expanded c26 permit 93 ^65000:3_0:109_0:83$ ip community-list expanded c26 permit 94 ^65000:3_0:110_0:84$ ip community-list expanded c26 permit 95 ^65000:3_0:111_0:85$ ip community-list expanded c26 permit 96 ^65000:3_0:112_0:86$ ip community-list expanded c26 permit 97 ^65000:3_0:113_0:87$ ip community-list expanded c26 permit 98 ^65000:3_0:114_0:88$ ip community-list expanded c26 permit 99 ^65000:3_0:115_0:89$ ip community-list expanded c26 permit 100 ^65000:3_0:116_0:90$ ip community-list expanded c26 permit 101 ^65000:3_0:117_0:91$ ip community-list expanded c26 permit 102 ^65000:3_0:118_0:92$ ip community-list expanded c26 permit 103 ^65000:3_0:119_0:93$ ip community-list expanded c26 permit 104 ^65000:3_0:120_0:94$ ip community-list expanded c26 permit 105 ^65000:3_0:121_0:95$ ip community-list expanded c26 permit 106 ^65000:3_0:122_0:96$ ip community-list expanded c26 permit 107 ^65000:3_0:123_0:97$ ip community-list expanded c26 permit 108 ^65000:3_0:124_0:98$ ip community-list expanded c26 permit 109 ^65000:3_0:125_0:99$ ip community-list expanded c26 permit 110 ^65000:3_0:126_0:100$ ip community-list expanded c26 permit 111 ^65000:3_0:127_0:101$ ip community-list expanded c26 permit 112 ^65000:3_0:128_0:102$ ip community-list expanded c26 permit 113 ^65000:3_0:129_0:103$ ip community-list expanded c26 permit 114 ^65000:4_0:130_0:5$ ip community-list expanded c26 permit 115 ^65000:3_0:130_0:104$ ip community-list expanded c26 permit 116 ^65000:4_0:131_0:5$ ip community-list expanded c26 permit 117 ^65000:3_0:131_0:105$ ip community-list expanded c26 permit 118 ^65000:4_0:132_0:5$ ip community-list expanded c26 permit 119 ^65000:3_0:132_0:106$ ip community-list expanded c26 permit 120 ^65000:4_0:133_0:5$ ip community-list expanded c26 permit 121 ^65000:3_0:133_0:107$ ip community-list expanded c26 permit 122 ^65000:4_0:134_0:5$ ip community-list expanded c26 permit 123 ^65000:3_0:134_0:108$ ip community-list expanded c26 permit 124 ^65000:3_0:135_0:109$ ip community-list expanded c26 permit 125 ^65000:3_0:136_0:110$ ip community-list expanded c26 permit 126 ^65000:3_0:137_0:111$ ip community-list expanded c26 permit 127 ^65000:3_0:138_0:112$ ip community-list expanded c26 permit 128 ^65000:3_0:139_0:113$ ip community-list expanded c26 permit 129 ^65000:3_0:140_0:114$ ip community-list expanded c26 permit 130 ^65000:3_0:141_0:115$ ip community-list expanded c26 permit 131 ^65000:3_0:142_0:116$ ip community-list expanded c26 permit 132 ^65000:3_0:143_0:117$ ip community-list expanded c26 permit 133 ^65000:3_0:144_0:118$ ip community-list expanded c26 permit 134 ^65000:3_0:145_0:119$ ip community-list expanded c26 permit 135 ^65000:3_0:146_0:120$ ip community-list expanded c26 permit 136 ^65000:3_0:147_0:121$ ip community-list expanded c26 permit 137 ^65000:3_0:148_0:122$ ip community-list expanded c26 permit 138 ^65000:3_0:149_0:123$ ip community-list expanded c26 permit 139 ^65000:3_0:150_0:124$ ip community-list expanded c26 permit 140 ^65000:3_0:151_0:125$ ip community-list expanded c26 permit 141 ^65000:3_0:152_0:126$ ip community-list expanded c26 permit 142 ^65000:3_0:153_0:127$ ip community-list expanded c26 permit 143 ^65000:3_0:154_0:128$ ip community-list expanded c26 permit 144 ^65000:3_0:155_0:129$ ip community-list expanded c26 permit 145 ^65000:4_0:156_0:6$ ip community-list expanded c26 permit 146 ^65000:3_0:156_0:130$ ip community-list expanded c26 permit 147 ^65000:4_0:157_0:6$ ip community-list expanded c26 permit 148 ^65000:3_0:157_0:131$ ip community-list expanded c26 permit 149 ^65000:4_0:158_0:6$ ip community-list expanded c26 permit 150 ^65000:3_0:158_0:132$ ip community-list expanded c26 permit 151 ^65000:4_0:159_0:6$ ip community-list expanded c26 permit 152 ^65000:3_0:159_0:133$ ip community-list expanded c26 permit 153 ^65000:4_0:160_0:6$ ip community-list expanded c26 permit 154 ^65000:3_0:160_0:134$ ip community-list expanded c26 permit 155 ^65000:4_0:161_0:6$ ip community-list expanded c26 permit 156 ^65000:3_0:161_0:135$ ip community-list expanded c26 permit 157 ^65000:3_0:162_0:136$ ip community-list expanded c26 permit 158 ^65000:3_0:163_0:137$ ip community-list expanded c26 permit 159 ^65000:3_0:164_0:138$ ip community-list expanded c26 permit 160 ^65000:3_0:165_0:139$ ip community-list expanded c26 permit 161 ^65000:3_0:166_0:140$ ip community-list expanded c26 permit 162 ^65000:3_0:167_0:141$ ip community-list expanded c26 permit 163 ^65000:3_0:168_0:142$ ip community-list expanded c26 permit 164 ^65000:3_0:169_0:143$ ip community-list expanded c26 permit 165 ^65000:3_0:170_0:144$ ip community-list expanded c26 permit 166 ^65000:3_0:171_0:145$ ip community-list expanded c26 permit 167 ^65000:3_0:172_0:146$ ip community-list expanded c26 permit 168 ^65000:3_0:173_0:147$ ip community-list expanded c26 permit 169 ^65000:3_0:174_0:148$ ip community-list expanded c26 permit 170 ^65000:3_0:175_0:149$ ip community-list expanded c26 permit 171 ^65000:3_0:176_0:150$ ip community-list expanded c26 permit 172 ^65000:3_0:177_0:151$ ip community-list expanded c26 permit 173 ^65000:3_0:178_0:152$ ip community-list expanded c26 permit 174 ^65000:3_0:179_0:153$ ip community-list expanded c26 permit 175 ^65000:3_0:180_0:154$ ip community-list expanded c26 permit 176 ^65000:3_0:181_0:155$ ip community-list expanded c26 permit 177 ^65000:4_0:182_0:7$ ip community-list expanded c26 permit 178 ^65000:3_0:182_0:156$ ip community-list expanded c26 permit 179 ^65000:4_0:183_0:7$ ip community-list expanded c26 permit 180 ^65000:3_0:183_0:157$ ip community-list expanded c26 permit 181 ^65000:4_0:184_0:7$ ip community-list expanded c26 permit 182 ^65000:3_0:184_0:158$ ip community-list expanded c26 permit 183 ^65000:4_0:185_0:7$ ip community-list expanded c26 permit 184 ^65000:3_0:185_0:159$ ip community-list expanded c26 permit 185 ^65000:4_0:186_0:7$ ip community-list expanded c26 permit 186 ^65000:3_0:186_0:160$ ip community-list expanded c26 permit 187 ^65000:4_0:187_0:7$ ip community-list expanded c26 permit 188 ^65000:3_0:187_0:161$ ip community-list expanded c26 permit 189 ^65000:4_0:188_0:7$ ip community-list expanded c26 permit 190 ^65000:3_0:188_0:162$ ip community-list expanded c26 permit 191 ^65000:3_0:189_0:163$ ip community-list expanded c26 permit 192 ^65000:3_0:190_0:164$ ip community-list expanded c26 permit 193 ^65000:3_0:191_0:165$ ip community-list expanded c26 permit 194 ^65000:3_0:192_0:166$ ip community-list expanded c26 permit 195 ^65000:3_0:193_0:167$ ip community-list expanded c26 permit 196 ^65000:3_0:194_0:168$ ip community-list expanded c26 permit 197 ^65000:3_0:195_0:169$ ip community-list expanded c26 permit 198 ^65000:3_0:196_0:170$ ip community-list expanded c26 permit 199 ^65000:3_0:197_0:171$ ip community-list expanded c26 permit 200 ^65000:3_0:198_0:172$ ip community-list expanded c26 permit 201 ^65000:3_0:199_0:173$ ip community-list expanded c26 permit 202 ^65000:3_0:200_0:174$ ip community-list expanded c26 permit 203 ^65000:3_0:201_0:175$ ip community-list expanded c26 permit 204 ^65000:3_0:202_0:176$ ip community-list expanded c26 permit 205 ^65000:3_0:203_0:177$ ip community-list expanded c26 permit 206 ^65000:3_0:204_0:178$ ip community-list expanded c26 permit 207 ^65000:3_0:205_0:179$ ip community-list expanded c26 permit 208 ^65000:3_0:206_0:180$ ip community-list expanded c26 permit 209 ^65000:3_0:207_0:181$ ip community-list expanded c26 permit 210 ^65000:4_0:208_0:8$ ip community-list expanded c26 permit 211 ^65000:3_0:208_0:182$ ip community-list expanded c26 permit 212 ^65000:4_0:209_0:8$ ip community-list expanded c26 permit 213 ^65000:3_0:209_0:183$ ip community-list expanded c26 permit 214 ^65000:4_0:210_0:8$ ip community-list expanded c26 permit 215 ^65000:3_0:210_0:184$ ip community-list expanded c26 permit 216 ^65000:4_0:211_0:8$ ip community-list expanded c26 permit 217 ^65000:3_0:211_0:185$ ip community-list expanded c26 permit 218 ^65000:4_0:212_0:8$ ip community-list expanded c26 permit 219 ^65000:3_0:212_0:186$ ip community-list expanded c26 permit 220 ^65000:4_0:213_0:8$ ip community-list expanded c26 permit 221 ^65000:3_0:213_0:187$ ip community-list expanded c26 permit 222 ^65000:4_0:214_0:8$ ip community-list expanded c26 permit 223 ^65000:3_0:214_0:188$ ip community-list expanded c26 permit 224 ^65000:4_0:215_0:8$ ip community-list expanded c26 permit 225 ^65000:3_0:215_0:189$ ip community-list expanded c26 permit 226 ^65000:3_0:216_0:190$ ip community-list expanded c26 permit 227 ^65000:3_0:217_0:191$ ip community-list expanded c26 permit 228 ^65000:3_0:218_0:192$ ip community-list expanded c26 permit 229 ^65000:3_0:219_0:193$ ip community-list expanded c26 permit 230 ^65000:3_0:220_0:194$ ip community-list expanded c26 permit 231 ^65000:3_0:221_0:195$ ip community-list expanded c26 permit 232 ^65000:3_0:222_0:196$ ip community-list expanded c26 permit 233 ^65000:3_0:223_0:197$ ip community-list expanded c26 permit 234 ^65000:3_0:224_0:198$ ip community-list expanded c26 permit 235 ^65000:3_0:225_0:199$ ip community-list expanded c26 permit 236 ^65000:3_0:226_0:200$ ip community-list expanded c26 permit 237 ^65000:3_0:227_0:201$ ip community-list expanded c26 permit 238 ^65000:3_0:228_0:202$ ip community-list expanded c26 permit 239 ^65000:3_0:229_0:203$ ip community-list expanded c26 permit 240 ^65000:3_0:230_0:204$ ip community-list expanded c26 permit 241 ^65000:3_0:231_0:205$ ip community-list expanded c26 permit 242 ^65000:3_0:232_0:206$ ip community-list expanded c26 permit 243 ^65000:3_0:233_0:207$ ip community-list expanded c26 permit 244 ^65000:4_0:234_0:9$ ip community-list expanded c26 permit 245 ^65000:3_0:234_0:208$ ip community-list expanded c26 permit 246 ^65000:4_0:235_0:9$ ip community-list expanded c26 permit 247 ^65000:3_0:235_0:209$ ip community-list expanded c26 permit 248 ^65000:4_0:236_0:9$ ip community-list expanded c26 permit 249 ^65000:3_0:236_0:210$ ip community-list expanded c26 permit 250 ^65000:4_0:237_0:9$ ip community-list expanded c26 permit 251 ^65000:3_0:237_0:211$ ip community-list expanded c26 permit 252 ^65000:4_0:238_0:9$ ip community-list expanded c26 permit 253 ^65000:3_0:238_0:212$ ip community-list expanded c26 permit 254 ^65000:4_0:239_0:9$ ip community-list expanded c26 permit 255 ^65000:3_0:239_0:213$ ip community-list expanded c26 permit 256 ^65000:4_0:240_0:9$ ip community-list expanded c26 permit 257 ^65000:3_0:240_0:214$ ip community-list expanded c26 permit 258 ^65000:4_0:241_0:9$ ip community-list expanded c26 permit 259 ^65000:3_0:241_0:215$ ip community-list expanded c26 permit 260 ^65000:4_0:242_0:9$ ip community-list expanded c26 permit 261 ^65000:3_0:242_0:216$ ip community-list expanded c26 permit 262 ^65000:3_0:243_0:217$ ip community-list expanded c26 permit 263 ^65000:3_0:244_0:218$ ip community-list expanded c26 permit 264 ^65000:3_0:245_0:219$ ip community-list expanded c26 permit 265 ^65000:3_0:246_0:220$ ip community-list expanded c26 permit 266 ^65000:3_0:247_0:221$ ip community-list expanded c26 permit 267 ^65000:3_0:248_0:222$ ip community-list expanded c26 permit 268 ^65000:3_0:249_0:223$ ip community-list expanded c26 permit 269 ^65000:3_0:250_0:224$ ip community-list expanded c26 permit 270 ^65000:3_0:251_0:225$ ip community-list expanded c26 permit 271 ^65000:3_0:252_0:226$ ip community-list expanded c26 permit 272 ^65000:3_0:253_0:227$ ip community-list expanded c26 permit 273 ^65000:3_0:254_0:228$ ip community-list expanded c26 permit 274 ^65000:3_0:255_0:229$ ip community-list expanded c26 permit 275 ^65000:3_0:256_0:230$ route-map calculator permit 6819 match community 1_1_25 2_1_26 2_2_13 1_2_24 1_3_23 set community 0:26 route-map calculator permit 6820 match community 1_4_22 1_5_21 1_6_20 1_7_19 1_8_18 set community 0:26 route-map calculator permit 6821 match community 1_9_17 1_10_16 1_11_15 1_12_14 1_13_13 set community 0:26 route-map calculator permit 6822 match community c4_26_1 c3_27_1 c3_28_2 c3_29_3 c3_30_4 set community 0:26 route-map calculator permit 6823 match community c3_31_5 c3_32_6 c3_33_7 c3_34_8 c3_35_9 set community 0:26 route-map calculator permit 6824 match community c3_36_10 c3_37_11 c3_38_12 c3_39_13 c3_40_14 set community 0:26 route-map calculator permit 6825 match community c3_41_15 c3_42_16 c3_43_17 c3_44_18 c3_45_19 set community 0:26 route-map calculator permit 6826 match community c3_46_20 c3_47_21 c3_48_22 c3_49_23 c3_50_24 set community 0:26 route-map calculator permit 6827 match community c3_51_25 c4_52_2 c3_52_26 c4_53_2 c3_53_27 set community 0:26 route-map calculator permit 6828 match community c3_54_28 c3_55_29 c3_56_30 c3_57_31 c3_58_32 set community 0:26 route-map calculator permit 6829 match community c3_59_33 c3_60_34 c3_61_35 c3_62_36 c3_63_37 set community 0:26 route-map calculator permit 6830 match community c3_64_38 c3_65_39 c3_66_40 c3_67_41 c3_68_42 set community 0:26 route-map calculator permit 6831 match community c3_69_43 c3_70_44 c3_71_45 c3_72_46 c3_73_47 set community 0:26 route-map calculator permit 6832 match community c3_74_48 c3_75_49 c3_76_50 c3_77_51 c4_78_3 set community 0:26 route-map calculator permit 6833 match community c3_78_52 c4_79_3 c3_79_53 c4_80_3 c3_80_54 set community 0:26 route-map calculator permit 6834 match community c3_81_55 c3_82_56 c3_83_57 c3_84_58 c3_85_59 set community 0:26 route-map calculator permit 6835 match community c3_86_60 c3_87_61 c3_88_62 c3_89_63 c3_90_64 set community 0:26 route-map calculator permit 6836 match community c3_91_65 c3_92_66 c3_93_67 c3_94_68 c3_95_69 set community 0:26 route-map calculator permit 6837 match community c3_96_70 c3_97_71 c3_98_72 c3_99_73 c3_100_74 set community 0:26 route-map calculator permit 6838 match community c3_101_75 c3_102_76 c3_103_77 c4_104_4 c3_104_78 set community 0:26 route-map calculator permit 6839 match community c4_105_4 c3_105_79 c4_106_4 c3_106_80 c4_107_4 set community 0:26 route-map calculator permit 6840 match community c3_107_81 c3_108_82 c3_109_83 c3_110_84 c3_111_85 set community 0:26 route-map calculator permit 6841 match community c3_112_86 c3_113_87 c3_114_88 c3_115_89 c3_116_90 set community 0:26 route-map calculator permit 6842 match community c3_117_91 c3_118_92 c3_119_93 c3_120_94 c3_121_95 set community 0:26 route-map calculator permit 6843 match community c3_122_96 c3_123_97 c3_124_98 c3_125_99 c3_126_100 set community 0:26 route-map calculator permit 6844 match community c3_127_101 c3_128_102 c3_129_103 c4_130_5 c3_130_104 set community 0:26 route-map calculator permit 6845 match community c4_131_5 c3_131_105 c4_132_5 c3_132_106 c4_133_5 set community 0:26 route-map calculator permit 6846 match community c3_133_107 c4_134_5 c3_134_108 c3_135_109 c3_136_110 set community 0:26 route-map calculator permit 6847 match community c3_137_111 c3_138_112 c3_139_113 c3_140_114 c3_141_115 set community 0:26 route-map calculator permit 6848 match community c3_142_116 c3_143_117 c3_144_118 c3_145_119 c3_146_120 set community 0:26 route-map calculator permit 6849 match community c3_147_121 c3_148_122 c3_149_123 c3_150_124 c3_151_125 set community 0:26 route-map calculator permit 6850 match community c3_152_126 c3_153_127 c3_154_128 c3_155_129 c4_156_6 set community 0:26 route-map calculator permit 6851 match community c3_156_130 c4_157_6 c3_157_131 c4_158_6 c3_158_132 set community 0:26 route-map calculator permit 6852 match community c4_159_6 c3_159_133 c4_160_6 c3_160_134 c4_161_6 set community 0:26 route-map calculator permit 6853 match community c3_161_135 c3_162_136 c3_163_137 c3_164_138 c3_165_139 set community 0:26 route-map calculator permit 6854 match community c3_166_140 c3_167_141 c3_168_142 c3_169_143 c3_170_144 set community 0:26 route-map calculator permit 6855 match community c3_171_145 c3_172_146 c3_173_147 c3_174_148 c3_175_149 set community 0:26 route-map calculator permit 6856 match community c3_176_150 c3_177_151 c3_178_152 c3_179_153 c3_180_154 set community 0:26 route-map calculator permit 6857 match community c3_181_155 c4_182_7 c3_182_156 c4_183_7 c3_183_157 set community 0:26 route-map calculator permit 6858 match community c4_184_7 c3_184_158 c4_185_7 c3_185_159 c4_186_7 set community 0:26 route-map calculator permit 6859 match community c3_186_160 c4_187_7 c3_187_161 c4_188_7 c3_188_162 set community 0:26 route-map calculator permit 6860 match community c3_189_163 c3_190_164 c3_191_165 c3_192_166 c3_193_167 set community 0:26 route-map calculator permit 6861 match community c3_194_168 c3_195_169 c3_196_170 c3_197_171 c3_198_172 set community 0:26 route-map calculator permit 6862 match community c3_199_173 c3_200_174 c3_201_175 c3_202_176 c3_203_177 set community 0:26 route-map calculator permit 6863 match community c3_204_178 c3_205_179 c3_206_180 c3_207_181 c4_208_8 set community 0:26 route-map calculator permit 6864 match community c3_208_182 c4_209_8 c3_209_183 c4_210_8 c3_210_184 set community 0:26 route-map calculator permit 6865 match community c4_211_8 c3_211_185 c4_212_8 c3_212_186 c4_213_8 set community 0:26 route-map calculator permit 6866 match community c3_213_187 c4_214_8 c3_214_188 c4_215_8 c3_215_189 set community 0:26 route-map calculator permit 6867 match community c3_216_190 c3_217_191 c3_218_192 c3_219_193 c3_220_194 set community 0:26 route-map calculator permit 6868 match community c3_221_195 c3_222_196 c3_223_197 c3_224_198 c3_225_199 set community 0:26 route-map calculator permit 6869 match community c3_226_200 c3_227_201 c3_228_202 c3_229_203 c3_230_204 set community 0:26 route-map calculator permit 6870 match community c3_231_205 c3_232_206 c3_233_207 c4_234_9 c3_234_208 set community 0:26 route-map calculator permit 6871 match community c4_235_9 c3_235_209 c4_236_9 c3_236_210 c4_237_9 set community 0:26 route-map calculator permit 6872 match community c3_237_211 c4_238_9 c3_238_212 c4_239_9 c3_239_213 set community 0:26 route-map calculator permit 6873 match community c4_240_9 c3_240_214 c4_241_9 c3_241_215 c4_242_9 set community 0:26 route-map calculator permit 6874 match community c3_242_216 c3_243_217 c3_244_218 c3_245_219 c3_246_220 set community 0:26 route-map calculator permit 6875 match community c3_247_221 c3_248_222 c3_249_223 c3_250_224 c3_251_225 set community 0:26 route-map calculator permit 6876 match community c3_252_226 c3_253_227 c3_254_228 c3_255_229 c3_256_230 set community 0:26 ip community-list standard 2_89_233 permit 65000:2 0:89 0:233 route-map calculator permit 6877 match community 2_89_233 set community 0:20737 ip community-list standard 2_215_247 permit 65000:2 0:215 0:247 route-map calculator permit 6878 match community 2_215_247 set community 0:53105 ip community-list standard 2_129_209 permit 65000:2 0:129 0:209 route-map calculator permit 6879 match community 2_129_209 set community 0:26961 ip community-list standard 2_140_178 permit 65000:2 0:140 0:178 route-map calculator permit 6880 match community 2_140_178 set community 0:24920 ip community-list standard 2_114_173 permit 65000:2 0:114 0:173 route-map calculator permit 6881 match community 2_114_173 set community 0:19722 ip community-list standard 2_218_242 permit 65000:2 0:218 0:242 route-map calculator permit 6882 match community 2_218_242 set community 0:52756 ip community-list standard 2_25_185 permit 65000:2 0:25 0:185 ip community-list standard 2_37_125 permit 65000:2 0:37 0:125 route-map calculator permit 6883 match community 2_25_185 2_37_125 set community 0:4625 ip community-list standard 2_29_169 permit 65000:2 0:29 0:169 route-map calculator permit 6884 match community 2_29_169 set community 0:4901 ip community-list standard 2_27_143 permit 65000:2 0:27 0:143 ip community-list standard 2_33_117 permit 65000:2 0:33 0:117 ip community-list standard 2_39_99 permit 65000:2 0:39 0:99 route-map calculator permit 6885 match community 2_27_143 2_33_117 2_39_99 set community 0:3861 ip community-list standard 2_82_242 permit 65000:2 0:82 0:242 ip community-list standard 2_121_164 permit 65000:2 0:121 0:164 route-map calculator permit 6886 match community 2_82_242 2_121_164 set community 0:19844 ip community-list standard 2_121_235 permit 65000:2 0:121 0:235 route-map calculator permit 6887 match community 2_121_235 set community 0:28435 ip community-list standard 2_177_251 permit 65000:2 0:177 0:251 route-map calculator permit 6888 match community 2_177_251 set community 0:44427 ip community-list standard 2_147_229 permit 65000:2 0:147 0:229 route-map calculator permit 6889 match community 2_147_229 set community 0:33663 ip community-list standard 2_101_252 permit 65000:2 0:101 0:252 ip community-list standard 2_126_202 permit 65000:2 0:126 0:202 route-map calculator permit 6890 match community 2_101_252 2_126_202 set community 0:25452 ip community-list standard 2_124_207 permit 65000:2 0:124 0:207 ip community-list standard 2_138_186 permit 65000:2 0:138 0:186 route-map calculator permit 6891 match community 2_124_207 2_138_186 set community 0:25668 ip community-list standard 2_204_219 permit 65000:2 0:204 0:219 route-map calculator permit 6892 match community 2_204_219 set community 0:44676 ip community-list standard 2_142_203 permit 65000:2 0:142 0:203 route-map calculator permit 6893 match community 2_142_203 set community 0:28826 ip community-list standard 2_4_175 permit 65000:2 0:4 0:175 ip community-list standard 2_5_140 permit 65000:2 0:5 0:140 ip community-list standard 2_7_100 permit 65000:2 0:7 0:100 ip community-list standard 2_10_70 permit 65000:2 0:10 0:70 ip community-list standard 2_14_50 permit 65000:2 0:14 0:50 ip community-list standard 2_20_35 permit 65000:2 0:20 0:35 ip community-list standard 2_25_28 permit 65000:2 0:25 0:28 route-map calculator permit 6894 match community 2_4_175 2_5_140 2_7_100 2_10_70 2_14_50 set community 0:700 route-map calculator permit 6895 match community 2_20_35 2_25_28 set community 0:700 ip community-list standard 2_137_252 permit 65000:2 0:137 0:252 route-map calculator permit 6896 match community 2_137_252 set community 0:34524 ip community-list standard 2_103_143 permit 65000:2 0:103 0:143 route-map calculator permit 6897 match community 2_103_143 set community 0:14729 ip community-list standard 2_166_205 permit 65000:2 0:166 0:205 route-map calculator permit 6898 match community 2_166_205 set community 0:34030 ip community-list standard 2_111_233 permit 65000:2 0:111 0:233 route-map calculator permit 6899 match community 2_111_233 set community 0:25863 ip community-list standard 2_59_67 permit 65000:2 0:59 0:67 route-map calculator permit 6900 match community 2_59_67 set community 0:3953 ip community-list standard 2_29_226 permit 65000:2 0:29 0:226 ip community-list standard 2_58_113 permit 65000:2 0:58 0:113 route-map calculator permit 6901 match community 2_29_226 2_58_113 set community 0:6554 ip community-list standard 2_88_247 permit 65000:2 0:88 0:247 ip community-list standard 2_104_209 permit 65000:2 0:104 0:209 ip community-list standard 2_143_152 permit 65000:2 0:143 0:152 route-map calculator permit 6902 match community 2_88_247 2_104_209 2_143_152 set community 0:21736 ip community-list standard 2_21_248 permit 65000:2 0:21 0:248 ip community-list standard 2_24_217 permit 65000:2 0:24 0:217 ip community-list standard 2_28_186 permit 65000:2 0:28 0:186 ip community-list standard 2_31_168 permit 65000:2 0:31 0:168 ip community-list standard 2_42_124 permit 65000:2 0:42 0:124 ip community-list standard 2_56_93 permit 65000:2 0:56 0:93 ip community-list standard 2_62_84 permit 65000:2 0:62 0:84 route-map calculator permit 6903 match community 2_21_248 2_24_217 2_28_186 2_31_168 2_42_124 set community 0:5208 route-map calculator permit 6904 match community 2_56_93 2_62_84 set community 0:5208 ip community-list standard 2_37_106 permit 65000:2 0:37 0:106 ip community-list standard 2_53_74 permit 65000:2 0:53 0:74 route-map calculator permit 6905 match community 2_37_106 2_53_74 set community 0:3922 ip community-list standard 2_2_163 permit 65000:2 0:2 0:163 ip community-list standard 1_70_256 permit 65000:1 0:70 0:256 ip community-list standard 1_71_255 permit 65000:1 0:71 0:255 ip community-list standard 1_72_254 permit 65000:1 0:72 0:254 ip community-list standard 1_73_253 permit 65000:1 0:73 0:253 ip community-list standard 1_74_252 permit 65000:1 0:74 0:252 ip community-list standard 1_75_251 permit 65000:1 0:75 0:251 ip community-list standard 1_76_250 permit 65000:1 0:76 0:250 ip community-list standard 1_77_249 permit 65000:1 0:77 0:249 ip community-list standard 1_78_248 permit 65000:1 0:78 0:248 ip community-list standard 1_79_247 permit 65000:1 0:79 0:247 ip community-list standard 1_80_246 permit 65000:1 0:80 0:246 ip community-list standard 1_81_245 permit 65000:1 0:81 0:245 ip community-list standard 1_82_244 permit 65000:1 0:82 0:244 ip community-list standard 1_83_243 permit 65000:1 0:83 0:243 ip community-list standard 1_84_242 permit 65000:1 0:84 0:242 ip community-list standard 1_85_241 permit 65000:1 0:85 0:241 ip community-list standard 1_86_240 permit 65000:1 0:86 0:240 ip community-list standard 1_87_239 permit 65000:1 0:87 0:239 ip community-list standard 1_88_238 permit 65000:1 0:88 0:238 ip community-list standard 1_89_237 permit 65000:1 0:89 0:237 ip community-list standard 1_90_236 permit 65000:1 0:90 0:236 ip community-list standard 1_91_235 permit 65000:1 0:91 0:235 ip community-list standard 1_92_234 permit 65000:1 0:92 0:234 ip community-list standard 1_93_233 permit 65000:1 0:93 0:233 ip community-list standard 1_94_232 permit 65000:1 0:94 0:232 ip community-list standard 1_95_231 permit 65000:1 0:95 0:231 ip community-list standard 1_96_230 permit 65000:1 0:96 0:230 ip community-list standard 1_97_229 permit 65000:1 0:97 0:229 ip community-list standard 1_98_228 permit 65000:1 0:98 0:228 ip community-list standard 1_99_227 permit 65000:1 0:99 0:227 ip community-list standard 1_100_226 permit 65000:1 0:100 0:226 ip community-list standard 1_101_225 permit 65000:1 0:101 0:225 ip community-list standard 1_102_224 permit 65000:1 0:102 0:224 ip community-list standard 1_103_223 permit 65000:1 0:103 0:223 ip community-list standard 1_104_222 permit 65000:1 0:104 0:222 ip community-list standard 1_105_221 permit 65000:1 0:105 0:221 ip community-list standard 1_106_220 permit 65000:1 0:106 0:220 ip community-list standard 1_107_219 permit 65000:1 0:107 0:219 ip community-list standard 1_108_218 permit 65000:1 0:108 0:218 ip community-list standard 1_109_217 permit 65000:1 0:109 0:217 ip community-list standard 1_110_216 permit 65000:1 0:110 0:216 ip community-list standard 1_111_215 permit 65000:1 0:111 0:215 ip community-list standard 1_112_214 permit 65000:1 0:112 0:214 ip community-list standard 1_113_213 permit 65000:1 0:113 0:213 ip community-list standard 1_114_212 permit 65000:1 0:114 0:212 ip community-list standard 1_115_211 permit 65000:1 0:115 0:211 ip community-list standard 1_116_210 permit 65000:1 0:116 0:210 ip community-list standard 1_117_209 permit 65000:1 0:117 0:209 ip community-list standard 1_118_208 permit 65000:1 0:118 0:208 ip community-list standard 1_119_207 permit 65000:1 0:119 0:207 ip community-list standard 1_120_206 permit 65000:1 0:120 0:206 ip community-list standard 1_121_205 permit 65000:1 0:121 0:205 ip community-list standard 1_122_204 permit 65000:1 0:122 0:204 ip community-list standard 1_123_203 permit 65000:1 0:123 0:203 ip community-list standard 1_124_202 permit 65000:1 0:124 0:202 ip community-list standard 1_125_201 permit 65000:1 0:125 0:201 ip community-list standard 1_126_200 permit 65000:1 0:126 0:200 ip community-list standard 1_127_199 permit 65000:1 0:127 0:199 ip community-list standard 1_128_198 permit 65000:1 0:128 0:198 ip community-list standard 1_129_197 permit 65000:1 0:129 0:197 ip community-list standard 1_130_196 permit 65000:1 0:130 0:196 ip community-list standard 1_131_195 permit 65000:1 0:131 0:195 ip community-list standard 1_132_194 permit 65000:1 0:132 0:194 ip community-list standard 1_133_193 permit 65000:1 0:133 0:193 ip community-list standard 1_134_192 permit 65000:1 0:134 0:192 ip community-list standard 1_135_191 permit 65000:1 0:135 0:191 ip community-list standard 1_136_190 permit 65000:1 0:136 0:190 ip community-list standard 1_137_189 permit 65000:1 0:137 0:189 ip community-list standard 1_138_188 permit 65000:1 0:138 0:188 ip community-list standard 1_139_187 permit 65000:1 0:139 0:187 ip community-list standard 1_140_186 permit 65000:1 0:140 0:186 ip community-list standard 1_141_185 permit 65000:1 0:141 0:185 ip community-list standard 1_142_184 permit 65000:1 0:142 0:184 ip community-list standard 1_143_183 permit 65000:1 0:143 0:183 ip community-list standard 1_144_182 permit 65000:1 0:144 0:182 ip community-list standard 1_145_181 permit 65000:1 0:145 0:181 ip community-list standard 1_146_180 permit 65000:1 0:146 0:180 ip community-list standard 1_147_179 permit 65000:1 0:147 0:179 ip community-list standard 1_148_178 permit 65000:1 0:148 0:178 ip community-list standard 1_149_177 permit 65000:1 0:149 0:177 ip community-list standard 1_150_176 permit 65000:1 0:150 0:176 ip community-list standard 1_151_175 permit 65000:1 0:151 0:175 ip community-list standard 1_152_174 permit 65000:1 0:152 0:174 ip community-list standard 1_153_173 permit 65000:1 0:153 0:173 ip community-list standard 1_154_172 permit 65000:1 0:154 0:172 ip community-list standard 1_155_171 permit 65000:1 0:155 0:171 ip community-list standard 1_156_170 permit 65000:1 0:156 0:170 ip community-list standard 1_157_169 permit 65000:1 0:157 0:169 ip community-list standard 1_158_168 permit 65000:1 0:158 0:168 ip community-list standard 1_159_167 permit 65000:1 0:159 0:167 ip community-list standard 1_160_166 permit 65000:1 0:160 0:166 ip community-list standard 1_161_165 permit 65000:1 0:161 0:165 ip community-list standard 1_162_164 permit 65000:1 0:162 0:164 ip community-list standard 1_163_163 permit 65000:1 0:163 0:163 route-map calculator permit 6906 match community 2_2_163 1_70_256 1_71_255 1_72_254 1_73_253 set community 0:326 route-map calculator permit 6907 match community 1_74_252 1_75_251 1_76_250 1_77_249 1_78_248 set community 0:326 route-map calculator permit 6908 match community 1_79_247 1_80_246 1_81_245 1_82_244 1_83_243 set community 0:326 route-map calculator permit 6909 match community 1_84_242 1_85_241 1_86_240 1_87_239 1_88_238 set community 0:326 route-map calculator permit 6910 match community 1_89_237 1_90_236 1_91_235 1_92_234 1_93_233 set community 0:326 route-map calculator permit 6911 match community 1_94_232 1_95_231 1_96_230 1_97_229 1_98_228 set community 0:326 route-map calculator permit 6912 match community 1_99_227 1_100_226 1_101_225 1_102_224 1_103_223 set community 0:326 route-map calculator permit 6913 match community 1_104_222 1_105_221 1_106_220 1_107_219 1_108_218 set community 0:326 route-map calculator permit 6914 match community 1_109_217 1_110_216 1_111_215 1_112_214 1_113_213 set community 0:326 route-map calculator permit 6915 match community 1_114_212 1_115_211 1_116_210 1_117_209 1_118_208 set community 0:326 route-map calculator permit 6916 match community 1_119_207 1_120_206 1_121_205 1_122_204 1_123_203 set community 0:326 route-map calculator permit 6917 match community 1_124_202 1_125_201 1_126_200 1_127_199 1_128_198 set community 0:326 route-map calculator permit 6918 match community 1_129_197 1_130_196 1_131_195 1_132_194 1_133_193 set community 0:326 route-map calculator permit 6919 match community 1_134_192 1_135_191 1_136_190 1_137_189 1_138_188 set community 0:326 route-map calculator permit 6920 match community 1_139_187 1_140_186 1_141_185 1_142_184 1_143_183 set community 0:326 route-map calculator permit 6921 match community 1_144_182 1_145_181 1_146_180 1_147_179 1_148_178 set community 0:326 route-map calculator permit 6922 match community 1_149_177 1_150_176 1_151_175 1_152_174 1_153_173 set community 0:326 route-map calculator permit 6923 match community 1_154_172 1_155_171 1_156_170 1_157_169 1_158_168 set community 0:326 route-map calculator permit 6924 match community 1_159_167 1_160_166 1_161_165 1_162_164 1_163_163 set community 0:326 ip community-list standard 2_53_215 permit 65000:2 0:53 0:215 route-map calculator permit 6925 match community 2_53_215 set community 0:11395 ip community-list standard 2_182_203 permit 65000:2 0:182 0:203 route-map calculator permit 6926 match community 2_182_203 set community 0:36946 ip community-list standard 2_189_211 permit 65000:2 0:189 0:211 route-map calculator permit 6927 match community 2_189_211 set community 0:39879 ip community-list standard 2_113_191 permit 65000:2 0:113 0:191 route-map calculator permit 6928 match community 2_113_191 set community 0:21583 ip community-list standard 2_40_131 permit 65000:2 0:40 0:131 route-map calculator permit 6929 match community 2_40_131 set community 0:5240 ip community-list standard 2_89_192 permit 65000:2 0:89 0:192 ip community-list standard 2_96_178 permit 65000:2 0:96 0:178 route-map calculator permit 6930 match community 2_89_192 2_96_178 set community 0:17088 ip community-list standard 2_17_203 permit 65000:2 0:17 0:203 ip community-list standard 2_29_119 permit 65000:2 0:29 0:119 route-map calculator permit 6931 match community 2_17_203 2_29_119 set community 0:3451 ip community-list standard 2_73_223 permit 65000:2 0:73 0:223 route-map calculator permit 6932 match community 2_73_223 set community 0:16279 ip community-list standard 2_73_166 permit 65000:2 0:73 0:166 ip community-list standard 2_83_146 permit 65000:2 0:83 0:146 route-map calculator permit 6933 match community 2_73_166 2_83_146 set community 0:12118 ip community-list standard 2_233_243 permit 65000:2 0:233 0:243 route-map calculator permit 6934 match community 2_233_243 set community 0:56619 ip community-list standard 2_206_255 permit 65000:2 0:206 0:255 route-map calculator permit 6935 match community 2_206_255 set community 0:52530 ip community-list standard 2_21_109 permit 65000:2 0:21 0:109 route-map calculator permit 6936 match community 2_21_109 set community 0:2289 ip community-list standard 2_23_174 permit 65000:2 0:23 0:174 ip community-list standard 2_29_138 permit 65000:2 0:29 0:138 ip community-list standard 2_46_87 permit 65000:2 0:46 0:87 ip community-list standard 2_58_69 permit 65000:2 0:58 0:69 route-map calculator permit 6937 match community 2_23_174 2_29_138 2_46_87 2_58_69 set community 0:4002 ip community-list standard 2_152_249 permit 65000:2 0:152 0:249 ip community-list standard 2_166_228 permit 65000:2 0:166 0:228 route-map calculator permit 6938 match community 2_152_249 2_166_228 set community 0:37848 ip community-list standard 2_114_163 permit 65000:2 0:114 0:163 route-map calculator permit 6939 match community 2_114_163 set community 0:18582 ip community-list standard 2_217_252 permit 65000:2 0:217 0:252 route-map calculator permit 6940 match community 2_217_252 set community 0:54684 ip community-list standard 2_99_199 permit 65000:2 0:99 0:199 route-map calculator permit 6941 match community 2_99_199 set community 0:19701 ip community-list standard 2_103_109 permit 65000:2 0:103 0:109 route-map calculator permit 6942 match community 2_103_109 set community 0:11227 ip community-list standard 2_18_247 permit 65000:2 0:18 0:247 ip community-list standard 2_19_234 permit 65000:2 0:19 0:234 ip community-list standard 2_26_171 permit 65000:2 0:26 0:171 ip community-list standard 2_38_117 permit 65000:2 0:38 0:117 ip community-list standard 2_39_114 permit 65000:2 0:39 0:114 ip community-list standard 2_57_78 permit 65000:2 0:57 0:78 route-map calculator permit 6943 match community 2_18_247 2_19_234 2_26_171 2_38_117 2_39_114 set community 0:4446 route-map calculator permit 6944 match community 2_57_78 set community 0:4446 ip community-list standard 2_143_145 permit 65000:2 0:143 0:145 route-map calculator permit 6945 match community 2_143_145 set community 0:20735 ip community-list standard 2_96_222 permit 65000:2 0:96 0:222 ip community-list standard 2_111_192 permit 65000:2 0:111 0:192 ip community-list standard 2_144_148 permit 65000:2 0:144 0:148 route-map calculator permit 6946 match community 2_96_222 2_111_192 2_144_148 set community 0:21312 ip community-list standard 2_110_245 permit 65000:2 0:110 0:245 ip community-list standard 2_154_175 permit 65000:2 0:154 0:175 route-map calculator permit 6947 match community 2_110_245 2_154_175 set community 0:26950 ip community-list standard 2_63_229 permit 65000:2 0:63 0:229 route-map calculator permit 6948 match community 2_63_229 set community 0:14427 ip community-list standard 2_161_252 permit 65000:2 0:161 0:252 ip community-list standard 2_196_207 permit 65000:2 0:196 0:207 route-map calculator permit 6949 match community 2_161_252 2_196_207 set community 0:40572 ip community-list standard 2_149_212 permit 65000:2 0:149 0:212 route-map calculator permit 6950 match community 2_149_212 set community 0:31588 ip community-list standard 2_52_142 permit 65000:2 0:52 0:142 ip community-list standard 2_71_104 permit 65000:2 0:71 0:104 route-map calculator permit 6951 match community 2_52_142 2_71_104 set community 0:7384 ip community-list standard 2_128_209 permit 65000:2 0:128 0:209 ip community-list standard 2_152_176 permit 65000:2 0:152 0:176 route-map calculator permit 6952 match community 2_128_209 2_152_176 set community 0:26752 ip community-list standard 2_184_211 permit 65000:2 0:184 0:211 route-map calculator permit 6953 match community 2_184_211 set community 0:38824 ip community-list standard 2_209_246 permit 65000:2 0:209 0:246 route-map calculator permit 6954 match community 2_209_246 set community 0:51414 ip community-list standard 2_226_233 permit 65000:2 0:226 0:233 route-map calculator permit 6955 match community 2_226_233 set community 0:52658 ip community-list standard 2_104_241 permit 65000:2 0:104 0:241 route-map calculator permit 6956 match community 2_104_241 set community 0:25064 ip community-list standard 2_97_215 permit 65000:2 0:97 0:215 route-map calculator permit 6957 match community 2_97_215 set community 0:20855 ip community-list standard 2_10_219 permit 65000:2 0:10 0:219 ip community-list standard 2_15_146 permit 65000:2 0:15 0:146 ip community-list standard 2_30_73 permit 65000:2 0:30 0:73 route-map calculator permit 6958 match community 2_10_219 2_15_146 2_30_73 set community 0:2190 ip community-list standard 2_106_207 permit 65000:2 0:106 0:207 ip community-list standard 2_138_159 permit 65000:2 0:138 0:159 route-map calculator permit 6959 match community 2_106_207 2_138_159 set community 0:21942 ip community-list standard 2_45_173 permit 65000:2 0:45 0:173 route-map calculator permit 6960 match community 2_45_173 set community 0:7785 ip community-list standard 2_26_194 permit 65000:2 0:26 0:194 ip community-list standard 2_52_97 permit 65000:2 0:52 0:97 route-map calculator permit 6961 match community 2_26_194 2_52_97 set community 0:5044 ip community-list standard 2_151_163 permit 65000:2 0:151 0:163 route-map calculator permit 6962 match community 2_151_163 set community 0:24613 ip community-list standard 2_108_213 permit 65000:2 0:108 0:213 ip community-list standard 2_142_162 permit 65000:2 0:142 0:162 route-map calculator permit 6963 match community 2_108_213 2_142_162 set community 0:23004 ip community-list standard 2_134_219 permit 65000:2 0:134 0:219 ip community-list standard 2_146_201 permit 65000:2 0:146 0:201 route-map calculator permit 6964 match community 2_134_219 2_146_201 set community 0:29346 ip community-list standard 2_202_246 permit 65000:2 0:202 0:246 route-map calculator permit 6965 match community 2_202_246 set community 0:49692 ip community-list standard 2_70_146 permit 65000:2 0:70 0:146 ip community-list standard 2_73_140 permit 65000:2 0:73 0:140 route-map calculator permit 6966 match community 2_70_146 2_73_140 set community 0:10220 ip community-list standard 2_215_245 permit 65000:2 0:215 0:245 route-map calculator permit 6967 match community 2_215_245 set community 0:52675 ip community-list standard 2_151_242 permit 65000:2 0:151 0:242 route-map calculator permit 6968 match community 2_151_242 set community 0:36542 ip community-list standard 1_1_203 permit 65000:1 0:1 0:203 ip community-list standard 2_1_204 permit 65000:2 0:1 0:204 ip community-list standard 2_2_102 permit 65000:2 0:2 0:102 ip community-list standard 1_2_202 permit 65000:1 0:2 0:202 ip community-list standard 2_3_68 permit 65000:2 0:3 0:68 ip community-list standard 1_3_201 permit 65000:1 0:3 0:201 ip community-list standard 2_4_51 permit 65000:2 0:4 0:51 ip community-list standard 1_4_200 permit 65000:1 0:4 0:200 ip community-list standard 1_5_199 permit 65000:1 0:5 0:199 ip community-list standard 2_6_34 permit 65000:2 0:6 0:34 ip community-list standard 1_6_198 permit 65000:1 0:6 0:198 ip community-list standard 1_7_197 permit 65000:1 0:7 0:197 ip community-list standard 1_8_196 permit 65000:1 0:8 0:196 ip community-list standard 1_9_195 permit 65000:1 0:9 0:195 ip community-list standard 1_10_194 permit 65000:1 0:10 0:194 ip community-list standard 1_11_193 permit 65000:1 0:11 0:193 ip community-list standard 2_12_17 permit 65000:2 0:12 0:17 ip community-list standard 1_12_192 permit 65000:1 0:12 0:192 ip community-list standard 1_13_191 permit 65000:1 0:13 0:191 ip community-list standard 1_14_190 permit 65000:1 0:14 0:190 ip community-list standard 1_15_189 permit 65000:1 0:15 0:189 ip community-list standard 1_16_188 permit 65000:1 0:16 0:188 ip community-list standard 1_17_187 permit 65000:1 0:17 0:187 ip community-list standard 1_18_186 permit 65000:1 0:18 0:186 ip community-list standard 1_19_185 permit 65000:1 0:19 0:185 ip community-list standard 1_20_184 permit 65000:1 0:20 0:184 ip community-list standard 1_21_183 permit 65000:1 0:21 0:183 ip community-list standard 1_22_182 permit 65000:1 0:22 0:182 ip community-list standard 1_23_181 permit 65000:1 0:23 0:181 ip community-list standard 1_24_180 permit 65000:1 0:24 0:180 ip community-list standard 1_25_179 permit 65000:1 0:25 0:179 ip community-list standard 1_26_178 permit 65000:1 0:26 0:178 ip community-list standard 1_27_177 permit 65000:1 0:27 0:177 ip community-list standard 1_28_176 permit 65000:1 0:28 0:176 ip community-list standard 1_29_175 permit 65000:1 0:29 0:175 ip community-list standard 1_30_174 permit 65000:1 0:30 0:174 ip community-list standard 1_31_173 permit 65000:1 0:31 0:173 ip community-list standard 1_32_172 permit 65000:1 0:32 0:172 ip community-list standard 1_33_171 permit 65000:1 0:33 0:171 ip community-list standard 1_34_170 permit 65000:1 0:34 0:170 ip community-list standard 1_35_169 permit 65000:1 0:35 0:169 ip community-list standard 1_36_168 permit 65000:1 0:36 0:168 ip community-list standard 1_37_167 permit 65000:1 0:37 0:167 ip community-list standard 1_38_166 permit 65000:1 0:38 0:166 ip community-list standard 1_39_165 permit 65000:1 0:39 0:165 ip community-list standard 1_40_164 permit 65000:1 0:40 0:164 ip community-list standard 1_41_163 permit 65000:1 0:41 0:163 ip community-list standard 1_42_162 permit 65000:1 0:42 0:162 ip community-list standard 1_43_161 permit 65000:1 0:43 0:161 ip community-list standard 1_44_160 permit 65000:1 0:44 0:160 ip community-list standard 1_45_159 permit 65000:1 0:45 0:159 ip community-list standard 1_46_158 permit 65000:1 0:46 0:158 ip community-list standard 1_47_157 permit 65000:1 0:47 0:157 ip community-list standard 1_48_156 permit 65000:1 0:48 0:156 ip community-list standard 1_49_155 permit 65000:1 0:49 0:155 ip community-list standard 1_50_154 permit 65000:1 0:50 0:154 ip community-list standard 1_51_153 permit 65000:1 0:51 0:153 ip community-list standard 1_52_152 permit 65000:1 0:52 0:152 ip community-list standard 1_53_151 permit 65000:1 0:53 0:151 ip community-list standard 1_54_150 permit 65000:1 0:54 0:150 ip community-list standard 1_55_149 permit 65000:1 0:55 0:149 ip community-list standard 1_56_148 permit 65000:1 0:56 0:148 ip community-list standard 1_57_147 permit 65000:1 0:57 0:147 ip community-list standard 1_58_146 permit 65000:1 0:58 0:146 ip community-list standard 1_59_145 permit 65000:1 0:59 0:145 ip community-list standard 1_60_144 permit 65000:1 0:60 0:144 ip community-list standard 1_61_143 permit 65000:1 0:61 0:143 ip community-list standard 1_62_142 permit 65000:1 0:62 0:142 ip community-list standard 1_63_141 permit 65000:1 0:63 0:141 ip community-list standard 1_64_140 permit 65000:1 0:64 0:140 ip community-list standard 1_65_139 permit 65000:1 0:65 0:139 ip community-list standard 1_66_138 permit 65000:1 0:66 0:138 ip community-list standard 1_67_137 permit 65000:1 0:67 0:137 ip community-list standard 1_68_136 permit 65000:1 0:68 0:136 ip community-list standard 1_69_135 permit 65000:1 0:69 0:135 ip community-list standard 1_70_134 permit 65000:1 0:70 0:134 ip community-list standard 1_71_133 permit 65000:1 0:71 0:133 ip community-list standard 1_72_132 permit 65000:1 0:72 0:132 ip community-list standard 1_73_131 permit 65000:1 0:73 0:131 ip community-list standard 1_74_130 permit 65000:1 0:74 0:130 ip community-list standard 1_75_129 permit 65000:1 0:75 0:129 ip community-list standard 1_76_128 permit 65000:1 0:76 0:128 ip community-list standard 1_77_127 permit 65000:1 0:77 0:127 ip community-list standard 1_78_126 permit 65000:1 0:78 0:126 ip community-list standard 1_79_125 permit 65000:1 0:79 0:125 ip community-list standard 1_80_124 permit 65000:1 0:80 0:124 ip community-list standard 1_81_123 permit 65000:1 0:81 0:123 ip community-list standard 1_82_122 permit 65000:1 0:82 0:122 ip community-list standard 1_83_121 permit 65000:1 0:83 0:121 ip community-list standard 1_84_120 permit 65000:1 0:84 0:120 ip community-list standard 1_85_119 permit 65000:1 0:85 0:119 ip community-list standard 1_86_118 permit 65000:1 0:86 0:118 ip community-list standard 1_87_117 permit 65000:1 0:87 0:117 ip community-list standard 1_88_116 permit 65000:1 0:88 0:116 ip community-list standard 1_89_115 permit 65000:1 0:89 0:115 ip community-list standard 1_90_114 permit 65000:1 0:90 0:114 ip community-list standard 1_91_113 permit 65000:1 0:91 0:113 ip community-list standard 1_92_112 permit 65000:1 0:92 0:112 ip community-list standard 1_93_111 permit 65000:1 0:93 0:111 ip community-list standard 1_94_110 permit 65000:1 0:94 0:110 ip community-list standard 1_95_109 permit 65000:1 0:95 0:109 ip community-list standard 1_96_108 permit 65000:1 0:96 0:108 ip community-list standard 1_97_107 permit 65000:1 0:97 0:107 ip community-list standard 1_98_106 permit 65000:1 0:98 0:106 ip community-list standard 1_99_105 permit 65000:1 0:99 0:105 ip community-list standard 1_100_104 permit 65000:1 0:100 0:104 ip community-list standard 1_101_103 permit 65000:1 0:101 0:103 ip community-list standard 1_102_102 permit 65000:1 0:102 0:102 ip community-list expanded c204 permit 1 ^65000:4_0:204_0:1$ ip community-list expanded c204 permit 2 ^65000:3_0:205_0:1$ ip community-list expanded c204 permit 3 ^65000:3_0:206_0:2$ ip community-list expanded c204 permit 4 ^65000:3_0:207_0:3$ ip community-list expanded c204 permit 5 ^65000:3_0:208_0:4$ ip community-list expanded c204 permit 6 ^65000:3_0:209_0:5$ ip community-list expanded c204 permit 7 ^65000:3_0:210_0:6$ ip community-list expanded c204 permit 8 ^65000:3_0:211_0:7$ ip community-list expanded c204 permit 9 ^65000:3_0:212_0:8$ ip community-list expanded c204 permit 10 ^65000:3_0:213_0:9$ ip community-list expanded c204 permit 11 ^65000:3_0:214_0:10$ ip community-list expanded c204 permit 12 ^65000:3_0:215_0:11$ ip community-list expanded c204 permit 13 ^65000:3_0:216_0:12$ ip community-list expanded c204 permit 14 ^65000:3_0:217_0:13$ ip community-list expanded c204 permit 15 ^65000:3_0:218_0:14$ ip community-list expanded c204 permit 16 ^65000:3_0:219_0:15$ ip community-list expanded c204 permit 17 ^65000:3_0:220_0:16$ ip community-list expanded c204 permit 18 ^65000:3_0:221_0:17$ ip community-list expanded c204 permit 19 ^65000:3_0:222_0:18$ ip community-list expanded c204 permit 20 ^65000:3_0:223_0:19$ ip community-list expanded c204 permit 21 ^65000:3_0:224_0:20$ ip community-list expanded c204 permit 22 ^65000:3_0:225_0:21$ ip community-list expanded c204 permit 23 ^65000:3_0:226_0:22$ ip community-list expanded c204 permit 24 ^65000:3_0:227_0:23$ ip community-list expanded c204 permit 25 ^65000:3_0:228_0:24$ ip community-list expanded c204 permit 26 ^65000:3_0:229_0:25$ ip community-list expanded c204 permit 27 ^65000:3_0:230_0:26$ ip community-list expanded c204 permit 28 ^65000:3_0:231_0:27$ ip community-list expanded c204 permit 29 ^65000:3_0:232_0:28$ ip community-list expanded c204 permit 30 ^65000:3_0:233_0:29$ ip community-list expanded c204 permit 31 ^65000:3_0:234_0:30$ ip community-list expanded c204 permit 32 ^65000:3_0:235_0:31$ ip community-list expanded c204 permit 33 ^65000:3_0:236_0:32$ ip community-list expanded c204 permit 34 ^65000:3_0:237_0:33$ ip community-list expanded c204 permit 35 ^65000:3_0:238_0:34$ ip community-list expanded c204 permit 36 ^65000:3_0:239_0:35$ ip community-list expanded c204 permit 37 ^65000:3_0:240_0:36$ ip community-list expanded c204 permit 38 ^65000:3_0:241_0:37$ ip community-list expanded c204 permit 39 ^65000:3_0:242_0:38$ ip community-list expanded c204 permit 40 ^65000:3_0:243_0:39$ ip community-list expanded c204 permit 41 ^65000:3_0:244_0:40$ ip community-list expanded c204 permit 42 ^65000:3_0:245_0:41$ ip community-list expanded c204 permit 43 ^65000:3_0:246_0:42$ ip community-list expanded c204 permit 44 ^65000:3_0:247_0:43$ ip community-list expanded c204 permit 45 ^65000:3_0:248_0:44$ ip community-list expanded c204 permit 46 ^65000:3_0:249_0:45$ ip community-list expanded c204 permit 47 ^65000:3_0:250_0:46$ ip community-list expanded c204 permit 48 ^65000:3_0:251_0:47$ ip community-list expanded c204 permit 49 ^65000:3_0:252_0:48$ ip community-list expanded c204 permit 50 ^65000:3_0:253_0:49$ ip community-list expanded c204 permit 51 ^65000:3_0:254_0:50$ ip community-list expanded c204 permit 52 ^65000:3_0:255_0:51$ ip community-list expanded c204 permit 53 ^65000:3_0:256_0:52$ route-map calculator permit 6969 match community 1_1_203 2_1_204 2_2_102 1_2_202 2_3_68 set community 0:204 route-map calculator permit 6970 match community 1_3_201 2_4_51 1_4_200 1_5_199 2_6_34 set community 0:204 route-map calculator permit 6971 match community 1_6_198 1_7_197 1_8_196 1_9_195 1_10_194 set community 0:204 route-map calculator permit 6972 match community 1_11_193 2_12_17 1_12_192 1_13_191 1_14_190 set community 0:204 route-map calculator permit 6973 match community 1_15_189 1_16_188 1_17_187 1_18_186 1_19_185 set community 0:204 route-map calculator permit 6974 match community 1_20_184 1_21_183 1_22_182 1_23_181 1_24_180 set community 0:204 route-map calculator permit 6975 match community 1_25_179 1_26_178 1_27_177 1_28_176 1_29_175 set community 0:204 route-map calculator permit 6976 match community 1_30_174 1_31_173 1_32_172 1_33_171 1_34_170 set community 0:204 route-map calculator permit 6977 match community 1_35_169 1_36_168 1_37_167 1_38_166 1_39_165 set community 0:204 route-map calculator permit 6978 match community 1_40_164 1_41_163 1_42_162 1_43_161 1_44_160 set community 0:204 route-map calculator permit 6979 match community 1_45_159 1_46_158 1_47_157 1_48_156 1_49_155 set community 0:204 route-map calculator permit 6980 match community 1_50_154 1_51_153 1_52_152 1_53_151 1_54_150 set community 0:204 route-map calculator permit 6981 match community 1_55_149 1_56_148 1_57_147 1_58_146 1_59_145 set community 0:204 route-map calculator permit 6982 match community 1_60_144 1_61_143 1_62_142 1_63_141 1_64_140 set community 0:204 route-map calculator permit 6983 match community 1_65_139 1_66_138 1_67_137 1_68_136 1_69_135 set community 0:204 route-map calculator permit 6984 match community 1_70_134 1_71_133 1_72_132 1_73_131 1_74_130 set community 0:204 route-map calculator permit 6985 match community 1_75_129 1_76_128 1_77_127 1_78_126 1_79_125 set community 0:204 route-map calculator permit 6986 match community 1_80_124 1_81_123 1_82_122 1_83_121 1_84_120 set community 0:204 route-map calculator permit 6987 match community 1_85_119 1_86_118 1_87_117 1_88_116 1_89_115 set community 0:204 route-map calculator permit 6988 match community 1_90_114 1_91_113 1_92_112 1_93_111 1_94_110 set community 0:204 route-map calculator permit 6989 match community 1_95_109 1_96_108 1_97_107 1_98_106 1_99_105 set community 0:204 route-map calculator permit 6990 match community 1_100_104 1_101_103 1_102_102 c4_204_1 c3_205_1 set community 0:204 route-map calculator permit 6991 match community c3_206_2 c3_207_3 c3_208_4 c3_209_5 c3_210_6 set community 0:204 route-map calculator permit 6992 match community c3_211_7 c3_212_8 c3_213_9 c3_214_10 c3_215_11 set community 0:204 route-map calculator permit 6993 match community c3_216_12 c3_217_13 c3_218_14 c3_219_15 c3_220_16 set community 0:204 route-map calculator permit 6994 match community c3_221_17 c3_222_18 c3_223_19 c3_224_20 c3_225_21 set community 0:204 route-map calculator permit 6995 match community c3_226_22 c3_227_23 c3_228_24 c3_229_25 c3_230_26 set community 0:204 route-map calculator permit 6996 match community c3_231_27 c3_232_28 c3_233_29 c3_234_30 c3_235_31 set community 0:204 route-map calculator permit 6997 match community c3_236_32 c3_237_33 c3_238_34 c3_239_35 c3_240_36 set community 0:204 route-map calculator permit 6998 match community c3_241_37 c3_242_38 c3_243_39 c3_244_40 c3_245_41 set community 0:204 route-map calculator permit 6999 match community c3_246_42 c3_247_43 c3_248_44 c3_249_45 c3_250_46 set community 0:204 route-map calculator permit 7000 match community c3_251_47 c3_252_48 c3_253_49 c3_254_50 c3_255_51 set community 0:204 route-map calculator permit 7001 match community c3_256_52 set community 0:204 ip community-list standard 2_78_236 permit 65000:2 0:78 0:236 ip community-list standard 2_104_177 permit 65000:2 0:104 0:177 ip community-list standard 2_118_156 permit 65000:2 0:118 0:156 route-map calculator permit 7002 match community 2_78_236 2_104_177 2_118_156 set community 0:18408 ip community-list standard 2_152_244 permit 65000:2 0:152 0:244 route-map calculator permit 7003 match community 2_152_244 set community 0:37088 ip community-list standard 2_98_131 permit 65000:2 0:98 0:131 route-map calculator permit 7004 match community 2_98_131 set community 0:12838 ip community-list standard 2_211_226 permit 65000:2 0:211 0:226 route-map calculator permit 7005 match community 2_211_226 set community 0:47686 ip community-list standard 2_209_252 permit 65000:2 0:209 0:252 ip community-list standard 2_228_231 permit 65000:2 0:228 0:231 route-map calculator permit 7006 match community 2_209_252 2_228_231 set community 0:52668 ip community-list standard 2_53_238 permit 65000:2 0:53 0:238 ip community-list standard 2_106_119 permit 65000:2 0:106 0:119 route-map calculator permit 7007 match community 2_53_238 2_106_119 set community 0:12614 ip community-list standard 2_48_233 permit 65000:2 0:48 0:233 route-map calculator permit 7008 match community 2_48_233 set community 0:11184 ip community-list standard 2_85_209 permit 65000:2 0:85 0:209 ip community-list standard 2_95_187 permit 65000:2 0:95 0:187 route-map calculator permit 7009 match community 2_85_209 2_95_187 set community 0:17765 ip community-list standard 2_225_235 permit 65000:2 0:225 0:235 route-map calculator permit 7010 match community 2_225_235 set community 0:52875 ip community-list standard 2_33_165 permit 65000:2 0:33 0:165 ip community-list standard 2_45_121 permit 65000:2 0:45 0:121 ip community-list standard 2_55_99 permit 65000:2 0:55 0:99 route-map calculator permit 7011 match community 2_33_165 2_45_121 2_55_99 set community 0:5445 ip community-list standard 2_125_249 permit 65000:2 0:125 0:249 route-map calculator permit 7012 match community 2_125_249 set community 0:31125 ip community-list standard 2_23_216 permit 65000:2 0:23 0:216 ip community-list standard 2_24_207 permit 65000:2 0:24 0:207 ip community-list standard 2_27_184 permit 65000:2 0:27 0:184 ip community-list standard 2_36_138 permit 65000:2 0:36 0:138 ip community-list standard 2_46_108 permit 65000:2 0:46 0:108 ip community-list standard 2_54_92 permit 65000:2 0:54 0:92 ip community-list standard 2_69_72 permit 65000:2 0:69 0:72 route-map calculator permit 7013 match community 2_23_216 2_24_207 2_27_184 2_36_138 2_46_108 set community 0:4968 route-map calculator permit 7014 match community 2_54_92 2_69_72 set community 0:4968 ip community-list standard 2_196_229 permit 65000:2 0:196 0:229 route-map calculator permit 7015 match community 2_196_229 set community 0:44884 ip community-list standard 2_101_111 permit 65000:2 0:101 0:111 route-map calculator permit 7016 match community 2_101_111 set community 0:11211 ip community-list standard 2_95_215 permit 65000:2 0:95 0:215 route-map calculator permit 7017 match community 2_95_215 set community 0:20425 ip community-list standard 2_108_256 permit 65000:2 0:108 0:256 ip community-list standard 2_128_216 permit 65000:2 0:128 0:216 ip community-list standard 2_144_192 permit 65000:2 0:144 0:192 route-map calculator permit 7018 match community 2_108_256 2_128_216 2_144_192 set community 0:27648 ip community-list standard 2_6_167 permit 65000:2 0:6 0:167 route-map calculator permit 7019 match community 2_6_167 set community 0:1002 ip community-list standard 2_22_169 permit 65000:2 0:22 0:169 ip community-list standard 2_26_143 permit 65000:2 0:26 0:143 route-map calculator permit 7020 match community 2_22_169 2_26_143 set community 0:3718 ip community-list standard 2_2_179 permit 65000:2 0:2 0:179 ip community-list standard 1_102_256 permit 65000:1 0:102 0:256 ip community-list standard 1_103_255 permit 65000:1 0:103 0:255 ip community-list standard 1_104_254 permit 65000:1 0:104 0:254 ip community-list standard 1_105_253 permit 65000:1 0:105 0:253 ip community-list standard 1_106_252 permit 65000:1 0:106 0:252 ip community-list standard 1_107_251 permit 65000:1 0:107 0:251 ip community-list standard 1_108_250 permit 65000:1 0:108 0:250 ip community-list standard 1_109_249 permit 65000:1 0:109 0:249 ip community-list standard 1_110_248 permit 65000:1 0:110 0:248 ip community-list standard 1_111_247 permit 65000:1 0:111 0:247 ip community-list standard 1_112_246 permit 65000:1 0:112 0:246 ip community-list standard 1_113_245 permit 65000:1 0:113 0:245 ip community-list standard 1_114_244 permit 65000:1 0:114 0:244 ip community-list standard 1_115_243 permit 65000:1 0:115 0:243 ip community-list standard 1_116_242 permit 65000:1 0:116 0:242 ip community-list standard 1_117_241 permit 65000:1 0:117 0:241 ip community-list standard 1_118_240 permit 65000:1 0:118 0:240 ip community-list standard 1_119_239 permit 65000:1 0:119 0:239 ip community-list standard 1_120_238 permit 65000:1 0:120 0:238 ip community-list standard 1_121_237 permit 65000:1 0:121 0:237 ip community-list standard 1_122_236 permit 65000:1 0:122 0:236 ip community-list standard 1_123_235 permit 65000:1 0:123 0:235 ip community-list standard 1_124_234 permit 65000:1 0:124 0:234 ip community-list standard 1_125_233 permit 65000:1 0:125 0:233 ip community-list standard 1_126_232 permit 65000:1 0:126 0:232 ip community-list standard 1_127_231 permit 65000:1 0:127 0:231 ip community-list standard 1_128_230 permit 65000:1 0:128 0:230 ip community-list standard 1_129_229 permit 65000:1 0:129 0:229 ip community-list standard 1_130_228 permit 65000:1 0:130 0:228 ip community-list standard 1_131_227 permit 65000:1 0:131 0:227 ip community-list standard 1_132_226 permit 65000:1 0:132 0:226 ip community-list standard 1_133_225 permit 65000:1 0:133 0:225 ip community-list standard 1_134_224 permit 65000:1 0:134 0:224 ip community-list standard 1_135_223 permit 65000:1 0:135 0:223 ip community-list standard 1_136_222 permit 65000:1 0:136 0:222 ip community-list standard 1_137_221 permit 65000:1 0:137 0:221 ip community-list standard 1_138_220 permit 65000:1 0:138 0:220 ip community-list standard 1_139_219 permit 65000:1 0:139 0:219 ip community-list standard 1_140_218 permit 65000:1 0:140 0:218 ip community-list standard 1_141_217 permit 65000:1 0:141 0:217 ip community-list standard 1_142_216 permit 65000:1 0:142 0:216 ip community-list standard 1_143_215 permit 65000:1 0:143 0:215 ip community-list standard 1_144_214 permit 65000:1 0:144 0:214 ip community-list standard 1_145_213 permit 65000:1 0:145 0:213 ip community-list standard 1_146_212 permit 65000:1 0:146 0:212 ip community-list standard 1_147_211 permit 65000:1 0:147 0:211 ip community-list standard 1_148_210 permit 65000:1 0:148 0:210 ip community-list standard 1_149_209 permit 65000:1 0:149 0:209 ip community-list standard 1_150_208 permit 65000:1 0:150 0:208 ip community-list standard 1_151_207 permit 65000:1 0:151 0:207 ip community-list standard 1_152_206 permit 65000:1 0:152 0:206 ip community-list standard 1_153_205 permit 65000:1 0:153 0:205 ip community-list standard 1_154_204 permit 65000:1 0:154 0:204 ip community-list standard 1_155_203 permit 65000:1 0:155 0:203 ip community-list standard 1_156_202 permit 65000:1 0:156 0:202 ip community-list standard 1_157_201 permit 65000:1 0:157 0:201 ip community-list standard 1_158_200 permit 65000:1 0:158 0:200 ip community-list standard 1_159_199 permit 65000:1 0:159 0:199 ip community-list standard 1_160_198 permit 65000:1 0:160 0:198 ip community-list standard 1_161_197 permit 65000:1 0:161 0:197 ip community-list standard 1_162_196 permit 65000:1 0:162 0:196 ip community-list standard 1_163_195 permit 65000:1 0:163 0:195 ip community-list standard 1_164_194 permit 65000:1 0:164 0:194 ip community-list standard 1_165_193 permit 65000:1 0:165 0:193 ip community-list standard 1_166_192 permit 65000:1 0:166 0:192 ip community-list standard 1_167_191 permit 65000:1 0:167 0:191 ip community-list standard 1_168_190 permit 65000:1 0:168 0:190 ip community-list standard 1_169_189 permit 65000:1 0:169 0:189 ip community-list standard 1_170_188 permit 65000:1 0:170 0:188 ip community-list standard 1_171_187 permit 65000:1 0:171 0:187 ip community-list standard 1_172_186 permit 65000:1 0:172 0:186 ip community-list standard 1_173_185 permit 65000:1 0:173 0:185 ip community-list standard 1_174_184 permit 65000:1 0:174 0:184 ip community-list standard 1_175_183 permit 65000:1 0:175 0:183 ip community-list standard 1_176_182 permit 65000:1 0:176 0:182 ip community-list standard 1_177_181 permit 65000:1 0:177 0:181 ip community-list standard 1_178_180 permit 65000:1 0:178 0:180 ip community-list standard 1_179_179 permit 65000:1 0:179 0:179 route-map calculator permit 7021 match community 2_2_179 1_102_256 1_103_255 1_104_254 1_105_253 set community 0:358 route-map calculator permit 7022 match community 1_106_252 1_107_251 1_108_250 1_109_249 1_110_248 set community 0:358 route-map calculator permit 7023 match community 1_111_247 1_112_246 1_113_245 1_114_244 1_115_243 set community 0:358 route-map calculator permit 7024 match community 1_116_242 1_117_241 1_118_240 1_119_239 1_120_238 set community 0:358 route-map calculator permit 7025 match community 1_121_237 1_122_236 1_123_235 1_124_234 1_125_233 set community 0:358 route-map calculator permit 7026 match community 1_126_232 1_127_231 1_128_230 1_129_229 1_130_228 set community 0:358 route-map calculator permit 7027 match community 1_131_227 1_132_226 1_133_225 1_134_224 1_135_223 set community 0:358 route-map calculator permit 7028 match community 1_136_222 1_137_221 1_138_220 1_139_219 1_140_218 set community 0:358 route-map calculator permit 7029 match community 1_141_217 1_142_216 1_143_215 1_144_214 1_145_213 set community 0:358 route-map calculator permit 7030 match community 1_146_212 1_147_211 1_148_210 1_149_209 1_150_208 set community 0:358 route-map calculator permit 7031 match community 1_151_207 1_152_206 1_153_205 1_154_204 1_155_203 set community 0:358 route-map calculator permit 7032 match community 1_156_202 1_157_201 1_158_200 1_159_199 1_160_198 set community 0:358 route-map calculator permit 7033 match community 1_161_197 1_162_196 1_163_195 1_164_194 1_165_193 set community 0:358 route-map calculator permit 7034 match community 1_166_192 1_167_191 1_168_190 1_169_189 1_170_188 set community 0:358 route-map calculator permit 7035 match community 1_171_187 1_172_186 1_173_185 1_174_184 1_175_183 set community 0:358 route-map calculator permit 7036 match community 1_176_182 1_177_181 1_178_180 1_179_179 set community 0:358 ip community-list standard 2_58_207 permit 65000:2 0:58 0:207 ip community-list standard 2_69_174 permit 65000:2 0:69 0:174 ip community-list standard 2_87_138 permit 65000:2 0:87 0:138 route-map calculator permit 7037 match community 2_58_207 2_69_174 2_87_138 set community 0:12006 ip community-list standard 2_62_245 permit 65000:2 0:62 0:245 ip community-list standard 2_70_217 permit 65000:2 0:70 0:217 ip community-list standard 2_98_155 permit 65000:2 0:98 0:155 route-map calculator permit 7038 match community 2_62_245 2_70_217 2_98_155 set community 0:15190 ip community-list standard 2_56_256 permit 65000:2 0:56 0:256 ip community-list standard 2_64_224 permit 65000:2 0:64 0:224 ip community-list standard 2_112_128 permit 65000:2 0:112 0:128 route-map calculator permit 7039 match community 2_56_256 2_64_224 2_112_128 set community 0:14336 ip community-list standard 2_171_247 permit 65000:2 0:171 0:247 route-map calculator permit 7040 match community 2_171_247 set community 0:42237 ip community-list standard 2_4_131 permit 65000:2 0:4 0:131 route-map calculator permit 7041 match community 2_4_131 set community 0:524 ip community-list standard 2_103_242 permit 65000:2 0:103 0:242 ip community-list standard 2_121_206 permit 65000:2 0:121 0:206 route-map calculator permit 7042 match community 2_103_242 2_121_206 set community 0:24926 ip community-list standard 2_23_223 permit 65000:2 0:23 0:223 route-map calculator permit 7043 match community 2_23_223 set community 0:5129 ip community-list standard 2_15_228 permit 65000:2 0:15 0:228 ip community-list standard 2_18_190 permit 65000:2 0:18 0:190 ip community-list standard 2_19_180 permit 65000:2 0:19 0:180 ip community-list standard 2_20_171 permit 65000:2 0:20 0:171 ip community-list standard 2_30_114 permit 65000:2 0:30 0:114 ip community-list standard 2_36_95 permit 65000:2 0:36 0:95 ip community-list standard 2_38_90 permit 65000:2 0:38 0:90 ip community-list standard 2_45_76 permit 65000:2 0:45 0:76 ip community-list standard 2_57_60 permit 65000:2 0:57 0:60 route-map calculator permit 7044 match community 2_15_228 2_18_190 2_19_180 2_20_171 2_30_114 set community 0:3420 route-map calculator permit 7045 match community 2_36_95 2_38_90 2_45_76 2_57_60 set community 0:3420 ip community-list standard 2_101_226 permit 65000:2 0:101 0:226 ip community-list standard 2_113_202 permit 65000:2 0:113 0:202 route-map calculator permit 7046 match community 2_101_226 2_113_202 set community 0:22826 ip community-list standard 2_23_137 permit 65000:2 0:23 0:137 route-map calculator permit 7047 match community 2_23_137 set community 0:3151 ip community-list standard 2_119_127 permit 65000:2 0:119 0:127 route-map calculator permit 7048 match community 2_119_127 set community 0:15113 ip community-list standard 2_120_254 permit 65000:2 0:120 0:254 ip community-list standard 2_127_240 permit 65000:2 0:127 0:240 route-map calculator permit 7049 match community 2_120_254 2_127_240 set community 0:30480 ip community-list standard 2_15_173 permit 65000:2 0:15 0:173 route-map calculator permit 7050 match community 2_15_173 set community 0:2595 ip community-list standard 2_53_209 permit 65000:2 0:53 0:209 route-map calculator permit 7051 match community 2_53_209 set community 0:11077 ip community-list standard 2_179_242 permit 65000:2 0:179 0:242 route-map calculator permit 7052 match community 2_179_242 set community 0:43318 ip community-list standard 2_44_244 permit 65000:2 0:44 0:244 ip community-list standard 2_61_176 permit 65000:2 0:61 0:176 ip community-list standard 2_88_122 permit 65000:2 0:88 0:122 route-map calculator permit 7053 match community 2_44_244 2_61_176 2_88_122 set community 0:10736 ip community-list standard 2_199_219 permit 65000:2 0:199 0:219 route-map calculator permit 7054 match community 2_199_219 set community 0:43581 ip community-list standard 2_33_169 permit 65000:2 0:33 0:169 ip community-list standard 2_39_143 permit 65000:2 0:39 0:143 route-map calculator permit 7055 match community 2_33_169 2_39_143 set community 0:5577 ip community-list standard 2_27_187 permit 65000:2 0:27 0:187 ip community-list standard 2_33_153 permit 65000:2 0:33 0:153 ip community-list standard 2_51_99 permit 65000:2 0:51 0:99 route-map calculator permit 7056 match community 2_27_187 2_33_153 2_51_99 set community 0:5049 ip community-list standard 2_183_244 permit 65000:2 0:183 0:244 route-map calculator permit 7057 match community 2_183_244 set community 0:44652 ip community-list standard 2_23_71 permit 65000:2 0:23 0:71 route-map calculator permit 7058 match community 2_23_71 set community 0:1633 ip community-list standard 2_133_185 permit 65000:2 0:133 0:185 route-map calculator permit 7059 match community 2_133_185 set community 0:24605 ip community-list standard 2_213_225 permit 65000:2 0:213 0:225 route-map calculator permit 7060 match community 2_213_225 set community 0:47925 ip community-list standard 2_141_231 permit 65000:2 0:141 0:231 route-map calculator permit 7061 match community 2_141_231 set community 0:32571 ip community-list standard 2_4_195 permit 65000:2 0:4 0:195 ip community-list standard 2_5_156 permit 65000:2 0:5 0:156 ip community-list standard 2_6_130 permit 65000:2 0:6 0:130 ip community-list standard 2_10_78 permit 65000:2 0:10 0:78 ip community-list standard 2_12_65 permit 65000:2 0:12 0:65 ip community-list standard 2_13_60 permit 65000:2 0:13 0:60 ip community-list standard 2_15_52 permit 65000:2 0:15 0:52 ip community-list standard 2_20_39 permit 65000:2 0:20 0:39 ip community-list standard 2_26_30 permit 65000:2 0:26 0:30 route-map calculator permit 7062 match community 2_4_195 2_5_156 2_6_130 2_10_78 2_12_65 set community 0:780 route-map calculator permit 7063 match community 2_13_60 2_15_52 2_20_39 2_26_30 set community 0:780 ip community-list standard 2_119_227 permit 65000:2 0:119 0:227 route-map calculator permit 7064 match community 2_119_227 set community 0:27013 ip community-list standard 2_150_209 permit 65000:2 0:150 0:209 ip community-list standard 2_165_190 permit 65000:2 0:165 0:190 route-map calculator permit 7065 match community 2_150_209 2_165_190 set community 0:31350 ip community-list standard 2_107_205 permit 65000:2 0:107 0:205 route-map calculator permit 7066 match community 2_107_205 set community 0:21935 ip community-list standard 2_87_157 permit 65000:2 0:87 0:157 route-map calculator permit 7067 match community 2_87_157 set community 0:13659 ip community-list standard 2_2_191 permit 65000:2 0:2 0:191 ip community-list standard 1_126_256 permit 65000:1 0:126 0:256 ip community-list standard 1_127_255 permit 65000:1 0:127 0:255 ip community-list standard 1_128_254 permit 65000:1 0:128 0:254 ip community-list standard 1_129_253 permit 65000:1 0:129 0:253 ip community-list standard 1_130_252 permit 65000:1 0:130 0:252 ip community-list standard 1_131_251 permit 65000:1 0:131 0:251 ip community-list standard 1_132_250 permit 65000:1 0:132 0:250 ip community-list standard 1_133_249 permit 65000:1 0:133 0:249 ip community-list standard 1_134_248 permit 65000:1 0:134 0:248 ip community-list standard 1_135_247 permit 65000:1 0:135 0:247 ip community-list standard 1_136_246 permit 65000:1 0:136 0:246 ip community-list standard 1_137_245 permit 65000:1 0:137 0:245 ip community-list standard 1_138_244 permit 65000:1 0:138 0:244 ip community-list standard 1_139_243 permit 65000:1 0:139 0:243 ip community-list standard 1_140_242 permit 65000:1 0:140 0:242 ip community-list standard 1_141_241 permit 65000:1 0:141 0:241 ip community-list standard 1_142_240 permit 65000:1 0:142 0:240 ip community-list standard 1_143_239 permit 65000:1 0:143 0:239 ip community-list standard 1_144_238 permit 65000:1 0:144 0:238 ip community-list standard 1_145_237 permit 65000:1 0:145 0:237 ip community-list standard 1_146_236 permit 65000:1 0:146 0:236 ip community-list standard 1_147_235 permit 65000:1 0:147 0:235 ip community-list standard 1_148_234 permit 65000:1 0:148 0:234 ip community-list standard 1_149_233 permit 65000:1 0:149 0:233 ip community-list standard 1_150_232 permit 65000:1 0:150 0:232 ip community-list standard 1_151_231 permit 65000:1 0:151 0:231 ip community-list standard 1_152_230 permit 65000:1 0:152 0:230 ip community-list standard 1_153_229 permit 65000:1 0:153 0:229 ip community-list standard 1_154_228 permit 65000:1 0:154 0:228 ip community-list standard 1_155_227 permit 65000:1 0:155 0:227 ip community-list standard 1_156_226 permit 65000:1 0:156 0:226 ip community-list standard 1_157_225 permit 65000:1 0:157 0:225 ip community-list standard 1_158_224 permit 65000:1 0:158 0:224 ip community-list standard 1_159_223 permit 65000:1 0:159 0:223 ip community-list standard 1_160_222 permit 65000:1 0:160 0:222 ip community-list standard 1_161_221 permit 65000:1 0:161 0:221 ip community-list standard 1_162_220 permit 65000:1 0:162 0:220 ip community-list standard 1_163_219 permit 65000:1 0:163 0:219 ip community-list standard 1_164_218 permit 65000:1 0:164 0:218 ip community-list standard 1_165_217 permit 65000:1 0:165 0:217 ip community-list standard 1_166_216 permit 65000:1 0:166 0:216 ip community-list standard 1_167_215 permit 65000:1 0:167 0:215 ip community-list standard 1_168_214 permit 65000:1 0:168 0:214 ip community-list standard 1_169_213 permit 65000:1 0:169 0:213 ip community-list standard 1_170_212 permit 65000:1 0:170 0:212 ip community-list standard 1_171_211 permit 65000:1 0:171 0:211 ip community-list standard 1_172_210 permit 65000:1 0:172 0:210 ip community-list standard 1_173_209 permit 65000:1 0:173 0:209 ip community-list standard 1_174_208 permit 65000:1 0:174 0:208 ip community-list standard 1_175_207 permit 65000:1 0:175 0:207 ip community-list standard 1_176_206 permit 65000:1 0:176 0:206 ip community-list standard 1_177_205 permit 65000:1 0:177 0:205 ip community-list standard 1_178_204 permit 65000:1 0:178 0:204 ip community-list standard 1_179_203 permit 65000:1 0:179 0:203 ip community-list standard 1_180_202 permit 65000:1 0:180 0:202 ip community-list standard 1_181_201 permit 65000:1 0:181 0:201 ip community-list standard 1_182_200 permit 65000:1 0:182 0:200 ip community-list standard 1_183_199 permit 65000:1 0:183 0:199 ip community-list standard 1_184_198 permit 65000:1 0:184 0:198 ip community-list standard 1_185_197 permit 65000:1 0:185 0:197 ip community-list standard 1_186_196 permit 65000:1 0:186 0:196 ip community-list standard 1_187_195 permit 65000:1 0:187 0:195 ip community-list standard 1_188_194 permit 65000:1 0:188 0:194 ip community-list standard 1_189_193 permit 65000:1 0:189 0:193 ip community-list standard 1_190_192 permit 65000:1 0:190 0:192 ip community-list standard 1_191_191 permit 65000:1 0:191 0:191 route-map calculator permit 7068 match community 2_2_191 1_126_256 1_127_255 1_128_254 1_129_253 set community 0:382 route-map calculator permit 7069 match community 1_130_252 1_131_251 1_132_250 1_133_249 1_134_248 set community 0:382 route-map calculator permit 7070 match community 1_135_247 1_136_246 1_137_245 1_138_244 1_139_243 set community 0:382 route-map calculator permit 7071 match community 1_140_242 1_141_241 1_142_240 1_143_239 1_144_238 set community 0:382 route-map calculator permit 7072 match community 1_145_237 1_146_236 1_147_235 1_148_234 1_149_233 set community 0:382 route-map calculator permit 7073 match community 1_150_232 1_151_231 1_152_230 1_153_229 1_154_228 set community 0:382 route-map calculator permit 7074 match community 1_155_227 1_156_226 1_157_225 1_158_224 1_159_223 set community 0:382 route-map calculator permit 7075 match community 1_160_222 1_161_221 1_162_220 1_163_219 1_164_218 set community 0:382 route-map calculator permit 7076 match community 1_165_217 1_166_216 1_167_215 1_168_214 1_169_213 set community 0:382 route-map calculator permit 7077 match community 1_170_212 1_171_211 1_172_210 1_173_209 1_174_208 set community 0:382 route-map calculator permit 7078 match community 1_175_207 1_176_206 1_177_205 1_178_204 1_179_203 set community 0:382 route-map calculator permit 7079 match community 1_180_202 1_181_201 1_182_200 1_183_199 1_184_198 set community 0:382 route-map calculator permit 7080 match community 1_185_197 1_186_196 1_187_195 1_188_194 1_189_193 set community 0:382 route-map calculator permit 7081 match community 1_190_192 1_191_191 set community 0:382 ip community-list standard 2_65_139 permit 65000:2 0:65 0:139 route-map calculator permit 7082 match community 2_65_139 set community 0:9035 ip community-list standard 2_19_238 permit 65000:2 0:19 0:238 ip community-list standard 2_34_133 permit 65000:2 0:34 0:133 ip community-list standard 2_38_119 permit 65000:2 0:38 0:119 route-map calculator permit 7083 match community 2_19_238 2_34_133 2_38_119 set community 0:4522 ip community-list standard 2_17_151 permit 65000:2 0:17 0:151 route-map calculator permit 7084 match community 2_17_151 set community 0:2567 ip community-list standard 2_49_71 permit 65000:2 0:49 0:71 route-map calculator permit 7085 match community 2_49_71 set community 0:3479 ip community-list standard 2_65_253 permit 65000:2 0:65 0:253 ip community-list standard 2_115_143 permit 65000:2 0:115 0:143 route-map calculator permit 7086 match community 2_65_253 2_115_143 set community 0:16445 ip community-list standard 2_52_235 permit 65000:2 0:52 0:235 ip community-list standard 2_65_188 permit 65000:2 0:65 0:188 ip community-list standard 2_94_130 permit 65000:2 0:94 0:130 route-map calculator permit 7087 match community 2_52_235 2_65_188 2_94_130 set community 0:12220 ip community-list standard 2_95_232 permit 65000:2 0:95 0:232 ip community-list standard 2_116_190 permit 65000:2 0:116 0:190 ip community-list standard 2_145_152 permit 65000:2 0:145 0:152 route-map calculator permit 7088 match community 2_95_232 2_116_190 2_145_152 set community 0:22040 ip community-list standard 2_135_194 permit 65000:2 0:135 0:194 route-map calculator permit 7089 match community 2_135_194 set community 0:26190 ip community-list standard 2_177_222 permit 65000:2 0:177 0:222 route-map calculator permit 7090 match community 2_177_222 set community 0:39294 ip community-list standard 2_26_177 permit 65000:2 0:26 0:177 ip community-list standard 2_39_118 permit 65000:2 0:39 0:118 ip community-list standard 2_59_78 permit 65000:2 0:59 0:78 route-map calculator permit 7091 match community 2_26_177 2_39_118 2_59_78 set community 0:4602 ip community-list standard 2_149_174 permit 65000:2 0:149 0:174 route-map calculator permit 7092 match community 2_149_174 set community 0:25926 ip community-list standard 2_94_193 permit 65000:2 0:94 0:193 route-map calculator permit 7093 match community 2_94_193 set community 0:18142 ip community-list standard 2_93_151 permit 65000:2 0:93 0:151 route-map calculator permit 7094 match community 2_93_151 set community 0:14043 ip community-list standard 2_123_233 permit 65000:2 0:123 0:233 route-map calculator permit 7095 match community 2_123_233 set community 0:28659 ip community-list standard 2_90_186 permit 65000:2 0:90 0:186 ip community-list standard 2_93_180 permit 65000:2 0:93 0:180 ip community-list standard 2_108_155 permit 65000:2 0:108 0:155 ip community-list standard 2_124_135 permit 65000:2 0:124 0:135 route-map calculator permit 7096 match community 2_90_186 2_93_180 2_108_155 2_124_135 set community 0:16740 ip community-list standard 2_58_206 permit 65000:2 0:58 0:206 ip community-list standard 2_103_116 permit 65000:2 0:103 0:116 route-map calculator permit 7097 match community 2_58_206 2_103_116 set community 0:11948 ip community-list standard 2_218_251 permit 65000:2 0:218 0:251 route-map calculator permit 7098 match community 2_218_251 set community 0:54718 ip community-list standard 2_65_182 permit 65000:2 0:65 0:182 ip community-list standard 2_70_169 permit 65000:2 0:70 0:169 ip community-list standard 2_91_130 permit 65000:2 0:91 0:130 route-map calculator permit 7099 match community 2_65_182 2_70_169 2_91_130 set community 0:11830 ip community-list standard 2_156_212 permit 65000:2 0:156 0:212 ip community-list standard 2_159_208 permit 65000:2 0:159 0:208 route-map calculator permit 7100 match community 2_156_212 2_159_208 set community 0:33072 ip community-list standard 2_141_187 permit 65000:2 0:141 0:187 route-map calculator permit 7101 match community 2_141_187 set community 0:26367 ip community-list standard 2_131_155 permit 65000:2 0:131 0:155 route-map calculator permit 7102 match community 2_131_155 set community 0:20305 ip community-list standard 2_134_145 permit 65000:2 0:134 0:145 route-map calculator permit 7103 match community 2_134_145 set community 0:19430 ip community-list standard 2_85_97 permit 65000:2 0:85 0:97 route-map calculator permit 7104 match community 2_85_97 set community 0:8245 ip community-list standard 2_129_129 permit 65000:2 0:129 0:129 route-map calculator permit 7105 match community 2_129_129 set community 0:16641 ip community-list standard 2_51_203 permit 65000:2 0:51 0:203 ip community-list standard 2_87_119 permit 65000:2 0:87 0:119 route-map calculator permit 7106 match community 2_51_203 2_87_119 set community 0:10353 ip community-list standard 1_1_114 permit 65000:1 0:1 0:114 ip community-list standard 2_1_115 permit 65000:2 0:1 0:115 ip community-list standard 1_2_113 permit 65000:1 0:2 0:113 ip community-list standard 1_3_112 permit 65000:1 0:3 0:112 ip community-list standard 1_4_111 permit 65000:1 0:4 0:111 ip community-list standard 2_5_23 permit 65000:2 0:5 0:23 ip community-list standard 1_5_110 permit 65000:1 0:5 0:110 ip community-list standard 1_6_109 permit 65000:1 0:6 0:109 ip community-list standard 1_7_108 permit 65000:1 0:7 0:108 ip community-list standard 1_8_107 permit 65000:1 0:8 0:107 ip community-list standard 1_9_106 permit 65000:1 0:9 0:106 ip community-list standard 1_10_105 permit 65000:1 0:10 0:105 ip community-list standard 1_11_104 permit 65000:1 0:11 0:104 ip community-list standard 1_12_103 permit 65000:1 0:12 0:103 ip community-list standard 1_13_102 permit 65000:1 0:13 0:102 ip community-list standard 1_14_101 permit 65000:1 0:14 0:101 ip community-list standard 1_15_100 permit 65000:1 0:15 0:100 ip community-list standard 1_16_99 permit 65000:1 0:16 0:99 ip community-list standard 1_17_98 permit 65000:1 0:17 0:98 ip community-list standard 1_18_97 permit 65000:1 0:18 0:97 ip community-list standard 1_19_96 permit 65000:1 0:19 0:96 ip community-list standard 1_20_95 permit 65000:1 0:20 0:95 ip community-list standard 1_21_94 permit 65000:1 0:21 0:94 ip community-list standard 1_22_93 permit 65000:1 0:22 0:93 ip community-list standard 1_23_92 permit 65000:1 0:23 0:92 ip community-list standard 1_24_91 permit 65000:1 0:24 0:91 ip community-list standard 1_25_90 permit 65000:1 0:25 0:90 ip community-list standard 1_26_89 permit 65000:1 0:26 0:89 ip community-list standard 1_27_88 permit 65000:1 0:27 0:88 ip community-list standard 1_28_87 permit 65000:1 0:28 0:87 ip community-list standard 1_29_86 permit 65000:1 0:29 0:86 ip community-list standard 1_30_85 permit 65000:1 0:30 0:85 ip community-list standard 1_31_84 permit 65000:1 0:31 0:84 ip community-list standard 1_32_83 permit 65000:1 0:32 0:83 ip community-list standard 1_33_82 permit 65000:1 0:33 0:82 ip community-list standard 1_34_81 permit 65000:1 0:34 0:81 ip community-list standard 1_35_80 permit 65000:1 0:35 0:80 ip community-list standard 1_36_79 permit 65000:1 0:36 0:79 ip community-list standard 1_37_78 permit 65000:1 0:37 0:78 ip community-list standard 1_38_77 permit 65000:1 0:38 0:77 ip community-list standard 1_39_76 permit 65000:1 0:39 0:76 ip community-list standard 1_40_75 permit 65000:1 0:40 0:75 ip community-list standard 1_41_74 permit 65000:1 0:41 0:74 ip community-list standard 1_42_73 permit 65000:1 0:42 0:73 ip community-list standard 1_43_72 permit 65000:1 0:43 0:72 ip community-list standard 1_44_71 permit 65000:1 0:44 0:71 ip community-list standard 1_45_70 permit 65000:1 0:45 0:70 ip community-list standard 1_46_69 permit 65000:1 0:46 0:69 ip community-list standard 1_47_68 permit 65000:1 0:47 0:68 ip community-list standard 1_48_67 permit 65000:1 0:48 0:67 ip community-list standard 1_49_66 permit 65000:1 0:49 0:66 ip community-list standard 1_50_65 permit 65000:1 0:50 0:65 ip community-list standard 1_51_64 permit 65000:1 0:51 0:64 ip community-list standard 1_52_63 permit 65000:1 0:52 0:63 ip community-list standard 1_53_62 permit 65000:1 0:53 0:62 ip community-list standard 1_54_61 permit 65000:1 0:54 0:61 ip community-list standard 1_55_60 permit 65000:1 0:55 0:60 ip community-list standard 1_56_59 permit 65000:1 0:56 0:59 ip community-list standard 1_57_58 permit 65000:1 0:57 0:58 ip community-list expanded c115 permit 1 ^65000:4_0:115_0:1$ ip community-list expanded c115 permit 2 ^65000:3_0:116_0:1$ ip community-list expanded c115 permit 3 ^65000:3_0:117_0:2$ ip community-list expanded c115 permit 4 ^65000:3_0:118_0:3$ ip community-list expanded c115 permit 5 ^65000:3_0:119_0:4$ ip community-list expanded c115 permit 6 ^65000:3_0:120_0:5$ ip community-list expanded c115 permit 7 ^65000:3_0:121_0:6$ ip community-list expanded c115 permit 8 ^65000:3_0:122_0:7$ ip community-list expanded c115 permit 9 ^65000:3_0:123_0:8$ ip community-list expanded c115 permit 10 ^65000:3_0:124_0:9$ ip community-list expanded c115 permit 11 ^65000:3_0:125_0:10$ ip community-list expanded c115 permit 12 ^65000:3_0:126_0:11$ ip community-list expanded c115 permit 13 ^65000:3_0:127_0:12$ ip community-list expanded c115 permit 14 ^65000:3_0:128_0:13$ ip community-list expanded c115 permit 15 ^65000:3_0:129_0:14$ ip community-list expanded c115 permit 16 ^65000:3_0:130_0:15$ ip community-list expanded c115 permit 17 ^65000:3_0:131_0:16$ ip community-list expanded c115 permit 18 ^65000:3_0:132_0:17$ ip community-list expanded c115 permit 19 ^65000:3_0:133_0:18$ ip community-list expanded c115 permit 20 ^65000:3_0:134_0:19$ ip community-list expanded c115 permit 21 ^65000:3_0:135_0:20$ ip community-list expanded c115 permit 22 ^65000:3_0:136_0:21$ ip community-list expanded c115 permit 23 ^65000:3_0:137_0:22$ ip community-list expanded c115 permit 24 ^65000:3_0:138_0:23$ ip community-list expanded c115 permit 25 ^65000:3_0:139_0:24$ ip community-list expanded c115 permit 26 ^65000:3_0:140_0:25$ ip community-list expanded c115 permit 27 ^65000:3_0:141_0:26$ ip community-list expanded c115 permit 28 ^65000:3_0:142_0:27$ ip community-list expanded c115 permit 29 ^65000:3_0:143_0:28$ ip community-list expanded c115 permit 30 ^65000:3_0:144_0:29$ ip community-list expanded c115 permit 31 ^65000:3_0:145_0:30$ ip community-list expanded c115 permit 32 ^65000:3_0:146_0:31$ ip community-list expanded c115 permit 33 ^65000:3_0:147_0:32$ ip community-list expanded c115 permit 34 ^65000:3_0:148_0:33$ ip community-list expanded c115 permit 35 ^65000:3_0:149_0:34$ ip community-list expanded c115 permit 36 ^65000:3_0:150_0:35$ ip community-list expanded c115 permit 37 ^65000:3_0:151_0:36$ ip community-list expanded c115 permit 38 ^65000:3_0:152_0:37$ ip community-list expanded c115 permit 39 ^65000:3_0:153_0:38$ ip community-list expanded c115 permit 40 ^65000:3_0:154_0:39$ ip community-list expanded c115 permit 41 ^65000:3_0:155_0:40$ ip community-list expanded c115 permit 42 ^65000:3_0:156_0:41$ ip community-list expanded c115 permit 43 ^65000:3_0:157_0:42$ ip community-list expanded c115 permit 44 ^65000:3_0:158_0:43$ ip community-list expanded c115 permit 45 ^65000:3_0:159_0:44$ ip community-list expanded c115 permit 46 ^65000:3_0:160_0:45$ ip community-list expanded c115 permit 47 ^65000:3_0:161_0:46$ ip community-list expanded c115 permit 48 ^65000:3_0:162_0:47$ ip community-list expanded c115 permit 49 ^65000:3_0:163_0:48$ ip community-list expanded c115 permit 50 ^65000:3_0:164_0:49$ ip community-list expanded c115 permit 51 ^65000:3_0:165_0:50$ ip community-list expanded c115 permit 52 ^65000:3_0:166_0:51$ ip community-list expanded c115 permit 53 ^65000:3_0:167_0:52$ ip community-list expanded c115 permit 54 ^65000:3_0:168_0:53$ ip community-list expanded c115 permit 55 ^65000:3_0:169_0:54$ ip community-list expanded c115 permit 56 ^65000:3_0:170_0:55$ ip community-list expanded c115 permit 57 ^65000:3_0:171_0:56$ ip community-list expanded c115 permit 58 ^65000:3_0:172_0:57$ ip community-list expanded c115 permit 59 ^65000:3_0:173_0:58$ ip community-list expanded c115 permit 60 ^65000:3_0:174_0:59$ ip community-list expanded c115 permit 61 ^65000:3_0:175_0:60$ ip community-list expanded c115 permit 62 ^65000:3_0:176_0:61$ ip community-list expanded c115 permit 63 ^65000:3_0:177_0:62$ ip community-list expanded c115 permit 64 ^65000:3_0:178_0:63$ ip community-list expanded c115 permit 65 ^65000:3_0:179_0:64$ ip community-list expanded c115 permit 66 ^65000:3_0:180_0:65$ ip community-list expanded c115 permit 67 ^65000:3_0:181_0:66$ ip community-list expanded c115 permit 68 ^65000:3_0:182_0:67$ ip community-list expanded c115 permit 69 ^65000:3_0:183_0:68$ ip community-list expanded c115 permit 70 ^65000:3_0:184_0:69$ ip community-list expanded c115 permit 71 ^65000:3_0:185_0:70$ ip community-list expanded c115 permit 72 ^65000:3_0:186_0:71$ ip community-list expanded c115 permit 73 ^65000:3_0:187_0:72$ ip community-list expanded c115 permit 74 ^65000:3_0:188_0:73$ ip community-list expanded c115 permit 75 ^65000:3_0:189_0:74$ ip community-list expanded c115 permit 76 ^65000:3_0:190_0:75$ ip community-list expanded c115 permit 77 ^65000:3_0:191_0:76$ ip community-list expanded c115 permit 78 ^65000:3_0:192_0:77$ ip community-list expanded c115 permit 79 ^65000:3_0:193_0:78$ ip community-list expanded c115 permit 80 ^65000:3_0:194_0:79$ ip community-list expanded c115 permit 81 ^65000:3_0:195_0:80$ ip community-list expanded c115 permit 82 ^65000:3_0:196_0:81$ ip community-list expanded c115 permit 83 ^65000:3_0:197_0:82$ ip community-list expanded c115 permit 84 ^65000:3_0:198_0:83$ ip community-list expanded c115 permit 85 ^65000:3_0:199_0:84$ ip community-list expanded c115 permit 86 ^65000:3_0:200_0:85$ ip community-list expanded c115 permit 87 ^65000:3_0:201_0:86$ ip community-list expanded c115 permit 88 ^65000:3_0:202_0:87$ ip community-list expanded c115 permit 89 ^65000:3_0:203_0:88$ ip community-list expanded c115 permit 90 ^65000:3_0:204_0:89$ ip community-list expanded c115 permit 91 ^65000:3_0:205_0:90$ ip community-list expanded c115 permit 92 ^65000:3_0:206_0:91$ ip community-list expanded c115 permit 93 ^65000:3_0:207_0:92$ ip community-list expanded c115 permit 94 ^65000:3_0:208_0:93$ ip community-list expanded c115 permit 95 ^65000:3_0:209_0:94$ ip community-list expanded c115 permit 96 ^65000:3_0:210_0:95$ ip community-list expanded c115 permit 97 ^65000:3_0:211_0:96$ ip community-list expanded c115 permit 98 ^65000:3_0:212_0:97$ ip community-list expanded c115 permit 99 ^65000:3_0:213_0:98$ ip community-list expanded c115 permit 100 ^65000:3_0:214_0:99$ ip community-list expanded c115 permit 101 ^65000:3_0:215_0:100$ ip community-list expanded c115 permit 102 ^65000:3_0:216_0:101$ ip community-list expanded c115 permit 103 ^65000:3_0:217_0:102$ ip community-list expanded c115 permit 104 ^65000:3_0:218_0:103$ ip community-list expanded c115 permit 105 ^65000:3_0:219_0:104$ ip community-list expanded c115 permit 106 ^65000:3_0:220_0:105$ ip community-list expanded c115 permit 107 ^65000:3_0:221_0:106$ ip community-list expanded c115 permit 108 ^65000:3_0:222_0:107$ ip community-list expanded c115 permit 109 ^65000:3_0:223_0:108$ ip community-list expanded c115 permit 110 ^65000:3_0:224_0:109$ ip community-list expanded c115 permit 111 ^65000:3_0:225_0:110$ ip community-list expanded c115 permit 112 ^65000:3_0:226_0:111$ ip community-list expanded c115 permit 113 ^65000:3_0:227_0:112$ ip community-list expanded c115 permit 114 ^65000:3_0:228_0:113$ ip community-list expanded c115 permit 115 ^65000:3_0:229_0:114$ ip community-list expanded c115 permit 116 ^65000:4_0:230_0:2$ ip community-list expanded c115 permit 117 ^65000:3_0:230_0:115$ ip community-list expanded c115 permit 118 ^65000:4_0:231_0:2$ ip community-list expanded c115 permit 119 ^65000:3_0:231_0:116$ ip community-list expanded c115 permit 120 ^65000:3_0:232_0:117$ ip community-list expanded c115 permit 121 ^65000:3_0:233_0:118$ ip community-list expanded c115 permit 122 ^65000:3_0:234_0:119$ ip community-list expanded c115 permit 123 ^65000:3_0:235_0:120$ ip community-list expanded c115 permit 124 ^65000:3_0:236_0:121$ ip community-list expanded c115 permit 125 ^65000:3_0:237_0:122$ ip community-list expanded c115 permit 126 ^65000:3_0:238_0:123$ ip community-list expanded c115 permit 127 ^65000:3_0:239_0:124$ ip community-list expanded c115 permit 128 ^65000:3_0:240_0:125$ ip community-list expanded c115 permit 129 ^65000:3_0:241_0:126$ ip community-list expanded c115 permit 130 ^65000:3_0:242_0:127$ ip community-list expanded c115 permit 131 ^65000:3_0:243_0:128$ ip community-list expanded c115 permit 132 ^65000:3_0:244_0:129$ ip community-list expanded c115 permit 133 ^65000:3_0:245_0:130$ ip community-list expanded c115 permit 134 ^65000:3_0:246_0:131$ ip community-list expanded c115 permit 135 ^65000:3_0:247_0:132$ ip community-list expanded c115 permit 136 ^65000:3_0:248_0:133$ ip community-list expanded c115 permit 137 ^65000:3_0:249_0:134$ ip community-list expanded c115 permit 138 ^65000:3_0:250_0:135$ ip community-list expanded c115 permit 139 ^65000:3_0:251_0:136$ ip community-list expanded c115 permit 140 ^65000:3_0:252_0:137$ ip community-list expanded c115 permit 141 ^65000:3_0:253_0:138$ ip community-list expanded c115 permit 142 ^65000:3_0:254_0:139$ ip community-list expanded c115 permit 143 ^65000:3_0:255_0:140$ ip community-list expanded c115 permit 144 ^65000:3_0:256_0:141$ route-map calculator permit 7107 match community 1_1_114 2_1_115 1_2_113 1_3_112 1_4_111 set community 0:115 route-map calculator permit 7108 match community 2_5_23 1_5_110 1_6_109 1_7_108 1_8_107 set community 0:115 route-map calculator permit 7109 match community 1_9_106 1_10_105 1_11_104 1_12_103 1_13_102 set community 0:115 route-map calculator permit 7110 match community 1_14_101 1_15_100 1_16_99 1_17_98 1_18_97 set community 0:115 route-map calculator permit 7111 match community 1_19_96 1_20_95 1_21_94 1_22_93 1_23_92 set community 0:115 route-map calculator permit 7112 match community 1_24_91 1_25_90 1_26_89 1_27_88 1_28_87 set community 0:115 route-map calculator permit 7113 match community 1_29_86 1_30_85 1_31_84 1_32_83 1_33_82 set community 0:115 route-map calculator permit 7114 match community 1_34_81 1_35_80 1_36_79 1_37_78 1_38_77 set community 0:115 route-map calculator permit 7115 match community 1_39_76 1_40_75 1_41_74 1_42_73 1_43_72 set community 0:115 route-map calculator permit 7116 match community 1_44_71 1_45_70 1_46_69 1_47_68 1_48_67 set community 0:115 route-map calculator permit 7117 match community 1_49_66 1_50_65 1_51_64 1_52_63 1_53_62 set community 0:115 route-map calculator permit 7118 match community 1_54_61 1_55_60 1_56_59 1_57_58 c4_115_1 set community 0:115 route-map calculator permit 7119 match community c3_116_1 c3_117_2 c3_118_3 c3_119_4 c3_120_5 set community 0:115 route-map calculator permit 7120 match community c3_121_6 c3_122_7 c3_123_8 c3_124_9 c3_125_10 set community 0:115 route-map calculator permit 7121 match community c3_126_11 c3_127_12 c3_128_13 c3_129_14 c3_130_15 set community 0:115 route-map calculator permit 7122 match community c3_131_16 c3_132_17 c3_133_18 c3_134_19 c3_135_20 set community 0:115 route-map calculator permit 7123 match community c3_136_21 c3_137_22 c3_138_23 c3_139_24 c3_140_25 set community 0:115 route-map calculator permit 7124 match community c3_141_26 c3_142_27 c3_143_28 c3_144_29 c3_145_30 set community 0:115 route-map calculator permit 7125 match community c3_146_31 c3_147_32 c3_148_33 c3_149_34 c3_150_35 set community 0:115 route-map calculator permit 7126 match community c3_151_36 c3_152_37 c3_153_38 c3_154_39 c3_155_40 set community 0:115 route-map calculator permit 7127 match community c3_156_41 c3_157_42 c3_158_43 c3_159_44 c3_160_45 set community 0:115 route-map calculator permit 7128 match community c3_161_46 c3_162_47 c3_163_48 c3_164_49 c3_165_50 set community 0:115 route-map calculator permit 7129 match community c3_166_51 c3_167_52 c3_168_53 c3_169_54 c3_170_55 set community 0:115 route-map calculator permit 7130 match community c3_171_56 c3_172_57 c3_173_58 c3_174_59 c3_175_60 set community 0:115 route-map calculator permit 7131 match community c3_176_61 c3_177_62 c3_178_63 c3_179_64 c3_180_65 set community 0:115 route-map calculator permit 7132 match community c3_181_66 c3_182_67 c3_183_68 c3_184_69 c3_185_70 set community 0:115 route-map calculator permit 7133 match community c3_186_71 c3_187_72 c3_188_73 c3_189_74 c3_190_75 set community 0:115 route-map calculator permit 7134 match community c3_191_76 c3_192_77 c3_193_78 c3_194_79 c3_195_80 set community 0:115 route-map calculator permit 7135 match community c3_196_81 c3_197_82 c3_198_83 c3_199_84 c3_200_85 set community 0:115 route-map calculator permit 7136 match community c3_201_86 c3_202_87 c3_203_88 c3_204_89 c3_205_90 set community 0:115 route-map calculator permit 7137 match community c3_206_91 c3_207_92 c3_208_93 c3_209_94 c3_210_95 set community 0:115 route-map calculator permit 7138 match community c3_211_96 c3_212_97 c3_213_98 c3_214_99 c3_215_100 set community 0:115 route-map calculator permit 7139 match community c3_216_101 c3_217_102 c3_218_103 c3_219_104 c3_220_105 set community 0:115 route-map calculator permit 7140 match community c3_221_106 c3_222_107 c3_223_108 c3_224_109 c3_225_110 set community 0:115 route-map calculator permit 7141 match community c3_226_111 c3_227_112 c3_228_113 c3_229_114 c4_230_2 set community 0:115 route-map calculator permit 7142 match community c3_230_115 c4_231_2 c3_231_116 c3_232_117 c3_233_118 set community 0:115 route-map calculator permit 7143 match community c3_234_119 c3_235_120 c3_236_121 c3_237_122 c3_238_123 set community 0:115 route-map calculator permit 7144 match community c3_239_124 c3_240_125 c3_241_126 c3_242_127 c3_243_128 set community 0:115 route-map calculator permit 7145 match community c3_244_129 c3_245_130 c3_246_131 c3_247_132 c3_248_133 set community 0:115 route-map calculator permit 7146 match community c3_249_134 c3_250_135 c3_251_136 c3_252_137 c3_253_138 set community 0:115 route-map calculator permit 7147 match community c3_254_139 c3_255_140 c3_256_141 set community 0:115 ip community-list standard 2_193_217 permit 65000:2 0:193 0:217 route-map calculator permit 7148 match community 2_193_217 set community 0:41881 ip community-list standard 2_153_178 permit 65000:2 0:153 0:178 route-map calculator permit 7149 match community 2_153_178 set community 0:27234 ip community-list standard 2_136_148 permit 65000:2 0:136 0:148 route-map calculator permit 7150 match community 2_136_148 set community 0:20128 ip community-list standard 2_74_200 permit 65000:2 0:74 0:200 ip community-list standard 2_80_185 permit 65000:2 0:80 0:185 ip community-list standard 2_100_148 permit 65000:2 0:100 0:148 route-map calculator permit 7151 match community 2_74_200 2_80_185 2_100_148 set community 0:14800 ip community-list standard 2_113_161 permit 65000:2 0:113 0:161 route-map calculator permit 7152 match community 2_113_161 set community 0:18193 ip community-list standard 2_11_151 permit 65000:2 0:11 0:151 route-map calculator permit 7153 match community 2_11_151 set community 0:1661 ip community-list standard 2_63_218 permit 65000:2 0:63 0:218 ip community-list standard 2_109_126 permit 65000:2 0:109 0:126 route-map calculator permit 7154 match community 2_63_218 2_109_126 set community 0:13734 ip community-list standard 2_124_163 permit 65000:2 0:124 0:163 route-map calculator permit 7155 match community 2_124_163 set community 0:20212 ip community-list standard 2_8_137 permit 65000:2 0:8 0:137 route-map calculator permit 7156 match community 2_8_137 set community 0:1096 ip community-list standard 2_199_247 permit 65000:2 0:199 0:247 route-map calculator permit 7157 match community 2_199_247 set community 0:49153 ip community-list standard 2_181_183 permit 65000:2 0:181 0:183 route-map calculator permit 7158 match community 2_181_183 set community 0:33123 ip community-list standard 2_98_157 permit 65000:2 0:98 0:157 route-map calculator permit 7159 match community 2_98_157 set community 0:15386 ip community-list standard 2_31_213 permit 65000:2 0:31 0:213 ip community-list standard 2_71_93 permit 65000:2 0:71 0:93 route-map calculator permit 7160 match community 2_31_213 2_71_93 set community 0:6603 ip community-list standard 2_27_212 permit 65000:2 0:27 0:212 ip community-list standard 2_36_159 permit 65000:2 0:36 0:159 ip community-list standard 2_53_108 permit 65000:2 0:53 0:108 ip community-list standard 2_54_106 permit 65000:2 0:54 0:106 route-map calculator permit 7161 match community 2_27_212 2_36_159 2_53_108 2_54_106 set community 0:5724 ip community-list standard 2_35_79 permit 65000:2 0:35 0:79 route-map calculator permit 7162 match community 2_35_79 set community 0:2765 ip community-list standard 2_13_83 permit 65000:2 0:13 0:83 route-map calculator permit 7163 match community 2_13_83 set community 0:1079 ip community-list standard 2_171_235 permit 65000:2 0:171 0:235 route-map calculator permit 7164 match community 2_171_235 set community 0:40185 ip community-list standard 2_15_211 permit 65000:2 0:15 0:211 route-map calculator permit 7165 match community 2_15_211 set community 0:3165 ip community-list standard 2_146_226 permit 65000:2 0:146 0:226 route-map calculator permit 7166 match community 2_146_226 set community 0:32996 ip community-list standard 2_39_242 permit 65000:2 0:39 0:242 ip community-list standard 2_66_143 permit 65000:2 0:66 0:143 ip community-list standard 2_78_121 permit 65000:2 0:78 0:121 route-map calculator permit 7167 match community 2_39_242 2_66_143 2_78_121 set community 0:9438 ip community-list standard 2_209_231 permit 65000:2 0:209 0:231 route-map calculator permit 7168 match community 2_209_231 set community 0:48279 ip community-list standard 2_37_188 permit 65000:2 0:37 0:188 ip community-list standard 2_47_148 permit 65000:2 0:47 0:148 ip community-list standard 2_74_94 permit 65000:2 0:74 0:94 route-map calculator permit 7169 match community 2_37_188 2_47_148 2_74_94 set community 0:6956 ip community-list standard 2_147_157 permit 65000:2 0:147 0:157 route-map calculator permit 7170 match community 2_147_157 set community 0:23079 ip community-list standard 2_178_241 permit 65000:2 0:178 0:241 route-map calculator permit 7171 match community 2_178_241 set community 0:42898 ip community-list standard 2_49_214 permit 65000:2 0:49 0:214 ip community-list standard 2_98_107 permit 65000:2 0:98 0:107 route-map calculator permit 7172 match community 2_49_214 2_98_107 set community 0:10486 ip community-list standard 2_5_182 permit 65000:2 0:5 0:182 ip community-list standard 2_7_130 permit 65000:2 0:7 0:130 ip community-list standard 2_10_91 permit 65000:2 0:10 0:91 ip community-list standard 2_13_70 permit 65000:2 0:13 0:70 ip community-list standard 2_14_65 permit 65000:2 0:14 0:65 ip community-list standard 2_26_35 permit 65000:2 0:26 0:35 route-map calculator permit 7173 match community 2_5_182 2_7_130 2_10_91 2_13_70 2_14_65 set community 0:910 route-map calculator permit 7174 match community 2_26_35 set community 0:910 ip community-list standard 2_113_241 permit 65000:2 0:113 0:241 route-map calculator permit 7175 match community 2_113_241 set community 0:27233 ip community-list standard 2_156_223 permit 65000:2 0:156 0:223 route-map calculator permit 7176 match community 2_156_223 set community 0:34788 ip community-list standard 1_1_191 permit 65000:1 0:1 0:191 ip community-list standard 2_1_192 permit 65000:2 0:1 0:192 ip community-list standard 2_2_96 permit 65000:2 0:2 0:96 ip community-list standard 1_2_190 permit 65000:1 0:2 0:190 ip community-list standard 2_3_64 permit 65000:2 0:3 0:64 ip community-list standard 1_3_189 permit 65000:1 0:3 0:189 ip community-list standard 2_4_48 permit 65000:2 0:4 0:48 ip community-list standard 1_4_188 permit 65000:1 0:4 0:188 ip community-list standard 1_5_187 permit 65000:1 0:5 0:187 ip community-list standard 2_6_32 permit 65000:2 0:6 0:32 ip community-list standard 1_6_186 permit 65000:1 0:6 0:186 ip community-list standard 1_7_185 permit 65000:1 0:7 0:185 ip community-list standard 2_8_24 permit 65000:2 0:8 0:24 ip community-list standard 1_8_184 permit 65000:1 0:8 0:184 ip community-list standard 1_9_183 permit 65000:1 0:9 0:183 ip community-list standard 1_10_182 permit 65000:1 0:10 0:182 ip community-list standard 1_11_181 permit 65000:1 0:11 0:181 ip community-list standard 2_12_16 permit 65000:2 0:12 0:16 ip community-list standard 1_12_180 permit 65000:1 0:12 0:180 ip community-list standard 1_13_179 permit 65000:1 0:13 0:179 ip community-list standard 1_14_178 permit 65000:1 0:14 0:178 ip community-list standard 1_15_177 permit 65000:1 0:15 0:177 ip community-list standard 1_16_176 permit 65000:1 0:16 0:176 ip community-list standard 1_17_175 permit 65000:1 0:17 0:175 ip community-list standard 1_18_174 permit 65000:1 0:18 0:174 ip community-list standard 1_19_173 permit 65000:1 0:19 0:173 ip community-list standard 1_20_172 permit 65000:1 0:20 0:172 ip community-list standard 1_21_171 permit 65000:1 0:21 0:171 ip community-list standard 1_22_170 permit 65000:1 0:22 0:170 ip community-list standard 1_23_169 permit 65000:1 0:23 0:169 ip community-list standard 1_24_168 permit 65000:1 0:24 0:168 ip community-list standard 1_25_167 permit 65000:1 0:25 0:167 ip community-list standard 1_26_166 permit 65000:1 0:26 0:166 ip community-list standard 1_27_165 permit 65000:1 0:27 0:165 ip community-list standard 1_28_164 permit 65000:1 0:28 0:164 ip community-list standard 1_29_163 permit 65000:1 0:29 0:163 ip community-list standard 1_30_162 permit 65000:1 0:30 0:162 ip community-list standard 1_31_161 permit 65000:1 0:31 0:161 ip community-list standard 1_32_160 permit 65000:1 0:32 0:160 ip community-list standard 1_33_159 permit 65000:1 0:33 0:159 ip community-list standard 1_34_158 permit 65000:1 0:34 0:158 ip community-list standard 1_35_157 permit 65000:1 0:35 0:157 ip community-list standard 1_36_156 permit 65000:1 0:36 0:156 ip community-list standard 1_37_155 permit 65000:1 0:37 0:155 ip community-list standard 1_38_154 permit 65000:1 0:38 0:154 ip community-list standard 1_39_153 permit 65000:1 0:39 0:153 ip community-list standard 1_40_152 permit 65000:1 0:40 0:152 ip community-list standard 1_41_151 permit 65000:1 0:41 0:151 ip community-list standard 1_42_150 permit 65000:1 0:42 0:150 ip community-list standard 1_43_149 permit 65000:1 0:43 0:149 ip community-list standard 1_44_148 permit 65000:1 0:44 0:148 ip community-list standard 1_45_147 permit 65000:1 0:45 0:147 ip community-list standard 1_46_146 permit 65000:1 0:46 0:146 ip community-list standard 1_47_145 permit 65000:1 0:47 0:145 ip community-list standard 1_48_144 permit 65000:1 0:48 0:144 ip community-list standard 1_49_143 permit 65000:1 0:49 0:143 ip community-list standard 1_50_142 permit 65000:1 0:50 0:142 ip community-list standard 1_51_141 permit 65000:1 0:51 0:141 ip community-list standard 1_52_140 permit 65000:1 0:52 0:140 ip community-list standard 1_53_139 permit 65000:1 0:53 0:139 ip community-list standard 1_54_138 permit 65000:1 0:54 0:138 ip community-list standard 1_55_137 permit 65000:1 0:55 0:137 ip community-list standard 1_56_136 permit 65000:1 0:56 0:136 ip community-list standard 1_57_135 permit 65000:1 0:57 0:135 ip community-list standard 1_58_134 permit 65000:1 0:58 0:134 ip community-list standard 1_59_133 permit 65000:1 0:59 0:133 ip community-list standard 1_60_132 permit 65000:1 0:60 0:132 ip community-list standard 1_61_131 permit 65000:1 0:61 0:131 ip community-list standard 1_62_130 permit 65000:1 0:62 0:130 ip community-list standard 1_63_129 permit 65000:1 0:63 0:129 ip community-list standard 1_64_128 permit 65000:1 0:64 0:128 ip community-list standard 1_65_127 permit 65000:1 0:65 0:127 ip community-list standard 1_66_126 permit 65000:1 0:66 0:126 ip community-list standard 1_67_125 permit 65000:1 0:67 0:125 ip community-list standard 1_68_124 permit 65000:1 0:68 0:124 ip community-list standard 1_69_123 permit 65000:1 0:69 0:123 ip community-list standard 1_70_122 permit 65000:1 0:70 0:122 ip community-list standard 1_71_121 permit 65000:1 0:71 0:121 ip community-list standard 1_72_120 permit 65000:1 0:72 0:120 ip community-list standard 1_73_119 permit 65000:1 0:73 0:119 ip community-list standard 1_74_118 permit 65000:1 0:74 0:118 ip community-list standard 1_75_117 permit 65000:1 0:75 0:117 ip community-list standard 1_76_116 permit 65000:1 0:76 0:116 ip community-list standard 1_77_115 permit 65000:1 0:77 0:115 ip community-list standard 1_78_114 permit 65000:1 0:78 0:114 ip community-list standard 1_79_113 permit 65000:1 0:79 0:113 ip community-list standard 1_80_112 permit 65000:1 0:80 0:112 ip community-list standard 1_81_111 permit 65000:1 0:81 0:111 ip community-list standard 1_82_110 permit 65000:1 0:82 0:110 ip community-list standard 1_83_109 permit 65000:1 0:83 0:109 ip community-list standard 1_84_108 permit 65000:1 0:84 0:108 ip community-list standard 1_85_107 permit 65000:1 0:85 0:107 ip community-list standard 1_86_106 permit 65000:1 0:86 0:106 ip community-list standard 1_87_105 permit 65000:1 0:87 0:105 ip community-list standard 1_88_104 permit 65000:1 0:88 0:104 ip community-list standard 1_89_103 permit 65000:1 0:89 0:103 ip community-list standard 1_90_102 permit 65000:1 0:90 0:102 ip community-list standard 1_91_101 permit 65000:1 0:91 0:101 ip community-list standard 1_92_100 permit 65000:1 0:92 0:100 ip community-list standard 1_93_99 permit 65000:1 0:93 0:99 ip community-list standard 1_94_98 permit 65000:1 0:94 0:98 ip community-list standard 1_95_97 permit 65000:1 0:95 0:97 ip community-list standard 1_96_96 permit 65000:1 0:96 0:96 ip community-list expanded c192 permit 1 ^65000:4_0:192_0:1$ ip community-list expanded c192 permit 2 ^65000:3_0:193_0:1$ ip community-list expanded c192 permit 3 ^65000:3_0:194_0:2$ ip community-list expanded c192 permit 4 ^65000:3_0:195_0:3$ ip community-list expanded c192 permit 5 ^65000:3_0:196_0:4$ ip community-list expanded c192 permit 6 ^65000:3_0:197_0:5$ ip community-list expanded c192 permit 7 ^65000:3_0:198_0:6$ ip community-list expanded c192 permit 8 ^65000:3_0:199_0:7$ ip community-list expanded c192 permit 9 ^65000:3_0:200_0:8$ ip community-list expanded c192 permit 10 ^65000:3_0:201_0:9$ ip community-list expanded c192 permit 11 ^65000:3_0:202_0:10$ ip community-list expanded c192 permit 12 ^65000:3_0:203_0:11$ ip community-list expanded c192 permit 13 ^65000:3_0:204_0:12$ ip community-list expanded c192 permit 14 ^65000:3_0:205_0:13$ ip community-list expanded c192 permit 15 ^65000:3_0:206_0:14$ ip community-list expanded c192 permit 16 ^65000:3_0:207_0:15$ ip community-list expanded c192 permit 17 ^65000:3_0:208_0:16$ ip community-list expanded c192 permit 18 ^65000:3_0:209_0:17$ ip community-list expanded c192 permit 19 ^65000:3_0:210_0:18$ ip community-list expanded c192 permit 20 ^65000:3_0:211_0:19$ ip community-list expanded c192 permit 21 ^65000:3_0:212_0:20$ ip community-list expanded c192 permit 22 ^65000:3_0:213_0:21$ ip community-list expanded c192 permit 23 ^65000:3_0:214_0:22$ ip community-list expanded c192 permit 24 ^65000:3_0:215_0:23$ ip community-list expanded c192 permit 25 ^65000:3_0:216_0:24$ ip community-list expanded c192 permit 26 ^65000:3_0:217_0:25$ ip community-list expanded c192 permit 27 ^65000:3_0:218_0:26$ ip community-list expanded c192 permit 28 ^65000:3_0:219_0:27$ ip community-list expanded c192 permit 29 ^65000:3_0:220_0:28$ ip community-list expanded c192 permit 30 ^65000:3_0:221_0:29$ ip community-list expanded c192 permit 31 ^65000:3_0:222_0:30$ ip community-list expanded c192 permit 32 ^65000:3_0:223_0:31$ ip community-list expanded c192 permit 33 ^65000:3_0:224_0:32$ ip community-list expanded c192 permit 34 ^65000:3_0:225_0:33$ ip community-list expanded c192 permit 35 ^65000:3_0:226_0:34$ ip community-list expanded c192 permit 36 ^65000:3_0:227_0:35$ ip community-list expanded c192 permit 37 ^65000:3_0:228_0:36$ ip community-list expanded c192 permit 38 ^65000:3_0:229_0:37$ ip community-list expanded c192 permit 39 ^65000:3_0:230_0:38$ ip community-list expanded c192 permit 40 ^65000:3_0:231_0:39$ ip community-list expanded c192 permit 41 ^65000:3_0:232_0:40$ ip community-list expanded c192 permit 42 ^65000:3_0:233_0:41$ ip community-list expanded c192 permit 43 ^65000:3_0:234_0:42$ ip community-list expanded c192 permit 44 ^65000:3_0:235_0:43$ ip community-list expanded c192 permit 45 ^65000:3_0:236_0:44$ ip community-list expanded c192 permit 46 ^65000:3_0:237_0:45$ ip community-list expanded c192 permit 47 ^65000:3_0:238_0:46$ ip community-list expanded c192 permit 48 ^65000:3_0:239_0:47$ ip community-list expanded c192 permit 49 ^65000:3_0:240_0:48$ ip community-list expanded c192 permit 50 ^65000:3_0:241_0:49$ ip community-list expanded c192 permit 51 ^65000:3_0:242_0:50$ ip community-list expanded c192 permit 52 ^65000:3_0:243_0:51$ ip community-list expanded c192 permit 53 ^65000:3_0:244_0:52$ ip community-list expanded c192 permit 54 ^65000:3_0:245_0:53$ ip community-list expanded c192 permit 55 ^65000:3_0:246_0:54$ ip community-list expanded c192 permit 56 ^65000:3_0:247_0:55$ ip community-list expanded c192 permit 57 ^65000:3_0:248_0:56$ ip community-list expanded c192 permit 58 ^65000:3_0:249_0:57$ ip community-list expanded c192 permit 59 ^65000:3_0:250_0:58$ ip community-list expanded c192 permit 60 ^65000:3_0:251_0:59$ ip community-list expanded c192 permit 61 ^65000:3_0:252_0:60$ ip community-list expanded c192 permit 62 ^65000:3_0:253_0:61$ ip community-list expanded c192 permit 63 ^65000:3_0:254_0:62$ ip community-list expanded c192 permit 64 ^65000:3_0:255_0:63$ ip community-list expanded c192 permit 65 ^65000:3_0:256_0:64$ route-map calculator permit 7177 match community 1_1_191 2_1_192 2_2_96 1_2_190 2_3_64 set community 0:192 route-map calculator permit 7178 match community 1_3_189 2_4_48 1_4_188 1_5_187 2_6_32 set community 0:192 route-map calculator permit 7179 match community 1_6_186 1_7_185 2_8_24 1_8_184 1_9_183 set community 0:192 route-map calculator permit 7180 match community 1_10_182 1_11_181 2_12_16 1_12_180 1_13_179 set community 0:192 route-map calculator permit 7181 match community 1_14_178 1_15_177 1_16_176 1_17_175 1_18_174 set community 0:192 route-map calculator permit 7182 match community 1_19_173 1_20_172 1_21_171 1_22_170 1_23_169 set community 0:192 route-map calculator permit 7183 match community 1_24_168 1_25_167 1_26_166 1_27_165 1_28_164 set community 0:192 route-map calculator permit 7184 match community 1_29_163 1_30_162 1_31_161 1_32_160 1_33_159 set community 0:192 route-map calculator permit 7185 match community 1_34_158 1_35_157 1_36_156 1_37_155 1_38_154 set community 0:192 route-map calculator permit 7186 match community 1_39_153 1_40_152 1_41_151 1_42_150 1_43_149 set community 0:192 route-map calculator permit 7187 match community 1_44_148 1_45_147 1_46_146 1_47_145 1_48_144 set community 0:192 route-map calculator permit 7188 match community 1_49_143 1_50_142 1_51_141 1_52_140 1_53_139 set community 0:192 route-map calculator permit 7189 match community 1_54_138 1_55_137 1_56_136 1_57_135 1_58_134 set community 0:192 route-map calculator permit 7190 match community 1_59_133 1_60_132 1_61_131 1_62_130 1_63_129 set community 0:192 route-map calculator permit 7191 match community 1_64_128 1_65_127 1_66_126 1_67_125 1_68_124 set community 0:192 route-map calculator permit 7192 match community 1_69_123 1_70_122 1_71_121 1_72_120 1_73_119 set community 0:192 route-map calculator permit 7193 match community 1_74_118 1_75_117 1_76_116 1_77_115 1_78_114 set community 0:192 route-map calculator permit 7194 match community 1_79_113 1_80_112 1_81_111 1_82_110 1_83_109 set community 0:192 route-map calculator permit 7195 match community 1_84_108 1_85_107 1_86_106 1_87_105 1_88_104 set community 0:192 route-map calculator permit 7196 match community 1_89_103 1_90_102 1_91_101 1_92_100 1_93_99 set community 0:192 route-map calculator permit 7197 match community 1_94_98 1_95_97 1_96_96 c4_192_1 c3_193_1 set community 0:192 route-map calculator permit 7198 match community c3_194_2 c3_195_3 c3_196_4 c3_197_5 c3_198_6 set community 0:192 route-map calculator permit 7199 match community c3_199_7 c3_200_8 c3_201_9 c3_202_10 c3_203_11 set community 0:192 route-map calculator permit 7200 match community c3_204_12 c3_205_13 c3_206_14 c3_207_15 c3_208_16 set community 0:192 route-map calculator permit 7201 match community c3_209_17 c3_210_18 c3_211_19 c3_212_20 c3_213_21 set community 0:192 route-map calculator permit 7202 match community c3_214_22 c3_215_23 c3_216_24 c3_217_25 c3_218_26 set community 0:192 route-map calculator permit 7203 match community c3_219_27 c3_220_28 c3_221_29 c3_222_30 c3_223_31 set community 0:192 route-map calculator permit 7204 match community c3_224_32 c3_225_33 c3_226_34 c3_227_35 c3_228_36 set community 0:192 route-map calculator permit 7205 match community c3_229_37 c3_230_38 c3_231_39 c3_232_40 c3_233_41 set community 0:192 route-map calculator permit 7206 match community c3_234_42 c3_235_43 c3_236_44 c3_237_45 c3_238_46 set community 0:192 route-map calculator permit 7207 match community c3_239_47 c3_240_48 c3_241_49 c3_242_50 c3_243_51 set community 0:192 route-map calculator permit 7208 match community c3_244_52 c3_245_53 c3_246_54 c3_247_55 c3_248_56 set community 0:192 route-map calculator permit 7209 match community c3_249_57 c3_250_58 c3_251_59 c3_252_60 c3_253_61 set community 0:192 route-map calculator permit 7210 match community c3_254_62 c3_255_63 c3_256_64 set community 0:192 ip community-list standard 2_142_199 permit 65000:2 0:142 0:199 route-map calculator permit 7211 match community 2_142_199 set community 0:28258 ip community-list standard 2_21_149 permit 65000:2 0:21 0:149 route-map calculator permit 7212 match community 2_21_149 set community 0:3129 ip community-list standard 2_95_201 permit 65000:2 0:95 0:201 route-map calculator permit 7213 match community 2_95_201 set community 0:19095 ip community-list standard 2_91_245 permit 65000:2 0:91 0:245 route-map calculator permit 7214 match community 2_91_245 set community 0:22295 ip community-list standard 2_88_244 permit 65000:2 0:88 0:244 ip community-list standard 2_122_176 permit 65000:2 0:122 0:176 route-map calculator permit 7215 match community 2_88_244 2_122_176 set community 0:21472 ip community-list standard 2_95_226 permit 65000:2 0:95 0:226 ip community-list standard 2_113_190 permit 65000:2 0:113 0:190 route-map calculator permit 7216 match community 2_95_226 2_113_190 set community 0:21470 ip community-list standard 2_118_179 permit 65000:2 0:118 0:179 route-map calculator permit 7217 match community 2_118_179 set community 0:21122 ip community-list standard 2_134_140 permit 65000:2 0:134 0:140 route-map calculator permit 7218 match community 2_134_140 set community 0:18760 ip community-list standard 2_148_218 permit 65000:2 0:148 0:218 route-map calculator permit 7219 match community 2_148_218 set community 0:32264 ip community-list standard 2_118_238 permit 65000:2 0:118 0:238 ip community-list standard 2_119_236 permit 65000:2 0:119 0:236 route-map calculator permit 7220 match community 2_118_238 2_119_236 set community 0:28084 ip community-list standard 2_123_246 permit 65000:2 0:123 0:246 route-map calculator permit 7221 match community 2_123_246 set community 0:30258 ip community-list standard 2_65_237 permit 65000:2 0:65 0:237 ip community-list standard 2_79_195 permit 65000:2 0:79 0:195 route-map calculator permit 7222 match community 2_65_237 2_79_195 set community 0:15405 ip community-list standard 2_131_255 permit 65000:2 0:131 0:255 route-map calculator permit 7223 match community 2_131_255 set community 0:33405 ip community-list standard 2_78_232 permit 65000:2 0:78 0:232 ip community-list standard 2_87_208 permit 65000:2 0:87 0:208 ip community-list standard 2_104_174 permit 65000:2 0:104 0:174 ip community-list standard 2_116_156 permit 65000:2 0:116 0:156 route-map calculator permit 7224 match community 2_78_232 2_87_208 2_104_174 2_116_156 set community 0:18096 ip community-list standard 2_53_101 permit 65000:2 0:53 0:101 route-map calculator permit 7225 match community 2_53_101 set community 0:5353 ip community-list standard 2_33_141 permit 65000:2 0:33 0:141 ip community-list standard 2_47_99 permit 65000:2 0:47 0:99 route-map calculator permit 7226 match community 2_33_141 2_47_99 set community 0:4653 ip community-list standard 2_167_234 permit 65000:2 0:167 0:234 route-map calculator permit 7227 match community 2_167_234 set community 0:39078 ip community-list standard 2_150_247 permit 65000:2 0:150 0:247 ip community-list standard 2_190_195 permit 65000:2 0:190 0:195 route-map calculator permit 7228 match community 2_150_247 2_190_195 set community 0:37050 ip community-list standard 2_242_242 permit 65000:2 0:242 0:242 route-map calculator permit 7229 match community 2_242_242 set community 0:58564 ip community-list standard 2_169_210 permit 65000:2 0:169 0:210 ip community-list standard 2_182_195 permit 65000:2 0:182 0:195 route-map calculator permit 7230 match community 2_169_210 2_182_195 set community 0:35490 ip community-list standard 2_17_255 permit 65000:2 0:17 0:255 ip community-list standard 2_51_85 permit 65000:2 0:51 0:85 route-map calculator permit 7231 match community 2_17_255 2_51_85 set community 0:4335 ip community-list standard 2_115_247 permit 65000:2 0:115 0:247 route-map calculator permit 7232 match community 2_115_247 set community 0:28405 ip community-list standard 2_65_226 permit 65000:2 0:65 0:226 ip community-list standard 2_113_130 permit 65000:2 0:113 0:130 route-map calculator permit 7233 match community 2_65_226 2_113_130 set community 0:14690 ip community-list standard 2_171_256 permit 65000:2 0:171 0:256 ip community-list standard 2_192_228 permit 65000:2 0:192 0:228 route-map calculator permit 7234 match community 2_171_256 2_192_228 set community 0:43776 ip community-list standard 2_13_242 permit 65000:2 0:13 0:242 ip community-list standard 2_22_143 permit 65000:2 0:22 0:143 ip community-list standard 2_26_121 permit 65000:2 0:26 0:121 route-map calculator permit 7235 match community 2_13_242 2_22_143 2_26_121 set community 0:3146 ip community-list standard 2_53_207 permit 65000:2 0:53 0:207 ip community-list standard 2_69_159 permit 65000:2 0:69 0:159 route-map calculator permit 7236 match community 2_53_207 2_69_159 set community 0:10971 ip community-list standard 2_34_157 permit 65000:2 0:34 0:157 route-map calculator permit 7237 match community 2_34_157 set community 0:5338 ip community-list standard 2_245_250 permit 65000:2 0:245 0:250 route-map calculator permit 7238 match community 2_245_250 set community 0:61250 ip community-list standard 2_81_243 permit 65000:2 0:81 0:243 route-map calculator permit 7239 match community 2_81_243 set community 0:19683 ip community-list standard 2_65_243 permit 65000:2 0:65 0:243 ip community-list standard 2_81_195 permit 65000:2 0:81 0:195 ip community-list standard 2_117_135 permit 65000:2 0:117 0:135 route-map calculator permit 7240 match community 2_65_243 2_81_195 2_117_135 set community 0:15795 ip community-list standard 2_220_243 permit 65000:2 0:220 0:243 route-map calculator permit 7241 match community 2_220_243 set community 0:53460 ip community-list standard 2_82_238 permit 65000:2 0:82 0:238 ip community-list standard 2_119_164 permit 65000:2 0:119 0:164 route-map calculator permit 7242 match community 2_82_238 2_119_164 set community 0:19516 ip community-list standard 2_73_211 permit 65000:2 0:73 0:211 route-map calculator permit 7243 match community 2_73_211 set community 0:15403 ip community-list standard 2_74_209 permit 65000:2 0:74 0:209 route-map calculator permit 7244 match community 2_74_209 set community 0:15466 ip community-list standard 2_91_163 permit 65000:2 0:91 0:163 route-map calculator permit 7245 match community 2_91_163 set community 0:14833 ip community-list standard 2_59_211 permit 65000:2 0:59 0:211 route-map calculator permit 7246 match community 2_59_211 set community 0:12449 ip community-list standard 2_153_214 permit 65000:2 0:153 0:214 route-map calculator permit 7247 match community 2_153_214 set community 0:32742 ip community-list standard 2_154_194 permit 65000:2 0:154 0:194 route-map calculator permit 7248 match community 2_154_194 set community 0:29876 ip community-list standard 2_74_237 permit 65000:2 0:74 0:237 ip community-list standard 2_79_222 permit 65000:2 0:79 0:222 ip community-list standard 2_111_158 permit 65000:2 0:111 0:158 route-map calculator permit 7249 match community 2_74_237 2_79_222 2_111_158 set community 0:17538 ip community-list standard 2_23_156 permit 65000:2 0:23 0:156 ip community-list standard 2_26_138 permit 65000:2 0:26 0:138 ip community-list standard 2_39_92 permit 65000:2 0:39 0:92 ip community-list standard 2_46_78 permit 65000:2 0:46 0:78 ip community-list standard 2_52_69 permit 65000:2 0:52 0:69 route-map calculator permit 7250 match community 2_23_156 2_26_138 2_39_92 2_46_78 2_52_69 set community 0:3588 ip community-list standard 2_27_113 permit 65000:2 0:27 0:113 route-map calculator permit 7251 match community 2_27_113 set community 0:3051 ip community-list standard 2_100_231 permit 65000:2 0:100 0:231 ip community-list standard 2_105_220 permit 65000:2 0:105 0:220 ip community-list standard 2_110_210 permit 65000:2 0:110 0:210 ip community-list standard 2_132_175 permit 65000:2 0:132 0:175 ip community-list standard 2_140_165 permit 65000:2 0:140 0:165 ip community-list standard 2_150_154 permit 65000:2 0:150 0:154 route-map calculator permit 7252 match community 2_100_231 2_105_220 2_110_210 2_132_175 2_140_165 set community 0:23100 route-map calculator permit 7253 match community 2_150_154 set community 0:23100 ip community-list standard 2_3_163 permit 65000:2 0:3 0:163 ip community-list standard 1_233_256 permit 65000:1 0:233 0:256 ip community-list standard 1_234_255 permit 65000:1 0:234 0:255 ip community-list standard 1_235_254 permit 65000:1 0:235 0:254 ip community-list standard 1_236_253 permit 65000:1 0:236 0:253 ip community-list standard 1_237_252 permit 65000:1 0:237 0:252 ip community-list standard 1_238_251 permit 65000:1 0:238 0:251 ip community-list standard 1_239_250 permit 65000:1 0:239 0:250 ip community-list standard 1_240_249 permit 65000:1 0:240 0:249 ip community-list standard 1_241_248 permit 65000:1 0:241 0:248 ip community-list standard 1_242_247 permit 65000:1 0:242 0:247 ip community-list standard 1_243_246 permit 65000:1 0:243 0:246 ip community-list standard 1_244_245 permit 65000:1 0:244 0:245 route-map calculator permit 7254 match community 2_3_163 1_233_256 1_234_255 1_235_254 1_236_253 set community 0:489 route-map calculator permit 7255 match community 1_237_252 1_238_251 1_239_250 1_240_249 1_241_248 set community 0:489 route-map calculator permit 7256 match community 1_242_247 1_243_246 1_244_245 set community 0:489 ip community-list standard 2_192_254 permit 65000:2 0:192 0:254 route-map calculator permit 7257 match community 2_192_254 set community 0:48768 ip community-list standard 2_59_83 permit 65000:2 0:59 0:83 route-map calculator permit 7258 match community 2_59_83 set community 0:4897 ip community-list standard 2_41_159 permit 65000:2 0:41 0:159 ip community-list standard 2_53_123 permit 65000:2 0:53 0:123 route-map calculator permit 7259 match community 2_41_159 2_53_123 set community 0:6519 ip community-list standard 2_43_159 permit 65000:2 0:43 0:159 ip community-list standard 2_53_129 permit 65000:2 0:53 0:129 route-map calculator permit 7260 match community 2_43_159 2_53_129 set community 0:6837 ip community-list standard 2_170_199 permit 65000:2 0:170 0:199 route-map calculator permit 7261 match community 2_170_199 set community 0:33830 ip community-list standard 2_41_188 permit 65000:2 0:41 0:188 ip community-list standard 2_47_164 permit 65000:2 0:47 0:164 ip community-list standard 2_82_94 permit 65000:2 0:82 0:94 route-map calculator permit 7262 match community 2_41_188 2_47_164 2_82_94 set community 0:7708 ip community-list standard 2_157_190 permit 65000:2 0:157 0:190 route-map calculator permit 7263 match community 2_157_190 set community 0:29830 ip community-list standard 2_63_226 permit 65000:2 0:63 0:226 ip community-list standard 2_113_126 permit 65000:2 0:113 0:126 route-map calculator permit 7264 match community 2_63_226 2_113_126 set community 0:14238 ip community-list standard 2_139_242 permit 65000:2 0:139 0:242 route-map calculator permit 7265 match community 2_139_242 set community 0:33638 ip community-list standard 2_27_244 permit 65000:2 0:27 0:244 ip community-list standard 2_36_183 permit 65000:2 0:36 0:183 ip community-list standard 2_54_122 permit 65000:2 0:54 0:122 ip community-list standard 2_61_108 permit 65000:2 0:61 0:108 route-map calculator permit 7266 match community 2_27_244 2_36_183 2_54_122 2_61_108 set community 0:6588 ip community-list standard 2_199_256 permit 65000:2 0:199 0:256 route-map calculator permit 7267 match community 2_199_256 set community 0:50944 ip community-list standard 2_110_163 permit 65000:2 0:110 0:163 route-map calculator permit 7268 match community 2_110_163 set community 0:17930 ip community-list standard 2_35_221 permit 65000:2 0:35 0:221 ip community-list standard 2_65_119 permit 65000:2 0:65 0:119 ip community-list standard 2_85_91 permit 65000:2 0:85 0:91 route-map calculator permit 7269 match community 2_35_221 2_65_119 2_85_91 set community 0:7735 ip community-list standard 2_42_213 permit 65000:2 0:42 0:213 ip community-list standard 2_63_142 permit 65000:2 0:63 0:142 ip community-list standard 2_71_126 permit 65000:2 0:71 0:126 route-map calculator permit 7270 match community 2_42_213 2_63_142 2_71_126 set community 0:8946 ip community-list standard 2_33_211 permit 65000:2 0:33 0:211 route-map calculator permit 7271 match community 2_33_211 set community 0:6963 ip community-list standard 2_11_216 permit 65000:2 0:11 0:216 ip community-list standard 2_12_198 permit 65000:2 0:12 0:198 ip community-list standard 2_18_132 permit 65000:2 0:18 0:132 ip community-list standard 2_22_108 permit 65000:2 0:22 0:108 ip community-list standard 2_24_99 permit 65000:2 0:24 0:99 ip community-list standard 2_27_88 permit 65000:2 0:27 0:88 ip community-list standard 2_33_72 permit 65000:2 0:33 0:72 ip community-list standard 2_36_66 permit 65000:2 0:36 0:66 ip community-list standard 2_44_54 permit 65000:2 0:44 0:54 route-map calculator permit 7272 match community 2_11_216 2_12_198 2_18_132 2_22_108 2_24_99 set community 0:2376 route-map calculator permit 7273 match community 2_27_88 2_33_72 2_36_66 2_44_54 set community 0:2376 ip community-list standard 2_212_253 permit 65000:2 0:212 0:253 route-map calculator permit 7274 match community 2_212_253 set community 0:53636 ip community-list standard 2_222_226 permit 65000:2 0:222 0:226 route-map calculator permit 7275 match community 2_222_226 set community 0:50172 ip community-list standard 2_7_220 permit 65000:2 0:7 0:220 ip community-list standard 2_10_154 permit 65000:2 0:10 0:154 ip community-list standard 2_11_140 permit 65000:2 0:11 0:140 ip community-list standard 2_14_110 permit 65000:2 0:14 0:110 ip community-list standard 2_20_77 permit 65000:2 0:20 0:77 ip community-list standard 2_22_70 permit 65000:2 0:22 0:70 ip community-list standard 2_28_55 permit 65000:2 0:28 0:55 ip community-list standard 2_35_44 permit 65000:2 0:35 0:44 route-map calculator permit 7276 match community 2_7_220 2_10_154 2_11_140 2_14_110 2_20_77 set community 0:1540 route-map calculator permit 7277 match community 2_22_70 2_28_55 2_35_44 set community 0:1540 ip community-list standard 2_125_185 permit 65000:2 0:125 0:185 route-map calculator permit 7278 match community 2_125_185 set community 0:23125 ip community-list standard 2_105_211 permit 65000:2 0:105 0:211 route-map calculator permit 7279 match community 2_105_211 set community 0:22155 ip community-list standard 2_178_255 permit 65000:2 0:178 0:255 route-map calculator permit 7280 match community 2_178_255 set community 0:45390 ip community-list standard 2_96_173 permit 65000:2 0:96 0:173 route-map calculator permit 7281 match community 2_96_173 set community 0:16608 ip community-list standard 2_24_151 permit 65000:2 0:24 0:151 route-map calculator permit 7282 match community 2_24_151 set community 0:3624 ip community-list standard 2_173_216 permit 65000:2 0:173 0:216 route-map calculator permit 7283 match community 2_173_216 set community 0:37368 ip community-list standard 2_71_158 permit 65000:2 0:71 0:158 ip community-list standard 2_79_142 permit 65000:2 0:79 0:142 route-map calculator permit 7284 match community 2_71_158 2_79_142 set community 0:11218 ip community-list standard 1_1_156 permit 65000:1 0:1 0:156 ip community-list standard 2_1_157 permit 65000:2 0:1 0:157 ip community-list standard 1_2_155 permit 65000:1 0:2 0:155 ip community-list standard 1_3_154 permit 65000:1 0:3 0:154 ip community-list standard 1_4_153 permit 65000:1 0:4 0:153 ip community-list standard 1_5_152 permit 65000:1 0:5 0:152 ip community-list standard 1_6_151 permit 65000:1 0:6 0:151 ip community-list standard 1_7_150 permit 65000:1 0:7 0:150 ip community-list standard 1_8_149 permit 65000:1 0:8 0:149 ip community-list standard 1_9_148 permit 65000:1 0:9 0:148 ip community-list standard 1_10_147 permit 65000:1 0:10 0:147 ip community-list standard 1_11_146 permit 65000:1 0:11 0:146 ip community-list standard 1_12_145 permit 65000:1 0:12 0:145 ip community-list standard 1_13_144 permit 65000:1 0:13 0:144 ip community-list standard 1_14_143 permit 65000:1 0:14 0:143 ip community-list standard 1_15_142 permit 65000:1 0:15 0:142 ip community-list standard 1_16_141 permit 65000:1 0:16 0:141 ip community-list standard 1_17_140 permit 65000:1 0:17 0:140 ip community-list standard 1_18_139 permit 65000:1 0:18 0:139 ip community-list standard 1_19_138 permit 65000:1 0:19 0:138 ip community-list standard 1_20_137 permit 65000:1 0:20 0:137 ip community-list standard 1_21_136 permit 65000:1 0:21 0:136 ip community-list standard 1_22_135 permit 65000:1 0:22 0:135 ip community-list standard 1_23_134 permit 65000:1 0:23 0:134 ip community-list standard 1_24_133 permit 65000:1 0:24 0:133 ip community-list standard 1_25_132 permit 65000:1 0:25 0:132 ip community-list standard 1_26_131 permit 65000:1 0:26 0:131 ip community-list standard 1_27_130 permit 65000:1 0:27 0:130 ip community-list standard 1_28_129 permit 65000:1 0:28 0:129 ip community-list standard 1_29_128 permit 65000:1 0:29 0:128 ip community-list standard 1_30_127 permit 65000:1 0:30 0:127 ip community-list standard 1_31_126 permit 65000:1 0:31 0:126 ip community-list standard 1_32_125 permit 65000:1 0:32 0:125 ip community-list standard 1_33_124 permit 65000:1 0:33 0:124 ip community-list standard 1_34_123 permit 65000:1 0:34 0:123 ip community-list standard 1_35_122 permit 65000:1 0:35 0:122 ip community-list standard 1_36_121 permit 65000:1 0:36 0:121 ip community-list standard 1_37_120 permit 65000:1 0:37 0:120 ip community-list standard 1_38_119 permit 65000:1 0:38 0:119 ip community-list standard 1_39_118 permit 65000:1 0:39 0:118 ip community-list standard 1_40_117 permit 65000:1 0:40 0:117 ip community-list standard 1_41_116 permit 65000:1 0:41 0:116 ip community-list standard 1_42_115 permit 65000:1 0:42 0:115 ip community-list standard 1_43_114 permit 65000:1 0:43 0:114 ip community-list standard 1_44_113 permit 65000:1 0:44 0:113 ip community-list standard 1_45_112 permit 65000:1 0:45 0:112 ip community-list standard 1_46_111 permit 65000:1 0:46 0:111 ip community-list standard 1_47_110 permit 65000:1 0:47 0:110 ip community-list standard 1_48_109 permit 65000:1 0:48 0:109 ip community-list standard 1_49_108 permit 65000:1 0:49 0:108 ip community-list standard 1_50_107 permit 65000:1 0:50 0:107 ip community-list standard 1_51_106 permit 65000:1 0:51 0:106 ip community-list standard 1_52_105 permit 65000:1 0:52 0:105 ip community-list standard 1_53_104 permit 65000:1 0:53 0:104 ip community-list standard 1_54_103 permit 65000:1 0:54 0:103 ip community-list standard 1_55_102 permit 65000:1 0:55 0:102 ip community-list standard 1_56_101 permit 65000:1 0:56 0:101 ip community-list standard 1_57_100 permit 65000:1 0:57 0:100 ip community-list standard 1_58_99 permit 65000:1 0:58 0:99 ip community-list standard 1_59_98 permit 65000:1 0:59 0:98 ip community-list standard 1_60_97 permit 65000:1 0:60 0:97 ip community-list standard 1_61_96 permit 65000:1 0:61 0:96 ip community-list standard 1_62_95 permit 65000:1 0:62 0:95 ip community-list standard 1_63_94 permit 65000:1 0:63 0:94 ip community-list standard 1_64_93 permit 65000:1 0:64 0:93 ip community-list standard 1_65_92 permit 65000:1 0:65 0:92 ip community-list standard 1_66_91 permit 65000:1 0:66 0:91 ip community-list standard 1_67_90 permit 65000:1 0:67 0:90 ip community-list standard 1_68_89 permit 65000:1 0:68 0:89 ip community-list standard 1_69_88 permit 65000:1 0:69 0:88 ip community-list standard 1_70_87 permit 65000:1 0:70 0:87 ip community-list standard 1_71_86 permit 65000:1 0:71 0:86 ip community-list standard 1_72_85 permit 65000:1 0:72 0:85 ip community-list standard 1_73_84 permit 65000:1 0:73 0:84 ip community-list standard 1_74_83 permit 65000:1 0:74 0:83 ip community-list standard 1_75_82 permit 65000:1 0:75 0:82 ip community-list standard 1_76_81 permit 65000:1 0:76 0:81 ip community-list standard 1_77_80 permit 65000:1 0:77 0:80 ip community-list standard 1_78_79 permit 65000:1 0:78 0:79 ip community-list expanded c157 permit 1 ^65000:4_0:157_0:1$ ip community-list expanded c157 permit 2 ^65000:3_0:158_0:1$ ip community-list expanded c157 permit 3 ^65000:3_0:159_0:2$ ip community-list expanded c157 permit 4 ^65000:3_0:160_0:3$ ip community-list expanded c157 permit 5 ^65000:3_0:161_0:4$ ip community-list expanded c157 permit 6 ^65000:3_0:162_0:5$ ip community-list expanded c157 permit 7 ^65000:3_0:163_0:6$ ip community-list expanded c157 permit 8 ^65000:3_0:164_0:7$ ip community-list expanded c157 permit 9 ^65000:3_0:165_0:8$ ip community-list expanded c157 permit 10 ^65000:3_0:166_0:9$ ip community-list expanded c157 permit 11 ^65000:3_0:167_0:10$ ip community-list expanded c157 permit 12 ^65000:3_0:168_0:11$ ip community-list expanded c157 permit 13 ^65000:3_0:169_0:12$ ip community-list expanded c157 permit 14 ^65000:3_0:170_0:13$ ip community-list expanded c157 permit 15 ^65000:3_0:171_0:14$ ip community-list expanded c157 permit 16 ^65000:3_0:172_0:15$ ip community-list expanded c157 permit 17 ^65000:3_0:173_0:16$ ip community-list expanded c157 permit 18 ^65000:3_0:174_0:17$ ip community-list expanded c157 permit 19 ^65000:3_0:175_0:18$ ip community-list expanded c157 permit 20 ^65000:3_0:176_0:19$ ip community-list expanded c157 permit 21 ^65000:3_0:177_0:20$ ip community-list expanded c157 permit 22 ^65000:3_0:178_0:21$ ip community-list expanded c157 permit 23 ^65000:3_0:179_0:22$ ip community-list expanded c157 permit 24 ^65000:3_0:180_0:23$ ip community-list expanded c157 permit 25 ^65000:3_0:181_0:24$ ip community-list expanded c157 permit 26 ^65000:3_0:182_0:25$ ip community-list expanded c157 permit 27 ^65000:3_0:183_0:26$ ip community-list expanded c157 permit 28 ^65000:3_0:184_0:27$ ip community-list expanded c157 permit 29 ^65000:3_0:185_0:28$ ip community-list expanded c157 permit 30 ^65000:3_0:186_0:29$ ip community-list expanded c157 permit 31 ^65000:3_0:187_0:30$ ip community-list expanded c157 permit 32 ^65000:3_0:188_0:31$ ip community-list expanded c157 permit 33 ^65000:3_0:189_0:32$ ip community-list expanded c157 permit 34 ^65000:3_0:190_0:33$ ip community-list expanded c157 permit 35 ^65000:3_0:191_0:34$ ip community-list expanded c157 permit 36 ^65000:3_0:192_0:35$ ip community-list expanded c157 permit 37 ^65000:3_0:193_0:36$ ip community-list expanded c157 permit 38 ^65000:3_0:194_0:37$ ip community-list expanded c157 permit 39 ^65000:3_0:195_0:38$ ip community-list expanded c157 permit 40 ^65000:3_0:196_0:39$ ip community-list expanded c157 permit 41 ^65000:3_0:197_0:40$ ip community-list expanded c157 permit 42 ^65000:3_0:198_0:41$ ip community-list expanded c157 permit 43 ^65000:3_0:199_0:42$ ip community-list expanded c157 permit 44 ^65000:3_0:200_0:43$ ip community-list expanded c157 permit 45 ^65000:3_0:201_0:44$ ip community-list expanded c157 permit 46 ^65000:3_0:202_0:45$ ip community-list expanded c157 permit 47 ^65000:3_0:203_0:46$ ip community-list expanded c157 permit 48 ^65000:3_0:204_0:47$ ip community-list expanded c157 permit 49 ^65000:3_0:205_0:48$ ip community-list expanded c157 permit 50 ^65000:3_0:206_0:49$ ip community-list expanded c157 permit 51 ^65000:3_0:207_0:50$ ip community-list expanded c157 permit 52 ^65000:3_0:208_0:51$ ip community-list expanded c157 permit 53 ^65000:3_0:209_0:52$ ip community-list expanded c157 permit 54 ^65000:3_0:210_0:53$ ip community-list expanded c157 permit 55 ^65000:3_0:211_0:54$ ip community-list expanded c157 permit 56 ^65000:3_0:212_0:55$ ip community-list expanded c157 permit 57 ^65000:3_0:213_0:56$ ip community-list expanded c157 permit 58 ^65000:3_0:214_0:57$ ip community-list expanded c157 permit 59 ^65000:3_0:215_0:58$ ip community-list expanded c157 permit 60 ^65000:3_0:216_0:59$ ip community-list expanded c157 permit 61 ^65000:3_0:217_0:60$ ip community-list expanded c157 permit 62 ^65000:3_0:218_0:61$ ip community-list expanded c157 permit 63 ^65000:3_0:219_0:62$ ip community-list expanded c157 permit 64 ^65000:3_0:220_0:63$ ip community-list expanded c157 permit 65 ^65000:3_0:221_0:64$ ip community-list expanded c157 permit 66 ^65000:3_0:222_0:65$ ip community-list expanded c157 permit 67 ^65000:3_0:223_0:66$ ip community-list expanded c157 permit 68 ^65000:3_0:224_0:67$ ip community-list expanded c157 permit 69 ^65000:3_0:225_0:68$ ip community-list expanded c157 permit 70 ^65000:3_0:226_0:69$ ip community-list expanded c157 permit 71 ^65000:3_0:227_0:70$ ip community-list expanded c157 permit 72 ^65000:3_0:228_0:71$ ip community-list expanded c157 permit 73 ^65000:3_0:229_0:72$ ip community-list expanded c157 permit 74 ^65000:3_0:230_0:73$ ip community-list expanded c157 permit 75 ^65000:3_0:231_0:74$ ip community-list expanded c157 permit 76 ^65000:3_0:232_0:75$ ip community-list expanded c157 permit 77 ^65000:3_0:233_0:76$ ip community-list expanded c157 permit 78 ^65000:3_0:234_0:77$ ip community-list expanded c157 permit 79 ^65000:3_0:235_0:78$ ip community-list expanded c157 permit 80 ^65000:3_0:236_0:79$ ip community-list expanded c157 permit 81 ^65000:3_0:237_0:80$ ip community-list expanded c157 permit 82 ^65000:3_0:238_0:81$ ip community-list expanded c157 permit 83 ^65000:3_0:239_0:82$ ip community-list expanded c157 permit 84 ^65000:3_0:240_0:83$ ip community-list expanded c157 permit 85 ^65000:3_0:241_0:84$ ip community-list expanded c157 permit 86 ^65000:3_0:242_0:85$ ip community-list expanded c157 permit 87 ^65000:3_0:243_0:86$ ip community-list expanded c157 permit 88 ^65000:3_0:244_0:87$ ip community-list expanded c157 permit 89 ^65000:3_0:245_0:88$ ip community-list expanded c157 permit 90 ^65000:3_0:246_0:89$ ip community-list expanded c157 permit 91 ^65000:3_0:247_0:90$ ip community-list expanded c157 permit 92 ^65000:3_0:248_0:91$ ip community-list expanded c157 permit 93 ^65000:3_0:249_0:92$ ip community-list expanded c157 permit 94 ^65000:3_0:250_0:93$ ip community-list expanded c157 permit 95 ^65000:3_0:251_0:94$ ip community-list expanded c157 permit 96 ^65000:3_0:252_0:95$ ip community-list expanded c157 permit 97 ^65000:3_0:253_0:96$ ip community-list expanded c157 permit 98 ^65000:3_0:254_0:97$ ip community-list expanded c157 permit 99 ^65000:3_0:255_0:98$ ip community-list expanded c157 permit 100 ^65000:3_0:256_0:99$ route-map calculator permit 7285 match community 1_1_156 2_1_157 1_2_155 1_3_154 1_4_153 set community 0:157 route-map calculator permit 7286 match community 1_5_152 1_6_151 1_7_150 1_8_149 1_9_148 set community 0:157 route-map calculator permit 7287 match community 1_10_147 1_11_146 1_12_145 1_13_144 1_14_143 set community 0:157 route-map calculator permit 7288 match community 1_15_142 1_16_141 1_17_140 1_18_139 1_19_138 set community 0:157 route-map calculator permit 7289 match community 1_20_137 1_21_136 1_22_135 1_23_134 1_24_133 set community 0:157 route-map calculator permit 7290 match community 1_25_132 1_26_131 1_27_130 1_28_129 1_29_128 set community 0:157 route-map calculator permit 7291 match community 1_30_127 1_31_126 1_32_125 1_33_124 1_34_123 set community 0:157 route-map calculator permit 7292 match community 1_35_122 1_36_121 1_37_120 1_38_119 1_39_118 set community 0:157 route-map calculator permit 7293 match community 1_40_117 1_41_116 1_42_115 1_43_114 1_44_113 set community 0:157 route-map calculator permit 7294 match community 1_45_112 1_46_111 1_47_110 1_48_109 1_49_108 set community 0:157 route-map calculator permit 7295 match community 1_50_107 1_51_106 1_52_105 1_53_104 1_54_103 set community 0:157 route-map calculator permit 7296 match community 1_55_102 1_56_101 1_57_100 1_58_99 1_59_98 set community 0:157 route-map calculator permit 7297 match community 1_60_97 1_61_96 1_62_95 1_63_94 1_64_93 set community 0:157 route-map calculator permit 7298 match community 1_65_92 1_66_91 1_67_90 1_68_89 1_69_88 set community 0:157 route-map calculator permit 7299 match community 1_70_87 1_71_86 1_72_85 1_73_84 1_74_83 set community 0:157 route-map calculator permit 7300 match community 1_75_82 1_76_81 1_77_80 1_78_79 c4_157_1 set community 0:157 route-map calculator permit 7301 match community c3_158_1 c3_159_2 c3_160_3 c3_161_4 c3_162_5 set community 0:157 route-map calculator permit 7302 match community c3_163_6 c3_164_7 c3_165_8 c3_166_9 c3_167_10 set community 0:157 route-map calculator permit 7303 match community c3_168_11 c3_169_12 c3_170_13 c3_171_14 c3_172_15 set community 0:157 route-map calculator permit 7304 match community c3_173_16 c3_174_17 c3_175_18 c3_176_19 c3_177_20 set community 0:157 route-map calculator permit 7305 match community c3_178_21 c3_179_22 c3_180_23 c3_181_24 c3_182_25 set community 0:157 route-map calculator permit 7306 match community c3_183_26 c3_184_27 c3_185_28 c3_186_29 c3_187_30 set community 0:157 route-map calculator permit 7307 match community c3_188_31 c3_189_32 c3_190_33 c3_191_34 c3_192_35 set community 0:157 route-map calculator permit 7308 match community c3_193_36 c3_194_37 c3_195_38 c3_196_39 c3_197_40 set community 0:157 route-map calculator permit 7309 match community c3_198_41 c3_199_42 c3_200_43 c3_201_44 c3_202_45 set community 0:157 route-map calculator permit 7310 match community c3_203_46 c3_204_47 c3_205_48 c3_206_49 c3_207_50 set community 0:157 route-map calculator permit 7311 match community c3_208_51 c3_209_52 c3_210_53 c3_211_54 c3_212_55 set community 0:157 route-map calculator permit 7312 match community c3_213_56 c3_214_57 c3_215_58 c3_216_59 c3_217_60 set community 0:157 route-map calculator permit 7313 match community c3_218_61 c3_219_62 c3_220_63 c3_221_64 c3_222_65 set community 0:157 route-map calculator permit 7314 match community c3_223_66 c3_224_67 c3_225_68 c3_226_69 c3_227_70 set community 0:157 route-map calculator permit 7315 match community c3_228_71 c3_229_72 c3_230_73 c3_231_74 c3_232_75 set community 0:157 route-map calculator permit 7316 match community c3_233_76 c3_234_77 c3_235_78 c3_236_79 c3_237_80 set community 0:157 route-map calculator permit 7317 match community c3_238_81 c3_239_82 c3_240_83 c3_241_84 c3_242_85 set community 0:157 route-map calculator permit 7318 match community c3_243_86 c3_244_87 c3_245_88 c3_246_89 c3_247_90 set community 0:157 route-map calculator permit 7319 match community c3_248_91 c3_249_92 c3_250_93 c3_251_94 c3_252_95 set community 0:157 route-map calculator permit 7320 match community c3_253_96 c3_254_97 c3_255_98 c3_256_99 set community 0:157 ip community-list standard 2_217_236 permit 65000:2 0:217 0:236 route-map calculator permit 7321 match community 2_217_236 set community 0:51212 ip community-list standard 2_227_240 permit 65000:2 0:227 0:240 route-map calculator permit 7322 match community 2_227_240 set community 0:54480 ip community-list standard 2_232_240 permit 65000:2 0:232 0:240 route-map calculator permit 7323 match community 2_232_240 set community 0:55680 ip community-list standard 2_101_227 permit 65000:2 0:101 0:227 route-map calculator permit 7324 match community 2_101_227 set community 0:22927 ip community-list standard 2_30_230 permit 65000:2 0:30 0:230 ip community-list standard 2_46_150 permit 65000:2 0:46 0:150 ip community-list standard 2_50_138 permit 65000:2 0:50 0:138 ip community-list standard 2_60_115 permit 65000:2 0:60 0:115 ip community-list standard 2_69_100 permit 65000:2 0:69 0:100 ip community-list standard 2_75_92 permit 65000:2 0:75 0:92 route-map calculator permit 7325 match community 2_30_230 2_46_150 2_50_138 2_60_115 2_69_100 set community 0:6900 route-map calculator permit 7326 match community 2_75_92 set community 0:6900 ip community-list standard 2_43_161 permit 65000:2 0:43 0:161 route-map calculator permit 7327 match community 2_43_161 set community 0:6923 ip community-list standard 2_32_226 permit 65000:2 0:32 0:226 ip community-list standard 2_64_113 permit 65000:2 0:64 0:113 route-map calculator permit 7328 match community 2_32_226 2_64_113 set community 0:7232 ip community-list standard 2_45_244 permit 65000:2 0:45 0:244 ip community-list standard 2_60_183 permit 65000:2 0:60 0:183 ip community-list standard 2_61_180 permit 65000:2 0:61 0:180 ip community-list standard 2_90_122 permit 65000:2 0:90 0:122 route-map calculator permit 7329 match community 2_45_244 2_60_183 2_61_180 2_90_122 set community 0:10980 ip community-list standard 2_95_209 permit 65000:2 0:95 0:209 route-map calculator permit 7330 match community 2_95_209 set community 0:19855 ip community-list standard 2_172_224 permit 65000:2 0:172 0:224 route-map calculator permit 7331 match community 2_172_224 set community 0:38528 ip community-list standard 2_65_185 permit 65000:2 0:65 0:185 route-map calculator permit 7332 match community 2_65_185 set community 0:12025 ip community-list standard 2_139_190 permit 65000:2 0:139 0:190 route-map calculator permit 7333 match community 2_139_190 set community 0:26410 ip community-list standard 2_40_251 permit 65000:2 0:40 0:251 route-map calculator permit 7334 match community 2_40_251 set community 0:10040 ip community-list standard 1_1_211 permit 65000:1 0:1 0:211 ip community-list standard 2_1_212 permit 65000:2 0:1 0:212 ip community-list standard 2_2_106 permit 65000:2 0:2 0:106 ip community-list standard 1_2_210 permit 65000:1 0:2 0:210 ip community-list standard 1_3_209 permit 65000:1 0:3 0:209 ip community-list standard 2_4_53 permit 65000:2 0:4 0:53 ip community-list standard 1_4_208 permit 65000:1 0:4 0:208 ip community-list standard 1_5_207 permit 65000:1 0:5 0:207 ip community-list standard 1_6_206 permit 65000:1 0:6 0:206 ip community-list standard 1_7_205 permit 65000:1 0:7 0:205 ip community-list standard 1_8_204 permit 65000:1 0:8 0:204 ip community-list standard 1_9_203 permit 65000:1 0:9 0:203 ip community-list standard 1_10_202 permit 65000:1 0:10 0:202 ip community-list standard 1_11_201 permit 65000:1 0:11 0:201 ip community-list standard 1_12_200 permit 65000:1 0:12 0:200 ip community-list standard 1_13_199 permit 65000:1 0:13 0:199 ip community-list standard 1_14_198 permit 65000:1 0:14 0:198 ip community-list standard 1_15_197 permit 65000:1 0:15 0:197 ip community-list standard 1_16_196 permit 65000:1 0:16 0:196 ip community-list standard 1_17_195 permit 65000:1 0:17 0:195 ip community-list standard 1_18_194 permit 65000:1 0:18 0:194 ip community-list standard 1_19_193 permit 65000:1 0:19 0:193 ip community-list standard 1_20_192 permit 65000:1 0:20 0:192 ip community-list standard 1_21_191 permit 65000:1 0:21 0:191 ip community-list standard 1_22_190 permit 65000:1 0:22 0:190 ip community-list standard 1_23_189 permit 65000:1 0:23 0:189 ip community-list standard 1_24_188 permit 65000:1 0:24 0:188 ip community-list standard 1_25_187 permit 65000:1 0:25 0:187 ip community-list standard 1_26_186 permit 65000:1 0:26 0:186 ip community-list standard 1_27_185 permit 65000:1 0:27 0:185 ip community-list standard 1_28_184 permit 65000:1 0:28 0:184 ip community-list standard 1_29_183 permit 65000:1 0:29 0:183 ip community-list standard 1_30_182 permit 65000:1 0:30 0:182 ip community-list standard 1_31_181 permit 65000:1 0:31 0:181 ip community-list standard 1_32_180 permit 65000:1 0:32 0:180 ip community-list standard 1_33_179 permit 65000:1 0:33 0:179 ip community-list standard 1_34_178 permit 65000:1 0:34 0:178 ip community-list standard 1_35_177 permit 65000:1 0:35 0:177 ip community-list standard 1_36_176 permit 65000:1 0:36 0:176 ip community-list standard 1_37_175 permit 65000:1 0:37 0:175 ip community-list standard 1_38_174 permit 65000:1 0:38 0:174 ip community-list standard 1_39_173 permit 65000:1 0:39 0:173 ip community-list standard 1_40_172 permit 65000:1 0:40 0:172 ip community-list standard 1_41_171 permit 65000:1 0:41 0:171 ip community-list standard 1_42_170 permit 65000:1 0:42 0:170 ip community-list standard 1_43_169 permit 65000:1 0:43 0:169 ip community-list standard 1_44_168 permit 65000:1 0:44 0:168 ip community-list standard 1_45_167 permit 65000:1 0:45 0:167 ip community-list standard 1_46_166 permit 65000:1 0:46 0:166 ip community-list standard 1_47_165 permit 65000:1 0:47 0:165 ip community-list standard 1_48_164 permit 65000:1 0:48 0:164 ip community-list standard 1_49_163 permit 65000:1 0:49 0:163 ip community-list standard 1_50_162 permit 65000:1 0:50 0:162 ip community-list standard 1_51_161 permit 65000:1 0:51 0:161 ip community-list standard 1_52_160 permit 65000:1 0:52 0:160 ip community-list standard 1_53_159 permit 65000:1 0:53 0:159 ip community-list standard 1_54_158 permit 65000:1 0:54 0:158 ip community-list standard 1_55_157 permit 65000:1 0:55 0:157 ip community-list standard 1_56_156 permit 65000:1 0:56 0:156 ip community-list standard 1_57_155 permit 65000:1 0:57 0:155 ip community-list standard 1_58_154 permit 65000:1 0:58 0:154 ip community-list standard 1_59_153 permit 65000:1 0:59 0:153 ip community-list standard 1_60_152 permit 65000:1 0:60 0:152 ip community-list standard 1_61_151 permit 65000:1 0:61 0:151 ip community-list standard 1_62_150 permit 65000:1 0:62 0:150 ip community-list standard 1_63_149 permit 65000:1 0:63 0:149 ip community-list standard 1_64_148 permit 65000:1 0:64 0:148 ip community-list standard 1_65_147 permit 65000:1 0:65 0:147 ip community-list standard 1_66_146 permit 65000:1 0:66 0:146 ip community-list standard 1_67_145 permit 65000:1 0:67 0:145 ip community-list standard 1_68_144 permit 65000:1 0:68 0:144 ip community-list standard 1_69_143 permit 65000:1 0:69 0:143 ip community-list standard 1_70_142 permit 65000:1 0:70 0:142 ip community-list standard 1_71_141 permit 65000:1 0:71 0:141 ip community-list standard 1_72_140 permit 65000:1 0:72 0:140 ip community-list standard 1_73_139 permit 65000:1 0:73 0:139 ip community-list standard 1_74_138 permit 65000:1 0:74 0:138 ip community-list standard 1_75_137 permit 65000:1 0:75 0:137 ip community-list standard 1_76_136 permit 65000:1 0:76 0:136 ip community-list standard 1_77_135 permit 65000:1 0:77 0:135 ip community-list standard 1_78_134 permit 65000:1 0:78 0:134 ip community-list standard 1_79_133 permit 65000:1 0:79 0:133 ip community-list standard 1_80_132 permit 65000:1 0:80 0:132 ip community-list standard 1_81_131 permit 65000:1 0:81 0:131 ip community-list standard 1_82_130 permit 65000:1 0:82 0:130 ip community-list standard 1_83_129 permit 65000:1 0:83 0:129 ip community-list standard 1_84_128 permit 65000:1 0:84 0:128 ip community-list standard 1_85_127 permit 65000:1 0:85 0:127 ip community-list standard 1_86_126 permit 65000:1 0:86 0:126 ip community-list standard 1_87_125 permit 65000:1 0:87 0:125 ip community-list standard 1_88_124 permit 65000:1 0:88 0:124 ip community-list standard 1_89_123 permit 65000:1 0:89 0:123 ip community-list standard 1_90_122 permit 65000:1 0:90 0:122 ip community-list standard 1_91_121 permit 65000:1 0:91 0:121 ip community-list standard 1_92_120 permit 65000:1 0:92 0:120 ip community-list standard 1_93_119 permit 65000:1 0:93 0:119 ip community-list standard 1_94_118 permit 65000:1 0:94 0:118 ip community-list standard 1_95_117 permit 65000:1 0:95 0:117 ip community-list standard 1_96_116 permit 65000:1 0:96 0:116 ip community-list standard 1_97_115 permit 65000:1 0:97 0:115 ip community-list standard 1_98_114 permit 65000:1 0:98 0:114 ip community-list standard 1_99_113 permit 65000:1 0:99 0:113 ip community-list standard 1_100_112 permit 65000:1 0:100 0:112 ip community-list standard 1_101_111 permit 65000:1 0:101 0:111 ip community-list standard 1_102_110 permit 65000:1 0:102 0:110 ip community-list standard 1_103_109 permit 65000:1 0:103 0:109 ip community-list standard 1_104_108 permit 65000:1 0:104 0:108 ip community-list standard 1_105_107 permit 65000:1 0:105 0:107 ip community-list standard 1_106_106 permit 65000:1 0:106 0:106 ip community-list expanded c212 permit 1 ^65000:4_0:212_0:1$ ip community-list expanded c212 permit 2 ^65000:3_0:213_0:1$ ip community-list expanded c212 permit 3 ^65000:3_0:214_0:2$ ip community-list expanded c212 permit 4 ^65000:3_0:215_0:3$ ip community-list expanded c212 permit 5 ^65000:3_0:216_0:4$ ip community-list expanded c212 permit 6 ^65000:3_0:217_0:5$ ip community-list expanded c212 permit 7 ^65000:3_0:218_0:6$ ip community-list expanded c212 permit 8 ^65000:3_0:219_0:7$ ip community-list expanded c212 permit 9 ^65000:3_0:220_0:8$ ip community-list expanded c212 permit 10 ^65000:3_0:221_0:9$ ip community-list expanded c212 permit 11 ^65000:3_0:222_0:10$ ip community-list expanded c212 permit 12 ^65000:3_0:223_0:11$ ip community-list expanded c212 permit 13 ^65000:3_0:224_0:12$ ip community-list expanded c212 permit 14 ^65000:3_0:225_0:13$ ip community-list expanded c212 permit 15 ^65000:3_0:226_0:14$ ip community-list expanded c212 permit 16 ^65000:3_0:227_0:15$ ip community-list expanded c212 permit 17 ^65000:3_0:228_0:16$ ip community-list expanded c212 permit 18 ^65000:3_0:229_0:17$ ip community-list expanded c212 permit 19 ^65000:3_0:230_0:18$ ip community-list expanded c212 permit 20 ^65000:3_0:231_0:19$ ip community-list expanded c212 permit 21 ^65000:3_0:232_0:20$ ip community-list expanded c212 permit 22 ^65000:3_0:233_0:21$ ip community-list expanded c212 permit 23 ^65000:3_0:234_0:22$ ip community-list expanded c212 permit 24 ^65000:3_0:235_0:23$ ip community-list expanded c212 permit 25 ^65000:3_0:236_0:24$ ip community-list expanded c212 permit 26 ^65000:3_0:237_0:25$ ip community-list expanded c212 permit 27 ^65000:3_0:238_0:26$ ip community-list expanded c212 permit 28 ^65000:3_0:239_0:27$ ip community-list expanded c212 permit 29 ^65000:3_0:240_0:28$ ip community-list expanded c212 permit 30 ^65000:3_0:241_0:29$ ip community-list expanded c212 permit 31 ^65000:3_0:242_0:30$ ip community-list expanded c212 permit 32 ^65000:3_0:243_0:31$ ip community-list expanded c212 permit 33 ^65000:3_0:244_0:32$ ip community-list expanded c212 permit 34 ^65000:3_0:245_0:33$ ip community-list expanded c212 permit 35 ^65000:3_0:246_0:34$ ip community-list expanded c212 permit 36 ^65000:3_0:247_0:35$ ip community-list expanded c212 permit 37 ^65000:3_0:248_0:36$ ip community-list expanded c212 permit 38 ^65000:3_0:249_0:37$ ip community-list expanded c212 permit 39 ^65000:3_0:250_0:38$ ip community-list expanded c212 permit 40 ^65000:3_0:251_0:39$ ip community-list expanded c212 permit 41 ^65000:3_0:252_0:40$ ip community-list expanded c212 permit 42 ^65000:3_0:253_0:41$ ip community-list expanded c212 permit 43 ^65000:3_0:254_0:42$ ip community-list expanded c212 permit 44 ^65000:3_0:255_0:43$ ip community-list expanded c212 permit 45 ^65000:3_0:256_0:44$ route-map calculator permit 7335 match community 1_1_211 2_1_212 2_2_106 1_2_210 1_3_209 set community 0:212 route-map calculator permit 7336 match community 2_4_53 1_4_208 1_5_207 1_6_206 1_7_205 set community 0:212 route-map calculator permit 7337 match community 1_8_204 1_9_203 1_10_202 1_11_201 1_12_200 set community 0:212 route-map calculator permit 7338 match community 1_13_199 1_14_198 1_15_197 1_16_196 1_17_195 set community 0:212 route-map calculator permit 7339 match community 1_18_194 1_19_193 1_20_192 1_21_191 1_22_190 set community 0:212 route-map calculator permit 7340 match community 1_23_189 1_24_188 1_25_187 1_26_186 1_27_185 set community 0:212 route-map calculator permit 7341 match community 1_28_184 1_29_183 1_30_182 1_31_181 1_32_180 set community 0:212 route-map calculator permit 7342 match community 1_33_179 1_34_178 1_35_177 1_36_176 1_37_175 set community 0:212 route-map calculator permit 7343 match community 1_38_174 1_39_173 1_40_172 1_41_171 1_42_170 set community 0:212 route-map calculator permit 7344 match community 1_43_169 1_44_168 1_45_167 1_46_166 1_47_165 set community 0:212 route-map calculator permit 7345 match community 1_48_164 1_49_163 1_50_162 1_51_161 1_52_160 set community 0:212 route-map calculator permit 7346 match community 1_53_159 1_54_158 1_55_157 1_56_156 1_57_155 set community 0:212 route-map calculator permit 7347 match community 1_58_154 1_59_153 1_60_152 1_61_151 1_62_150 set community 0:212 route-map calculator permit 7348 match community 1_63_149 1_64_148 1_65_147 1_66_146 1_67_145 set community 0:212 route-map calculator permit 7349 match community 1_68_144 1_69_143 1_70_142 1_71_141 1_72_140 set community 0:212 route-map calculator permit 7350 match community 1_73_139 1_74_138 1_75_137 1_76_136 1_77_135 set community 0:212 route-map calculator permit 7351 match community 1_78_134 1_79_133 1_80_132 1_81_131 1_82_130 set community 0:212 route-map calculator permit 7352 match community 1_83_129 1_84_128 1_85_127 1_86_126 1_87_125 set community 0:212 route-map calculator permit 7353 match community 1_88_124 1_89_123 1_90_122 1_91_121 1_92_120 set community 0:212 route-map calculator permit 7354 match community 1_93_119 1_94_118 1_95_117 1_96_116 1_97_115 set community 0:212 route-map calculator permit 7355 match community 1_98_114 1_99_113 1_100_112 1_101_111 1_102_110 set community 0:212 route-map calculator permit 7356 match community 1_103_109 1_104_108 1_105_107 1_106_106 c4_212_1 set community 0:212 route-map calculator permit 7357 match community c3_213_1 c3_214_2 c3_215_3 c3_216_4 c3_217_5 set community 0:212 route-map calculator permit 7358 match community c3_218_6 c3_219_7 c3_220_8 c3_221_9 c3_222_10 set community 0:212 route-map calculator permit 7359 match community c3_223_11 c3_224_12 c3_225_13 c3_226_14 c3_227_15 set community 0:212 route-map calculator permit 7360 match community c3_228_16 c3_229_17 c3_230_18 c3_231_19 c3_232_20 set community 0:212 route-map calculator permit 7361 match community c3_233_21 c3_234_22 c3_235_23 c3_236_24 c3_237_25 set community 0:212 route-map calculator permit 7362 match community c3_238_26 c3_239_27 c3_240_28 c3_241_29 c3_242_30 set community 0:212 route-map calculator permit 7363 match community c3_243_31 c3_244_32 c3_245_33 c3_246_34 c3_247_35 set community 0:212 route-map calculator permit 7364 match community c3_248_36 c3_249_37 c3_250_38 c3_251_39 c3_252_40 set community 0:212 route-map calculator permit 7365 match community c3_253_41 c3_254_42 c3_255_43 c3_256_44 set community 0:212 ip community-list standard 2_23_124 permit 65000:2 0:23 0:124 ip community-list standard 2_31_92 permit 65000:2 0:31 0:92 ip community-list standard 2_46_62 permit 65000:2 0:46 0:62 route-map calculator permit 7366 match community 2_23_124 2_31_92 2_46_62 set community 0:2852 ip community-list standard 2_193_193 permit 65000:2 0:193 0:193 route-map calculator permit 7367 match community 2_193_193 set community 0:37249 ip community-list standard 2_95_218 permit 65000:2 0:95 0:218 ip community-list standard 2_109_190 permit 65000:2 0:109 0:190 route-map calculator permit 7368 match community 2_95_218 2_109_190 set community 0:20710 ip community-list standard 2_159_225 permit 65000:2 0:159 0:225 route-map calculator permit 7369 match community 2_159_225 set community 0:35775 ip community-list standard 2_52_254 permit 65000:2 0:52 0:254 ip community-list standard 2_104_127 permit 65000:2 0:104 0:127 route-map calculator permit 7370 match community 2_52_254 2_104_127 set community 0:13208 ip community-list standard 2_14_141 permit 65000:2 0:14 0:141 ip community-list standard 2_21_94 permit 65000:2 0:21 0:94 ip community-list standard 2_42_47 permit 65000:2 0:42 0:47 route-map calculator permit 7371 match community 2_14_141 2_21_94 2_42_47 set community 0:1974 ip community-list standard 2_68_206 permit 65000:2 0:68 0:206 ip community-list standard 2_103_136 permit 65000:2 0:103 0:136 route-map calculator permit 7372 match community 2_68_206 2_103_136 set community 0:14008 ip community-list standard 2_107_226 permit 65000:2 0:107 0:226 ip community-list standard 2_113_214 permit 65000:2 0:113 0:214 route-map calculator permit 7373 match community 2_107_226 2_113_214 set community 0:24182 ip community-list standard 2_111_211 permit 65000:2 0:111 0:211 route-map calculator permit 7374 match community 2_111_211 set community 0:23421 ip community-list standard 2_9_177 permit 65000:2 0:9 0:177 ip community-list standard 2_27_59 permit 65000:2 0:27 0:59 route-map calculator permit 7375 match community 2_9_177 2_27_59 set community 0:1593 ip community-list standard 2_64_215 permit 65000:2 0:64 0:215 ip community-list standard 2_80_172 permit 65000:2 0:80 0:172 ip community-list standard 2_86_160 permit 65000:2 0:86 0:160 route-map calculator permit 7376 match community 2_64_215 2_80_172 2_86_160 set community 0:13760 ip community-list standard 2_199_220 permit 65000:2 0:199 0:220 route-map calculator permit 7377 match community 2_199_220 set community 0:43780 ip community-list standard 2_218_225 permit 65000:2 0:218 0:225 route-map calculator permit 7378 match community 2_218_225 set community 0:49050 ip community-list standard 2_71_169 permit 65000:2 0:71 0:169 route-map calculator permit 7379 match community 2_71_169 set community 0:11999 ip community-list standard 2_222_238 permit 65000:2 0:222 0:238 route-map calculator permit 7380 match community 2_222_238 set community 0:52836 ip community-list standard 2_75_97 permit 65000:2 0:75 0:97 route-map calculator permit 7381 match community 2_75_97 set community 0:7275 ip community-list standard 2_48_242 permit 65000:2 0:48 0:242 ip community-list standard 2_66_176 permit 65000:2 0:66 0:176 ip community-list standard 2_88_132 permit 65000:2 0:88 0:132 ip community-list standard 2_96_121 permit 65000:2 0:96 0:121 route-map calculator permit 7382 match community 2_48_242 2_66_176 2_88_132 2_96_121 set community 0:11616 ip community-list standard 2_139_218 permit 65000:2 0:139 0:218 route-map calculator permit 7383 match community 2_139_218 set community 0:30302 ip community-list standard 2_4_201 permit 65000:2 0:4 0:201 ip community-list standard 2_6_134 permit 65000:2 0:6 0:134 ip community-list standard 2_12_67 permit 65000:2 0:12 0:67 route-map calculator permit 7384 match community 2_4_201 2_6_134 2_12_67 set community 0:804 ip community-list standard 2_154_193 permit 65000:2 0:154 0:193 route-map calculator permit 7385 match community 2_154_193 set community 0:29722 ip community-list standard 2_146_152 permit 65000:2 0:146 0:152 route-map calculator permit 7386 match community 2_146_152 set community 0:22192 ip community-list standard 2_77_89 permit 65000:2 0:77 0:89 route-map calculator permit 7387 match community 2_77_89 set community 0:6853 ip community-list standard 2_70_251 permit 65000:2 0:70 0:251 route-map calculator permit 7388 match community 2_70_251 set community 0:17570 ip community-list standard 2_223_228 permit 65000:2 0:223 0:228 route-map calculator permit 7389 match community 2_223_228 set community 0:50844 ip community-list standard 2_95_167 permit 65000:2 0:95 0:167 route-map calculator permit 7390 match community 2_95_167 set community 0:15865 ip community-list standard 2_123_203 permit 65000:2 0:123 0:203 route-map calculator permit 7391 match community 2_123_203 set community 0:24969 ip community-list standard 2_152_239 permit 65000:2 0:152 0:239 route-map calculator permit 7392 match community 2_152_239 set community 0:36328 ip community-list standard 2_65_241 permit 65000:2 0:65 0:241 route-map calculator permit 7393 match community 2_65_241 set community 0:15665 ip community-list standard 2_17_207 permit 65000:2 0:17 0:207 ip community-list standard 2_23_153 permit 65000:2 0:23 0:153 ip community-list standard 2_51_69 permit 65000:2 0:51 0:69 route-map calculator permit 7394 match community 2_17_207 2_23_153 2_51_69 set community 0:3519 ip community-list standard 2_79_91 permit 65000:2 0:79 0:91 route-map calculator permit 7395 match community 2_79_91 set community 0:7189 ip community-list standard 2_83_103 permit 65000:2 0:83 0:103 route-map calculator permit 7396 match community 2_83_103 set community 0:8549 ip community-list standard 2_181_229 permit 65000:2 0:181 0:229 route-map calculator permit 7397 match community 2_181_229 set community 0:41449 ip community-list standard 2_18_215 permit 65000:2 0:18 0:215 ip community-list standard 2_30_129 permit 65000:2 0:30 0:129 ip community-list standard 2_43_90 permit 65000:2 0:43 0:90 ip community-list standard 2_45_86 permit 65000:2 0:45 0:86 route-map calculator permit 7398 match community 2_18_215 2_30_129 2_43_90 2_45_86 set community 0:3870 ip community-list standard 2_56_163 permit 65000:2 0:56 0:163 route-map calculator permit 7399 match community 2_56_163 set community 0:9128 ip community-list standard 2_18_149 permit 65000:2 0:18 0:149 route-map calculator permit 7400 match community 2_18_149 set community 0:2682 ip community-list standard 2_188_255 permit 65000:2 0:188 0:255 ip community-list standard 2_204_235 permit 65000:2 0:204 0:235 route-map calculator permit 7401 match community 2_188_255 2_204_235 set community 0:47940 ip community-list standard 2_62_201 permit 65000:2 0:62 0:201 ip community-list standard 2_67_186 permit 65000:2 0:67 0:186 ip community-list standard 2_93_134 permit 65000:2 0:93 0:134 route-map calculator permit 7402 match community 2_62_201 2_67_186 2_93_134 set community 0:12462 ip community-list standard 2_155_170 permit 65000:2 0:155 0:170 route-map calculator permit 7403 match community 2_155_170 set community 0:26350 ip community-list standard 2_60_214 permit 65000:2 0:60 0:214 ip community-list standard 2_107_120 permit 65000:2 0:107 0:120 route-map calculator permit 7404 match community 2_60_214 2_107_120 set community 0:12840 ip community-list standard 2_190_239 permit 65000:2 0:190 0:239 route-map calculator permit 7405 match community 2_190_239 set community 0:45410 ip community-list standard 2_151_245 permit 65000:2 0:151 0:245 route-map calculator permit 7406 match community 2_151_245 set community 0:36995 ip community-list standard 2_71_97 permit 65000:2 0:71 0:97 route-map calculator permit 7407 match community 2_71_97 set community 0:6887 ip community-list standard 2_86_137 permit 65000:2 0:86 0:137 route-map calculator permit 7408 match community 2_86_137 set community 0:11782 ip community-list standard 2_118_225 permit 65000:2 0:118 0:225 ip community-list standard 2_150_177 permit 65000:2 0:150 0:177 route-map calculator permit 7409 match community 2_118_225 2_150_177 set community 0:26550 ip community-list standard 2_129_143 permit 65000:2 0:129 0:143 route-map calculator permit 7410 match community 2_129_143 set community 0:18447 ip community-list standard 2_177_225 permit 65000:2 0:177 0:225 route-map calculator permit 7411 match community 2_177_225 set community 0:39825 ip community-list standard 2_163_215 permit 65000:2 0:163 0:215 route-map calculator permit 7412 match community 2_163_215 set community 0:35045 ip community-list standard 2_179_247 permit 65000:2 0:179 0:247 route-map calculator permit 7413 match community 2_179_247 set community 0:44213 ip community-list standard 2_53_218 permit 65000:2 0:53 0:218 ip community-list standard 2_106_109 permit 65000:2 0:106 0:109 route-map calculator permit 7414 match community 2_53_218 2_106_109 set community 0:11554 ip community-list standard 2_158_239 permit 65000:2 0:158 0:239 route-map calculator permit 7415 match community 2_158_239 set community 0:37762 ip community-list standard 2_119_191 permit 65000:2 0:119 0:191 route-map calculator permit 7416 match community 2_119_191 set community 0:22729 ip community-list standard 2_59_118 permit 65000:2 0:59 0:118 route-map calculator permit 7417 match community 2_59_118 set community 0:6962 ip community-list standard 2_47_182 permit 65000:2 0:47 0:182 ip community-list standard 2_91_94 permit 65000:2 0:91 0:94 route-map calculator permit 7418 match community 2_47_182 2_91_94 set community 0:8554 ip community-list standard 2_144_151 permit 65000:2 0:144 0:151 route-map calculator permit 7419 match community 2_144_151 set community 0:21744 ip community-list standard 2_187_245 permit 65000:2 0:187 0:245 route-map calculator permit 7420 match community 2_187_245 set community 0:45815 ip community-list standard 2_99_151 permit 65000:2 0:99 0:151 route-map calculator permit 7421 match community 2_99_151 set community 0:14949 ip community-list standard 2_41_208 permit 65000:2 0:41 0:208 ip community-list standard 2_52_164 permit 65000:2 0:52 0:164 ip community-list standard 2_82_104 permit 65000:2 0:82 0:104 route-map calculator permit 7422 match community 2_41_208 2_52_164 2_82_104 set community 0:8528 ip community-list standard 2_115_191 permit 65000:2 0:115 0:191 route-map calculator permit 7423 match community 2_115_191 set community 0:21965 ip community-list standard 2_7_255 permit 65000:2 0:7 0:255 ip community-list standard 2_15_119 permit 65000:2 0:15 0:119 ip community-list standard 2_17_105 permit 65000:2 0:17 0:105 ip community-list standard 2_21_85 permit 65000:2 0:21 0:85 ip community-list standard 2_35_51 permit 65000:2 0:35 0:51 route-map calculator permit 7424 match community 2_7_255 2_15_119 2_17_105 2_21_85 2_35_51 set community 0:1785 ip community-list standard 2_183_194 permit 65000:2 0:183 0:194 route-map calculator permit 7425 match community 2_183_194 set community 0:35502 ip community-list standard 2_29_207 permit 65000:2 0:29 0:207 ip community-list standard 2_69_87 permit 65000:2 0:69 0:87 route-map calculator permit 7426 match community 2_29_207 2_69_87 set community 0:6003 ip community-list standard 2_130_163 permit 65000:2 0:130 0:163 route-map calculator permit 7427 match community 2_130_163 set community 0:21190 ip community-list standard 2_142_170 permit 65000:2 0:142 0:170 route-map calculator permit 7428 match community 2_142_170 set community 0:24140 ip community-list standard 2_115_181 permit 65000:2 0:115 0:181 route-map calculator permit 7429 match community 2_115_181 set community 0:20815 ip community-list standard 2_29_197 permit 65000:2 0:29 0:197 route-map calculator permit 7430 match community 2_29_197 set community 0:5713 ip community-list standard 2_22_151 permit 65000:2 0:22 0:151 route-map calculator permit 7431 match community 2_22_151 set community 0:3322 ip community-list standard 2_192_229 permit 65000:2 0:192 0:229 route-map calculator permit 7432 match community 2_192_229 set community 0:43968 ip community-list standard 2_19_161 permit 65000:2 0:19 0:161 ip community-list standard 2_23_133 permit 65000:2 0:23 0:133 route-map calculator permit 7433 match community 2_19_161 2_23_133 set community 0:3059 ip community-list standard 2_40_221 permit 65000:2 0:40 0:221 ip community-list standard 2_52_170 permit 65000:2 0:52 0:170 ip community-list standard 2_65_136 permit 65000:2 0:65 0:136 ip community-list standard 2_68_130 permit 65000:2 0:68 0:130 ip community-list standard 2_85_104 permit 65000:2 0:85 0:104 route-map calculator permit 7434 match community 2_40_221 2_52_170 2_65_136 2_68_130 2_85_104 set community 0:8840 ip community-list standard 2_46_255 permit 65000:2 0:46 0:255 ip community-list standard 2_51_230 permit 65000:2 0:51 0:230 ip community-list standard 2_69_170 permit 65000:2 0:69 0:170 ip community-list standard 2_85_138 permit 65000:2 0:85 0:138 ip community-list standard 2_102_115 permit 65000:2 0:102 0:115 route-map calculator permit 7435 match community 2_46_255 2_51_230 2_69_170 2_85_138 2_102_115 set community 0:11730 ip community-list standard 2_182_242 permit 65000:2 0:182 0:242 route-map calculator permit 7436 match community 2_182_242 set community 0:44044 ip community-list standard 2_16_212 permit 65000:2 0:16 0:212 ip community-list standard 2_32_106 permit 65000:2 0:32 0:106 ip community-list standard 2_53_64 permit 65000:2 0:53 0:64 route-map calculator permit 7437 match community 2_16_212 2_32_106 2_53_64 set community 0:3392 ip community-list standard 2_91_107 permit 65000:2 0:91 0:107 route-map calculator permit 7438 match community 2_91_107 set community 0:9737 ip community-list standard 2_19_147 permit 65000:2 0:19 0:147 ip community-list standard 2_21_133 permit 65000:2 0:21 0:133 ip community-list standard 2_49_57 permit 65000:2 0:49 0:57 route-map calculator permit 7439 match community 2_19_147 2_21_133 2_49_57 set community 0:2793 ip community-list standard 2_53_186 permit 65000:2 0:53 0:186 ip community-list standard 2_62_159 permit 65000:2 0:62 0:159 ip community-list standard 2_93_106 permit 65000:2 0:93 0:106 route-map calculator permit 7440 match community 2_53_186 2_62_159 2_93_106 set community 0:9858 ip community-list standard 2_13_200 permit 65000:2 0:13 0:200 ip community-list standard 2_20_130 permit 65000:2 0:20 0:130 ip community-list standard 2_25_104 permit 65000:2 0:25 0:104 ip community-list standard 2_26_100 permit 65000:2 0:26 0:100 ip community-list standard 2_40_65 permit 65000:2 0:40 0:65 ip community-list standard 2_50_52 permit 65000:2 0:50 0:52 route-map calculator permit 7441 match community 2_13_200 2_20_130 2_25_104 2_26_100 2_40_65 set community 0:2600 route-map calculator permit 7442 match community 2_50_52 set community 0:2600 ip community-list standard 2_181_192 permit 65000:2 0:181 0:192 route-map calculator permit 7443 match community 2_181_192 set community 0:34752 ip community-list standard 2_190_240 permit 65000:2 0:190 0:240 ip community-list standard 2_200_228 permit 65000:2 0:200 0:228 route-map calculator permit 7444 match community 2_190_240 2_200_228 set community 0:45600 ip community-list standard 2_233_251 permit 65000:2 0:233 0:251 route-map calculator permit 7445 match community 2_233_251 set community 0:58483 ip community-list standard 2_180_249 permit 65000:2 0:180 0:249 route-map calculator permit 7446 match community 2_180_249 set community 0:44820 ip community-list standard 2_161_196 permit 65000:2 0:161 0:196 route-map calculator permit 7447 match community 2_161_196 set community 0:31556 ip community-list standard 2_149_203 permit 65000:2 0:149 0:203 route-map calculator permit 7448 match community 2_149_203 set community 0:30247 ip community-list standard 2_22_192 permit 65000:2 0:22 0:192 ip community-list standard 2_24_176 permit 65000:2 0:24 0:176 ip community-list standard 2_32_132 permit 65000:2 0:32 0:132 ip community-list standard 2_33_128 permit 65000:2 0:33 0:128 ip community-list standard 2_44_96 permit 65000:2 0:44 0:96 ip community-list standard 2_48_88 permit 65000:2 0:48 0:88 ip community-list standard 2_64_66 permit 65000:2 0:64 0:66 route-map calculator permit 7449 match community 2_22_192 2_24_176 2_32_132 2_33_128 2_44_96 set community 0:4224 route-map calculator permit 7450 match community 2_48_88 2_64_66 set community 0:4224 ip community-list standard 2_157_227 permit 65000:2 0:157 0:227 route-map calculator permit 7451 match community 2_157_227 set community 0:35639 ip community-list standard 2_122_201 permit 65000:2 0:122 0:201 ip community-list standard 2_134_183 permit 65000:2 0:134 0:183 route-map calculator permit 7452 match community 2_122_201 2_134_183 set community 0:24522 ip community-list standard 2_182_254 permit 65000:2 0:182 0:254 route-map calculator permit 7453 match community 2_182_254 set community 0:46228 ip community-list standard 2_25_253 permit 65000:2 0:25 0:253 ip community-list standard 2_55_115 permit 65000:2 0:55 0:115 route-map calculator permit 7454 match community 2_25_253 2_55_115 set community 0:6325 ip community-list standard 2_112_239 permit 65000:2 0:112 0:239 route-map calculator permit 7455 match community 2_112_239 set community 0:26768 ip community-list standard 2_6_223 permit 65000:2 0:6 0:223 route-map calculator permit 7456 match community 2_6_223 set community 0:1338 ip community-list standard 2_241_242 permit 65000:2 0:241 0:242 route-map calculator permit 7457 match community 2_241_242 set community 0:58322 ip community-list standard 2_25_234 permit 65000:2 0:25 0:234 ip community-list standard 2_26_225 permit 65000:2 0:26 0:225 ip community-list standard 2_30_195 permit 65000:2 0:30 0:195 ip community-list standard 2_39_150 permit 65000:2 0:39 0:150 ip community-list standard 2_45_130 permit 65000:2 0:45 0:130 ip community-list standard 2_50_117 permit 65000:2 0:50 0:117 ip community-list standard 2_65_90 permit 65000:2 0:65 0:90 ip community-list standard 2_75_78 permit 65000:2 0:75 0:78 route-map calculator permit 7458 match community 2_25_234 2_26_225 2_30_195 2_39_150 2_45_130 set community 0:5850 route-map calculator permit 7459 match community 2_50_117 2_65_90 2_75_78 set community 0:5850 ip community-list standard 2_53_67 permit 65000:2 0:53 0:67 route-map calculator permit 7460 match community 2_53_67 set community 0:3551 ip community-list standard 2_80_211 permit 65000:2 0:80 0:211 route-map calculator permit 7461 match community 2_80_211 set community 0:16880 ip community-list standard 2_113_228 permit 65000:2 0:113 0:228 ip community-list standard 2_114_226 permit 65000:2 0:114 0:226 route-map calculator permit 7462 match community 2_113_228 2_114_226 set community 0:25764 ip community-list standard 2_98_242 permit 65000:2 0:98 0:242 ip community-list standard 2_121_196 permit 65000:2 0:121 0:196 ip community-list standard 2_154_154 permit 65000:2 0:154 0:154 route-map calculator permit 7463 match community 2_98_242 2_121_196 2_154_154 set community 0:23716 ip community-list standard 2_24_244 permit 65000:2 0:24 0:244 ip community-list standard 2_32_183 permit 65000:2 0:32 0:183 ip community-list standard 2_48_122 permit 65000:2 0:48 0:122 ip community-list standard 2_61_96 permit 65000:2 0:61 0:96 route-map calculator permit 7464 match community 2_24_244 2_32_183 2_48_122 2_61_96 set community 0:5856 ip community-list standard 2_17_206 permit 65000:2 0:17 0:206 ip community-list standard 2_34_103 permit 65000:2 0:34 0:103 route-map calculator permit 7465 match community 2_17_206 2_34_103 set community 0:3502 ip community-list standard 2_54_236 permit 65000:2 0:54 0:236 ip community-list standard 2_59_216 permit 65000:2 0:59 0:216 ip community-list standard 2_72_177 permit 65000:2 0:72 0:177 ip community-list standard 2_108_118 permit 65000:2 0:108 0:118 route-map calculator permit 7466 match community 2_54_236 2_59_216 2_72_177 2_108_118 set community 0:12744 ip community-list standard 2_6_173 permit 65000:2 0:6 0:173 route-map calculator permit 7467 match community 2_6_173 set community 0:1038 ip community-list standard 2_183_209 permit 65000:2 0:183 0:209 route-map calculator permit 7468 match community 2_183_209 set community 0:38247 ip community-list standard 2_183_197 permit 65000:2 0:183 0:197 route-map calculator permit 7469 match community 2_183_197 set community 0:36051 ip community-list standard 2_15_254 permit 65000:2 0:15 0:254 ip community-list standard 2_30_127 permit 65000:2 0:30 0:127 route-map calculator permit 7470 match community 2_15_254 2_30_127 set community 0:3810 ip community-list standard 2_98_249 permit 65000:2 0:98 0:249 ip community-list standard 2_147_166 permit 65000:2 0:147 0:166 route-map calculator permit 7471 match community 2_98_249 2_147_166 set community 0:24402 ip community-list standard 2_41_179 permit 65000:2 0:41 0:179 route-map calculator permit 7472 match community 2_41_179 set community 0:7339 ip community-list standard 2_60_173 permit 65000:2 0:60 0:173 route-map calculator permit 7473 match community 2_60_173 set community 0:10380 ip community-list standard 2_2_232 permit 65000:2 0:2 0:232 ip community-list standard 2_4_116 permit 65000:2 0:4 0:116 ip community-list standard 2_8_58 permit 65000:2 0:8 0:58 ip community-list standard 2_16_29 permit 65000:2 0:16 0:29 ip community-list standard 1_208_256 permit 65000:1 0:208 0:256 ip community-list standard 1_209_255 permit 65000:1 0:209 0:255 ip community-list standard 1_210_254 permit 65000:1 0:210 0:254 ip community-list standard 1_211_253 permit 65000:1 0:211 0:253 ip community-list standard 1_212_252 permit 65000:1 0:212 0:252 ip community-list standard 1_213_251 permit 65000:1 0:213 0:251 ip community-list standard 1_214_250 permit 65000:1 0:214 0:250 ip community-list standard 1_215_249 permit 65000:1 0:215 0:249 ip community-list standard 1_216_248 permit 65000:1 0:216 0:248 ip community-list standard 1_217_247 permit 65000:1 0:217 0:247 ip community-list standard 1_218_246 permit 65000:1 0:218 0:246 ip community-list standard 1_219_245 permit 65000:1 0:219 0:245 ip community-list standard 1_220_244 permit 65000:1 0:220 0:244 ip community-list standard 1_221_243 permit 65000:1 0:221 0:243 ip community-list standard 1_222_242 permit 65000:1 0:222 0:242 ip community-list standard 1_223_241 permit 65000:1 0:223 0:241 ip community-list standard 1_224_240 permit 65000:1 0:224 0:240 ip community-list standard 1_225_239 permit 65000:1 0:225 0:239 ip community-list standard 1_226_238 permit 65000:1 0:226 0:238 ip community-list standard 1_227_237 permit 65000:1 0:227 0:237 ip community-list standard 1_228_236 permit 65000:1 0:228 0:236 ip community-list standard 1_229_235 permit 65000:1 0:229 0:235 ip community-list standard 1_230_234 permit 65000:1 0:230 0:234 ip community-list standard 1_231_233 permit 65000:1 0:231 0:233 ip community-list standard 1_232_232 permit 65000:1 0:232 0:232 route-map calculator permit 7474 match community 2_2_232 2_4_116 2_8_58 2_16_29 1_208_256 set community 0:464 route-map calculator permit 7475 match community 1_209_255 1_210_254 1_211_253 1_212_252 1_213_251 set community 0:464 route-map calculator permit 7476 match community 1_214_250 1_215_249 1_216_248 1_217_247 1_218_246 set community 0:464 route-map calculator permit 7477 match community 1_219_245 1_220_244 1_221_243 1_222_242 1_223_241 set community 0:464 route-map calculator permit 7478 match community 1_224_240 1_225_239 1_226_238 1_227_237 1_228_236 set community 0:464 route-map calculator permit 7479 match community 1_229_235 1_230_234 1_231_233 1_232_232 set community 0:464 ip community-list standard 2_197_203 permit 65000:2 0:197 0:203 route-map calculator permit 7480 match community 2_197_203 set community 0:39991 ip community-list standard 2_178_182 permit 65000:2 0:178 0:182 route-map calculator permit 7481 match community 2_178_182 set community 0:32396 ip community-list standard 2_96_157 permit 65000:2 0:96 0:157 route-map calculator permit 7482 match community 2_96_157 set community 0:15072 ip community-list standard 2_105_255 permit 65000:2 0:105 0:255 ip community-list standard 2_119_225 permit 65000:2 0:119 0:225 ip community-list standard 2_153_175 permit 65000:2 0:153 0:175 route-map calculator permit 7483 match community 2_105_255 2_119_225 2_153_175 set community 0:26775 ip community-list standard 2_53_222 permit 65000:2 0:53 0:222 ip community-list standard 2_74_159 permit 65000:2 0:74 0:159 ip community-list standard 2_106_111 permit 65000:2 0:106 0:111 route-map calculator permit 7484 match community 2_53_222 2_74_159 2_106_111 set community 0:11766 ip community-list standard 2_157_157 permit 65000:2 0:157 0:157 route-map calculator permit 7485 match community 2_157_157 set community 0:24649 ip community-list standard 2_54_253 permit 65000:2 0:54 0:253 ip community-list standard 2_66_207 permit 65000:2 0:66 0:207 ip community-list standard 2_69_198 permit 65000:2 0:69 0:198 ip community-list standard 2_99_138 permit 65000:2 0:99 0:138 route-map calculator permit 7486 match community 2_54_253 2_66_207 2_69_198 2_99_138 set community 0:13662 ip community-list standard 2_142_142 permit 65000:2 0:142 0:142 route-map calculator permit 7487 match community 2_142_142 set community 0:20164 ip community-list standard 2_189_238 permit 65000:2 0:189 0:238 route-map calculator permit 7488 match community 2_189_238 set community 0:44982 ip community-list standard 2_99_149 permit 65000:2 0:99 0:149 route-map calculator permit 7489 match community 2_99_149 set community 0:14751 ip community-list standard 2_94_153 permit 65000:2 0:94 0:153 ip community-list standard 2_102_141 permit 65000:2 0:102 0:141 route-map calculator permit 7490 match community 2_94_153 2_102_141 set community 0:14382 ip community-list standard 2_66_235 permit 65000:2 0:66 0:235 ip community-list standard 2_94_165 permit 65000:2 0:94 0:165 ip community-list standard 2_110_141 permit 65000:2 0:110 0:141 route-map calculator permit 7491 match community 2_66_235 2_94_165 2_110_141 set community 0:15510 ip community-list standard 2_94_243 permit 65000:2 0:94 0:243 ip community-list standard 2_141_162 permit 65000:2 0:141 0:162 route-map calculator permit 7492 match community 2_94_243 2_141_162 set community 0:22842 ip community-list standard 2_13_113 permit 65000:2 0:13 0:113 route-map calculator permit 7493 match community 2_13_113 set community 0:1469 ip community-list standard 2_201_219 permit 65000:2 0:201 0:219 route-map calculator permit 7494 match community 2_201_219 set community 0:44019 ip community-list standard 2_225_255 permit 65000:2 0:225 0:255 route-map calculator permit 7495 match community 2_225_255 set community 0:57375 ip community-list standard 2_99_221 permit 65000:2 0:99 0:221 ip community-list standard 2_117_187 permit 65000:2 0:117 0:187 ip community-list standard 2_143_153 permit 65000:2 0:143 0:153 route-map calculator permit 7496 match community 2_99_221 2_117_187 2_143_153 set community 0:21879 ip community-list standard 2_87_248 permit 65000:2 0:87 0:248 ip community-list standard 2_93_232 permit 65000:2 0:93 0:232 ip community-list standard 2_116_186 permit 65000:2 0:116 0:186 ip community-list standard 2_124_174 permit 65000:2 0:124 0:174 route-map calculator permit 7497 match community 2_87_248 2_93_232 2_116_186 2_124_174 set community 0:21576 ip community-list standard 2_163_234 permit 65000:2 0:163 0:234 route-map calculator permit 7498 match community 2_163_234 set community 0:38142 ip community-list standard 2_12_206 permit 65000:2 0:12 0:206 ip community-list standard 2_24_103 permit 65000:2 0:24 0:103 route-map calculator permit 7499 match community 2_12_206 2_24_103 set community 0:2472 ip community-list standard 2_17_199 permit 65000:2 0:17 0:199 route-map calculator permit 7500 match community 2_17_199 set community 0:3383 ip community-list standard 2_123_231 permit 65000:2 0:123 0:231 route-map calculator permit 7501 match community 2_123_231 set community 0:28413 ip community-list standard 2_81_239 permit 65000:2 0:81 0:239 route-map calculator permit 7502 match community 2_81_239 set community 0:19359 ip community-list standard 2_132_208 permit 65000:2 0:132 0:208 ip community-list standard 2_143_192 permit 65000:2 0:143 0:192 ip community-list standard 2_156_176 permit 65000:2 0:156 0:176 route-map calculator permit 7503 match community 2_132_208 2_143_192 2_156_176 set community 0:27456 ip community-list standard 2_70_214 permit 65000:2 0:70 0:214 ip community-list standard 2_107_140 permit 65000:2 0:107 0:140 route-map calculator permit 7504 match community 2_70_214 2_107_140 set community 0:14980 ip community-list standard 2_156_247 permit 65000:2 0:156 0:247 ip community-list standard 2_169_228 permit 65000:2 0:169 0:228 route-map calculator permit 7505 match community 2_156_247 2_169_228 set community 0:38532 ip community-list standard 2_189_222 permit 65000:2 0:189 0:222 route-map calculator permit 7506 match community 2_189_222 set community 0:41958 ip community-list standard 2_205_256 permit 65000:2 0:205 0:256 route-map calculator permit 7507 match community 2_205_256 set community 0:52480 ip community-list standard 2_74_163 permit 65000:2 0:74 0:163 route-map calculator permit 7508 match community 2_74_163 set community 0:12062 ip community-list standard 2_32_158 permit 65000:2 0:32 0:158 ip community-list standard 2_64_79 permit 65000:2 0:64 0:79 route-map calculator permit 7509 match community 2_32_158 2_64_79 set community 0:5056 ip community-list standard 2_43_250 permit 65000:2 0:43 0:250 ip community-list standard 2_50_215 permit 65000:2 0:50 0:215 ip community-list standard 2_86_125 permit 65000:2 0:86 0:125 route-map calculator permit 7510 match community 2_43_250 2_50_215 2_86_125 set community 0:10750 ip community-list standard 2_84_230 permit 65000:2 0:84 0:230 ip community-list standard 2_92_210 permit 65000:2 0:92 0:210 ip community-list standard 2_105_184 permit 65000:2 0:105 0:184 ip community-list standard 2_115_168 permit 65000:2 0:115 0:168 ip community-list standard 2_120_161 permit 65000:2 0:120 0:161 ip community-list standard 2_138_140 permit 65000:2 0:138 0:140 route-map calculator permit 7511 match community 2_84_230 2_92_210 2_105_184 2_115_168 2_120_161 set community 0:19320 route-map calculator permit 7512 match community 2_138_140 set community 0:19320 ip community-list standard 2_69_237 permit 65000:2 0:69 0:237 ip community-list standard 2_79_207 permit 65000:2 0:79 0:207 route-map calculator permit 7513 match community 2_69_237 2_79_207 set community 0:16353 ip community-list standard 2_85_218 permit 65000:2 0:85 0:218 ip community-list standard 2_109_170 permit 65000:2 0:109 0:170 route-map calculator permit 7514 match community 2_85_218 2_109_170 set community 0:18530 ip community-list standard 2_44_248 permit 65000:2 0:44 0:248 ip community-list standard 2_62_176 permit 65000:2 0:62 0:176 ip community-list standard 2_88_124 permit 65000:2 0:88 0:124 route-map calculator permit 7515 match community 2_44_248 2_62_176 2_88_124 set community 0:10912 ip community-list standard 2_148_190 permit 65000:2 0:148 0:190 ip community-list standard 2_152_185 permit 65000:2 0:152 0:185 route-map calculator permit 7516 match community 2_148_190 2_152_185 set community 0:28120 ip community-list standard 2_175_233 permit 65000:2 0:175 0:233 route-map calculator permit 7517 match community 2_175_233 set community 0:40775 ip community-list standard 2_143_221 permit 65000:2 0:143 0:221 ip community-list standard 2_169_187 permit 65000:2 0:169 0:187 route-map calculator permit 7518 match community 2_143_221 2_169_187 set community 0:31603 ip community-list standard 2_98_202 permit 65000:2 0:98 0:202 ip community-list standard 2_101_196 permit 65000:2 0:101 0:196 route-map calculator permit 7519 match community 2_98_202 2_101_196 set community 0:19796 ip community-list standard 2_190_224 permit 65000:2 0:190 0:224 route-map calculator permit 7520 match community 2_190_224 set community 0:42560 ip community-list standard 2_177_186 permit 65000:2 0:177 0:186 route-map calculator permit 7521 match community 2_177_186 set community 0:32922 ip community-list standard 1_1_249 permit 65000:1 0:1 0:249 ip community-list standard 2_1_250 permit 65000:2 0:1 0:250 ip community-list standard 2_2_125 permit 65000:2 0:2 0:125 ip community-list standard 1_2_248 permit 65000:1 0:2 0:248 ip community-list standard 1_3_247 permit 65000:1 0:3 0:247 ip community-list standard 1_4_246 permit 65000:1 0:4 0:246 ip community-list standard 2_5_50 permit 65000:2 0:5 0:50 ip community-list standard 1_5_245 permit 65000:1 0:5 0:245 ip community-list standard 1_6_244 permit 65000:1 0:6 0:244 ip community-list standard 1_7_243 permit 65000:1 0:7 0:243 ip community-list standard 1_8_242 permit 65000:1 0:8 0:242 ip community-list standard 1_9_241 permit 65000:1 0:9 0:241 ip community-list standard 2_10_25 permit 65000:2 0:10 0:25 ip community-list standard 1_10_240 permit 65000:1 0:10 0:240 ip community-list standard 1_11_239 permit 65000:1 0:11 0:239 ip community-list standard 1_12_238 permit 65000:1 0:12 0:238 ip community-list standard 1_13_237 permit 65000:1 0:13 0:237 ip community-list standard 1_14_236 permit 65000:1 0:14 0:236 ip community-list standard 1_15_235 permit 65000:1 0:15 0:235 ip community-list standard 1_16_234 permit 65000:1 0:16 0:234 ip community-list standard 1_17_233 permit 65000:1 0:17 0:233 ip community-list standard 1_18_232 permit 65000:1 0:18 0:232 ip community-list standard 1_19_231 permit 65000:1 0:19 0:231 ip community-list standard 1_20_230 permit 65000:1 0:20 0:230 ip community-list standard 1_21_229 permit 65000:1 0:21 0:229 ip community-list standard 1_22_228 permit 65000:1 0:22 0:228 ip community-list standard 1_23_227 permit 65000:1 0:23 0:227 ip community-list standard 1_24_226 permit 65000:1 0:24 0:226 ip community-list standard 1_25_225 permit 65000:1 0:25 0:225 ip community-list standard 1_26_224 permit 65000:1 0:26 0:224 ip community-list standard 1_27_223 permit 65000:1 0:27 0:223 ip community-list standard 1_28_222 permit 65000:1 0:28 0:222 ip community-list standard 1_29_221 permit 65000:1 0:29 0:221 ip community-list standard 1_30_220 permit 65000:1 0:30 0:220 ip community-list standard 1_31_219 permit 65000:1 0:31 0:219 ip community-list standard 1_32_218 permit 65000:1 0:32 0:218 ip community-list standard 1_33_217 permit 65000:1 0:33 0:217 ip community-list standard 1_34_216 permit 65000:1 0:34 0:216 ip community-list standard 1_35_215 permit 65000:1 0:35 0:215 ip community-list standard 1_36_214 permit 65000:1 0:36 0:214 ip community-list standard 1_37_213 permit 65000:1 0:37 0:213 ip community-list standard 1_38_212 permit 65000:1 0:38 0:212 ip community-list standard 1_39_211 permit 65000:1 0:39 0:211 ip community-list standard 1_40_210 permit 65000:1 0:40 0:210 ip community-list standard 1_41_209 permit 65000:1 0:41 0:209 ip community-list standard 1_42_208 permit 65000:1 0:42 0:208 ip community-list standard 1_43_207 permit 65000:1 0:43 0:207 ip community-list standard 1_44_206 permit 65000:1 0:44 0:206 ip community-list standard 1_45_205 permit 65000:1 0:45 0:205 ip community-list standard 1_46_204 permit 65000:1 0:46 0:204 ip community-list standard 1_47_203 permit 65000:1 0:47 0:203 ip community-list standard 1_48_202 permit 65000:1 0:48 0:202 ip community-list standard 1_49_201 permit 65000:1 0:49 0:201 ip community-list standard 1_50_200 permit 65000:1 0:50 0:200 ip community-list standard 1_51_199 permit 65000:1 0:51 0:199 ip community-list standard 1_52_198 permit 65000:1 0:52 0:198 ip community-list standard 1_53_197 permit 65000:1 0:53 0:197 ip community-list standard 1_54_196 permit 65000:1 0:54 0:196 ip community-list standard 1_55_195 permit 65000:1 0:55 0:195 ip community-list standard 1_56_194 permit 65000:1 0:56 0:194 ip community-list standard 1_57_193 permit 65000:1 0:57 0:193 ip community-list standard 1_58_192 permit 65000:1 0:58 0:192 ip community-list standard 1_59_191 permit 65000:1 0:59 0:191 ip community-list standard 1_60_190 permit 65000:1 0:60 0:190 ip community-list standard 1_61_189 permit 65000:1 0:61 0:189 ip community-list standard 1_62_188 permit 65000:1 0:62 0:188 ip community-list standard 1_63_187 permit 65000:1 0:63 0:187 ip community-list standard 1_64_186 permit 65000:1 0:64 0:186 ip community-list standard 1_65_185 permit 65000:1 0:65 0:185 ip community-list standard 1_66_184 permit 65000:1 0:66 0:184 ip community-list standard 1_67_183 permit 65000:1 0:67 0:183 ip community-list standard 1_68_182 permit 65000:1 0:68 0:182 ip community-list standard 1_69_181 permit 65000:1 0:69 0:181 ip community-list standard 1_70_180 permit 65000:1 0:70 0:180 ip community-list standard 1_71_179 permit 65000:1 0:71 0:179 ip community-list standard 1_72_178 permit 65000:1 0:72 0:178 ip community-list standard 1_73_177 permit 65000:1 0:73 0:177 ip community-list standard 1_74_176 permit 65000:1 0:74 0:176 ip community-list standard 1_75_175 permit 65000:1 0:75 0:175 ip community-list standard 1_76_174 permit 65000:1 0:76 0:174 ip community-list standard 1_77_173 permit 65000:1 0:77 0:173 ip community-list standard 1_78_172 permit 65000:1 0:78 0:172 ip community-list standard 1_79_171 permit 65000:1 0:79 0:171 ip community-list standard 1_80_170 permit 65000:1 0:80 0:170 ip community-list standard 1_81_169 permit 65000:1 0:81 0:169 ip community-list standard 1_82_168 permit 65000:1 0:82 0:168 ip community-list standard 1_83_167 permit 65000:1 0:83 0:167 ip community-list standard 1_84_166 permit 65000:1 0:84 0:166 ip community-list standard 1_85_165 permit 65000:1 0:85 0:165 ip community-list standard 1_86_164 permit 65000:1 0:86 0:164 ip community-list standard 1_87_163 permit 65000:1 0:87 0:163 ip community-list standard 1_88_162 permit 65000:1 0:88 0:162 ip community-list standard 1_89_161 permit 65000:1 0:89 0:161 ip community-list standard 1_90_160 permit 65000:1 0:90 0:160 ip community-list standard 1_91_159 permit 65000:1 0:91 0:159 ip community-list standard 1_92_158 permit 65000:1 0:92 0:158 ip community-list standard 1_93_157 permit 65000:1 0:93 0:157 ip community-list standard 1_94_156 permit 65000:1 0:94 0:156 ip community-list standard 1_95_155 permit 65000:1 0:95 0:155 ip community-list standard 1_96_154 permit 65000:1 0:96 0:154 ip community-list standard 1_97_153 permit 65000:1 0:97 0:153 ip community-list standard 1_98_152 permit 65000:1 0:98 0:152 ip community-list standard 1_99_151 permit 65000:1 0:99 0:151 ip community-list standard 1_100_150 permit 65000:1 0:100 0:150 ip community-list standard 1_101_149 permit 65000:1 0:101 0:149 ip community-list standard 1_102_148 permit 65000:1 0:102 0:148 ip community-list standard 1_103_147 permit 65000:1 0:103 0:147 ip community-list standard 1_104_146 permit 65000:1 0:104 0:146 ip community-list standard 1_105_145 permit 65000:1 0:105 0:145 ip community-list standard 1_106_144 permit 65000:1 0:106 0:144 ip community-list standard 1_107_143 permit 65000:1 0:107 0:143 ip community-list standard 1_108_142 permit 65000:1 0:108 0:142 ip community-list standard 1_109_141 permit 65000:1 0:109 0:141 ip community-list standard 1_110_140 permit 65000:1 0:110 0:140 ip community-list standard 1_111_139 permit 65000:1 0:111 0:139 ip community-list standard 1_112_138 permit 65000:1 0:112 0:138 ip community-list standard 1_113_137 permit 65000:1 0:113 0:137 ip community-list standard 1_114_136 permit 65000:1 0:114 0:136 ip community-list standard 1_115_135 permit 65000:1 0:115 0:135 ip community-list standard 1_116_134 permit 65000:1 0:116 0:134 ip community-list standard 1_117_133 permit 65000:1 0:117 0:133 ip community-list standard 1_118_132 permit 65000:1 0:118 0:132 ip community-list standard 1_119_131 permit 65000:1 0:119 0:131 ip community-list standard 1_120_130 permit 65000:1 0:120 0:130 ip community-list standard 1_121_129 permit 65000:1 0:121 0:129 ip community-list standard 1_122_128 permit 65000:1 0:122 0:128 ip community-list standard 1_123_127 permit 65000:1 0:123 0:127 ip community-list standard 1_124_126 permit 65000:1 0:124 0:126 ip community-list standard 1_125_125 permit 65000:1 0:125 0:125 ip community-list expanded c250 permit 1 ^65000:4_0:250_0:1$ ip community-list expanded c250 permit 2 ^65000:3_0:251_0:1$ ip community-list expanded c250 permit 3 ^65000:3_0:252_0:2$ ip community-list expanded c250 permit 4 ^65000:3_0:253_0:3$ ip community-list expanded c250 permit 5 ^65000:3_0:254_0:4$ ip community-list expanded c250 permit 6 ^65000:3_0:255_0:5$ ip community-list expanded c250 permit 7 ^65000:3_0:256_0:6$ route-map calculator permit 7522 match community 1_1_249 2_1_250 2_2_125 1_2_248 1_3_247 set community 0:250 route-map calculator permit 7523 match community 1_4_246 2_5_50 1_5_245 1_6_244 1_7_243 set community 0:250 route-map calculator permit 7524 match community 1_8_242 1_9_241 2_10_25 1_10_240 1_11_239 set community 0:250 route-map calculator permit 7525 match community 1_12_238 1_13_237 1_14_236 1_15_235 1_16_234 set community 0:250 route-map calculator permit 7526 match community 1_17_233 1_18_232 1_19_231 1_20_230 1_21_229 set community 0:250 route-map calculator permit 7527 match community 1_22_228 1_23_227 1_24_226 1_25_225 1_26_224 set community 0:250 route-map calculator permit 7528 match community 1_27_223 1_28_222 1_29_221 1_30_220 1_31_219 set community 0:250 route-map calculator permit 7529 match community 1_32_218 1_33_217 1_34_216 1_35_215 1_36_214 set community 0:250 route-map calculator permit 7530 match community 1_37_213 1_38_212 1_39_211 1_40_210 1_41_209 set community 0:250 route-map calculator permit 7531 match community 1_42_208 1_43_207 1_44_206 1_45_205 1_46_204 set community 0:250 route-map calculator permit 7532 match community 1_47_203 1_48_202 1_49_201 1_50_200 1_51_199 set community 0:250 route-map calculator permit 7533 match community 1_52_198 1_53_197 1_54_196 1_55_195 1_56_194 set community 0:250 route-map calculator permit 7534 match community 1_57_193 1_58_192 1_59_191 1_60_190 1_61_189 set community 0:250 route-map calculator permit 7535 match community 1_62_188 1_63_187 1_64_186 1_65_185 1_66_184 set community 0:250 route-map calculator permit 7536 match community 1_67_183 1_68_182 1_69_181 1_70_180 1_71_179 set community 0:250 route-map calculator permit 7537 match community 1_72_178 1_73_177 1_74_176 1_75_175 1_76_174 set community 0:250 route-map calculator permit 7538 match community 1_77_173 1_78_172 1_79_171 1_80_170 1_81_169 set community 0:250 route-map calculator permit 7539 match community 1_82_168 1_83_167 1_84_166 1_85_165 1_86_164 set community 0:250 route-map calculator permit 7540 match community 1_87_163 1_88_162 1_89_161 1_90_160 1_91_159 set community 0:250 route-map calculator permit 7541 match community 1_92_158 1_93_157 1_94_156 1_95_155 1_96_154 set community 0:250 route-map calculator permit 7542 match community 1_97_153 1_98_152 1_99_151 1_100_150 1_101_149 set community 0:250 route-map calculator permit 7543 match community 1_102_148 1_103_147 1_104_146 1_105_145 1_106_144 set community 0:250 route-map calculator permit 7544 match community 1_107_143 1_108_142 1_109_141 1_110_140 1_111_139 set community 0:250 route-map calculator permit 7545 match community 1_112_138 1_113_137 1_114_136 1_115_135 1_116_134 set community 0:250 route-map calculator permit 7546 match community 1_117_133 1_118_132 1_119_131 1_120_130 1_121_129 set community 0:250 route-map calculator permit 7547 match community 1_122_128 1_123_127 1_124_126 1_125_125 c4_250_1 set community 0:250 route-map calculator permit 7548 match community c3_251_1 c3_252_2 c3_253_3 c3_254_4 c3_255_5 set community 0:250 route-map calculator permit 7549 match community c3_256_6 set community 0:250 ip community-list standard 2_207_254 permit 65000:2 0:207 0:254 route-map calculator permit 7550 match community 2_207_254 set community 0:52578 ip community-list standard 2_208_256 permit 65000:2 0:208 0:256 route-map calculator permit 7551 match community 2_208_256 set community 0:53248 ip community-list standard 2_135_199 permit 65000:2 0:135 0:199 route-map calculator permit 7552 match community 2_135_199 set community 0:26865 ip community-list standard 2_17_200 permit 65000:2 0:17 0:200 ip community-list standard 2_20_170 permit 65000:2 0:20 0:170 ip community-list standard 2_25_136 permit 65000:2 0:25 0:136 ip community-list standard 2_34_100 permit 65000:2 0:34 0:100 ip community-list standard 2_40_85 permit 65000:2 0:40 0:85 ip community-list standard 2_50_68 permit 65000:2 0:50 0:68 route-map calculator permit 7553 match community 2_17_200 2_20_170 2_25_136 2_34_100 2_40_85 set community 0:3400 route-map calculator permit 7554 match community 2_50_68 set community 0:3400 ip community-list standard 2_251_251 permit 65000:2 0:251 0:251 route-map calculator permit 7555 match community 2_251_251 set community 0:63001 ip community-list standard 2_2_136 permit 65000:2 0:2 0:136 ip community-list standard 2_4_68 permit 65000:2 0:4 0:68 ip community-list standard 2_8_34 permit 65000:2 0:8 0:34 ip community-list standard 2_16_17 permit 65000:2 0:16 0:17 ip community-list standard 1_16_256 permit 65000:1 0:16 0:256 ip community-list standard 1_17_255 permit 65000:1 0:17 0:255 ip community-list standard 1_18_254 permit 65000:1 0:18 0:254 ip community-list standard 1_19_253 permit 65000:1 0:19 0:253 ip community-list standard 1_20_252 permit 65000:1 0:20 0:252 ip community-list standard 1_21_251 permit 65000:1 0:21 0:251 ip community-list standard 1_22_250 permit 65000:1 0:22 0:250 ip community-list standard 1_23_249 permit 65000:1 0:23 0:249 ip community-list standard 1_24_248 permit 65000:1 0:24 0:248 ip community-list standard 1_25_247 permit 65000:1 0:25 0:247 ip community-list standard 1_26_246 permit 65000:1 0:26 0:246 ip community-list standard 1_27_245 permit 65000:1 0:27 0:245 ip community-list standard 1_28_244 permit 65000:1 0:28 0:244 ip community-list standard 1_29_243 permit 65000:1 0:29 0:243 ip community-list standard 1_30_242 permit 65000:1 0:30 0:242 ip community-list standard 1_31_241 permit 65000:1 0:31 0:241 ip community-list standard 1_32_240 permit 65000:1 0:32 0:240 ip community-list standard 1_33_239 permit 65000:1 0:33 0:239 ip community-list standard 1_34_238 permit 65000:1 0:34 0:238 ip community-list standard 1_35_237 permit 65000:1 0:35 0:237 ip community-list standard 1_36_236 permit 65000:1 0:36 0:236 ip community-list standard 1_37_235 permit 65000:1 0:37 0:235 ip community-list standard 1_38_234 permit 65000:1 0:38 0:234 ip community-list standard 1_39_233 permit 65000:1 0:39 0:233 ip community-list standard 1_40_232 permit 65000:1 0:40 0:232 ip community-list standard 1_41_231 permit 65000:1 0:41 0:231 ip community-list standard 1_42_230 permit 65000:1 0:42 0:230 ip community-list standard 1_43_229 permit 65000:1 0:43 0:229 ip community-list standard 1_44_228 permit 65000:1 0:44 0:228 ip community-list standard 1_45_227 permit 65000:1 0:45 0:227 ip community-list standard 1_46_226 permit 65000:1 0:46 0:226 ip community-list standard 1_47_225 permit 65000:1 0:47 0:225 ip community-list standard 1_48_224 permit 65000:1 0:48 0:224 ip community-list standard 1_49_223 permit 65000:1 0:49 0:223 ip community-list standard 1_50_222 permit 65000:1 0:50 0:222 ip community-list standard 1_51_221 permit 65000:1 0:51 0:221 ip community-list standard 1_52_220 permit 65000:1 0:52 0:220 ip community-list standard 1_53_219 permit 65000:1 0:53 0:219 ip community-list standard 1_54_218 permit 65000:1 0:54 0:218 ip community-list standard 1_55_217 permit 65000:1 0:55 0:217 ip community-list standard 1_56_216 permit 65000:1 0:56 0:216 ip community-list standard 1_57_215 permit 65000:1 0:57 0:215 ip community-list standard 1_58_214 permit 65000:1 0:58 0:214 ip community-list standard 1_59_213 permit 65000:1 0:59 0:213 ip community-list standard 1_60_212 permit 65000:1 0:60 0:212 ip community-list standard 1_61_211 permit 65000:1 0:61 0:211 ip community-list standard 1_62_210 permit 65000:1 0:62 0:210 ip community-list standard 1_63_209 permit 65000:1 0:63 0:209 ip community-list standard 1_64_208 permit 65000:1 0:64 0:208 ip community-list standard 1_65_207 permit 65000:1 0:65 0:207 ip community-list standard 1_66_206 permit 65000:1 0:66 0:206 ip community-list standard 1_67_205 permit 65000:1 0:67 0:205 ip community-list standard 1_68_204 permit 65000:1 0:68 0:204 ip community-list standard 1_69_203 permit 65000:1 0:69 0:203 ip community-list standard 1_70_202 permit 65000:1 0:70 0:202 ip community-list standard 1_71_201 permit 65000:1 0:71 0:201 ip community-list standard 1_72_200 permit 65000:1 0:72 0:200 ip community-list standard 1_73_199 permit 65000:1 0:73 0:199 ip community-list standard 1_74_198 permit 65000:1 0:74 0:198 ip community-list standard 1_75_197 permit 65000:1 0:75 0:197 ip community-list standard 1_76_196 permit 65000:1 0:76 0:196 ip community-list standard 1_77_195 permit 65000:1 0:77 0:195 ip community-list standard 1_78_194 permit 65000:1 0:78 0:194 ip community-list standard 1_79_193 permit 65000:1 0:79 0:193 ip community-list standard 1_80_192 permit 65000:1 0:80 0:192 ip community-list standard 1_81_191 permit 65000:1 0:81 0:191 ip community-list standard 1_82_190 permit 65000:1 0:82 0:190 ip community-list standard 1_83_189 permit 65000:1 0:83 0:189 ip community-list standard 1_84_188 permit 65000:1 0:84 0:188 ip community-list standard 1_85_187 permit 65000:1 0:85 0:187 ip community-list standard 1_86_186 permit 65000:1 0:86 0:186 ip community-list standard 1_87_185 permit 65000:1 0:87 0:185 ip community-list standard 1_88_184 permit 65000:1 0:88 0:184 ip community-list standard 1_89_183 permit 65000:1 0:89 0:183 ip community-list standard 1_90_182 permit 65000:1 0:90 0:182 ip community-list standard 1_91_181 permit 65000:1 0:91 0:181 ip community-list standard 1_92_180 permit 65000:1 0:92 0:180 ip community-list standard 1_93_179 permit 65000:1 0:93 0:179 ip community-list standard 1_94_178 permit 65000:1 0:94 0:178 ip community-list standard 1_95_177 permit 65000:1 0:95 0:177 ip community-list standard 1_96_176 permit 65000:1 0:96 0:176 ip community-list standard 1_97_175 permit 65000:1 0:97 0:175 ip community-list standard 1_98_174 permit 65000:1 0:98 0:174 ip community-list standard 1_99_173 permit 65000:1 0:99 0:173 ip community-list standard 1_100_172 permit 65000:1 0:100 0:172 ip community-list standard 1_101_171 permit 65000:1 0:101 0:171 ip community-list standard 1_102_170 permit 65000:1 0:102 0:170 ip community-list standard 1_103_169 permit 65000:1 0:103 0:169 ip community-list standard 1_104_168 permit 65000:1 0:104 0:168 ip community-list standard 1_105_167 permit 65000:1 0:105 0:167 ip community-list standard 1_106_166 permit 65000:1 0:106 0:166 ip community-list standard 1_107_165 permit 65000:1 0:107 0:165 ip community-list standard 1_108_164 permit 65000:1 0:108 0:164 ip community-list standard 1_109_163 permit 65000:1 0:109 0:163 ip community-list standard 1_110_162 permit 65000:1 0:110 0:162 ip community-list standard 1_111_161 permit 65000:1 0:111 0:161 ip community-list standard 1_112_160 permit 65000:1 0:112 0:160 ip community-list standard 1_113_159 permit 65000:1 0:113 0:159 ip community-list standard 1_114_158 permit 65000:1 0:114 0:158 ip community-list standard 1_115_157 permit 65000:1 0:115 0:157 ip community-list standard 1_116_156 permit 65000:1 0:116 0:156 ip community-list standard 1_117_155 permit 65000:1 0:117 0:155 ip community-list standard 1_118_154 permit 65000:1 0:118 0:154 ip community-list standard 1_119_153 permit 65000:1 0:119 0:153 ip community-list standard 1_120_152 permit 65000:1 0:120 0:152 ip community-list standard 1_121_151 permit 65000:1 0:121 0:151 ip community-list standard 1_122_150 permit 65000:1 0:122 0:150 ip community-list standard 1_123_149 permit 65000:1 0:123 0:149 ip community-list standard 1_124_148 permit 65000:1 0:124 0:148 ip community-list standard 1_125_147 permit 65000:1 0:125 0:147 ip community-list standard 1_126_146 permit 65000:1 0:126 0:146 ip community-list standard 1_127_145 permit 65000:1 0:127 0:145 ip community-list standard 1_128_144 permit 65000:1 0:128 0:144 ip community-list standard 1_129_143 permit 65000:1 0:129 0:143 ip community-list standard 1_130_142 permit 65000:1 0:130 0:142 ip community-list standard 1_131_141 permit 65000:1 0:131 0:141 ip community-list standard 1_132_140 permit 65000:1 0:132 0:140 ip community-list standard 1_133_139 permit 65000:1 0:133 0:139 ip community-list standard 1_134_138 permit 65000:1 0:134 0:138 ip community-list standard 1_135_137 permit 65000:1 0:135 0:137 ip community-list standard 1_136_136 permit 65000:1 0:136 0:136 route-map calculator permit 7556 match community 2_2_136 2_4_68 2_8_34 2_16_17 1_16_256 set community 0:272 route-map calculator permit 7557 match community 1_17_255 1_18_254 1_19_253 1_20_252 1_21_251 set community 0:272 route-map calculator permit 7558 match community 1_22_250 1_23_249 1_24_248 1_25_247 1_26_246 set community 0:272 route-map calculator permit 7559 match community 1_27_245 1_28_244 1_29_243 1_30_242 1_31_241 set community 0:272 route-map calculator permit 7560 match community 1_32_240 1_33_239 1_34_238 1_35_237 1_36_236 set community 0:272 route-map calculator permit 7561 match community 1_37_235 1_38_234 1_39_233 1_40_232 1_41_231 set community 0:272 route-map calculator permit 7562 match community 1_42_230 1_43_229 1_44_228 1_45_227 1_46_226 set community 0:272 route-map calculator permit 7563 match community 1_47_225 1_48_224 1_49_223 1_50_222 1_51_221 set community 0:272 route-map calculator permit 7564 match community 1_52_220 1_53_219 1_54_218 1_55_217 1_56_216 set community 0:272 route-map calculator permit 7565 match community 1_57_215 1_58_214 1_59_213 1_60_212 1_61_211 set community 0:272 route-map calculator permit 7566 match community 1_62_210 1_63_209 1_64_208 1_65_207 1_66_206 set community 0:272 route-map calculator permit 7567 match community 1_67_205 1_68_204 1_69_203 1_70_202 1_71_201 set community 0:272 route-map calculator permit 7568 match community 1_72_200 1_73_199 1_74_198 1_75_197 1_76_196 set community 0:272 route-map calculator permit 7569 match community 1_77_195 1_78_194 1_79_193 1_80_192 1_81_191 set community 0:272 route-map calculator permit 7570 match community 1_82_190 1_83_189 1_84_188 1_85_187 1_86_186 set community 0:272 route-map calculator permit 7571 match community 1_87_185 1_88_184 1_89_183 1_90_182 1_91_181 set community 0:272 route-map calculator permit 7572 match community 1_92_180 1_93_179 1_94_178 1_95_177 1_96_176 set community 0:272 route-map calculator permit 7573 match community 1_97_175 1_98_174 1_99_173 1_100_172 1_101_171 set community 0:272 route-map calculator permit 7574 match community 1_102_170 1_103_169 1_104_168 1_105_167 1_106_166 set community 0:272 route-map calculator permit 7575 match community 1_107_165 1_108_164 1_109_163 1_110_162 1_111_161 set community 0:272 route-map calculator permit 7576 match community 1_112_160 1_113_159 1_114_158 1_115_157 1_116_156 set community 0:272 route-map calculator permit 7577 match community 1_117_155 1_118_154 1_119_153 1_120_152 1_121_151 set community 0:272 route-map calculator permit 7578 match community 1_122_150 1_123_149 1_124_148 1_125_147 1_126_146 set community 0:272 route-map calculator permit 7579 match community 1_127_145 1_128_144 1_129_143 1_130_142 1_131_141 set community 0:272 route-map calculator permit 7580 match community 1_132_140 1_133_139 1_134_138 1_135_137 1_136_136 set community 0:272 ip community-list standard 2_234_248 permit 65000:2 0:234 0:248 route-map calculator permit 7581 match community 2_234_248 set community 0:58032 ip community-list standard 2_92_194 permit 65000:2 0:92 0:194 ip community-list standard 2_97_184 permit 65000:2 0:97 0:184 route-map calculator permit 7582 match community 2_92_194 2_97_184 set community 0:17848 ip community-list standard 2_102_256 permit 65000:2 0:102 0:256 ip community-list standard 2_128_204 permit 65000:2 0:128 0:204 ip community-list standard 2_136_192 permit 65000:2 0:136 0:192 route-map calculator permit 7583 match community 2_102_256 2_128_204 2_136_192 set community 0:26112 ip community-list standard 2_81_255 permit 65000:2 0:81 0:255 ip community-list standard 2_85_243 permit 65000:2 0:85 0:243 ip community-list standard 2_135_153 permit 65000:2 0:135 0:153 route-map calculator permit 7584 match community 2_81_255 2_85_243 2_135_153 set community 0:20655 ip community-list standard 2_109_119 permit 65000:2 0:109 0:119 route-map calculator permit 7585 match community 2_109_119 set community 0:12971 ip community-list standard 2_41_209 permit 65000:2 0:41 0:209 route-map calculator permit 7586 match community 2_41_209 set community 0:8569 ip community-list standard 2_79_164 permit 65000:2 0:79 0:164 ip community-list standard 2_82_158 permit 65000:2 0:82 0:158 route-map calculator permit 7587 match community 2_79_164 2_82_158 set community 0:12956 ip community-list standard 2_195_231 permit 65000:2 0:195 0:231 route-map calculator permit 7588 match community 2_195_231 set community 0:45045 ip community-list standard 2_134_164 permit 65000:2 0:134 0:164 route-map calculator permit 7589 match community 2_134_164 set community 0:21976 ip community-list standard 2_26_197 permit 65000:2 0:26 0:197 route-map calculator permit 7590 match community 2_26_197 set community 0:5122 ip community-list standard 2_208_227 permit 65000:2 0:208 0:227 route-map calculator permit 7591 match community 2_208_227 set community 0:47216 ip community-list standard 2_226_236 permit 65000:2 0:226 0:236 route-map calculator permit 7592 match community 2_226_236 set community 0:53336 ip community-list standard 2_137_240 permit 65000:2 0:137 0:240 route-map calculator permit 7593 match community 2_137_240 set community 0:32880 ip community-list standard 2_141_203 permit 65000:2 0:141 0:203 route-map calculator permit 7594 match community 2_141_203 set community 0:28623 ip community-list standard 2_93_194 permit 65000:2 0:93 0:194 ip community-list standard 2_97_186 permit 65000:2 0:97 0:186 route-map calculator permit 7595 match community 2_93_194 2_97_186 set community 0:18042 ip community-list standard 2_67_107 permit 65000:2 0:67 0:107 route-map calculator permit 7596 match community 2_67_107 set community 0:7169 ip community-list standard 2_67_237 permit 65000:2 0:67 0:237 ip community-list standard 2_79_201 permit 65000:2 0:79 0:201 route-map calculator permit 7597 match community 2_67_237 2_79_201 set community 0:15879 ip community-list standard 2_37_118 permit 65000:2 0:37 0:118 ip community-list standard 2_59_74 permit 65000:2 0:59 0:74 route-map calculator permit 7598 match community 2_37_118 2_59_74 set community 0:4366 ip community-list standard 2_19_251 permit 65000:2 0:19 0:251 route-map calculator permit 7599 match community 2_19_251 set community 0:4769 ip community-list standard 2_111_193 permit 65000:2 0:111 0:193 route-map calculator permit 7600 match community 2_111_193 set community 0:21423 ip community-list standard 2_97_242 permit 65000:2 0:97 0:242 ip community-list standard 2_121_194 permit 65000:2 0:121 0:194 route-map calculator permit 7601 match community 2_97_242 2_121_194 set community 0:23474 ip community-list standard 2_69_208 permit 65000:2 0:69 0:208 ip community-list standard 2_78_184 permit 65000:2 0:78 0:184 ip community-list standard 2_92_156 permit 65000:2 0:92 0:156 ip community-list standard 2_104_138 permit 65000:2 0:104 0:138 route-map calculator permit 7602 match community 2_69_208 2_78_184 2_92_156 2_104_138 set community 0:14352 ip community-list standard 2_57_254 permit 65000:2 0:57 0:254 ip community-list standard 2_114_127 permit 65000:2 0:114 0:127 route-map calculator permit 7603 match community 2_57_254 2_114_127 set community 0:14478 ip community-list standard 2_130_134 permit 65000:2 0:130 0:134 route-map calculator permit 7604 match community 2_130_134 set community 0:17420 ip community-list standard 2_5_101 permit 65000:2 0:5 0:101 ip community-list standard 1_249_256 permit 65000:1 0:249 0:256 ip community-list standard 1_250_255 permit 65000:1 0:250 0:255 ip community-list standard 1_251_254 permit 65000:1 0:251 0:254 ip community-list standard 1_252_253 permit 65000:1 0:252 0:253 route-map calculator permit 7605 match community 2_5_101 1_249_256 1_250_255 1_251_254 1_252_253 set community 0:505 ip community-list standard 2_22_142 permit 65000:2 0:22 0:142 ip community-list standard 2_44_71 permit 65000:2 0:44 0:71 route-map calculator permit 7606 match community 2_22_142 2_44_71 set community 0:3124 ip community-list standard 2_143_256 permit 65000:2 0:143 0:256 ip community-list standard 2_176_208 permit 65000:2 0:176 0:208 route-map calculator permit 7607 match community 2_143_256 2_176_208 set community 0:36608 ip community-list standard 2_70_193 permit 65000:2 0:70 0:193 route-map calculator permit 7608 match community 2_70_193 set community 0:13510 ip community-list standard 2_141_243 permit 65000:2 0:141 0:243 route-map calculator permit 7609 match community 2_141_243 set community 0:34263 ip community-list standard 2_55_252 permit 65000:2 0:55 0:252 ip community-list standard 2_60_231 permit 65000:2 0:60 0:231 ip community-list standard 2_63_220 permit 65000:2 0:63 0:220 ip community-list standard 2_66_210 permit 65000:2 0:66 0:210 ip community-list standard 2_70_198 permit 65000:2 0:70 0:198 ip community-list standard 2_77_180 permit 65000:2 0:77 0:180 ip community-list standard 2_84_165 permit 65000:2 0:84 0:165 ip community-list standard 2_90_154 permit 65000:2 0:90 0:154 ip community-list standard 2_99_140 permit 65000:2 0:99 0:140 ip community-list standard 2_105_132 permit 65000:2 0:105 0:132 ip community-list standard 2_110_126 permit 65000:2 0:110 0:126 route-map calculator permit 7610 match community 2_55_252 2_60_231 2_63_220 2_66_210 2_70_198 set community 0:13860 route-map calculator permit 7611 match community 2_77_180 2_84_165 2_90_154 2_99_140 2_105_132 set community 0:13860 route-map calculator permit 7612 match community 2_110_126 set community 0:13860 ip community-list standard 2_35_193 permit 65000:2 0:35 0:193 route-map calculator permit 7613 match community 2_35_193 set community 0:6755 ip community-list standard 2_201_238 permit 65000:2 0:201 0:238 route-map calculator permit 7614 match community 2_201_238 set community 0:47838 ip community-list standard 2_52_242 permit 65000:2 0:52 0:242 ip community-list standard 2_88_143 permit 65000:2 0:88 0:143 ip community-list standard 2_104_121 permit 65000:2 0:104 0:121 route-map calculator permit 7615 match community 2_52_242 2_88_143 2_104_121 set community 0:12584 ip community-list standard 2_117_131 permit 65000:2 0:117 0:131 route-map calculator permit 7616 match community 2_117_131 set community 0:15327 ip community-list standard 2_6_182 permit 65000:2 0:6 0:182 ip community-list standard 2_7_156 permit 65000:2 0:7 0:156 ip community-list standard 2_12_91 permit 65000:2 0:12 0:91 ip community-list standard 2_13_84 permit 65000:2 0:13 0:84 ip community-list standard 2_14_78 permit 65000:2 0:14 0:78 ip community-list standard 2_21_52 permit 65000:2 0:21 0:52 ip community-list standard 2_26_42 permit 65000:2 0:26 0:42 ip community-list standard 2_28_39 permit 65000:2 0:28 0:39 route-map calculator permit 7617 match community 2_6_182 2_7_156 2_12_91 2_13_84 2_14_78 set community 0:1092 route-map calculator permit 7618 match community 2_21_52 2_26_42 2_28_39 set community 0:1092 ip community-list standard 2_59_142 permit 65000:2 0:59 0:142 ip community-list standard 2_71_118 permit 65000:2 0:71 0:118 route-map calculator permit 7619 match community 2_59_142 2_71_118 set community 0:8378 ip community-list standard 2_60_131 permit 65000:2 0:60 0:131 route-map calculator permit 7620 match community 2_60_131 set community 0:7860 ip community-list standard 2_178_188 permit 65000:2 0:178 0:188 route-map calculator permit 7621 match community 2_178_188 set community 0:33464 ip community-list standard 2_43_127 permit 65000:2 0:43 0:127 route-map calculator permit 7622 match community 2_43_127 set community 0:5461 ip community-list standard 2_33_215 permit 65000:2 0:33 0:215 ip community-list standard 2_43_165 permit 65000:2 0:43 0:165 ip community-list standard 2_55_129 permit 65000:2 0:55 0:129 route-map calculator permit 7623 match community 2_33_215 2_43_165 2_55_129 set community 0:7095 ip community-list standard 2_165_241 permit 65000:2 0:165 0:241 route-map calculator permit 7624 match community 2_165_241 set community 0:39765 ip community-list standard 2_107_127 permit 65000:2 0:107 0:127 route-map calculator permit 7625 match community 2_107_127 set community 0:13589 ip community-list standard 2_21_203 permit 65000:2 0:21 0:203 ip community-list standard 2_29_147 permit 65000:2 0:29 0:147 ip community-list standard 2_49_87 permit 65000:2 0:49 0:87 route-map calculator permit 7626 match community 2_21_203 2_29_147 2_49_87 set community 0:4263 ip community-list standard 2_2_187 permit 65000:2 0:2 0:187 ip community-list standard 2_11_34 permit 65000:2 0:11 0:34 ip community-list standard 2_17_22 permit 65000:2 0:17 0:22 ip community-list standard 1_118_256 permit 65000:1 0:118 0:256 ip community-list standard 1_119_255 permit 65000:1 0:119 0:255 ip community-list standard 1_120_254 permit 65000:1 0:120 0:254 ip community-list standard 1_121_253 permit 65000:1 0:121 0:253 ip community-list standard 1_122_252 permit 65000:1 0:122 0:252 ip community-list standard 1_123_251 permit 65000:1 0:123 0:251 ip community-list standard 1_124_250 permit 65000:1 0:124 0:250 ip community-list standard 1_125_249 permit 65000:1 0:125 0:249 ip community-list standard 1_126_248 permit 65000:1 0:126 0:248 ip community-list standard 1_127_247 permit 65000:1 0:127 0:247 ip community-list standard 1_128_246 permit 65000:1 0:128 0:246 ip community-list standard 1_129_245 permit 65000:1 0:129 0:245 ip community-list standard 1_130_244 permit 65000:1 0:130 0:244 ip community-list standard 1_131_243 permit 65000:1 0:131 0:243 ip community-list standard 1_132_242 permit 65000:1 0:132 0:242 ip community-list standard 1_133_241 permit 65000:1 0:133 0:241 ip community-list standard 1_134_240 permit 65000:1 0:134 0:240 ip community-list standard 1_135_239 permit 65000:1 0:135 0:239 ip community-list standard 1_136_238 permit 65000:1 0:136 0:238 ip community-list standard 1_137_237 permit 65000:1 0:137 0:237 ip community-list standard 1_138_236 permit 65000:1 0:138 0:236 ip community-list standard 1_139_235 permit 65000:1 0:139 0:235 ip community-list standard 1_140_234 permit 65000:1 0:140 0:234 ip community-list standard 1_141_233 permit 65000:1 0:141 0:233 ip community-list standard 1_142_232 permit 65000:1 0:142 0:232 ip community-list standard 1_143_231 permit 65000:1 0:143 0:231 ip community-list standard 1_144_230 permit 65000:1 0:144 0:230 ip community-list standard 1_145_229 permit 65000:1 0:145 0:229 ip community-list standard 1_146_228 permit 65000:1 0:146 0:228 ip community-list standard 1_147_227 permit 65000:1 0:147 0:227 ip community-list standard 1_148_226 permit 65000:1 0:148 0:226 ip community-list standard 1_149_225 permit 65000:1 0:149 0:225 ip community-list standard 1_150_224 permit 65000:1 0:150 0:224 ip community-list standard 1_151_223 permit 65000:1 0:151 0:223 ip community-list standard 1_152_222 permit 65000:1 0:152 0:222 ip community-list standard 1_153_221 permit 65000:1 0:153 0:221 ip community-list standard 1_154_220 permit 65000:1 0:154 0:220 ip community-list standard 1_155_219 permit 65000:1 0:155 0:219 ip community-list standard 1_156_218 permit 65000:1 0:156 0:218 ip community-list standard 1_157_217 permit 65000:1 0:157 0:217 ip community-list standard 1_158_216 permit 65000:1 0:158 0:216 ip community-list standard 1_159_215 permit 65000:1 0:159 0:215 ip community-list standard 1_160_214 permit 65000:1 0:160 0:214 ip community-list standard 1_161_213 permit 65000:1 0:161 0:213 ip community-list standard 1_162_212 permit 65000:1 0:162 0:212 ip community-list standard 1_163_211 permit 65000:1 0:163 0:211 ip community-list standard 1_164_210 permit 65000:1 0:164 0:210 ip community-list standard 1_165_209 permit 65000:1 0:165 0:209 ip community-list standard 1_166_208 permit 65000:1 0:166 0:208 ip community-list standard 1_167_207 permit 65000:1 0:167 0:207 ip community-list standard 1_168_206 permit 65000:1 0:168 0:206 ip community-list standard 1_169_205 permit 65000:1 0:169 0:205 ip community-list standard 1_170_204 permit 65000:1 0:170 0:204 ip community-list standard 1_171_203 permit 65000:1 0:171 0:203 ip community-list standard 1_172_202 permit 65000:1 0:172 0:202 ip community-list standard 1_173_201 permit 65000:1 0:173 0:201 ip community-list standard 1_174_200 permit 65000:1 0:174 0:200 ip community-list standard 1_175_199 permit 65000:1 0:175 0:199 ip community-list standard 1_176_198 permit 65000:1 0:176 0:198 ip community-list standard 1_177_197 permit 65000:1 0:177 0:197 ip community-list standard 1_178_196 permit 65000:1 0:178 0:196 ip community-list standard 1_179_195 permit 65000:1 0:179 0:195 ip community-list standard 1_180_194 permit 65000:1 0:180 0:194 ip community-list standard 1_181_193 permit 65000:1 0:181 0:193 ip community-list standard 1_182_192 permit 65000:1 0:182 0:192 ip community-list standard 1_183_191 permit 65000:1 0:183 0:191 ip community-list standard 1_184_190 permit 65000:1 0:184 0:190 ip community-list standard 1_185_189 permit 65000:1 0:185 0:189 ip community-list standard 1_186_188 permit 65000:1 0:186 0:188 ip community-list standard 1_187_187 permit 65000:1 0:187 0:187 route-map calculator permit 7627 match community 2_2_187 2_11_34 2_17_22 1_118_256 1_119_255 set community 0:374 route-map calculator permit 7628 match community 1_120_254 1_121_253 1_122_252 1_123_251 1_124_250 set community 0:374 route-map calculator permit 7629 match community 1_125_249 1_126_248 1_127_247 1_128_246 1_129_245 set community 0:374 route-map calculator permit 7630 match community 1_130_244 1_131_243 1_132_242 1_133_241 1_134_240 set community 0:374 route-map calculator permit 7631 match community 1_135_239 1_136_238 1_137_237 1_138_236 1_139_235 set community 0:374 route-map calculator permit 7632 match community 1_140_234 1_141_233 1_142_232 1_143_231 1_144_230 set community 0:374 route-map calculator permit 7633 match community 1_145_229 1_146_228 1_147_227 1_148_226 1_149_225 set community 0:374 route-map calculator permit 7634 match community 1_150_224 1_151_223 1_152_222 1_153_221 1_154_220 set community 0:374 route-map calculator permit 7635 match community 1_155_219 1_156_218 1_157_217 1_158_216 1_159_215 set community 0:374 route-map calculator permit 7636 match community 1_160_214 1_161_213 1_162_212 1_163_211 1_164_210 set community 0:374 route-map calculator permit 7637 match community 1_165_209 1_166_208 1_167_207 1_168_206 1_169_205 set community 0:374 route-map calculator permit 7638 match community 1_170_204 1_171_203 1_172_202 1_173_201 1_174_200 set community 0:374 route-map calculator permit 7639 match community 1_175_199 1_176_198 1_177_197 1_178_196 1_179_195 set community 0:374 route-map calculator permit 7640 match community 1_180_194 1_181_193 1_182_192 1_183_191 1_184_190 set community 0:374 route-map calculator permit 7641 match community 1_185_189 1_186_188 1_187_187 set community 0:374 ip community-list standard 2_237_245 permit 65000:2 0:237 0:245 route-map calculator permit 7642 match community 2_237_245 set community 0:58065 ip community-list standard 2_92_211 permit 65000:2 0:92 0:211 route-map calculator permit 7643 match community 2_92_211 set community 0:19412 ip community-list standard 2_90_149 permit 65000:2 0:90 0:149 route-map calculator permit 7644 match community 2_90_149 set community 0:13410 ip community-list standard 2_163_246 permit 65000:2 0:163 0:246 route-map calculator permit 7645 match community 2_163_246 set community 0:40098 ip community-list standard 2_169_199 permit 65000:2 0:169 0:199 route-map calculator permit 7646 match community 2_169_199 set community 0:33631 ip community-list standard 2_143_197 permit 65000:2 0:143 0:197 route-map calculator permit 7647 match community 2_143_197 set community 0:28171 ip community-list standard 2_123_219 permit 65000:2 0:123 0:219 route-map calculator permit 7648 match community 2_123_219 set community 0:26937 ip community-list standard 2_10_157 permit 65000:2 0:10 0:157 route-map calculator permit 7649 match community 2_10_157 set community 0:1570 ip community-list standard 2_118_195 permit 65000:2 0:118 0:195 ip community-list standard 2_130_177 permit 65000:2 0:130 0:177 route-map calculator permit 7650 match community 2_118_195 2_130_177 set community 0:23010 ip community-list standard 2_200_223 permit 65000:2 0:200 0:223 route-map calculator permit 7651 match community 2_200_223 set community 0:44600 ip community-list standard 2_103_147 permit 65000:2 0:103 0:147 route-map calculator permit 7652 match community 2_103_147 set community 0:15141 ip community-list standard 2_76_149 permit 65000:2 0:76 0:149 route-map calculator permit 7653 match community 2_76_149 set community 0:11324 ip community-list standard 2_194_244 permit 65000:2 0:194 0:244 route-map calculator permit 7654 match community 2_194_244 set community 0:47336 ip community-list standard 2_178_208 permit 65000:2 0:178 0:208 route-map calculator permit 7655 match community 2_178_208 set community 0:37024 ip community-list standard 2_236_248 permit 65000:2 0:236 0:248 route-map calculator permit 7656 match community 2_236_248 set community 0:58528 ip community-list standard 2_75_232 permit 65000:2 0:75 0:232 ip community-list standard 2_87_200 permit 65000:2 0:87 0:200 ip community-list standard 2_100_174 permit 65000:2 0:100 0:174 ip community-list standard 2_116_150 permit 65000:2 0:116 0:150 ip community-list standard 2_120_145 permit 65000:2 0:120 0:145 route-map calculator permit 7657 match community 2_75_232 2_87_200 2_100_174 2_116_150 2_120_145 set community 0:17400 ip community-list standard 2_14_194 permit 65000:2 0:14 0:194 ip community-list standard 2_28_97 permit 65000:2 0:28 0:97 route-map calculator permit 7658 match community 2_14_194 2_28_97 set community 0:2716 ip community-list standard 2_99_169 permit 65000:2 0:99 0:169 ip community-list standard 2_117_143 permit 65000:2 0:117 0:143 route-map calculator permit 7659 match community 2_99_169 2_117_143 set community 0:16731 ip community-list standard 2_214_245 permit 65000:2 0:214 0:245 route-map calculator permit 7660 match community 2_214_245 set community 0:52430 ip community-list standard 2_25_97 permit 65000:2 0:25 0:97 route-map calculator permit 7661 match community 2_25_97 set community 0:2425 ip community-list standard 2_34_151 permit 65000:2 0:34 0:151 route-map calculator permit 7662 match community 2_34_151 set community 0:5134 ip community-list standard 2_137_228 permit 65000:2 0:137 0:228 route-map calculator permit 7663 match community 2_137_228 set community 0:31236 ip community-list standard 2_127_243 permit 65000:2 0:127 0:243 route-map calculator permit 7664 match community 2_127_243 set community 0:30861 ip community-list standard 2_77_253 permit 65000:2 0:77 0:253 ip community-list standard 2_121_161 permit 65000:2 0:121 0:161 route-map calculator permit 7665 match community 2_77_253 2_121_161 set community 0:19481 ip community-list standard 2_51_228 permit 65000:2 0:51 0:228 ip community-list standard 2_57_204 permit 65000:2 0:57 0:204 ip community-list standard 2_68_171 permit 65000:2 0:68 0:171 ip community-list standard 2_76_153 permit 65000:2 0:76 0:153 ip community-list standard 2_102_114 permit 65000:2 0:102 0:114 route-map calculator permit 7666 match community 2_51_228 2_57_204 2_68_171 2_76_153 2_102_114 set community 0:11628 ip community-list standard 2_41_158 permit 65000:2 0:41 0:158 ip community-list standard 2_79_82 permit 65000:2 0:79 0:82 route-map calculator permit 7667 match community 2_41_158 2_79_82 set community 0:6478 ip community-list standard 2_68_247 permit 65000:2 0:68 0:247 ip community-list standard 2_76_221 permit 65000:2 0:76 0:221 route-map calculator permit 7668 match community 2_68_247 2_76_221 set community 0:16796 ip community-list standard 2_212_231 permit 65000:2 0:212 0:231 route-map calculator permit 7669 match community 2_212_231 set community 0:48972 ip community-list standard 2_205_226 permit 65000:2 0:205 0:226 route-map calculator permit 7670 match community 2_205_226 set community 0:46330 ip community-list standard 2_106_151 permit 65000:2 0:106 0:151 route-map calculator permit 7671 match community 2_106_151 set community 0:16006 ip community-list standard 2_8_229 permit 65000:2 0:8 0:229 route-map calculator permit 7672 match community 2_8_229 set community 0:1832 ip community-list standard 2_224_229 permit 65000:2 0:224 0:229 route-map calculator permit 7673 match community 2_224_229 set community 0:51296 ip community-list standard 2_23_256 permit 65000:2 0:23 0:256 ip community-list standard 2_32_184 permit 65000:2 0:32 0:184 ip community-list standard 2_46_128 permit 65000:2 0:46 0:128 ip community-list standard 2_64_92 permit 65000:2 0:64 0:92 route-map calculator permit 7674 match community 2_23_256 2_32_184 2_46_128 2_64_92 set community 0:5888 ip community-list standard 2_168_253 permit 65000:2 0:168 0:253 ip community-list standard 2_184_231 permit 65000:2 0:184 0:231 route-map calculator permit 7675 match community 2_168_253 2_184_231 set community 0:42504 ip community-list standard 2_113_223 permit 65000:2 0:113 0:223 route-map calculator permit 7676 match community 2_113_223 set community 0:25199 ip community-list standard 2_9_235 permit 65000:2 0:9 0:235 ip community-list standard 2_15_141 permit 65000:2 0:15 0:141 ip community-list standard 2_45_47 permit 65000:2 0:45 0:47 route-map calculator permit 7677 match community 2_9_235 2_15_141 2_45_47 set community 0:2115 ip community-list standard 2_137_214 permit 65000:2 0:137 0:214 route-map calculator permit 7678 match community 2_137_214 set community 0:29318 ip community-list standard 2_37_197 permit 65000:2 0:37 0:197 route-map calculator permit 7679 match community 2_37_197 set community 0:7289 ip community-list standard 2_171_205 permit 65000:2 0:171 0:205 route-map calculator permit 7680 match community 2_171_205 set community 0:35055 ip community-list standard 2_34_256 permit 65000:2 0:34 0:256 ip community-list standard 2_64_136 permit 65000:2 0:64 0:136 ip community-list standard 2_68_128 permit 65000:2 0:68 0:128 route-map calculator permit 7681 match community 2_34_256 2_64_136 2_68_128 set community 0:8704 ip community-list standard 2_131_223 permit 65000:2 0:131 0:223 route-map calculator permit 7682 match community 2_131_223 set community 0:29213 ip community-list standard 2_47_47 permit 65000:2 0:47 0:47 route-map calculator permit 7683 match community 2_47_47 set community 0:2209 ip community-list standard 2_163_195 permit 65000:2 0:163 0:195 route-map calculator permit 7684 match community 2_163_195 set community 0:31785 ip community-list standard 2_162_211 permit 65000:2 0:162 0:211 route-map calculator permit 7685 match community 2_162_211 set community 0:34182 ip community-list standard 1_1_122 permit 65000:1 0:1 0:122 ip community-list standard 2_1_123 permit 65000:2 0:1 0:123 ip community-list standard 1_2_121 permit 65000:1 0:2 0:121 ip community-list standard 2_3_41 permit 65000:2 0:3 0:41 ip community-list standard 1_3_120 permit 65000:1 0:3 0:120 ip community-list standard 1_4_119 permit 65000:1 0:4 0:119 ip community-list standard 1_5_118 permit 65000:1 0:5 0:118 ip community-list standard 1_6_117 permit 65000:1 0:6 0:117 ip community-list standard 1_7_116 permit 65000:1 0:7 0:116 ip community-list standard 1_8_115 permit 65000:1 0:8 0:115 ip community-list standard 1_9_114 permit 65000:1 0:9 0:114 ip community-list standard 1_10_113 permit 65000:1 0:10 0:113 ip community-list standard 1_11_112 permit 65000:1 0:11 0:112 ip community-list standard 1_12_111 permit 65000:1 0:12 0:111 ip community-list standard 1_13_110 permit 65000:1 0:13 0:110 ip community-list standard 1_14_109 permit 65000:1 0:14 0:109 ip community-list standard 1_15_108 permit 65000:1 0:15 0:108 ip community-list standard 1_16_107 permit 65000:1 0:16 0:107 ip community-list standard 1_17_106 permit 65000:1 0:17 0:106 ip community-list standard 1_18_105 permit 65000:1 0:18 0:105 ip community-list standard 1_19_104 permit 65000:1 0:19 0:104 ip community-list standard 1_20_103 permit 65000:1 0:20 0:103 ip community-list standard 1_21_102 permit 65000:1 0:21 0:102 ip community-list standard 1_22_101 permit 65000:1 0:22 0:101 ip community-list standard 1_23_100 permit 65000:1 0:23 0:100 ip community-list standard 1_24_99 permit 65000:1 0:24 0:99 ip community-list standard 1_25_98 permit 65000:1 0:25 0:98 ip community-list standard 1_26_97 permit 65000:1 0:26 0:97 ip community-list standard 1_27_96 permit 65000:1 0:27 0:96 ip community-list standard 1_28_95 permit 65000:1 0:28 0:95 ip community-list standard 1_29_94 permit 65000:1 0:29 0:94 ip community-list standard 1_30_93 permit 65000:1 0:30 0:93 ip community-list standard 1_31_92 permit 65000:1 0:31 0:92 ip community-list standard 1_32_91 permit 65000:1 0:32 0:91 ip community-list standard 1_33_90 permit 65000:1 0:33 0:90 ip community-list standard 1_34_89 permit 65000:1 0:34 0:89 ip community-list standard 1_35_88 permit 65000:1 0:35 0:88 ip community-list standard 1_36_87 permit 65000:1 0:36 0:87 ip community-list standard 1_37_86 permit 65000:1 0:37 0:86 ip community-list standard 1_38_85 permit 65000:1 0:38 0:85 ip community-list standard 1_39_84 permit 65000:1 0:39 0:84 ip community-list standard 1_40_83 permit 65000:1 0:40 0:83 ip community-list standard 1_41_82 permit 65000:1 0:41 0:82 ip community-list standard 1_42_81 permit 65000:1 0:42 0:81 ip community-list standard 1_43_80 permit 65000:1 0:43 0:80 ip community-list standard 1_44_79 permit 65000:1 0:44 0:79 ip community-list standard 1_45_78 permit 65000:1 0:45 0:78 ip community-list standard 1_46_77 permit 65000:1 0:46 0:77 ip community-list standard 1_47_76 permit 65000:1 0:47 0:76 ip community-list standard 1_48_75 permit 65000:1 0:48 0:75 ip community-list standard 1_49_74 permit 65000:1 0:49 0:74 ip community-list standard 1_50_73 permit 65000:1 0:50 0:73 ip community-list standard 1_51_72 permit 65000:1 0:51 0:72 ip community-list standard 1_52_71 permit 65000:1 0:52 0:71 ip community-list standard 1_53_70 permit 65000:1 0:53 0:70 ip community-list standard 1_54_69 permit 65000:1 0:54 0:69 ip community-list standard 1_55_68 permit 65000:1 0:55 0:68 ip community-list standard 1_56_67 permit 65000:1 0:56 0:67 ip community-list standard 1_57_66 permit 65000:1 0:57 0:66 ip community-list standard 1_58_65 permit 65000:1 0:58 0:65 ip community-list standard 1_59_64 permit 65000:1 0:59 0:64 ip community-list standard 1_60_63 permit 65000:1 0:60 0:63 ip community-list standard 1_61_62 permit 65000:1 0:61 0:62 ip community-list expanded c123 permit 1 ^65000:4_0:123_0:1$ ip community-list expanded c123 permit 2 ^65000:3_0:124_0:1$ ip community-list expanded c123 permit 3 ^65000:3_0:125_0:2$ ip community-list expanded c123 permit 4 ^65000:3_0:126_0:3$ ip community-list expanded c123 permit 5 ^65000:3_0:127_0:4$ ip community-list expanded c123 permit 6 ^65000:3_0:128_0:5$ ip community-list expanded c123 permit 7 ^65000:3_0:129_0:6$ ip community-list expanded c123 permit 8 ^65000:3_0:130_0:7$ ip community-list expanded c123 permit 9 ^65000:3_0:131_0:8$ ip community-list expanded c123 permit 10 ^65000:3_0:132_0:9$ ip community-list expanded c123 permit 11 ^65000:3_0:133_0:10$ ip community-list expanded c123 permit 12 ^65000:3_0:134_0:11$ ip community-list expanded c123 permit 13 ^65000:3_0:135_0:12$ ip community-list expanded c123 permit 14 ^65000:3_0:136_0:13$ ip community-list expanded c123 permit 15 ^65000:3_0:137_0:14$ ip community-list expanded c123 permit 16 ^65000:3_0:138_0:15$ ip community-list expanded c123 permit 17 ^65000:3_0:139_0:16$ ip community-list expanded c123 permit 18 ^65000:3_0:140_0:17$ ip community-list expanded c123 permit 19 ^65000:3_0:141_0:18$ ip community-list expanded c123 permit 20 ^65000:3_0:142_0:19$ ip community-list expanded c123 permit 21 ^65000:3_0:143_0:20$ ip community-list expanded c123 permit 22 ^65000:3_0:144_0:21$ ip community-list expanded c123 permit 23 ^65000:3_0:145_0:22$ ip community-list expanded c123 permit 24 ^65000:3_0:146_0:23$ ip community-list expanded c123 permit 25 ^65000:3_0:147_0:24$ ip community-list expanded c123 permit 26 ^65000:3_0:148_0:25$ ip community-list expanded c123 permit 27 ^65000:3_0:149_0:26$ ip community-list expanded c123 permit 28 ^65000:3_0:150_0:27$ ip community-list expanded c123 permit 29 ^65000:3_0:151_0:28$ ip community-list expanded c123 permit 30 ^65000:3_0:152_0:29$ ip community-list expanded c123 permit 31 ^65000:3_0:153_0:30$ ip community-list expanded c123 permit 32 ^65000:3_0:154_0:31$ ip community-list expanded c123 permit 33 ^65000:3_0:155_0:32$ ip community-list expanded c123 permit 34 ^65000:3_0:156_0:33$ ip community-list expanded c123 permit 35 ^65000:3_0:157_0:34$ ip community-list expanded c123 permit 36 ^65000:3_0:158_0:35$ ip community-list expanded c123 permit 37 ^65000:3_0:159_0:36$ ip community-list expanded c123 permit 38 ^65000:3_0:160_0:37$ ip community-list expanded c123 permit 39 ^65000:3_0:161_0:38$ ip community-list expanded c123 permit 40 ^65000:3_0:162_0:39$ ip community-list expanded c123 permit 41 ^65000:3_0:163_0:40$ ip community-list expanded c123 permit 42 ^65000:3_0:164_0:41$ ip community-list expanded c123 permit 43 ^65000:3_0:165_0:42$ ip community-list expanded c123 permit 44 ^65000:3_0:166_0:43$ ip community-list expanded c123 permit 45 ^65000:3_0:167_0:44$ ip community-list expanded c123 permit 46 ^65000:3_0:168_0:45$ ip community-list expanded c123 permit 47 ^65000:3_0:169_0:46$ ip community-list expanded c123 permit 48 ^65000:3_0:170_0:47$ ip community-list expanded c123 permit 49 ^65000:3_0:171_0:48$ ip community-list expanded c123 permit 50 ^65000:3_0:172_0:49$ ip community-list expanded c123 permit 51 ^65000:3_0:173_0:50$ ip community-list expanded c123 permit 52 ^65000:3_0:174_0:51$ ip community-list expanded c123 permit 53 ^65000:3_0:175_0:52$ ip community-list expanded c123 permit 54 ^65000:3_0:176_0:53$ ip community-list expanded c123 permit 55 ^65000:3_0:177_0:54$ ip community-list expanded c123 permit 56 ^65000:3_0:178_0:55$ ip community-list expanded c123 permit 57 ^65000:3_0:179_0:56$ ip community-list expanded c123 permit 58 ^65000:3_0:180_0:57$ ip community-list expanded c123 permit 59 ^65000:3_0:181_0:58$ ip community-list expanded c123 permit 60 ^65000:3_0:182_0:59$ ip community-list expanded c123 permit 61 ^65000:3_0:183_0:60$ ip community-list expanded c123 permit 62 ^65000:3_0:184_0:61$ ip community-list expanded c123 permit 63 ^65000:3_0:185_0:62$ ip community-list expanded c123 permit 64 ^65000:3_0:186_0:63$ ip community-list expanded c123 permit 65 ^65000:3_0:187_0:64$ ip community-list expanded c123 permit 66 ^65000:3_0:188_0:65$ ip community-list expanded c123 permit 67 ^65000:3_0:189_0:66$ ip community-list expanded c123 permit 68 ^65000:3_0:190_0:67$ ip community-list expanded c123 permit 69 ^65000:3_0:191_0:68$ ip community-list expanded c123 permit 70 ^65000:3_0:192_0:69$ ip community-list expanded c123 permit 71 ^65000:3_0:193_0:70$ ip community-list expanded c123 permit 72 ^65000:3_0:194_0:71$ ip community-list expanded c123 permit 73 ^65000:3_0:195_0:72$ ip community-list expanded c123 permit 74 ^65000:3_0:196_0:73$ ip community-list expanded c123 permit 75 ^65000:3_0:197_0:74$ ip community-list expanded c123 permit 76 ^65000:3_0:198_0:75$ ip community-list expanded c123 permit 77 ^65000:3_0:199_0:76$ ip community-list expanded c123 permit 78 ^65000:3_0:200_0:77$ ip community-list expanded c123 permit 79 ^65000:3_0:201_0:78$ ip community-list expanded c123 permit 80 ^65000:3_0:202_0:79$ ip community-list expanded c123 permit 81 ^65000:3_0:203_0:80$ ip community-list expanded c123 permit 82 ^65000:3_0:204_0:81$ ip community-list expanded c123 permit 83 ^65000:3_0:205_0:82$ ip community-list expanded c123 permit 84 ^65000:3_0:206_0:83$ ip community-list expanded c123 permit 85 ^65000:3_0:207_0:84$ ip community-list expanded c123 permit 86 ^65000:3_0:208_0:85$ ip community-list expanded c123 permit 87 ^65000:3_0:209_0:86$ ip community-list expanded c123 permit 88 ^65000:3_0:210_0:87$ ip community-list expanded c123 permit 89 ^65000:3_0:211_0:88$ ip community-list expanded c123 permit 90 ^65000:3_0:212_0:89$ ip community-list expanded c123 permit 91 ^65000:3_0:213_0:90$ ip community-list expanded c123 permit 92 ^65000:3_0:214_0:91$ ip community-list expanded c123 permit 93 ^65000:3_0:215_0:92$ ip community-list expanded c123 permit 94 ^65000:3_0:216_0:93$ ip community-list expanded c123 permit 95 ^65000:3_0:217_0:94$ ip community-list expanded c123 permit 96 ^65000:3_0:218_0:95$ ip community-list expanded c123 permit 97 ^65000:3_0:219_0:96$ ip community-list expanded c123 permit 98 ^65000:3_0:220_0:97$ ip community-list expanded c123 permit 99 ^65000:3_0:221_0:98$ ip community-list expanded c123 permit 100 ^65000:3_0:222_0:99$ ip community-list expanded c123 permit 101 ^65000:3_0:223_0:100$ ip community-list expanded c123 permit 102 ^65000:3_0:224_0:101$ ip community-list expanded c123 permit 103 ^65000:3_0:225_0:102$ ip community-list expanded c123 permit 104 ^65000:3_0:226_0:103$ ip community-list expanded c123 permit 105 ^65000:3_0:227_0:104$ ip community-list expanded c123 permit 106 ^65000:3_0:228_0:105$ ip community-list expanded c123 permit 107 ^65000:3_0:229_0:106$ ip community-list expanded c123 permit 108 ^65000:3_0:230_0:107$ ip community-list expanded c123 permit 109 ^65000:3_0:231_0:108$ ip community-list expanded c123 permit 110 ^65000:3_0:232_0:109$ ip community-list expanded c123 permit 111 ^65000:3_0:233_0:110$ ip community-list expanded c123 permit 112 ^65000:3_0:234_0:111$ ip community-list expanded c123 permit 113 ^65000:3_0:235_0:112$ ip community-list expanded c123 permit 114 ^65000:3_0:236_0:113$ ip community-list expanded c123 permit 115 ^65000:3_0:237_0:114$ ip community-list expanded c123 permit 116 ^65000:3_0:238_0:115$ ip community-list expanded c123 permit 117 ^65000:3_0:239_0:116$ ip community-list expanded c123 permit 118 ^65000:3_0:240_0:117$ ip community-list expanded c123 permit 119 ^65000:3_0:241_0:118$ ip community-list expanded c123 permit 120 ^65000:3_0:242_0:119$ ip community-list expanded c123 permit 121 ^65000:3_0:243_0:120$ ip community-list expanded c123 permit 122 ^65000:3_0:244_0:121$ ip community-list expanded c123 permit 123 ^65000:3_0:245_0:122$ ip community-list expanded c123 permit 124 ^65000:4_0:246_0:2$ ip community-list expanded c123 permit 125 ^65000:3_0:246_0:123$ ip community-list expanded c123 permit 126 ^65000:4_0:247_0:2$ ip community-list expanded c123 permit 127 ^65000:3_0:247_0:124$ ip community-list expanded c123 permit 128 ^65000:3_0:248_0:125$ ip community-list expanded c123 permit 129 ^65000:3_0:249_0:126$ ip community-list expanded c123 permit 130 ^65000:3_0:250_0:127$ ip community-list expanded c123 permit 131 ^65000:3_0:251_0:128$ ip community-list expanded c123 permit 132 ^65000:3_0:252_0:129$ ip community-list expanded c123 permit 133 ^65000:3_0:253_0:130$ ip community-list expanded c123 permit 134 ^65000:3_0:254_0:131$ ip community-list expanded c123 permit 135 ^65000:3_0:255_0:132$ ip community-list expanded c123 permit 136 ^65000:3_0:256_0:133$ route-map calculator permit 7686 match community 1_1_122 2_1_123 1_2_121 2_3_41 1_3_120 set community 0:123 route-map calculator permit 7687 match community 1_4_119 1_5_118 1_6_117 1_7_116 1_8_115 set community 0:123 route-map calculator permit 7688 match community 1_9_114 1_10_113 1_11_112 1_12_111 1_13_110 set community 0:123 route-map calculator permit 7689 match community 1_14_109 1_15_108 1_16_107 1_17_106 1_18_105 set community 0:123 route-map calculator permit 7690 match community 1_19_104 1_20_103 1_21_102 1_22_101 1_23_100 set community 0:123 route-map calculator permit 7691 match community 1_24_99 1_25_98 1_26_97 1_27_96 1_28_95 set community 0:123 route-map calculator permit 7692 match community 1_29_94 1_30_93 1_31_92 1_32_91 1_33_90 set community 0:123 route-map calculator permit 7693 match community 1_34_89 1_35_88 1_36_87 1_37_86 1_38_85 set community 0:123 route-map calculator permit 7694 match community 1_39_84 1_40_83 1_41_82 1_42_81 1_43_80 set community 0:123 route-map calculator permit 7695 match community 1_44_79 1_45_78 1_46_77 1_47_76 1_48_75 set community 0:123 route-map calculator permit 7696 match community 1_49_74 1_50_73 1_51_72 1_52_71 1_53_70 set community 0:123 route-map calculator permit 7697 match community 1_54_69 1_55_68 1_56_67 1_57_66 1_58_65 set community 0:123 route-map calculator permit 7698 match community 1_59_64 1_60_63 1_61_62 c4_123_1 c3_124_1 set community 0:123 route-map calculator permit 7699 match community c3_125_2 c3_126_3 c3_127_4 c3_128_5 c3_129_6 set community 0:123 route-map calculator permit 7700 match community c3_130_7 c3_131_8 c3_132_9 c3_133_10 c3_134_11 set community 0:123 route-map calculator permit 7701 match community c3_135_12 c3_136_13 c3_137_14 c3_138_15 c3_139_16 set community 0:123 route-map calculator permit 7702 match community c3_140_17 c3_141_18 c3_142_19 c3_143_20 c3_144_21 set community 0:123 route-map calculator permit 7703 match community c3_145_22 c3_146_23 c3_147_24 c3_148_25 c3_149_26 set community 0:123 route-map calculator permit 7704 match community c3_150_27 c3_151_28 c3_152_29 c3_153_30 c3_154_31 set community 0:123 route-map calculator permit 7705 match community c3_155_32 c3_156_33 c3_157_34 c3_158_35 c3_159_36 set community 0:123 route-map calculator permit 7706 match community c3_160_37 c3_161_38 c3_162_39 c3_163_40 c3_164_41 set community 0:123 route-map calculator permit 7707 match community c3_165_42 c3_166_43 c3_167_44 c3_168_45 c3_169_46 set community 0:123 route-map calculator permit 7708 match community c3_170_47 c3_171_48 c3_172_49 c3_173_50 c3_174_51 set community 0:123 route-map calculator permit 7709 match community c3_175_52 c3_176_53 c3_177_54 c3_178_55 c3_179_56 set community 0:123 route-map calculator permit 7710 match community c3_180_57 c3_181_58 c3_182_59 c3_183_60 c3_184_61 set community 0:123 route-map calculator permit 7711 match community c3_185_62 c3_186_63 c3_187_64 c3_188_65 c3_189_66 set community 0:123 route-map calculator permit 7712 match community c3_190_67 c3_191_68 c3_192_69 c3_193_70 c3_194_71 set community 0:123 route-map calculator permit 7713 match community c3_195_72 c3_196_73 c3_197_74 c3_198_75 c3_199_76 set community 0:123 route-map calculator permit 7714 match community c3_200_77 c3_201_78 c3_202_79 c3_203_80 c3_204_81 set community 0:123 route-map calculator permit 7715 match community c3_205_82 c3_206_83 c3_207_84 c3_208_85 c3_209_86 set community 0:123 route-map calculator permit 7716 match community c3_210_87 c3_211_88 c3_212_89 c3_213_90 c3_214_91 set community 0:123 route-map calculator permit 7717 match community c3_215_92 c3_216_93 c3_217_94 c3_218_95 c3_219_96 set community 0:123 route-map calculator permit 7718 match community c3_220_97 c3_221_98 c3_222_99 c3_223_100 c3_224_101 set community 0:123 route-map calculator permit 7719 match community c3_225_102 c3_226_103 c3_227_104 c3_228_105 c3_229_106 set community 0:123 route-map calculator permit 7720 match community c3_230_107 c3_231_108 c3_232_109 c3_233_110 c3_234_111 set community 0:123 route-map calculator permit 7721 match community c3_235_112 c3_236_113 c3_237_114 c3_238_115 c3_239_116 set community 0:123 route-map calculator permit 7722 match community c3_240_117 c3_241_118 c3_242_119 c3_243_120 c3_244_121 set community 0:123 route-map calculator permit 7723 match community c3_245_122 c4_246_2 c3_246_123 c4_247_2 c3_247_124 set community 0:123 route-map calculator permit 7724 match community c3_248_125 c3_249_126 c3_250_127 c3_251_128 c3_252_129 set community 0:123 route-map calculator permit 7725 match community c3_253_130 c3_254_131 c3_255_132 c3_256_133 set community 0:123 ip community-list standard 2_95_109 permit 65000:2 0:95 0:109 route-map calculator permit 7726 match community 2_95_109 set community 0:10355 ip community-list standard 2_37_151 permit 65000:2 0:37 0:151 route-map calculator permit 7727 match community 2_37_151 set community 0:5587 ip community-list standard 2_203_229 permit 65000:2 0:203 0:229 route-map calculator permit 7728 match community 2_203_229 set community 0:46487 ip community-list standard 2_43_77 permit 65000:2 0:43 0:77 route-map calculator permit 7729 match community 2_43_77 set community 0:3311 ip community-list standard 2_167_245 permit 65000:2 0:167 0:245 route-map calculator permit 7730 match community 2_167_245 set community 0:40915 ip community-list standard 2_27_172 permit 65000:2 0:27 0:172 ip community-list standard 2_36_129 permit 65000:2 0:36 0:129 ip community-list standard 2_43_108 permit 65000:2 0:43 0:108 ip community-list standard 2_54_86 permit 65000:2 0:54 0:86 route-map calculator permit 7731 match community 2_27_172 2_36_129 2_43_108 2_54_86 set community 0:4644 ip community-list standard 2_117_205 permit 65000:2 0:117 0:205 ip community-list standard 2_123_195 permit 65000:2 0:123 0:195 route-map calculator permit 7732 match community 2_117_205 2_123_195 set community 0:23985 ip community-list standard 2_40_202 permit 65000:2 0:40 0:202 ip community-list standard 2_80_101 permit 65000:2 0:80 0:101 route-map calculator permit 7733 match community 2_40_202 2_80_101 set community 0:8080 ip community-list standard 2_129_163 permit 65000:2 0:129 0:163 route-map calculator permit 7734 match community 2_129_163 set community 0:21027 ip community-list standard 2_127_165 permit 65000:2 0:127 0:165 route-map calculator permit 7735 match community 2_127_165 set community 0:20955 ip community-list standard 2_97_183 permit 65000:2 0:97 0:183 route-map calculator permit 7736 match community 2_97_183 set community 0:17751 ip community-list standard 2_219_224 permit 65000:2 0:219 0:224 route-map calculator permit 7737 match community 2_219_224 set community 0:49056 ip community-list standard 2_181_205 permit 65000:2 0:181 0:205 route-map calculator permit 7738 match community 2_181_205 set community 0:37105 ip community-list standard 2_184_247 permit 65000:2 0:184 0:247 route-map calculator permit 7739 match community 2_184_247 set community 0:45448 ip community-list standard 2_167_241 permit 65000:2 0:167 0:241 route-map calculator permit 7740 match community 2_167_241 set community 0:40247 ip community-list standard 2_93_250 permit 65000:2 0:93 0:250 ip community-list standard 2_125_186 permit 65000:2 0:125 0:186 ip community-list standard 2_150_155 permit 65000:2 0:150 0:155 route-map calculator permit 7741 match community 2_93_250 2_125_186 2_150_155 set community 0:23250 ip community-list standard 2_55_151 permit 65000:2 0:55 0:151 route-map calculator permit 7742 match community 2_55_151 set community 0:8305 ip community-list standard 2_48_131 permit 65000:2 0:48 0:131 route-map calculator permit 7743 match community 2_48_131 set community 0:6288 ip community-list standard 2_54_247 permit 65000:2 0:54 0:247 ip community-list standard 2_57_234 permit 65000:2 0:57 0:234 ip community-list standard 2_78_171 permit 65000:2 0:78 0:171 ip community-list standard 2_114_117 permit 65000:2 0:114 0:117 route-map calculator permit 7744 match community 2_54_247 2_57_234 2_78_171 2_114_117 set community 0:13338 ip community-list standard 2_157_164 permit 65000:2 0:157 0:164 route-map calculator permit 7745 match community 2_157_164 set community 0:25748 ip community-list standard 2_11_182 permit 65000:2 0:11 0:182 ip community-list standard 2_13_154 permit 65000:2 0:13 0:154 ip community-list standard 2_14_143 permit 65000:2 0:14 0:143 ip community-list standard 2_22_91 permit 65000:2 0:22 0:91 ip community-list standard 2_26_77 permit 65000:2 0:26 0:77 route-map calculator permit 7746 match community 2_11_182 2_13_154 2_14_143 2_22_91 2_26_77 set community 0:2002 ip community-list standard 2_137_247 permit 65000:2 0:137 0:247 route-map calculator permit 7747 match community 2_137_247 set community 0:33839 ip community-list standard 2_73_119 permit 65000:2 0:73 0:119 route-map calculator permit 7748 match community 2_73_119 set community 0:8687 ip community-list standard 2_151_238 permit 65000:2 0:151 0:238 route-map calculator permit 7749 match community 2_151_238 set community 0:35938 ip community-list standard 2_138_234 permit 65000:2 0:138 0:234 ip community-list standard 2_156_207 permit 65000:2 0:156 0:207 route-map calculator permit 7750 match community 2_138_234 2_156_207 set community 0:32292 ip community-list standard 2_188_256 permit 65000:2 0:188 0:256 route-map calculator permit 7751 match community 2_188_256 set community 0:48128 ip community-list standard 2_17_95 permit 65000:2 0:17 0:95 ip community-list standard 2_19_85 permit 65000:2 0:19 0:85 route-map calculator permit 7752 match community 2_17_95 2_19_85 set community 0:1615 ip community-list standard 2_29_146 permit 65000:2 0:29 0:146 ip community-list standard 2_58_73 permit 65000:2 0:58 0:73 route-map calculator permit 7753 match community 2_29_146 2_58_73 set community 0:4234 ip community-list standard 2_116_246 permit 65000:2 0:116 0:246 ip community-list standard 2_123_232 permit 65000:2 0:123 0:232 ip community-list standard 2_164_174 permit 65000:2 0:164 0:174 route-map calculator permit 7754 match community 2_116_246 2_123_232 2_164_174 set community 0:28536 ip community-list standard 2_178_223 permit 65000:2 0:178 0:223 route-map calculator permit 7755 match community 2_178_223 set community 0:39694 ip community-list standard 2_197_242 permit 65000:2 0:197 0:242 route-map calculator permit 7756 match community 2_197_242 set community 0:47674 ip community-list standard 2_145_242 permit 65000:2 0:145 0:242 route-map calculator permit 7757 match community 2_145_242 set community 0:35090 ip community-list standard 2_44_203 permit 65000:2 0:44 0:203 ip community-list standard 2_58_154 permit 65000:2 0:58 0:154 ip community-list standard 2_77_116 permit 65000:2 0:77 0:116 route-map calculator permit 7758 match community 2_44_203 2_58_154 2_77_116 set community 0:8932 ip community-list standard 2_97_193 permit 65000:2 0:97 0:193 route-map calculator permit 7759 match community 2_97_193 set community 0:18721 ip community-list standard 2_31_41 permit 65000:2 0:31 0:41 route-map calculator permit 7760 match community 2_31_41 set community 0:1271 ip community-list standard 2_34_136 permit 65000:2 0:34 0:136 ip community-list standard 2_68_68 permit 65000:2 0:68 0:68 route-map calculator permit 7761 match community 2_34_136 2_68_68 set community 0:4624 ip community-list standard 2_155_230 permit 65000:2 0:155 0:230 route-map calculator permit 7762 match community 2_155_230 set community 0:35650 ip community-list standard 2_57_256 permit 65000:2 0:57 0:256 ip community-list standard 2_64_228 permit 65000:2 0:64 0:228 ip community-list standard 2_76_192 permit 65000:2 0:76 0:192 ip community-list standard 2_96_152 permit 65000:2 0:96 0:152 ip community-list standard 2_114_128 permit 65000:2 0:114 0:128 route-map calculator permit 7763 match community 2_57_256 2_64_228 2_76_192 2_96_152 2_114_128 set community 0:14592 ip community-list standard 2_158_184 permit 65000:2 0:158 0:184 route-map calculator permit 7764 match community 2_158_184 set community 0:29072 ip community-list standard 2_83_145 permit 65000:2 0:83 0:145 route-map calculator permit 7765 match community 2_83_145 set community 0:12035 ip community-list standard 2_174_225 permit 65000:2 0:174 0:225 route-map calculator permit 7766 match community 2_174_225 set community 0:39150 ip community-list standard 2_54_181 permit 65000:2 0:54 0:181 route-map calculator permit 7767 match community 2_54_181 set community 0:9774 ip community-list standard 2_104_185 permit 65000:2 0:104 0:185 ip community-list standard 2_130_148 permit 65000:2 0:130 0:148 route-map calculator permit 7768 match community 2_104_185 2_130_148 set community 0:19240 ip community-list standard 2_185_222 permit 65000:2 0:185 0:222 route-map calculator permit 7769 match community 2_185_222 set community 0:41070 ip community-list standard 2_210_233 permit 65000:2 0:210 0:233 route-map calculator permit 7770 match community 2_210_233 set community 0:48930 ip community-list standard 2_79_85 permit 65000:2 0:79 0:85 route-map calculator permit 7771 match community 2_79_85 set community 0:6715 ip community-list standard 2_3_159 permit 65000:2 0:3 0:159 ip community-list standard 2_9_53 permit 65000:2 0:9 0:53 ip community-list standard 1_221_256 permit 65000:1 0:221 0:256 ip community-list standard 1_222_255 permit 65000:1 0:222 0:255 ip community-list standard 1_223_254 permit 65000:1 0:223 0:254 ip community-list standard 1_224_253 permit 65000:1 0:224 0:253 ip community-list standard 1_225_252 permit 65000:1 0:225 0:252 ip community-list standard 1_226_251 permit 65000:1 0:226 0:251 ip community-list standard 1_227_250 permit 65000:1 0:227 0:250 ip community-list standard 1_228_249 permit 65000:1 0:228 0:249 ip community-list standard 1_229_248 permit 65000:1 0:229 0:248 ip community-list standard 1_230_247 permit 65000:1 0:230 0:247 ip community-list standard 1_231_246 permit 65000:1 0:231 0:246 ip community-list standard 1_232_245 permit 65000:1 0:232 0:245 ip community-list standard 1_233_244 permit 65000:1 0:233 0:244 ip community-list standard 1_234_243 permit 65000:1 0:234 0:243 ip community-list standard 1_235_242 permit 65000:1 0:235 0:242 ip community-list standard 1_236_241 permit 65000:1 0:236 0:241 ip community-list standard 1_237_240 permit 65000:1 0:237 0:240 ip community-list standard 1_238_239 permit 65000:1 0:238 0:239 route-map calculator permit 7772 match community 2_3_159 2_9_53 1_221_256 1_222_255 1_223_254 set community 0:477 route-map calculator permit 7773 match community 1_224_253 1_225_252 1_226_251 1_227_250 1_228_249 set community 0:477 route-map calculator permit 7774 match community 1_229_248 1_230_247 1_231_246 1_232_245 1_233_244 set community 0:477 route-map calculator permit 7775 match community 1_234_243 1_235_242 1_236_241 1_237_240 1_238_239 set community 0:477 ip community-list standard 2_139_224 permit 65000:2 0:139 0:224 route-map calculator permit 7776 match community 2_139_224 set community 0:31136 ip community-list standard 2_53_159 permit 65000:2 0:53 0:159 route-map calculator permit 7777 match community 2_53_159 set community 0:8427 ip community-list standard 2_53_224 permit 65000:2 0:53 0:224 ip community-list standard 2_56_212 permit 65000:2 0:56 0:212 ip community-list standard 2_106_112 permit 65000:2 0:106 0:112 route-map calculator permit 7778 match community 2_53_224 2_56_212 2_106_112 set community 0:11872 ip community-list standard 2_59_241 permit 65000:2 0:59 0:241 route-map calculator permit 7779 match community 2_59_241 set community 0:14219 ip community-list standard 2_224_249 permit 65000:2 0:224 0:249 route-map calculator permit 7780 match community 2_224_249 set community 0:55776 ip community-list standard 2_131_170 permit 65000:2 0:131 0:170 route-map calculator permit 7781 match community 2_131_170 set community 0:22270 ip community-list standard 2_6_178 permit 65000:2 0:6 0:178 ip community-list standard 2_12_89 permit 65000:2 0:12 0:89 route-map calculator permit 7782 match community 2_6_178 2_12_89 set community 0:1068 ip community-list standard 2_158_167 permit 65000:2 0:158 0:167 route-map calculator permit 7783 match community 2_158_167 set community 0:26386 ip community-list standard 2_51_202 permit 65000:2 0:51 0:202 ip community-list standard 2_101_102 permit 65000:2 0:101 0:102 route-map calculator permit 7784 match community 2_51_202 2_101_102 set community 0:10302 ip community-list standard 2_9_248 permit 65000:2 0:9 0:248 ip community-list standard 2_12_186 permit 65000:2 0:12 0:186 ip community-list standard 2_18_124 permit 65000:2 0:18 0:124 ip community-list standard 2_24_93 permit 65000:2 0:24 0:93 ip community-list standard 2_31_72 permit 65000:2 0:31 0:72 ip community-list standard 2_36_62 permit 65000:2 0:36 0:62 route-map calculator permit 7785 match community 2_9_248 2_12_186 2_18_124 2_24_93 2_31_72 set community 0:2232 route-map calculator permit 7786 match community 2_36_62 set community 0:2232 ip community-list standard 2_56_222 permit 65000:2 0:56 0:222 ip community-list standard 2_74_168 permit 65000:2 0:74 0:168 ip community-list standard 2_84_148 permit 65000:2 0:84 0:148 ip community-list standard 2_111_112 permit 65000:2 0:111 0:112 route-map calculator permit 7787 match community 2_56_222 2_74_168 2_84_148 2_111_112 set community 0:12432 ip community-list standard 2_138_178 permit 65000:2 0:138 0:178 route-map calculator permit 7788 match community 2_138_178 set community 0:24564 ip community-list standard 2_43_255 permit 65000:2 0:43 0:255 ip community-list standard 2_51_215 permit 65000:2 0:51 0:215 ip community-list standard 2_85_129 permit 65000:2 0:85 0:129 route-map calculator permit 7789 match community 2_43_255 2_51_215 2_85_129 set community 0:10965 ip community-list standard 2_76_212 permit 65000:2 0:76 0:212 ip community-list standard 2_106_152 permit 65000:2 0:106 0:152 route-map calculator permit 7790 match community 2_76_212 2_106_152 set community 0:16112 ip community-list standard 2_149_150 permit 65000:2 0:149 0:150 route-map calculator permit 7791 match community 2_149_150 set community 0:22350 ip community-list standard 2_174_187 permit 65000:2 0:174 0:187 route-map calculator permit 7792 match community 2_174_187 set community 0:32538 ip community-list standard 2_107_241 permit 65000:2 0:107 0:241 route-map calculator permit 7793 match community 2_107_241 set community 0:25787 ip community-list standard 2_23_237 permit 65000:2 0:23 0:237 ip community-list standard 2_69_79 permit 65000:2 0:69 0:79 route-map calculator permit 7794 match community 2_23_237 2_69_79 set community 0:5451 ip community-list standard 2_91_179 permit 65000:2 0:91 0:179 route-map calculator permit 7795 match community 2_91_179 set community 0:16289 ip community-list standard 2_67_136 permit 65000:2 0:67 0:136 ip community-list standard 2_68_134 permit 65000:2 0:68 0:134 route-map calculator permit 7796 match community 2_67_136 2_68_134 set community 0:9112 ip community-list standard 2_161_236 permit 65000:2 0:161 0:236 route-map calculator permit 7797 match community 2_161_236 set community 0:37996 ip community-list standard 2_73_145 permit 65000:2 0:73 0:145 route-map calculator permit 7798 match community 2_73_145 set community 0:10585 ip community-list standard 2_124_229 permit 65000:2 0:124 0:229 route-map calculator permit 7799 match community 2_124_229 set community 0:28396 ip community-list standard 2_155_186 permit 65000:2 0:155 0:186 route-map calculator permit 7800 match community 2_155_186 set community 0:28830 ip community-list standard 2_207_218 permit 65000:2 0:207 0:218 route-map calculator permit 7801 match community 2_207_218 set community 0:45126 ip community-list standard 2_28_164 permit 65000:2 0:28 0:164 ip community-list standard 2_41_112 permit 65000:2 0:41 0:112 ip community-list standard 2_56_82 permit 65000:2 0:56 0:82 route-map calculator permit 7802 match community 2_28_164 2_41_112 2_56_82 set community 0:4592 ip community-list standard 2_168_245 permit 65000:2 0:168 0:245 ip community-list standard 2_196_210 permit 65000:2 0:196 0:210 route-map calculator permit 7803 match community 2_168_245 2_196_210 set community 0:41160 ip community-list standard 2_217_227 permit 65000:2 0:217 0:227 route-map calculator permit 7804 match community 2_217_227 set community 0:49259 ip community-list standard 2_70_228 permit 65000:2 0:70 0:228 ip community-list standard 2_76_210 permit 65000:2 0:76 0:210 ip community-list standard 2_84_190 permit 65000:2 0:84 0:190 ip community-list standard 2_95_168 permit 65000:2 0:95 0:168 ip community-list standard 2_105_152 permit 65000:2 0:105 0:152 ip community-list standard 2_114_140 permit 65000:2 0:114 0:140 ip community-list standard 2_120_133 permit 65000:2 0:120 0:133 route-map calculator permit 7805 match community 2_70_228 2_76_210 2_84_190 2_95_168 2_105_152 set community 0:15960 route-map calculator permit 7806 match community 2_114_140 2_120_133 set community 0:15960 ip community-list standard 2_183_191 permit 65000:2 0:183 0:191 route-map calculator permit 7807 match community 2_183_191 set community 0:34953 ip community-list standard 2_11_167 permit 65000:2 0:11 0:167 route-map calculator permit 7808 match community 2_11_167 set community 0:1837 ip community-list standard 1_1_60 permit 65000:1 0:1 0:60 ip community-list standard 2_1_61 permit 65000:2 0:1 0:61 ip community-list standard 1_2_59 permit 65000:1 0:2 0:59 ip community-list standard 1_3_58 permit 65000:1 0:3 0:58 ip community-list standard 1_4_57 permit 65000:1 0:4 0:57 ip community-list standard 1_5_56 permit 65000:1 0:5 0:56 ip community-list standard 1_6_55 permit 65000:1 0:6 0:55 ip community-list standard 1_7_54 permit 65000:1 0:7 0:54 ip community-list standard 1_8_53 permit 65000:1 0:8 0:53 ip community-list standard 1_9_52 permit 65000:1 0:9 0:52 ip community-list standard 1_10_51 permit 65000:1 0:10 0:51 ip community-list standard 1_11_50 permit 65000:1 0:11 0:50 ip community-list standard 1_12_49 permit 65000:1 0:12 0:49 ip community-list standard 1_13_48 permit 65000:1 0:13 0:48 ip community-list standard 1_14_47 permit 65000:1 0:14 0:47 ip community-list standard 1_15_46 permit 65000:1 0:15 0:46 ip community-list standard 1_16_45 permit 65000:1 0:16 0:45 ip community-list standard 1_17_44 permit 65000:1 0:17 0:44 ip community-list standard 1_18_43 permit 65000:1 0:18 0:43 ip community-list standard 1_19_42 permit 65000:1 0:19 0:42 ip community-list standard 1_20_41 permit 65000:1 0:20 0:41 ip community-list standard 1_21_40 permit 65000:1 0:21 0:40 ip community-list standard 1_22_39 permit 65000:1 0:22 0:39 ip community-list standard 1_23_38 permit 65000:1 0:23 0:38 ip community-list standard 1_24_37 permit 65000:1 0:24 0:37 ip community-list standard 1_25_36 permit 65000:1 0:25 0:36 ip community-list standard 1_26_35 permit 65000:1 0:26 0:35 ip community-list standard 1_27_34 permit 65000:1 0:27 0:34 ip community-list standard 1_28_33 permit 65000:1 0:28 0:33 ip community-list standard 1_29_32 permit 65000:1 0:29 0:32 ip community-list standard 1_30_31 permit 65000:1 0:30 0:31 ip community-list expanded c61 permit 1 ^65000:4_0:61_0:1$ ip community-list expanded c61 permit 2 ^65000:3_0:62_0:1$ ip community-list expanded c61 permit 3 ^65000:3_0:63_0:2$ ip community-list expanded c61 permit 4 ^65000:3_0:64_0:3$ ip community-list expanded c61 permit 5 ^65000:3_0:65_0:4$ ip community-list expanded c61 permit 6 ^65000:3_0:66_0:5$ ip community-list expanded c61 permit 7 ^65000:3_0:67_0:6$ ip community-list expanded c61 permit 8 ^65000:3_0:68_0:7$ ip community-list expanded c61 permit 9 ^65000:3_0:69_0:8$ ip community-list expanded c61 permit 10 ^65000:3_0:70_0:9$ ip community-list expanded c61 permit 11 ^65000:3_0:71_0:10$ ip community-list expanded c61 permit 12 ^65000:3_0:72_0:11$ ip community-list expanded c61 permit 13 ^65000:3_0:73_0:12$ ip community-list expanded c61 permit 14 ^65000:3_0:74_0:13$ ip community-list expanded c61 permit 15 ^65000:3_0:75_0:14$ ip community-list expanded c61 permit 16 ^65000:3_0:76_0:15$ ip community-list expanded c61 permit 17 ^65000:3_0:77_0:16$ ip community-list expanded c61 permit 18 ^65000:3_0:78_0:17$ ip community-list expanded c61 permit 19 ^65000:3_0:79_0:18$ ip community-list expanded c61 permit 20 ^65000:3_0:80_0:19$ ip community-list expanded c61 permit 21 ^65000:3_0:81_0:20$ ip community-list expanded c61 permit 22 ^65000:3_0:82_0:21$ ip community-list expanded c61 permit 23 ^65000:3_0:83_0:22$ ip community-list expanded c61 permit 24 ^65000:3_0:84_0:23$ ip community-list expanded c61 permit 25 ^65000:3_0:85_0:24$ ip community-list expanded c61 permit 26 ^65000:3_0:86_0:25$ ip community-list expanded c61 permit 27 ^65000:3_0:87_0:26$ ip community-list expanded c61 permit 28 ^65000:3_0:88_0:27$ ip community-list expanded c61 permit 29 ^65000:3_0:89_0:28$ ip community-list expanded c61 permit 30 ^65000:3_0:90_0:29$ ip community-list expanded c61 permit 31 ^65000:3_0:91_0:30$ ip community-list expanded c61 permit 32 ^65000:3_0:92_0:31$ ip community-list expanded c61 permit 33 ^65000:3_0:93_0:32$ ip community-list expanded c61 permit 34 ^65000:3_0:94_0:33$ ip community-list expanded c61 permit 35 ^65000:3_0:95_0:34$ ip community-list expanded c61 permit 36 ^65000:3_0:96_0:35$ ip community-list expanded c61 permit 37 ^65000:3_0:97_0:36$ ip community-list expanded c61 permit 38 ^65000:3_0:98_0:37$ ip community-list expanded c61 permit 39 ^65000:3_0:99_0:38$ ip community-list expanded c61 permit 40 ^65000:3_0:100_0:39$ ip community-list expanded c61 permit 41 ^65000:3_0:101_0:40$ ip community-list expanded c61 permit 42 ^65000:3_0:102_0:41$ ip community-list expanded c61 permit 43 ^65000:3_0:103_0:42$ ip community-list expanded c61 permit 44 ^65000:3_0:104_0:43$ ip community-list expanded c61 permit 45 ^65000:3_0:105_0:44$ ip community-list expanded c61 permit 46 ^65000:3_0:106_0:45$ ip community-list expanded c61 permit 47 ^65000:3_0:107_0:46$ ip community-list expanded c61 permit 48 ^65000:3_0:108_0:47$ ip community-list expanded c61 permit 49 ^65000:3_0:109_0:48$ ip community-list expanded c61 permit 50 ^65000:3_0:110_0:49$ ip community-list expanded c61 permit 51 ^65000:3_0:111_0:50$ ip community-list expanded c61 permit 52 ^65000:3_0:112_0:51$ ip community-list expanded c61 permit 53 ^65000:3_0:113_0:52$ ip community-list expanded c61 permit 54 ^65000:3_0:114_0:53$ ip community-list expanded c61 permit 55 ^65000:3_0:115_0:54$ ip community-list expanded c61 permit 56 ^65000:3_0:116_0:55$ ip community-list expanded c61 permit 57 ^65000:3_0:117_0:56$ ip community-list expanded c61 permit 58 ^65000:3_0:118_0:57$ ip community-list expanded c61 permit 59 ^65000:3_0:119_0:58$ ip community-list expanded c61 permit 60 ^65000:3_0:120_0:59$ ip community-list expanded c61 permit 61 ^65000:3_0:121_0:60$ ip community-list expanded c61 permit 62 ^65000:4_0:122_0:2$ ip community-list expanded c61 permit 63 ^65000:3_0:122_0:61$ ip community-list expanded c61 permit 64 ^65000:4_0:123_0:2$ ip community-list expanded c61 permit 65 ^65000:3_0:123_0:62$ ip community-list expanded c61 permit 66 ^65000:3_0:124_0:63$ ip community-list expanded c61 permit 67 ^65000:3_0:125_0:64$ ip community-list expanded c61 permit 68 ^65000:3_0:126_0:65$ ip community-list expanded c61 permit 69 ^65000:3_0:127_0:66$ ip community-list expanded c61 permit 70 ^65000:3_0:128_0:67$ ip community-list expanded c61 permit 71 ^65000:3_0:129_0:68$ ip community-list expanded c61 permit 72 ^65000:3_0:130_0:69$ ip community-list expanded c61 permit 73 ^65000:3_0:131_0:70$ ip community-list expanded c61 permit 74 ^65000:3_0:132_0:71$ ip community-list expanded c61 permit 75 ^65000:3_0:133_0:72$ ip community-list expanded c61 permit 76 ^65000:3_0:134_0:73$ ip community-list expanded c61 permit 77 ^65000:3_0:135_0:74$ ip community-list expanded c61 permit 78 ^65000:3_0:136_0:75$ ip community-list expanded c61 permit 79 ^65000:3_0:137_0:76$ ip community-list expanded c61 permit 80 ^65000:3_0:138_0:77$ ip community-list expanded c61 permit 81 ^65000:3_0:139_0:78$ ip community-list expanded c61 permit 82 ^65000:3_0:140_0:79$ ip community-list expanded c61 permit 83 ^65000:3_0:141_0:80$ ip community-list expanded c61 permit 84 ^65000:3_0:142_0:81$ ip community-list expanded c61 permit 85 ^65000:3_0:143_0:82$ ip community-list expanded c61 permit 86 ^65000:3_0:144_0:83$ ip community-list expanded c61 permit 87 ^65000:3_0:145_0:84$ ip community-list expanded c61 permit 88 ^65000:3_0:146_0:85$ ip community-list expanded c61 permit 89 ^65000:3_0:147_0:86$ ip community-list expanded c61 permit 90 ^65000:3_0:148_0:87$ ip community-list expanded c61 permit 91 ^65000:3_0:149_0:88$ ip community-list expanded c61 permit 92 ^65000:3_0:150_0:89$ ip community-list expanded c61 permit 93 ^65000:3_0:151_0:90$ ip community-list expanded c61 permit 94 ^65000:3_0:152_0:91$ ip community-list expanded c61 permit 95 ^65000:3_0:153_0:92$ ip community-list expanded c61 permit 96 ^65000:3_0:154_0:93$ ip community-list expanded c61 permit 97 ^65000:3_0:155_0:94$ ip community-list expanded c61 permit 98 ^65000:3_0:156_0:95$ ip community-list expanded c61 permit 99 ^65000:3_0:157_0:96$ ip community-list expanded c61 permit 100 ^65000:3_0:158_0:97$ ip community-list expanded c61 permit 101 ^65000:3_0:159_0:98$ ip community-list expanded c61 permit 102 ^65000:3_0:160_0:99$ ip community-list expanded c61 permit 103 ^65000:3_0:161_0:100$ ip community-list expanded c61 permit 104 ^65000:3_0:162_0:101$ ip community-list expanded c61 permit 105 ^65000:3_0:163_0:102$ ip community-list expanded c61 permit 106 ^65000:3_0:164_0:103$ ip community-list expanded c61 permit 107 ^65000:3_0:165_0:104$ ip community-list expanded c61 permit 108 ^65000:3_0:166_0:105$ ip community-list expanded c61 permit 109 ^65000:3_0:167_0:106$ ip community-list expanded c61 permit 110 ^65000:3_0:168_0:107$ ip community-list expanded c61 permit 111 ^65000:3_0:169_0:108$ ip community-list expanded c61 permit 112 ^65000:3_0:170_0:109$ ip community-list expanded c61 permit 113 ^65000:3_0:171_0:110$ ip community-list expanded c61 permit 114 ^65000:3_0:172_0:111$ ip community-list expanded c61 permit 115 ^65000:3_0:173_0:112$ ip community-list expanded c61 permit 116 ^65000:3_0:174_0:113$ ip community-list expanded c61 permit 117 ^65000:3_0:175_0:114$ ip community-list expanded c61 permit 118 ^65000:3_0:176_0:115$ ip community-list expanded c61 permit 119 ^65000:3_0:177_0:116$ ip community-list expanded c61 permit 120 ^65000:3_0:178_0:117$ ip community-list expanded c61 permit 121 ^65000:3_0:179_0:118$ ip community-list expanded c61 permit 122 ^65000:3_0:180_0:119$ ip community-list expanded c61 permit 123 ^65000:3_0:181_0:120$ ip community-list expanded c61 permit 124 ^65000:3_0:182_0:121$ ip community-list expanded c61 permit 125 ^65000:4_0:183_0:3$ ip community-list expanded c61 permit 126 ^65000:3_0:183_0:122$ ip community-list expanded c61 permit 127 ^65000:4_0:184_0:3$ ip community-list expanded c61 permit 128 ^65000:3_0:184_0:123$ ip community-list expanded c61 permit 129 ^65000:4_0:185_0:3$ ip community-list expanded c61 permit 130 ^65000:3_0:185_0:124$ ip community-list expanded c61 permit 131 ^65000:3_0:186_0:125$ ip community-list expanded c61 permit 132 ^65000:3_0:187_0:126$ ip community-list expanded c61 permit 133 ^65000:3_0:188_0:127$ ip community-list expanded c61 permit 134 ^65000:3_0:189_0:128$ ip community-list expanded c61 permit 135 ^65000:3_0:190_0:129$ ip community-list expanded c61 permit 136 ^65000:3_0:191_0:130$ ip community-list expanded c61 permit 137 ^65000:3_0:192_0:131$ ip community-list expanded c61 permit 138 ^65000:3_0:193_0:132$ ip community-list expanded c61 permit 139 ^65000:3_0:194_0:133$ ip community-list expanded c61 permit 140 ^65000:3_0:195_0:134$ ip community-list expanded c61 permit 141 ^65000:3_0:196_0:135$ ip community-list expanded c61 permit 142 ^65000:3_0:197_0:136$ ip community-list expanded c61 permit 143 ^65000:3_0:198_0:137$ ip community-list expanded c61 permit 144 ^65000:3_0:199_0:138$ ip community-list expanded c61 permit 145 ^65000:3_0:200_0:139$ ip community-list expanded c61 permit 146 ^65000:3_0:201_0:140$ ip community-list expanded c61 permit 147 ^65000:3_0:202_0:141$ ip community-list expanded c61 permit 148 ^65000:3_0:203_0:142$ ip community-list expanded c61 permit 149 ^65000:3_0:204_0:143$ ip community-list expanded c61 permit 150 ^65000:3_0:205_0:144$ ip community-list expanded c61 permit 151 ^65000:3_0:206_0:145$ ip community-list expanded c61 permit 152 ^65000:3_0:207_0:146$ ip community-list expanded c61 permit 153 ^65000:3_0:208_0:147$ ip community-list expanded c61 permit 154 ^65000:3_0:209_0:148$ ip community-list expanded c61 permit 155 ^65000:3_0:210_0:149$ ip community-list expanded c61 permit 156 ^65000:3_0:211_0:150$ ip community-list expanded c61 permit 157 ^65000:3_0:212_0:151$ ip community-list expanded c61 permit 158 ^65000:3_0:213_0:152$ ip community-list expanded c61 permit 159 ^65000:3_0:214_0:153$ ip community-list expanded c61 permit 160 ^65000:3_0:215_0:154$ ip community-list expanded c61 permit 161 ^65000:3_0:216_0:155$ ip community-list expanded c61 permit 162 ^65000:3_0:217_0:156$ ip community-list expanded c61 permit 163 ^65000:3_0:218_0:157$ ip community-list expanded c61 permit 164 ^65000:3_0:219_0:158$ ip community-list expanded c61 permit 165 ^65000:3_0:220_0:159$ ip community-list expanded c61 permit 166 ^65000:3_0:221_0:160$ ip community-list expanded c61 permit 167 ^65000:3_0:222_0:161$ ip community-list expanded c61 permit 168 ^65000:3_0:223_0:162$ ip community-list expanded c61 permit 169 ^65000:3_0:224_0:163$ ip community-list expanded c61 permit 170 ^65000:3_0:225_0:164$ ip community-list expanded c61 permit 171 ^65000:3_0:226_0:165$ ip community-list expanded c61 permit 172 ^65000:3_0:227_0:166$ ip community-list expanded c61 permit 173 ^65000:3_0:228_0:167$ ip community-list expanded c61 permit 174 ^65000:3_0:229_0:168$ ip community-list expanded c61 permit 175 ^65000:3_0:230_0:169$ ip community-list expanded c61 permit 176 ^65000:3_0:231_0:170$ ip community-list expanded c61 permit 177 ^65000:3_0:232_0:171$ ip community-list expanded c61 permit 178 ^65000:3_0:233_0:172$ ip community-list expanded c61 permit 179 ^65000:3_0:234_0:173$ ip community-list expanded c61 permit 180 ^65000:3_0:235_0:174$ ip community-list expanded c61 permit 181 ^65000:3_0:236_0:175$ ip community-list expanded c61 permit 182 ^65000:3_0:237_0:176$ ip community-list expanded c61 permit 183 ^65000:3_0:238_0:177$ ip community-list expanded c61 permit 184 ^65000:3_0:239_0:178$ ip community-list expanded c61 permit 185 ^65000:3_0:240_0:179$ ip community-list expanded c61 permit 186 ^65000:3_0:241_0:180$ ip community-list expanded c61 permit 187 ^65000:3_0:242_0:181$ ip community-list expanded c61 permit 188 ^65000:3_0:243_0:182$ ip community-list expanded c61 permit 189 ^65000:4_0:244_0:4$ ip community-list expanded c61 permit 190 ^65000:3_0:244_0:183$ ip community-list expanded c61 permit 191 ^65000:4_0:245_0:4$ ip community-list expanded c61 permit 192 ^65000:3_0:245_0:184$ ip community-list expanded c61 permit 193 ^65000:4_0:246_0:4$ ip community-list expanded c61 permit 194 ^65000:3_0:246_0:185$ ip community-list expanded c61 permit 195 ^65000:4_0:247_0:4$ ip community-list expanded c61 permit 196 ^65000:3_0:247_0:186$ ip community-list expanded c61 permit 197 ^65000:3_0:248_0:187$ ip community-list expanded c61 permit 198 ^65000:3_0:249_0:188$ ip community-list expanded c61 permit 199 ^65000:3_0:250_0:189$ ip community-list expanded c61 permit 200 ^65000:3_0:251_0:190$ ip community-list expanded c61 permit 201 ^65000:3_0:252_0:191$ ip community-list expanded c61 permit 202 ^65000:3_0:253_0:192$ ip community-list expanded c61 permit 203 ^65000:3_0:254_0:193$ ip community-list expanded c61 permit 204 ^65000:3_0:255_0:194$ ip community-list expanded c61 permit 205 ^65000:3_0:256_0:195$ route-map calculator permit 7809 match community 1_1_60 2_1_61 1_2_59 1_3_58 1_4_57 set community 0:61 route-map calculator permit 7810 match community 1_5_56 1_6_55 1_7_54 1_8_53 1_9_52 set community 0:61 route-map calculator permit 7811 match community 1_10_51 1_11_50 1_12_49 1_13_48 1_14_47 set community 0:61 route-map calculator permit 7812 match community 1_15_46 1_16_45 1_17_44 1_18_43 1_19_42 set community 0:61 route-map calculator permit 7813 match community 1_20_41 1_21_40 1_22_39 1_23_38 1_24_37 set community 0:61 route-map calculator permit 7814 match community 1_25_36 1_26_35 1_27_34 1_28_33 1_29_32 set community 0:61 route-map calculator permit 7815 match community 1_30_31 c4_61_1 c3_62_1 c3_63_2 c3_64_3 set community 0:61 route-map calculator permit 7816 match community c3_65_4 c3_66_5 c3_67_6 c3_68_7 c3_69_8 set community 0:61 route-map calculator permit 7817 match community c3_70_9 c3_71_10 c3_72_11 c3_73_12 c3_74_13 set community 0:61 route-map calculator permit 7818 match community c3_75_14 c3_76_15 c3_77_16 c3_78_17 c3_79_18 set community 0:61 route-map calculator permit 7819 match community c3_80_19 c3_81_20 c3_82_21 c3_83_22 c3_84_23 set community 0:61 route-map calculator permit 7820 match community c3_85_24 c3_86_25 c3_87_26 c3_88_27 c3_89_28 set community 0:61 route-map calculator permit 7821 match community c3_90_29 c3_91_30 c3_92_31 c3_93_32 c3_94_33 set community 0:61 route-map calculator permit 7822 match community c3_95_34 c3_96_35 c3_97_36 c3_98_37 c3_99_38 set community 0:61 route-map calculator permit 7823 match community c3_100_39 c3_101_40 c3_102_41 c3_103_42 c3_104_43 set community 0:61 route-map calculator permit 7824 match community c3_105_44 c3_106_45 c3_107_46 c3_108_47 c3_109_48 set community 0:61 route-map calculator permit 7825 match community c3_110_49 c3_111_50 c3_112_51 c3_113_52 c3_114_53 set community 0:61 route-map calculator permit 7826 match community c3_115_54 c3_116_55 c3_117_56 c3_118_57 c3_119_58 set community 0:61 route-map calculator permit 7827 match community c3_120_59 c3_121_60 c4_122_2 c3_122_61 c4_123_2 set community 0:61 route-map calculator permit 7828 match community c3_123_62 c3_124_63 c3_125_64 c3_126_65 c3_127_66 set community 0:61 route-map calculator permit 7829 match community c3_128_67 c3_129_68 c3_130_69 c3_131_70 c3_132_71 set community 0:61 route-map calculator permit 7830 match community c3_133_72 c3_134_73 c3_135_74 c3_136_75 c3_137_76 set community 0:61 route-map calculator permit 7831 match community c3_138_77 c3_139_78 c3_140_79 c3_141_80 c3_142_81 set community 0:61 route-map calculator permit 7832 match community c3_143_82 c3_144_83 c3_145_84 c3_146_85 c3_147_86 set community 0:61 route-map calculator permit 7833 match community c3_148_87 c3_149_88 c3_150_89 c3_151_90 c3_152_91 set community 0:61 route-map calculator permit 7834 match community c3_153_92 c3_154_93 c3_155_94 c3_156_95 c3_157_96 set community 0:61 route-map calculator permit 7835 match community c3_158_97 c3_159_98 c3_160_99 c3_161_100 c3_162_101 set community 0:61 route-map calculator permit 7836 match community c3_163_102 c3_164_103 c3_165_104 c3_166_105 c3_167_106 set community 0:61 route-map calculator permit 7837 match community c3_168_107 c3_169_108 c3_170_109 c3_171_110 c3_172_111 set community 0:61 route-map calculator permit 7838 match community c3_173_112 c3_174_113 c3_175_114 c3_176_115 c3_177_116 set community 0:61 route-map calculator permit 7839 match community c3_178_117 c3_179_118 c3_180_119 c3_181_120 c3_182_121 set community 0:61 route-map calculator permit 7840 match community c4_183_3 c3_183_122 c4_184_3 c3_184_123 c4_185_3 set community 0:61 route-map calculator permit 7841 match community c3_185_124 c3_186_125 c3_187_126 c3_188_127 c3_189_128 set community 0:61 route-map calculator permit 7842 match community c3_190_129 c3_191_130 c3_192_131 c3_193_132 c3_194_133 set community 0:61 route-map calculator permit 7843 match community c3_195_134 c3_196_135 c3_197_136 c3_198_137 c3_199_138 set community 0:61 route-map calculator permit 7844 match community c3_200_139 c3_201_140 c3_202_141 c3_203_142 c3_204_143 set community 0:61 route-map calculator permit 7845 match community c3_205_144 c3_206_145 c3_207_146 c3_208_147 c3_209_148 set community 0:61 route-map calculator permit 7846 match community c3_210_149 c3_211_150 c3_212_151 c3_213_152 c3_214_153 set community 0:61 route-map calculator permit 7847 match community c3_215_154 c3_216_155 c3_217_156 c3_218_157 c3_219_158 set community 0:61 route-map calculator permit 7848 match community c3_220_159 c3_221_160 c3_222_161 c3_223_162 c3_224_163 set community 0:61 route-map calculator permit 7849 match community c3_225_164 c3_226_165 c3_227_166 c3_228_167 c3_229_168 set community 0:61 route-map calculator permit 7850 match community c3_230_169 c3_231_170 c3_232_171 c3_233_172 c3_234_173 set community 0:61 route-map calculator permit 7851 match community c3_235_174 c3_236_175 c3_237_176 c3_238_177 c3_239_178 set community 0:61 route-map calculator permit 7852 match community c3_240_179 c3_241_180 c3_242_181 c3_243_182 c4_244_4 set community 0:61 route-map calculator permit 7853 match community c3_244_183 c4_245_4 c3_245_184 c4_246_4 c3_246_185 set community 0:61 route-map calculator permit 7854 match community c4_247_4 c3_247_186 c3_248_187 c3_249_188 c3_250_189 set community 0:61 route-map calculator permit 7855 match community c3_251_190 c3_252_191 c3_253_192 c3_254_193 c3_255_194 set community 0:61 route-map calculator permit 7856 match community c3_256_195 set community 0:61 ip community-list standard 2_162_167 permit 65000:2 0:162 0:167 route-map calculator permit 7857 match community 2_162_167 set community 0:27054 ip community-list standard 2_53_187 permit 65000:2 0:53 0:187 route-map calculator permit 7858 match community 2_53_187 set community 0:9911 ip community-list standard 2_158_187 permit 65000:2 0:158 0:187 route-map calculator permit 7859 match community 2_158_187 set community 0:29546 ip community-list standard 2_159_159 permit 65000:2 0:159 0:159 route-map calculator permit 7860 match community 2_159_159 set community 0:25281 ip community-list standard 2_62_237 permit 65000:2 0:62 0:237 ip community-list standard 2_79_186 permit 65000:2 0:79 0:186 ip community-list standard 2_93_158 permit 65000:2 0:93 0:158 route-map calculator permit 7861 match community 2_62_237 2_79_186 2_93_158 set community 0:14694 ip community-list standard 2_71_137 permit 65000:2 0:71 0:137 route-map calculator permit 7862 match community 2_71_137 set community 0:9727 ip community-list standard 2_149_170 permit 65000:2 0:149 0:170 route-map calculator permit 7863 match community 2_149_170 set community 0:25330 ip community-list standard 2_88_193 permit 65000:2 0:88 0:193 route-map calculator permit 7864 match community 2_88_193 set community 0:16984 ip community-list standard 2_220_245 permit 65000:2 0:220 0:245 route-map calculator permit 7865 match community 2_220_245 set community 0:53900 ip community-list standard 2_247_248 permit 65000:2 0:247 0:248 route-map calculator permit 7866 match community 2_247_248 set community 0:61256 ip community-list standard 2_81_242 permit 65000:2 0:81 0:242 ip community-list standard 2_99_198 permit 65000:2 0:99 0:198 ip community-list standard 2_121_162 permit 65000:2 0:121 0:162 route-map calculator permit 7867 match community 2_81_242 2_99_198 2_121_162 set community 0:19602 ip community-list standard 2_27_236 permit 65000:2 0:27 0:236 ip community-list standard 2_36_177 permit 65000:2 0:36 0:177 ip community-list standard 2_54_118 permit 65000:2 0:54 0:118 ip community-list standard 2_59_108 permit 65000:2 0:59 0:108 route-map calculator permit 7868 match community 2_27_236 2_36_177 2_54_118 2_59_108 set community 0:6372 ip community-list standard 2_131_246 permit 65000:2 0:131 0:246 route-map calculator permit 7869 match community 2_131_246 set community 0:32226 ip community-list standard 2_13_254 permit 65000:2 0:13 0:254 ip community-list standard 2_26_127 permit 65000:2 0:26 0:127 route-map calculator permit 7870 match community 2_13_254 2_26_127 set community 0:3302 ip community-list standard 2_50_252 permit 65000:2 0:50 0:252 ip community-list standard 2_56_225 permit 65000:2 0:56 0:225 ip community-list standard 2_60_210 permit 65000:2 0:60 0:210 ip community-list standard 2_63_200 permit 65000:2 0:63 0:200 ip community-list standard 2_70_180 permit 65000:2 0:70 0:180 ip community-list standard 2_72_175 permit 65000:2 0:72 0:175 ip community-list standard 2_75_168 permit 65000:2 0:75 0:168 ip community-list standard 2_84_150 permit 65000:2 0:84 0:150 ip community-list standard 2_90_140 permit 65000:2 0:90 0:140 ip community-list standard 2_100_126 permit 65000:2 0:100 0:126 ip community-list standard 2_105_120 permit 65000:2 0:105 0:120 route-map calculator permit 7871 match community 2_50_252 2_56_225 2_60_210 2_63_200 2_70_180 set community 0:12600 route-map calculator permit 7872 match community 2_72_175 2_75_168 2_84_150 2_90_140 2_100_126 set community 0:12600 route-map calculator permit 7873 match community 2_105_120 set community 0:12600 ip community-list standard 2_212_219 permit 65000:2 0:212 0:219 route-map calculator permit 7874 match community 2_212_219 set community 0:46428 ip community-list standard 2_69_251 permit 65000:2 0:69 0:251 route-map calculator permit 7875 match community 2_69_251 set community 0:17319 ip community-list standard 2_87_87 permit 65000:2 0:87 0:87 route-map calculator permit 7876 match community 2_87_87 set community 0:7569 ip community-list standard 2_139_248 permit 65000:2 0:139 0:248 route-map calculator permit 7877 match community 2_139_248 set community 0:34472 ip community-list standard 2_158_172 permit 65000:2 0:158 0:172 route-map calculator permit 7878 match community 2_158_172 set community 0:27176 ip community-list standard 2_188_250 permit 65000:2 0:188 0:250 ip community-list standard 2_200_235 permit 65000:2 0:200 0:235 route-map calculator permit 7879 match community 2_188_250 2_200_235 set community 0:47000 ip community-list standard 2_95_247 permit 65000:2 0:95 0:247 route-map calculator permit 7880 match community 2_95_247 set community 0:23465 ip community-list standard 2_57_211 permit 65000:2 0:57 0:211 route-map calculator permit 7881 match community 2_57_211 set community 0:12027 ip community-list standard 2_233_236 permit 65000:2 0:233 0:236 route-map calculator permit 7882 match community 2_233_236 set community 0:54988 ip community-list standard 2_41_230 permit 65000:2 0:41 0:230 ip community-list standard 2_46_205 permit 65000:2 0:46 0:205 ip community-list standard 2_82_115 permit 65000:2 0:82 0:115 route-map calculator permit 7883 match community 2_41_230 2_46_205 2_82_115 set community 0:9430 ip community-list standard 2_38_207 permit 65000:2 0:38 0:207 ip community-list standard 2_46_171 permit 65000:2 0:46 0:171 ip community-list standard 2_57_138 permit 65000:2 0:57 0:138 ip community-list standard 2_69_114 permit 65000:2 0:69 0:114 route-map calculator permit 7884 match community 2_38_207 2_46_171 2_57_138 2_69_114 set community 0:7866 ip community-list standard 2_17_29 permit 65000:2 0:17 0:29 ip community-list standard 1_237_256 permit 65000:1 0:237 0:256 ip community-list standard 1_238_255 permit 65000:1 0:238 0:255 ip community-list standard 1_239_254 permit 65000:1 0:239 0:254 ip community-list standard 1_240_253 permit 65000:1 0:240 0:253 ip community-list standard 1_241_252 permit 65000:1 0:241 0:252 ip community-list standard 1_242_251 permit 65000:1 0:242 0:251 ip community-list standard 1_243_250 permit 65000:1 0:243 0:250 ip community-list standard 1_244_249 permit 65000:1 0:244 0:249 ip community-list standard 1_245_248 permit 65000:1 0:245 0:248 ip community-list standard 1_246_247 permit 65000:1 0:246 0:247 route-map calculator permit 7885 match community 2_17_29 1_237_256 1_238_255 1_239_254 1_240_253 set community 0:493 route-map calculator permit 7886 match community 1_241_252 1_242_251 1_243_250 1_244_249 1_245_248 set community 0:493 route-map calculator permit 7887 match community 1_246_247 set community 0:493 ip community-list standard 2_128_215 permit 65000:2 0:128 0:215 ip community-list standard 2_160_172 permit 65000:2 0:160 0:172 route-map calculator permit 7888 match community 2_128_215 2_160_172 set community 0:27520 ip community-list standard 2_206_241 permit 65000:2 0:206 0:241 route-map calculator permit 7889 match community 2_206_241 set community 0:49646 ip community-list standard 2_121_250 permit 65000:2 0:121 0:250 ip community-list standard 2_125_242 permit 65000:2 0:125 0:242 route-map calculator permit 7890 match community 2_121_250 2_125_242 set community 0:30250 ip community-list standard 2_70_185 permit 65000:2 0:70 0:185 ip community-list standard 2_74_175 permit 65000:2 0:74 0:175 route-map calculator permit 7891 match community 2_70_185 2_74_175 set community 0:12950 ip community-list standard 2_55_118 permit 65000:2 0:55 0:118 ip community-list standard 2_59_110 permit 65000:2 0:59 0:110 route-map calculator permit 7892 match community 2_55_118 2_59_110 set community 0:6490 ip community-list standard 2_7_205 permit 65000:2 0:7 0:205 ip community-list standard 2_35_41 permit 65000:2 0:35 0:41 route-map calculator permit 7893 match community 2_7_205 2_35_41 set community 0:1435 ip community-list standard 2_239_255 permit 65000:2 0:239 0:255 route-map calculator permit 7894 match community 2_239_255 set community 0:60945 ip community-list standard 2_131_245 permit 65000:2 0:131 0:245 route-map calculator permit 7895 match community 2_131_245 set community 0:32095 ip community-list standard 2_65_225 permit 65000:2 0:65 0:225 ip community-list standard 2_75_195 permit 65000:2 0:75 0:195 ip community-list standard 2_117_125 permit 65000:2 0:117 0:125 route-map calculator permit 7896 match community 2_65_225 2_75_195 2_117_125 set community 0:14625 ip community-list standard 2_9_211 permit 65000:2 0:9 0:211 route-map calculator permit 7897 match community 2_9_211 set community 0:1899 ip community-list standard 2_61_181 permit 65000:2 0:61 0:181 route-map calculator permit 7898 match community 2_61_181 set community 0:11041 ip community-list standard 2_151_236 permit 65000:2 0:151 0:236 route-map calculator permit 7899 match community 2_151_236 set community 0:35636 ip community-list standard 2_185_212 permit 65000:2 0:185 0:212 route-map calculator permit 7900 match community 2_185_212 set community 0:39220 ip community-list standard 2_92_240 permit 65000:2 0:92 0:240 ip community-list standard 2_96_230 permit 65000:2 0:96 0:230 ip community-list standard 2_115_192 permit 65000:2 0:115 0:192 ip community-list standard 2_120_184 permit 65000:2 0:120 0:184 ip community-list standard 2_138_160 permit 65000:2 0:138 0:160 route-map calculator permit 7901 match community 2_92_240 2_96_230 2_115_192 2_120_184 2_138_160 set community 0:22080 ip community-list standard 2_178_224 permit 65000:2 0:178 0:224 route-map calculator permit 7902 match community 2_178_224 set community 0:39872 ip community-list standard 2_9_231 permit 65000:2 0:9 0:231 ip community-list standard 2_11_189 permit 65000:2 0:11 0:189 ip community-list standard 2_21_99 permit 65000:2 0:21 0:99 ip community-list standard 2_27_77 permit 65000:2 0:27 0:77 ip community-list standard 2_33_63 permit 65000:2 0:33 0:63 route-map calculator permit 7903 match community 2_9_231 2_11_189 2_21_99 2_27_77 2_33_63 set community 0:2079 ip community-list standard 2_105_243 permit 65000:2 0:105 0:243 ip community-list standard 2_135_189 permit 65000:2 0:135 0:189 route-map calculator permit 7904 match community 2_105_243 2_135_189 set community 0:25515 ip community-list standard 2_152_211 permit 65000:2 0:152 0:211 route-map calculator permit 7905 match community 2_152_211 set community 0:32072 ip community-list standard 2_87_204 permit 65000:2 0:87 0:204 ip community-list standard 2_102_174 permit 65000:2 0:102 0:174 ip community-list standard 2_116_153 permit 65000:2 0:116 0:153 route-map calculator permit 7906 match community 2_87_204 2_102_174 2_116_153 set community 0:17748 ip community-list standard 2_138_191 permit 65000:2 0:138 0:191 route-map calculator permit 7907 match community 2_138_191 set community 0:26358 ip community-list standard 2_109_151 permit 65000:2 0:109 0:151 route-map calculator permit 7908 match community 2_109_151 set community 0:16459 ip community-list standard 2_11_124 permit 65000:2 0:11 0:124 ip community-list standard 2_22_62 permit 65000:2 0:22 0:62 ip community-list standard 2_31_44 permit 65000:2 0:31 0:44 route-map calculator permit 7909 match community 2_11_124 2_22_62 2_31_44 set community 0:1364 ip community-list standard 2_73_172 permit 65000:2 0:73 0:172 ip community-list standard 2_86_146 permit 65000:2 0:86 0:146 route-map calculator permit 7910 match community 2_73_172 2_86_146 set community 0:12556 ip community-list standard 2_189_239 permit 65000:2 0:189 0:239 route-map calculator permit 7911 match community 2_189_239 set community 0:45171 ip community-list standard 2_154_256 permit 65000:2 0:154 0:256 ip community-list standard 2_176_224 permit 65000:2 0:176 0:224 route-map calculator permit 7912 match community 2_154_256 2_176_224 set community 0:39424 ip community-list standard 2_73_252 permit 65000:2 0:73 0:252 ip community-list standard 2_84_219 permit 65000:2 0:84 0:219 ip community-list standard 2_126_146 permit 65000:2 0:126 0:146 route-map calculator permit 7913 match community 2_73_252 2_84_219 2_126_146 set community 0:18396 ip community-list standard 2_79_143 permit 65000:2 0:79 0:143 route-map calculator permit 7914 match community 2_79_143 set community 0:11297 ip community-list standard 2_84_256 permit 65000:2 0:84 0:256 ip community-list standard 2_96_224 permit 65000:2 0:96 0:224 ip community-list standard 2_112_192 permit 65000:2 0:112 0:192 ip community-list standard 2_128_168 permit 65000:2 0:128 0:168 route-map calculator permit 7915 match community 2_84_256 2_96_224 2_112_192 2_128_168 set community 0:21504 ip community-list standard 2_2_162 permit 65000:2 0:2 0:162 ip community-list standard 2_3_108 permit 65000:2 0:3 0:108 ip community-list standard 2_4_81 permit 65000:2 0:4 0:81 ip community-list standard 2_6_54 permit 65000:2 0:6 0:54 ip community-list standard 2_9_36 permit 65000:2 0:9 0:36 ip community-list standard 2_12_27 permit 65000:2 0:12 0:27 ip community-list standard 2_18_18 permit 65000:2 0:18 0:18 ip community-list standard 1_68_256 permit 65000:1 0:68 0:256 ip community-list standard 1_69_255 permit 65000:1 0:69 0:255 ip community-list standard 1_70_254 permit 65000:1 0:70 0:254 ip community-list standard 1_71_253 permit 65000:1 0:71 0:253 ip community-list standard 1_72_252 permit 65000:1 0:72 0:252 ip community-list standard 1_73_251 permit 65000:1 0:73 0:251 ip community-list standard 1_74_250 permit 65000:1 0:74 0:250 ip community-list standard 1_75_249 permit 65000:1 0:75 0:249 ip community-list standard 1_76_248 permit 65000:1 0:76 0:248 ip community-list standard 1_77_247 permit 65000:1 0:77 0:247 ip community-list standard 1_78_246 permit 65000:1 0:78 0:246 ip community-list standard 1_79_245 permit 65000:1 0:79 0:245 ip community-list standard 1_80_244 permit 65000:1 0:80 0:244 ip community-list standard 1_81_243 permit 65000:1 0:81 0:243 ip community-list standard 1_82_242 permit 65000:1 0:82 0:242 ip community-list standard 1_83_241 permit 65000:1 0:83 0:241 ip community-list standard 1_84_240 permit 65000:1 0:84 0:240 ip community-list standard 1_85_239 permit 65000:1 0:85 0:239 ip community-list standard 1_86_238 permit 65000:1 0:86 0:238 ip community-list standard 1_87_237 permit 65000:1 0:87 0:237 ip community-list standard 1_88_236 permit 65000:1 0:88 0:236 ip community-list standard 1_89_235 permit 65000:1 0:89 0:235 ip community-list standard 1_90_234 permit 65000:1 0:90 0:234 ip community-list standard 1_91_233 permit 65000:1 0:91 0:233 ip community-list standard 1_92_232 permit 65000:1 0:92 0:232 ip community-list standard 1_93_231 permit 65000:1 0:93 0:231 ip community-list standard 1_94_230 permit 65000:1 0:94 0:230 ip community-list standard 1_95_229 permit 65000:1 0:95 0:229 ip community-list standard 1_96_228 permit 65000:1 0:96 0:228 ip community-list standard 1_97_227 permit 65000:1 0:97 0:227 ip community-list standard 1_98_226 permit 65000:1 0:98 0:226 ip community-list standard 1_99_225 permit 65000:1 0:99 0:225 ip community-list standard 1_100_224 permit 65000:1 0:100 0:224 ip community-list standard 1_101_223 permit 65000:1 0:101 0:223 ip community-list standard 1_102_222 permit 65000:1 0:102 0:222 ip community-list standard 1_103_221 permit 65000:1 0:103 0:221 ip community-list standard 1_104_220 permit 65000:1 0:104 0:220 ip community-list standard 1_105_219 permit 65000:1 0:105 0:219 ip community-list standard 1_106_218 permit 65000:1 0:106 0:218 ip community-list standard 1_107_217 permit 65000:1 0:107 0:217 ip community-list standard 1_108_216 permit 65000:1 0:108 0:216 ip community-list standard 1_109_215 permit 65000:1 0:109 0:215 ip community-list standard 1_110_214 permit 65000:1 0:110 0:214 ip community-list standard 1_111_213 permit 65000:1 0:111 0:213 ip community-list standard 1_112_212 permit 65000:1 0:112 0:212 ip community-list standard 1_113_211 permit 65000:1 0:113 0:211 ip community-list standard 1_114_210 permit 65000:1 0:114 0:210 ip community-list standard 1_115_209 permit 65000:1 0:115 0:209 ip community-list standard 1_116_208 permit 65000:1 0:116 0:208 ip community-list standard 1_117_207 permit 65000:1 0:117 0:207 ip community-list standard 1_118_206 permit 65000:1 0:118 0:206 ip community-list standard 1_119_205 permit 65000:1 0:119 0:205 ip community-list standard 1_120_204 permit 65000:1 0:120 0:204 ip community-list standard 1_121_203 permit 65000:1 0:121 0:203 ip community-list standard 1_122_202 permit 65000:1 0:122 0:202 ip community-list standard 1_123_201 permit 65000:1 0:123 0:201 ip community-list standard 1_124_200 permit 65000:1 0:124 0:200 ip community-list standard 1_125_199 permit 65000:1 0:125 0:199 ip community-list standard 1_126_198 permit 65000:1 0:126 0:198 ip community-list standard 1_127_197 permit 65000:1 0:127 0:197 ip community-list standard 1_128_196 permit 65000:1 0:128 0:196 ip community-list standard 1_129_195 permit 65000:1 0:129 0:195 ip community-list standard 1_130_194 permit 65000:1 0:130 0:194 ip community-list standard 1_131_193 permit 65000:1 0:131 0:193 ip community-list standard 1_132_192 permit 65000:1 0:132 0:192 ip community-list standard 1_133_191 permit 65000:1 0:133 0:191 ip community-list standard 1_134_190 permit 65000:1 0:134 0:190 ip community-list standard 1_135_189 permit 65000:1 0:135 0:189 ip community-list standard 1_136_188 permit 65000:1 0:136 0:188 ip community-list standard 1_137_187 permit 65000:1 0:137 0:187 ip community-list standard 1_138_186 permit 65000:1 0:138 0:186 ip community-list standard 1_139_185 permit 65000:1 0:139 0:185 ip community-list standard 1_140_184 permit 65000:1 0:140 0:184 ip community-list standard 1_141_183 permit 65000:1 0:141 0:183 ip community-list standard 1_142_182 permit 65000:1 0:142 0:182 ip community-list standard 1_143_181 permit 65000:1 0:143 0:181 ip community-list standard 1_144_180 permit 65000:1 0:144 0:180 ip community-list standard 1_145_179 permit 65000:1 0:145 0:179 ip community-list standard 1_146_178 permit 65000:1 0:146 0:178 ip community-list standard 1_147_177 permit 65000:1 0:147 0:177 ip community-list standard 1_148_176 permit 65000:1 0:148 0:176 ip community-list standard 1_149_175 permit 65000:1 0:149 0:175 ip community-list standard 1_150_174 permit 65000:1 0:150 0:174 ip community-list standard 1_151_173 permit 65000:1 0:151 0:173 ip community-list standard 1_152_172 permit 65000:1 0:152 0:172 ip community-list standard 1_153_171 permit 65000:1 0:153 0:171 ip community-list standard 1_154_170 permit 65000:1 0:154 0:170 ip community-list standard 1_155_169 permit 65000:1 0:155 0:169 ip community-list standard 1_156_168 permit 65000:1 0:156 0:168 ip community-list standard 1_157_167 permit 65000:1 0:157 0:167 ip community-list standard 1_158_166 permit 65000:1 0:158 0:166 ip community-list standard 1_159_165 permit 65000:1 0:159 0:165 ip community-list standard 1_160_164 permit 65000:1 0:160 0:164 ip community-list standard 1_161_163 permit 65000:1 0:161 0:163 ip community-list standard 1_162_162 permit 65000:1 0:162 0:162 route-map calculator permit 7916 match community 2_2_162 2_3_108 2_4_81 2_6_54 2_9_36 set community 0:324 route-map calculator permit 7917 match community 2_12_27 2_18_18 1_68_256 1_69_255 1_70_254 set community 0:324 route-map calculator permit 7918 match community 1_71_253 1_72_252 1_73_251 1_74_250 1_75_249 set community 0:324 route-map calculator permit 7919 match community 1_76_248 1_77_247 1_78_246 1_79_245 1_80_244 set community 0:324 route-map calculator permit 7920 match community 1_81_243 1_82_242 1_83_241 1_84_240 1_85_239 set community 0:324 route-map calculator permit 7921 match community 1_86_238 1_87_237 1_88_236 1_89_235 1_90_234 set community 0:324 route-map calculator permit 7922 match community 1_91_233 1_92_232 1_93_231 1_94_230 1_95_229 set community 0:324 route-map calculator permit 7923 match community 1_96_228 1_97_227 1_98_226 1_99_225 1_100_224 set community 0:324 route-map calculator permit 7924 match community 1_101_223 1_102_222 1_103_221 1_104_220 1_105_219 set community 0:324 route-map calculator permit 7925 match community 1_106_218 1_107_217 1_108_216 1_109_215 1_110_214 set community 0:324 route-map calculator permit 7926 match community 1_111_213 1_112_212 1_113_211 1_114_210 1_115_209 set community 0:324 route-map calculator permit 7927 match community 1_116_208 1_117_207 1_118_206 1_119_205 1_120_204 set community 0:324 route-map calculator permit 7928 match community 1_121_203 1_122_202 1_123_201 1_124_200 1_125_199 set community 0:324 route-map calculator permit 7929 match community 1_126_198 1_127_197 1_128_196 1_129_195 1_130_194 set community 0:324 route-map calculator permit 7930 match community 1_131_193 1_132_192 1_133_191 1_134_190 1_135_189 set community 0:324 route-map calculator permit 7931 match community 1_136_188 1_137_187 1_138_186 1_139_185 1_140_184 set community 0:324 route-map calculator permit 7932 match community 1_141_183 1_142_182 1_143_181 1_144_180 1_145_179 set community 0:324 route-map calculator permit 7933 match community 1_146_178 1_147_177 1_148_176 1_149_175 1_150_174 set community 0:324 route-map calculator permit 7934 match community 1_151_173 1_152_172 1_153_171 1_154_170 1_155_169 set community 0:324 route-map calculator permit 7935 match community 1_156_168 1_157_167 1_158_166 1_159_165 1_160_164 set community 0:324 route-map calculator permit 7936 match community 1_161_163 1_162_162 set community 0:324 ip community-list standard 2_81_145 permit 65000:2 0:81 0:145 ip community-list standard 2_87_135 permit 65000:2 0:87 0:135 route-map calculator permit 7937 match community 2_81_145 2_87_135 set community 0:11745 ip community-list standard 2_109_133 permit 65000:2 0:109 0:133 route-map calculator permit 7938 match community 2_109_133 set community 0:14497 ip community-list standard 2_151_173 permit 65000:2 0:151 0:173 route-map calculator permit 7939 match community 2_151_173 set community 0:26123 ip community-list standard 2_116_185 permit 65000:2 0:116 0:185 ip community-list standard 2_145_148 permit 65000:2 0:145 0:148 route-map calculator permit 7940 match community 2_116_185 2_145_148 set community 0:21460 ip community-list standard 2_19_155 permit 65000:2 0:19 0:155 ip community-list standard 2_31_95 permit 65000:2 0:31 0:95 route-map calculator permit 7941 match community 2_19_155 2_31_95 set community 0:2945 ip community-list standard 2_158_227 permit 65000:2 0:158 0:227 route-map calculator permit 7942 match community 2_158_227 set community 0:35866 ip community-list standard 2_102_252 permit 65000:2 0:102 0:252 ip community-list standard 2_108_238 permit 65000:2 0:108 0:238 ip community-list standard 2_119_216 permit 65000:2 0:119 0:216 ip community-list standard 2_126_204 permit 65000:2 0:126 0:204 ip community-list standard 2_136_189 permit 65000:2 0:136 0:189 ip community-list standard 2_153_168 permit 65000:2 0:153 0:168 route-map calculator permit 7943 match community 2_102_252 2_108_238 2_119_216 2_126_204 2_136_189 set community 0:25704 route-map calculator permit 7944 match community 2_153_168 set community 0:25704 ip community-list standard 2_44_211 permit 65000:2 0:44 0:211 route-map calculator permit 7945 match community 2_44_211 set community 0:9284 ip community-list standard 2_43_94 permit 65000:2 0:43 0:94 ip community-list standard 2_47_86 permit 65000:2 0:47 0:86 route-map calculator permit 7946 match community 2_43_94 2_47_86 set community 0:4042 ip community-list standard 2_169_246 permit 65000:2 0:169 0:246 route-map calculator permit 7947 match community 2_169_246 set community 0:41574 ip community-list standard 2_77_188 permit 65000:2 0:77 0:188 ip community-list standard 2_94_154 permit 65000:2 0:94 0:154 route-map calculator permit 7948 match community 2_77_188 2_94_154 set community 0:14476 ip community-list standard 2_134_249 permit 65000:2 0:134 0:249 ip community-list standard 2_166_201 permit 65000:2 0:166 0:201 route-map calculator permit 7949 match community 2_134_249 2_166_201 set community 0:33366 ip community-list standard 2_43_188 permit 65000:2 0:43 0:188 ip community-list standard 2_47_172 permit 65000:2 0:47 0:172 ip community-list standard 2_86_94 permit 65000:2 0:86 0:94 route-map calculator permit 7950 match community 2_43_188 2_47_172 2_86_94 set community 0:8084 ip community-list standard 2_154_197 permit 65000:2 0:154 0:197 route-map calculator permit 7951 match community 2_154_197 set community 0:30338 ip community-list standard 2_158_226 permit 65000:2 0:158 0:226 route-map calculator permit 7952 match community 2_158_226 set community 0:35708 ip community-list standard 2_62_235 permit 65000:2 0:62 0:235 ip community-list standard 2_94_155 permit 65000:2 0:94 0:155 route-map calculator permit 7953 match community 2_62_235 2_94_155 set community 0:14570 ip community-list standard 2_196_244 permit 65000:2 0:196 0:244 route-map calculator permit 7954 match community 2_196_244 set community 0:47824 ip community-list standard 2_47_214 permit 65000:2 0:47 0:214 ip community-list standard 2_94_107 permit 65000:2 0:94 0:107 route-map calculator permit 7955 match community 2_47_214 2_94_107 set community 0:10058 ip community-list standard 2_35_194 permit 65000:2 0:35 0:194 ip community-list standard 2_70_97 permit 65000:2 0:70 0:97 route-map calculator permit 7956 match community 2_35_194 2_70_97 set community 0:6790 ip community-list standard 2_213_218 permit 65000:2 0:213 0:218 route-map calculator permit 7957 match community 2_213_218 set community 0:46434 ip community-list standard 2_19_166 permit 65000:2 0:19 0:166 ip community-list standard 2_38_83 permit 65000:2 0:38 0:83 route-map calculator permit 7958 match community 2_19_166 2_38_83 set community 0:3154 ip community-list standard 2_167_246 permit 65000:2 0:167 0:246 route-map calculator permit 7959 match community 2_167_246 set community 0:41082 ip community-list standard 2_201_212 permit 65000:2 0:201 0:212 route-map calculator permit 7960 match community 2_201_212 set community 0:42612 ip community-list standard 2_179_192 permit 65000:2 0:179 0:192 route-map calculator permit 7961 match community 2_179_192 set community 0:34368 ip community-list standard 2_46_192 permit 65000:2 0:46 0:192 ip community-list standard 2_48_184 permit 65000:2 0:48 0:184 ip community-list standard 2_64_138 permit 65000:2 0:64 0:138 ip community-list standard 2_69_128 permit 65000:2 0:69 0:128 ip community-list standard 2_92_96 permit 65000:2 0:92 0:96 route-map calculator permit 7962 match community 2_46_192 2_48_184 2_64_138 2_69_128 2_92_96 set community 0:8832 ip community-list standard 2_211_253 permit 65000:2 0:211 0:253 route-map calculator permit 7963 match community 2_211_253 set community 0:53383 ip community-list standard 2_7_121 permit 65000:2 0:7 0:121 ip community-list standard 2_11_77 permit 65000:2 0:11 0:77 route-map calculator permit 7964 match community 2_7_121 2_11_77 set community 0:847 ip community-list standard 2_219_241 permit 65000:2 0:219 0:241 route-map calculator permit 7965 match community 2_219_241 set community 0:52779 ip community-list standard 2_125_243 permit 65000:2 0:125 0:243 ip community-list standard 2_135_225 permit 65000:2 0:135 0:225 route-map calculator permit 7966 match community 2_125_243 2_135_225 set community 0:30375 ip community-list standard 2_80_223 permit 65000:2 0:80 0:223 route-map calculator permit 7967 match community 2_80_223 set community 0:17840 ip community-list standard 2_35_53 permit 65000:2 0:35 0:53 route-map calculator permit 7968 match community 2_35_53 set community 0:1855 ip community-list standard 2_123_181 permit 65000:2 0:123 0:181 route-map calculator permit 7969 match community 2_123_181 set community 0:22263 ip community-list standard 2_215_218 permit 65000:2 0:215 0:218 route-map calculator permit 7970 match community 2_215_218 set community 0:46870 ip community-list standard 2_194_246 permit 65000:2 0:194 0:246 route-map calculator permit 7971 match community 2_194_246 set community 0:47724 ip community-list standard 2_59_125 permit 65000:2 0:59 0:125 route-map calculator permit 7972 match community 2_59_125 set community 0:7375 ip community-list standard 2_3_227 permit 65000:2 0:3 0:227 route-map calculator permit 7973 match community 2_3_227 set community 0:681 ip community-list standard 2_3_179 permit 65000:2 0:3 0:179 route-map calculator permit 7974 match community 2_3_179 set community 0:537 ip community-list standard 2_49_251 permit 65000:2 0:49 0:251 route-map calculator permit 7975 match community 2_49_251 set community 0:12299 ip community-list standard 2_3_191 permit 65000:2 0:3 0:191 route-map calculator permit 7976 match community 2_3_191 set community 0:573 ip community-list standard 2_163_192 permit 65000:2 0:163 0:192 route-map calculator permit 7977 match community 2_163_192 set community 0:31296 ip community-list standard 2_46_250 permit 65000:2 0:46 0:250 ip community-list standard 2_50_230 permit 65000:2 0:50 0:230 ip community-list standard 2_92_125 permit 65000:2 0:92 0:125 ip community-list standard 2_100_115 permit 65000:2 0:100 0:115 route-map calculator permit 7978 match community 2_46_250 2_50_230 2_92_125 2_100_115 set community 0:11500 ip community-list standard 2_60_250 permit 65000:2 0:60 0:250 ip community-list standard 2_75_200 permit 65000:2 0:75 0:200 ip community-list standard 2_100_150 permit 65000:2 0:100 0:150 ip community-list standard 2_120_125 permit 65000:2 0:120 0:125 route-map calculator permit 7979 match community 2_60_250 2_75_200 2_100_150 2_120_125 set community 0:15000 ip community-list standard 2_12_218 permit 65000:2 0:12 0:218 ip community-list standard 2_24_109 permit 65000:2 0:24 0:109 route-map calculator permit 7980 match community 2_12_218 2_24_109 set community 0:2616 ip community-list standard 2_147_149 permit 65000:2 0:147 0:149 route-map calculator permit 7981 match community 2_147_149 set community 0:21903 ip community-list standard 2_94_245 permit 65000:2 0:94 0:245 ip community-list standard 2_98_235 permit 65000:2 0:98 0:235 route-map calculator permit 7982 match community 2_94_245 2_98_235 set community 0:23030 ip community-list standard 2_207_227 permit 65000:2 0:207 0:227 route-map calculator permit 7983 match community 2_207_227 set community 0:46989 ip community-list standard 2_169_229 permit 65000:2 0:169 0:229 route-map calculator permit 7984 match community 2_169_229 set community 0:38701 ip community-list standard 2_61_101 permit 65000:2 0:61 0:101 route-map calculator permit 7985 match community 2_61_101 set community 0:6161 ip community-list standard 2_144_214 permit 65000:2 0:144 0:214 route-map calculator permit 7986 match community 2_144_214 set community 0:30816 ip community-list standard 2_13_129 permit 65000:2 0:13 0:129 ip community-list standard 2_39_43 permit 65000:2 0:39 0:43 route-map calculator permit 7987 match community 2_13_129 2_39_43 set community 0:1677 ip community-list standard 2_190_213 permit 65000:2 0:190 0:213 route-map calculator permit 7988 match community 2_190_213 set community 0:40470 ip community-list standard 2_89_239 permit 65000:2 0:89 0:239 route-map calculator permit 7989 match community 2_89_239 set community 0:21271 ip community-list standard 2_68_245 permit 65000:2 0:68 0:245 ip community-list standard 2_70_238 permit 65000:2 0:70 0:238 ip community-list standard 2_85_196 permit 65000:2 0:85 0:196 ip community-list standard 2_98_170 permit 65000:2 0:98 0:170 ip community-list standard 2_119_140 permit 65000:2 0:119 0:140 route-map calculator permit 7990 match community 2_68_245 2_70_238 2_85_196 2_98_170 2_119_140 set community 0:16660 ip community-list standard 2_142_184 permit 65000:2 0:142 0:184 route-map calculator permit 7991 match community 2_142_184 set community 0:26128 ip community-list standard 2_133_158 permit 65000:2 0:133 0:158 route-map calculator permit 7992 match community 2_133_158 set community 0:21014 ip community-list standard 2_74_190 permit 65000:2 0:74 0:190 ip community-list standard 2_76_185 permit 65000:2 0:76 0:185 ip community-list standard 2_95_148 permit 65000:2 0:95 0:148 route-map calculator permit 7993 match community 2_74_190 2_76_185 2_95_148 set community 0:14060 ip community-list standard 2_102_234 permit 65000:2 0:102 0:234 ip community-list standard 2_108_221 permit 65000:2 0:108 0:221 ip community-list standard 2_117_204 permit 65000:2 0:117 0:204 ip community-list standard 2_153_156 permit 65000:2 0:153 0:156 route-map calculator permit 7994 match community 2_102_234 2_108_221 2_117_204 2_153_156 set community 0:23868 ip community-list standard 2_23_193 permit 65000:2 0:23 0:193 route-map calculator permit 7995 match community 2_23_193 set community 0:4439 ip community-list standard 2_118_253 permit 65000:2 0:118 0:253 route-map calculator permit 7996 match community 2_118_253 set community 0:29854 ip community-list standard 2_21_205 permit 65000:2 0:21 0:205 ip community-list standard 2_35_123 permit 65000:2 0:35 0:123 ip community-list standard 2_41_105 permit 65000:2 0:41 0:105 route-map calculator permit 7997 match community 2_21_205 2_35_123 2_41_105 set community 0:4305 ip community-list standard 2_115_245 permit 65000:2 0:115 0:245 ip community-list standard 2_161_175 permit 65000:2 0:161 0:175 route-map calculator permit 7998 match community 2_115_245 2_161_175 set community 0:28175 ip community-list standard 2_9_207 permit 65000:2 0:9 0:207 ip community-list standard 2_23_81 permit 65000:2 0:23 0:81 ip community-list standard 2_27_69 permit 65000:2 0:27 0:69 route-map calculator permit 7999 match community 2_9_207 2_23_81 2_27_69 set community 0:1863 ip community-list standard 2_171_219 permit 65000:2 0:171 0:219 route-map calculator permit 8000 match community 2_171_219 set community 0:37449 ip community-list standard 2_113_127 permit 65000:2 0:113 0:127 route-map calculator permit 8001 match community 2_113_127 set community 0:14351 ip community-list standard 2_95_177 permit 65000:2 0:95 0:177 route-map calculator permit 8002 match community 2_95_177 set community 0:16815 ip community-list standard 1_1_237 permit 65000:1 0:1 0:237 ip community-list standard 2_1_238 permit 65000:2 0:1 0:238 ip community-list standard 2_2_119 permit 65000:2 0:2 0:119 ip community-list standard 1_2_236 permit 65000:1 0:2 0:236 ip community-list standard 1_3_235 permit 65000:1 0:3 0:235 ip community-list standard 1_4_234 permit 65000:1 0:4 0:234 ip community-list standard 1_5_233 permit 65000:1 0:5 0:233 ip community-list standard 1_6_232 permit 65000:1 0:6 0:232 ip community-list standard 2_7_34 permit 65000:2 0:7 0:34 ip community-list standard 1_7_231 permit 65000:1 0:7 0:231 ip community-list standard 1_8_230 permit 65000:1 0:8 0:230 ip community-list standard 1_9_229 permit 65000:1 0:9 0:229 ip community-list standard 1_10_228 permit 65000:1 0:10 0:228 ip community-list standard 1_11_227 permit 65000:1 0:11 0:227 ip community-list standard 1_12_226 permit 65000:1 0:12 0:226 ip community-list standard 1_13_225 permit 65000:1 0:13 0:225 ip community-list standard 2_14_17 permit 65000:2 0:14 0:17 ip community-list standard 1_14_224 permit 65000:1 0:14 0:224 ip community-list standard 1_15_223 permit 65000:1 0:15 0:223 ip community-list standard 1_16_222 permit 65000:1 0:16 0:222 ip community-list standard 1_17_221 permit 65000:1 0:17 0:221 ip community-list standard 1_18_220 permit 65000:1 0:18 0:220 ip community-list standard 1_19_219 permit 65000:1 0:19 0:219 ip community-list standard 1_20_218 permit 65000:1 0:20 0:218 ip community-list standard 1_21_217 permit 65000:1 0:21 0:217 ip community-list standard 1_22_216 permit 65000:1 0:22 0:216 ip community-list standard 1_23_215 permit 65000:1 0:23 0:215 ip community-list standard 1_24_214 permit 65000:1 0:24 0:214 ip community-list standard 1_25_213 permit 65000:1 0:25 0:213 ip community-list standard 1_26_212 permit 65000:1 0:26 0:212 ip community-list standard 1_27_211 permit 65000:1 0:27 0:211 ip community-list standard 1_28_210 permit 65000:1 0:28 0:210 ip community-list standard 1_29_209 permit 65000:1 0:29 0:209 ip community-list standard 1_30_208 permit 65000:1 0:30 0:208 ip community-list standard 1_31_207 permit 65000:1 0:31 0:207 ip community-list standard 1_32_206 permit 65000:1 0:32 0:206 ip community-list standard 1_33_205 permit 65000:1 0:33 0:205 ip community-list standard 1_34_204 permit 65000:1 0:34 0:204 ip community-list standard 1_35_203 permit 65000:1 0:35 0:203 ip community-list standard 1_36_202 permit 65000:1 0:36 0:202 ip community-list standard 1_37_201 permit 65000:1 0:37 0:201 ip community-list standard 1_38_200 permit 65000:1 0:38 0:200 ip community-list standard 1_39_199 permit 65000:1 0:39 0:199 ip community-list standard 1_40_198 permit 65000:1 0:40 0:198 ip community-list standard 1_41_197 permit 65000:1 0:41 0:197 ip community-list standard 1_42_196 permit 65000:1 0:42 0:196 ip community-list standard 1_43_195 permit 65000:1 0:43 0:195 ip community-list standard 1_44_194 permit 65000:1 0:44 0:194 ip community-list standard 1_45_193 permit 65000:1 0:45 0:193 ip community-list standard 1_46_192 permit 65000:1 0:46 0:192 ip community-list standard 1_47_191 permit 65000:1 0:47 0:191 ip community-list standard 1_48_190 permit 65000:1 0:48 0:190 ip community-list standard 1_49_189 permit 65000:1 0:49 0:189 ip community-list standard 1_50_188 permit 65000:1 0:50 0:188 ip community-list standard 1_51_187 permit 65000:1 0:51 0:187 ip community-list standard 1_52_186 permit 65000:1 0:52 0:186 ip community-list standard 1_53_185 permit 65000:1 0:53 0:185 ip community-list standard 1_54_184 permit 65000:1 0:54 0:184 ip community-list standard 1_55_183 permit 65000:1 0:55 0:183 ip community-list standard 1_56_182 permit 65000:1 0:56 0:182 ip community-list standard 1_57_181 permit 65000:1 0:57 0:181 ip community-list standard 1_58_180 permit 65000:1 0:58 0:180 ip community-list standard 1_59_179 permit 65000:1 0:59 0:179 ip community-list standard 1_60_178 permit 65000:1 0:60 0:178 ip community-list standard 1_61_177 permit 65000:1 0:61 0:177 ip community-list standard 1_62_176 permit 65000:1 0:62 0:176 ip community-list standard 1_63_175 permit 65000:1 0:63 0:175 ip community-list standard 1_64_174 permit 65000:1 0:64 0:174 ip community-list standard 1_65_173 permit 65000:1 0:65 0:173 ip community-list standard 1_66_172 permit 65000:1 0:66 0:172 ip community-list standard 1_67_171 permit 65000:1 0:67 0:171 ip community-list standard 1_68_170 permit 65000:1 0:68 0:170 ip community-list standard 1_69_169 permit 65000:1 0:69 0:169 ip community-list standard 1_70_168 permit 65000:1 0:70 0:168 ip community-list standard 1_71_167 permit 65000:1 0:71 0:167 ip community-list standard 1_72_166 permit 65000:1 0:72 0:166 ip community-list standard 1_73_165 permit 65000:1 0:73 0:165 ip community-list standard 1_74_164 permit 65000:1 0:74 0:164 ip community-list standard 1_75_163 permit 65000:1 0:75 0:163 ip community-list standard 1_76_162 permit 65000:1 0:76 0:162 ip community-list standard 1_77_161 permit 65000:1 0:77 0:161 ip community-list standard 1_78_160 permit 65000:1 0:78 0:160 ip community-list standard 1_79_159 permit 65000:1 0:79 0:159 ip community-list standard 1_80_158 permit 65000:1 0:80 0:158 ip community-list standard 1_81_157 permit 65000:1 0:81 0:157 ip community-list standard 1_82_156 permit 65000:1 0:82 0:156 ip community-list standard 1_83_155 permit 65000:1 0:83 0:155 ip community-list standard 1_84_154 permit 65000:1 0:84 0:154 ip community-list standard 1_85_153 permit 65000:1 0:85 0:153 ip community-list standard 1_86_152 permit 65000:1 0:86 0:152 ip community-list standard 1_87_151 permit 65000:1 0:87 0:151 ip community-list standard 1_88_150 permit 65000:1 0:88 0:150 ip community-list standard 1_89_149 permit 65000:1 0:89 0:149 ip community-list standard 1_90_148 permit 65000:1 0:90 0:148 ip community-list standard 1_91_147 permit 65000:1 0:91 0:147 ip community-list standard 1_92_146 permit 65000:1 0:92 0:146 ip community-list standard 1_93_145 permit 65000:1 0:93 0:145 ip community-list standard 1_94_144 permit 65000:1 0:94 0:144 ip community-list standard 1_95_143 permit 65000:1 0:95 0:143 ip community-list standard 1_96_142 permit 65000:1 0:96 0:142 ip community-list standard 1_97_141 permit 65000:1 0:97 0:141 ip community-list standard 1_98_140 permit 65000:1 0:98 0:140 ip community-list standard 1_99_139 permit 65000:1 0:99 0:139 ip community-list standard 1_100_138 permit 65000:1 0:100 0:138 ip community-list standard 1_101_137 permit 65000:1 0:101 0:137 ip community-list standard 1_102_136 permit 65000:1 0:102 0:136 ip community-list standard 1_103_135 permit 65000:1 0:103 0:135 ip community-list standard 1_104_134 permit 65000:1 0:104 0:134 ip community-list standard 1_105_133 permit 65000:1 0:105 0:133 ip community-list standard 1_106_132 permit 65000:1 0:106 0:132 ip community-list standard 1_107_131 permit 65000:1 0:107 0:131 ip community-list standard 1_108_130 permit 65000:1 0:108 0:130 ip community-list standard 1_109_129 permit 65000:1 0:109 0:129 ip community-list standard 1_110_128 permit 65000:1 0:110 0:128 ip community-list standard 1_111_127 permit 65000:1 0:111 0:127 ip community-list standard 1_112_126 permit 65000:1 0:112 0:126 ip community-list standard 1_113_125 permit 65000:1 0:113 0:125 ip community-list standard 1_114_124 permit 65000:1 0:114 0:124 ip community-list standard 1_115_123 permit 65000:1 0:115 0:123 ip community-list standard 1_116_122 permit 65000:1 0:116 0:122 ip community-list standard 1_117_121 permit 65000:1 0:117 0:121 ip community-list standard 1_118_120 permit 65000:1 0:118 0:120 ip community-list standard 1_119_119 permit 65000:1 0:119 0:119 ip community-list expanded c238 permit 1 ^65000:4_0:238_0:1$ ip community-list expanded c238 permit 2 ^65000:3_0:239_0:1$ ip community-list expanded c238 permit 3 ^65000:3_0:240_0:2$ ip community-list expanded c238 permit 4 ^65000:3_0:241_0:3$ ip community-list expanded c238 permit 5 ^65000:3_0:242_0:4$ ip community-list expanded c238 permit 6 ^65000:3_0:243_0:5$ ip community-list expanded c238 permit 7 ^65000:3_0:244_0:6$ ip community-list expanded c238 permit 8 ^65000:3_0:245_0:7$ ip community-list expanded c238 permit 9 ^65000:3_0:246_0:8$ ip community-list expanded c238 permit 10 ^65000:3_0:247_0:9$ ip community-list expanded c238 permit 11 ^65000:3_0:248_0:10$ ip community-list expanded c238 permit 12 ^65000:3_0:249_0:11$ ip community-list expanded c238 permit 13 ^65000:3_0:250_0:12$ ip community-list expanded c238 permit 14 ^65000:3_0:251_0:13$ ip community-list expanded c238 permit 15 ^65000:3_0:252_0:14$ ip community-list expanded c238 permit 16 ^65000:3_0:253_0:15$ ip community-list expanded c238 permit 17 ^65000:3_0:254_0:16$ ip community-list expanded c238 permit 18 ^65000:3_0:255_0:17$ ip community-list expanded c238 permit 19 ^65000:3_0:256_0:18$ route-map calculator permit 8003 match community 1_1_237 2_1_238 2_2_119 1_2_236 1_3_235 set community 0:238 route-map calculator permit 8004 match community 1_4_234 1_5_233 1_6_232 2_7_34 1_7_231 set community 0:238 route-map calculator permit 8005 match community 1_8_230 1_9_229 1_10_228 1_11_227 1_12_226 set community 0:238 route-map calculator permit 8006 match community 1_13_225 2_14_17 1_14_224 1_15_223 1_16_222 set community 0:238 route-map calculator permit 8007 match community 1_17_221 1_18_220 1_19_219 1_20_218 1_21_217 set community 0:238 route-map calculator permit 8008 match community 1_22_216 1_23_215 1_24_214 1_25_213 1_26_212 set community 0:238 route-map calculator permit 8009 match community 1_27_211 1_28_210 1_29_209 1_30_208 1_31_207 set community 0:238 route-map calculator permit 8010 match community 1_32_206 1_33_205 1_34_204 1_35_203 1_36_202 set community 0:238 route-map calculator permit 8011 match community 1_37_201 1_38_200 1_39_199 1_40_198 1_41_197 set community 0:238 route-map calculator permit 8012 match community 1_42_196 1_43_195 1_44_194 1_45_193 1_46_192 set community 0:238 route-map calculator permit 8013 match community 1_47_191 1_48_190 1_49_189 1_50_188 1_51_187 set community 0:238 route-map calculator permit 8014 match community 1_52_186 1_53_185 1_54_184 1_55_183 1_56_182 set community 0:238 route-map calculator permit 8015 match community 1_57_181 1_58_180 1_59_179 1_60_178 1_61_177 set community 0:238 route-map calculator permit 8016 match community 1_62_176 1_63_175 1_64_174 1_65_173 1_66_172 set community 0:238 route-map calculator permit 8017 match community 1_67_171 1_68_170 1_69_169 1_70_168 1_71_167 set community 0:238 route-map calculator permit 8018 match community 1_72_166 1_73_165 1_74_164 1_75_163 1_76_162 set community 0:238 route-map calculator permit 8019 match community 1_77_161 1_78_160 1_79_159 1_80_158 1_81_157 set community 0:238 route-map calculator permit 8020 match community 1_82_156 1_83_155 1_84_154 1_85_153 1_86_152 set community 0:238 route-map calculator permit 8021 match community 1_87_151 1_88_150 1_89_149 1_90_148 1_91_147 set community 0:238 route-map calculator permit 8022 match community 1_92_146 1_93_145 1_94_144 1_95_143 1_96_142 set community 0:238 route-map calculator permit 8023 match community 1_97_141 1_98_140 1_99_139 1_100_138 1_101_137 set community 0:238 route-map calculator permit 8024 match community 1_102_136 1_103_135 1_104_134 1_105_133 1_106_132 set community 0:238 route-map calculator permit 8025 match community 1_107_131 1_108_130 1_109_129 1_110_128 1_111_127 set community 0:238 route-map calculator permit 8026 match community 1_112_126 1_113_125 1_114_124 1_115_123 1_116_122 set community 0:238 route-map calculator permit 8027 match community 1_117_121 1_118_120 1_119_119 c4_238_1 c3_239_1 set community 0:238 route-map calculator permit 8028 match community c3_240_2 c3_241_3 c3_242_4 c3_243_5 c3_244_6 set community 0:238 route-map calculator permit 8029 match community c3_245_7 c3_246_8 c3_247_9 c3_248_10 c3_249_11 set community 0:238 route-map calculator permit 8030 match community c3_250_12 c3_251_13 c3_252_14 c3_253_15 c3_254_16 set community 0:238 route-map calculator permit 8031 match community c3_255_17 c3_256_18 set community 0:238 ip community-list standard 2_144_219 permit 65000:2 0:144 0:219 ip community-list standard 2_146_216 permit 65000:2 0:146 0:216 route-map calculator permit 8032 match community 2_144_219 2_146_216 set community 0:31536 ip community-list standard 2_231_255 permit 65000:2 0:231 0:255 route-map calculator permit 8033 match community 2_231_255 set community 0:58905 ip community-list standard 2_106_145 permit 65000:2 0:106 0:145 route-map calculator permit 8034 match community 2_106_145 set community 0:15370 ip community-list standard 2_42_181 permit 65000:2 0:42 0:181 route-map calculator permit 8035 match community 2_42_181 set community 0:7602 ip community-list standard 2_155_222 permit 65000:2 0:155 0:222 ip community-list standard 2_185_186 permit 65000:2 0:185 0:186 route-map calculator permit 8036 match community 2_155_222 2_185_186 set community 0:34410 ip community-list standard 2_49_189 permit 65000:2 0:49 0:189 ip community-list standard 2_63_147 permit 65000:2 0:63 0:147 route-map calculator permit 8037 match community 2_49_189 2_63_147 set community 0:9261 ip community-list standard 2_211_224 permit 65000:2 0:211 0:224 route-map calculator permit 8038 match community 2_211_224 set community 0:47264 ip community-list standard 2_62_255 permit 65000:2 0:62 0:255 ip community-list standard 2_85_186 permit 65000:2 0:85 0:186 ip community-list standard 2_93_170 permit 65000:2 0:93 0:170 ip community-list standard 2_102_155 permit 65000:2 0:102 0:155 route-map calculator permit 8039 match community 2_62_255 2_85_186 2_93_170 2_102_155 set community 0:15810 ip community-list standard 2_79_145 permit 65000:2 0:79 0:145 route-map calculator permit 8040 match community 2_79_145 set community 0:11455 ip community-list standard 2_156_197 permit 65000:2 0:156 0:197 route-map calculator permit 8041 match community 2_156_197 set community 0:30732 ip community-list standard 2_146_229 permit 65000:2 0:146 0:229 route-map calculator permit 8042 match community 2_146_229 set community 0:33434 ip community-list standard 2_93_241 permit 65000:2 0:93 0:241 route-map calculator permit 8043 match community 2_93_241 set community 0:22413 ip community-list standard 2_234_253 permit 65000:2 0:234 0:253 route-map calculator permit 8044 match community 2_234_253 set community 0:59202 ip community-list standard 2_111_133 permit 65000:2 0:111 0:133 route-map calculator permit 8045 match community 2_111_133 set community 0:14763 ip community-list standard 2_144_248 permit 65000:2 0:144 0:248 ip community-list standard 2_186_192 permit 65000:2 0:186 0:192 route-map calculator permit 8046 match community 2_144_248 2_186_192 set community 0:35712 ip community-list standard 2_54_194 permit 65000:2 0:54 0:194 ip community-list standard 2_97_108 permit 65000:2 0:97 0:108 route-map calculator permit 8047 match community 2_54_194 2_97_108 set community 0:10476 ip community-list standard 2_133_228 permit 65000:2 0:133 0:228 route-map calculator permit 8048 match community 2_133_228 set community 0:30324 ip community-list standard 2_89_99 permit 65000:2 0:89 0:99 route-map calculator permit 8049 match community 2_89_99 set community 0:8811 ip community-list standard 2_21_251 permit 65000:2 0:21 0:251 route-map calculator permit 8050 match community 2_21_251 set community 0:5271 ip community-list standard 2_34_178 permit 65000:2 0:34 0:178 ip community-list standard 2_68_89 permit 65000:2 0:68 0:89 route-map calculator permit 8051 match community 2_34_178 2_68_89 set community 0:6052 ip community-list standard 2_54_237 permit 65000:2 0:54 0:237 ip community-list standard 2_79_162 permit 65000:2 0:79 0:162 ip community-list standard 2_81_158 permit 65000:2 0:81 0:158 route-map calculator permit 8052 match community 2_54_237 2_79_162 2_81_158 set community 0:12798 ip community-list standard 2_43_206 permit 65000:2 0:43 0:206 ip community-list standard 2_86_103 permit 65000:2 0:86 0:103 route-map calculator permit 8053 match community 2_43_206 2_86_103 set community 0:8858 ip community-list standard 2_111_171 permit 65000:2 0:111 0:171 route-map calculator permit 8054 match community 2_111_171 set community 0:18981 ip community-list standard 2_69_184 permit 65000:2 0:69 0:184 ip community-list standard 2_92_138 permit 65000:2 0:92 0:138 route-map calculator permit 8055 match community 2_69_184 2_92_138 set community 0:12696 ip community-list standard 2_137_193 permit 65000:2 0:137 0:193 route-map calculator permit 8056 match community 2_137_193 set community 0:26441 ip community-list standard 2_38_189 permit 65000:2 0:38 0:189 ip community-list standard 2_42_171 permit 65000:2 0:42 0:171 ip community-list standard 2_54_133 permit 65000:2 0:54 0:133 ip community-list standard 2_57_126 permit 65000:2 0:57 0:126 ip community-list standard 2_63_114 permit 65000:2 0:63 0:114 route-map calculator permit 8057 match community 2_38_189 2_42_171 2_54_133 2_57_126 2_63_114 set community 0:7182 ip community-list standard 2_166_196 permit 65000:2 0:166 0:196 route-map calculator permit 8058 match community 2_166_196 set community 0:32536 ip community-list standard 2_160_223 permit 65000:2 0:160 0:223 route-map calculator permit 8059 match community 2_160_223 set community 0:35680 ip community-list standard 2_94_251 permit 65000:2 0:94 0:251 route-map calculator permit 8060 match community 2_94_251 set community 0:23594 ip community-list standard 2_46_194 permit 65000:2 0:46 0:194 ip community-list standard 2_92_97 permit 65000:2 0:92 0:97 route-map calculator permit 8061 match community 2_46_194 2_92_97 set community 0:8924 ip community-list standard 2_188_188 permit 65000:2 0:188 0:188 route-map calculator permit 8062 match community 2_188_188 set community 0:35344 ip community-list standard 2_231_246 permit 65000:2 0:231 0:246 route-map calculator permit 8063 match community 2_231_246 set community 0:56826 ip community-list standard 2_14_223 permit 65000:2 0:14 0:223 route-map calculator permit 8064 match community 2_14_223 set community 0:3122 ip community-list standard 2_73_101 permit 65000:2 0:73 0:101 route-map calculator permit 8065 match community 2_73_101 set community 0:7373 ip community-list standard 2_149_238 permit 65000:2 0:149 0:238 route-map calculator permit 8066 match community 2_149_238 set community 0:35462 ip community-list standard 2_129_242 permit 65000:2 0:129 0:242 route-map calculator permit 8067 match community 2_129_242 set community 0:31218 ip community-list standard 2_25_219 permit 65000:2 0:25 0:219 ip community-list standard 2_73_75 permit 65000:2 0:73 0:75 route-map calculator permit 8068 match community 2_25_219 2_73_75 set community 0:5475 ip community-list standard 2_51_251 permit 65000:2 0:51 0:251 route-map calculator permit 8069 match community 2_51_251 set community 0:12801 ip community-list standard 2_209_228 permit 65000:2 0:209 0:228 route-map calculator permit 8070 match community 2_209_228 set community 0:47652 ip community-list standard 2_188_254 permit 65000:2 0:188 0:254 route-map calculator permit 8071 match community 2_188_254 set community 0:47752 ip community-list standard 2_113_207 permit 65000:2 0:113 0:207 route-map calculator permit 8072 match community 2_113_207 set community 0:23391 ip community-list standard 2_93_239 permit 65000:2 0:93 0:239 route-map calculator permit 8073 match community 2_93_239 set community 0:22227 ip community-list standard 2_189_199 permit 65000:2 0:189 0:199 route-map calculator permit 8074 match community 2_189_199 set community 0:37611 ip community-list standard 2_244_246 permit 65000:2 0:244 0:246 route-map calculator permit 8075 match community 2_244_246 set community 0:60024 ip community-list standard 2_54_211 permit 65000:2 0:54 0:211 route-map calculator permit 8076 match community 2_54_211 set community 0:11394 ip community-list standard 2_185_224 permit 65000:2 0:185 0:224 route-map calculator permit 8077 match community 2_185_224 set community 0:41440 ip community-list standard 2_207_230 permit 65000:2 0:207 0:230 route-map calculator permit 8078 match community 2_207_230 set community 0:47610 ip community-list standard 2_167_224 permit 65000:2 0:167 0:224 route-map calculator permit 8079 match community 2_167_224 set community 0:37408 ip community-list standard 2_149_236 permit 65000:2 0:149 0:236 route-map calculator permit 8080 match community 2_149_236 set community 0:35164 ip community-list standard 2_130_244 permit 65000:2 0:130 0:244 route-map calculator permit 8081 match community 2_130_244 set community 0:31720 ip community-list standard 2_14_178 permit 65000:2 0:14 0:178 ip community-list standard 2_28_89 permit 65000:2 0:28 0:89 route-map calculator permit 8082 match community 2_14_178 2_28_89 set community 0:2492 ip community-list standard 2_53_227 permit 65000:2 0:53 0:227 route-map calculator permit 8083 match community 2_53_227 set community 0:12031 ip community-list standard 2_123_131 permit 65000:2 0:123 0:131 route-map calculator permit 8084 match community 2_123_131 set community 0:16113 ip community-list standard 2_28_158 permit 65000:2 0:28 0:158 ip community-list standard 2_56_79 permit 65000:2 0:56 0:79 route-map calculator permit 8085 match community 2_28_158 2_56_79 set community 0:4424 ip community-list standard 2_90_213 permit 65000:2 0:90 0:213 ip community-list standard 2_135_142 permit 65000:2 0:135 0:142 route-map calculator permit 8086 match community 2_90_213 2_135_142 set community 0:19170 ip community-list standard 2_28_197 permit 65000:2 0:28 0:197 route-map calculator permit 8087 match community 2_28_197 set community 0:5516 ip community-list standard 2_122_145 permit 65000:2 0:122 0:145 route-map calculator permit 8088 match community 2_122_145 set community 0:17690 ip community-list standard 2_92_193 permit 65000:2 0:92 0:193 route-map calculator permit 8089 match community 2_92_193 set community 0:17756 ip community-list standard 2_44_206 permit 65000:2 0:44 0:206 ip community-list standard 2_88_103 permit 65000:2 0:88 0:103 route-map calculator permit 8090 match community 2_44_206 2_88_103 set community 0:9064 ip community-list standard 2_185_250 permit 65000:2 0:185 0:250 route-map calculator permit 8091 match community 2_185_250 set community 0:46250 ip community-list standard 2_95_241 permit 65000:2 0:95 0:241 route-map calculator permit 8092 match community 2_95_241 set community 0:22895 ip community-list standard 2_22_156 permit 65000:2 0:22 0:156 ip community-list standard 2_24_143 permit 65000:2 0:24 0:143 ip community-list standard 2_26_132 permit 65000:2 0:26 0:132 ip community-list standard 2_33_104 permit 65000:2 0:33 0:104 ip community-list standard 2_39_88 permit 65000:2 0:39 0:88 ip community-list standard 2_44_78 permit 65000:2 0:44 0:78 ip community-list standard 2_52_66 permit 65000:2 0:52 0:66 route-map calculator permit 8093 match community 2_22_156 2_24_143 2_26_132 2_33_104 2_39_88 set community 0:3432 route-map calculator permit 8094 match community 2_44_78 2_52_66 set community 0:3432 ip community-list standard 2_17_97 permit 65000:2 0:17 0:97 route-map calculator permit 8095 match community 2_17_97 set community 0:1649 ip community-list standard 2_212_232 permit 65000:2 0:212 0:232 route-map calculator permit 8096 match community 2_212_232 set community 0:49184 ip community-list standard 2_115_155 permit 65000:2 0:115 0:155 route-map calculator permit 8097 match community 2_115_155 set community 0:17825 ip community-list standard 2_5_174 permit 65000:2 0:5 0:174 ip community-list standard 2_6_145 permit 65000:2 0:6 0:145 ip community-list standard 2_10_87 permit 65000:2 0:10 0:87 ip community-list standard 2_15_58 permit 65000:2 0:15 0:58 ip community-list standard 2_29_30 permit 65000:2 0:29 0:30 route-map calculator permit 8098 match community 2_5_174 2_6_145 2_10_87 2_15_58 2_29_30 set community 0:870 ip community-list standard 2_34_253 permit 65000:2 0:34 0:253 ip community-list standard 2_46_187 permit 65000:2 0:46 0:187 route-map calculator permit 8099 match community 2_34_253 2_46_187 set community 0:8602 ip community-list standard 2_9_193 permit 65000:2 0:9 0:193 route-map calculator permit 8100 match community 2_9_193 set community 0:1737 ip community-list standard 2_59_161 permit 65000:2 0:59 0:161 route-map calculator permit 8101 match community 2_59_161 set community 0:9499 ip community-list standard 2_133_217 permit 65000:2 0:133 0:217 route-map calculator permit 8102 match community 2_133_217 set community 0:28861 ip community-list standard 1_1_193 permit 65000:1 0:1 0:193 ip community-list standard 2_1_194 permit 65000:2 0:1 0:194 ip community-list standard 2_2_97 permit 65000:2 0:2 0:97 ip community-list standard 1_2_192 permit 65000:1 0:2 0:192 ip community-list standard 1_3_191 permit 65000:1 0:3 0:191 ip community-list standard 1_4_190 permit 65000:1 0:4 0:190 ip community-list standard 1_5_189 permit 65000:1 0:5 0:189 ip community-list standard 1_6_188 permit 65000:1 0:6 0:188 ip community-list standard 1_7_187 permit 65000:1 0:7 0:187 ip community-list standard 1_8_186 permit 65000:1 0:8 0:186 ip community-list standard 1_9_185 permit 65000:1 0:9 0:185 ip community-list standard 1_10_184 permit 65000:1 0:10 0:184 ip community-list standard 1_11_183 permit 65000:1 0:11 0:183 ip community-list standard 1_12_182 permit 65000:1 0:12 0:182 ip community-list standard 1_13_181 permit 65000:1 0:13 0:181 ip community-list standard 1_14_180 permit 65000:1 0:14 0:180 ip community-list standard 1_15_179 permit 65000:1 0:15 0:179 ip community-list standard 1_16_178 permit 65000:1 0:16 0:178 ip community-list standard 1_17_177 permit 65000:1 0:17 0:177 ip community-list standard 1_18_176 permit 65000:1 0:18 0:176 ip community-list standard 1_19_175 permit 65000:1 0:19 0:175 ip community-list standard 1_20_174 permit 65000:1 0:20 0:174 ip community-list standard 1_21_173 permit 65000:1 0:21 0:173 ip community-list standard 1_22_172 permit 65000:1 0:22 0:172 ip community-list standard 1_23_171 permit 65000:1 0:23 0:171 ip community-list standard 1_24_170 permit 65000:1 0:24 0:170 ip community-list standard 1_25_169 permit 65000:1 0:25 0:169 ip community-list standard 1_26_168 permit 65000:1 0:26 0:168 ip community-list standard 1_27_167 permit 65000:1 0:27 0:167 ip community-list standard 1_28_166 permit 65000:1 0:28 0:166 ip community-list standard 1_29_165 permit 65000:1 0:29 0:165 ip community-list standard 1_30_164 permit 65000:1 0:30 0:164 ip community-list standard 1_31_163 permit 65000:1 0:31 0:163 ip community-list standard 1_32_162 permit 65000:1 0:32 0:162 ip community-list standard 1_33_161 permit 65000:1 0:33 0:161 ip community-list standard 1_34_160 permit 65000:1 0:34 0:160 ip community-list standard 1_35_159 permit 65000:1 0:35 0:159 ip community-list standard 1_36_158 permit 65000:1 0:36 0:158 ip community-list standard 1_37_157 permit 65000:1 0:37 0:157 ip community-list standard 1_38_156 permit 65000:1 0:38 0:156 ip community-list standard 1_39_155 permit 65000:1 0:39 0:155 ip community-list standard 1_40_154 permit 65000:1 0:40 0:154 ip community-list standard 1_41_153 permit 65000:1 0:41 0:153 ip community-list standard 1_42_152 permit 65000:1 0:42 0:152 ip community-list standard 1_43_151 permit 65000:1 0:43 0:151 ip community-list standard 1_44_150 permit 65000:1 0:44 0:150 ip community-list standard 1_45_149 permit 65000:1 0:45 0:149 ip community-list standard 1_46_148 permit 65000:1 0:46 0:148 ip community-list standard 1_47_147 permit 65000:1 0:47 0:147 ip community-list standard 1_48_146 permit 65000:1 0:48 0:146 ip community-list standard 1_49_145 permit 65000:1 0:49 0:145 ip community-list standard 1_50_144 permit 65000:1 0:50 0:144 ip community-list standard 1_51_143 permit 65000:1 0:51 0:143 ip community-list standard 1_52_142 permit 65000:1 0:52 0:142 ip community-list standard 1_53_141 permit 65000:1 0:53 0:141 ip community-list standard 1_54_140 permit 65000:1 0:54 0:140 ip community-list standard 1_55_139 permit 65000:1 0:55 0:139 ip community-list standard 1_56_138 permit 65000:1 0:56 0:138 ip community-list standard 1_57_137 permit 65000:1 0:57 0:137 ip community-list standard 1_58_136 permit 65000:1 0:58 0:136 ip community-list standard 1_59_135 permit 65000:1 0:59 0:135 ip community-list standard 1_60_134 permit 65000:1 0:60 0:134 ip community-list standard 1_61_133 permit 65000:1 0:61 0:133 ip community-list standard 1_62_132 permit 65000:1 0:62 0:132 ip community-list standard 1_63_131 permit 65000:1 0:63 0:131 ip community-list standard 1_64_130 permit 65000:1 0:64 0:130 ip community-list standard 1_65_129 permit 65000:1 0:65 0:129 ip community-list standard 1_66_128 permit 65000:1 0:66 0:128 ip community-list standard 1_67_127 permit 65000:1 0:67 0:127 ip community-list standard 1_68_126 permit 65000:1 0:68 0:126 ip community-list standard 1_69_125 permit 65000:1 0:69 0:125 ip community-list standard 1_70_124 permit 65000:1 0:70 0:124 ip community-list standard 1_71_123 permit 65000:1 0:71 0:123 ip community-list standard 1_72_122 permit 65000:1 0:72 0:122 ip community-list standard 1_73_121 permit 65000:1 0:73 0:121 ip community-list standard 1_74_120 permit 65000:1 0:74 0:120 ip community-list standard 1_75_119 permit 65000:1 0:75 0:119 ip community-list standard 1_76_118 permit 65000:1 0:76 0:118 ip community-list standard 1_77_117 permit 65000:1 0:77 0:117 ip community-list standard 1_78_116 permit 65000:1 0:78 0:116 ip community-list standard 1_79_115 permit 65000:1 0:79 0:115 ip community-list standard 1_80_114 permit 65000:1 0:80 0:114 ip community-list standard 1_81_113 permit 65000:1 0:81 0:113 ip community-list standard 1_82_112 permit 65000:1 0:82 0:112 ip community-list standard 1_83_111 permit 65000:1 0:83 0:111 ip community-list standard 1_84_110 permit 65000:1 0:84 0:110 ip community-list standard 1_85_109 permit 65000:1 0:85 0:109 ip community-list standard 1_86_108 permit 65000:1 0:86 0:108 ip community-list standard 1_87_107 permit 65000:1 0:87 0:107 ip community-list standard 1_88_106 permit 65000:1 0:88 0:106 ip community-list standard 1_89_105 permit 65000:1 0:89 0:105 ip community-list standard 1_90_104 permit 65000:1 0:90 0:104 ip community-list standard 1_91_103 permit 65000:1 0:91 0:103 ip community-list standard 1_92_102 permit 65000:1 0:92 0:102 ip community-list standard 1_93_101 permit 65000:1 0:93 0:101 ip community-list standard 1_94_100 permit 65000:1 0:94 0:100 ip community-list standard 1_95_99 permit 65000:1 0:95 0:99 ip community-list standard 1_96_98 permit 65000:1 0:96 0:98 ip community-list standard 1_97_97 permit 65000:1 0:97 0:97 ip community-list expanded c194 permit 1 ^65000:4_0:194_0:1$ ip community-list expanded c194 permit 2 ^65000:3_0:195_0:1$ ip community-list expanded c194 permit 3 ^65000:3_0:196_0:2$ ip community-list expanded c194 permit 4 ^65000:3_0:197_0:3$ ip community-list expanded c194 permit 5 ^65000:3_0:198_0:4$ ip community-list expanded c194 permit 6 ^65000:3_0:199_0:5$ ip community-list expanded c194 permit 7 ^65000:3_0:200_0:6$ ip community-list expanded c194 permit 8 ^65000:3_0:201_0:7$ ip community-list expanded c194 permit 9 ^65000:3_0:202_0:8$ ip community-list expanded c194 permit 10 ^65000:3_0:203_0:9$ ip community-list expanded c194 permit 11 ^65000:3_0:204_0:10$ ip community-list expanded c194 permit 12 ^65000:3_0:205_0:11$ ip community-list expanded c194 permit 13 ^65000:3_0:206_0:12$ ip community-list expanded c194 permit 14 ^65000:3_0:207_0:13$ ip community-list expanded c194 permit 15 ^65000:3_0:208_0:14$ ip community-list expanded c194 permit 16 ^65000:3_0:209_0:15$ ip community-list expanded c194 permit 17 ^65000:3_0:210_0:16$ ip community-list expanded c194 permit 18 ^65000:3_0:211_0:17$ ip community-list expanded c194 permit 19 ^65000:3_0:212_0:18$ ip community-list expanded c194 permit 20 ^65000:3_0:213_0:19$ ip community-list expanded c194 permit 21 ^65000:3_0:214_0:20$ ip community-list expanded c194 permit 22 ^65000:3_0:215_0:21$ ip community-list expanded c194 permit 23 ^65000:3_0:216_0:22$ ip community-list expanded c194 permit 24 ^65000:3_0:217_0:23$ ip community-list expanded c194 permit 25 ^65000:3_0:218_0:24$ ip community-list expanded c194 permit 26 ^65000:3_0:219_0:25$ ip community-list expanded c194 permit 27 ^65000:3_0:220_0:26$ ip community-list expanded c194 permit 28 ^65000:3_0:221_0:27$ ip community-list expanded c194 permit 29 ^65000:3_0:222_0:28$ ip community-list expanded c194 permit 30 ^65000:3_0:223_0:29$ ip community-list expanded c194 permit 31 ^65000:3_0:224_0:30$ ip community-list expanded c194 permit 32 ^65000:3_0:225_0:31$ ip community-list expanded c194 permit 33 ^65000:3_0:226_0:32$ ip community-list expanded c194 permit 34 ^65000:3_0:227_0:33$ ip community-list expanded c194 permit 35 ^65000:3_0:228_0:34$ ip community-list expanded c194 permit 36 ^65000:3_0:229_0:35$ ip community-list expanded c194 permit 37 ^65000:3_0:230_0:36$ ip community-list expanded c194 permit 38 ^65000:3_0:231_0:37$ ip community-list expanded c194 permit 39 ^65000:3_0:232_0:38$ ip community-list expanded c194 permit 40 ^65000:3_0:233_0:39$ ip community-list expanded c194 permit 41 ^65000:3_0:234_0:40$ ip community-list expanded c194 permit 42 ^65000:3_0:235_0:41$ ip community-list expanded c194 permit 43 ^65000:3_0:236_0:42$ ip community-list expanded c194 permit 44 ^65000:3_0:237_0:43$ ip community-list expanded c194 permit 45 ^65000:3_0:238_0:44$ ip community-list expanded c194 permit 46 ^65000:3_0:239_0:45$ ip community-list expanded c194 permit 47 ^65000:3_0:240_0:46$ ip community-list expanded c194 permit 48 ^65000:3_0:241_0:47$ ip community-list expanded c194 permit 49 ^65000:3_0:242_0:48$ ip community-list expanded c194 permit 50 ^65000:3_0:243_0:49$ ip community-list expanded c194 permit 51 ^65000:3_0:244_0:50$ ip community-list expanded c194 permit 52 ^65000:3_0:245_0:51$ ip community-list expanded c194 permit 53 ^65000:3_0:246_0:52$ ip community-list expanded c194 permit 54 ^65000:3_0:247_0:53$ ip community-list expanded c194 permit 55 ^65000:3_0:248_0:54$ ip community-list expanded c194 permit 56 ^65000:3_0:249_0:55$ ip community-list expanded c194 permit 57 ^65000:3_0:250_0:56$ ip community-list expanded c194 permit 58 ^65000:3_0:251_0:57$ ip community-list expanded c194 permit 59 ^65000:3_0:252_0:58$ ip community-list expanded c194 permit 60 ^65000:3_0:253_0:59$ ip community-list expanded c194 permit 61 ^65000:3_0:254_0:60$ ip community-list expanded c194 permit 62 ^65000:3_0:255_0:61$ ip community-list expanded c194 permit 63 ^65000:3_0:256_0:62$ route-map calculator permit 8103 match community 1_1_193 2_1_194 2_2_97 1_2_192 1_3_191 set community 0:194 route-map calculator permit 8104 match community 1_4_190 1_5_189 1_6_188 1_7_187 1_8_186 set community 0:194 route-map calculator permit 8105 match community 1_9_185 1_10_184 1_11_183 1_12_182 1_13_181 set community 0:194 route-map calculator permit 8106 match community 1_14_180 1_15_179 1_16_178 1_17_177 1_18_176 set community 0:194 route-map calculator permit 8107 match community 1_19_175 1_20_174 1_21_173 1_22_172 1_23_171 set community 0:194 route-map calculator permit 8108 match community 1_24_170 1_25_169 1_26_168 1_27_167 1_28_166 set community 0:194 route-map calculator permit 8109 match community 1_29_165 1_30_164 1_31_163 1_32_162 1_33_161 set community 0:194 route-map calculator permit 8110 match community 1_34_160 1_35_159 1_36_158 1_37_157 1_38_156 set community 0:194 route-map calculator permit 8111 match community 1_39_155 1_40_154 1_41_153 1_42_152 1_43_151 set community 0:194 route-map calculator permit 8112 match community 1_44_150 1_45_149 1_46_148 1_47_147 1_48_146 set community 0:194 route-map calculator permit 8113 match community 1_49_145 1_50_144 1_51_143 1_52_142 1_53_141 set community 0:194 route-map calculator permit 8114 match community 1_54_140 1_55_139 1_56_138 1_57_137 1_58_136 set community 0:194 route-map calculator permit 8115 match community 1_59_135 1_60_134 1_61_133 1_62_132 1_63_131 set community 0:194 route-map calculator permit 8116 match community 1_64_130 1_65_129 1_66_128 1_67_127 1_68_126 set community 0:194 route-map calculator permit 8117 match community 1_69_125 1_70_124 1_71_123 1_72_122 1_73_121 set community 0:194 route-map calculator permit 8118 match community 1_74_120 1_75_119 1_76_118 1_77_117 1_78_116 set community 0:194 route-map calculator permit 8119 match community 1_79_115 1_80_114 1_81_113 1_82_112 1_83_111 set community 0:194 route-map calculator permit 8120 match community 1_84_110 1_85_109 1_86_108 1_87_107 1_88_106 set community 0:194 route-map calculator permit 8121 match community 1_89_105 1_90_104 1_91_103 1_92_102 1_93_101 set community 0:194 route-map calculator permit 8122 match community 1_94_100 1_95_99 1_96_98 1_97_97 c4_194_1 set community 0:194 route-map calculator permit 8123 match community c3_195_1 c3_196_2 c3_197_3 c3_198_4 c3_199_5 set community 0:194 route-map calculator permit 8124 match community c3_200_6 c3_201_7 c3_202_8 c3_203_9 c3_204_10 set community 0:194 route-map calculator permit 8125 match community c3_205_11 c3_206_12 c3_207_13 c3_208_14 c3_209_15 set community 0:194 route-map calculator permit 8126 match community c3_210_16 c3_211_17 c3_212_18 c3_213_19 c3_214_20 set community 0:194 route-map calculator permit 8127 match community c3_215_21 c3_216_22 c3_217_23 c3_218_24 c3_219_25 set community 0:194 route-map calculator permit 8128 match community c3_220_26 c3_221_27 c3_222_28 c3_223_29 c3_224_30 set community 0:194 route-map calculator permit 8129 match community c3_225_31 c3_226_32 c3_227_33 c3_228_34 c3_229_35 set community 0:194 route-map calculator permit 8130 match community c3_230_36 c3_231_37 c3_232_38 c3_233_39 c3_234_40 set community 0:194 route-map calculator permit 8131 match community c3_235_41 c3_236_42 c3_237_43 c3_238_44 c3_239_45 set community 0:194 route-map calculator permit 8132 match community c3_240_46 c3_241_47 c3_242_48 c3_243_49 c3_244_50 set community 0:194 route-map calculator permit 8133 match community c3_245_51 c3_246_52 c3_247_53 c3_248_54 c3_249_55 set community 0:194 route-map calculator permit 8134 match community c3_250_56 c3_251_57 c3_252_58 c3_253_59 c3_254_60 set community 0:194 route-map calculator permit 8135 match community c3_255_61 c3_256_62 set community 0:194 ip community-list standard 2_147_254 permit 65000:2 0:147 0:254 route-map calculator permit 8136 match community 2_147_254 set community 0:37338 ip community-list standard 2_74_241 permit 65000:2 0:74 0:241 route-map calculator permit 8137 match community 2_74_241 set community 0:17834 ip community-list standard 2_149_230 permit 65000:2 0:149 0:230 route-map calculator permit 8138 match community 2_149_230 set community 0:34270 ip community-list standard 2_22_181 permit 65000:2 0:22 0:181 route-map calculator permit 8139 match community 2_22_181 set community 0:3982 ip community-list standard 2_103_216 permit 65000:2 0:103 0:216 ip community-list standard 2_108_206 permit 65000:2 0:108 0:206 route-map calculator permit 8140 match community 2_103_216 2_108_206 set community 0:22248 ip community-list standard 2_96_191 permit 65000:2 0:96 0:191 route-map calculator permit 8141 match community 2_96_191 set community 0:18336 ip community-list standard 2_223_242 permit 65000:2 0:223 0:242 route-map calculator permit 8142 match community 2_223_242 set community 0:53966 ip community-list standard 2_53_171 permit 65000:2 0:53 0:171 ip community-list standard 2_57_159 permit 65000:2 0:57 0:159 route-map calculator permit 8143 match community 2_53_171 2_57_159 set community 0:9063 ip community-list standard 2_80_194 permit 65000:2 0:80 0:194 ip community-list standard 2_97_160 permit 65000:2 0:97 0:160 route-map calculator permit 8144 match community 2_80_194 2_97_160 set community 0:15520 ip community-list standard 2_29_222 permit 65000:2 0:29 0:222 ip community-list standard 2_37_174 permit 65000:2 0:37 0:174 ip community-list standard 2_58_111 permit 65000:2 0:58 0:111 ip community-list standard 2_74_87 permit 65000:2 0:74 0:87 route-map calculator permit 8145 match community 2_29_222 2_37_174 2_58_111 2_74_87 set community 0:6438 ip community-list standard 2_127_191 permit 65000:2 0:127 0:191 route-map calculator permit 8146 match community 2_127_191 set community 0:24257 ip community-list standard 2_246_251 permit 65000:2 0:246 0:251 route-map calculator permit 8147 match community 2_246_251 set community 0:61746 ip community-list standard 2_213_238 permit 65000:2 0:213 0:238 route-map calculator permit 8148 match community 2_213_238 set community 0:50694 ip community-list standard 2_28_203 permit 65000:2 0:28 0:203 ip community-list standard 2_29_196 permit 65000:2 0:29 0:196 ip community-list standard 2_49_116 permit 65000:2 0:49 0:116 ip community-list standard 2_58_98 permit 65000:2 0:58 0:98 route-map calculator permit 8149 match community 2_28_203 2_29_196 2_49_116 2_58_98 set community 0:5684 ip community-list standard 2_95_222 permit 65000:2 0:95 0:222 ip community-list standard 2_111_190 permit 65000:2 0:111 0:190 ip community-list standard 2_114_185 permit 65000:2 0:114 0:185 route-map calculator permit 8150 match community 2_95_222 2_111_190 2_114_185 set community 0:21090 ip community-list standard 2_154_248 permit 65000:2 0:154 0:248 ip community-list standard 2_176_217 permit 65000:2 0:176 0:217 route-map calculator permit 8151 match community 2_154_248 2_176_217 set community 0:38192 ip community-list standard 2_73_219 permit 65000:2 0:73 0:219 route-map calculator permit 8152 match community 2_73_219 set community 0:15987 ip community-list standard 2_5_151 permit 65000:2 0:5 0:151 route-map calculator permit 8153 match community 2_5_151 set community 0:755 ip community-list standard 2_207_234 permit 65000:2 0:207 0:234 route-map calculator permit 8154 match community 2_207_234 set community 0:48438 ip community-list standard 2_62_241 permit 65000:2 0:62 0:241 route-map calculator permit 8155 match community 2_62_241 set community 0:14942 ip community-list standard 2_7_241 permit 65000:2 0:7 0:241 route-map calculator permit 8156 match community 2_7_241 set community 0:1687 ip community-list standard 2_20_246 permit 65000:2 0:20 0:246 ip community-list standard 2_24_205 permit 65000:2 0:24 0:205 ip community-list standard 2_30_164 permit 65000:2 0:30 0:164 ip community-list standard 2_40_123 permit 65000:2 0:40 0:123 ip community-list standard 2_41_120 permit 65000:2 0:41 0:120 ip community-list standard 2_60_82 permit 65000:2 0:60 0:82 route-map calculator permit 8157 match community 2_20_246 2_24_205 2_30_164 2_40_123 2_41_120 set community 0:4920 route-map calculator permit 8158 match community 2_60_82 set community 0:4920 ip community-list standard 2_235_248 permit 65000:2 0:235 0:248 route-map calculator permit 8159 match community 2_235_248 set community 0:58280 ip community-list standard 2_109_251 permit 65000:2 0:109 0:251 route-map calculator permit 8160 match community 2_109_251 set community 0:27359 ip community-list standard 2_52_145 permit 65000:2 0:52 0:145 ip community-list standard 2_58_130 permit 65000:2 0:58 0:130 ip community-list standard 2_65_116 permit 65000:2 0:65 0:116 route-map calculator permit 8161 match community 2_52_145 2_58_130 2_65_116 set community 0:7540 ip community-list standard 2_47_249 permit 65000:2 0:47 0:249 ip community-list standard 2_83_141 permit 65000:2 0:83 0:141 route-map calculator permit 8162 match community 2_47_249 2_83_141 set community 0:11703 ip community-list standard 2_38_248 permit 65000:2 0:38 0:248 ip community-list standard 2_62_152 permit 65000:2 0:62 0:152 ip community-list standard 2_76_124 permit 65000:2 0:76 0:124 route-map calculator permit 8163 match community 2_38_248 2_62_152 2_76_124 set community 0:9424 ip community-list standard 2_166_206 permit 65000:2 0:166 0:206 route-map calculator permit 8164 match community 2_166_206 set community 0:34196 ip community-list standard 2_131_136 permit 65000:2 0:131 0:136 route-map calculator permit 8165 match community 2_131_136 set community 0:17816 ip community-list standard 2_85_212 permit 65000:2 0:85 0:212 ip community-list standard 2_106_170 permit 65000:2 0:106 0:170 route-map calculator permit 8166 match community 2_85_212 2_106_170 set community 0:18020 ip community-list standard 2_67_115 permit 65000:2 0:67 0:115 route-map calculator permit 8167 match community 2_67_115 set community 0:7705 ip community-list standard 2_97_206 permit 65000:2 0:97 0:206 ip community-list standard 2_103_194 permit 65000:2 0:103 0:194 route-map calculator permit 8168 match community 2_97_206 2_103_194 set community 0:19982 ip community-list standard 2_8_184 permit 65000:2 0:8 0:184 ip community-list standard 2_16_92 permit 65000:2 0:16 0:92 ip community-list standard 2_23_64 permit 65000:2 0:23 0:64 ip community-list standard 2_32_46 permit 65000:2 0:32 0:46 route-map calculator permit 8169 match community 2_8_184 2_16_92 2_23_64 2_32_46 set community 0:1472 ip community-list standard 2_98_214 permit 65000:2 0:98 0:214 ip community-list standard 2_107_196 permit 65000:2 0:107 0:196 route-map calculator permit 8170 match community 2_98_214 2_107_196 set community 0:20972 ip community-list standard 2_114_232 permit 65000:2 0:114 0:232 ip community-list standard 2_116_228 permit 65000:2 0:116 0:228 ip community-list standard 2_152_174 permit 65000:2 0:152 0:174 route-map calculator permit 8171 match community 2_114_232 2_116_228 2_152_174 set community 0:26448 ip community-list standard 2_151_188 permit 65000:2 0:151 0:188 route-map calculator permit 8172 match community 2_151_188 set community 0:28388 ip community-list standard 2_195_254 permit 65000:2 0:195 0:254 route-map calculator permit 8173 match community 2_195_254 set community 0:49530 ip community-list standard 2_3_161 permit 65000:2 0:3 0:161 ip community-list standard 2_7_69 permit 65000:2 0:7 0:69 ip community-list standard 2_21_23 permit 65000:2 0:21 0:23 ip community-list standard 1_227_256 permit 65000:1 0:227 0:256 ip community-list standard 1_228_255 permit 65000:1 0:228 0:255 ip community-list standard 1_229_254 permit 65000:1 0:229 0:254 ip community-list standard 1_230_253 permit 65000:1 0:230 0:253 ip community-list standard 1_231_252 permit 65000:1 0:231 0:252 ip community-list standard 1_232_251 permit 65000:1 0:232 0:251 ip community-list standard 1_233_250 permit 65000:1 0:233 0:250 ip community-list standard 1_234_249 permit 65000:1 0:234 0:249 ip community-list standard 1_235_248 permit 65000:1 0:235 0:248 ip community-list standard 1_236_247 permit 65000:1 0:236 0:247 ip community-list standard 1_237_246 permit 65000:1 0:237 0:246 ip community-list standard 1_238_245 permit 65000:1 0:238 0:245 ip community-list standard 1_239_244 permit 65000:1 0:239 0:244 ip community-list standard 1_240_243 permit 65000:1 0:240 0:243 ip community-list standard 1_241_242 permit 65000:1 0:241 0:242 route-map calculator permit 8174 match community 2_3_161 2_7_69 2_21_23 1_227_256 1_228_255 set community 0:483 route-map calculator permit 8175 match community 1_229_254 1_230_253 1_231_252 1_232_251 1_233_250 set community 0:483 route-map calculator permit 8176 match community 1_234_249 1_235_248 1_236_247 1_237_246 1_238_245 set community 0:483 route-map calculator permit 8177 match community 1_239_244 1_240_243 1_241_242 set community 0:483 ip community-list standard 2_12_212 permit 65000:2 0:12 0:212 ip community-list standard 2_16_159 permit 65000:2 0:16 0:159 ip community-list standard 2_24_106 permit 65000:2 0:24 0:106 ip community-list standard 2_48_53 permit 65000:2 0:48 0:53 route-map calculator permit 8178 match community 2_12_212 2_16_159 2_24_106 2_48_53 set community 0:2544 ip community-list standard 2_144_242 permit 65000:2 0:144 0:242 ip community-list standard 2_176_198 permit 65000:2 0:176 0:198 route-map calculator permit 8179 match community 2_144_242 2_176_198 set community 0:34848 ip community-list standard 2_181_199 permit 65000:2 0:181 0:199 route-map calculator permit 8180 match community 2_181_199 set community 0:36019 ip community-list standard 2_118_167 permit 65000:2 0:118 0:167 route-map calculator permit 8181 match community 2_118_167 set community 0:19706 ip community-list standard 2_183_243 permit 65000:2 0:183 0:243 route-map calculator permit 8182 match community 2_183_243 set community 0:44469 ip community-list standard 2_66_216 permit 65000:2 0:66 0:216 ip community-list standard 2_72_198 permit 65000:2 0:72 0:198 ip community-list standard 2_81_176 permit 65000:2 0:81 0:176 ip community-list standard 2_88_162 permit 65000:2 0:88 0:162 ip community-list standard 2_99_144 permit 65000:2 0:99 0:144 ip community-list standard 2_108_132 permit 65000:2 0:108 0:132 route-map calculator permit 8183 match community 2_66_216 2_72_198 2_81_176 2_88_162 2_99_144 set community 0:14256 route-map calculator permit 8184 match community 2_108_132 set community 0:14256 ip community-list standard 2_120_255 permit 65000:2 0:120 0:255 ip community-list standard 2_136_225 permit 65000:2 0:136 0:225 ip community-list standard 2_150_204 permit 65000:2 0:150 0:204 ip community-list standard 2_153_200 permit 65000:2 0:153 0:200 ip community-list standard 2_170_180 permit 65000:2 0:170 0:180 route-map calculator permit 8185 match community 2_120_255 2_136_225 2_150_204 2_153_200 2_170_180 set community 0:30600 ip community-list standard 2_53_162 permit 65000:2 0:53 0:162 ip community-list standard 2_54_159 permit 65000:2 0:54 0:159 ip community-list standard 2_81_106 permit 65000:2 0:81 0:106 route-map calculator permit 8186 match community 2_53_162 2_54_159 2_81_106 set community 0:8586 ip community-list standard 2_158_208 permit 65000:2 0:158 0:208 route-map calculator permit 8187 match community 2_158_208 set community 0:32864 ip community-list standard 2_201_215 permit 65000:2 0:201 0:215 route-map calculator permit 8188 match community 2_201_215 set community 0:43215 ip community-list standard 2_15_222 permit 65000:2 0:15 0:222 ip community-list standard 2_18_185 permit 65000:2 0:18 0:185 ip community-list standard 2_30_111 permit 65000:2 0:30 0:111 ip community-list standard 2_37_90 permit 65000:2 0:37 0:90 ip community-list standard 2_45_74 permit 65000:2 0:45 0:74 route-map calculator permit 8189 match community 2_15_222 2_18_185 2_30_111 2_37_90 2_45_74 set community 0:3330 ip community-list standard 2_82_179 permit 65000:2 0:82 0:179 route-map calculator permit 8190 match community 2_82_179 set community 0:14678 ip community-list standard 2_17_146 permit 65000:2 0:17 0:146 ip community-list standard 2_34_73 permit 65000:2 0:34 0:73 route-map calculator permit 8191 match community 2_17_146 2_34_73 set community 0:2482 ip community-list standard 2_46_253 permit 65000:2 0:46 0:253 route-map calculator permit 8192 match community 2_46_253 set community 0:11638 ip community-list standard 2_27_145 permit 65000:2 0:27 0:145 ip community-list standard 2_29_135 permit 65000:2 0:29 0:135 ip community-list standard 2_45_87 permit 65000:2 0:45 0:87 route-map calculator permit 8193 match community 2_27_145 2_29_135 2_45_87 set community 0:3915 ip community-list standard 2_185_236 permit 65000:2 0:185 0:236 route-map calculator permit 8194 match community 2_185_236 set community 0:43660 ip community-list standard 2_131_159 permit 65000:2 0:131 0:159 route-map calculator permit 8195 match community 2_131_159 set community 0:20829 ip community-list standard 2_68_229 permit 65000:2 0:68 0:229 route-map calculator permit 8196 match community 2_68_229 set community 0:15572 ip community-list standard 2_5_246 permit 65000:2 0:5 0:246 ip community-list standard 2_6_205 permit 65000:2 0:6 0:205 ip community-list standard 2_10_123 permit 65000:2 0:10 0:123 ip community-list standard 2_15_82 permit 65000:2 0:15 0:82 ip community-list standard 2_30_41 permit 65000:2 0:30 0:41 route-map calculator permit 8197 match community 2_5_246 2_6_205 2_10_123 2_15_82 2_30_41 set community 0:1230 ip community-list standard 2_65_227 permit 65000:2 0:65 0:227 route-map calculator permit 8198 match community 2_65_227 set community 0:14755 ip community-list standard 2_5_217 permit 65000:2 0:5 0:217 ip community-list standard 2_7_155 permit 65000:2 0:7 0:155 ip community-list standard 2_31_35 permit 65000:2 0:31 0:35 route-map calculator permit 8199 match community 2_5_217 2_7_155 2_31_35 set community 0:1085 ip community-list standard 2_109_248 permit 65000:2 0:109 0:248 ip community-list standard 2_124_218 permit 65000:2 0:124 0:218 route-map calculator permit 8200 match community 2_109_248 2_124_218 set community 0:27032 ip community-list standard 2_43_202 permit 65000:2 0:43 0:202 ip community-list standard 2_86_101 permit 65000:2 0:86 0:101 route-map calculator permit 8201 match community 2_43_202 2_86_101 set community 0:8686 ip community-list standard 2_132_222 permit 65000:2 0:132 0:222 ip community-list standard 2_148_198 permit 65000:2 0:148 0:198 route-map calculator permit 8202 match community 2_132_222 2_148_198 set community 0:29304 ip community-list standard 2_215_227 permit 65000:2 0:215 0:227 route-map calculator permit 8203 match community 2_215_227 set community 0:48805 ip community-list standard 2_38_235 permit 65000:2 0:38 0:235 ip community-list standard 2_47_190 permit 65000:2 0:47 0:190 ip community-list standard 2_94_95 permit 65000:2 0:94 0:95 route-map calculator permit 8204 match community 2_38_235 2_47_190 2_94_95 set community 0:8930 ip community-list standard 2_5_137 permit 65000:2 0:5 0:137 route-map calculator permit 8205 match community 2_5_137 set community 0:685 ip community-list standard 2_125_252 permit 65000:2 0:125 0:252 ip community-list standard 2_126_250 permit 65000:2 0:126 0:250 ip community-list standard 2_140_225 permit 65000:2 0:140 0:225 ip community-list standard 2_150_210 permit 65000:2 0:150 0:210 ip community-list standard 2_175_180 permit 65000:2 0:175 0:180 route-map calculator permit 8206 match community 2_125_252 2_126_250 2_140_225 2_150_210 2_175_180 set community 0:31500 ip community-list standard 2_7_250 permit 65000:2 0:7 0:250 ip community-list standard 2_10_175 permit 65000:2 0:10 0:175 ip community-list standard 2_14_125 permit 65000:2 0:14 0:125 ip community-list standard 2_25_70 permit 65000:2 0:25 0:70 ip community-list standard 2_35_50 permit 65000:2 0:35 0:50 route-map calculator permit 8207 match community 2_7_250 2_10_175 2_14_125 2_25_70 2_35_50 set community 0:1750 ip community-list standard 2_77_151 permit 65000:2 0:77 0:151 route-map calculator permit 8208 match community 2_77_151 set community 0:11627 ip community-list standard 2_114_211 permit 65000:2 0:114 0:211 route-map calculator permit 8209 match community 2_114_211 set community 0:24054 ip community-list standard 2_37_161 permit 65000:2 0:37 0:161 route-map calculator permit 8210 match community 2_37_161 set community 0:5957 ip community-list standard 2_181_220 permit 65000:2 0:181 0:220 route-map calculator permit 8211 match community 2_181_220 set community 0:39820 ip community-list standard 2_89_111 permit 65000:2 0:89 0:111 route-map calculator permit 8212 match community 2_89_111 set community 0:9879 ip community-list standard 2_12_248 permit 65000:2 0:12 0:248 ip community-list standard 2_16_186 permit 65000:2 0:16 0:186 ip community-list standard 2_24_124 permit 65000:2 0:24 0:124 ip community-list standard 2_31_96 permit 65000:2 0:31 0:96 ip community-list standard 2_32_93 permit 65000:2 0:32 0:93 ip community-list standard 2_48_62 permit 65000:2 0:48 0:62 route-map calculator permit 8213 match community 2_12_248 2_16_186 2_24_124 2_31_96 2_32_93 set community 0:2976 route-map calculator permit 8214 match community 2_48_62 set community 0:2976 ip community-list standard 2_74_158 permit 65000:2 0:74 0:158 ip community-list standard 2_79_148 permit 65000:2 0:79 0:148 route-map calculator permit 8215 match community 2_74_158 2_79_148 set community 0:11692 ip community-list standard 2_77_212 permit 65000:2 0:77 0:212 ip community-list standard 2_106_154 permit 65000:2 0:106 0:154 route-map calculator permit 8216 match community 2_77_212 2_106_154 set community 0:16324 ip community-list standard 2_55_145 permit 65000:2 0:55 0:145 route-map calculator permit 8217 match community 2_55_145 set community 0:7975 ip community-list standard 2_63_239 permit 65000:2 0:63 0:239 route-map calculator permit 8218 match community 2_63_239 set community 0:15057 ip community-list standard 2_84_211 permit 65000:2 0:84 0:211 route-map calculator permit 8219 match community 2_84_211 set community 0:17724 ip community-list standard 2_11_221 permit 65000:2 0:11 0:221 ip community-list standard 2_13_187 permit 65000:2 0:13 0:187 ip community-list standard 2_17_143 permit 65000:2 0:17 0:143 route-map calculator permit 8220 match community 2_11_221 2_13_187 2_17_143 set community 0:2431 ip community-list standard 2_103_161 permit 65000:2 0:103 0:161 route-map calculator permit 8221 match community 2_103_161 set community 0:16583 ip community-list standard 2_2_180 permit 65000:2 0:2 0:180 ip community-list standard 2_3_120 permit 65000:2 0:3 0:120 ip community-list standard 2_4_90 permit 65000:2 0:4 0:90 ip community-list standard 2_5_72 permit 65000:2 0:5 0:72 ip community-list standard 2_6_60 permit 65000:2 0:6 0:60 ip community-list standard 2_8_45 permit 65000:2 0:8 0:45 ip community-list standard 2_9_40 permit 65000:2 0:9 0:40 ip community-list standard 2_10_36 permit 65000:2 0:10 0:36 ip community-list standard 2_12_30 permit 65000:2 0:12 0:30 ip community-list standard 2_15_24 permit 65000:2 0:15 0:24 ip community-list standard 2_18_20 permit 65000:2 0:18 0:20 ip community-list standard 1_104_256 permit 65000:1 0:104 0:256 ip community-list standard 1_105_255 permit 65000:1 0:105 0:255 ip community-list standard 1_106_254 permit 65000:1 0:106 0:254 ip community-list standard 1_107_253 permit 65000:1 0:107 0:253 ip community-list standard 1_108_252 permit 65000:1 0:108 0:252 ip community-list standard 1_109_251 permit 65000:1 0:109 0:251 ip community-list standard 1_110_250 permit 65000:1 0:110 0:250 ip community-list standard 1_111_249 permit 65000:1 0:111 0:249 ip community-list standard 1_112_248 permit 65000:1 0:112 0:248 ip community-list standard 1_113_247 permit 65000:1 0:113 0:247 ip community-list standard 1_114_246 permit 65000:1 0:114 0:246 ip community-list standard 1_115_245 permit 65000:1 0:115 0:245 ip community-list standard 1_116_244 permit 65000:1 0:116 0:244 ip community-list standard 1_117_243 permit 65000:1 0:117 0:243 ip community-list standard 1_118_242 permit 65000:1 0:118 0:242 ip community-list standard 1_119_241 permit 65000:1 0:119 0:241 ip community-list standard 1_120_240 permit 65000:1 0:120 0:240 ip community-list standard 1_121_239 permit 65000:1 0:121 0:239 ip community-list standard 1_122_238 permit 65000:1 0:122 0:238 ip community-list standard 1_123_237 permit 65000:1 0:123 0:237 ip community-list standard 1_124_236 permit 65000:1 0:124 0:236 ip community-list standard 1_125_235 permit 65000:1 0:125 0:235 ip community-list standard 1_126_234 permit 65000:1 0:126 0:234 ip community-list standard 1_127_233 permit 65000:1 0:127 0:233 ip community-list standard 1_128_232 permit 65000:1 0:128 0:232 ip community-list standard 1_129_231 permit 65000:1 0:129 0:231 ip community-list standard 1_130_230 permit 65000:1 0:130 0:230 ip community-list standard 1_131_229 permit 65000:1 0:131 0:229 ip community-list standard 1_132_228 permit 65000:1 0:132 0:228 ip community-list standard 1_133_227 permit 65000:1 0:133 0:227 ip community-list standard 1_134_226 permit 65000:1 0:134 0:226 ip community-list standard 1_135_225 permit 65000:1 0:135 0:225 ip community-list standard 1_136_224 permit 65000:1 0:136 0:224 ip community-list standard 1_137_223 permit 65000:1 0:137 0:223 ip community-list standard 1_138_222 permit 65000:1 0:138 0:222 ip community-list standard 1_139_221 permit 65000:1 0:139 0:221 ip community-list standard 1_140_220 permit 65000:1 0:140 0:220 ip community-list standard 1_141_219 permit 65000:1 0:141 0:219 ip community-list standard 1_142_218 permit 65000:1 0:142 0:218 ip community-list standard 1_143_217 permit 65000:1 0:143 0:217 ip community-list standard 1_144_216 permit 65000:1 0:144 0:216 ip community-list standard 1_145_215 permit 65000:1 0:145 0:215 ip community-list standard 1_146_214 permit 65000:1 0:146 0:214 ip community-list standard 1_147_213 permit 65000:1 0:147 0:213 ip community-list standard 1_148_212 permit 65000:1 0:148 0:212 ip community-list standard 1_149_211 permit 65000:1 0:149 0:211 ip community-list standard 1_150_210 permit 65000:1 0:150 0:210 ip community-list standard 1_151_209 permit 65000:1 0:151 0:209 ip community-list standard 1_152_208 permit 65000:1 0:152 0:208 ip community-list standard 1_153_207 permit 65000:1 0:153 0:207 ip community-list standard 1_154_206 permit 65000:1 0:154 0:206 ip community-list standard 1_155_205 permit 65000:1 0:155 0:205 ip community-list standard 1_156_204 permit 65000:1 0:156 0:204 ip community-list standard 1_157_203 permit 65000:1 0:157 0:203 ip community-list standard 1_158_202 permit 65000:1 0:158 0:202 ip community-list standard 1_159_201 permit 65000:1 0:159 0:201 ip community-list standard 1_160_200 permit 65000:1 0:160 0:200 ip community-list standard 1_161_199 permit 65000:1 0:161 0:199 ip community-list standard 1_162_198 permit 65000:1 0:162 0:198 ip community-list standard 1_163_197 permit 65000:1 0:163 0:197 ip community-list standard 1_164_196 permit 65000:1 0:164 0:196 ip community-list standard 1_165_195 permit 65000:1 0:165 0:195 ip community-list standard 1_166_194 permit 65000:1 0:166 0:194 ip community-list standard 1_167_193 permit 65000:1 0:167 0:193 ip community-list standard 1_168_192 permit 65000:1 0:168 0:192 ip community-list standard 1_169_191 permit 65000:1 0:169 0:191 ip community-list standard 1_170_190 permit 65000:1 0:170 0:190 ip community-list standard 1_171_189 permit 65000:1 0:171 0:189 ip community-list standard 1_172_188 permit 65000:1 0:172 0:188 ip community-list standard 1_173_187 permit 65000:1 0:173 0:187 ip community-list standard 1_174_186 permit 65000:1 0:174 0:186 ip community-list standard 1_175_185 permit 65000:1 0:175 0:185 ip community-list standard 1_176_184 permit 65000:1 0:176 0:184 ip community-list standard 1_177_183 permit 65000:1 0:177 0:183 ip community-list standard 1_178_182 permit 65000:1 0:178 0:182 ip community-list standard 1_179_181 permit 65000:1 0:179 0:181 ip community-list standard 1_180_180 permit 65000:1 0:180 0:180 route-map calculator permit 8222 match community 2_2_180 2_3_120 2_4_90 2_5_72 2_6_60 set community 0:360 route-map calculator permit 8223 match community 2_8_45 2_9_40 2_10_36 2_12_30 2_15_24 set community 0:360 route-map calculator permit 8224 match community 2_18_20 1_104_256 1_105_255 1_106_254 1_107_253 set community 0:360 route-map calculator permit 8225 match community 1_108_252 1_109_251 1_110_250 1_111_249 1_112_248 set community 0:360 route-map calculator permit 8226 match community 1_113_247 1_114_246 1_115_245 1_116_244 1_117_243 set community 0:360 route-map calculator permit 8227 match community 1_118_242 1_119_241 1_120_240 1_121_239 1_122_238 set community 0:360 route-map calculator permit 8228 match community 1_123_237 1_124_236 1_125_235 1_126_234 1_127_233 set community 0:360 route-map calculator permit 8229 match community 1_128_232 1_129_231 1_130_230 1_131_229 1_132_228 set community 0:360 route-map calculator permit 8230 match community 1_133_227 1_134_226 1_135_225 1_136_224 1_137_223 set community 0:360 route-map calculator permit 8231 match community 1_138_222 1_139_221 1_140_220 1_141_219 1_142_218 set community 0:360 route-map calculator permit 8232 match community 1_143_217 1_144_216 1_145_215 1_146_214 1_147_213 set community 0:360 route-map calculator permit 8233 match community 1_148_212 1_149_211 1_150_210 1_151_209 1_152_208 set community 0:360 route-map calculator permit 8234 match community 1_153_207 1_154_206 1_155_205 1_156_204 1_157_203 set community 0:360 route-map calculator permit 8235 match community 1_158_202 1_159_201 1_160_200 1_161_199 1_162_198 set community 0:360 route-map calculator permit 8236 match community 1_163_197 1_164_196 1_165_195 1_166_194 1_167_193 set community 0:360 route-map calculator permit 8237 match community 1_168_192 1_169_191 1_170_190 1_171_189 1_172_188 set community 0:360 route-map calculator permit 8238 match community 1_173_187 1_174_186 1_175_185 1_176_184 1_177_183 set community 0:360 route-map calculator permit 8239 match community 1_178_182 1_179_181 1_180_180 set community 0:360 ip community-list standard 2_37_217 permit 65000:2 0:37 0:217 route-map calculator permit 8240 match community 2_37_217 set community 0:8029 ip community-list standard 2_140_181 permit 65000:2 0:140 0:181 route-map calculator permit 8241 match community 2_140_181 set community 0:25340 ip community-list standard 2_191_248 permit 65000:2 0:191 0:248 route-map calculator permit 8242 match community 2_191_248 set community 0:47368 ip community-list standard 2_194_206 permit 65000:2 0:194 0:206 route-map calculator permit 8243 match community 2_194_206 set community 0:39964 ip community-list standard 2_172_181 permit 65000:2 0:172 0:181 route-map calculator permit 8244 match community 2_172_181 set community 0:31132 ip community-list standard 2_7_98 permit 65000:2 0:7 0:98 ip community-list standard 2_14_49 permit 65000:2 0:14 0:49 route-map calculator permit 8245 match community 2_7_98 2_14_49 set community 0:686 ip community-list standard 2_23_212 permit 65000:2 0:23 0:212 ip community-list standard 2_46_106 permit 65000:2 0:46 0:106 ip community-list standard 2_53_92 permit 65000:2 0:53 0:92 route-map calculator permit 8246 match community 2_23_212 2_46_106 2_53_92 set community 0:4876 ip community-list standard 2_131_152 permit 65000:2 0:131 0:152 route-map calculator permit 8247 match community 2_131_152 set community 0:19912 ip community-list standard 2_154_238 permit 65000:2 0:154 0:238 ip community-list standard 2_187_196 permit 65000:2 0:187 0:196 route-map calculator permit 8248 match community 2_154_238 2_187_196 set community 0:36652 ip community-list standard 2_131_168 permit 65000:2 0:131 0:168 route-map calculator permit 8249 match community 2_131_168 set community 0:22008 ip community-list standard 2_29_103 permit 65000:2 0:29 0:103 route-map calculator permit 8250 match community 2_29_103 set community 0:2987 ip community-list standard 2_109_175 permit 65000:2 0:109 0:175 route-map calculator permit 8251 match community 2_109_175 set community 0:19075 ip community-list standard 2_193_214 permit 65000:2 0:193 0:214 route-map calculator permit 8252 match community 2_193_214 set community 0:41302 ip community-list standard 2_29_239 permit 65000:2 0:29 0:239 route-map calculator permit 8253 match community 2_29_239 set community 0:6931 ip community-list standard 2_29_228 permit 65000:2 0:29 0:228 ip community-list standard 2_38_174 permit 65000:2 0:38 0:174 ip community-list standard 2_57_116 permit 65000:2 0:57 0:116 ip community-list standard 2_58_114 permit 65000:2 0:58 0:114 ip community-list standard 2_76_87 permit 65000:2 0:76 0:87 route-map calculator permit 8254 match community 2_29_228 2_38_174 2_57_116 2_58_114 2_76_87 set community 0:6612 ip community-list standard 2_43_226 permit 65000:2 0:43 0:226 ip community-list standard 2_86_113 permit 65000:2 0:86 0:113 route-map calculator permit 8255 match community 2_43_226 2_86_113 set community 0:9718 ip community-list standard 2_127_153 permit 65000:2 0:127 0:153 route-map calculator permit 8256 match community 2_127_153 set community 0:19431 ip community-list standard 2_71_245 permit 65000:2 0:71 0:245 route-map calculator permit 8257 match community 2_71_245 set community 0:17395 ip community-list standard 2_15_131 permit 65000:2 0:15 0:131 route-map calculator permit 8258 match community 2_15_131 set community 0:1965 ip community-list standard 2_39_213 permit 65000:2 0:39 0:213 ip community-list standard 2_71_117 permit 65000:2 0:71 0:117 route-map calculator permit 8259 match community 2_39_213 2_71_117 set community 0:8307 ip community-list standard 2_63_242 permit 65000:2 0:63 0:242 ip community-list standard 2_66_231 permit 65000:2 0:66 0:231 ip community-list standard 2_77_198 permit 65000:2 0:77 0:198 ip community-list standard 2_99_154 permit 65000:2 0:99 0:154 ip community-list standard 2_121_126 permit 65000:2 0:121 0:126 route-map calculator permit 8260 match community 2_63_242 2_66_231 2_77_198 2_99_154 2_121_126 set community 0:15246 ip community-list standard 2_221_221 permit 65000:2 0:221 0:221 route-map calculator permit 8261 match community 2_221_221 set community 0:48841 ip community-list standard 2_61_213 permit 65000:2 0:61 0:213 ip community-list standard 2_71_183 permit 65000:2 0:71 0:183 route-map calculator permit 8262 match community 2_61_213 2_71_183 set community 0:12993 ip community-list standard 2_80_226 permit 65000:2 0:80 0:226 ip community-list standard 2_113_160 permit 65000:2 0:113 0:160 route-map calculator permit 8263 match community 2_80_226 2_113_160 set community 0:18080 ip community-list standard 2_116_181 permit 65000:2 0:116 0:181 route-map calculator permit 8264 match community 2_116_181 set community 0:20996 ip community-list standard 2_147_237 permit 65000:2 0:147 0:237 route-map calculator permit 8265 match community 2_147_237 set community 0:34839 ip community-list standard 2_76_253 permit 65000:2 0:76 0:253 ip community-list standard 2_92_209 permit 65000:2 0:92 0:209 route-map calculator permit 8266 match community 2_76_253 2_92_209 set community 0:19228 ip community-list standard 2_16_166 permit 65000:2 0:16 0:166 ip community-list standard 2_32_83 permit 65000:2 0:32 0:83 route-map calculator permit 8267 match community 2_16_166 2_32_83 set community 0:2656 ip community-list standard 2_113_240 permit 65000:2 0:113 0:240 ip community-list standard 2_120_226 permit 65000:2 0:120 0:226 route-map calculator permit 8268 match community 2_113_240 2_120_226 set community 0:27120 ip community-list standard 2_13_161 permit 65000:2 0:13 0:161 ip community-list standard 2_23_91 permit 65000:2 0:23 0:91 route-map calculator permit 8269 match community 2_13_161 2_23_91 set community 0:2093 ip community-list standard 1_37_256 permit 65000:1 0:37 0:256 ip community-list standard 1_38_255 permit 65000:1 0:38 0:255 ip community-list standard 1_39_254 permit 65000:1 0:39 0:254 ip community-list standard 1_40_253 permit 65000:1 0:40 0:253 ip community-list standard 1_41_252 permit 65000:1 0:41 0:252 ip community-list standard 1_42_251 permit 65000:1 0:42 0:251 ip community-list standard 1_43_250 permit 65000:1 0:43 0:250 ip community-list standard 1_44_249 permit 65000:1 0:44 0:249 ip community-list standard 1_45_248 permit 65000:1 0:45 0:248 ip community-list standard 1_46_247 permit 65000:1 0:46 0:247 ip community-list standard 1_47_246 permit 65000:1 0:47 0:246 ip community-list standard 1_48_245 permit 65000:1 0:48 0:245 ip community-list standard 1_49_244 permit 65000:1 0:49 0:244 ip community-list standard 1_50_243 permit 65000:1 0:50 0:243 ip community-list standard 1_51_242 permit 65000:1 0:51 0:242 ip community-list standard 1_52_241 permit 65000:1 0:52 0:241 ip community-list standard 1_53_240 permit 65000:1 0:53 0:240 ip community-list standard 1_54_239 permit 65000:1 0:54 0:239 ip community-list standard 1_55_238 permit 65000:1 0:55 0:238 ip community-list standard 1_56_237 permit 65000:1 0:56 0:237 ip community-list standard 1_57_236 permit 65000:1 0:57 0:236 ip community-list standard 1_58_235 permit 65000:1 0:58 0:235 ip community-list standard 1_59_234 permit 65000:1 0:59 0:234 ip community-list standard 1_60_233 permit 65000:1 0:60 0:233 ip community-list standard 1_61_232 permit 65000:1 0:61 0:232 ip community-list standard 1_62_231 permit 65000:1 0:62 0:231 ip community-list standard 1_63_230 permit 65000:1 0:63 0:230 ip community-list standard 1_64_229 permit 65000:1 0:64 0:229 ip community-list standard 1_65_228 permit 65000:1 0:65 0:228 ip community-list standard 1_66_227 permit 65000:1 0:66 0:227 ip community-list standard 1_67_226 permit 65000:1 0:67 0:226 ip community-list standard 1_68_225 permit 65000:1 0:68 0:225 ip community-list standard 1_69_224 permit 65000:1 0:69 0:224 ip community-list standard 1_70_223 permit 65000:1 0:70 0:223 ip community-list standard 1_71_222 permit 65000:1 0:71 0:222 ip community-list standard 1_72_221 permit 65000:1 0:72 0:221 ip community-list standard 1_73_220 permit 65000:1 0:73 0:220 ip community-list standard 1_74_219 permit 65000:1 0:74 0:219 ip community-list standard 1_75_218 permit 65000:1 0:75 0:218 ip community-list standard 1_76_217 permit 65000:1 0:76 0:217 ip community-list standard 1_77_216 permit 65000:1 0:77 0:216 ip community-list standard 1_78_215 permit 65000:1 0:78 0:215 ip community-list standard 1_79_214 permit 65000:1 0:79 0:214 ip community-list standard 1_80_213 permit 65000:1 0:80 0:213 ip community-list standard 1_81_212 permit 65000:1 0:81 0:212 ip community-list standard 1_82_211 permit 65000:1 0:82 0:211 ip community-list standard 1_83_210 permit 65000:1 0:83 0:210 ip community-list standard 1_84_209 permit 65000:1 0:84 0:209 ip community-list standard 1_85_208 permit 65000:1 0:85 0:208 ip community-list standard 1_86_207 permit 65000:1 0:86 0:207 ip community-list standard 1_87_206 permit 65000:1 0:87 0:206 ip community-list standard 1_88_205 permit 65000:1 0:88 0:205 ip community-list standard 1_89_204 permit 65000:1 0:89 0:204 ip community-list standard 1_90_203 permit 65000:1 0:90 0:203 ip community-list standard 1_91_202 permit 65000:1 0:91 0:202 ip community-list standard 1_92_201 permit 65000:1 0:92 0:201 ip community-list standard 1_93_200 permit 65000:1 0:93 0:200 ip community-list standard 1_94_199 permit 65000:1 0:94 0:199 ip community-list standard 1_95_198 permit 65000:1 0:95 0:198 ip community-list standard 1_96_197 permit 65000:1 0:96 0:197 ip community-list standard 1_97_196 permit 65000:1 0:97 0:196 ip community-list standard 1_98_195 permit 65000:1 0:98 0:195 ip community-list standard 1_99_194 permit 65000:1 0:99 0:194 ip community-list standard 1_100_193 permit 65000:1 0:100 0:193 ip community-list standard 1_101_192 permit 65000:1 0:101 0:192 ip community-list standard 1_102_191 permit 65000:1 0:102 0:191 ip community-list standard 1_103_190 permit 65000:1 0:103 0:190 ip community-list standard 1_104_189 permit 65000:1 0:104 0:189 ip community-list standard 1_105_188 permit 65000:1 0:105 0:188 ip community-list standard 1_106_187 permit 65000:1 0:106 0:187 ip community-list standard 1_107_186 permit 65000:1 0:107 0:186 ip community-list standard 1_108_185 permit 65000:1 0:108 0:185 ip community-list standard 1_109_184 permit 65000:1 0:109 0:184 ip community-list standard 1_110_183 permit 65000:1 0:110 0:183 ip community-list standard 1_111_182 permit 65000:1 0:111 0:182 ip community-list standard 1_112_181 permit 65000:1 0:112 0:181 ip community-list standard 1_113_180 permit 65000:1 0:113 0:180 ip community-list standard 1_114_179 permit 65000:1 0:114 0:179 ip community-list standard 1_115_178 permit 65000:1 0:115 0:178 ip community-list standard 1_116_177 permit 65000:1 0:116 0:177 ip community-list standard 1_117_176 permit 65000:1 0:117 0:176 ip community-list standard 1_118_175 permit 65000:1 0:118 0:175 ip community-list standard 1_119_174 permit 65000:1 0:119 0:174 ip community-list standard 1_120_173 permit 65000:1 0:120 0:173 ip community-list standard 1_121_172 permit 65000:1 0:121 0:172 ip community-list standard 1_122_171 permit 65000:1 0:122 0:171 ip community-list standard 1_123_170 permit 65000:1 0:123 0:170 ip community-list standard 1_124_169 permit 65000:1 0:124 0:169 ip community-list standard 1_125_168 permit 65000:1 0:125 0:168 ip community-list standard 1_126_167 permit 65000:1 0:126 0:167 ip community-list standard 1_127_166 permit 65000:1 0:127 0:166 ip community-list standard 1_128_165 permit 65000:1 0:128 0:165 ip community-list standard 1_129_164 permit 65000:1 0:129 0:164 ip community-list standard 1_130_163 permit 65000:1 0:130 0:163 ip community-list standard 1_131_162 permit 65000:1 0:131 0:162 ip community-list standard 1_132_161 permit 65000:1 0:132 0:161 ip community-list standard 1_133_160 permit 65000:1 0:133 0:160 ip community-list standard 1_134_159 permit 65000:1 0:134 0:159 ip community-list standard 1_135_158 permit 65000:1 0:135 0:158 ip community-list standard 1_136_157 permit 65000:1 0:136 0:157 ip community-list standard 1_137_156 permit 65000:1 0:137 0:156 ip community-list standard 1_138_155 permit 65000:1 0:138 0:155 ip community-list standard 1_139_154 permit 65000:1 0:139 0:154 ip community-list standard 1_140_153 permit 65000:1 0:140 0:153 ip community-list standard 1_141_152 permit 65000:1 0:141 0:152 ip community-list standard 1_142_151 permit 65000:1 0:142 0:151 ip community-list standard 1_143_150 permit 65000:1 0:143 0:150 ip community-list standard 1_144_149 permit 65000:1 0:144 0:149 ip community-list standard 1_145_148 permit 65000:1 0:145 0:148 ip community-list standard 1_146_147 permit 65000:1 0:146 0:147 route-map calculator permit 8270 match community 1_37_256 1_38_255 1_39_254 1_40_253 1_41_252 set community 0:293 route-map calculator permit 8271 match community 1_42_251 1_43_250 1_44_249 1_45_248 1_46_247 set community 0:293 route-map calculator permit 8272 match community 1_47_246 1_48_245 1_49_244 1_50_243 1_51_242 set community 0:293 route-map calculator permit 8273 match community 1_52_241 1_53_240 1_54_239 1_55_238 1_56_237 set community 0:293 route-map calculator permit 8274 match community 1_57_236 1_58_235 1_59_234 1_60_233 1_61_232 set community 0:293 route-map calculator permit 8275 match community 1_62_231 1_63_230 1_64_229 1_65_228 1_66_227 set community 0:293 route-map calculator permit 8276 match community 1_67_226 1_68_225 1_69_224 1_70_223 1_71_222 set community 0:293 route-map calculator permit 8277 match community 1_72_221 1_73_220 1_74_219 1_75_218 1_76_217 set community 0:293 route-map calculator permit 8278 match community 1_77_216 1_78_215 1_79_214 1_80_213 1_81_212 set community 0:293 route-map calculator permit 8279 match community 1_82_211 1_83_210 1_84_209 1_85_208 1_86_207 set community 0:293 route-map calculator permit 8280 match community 1_87_206 1_88_205 1_89_204 1_90_203 1_91_202 set community 0:293 route-map calculator permit 8281 match community 1_92_201 1_93_200 1_94_199 1_95_198 1_96_197 set community 0:293 route-map calculator permit 8282 match community 1_97_196 1_98_195 1_99_194 1_100_193 1_101_192 set community 0:293 route-map calculator permit 8283 match community 1_102_191 1_103_190 1_104_189 1_105_188 1_106_187 set community 0:293 route-map calculator permit 8284 match community 1_107_186 1_108_185 1_109_184 1_110_183 1_111_182 set community 0:293 route-map calculator permit 8285 match community 1_112_181 1_113_180 1_114_179 1_115_178 1_116_177 set community 0:293 route-map calculator permit 8286 match community 1_117_176 1_118_175 1_119_174 1_120_173 1_121_172 set community 0:293 route-map calculator permit 8287 match community 1_122_171 1_123_170 1_124_169 1_125_168 1_126_167 set community 0:293 route-map calculator permit 8288 match community 1_127_166 1_128_165 1_129_164 1_130_163 1_131_162 set community 0:293 route-map calculator permit 8289 match community 1_132_161 1_133_160 1_134_159 1_135_158 1_136_157 set community 0:293 route-map calculator permit 8290 match community 1_137_156 1_138_155 1_139_154 1_140_153 1_141_152 set community 0:293 route-map calculator permit 8291 match community 1_142_151 1_143_150 1_144_149 1_145_148 1_146_147 set community 0:293 ip community-list standard 2_134_250 permit 65000:2 0:134 0:250 route-map calculator permit 8292 match community 2_134_250 set community 0:33500 ip community-list standard 2_156_167 permit 65000:2 0:156 0:167 route-map calculator permit 8293 match community 2_156_167 set community 0:26052 ip community-list standard 2_61_158 permit 65000:2 0:61 0:158 ip community-list standard 2_79_122 permit 65000:2 0:79 0:122 route-map calculator permit 8294 match community 2_61_158 2_79_122 set community 0:9638 ip community-list standard 2_64_209 permit 65000:2 0:64 0:209 ip community-list standard 2_76_176 permit 65000:2 0:76 0:176 ip community-list standard 2_88_152 permit 65000:2 0:88 0:152 route-map calculator permit 8295 match community 2_64_209 2_76_176 2_88_152 set community 0:13376 ip community-list standard 2_133_184 permit 65000:2 0:133 0:184 ip community-list standard 2_152_161 permit 65000:2 0:152 0:161 route-map calculator permit 8296 match community 2_133_184 2_152_161 set community 0:24472 ip community-list standard 2_105_233 permit 65000:2 0:105 0:233 route-map calculator permit 8297 match community 2_105_233 set community 0:24465 ip community-list standard 2_25_248 permit 65000:2 0:25 0:248 ip community-list standard 2_31_200 permit 65000:2 0:31 0:200 ip community-list standard 2_40_155 permit 65000:2 0:40 0:155 ip community-list standard 2_50_124 permit 65000:2 0:50 0:124 ip community-list standard 2_62_100 permit 65000:2 0:62 0:100 route-map calculator permit 8298 match community 2_25_248 2_31_200 2_40_155 2_50_124 2_62_100 set community 0:6200 ip community-list standard 2_122_181 permit 65000:2 0:122 0:181 route-map calculator permit 8299 match community 2_122_181 set community 0:22082 ip community-list standard 2_59_127 permit 65000:2 0:59 0:127 route-map calculator permit 8300 match community 2_59_127 set community 0:7493 ip community-list standard 2_183_227 permit 65000:2 0:183 0:227 route-map calculator permit 8301 match community 2_183_227 set community 0:41541 ip community-list standard 2_151_229 permit 65000:2 0:151 0:229 route-map calculator permit 8302 match community 2_151_229 set community 0:34579 ip community-list standard 2_59_189 permit 65000:2 0:59 0:189 ip community-list standard 2_63_177 permit 65000:2 0:63 0:177 route-map calculator permit 8303 match community 2_59_189 2_63_177 set community 0:11151 ip community-list standard 2_148_234 permit 65000:2 0:148 0:234 ip community-list standard 2_156_222 permit 65000:2 0:156 0:222 route-map calculator permit 8304 match community 2_148_234 2_156_222 set community 0:34632 ip community-list standard 2_33_173 permit 65000:2 0:33 0:173 route-map calculator permit 8305 match community 2_33_173 set community 0:5709 ip community-list standard 2_130_220 permit 65000:2 0:130 0:220 ip community-list standard 2_143_200 permit 65000:2 0:143 0:200 route-map calculator permit 8306 match community 2_130_220 2_143_200 set community 0:28600 ip community-list standard 2_107_125 permit 65000:2 0:107 0:125 route-map calculator permit 8307 match community 2_107_125 set community 0:13375 ip community-list standard 2_171_218 permit 65000:2 0:171 0:218 route-map calculator permit 8308 match community 2_171_218 set community 0:37278 ip community-list standard 2_32_238 permit 65000:2 0:32 0:238 ip community-list standard 2_34_224 permit 65000:2 0:34 0:224 ip community-list standard 2_56_136 permit 65000:2 0:56 0:136 ip community-list standard 2_64_119 permit 65000:2 0:64 0:119 ip community-list standard 2_68_112 permit 65000:2 0:68 0:112 route-map calculator permit 8309 match community 2_32_238 2_34_224 2_56_136 2_64_119 2_68_112 set community 0:7616 ip community-list standard 2_97_221 permit 65000:2 0:97 0:221 route-map calculator permit 8310 match community 2_97_221 set community 0:21437 ip community-list standard 2_47_183 permit 65000:2 0:47 0:183 ip community-list standard 2_61_141 permit 65000:2 0:61 0:141 route-map calculator permit 8311 match community 2_47_183 2_61_141 set community 0:8601 ip community-list standard 2_177_235 permit 65000:2 0:177 0:235 route-map calculator permit 8312 match community 2_177_235 set community 0:41595 ip community-list standard 2_128_173 permit 65000:2 0:128 0:173 route-map calculator permit 8313 match community 2_128_173 set community 0:22144 ip community-list standard 2_12_241 permit 65000:2 0:12 0:241 route-map calculator permit 8314 match community 2_12_241 set community 0:2892 ip community-list standard 2_59_115 permit 65000:2 0:59 0:115 route-map calculator permit 8315 match community 2_59_115 set community 0:6785 ip community-list standard 2_60_202 permit 65000:2 0:60 0:202 ip community-list standard 2_101_120 permit 65000:2 0:101 0:120 route-map calculator permit 8316 match community 2_60_202 2_101_120 set community 0:12120 ip community-list standard 2_98_243 permit 65000:2 0:98 0:243 ip community-list standard 2_126_189 permit 65000:2 0:126 0:189 ip community-list standard 2_147_162 permit 65000:2 0:147 0:162 route-map calculator permit 8317 match community 2_98_243 2_126_189 2_147_162 set community 0:23814 ip community-list standard 2_111_179 permit 65000:2 0:111 0:179 route-map calculator permit 8318 match community 2_111_179 set community 0:19869 ip community-list standard 2_140_205 permit 65000:2 0:140 0:205 ip community-list standard 2_164_175 permit 65000:2 0:164 0:175 route-map calculator permit 8319 match community 2_140_205 2_164_175 set community 0:28700 ip community-list standard 2_219_256 permit 65000:2 0:219 0:256 route-map calculator permit 8320 match community 2_219_256 set community 0:56064 ip community-list standard 2_41_238 permit 65000:2 0:41 0:238 ip community-list standard 2_82_119 permit 65000:2 0:82 0:119 route-map calculator permit 8321 match community 2_41_238 2_82_119 set community 0:9758 ip community-list standard 2_23_161 permit 65000:2 0:23 0:161 route-map calculator permit 8322 match community 2_23_161 set community 0:3703 ip community-list standard 2_56_236 permit 65000:2 0:56 0:236 ip community-list standard 2_59_224 permit 65000:2 0:59 0:224 ip community-list standard 2_112_118 permit 65000:2 0:112 0:118 route-map calculator permit 8323 match community 2_56_236 2_59_224 2_112_118 set community 0:13216 ip community-list standard 2_89_182 permit 65000:2 0:89 0:182 ip community-list standard 2_91_178 permit 65000:2 0:91 0:178 route-map calculator permit 8324 match community 2_89_182 2_91_178 set community 0:16198 ip community-list standard 2_59_130 permit 65000:2 0:59 0:130 ip community-list standard 2_65_118 permit 65000:2 0:65 0:118 route-map calculator permit 8325 match community 2_59_130 2_65_118 set community 0:7670 ip community-list standard 2_52_212 permit 65000:2 0:52 0:212 ip community-list standard 2_53_208 permit 65000:2 0:53 0:208 ip community-list standard 2_104_106 permit 65000:2 0:104 0:106 route-map calculator permit 8326 match community 2_52_212 2_53_208 2_104_106 set community 0:11024 ip community-list standard 2_158_229 permit 65000:2 0:158 0:229 route-map calculator permit 8327 match community 2_158_229 set community 0:36182 ip community-list standard 2_170_197 permit 65000:2 0:170 0:197 route-map calculator permit 8328 match community 2_170_197 set community 0:33490 ip community-list standard 2_117_221 permit 65000:2 0:117 0:221 ip community-list standard 2_153_169 permit 65000:2 0:153 0:169 route-map calculator permit 8329 match community 2_117_221 2_153_169 set community 0:25857 ip community-list standard 2_151_161 permit 65000:2 0:151 0:161 route-map calculator permit 8330 match community 2_151_161 set community 0:24311 ip community-list standard 2_45_234 permit 65000:2 0:45 0:234 ip community-list standard 2_54_195 permit 65000:2 0:54 0:195 ip community-list standard 2_65_162 permit 65000:2 0:65 0:162 ip community-list standard 2_78_135 permit 65000:2 0:78 0:135 ip community-list standard 2_81_130 permit 65000:2 0:81 0:130 ip community-list standard 2_90_117 permit 65000:2 0:90 0:117 route-map calculator permit 8331 match community 2_45_234 2_54_195 2_65_162 2_78_135 2_81_130 set community 0:10530 route-map calculator permit 8332 match community 2_90_117 set community 0:10530 ip community-list standard 2_29_139 permit 65000:2 0:29 0:139 route-map calculator permit 8333 match community 2_29_139 set community 0:4031 ip community-list standard 2_46_232 permit 65000:2 0:46 0:232 ip community-list standard 2_58_184 permit 65000:2 0:58 0:184 ip community-list standard 2_92_116 permit 65000:2 0:92 0:116 route-map calculator permit 8334 match community 2_46_232 2_58_184 2_92_116 set community 0:10672 ip community-list standard 2_36_219 permit 65000:2 0:36 0:219 ip community-list standard 2_54_146 permit 65000:2 0:54 0:146 ip community-list standard 2_73_108 permit 65000:2 0:73 0:108 route-map calculator permit 8335 match community 2_36_219 2_54_146 2_73_108 set community 0:7884 ip community-list standard 2_42_157 permit 65000:2 0:42 0:157 route-map calculator permit 8336 match community 2_42_157 set community 0:6594 ip community-list standard 2_130_234 permit 65000:2 0:130 0:234 ip community-list standard 2_156_195 permit 65000:2 0:156 0:195 ip community-list standard 2_169_180 permit 65000:2 0:169 0:180 route-map calculator permit 8337 match community 2_130_234 2_156_195 2_169_180 set community 0:30420 ip community-list standard 2_39_167 permit 65000:2 0:39 0:167 route-map calculator permit 8338 match community 2_39_167 set community 0:6513 ip community-list standard 2_91_256 permit 65000:2 0:91 0:256 ip community-list standard 2_104_224 permit 65000:2 0:104 0:224 ip community-list standard 2_112_208 permit 65000:2 0:112 0:208 ip community-list standard 2_128_182 permit 65000:2 0:128 0:182 route-map calculator permit 8339 match community 2_91_256 2_104_224 2_112_208 2_128_182 set community 0:23296 ip community-list standard 2_201_217 permit 65000:2 0:201 0:217 route-map calculator permit 8340 match community 2_201_217 set community 0:43617 ip community-list standard 2_159_255 permit 65000:2 0:159 0:255 route-map calculator permit 8341 match community 2_159_255 set community 0:40545 ip community-list standard 2_12_137 permit 65000:2 0:12 0:137 route-map calculator permit 8342 match community 2_12_137 set community 0:1644 ip community-list standard 2_183_211 permit 65000:2 0:183 0:211 route-map calculator permit 8343 match community 2_183_211 set community 0:38613 ip community-list standard 2_32_148 permit 65000:2 0:32 0:148 ip community-list standard 2_37_128 permit 65000:2 0:37 0:128 ip community-list standard 2_64_74 permit 65000:2 0:64 0:74 route-map calculator permit 8344 match community 2_32_148 2_37_128 2_64_74 set community 0:4736 ip community-list standard 2_71_215 permit 65000:2 0:71 0:215 route-map calculator permit 8345 match community 2_71_215 set community 0:15265 ip community-list standard 2_6_215 permit 65000:2 0:6 0:215 ip community-list standard 2_10_129 permit 65000:2 0:10 0:129 ip community-list standard 2_15_86 permit 65000:2 0:15 0:86 ip community-list standard 2_30_43 permit 65000:2 0:30 0:43 route-map calculator permit 8346 match community 2_6_215 2_10_129 2_15_86 2_30_43 set community 0:1290 ip community-list standard 2_82_255 permit 65000:2 0:82 0:255 ip community-list standard 2_85_246 permit 65000:2 0:85 0:246 ip community-list standard 2_102_205 permit 65000:2 0:102 0:205 ip community-list standard 2_123_170 permit 65000:2 0:123 0:170 route-map calculator permit 8347 match community 2_82_255 2_85_246 2_102_205 2_123_170 set community 0:20910 ip community-list standard 2_46_137 permit 65000:2 0:46 0:137 route-map calculator permit 8348 match community 2_46_137 set community 0:6302 ip community-list standard 2_142_240 permit 65000:2 0:142 0:240 ip community-list standard 2_160_213 permit 65000:2 0:160 0:213 route-map calculator permit 8349 match community 2_142_240 2_160_213 set community 0:34080 ip community-list standard 2_172_197 permit 65000:2 0:172 0:197 route-map calculator permit 8350 match community 2_172_197 set community 0:33884 ip community-list standard 2_94_201 permit 65000:2 0:94 0:201 ip community-list standard 2_134_141 permit 65000:2 0:134 0:141 route-map calculator permit 8351 match community 2_94_201 2_134_141 set community 0:18894 ip community-list standard 2_17_68 permit 65000:2 0:17 0:68 ip community-list standard 2_34_34 permit 65000:2 0:34 0:34 route-map calculator permit 8352 match community 2_17_68 2_34_34 set community 0:1156 ip community-list standard 2_73_148 permit 65000:2 0:73 0:148 ip community-list standard 2_74_146 permit 65000:2 0:74 0:146 route-map calculator permit 8353 match community 2_73_148 2_74_146 set community 0:10804 ip community-list standard 2_161_230 permit 65000:2 0:161 0:230 route-map calculator permit 8354 match community 2_161_230 set community 0:37030 ip community-list standard 2_194_250 permit 65000:2 0:194 0:250 route-map calculator permit 8355 match community 2_194_250 set community 0:48500 ip community-list standard 2_75_209 permit 65000:2 0:75 0:209 ip community-list standard 2_95_165 permit 65000:2 0:95 0:165 route-map calculator permit 8356 match community 2_75_209 2_95_165 set community 0:15675 ip community-list standard 2_9_155 permit 65000:2 0:9 0:155 ip community-list standard 2_15_93 permit 65000:2 0:15 0:93 ip community-list standard 2_31_45 permit 65000:2 0:31 0:45 route-map calculator permit 8357 match community 2_9_155 2_15_93 2_31_45 set community 0:1395 ip community-list standard 2_18_227 permit 65000:2 0:18 0:227 route-map calculator permit 8358 match community 2_18_227 set community 0:4086 ip community-list standard 2_191_252 permit 65000:2 0:191 0:252 route-map calculator permit 8359 match community 2_191_252 set community 0:48132 ip community-list standard 2_211_249 permit 65000:2 0:211 0:249 route-map calculator permit 8360 match community 2_211_249 set community 0:52539 ip community-list standard 2_152_166 permit 65000:2 0:152 0:166 route-map calculator permit 8361 match community 2_152_166 set community 0:25232 ip community-list standard 2_144_191 permit 65000:2 0:144 0:191 route-map calculator permit 8362 match community 2_144_191 set community 0:27504 ip community-list standard 2_218_227 permit 65000:2 0:218 0:227 route-map calculator permit 8363 match community 2_218_227 set community 0:49486 ip community-list standard 2_134_255 permit 65000:2 0:134 0:255 ip community-list standard 2_170_201 permit 65000:2 0:170 0:201 route-map calculator permit 8364 match community 2_134_255 2_170_201 set community 0:34170 ip community-list standard 2_8_187 permit 65000:2 0:8 0:187 ip community-list standard 2_11_136 permit 65000:2 0:11 0:136 ip community-list standard 2_17_88 permit 65000:2 0:17 0:88 ip community-list standard 2_22_68 permit 65000:2 0:22 0:68 ip community-list standard 2_34_44 permit 65000:2 0:34 0:44 route-map calculator permit 8365 match community 2_8_187 2_11_136 2_17_88 2_22_68 2_34_44 set community 0:1496 ip community-list standard 2_176_201 permit 65000:2 0:176 0:201 route-map calculator permit 8366 match community 2_176_201 set community 0:35376 ip community-list standard 2_23_188 permit 65000:2 0:23 0:188 ip community-list standard 2_46_94 permit 65000:2 0:46 0:94 ip community-list standard 2_47_92 permit 65000:2 0:47 0:92 route-map calculator permit 8367 match community 2_23_188 2_46_94 2_47_92 set community 0:4324 ip community-list standard 2_94_149 permit 65000:2 0:94 0:149 route-map calculator permit 8368 match community 2_94_149 set community 0:14006 ip community-list standard 2_61_175 permit 65000:2 0:61 0:175 route-map calculator permit 8369 match community 2_61_175 set community 0:10675 ip community-list standard 2_76_157 permit 65000:2 0:76 0:157 route-map calculator permit 8370 match community 2_76_157 set community 0:11932 ip community-list standard 2_77_242 permit 65000:2 0:77 0:242 ip community-list standard 2_121_154 permit 65000:2 0:121 0:154 route-map calculator permit 8371 match community 2_77_242 2_121_154 set community 0:18634 ip community-list standard 2_76_173 permit 65000:2 0:76 0:173 route-map calculator permit 8372 match community 2_76_173 set community 0:13148 ip community-list standard 2_135_179 permit 65000:2 0:135 0:179 route-map calculator permit 8373 match community 2_135_179 set community 0:24165 ip community-list standard 2_17_147 permit 65000:2 0:17 0:147 ip community-list standard 2_21_119 permit 65000:2 0:21 0:119 ip community-list standard 2_49_51 permit 65000:2 0:49 0:51 route-map calculator permit 8374 match community 2_17_147 2_21_119 2_49_51 set community 0:2499 ip community-list standard 2_122_256 permit 65000:2 0:122 0:256 ip community-list standard 2_128_244 permit 65000:2 0:128 0:244 route-map calculator permit 8375 match community 2_122_256 2_128_244 set community 0:31232 ip community-list standard 2_136_237 permit 65000:2 0:136 0:237 ip community-list standard 2_158_204 permit 65000:2 0:158 0:204 route-map calculator permit 8376 match community 2_136_237 2_158_204 set community 0:32232 ip community-list standard 2_98_236 permit 65000:2 0:98 0:236 ip community-list standard 2_118_196 permit 65000:2 0:118 0:196 route-map calculator permit 8377 match community 2_98_236 2_118_196 set community 0:23128 ip community-list standard 2_175_193 permit 65000:2 0:175 0:193 route-map calculator permit 8378 match community 2_175_193 set community 0:33775 ip community-list standard 2_60_256 permit 65000:2 0:60 0:256 ip community-list standard 2_64_240 permit 65000:2 0:64 0:240 ip community-list standard 2_80_192 permit 65000:2 0:80 0:192 ip community-list standard 2_96_160 permit 65000:2 0:96 0:160 ip community-list standard 2_120_128 permit 65000:2 0:120 0:128 route-map calculator permit 8379 match community 2_60_256 2_64_240 2_80_192 2_96_160 2_120_128 set community 0:15360 ip community-list standard 2_101_216 permit 65000:2 0:101 0:216 ip community-list standard 2_108_202 permit 65000:2 0:108 0:202 route-map calculator permit 8380 match community 2_101_216 2_108_202 set community 0:21816 ip community-list standard 2_127_237 permit 65000:2 0:127 0:237 route-map calculator permit 8381 match community 2_127_237 set community 0:30099 ip community-list standard 2_198_249 permit 65000:2 0:198 0:249 route-map calculator permit 8382 match community 2_198_249 set community 0:49302 ip community-list standard 2_99_163 permit 65000:2 0:99 0:163 route-map calculator permit 8383 match community 2_99_163 set community 0:16137 ip community-list standard 2_116_221 permit 65000:2 0:116 0:221 route-map calculator permit 8384 match community 2_116_221 set community 0:25636 ip community-list standard 2_119_251 permit 65000:2 0:119 0:251 route-map calculator permit 8385 match community 2_119_251 set community 0:29869 ip community-list standard 2_48_229 permit 65000:2 0:48 0:229 route-map calculator permit 8386 match community 2_48_229 set community 0:10992 ip community-list standard 2_97_185 permit 65000:2 0:97 0:185 route-map calculator permit 8387 match community 2_97_185 set community 0:17945 ip community-list standard 2_139_205 permit 65000:2 0:139 0:205 route-map calculator permit 8388 match community 2_139_205 set community 0:28495 ip community-list standard 2_18_179 permit 65000:2 0:18 0:179 route-map calculator permit 8389 match community 2_18_179 set community 0:3222 ip community-list standard 2_206_227 permit 65000:2 0:206 0:227 route-map calculator permit 8390 match community 2_206_227 set community 0:46762 ip community-list standard 2_145_163 permit 65000:2 0:145 0:163 route-map calculator permit 8391 match community 2_145_163 set community 0:23635 ip community-list standard 2_179_180 permit 65000:2 0:179 0:180 route-map calculator permit 8392 match community 2_179_180 set community 0:32220 ip community-list standard 2_156_234 permit 65000:2 0:156 0:234 ip community-list standard 2_169_216 permit 65000:2 0:169 0:216 route-map calculator permit 8393 match community 2_156_234 2_169_216 set community 0:36504 ip community-list standard 2_19_107 permit 65000:2 0:19 0:107 route-map calculator permit 8394 match community 2_19_107 set community 0:2033 ip community-list standard 2_43_217 permit 65000:2 0:43 0:217 route-map calculator permit 8395 match community 2_43_217 set community 0:9331 ip community-list standard 2_163_174 permit 65000:2 0:163 0:174 route-map calculator permit 8396 match community 2_163_174 set community 0:28362 ip community-list standard 2_46_233 permit 65000:2 0:46 0:233 route-map calculator permit 8397 match community 2_46_233 set community 0:10718 ip community-list standard 1_1_111 permit 65000:1 0:1 0:111 ip community-list standard 2_1_112 permit 65000:2 0:1 0:112 ip community-list standard 2_2_56 permit 65000:2 0:2 0:56 ip community-list standard 1_2_110 permit 65000:1 0:2 0:110 ip community-list standard 1_3_109 permit 65000:1 0:3 0:109 ip community-list standard 2_4_28 permit 65000:2 0:4 0:28 ip community-list standard 1_4_108 permit 65000:1 0:4 0:108 ip community-list standard 1_5_107 permit 65000:1 0:5 0:107 ip community-list standard 1_6_106 permit 65000:1 0:6 0:106 ip community-list standard 2_7_16 permit 65000:2 0:7 0:16 ip community-list standard 1_7_105 permit 65000:1 0:7 0:105 ip community-list standard 2_8_14 permit 65000:2 0:8 0:14 ip community-list standard 1_8_104 permit 65000:1 0:8 0:104 ip community-list standard 1_9_103 permit 65000:1 0:9 0:103 ip community-list standard 1_10_102 permit 65000:1 0:10 0:102 ip community-list standard 1_11_101 permit 65000:1 0:11 0:101 ip community-list standard 1_12_100 permit 65000:1 0:12 0:100 ip community-list standard 1_13_99 permit 65000:1 0:13 0:99 ip community-list standard 1_14_98 permit 65000:1 0:14 0:98 ip community-list standard 1_15_97 permit 65000:1 0:15 0:97 ip community-list standard 1_16_96 permit 65000:1 0:16 0:96 ip community-list standard 1_17_95 permit 65000:1 0:17 0:95 ip community-list standard 1_18_94 permit 65000:1 0:18 0:94 ip community-list standard 1_19_93 permit 65000:1 0:19 0:93 ip community-list standard 1_20_92 permit 65000:1 0:20 0:92 ip community-list standard 1_21_91 permit 65000:1 0:21 0:91 ip community-list standard 1_22_90 permit 65000:1 0:22 0:90 ip community-list standard 1_23_89 permit 65000:1 0:23 0:89 ip community-list standard 1_24_88 permit 65000:1 0:24 0:88 ip community-list standard 1_25_87 permit 65000:1 0:25 0:87 ip community-list standard 1_26_86 permit 65000:1 0:26 0:86 ip community-list standard 1_27_85 permit 65000:1 0:27 0:85 ip community-list standard 1_28_84 permit 65000:1 0:28 0:84 ip community-list standard 1_29_83 permit 65000:1 0:29 0:83 ip community-list standard 1_30_82 permit 65000:1 0:30 0:82 ip community-list standard 1_31_81 permit 65000:1 0:31 0:81 ip community-list standard 1_32_80 permit 65000:1 0:32 0:80 ip community-list standard 1_33_79 permit 65000:1 0:33 0:79 ip community-list standard 1_34_78 permit 65000:1 0:34 0:78 ip community-list standard 1_35_77 permit 65000:1 0:35 0:77 ip community-list standard 1_36_76 permit 65000:1 0:36 0:76 ip community-list standard 1_37_75 permit 65000:1 0:37 0:75 ip community-list standard 1_38_74 permit 65000:1 0:38 0:74 ip community-list standard 1_39_73 permit 65000:1 0:39 0:73 ip community-list standard 1_40_72 permit 65000:1 0:40 0:72 ip community-list standard 1_41_71 permit 65000:1 0:41 0:71 ip community-list standard 1_42_70 permit 65000:1 0:42 0:70 ip community-list standard 1_43_69 permit 65000:1 0:43 0:69 ip community-list standard 1_44_68 permit 65000:1 0:44 0:68 ip community-list standard 1_45_67 permit 65000:1 0:45 0:67 ip community-list standard 1_46_66 permit 65000:1 0:46 0:66 ip community-list standard 1_47_65 permit 65000:1 0:47 0:65 ip community-list standard 1_48_64 permit 65000:1 0:48 0:64 ip community-list standard 1_49_63 permit 65000:1 0:49 0:63 ip community-list standard 1_50_62 permit 65000:1 0:50 0:62 ip community-list standard 1_51_61 permit 65000:1 0:51 0:61 ip community-list standard 1_52_60 permit 65000:1 0:52 0:60 ip community-list standard 1_53_59 permit 65000:1 0:53 0:59 ip community-list standard 1_54_58 permit 65000:1 0:54 0:58 ip community-list standard 1_55_57 permit 65000:1 0:55 0:57 ip community-list standard 1_56_56 permit 65000:1 0:56 0:56 ip community-list expanded c112 permit 1 ^65000:4_0:112_0:1$ ip community-list expanded c112 permit 2 ^65000:3_0:113_0:1$ ip community-list expanded c112 permit 3 ^65000:3_0:114_0:2$ ip community-list expanded c112 permit 4 ^65000:3_0:115_0:3$ ip community-list expanded c112 permit 5 ^65000:3_0:116_0:4$ ip community-list expanded c112 permit 6 ^65000:3_0:117_0:5$ ip community-list expanded c112 permit 7 ^65000:3_0:118_0:6$ ip community-list expanded c112 permit 8 ^65000:3_0:119_0:7$ ip community-list expanded c112 permit 9 ^65000:3_0:120_0:8$ ip community-list expanded c112 permit 10 ^65000:3_0:121_0:9$ ip community-list expanded c112 permit 11 ^65000:3_0:122_0:10$ ip community-list expanded c112 permit 12 ^65000:3_0:123_0:11$ ip community-list expanded c112 permit 13 ^65000:3_0:124_0:12$ ip community-list expanded c112 permit 14 ^65000:3_0:125_0:13$ ip community-list expanded c112 permit 15 ^65000:3_0:126_0:14$ ip community-list expanded c112 permit 16 ^65000:3_0:127_0:15$ ip community-list expanded c112 permit 17 ^65000:3_0:128_0:16$ ip community-list expanded c112 permit 18 ^65000:3_0:129_0:17$ ip community-list expanded c112 permit 19 ^65000:3_0:130_0:18$ ip community-list expanded c112 permit 20 ^65000:3_0:131_0:19$ ip community-list expanded c112 permit 21 ^65000:3_0:132_0:20$ ip community-list expanded c112 permit 22 ^65000:3_0:133_0:21$ ip community-list expanded c112 permit 23 ^65000:3_0:134_0:22$ ip community-list expanded c112 permit 24 ^65000:3_0:135_0:23$ ip community-list expanded c112 permit 25 ^65000:3_0:136_0:24$ ip community-list expanded c112 permit 26 ^65000:3_0:137_0:25$ ip community-list expanded c112 permit 27 ^65000:3_0:138_0:26$ ip community-list expanded c112 permit 28 ^65000:3_0:139_0:27$ ip community-list expanded c112 permit 29 ^65000:3_0:140_0:28$ ip community-list expanded c112 permit 30 ^65000:3_0:141_0:29$ ip community-list expanded c112 permit 31 ^65000:3_0:142_0:30$ ip community-list expanded c112 permit 32 ^65000:3_0:143_0:31$ ip community-list expanded c112 permit 33 ^65000:3_0:144_0:32$ ip community-list expanded c112 permit 34 ^65000:3_0:145_0:33$ ip community-list expanded c112 permit 35 ^65000:3_0:146_0:34$ ip community-list expanded c112 permit 36 ^65000:3_0:147_0:35$ ip community-list expanded c112 permit 37 ^65000:3_0:148_0:36$ ip community-list expanded c112 permit 38 ^65000:3_0:149_0:37$ ip community-list expanded c112 permit 39 ^65000:3_0:150_0:38$ ip community-list expanded c112 permit 40 ^65000:3_0:151_0:39$ ip community-list expanded c112 permit 41 ^65000:3_0:152_0:40$ ip community-list expanded c112 permit 42 ^65000:3_0:153_0:41$ ip community-list expanded c112 permit 43 ^65000:3_0:154_0:42$ ip community-list expanded c112 permit 44 ^65000:3_0:155_0:43$ ip community-list expanded c112 permit 45 ^65000:3_0:156_0:44$ ip community-list expanded c112 permit 46 ^65000:3_0:157_0:45$ ip community-list expanded c112 permit 47 ^65000:3_0:158_0:46$ ip community-list expanded c112 permit 48 ^65000:3_0:159_0:47$ ip community-list expanded c112 permit 49 ^65000:3_0:160_0:48$ ip community-list expanded c112 permit 50 ^65000:3_0:161_0:49$ ip community-list expanded c112 permit 51 ^65000:3_0:162_0:50$ ip community-list expanded c112 permit 52 ^65000:3_0:163_0:51$ ip community-list expanded c112 permit 53 ^65000:3_0:164_0:52$ ip community-list expanded c112 permit 54 ^65000:3_0:165_0:53$ ip community-list expanded c112 permit 55 ^65000:3_0:166_0:54$ ip community-list expanded c112 permit 56 ^65000:3_0:167_0:55$ ip community-list expanded c112 permit 57 ^65000:3_0:168_0:56$ ip community-list expanded c112 permit 58 ^65000:3_0:169_0:57$ ip community-list expanded c112 permit 59 ^65000:3_0:170_0:58$ ip community-list expanded c112 permit 60 ^65000:3_0:171_0:59$ ip community-list expanded c112 permit 61 ^65000:3_0:172_0:60$ ip community-list expanded c112 permit 62 ^65000:3_0:173_0:61$ ip community-list expanded c112 permit 63 ^65000:3_0:174_0:62$ ip community-list expanded c112 permit 64 ^65000:3_0:175_0:63$ ip community-list expanded c112 permit 65 ^65000:3_0:176_0:64$ ip community-list expanded c112 permit 66 ^65000:3_0:177_0:65$ ip community-list expanded c112 permit 67 ^65000:3_0:178_0:66$ ip community-list expanded c112 permit 68 ^65000:3_0:179_0:67$ ip community-list expanded c112 permit 69 ^65000:3_0:180_0:68$ ip community-list expanded c112 permit 70 ^65000:3_0:181_0:69$ ip community-list expanded c112 permit 71 ^65000:3_0:182_0:70$ ip community-list expanded c112 permit 72 ^65000:3_0:183_0:71$ ip community-list expanded c112 permit 73 ^65000:3_0:184_0:72$ ip community-list expanded c112 permit 74 ^65000:3_0:185_0:73$ ip community-list expanded c112 permit 75 ^65000:3_0:186_0:74$ ip community-list expanded c112 permit 76 ^65000:3_0:187_0:75$ ip community-list expanded c112 permit 77 ^65000:3_0:188_0:76$ ip community-list expanded c112 permit 78 ^65000:3_0:189_0:77$ ip community-list expanded c112 permit 79 ^65000:3_0:190_0:78$ ip community-list expanded c112 permit 80 ^65000:3_0:191_0:79$ ip community-list expanded c112 permit 81 ^65000:3_0:192_0:80$ ip community-list expanded c112 permit 82 ^65000:3_0:193_0:81$ ip community-list expanded c112 permit 83 ^65000:3_0:194_0:82$ ip community-list expanded c112 permit 84 ^65000:3_0:195_0:83$ ip community-list expanded c112 permit 85 ^65000:3_0:196_0:84$ ip community-list expanded c112 permit 86 ^65000:3_0:197_0:85$ ip community-list expanded c112 permit 87 ^65000:3_0:198_0:86$ ip community-list expanded c112 permit 88 ^65000:3_0:199_0:87$ ip community-list expanded c112 permit 89 ^65000:3_0:200_0:88$ ip community-list expanded c112 permit 90 ^65000:3_0:201_0:89$ ip community-list expanded c112 permit 91 ^65000:3_0:202_0:90$ ip community-list expanded c112 permit 92 ^65000:3_0:203_0:91$ ip community-list expanded c112 permit 93 ^65000:3_0:204_0:92$ ip community-list expanded c112 permit 94 ^65000:3_0:205_0:93$ ip community-list expanded c112 permit 95 ^65000:3_0:206_0:94$ ip community-list expanded c112 permit 96 ^65000:3_0:207_0:95$ ip community-list expanded c112 permit 97 ^65000:3_0:208_0:96$ ip community-list expanded c112 permit 98 ^65000:3_0:209_0:97$ ip community-list expanded c112 permit 99 ^65000:3_0:210_0:98$ ip community-list expanded c112 permit 100 ^65000:3_0:211_0:99$ ip community-list expanded c112 permit 101 ^65000:3_0:212_0:100$ ip community-list expanded c112 permit 102 ^65000:3_0:213_0:101$ ip community-list expanded c112 permit 103 ^65000:3_0:214_0:102$ ip community-list expanded c112 permit 104 ^65000:3_0:215_0:103$ ip community-list expanded c112 permit 105 ^65000:3_0:216_0:104$ ip community-list expanded c112 permit 106 ^65000:3_0:217_0:105$ ip community-list expanded c112 permit 107 ^65000:3_0:218_0:106$ ip community-list expanded c112 permit 108 ^65000:3_0:219_0:107$ ip community-list expanded c112 permit 109 ^65000:3_0:220_0:108$ ip community-list expanded c112 permit 110 ^65000:3_0:221_0:109$ ip community-list expanded c112 permit 111 ^65000:3_0:222_0:110$ ip community-list expanded c112 permit 112 ^65000:3_0:223_0:111$ ip community-list expanded c112 permit 113 ^65000:4_0:224_0:2$ ip community-list expanded c112 permit 114 ^65000:3_0:224_0:112$ ip community-list expanded c112 permit 115 ^65000:4_0:225_0:2$ ip community-list expanded c112 permit 116 ^65000:3_0:225_0:113$ ip community-list expanded c112 permit 117 ^65000:3_0:226_0:114$ ip community-list expanded c112 permit 118 ^65000:3_0:227_0:115$ ip community-list expanded c112 permit 119 ^65000:3_0:228_0:116$ ip community-list expanded c112 permit 120 ^65000:3_0:229_0:117$ ip community-list expanded c112 permit 121 ^65000:3_0:230_0:118$ ip community-list expanded c112 permit 122 ^65000:3_0:231_0:119$ ip community-list expanded c112 permit 123 ^65000:3_0:232_0:120$ ip community-list expanded c112 permit 124 ^65000:3_0:233_0:121$ ip community-list expanded c112 permit 125 ^65000:3_0:234_0:122$ ip community-list expanded c112 permit 126 ^65000:3_0:235_0:123$ ip community-list expanded c112 permit 127 ^65000:3_0:236_0:124$ ip community-list expanded c112 permit 128 ^65000:3_0:237_0:125$ ip community-list expanded c112 permit 129 ^65000:3_0:238_0:126$ ip community-list expanded c112 permit 130 ^65000:3_0:239_0:127$ ip community-list expanded c112 permit 131 ^65000:3_0:240_0:128$ ip community-list expanded c112 permit 132 ^65000:3_0:241_0:129$ ip community-list expanded c112 permit 133 ^65000:3_0:242_0:130$ ip community-list expanded c112 permit 134 ^65000:3_0:243_0:131$ ip community-list expanded c112 permit 135 ^65000:3_0:244_0:132$ ip community-list expanded c112 permit 136 ^65000:3_0:245_0:133$ ip community-list expanded c112 permit 137 ^65000:3_0:246_0:134$ ip community-list expanded c112 permit 138 ^65000:3_0:247_0:135$ ip community-list expanded c112 permit 139 ^65000:3_0:248_0:136$ ip community-list expanded c112 permit 140 ^65000:3_0:249_0:137$ ip community-list expanded c112 permit 141 ^65000:3_0:250_0:138$ ip community-list expanded c112 permit 142 ^65000:3_0:251_0:139$ ip community-list expanded c112 permit 143 ^65000:3_0:252_0:140$ ip community-list expanded c112 permit 144 ^65000:3_0:253_0:141$ ip community-list expanded c112 permit 145 ^65000:3_0:254_0:142$ ip community-list expanded c112 permit 146 ^65000:3_0:255_0:143$ ip community-list expanded c112 permit 147 ^65000:3_0:256_0:144$ route-map calculator permit 8398 match community 1_1_111 2_1_112 2_2_56 1_2_110 1_3_109 set community 0:112 route-map calculator permit 8399 match community 2_4_28 1_4_108 1_5_107 1_6_106 2_7_16 set community 0:112 route-map calculator permit 8400 match community 1_7_105 2_8_14 1_8_104 1_9_103 1_10_102 set community 0:112 route-map calculator permit 8401 match community 1_11_101 1_12_100 1_13_99 1_14_98 1_15_97 set community 0:112 route-map calculator permit 8402 match community 1_16_96 1_17_95 1_18_94 1_19_93 1_20_92 set community 0:112 route-map calculator permit 8403 match community 1_21_91 1_22_90 1_23_89 1_24_88 1_25_87 set community 0:112 route-map calculator permit 8404 match community 1_26_86 1_27_85 1_28_84 1_29_83 1_30_82 set community 0:112 route-map calculator permit 8405 match community 1_31_81 1_32_80 1_33_79 1_34_78 1_35_77 set community 0:112 route-map calculator permit 8406 match community 1_36_76 1_37_75 1_38_74 1_39_73 1_40_72 set community 0:112 route-map calculator permit 8407 match community 1_41_71 1_42_70 1_43_69 1_44_68 1_45_67 set community 0:112 route-map calculator permit 8408 match community 1_46_66 1_47_65 1_48_64 1_49_63 1_50_62 set community 0:112 route-map calculator permit 8409 match community 1_51_61 1_52_60 1_53_59 1_54_58 1_55_57 set community 0:112 route-map calculator permit 8410 match community 1_56_56 c4_112_1 c3_113_1 c3_114_2 c3_115_3 set community 0:112 route-map calculator permit 8411 match community c3_116_4 c3_117_5 c3_118_6 c3_119_7 c3_120_8 set community 0:112 route-map calculator permit 8412 match community c3_121_9 c3_122_10 c3_123_11 c3_124_12 c3_125_13 set community 0:112 route-map calculator permit 8413 match community c3_126_14 c3_127_15 c3_128_16 c3_129_17 c3_130_18 set community 0:112 route-map calculator permit 8414 match community c3_131_19 c3_132_20 c3_133_21 c3_134_22 c3_135_23 set community 0:112 route-map calculator permit 8415 match community c3_136_24 c3_137_25 c3_138_26 c3_139_27 c3_140_28 set community 0:112 route-map calculator permit 8416 match community c3_141_29 c3_142_30 c3_143_31 c3_144_32 c3_145_33 set community 0:112 route-map calculator permit 8417 match community c3_146_34 c3_147_35 c3_148_36 c3_149_37 c3_150_38 set community 0:112 route-map calculator permit 8418 match community c3_151_39 c3_152_40 c3_153_41 c3_154_42 c3_155_43 set community 0:112 route-map calculator permit 8419 match community c3_156_44 c3_157_45 c3_158_46 c3_159_47 c3_160_48 set community 0:112 route-map calculator permit 8420 match community c3_161_49 c3_162_50 c3_163_51 c3_164_52 c3_165_53 set community 0:112 route-map calculator permit 8421 match community c3_166_54 c3_167_55 c3_168_56 c3_169_57 c3_170_58 set community 0:112 route-map calculator permit 8422 match community c3_171_59 c3_172_60 c3_173_61 c3_174_62 c3_175_63 set community 0:112 route-map calculator permit 8423 match community c3_176_64 c3_177_65 c3_178_66 c3_179_67 c3_180_68 set community 0:112 route-map calculator permit 8424 match community c3_181_69 c3_182_70 c3_183_71 c3_184_72 c3_185_73 set community 0:112 route-map calculator permit 8425 match community c3_186_74 c3_187_75 c3_188_76 c3_189_77 c3_190_78 set community 0:112 route-map calculator permit 8426 match community c3_191_79 c3_192_80 c3_193_81 c3_194_82 c3_195_83 set community 0:112 route-map calculator permit 8427 match community c3_196_84 c3_197_85 c3_198_86 c3_199_87 c3_200_88 set community 0:112 route-map calculator permit 8428 match community c3_201_89 c3_202_90 c3_203_91 c3_204_92 c3_205_93 set community 0:112 route-map calculator permit 8429 match community c3_206_94 c3_207_95 c3_208_96 c3_209_97 c3_210_98 set community 0:112 route-map calculator permit 8430 match community c3_211_99 c3_212_100 c3_213_101 c3_214_102 c3_215_103 set community 0:112 route-map calculator permit 8431 match community c3_216_104 c3_217_105 c3_218_106 c3_219_107 c3_220_108 set community 0:112 route-map calculator permit 8432 match community c3_221_109 c3_222_110 c3_223_111 c4_224_2 c3_224_112 set community 0:112 route-map calculator permit 8433 match community c4_225_2 c3_225_113 c3_226_114 c3_227_115 c3_228_116 set community 0:112 route-map calculator permit 8434 match community c3_229_117 c3_230_118 c3_231_119 c3_232_120 c3_233_121 set community 0:112 route-map calculator permit 8435 match community c3_234_122 c3_235_123 c3_236_124 c3_237_125 c3_238_126 set community 0:112 route-map calculator permit 8436 match community c3_239_127 c3_240_128 c3_241_129 c3_242_130 c3_243_131 set community 0:112 route-map calculator permit 8437 match community c3_244_132 c3_245_133 c3_246_134 c3_247_135 c3_248_136 set community 0:112 route-map calculator permit 8438 match community c3_249_137 c3_250_138 c3_251_139 c3_252_140 c3_253_141 set community 0:112 route-map calculator permit 8439 match community c3_254_142 c3_255_143 c3_256_144 set community 0:112 ip community-list standard 2_34_206 permit 65000:2 0:34 0:206 ip community-list standard 2_68_103 permit 65000:2 0:68 0:103 route-map calculator permit 8440 match community 2_34_206 2_68_103 set community 0:7004 ip community-list standard 2_51_137 permit 65000:2 0:51 0:137 route-map calculator permit 8441 match community 2_51_137 set community 0:6987 ip community-list standard 2_16_185 permit 65000:2 0:16 0:185 ip community-list standard 2_20_148 permit 65000:2 0:20 0:148 ip community-list standard 2_37_80 permit 65000:2 0:37 0:80 ip community-list standard 2_40_74 permit 65000:2 0:40 0:74 route-map calculator permit 8442 match community 2_16_185 2_20_148 2_37_80 2_40_74 set community 0:2960 ip community-list standard 2_36_222 permit 65000:2 0:36 0:222 ip community-list standard 2_37_216 permit 65000:2 0:37 0:216 ip community-list standard 2_54_148 permit 65000:2 0:54 0:148 ip community-list standard 2_72_111 permit 65000:2 0:72 0:111 ip community-list standard 2_74_108 permit 65000:2 0:74 0:108 route-map calculator permit 8443 match community 2_36_222 2_37_216 2_54_148 2_72_111 2_74_108 set community 0:7992 ip community-list standard 2_214_255 permit 65000:2 0:214 0:255 route-map calculator permit 8444 match community 2_214_255 set community 0:54570 ip community-list standard 2_7_127 permit 65000:2 0:7 0:127 route-map calculator permit 8445 match community 2_7_127 set community 0:889 ip community-list standard 2_91_199 permit 65000:2 0:91 0:199 route-map calculator permit 8446 match community 2_91_199 set community 0:18109 ip community-list standard 2_54_197 permit 65000:2 0:54 0:197 route-map calculator permit 8447 match community 2_54_197 set community 0:10638 ip community-list standard 2_104_163 permit 65000:2 0:104 0:163 route-map calculator permit 8448 match community 2_104_163 set community 0:16952 ip community-list standard 2_143_225 permit 65000:2 0:143 0:225 ip community-list standard 2_165_195 permit 65000:2 0:165 0:195 route-map calculator permit 8449 match community 2_143_225 2_165_195 set community 0:32175 ip community-list standard 2_196_219 permit 65000:2 0:196 0:219 route-map calculator permit 8450 match community 2_196_219 set community 0:42924 ip community-list standard 2_144_202 permit 65000:2 0:144 0:202 route-map calculator permit 8451 match community 2_144_202 set community 0:29088 ip community-list standard 2_209_249 permit 65000:2 0:209 0:249 route-map calculator permit 8452 match community 2_209_249 set community 0:52041 ip community-list standard 2_73_228 permit 65000:2 0:73 0:228 ip community-list standard 2_76_219 permit 65000:2 0:76 0:219 ip community-list standard 2_114_146 permit 65000:2 0:114 0:146 route-map calculator permit 8453 match community 2_73_228 2_76_219 2_114_146 set community 0:16644 ip community-list standard 2_158_185 permit 65000:2 0:158 0:185 route-map calculator permit 8454 match community 2_158_185 set community 0:29230 ip community-list standard 2_13_233 permit 65000:2 0:13 0:233 route-map calculator permit 8455 match community 2_13_233 set community 0:3029 ip community-list standard 2_41_129 permit 65000:2 0:41 0:129 ip community-list standard 2_43_123 permit 65000:2 0:43 0:123 route-map calculator permit 8456 match community 2_41_129 2_43_123 set community 0:5289 ip community-list standard 2_146_194 permit 65000:2 0:146 0:194 route-map calculator permit 8457 match community 2_146_194 set community 0:28324 ip community-list standard 2_53_85 permit 65000:2 0:53 0:85 route-map calculator permit 8458 match community 2_53_85 set community 0:4505 ip community-list standard 2_166_185 permit 65000:2 0:166 0:185 route-map calculator permit 8459 match community 2_166_185 set community 0:30710 ip community-list standard 2_129_207 permit 65000:2 0:129 0:207 route-map calculator permit 8460 match community 2_129_207 set community 0:26703 ip community-list standard 2_106_187 permit 65000:2 0:106 0:187 route-map calculator permit 8461 match community 2_106_187 set community 0:19822 ip community-list standard 2_9_219 permit 65000:2 0:9 0:219 ip community-list standard 2_27_73 permit 65000:2 0:27 0:73 route-map calculator permit 8462 match community 2_9_219 2_27_73 set community 0:1971 ip community-list standard 2_67_228 permit 65000:2 0:67 0:228 ip community-list standard 2_76_201 permit 65000:2 0:76 0:201 ip community-list standard 2_114_134 permit 65000:2 0:114 0:134 route-map calculator permit 8463 match community 2_67_228 2_76_201 2_114_134 set community 0:15276 ip community-list standard 2_47_149 permit 65000:2 0:47 0:149 route-map calculator permit 8464 match community 2_47_149 set community 0:7003 ip community-list standard 2_138_196 permit 65000:2 0:138 0:196 ip community-list standard 2_147_184 permit 65000:2 0:147 0:184 ip community-list standard 2_161_168 permit 65000:2 0:161 0:168 route-map calculator permit 8465 match community 2_138_196 2_147_184 2_161_168 set community 0:27048 ip community-list standard 2_87_254 permit 65000:2 0:87 0:254 ip community-list standard 2_127_174 permit 65000:2 0:127 0:174 route-map calculator permit 8466 match community 2_87_254 2_127_174 set community 0:22098 ip community-list standard 2_16_223 permit 65000:2 0:16 0:223 route-map calculator permit 8467 match community 2_16_223 set community 0:3568 ip community-list standard 2_17_122 permit 65000:2 0:17 0:122 ip community-list standard 2_34_61 permit 65000:2 0:34 0:61 route-map calculator permit 8468 match community 2_17_122 2_34_61 set community 0:2074 ip community-list standard 2_216_247 permit 65000:2 0:216 0:247 ip community-list standard 2_228_234 permit 65000:2 0:228 0:234 route-map calculator permit 8469 match community 2_216_247 2_228_234 set community 0:53352 ip community-list standard 2_57_233 permit 65000:2 0:57 0:233 route-map calculator permit 8470 match community 2_57_233 set community 0:13281 ip community-list standard 2_167_230 permit 65000:2 0:167 0:230 route-map calculator permit 8471 match community 2_167_230 set community 0:38410 ip community-list standard 2_75_178 permit 65000:2 0:75 0:178 ip community-list standard 2_89_150 permit 65000:2 0:89 0:150 route-map calculator permit 8472 match community 2_75_178 2_89_150 set community 0:13350 ip community-list standard 2_86_207 permit 65000:2 0:86 0:207 ip community-list standard 2_129_138 permit 65000:2 0:129 0:138 route-map calculator permit 8473 match community 2_86_207 2_129_138 set community 0:17802 ip community-list standard 2_163_180 permit 65000:2 0:163 0:180 route-map calculator permit 8474 match community 2_163_180 set community 0:29340 ip community-list standard 2_35_103 permit 65000:2 0:35 0:103 route-map calculator permit 8475 match community 2_35_103 set community 0:3605 ip community-list standard 2_67_256 permit 65000:2 0:67 0:256 ip community-list standard 2_128_134 permit 65000:2 0:128 0:134 route-map calculator permit 8476 match community 2_67_256 2_128_134 set community 0:17152 ip community-list standard 2_11_247 permit 65000:2 0:11 0:247 ip community-list standard 2_13_209 permit 65000:2 0:13 0:209 ip community-list standard 2_19_143 permit 65000:2 0:19 0:143 route-map calculator permit 8477 match community 2_11_247 2_13_209 2_19_143 set community 0:2717 ip community-list standard 2_123_215 permit 65000:2 0:123 0:215 ip community-list standard 2_129_205 permit 65000:2 0:129 0:205 route-map calculator permit 8478 match community 2_123_215 2_129_205 set community 0:26445 ip community-list standard 2_183_223 permit 65000:2 0:183 0:223 route-map calculator permit 8479 match community 2_183_223 set community 0:40809 ip community-list standard 2_173_239 permit 65000:2 0:173 0:239 route-map calculator permit 8480 match community 2_173_239 set community 0:41347 ip community-list standard 2_214_217 permit 65000:2 0:214 0:217 route-map calculator permit 8481 match community 2_214_217 set community 0:46438 ip community-list standard 2_247_255 permit 65000:2 0:247 0:255 route-map calculator permit 8482 match community 2_247_255 set community 0:62985 ip community-list standard 2_78_255 permit 65000:2 0:78 0:255 ip community-list standard 2_85_234 permit 65000:2 0:85 0:234 ip community-list standard 2_90_221 permit 65000:2 0:90 0:221 ip community-list standard 2_102_195 permit 65000:2 0:102 0:195 ip community-list standard 2_117_170 permit 65000:2 0:117 0:170 ip community-list standard 2_130_153 permit 65000:2 0:130 0:153 route-map calculator permit 8483 match community 2_78_255 2_85_234 2_90_221 2_102_195 2_117_170 set community 0:19890 route-map calculator permit 8484 match community 2_130_153 set community 0:19890 ip community-list standard 2_93_252 permit 65000:2 0:93 0:252 ip community-list standard 2_108_217 permit 65000:2 0:108 0:217 ip community-list standard 2_124_189 permit 65000:2 0:124 0:189 ip community-list standard 2_126_186 permit 65000:2 0:126 0:186 route-map calculator permit 8485 match community 2_93_252 2_108_217 2_124_189 2_126_186 set community 0:23436 ip community-list standard 2_109_127 permit 65000:2 0:109 0:127 route-map calculator permit 8486 match community 2_109_127 set community 0:13843 ip community-list standard 2_121_127 permit 65000:2 0:121 0:127 route-map calculator permit 8487 match community 2_121_127 set community 0:15367 ip community-list standard 2_172_179 permit 65000:2 0:172 0:179 route-map calculator permit 8488 match community 2_172_179 set community 0:30788 ip community-list standard 1_193_256 permit 65000:1 0:193 0:256 ip community-list standard 1_194_255 permit 65000:1 0:194 0:255 ip community-list standard 1_195_254 permit 65000:1 0:195 0:254 ip community-list standard 1_196_253 permit 65000:1 0:196 0:253 ip community-list standard 1_197_252 permit 65000:1 0:197 0:252 ip community-list standard 1_198_251 permit 65000:1 0:198 0:251 ip community-list standard 1_199_250 permit 65000:1 0:199 0:250 ip community-list standard 1_200_249 permit 65000:1 0:200 0:249 ip community-list standard 1_201_248 permit 65000:1 0:201 0:248 ip community-list standard 1_202_247 permit 65000:1 0:202 0:247 ip community-list standard 1_203_246 permit 65000:1 0:203 0:246 ip community-list standard 1_204_245 permit 65000:1 0:204 0:245 ip community-list standard 1_205_244 permit 65000:1 0:205 0:244 ip community-list standard 1_206_243 permit 65000:1 0:206 0:243 ip community-list standard 1_207_242 permit 65000:1 0:207 0:242 ip community-list standard 1_208_241 permit 65000:1 0:208 0:241 ip community-list standard 1_209_240 permit 65000:1 0:209 0:240 ip community-list standard 1_210_239 permit 65000:1 0:210 0:239 ip community-list standard 1_211_238 permit 65000:1 0:211 0:238 ip community-list standard 1_212_237 permit 65000:1 0:212 0:237 ip community-list standard 1_213_236 permit 65000:1 0:213 0:236 ip community-list standard 1_214_235 permit 65000:1 0:214 0:235 ip community-list standard 1_215_234 permit 65000:1 0:215 0:234 ip community-list standard 1_216_233 permit 65000:1 0:216 0:233 ip community-list standard 1_217_232 permit 65000:1 0:217 0:232 ip community-list standard 1_218_231 permit 65000:1 0:218 0:231 ip community-list standard 1_219_230 permit 65000:1 0:219 0:230 ip community-list standard 1_220_229 permit 65000:1 0:220 0:229 ip community-list standard 1_221_228 permit 65000:1 0:221 0:228 ip community-list standard 1_222_227 permit 65000:1 0:222 0:227 ip community-list standard 1_223_226 permit 65000:1 0:223 0:226 ip community-list standard 1_224_225 permit 65000:1 0:224 0:225 route-map calculator permit 8489 match community 1_193_256 1_194_255 1_195_254 1_196_253 1_197_252 set community 0:449 route-map calculator permit 8490 match community 1_198_251 1_199_250 1_200_249 1_201_248 1_202_247 set community 0:449 route-map calculator permit 8491 match community 1_203_246 1_204_245 1_205_244 1_206_243 1_207_242 set community 0:449 route-map calculator permit 8492 match community 1_208_241 1_209_240 1_210_239 1_211_238 1_212_237 set community 0:449 route-map calculator permit 8493 match community 1_213_236 1_214_235 1_215_234 1_216_233 1_217_232 set community 0:449 route-map calculator permit 8494 match community 1_218_231 1_219_230 1_220_229 1_221_228 1_222_227 set community 0:449 route-map calculator permit 8495 match community 1_223_226 1_224_225 set community 0:449 ip community-list standard 2_113_229 permit 65000:2 0:113 0:229 route-map calculator permit 8496 match community 2_113_229 set community 0:25877 ip community-list standard 2_169_241 permit 65000:2 0:169 0:241 route-map calculator permit 8497 match community 2_169_241 set community 0:40729 ip community-list standard 2_52_233 permit 65000:2 0:52 0:233 route-map calculator permit 8498 match community 2_52_233 set community 0:12116 ip community-list standard 2_133_246 permit 65000:2 0:133 0:246 route-map calculator permit 8499 match community 2_133_246 set community 0:32718 ip community-list standard 2_202_213 permit 65000:2 0:202 0:213 route-map calculator permit 8500 match community 2_202_213 set community 0:43026 ip community-list standard 1_205_256 permit 65000:1 0:205 0:256 ip community-list standard 1_206_255 permit 65000:1 0:206 0:255 ip community-list standard 1_207_254 permit 65000:1 0:207 0:254 ip community-list standard 1_208_253 permit 65000:1 0:208 0:253 ip community-list standard 1_209_252 permit 65000:1 0:209 0:252 ip community-list standard 1_210_251 permit 65000:1 0:210 0:251 ip community-list standard 1_211_250 permit 65000:1 0:211 0:250 ip community-list standard 1_212_249 permit 65000:1 0:212 0:249 ip community-list standard 1_213_248 permit 65000:1 0:213 0:248 ip community-list standard 1_214_247 permit 65000:1 0:214 0:247 ip community-list standard 1_215_246 permit 65000:1 0:215 0:246 ip community-list standard 1_216_245 permit 65000:1 0:216 0:245 ip community-list standard 1_217_244 permit 65000:1 0:217 0:244 ip community-list standard 1_218_243 permit 65000:1 0:218 0:243 ip community-list standard 1_219_242 permit 65000:1 0:219 0:242 ip community-list standard 1_220_241 permit 65000:1 0:220 0:241 ip community-list standard 1_221_240 permit 65000:1 0:221 0:240 ip community-list standard 1_222_239 permit 65000:1 0:222 0:239 ip community-list standard 1_223_238 permit 65000:1 0:223 0:238 ip community-list standard 1_224_237 permit 65000:1 0:224 0:237 ip community-list standard 1_225_236 permit 65000:1 0:225 0:236 ip community-list standard 1_226_235 permit 65000:1 0:226 0:235 ip community-list standard 1_227_234 permit 65000:1 0:227 0:234 ip community-list standard 1_228_233 permit 65000:1 0:228 0:233 ip community-list standard 1_229_232 permit 65000:1 0:229 0:232 ip community-list standard 1_230_231 permit 65000:1 0:230 0:231 route-map calculator permit 8501 match community 1_205_256 1_206_255 1_207_254 1_208_253 1_209_252 set community 0:461 route-map calculator permit 8502 match community 1_210_251 1_211_250 1_212_249 1_213_248 1_214_247 set community 0:461 route-map calculator permit 8503 match community 1_215_246 1_216_245 1_217_244 1_218_243 1_219_242 set community 0:461 route-map calculator permit 8504 match community 1_220_241 1_221_240 1_222_239 1_223_238 1_224_237 set community 0:461 route-map calculator permit 8505 match community 1_225_236 1_226_235 1_227_234 1_228_233 1_229_232 set community 0:461 route-map calculator permit 8506 match community 1_230_231 set community 0:461 ip community-list standard 2_149_181 permit 65000:2 0:149 0:181 route-map calculator permit 8507 match community 2_149_181 set community 0:26969 ip community-list standard 2_58_179 permit 65000:2 0:58 0:179 route-map calculator permit 8508 match community 2_58_179 set community 0:10382 ip community-list standard 2_67_181 permit 65000:2 0:67 0:181 route-map calculator permit 8509 match community 2_67_181 set community 0:12127 ip community-list standard 2_83_250 permit 65000:2 0:83 0:250 ip community-list standard 2_125_166 permit 65000:2 0:125 0:166 route-map calculator permit 8510 match community 2_83_250 2_125_166 set community 0:20750 ip community-list standard 2_142_172 permit 65000:2 0:142 0:172 route-map calculator permit 8511 match community 2_142_172 set community 0:24424 ip community-list standard 2_181_227 permit 65000:2 0:181 0:227 route-map calculator permit 8512 match community 2_181_227 set community 0:41087 ip community-list standard 2_126_239 permit 65000:2 0:126 0:239 route-map calculator permit 8513 match community 2_126_239 set community 0:30114 ip community-list standard 2_138_216 permit 65000:2 0:138 0:216 ip community-list standard 2_144_207 permit 65000:2 0:144 0:207 ip community-list standard 2_162_184 permit 65000:2 0:162 0:184 route-map calculator permit 8514 match community 2_138_216 2_144_207 2_162_184 set community 0:29808 ip community-list standard 2_157_242 permit 65000:2 0:157 0:242 route-map calculator permit 8515 match community 2_157_242 set community 0:37994 ip community-list standard 2_94_191 permit 65000:2 0:94 0:191 route-map calculator permit 8516 match community 2_94_191 set community 0:17954 ip community-list standard 2_143_195 permit 65000:2 0:143 0:195 ip community-list standard 2_165_169 permit 65000:2 0:165 0:169 route-map calculator permit 8517 match community 2_143_195 2_165_169 set community 0:27885 ip community-list standard 2_13_179 permit 65000:2 0:13 0:179 route-map calculator permit 8518 match community 2_13_179 set community 0:2327 ip community-list standard 1_1_31 permit 65000:1 0:1 0:31 ip community-list standard 2_1_32 permit 65000:2 0:1 0:32 ip community-list standard 2_2_16 permit 65000:2 0:2 0:16 ip community-list standard 1_2_30 permit 65000:1 0:2 0:30 ip community-list standard 1_3_29 permit 65000:1 0:3 0:29 ip community-list standard 2_4_8 permit 65000:2 0:4 0:8 ip community-list standard 1_4_28 permit 65000:1 0:4 0:28 ip community-list standard 1_5_27 permit 65000:1 0:5 0:27 ip community-list standard 1_6_26 permit 65000:1 0:6 0:26 ip community-list standard 1_7_25 permit 65000:1 0:7 0:25 ip community-list standard 1_8_24 permit 65000:1 0:8 0:24 ip community-list standard 1_9_23 permit 65000:1 0:9 0:23 ip community-list standard 1_10_22 permit 65000:1 0:10 0:22 ip community-list standard 1_11_21 permit 65000:1 0:11 0:21 ip community-list standard 1_12_20 permit 65000:1 0:12 0:20 ip community-list standard 1_13_19 permit 65000:1 0:13 0:19 ip community-list standard 1_14_18 permit 65000:1 0:14 0:18 ip community-list standard 1_15_17 permit 65000:1 0:15 0:17 ip community-list standard 1_16_16 permit 65000:1 0:16 0:16 ip community-list expanded c32 permit 1 ^65000:4_0:32_0:1$ ip community-list expanded c32 permit 2 ^65000:3_0:33_0:1$ ip community-list expanded c32 permit 3 ^65000:3_0:34_0:2$ ip community-list expanded c32 permit 4 ^65000:3_0:35_0:3$ ip community-list expanded c32 permit 5 ^65000:3_0:36_0:4$ ip community-list expanded c32 permit 6 ^65000:3_0:37_0:5$ ip community-list expanded c32 permit 7 ^65000:3_0:38_0:6$ ip community-list expanded c32 permit 8 ^65000:3_0:39_0:7$ ip community-list expanded c32 permit 9 ^65000:3_0:40_0:8$ ip community-list expanded c32 permit 10 ^65000:3_0:41_0:9$ ip community-list expanded c32 permit 11 ^65000:3_0:42_0:10$ ip community-list expanded c32 permit 12 ^65000:3_0:43_0:11$ ip community-list expanded c32 permit 13 ^65000:3_0:44_0:12$ ip community-list expanded c32 permit 14 ^65000:3_0:45_0:13$ ip community-list expanded c32 permit 15 ^65000:3_0:46_0:14$ ip community-list expanded c32 permit 16 ^65000:3_0:47_0:15$ ip community-list expanded c32 permit 17 ^65000:3_0:48_0:16$ ip community-list expanded c32 permit 18 ^65000:3_0:49_0:17$ ip community-list expanded c32 permit 19 ^65000:3_0:50_0:18$ ip community-list expanded c32 permit 20 ^65000:3_0:51_0:19$ ip community-list expanded c32 permit 21 ^65000:3_0:52_0:20$ ip community-list expanded c32 permit 22 ^65000:3_0:53_0:21$ ip community-list expanded c32 permit 23 ^65000:3_0:54_0:22$ ip community-list expanded c32 permit 24 ^65000:3_0:55_0:23$ ip community-list expanded c32 permit 25 ^65000:3_0:56_0:24$ ip community-list expanded c32 permit 26 ^65000:3_0:57_0:25$ ip community-list expanded c32 permit 27 ^65000:3_0:58_0:26$ ip community-list expanded c32 permit 28 ^65000:3_0:59_0:27$ ip community-list expanded c32 permit 29 ^65000:3_0:60_0:28$ ip community-list expanded c32 permit 30 ^65000:3_0:61_0:29$ ip community-list expanded c32 permit 31 ^65000:3_0:62_0:30$ ip community-list expanded c32 permit 32 ^65000:3_0:63_0:31$ ip community-list expanded c32 permit 33 ^65000:4_0:64_0:2$ ip community-list expanded c32 permit 34 ^65000:3_0:64_0:32$ ip community-list expanded c32 permit 35 ^65000:4_0:65_0:2$ ip community-list expanded c32 permit 36 ^65000:3_0:65_0:33$ ip community-list expanded c32 permit 37 ^65000:3_0:66_0:34$ ip community-list expanded c32 permit 38 ^65000:3_0:67_0:35$ ip community-list expanded c32 permit 39 ^65000:3_0:68_0:36$ ip community-list expanded c32 permit 40 ^65000:3_0:69_0:37$ ip community-list expanded c32 permit 41 ^65000:3_0:70_0:38$ ip community-list expanded c32 permit 42 ^65000:3_0:71_0:39$ ip community-list expanded c32 permit 43 ^65000:3_0:72_0:40$ ip community-list expanded c32 permit 44 ^65000:3_0:73_0:41$ ip community-list expanded c32 permit 45 ^65000:3_0:74_0:42$ ip community-list expanded c32 permit 46 ^65000:3_0:75_0:43$ ip community-list expanded c32 permit 47 ^65000:3_0:76_0:44$ ip community-list expanded c32 permit 48 ^65000:3_0:77_0:45$ ip community-list expanded c32 permit 49 ^65000:3_0:78_0:46$ ip community-list expanded c32 permit 50 ^65000:3_0:79_0:47$ ip community-list expanded c32 permit 51 ^65000:3_0:80_0:48$ ip community-list expanded c32 permit 52 ^65000:3_0:81_0:49$ ip community-list expanded c32 permit 53 ^65000:3_0:82_0:50$ ip community-list expanded c32 permit 54 ^65000:3_0:83_0:51$ ip community-list expanded c32 permit 55 ^65000:3_0:84_0:52$ ip community-list expanded c32 permit 56 ^65000:3_0:85_0:53$ ip community-list expanded c32 permit 57 ^65000:3_0:86_0:54$ ip community-list expanded c32 permit 58 ^65000:3_0:87_0:55$ ip community-list expanded c32 permit 59 ^65000:3_0:88_0:56$ ip community-list expanded c32 permit 60 ^65000:3_0:89_0:57$ ip community-list expanded c32 permit 61 ^65000:3_0:90_0:58$ ip community-list expanded c32 permit 62 ^65000:3_0:91_0:59$ ip community-list expanded c32 permit 63 ^65000:3_0:92_0:60$ ip community-list expanded c32 permit 64 ^65000:3_0:93_0:61$ ip community-list expanded c32 permit 65 ^65000:3_0:94_0:62$ ip community-list expanded c32 permit 66 ^65000:3_0:95_0:63$ ip community-list expanded c32 permit 67 ^65000:4_0:96_0:3$ ip community-list expanded c32 permit 68 ^65000:3_0:96_0:64$ ip community-list expanded c32 permit 69 ^65000:4_0:97_0:3$ ip community-list expanded c32 permit 70 ^65000:3_0:97_0:65$ ip community-list expanded c32 permit 71 ^65000:4_0:98_0:3$ ip community-list expanded c32 permit 72 ^65000:3_0:98_0:66$ ip community-list expanded c32 permit 73 ^65000:3_0:99_0:67$ ip community-list expanded c32 permit 74 ^65000:3_0:100_0:68$ ip community-list expanded c32 permit 75 ^65000:3_0:101_0:69$ ip community-list expanded c32 permit 76 ^65000:3_0:102_0:70$ ip community-list expanded c32 permit 77 ^65000:3_0:103_0:71$ ip community-list expanded c32 permit 78 ^65000:3_0:104_0:72$ ip community-list expanded c32 permit 79 ^65000:3_0:105_0:73$ ip community-list expanded c32 permit 80 ^65000:3_0:106_0:74$ ip community-list expanded c32 permit 81 ^65000:3_0:107_0:75$ ip community-list expanded c32 permit 82 ^65000:3_0:108_0:76$ ip community-list expanded c32 permit 83 ^65000:3_0:109_0:77$ ip community-list expanded c32 permit 84 ^65000:3_0:110_0:78$ ip community-list expanded c32 permit 85 ^65000:3_0:111_0:79$ ip community-list expanded c32 permit 86 ^65000:3_0:112_0:80$ ip community-list expanded c32 permit 87 ^65000:3_0:113_0:81$ ip community-list expanded c32 permit 88 ^65000:3_0:114_0:82$ ip community-list expanded c32 permit 89 ^65000:3_0:115_0:83$ ip community-list expanded c32 permit 90 ^65000:3_0:116_0:84$ ip community-list expanded c32 permit 91 ^65000:3_0:117_0:85$ ip community-list expanded c32 permit 92 ^65000:3_0:118_0:86$ ip community-list expanded c32 permit 93 ^65000:3_0:119_0:87$ ip community-list expanded c32 permit 94 ^65000:3_0:120_0:88$ ip community-list expanded c32 permit 95 ^65000:3_0:121_0:89$ ip community-list expanded c32 permit 96 ^65000:3_0:122_0:90$ ip community-list expanded c32 permit 97 ^65000:3_0:123_0:91$ ip community-list expanded c32 permit 98 ^65000:3_0:124_0:92$ ip community-list expanded c32 permit 99 ^65000:3_0:125_0:93$ ip community-list expanded c32 permit 100 ^65000:3_0:126_0:94$ ip community-list expanded c32 permit 101 ^65000:3_0:127_0:95$ ip community-list expanded c32 permit 102 ^65000:4_0:128_0:4$ ip community-list expanded c32 permit 103 ^65000:3_0:128_0:96$ ip community-list expanded c32 permit 104 ^65000:4_0:129_0:4$ ip community-list expanded c32 permit 105 ^65000:3_0:129_0:97$ ip community-list expanded c32 permit 106 ^65000:4_0:130_0:4$ ip community-list expanded c32 permit 107 ^65000:3_0:130_0:98$ ip community-list expanded c32 permit 108 ^65000:4_0:131_0:4$ ip community-list expanded c32 permit 109 ^65000:3_0:131_0:99$ ip community-list expanded c32 permit 110 ^65000:3_0:132_0:100$ ip community-list expanded c32 permit 111 ^65000:3_0:133_0:101$ ip community-list expanded c32 permit 112 ^65000:3_0:134_0:102$ ip community-list expanded c32 permit 113 ^65000:3_0:135_0:103$ ip community-list expanded c32 permit 114 ^65000:3_0:136_0:104$ ip community-list expanded c32 permit 115 ^65000:3_0:137_0:105$ ip community-list expanded c32 permit 116 ^65000:3_0:138_0:106$ ip community-list expanded c32 permit 117 ^65000:3_0:139_0:107$ ip community-list expanded c32 permit 118 ^65000:3_0:140_0:108$ ip community-list expanded c32 permit 119 ^65000:3_0:141_0:109$ ip community-list expanded c32 permit 120 ^65000:3_0:142_0:110$ ip community-list expanded c32 permit 121 ^65000:3_0:143_0:111$ ip community-list expanded c32 permit 122 ^65000:3_0:144_0:112$ ip community-list expanded c32 permit 123 ^65000:3_0:145_0:113$ ip community-list expanded c32 permit 124 ^65000:3_0:146_0:114$ ip community-list expanded c32 permit 125 ^65000:3_0:147_0:115$ ip community-list expanded c32 permit 126 ^65000:3_0:148_0:116$ ip community-list expanded c32 permit 127 ^65000:3_0:149_0:117$ ip community-list expanded c32 permit 128 ^65000:3_0:150_0:118$ ip community-list expanded c32 permit 129 ^65000:3_0:151_0:119$ ip community-list expanded c32 permit 130 ^65000:3_0:152_0:120$ ip community-list expanded c32 permit 131 ^65000:3_0:153_0:121$ ip community-list expanded c32 permit 132 ^65000:3_0:154_0:122$ ip community-list expanded c32 permit 133 ^65000:3_0:155_0:123$ ip community-list expanded c32 permit 134 ^65000:3_0:156_0:124$ ip community-list expanded c32 permit 135 ^65000:3_0:157_0:125$ ip community-list expanded c32 permit 136 ^65000:3_0:158_0:126$ ip community-list expanded c32 permit 137 ^65000:3_0:159_0:127$ ip community-list expanded c32 permit 138 ^65000:4_0:160_0:5$ ip community-list expanded c32 permit 139 ^65000:3_0:160_0:128$ ip community-list expanded c32 permit 140 ^65000:4_0:161_0:5$ ip community-list expanded c32 permit 141 ^65000:3_0:161_0:129$ ip community-list expanded c32 permit 142 ^65000:4_0:162_0:5$ ip community-list expanded c32 permit 143 ^65000:3_0:162_0:130$ ip community-list expanded c32 permit 144 ^65000:4_0:163_0:5$ ip community-list expanded c32 permit 145 ^65000:3_0:163_0:131$ ip community-list expanded c32 permit 146 ^65000:4_0:164_0:5$ ip community-list expanded c32 permit 147 ^65000:3_0:164_0:132$ ip community-list expanded c32 permit 148 ^65000:3_0:165_0:133$ ip community-list expanded c32 permit 149 ^65000:3_0:166_0:134$ ip community-list expanded c32 permit 150 ^65000:3_0:167_0:135$ ip community-list expanded c32 permit 151 ^65000:3_0:168_0:136$ ip community-list expanded c32 permit 152 ^65000:3_0:169_0:137$ ip community-list expanded c32 permit 153 ^65000:3_0:170_0:138$ ip community-list expanded c32 permit 154 ^65000:3_0:171_0:139$ ip community-list expanded c32 permit 155 ^65000:3_0:172_0:140$ ip community-list expanded c32 permit 156 ^65000:3_0:173_0:141$ ip community-list expanded c32 permit 157 ^65000:3_0:174_0:142$ ip community-list expanded c32 permit 158 ^65000:3_0:175_0:143$ ip community-list expanded c32 permit 159 ^65000:3_0:176_0:144$ ip community-list expanded c32 permit 160 ^65000:3_0:177_0:145$ ip community-list expanded c32 permit 161 ^65000:3_0:178_0:146$ ip community-list expanded c32 permit 162 ^65000:3_0:179_0:147$ ip community-list expanded c32 permit 163 ^65000:3_0:180_0:148$ ip community-list expanded c32 permit 164 ^65000:3_0:181_0:149$ ip community-list expanded c32 permit 165 ^65000:3_0:182_0:150$ ip community-list expanded c32 permit 166 ^65000:3_0:183_0:151$ ip community-list expanded c32 permit 167 ^65000:3_0:184_0:152$ ip community-list expanded c32 permit 168 ^65000:3_0:185_0:153$ ip community-list expanded c32 permit 169 ^65000:3_0:186_0:154$ ip community-list expanded c32 permit 170 ^65000:3_0:187_0:155$ ip community-list expanded c32 permit 171 ^65000:3_0:188_0:156$ ip community-list expanded c32 permit 172 ^65000:3_0:189_0:157$ ip community-list expanded c32 permit 173 ^65000:3_0:190_0:158$ ip community-list expanded c32 permit 174 ^65000:3_0:191_0:159$ ip community-list expanded c32 permit 175 ^65000:4_0:192_0:6$ ip community-list expanded c32 permit 176 ^65000:3_0:192_0:160$ ip community-list expanded c32 permit 177 ^65000:4_0:193_0:6$ ip community-list expanded c32 permit 178 ^65000:3_0:193_0:161$ ip community-list expanded c32 permit 179 ^65000:4_0:194_0:6$ ip community-list expanded c32 permit 180 ^65000:3_0:194_0:162$ ip community-list expanded c32 permit 181 ^65000:4_0:195_0:6$ ip community-list expanded c32 permit 182 ^65000:3_0:195_0:163$ ip community-list expanded c32 permit 183 ^65000:4_0:196_0:6$ ip community-list expanded c32 permit 184 ^65000:3_0:196_0:164$ ip community-list expanded c32 permit 185 ^65000:4_0:197_0:6$ ip community-list expanded c32 permit 186 ^65000:3_0:197_0:165$ ip community-list expanded c32 permit 187 ^65000:3_0:198_0:166$ ip community-list expanded c32 permit 188 ^65000:3_0:199_0:167$ ip community-list expanded c32 permit 189 ^65000:3_0:200_0:168$ ip community-list expanded c32 permit 190 ^65000:3_0:201_0:169$ ip community-list expanded c32 permit 191 ^65000:3_0:202_0:170$ ip community-list expanded c32 permit 192 ^65000:3_0:203_0:171$ ip community-list expanded c32 permit 193 ^65000:3_0:204_0:172$ ip community-list expanded c32 permit 194 ^65000:3_0:205_0:173$ ip community-list expanded c32 permit 195 ^65000:3_0:206_0:174$ ip community-list expanded c32 permit 196 ^65000:3_0:207_0:175$ ip community-list expanded c32 permit 197 ^65000:3_0:208_0:176$ ip community-list expanded c32 permit 198 ^65000:3_0:209_0:177$ ip community-list expanded c32 permit 199 ^65000:3_0:210_0:178$ ip community-list expanded c32 permit 200 ^65000:3_0:211_0:179$ ip community-list expanded c32 permit 201 ^65000:3_0:212_0:180$ ip community-list expanded c32 permit 202 ^65000:3_0:213_0:181$ ip community-list expanded c32 permit 203 ^65000:3_0:214_0:182$ ip community-list expanded c32 permit 204 ^65000:3_0:215_0:183$ ip community-list expanded c32 permit 205 ^65000:3_0:216_0:184$ ip community-list expanded c32 permit 206 ^65000:3_0:217_0:185$ ip community-list expanded c32 permit 207 ^65000:3_0:218_0:186$ ip community-list expanded c32 permit 208 ^65000:3_0:219_0:187$ ip community-list expanded c32 permit 209 ^65000:3_0:220_0:188$ ip community-list expanded c32 permit 210 ^65000:3_0:221_0:189$ ip community-list expanded c32 permit 211 ^65000:3_0:222_0:190$ ip community-list expanded c32 permit 212 ^65000:3_0:223_0:191$ ip community-list expanded c32 permit 213 ^65000:4_0:224_0:7$ ip community-list expanded c32 permit 214 ^65000:3_0:224_0:192$ ip community-list expanded c32 permit 215 ^65000:4_0:225_0:7$ ip community-list expanded c32 permit 216 ^65000:3_0:225_0:193$ ip community-list expanded c32 permit 217 ^65000:4_0:226_0:7$ ip community-list expanded c32 permit 218 ^65000:3_0:226_0:194$ ip community-list expanded c32 permit 219 ^65000:4_0:227_0:7$ ip community-list expanded c32 permit 220 ^65000:3_0:227_0:195$ ip community-list expanded c32 permit 221 ^65000:4_0:228_0:7$ ip community-list expanded c32 permit 222 ^65000:3_0:228_0:196$ ip community-list expanded c32 permit 223 ^65000:4_0:229_0:7$ ip community-list expanded c32 permit 224 ^65000:3_0:229_0:197$ ip community-list expanded c32 permit 225 ^65000:4_0:230_0:7$ ip community-list expanded c32 permit 226 ^65000:3_0:230_0:198$ ip community-list expanded c32 permit 227 ^65000:3_0:231_0:199$ ip community-list expanded c32 permit 228 ^65000:3_0:232_0:200$ ip community-list expanded c32 permit 229 ^65000:3_0:233_0:201$ ip community-list expanded c32 permit 230 ^65000:3_0:234_0:202$ ip community-list expanded c32 permit 231 ^65000:3_0:235_0:203$ ip community-list expanded c32 permit 232 ^65000:3_0:236_0:204$ ip community-list expanded c32 permit 233 ^65000:3_0:237_0:205$ ip community-list expanded c32 permit 234 ^65000:3_0:238_0:206$ ip community-list expanded c32 permit 235 ^65000:3_0:239_0:207$ ip community-list expanded c32 permit 236 ^65000:3_0:240_0:208$ ip community-list expanded c32 permit 237 ^65000:3_0:241_0:209$ ip community-list expanded c32 permit 238 ^65000:3_0:242_0:210$ ip community-list expanded c32 permit 239 ^65000:3_0:243_0:211$ ip community-list expanded c32 permit 240 ^65000:3_0:244_0:212$ ip community-list expanded c32 permit 241 ^65000:3_0:245_0:213$ ip community-list expanded c32 permit 242 ^65000:3_0:246_0:214$ ip community-list expanded c32 permit 243 ^65000:3_0:247_0:215$ ip community-list expanded c32 permit 244 ^65000:3_0:248_0:216$ ip community-list expanded c32 permit 245 ^65000:3_0:249_0:217$ ip community-list expanded c32 permit 246 ^65000:3_0:250_0:218$ ip community-list expanded c32 permit 247 ^65000:3_0:251_0:219$ ip community-list expanded c32 permit 248 ^65000:3_0:252_0:220$ ip community-list expanded c32 permit 249 ^65000:3_0:253_0:221$ ip community-list expanded c32 permit 250 ^65000:3_0:254_0:222$ ip community-list expanded c32 permit 251 ^65000:3_0:255_0:223$ ip community-list expanded c32 permit 252 ^65000:4_0:256_0:8$ ip community-list expanded c32 permit 253 ^65000:3_0:256_0:224$ route-map calculator permit 8519 match community 1_1_31 2_1_32 2_2_16 1_2_30 1_3_29 set community 0:32 route-map calculator permit 8520 match community 2_4_8 1_4_28 1_5_27 1_6_26 1_7_25 set community 0:32 route-map calculator permit 8521 match community 1_8_24 1_9_23 1_10_22 1_11_21 1_12_20 set community 0:32 route-map calculator permit 8522 match community 1_13_19 1_14_18 1_15_17 1_16_16 c4_32_1 set community 0:32 route-map calculator permit 8523 match community c3_33_1 c3_34_2 c3_35_3 c3_36_4 c3_37_5 set community 0:32 route-map calculator permit 8524 match community c3_38_6 c3_39_7 c3_40_8 c3_41_9 c3_42_10 set community 0:32 route-map calculator permit 8525 match community c3_43_11 c3_44_12 c3_45_13 c3_46_14 c3_47_15 set community 0:32 route-map calculator permit 8526 match community c3_48_16 c3_49_17 c3_50_18 c3_51_19 c3_52_20 set community 0:32 route-map calculator permit 8527 match community c3_53_21 c3_54_22 c3_55_23 c3_56_24 c3_57_25 set community 0:32 route-map calculator permit 8528 match community c3_58_26 c3_59_27 c3_60_28 c3_61_29 c3_62_30 set community 0:32 route-map calculator permit 8529 match community c3_63_31 c4_64_2 c3_64_32 c4_65_2 c3_65_33 set community 0:32 route-map calculator permit 8530 match community c3_66_34 c3_67_35 c3_68_36 c3_69_37 c3_70_38 set community 0:32 route-map calculator permit 8531 match community c3_71_39 c3_72_40 c3_73_41 c3_74_42 c3_75_43 set community 0:32 route-map calculator permit 8532 match community c3_76_44 c3_77_45 c3_78_46 c3_79_47 c3_80_48 set community 0:32 route-map calculator permit 8533 match community c3_81_49 c3_82_50 c3_83_51 c3_84_52 c3_85_53 set community 0:32 route-map calculator permit 8534 match community c3_86_54 c3_87_55 c3_88_56 c3_89_57 c3_90_58 set community 0:32 route-map calculator permit 8535 match community c3_91_59 c3_92_60 c3_93_61 c3_94_62 c3_95_63 set community 0:32 route-map calculator permit 8536 match community c4_96_3 c3_96_64 c4_97_3 c3_97_65 c4_98_3 set community 0:32 route-map calculator permit 8537 match community c3_98_66 c3_99_67 c3_100_68 c3_101_69 c3_102_70 set community 0:32 route-map calculator permit 8538 match community c3_103_71 c3_104_72 c3_105_73 c3_106_74 c3_107_75 set community 0:32 route-map calculator permit 8539 match community c3_108_76 c3_109_77 c3_110_78 c3_111_79 c3_112_80 set community 0:32 route-map calculator permit 8540 match community c3_113_81 c3_114_82 c3_115_83 c3_116_84 c3_117_85 set community 0:32 route-map calculator permit 8541 match community c3_118_86 c3_119_87 c3_120_88 c3_121_89 c3_122_90 set community 0:32 route-map calculator permit 8542 match community c3_123_91 c3_124_92 c3_125_93 c3_126_94 c3_127_95 set community 0:32 route-map calculator permit 8543 match community c4_128_4 c3_128_96 c4_129_4 c3_129_97 c4_130_4 set community 0:32 route-map calculator permit 8544 match community c3_130_98 c4_131_4 c3_131_99 c3_132_100 c3_133_101 set community 0:32 route-map calculator permit 8545 match community c3_134_102 c3_135_103 c3_136_104 c3_137_105 c3_138_106 set community 0:32 route-map calculator permit 8546 match community c3_139_107 c3_140_108 c3_141_109 c3_142_110 c3_143_111 set community 0:32 route-map calculator permit 8547 match community c3_144_112 c3_145_113 c3_146_114 c3_147_115 c3_148_116 set community 0:32 route-map calculator permit 8548 match community c3_149_117 c3_150_118 c3_151_119 c3_152_120 c3_153_121 set community 0:32 route-map calculator permit 8549 match community c3_154_122 c3_155_123 c3_156_124 c3_157_125 c3_158_126 set community 0:32 route-map calculator permit 8550 match community c3_159_127 c4_160_5 c3_160_128 c4_161_5 c3_161_129 set community 0:32 route-map calculator permit 8551 match community c4_162_5 c3_162_130 c4_163_5 c3_163_131 c4_164_5 set community 0:32 route-map calculator permit 8552 match community c3_164_132 c3_165_133 c3_166_134 c3_167_135 c3_168_136 set community 0:32 route-map calculator permit 8553 match community c3_169_137 c3_170_138 c3_171_139 c3_172_140 c3_173_141 set community 0:32 route-map calculator permit 8554 match community c3_174_142 c3_175_143 c3_176_144 c3_177_145 c3_178_146 set community 0:32 route-map calculator permit 8555 match community c3_179_147 c3_180_148 c3_181_149 c3_182_150 c3_183_151 set community 0:32 route-map calculator permit 8556 match community c3_184_152 c3_185_153 c3_186_154 c3_187_155 c3_188_156 set community 0:32 route-map calculator permit 8557 match community c3_189_157 c3_190_158 c3_191_159 c4_192_6 c3_192_160 set community 0:32 route-map calculator permit 8558 match community c4_193_6 c3_193_161 c4_194_6 c3_194_162 c4_195_6 set community 0:32 route-map calculator permit 8559 match community c3_195_163 c4_196_6 c3_196_164 c4_197_6 c3_197_165 set community 0:32 route-map calculator permit 8560 match community c3_198_166 c3_199_167 c3_200_168 c3_201_169 c3_202_170 set community 0:32 route-map calculator permit 8561 match community c3_203_171 c3_204_172 c3_205_173 c3_206_174 c3_207_175 set community 0:32 route-map calculator permit 8562 match community c3_208_176 c3_209_177 c3_210_178 c3_211_179 c3_212_180 set community 0:32 route-map calculator permit 8563 match community c3_213_181 c3_214_182 c3_215_183 c3_216_184 c3_217_185 set community 0:32 route-map calculator permit 8564 match community c3_218_186 c3_219_187 c3_220_188 c3_221_189 c3_222_190 set community 0:32 route-map calculator permit 8565 match community c3_223_191 c4_224_7 c3_224_192 c4_225_7 c3_225_193 set community 0:32 route-map calculator permit 8566 match community c4_226_7 c3_226_194 c4_227_7 c3_227_195 c4_228_7 set community 0:32 route-map calculator permit 8567 match community c3_228_196 c4_229_7 c3_229_197 c4_230_7 c3_230_198 set community 0:32 route-map calculator permit 8568 match community c3_231_199 c3_232_200 c3_233_201 c3_234_202 c3_235_203 set community 0:32 route-map calculator permit 8569 match community c3_236_204 c3_237_205 c3_238_206 c3_239_207 c3_240_208 set community 0:32 route-map calculator permit 8570 match community c3_241_209 c3_242_210 c3_243_211 c3_244_212 c3_245_213 set community 0:32 route-map calculator permit 8571 match community c3_246_214 c3_247_215 c3_248_216 c3_249_217 c3_250_218 set community 0:32 route-map calculator permit 8572 match community c3_251_219 c3_252_220 c3_253_221 c3_254_222 c3_255_223 set community 0:32 route-map calculator permit 8573 match community c4_256_8 c3_256_224 set community 0:32 ip community-list standard 2_142_164 permit 65000:2 0:142 0:164 route-map calculator permit 8574 match community 2_142_164 set community 0:23288 ip community-list standard 2_138_217 permit 65000:2 0:138 0:217 ip community-list standard 2_161_186 permit 65000:2 0:161 0:186 route-map calculator permit 8575 match community 2_138_217 2_161_186 set community 0:29946 ip community-list standard 2_205_250 permit 65000:2 0:205 0:250 route-map calculator permit 8576 match community 2_205_250 set community 0:51250 ip community-list standard 2_133_193 permit 65000:2 0:133 0:193 route-map calculator permit 8577 match community 2_133_193 set community 0:25669 ip community-list standard 2_8_200 permit 65000:2 0:8 0:200 ip community-list standard 2_10_160 permit 65000:2 0:10 0:160 ip community-list standard 2_16_100 permit 65000:2 0:16 0:100 ip community-list standard 2_20_80 permit 65000:2 0:20 0:80 ip community-list standard 2_25_64 permit 65000:2 0:25 0:64 ip community-list standard 2_32_50 permit 65000:2 0:32 0:50 ip community-list standard 2_40_40 permit 65000:2 0:40 0:40 route-map calculator permit 8578 match community 2_8_200 2_10_160 2_16_100 2_20_80 2_25_64 set community 0:1600 route-map calculator permit 8579 match community 2_32_50 2_40_40 set community 0:1600 ip community-list standard 2_197_208 permit 65000:2 0:197 0:208 route-map calculator permit 8580 match community 2_197_208 set community 0:40976 ip community-list standard 2_78_203 permit 65000:2 0:78 0:203 ip community-list standard 2_87_182 permit 65000:2 0:87 0:182 ip community-list standard 2_91_174 permit 65000:2 0:91 0:174 route-map calculator permit 8581 match community 2_78_203 2_87_182 2_91_174 set community 0:15834 ip community-list standard 2_123_153 permit 65000:2 0:123 0:153 route-map calculator permit 8582 match community 2_123_153 set community 0:18819 ip community-list standard 2_232_232 permit 65000:2 0:232 0:232 route-map calculator permit 8583 match community 2_232_232 set community 0:53824 ip community-list standard 2_38_206 permit 65000:2 0:38 0:206 ip community-list standard 2_76_103 permit 65000:2 0:76 0:103 route-map calculator permit 8584 match community 2_38_206 2_76_103 set community 0:7828 ip community-list standard 2_68_239 permit 65000:2 0:68 0:239 route-map calculator permit 8585 match community 2_68_239 set community 0:16252 ip community-list standard 2_114_183 permit 65000:2 0:114 0:183 ip community-list standard 2_122_171 permit 65000:2 0:122 0:171 route-map calculator permit 8586 match community 2_114_183 2_122_171 set community 0:20862 ip community-list standard 2_182_245 permit 65000:2 0:182 0:245 route-map calculator permit 8587 match community 2_182_245 set community 0:44590 ip community-list standard 2_23_207 permit 65000:2 0:23 0:207 ip community-list standard 2_69_69 permit 65000:2 0:69 0:69 route-map calculator permit 8588 match community 2_23_207 2_69_69 set community 0:4761 ip community-list standard 2_66_223 permit 65000:2 0:66 0:223 route-map calculator permit 8589 match community 2_66_223 set community 0:14718 ip community-list standard 2_149_164 permit 65000:2 0:149 0:164 route-map calculator permit 8590 match community 2_149_164 set community 0:24436 ip community-list standard 2_97_245 permit 65000:2 0:97 0:245 route-map calculator permit 8591 match community 2_97_245 set community 0:23765 ip community-list standard 2_131_222 permit 65000:2 0:131 0:222 route-map calculator permit 8592 match community 2_131_222 set community 0:29082 ip community-list standard 2_24_256 permit 65000:2 0:24 0:256 ip community-list standard 2_32_192 permit 65000:2 0:32 0:192 ip community-list standard 2_48_128 permit 65000:2 0:48 0:128 ip community-list standard 2_64_96 permit 65000:2 0:64 0:96 route-map calculator permit 8593 match community 2_24_256 2_32_192 2_48_128 2_64_96 set community 0:6144 ip community-list standard 2_227_234 permit 65000:2 0:227 0:234 route-map calculator permit 8594 match community 2_227_234 set community 0:53118 ip community-list standard 2_91_206 permit 65000:2 0:91 0:206 ip community-list standard 2_103_182 permit 65000:2 0:103 0:182 route-map calculator permit 8595 match community 2_91_206 2_103_182 set community 0:18746 ip community-list standard 2_80_181 permit 65000:2 0:80 0:181 route-map calculator permit 8596 match community 2_80_181 set community 0:14480 ip community-list standard 2_93_234 permit 65000:2 0:93 0:234 ip community-list standard 2_117_186 permit 65000:2 0:117 0:186 route-map calculator permit 8597 match community 2_93_234 2_117_186 set community 0:21762 ip community-list standard 2_223_235 permit 65000:2 0:223 0:235 route-map calculator permit 8598 match community 2_223_235 set community 0:52405 ip community-list standard 2_59_206 permit 65000:2 0:59 0:206 ip community-list standard 2_103_118 permit 65000:2 0:103 0:118 route-map calculator permit 8599 match community 2_59_206 2_103_118 set community 0:12154 ip community-list standard 2_17_106 permit 65000:2 0:17 0:106 ip community-list standard 2_34_53 permit 65000:2 0:34 0:53 route-map calculator permit 8600 match community 2_17_106 2_34_53 set community 0:1802 ip community-list standard 2_6_241 permit 65000:2 0:6 0:241 route-map calculator permit 8601 match community 2_6_241 set community 0:1446 ip community-list standard 2_17_93 permit 65000:2 0:17 0:93 ip community-list standard 2_31_51 permit 65000:2 0:31 0:51 route-map calculator permit 8602 match community 2_17_93 2_31_51 set community 0:1581 ip community-list standard 2_109_211 permit 65000:2 0:109 0:211 route-map calculator permit 8603 match community 2_109_211 set community 0:22999 ip community-list standard 2_80_254 permit 65000:2 0:80 0:254 ip community-list standard 2_127_160 permit 65000:2 0:127 0:160 route-map calculator permit 8604 match community 2_80_254 2_127_160 set community 0:20320 ip community-list standard 2_68_218 permit 65000:2 0:68 0:218 ip community-list standard 2_109_136 permit 65000:2 0:109 0:136 route-map calculator permit 8605 match community 2_68_218 2_109_136 set community 0:14824 ip community-list standard 2_41_98 permit 65000:2 0:41 0:98 ip community-list standard 2_49_82 permit 65000:2 0:49 0:82 route-map calculator permit 8606 match community 2_41_98 2_49_82 set community 0:4018 ip community-list standard 2_237_249 permit 65000:2 0:237 0:249 route-map calculator permit 8607 match community 2_237_249 set community 0:59013 ip community-list standard 2_144_222 permit 65000:2 0:144 0:222 ip community-list standard 2_148_216 permit 65000:2 0:148 0:216 route-map calculator permit 8608 match community 2_144_222 2_148_216 set community 0:31968 ip community-list standard 2_52_248 permit 65000:2 0:52 0:248 ip community-list standard 2_62_208 permit 65000:2 0:62 0:208 ip community-list standard 2_104_124 permit 65000:2 0:104 0:124 route-map calculator permit 8609 match community 2_52_248 2_62_208 2_104_124 set community 0:12896 ip community-list standard 2_211_236 permit 65000:2 0:211 0:236 route-map calculator permit 8610 match community 2_211_236 set community 0:49796 ip community-list standard 2_20_220 permit 65000:2 0:20 0:220 ip community-list standard 2_22_200 permit 65000:2 0:22 0:200 ip community-list standard 2_25_176 permit 65000:2 0:25 0:176 ip community-list standard 2_40_110 permit 65000:2 0:40 0:110 ip community-list standard 2_44_100 permit 65000:2 0:44 0:100 ip community-list standard 2_50_88 permit 65000:2 0:50 0:88 ip community-list standard 2_55_80 permit 65000:2 0:55 0:80 route-map calculator permit 8611 match community 2_20_220 2_22_200 2_25_176 2_40_110 2_44_100 set community 0:4400 route-map calculator permit 8612 match community 2_50_88 2_55_80 set community 0:4400 ip community-list standard 2_171_230 permit 65000:2 0:171 0:230 ip community-list standard 2_190_207 permit 65000:2 0:190 0:207 route-map calculator permit 8613 match community 2_171_230 2_190_207 set community 0:39330 ip community-list standard 2_120_247 permit 65000:2 0:120 0:247 ip community-list standard 2_130_228 permit 65000:2 0:130 0:228 ip community-list standard 2_152_195 permit 65000:2 0:152 0:195 ip community-list standard 2_156_190 permit 65000:2 0:156 0:190 route-map calculator permit 8614 match community 2_120_247 2_130_228 2_152_195 2_156_190 set community 0:29640 ip community-list standard 2_61_243 permit 65000:2 0:61 0:243 ip community-list standard 2_81_183 permit 65000:2 0:81 0:183 route-map calculator permit 8615 match community 2_61_243 2_81_183 set community 0:14823 ip community-list standard 2_106_219 permit 65000:2 0:106 0:219 ip community-list standard 2_146_159 permit 65000:2 0:146 0:159 route-map calculator permit 8616 match community 2_106_219 2_146_159 set community 0:23214 ip community-list standard 2_198_211 permit 65000:2 0:198 0:211 route-map calculator permit 8617 match community 2_198_211 set community 0:41778 ip community-list standard 2_87_217 permit 65000:2 0:87 0:217 ip community-list standard 2_93_203 permit 65000:2 0:93 0:203 route-map calculator permit 8618 match community 2_87_217 2_93_203 set community 0:18879 ip community-list standard 2_196_231 permit 65000:2 0:196 0:231 route-map calculator permit 8619 match community 2_196_231 set community 0:45276 ip community-list standard 2_173_237 permit 65000:2 0:173 0:237 route-map calculator permit 8620 match community 2_173_237 set community 0:41001 ip community-list standard 2_92_239 permit 65000:2 0:92 0:239 route-map calculator permit 8621 match community 2_92_239 set community 0:21988 ip community-list standard 2_23_46 permit 65000:2 0:23 0:46 route-map calculator permit 8622 match community 2_23_46 set community 0:1058 ip community-list standard 2_230_243 permit 65000:2 0:230 0:243 route-map calculator permit 8623 match community 2_230_243 set community 0:55890 ip community-list standard 2_5_154 permit 65000:2 0:5 0:154 ip community-list standard 2_7_110 permit 65000:2 0:7 0:110 ip community-list standard 2_10_77 permit 65000:2 0:10 0:77 ip community-list standard 2_11_70 permit 65000:2 0:11 0:70 ip community-list standard 2_14_55 permit 65000:2 0:14 0:55 ip community-list standard 2_22_35 permit 65000:2 0:22 0:35 route-map calculator permit 8624 match community 2_5_154 2_7_110 2_10_77 2_11_70 2_14_55 set community 0:770 route-map calculator permit 8625 match community 2_22_35 set community 0:770 ip community-list standard 2_162_181 permit 65000:2 0:162 0:181 route-map calculator permit 8626 match community 2_162_181 set community 0:29322 ip community-list standard 2_25_217 permit 65000:2 0:25 0:217 ip community-list standard 2_31_175 permit 65000:2 0:31 0:175 ip community-list standard 2_35_155 permit 65000:2 0:35 0:155 route-map calculator permit 8627 match community 2_25_217 2_31_175 2_35_155 set community 0:5425 ip community-list standard 2_3_187 permit 65000:2 0:3 0:187 ip community-list standard 2_11_51 permit 65000:2 0:11 0:51 ip community-list standard 2_17_33 permit 65000:2 0:17 0:33 route-map calculator permit 8628 match community 2_3_187 2_11_51 2_17_33 set community 0:561 ip community-list standard 2_130_224 permit 65000:2 0:130 0:224 ip community-list standard 2_140_208 permit 65000:2 0:140 0:208 ip community-list standard 2_160_182 permit 65000:2 0:160 0:182 route-map calculator permit 8629 match community 2_130_224 2_140_208 2_160_182 set community 0:29120 ip community-list standard 2_5_158 permit 65000:2 0:5 0:158 ip community-list standard 2_10_79 permit 65000:2 0:10 0:79 route-map calculator permit 8630 match community 2_5_158 2_10_79 set community 0:790 ip community-list standard 2_27_181 permit 65000:2 0:27 0:181 route-map calculator permit 8631 match community 2_27_181 set community 0:4887 ip community-list standard 2_206_244 permit 65000:2 0:206 0:244 route-map calculator permit 8632 match community 2_206_244 set community 0:50264 ip community-list standard 2_203_207 permit 65000:2 0:203 0:207 route-map calculator permit 8633 match community 2_203_207 set community 0:42021 ip community-list standard 2_26_250 permit 65000:2 0:26 0:250 ip community-list standard 2_50_130 permit 65000:2 0:50 0:130 ip community-list standard 2_52_125 permit 65000:2 0:52 0:125 ip community-list standard 2_65_100 permit 65000:2 0:65 0:100 route-map calculator permit 8634 match community 2_26_250 2_50_130 2_52_125 2_65_100 set community 0:6500 ip community-list standard 2_239_239 permit 65000:2 0:239 0:239 route-map calculator permit 8635 match community 2_239_239 set community 0:57121 ip community-list standard 2_58_169 permit 65000:2 0:58 0:169 route-map calculator permit 8636 match community 2_58_169 set community 0:9802 ip community-list standard 2_219_252 permit 65000:2 0:219 0:252 route-map calculator permit 8637 match community 2_219_252 set community 0:55188 ip community-list standard 2_15_186 permit 65000:2 0:15 0:186 ip community-list standard 2_18_155 permit 65000:2 0:18 0:155 ip community-list standard 2_30_93 permit 65000:2 0:30 0:93 ip community-list standard 2_31_90 permit 65000:2 0:31 0:90 ip community-list standard 2_45_62 permit 65000:2 0:45 0:62 route-map calculator permit 8638 match community 2_15_186 2_18_155 2_30_93 2_31_90 2_45_62 set community 0:2790 ip community-list standard 2_33_123 permit 65000:2 0:33 0:123 ip community-list standard 2_41_99 permit 65000:2 0:41 0:99 route-map calculator permit 8639 match community 2_33_123 2_41_99 set community 0:4059 ip community-list standard 2_98_222 permit 65000:2 0:98 0:222 ip community-list standard 2_111_196 permit 65000:2 0:111 0:196 ip community-list standard 2_147_148 permit 65000:2 0:147 0:148 route-map calculator permit 8640 match community 2_98_222 2_111_196 2_147_148 set community 0:21756 ip community-list standard 2_80_221 permit 65000:2 0:80 0:221 ip community-list standard 2_85_208 permit 65000:2 0:85 0:208 ip community-list standard 2_104_170 permit 65000:2 0:104 0:170 ip community-list standard 2_130_136 permit 65000:2 0:130 0:136 route-map calculator permit 8641 match community 2_80_221 2_85_208 2_104_170 2_130_136 set community 0:17680 ip community-list standard 2_118_251 permit 65000:2 0:118 0:251 route-map calculator permit 8642 match community 2_118_251 set community 0:29618 ip community-list standard 2_68_191 permit 65000:2 0:68 0:191 route-map calculator permit 8643 match community 2_68_191 set community 0:12988 ip community-list standard 2_109_165 permit 65000:2 0:109 0:165 route-map calculator permit 8644 match community 2_109_165 set community 0:17985 ip community-list standard 2_11_231 permit 65000:2 0:11 0:231 ip community-list standard 2_21_121 permit 65000:2 0:21 0:121 ip community-list standard 2_33_77 permit 65000:2 0:33 0:77 route-map calculator permit 8645 match community 2_11_231 2_21_121 2_33_77 set community 0:2541 ip community-list standard 2_165_248 permit 65000:2 0:165 0:248 ip community-list standard 2_186_220 permit 65000:2 0:186 0:220 route-map calculator permit 8646 match community 2_165_248 2_186_220 set community 0:40920 ip community-list standard 2_238_249 permit 65000:2 0:238 0:249 route-map calculator permit 8647 match community 2_238_249 set community 0:59262 ip community-list standard 2_113_163 permit 65000:2 0:113 0:163 route-map calculator permit 8648 match community 2_113_163 set community 0:18419 ip community-list standard 2_47_142 permit 65000:2 0:47 0:142 ip community-list standard 2_71_94 permit 65000:2 0:71 0:94 route-map calculator permit 8649 match community 2_47_142 2_71_94 set community 0:6674 ip community-list standard 2_77_248 permit 65000:2 0:77 0:248 ip community-list standard 2_88_217 permit 65000:2 0:88 0:217 ip community-list standard 2_124_154 permit 65000:2 0:124 0:154 route-map calculator permit 8650 match community 2_77_248 2_88_217 2_124_154 set community 0:19096 ip community-list standard 2_38_232 permit 65000:2 0:38 0:232 ip community-list standard 2_58_152 permit 65000:2 0:58 0:152 ip community-list standard 2_76_116 permit 65000:2 0:76 0:116 route-map calculator permit 8651 match community 2_38_232 2_58_152 2_76_116 set community 0:8816 ip community-list standard 2_43_139 permit 65000:2 0:43 0:139 route-map calculator permit 8652 match community 2_43_139 set community 0:5977 ip community-list standard 2_137_202 permit 65000:2 0:137 0:202 route-map calculator permit 8653 match community 2_137_202 set community 0:27674 ip community-list standard 2_29_183 permit 65000:2 0:29 0:183 ip community-list standard 2_61_87 permit 65000:2 0:61 0:87 route-map calculator permit 8654 match community 2_29_183 2_61_87 set community 0:5307 ip community-list standard 2_97_229 permit 65000:2 0:97 0:229 route-map calculator permit 8655 match community 2_97_229 set community 0:22213 ip community-list standard 2_31_118 permit 65000:2 0:31 0:118 ip community-list standard 2_59_62 permit 65000:2 0:59 0:62 route-map calculator permit 8656 match community 2_31_118 2_59_62 set community 0:3658 ip community-list standard 2_114_149 permit 65000:2 0:114 0:149 route-map calculator permit 8657 match community 2_114_149 set community 0:16986 ip community-list standard 2_58_253 permit 65000:2 0:58 0:253 route-map calculator permit 8658 match community 2_58_253 set community 0:14674 ip community-list standard 2_215_228 permit 65000:2 0:215 0:228 route-map calculator permit 8659 match community 2_215_228 set community 0:49020 ip community-list standard 2_162_255 permit 65000:2 0:162 0:255 ip community-list standard 2_170_243 permit 65000:2 0:170 0:243 route-map calculator permit 8660 match community 2_162_255 2_170_243 set community 0:41310 ip community-list standard 2_178_247 permit 65000:2 0:178 0:247 route-map calculator permit 8661 match community 2_178_247 set community 0:43966 ip community-list standard 2_90_137 permit 65000:2 0:90 0:137 route-map calculator permit 8662 match community 2_90_137 set community 0:12330 ip community-list standard 2_178_250 permit 65000:2 0:178 0:250 route-map calculator permit 8663 match community 2_178_250 set community 0:44500 ip community-list standard 2_42_194 permit 65000:2 0:42 0:194 ip community-list standard 2_84_97 permit 65000:2 0:84 0:97 route-map calculator permit 8664 match community 2_42_194 2_84_97 set community 0:8148 ip community-list standard 2_84_131 permit 65000:2 0:84 0:131 route-map calculator permit 8665 match community 2_84_131 set community 0:11004 ip community-list standard 2_179_246 permit 65000:2 0:179 0:246 route-map calculator permit 8666 match community 2_179_246 set community 0:44034 ip community-list standard 2_186_229 permit 65000:2 0:186 0:229 route-map calculator permit 8667 match community 2_186_229 set community 0:42594 ip community-list standard 2_101_189 permit 65000:2 0:101 0:189 route-map calculator permit 8668 match community 2_101_189 set community 0:19089 ip community-list standard 2_43_251 permit 65000:2 0:43 0:251 route-map calculator permit 8669 match community 2_43_251 set community 0:10793 ip community-list standard 2_116_151 permit 65000:2 0:116 0:151 route-map calculator permit 8670 match community 2_116_151 set community 0:17516 ip community-list standard 2_144_193 permit 65000:2 0:144 0:193 route-map calculator permit 8671 match community 2_144_193 set community 0:27792 ip community-list standard 2_52_249 permit 65000:2 0:52 0:249 ip community-list standard 2_78_166 permit 65000:2 0:78 0:166 ip community-list standard 2_83_156 permit 65000:2 0:83 0:156 route-map calculator permit 8672 match community 2_52_249 2_78_166 2_83_156 set community 0:12948 ip community-list standard 2_174_206 permit 65000:2 0:174 0:206 route-map calculator permit 8673 match community 2_174_206 set community 0:35844 ip community-list standard 2_172_232 permit 65000:2 0:172 0:232 route-map calculator permit 8674 match community 2_172_232 set community 0:39904 ip community-list standard 2_172_198 permit 65000:2 0:172 0:198 route-map calculator permit 8675 match community 2_172_198 set community 0:34056 ip community-list standard 2_76_249 permit 65000:2 0:76 0:249 ip community-list standard 2_83_228 permit 65000:2 0:83 0:228 ip community-list standard 2_114_166 permit 65000:2 0:114 0:166 route-map calculator permit 8676 match community 2_76_249 2_83_228 2_114_166 set community 0:18924 ip community-list standard 2_41_242 permit 65000:2 0:41 0:242 ip community-list standard 2_82_121 permit 65000:2 0:82 0:121 route-map calculator permit 8677 match community 2_41_242 2_82_121 set community 0:9922 ip community-list standard 2_163_231 permit 65000:2 0:163 0:231 route-map calculator permit 8678 match community 2_163_231 set community 0:37653 ip community-list standard 2_3_188 permit 65000:2 0:3 0:188 ip community-list standard 2_4_141 permit 65000:2 0:4 0:141 ip community-list standard 2_6_94 permit 65000:2 0:6 0:94 ip community-list standard 2_12_47 permit 65000:2 0:12 0:47 route-map calculator permit 8679 match community 2_3_188 2_4_141 2_6_94 2_12_47 set community 0:564 ip community-list standard 2_3_208 permit 65000:2 0:3 0:208 ip community-list standard 2_4_156 permit 65000:2 0:4 0:156 ip community-list standard 2_6_104 permit 65000:2 0:6 0:104 ip community-list standard 2_8_78 permit 65000:2 0:8 0:78 ip community-list standard 2_12_52 permit 65000:2 0:12 0:52 ip community-list standard 2_13_48 permit 65000:2 0:13 0:48 ip community-list standard 2_16_39 permit 65000:2 0:16 0:39 ip community-list standard 2_24_26 permit 65000:2 0:24 0:26 route-map calculator permit 8680 match community 2_3_208 2_4_156 2_6_104 2_8_78 2_12_52 set community 0:624 route-map calculator permit 8681 match community 2_13_48 2_16_39 2_24_26 set community 0:624 ip community-list standard 2_197_230 permit 65000:2 0:197 0:230 route-map calculator permit 8682 match community 2_197_230 set community 0:45310 ip community-list standard 2_21_141 permit 65000:2 0:21 0:141 ip community-list standard 2_47_63 permit 65000:2 0:47 0:63 route-map calculator permit 8683 match community 2_21_141 2_47_63 set community 0:2961 ip community-list standard 2_137_167 permit 65000:2 0:137 0:167 route-map calculator permit 8684 match community 2_137_167 set community 0:22879 ip community-list standard 1_1_58 permit 65000:1 0:1 0:58 ip community-list standard 2_1_59 permit 65000:2 0:1 0:59 ip community-list standard 1_2_57 permit 65000:1 0:2 0:57 ip community-list standard 1_3_56 permit 65000:1 0:3 0:56 ip community-list standard 1_4_55 permit 65000:1 0:4 0:55 ip community-list standard 1_5_54 permit 65000:1 0:5 0:54 ip community-list standard 1_6_53 permit 65000:1 0:6 0:53 ip community-list standard 1_7_52 permit 65000:1 0:7 0:52 ip community-list standard 1_8_51 permit 65000:1 0:8 0:51 ip community-list standard 1_9_50 permit 65000:1 0:9 0:50 ip community-list standard 1_10_49 permit 65000:1 0:10 0:49 ip community-list standard 1_11_48 permit 65000:1 0:11 0:48 ip community-list standard 1_12_47 permit 65000:1 0:12 0:47 ip community-list standard 1_13_46 permit 65000:1 0:13 0:46 ip community-list standard 1_14_45 permit 65000:1 0:14 0:45 ip community-list standard 1_15_44 permit 65000:1 0:15 0:44 ip community-list standard 1_16_43 permit 65000:1 0:16 0:43 ip community-list standard 1_17_42 permit 65000:1 0:17 0:42 ip community-list standard 1_18_41 permit 65000:1 0:18 0:41 ip community-list standard 1_19_40 permit 65000:1 0:19 0:40 ip community-list standard 1_20_39 permit 65000:1 0:20 0:39 ip community-list standard 1_21_38 permit 65000:1 0:21 0:38 ip community-list standard 1_22_37 permit 65000:1 0:22 0:37 ip community-list standard 1_23_36 permit 65000:1 0:23 0:36 ip community-list standard 1_24_35 permit 65000:1 0:24 0:35 ip community-list standard 1_25_34 permit 65000:1 0:25 0:34 ip community-list standard 1_26_33 permit 65000:1 0:26 0:33 ip community-list standard 1_27_32 permit 65000:1 0:27 0:32 ip community-list standard 1_28_31 permit 65000:1 0:28 0:31 ip community-list standard 1_29_30 permit 65000:1 0:29 0:30 ip community-list expanded c59 permit 1 ^65000:4_0:59_0:1$ ip community-list expanded c59 permit 2 ^65000:3_0:60_0:1$ ip community-list expanded c59 permit 3 ^65000:3_0:61_0:2$ ip community-list expanded c59 permit 4 ^65000:3_0:62_0:3$ ip community-list expanded c59 permit 5 ^65000:3_0:63_0:4$ ip community-list expanded c59 permit 6 ^65000:3_0:64_0:5$ ip community-list expanded c59 permit 7 ^65000:3_0:65_0:6$ ip community-list expanded c59 permit 8 ^65000:3_0:66_0:7$ ip community-list expanded c59 permit 9 ^65000:3_0:67_0:8$ ip community-list expanded c59 permit 10 ^65000:3_0:68_0:9$ ip community-list expanded c59 permit 11 ^65000:3_0:69_0:10$ ip community-list expanded c59 permit 12 ^65000:3_0:70_0:11$ ip community-list expanded c59 permit 13 ^65000:3_0:71_0:12$ ip community-list expanded c59 permit 14 ^65000:3_0:72_0:13$ ip community-list expanded c59 permit 15 ^65000:3_0:73_0:14$ ip community-list expanded c59 permit 16 ^65000:3_0:74_0:15$ ip community-list expanded c59 permit 17 ^65000:3_0:75_0:16$ ip community-list expanded c59 permit 18 ^65000:3_0:76_0:17$ ip community-list expanded c59 permit 19 ^65000:3_0:77_0:18$ ip community-list expanded c59 permit 20 ^65000:3_0:78_0:19$ ip community-list expanded c59 permit 21 ^65000:3_0:79_0:20$ ip community-list expanded c59 permit 22 ^65000:3_0:80_0:21$ ip community-list expanded c59 permit 23 ^65000:3_0:81_0:22$ ip community-list expanded c59 permit 24 ^65000:3_0:82_0:23$ ip community-list expanded c59 permit 25 ^65000:3_0:83_0:24$ ip community-list expanded c59 permit 26 ^65000:3_0:84_0:25$ ip community-list expanded c59 permit 27 ^65000:3_0:85_0:26$ ip community-list expanded c59 permit 28 ^65000:3_0:86_0:27$ ip community-list expanded c59 permit 29 ^65000:3_0:87_0:28$ ip community-list expanded c59 permit 30 ^65000:3_0:88_0:29$ ip community-list expanded c59 permit 31 ^65000:3_0:89_0:30$ ip community-list expanded c59 permit 32 ^65000:3_0:90_0:31$ ip community-list expanded c59 permit 33 ^65000:3_0:91_0:32$ ip community-list expanded c59 permit 34 ^65000:3_0:92_0:33$ ip community-list expanded c59 permit 35 ^65000:3_0:93_0:34$ ip community-list expanded c59 permit 36 ^65000:3_0:94_0:35$ ip community-list expanded c59 permit 37 ^65000:3_0:95_0:36$ ip community-list expanded c59 permit 38 ^65000:3_0:96_0:37$ ip community-list expanded c59 permit 39 ^65000:3_0:97_0:38$ ip community-list expanded c59 permit 40 ^65000:3_0:98_0:39$ ip community-list expanded c59 permit 41 ^65000:3_0:99_0:40$ ip community-list expanded c59 permit 42 ^65000:3_0:100_0:41$ ip community-list expanded c59 permit 43 ^65000:3_0:101_0:42$ ip community-list expanded c59 permit 44 ^65000:3_0:102_0:43$ ip community-list expanded c59 permit 45 ^65000:3_0:103_0:44$ ip community-list expanded c59 permit 46 ^65000:3_0:104_0:45$ ip community-list expanded c59 permit 47 ^65000:3_0:105_0:46$ ip community-list expanded c59 permit 48 ^65000:3_0:106_0:47$ ip community-list expanded c59 permit 49 ^65000:3_0:107_0:48$ ip community-list expanded c59 permit 50 ^65000:3_0:108_0:49$ ip community-list expanded c59 permit 51 ^65000:3_0:109_0:50$ ip community-list expanded c59 permit 52 ^65000:3_0:110_0:51$ ip community-list expanded c59 permit 53 ^65000:3_0:111_0:52$ ip community-list expanded c59 permit 54 ^65000:3_0:112_0:53$ ip community-list expanded c59 permit 55 ^65000:3_0:113_0:54$ ip community-list expanded c59 permit 56 ^65000:3_0:114_0:55$ ip community-list expanded c59 permit 57 ^65000:3_0:115_0:56$ ip community-list expanded c59 permit 58 ^65000:3_0:116_0:57$ ip community-list expanded c59 permit 59 ^65000:3_0:117_0:58$ ip community-list expanded c59 permit 60 ^65000:4_0:118_0:2$ ip community-list expanded c59 permit 61 ^65000:3_0:118_0:59$ ip community-list expanded c59 permit 62 ^65000:4_0:119_0:2$ ip community-list expanded c59 permit 63 ^65000:3_0:119_0:60$ ip community-list expanded c59 permit 64 ^65000:3_0:120_0:61$ ip community-list expanded c59 permit 65 ^65000:3_0:121_0:62$ ip community-list expanded c59 permit 66 ^65000:3_0:122_0:63$ ip community-list expanded c59 permit 67 ^65000:3_0:123_0:64$ ip community-list expanded c59 permit 68 ^65000:3_0:124_0:65$ ip community-list expanded c59 permit 69 ^65000:3_0:125_0:66$ ip community-list expanded c59 permit 70 ^65000:3_0:126_0:67$ ip community-list expanded c59 permit 71 ^65000:3_0:127_0:68$ ip community-list expanded c59 permit 72 ^65000:3_0:128_0:69$ ip community-list expanded c59 permit 73 ^65000:3_0:129_0:70$ ip community-list expanded c59 permit 74 ^65000:3_0:130_0:71$ ip community-list expanded c59 permit 75 ^65000:3_0:131_0:72$ ip community-list expanded c59 permit 76 ^65000:3_0:132_0:73$ ip community-list expanded c59 permit 77 ^65000:3_0:133_0:74$ ip community-list expanded c59 permit 78 ^65000:3_0:134_0:75$ ip community-list expanded c59 permit 79 ^65000:3_0:135_0:76$ ip community-list expanded c59 permit 80 ^65000:3_0:136_0:77$ ip community-list expanded c59 permit 81 ^65000:3_0:137_0:78$ ip community-list expanded c59 permit 82 ^65000:3_0:138_0:79$ ip community-list expanded c59 permit 83 ^65000:3_0:139_0:80$ ip community-list expanded c59 permit 84 ^65000:3_0:140_0:81$ ip community-list expanded c59 permit 85 ^65000:3_0:141_0:82$ ip community-list expanded c59 permit 86 ^65000:3_0:142_0:83$ ip community-list expanded c59 permit 87 ^65000:3_0:143_0:84$ ip community-list expanded c59 permit 88 ^65000:3_0:144_0:85$ ip community-list expanded c59 permit 89 ^65000:3_0:145_0:86$ ip community-list expanded c59 permit 90 ^65000:3_0:146_0:87$ ip community-list expanded c59 permit 91 ^65000:3_0:147_0:88$ ip community-list expanded c59 permit 92 ^65000:3_0:148_0:89$ ip community-list expanded c59 permit 93 ^65000:3_0:149_0:90$ ip community-list expanded c59 permit 94 ^65000:3_0:150_0:91$ ip community-list expanded c59 permit 95 ^65000:3_0:151_0:92$ ip community-list expanded c59 permit 96 ^65000:3_0:152_0:93$ ip community-list expanded c59 permit 97 ^65000:3_0:153_0:94$ ip community-list expanded c59 permit 98 ^65000:3_0:154_0:95$ ip community-list expanded c59 permit 99 ^65000:3_0:155_0:96$ ip community-list expanded c59 permit 100 ^65000:3_0:156_0:97$ ip community-list expanded c59 permit 101 ^65000:3_0:157_0:98$ ip community-list expanded c59 permit 102 ^65000:3_0:158_0:99$ ip community-list expanded c59 permit 103 ^65000:3_0:159_0:100$ ip community-list expanded c59 permit 104 ^65000:3_0:160_0:101$ ip community-list expanded c59 permit 105 ^65000:3_0:161_0:102$ ip community-list expanded c59 permit 106 ^65000:3_0:162_0:103$ ip community-list expanded c59 permit 107 ^65000:3_0:163_0:104$ ip community-list expanded c59 permit 108 ^65000:3_0:164_0:105$ ip community-list expanded c59 permit 109 ^65000:3_0:165_0:106$ ip community-list expanded c59 permit 110 ^65000:3_0:166_0:107$ ip community-list expanded c59 permit 111 ^65000:3_0:167_0:108$ ip community-list expanded c59 permit 112 ^65000:3_0:168_0:109$ ip community-list expanded c59 permit 113 ^65000:3_0:169_0:110$ ip community-list expanded c59 permit 114 ^65000:3_0:170_0:111$ ip community-list expanded c59 permit 115 ^65000:3_0:171_0:112$ ip community-list expanded c59 permit 116 ^65000:3_0:172_0:113$ ip community-list expanded c59 permit 117 ^65000:3_0:173_0:114$ ip community-list expanded c59 permit 118 ^65000:3_0:174_0:115$ ip community-list expanded c59 permit 119 ^65000:3_0:175_0:116$ ip community-list expanded c59 permit 120 ^65000:3_0:176_0:117$ ip community-list expanded c59 permit 121 ^65000:4_0:177_0:3$ ip community-list expanded c59 permit 122 ^65000:3_0:177_0:118$ ip community-list expanded c59 permit 123 ^65000:4_0:178_0:3$ ip community-list expanded c59 permit 124 ^65000:3_0:178_0:119$ ip community-list expanded c59 permit 125 ^65000:4_0:179_0:3$ ip community-list expanded c59 permit 126 ^65000:3_0:179_0:120$ ip community-list expanded c59 permit 127 ^65000:3_0:180_0:121$ ip community-list expanded c59 permit 128 ^65000:3_0:181_0:122$ ip community-list expanded c59 permit 129 ^65000:3_0:182_0:123$ ip community-list expanded c59 permit 130 ^65000:3_0:183_0:124$ ip community-list expanded c59 permit 131 ^65000:3_0:184_0:125$ ip community-list expanded c59 permit 132 ^65000:3_0:185_0:126$ ip community-list expanded c59 permit 133 ^65000:3_0:186_0:127$ ip community-list expanded c59 permit 134 ^65000:3_0:187_0:128$ ip community-list expanded c59 permit 135 ^65000:3_0:188_0:129$ ip community-list expanded c59 permit 136 ^65000:3_0:189_0:130$ ip community-list expanded c59 permit 137 ^65000:3_0:190_0:131$ ip community-list expanded c59 permit 138 ^65000:3_0:191_0:132$ ip community-list expanded c59 permit 139 ^65000:3_0:192_0:133$ ip community-list expanded c59 permit 140 ^65000:3_0:193_0:134$ ip community-list expanded c59 permit 141 ^65000:3_0:194_0:135$ ip community-list expanded c59 permit 142 ^65000:3_0:195_0:136$ ip community-list expanded c59 permit 143 ^65000:3_0:196_0:137$ ip community-list expanded c59 permit 144 ^65000:3_0:197_0:138$ ip community-list expanded c59 permit 145 ^65000:3_0:198_0:139$ ip community-list expanded c59 permit 146 ^65000:3_0:199_0:140$ ip community-list expanded c59 permit 147 ^65000:3_0:200_0:141$ ip community-list expanded c59 permit 148 ^65000:3_0:201_0:142$ ip community-list expanded c59 permit 149 ^65000:3_0:202_0:143$ ip community-list expanded c59 permit 150 ^65000:3_0:203_0:144$ ip community-list expanded c59 permit 151 ^65000:3_0:204_0:145$ ip community-list expanded c59 permit 152 ^65000:3_0:205_0:146$ ip community-list expanded c59 permit 153 ^65000:3_0:206_0:147$ ip community-list expanded c59 permit 154 ^65000:3_0:207_0:148$ ip community-list expanded c59 permit 155 ^65000:3_0:208_0:149$ ip community-list expanded c59 permit 156 ^65000:3_0:209_0:150$ ip community-list expanded c59 permit 157 ^65000:3_0:210_0:151$ ip community-list expanded c59 permit 158 ^65000:3_0:211_0:152$ ip community-list expanded c59 permit 159 ^65000:3_0:212_0:153$ ip community-list expanded c59 permit 160 ^65000:3_0:213_0:154$ ip community-list expanded c59 permit 161 ^65000:3_0:214_0:155$ ip community-list expanded c59 permit 162 ^65000:3_0:215_0:156$ ip community-list expanded c59 permit 163 ^65000:3_0:216_0:157$ ip community-list expanded c59 permit 164 ^65000:3_0:217_0:158$ ip community-list expanded c59 permit 165 ^65000:3_0:218_0:159$ ip community-list expanded c59 permit 166 ^65000:3_0:219_0:160$ ip community-list expanded c59 permit 167 ^65000:3_0:220_0:161$ ip community-list expanded c59 permit 168 ^65000:3_0:221_0:162$ ip community-list expanded c59 permit 169 ^65000:3_0:222_0:163$ ip community-list expanded c59 permit 170 ^65000:3_0:223_0:164$ ip community-list expanded c59 permit 171 ^65000:3_0:224_0:165$ ip community-list expanded c59 permit 172 ^65000:3_0:225_0:166$ ip community-list expanded c59 permit 173 ^65000:3_0:226_0:167$ ip community-list expanded c59 permit 174 ^65000:3_0:227_0:168$ ip community-list expanded c59 permit 175 ^65000:3_0:228_0:169$ ip community-list expanded c59 permit 176 ^65000:3_0:229_0:170$ ip community-list expanded c59 permit 177 ^65000:3_0:230_0:171$ ip community-list expanded c59 permit 178 ^65000:3_0:231_0:172$ ip community-list expanded c59 permit 179 ^65000:3_0:232_0:173$ ip community-list expanded c59 permit 180 ^65000:3_0:233_0:174$ ip community-list expanded c59 permit 181 ^65000:3_0:234_0:175$ ip community-list expanded c59 permit 182 ^65000:3_0:235_0:176$ ip community-list expanded c59 permit 183 ^65000:4_0:236_0:4$ ip community-list expanded c59 permit 184 ^65000:3_0:236_0:177$ ip community-list expanded c59 permit 185 ^65000:4_0:237_0:4$ ip community-list expanded c59 permit 186 ^65000:3_0:237_0:178$ ip community-list expanded c59 permit 187 ^65000:4_0:238_0:4$ ip community-list expanded c59 permit 188 ^65000:3_0:238_0:179$ ip community-list expanded c59 permit 189 ^65000:4_0:239_0:4$ ip community-list expanded c59 permit 190 ^65000:3_0:239_0:180$ ip community-list expanded c59 permit 191 ^65000:3_0:240_0:181$ ip community-list expanded c59 permit 192 ^65000:3_0:241_0:182$ ip community-list expanded c59 permit 193 ^65000:3_0:242_0:183$ ip community-list expanded c59 permit 194 ^65000:3_0:243_0:184$ ip community-list expanded c59 permit 195 ^65000:3_0:244_0:185$ ip community-list expanded c59 permit 196 ^65000:3_0:245_0:186$ ip community-list expanded c59 permit 197 ^65000:3_0:246_0:187$ ip community-list expanded c59 permit 198 ^65000:3_0:247_0:188$ ip community-list expanded c59 permit 199 ^65000:3_0:248_0:189$ ip community-list expanded c59 permit 200 ^65000:3_0:249_0:190$ ip community-list expanded c59 permit 201 ^65000:3_0:250_0:191$ ip community-list expanded c59 permit 202 ^65000:3_0:251_0:192$ ip community-list expanded c59 permit 203 ^65000:3_0:252_0:193$ ip community-list expanded c59 permit 204 ^65000:3_0:253_0:194$ ip community-list expanded c59 permit 205 ^65000:3_0:254_0:195$ ip community-list expanded c59 permit 206 ^65000:3_0:255_0:196$ ip community-list expanded c59 permit 207 ^65000:3_0:256_0:197$ route-map calculator permit 8685 match community 1_1_58 2_1_59 1_2_57 1_3_56 1_4_55 set community 0:59 route-map calculator permit 8686 match community 1_5_54 1_6_53 1_7_52 1_8_51 1_9_50 set community 0:59 route-map calculator permit 8687 match community 1_10_49 1_11_48 1_12_47 1_13_46 1_14_45 set community 0:59 route-map calculator permit 8688 match community 1_15_44 1_16_43 1_17_42 1_18_41 1_19_40 set community 0:59 route-map calculator permit 8689 match community 1_20_39 1_21_38 1_22_37 1_23_36 1_24_35 set community 0:59 route-map calculator permit 8690 match community 1_25_34 1_26_33 1_27_32 1_28_31 1_29_30 set community 0:59 route-map calculator permit 8691 match community c4_59_1 c3_60_1 c3_61_2 c3_62_3 c3_63_4 set community 0:59 route-map calculator permit 8692 match community c3_64_5 c3_65_6 c3_66_7 c3_67_8 c3_68_9 set community 0:59 route-map calculator permit 8693 match community c3_69_10 c3_70_11 c3_71_12 c3_72_13 c3_73_14 set community 0:59 route-map calculator permit 8694 match community c3_74_15 c3_75_16 c3_76_17 c3_77_18 c3_78_19 set community 0:59 route-map calculator permit 8695 match community c3_79_20 c3_80_21 c3_81_22 c3_82_23 c3_83_24 set community 0:59 route-map calculator permit 8696 match community c3_84_25 c3_85_26 c3_86_27 c3_87_28 c3_88_29 set community 0:59 route-map calculator permit 8697 match community c3_89_30 c3_90_31 c3_91_32 c3_92_33 c3_93_34 set community 0:59 route-map calculator permit 8698 match community c3_94_35 c3_95_36 c3_96_37 c3_97_38 c3_98_39 set community 0:59 route-map calculator permit 8699 match community c3_99_40 c3_100_41 c3_101_42 c3_102_43 c3_103_44 set community 0:59 route-map calculator permit 8700 match community c3_104_45 c3_105_46 c3_106_47 c3_107_48 c3_108_49 set community 0:59 route-map calculator permit 8701 match community c3_109_50 c3_110_51 c3_111_52 c3_112_53 c3_113_54 set community 0:59 route-map calculator permit 8702 match community c3_114_55 c3_115_56 c3_116_57 c3_117_58 c4_118_2 set community 0:59 route-map calculator permit 8703 match community c3_118_59 c4_119_2 c3_119_60 c3_120_61 c3_121_62 set community 0:59 route-map calculator permit 8704 match community c3_122_63 c3_123_64 c3_124_65 c3_125_66 c3_126_67 set community 0:59 route-map calculator permit 8705 match community c3_127_68 c3_128_69 c3_129_70 c3_130_71 c3_131_72 set community 0:59 route-map calculator permit 8706 match community c3_132_73 c3_133_74 c3_134_75 c3_135_76 c3_136_77 set community 0:59 route-map calculator permit 8707 match community c3_137_78 c3_138_79 c3_139_80 c3_140_81 c3_141_82 set community 0:59 route-map calculator permit 8708 match community c3_142_83 c3_143_84 c3_144_85 c3_145_86 c3_146_87 set community 0:59 route-map calculator permit 8709 match community c3_147_88 c3_148_89 c3_149_90 c3_150_91 c3_151_92 set community 0:59 route-map calculator permit 8710 match community c3_152_93 c3_153_94 c3_154_95 c3_155_96 c3_156_97 set community 0:59 route-map calculator permit 8711 match community c3_157_98 c3_158_99 c3_159_100 c3_160_101 c3_161_102 set community 0:59 route-map calculator permit 8712 match community c3_162_103 c3_163_104 c3_164_105 c3_165_106 c3_166_107 set community 0:59 route-map calculator permit 8713 match community c3_167_108 c3_168_109 c3_169_110 c3_170_111 c3_171_112 set community 0:59 route-map calculator permit 8714 match community c3_172_113 c3_173_114 c3_174_115 c3_175_116 c3_176_117 set community 0:59 route-map calculator permit 8715 match community c4_177_3 c3_177_118 c4_178_3 c3_178_119 c4_179_3 set community 0:59 route-map calculator permit 8716 match community c3_179_120 c3_180_121 c3_181_122 c3_182_123 c3_183_124 set community 0:59 route-map calculator permit 8717 match community c3_184_125 c3_185_126 c3_186_127 c3_187_128 c3_188_129 set community 0:59 route-map calculator permit 8718 match community c3_189_130 c3_190_131 c3_191_132 c3_192_133 c3_193_134 set community 0:59 route-map calculator permit 8719 match community c3_194_135 c3_195_136 c3_196_137 c3_197_138 c3_198_139 set community 0:59 route-map calculator permit 8720 match community c3_199_140 c3_200_141 c3_201_142 c3_202_143 c3_203_144 set community 0:59 route-map calculator permit 8721 match community c3_204_145 c3_205_146 c3_206_147 c3_207_148 c3_208_149 set community 0:59 route-map calculator permit 8722 match community c3_209_150 c3_210_151 c3_211_152 c3_212_153 c3_213_154 set community 0:59 route-map calculator permit 8723 match community c3_214_155 c3_215_156 c3_216_157 c3_217_158 c3_218_159 set community 0:59 route-map calculator permit 8724 match community c3_219_160 c3_220_161 c3_221_162 c3_222_163 c3_223_164 set community 0:59 route-map calculator permit 8725 match community c3_224_165 c3_225_166 c3_226_167 c3_227_168 c3_228_169 set community 0:59 route-map calculator permit 8726 match community c3_229_170 c3_230_171 c3_231_172 c3_232_173 c3_233_174 set community 0:59 route-map calculator permit 8727 match community c3_234_175 c3_235_176 c4_236_4 c3_236_177 c4_237_4 set community 0:59 route-map calculator permit 8728 match community c3_237_178 c4_238_4 c3_238_179 c4_239_4 c3_239_180 set community 0:59 route-map calculator permit 8729 match community c3_240_181 c3_241_182 c3_242_183 c3_243_184 c3_244_185 set community 0:59 route-map calculator permit 8730 match community c3_245_186 c3_246_187 c3_247_188 c3_248_189 c3_249_190 set community 0:59 route-map calculator permit 8731 match community c3_250_191 c3_251_192 c3_252_193 c3_253_194 c3_254_195 set community 0:59 route-map calculator permit 8732 match community c3_255_196 c3_256_197 set community 0:59 ip community-list standard 1_1_61 permit 65000:1 0:1 0:61 ip community-list standard 2_1_62 permit 65000:2 0:1 0:62 ip community-list standard 2_2_31 permit 65000:2 0:2 0:31 ip community-list standard 1_2_60 permit 65000:1 0:2 0:60 ip community-list standard 1_3_59 permit 65000:1 0:3 0:59 ip community-list standard 1_4_58 permit 65000:1 0:4 0:58 ip community-list standard 1_5_57 permit 65000:1 0:5 0:57 ip community-list standard 1_6_56 permit 65000:1 0:6 0:56 ip community-list standard 1_7_55 permit 65000:1 0:7 0:55 ip community-list standard 1_8_54 permit 65000:1 0:8 0:54 ip community-list standard 1_9_53 permit 65000:1 0:9 0:53 ip community-list standard 1_10_52 permit 65000:1 0:10 0:52 ip community-list standard 1_11_51 permit 65000:1 0:11 0:51 ip community-list standard 1_12_50 permit 65000:1 0:12 0:50 ip community-list standard 1_13_49 permit 65000:1 0:13 0:49 ip community-list standard 1_14_48 permit 65000:1 0:14 0:48 ip community-list standard 1_15_47 permit 65000:1 0:15 0:47 ip community-list standard 1_16_46 permit 65000:1 0:16 0:46 ip community-list standard 1_17_45 permit 65000:1 0:17 0:45 ip community-list standard 1_18_44 permit 65000:1 0:18 0:44 ip community-list standard 1_19_43 permit 65000:1 0:19 0:43 ip community-list standard 1_20_42 permit 65000:1 0:20 0:42 ip community-list standard 1_21_41 permit 65000:1 0:21 0:41 ip community-list standard 1_22_40 permit 65000:1 0:22 0:40 ip community-list standard 1_23_39 permit 65000:1 0:23 0:39 ip community-list standard 1_24_38 permit 65000:1 0:24 0:38 ip community-list standard 1_25_37 permit 65000:1 0:25 0:37 ip community-list standard 1_26_36 permit 65000:1 0:26 0:36 ip community-list standard 1_27_35 permit 65000:1 0:27 0:35 ip community-list standard 1_28_34 permit 65000:1 0:28 0:34 ip community-list standard 1_29_33 permit 65000:1 0:29 0:33 ip community-list standard 1_30_32 permit 65000:1 0:30 0:32 ip community-list standard 1_31_31 permit 65000:1 0:31 0:31 ip community-list expanded c62 permit 1 ^65000:4_0:62_0:1$ ip community-list expanded c62 permit 2 ^65000:3_0:63_0:1$ ip community-list expanded c62 permit 3 ^65000:3_0:64_0:2$ ip community-list expanded c62 permit 4 ^65000:3_0:65_0:3$ ip community-list expanded c62 permit 5 ^65000:3_0:66_0:4$ ip community-list expanded c62 permit 6 ^65000:3_0:67_0:5$ ip community-list expanded c62 permit 7 ^65000:3_0:68_0:6$ ip community-list expanded c62 permit 8 ^65000:3_0:69_0:7$ ip community-list expanded c62 permit 9 ^65000:3_0:70_0:8$ ip community-list expanded c62 permit 10 ^65000:3_0:71_0:9$ ip community-list expanded c62 permit 11 ^65000:3_0:72_0:10$ ip community-list expanded c62 permit 12 ^65000:3_0:73_0:11$ ip community-list expanded c62 permit 13 ^65000:3_0:74_0:12$ ip community-list expanded c62 permit 14 ^65000:3_0:75_0:13$ ip community-list expanded c62 permit 15 ^65000:3_0:76_0:14$ ip community-list expanded c62 permit 16 ^65000:3_0:77_0:15$ ip community-list expanded c62 permit 17 ^65000:3_0:78_0:16$ ip community-list expanded c62 permit 18 ^65000:3_0:79_0:17$ ip community-list expanded c62 permit 19 ^65000:3_0:80_0:18$ ip community-list expanded c62 permit 20 ^65000:3_0:81_0:19$ ip community-list expanded c62 permit 21 ^65000:3_0:82_0:20$ ip community-list expanded c62 permit 22 ^65000:3_0:83_0:21$ ip community-list expanded c62 permit 23 ^65000:3_0:84_0:22$ ip community-list expanded c62 permit 24 ^65000:3_0:85_0:23$ ip community-list expanded c62 permit 25 ^65000:3_0:86_0:24$ ip community-list expanded c62 permit 26 ^65000:3_0:87_0:25$ ip community-list expanded c62 permit 27 ^65000:3_0:88_0:26$ ip community-list expanded c62 permit 28 ^65000:3_0:89_0:27$ ip community-list expanded c62 permit 29 ^65000:3_0:90_0:28$ ip community-list expanded c62 permit 30 ^65000:3_0:91_0:29$ ip community-list expanded c62 permit 31 ^65000:3_0:92_0:30$ ip community-list expanded c62 permit 32 ^65000:3_0:93_0:31$ ip community-list expanded c62 permit 33 ^65000:3_0:94_0:32$ ip community-list expanded c62 permit 34 ^65000:3_0:95_0:33$ ip community-list expanded c62 permit 35 ^65000:3_0:96_0:34$ ip community-list expanded c62 permit 36 ^65000:3_0:97_0:35$ ip community-list expanded c62 permit 37 ^65000:3_0:98_0:36$ ip community-list expanded c62 permit 38 ^65000:3_0:99_0:37$ ip community-list expanded c62 permit 39 ^65000:3_0:100_0:38$ ip community-list expanded c62 permit 40 ^65000:3_0:101_0:39$ ip community-list expanded c62 permit 41 ^65000:3_0:102_0:40$ ip community-list expanded c62 permit 42 ^65000:3_0:103_0:41$ ip community-list expanded c62 permit 43 ^65000:3_0:104_0:42$ ip community-list expanded c62 permit 44 ^65000:3_0:105_0:43$ ip community-list expanded c62 permit 45 ^65000:3_0:106_0:44$ ip community-list expanded c62 permit 46 ^65000:3_0:107_0:45$ ip community-list expanded c62 permit 47 ^65000:3_0:108_0:46$ ip community-list expanded c62 permit 48 ^65000:3_0:109_0:47$ ip community-list expanded c62 permit 49 ^65000:3_0:110_0:48$ ip community-list expanded c62 permit 50 ^65000:3_0:111_0:49$ ip community-list expanded c62 permit 51 ^65000:3_0:112_0:50$ ip community-list expanded c62 permit 52 ^65000:3_0:113_0:51$ ip community-list expanded c62 permit 53 ^65000:3_0:114_0:52$ ip community-list expanded c62 permit 54 ^65000:3_0:115_0:53$ ip community-list expanded c62 permit 55 ^65000:3_0:116_0:54$ ip community-list expanded c62 permit 56 ^65000:3_0:117_0:55$ ip community-list expanded c62 permit 57 ^65000:3_0:118_0:56$ ip community-list expanded c62 permit 58 ^65000:3_0:119_0:57$ ip community-list expanded c62 permit 59 ^65000:3_0:120_0:58$ ip community-list expanded c62 permit 60 ^65000:3_0:121_0:59$ ip community-list expanded c62 permit 61 ^65000:3_0:122_0:60$ ip community-list expanded c62 permit 62 ^65000:3_0:123_0:61$ ip community-list expanded c62 permit 63 ^65000:4_0:124_0:2$ ip community-list expanded c62 permit 64 ^65000:3_0:124_0:62$ ip community-list expanded c62 permit 65 ^65000:4_0:125_0:2$ ip community-list expanded c62 permit 66 ^65000:3_0:125_0:63$ ip community-list expanded c62 permit 67 ^65000:3_0:126_0:64$ ip community-list expanded c62 permit 68 ^65000:3_0:127_0:65$ ip community-list expanded c62 permit 69 ^65000:3_0:128_0:66$ ip community-list expanded c62 permit 70 ^65000:3_0:129_0:67$ ip community-list expanded c62 permit 71 ^65000:3_0:130_0:68$ ip community-list expanded c62 permit 72 ^65000:3_0:131_0:69$ ip community-list expanded c62 permit 73 ^65000:3_0:132_0:70$ ip community-list expanded c62 permit 74 ^65000:3_0:133_0:71$ ip community-list expanded c62 permit 75 ^65000:3_0:134_0:72$ ip community-list expanded c62 permit 76 ^65000:3_0:135_0:73$ ip community-list expanded c62 permit 77 ^65000:3_0:136_0:74$ ip community-list expanded c62 permit 78 ^65000:3_0:137_0:75$ ip community-list expanded c62 permit 79 ^65000:3_0:138_0:76$ ip community-list expanded c62 permit 80 ^65000:3_0:139_0:77$ ip community-list expanded c62 permit 81 ^65000:3_0:140_0:78$ ip community-list expanded c62 permit 82 ^65000:3_0:141_0:79$ ip community-list expanded c62 permit 83 ^65000:3_0:142_0:80$ ip community-list expanded c62 permit 84 ^65000:3_0:143_0:81$ ip community-list expanded c62 permit 85 ^65000:3_0:144_0:82$ ip community-list expanded c62 permit 86 ^65000:3_0:145_0:83$ ip community-list expanded c62 permit 87 ^65000:3_0:146_0:84$ ip community-list expanded c62 permit 88 ^65000:3_0:147_0:85$ ip community-list expanded c62 permit 89 ^65000:3_0:148_0:86$ ip community-list expanded c62 permit 90 ^65000:3_0:149_0:87$ ip community-list expanded c62 permit 91 ^65000:3_0:150_0:88$ ip community-list expanded c62 permit 92 ^65000:3_0:151_0:89$ ip community-list expanded c62 permit 93 ^65000:3_0:152_0:90$ ip community-list expanded c62 permit 94 ^65000:3_0:153_0:91$ ip community-list expanded c62 permit 95 ^65000:3_0:154_0:92$ ip community-list expanded c62 permit 96 ^65000:3_0:155_0:93$ ip community-list expanded c62 permit 97 ^65000:3_0:156_0:94$ ip community-list expanded c62 permit 98 ^65000:3_0:157_0:95$ ip community-list expanded c62 permit 99 ^65000:3_0:158_0:96$ ip community-list expanded c62 permit 100 ^65000:3_0:159_0:97$ ip community-list expanded c62 permit 101 ^65000:3_0:160_0:98$ ip community-list expanded c62 permit 102 ^65000:3_0:161_0:99$ ip community-list expanded c62 permit 103 ^65000:3_0:162_0:100$ ip community-list expanded c62 permit 104 ^65000:3_0:163_0:101$ ip community-list expanded c62 permit 105 ^65000:3_0:164_0:102$ ip community-list expanded c62 permit 106 ^65000:3_0:165_0:103$ ip community-list expanded c62 permit 107 ^65000:3_0:166_0:104$ ip community-list expanded c62 permit 108 ^65000:3_0:167_0:105$ ip community-list expanded c62 permit 109 ^65000:3_0:168_0:106$ ip community-list expanded c62 permit 110 ^65000:3_0:169_0:107$ ip community-list expanded c62 permit 111 ^65000:3_0:170_0:108$ ip community-list expanded c62 permit 112 ^65000:3_0:171_0:109$ ip community-list expanded c62 permit 113 ^65000:3_0:172_0:110$ ip community-list expanded c62 permit 114 ^65000:3_0:173_0:111$ ip community-list expanded c62 permit 115 ^65000:3_0:174_0:112$ ip community-list expanded c62 permit 116 ^65000:3_0:175_0:113$ ip community-list expanded c62 permit 117 ^65000:3_0:176_0:114$ ip community-list expanded c62 permit 118 ^65000:3_0:177_0:115$ ip community-list expanded c62 permit 119 ^65000:3_0:178_0:116$ ip community-list expanded c62 permit 120 ^65000:3_0:179_0:117$ ip community-list expanded c62 permit 121 ^65000:3_0:180_0:118$ ip community-list expanded c62 permit 122 ^65000:3_0:181_0:119$ ip community-list expanded c62 permit 123 ^65000:3_0:182_0:120$ ip community-list expanded c62 permit 124 ^65000:3_0:183_0:121$ ip community-list expanded c62 permit 125 ^65000:3_0:184_0:122$ ip community-list expanded c62 permit 126 ^65000:3_0:185_0:123$ ip community-list expanded c62 permit 127 ^65000:4_0:186_0:3$ ip community-list expanded c62 permit 128 ^65000:3_0:186_0:124$ ip community-list expanded c62 permit 129 ^65000:4_0:187_0:3$ ip community-list expanded c62 permit 130 ^65000:3_0:187_0:125$ ip community-list expanded c62 permit 131 ^65000:4_0:188_0:3$ ip community-list expanded c62 permit 132 ^65000:3_0:188_0:126$ ip community-list expanded c62 permit 133 ^65000:3_0:189_0:127$ ip community-list expanded c62 permit 134 ^65000:3_0:190_0:128$ ip community-list expanded c62 permit 135 ^65000:3_0:191_0:129$ ip community-list expanded c62 permit 136 ^65000:3_0:192_0:130$ ip community-list expanded c62 permit 137 ^65000:3_0:193_0:131$ ip community-list expanded c62 permit 138 ^65000:3_0:194_0:132$ ip community-list expanded c62 permit 139 ^65000:3_0:195_0:133$ ip community-list expanded c62 permit 140 ^65000:3_0:196_0:134$ ip community-list expanded c62 permit 141 ^65000:3_0:197_0:135$ ip community-list expanded c62 permit 142 ^65000:3_0:198_0:136$ ip community-list expanded c62 permit 143 ^65000:3_0:199_0:137$ ip community-list expanded c62 permit 144 ^65000:3_0:200_0:138$ ip community-list expanded c62 permit 145 ^65000:3_0:201_0:139$ ip community-list expanded c62 permit 146 ^65000:3_0:202_0:140$ ip community-list expanded c62 permit 147 ^65000:3_0:203_0:141$ ip community-list expanded c62 permit 148 ^65000:3_0:204_0:142$ ip community-list expanded c62 permit 149 ^65000:3_0:205_0:143$ ip community-list expanded c62 permit 150 ^65000:3_0:206_0:144$ ip community-list expanded c62 permit 151 ^65000:3_0:207_0:145$ ip community-list expanded c62 permit 152 ^65000:3_0:208_0:146$ ip community-list expanded c62 permit 153 ^65000:3_0:209_0:147$ ip community-list expanded c62 permit 154 ^65000:3_0:210_0:148$ ip community-list expanded c62 permit 155 ^65000:3_0:211_0:149$ ip community-list expanded c62 permit 156 ^65000:3_0:212_0:150$ ip community-list expanded c62 permit 157 ^65000:3_0:213_0:151$ ip community-list expanded c62 permit 158 ^65000:3_0:214_0:152$ ip community-list expanded c62 permit 159 ^65000:3_0:215_0:153$ ip community-list expanded c62 permit 160 ^65000:3_0:216_0:154$ ip community-list expanded c62 permit 161 ^65000:3_0:217_0:155$ ip community-list expanded c62 permit 162 ^65000:3_0:218_0:156$ ip community-list expanded c62 permit 163 ^65000:3_0:219_0:157$ ip community-list expanded c62 permit 164 ^65000:3_0:220_0:158$ ip community-list expanded c62 permit 165 ^65000:3_0:221_0:159$ ip community-list expanded c62 permit 166 ^65000:3_0:222_0:160$ ip community-list expanded c62 permit 167 ^65000:3_0:223_0:161$ ip community-list expanded c62 permit 168 ^65000:3_0:224_0:162$ ip community-list expanded c62 permit 169 ^65000:3_0:225_0:163$ ip community-list expanded c62 permit 170 ^65000:3_0:226_0:164$ ip community-list expanded c62 permit 171 ^65000:3_0:227_0:165$ ip community-list expanded c62 permit 172 ^65000:3_0:228_0:166$ ip community-list expanded c62 permit 173 ^65000:3_0:229_0:167$ ip community-list expanded c62 permit 174 ^65000:3_0:230_0:168$ ip community-list expanded c62 permit 175 ^65000:3_0:231_0:169$ ip community-list expanded c62 permit 176 ^65000:3_0:232_0:170$ ip community-list expanded c62 permit 177 ^65000:3_0:233_0:171$ ip community-list expanded c62 permit 178 ^65000:3_0:234_0:172$ ip community-list expanded c62 permit 179 ^65000:3_0:235_0:173$ ip community-list expanded c62 permit 180 ^65000:3_0:236_0:174$ ip community-list expanded c62 permit 181 ^65000:3_0:237_0:175$ ip community-list expanded c62 permit 182 ^65000:3_0:238_0:176$ ip community-list expanded c62 permit 183 ^65000:3_0:239_0:177$ ip community-list expanded c62 permit 184 ^65000:3_0:240_0:178$ ip community-list expanded c62 permit 185 ^65000:3_0:241_0:179$ ip community-list expanded c62 permit 186 ^65000:3_0:242_0:180$ ip community-list expanded c62 permit 187 ^65000:3_0:243_0:181$ ip community-list expanded c62 permit 188 ^65000:3_0:244_0:182$ ip community-list expanded c62 permit 189 ^65000:3_0:245_0:183$ ip community-list expanded c62 permit 190 ^65000:3_0:246_0:184$ ip community-list expanded c62 permit 191 ^65000:3_0:247_0:185$ ip community-list expanded c62 permit 192 ^65000:4_0:248_0:4$ ip community-list expanded c62 permit 193 ^65000:3_0:248_0:186$ ip community-list expanded c62 permit 194 ^65000:4_0:249_0:4$ ip community-list expanded c62 permit 195 ^65000:3_0:249_0:187$ ip community-list expanded c62 permit 196 ^65000:4_0:250_0:4$ ip community-list expanded c62 permit 197 ^65000:3_0:250_0:188$ ip community-list expanded c62 permit 198 ^65000:4_0:251_0:4$ ip community-list expanded c62 permit 199 ^65000:3_0:251_0:189$ ip community-list expanded c62 permit 200 ^65000:3_0:252_0:190$ ip community-list expanded c62 permit 201 ^65000:3_0:253_0:191$ ip community-list expanded c62 permit 202 ^65000:3_0:254_0:192$ ip community-list expanded c62 permit 203 ^65000:3_0:255_0:193$ ip community-list expanded c62 permit 204 ^65000:3_0:256_0:194$ route-map calculator permit 8733 match community 1_1_61 2_1_62 2_2_31 1_2_60 1_3_59 set community 0:62 route-map calculator permit 8734 match community 1_4_58 1_5_57 1_6_56 1_7_55 1_8_54 set community 0:62 route-map calculator permit 8735 match community 1_9_53 1_10_52 1_11_51 1_12_50 1_13_49 set community 0:62 route-map calculator permit 8736 match community 1_14_48 1_15_47 1_16_46 1_17_45 1_18_44 set community 0:62 route-map calculator permit 8737 match community 1_19_43 1_20_42 1_21_41 1_22_40 1_23_39 set community 0:62 route-map calculator permit 8738 match community 1_24_38 1_25_37 1_26_36 1_27_35 1_28_34 set community 0:62 route-map calculator permit 8739 match community 1_29_33 1_30_32 1_31_31 c4_62_1 c3_63_1 set community 0:62 route-map calculator permit 8740 match community c3_64_2 c3_65_3 c3_66_4 c3_67_5 c3_68_6 set community 0:62 route-map calculator permit 8741 match community c3_69_7 c3_70_8 c3_71_9 c3_72_10 c3_73_11 set community 0:62 route-map calculator permit 8742 match community c3_74_12 c3_75_13 c3_76_14 c3_77_15 c3_78_16 set community 0:62 route-map calculator permit 8743 match community c3_79_17 c3_80_18 c3_81_19 c3_82_20 c3_83_21 set community 0:62 route-map calculator permit 8744 match community c3_84_22 c3_85_23 c3_86_24 c3_87_25 c3_88_26 set community 0:62 route-map calculator permit 8745 match community c3_89_27 c3_90_28 c3_91_29 c3_92_30 c3_93_31 set community 0:62 route-map calculator permit 8746 match community c3_94_32 c3_95_33 c3_96_34 c3_97_35 c3_98_36 set community 0:62 route-map calculator permit 8747 match community c3_99_37 c3_100_38 c3_101_39 c3_102_40 c3_103_41 set community 0:62 route-map calculator permit 8748 match community c3_104_42 c3_105_43 c3_106_44 c3_107_45 c3_108_46 set community 0:62 route-map calculator permit 8749 match community c3_109_47 c3_110_48 c3_111_49 c3_112_50 c3_113_51 set community 0:62 route-map calculator permit 8750 match community c3_114_52 c3_115_53 c3_116_54 c3_117_55 c3_118_56 set community 0:62 route-map calculator permit 8751 match community c3_119_57 c3_120_58 c3_121_59 c3_122_60 c3_123_61 set community 0:62 route-map calculator permit 8752 match community c4_124_2 c3_124_62 c4_125_2 c3_125_63 c3_126_64 set community 0:62 route-map calculator permit 8753 match community c3_127_65 c3_128_66 c3_129_67 c3_130_68 c3_131_69 set community 0:62 route-map calculator permit 8754 match community c3_132_70 c3_133_71 c3_134_72 c3_135_73 c3_136_74 set community 0:62 route-map calculator permit 8755 match community c3_137_75 c3_138_76 c3_139_77 c3_140_78 c3_141_79 set community 0:62 route-map calculator permit 8756 match community c3_142_80 c3_143_81 c3_144_82 c3_145_83 c3_146_84 set community 0:62 route-map calculator permit 8757 match community c3_147_85 c3_148_86 c3_149_87 c3_150_88 c3_151_89 set community 0:62 route-map calculator permit 8758 match community c3_152_90 c3_153_91 c3_154_92 c3_155_93 c3_156_94 set community 0:62 route-map calculator permit 8759 match community c3_157_95 c3_158_96 c3_159_97 c3_160_98 c3_161_99 set community 0:62 route-map calculator permit 8760 match community c3_162_100 c3_163_101 c3_164_102 c3_165_103 c3_166_104 set community 0:62 route-map calculator permit 8761 match community c3_167_105 c3_168_106 c3_169_107 c3_170_108 c3_171_109 set community 0:62 route-map calculator permit 8762 match community c3_172_110 c3_173_111 c3_174_112 c3_175_113 c3_176_114 set community 0:62 route-map calculator permit 8763 match community c3_177_115 c3_178_116 c3_179_117 c3_180_118 c3_181_119 set community 0:62 route-map calculator permit 8764 match community c3_182_120 c3_183_121 c3_184_122 c3_185_123 c4_186_3 set community 0:62 route-map calculator permit 8765 match community c3_186_124 c4_187_3 c3_187_125 c4_188_3 c3_188_126 set community 0:62 route-map calculator permit 8766 match community c3_189_127 c3_190_128 c3_191_129 c3_192_130 c3_193_131 set community 0:62 route-map calculator permit 8767 match community c3_194_132 c3_195_133 c3_196_134 c3_197_135 c3_198_136 set community 0:62 route-map calculator permit 8768 match community c3_199_137 c3_200_138 c3_201_139 c3_202_140 c3_203_141 set community 0:62 route-map calculator permit 8769 match community c3_204_142 c3_205_143 c3_206_144 c3_207_145 c3_208_146 set community 0:62 route-map calculator permit 8770 match community c3_209_147 c3_210_148 c3_211_149 c3_212_150 c3_213_151 set community 0:62 route-map calculator permit 8771 match community c3_214_152 c3_215_153 c3_216_154 c3_217_155 c3_218_156 set community 0:62 route-map calculator permit 8772 match community c3_219_157 c3_220_158 c3_221_159 c3_222_160 c3_223_161 set community 0:62 route-map calculator permit 8773 match community c3_224_162 c3_225_163 c3_226_164 c3_227_165 c3_228_166 set community 0:62 route-map calculator permit 8774 match community c3_229_167 c3_230_168 c3_231_169 c3_232_170 c3_233_171 set community 0:62 route-map calculator permit 8775 match community c3_234_172 c3_235_173 c3_236_174 c3_237_175 c3_238_176 set community 0:62 route-map calculator permit 8776 match community c3_239_177 c3_240_178 c3_241_179 c3_242_180 c3_243_181 set community 0:62 route-map calculator permit 8777 match community c3_244_182 c3_245_183 c3_246_184 c3_247_185 c4_248_4 set community 0:62 route-map calculator permit 8778 match community c3_248_186 c4_249_4 c3_249_187 c4_250_4 c3_250_188 set community 0:62 route-map calculator permit 8779 match community c4_251_4 c3_251_189 c3_252_190 c3_253_191 c3_254_192 set community 0:62 route-map calculator permit 8780 match community c3_255_193 c3_256_194 set community 0:62 ip community-list standard 2_85_167 permit 65000:2 0:85 0:167 route-map calculator permit 8781 match community 2_85_167 set community 0:14195 ip community-list standard 1_1_241 permit 65000:1 0:1 0:241 ip community-list standard 2_1_242 permit 65000:2 0:1 0:242 ip community-list standard 2_2_121 permit 65000:2 0:2 0:121 ip community-list standard 1_2_240 permit 65000:1 0:2 0:240 ip community-list standard 1_3_239 permit 65000:1 0:3 0:239 ip community-list standard 1_4_238 permit 65000:1 0:4 0:238 ip community-list standard 1_5_237 permit 65000:1 0:5 0:237 ip community-list standard 1_6_236 permit 65000:1 0:6 0:236 ip community-list standard 1_7_235 permit 65000:1 0:7 0:235 ip community-list standard 1_8_234 permit 65000:1 0:8 0:234 ip community-list standard 1_9_233 permit 65000:1 0:9 0:233 ip community-list standard 1_10_232 permit 65000:1 0:10 0:232 ip community-list standard 2_11_22 permit 65000:2 0:11 0:22 ip community-list standard 1_11_231 permit 65000:1 0:11 0:231 ip community-list standard 1_12_230 permit 65000:1 0:12 0:230 ip community-list standard 1_13_229 permit 65000:1 0:13 0:229 ip community-list standard 1_14_228 permit 65000:1 0:14 0:228 ip community-list standard 1_15_227 permit 65000:1 0:15 0:227 ip community-list standard 1_16_226 permit 65000:1 0:16 0:226 ip community-list standard 1_17_225 permit 65000:1 0:17 0:225 ip community-list standard 1_18_224 permit 65000:1 0:18 0:224 ip community-list standard 1_19_223 permit 65000:1 0:19 0:223 ip community-list standard 1_20_222 permit 65000:1 0:20 0:222 ip community-list standard 1_21_221 permit 65000:1 0:21 0:221 ip community-list standard 1_22_220 permit 65000:1 0:22 0:220 ip community-list standard 1_23_219 permit 65000:1 0:23 0:219 ip community-list standard 1_24_218 permit 65000:1 0:24 0:218 ip community-list standard 1_25_217 permit 65000:1 0:25 0:217 ip community-list standard 1_26_216 permit 65000:1 0:26 0:216 ip community-list standard 1_27_215 permit 65000:1 0:27 0:215 ip community-list standard 1_28_214 permit 65000:1 0:28 0:214 ip community-list standard 1_29_213 permit 65000:1 0:29 0:213 ip community-list standard 1_30_212 permit 65000:1 0:30 0:212 ip community-list standard 1_31_211 permit 65000:1 0:31 0:211 ip community-list standard 1_32_210 permit 65000:1 0:32 0:210 ip community-list standard 1_33_209 permit 65000:1 0:33 0:209 ip community-list standard 1_34_208 permit 65000:1 0:34 0:208 ip community-list standard 1_35_207 permit 65000:1 0:35 0:207 ip community-list standard 1_36_206 permit 65000:1 0:36 0:206 ip community-list standard 1_37_205 permit 65000:1 0:37 0:205 ip community-list standard 1_38_204 permit 65000:1 0:38 0:204 ip community-list standard 1_39_203 permit 65000:1 0:39 0:203 ip community-list standard 1_40_202 permit 65000:1 0:40 0:202 ip community-list standard 1_41_201 permit 65000:1 0:41 0:201 ip community-list standard 1_42_200 permit 65000:1 0:42 0:200 ip community-list standard 1_43_199 permit 65000:1 0:43 0:199 ip community-list standard 1_44_198 permit 65000:1 0:44 0:198 ip community-list standard 1_45_197 permit 65000:1 0:45 0:197 ip community-list standard 1_46_196 permit 65000:1 0:46 0:196 ip community-list standard 1_47_195 permit 65000:1 0:47 0:195 ip community-list standard 1_48_194 permit 65000:1 0:48 0:194 ip community-list standard 1_49_193 permit 65000:1 0:49 0:193 ip community-list standard 1_50_192 permit 65000:1 0:50 0:192 ip community-list standard 1_51_191 permit 65000:1 0:51 0:191 ip community-list standard 1_52_190 permit 65000:1 0:52 0:190 ip community-list standard 1_53_189 permit 65000:1 0:53 0:189 ip community-list standard 1_54_188 permit 65000:1 0:54 0:188 ip community-list standard 1_55_187 permit 65000:1 0:55 0:187 ip community-list standard 1_56_186 permit 65000:1 0:56 0:186 ip community-list standard 1_57_185 permit 65000:1 0:57 0:185 ip community-list standard 1_58_184 permit 65000:1 0:58 0:184 ip community-list standard 1_59_183 permit 65000:1 0:59 0:183 ip community-list standard 1_60_182 permit 65000:1 0:60 0:182 ip community-list standard 1_61_181 permit 65000:1 0:61 0:181 ip community-list standard 1_62_180 permit 65000:1 0:62 0:180 ip community-list standard 1_63_179 permit 65000:1 0:63 0:179 ip community-list standard 1_64_178 permit 65000:1 0:64 0:178 ip community-list standard 1_65_177 permit 65000:1 0:65 0:177 ip community-list standard 1_66_176 permit 65000:1 0:66 0:176 ip community-list standard 1_67_175 permit 65000:1 0:67 0:175 ip community-list standard 1_68_174 permit 65000:1 0:68 0:174 ip community-list standard 1_69_173 permit 65000:1 0:69 0:173 ip community-list standard 1_70_172 permit 65000:1 0:70 0:172 ip community-list standard 1_71_171 permit 65000:1 0:71 0:171 ip community-list standard 1_72_170 permit 65000:1 0:72 0:170 ip community-list standard 1_73_169 permit 65000:1 0:73 0:169 ip community-list standard 1_74_168 permit 65000:1 0:74 0:168 ip community-list standard 1_75_167 permit 65000:1 0:75 0:167 ip community-list standard 1_76_166 permit 65000:1 0:76 0:166 ip community-list standard 1_77_165 permit 65000:1 0:77 0:165 ip community-list standard 1_78_164 permit 65000:1 0:78 0:164 ip community-list standard 1_79_163 permit 65000:1 0:79 0:163 ip community-list standard 1_80_162 permit 65000:1 0:80 0:162 ip community-list standard 1_81_161 permit 65000:1 0:81 0:161 ip community-list standard 1_82_160 permit 65000:1 0:82 0:160 ip community-list standard 1_83_159 permit 65000:1 0:83 0:159 ip community-list standard 1_84_158 permit 65000:1 0:84 0:158 ip community-list standard 1_85_157 permit 65000:1 0:85 0:157 ip community-list standard 1_86_156 permit 65000:1 0:86 0:156 ip community-list standard 1_87_155 permit 65000:1 0:87 0:155 ip community-list standard 1_88_154 permit 65000:1 0:88 0:154 ip community-list standard 1_89_153 permit 65000:1 0:89 0:153 ip community-list standard 1_90_152 permit 65000:1 0:90 0:152 ip community-list standard 1_91_151 permit 65000:1 0:91 0:151 ip community-list standard 1_92_150 permit 65000:1 0:92 0:150 ip community-list standard 1_93_149 permit 65000:1 0:93 0:149 ip community-list standard 1_94_148 permit 65000:1 0:94 0:148 ip community-list standard 1_95_147 permit 65000:1 0:95 0:147 ip community-list standard 1_96_146 permit 65000:1 0:96 0:146 ip community-list standard 1_97_145 permit 65000:1 0:97 0:145 ip community-list standard 1_98_144 permit 65000:1 0:98 0:144 ip community-list standard 1_99_143 permit 65000:1 0:99 0:143 ip community-list standard 1_100_142 permit 65000:1 0:100 0:142 ip community-list standard 1_101_141 permit 65000:1 0:101 0:141 ip community-list standard 1_102_140 permit 65000:1 0:102 0:140 ip community-list standard 1_103_139 permit 65000:1 0:103 0:139 ip community-list standard 1_104_138 permit 65000:1 0:104 0:138 ip community-list standard 1_105_137 permit 65000:1 0:105 0:137 ip community-list standard 1_106_136 permit 65000:1 0:106 0:136 ip community-list standard 1_107_135 permit 65000:1 0:107 0:135 ip community-list standard 1_108_134 permit 65000:1 0:108 0:134 ip community-list standard 1_109_133 permit 65000:1 0:109 0:133 ip community-list standard 1_110_132 permit 65000:1 0:110 0:132 ip community-list standard 1_111_131 permit 65000:1 0:111 0:131 ip community-list standard 1_112_130 permit 65000:1 0:112 0:130 ip community-list standard 1_113_129 permit 65000:1 0:113 0:129 ip community-list standard 1_114_128 permit 65000:1 0:114 0:128 ip community-list standard 1_115_127 permit 65000:1 0:115 0:127 ip community-list standard 1_116_126 permit 65000:1 0:116 0:126 ip community-list standard 1_117_125 permit 65000:1 0:117 0:125 ip community-list standard 1_118_124 permit 65000:1 0:118 0:124 ip community-list standard 1_119_123 permit 65000:1 0:119 0:123 ip community-list standard 1_120_122 permit 65000:1 0:120 0:122 ip community-list standard 1_121_121 permit 65000:1 0:121 0:121 ip community-list expanded c242 permit 1 ^65000:4_0:242_0:1$ ip community-list expanded c242 permit 2 ^65000:3_0:243_0:1$ ip community-list expanded c242 permit 3 ^65000:3_0:244_0:2$ ip community-list expanded c242 permit 4 ^65000:3_0:245_0:3$ ip community-list expanded c242 permit 5 ^65000:3_0:246_0:4$ ip community-list expanded c242 permit 6 ^65000:3_0:247_0:5$ ip community-list expanded c242 permit 7 ^65000:3_0:248_0:6$ ip community-list expanded c242 permit 8 ^65000:3_0:249_0:7$ ip community-list expanded c242 permit 9 ^65000:3_0:250_0:8$ ip community-list expanded c242 permit 10 ^65000:3_0:251_0:9$ ip community-list expanded c242 permit 11 ^65000:3_0:252_0:10$ ip community-list expanded c242 permit 12 ^65000:3_0:253_0:11$ ip community-list expanded c242 permit 13 ^65000:3_0:254_0:12$ ip community-list expanded c242 permit 14 ^65000:3_0:255_0:13$ ip community-list expanded c242 permit 15 ^65000:3_0:256_0:14$ route-map calculator permit 8782 match community 1_1_241 2_1_242 2_2_121 1_2_240 1_3_239 set community 0:242 route-map calculator permit 8783 match community 1_4_238 1_5_237 1_6_236 1_7_235 1_8_234 set community 0:242 route-map calculator permit 8784 match community 1_9_233 1_10_232 2_11_22 1_11_231 1_12_230 set community 0:242 route-map calculator permit 8785 match community 1_13_229 1_14_228 1_15_227 1_16_226 1_17_225 set community 0:242 route-map calculator permit 8786 match community 1_18_224 1_19_223 1_20_222 1_21_221 1_22_220 set community 0:242 route-map calculator permit 8787 match community 1_23_219 1_24_218 1_25_217 1_26_216 1_27_215 set community 0:242 route-map calculator permit 8788 match community 1_28_214 1_29_213 1_30_212 1_31_211 1_32_210 set community 0:242 route-map calculator permit 8789 match community 1_33_209 1_34_208 1_35_207 1_36_206 1_37_205 set community 0:242 route-map calculator permit 8790 match community 1_38_204 1_39_203 1_40_202 1_41_201 1_42_200 set community 0:242 route-map calculator permit 8791 match community 1_43_199 1_44_198 1_45_197 1_46_196 1_47_195 set community 0:242 route-map calculator permit 8792 match community 1_48_194 1_49_193 1_50_192 1_51_191 1_52_190 set community 0:242 route-map calculator permit 8793 match community 1_53_189 1_54_188 1_55_187 1_56_186 1_57_185 set community 0:242 route-map calculator permit 8794 match community 1_58_184 1_59_183 1_60_182 1_61_181 1_62_180 set community 0:242 route-map calculator permit 8795 match community 1_63_179 1_64_178 1_65_177 1_66_176 1_67_175 set community 0:242 route-map calculator permit 8796 match community 1_68_174 1_69_173 1_70_172 1_71_171 1_72_170 set community 0:242 route-map calculator permit 8797 match community 1_73_169 1_74_168 1_75_167 1_76_166 1_77_165 set community 0:242 route-map calculator permit 8798 match community 1_78_164 1_79_163 1_80_162 1_81_161 1_82_160 set community 0:242 route-map calculator permit 8799 match community 1_83_159 1_84_158 1_85_157 1_86_156 1_87_155 set community 0:242 route-map calculator permit 8800 match community 1_88_154 1_89_153 1_90_152 1_91_151 1_92_150 set community 0:242 route-map calculator permit 8801 match community 1_93_149 1_94_148 1_95_147 1_96_146 1_97_145 set community 0:242 route-map calculator permit 8802 match community 1_98_144 1_99_143 1_100_142 1_101_141 1_102_140 set community 0:242 route-map calculator permit 8803 match community 1_103_139 1_104_138 1_105_137 1_106_136 1_107_135 set community 0:242 route-map calculator permit 8804 match community 1_108_134 1_109_133 1_110_132 1_111_131 1_112_130 set community 0:242 route-map calculator permit 8805 match community 1_113_129 1_114_128 1_115_127 1_116_126 1_117_125 set community 0:242 route-map calculator permit 8806 match community 1_118_124 1_119_123 1_120_122 1_121_121 c4_242_1 set community 0:242 route-map calculator permit 8807 match community c3_243_1 c3_244_2 c3_245_3 c3_246_4 c3_247_5 set community 0:242 route-map calculator permit 8808 match community c3_248_6 c3_249_7 c3_250_8 c3_251_9 c3_252_10 set community 0:242 route-map calculator permit 8809 match community c3_253_11 c3_254_12 c3_255_13 c3_256_14 set community 0:242 ip community-list standard 2_74_222 permit 65000:2 0:74 0:222 ip community-list standard 2_111_148 permit 65000:2 0:111 0:148 route-map calculator permit 8810 match community 2_74_222 2_111_148 set community 0:16428 ip community-list standard 2_60_222 permit 65000:2 0:60 0:222 ip community-list standard 2_72_185 permit 65000:2 0:72 0:185 ip community-list standard 2_74_180 permit 65000:2 0:74 0:180 ip community-list standard 2_90_148 permit 65000:2 0:90 0:148 ip community-list standard 2_111_120 permit 65000:2 0:111 0:120 route-map calculator permit 8811 match community 2_60_222 2_72_185 2_74_180 2_90_148 2_111_120 set community 0:13320 ip community-list standard 2_118_137 permit 65000:2 0:118 0:137 route-map calculator permit 8812 match community 2_118_137 set community 0:16166 ip community-list standard 2_88_179 permit 65000:2 0:88 0:179 route-map calculator permit 8813 match community 2_88_179 set community 0:15752 ip community-list standard 2_232_234 permit 65000:2 0:232 0:234 route-map calculator permit 8814 match community 2_232_234 set community 0:54288 ip community-list standard 2_27_226 permit 65000:2 0:27 0:226 ip community-list standard 2_54_113 permit 65000:2 0:54 0:113 route-map calculator permit 8815 match community 2_27_226 2_54_113 set community 0:6102 ip community-list standard 2_77_243 permit 65000:2 0:77 0:243 ip community-list standard 2_81_231 permit 65000:2 0:81 0:231 ip community-list standard 2_99_189 permit 65000:2 0:99 0:189 route-map calculator permit 8816 match community 2_77_243 2_81_231 2_99_189 set community 0:18711 ip community-list standard 2_27_232 permit 65000:2 0:27 0:232 ip community-list standard 2_29_216 permit 65000:2 0:29 0:216 ip community-list standard 2_36_174 permit 65000:2 0:36 0:174 ip community-list standard 2_54_116 permit 65000:2 0:54 0:116 ip community-list standard 2_58_108 permit 65000:2 0:58 0:108 ip community-list standard 2_72_87 permit 65000:2 0:72 0:87 route-map calculator permit 8817 match community 2_27_232 2_29_216 2_36_174 2_54_116 2_58_108 set community 0:6264 route-map calculator permit 8818 match community 2_72_87 set community 0:6264 ip community-list standard 2_83_167 permit 65000:2 0:83 0:167 route-map calculator permit 8819 match community 2_83_167 set community 0:13861 ip community-list standard 2_149_233 permit 65000:2 0:149 0:233 route-map calculator permit 8820 match community 2_149_233 set community 0:34717 ip community-list standard 2_136_158 permit 65000:2 0:136 0:158 route-map calculator permit 8821 match community 2_136_158 set community 0:21488 ip community-list standard 2_26_191 permit 65000:2 0:26 0:191 route-map calculator permit 8822 match community 2_26_191 set community 0:4966 ip community-list standard 2_87_198 permit 65000:2 0:87 0:198 ip community-list standard 2_99_174 permit 65000:2 0:99 0:174 route-map calculator permit 8823 match community 2_87_198 2_99_174 set community 0:17226 ip community-list standard 2_100_248 permit 65000:2 0:100 0:248 ip community-list standard 2_124_200 permit 65000:2 0:124 0:200 ip community-list standard 2_155_160 permit 65000:2 0:155 0:160 route-map calculator permit 8824 match community 2_100_248 2_124_200 2_155_160 set community 0:24800 ip community-list standard 2_50_224 permit 65000:2 0:50 0:224 ip community-list standard 2_56_200 permit 65000:2 0:56 0:200 ip community-list standard 2_64_175 permit 65000:2 0:64 0:175 ip community-list standard 2_70_160 permit 65000:2 0:70 0:160 ip community-list standard 2_80_140 permit 65000:2 0:80 0:140 ip community-list standard 2_100_112 permit 65000:2 0:100 0:112 route-map calculator permit 8825 match community 2_50_224 2_56_200 2_64_175 2_70_160 2_80_140 set community 0:11200 route-map calculator permit 8826 match community 2_100_112 set community 0:11200 ip community-list standard 2_206_236 permit 65000:2 0:206 0:236 route-map calculator permit 8827 match community 2_206_236 set community 0:48616 ip community-list standard 2_112_253 permit 65000:2 0:112 0:253 ip community-list standard 2_154_184 permit 65000:2 0:154 0:184 ip community-list standard 2_161_176 permit 65000:2 0:161 0:176 route-map calculator permit 8828 match community 2_112_253 2_154_184 2_161_176 set community 0:28336 ip community-list standard 2_178_192 permit 65000:2 0:178 0:192 route-map calculator permit 8829 match community 2_178_192 set community 0:34176 ip community-list standard 2_36_244 permit 65000:2 0:36 0:244 ip community-list standard 2_48_183 permit 65000:2 0:48 0:183 ip community-list standard 2_61_144 permit 65000:2 0:61 0:144 ip community-list standard 2_72_122 permit 65000:2 0:72 0:122 route-map calculator permit 8830 match community 2_36_244 2_48_183 2_61_144 2_72_122 set community 0:8784 ip community-list standard 2_128_229 permit 65000:2 0:128 0:229 route-map calculator permit 8831 match community 2_128_229 set community 0:29312 ip community-list standard 2_13_107 permit 65000:2 0:13 0:107 route-map calculator permit 8832 match community 2_13_107 set community 0:1391 ip community-list standard 2_57_206 permit 65000:2 0:57 0:206 ip community-list standard 2_103_114 permit 65000:2 0:103 0:114 route-map calculator permit 8833 match community 2_57_206 2_103_114 set community 0:11742 ip community-list standard 2_86_217 permit 65000:2 0:86 0:217 route-map calculator permit 8834 match community 2_86_217 set community 0:18662 ip community-list standard 2_39_131 permit 65000:2 0:39 0:131 route-map calculator permit 8835 match community 2_39_131 set community 0:5109 ip community-list standard 2_88_191 permit 65000:2 0:88 0:191 route-map calculator permit 8836 match community 2_88_191 set community 0:16808 ip community-list standard 2_217_239 permit 65000:2 0:217 0:239 route-map calculator permit 8837 match community 2_217_239 set community 0:51863 ip community-list standard 2_174_221 permit 65000:2 0:174 0:221 route-map calculator permit 8838 match community 2_174_221 set community 0:38454 ip community-list standard 2_5_253 permit 65000:2 0:5 0:253 ip community-list standard 2_11_115 permit 65000:2 0:11 0:115 ip community-list standard 2_23_55 permit 65000:2 0:23 0:55 route-map calculator permit 8839 match community 2_5_253 2_11_115 2_23_55 set community 0:1265 ip community-list standard 2_117_246 permit 65000:2 0:117 0:246 ip community-list standard 2_123_234 permit 65000:2 0:123 0:234 route-map calculator permit 8840 match community 2_117_246 2_123_234 set community 0:28782 ip community-list standard 2_166_233 permit 65000:2 0:166 0:233 route-map calculator permit 8841 match community 2_166_233 set community 0:38678 ip community-list standard 2_65_220 permit 65000:2 0:65 0:220 ip community-list standard 2_100_143 permit 65000:2 0:100 0:143 ip community-list standard 2_110_130 permit 65000:2 0:110 0:130 route-map calculator permit 8842 match community 2_65_220 2_100_143 2_110_130 set community 0:14300 ip community-list standard 2_208_211 permit 65000:2 0:208 0:211 route-map calculator permit 8843 match community 2_208_211 set community 0:43888 ip community-list standard 2_228_237 permit 65000:2 0:228 0:237 route-map calculator permit 8844 match community 2_228_237 set community 0:54036 ip community-list standard 2_12_227 permit 65000:2 0:12 0:227 route-map calculator permit 8845 match community 2_12_227 set community 0:2724 ip community-list standard 2_71_233 permit 65000:2 0:71 0:233 route-map calculator permit 8846 match community 2_71_233 set community 0:16543 ip community-list standard 2_123_253 permit 65000:2 0:123 0:253 route-map calculator permit 8847 match community 2_123_253 set community 0:31119 ip community-list standard 2_82_227 permit 65000:2 0:82 0:227 route-map calculator permit 8848 match community 2_82_227 set community 0:18614 ip community-list standard 2_67_178 permit 65000:2 0:67 0:178 ip community-list standard 2_89_134 permit 65000:2 0:89 0:134 route-map calculator permit 8849 match community 2_67_178 2_89_134 set community 0:11926 ip community-list standard 2_22_201 permit 65000:2 0:22 0:201 ip community-list standard 2_33_134 permit 65000:2 0:33 0:134 ip community-list standard 2_66_67 permit 65000:2 0:66 0:67 route-map calculator permit 8850 match community 2_22_201 2_33_134 2_66_67 set community 0:4422 ip community-list standard 2_173_190 permit 65000:2 0:173 0:190 route-map calculator permit 8851 match community 2_173_190 set community 0:32870 ip community-list standard 2_13_201 permit 65000:2 0:13 0:201 ip community-list standard 2_39_67 permit 65000:2 0:39 0:67 route-map calculator permit 8852 match community 2_13_201 2_39_67 set community 0:2613 ip community-list standard 2_85_113 permit 65000:2 0:85 0:113 route-map calculator permit 8853 match community 2_85_113 set community 0:9605 ip community-list standard 2_90_255 permit 65000:2 0:90 0:255 ip community-list standard 2_102_225 permit 65000:2 0:102 0:225 ip community-list standard 2_135_170 permit 65000:2 0:135 0:170 ip community-list standard 2_150_153 permit 65000:2 0:150 0:153 route-map calculator permit 8854 match community 2_90_255 2_102_225 2_135_170 2_150_153 set community 0:22950 ip community-list standard 2_86_252 permit 65000:2 0:86 0:252 ip community-list standard 2_126_172 permit 65000:2 0:126 0:172 ip community-list standard 2_129_168 permit 65000:2 0:129 0:168 route-map calculator permit 8855 match community 2_86_252 2_126_172 2_129_168 set community 0:21672 ip community-list standard 2_137_245 permit 65000:2 0:137 0:245 route-map calculator permit 8856 match community 2_137_245 set community 0:33565 ip community-list standard 2_22_182 permit 65000:2 0:22 0:182 ip community-list standard 2_26_154 permit 65000:2 0:26 0:154 ip community-list standard 2_28_143 permit 65000:2 0:28 0:143 ip community-list standard 2_44_91 permit 65000:2 0:44 0:91 ip community-list standard 2_52_77 permit 65000:2 0:52 0:77 route-map calculator permit 8857 match community 2_22_182 2_26_154 2_28_143 2_44_91 2_52_77 set community 0:4004 ip community-list standard 2_140_173 permit 65000:2 0:140 0:173 route-map calculator permit 8858 match community 2_140_173 set community 0:24220 ip community-list standard 2_38_200 permit 65000:2 0:38 0:200 ip community-list standard 2_40_190 permit 65000:2 0:40 0:190 ip community-list standard 2_50_152 permit 65000:2 0:50 0:152 ip community-list standard 2_76_100 permit 65000:2 0:76 0:100 ip community-list standard 2_80_95 permit 65000:2 0:80 0:95 route-map calculator permit 8859 match community 2_38_200 2_40_190 2_50_152 2_76_100 2_80_95 set community 0:7600 ip community-list standard 2_41_220 permit 65000:2 0:41 0:220 ip community-list standard 2_44_205 permit 65000:2 0:44 0:205 ip community-list standard 2_55_164 permit 65000:2 0:55 0:164 ip community-list standard 2_82_110 permit 65000:2 0:82 0:110 route-map calculator permit 8860 match community 2_41_220 2_44_205 2_55_164 2_82_110 set community 0:9020 ip community-list standard 2_140_219 permit 65000:2 0:140 0:219 ip community-list standard 2_146_210 permit 65000:2 0:146 0:210 route-map calculator permit 8861 match community 2_140_219 2_146_210 set community 0:30660 ip community-list standard 2_135_157 permit 65000:2 0:135 0:157 route-map calculator permit 8862 match community 2_135_157 set community 0:21195 ip community-list standard 2_45_139 permit 65000:2 0:45 0:139 route-map calculator permit 8863 match community 2_45_139 set community 0:6255 ip community-list standard 2_55_246 permit 65000:2 0:55 0:246 ip community-list standard 2_66_205 permit 65000:2 0:66 0:205 ip community-list standard 2_82_165 permit 65000:2 0:82 0:165 ip community-list standard 2_110_123 permit 65000:2 0:110 0:123 route-map calculator permit 8864 match community 2_55_246 2_66_205 2_82_165 2_110_123 set community 0:13530 ip community-list standard 2_104_220 permit 65000:2 0:104 0:220 ip community-list standard 2_110_208 permit 65000:2 0:110 0:208 ip community-list standard 2_130_176 permit 65000:2 0:130 0:176 ip community-list standard 2_143_160 permit 65000:2 0:143 0:160 route-map calculator permit 8865 match community 2_104_220 2_110_208 2_130_176 2_143_160 set community 0:22880 ip community-list standard 2_130_221 permit 65000:2 0:130 0:221 ip community-list standard 2_169_170 permit 65000:2 0:169 0:170 route-map calculator permit 8866 match community 2_130_221 2_169_170 set community 0:28730 ip community-list standard 2_158_211 permit 65000:2 0:158 0:211 route-map calculator permit 8867 match community 2_158_211 set community 0:33338 ip community-list standard 2_63_222 permit 65000:2 0:63 0:222 ip community-list standard 2_74_189 permit 65000:2 0:74 0:189 ip community-list standard 2_111_126 permit 65000:2 0:111 0:126 route-map calculator permit 8868 match community 2_63_222 2_74_189 2_111_126 set community 0:13986 ip community-list standard 2_47_255 permit 65000:2 0:47 0:255 ip community-list standard 2_51_235 permit 65000:2 0:51 0:235 ip community-list standard 2_85_141 permit 65000:2 0:85 0:141 route-map calculator permit 8869 match community 2_47_255 2_51_235 2_85_141 set community 0:11985 ip community-list standard 2_107_221 permit 65000:2 0:107 0:221 route-map calculator permit 8870 match community 2_107_221 set community 0:23647 ip community-list standard 2_17_236 permit 65000:2 0:17 0:236 ip community-list standard 2_34_118 permit 65000:2 0:34 0:118 ip community-list standard 2_59_68 permit 65000:2 0:59 0:68 route-map calculator permit 8871 match community 2_17_236 2_34_118 2_59_68 set community 0:4012 ip community-list standard 2_54_151 permit 65000:2 0:54 0:151 route-map calculator permit 8872 match community 2_54_151 set community 0:8154 ip community-list standard 2_145_250 permit 65000:2 0:145 0:250 route-map calculator permit 8873 match community 2_145_250 set community 0:36250 ip community-list standard 2_88_211 permit 65000:2 0:88 0:211 route-map calculator permit 8874 match community 2_88_211 set community 0:18568 ip community-list standard 2_157_235 permit 65000:2 0:157 0:235 route-map calculator permit 8875 match community 2_157_235 set community 0:36895 ip community-list standard 2_174_252 permit 65000:2 0:174 0:252 ip community-list standard 2_189_232 permit 65000:2 0:189 0:232 ip community-list standard 2_203_216 permit 65000:2 0:203 0:216 route-map calculator permit 8876 match community 2_174_252 2_189_232 2_203_216 set community 0:43848 ip community-list standard 2_123_143 permit 65000:2 0:123 0:143 route-map calculator permit 8877 match community 2_123_143 set community 0:17589 ip community-list standard 2_137_138 permit 65000:2 0:137 0:138 route-map calculator permit 8878 match community 2_137_138 set community 0:18906 ip community-list standard 2_18_183 permit 65000:2 0:18 0:183 ip community-list standard 2_27_122 permit 65000:2 0:27 0:122 ip community-list standard 2_54_61 permit 65000:2 0:54 0:61 route-map calculator permit 8879 match community 2_18_183 2_27_122 2_54_61 set community 0:3294 ip community-list standard 2_37_177 permit 65000:2 0:37 0:177 ip community-list standard 2_59_111 permit 65000:2 0:59 0:111 route-map calculator permit 8880 match community 2_37_177 2_59_111 set community 0:6549 ip community-list standard 2_79_227 permit 65000:2 0:79 0:227 route-map calculator permit 8881 match community 2_79_227 set community 0:17933 ip community-list standard 2_82_205 permit 65000:2 0:82 0:205 route-map calculator permit 8882 match community 2_82_205 set community 0:16810 ip community-list standard 2_39_157 permit 65000:2 0:39 0:157 route-map calculator permit 8883 match community 2_39_157 set community 0:6123 ip community-list standard 2_75_247 permit 65000:2 0:75 0:247 ip community-list standard 2_95_195 permit 65000:2 0:95 0:195 route-map calculator permit 8884 match community 2_75_247 2_95_195 set community 0:18525 ip community-list standard 2_176_251 permit 65000:2 0:176 0:251 route-map calculator permit 8885 match community 2_176_251 set community 0:44176 ip community-list standard 2_44_199 permit 65000:2 0:44 0:199 route-map calculator permit 8886 match community 2_44_199 set community 0:8756 ip community-list standard 2_215_219 permit 65000:2 0:215 0:219 route-map calculator permit 8887 match community 2_215_219 set community 0:47085 ip community-list standard 2_129_191 permit 65000:2 0:129 0:191 route-map calculator permit 8888 match community 2_129_191 set community 0:24639 ip community-list standard 2_86_230 permit 65000:2 0:86 0:230 ip community-list standard 2_92_215 permit 65000:2 0:92 0:215 ip community-list standard 2_115_172 permit 65000:2 0:115 0:172 route-map calculator permit 8889 match community 2_86_230 2_92_215 2_115_172 set community 0:19780 ip community-list standard 2_134_169 permit 65000:2 0:134 0:169 route-map calculator permit 8890 match community 2_134_169 set community 0:22646 ip community-list standard 2_153_237 permit 65000:2 0:153 0:237 route-map calculator permit 8891 match community 2_153_237 set community 0:36261 ip community-list standard 2_90_191 permit 65000:2 0:90 0:191 route-map calculator permit 8892 match community 2_90_191 set community 0:17190 ip community-list standard 2_103_253 permit 65000:2 0:103 0:253 route-map calculator permit 8893 match community 2_103_253 set community 0:26059 ip community-list standard 2_31_169 permit 65000:2 0:31 0:169 route-map calculator permit 8894 match community 2_31_169 set community 0:5239 ip community-list standard 2_87_250 permit 65000:2 0:87 0:250 ip community-list standard 2_125_174 permit 65000:2 0:125 0:174 ip community-list standard 2_145_150 permit 65000:2 0:145 0:150 route-map calculator permit 8895 match community 2_87_250 2_125_174 2_145_150 set community 0:21750 ip community-list standard 2_239_248 permit 65000:2 0:239 0:248 route-map calculator permit 8896 match community 2_239_248 set community 0:59272 ip community-list standard 2_90_231 permit 65000:2 0:90 0:231 ip community-list standard 2_99_210 permit 65000:2 0:99 0:210 ip community-list standard 2_105_198 permit 65000:2 0:105 0:198 ip community-list standard 2_110_189 permit 65000:2 0:110 0:189 ip community-list standard 2_126_165 permit 65000:2 0:126 0:165 ip community-list standard 2_135_154 permit 65000:2 0:135 0:154 route-map calculator permit 8897 match community 2_90_231 2_99_210 2_105_198 2_110_189 2_126_165 set community 0:20790 route-map calculator permit 8898 match community 2_135_154 set community 0:20790 ip community-list standard 2_37_194 permit 65000:2 0:37 0:194 ip community-list standard 2_74_97 permit 65000:2 0:74 0:97 route-map calculator permit 8899 match community 2_37_194 2_74_97 set community 0:7178 ip community-list standard 2_66_249 permit 65000:2 0:66 0:249 ip community-list standard 2_83_198 permit 65000:2 0:83 0:198 ip community-list standard 2_99_166 permit 65000:2 0:99 0:166 route-map calculator permit 8900 match community 2_66_249 2_83_198 2_99_166 set community 0:16434 ip community-list standard 2_8_231 permit 65000:2 0:8 0:231 ip community-list standard 2_11_168 permit 65000:2 0:11 0:168 ip community-list standard 2_12_154 permit 65000:2 0:12 0:154 ip community-list standard 2_14_132 permit 65000:2 0:14 0:132 ip community-list standard 2_21_88 permit 65000:2 0:21 0:88 ip community-list standard 2_22_84 permit 65000:2 0:22 0:84 ip community-list standard 2_24_77 permit 65000:2 0:24 0:77 ip community-list standard 2_28_66 permit 65000:2 0:28 0:66 ip community-list standard 2_33_56 permit 65000:2 0:33 0:56 ip community-list standard 2_42_44 permit 65000:2 0:42 0:44 route-map calculator permit 8901 match community 2_8_231 2_11_168 2_12_154 2_14_132 2_21_88 set community 0:1848 route-map calculator permit 8902 match community 2_22_84 2_24_77 2_28_66 2_33_56 2_42_44 set community 0:1848 ip community-list standard 2_111_222 permit 65000:2 0:111 0:222 route-map calculator permit 8903 match community 2_111_222 set community 0:24642 ip community-list standard 2_57_103 permit 65000:2 0:57 0:103 route-map calculator permit 8904 match community 2_57_103 set community 0:5871 ip community-list standard 2_93_235 permit 65000:2 0:93 0:235 ip community-list standard 2_141_155 permit 65000:2 0:141 0:155 route-map calculator permit 8905 match community 2_93_235 2_141_155 set community 0:21855 ip community-list standard 2_53_143 permit 65000:2 0:53 0:143 route-map calculator permit 8906 match community 2_53_143 set community 0:7579 ip community-list standard 2_29_213 permit 65000:2 0:29 0:213 ip community-list standard 2_71_87 permit 65000:2 0:71 0:87 route-map calculator permit 8907 match community 2_29_213 2_71_87 set community 0:6177 ip community-list standard 2_200_232 permit 65000:2 0:200 0:232 route-map calculator permit 8908 match community 2_200_232 set community 0:46400 ip community-list standard 2_67_119 permit 65000:2 0:67 0:119 route-map calculator permit 8909 match community 2_67_119 set community 0:7973 ip community-list standard 2_106_246 permit 65000:2 0:106 0:246 ip community-list standard 2_123_212 permit 65000:2 0:123 0:212 ip community-list standard 2_159_164 permit 65000:2 0:159 0:164 route-map calculator permit 8910 match community 2_106_246 2_123_212 2_159_164 set community 0:26076 ip community-list standard 2_96_227 permit 65000:2 0:96 0:227 route-map calculator permit 8911 match community 2_96_227 set community 0:21792 ip community-list standard 2_38_158 permit 65000:2 0:38 0:158 ip community-list standard 2_76_79 permit 65000:2 0:76 0:79 route-map calculator permit 8912 match community 2_38_158 2_76_79 set community 0:6004 ip community-list standard 2_137_231 permit 65000:2 0:137 0:231 route-map calculator permit 8913 match community 2_137_231 set community 0:31647 ip community-list standard 2_95_240 permit 65000:2 0:95 0:240 ip community-list standard 2_100_228 permit 65000:2 0:100 0:228 ip community-list standard 2_114_200 permit 65000:2 0:114 0:200 ip community-list standard 2_120_190 permit 65000:2 0:120 0:190 ip community-list standard 2_150_152 permit 65000:2 0:150 0:152 route-map calculator permit 8914 match community 2_95_240 2_100_228 2_114_200 2_120_190 2_150_152 set community 0:22800 ip community-list standard 2_141_189 permit 65000:2 0:141 0:189 route-map calculator permit 8915 match community 2_141_189 set community 0:26649 ip community-list standard 2_68_242 permit 65000:2 0:68 0:242 ip community-list standard 2_88_187 permit 65000:2 0:88 0:187 ip community-list standard 2_121_136 permit 65000:2 0:121 0:136 route-map calculator permit 8916 match community 2_68_242 2_88_187 2_121_136 set community 0:16456 ip community-list standard 2_130_131 permit 65000:2 0:130 0:131 route-map calculator permit 8917 match community 2_130_131 set community 0:17030 ip community-list standard 2_157_171 permit 65000:2 0:157 0:171 route-map calculator permit 8918 match community 2_157_171 set community 0:26847 ip community-list standard 2_69_217 permit 65000:2 0:69 0:217 ip community-list standard 2_93_161 permit 65000:2 0:93 0:161 route-map calculator permit 8919 match community 2_69_217 2_93_161 set community 0:14973 ip community-list standard 2_157_222 permit 65000:2 0:157 0:222 route-map calculator permit 8920 match community 2_157_222 set community 0:34854 ip community-list standard 2_185_195 permit 65000:2 0:185 0:195 route-map calculator permit 8921 match community 2_185_195 set community 0:36075 ip community-list standard 2_97_194 permit 65000:2 0:97 0:194 route-map calculator permit 8922 match community 2_97_194 set community 0:18818 ip community-list standard 2_127_256 permit 65000:2 0:127 0:256 ip community-list standard 2_128_254 permit 65000:2 0:128 0:254 route-map calculator permit 8923 match community 2_127_256 2_128_254 set community 0:32512 ip community-list standard 2_26_226 permit 65000:2 0:26 0:226 ip community-list standard 2_52_113 permit 65000:2 0:52 0:113 route-map calculator permit 8924 match community 2_26_226 2_52_113 set community 0:5876 ip community-list standard 2_209_256 permit 65000:2 0:209 0:256 route-map calculator permit 8925 match community 2_209_256 set community 0:53504 ip community-list standard 2_129_153 permit 65000:2 0:129 0:153 route-map calculator permit 8926 match community 2_129_153 set community 0:19737 ip community-list standard 2_163_202 permit 65000:2 0:163 0:202 route-map calculator permit 8927 match community 2_163_202 set community 0:32926 ip community-list standard 2_137_250 permit 65000:2 0:137 0:250 route-map calculator permit 8928 match community 2_137_250 set community 0:34250 ip community-list standard 2_100_237 permit 65000:2 0:100 0:237 ip community-list standard 2_150_158 permit 65000:2 0:150 0:158 route-map calculator permit 8929 match community 2_100_237 2_150_158 set community 0:23700 ip community-list standard 2_29_190 permit 65000:2 0:29 0:190 ip community-list standard 2_38_145 permit 65000:2 0:38 0:145 ip community-list standard 2_58_95 permit 65000:2 0:58 0:95 route-map calculator permit 8930 match community 2_29_190 2_38_145 2_58_95 set community 0:5510 ip community-list standard 2_170_233 permit 65000:2 0:170 0:233 route-map calculator permit 8931 match community 2_170_233 set community 0:39610 ip community-list standard 2_101_163 permit 65000:2 0:101 0:163 route-map calculator permit 8932 match community 2_101_163 set community 0:16463 ip community-list standard 2_89_255 permit 65000:2 0:89 0:255 route-map calculator permit 8933 match community 2_89_255 set community 0:22695 ip community-list standard 1_1_218 permit 65000:1 0:1 0:218 ip community-list standard 2_1_219 permit 65000:2 0:1 0:219 ip community-list standard 1_2_217 permit 65000:1 0:2 0:217 ip community-list standard 2_3_73 permit 65000:2 0:3 0:73 ip community-list standard 1_3_216 permit 65000:1 0:3 0:216 ip community-list standard 1_4_215 permit 65000:1 0:4 0:215 ip community-list standard 1_5_214 permit 65000:1 0:5 0:214 ip community-list standard 1_6_213 permit 65000:1 0:6 0:213 ip community-list standard 1_7_212 permit 65000:1 0:7 0:212 ip community-list standard 1_8_211 permit 65000:1 0:8 0:211 ip community-list standard 1_9_210 permit 65000:1 0:9 0:210 ip community-list standard 1_10_209 permit 65000:1 0:10 0:209 ip community-list standard 1_11_208 permit 65000:1 0:11 0:208 ip community-list standard 1_12_207 permit 65000:1 0:12 0:207 ip community-list standard 1_13_206 permit 65000:1 0:13 0:206 ip community-list standard 1_14_205 permit 65000:1 0:14 0:205 ip community-list standard 1_15_204 permit 65000:1 0:15 0:204 ip community-list standard 1_16_203 permit 65000:1 0:16 0:203 ip community-list standard 1_17_202 permit 65000:1 0:17 0:202 ip community-list standard 1_18_201 permit 65000:1 0:18 0:201 ip community-list standard 1_19_200 permit 65000:1 0:19 0:200 ip community-list standard 1_20_199 permit 65000:1 0:20 0:199 ip community-list standard 1_21_198 permit 65000:1 0:21 0:198 ip community-list standard 1_22_197 permit 65000:1 0:22 0:197 ip community-list standard 1_23_196 permit 65000:1 0:23 0:196 ip community-list standard 1_24_195 permit 65000:1 0:24 0:195 ip community-list standard 1_25_194 permit 65000:1 0:25 0:194 ip community-list standard 1_26_193 permit 65000:1 0:26 0:193 ip community-list standard 1_27_192 permit 65000:1 0:27 0:192 ip community-list standard 1_28_191 permit 65000:1 0:28 0:191 ip community-list standard 1_29_190 permit 65000:1 0:29 0:190 ip community-list standard 1_30_189 permit 65000:1 0:30 0:189 ip community-list standard 1_31_188 permit 65000:1 0:31 0:188 ip community-list standard 1_32_187 permit 65000:1 0:32 0:187 ip community-list standard 1_33_186 permit 65000:1 0:33 0:186 ip community-list standard 1_34_185 permit 65000:1 0:34 0:185 ip community-list standard 1_35_184 permit 65000:1 0:35 0:184 ip community-list standard 1_36_183 permit 65000:1 0:36 0:183 ip community-list standard 1_37_182 permit 65000:1 0:37 0:182 ip community-list standard 1_38_181 permit 65000:1 0:38 0:181 ip community-list standard 1_39_180 permit 65000:1 0:39 0:180 ip community-list standard 1_40_179 permit 65000:1 0:40 0:179 ip community-list standard 1_41_178 permit 65000:1 0:41 0:178 ip community-list standard 1_42_177 permit 65000:1 0:42 0:177 ip community-list standard 1_43_176 permit 65000:1 0:43 0:176 ip community-list standard 1_44_175 permit 65000:1 0:44 0:175 ip community-list standard 1_45_174 permit 65000:1 0:45 0:174 ip community-list standard 1_46_173 permit 65000:1 0:46 0:173 ip community-list standard 1_47_172 permit 65000:1 0:47 0:172 ip community-list standard 1_48_171 permit 65000:1 0:48 0:171 ip community-list standard 1_49_170 permit 65000:1 0:49 0:170 ip community-list standard 1_50_169 permit 65000:1 0:50 0:169 ip community-list standard 1_51_168 permit 65000:1 0:51 0:168 ip community-list standard 1_52_167 permit 65000:1 0:52 0:167 ip community-list standard 1_53_166 permit 65000:1 0:53 0:166 ip community-list standard 1_54_165 permit 65000:1 0:54 0:165 ip community-list standard 1_55_164 permit 65000:1 0:55 0:164 ip community-list standard 1_56_163 permit 65000:1 0:56 0:163 ip community-list standard 1_57_162 permit 65000:1 0:57 0:162 ip community-list standard 1_58_161 permit 65000:1 0:58 0:161 ip community-list standard 1_59_160 permit 65000:1 0:59 0:160 ip community-list standard 1_60_159 permit 65000:1 0:60 0:159 ip community-list standard 1_61_158 permit 65000:1 0:61 0:158 ip community-list standard 1_62_157 permit 65000:1 0:62 0:157 ip community-list standard 1_63_156 permit 65000:1 0:63 0:156 ip community-list standard 1_64_155 permit 65000:1 0:64 0:155 ip community-list standard 1_65_154 permit 65000:1 0:65 0:154 ip community-list standard 1_66_153 permit 65000:1 0:66 0:153 ip community-list standard 1_67_152 permit 65000:1 0:67 0:152 ip community-list standard 1_68_151 permit 65000:1 0:68 0:151 ip community-list standard 1_69_150 permit 65000:1 0:69 0:150 ip community-list standard 1_70_149 permit 65000:1 0:70 0:149 ip community-list standard 1_71_148 permit 65000:1 0:71 0:148 ip community-list standard 1_72_147 permit 65000:1 0:72 0:147 ip community-list standard 1_73_146 permit 65000:1 0:73 0:146 ip community-list standard 1_74_145 permit 65000:1 0:74 0:145 ip community-list standard 1_75_144 permit 65000:1 0:75 0:144 ip community-list standard 1_76_143 permit 65000:1 0:76 0:143 ip community-list standard 1_77_142 permit 65000:1 0:77 0:142 ip community-list standard 1_78_141 permit 65000:1 0:78 0:141 ip community-list standard 1_79_140 permit 65000:1 0:79 0:140 ip community-list standard 1_80_139 permit 65000:1 0:80 0:139 ip community-list standard 1_81_138 permit 65000:1 0:81 0:138 ip community-list standard 1_82_137 permit 65000:1 0:82 0:137 ip community-list standard 1_83_136 permit 65000:1 0:83 0:136 ip community-list standard 1_84_135 permit 65000:1 0:84 0:135 ip community-list standard 1_85_134 permit 65000:1 0:85 0:134 ip community-list standard 1_86_133 permit 65000:1 0:86 0:133 ip community-list standard 1_87_132 permit 65000:1 0:87 0:132 ip community-list standard 1_88_131 permit 65000:1 0:88 0:131 ip community-list standard 1_89_130 permit 65000:1 0:89 0:130 ip community-list standard 1_90_129 permit 65000:1 0:90 0:129 ip community-list standard 1_91_128 permit 65000:1 0:91 0:128 ip community-list standard 1_92_127 permit 65000:1 0:92 0:127 ip community-list standard 1_93_126 permit 65000:1 0:93 0:126 ip community-list standard 1_94_125 permit 65000:1 0:94 0:125 ip community-list standard 1_95_124 permit 65000:1 0:95 0:124 ip community-list standard 1_96_123 permit 65000:1 0:96 0:123 ip community-list standard 1_97_122 permit 65000:1 0:97 0:122 ip community-list standard 1_98_121 permit 65000:1 0:98 0:121 ip community-list standard 1_99_120 permit 65000:1 0:99 0:120 ip community-list standard 1_100_119 permit 65000:1 0:100 0:119 ip community-list standard 1_101_118 permit 65000:1 0:101 0:118 ip community-list standard 1_102_117 permit 65000:1 0:102 0:117 ip community-list standard 1_103_116 permit 65000:1 0:103 0:116 ip community-list standard 1_104_115 permit 65000:1 0:104 0:115 ip community-list standard 1_105_114 permit 65000:1 0:105 0:114 ip community-list standard 1_106_113 permit 65000:1 0:106 0:113 ip community-list standard 1_107_112 permit 65000:1 0:107 0:112 ip community-list standard 1_108_111 permit 65000:1 0:108 0:111 ip community-list standard 1_109_110 permit 65000:1 0:109 0:110 ip community-list expanded c219 permit 1 ^65000:4_0:219_0:1$ ip community-list expanded c219 permit 2 ^65000:3_0:220_0:1$ ip community-list expanded c219 permit 3 ^65000:3_0:221_0:2$ ip community-list expanded c219 permit 4 ^65000:3_0:222_0:3$ ip community-list expanded c219 permit 5 ^65000:3_0:223_0:4$ ip community-list expanded c219 permit 6 ^65000:3_0:224_0:5$ ip community-list expanded c219 permit 7 ^65000:3_0:225_0:6$ ip community-list expanded c219 permit 8 ^65000:3_0:226_0:7$ ip community-list expanded c219 permit 9 ^65000:3_0:227_0:8$ ip community-list expanded c219 permit 10 ^65000:3_0:228_0:9$ ip community-list expanded c219 permit 11 ^65000:3_0:229_0:10$ ip community-list expanded c219 permit 12 ^65000:3_0:230_0:11$ ip community-list expanded c219 permit 13 ^65000:3_0:231_0:12$ ip community-list expanded c219 permit 14 ^65000:3_0:232_0:13$ ip community-list expanded c219 permit 15 ^65000:3_0:233_0:14$ ip community-list expanded c219 permit 16 ^65000:3_0:234_0:15$ ip community-list expanded c219 permit 17 ^65000:3_0:235_0:16$ ip community-list expanded c219 permit 18 ^65000:3_0:236_0:17$ ip community-list expanded c219 permit 19 ^65000:3_0:237_0:18$ ip community-list expanded c219 permit 20 ^65000:3_0:238_0:19$ ip community-list expanded c219 permit 21 ^65000:3_0:239_0:20$ ip community-list expanded c219 permit 22 ^65000:3_0:240_0:21$ ip community-list expanded c219 permit 23 ^65000:3_0:241_0:22$ ip community-list expanded c219 permit 24 ^65000:3_0:242_0:23$ ip community-list expanded c219 permit 25 ^65000:3_0:243_0:24$ ip community-list expanded c219 permit 26 ^65000:3_0:244_0:25$ ip community-list expanded c219 permit 27 ^65000:3_0:245_0:26$ ip community-list expanded c219 permit 28 ^65000:3_0:246_0:27$ ip community-list expanded c219 permit 29 ^65000:3_0:247_0:28$ ip community-list expanded c219 permit 30 ^65000:3_0:248_0:29$ ip community-list expanded c219 permit 31 ^65000:3_0:249_0:30$ ip community-list expanded c219 permit 32 ^65000:3_0:250_0:31$ ip community-list expanded c219 permit 33 ^65000:3_0:251_0:32$ ip community-list expanded c219 permit 34 ^65000:3_0:252_0:33$ ip community-list expanded c219 permit 35 ^65000:3_0:253_0:34$ ip community-list expanded c219 permit 36 ^65000:3_0:254_0:35$ ip community-list expanded c219 permit 37 ^65000:3_0:255_0:36$ ip community-list expanded c219 permit 38 ^65000:3_0:256_0:37$ route-map calculator permit 8934 match community 1_1_218 2_1_219 1_2_217 2_3_73 1_3_216 set community 0:219 route-map calculator permit 8935 match community 1_4_215 1_5_214 1_6_213 1_7_212 1_8_211 set community 0:219 route-map calculator permit 8936 match community 1_9_210 1_10_209 1_11_208 1_12_207 1_13_206 set community 0:219 route-map calculator permit 8937 match community 1_14_205 1_15_204 1_16_203 1_17_202 1_18_201 set community 0:219 route-map calculator permit 8938 match community 1_19_200 1_20_199 1_21_198 1_22_197 1_23_196 set community 0:219 route-map calculator permit 8939 match community 1_24_195 1_25_194 1_26_193 1_27_192 1_28_191 set community 0:219 route-map calculator permit 8940 match community 1_29_190 1_30_189 1_31_188 1_32_187 1_33_186 set community 0:219 route-map calculator permit 8941 match community 1_34_185 1_35_184 1_36_183 1_37_182 1_38_181 set community 0:219 route-map calculator permit 8942 match community 1_39_180 1_40_179 1_41_178 1_42_177 1_43_176 set community 0:219 route-map calculator permit 8943 match community 1_44_175 1_45_174 1_46_173 1_47_172 1_48_171 set community 0:219 route-map calculator permit 8944 match community 1_49_170 1_50_169 1_51_168 1_52_167 1_53_166 set community 0:219 route-map calculator permit 8945 match community 1_54_165 1_55_164 1_56_163 1_57_162 1_58_161 set community 0:219 route-map calculator permit 8946 match community 1_59_160 1_60_159 1_61_158 1_62_157 1_63_156 set community 0:219 route-map calculator permit 8947 match community 1_64_155 1_65_154 1_66_153 1_67_152 1_68_151 set community 0:219 route-map calculator permit 8948 match community 1_69_150 1_70_149 1_71_148 1_72_147 1_73_146 set community 0:219 route-map calculator permit 8949 match community 1_74_145 1_75_144 1_76_143 1_77_142 1_78_141 set community 0:219 route-map calculator permit 8950 match community 1_79_140 1_80_139 1_81_138 1_82_137 1_83_136 set community 0:219 route-map calculator permit 8951 match community 1_84_135 1_85_134 1_86_133 1_87_132 1_88_131 set community 0:219 route-map calculator permit 8952 match community 1_89_130 1_90_129 1_91_128 1_92_127 1_93_126 set community 0:219 route-map calculator permit 8953 match community 1_94_125 1_95_124 1_96_123 1_97_122 1_98_121 set community 0:219 route-map calculator permit 8954 match community 1_99_120 1_100_119 1_101_118 1_102_117 1_103_116 set community 0:219 route-map calculator permit 8955 match community 1_104_115 1_105_114 1_106_113 1_107_112 1_108_111 set community 0:219 route-map calculator permit 8956 match community 1_109_110 c4_219_1 c3_220_1 c3_221_2 c3_222_3 set community 0:219 route-map calculator permit 8957 match community c3_223_4 c3_224_5 c3_225_6 c3_226_7 c3_227_8 set community 0:219 route-map calculator permit 8958 match community c3_228_9 c3_229_10 c3_230_11 c3_231_12 c3_232_13 set community 0:219 route-map calculator permit 8959 match community c3_233_14 c3_234_15 c3_235_16 c3_236_17 c3_237_18 set community 0:219 route-map calculator permit 8960 match community c3_238_19 c3_239_20 c3_240_21 c3_241_22 c3_242_23 set community 0:219 route-map calculator permit 8961 match community c3_243_24 c3_244_25 c3_245_26 c3_246_27 c3_247_28 set community 0:219 route-map calculator permit 8962 match community c3_248_29 c3_249_30 c3_250_31 c3_251_32 c3_252_33 set community 0:219 route-map calculator permit 8963 match community c3_253_34 c3_254_35 c3_255_36 c3_256_37 set community 0:219 ip community-list standard 2_16_214 permit 65000:2 0:16 0:214 ip community-list standard 2_32_107 permit 65000:2 0:32 0:107 route-map calculator permit 8964 match community 2_16_214 2_32_107 set community 0:3424 ip community-list standard 2_194_254 permit 65000:2 0:194 0:254 route-map calculator permit 8965 match community 2_194_254 set community 0:49276 ip community-list standard 2_108_229 permit 65000:2 0:108 0:229 route-map calculator permit 8966 match community 2_108_229 set community 0:24732 ip community-list standard 2_73_214 permit 65000:2 0:73 0:214 ip community-list standard 2_107_146 permit 65000:2 0:107 0:146 route-map calculator permit 8967 match community 2_73_214 2_107_146 set community 0:15622 ip community-list standard 2_64_178 permit 65000:2 0:64 0:178 ip community-list standard 2_89_128 permit 65000:2 0:89 0:128 route-map calculator permit 8968 match community 2_64_178 2_89_128 set community 0:11392 ip community-list standard 2_183_189 permit 65000:2 0:183 0:189 route-map calculator permit 8969 match community 2_183_189 set community 0:34587 ip community-list standard 2_97_111 permit 65000:2 0:97 0:111 route-map calculator permit 8970 match community 2_97_111 set community 0:10767 ip community-list standard 2_55_233 permit 65000:2 0:55 0:233 route-map calculator permit 8971 match community 2_55_233 set community 0:12815 ip community-list standard 2_164_250 permit 65000:2 0:164 0:250 ip community-list standard 2_200_205 permit 65000:2 0:200 0:205 route-map calculator permit 8972 match community 2_164_250 2_200_205 set community 0:41000 ip community-list standard 2_107_218 permit 65000:2 0:107 0:218 ip community-list standard 2_109_214 permit 65000:2 0:109 0:214 route-map calculator permit 8973 match community 2_107_218 2_109_214 set community 0:23326 ip community-list standard 2_92_206 permit 65000:2 0:92 0:206 ip community-list standard 2_103_184 permit 65000:2 0:103 0:184 route-map calculator permit 8974 match community 2_92_206 2_103_184 set community 0:18952 ip community-list standard 2_5_73 permit 65000:2 0:5 0:73 ip community-list standard 1_109_256 permit 65000:1 0:109 0:256 ip community-list standard 1_110_255 permit 65000:1 0:110 0:255 ip community-list standard 1_111_254 permit 65000:1 0:111 0:254 ip community-list standard 1_112_253 permit 65000:1 0:112 0:253 ip community-list standard 1_113_252 permit 65000:1 0:113 0:252 ip community-list standard 1_114_251 permit 65000:1 0:114 0:251 ip community-list standard 1_115_250 permit 65000:1 0:115 0:250 ip community-list standard 1_116_249 permit 65000:1 0:116 0:249 ip community-list standard 1_117_248 permit 65000:1 0:117 0:248 ip community-list standard 1_118_247 permit 65000:1 0:118 0:247 ip community-list standard 1_119_246 permit 65000:1 0:119 0:246 ip community-list standard 1_120_245 permit 65000:1 0:120 0:245 ip community-list standard 1_121_244 permit 65000:1 0:121 0:244 ip community-list standard 1_122_243 permit 65000:1 0:122 0:243 ip community-list standard 1_123_242 permit 65000:1 0:123 0:242 ip community-list standard 1_124_241 permit 65000:1 0:124 0:241 ip community-list standard 1_125_240 permit 65000:1 0:125 0:240 ip community-list standard 1_126_239 permit 65000:1 0:126 0:239 ip community-list standard 1_127_238 permit 65000:1 0:127 0:238 ip community-list standard 1_128_237 permit 65000:1 0:128 0:237 ip community-list standard 1_129_236 permit 65000:1 0:129 0:236 ip community-list standard 1_130_235 permit 65000:1 0:130 0:235 ip community-list standard 1_131_234 permit 65000:1 0:131 0:234 ip community-list standard 1_132_233 permit 65000:1 0:132 0:233 ip community-list standard 1_133_232 permit 65000:1 0:133 0:232 ip community-list standard 1_134_231 permit 65000:1 0:134 0:231 ip community-list standard 1_135_230 permit 65000:1 0:135 0:230 ip community-list standard 1_136_229 permit 65000:1 0:136 0:229 ip community-list standard 1_137_228 permit 65000:1 0:137 0:228 ip community-list standard 1_138_227 permit 65000:1 0:138 0:227 ip community-list standard 1_139_226 permit 65000:1 0:139 0:226 ip community-list standard 1_140_225 permit 65000:1 0:140 0:225 ip community-list standard 1_141_224 permit 65000:1 0:141 0:224 ip community-list standard 1_142_223 permit 65000:1 0:142 0:223 ip community-list standard 1_143_222 permit 65000:1 0:143 0:222 ip community-list standard 1_144_221 permit 65000:1 0:144 0:221 ip community-list standard 1_145_220 permit 65000:1 0:145 0:220 ip community-list standard 1_146_219 permit 65000:1 0:146 0:219 ip community-list standard 1_147_218 permit 65000:1 0:147 0:218 ip community-list standard 1_148_217 permit 65000:1 0:148 0:217 ip community-list standard 1_149_216 permit 65000:1 0:149 0:216 ip community-list standard 1_150_215 permit 65000:1 0:150 0:215 ip community-list standard 1_151_214 permit 65000:1 0:151 0:214 ip community-list standard 1_152_213 permit 65000:1 0:152 0:213 ip community-list standard 1_153_212 permit 65000:1 0:153 0:212 ip community-list standard 1_154_211 permit 65000:1 0:154 0:211 ip community-list standard 1_155_210 permit 65000:1 0:155 0:210 ip community-list standard 1_156_209 permit 65000:1 0:156 0:209 ip community-list standard 1_157_208 permit 65000:1 0:157 0:208 ip community-list standard 1_158_207 permit 65000:1 0:158 0:207 ip community-list standard 1_159_206 permit 65000:1 0:159 0:206 ip community-list standard 1_160_205 permit 65000:1 0:160 0:205 ip community-list standard 1_161_204 permit 65000:1 0:161 0:204 ip community-list standard 1_162_203 permit 65000:1 0:162 0:203 ip community-list standard 1_163_202 permit 65000:1 0:163 0:202 ip community-list standard 1_164_201 permit 65000:1 0:164 0:201 ip community-list standard 1_165_200 permit 65000:1 0:165 0:200 ip community-list standard 1_166_199 permit 65000:1 0:166 0:199 ip community-list standard 1_167_198 permit 65000:1 0:167 0:198 ip community-list standard 1_168_197 permit 65000:1 0:168 0:197 ip community-list standard 1_169_196 permit 65000:1 0:169 0:196 ip community-list standard 1_170_195 permit 65000:1 0:170 0:195 ip community-list standard 1_171_194 permit 65000:1 0:171 0:194 ip community-list standard 1_172_193 permit 65000:1 0:172 0:193 ip community-list standard 1_173_192 permit 65000:1 0:173 0:192 ip community-list standard 1_174_191 permit 65000:1 0:174 0:191 ip community-list standard 1_175_190 permit 65000:1 0:175 0:190 ip community-list standard 1_176_189 permit 65000:1 0:176 0:189 ip community-list standard 1_177_188 permit 65000:1 0:177 0:188 ip community-list standard 1_178_187 permit 65000:1 0:178 0:187 ip community-list standard 1_179_186 permit 65000:1 0:179 0:186 ip community-list standard 1_180_185 permit 65000:1 0:180 0:185 ip community-list standard 1_181_184 permit 65000:1 0:181 0:184 ip community-list standard 1_182_183 permit 65000:1 0:182 0:183 route-map calculator permit 8975 match community 2_5_73 1_109_256 1_110_255 1_111_254 1_112_253 set community 0:365 route-map calculator permit 8976 match community 1_113_252 1_114_251 1_115_250 1_116_249 1_117_248 set community 0:365 route-map calculator permit 8977 match community 1_118_247 1_119_246 1_120_245 1_121_244 1_122_243 set community 0:365 route-map calculator permit 8978 match community 1_123_242 1_124_241 1_125_240 1_126_239 1_127_238 set community 0:365 route-map calculator permit 8979 match community 1_128_237 1_129_236 1_130_235 1_131_234 1_132_233 set community 0:365 route-map calculator permit 8980 match community 1_133_232 1_134_231 1_135_230 1_136_229 1_137_228 set community 0:365 route-map calculator permit 8981 match community 1_138_227 1_139_226 1_140_225 1_141_224 1_142_223 set community 0:365 route-map calculator permit 8982 match community 1_143_222 1_144_221 1_145_220 1_146_219 1_147_218 set community 0:365 route-map calculator permit 8983 match community 1_148_217 1_149_216 1_150_215 1_151_214 1_152_213 set community 0:365 route-map calculator permit 8984 match community 1_153_212 1_154_211 1_155_210 1_156_209 1_157_208 set community 0:365 route-map calculator permit 8985 match community 1_158_207 1_159_206 1_160_205 1_161_204 1_162_203 set community 0:365 route-map calculator permit 8986 match community 1_163_202 1_164_201 1_165_200 1_166_199 1_167_198 set community 0:365 route-map calculator permit 8987 match community 1_168_197 1_169_196 1_170_195 1_171_194 1_172_193 set community 0:365 route-map calculator permit 8988 match community 1_173_192 1_174_191 1_175_190 1_176_189 1_177_188 set community 0:365 route-map calculator permit 8989 match community 1_178_187 1_179_186 1_180_185 1_181_184 1_182_183 set community 0:365 ip community-list standard 2_101_213 permit 65000:2 0:101 0:213 route-map calculator permit 8990 match community 2_101_213 set community 0:21513 ip community-list standard 2_80_139 permit 65000:2 0:80 0:139 route-map calculator permit 8991 match community 2_80_139 set community 0:11120 ip community-list standard 2_34_255 permit 65000:2 0:34 0:255 ip community-list standard 2_51_170 permit 65000:2 0:51 0:170 ip community-list standard 2_85_102 permit 65000:2 0:85 0:102 route-map calculator permit 8992 match community 2_34_255 2_51_170 2_85_102 set community 0:8670 ip community-list standard 2_56_215 permit 65000:2 0:56 0:215 ip community-list standard 2_70_172 permit 65000:2 0:70 0:172 ip community-list standard 2_86_140 permit 65000:2 0:86 0:140 route-map calculator permit 8993 match community 2_56_215 2_70_172 2_86_140 set community 0:12040 ip community-list standard 2_13_239 permit 65000:2 0:13 0:239 route-map calculator permit 8994 match community 2_13_239 set community 0:3107 ip community-list standard 2_233_253 permit 65000:2 0:233 0:253 route-map calculator permit 8995 match community 2_233_253 set community 0:58949 ip community-list standard 2_76_250 permit 65000:2 0:76 0:250 ip community-list standard 2_95_200 permit 65000:2 0:95 0:200 ip community-list standard 2_100_190 permit 65000:2 0:100 0:190 ip community-list standard 2_125_152 permit 65000:2 0:125 0:152 route-map calculator permit 8996 match community 2_76_250 2_95_200 2_100_190 2_125_152 set community 0:19000 ip community-list standard 2_39_255 permit 65000:2 0:39 0:255 ip community-list standard 2_45_221 permit 65000:2 0:45 0:221 ip community-list standard 2_51_195 permit 65000:2 0:51 0:195 ip community-list standard 2_65_153 permit 65000:2 0:65 0:153 ip community-list standard 2_85_117 permit 65000:2 0:85 0:117 route-map calculator permit 8997 match community 2_39_255 2_45_221 2_51_195 2_65_153 2_85_117 set community 0:9945 ip community-list standard 2_93_251 permit 65000:2 0:93 0:251 route-map calculator permit 8998 match community 2_93_251 set community 0:23343 ip community-list standard 2_48_149 permit 65000:2 0:48 0:149 route-map calculator permit 8999 match community 2_48_149 set community 0:7152 ip community-list standard 2_24_199 permit 65000:2 0:24 0:199 route-map calculator permit 9000 match community 2_24_199 set community 0:4776 ip community-list standard 2_165_205 permit 65000:2 0:165 0:205 route-map calculator permit 9001 match community 2_165_205 set community 0:33825 ip community-list standard 2_73_131 permit 65000:2 0:73 0:131 route-map calculator permit 9002 match community 2_73_131 set community 0:9563 ip community-list standard 2_151_190 permit 65000:2 0:151 0:190 route-map calculator permit 9003 match community 2_151_190 set community 0:28690 ip community-list standard 2_93_211 permit 65000:2 0:93 0:211 route-map calculator permit 9004 match community 2_93_211 set community 0:19623 ip community-list standard 2_14_167 permit 65000:2 0:14 0:167 route-map calculator permit 9005 match community 2_14_167 set community 0:2338 ip community-list standard 2_99_218 permit 65000:2 0:99 0:218 ip community-list standard 2_109_198 permit 65000:2 0:109 0:198 route-map calculator permit 9006 match community 2_99_218 2_109_198 set community 0:21582 ip community-list standard 2_201_205 permit 65000:2 0:201 0:205 route-map calculator permit 9007 match community 2_201_205 set community 0:41205 ip community-list standard 2_137_186 permit 65000:2 0:137 0:186 route-map calculator permit 9008 match community 2_137_186 set community 0:25482 ip community-list standard 2_152_240 permit 65000:2 0:152 0:240 ip community-list standard 2_160_228 permit 65000:2 0:160 0:228 ip community-list standard 2_190_192 permit 65000:2 0:190 0:192 route-map calculator permit 9009 match community 2_152_240 2_160_228 2_190_192 set community 0:36480 ip community-list standard 2_188_246 permit 65000:2 0:188 0:246 route-map calculator permit 9010 match community 2_188_246 set community 0:46248 ip community-list standard 2_129_157 permit 65000:2 0:129 0:157 route-map calculator permit 9011 match community 2_129_157 set community 0:20253 ip community-list standard 2_43_134 permit 65000:2 0:43 0:134 ip community-list standard 2_67_86 permit 65000:2 0:67 0:86 route-map calculator permit 9012 match community 2_43_134 2_67_86 set community 0:5762 ip community-list standard 2_146_240 permit 65000:2 0:146 0:240 ip community-list standard 2_160_219 permit 65000:2 0:160 0:219 route-map calculator permit 9013 match community 2_146_240 2_160_219 set community 0:35040 ip community-list standard 2_71_188 permit 65000:2 0:71 0:188 ip community-list standard 2_94_142 permit 65000:2 0:94 0:142 route-map calculator permit 9014 match community 2_71_188 2_94_142 set community 0:13348 ip community-list standard 2_140_215 permit 65000:2 0:140 0:215 ip community-list standard 2_172_175 permit 65000:2 0:172 0:175 route-map calculator permit 9015 match community 2_140_215 2_172_175 set community 0:30100 ip community-list standard 2_38_211 permit 65000:2 0:38 0:211 route-map calculator permit 9016 match community 2_38_211 set community 0:8018 ip community-list standard 2_3_206 permit 65000:2 0:3 0:206 ip community-list standard 2_6_103 permit 65000:2 0:6 0:103 route-map calculator permit 9017 match community 2_3_206 2_6_103 set community 0:618 ip community-list standard 1_1_87 permit 65000:1 0:1 0:87 ip community-list standard 2_1_88 permit 65000:2 0:1 0:88 ip community-list standard 2_2_44 permit 65000:2 0:2 0:44 ip community-list standard 1_2_86 permit 65000:1 0:2 0:86 ip community-list standard 1_3_85 permit 65000:1 0:3 0:85 ip community-list standard 2_4_22 permit 65000:2 0:4 0:22 ip community-list standard 1_4_84 permit 65000:1 0:4 0:84 ip community-list standard 1_5_83 permit 65000:1 0:5 0:83 ip community-list standard 1_6_82 permit 65000:1 0:6 0:82 ip community-list standard 1_7_81 permit 65000:1 0:7 0:81 ip community-list standard 2_8_11 permit 65000:2 0:8 0:11 ip community-list standard 1_8_80 permit 65000:1 0:8 0:80 ip community-list standard 1_9_79 permit 65000:1 0:9 0:79 ip community-list standard 1_10_78 permit 65000:1 0:10 0:78 ip community-list standard 1_11_77 permit 65000:1 0:11 0:77 ip community-list standard 1_12_76 permit 65000:1 0:12 0:76 ip community-list standard 1_13_75 permit 65000:1 0:13 0:75 ip community-list standard 1_14_74 permit 65000:1 0:14 0:74 ip community-list standard 1_15_73 permit 65000:1 0:15 0:73 ip community-list standard 1_16_72 permit 65000:1 0:16 0:72 ip community-list standard 1_17_71 permit 65000:1 0:17 0:71 ip community-list standard 1_18_70 permit 65000:1 0:18 0:70 ip community-list standard 1_19_69 permit 65000:1 0:19 0:69 ip community-list standard 1_20_68 permit 65000:1 0:20 0:68 ip community-list standard 1_21_67 permit 65000:1 0:21 0:67 ip community-list standard 1_22_66 permit 65000:1 0:22 0:66 ip community-list standard 1_23_65 permit 65000:1 0:23 0:65 ip community-list standard 1_24_64 permit 65000:1 0:24 0:64 ip community-list standard 1_25_63 permit 65000:1 0:25 0:63 ip community-list standard 1_26_62 permit 65000:1 0:26 0:62 ip community-list standard 1_27_61 permit 65000:1 0:27 0:61 ip community-list standard 1_28_60 permit 65000:1 0:28 0:60 ip community-list standard 1_29_59 permit 65000:1 0:29 0:59 ip community-list standard 1_30_58 permit 65000:1 0:30 0:58 ip community-list standard 1_31_57 permit 65000:1 0:31 0:57 ip community-list standard 1_32_56 permit 65000:1 0:32 0:56 ip community-list standard 1_33_55 permit 65000:1 0:33 0:55 ip community-list standard 1_34_54 permit 65000:1 0:34 0:54 ip community-list standard 1_35_53 permit 65000:1 0:35 0:53 ip community-list standard 1_36_52 permit 65000:1 0:36 0:52 ip community-list standard 1_37_51 permit 65000:1 0:37 0:51 ip community-list standard 1_38_50 permit 65000:1 0:38 0:50 ip community-list standard 1_39_49 permit 65000:1 0:39 0:49 ip community-list standard 1_40_48 permit 65000:1 0:40 0:48 ip community-list standard 1_41_47 permit 65000:1 0:41 0:47 ip community-list standard 1_42_46 permit 65000:1 0:42 0:46 ip community-list standard 1_43_45 permit 65000:1 0:43 0:45 ip community-list standard 1_44_44 permit 65000:1 0:44 0:44 ip community-list expanded c88 permit 1 ^65000:4_0:88_0:1$ ip community-list expanded c88 permit 2 ^65000:3_0:89_0:1$ ip community-list expanded c88 permit 3 ^65000:3_0:90_0:2$ ip community-list expanded c88 permit 4 ^65000:3_0:91_0:3$ ip community-list expanded c88 permit 5 ^65000:3_0:92_0:4$ ip community-list expanded c88 permit 6 ^65000:3_0:93_0:5$ ip community-list expanded c88 permit 7 ^65000:3_0:94_0:6$ ip community-list expanded c88 permit 8 ^65000:3_0:95_0:7$ ip community-list expanded c88 permit 9 ^65000:3_0:96_0:8$ ip community-list expanded c88 permit 10 ^65000:3_0:97_0:9$ ip community-list expanded c88 permit 11 ^65000:3_0:98_0:10$ ip community-list expanded c88 permit 12 ^65000:3_0:99_0:11$ ip community-list expanded c88 permit 13 ^65000:3_0:100_0:12$ ip community-list expanded c88 permit 14 ^65000:3_0:101_0:13$ ip community-list expanded c88 permit 15 ^65000:3_0:102_0:14$ ip community-list expanded c88 permit 16 ^65000:3_0:103_0:15$ ip community-list expanded c88 permit 17 ^65000:3_0:104_0:16$ ip community-list expanded c88 permit 18 ^65000:3_0:105_0:17$ ip community-list expanded c88 permit 19 ^65000:3_0:106_0:18$ ip community-list expanded c88 permit 20 ^65000:3_0:107_0:19$ ip community-list expanded c88 permit 21 ^65000:3_0:108_0:20$ ip community-list expanded c88 permit 22 ^65000:3_0:109_0:21$ ip community-list expanded c88 permit 23 ^65000:3_0:110_0:22$ ip community-list expanded c88 permit 24 ^65000:3_0:111_0:23$ ip community-list expanded c88 permit 25 ^65000:3_0:112_0:24$ ip community-list expanded c88 permit 26 ^65000:3_0:113_0:25$ ip community-list expanded c88 permit 27 ^65000:3_0:114_0:26$ ip community-list expanded c88 permit 28 ^65000:3_0:115_0:27$ ip community-list expanded c88 permit 29 ^65000:3_0:116_0:28$ ip community-list expanded c88 permit 30 ^65000:3_0:117_0:29$ ip community-list expanded c88 permit 31 ^65000:3_0:118_0:30$ ip community-list expanded c88 permit 32 ^65000:3_0:119_0:31$ ip community-list expanded c88 permit 33 ^65000:3_0:120_0:32$ ip community-list expanded c88 permit 34 ^65000:3_0:121_0:33$ ip community-list expanded c88 permit 35 ^65000:3_0:122_0:34$ ip community-list expanded c88 permit 36 ^65000:3_0:123_0:35$ ip community-list expanded c88 permit 37 ^65000:3_0:124_0:36$ ip community-list expanded c88 permit 38 ^65000:3_0:125_0:37$ ip community-list expanded c88 permit 39 ^65000:3_0:126_0:38$ ip community-list expanded c88 permit 40 ^65000:3_0:127_0:39$ ip community-list expanded c88 permit 41 ^65000:3_0:128_0:40$ ip community-list expanded c88 permit 42 ^65000:3_0:129_0:41$ ip community-list expanded c88 permit 43 ^65000:3_0:130_0:42$ ip community-list expanded c88 permit 44 ^65000:3_0:131_0:43$ ip community-list expanded c88 permit 45 ^65000:3_0:132_0:44$ ip community-list expanded c88 permit 46 ^65000:3_0:133_0:45$ ip community-list expanded c88 permit 47 ^65000:3_0:134_0:46$ ip community-list expanded c88 permit 48 ^65000:3_0:135_0:47$ ip community-list expanded c88 permit 49 ^65000:3_0:136_0:48$ ip community-list expanded c88 permit 50 ^65000:3_0:137_0:49$ ip community-list expanded c88 permit 51 ^65000:3_0:138_0:50$ ip community-list expanded c88 permit 52 ^65000:3_0:139_0:51$ ip community-list expanded c88 permit 53 ^65000:3_0:140_0:52$ ip community-list expanded c88 permit 54 ^65000:3_0:141_0:53$ ip community-list expanded c88 permit 55 ^65000:3_0:142_0:54$ ip community-list expanded c88 permit 56 ^65000:3_0:143_0:55$ ip community-list expanded c88 permit 57 ^65000:3_0:144_0:56$ ip community-list expanded c88 permit 58 ^65000:3_0:145_0:57$ ip community-list expanded c88 permit 59 ^65000:3_0:146_0:58$ ip community-list expanded c88 permit 60 ^65000:3_0:147_0:59$ ip community-list expanded c88 permit 61 ^65000:3_0:148_0:60$ ip community-list expanded c88 permit 62 ^65000:3_0:149_0:61$ ip community-list expanded c88 permit 63 ^65000:3_0:150_0:62$ ip community-list expanded c88 permit 64 ^65000:3_0:151_0:63$ ip community-list expanded c88 permit 65 ^65000:3_0:152_0:64$ ip community-list expanded c88 permit 66 ^65000:3_0:153_0:65$ ip community-list expanded c88 permit 67 ^65000:3_0:154_0:66$ ip community-list expanded c88 permit 68 ^65000:3_0:155_0:67$ ip community-list expanded c88 permit 69 ^65000:3_0:156_0:68$ ip community-list expanded c88 permit 70 ^65000:3_0:157_0:69$ ip community-list expanded c88 permit 71 ^65000:3_0:158_0:70$ ip community-list expanded c88 permit 72 ^65000:3_0:159_0:71$ ip community-list expanded c88 permit 73 ^65000:3_0:160_0:72$ ip community-list expanded c88 permit 74 ^65000:3_0:161_0:73$ ip community-list expanded c88 permit 75 ^65000:3_0:162_0:74$ ip community-list expanded c88 permit 76 ^65000:3_0:163_0:75$ ip community-list expanded c88 permit 77 ^65000:3_0:164_0:76$ ip community-list expanded c88 permit 78 ^65000:3_0:165_0:77$ ip community-list expanded c88 permit 79 ^65000:3_0:166_0:78$ ip community-list expanded c88 permit 80 ^65000:3_0:167_0:79$ ip community-list expanded c88 permit 81 ^65000:3_0:168_0:80$ ip community-list expanded c88 permit 82 ^65000:3_0:169_0:81$ ip community-list expanded c88 permit 83 ^65000:3_0:170_0:82$ ip community-list expanded c88 permit 84 ^65000:3_0:171_0:83$ ip community-list expanded c88 permit 85 ^65000:3_0:172_0:84$ ip community-list expanded c88 permit 86 ^65000:3_0:173_0:85$ ip community-list expanded c88 permit 87 ^65000:3_0:174_0:86$ ip community-list expanded c88 permit 88 ^65000:3_0:175_0:87$ ip community-list expanded c88 permit 89 ^65000:4_0:176_0:2$ ip community-list expanded c88 permit 90 ^65000:3_0:176_0:88$ ip community-list expanded c88 permit 91 ^65000:4_0:177_0:2$ ip community-list expanded c88 permit 92 ^65000:3_0:177_0:89$ ip community-list expanded c88 permit 93 ^65000:3_0:178_0:90$ ip community-list expanded c88 permit 94 ^65000:3_0:179_0:91$ ip community-list expanded c88 permit 95 ^65000:3_0:180_0:92$ ip community-list expanded c88 permit 96 ^65000:3_0:181_0:93$ ip community-list expanded c88 permit 97 ^65000:3_0:182_0:94$ ip community-list expanded c88 permit 98 ^65000:3_0:183_0:95$ ip community-list expanded c88 permit 99 ^65000:3_0:184_0:96$ ip community-list expanded c88 permit 100 ^65000:3_0:185_0:97$ ip community-list expanded c88 permit 101 ^65000:3_0:186_0:98$ ip community-list expanded c88 permit 102 ^65000:3_0:187_0:99$ ip community-list expanded c88 permit 103 ^65000:3_0:188_0:100$ ip community-list expanded c88 permit 104 ^65000:3_0:189_0:101$ ip community-list expanded c88 permit 105 ^65000:3_0:190_0:102$ ip community-list expanded c88 permit 106 ^65000:3_0:191_0:103$ ip community-list expanded c88 permit 107 ^65000:3_0:192_0:104$ ip community-list expanded c88 permit 108 ^65000:3_0:193_0:105$ ip community-list expanded c88 permit 109 ^65000:3_0:194_0:106$ ip community-list expanded c88 permit 110 ^65000:3_0:195_0:107$ ip community-list expanded c88 permit 111 ^65000:3_0:196_0:108$ ip community-list expanded c88 permit 112 ^65000:3_0:197_0:109$ ip community-list expanded c88 permit 113 ^65000:3_0:198_0:110$ ip community-list expanded c88 permit 114 ^65000:3_0:199_0:111$ ip community-list expanded c88 permit 115 ^65000:3_0:200_0:112$ ip community-list expanded c88 permit 116 ^65000:3_0:201_0:113$ ip community-list expanded c88 permit 117 ^65000:3_0:202_0:114$ ip community-list expanded c88 permit 118 ^65000:3_0:203_0:115$ ip community-list expanded c88 permit 119 ^65000:3_0:204_0:116$ ip community-list expanded c88 permit 120 ^65000:3_0:205_0:117$ ip community-list expanded c88 permit 121 ^65000:3_0:206_0:118$ ip community-list expanded c88 permit 122 ^65000:3_0:207_0:119$ ip community-list expanded c88 permit 123 ^65000:3_0:208_0:120$ ip community-list expanded c88 permit 124 ^65000:3_0:209_0:121$ ip community-list expanded c88 permit 125 ^65000:3_0:210_0:122$ ip community-list expanded c88 permit 126 ^65000:3_0:211_0:123$ ip community-list expanded c88 permit 127 ^65000:3_0:212_0:124$ ip community-list expanded c88 permit 128 ^65000:3_0:213_0:125$ ip community-list expanded c88 permit 129 ^65000:3_0:214_0:126$ ip community-list expanded c88 permit 130 ^65000:3_0:215_0:127$ ip community-list expanded c88 permit 131 ^65000:3_0:216_0:128$ ip community-list expanded c88 permit 132 ^65000:3_0:217_0:129$ ip community-list expanded c88 permit 133 ^65000:3_0:218_0:130$ ip community-list expanded c88 permit 134 ^65000:3_0:219_0:131$ ip community-list expanded c88 permit 135 ^65000:3_0:220_0:132$ ip community-list expanded c88 permit 136 ^65000:3_0:221_0:133$ ip community-list expanded c88 permit 137 ^65000:3_0:222_0:134$ ip community-list expanded c88 permit 138 ^65000:3_0:223_0:135$ ip community-list expanded c88 permit 139 ^65000:3_0:224_0:136$ ip community-list expanded c88 permit 140 ^65000:3_0:225_0:137$ ip community-list expanded c88 permit 141 ^65000:3_0:226_0:138$ ip community-list expanded c88 permit 142 ^65000:3_0:227_0:139$ ip community-list expanded c88 permit 143 ^65000:3_0:228_0:140$ ip community-list expanded c88 permit 144 ^65000:3_0:229_0:141$ ip community-list expanded c88 permit 145 ^65000:3_0:230_0:142$ ip community-list expanded c88 permit 146 ^65000:3_0:231_0:143$ ip community-list expanded c88 permit 147 ^65000:3_0:232_0:144$ ip community-list expanded c88 permit 148 ^65000:3_0:233_0:145$ ip community-list expanded c88 permit 149 ^65000:3_0:234_0:146$ ip community-list expanded c88 permit 150 ^65000:3_0:235_0:147$ ip community-list expanded c88 permit 151 ^65000:3_0:236_0:148$ ip community-list expanded c88 permit 152 ^65000:3_0:237_0:149$ ip community-list expanded c88 permit 153 ^65000:3_0:238_0:150$ ip community-list expanded c88 permit 154 ^65000:3_0:239_0:151$ ip community-list expanded c88 permit 155 ^65000:3_0:240_0:152$ ip community-list expanded c88 permit 156 ^65000:3_0:241_0:153$ ip community-list expanded c88 permit 157 ^65000:3_0:242_0:154$ ip community-list expanded c88 permit 158 ^65000:3_0:243_0:155$ ip community-list expanded c88 permit 159 ^65000:3_0:244_0:156$ ip community-list expanded c88 permit 160 ^65000:3_0:245_0:157$ ip community-list expanded c88 permit 161 ^65000:3_0:246_0:158$ ip community-list expanded c88 permit 162 ^65000:3_0:247_0:159$ ip community-list expanded c88 permit 163 ^65000:3_0:248_0:160$ ip community-list expanded c88 permit 164 ^65000:3_0:249_0:161$ ip community-list expanded c88 permit 165 ^65000:3_0:250_0:162$ ip community-list expanded c88 permit 166 ^65000:3_0:251_0:163$ ip community-list expanded c88 permit 167 ^65000:3_0:252_0:164$ ip community-list expanded c88 permit 168 ^65000:3_0:253_0:165$ ip community-list expanded c88 permit 169 ^65000:3_0:254_0:166$ ip community-list expanded c88 permit 170 ^65000:3_0:255_0:167$ ip community-list expanded c88 permit 171 ^65000:3_0:256_0:168$ route-map calculator permit 9018 match community 1_1_87 2_1_88 2_2_44 1_2_86 1_3_85 set community 0:88 route-map calculator permit 9019 match community 2_4_22 1_4_84 1_5_83 1_6_82 1_7_81 set community 0:88 route-map calculator permit 9020 match community 2_8_11 1_8_80 1_9_79 1_10_78 1_11_77 set community 0:88 route-map calculator permit 9021 match community 1_12_76 1_13_75 1_14_74 1_15_73 1_16_72 set community 0:88 route-map calculator permit 9022 match community 1_17_71 1_18_70 1_19_69 1_20_68 1_21_67 set community 0:88 route-map calculator permit 9023 match community 1_22_66 1_23_65 1_24_64 1_25_63 1_26_62 set community 0:88 route-map calculator permit 9024 match community 1_27_61 1_28_60 1_29_59 1_30_58 1_31_57 set community 0:88 route-map calculator permit 9025 match community 1_32_56 1_33_55 1_34_54 1_35_53 1_36_52 set community 0:88 route-map calculator permit 9026 match community 1_37_51 1_38_50 1_39_49 1_40_48 1_41_47 set community 0:88 route-map calculator permit 9027 match community 1_42_46 1_43_45 1_44_44 c4_88_1 c3_89_1 set community 0:88 route-map calculator permit 9028 match community c3_90_2 c3_91_3 c3_92_4 c3_93_5 c3_94_6 set community 0:88 route-map calculator permit 9029 match community c3_95_7 c3_96_8 c3_97_9 c3_98_10 c3_99_11 set community 0:88 route-map calculator permit 9030 match community c3_100_12 c3_101_13 c3_102_14 c3_103_15 c3_104_16 set community 0:88 route-map calculator permit 9031 match community c3_105_17 c3_106_18 c3_107_19 c3_108_20 c3_109_21 set community 0:88 route-map calculator permit 9032 match community c3_110_22 c3_111_23 c3_112_24 c3_113_25 c3_114_26 set community 0:88 route-map calculator permit 9033 match community c3_115_27 c3_116_28 c3_117_29 c3_118_30 c3_119_31 set community 0:88 route-map calculator permit 9034 match community c3_120_32 c3_121_33 c3_122_34 c3_123_35 c3_124_36 set community 0:88 route-map calculator permit 9035 match community c3_125_37 c3_126_38 c3_127_39 c3_128_40 c3_129_41 set community 0:88 route-map calculator permit 9036 match community c3_130_42 c3_131_43 c3_132_44 c3_133_45 c3_134_46 set community 0:88 route-map calculator permit 9037 match community c3_135_47 c3_136_48 c3_137_49 c3_138_50 c3_139_51 set community 0:88 route-map calculator permit 9038 match community c3_140_52 c3_141_53 c3_142_54 c3_143_55 c3_144_56 set community 0:88 route-map calculator permit 9039 match community c3_145_57 c3_146_58 c3_147_59 c3_148_60 c3_149_61 set community 0:88 route-map calculator permit 9040 match community c3_150_62 c3_151_63 c3_152_64 c3_153_65 c3_154_66 set community 0:88 route-map calculator permit 9041 match community c3_155_67 c3_156_68 c3_157_69 c3_158_70 c3_159_71 set community 0:88 route-map calculator permit 9042 match community c3_160_72 c3_161_73 c3_162_74 c3_163_75 c3_164_76 set community 0:88 route-map calculator permit 9043 match community c3_165_77 c3_166_78 c3_167_79 c3_168_80 c3_169_81 set community 0:88 route-map calculator permit 9044 match community c3_170_82 c3_171_83 c3_172_84 c3_173_85 c3_174_86 set community 0:88 route-map calculator permit 9045 match community c3_175_87 c4_176_2 c3_176_88 c4_177_2 c3_177_89 set community 0:88 route-map calculator permit 9046 match community c3_178_90 c3_179_91 c3_180_92 c3_181_93 c3_182_94 set community 0:88 route-map calculator permit 9047 match community c3_183_95 c3_184_96 c3_185_97 c3_186_98 c3_187_99 set community 0:88 route-map calculator permit 9048 match community c3_188_100 c3_189_101 c3_190_102 c3_191_103 c3_192_104 set community 0:88 route-map calculator permit 9049 match community c3_193_105 c3_194_106 c3_195_107 c3_196_108 c3_197_109 set community 0:88 route-map calculator permit 9050 match community c3_198_110 c3_199_111 c3_200_112 c3_201_113 c3_202_114 set community 0:88 route-map calculator permit 9051 match community c3_203_115 c3_204_116 c3_205_117 c3_206_118 c3_207_119 set community 0:88 route-map calculator permit 9052 match community c3_208_120 c3_209_121 c3_210_122 c3_211_123 c3_212_124 set community 0:88 route-map calculator permit 9053 match community c3_213_125 c3_214_126 c3_215_127 c3_216_128 c3_217_129 set community 0:88 route-map calculator permit 9054 match community c3_218_130 c3_219_131 c3_220_132 c3_221_133 c3_222_134 set community 0:88 route-map calculator permit 9055 match community c3_223_135 c3_224_136 c3_225_137 c3_226_138 c3_227_139 set community 0:88 route-map calculator permit 9056 match community c3_228_140 c3_229_141 c3_230_142 c3_231_143 c3_232_144 set community 0:88 route-map calculator permit 9057 match community c3_233_145 c3_234_146 c3_235_147 c3_236_148 c3_237_149 set community 0:88 route-map calculator permit 9058 match community c3_238_150 c3_239_151 c3_240_152 c3_241_153 c3_242_154 set community 0:88 route-map calculator permit 9059 match community c3_243_155 c3_244_156 c3_245_157 c3_246_158 c3_247_159 set community 0:88 route-map calculator permit 9060 match community c3_248_160 c3_249_161 c3_250_162 c3_251_163 c3_252_164 set community 0:88 route-map calculator permit 9061 match community c3_253_165 c3_254_166 c3_255_167 c3_256_168 set community 0:88 ip community-list standard 2_227_235 permit 65000:2 0:227 0:235 route-map calculator permit 9062 match community 2_227_235 set community 0:53345 ip community-list standard 2_13_151 permit 65000:2 0:13 0:151 route-map calculator permit 9063 match community 2_13_151 set community 0:1963 ip community-list standard 2_101_204 permit 65000:2 0:101 0:204 ip community-list standard 2_102_202 permit 65000:2 0:102 0:202 route-map calculator permit 9064 match community 2_101_204 2_102_202 set community 0:20604 ip community-list standard 2_134_225 permit 65000:2 0:134 0:225 ip community-list standard 2_150_201 permit 65000:2 0:150 0:201 route-map calculator permit 9065 match community 2_134_225 2_150_201 set community 0:30150 ip community-list standard 2_45_233 permit 65000:2 0:45 0:233 route-map calculator permit 9066 match community 2_45_233 set community 0:10485 ip community-list standard 2_193_249 permit 65000:2 0:193 0:249 route-map calculator permit 9067 match community 2_193_249 set community 0:48057 ip community-list standard 2_158_193 permit 65000:2 0:158 0:193 route-map calculator permit 9068 match community 2_158_193 set community 0:30494 ip community-list standard 2_97_203 permit 65000:2 0:97 0:203 route-map calculator permit 9069 match community 2_97_203 set community 0:19691 ip community-list standard 2_140_151 permit 65000:2 0:140 0:151 route-map calculator permit 9070 match community 2_140_151 set community 0:21140 ip community-list standard 2_216_254 permit 65000:2 0:216 0:254 route-map calculator permit 9071 match community 2_216_254 set community 0:54864 ip community-list standard 2_116_131 permit 65000:2 0:116 0:131 route-map calculator permit 9072 match community 2_116_131 set community 0:15196 ip community-list standard 2_50_199 permit 65000:2 0:50 0:199 route-map calculator permit 9073 match community 2_50_199 set community 0:9950 ip community-list standard 2_39_127 permit 65000:2 0:39 0:127 route-map calculator permit 9074 match community 2_39_127 set community 0:4953 ip community-list standard 2_7_202 permit 65000:2 0:7 0:202 ip community-list standard 2_14_101 permit 65000:2 0:14 0:101 route-map calculator permit 9075 match community 2_7_202 2_14_101 set community 0:1414 ip community-list standard 2_23_229 permit 65000:2 0:23 0:229 route-map calculator permit 9076 match community 2_23_229 set community 0:5267 ip community-list standard 2_172_249 permit 65000:2 0:172 0:249 route-map calculator permit 9077 match community 2_172_249 set community 0:42828 ip community-list standard 2_53_113 permit 65000:2 0:53 0:113 route-map calculator permit 9078 match community 2_53_113 set community 0:5989 ip community-list standard 2_96_201 permit 65000:2 0:96 0:201 ip community-list standard 2_134_144 permit 65000:2 0:134 0:144 route-map calculator permit 9079 match community 2_96_201 2_134_144 set community 0:19296 ip community-list standard 2_60_255 permit 65000:2 0:60 0:255 ip community-list standard 2_68_225 permit 65000:2 0:68 0:225 ip community-list standard 2_75_204 permit 65000:2 0:75 0:204 ip community-list standard 2_85_180 permit 65000:2 0:85 0:180 ip community-list standard 2_90_170 permit 65000:2 0:90 0:170 ip community-list standard 2_100_153 permit 65000:2 0:100 0:153 ip community-list standard 2_102_150 permit 65000:2 0:102 0:150 route-map calculator permit 9080 match community 2_60_255 2_68_225 2_75_204 2_85_180 2_90_170 set community 0:15300 route-map calculator permit 9081 match community 2_100_153 2_102_150 set community 0:15300 ip community-list standard 2_79_166 permit 65000:2 0:79 0:166 ip community-list standard 2_83_158 permit 65000:2 0:83 0:158 route-map calculator permit 9082 match community 2_79_166 2_83_158 set community 0:13114 ip community-list standard 2_246_248 permit 65000:2 0:246 0:248 route-map calculator permit 9083 match community 2_246_248 set community 0:61008 ip community-list standard 2_83_101 permit 65000:2 0:83 0:101 route-map calculator permit 9084 match community 2_83_101 set community 0:8383 ip community-list standard 2_136_236 permit 65000:2 0:136 0:236 route-map calculator permit 9085 match community 2_136_236 set community 0:32096 ip community-list standard 2_113_256 permit 65000:2 0:113 0:256 ip community-list standard 2_128_226 permit 65000:2 0:128 0:226 route-map calculator permit 9086 match community 2_113_256 2_128_226 set community 0:28928 ip community-list standard 2_41_67 permit 65000:2 0:41 0:67 route-map calculator permit 9087 match community 2_41_67 set community 0:2747 ip community-list standard 2_176_204 permit 65000:2 0:176 0:204 ip community-list standard 2_187_192 permit 65000:2 0:187 0:192 route-map calculator permit 9088 match community 2_176_204 2_187_192 set community 0:35904 ip community-list standard 2_173_218 permit 65000:2 0:173 0:218 route-map calculator permit 9089 match community 2_173_218 set community 0:37714 ip community-list standard 2_65_173 permit 65000:2 0:65 0:173 route-map calculator permit 9090 match community 2_65_173 set community 0:11245 ip community-list standard 2_97_161 permit 65000:2 0:97 0:161 route-map calculator permit 9091 match community 2_97_161 set community 0:15617 ip community-list standard 2_90_242 permit 65000:2 0:90 0:242 ip community-list standard 2_99_220 permit 65000:2 0:99 0:220 ip community-list standard 2_110_198 permit 65000:2 0:110 0:198 ip community-list standard 2_121_180 permit 65000:2 0:121 0:180 ip community-list standard 2_132_165 permit 65000:2 0:132 0:165 route-map calculator permit 9092 match community 2_90_242 2_99_220 2_110_198 2_121_180 2_132_165 set community 0:21780 ip community-list standard 2_17_158 permit 65000:2 0:17 0:158 ip community-list standard 2_34_79 permit 65000:2 0:34 0:79 route-map calculator permit 9093 match community 2_17_158 2_34_79 set community 0:2686 ip community-list standard 2_170_230 permit 65000:2 0:170 0:230 route-map calculator permit 9094 match community 2_170_230 set community 0:39100 ip community-list standard 2_203_227 permit 65000:2 0:203 0:227 route-map calculator permit 9095 match community 2_203_227 set community 0:46081 ip community-list standard 2_58_193 permit 65000:2 0:58 0:193 route-map calculator permit 9096 match community 2_58_193 set community 0:11194 ip community-list standard 2_194_249 permit 65000:2 0:194 0:249 route-map calculator permit 9097 match community 2_194_249 set community 0:48306 ip community-list standard 2_219_244 permit 65000:2 0:219 0:244 route-map calculator permit 9098 match community 2_219_244 set community 0:53436 ip community-list standard 2_69_178 permit 65000:2 0:69 0:178 ip community-list standard 2_89_138 permit 65000:2 0:89 0:138 route-map calculator permit 9099 match community 2_69_178 2_89_138 set community 0:12282 ip community-list standard 1_1_124 permit 65000:1 0:1 0:124 ip community-list standard 2_1_125 permit 65000:2 0:1 0:125 ip community-list standard 1_2_123 permit 65000:1 0:2 0:123 ip community-list standard 1_3_122 permit 65000:1 0:3 0:122 ip community-list standard 1_4_121 permit 65000:1 0:4 0:121 ip community-list standard 2_5_25 permit 65000:2 0:5 0:25 ip community-list standard 1_5_120 permit 65000:1 0:5 0:120 ip community-list standard 1_6_119 permit 65000:1 0:6 0:119 ip community-list standard 1_7_118 permit 65000:1 0:7 0:118 ip community-list standard 1_8_117 permit 65000:1 0:8 0:117 ip community-list standard 1_9_116 permit 65000:1 0:9 0:116 ip community-list standard 1_10_115 permit 65000:1 0:10 0:115 ip community-list standard 1_11_114 permit 65000:1 0:11 0:114 ip community-list standard 1_12_113 permit 65000:1 0:12 0:113 ip community-list standard 1_13_112 permit 65000:1 0:13 0:112 ip community-list standard 1_14_111 permit 65000:1 0:14 0:111 ip community-list standard 1_15_110 permit 65000:1 0:15 0:110 ip community-list standard 1_16_109 permit 65000:1 0:16 0:109 ip community-list standard 1_17_108 permit 65000:1 0:17 0:108 ip community-list standard 1_18_107 permit 65000:1 0:18 0:107 ip community-list standard 1_19_106 permit 65000:1 0:19 0:106 ip community-list standard 1_20_105 permit 65000:1 0:20 0:105 ip community-list standard 1_21_104 permit 65000:1 0:21 0:104 ip community-list standard 1_22_103 permit 65000:1 0:22 0:103 ip community-list standard 1_23_102 permit 65000:1 0:23 0:102 ip community-list standard 1_24_101 permit 65000:1 0:24 0:101 ip community-list standard 1_25_100 permit 65000:1 0:25 0:100 ip community-list standard 1_26_99 permit 65000:1 0:26 0:99 ip community-list standard 1_27_98 permit 65000:1 0:27 0:98 ip community-list standard 1_28_97 permit 65000:1 0:28 0:97 ip community-list standard 1_29_96 permit 65000:1 0:29 0:96 ip community-list standard 1_30_95 permit 65000:1 0:30 0:95 ip community-list standard 1_31_94 permit 65000:1 0:31 0:94 ip community-list standard 1_32_93 permit 65000:1 0:32 0:93 ip community-list standard 1_33_92 permit 65000:1 0:33 0:92 ip community-list standard 1_34_91 permit 65000:1 0:34 0:91 ip community-list standard 1_35_90 permit 65000:1 0:35 0:90 ip community-list standard 1_36_89 permit 65000:1 0:36 0:89 ip community-list standard 1_37_88 permit 65000:1 0:37 0:88 ip community-list standard 1_38_87 permit 65000:1 0:38 0:87 ip community-list standard 1_39_86 permit 65000:1 0:39 0:86 ip community-list standard 1_40_85 permit 65000:1 0:40 0:85 ip community-list standard 1_41_84 permit 65000:1 0:41 0:84 ip community-list standard 1_42_83 permit 65000:1 0:42 0:83 ip community-list standard 1_43_82 permit 65000:1 0:43 0:82 ip community-list standard 1_44_81 permit 65000:1 0:44 0:81 ip community-list standard 1_45_80 permit 65000:1 0:45 0:80 ip community-list standard 1_46_79 permit 65000:1 0:46 0:79 ip community-list standard 1_47_78 permit 65000:1 0:47 0:78 ip community-list standard 1_48_77 permit 65000:1 0:48 0:77 ip community-list standard 1_49_76 permit 65000:1 0:49 0:76 ip community-list standard 1_50_75 permit 65000:1 0:50 0:75 ip community-list standard 1_51_74 permit 65000:1 0:51 0:74 ip community-list standard 1_52_73 permit 65000:1 0:52 0:73 ip community-list standard 1_53_72 permit 65000:1 0:53 0:72 ip community-list standard 1_54_71 permit 65000:1 0:54 0:71 ip community-list standard 1_55_70 permit 65000:1 0:55 0:70 ip community-list standard 1_56_69 permit 65000:1 0:56 0:69 ip community-list standard 1_57_68 permit 65000:1 0:57 0:68 ip community-list standard 1_58_67 permit 65000:1 0:58 0:67 ip community-list standard 1_59_66 permit 65000:1 0:59 0:66 ip community-list standard 1_60_65 permit 65000:1 0:60 0:65 ip community-list standard 1_61_64 permit 65000:1 0:61 0:64 ip community-list standard 1_62_63 permit 65000:1 0:62 0:63 ip community-list expanded c125 permit 1 ^65000:4_0:125_0:1$ ip community-list expanded c125 permit 2 ^65000:3_0:126_0:1$ ip community-list expanded c125 permit 3 ^65000:3_0:127_0:2$ ip community-list expanded c125 permit 4 ^65000:3_0:128_0:3$ ip community-list expanded c125 permit 5 ^65000:3_0:129_0:4$ ip community-list expanded c125 permit 6 ^65000:3_0:130_0:5$ ip community-list expanded c125 permit 7 ^65000:3_0:131_0:6$ ip community-list expanded c125 permit 8 ^65000:3_0:132_0:7$ ip community-list expanded c125 permit 9 ^65000:3_0:133_0:8$ ip community-list expanded c125 permit 10 ^65000:3_0:134_0:9$ ip community-list expanded c125 permit 11 ^65000:3_0:135_0:10$ ip community-list expanded c125 permit 12 ^65000:3_0:136_0:11$ ip community-list expanded c125 permit 13 ^65000:3_0:137_0:12$ ip community-list expanded c125 permit 14 ^65000:3_0:138_0:13$ ip community-list expanded c125 permit 15 ^65000:3_0:139_0:14$ ip community-list expanded c125 permit 16 ^65000:3_0:140_0:15$ ip community-list expanded c125 permit 17 ^65000:3_0:141_0:16$ ip community-list expanded c125 permit 18 ^65000:3_0:142_0:17$ ip community-list expanded c125 permit 19 ^65000:3_0:143_0:18$ ip community-list expanded c125 permit 20 ^65000:3_0:144_0:19$ ip community-list expanded c125 permit 21 ^65000:3_0:145_0:20$ ip community-list expanded c125 permit 22 ^65000:3_0:146_0:21$ ip community-list expanded c125 permit 23 ^65000:3_0:147_0:22$ ip community-list expanded c125 permit 24 ^65000:3_0:148_0:23$ ip community-list expanded c125 permit 25 ^65000:3_0:149_0:24$ ip community-list expanded c125 permit 26 ^65000:3_0:150_0:25$ ip community-list expanded c125 permit 27 ^65000:3_0:151_0:26$ ip community-list expanded c125 permit 28 ^65000:3_0:152_0:27$ ip community-list expanded c125 permit 29 ^65000:3_0:153_0:28$ ip community-list expanded c125 permit 30 ^65000:3_0:154_0:29$ ip community-list expanded c125 permit 31 ^65000:3_0:155_0:30$ ip community-list expanded c125 permit 32 ^65000:3_0:156_0:31$ ip community-list expanded c125 permit 33 ^65000:3_0:157_0:32$ ip community-list expanded c125 permit 34 ^65000:3_0:158_0:33$ ip community-list expanded c125 permit 35 ^65000:3_0:159_0:34$ ip community-list expanded c125 permit 36 ^65000:3_0:160_0:35$ ip community-list expanded c125 permit 37 ^65000:3_0:161_0:36$ ip community-list expanded c125 permit 38 ^65000:3_0:162_0:37$ ip community-list expanded c125 permit 39 ^65000:3_0:163_0:38$ ip community-list expanded c125 permit 40 ^65000:3_0:164_0:39$ ip community-list expanded c125 permit 41 ^65000:3_0:165_0:40$ ip community-list expanded c125 permit 42 ^65000:3_0:166_0:41$ ip community-list expanded c125 permit 43 ^65000:3_0:167_0:42$ ip community-list expanded c125 permit 44 ^65000:3_0:168_0:43$ ip community-list expanded c125 permit 45 ^65000:3_0:169_0:44$ ip community-list expanded c125 permit 46 ^65000:3_0:170_0:45$ ip community-list expanded c125 permit 47 ^65000:3_0:171_0:46$ ip community-list expanded c125 permit 48 ^65000:3_0:172_0:47$ ip community-list expanded c125 permit 49 ^65000:3_0:173_0:48$ ip community-list expanded c125 permit 50 ^65000:3_0:174_0:49$ ip community-list expanded c125 permit 51 ^65000:3_0:175_0:50$ ip community-list expanded c125 permit 52 ^65000:3_0:176_0:51$ ip community-list expanded c125 permit 53 ^65000:3_0:177_0:52$ ip community-list expanded c125 permit 54 ^65000:3_0:178_0:53$ ip community-list expanded c125 permit 55 ^65000:3_0:179_0:54$ ip community-list expanded c125 permit 56 ^65000:3_0:180_0:55$ ip community-list expanded c125 permit 57 ^65000:3_0:181_0:56$ ip community-list expanded c125 permit 58 ^65000:3_0:182_0:57$ ip community-list expanded c125 permit 59 ^65000:3_0:183_0:58$ ip community-list expanded c125 permit 60 ^65000:3_0:184_0:59$ ip community-list expanded c125 permit 61 ^65000:3_0:185_0:60$ ip community-list expanded c125 permit 62 ^65000:3_0:186_0:61$ ip community-list expanded c125 permit 63 ^65000:3_0:187_0:62$ ip community-list expanded c125 permit 64 ^65000:3_0:188_0:63$ ip community-list expanded c125 permit 65 ^65000:3_0:189_0:64$ ip community-list expanded c125 permit 66 ^65000:3_0:190_0:65$ ip community-list expanded c125 permit 67 ^65000:3_0:191_0:66$ ip community-list expanded c125 permit 68 ^65000:3_0:192_0:67$ ip community-list expanded c125 permit 69 ^65000:3_0:193_0:68$ ip community-list expanded c125 permit 70 ^65000:3_0:194_0:69$ ip community-list expanded c125 permit 71 ^65000:3_0:195_0:70$ ip community-list expanded c125 permit 72 ^65000:3_0:196_0:71$ ip community-list expanded c125 permit 73 ^65000:3_0:197_0:72$ ip community-list expanded c125 permit 74 ^65000:3_0:198_0:73$ ip community-list expanded c125 permit 75 ^65000:3_0:199_0:74$ ip community-list expanded c125 permit 76 ^65000:3_0:200_0:75$ ip community-list expanded c125 permit 77 ^65000:3_0:201_0:76$ ip community-list expanded c125 permit 78 ^65000:3_0:202_0:77$ ip community-list expanded c125 permit 79 ^65000:3_0:203_0:78$ ip community-list expanded c125 permit 80 ^65000:3_0:204_0:79$ ip community-list expanded c125 permit 81 ^65000:3_0:205_0:80$ ip community-list expanded c125 permit 82 ^65000:3_0:206_0:81$ ip community-list expanded c125 permit 83 ^65000:3_0:207_0:82$ ip community-list expanded c125 permit 84 ^65000:3_0:208_0:83$ ip community-list expanded c125 permit 85 ^65000:3_0:209_0:84$ ip community-list expanded c125 permit 86 ^65000:3_0:210_0:85$ ip community-list expanded c125 permit 87 ^65000:3_0:211_0:86$ ip community-list expanded c125 permit 88 ^65000:3_0:212_0:87$ ip community-list expanded c125 permit 89 ^65000:3_0:213_0:88$ ip community-list expanded c125 permit 90 ^65000:3_0:214_0:89$ ip community-list expanded c125 permit 91 ^65000:3_0:215_0:90$ ip community-list expanded c125 permit 92 ^65000:3_0:216_0:91$ ip community-list expanded c125 permit 93 ^65000:3_0:217_0:92$ ip community-list expanded c125 permit 94 ^65000:3_0:218_0:93$ ip community-list expanded c125 permit 95 ^65000:3_0:219_0:94$ ip community-list expanded c125 permit 96 ^65000:3_0:220_0:95$ ip community-list expanded c125 permit 97 ^65000:3_0:221_0:96$ ip community-list expanded c125 permit 98 ^65000:3_0:222_0:97$ ip community-list expanded c125 permit 99 ^65000:3_0:223_0:98$ ip community-list expanded c125 permit 100 ^65000:3_0:224_0:99$ ip community-list expanded c125 permit 101 ^65000:3_0:225_0:100$ ip community-list expanded c125 permit 102 ^65000:3_0:226_0:101$ ip community-list expanded c125 permit 103 ^65000:3_0:227_0:102$ ip community-list expanded c125 permit 104 ^65000:3_0:228_0:103$ ip community-list expanded c125 permit 105 ^65000:3_0:229_0:104$ ip community-list expanded c125 permit 106 ^65000:3_0:230_0:105$ ip community-list expanded c125 permit 107 ^65000:3_0:231_0:106$ ip community-list expanded c125 permit 108 ^65000:3_0:232_0:107$ ip community-list expanded c125 permit 109 ^65000:3_0:233_0:108$ ip community-list expanded c125 permit 110 ^65000:3_0:234_0:109$ ip community-list expanded c125 permit 111 ^65000:3_0:235_0:110$ ip community-list expanded c125 permit 112 ^65000:3_0:236_0:111$ ip community-list expanded c125 permit 113 ^65000:3_0:237_0:112$ ip community-list expanded c125 permit 114 ^65000:3_0:238_0:113$ ip community-list expanded c125 permit 115 ^65000:3_0:239_0:114$ ip community-list expanded c125 permit 116 ^65000:3_0:240_0:115$ ip community-list expanded c125 permit 117 ^65000:3_0:241_0:116$ ip community-list expanded c125 permit 118 ^65000:3_0:242_0:117$ ip community-list expanded c125 permit 119 ^65000:3_0:243_0:118$ ip community-list expanded c125 permit 120 ^65000:3_0:244_0:119$ ip community-list expanded c125 permit 121 ^65000:3_0:245_0:120$ ip community-list expanded c125 permit 122 ^65000:3_0:246_0:121$ ip community-list expanded c125 permit 123 ^65000:3_0:247_0:122$ ip community-list expanded c125 permit 124 ^65000:3_0:248_0:123$ ip community-list expanded c125 permit 125 ^65000:3_0:249_0:124$ ip community-list expanded c125 permit 126 ^65000:4_0:250_0:2$ ip community-list expanded c125 permit 127 ^65000:3_0:250_0:125$ ip community-list expanded c125 permit 128 ^65000:4_0:251_0:2$ ip community-list expanded c125 permit 129 ^65000:3_0:251_0:126$ ip community-list expanded c125 permit 130 ^65000:3_0:252_0:127$ ip community-list expanded c125 permit 131 ^65000:3_0:253_0:128$ ip community-list expanded c125 permit 132 ^65000:3_0:254_0:129$ ip community-list expanded c125 permit 133 ^65000:3_0:255_0:130$ ip community-list expanded c125 permit 134 ^65000:3_0:256_0:131$ route-map calculator permit 9100 match community 1_1_124 2_1_125 1_2_123 1_3_122 1_4_121 set community 0:125 route-map calculator permit 9101 match community 2_5_25 1_5_120 1_6_119 1_7_118 1_8_117 set community 0:125 route-map calculator permit 9102 match community 1_9_116 1_10_115 1_11_114 1_12_113 1_13_112 set community 0:125 route-map calculator permit 9103 match community 1_14_111 1_15_110 1_16_109 1_17_108 1_18_107 set community 0:125 route-map calculator permit 9104 match community 1_19_106 1_20_105 1_21_104 1_22_103 1_23_102 set community 0:125 route-map calculator permit 9105 match community 1_24_101 1_25_100 1_26_99 1_27_98 1_28_97 set community 0:125 route-map calculator permit 9106 match community 1_29_96 1_30_95 1_31_94 1_32_93 1_33_92 set community 0:125 route-map calculator permit 9107 match community 1_34_91 1_35_90 1_36_89 1_37_88 1_38_87 set community 0:125 route-map calculator permit 9108 match community 1_39_86 1_40_85 1_41_84 1_42_83 1_43_82 set community 0:125 route-map calculator permit 9109 match community 1_44_81 1_45_80 1_46_79 1_47_78 1_48_77 set community 0:125 route-map calculator permit 9110 match community 1_49_76 1_50_75 1_51_74 1_52_73 1_53_72 set community 0:125 route-map calculator permit 9111 match community 1_54_71 1_55_70 1_56_69 1_57_68 1_58_67 set community 0:125 route-map calculator permit 9112 match community 1_59_66 1_60_65 1_61_64 1_62_63 c4_125_1 set community 0:125 route-map calculator permit 9113 match community c3_126_1 c3_127_2 c3_128_3 c3_129_4 c3_130_5 set community 0:125 route-map calculator permit 9114 match community c3_131_6 c3_132_7 c3_133_8 c3_134_9 c3_135_10 set community 0:125 route-map calculator permit 9115 match community c3_136_11 c3_137_12 c3_138_13 c3_139_14 c3_140_15 set community 0:125 route-map calculator permit 9116 match community c3_141_16 c3_142_17 c3_143_18 c3_144_19 c3_145_20 set community 0:125 route-map calculator permit 9117 match community c3_146_21 c3_147_22 c3_148_23 c3_149_24 c3_150_25 set community 0:125 route-map calculator permit 9118 match community c3_151_26 c3_152_27 c3_153_28 c3_154_29 c3_155_30 set community 0:125 route-map calculator permit 9119 match community c3_156_31 c3_157_32 c3_158_33 c3_159_34 c3_160_35 set community 0:125 route-map calculator permit 9120 match community c3_161_36 c3_162_37 c3_163_38 c3_164_39 c3_165_40 set community 0:125 route-map calculator permit 9121 match community c3_166_41 c3_167_42 c3_168_43 c3_169_44 c3_170_45 set community 0:125 route-map calculator permit 9122 match community c3_171_46 c3_172_47 c3_173_48 c3_174_49 c3_175_50 set community 0:125 route-map calculator permit 9123 match community c3_176_51 c3_177_52 c3_178_53 c3_179_54 c3_180_55 set community 0:125 route-map calculator permit 9124 match community c3_181_56 c3_182_57 c3_183_58 c3_184_59 c3_185_60 set community 0:125 route-map calculator permit 9125 match community c3_186_61 c3_187_62 c3_188_63 c3_189_64 c3_190_65 set community 0:125 route-map calculator permit 9126 match community c3_191_66 c3_192_67 c3_193_68 c3_194_69 c3_195_70 set community 0:125 route-map calculator permit 9127 match community c3_196_71 c3_197_72 c3_198_73 c3_199_74 c3_200_75 set community 0:125 route-map calculator permit 9128 match community c3_201_76 c3_202_77 c3_203_78 c3_204_79 c3_205_80 set community 0:125 route-map calculator permit 9129 match community c3_206_81 c3_207_82 c3_208_83 c3_209_84 c3_210_85 set community 0:125 route-map calculator permit 9130 match community c3_211_86 c3_212_87 c3_213_88 c3_214_89 c3_215_90 set community 0:125 route-map calculator permit 9131 match community c3_216_91 c3_217_92 c3_218_93 c3_219_94 c3_220_95 set community 0:125 route-map calculator permit 9132 match community c3_221_96 c3_222_97 c3_223_98 c3_224_99 c3_225_100 set community 0:125 route-map calculator permit 9133 match community c3_226_101 c3_227_102 c3_228_103 c3_229_104 c3_230_105 set community 0:125 route-map calculator permit 9134 match community c3_231_106 c3_232_107 c3_233_108 c3_234_109 c3_235_110 set community 0:125 route-map calculator permit 9135 match community c3_236_111 c3_237_112 c3_238_113 c3_239_114 c3_240_115 set community 0:125 route-map calculator permit 9136 match community c3_241_116 c3_242_117 c3_243_118 c3_244_119 c3_245_120 set community 0:125 route-map calculator permit 9137 match community c3_246_121 c3_247_122 c3_248_123 c3_249_124 c4_250_2 set community 0:125 route-map calculator permit 9138 match community c3_250_125 c4_251_2 c3_251_126 c3_252_127 c3_253_128 set community 0:125 route-map calculator permit 9139 match community c3_254_129 c3_255_130 c3_256_131 set community 0:125 ip community-list standard 2_119_203 permit 65000:2 0:119 0:203 route-map calculator permit 9140 match community 2_119_203 set community 0:24157 ip community-list standard 2_2_234 permit 65000:2 0:2 0:234 ip community-list standard 2_3_156 permit 65000:2 0:3 0:156 ip community-list standard 2_4_117 permit 65000:2 0:4 0:117 ip community-list standard 2_6_78 permit 65000:2 0:6 0:78 ip community-list standard 2_9_52 permit 65000:2 0:9 0:52 ip community-list standard 2_12_39 permit 65000:2 0:12 0:39 ip community-list standard 2_13_36 permit 65000:2 0:13 0:36 ip community-list standard 2_18_26 permit 65000:2 0:18 0:26 ip community-list standard 1_212_256 permit 65000:1 0:212 0:256 ip community-list standard 1_213_255 permit 65000:1 0:213 0:255 ip community-list standard 1_214_254 permit 65000:1 0:214 0:254 ip community-list standard 1_215_253 permit 65000:1 0:215 0:253 ip community-list standard 1_216_252 permit 65000:1 0:216 0:252 ip community-list standard 1_217_251 permit 65000:1 0:217 0:251 ip community-list standard 1_218_250 permit 65000:1 0:218 0:250 ip community-list standard 1_219_249 permit 65000:1 0:219 0:249 ip community-list standard 1_220_248 permit 65000:1 0:220 0:248 ip community-list standard 1_221_247 permit 65000:1 0:221 0:247 ip community-list standard 1_222_246 permit 65000:1 0:222 0:246 ip community-list standard 1_223_245 permit 65000:1 0:223 0:245 ip community-list standard 1_224_244 permit 65000:1 0:224 0:244 ip community-list standard 1_225_243 permit 65000:1 0:225 0:243 ip community-list standard 1_226_242 permit 65000:1 0:226 0:242 ip community-list standard 1_227_241 permit 65000:1 0:227 0:241 ip community-list standard 1_228_240 permit 65000:1 0:228 0:240 ip community-list standard 1_229_239 permit 65000:1 0:229 0:239 ip community-list standard 1_230_238 permit 65000:1 0:230 0:238 ip community-list standard 1_231_237 permit 65000:1 0:231 0:237 ip community-list standard 1_232_236 permit 65000:1 0:232 0:236 ip community-list standard 1_233_235 permit 65000:1 0:233 0:235 ip community-list standard 1_234_234 permit 65000:1 0:234 0:234 route-map calculator permit 9141 match community 2_2_234 2_3_156 2_4_117 2_6_78 2_9_52 set community 0:468 route-map calculator permit 9142 match community 2_12_39 2_13_36 2_18_26 1_212_256 1_213_255 set community 0:468 route-map calculator permit 9143 match community 1_214_254 1_215_253 1_216_252 1_217_251 1_218_250 set community 0:468 route-map calculator permit 9144 match community 1_219_249 1_220_248 1_221_247 1_222_246 1_223_245 set community 0:468 route-map calculator permit 9145 match community 1_224_244 1_225_243 1_226_242 1_227_241 1_228_240 set community 0:468 route-map calculator permit 9146 match community 1_229_239 1_230_238 1_231_237 1_232_236 1_233_235 set community 0:468 route-map calculator permit 9147 match community 1_234_234 set community 0:468 ip community-list standard 2_19_242 permit 65000:2 0:19 0:242 ip community-list standard 2_22_209 permit 65000:2 0:22 0:209 ip community-list standard 2_38_121 permit 65000:2 0:38 0:121 route-map calculator permit 9148 match community 2_19_242 2_22_209 2_38_121 set community 0:4598 ip community-list standard 2_88_228 permit 65000:2 0:88 0:228 ip community-list standard 2_96_209 permit 65000:2 0:96 0:209 ip community-list standard 2_114_176 permit 65000:2 0:114 0:176 ip community-list standard 2_132_152 permit 65000:2 0:132 0:152 route-map calculator permit 9149 match community 2_88_228 2_96_209 2_114_176 2_132_152 set community 0:20064 ip community-list standard 2_132_250 permit 65000:2 0:132 0:250 ip community-list standard 2_150_220 permit 65000:2 0:150 0:220 ip community-list standard 2_165_200 permit 65000:2 0:165 0:200 route-map calculator permit 9150 match community 2_132_250 2_150_220 2_165_200 set community 0:33000 ip community-list standard 2_17_219 permit 65000:2 0:17 0:219 ip community-list standard 2_51_73 permit 65000:2 0:51 0:73 route-map calculator permit 9151 match community 2_17_219 2_51_73 set community 0:3723 ip community-list standard 2_33_232 permit 65000:2 0:33 0:232 ip community-list standard 2_44_174 permit 65000:2 0:44 0:174 ip community-list standard 2_58_132 permit 65000:2 0:58 0:132 ip community-list standard 2_66_116 permit 65000:2 0:66 0:116 ip community-list standard 2_87_88 permit 65000:2 0:87 0:88 route-map calculator permit 9152 match community 2_33_232 2_44_174 2_58_132 2_66_116 2_87_88 set community 0:7656 ip community-list standard 2_189_205 permit 65000:2 0:189 0:205 route-map calculator permit 9153 match community 2_189_205 set community 0:38745 ip community-list standard 2_17_89 permit 65000:2 0:17 0:89 route-map calculator permit 9154 match community 2_17_89 set community 0:1513 ip community-list standard 2_191_235 permit 65000:2 0:191 0:235 route-map calculator permit 9155 match community 2_191_235 set community 0:44885 ip community-list standard 2_87_121 permit 65000:2 0:87 0:121 route-map calculator permit 9156 match community 2_87_121 set community 0:10527 ip community-list standard 2_114_139 permit 65000:2 0:114 0:139 route-map calculator permit 9157 match community 2_114_139 set community 0:15846 ip community-list standard 2_166_176 permit 65000:2 0:166 0:176 route-map calculator permit 9158 match community 2_166_176 set community 0:29216 ip community-list standard 2_47_73 permit 65000:2 0:47 0:73 route-map calculator permit 9159 match community 2_47_73 set community 0:3431 ip community-list standard 2_139_153 permit 65000:2 0:139 0:153 route-map calculator permit 9160 match community 2_139_153 set community 0:21267 ip community-list standard 2_216_252 permit 65000:2 0:216 0:252 ip community-list standard 2_224_243 permit 65000:2 0:224 0:243 route-map calculator permit 9161 match community 2_216_252 2_224_243 set community 0:54432 ip community-list standard 2_147_232 permit 65000:2 0:147 0:232 ip community-list standard 2_168_203 permit 65000:2 0:168 0:203 ip community-list standard 2_174_196 permit 65000:2 0:174 0:196 route-map calculator permit 9162 match community 2_147_232 2_168_203 2_174_196 set community 0:34104 ip community-list standard 2_13_218 permit 65000:2 0:13 0:218 ip community-list standard 2_26_109 permit 65000:2 0:26 0:109 route-map calculator permit 9163 match community 2_13_218 2_26_109 set community 0:2834 ip community-list standard 2_52_250 permit 65000:2 0:52 0:250 ip community-list standard 2_65_200 permit 65000:2 0:65 0:200 ip community-list standard 2_100_130 permit 65000:2 0:100 0:130 ip community-list standard 2_104_125 permit 65000:2 0:104 0:125 route-map calculator permit 9164 match community 2_52_250 2_65_200 2_100_130 2_104_125 set community 0:13000 ip community-list standard 2_38_171 permit 65000:2 0:38 0:171 ip community-list standard 2_57_114 permit 65000:2 0:57 0:114 route-map calculator permit 9165 match community 2_38_171 2_57_114 set community 0:6498 ip community-list standard 2_155_191 permit 65000:2 0:155 0:191 route-map calculator permit 9166 match community 2_155_191 set community 0:29605 ip community-list standard 2_68_202 permit 65000:2 0:68 0:202 ip community-list standard 2_101_136 permit 65000:2 0:101 0:136 route-map calculator permit 9167 match community 2_68_202 2_101_136 set community 0:13736 ip community-list standard 2_24_228 permit 65000:2 0:24 0:228 ip community-list standard 2_32_171 permit 65000:2 0:32 0:171 ip community-list standard 2_36_152 permit 65000:2 0:36 0:152 ip community-list standard 2_38_144 permit 65000:2 0:38 0:144 ip community-list standard 2_48_114 permit 65000:2 0:48 0:114 ip community-list standard 2_57_96 permit 65000:2 0:57 0:96 ip community-list standard 2_72_76 permit 65000:2 0:72 0:76 route-map calculator permit 9168 match community 2_24_228 2_32_171 2_36_152 2_38_144 2_48_114 set community 0:5472 route-map calculator permit 9169 match community 2_57_96 2_72_76 set community 0:5472 ip community-list standard 2_164_244 permit 65000:2 0:164 0:244 route-map calculator permit 9170 match community 2_164_244 set community 0:40016 ip community-list standard 2_223_253 permit 65000:2 0:223 0:253 route-map calculator permit 9171 match community 2_223_253 set community 0:56419 ip community-list standard 2_221_236 permit 65000:2 0:221 0:236 route-map calculator permit 9172 match community 2_221_236 set community 0:52156 ip community-list standard 2_127_181 permit 65000:2 0:127 0:181 route-map calculator permit 9173 match community 2_127_181 set community 0:22987 ip community-list standard 2_10_158 permit 65000:2 0:10 0:158 ip community-list standard 2_20_79 permit 65000:2 0:20 0:79 route-map calculator permit 9174 match community 2_10_158 2_20_79 set community 0:1580 ip community-list standard 2_187_216 permit 65000:2 0:187 0:216 ip community-list standard 2_198_204 permit 65000:2 0:198 0:204 route-map calculator permit 9175 match community 2_187_216 2_198_204 set community 0:40392 ip community-list standard 2_164_188 permit 65000:2 0:164 0:188 route-map calculator permit 9176 match community 2_164_188 set community 0:30832 ip community-list standard 2_131_145 permit 65000:2 0:131 0:145 route-map calculator permit 9177 match community 2_131_145 set community 0:18995 ip community-list standard 2_55_59 permit 65000:2 0:55 0:59 route-map calculator permit 9178 match community 2_55_59 set community 0:3245 ip community-list standard 2_113_159 permit 65000:2 0:113 0:159 route-map calculator permit 9179 match community 2_113_159 set community 0:17967 ip community-list standard 2_94_139 permit 65000:2 0:94 0:139 route-map calculator permit 9180 match community 2_94_139 set community 0:13066 ip community-list standard 2_127_133 permit 65000:2 0:127 0:133 route-map calculator permit 9181 match community 2_127_133 set community 0:16891 ip community-list standard 2_218_250 permit 65000:2 0:218 0:250 route-map calculator permit 9182 match community 2_218_250 set community 0:54500 ip community-list standard 2_138_230 permit 65000:2 0:138 0:230 route-map calculator permit 9183 match community 2_138_230 set community 0:31740 ip community-list standard 2_147_182 permit 65000:2 0:147 0:182 route-map calculator permit 9184 match community 2_147_182 set community 0:26754 ip community-list standard 2_53_198 permit 65000:2 0:53 0:198 ip community-list standard 2_66_159 permit 65000:2 0:66 0:159 ip community-list standard 2_99_106 permit 65000:2 0:99 0:106 route-map calculator permit 9185 match community 2_53_198 2_66_159 2_99_106 set community 0:10494 ip community-list standard 2_49_196 permit 65000:2 0:49 0:196 ip community-list standard 2_98_98 permit 65000:2 0:98 0:98 route-map calculator permit 9186 match community 2_49_196 2_98_98 set community 0:9604 ip community-list standard 2_109_238 permit 65000:2 0:109 0:238 ip community-list standard 2_119_218 permit 65000:2 0:119 0:218 route-map calculator permit 9187 match community 2_109_238 2_119_218 set community 0:25942 ip community-list standard 2_148_220 permit 65000:2 0:148 0:220 ip community-list standard 2_176_185 permit 65000:2 0:176 0:185 route-map calculator permit 9188 match community 2_148_220 2_176_185 set community 0:32560 ip community-list standard 2_13_118 permit 65000:2 0:13 0:118 ip community-list standard 2_26_59 permit 65000:2 0:26 0:59 route-map calculator permit 9189 match community 2_13_118 2_26_59 set community 0:1534 ip community-list standard 2_6_206 permit 65000:2 0:6 0:206 ip community-list standard 2_12_103 permit 65000:2 0:12 0:103 route-map calculator permit 9190 match community 2_6_206 2_12_103 set community 0:1236 ip community-list standard 2_31_205 permit 65000:2 0:31 0:205 ip community-list standard 2_41_155 permit 65000:2 0:41 0:155 route-map calculator permit 9191 match community 2_31_205 2_41_155 set community 0:6355 ip community-list standard 2_52_169 permit 65000:2 0:52 0:169 route-map calculator permit 9192 match community 2_52_169 set community 0:8788 ip community-list standard 2_7_183 permit 65000:2 0:7 0:183 ip community-list standard 2_21_61 permit 65000:2 0:21 0:61 route-map calculator permit 9193 match community 2_7_183 2_21_61 set community 0:1281 ip community-list standard 2_9_228 permit 65000:2 0:9 0:228 ip community-list standard 2_12_171 permit 65000:2 0:12 0:171 ip community-list standard 2_18_114 permit 65000:2 0:18 0:114 ip community-list standard 2_19_108 permit 65000:2 0:19 0:108 ip community-list standard 2_27_76 permit 65000:2 0:27 0:76 ip community-list standard 2_36_57 permit 65000:2 0:36 0:57 ip community-list standard 2_38_54 permit 65000:2 0:38 0:54 route-map calculator permit 9194 match community 2_9_228 2_12_171 2_18_114 2_19_108 2_27_76 set community 0:2052 route-map calculator permit 9195 match community 2_36_57 2_38_54 set community 0:2052 ip community-list standard 2_43_212 permit 65000:2 0:43 0:212 ip community-list standard 2_53_172 permit 65000:2 0:53 0:172 ip community-list standard 2_86_106 permit 65000:2 0:86 0:106 route-map calculator permit 9196 match community 2_43_212 2_53_172 2_86_106 set community 0:9116 ip community-list standard 2_91_226 permit 65000:2 0:91 0:226 ip community-list standard 2_113_182 permit 65000:2 0:113 0:182 route-map calculator permit 9197 match community 2_91_226 2_113_182 set community 0:20566 ip community-list standard 2_73_234 permit 65000:2 0:73 0:234 ip community-list standard 2_78_219 permit 65000:2 0:78 0:219 ip community-list standard 2_117_146 permit 65000:2 0:117 0:146 route-map calculator permit 9198 match community 2_73_234 2_78_219 2_117_146 set community 0:17082 ip community-list standard 2_179_233 permit 65000:2 0:179 0:233 route-map calculator permit 9199 match community 2_179_233 set community 0:41707 ip community-list standard 2_19_193 permit 65000:2 0:19 0:193 route-map calculator permit 9200 match community 2_19_193 set community 0:3667 ip community-list standard 2_53_142 permit 65000:2 0:53 0:142 ip community-list standard 2_71_106 permit 65000:2 0:71 0:106 route-map calculator permit 9201 match community 2_53_142 2_71_106 set community 0:7526 ip community-list standard 2_38_181 permit 65000:2 0:38 0:181 route-map calculator permit 9202 match community 2_38_181 set community 0:6878 ip community-list standard 2_41_172 permit 65000:2 0:41 0:172 ip community-list standard 2_43_164 permit 65000:2 0:43 0:164 ip community-list standard 2_82_86 permit 65000:2 0:82 0:86 route-map calculator permit 9203 match community 2_41_172 2_43_164 2_82_86 set community 0:7052 ip community-list standard 2_230_240 permit 65000:2 0:230 0:240 route-map calculator permit 9204 match community 2_230_240 set community 0:55200 ip community-list standard 2_43_198 permit 65000:2 0:43 0:198 ip community-list standard 2_66_129 permit 65000:2 0:66 0:129 ip community-list standard 2_86_99 permit 65000:2 0:86 0:99 route-map calculator permit 9205 match community 2_43_198 2_66_129 2_86_99 set community 0:8514 ip community-list standard 2_175_246 permit 65000:2 0:175 0:246 ip community-list standard 2_205_210 permit 65000:2 0:205 0:210 route-map calculator permit 9206 match community 2_175_246 2_205_210 set community 0:43050 ip community-list standard 2_37_207 permit 65000:2 0:37 0:207 ip community-list standard 2_69_111 permit 65000:2 0:69 0:111 route-map calculator permit 9207 match community 2_37_207 2_69_111 set community 0:7659 ip community-list standard 2_173_235 permit 65000:2 0:173 0:235 route-map calculator permit 9208 match community 2_173_235 set community 0:40655 ip community-list standard 2_105_219 permit 65000:2 0:105 0:219 route-map calculator permit 9209 match community 2_105_219 set community 0:22995 ip community-list standard 2_28_237 permit 65000:2 0:28 0:237 ip community-list standard 2_42_158 permit 65000:2 0:42 0:158 ip community-list standard 2_79_84 permit 65000:2 0:79 0:84 route-map calculator permit 9210 match community 2_28_237 2_42_158 2_79_84 set community 0:6636 ip community-list standard 2_73_103 permit 65000:2 0:73 0:103 route-map calculator permit 9211 match community 2_73_103 set community 0:7519 ip community-list standard 2_11_118 permit 65000:2 0:11 0:118 ip community-list standard 2_22_59 permit 65000:2 0:22 0:59 route-map calculator permit 9212 match community 2_11_118 2_22_59 set community 0:1298 ip community-list standard 2_135_254 permit 65000:2 0:135 0:254 route-map calculator permit 9213 match community 2_135_254 set community 0:34290 ip community-list standard 2_185_246 permit 65000:2 0:185 0:246 ip community-list standard 2_205_222 permit 65000:2 0:205 0:222 route-map calculator permit 9214 match community 2_185_246 2_205_222 set community 0:45510 ip community-list standard 2_146_227 permit 65000:2 0:146 0:227 route-map calculator permit 9215 match community 2_146_227 set community 0:33142 ip community-list standard 2_14_251 permit 65000:2 0:14 0:251 route-map calculator permit 9216 match community 2_14_251 set community 0:3514 ip community-list standard 2_28_215 permit 65000:2 0:28 0:215 ip community-list standard 2_35_172 permit 65000:2 0:35 0:172 ip community-list standard 2_43_140 permit 65000:2 0:43 0:140 ip community-list standard 2_70_86 permit 65000:2 0:70 0:86 route-map calculator permit 9217 match community 2_28_215 2_35_172 2_43_140 2_70_86 set community 0:6020 ip community-list standard 2_219_221 permit 65000:2 0:219 0:221 route-map calculator permit 9218 match community 2_219_221 set community 0:48399 ip community-list standard 2_65_195 permit 65000:2 0:65 0:195 ip community-list standard 2_75_169 permit 65000:2 0:75 0:169 route-map calculator permit 9219 match community 2_65_195 2_75_169 set community 0:12675 ip community-list standard 2_227_256 permit 65000:2 0:227 0:256 route-map calculator permit 9220 match community 2_227_256 set community 0:58112 ip community-list standard 2_31_79 permit 65000:2 0:31 0:79 route-map calculator permit 9221 match community 2_31_79 set community 0:2449 ip community-list standard 2_131_204 permit 65000:2 0:131 0:204 route-map calculator permit 9222 match community 2_131_204 set community 0:26724 ip community-list standard 2_149_157 permit 65000:2 0:149 0:157 route-map calculator permit 9223 match community 2_149_157 set community 0:23393 ip community-list standard 2_116_249 permit 65000:2 0:116 0:249 ip community-list standard 2_166_174 permit 65000:2 0:166 0:174 route-map calculator permit 9224 match community 2_116_249 2_166_174 set community 0:28884 ip community-list standard 2_121_177 permit 65000:2 0:121 0:177 route-map calculator permit 9225 match community 2_121_177 set community 0:21417 ip community-list standard 2_58_251 permit 65000:2 0:58 0:251 route-map calculator permit 9226 match community 2_58_251 set community 0:14558 ip community-list standard 1_1_4 permit 65000:1 0:1 0:4 ip community-list standard 2_1_5 permit 65000:2 0:1 0:5 ip community-list standard 1_2_3 permit 65000:1 0:2 0:3 ip community-list expanded c5 permit 1 ^65000:4_0:5_0:1$ ip community-list expanded c5 permit 2 ^65000:3_0:6_0:1$ ip community-list expanded c5 permit 3 ^65000:3_0:7_0:2$ ip community-list expanded c5 permit 4 ^65000:3_0:8_0:3$ ip community-list expanded c5 permit 5 ^65000:3_0:9_0:4$ ip community-list expanded c5 permit 6 ^65000:4_0:10_0:2$ ip community-list expanded c5 permit 7 ^65000:3_0:10_0:5$ ip community-list expanded c5 permit 8 ^65000:4_0:11_0:2$ ip community-list expanded c5 permit 9 ^65000:3_0:11_0:6$ ip community-list expanded c5 permit 10 ^65000:3_0:12_0:7$ ip community-list expanded c5 permit 11 ^65000:3_0:13_0:8$ ip community-list expanded c5 permit 12 ^65000:3_0:14_0:9$ ip community-list expanded c5 permit 13 ^65000:4_0:15_0:3$ ip community-list expanded c5 permit 14 ^65000:3_0:15_0:10$ ip community-list expanded c5 permit 15 ^65000:4_0:16_0:3$ ip community-list expanded c5 permit 16 ^65000:3_0:16_0:11$ ip community-list expanded c5 permit 17 ^65000:4_0:17_0:3$ ip community-list expanded c5 permit 18 ^65000:3_0:17_0:12$ ip community-list expanded c5 permit 19 ^65000:3_0:18_0:13$ ip community-list expanded c5 permit 20 ^65000:3_0:19_0:14$ ip community-list expanded c5 permit 21 ^65000:4_0:20_0:4$ ip community-list expanded c5 permit 22 ^65000:3_0:20_0:15$ ip community-list expanded c5 permit 23 ^65000:4_0:21_0:4$ ip community-list expanded c5 permit 24 ^65000:3_0:21_0:16$ ip community-list expanded c5 permit 25 ^65000:4_0:22_0:4$ ip community-list expanded c5 permit 26 ^65000:3_0:22_0:17$ ip community-list expanded c5 permit 27 ^65000:4_0:23_0:4$ ip community-list expanded c5 permit 28 ^65000:3_0:23_0:18$ ip community-list expanded c5 permit 29 ^65000:3_0:24_0:19$ ip community-list expanded c5 permit 30 ^65000:4_0:25_0:5$ ip community-list expanded c5 permit 31 ^65000:3_0:25_0:20$ ip community-list expanded c5 permit 32 ^65000:4_0:26_0:5$ ip community-list expanded c5 permit 33 ^65000:3_0:26_0:21$ ip community-list expanded c5 permit 34 ^65000:4_0:27_0:5$ ip community-list expanded c5 permit 35 ^65000:3_0:27_0:22$ ip community-list expanded c5 permit 36 ^65000:4_0:28_0:5$ ip community-list expanded c5 permit 37 ^65000:3_0:28_0:23$ ip community-list expanded c5 permit 38 ^65000:4_0:29_0:5$ ip community-list expanded c5 permit 39 ^65000:3_0:29_0:24$ ip community-list expanded c5 permit 40 ^65000:4_0:30_0:6$ ip community-list expanded c5 permit 41 ^65000:3_0:30_0:25$ ip community-list expanded c5 permit 42 ^65000:4_0:31_0:6$ ip community-list expanded c5 permit 43 ^65000:3_0:31_0:26$ ip community-list expanded c5 permit 44 ^65000:4_0:32_0:6$ ip community-list expanded c5 permit 45 ^65000:3_0:32_0:27$ ip community-list expanded c5 permit 46 ^65000:4_0:33_0:6$ ip community-list expanded c5 permit 47 ^65000:3_0:33_0:28$ ip community-list expanded c5 permit 48 ^65000:4_0:34_0:6$ ip community-list expanded c5 permit 49 ^65000:3_0:34_0:29$ ip community-list expanded c5 permit 50 ^65000:4_0:35_0:6$ ip community-list expanded c5 permit 51 ^65000:4_0:35_0:7$ ip community-list expanded c5 permit 52 ^65000:3_0:35_0:30$ ip community-list expanded c5 permit 53 ^65000:4_0:36_0:7$ ip community-list expanded c5 permit 54 ^65000:3_0:36_0:31$ ip community-list expanded c5 permit 55 ^65000:4_0:37_0:7$ ip community-list expanded c5 permit 56 ^65000:3_0:37_0:32$ ip community-list expanded c5 permit 57 ^65000:4_0:38_0:7$ ip community-list expanded c5 permit 58 ^65000:3_0:38_0:33$ ip community-list expanded c5 permit 59 ^65000:4_0:39_0:7$ ip community-list expanded c5 permit 60 ^65000:3_0:39_0:34$ ip community-list expanded c5 permit 61 ^65000:4_0:40_0:7$ ip community-list expanded c5 permit 62 ^65000:4_0:40_0:8$ ip community-list expanded c5 permit 63 ^65000:3_0:40_0:35$ ip community-list expanded c5 permit 64 ^65000:4_0:41_0:7$ ip community-list expanded c5 permit 65 ^65000:4_0:41_0:8$ ip community-list expanded c5 permit 66 ^65000:3_0:41_0:36$ ip community-list expanded c5 permit 67 ^65000:4_0:42_0:8$ ip community-list expanded c5 permit 68 ^65000:3_0:42_0:37$ ip community-list expanded c5 permit 69 ^65000:4_0:43_0:8$ ip community-list expanded c5 permit 70 ^65000:3_0:43_0:38$ ip community-list expanded c5 permit 71 ^65000:4_0:44_0:8$ ip community-list expanded c5 permit 72 ^65000:3_0:44_0:39$ ip community-list expanded c5 permit 73 ^65000:4_0:45_0:8$ ip community-list expanded c5 permit 74 ^65000:4_0:45_0:9$ ip community-list expanded c5 permit 75 ^65000:3_0:45_0:40$ ip community-list expanded c5 permit 76 ^65000:4_0:46_0:8$ ip community-list expanded c5 permit 77 ^65000:4_0:46_0:9$ ip community-list expanded c5 permit 78 ^65000:3_0:46_0:41$ ip community-list expanded c5 permit 79 ^65000:4_0:47_0:8$ ip community-list expanded c5 permit 80 ^65000:4_0:47_0:9$ ip community-list expanded c5 permit 81 ^65000:3_0:47_0:42$ ip community-list expanded c5 permit 82 ^65000:4_0:48_0:9$ ip community-list expanded c5 permit 83 ^65000:3_0:48_0:43$ ip community-list expanded c5 permit 84 ^65000:4_0:49_0:9$ ip community-list expanded c5 permit 85 ^65000:3_0:49_0:44$ ip community-list expanded c5 permit 86 ^65000:4_0:50_0:9$ ip community-list expanded c5 permit 87 ^65000:4_0:50_0:10$ ip community-list expanded c5 permit 88 ^65000:3_0:50_0:45$ ip community-list expanded c5 permit 89 ^65000:4_0:51_0:9$ ip community-list expanded c5 permit 90 ^65000:4_0:51_0:10$ ip community-list expanded c5 permit 91 ^65000:3_0:51_0:46$ ip community-list expanded c5 permit 92 ^65000:4_0:52_0:9$ ip community-list expanded c5 permit 93 ^65000:4_0:52_0:10$ ip community-list expanded c5 permit 94 ^65000:3_0:52_0:47$ ip community-list expanded c5 permit 95 ^65000:4_0:53_0:9$ ip community-list expanded c5 permit 96 ^65000:4_0:53_0:10$ ip community-list expanded c5 permit 97 ^65000:3_0:53_0:48$ ip community-list expanded c5 permit 98 ^65000:4_0:54_0:10$ ip community-list expanded c5 permit 99 ^65000:3_0:54_0:49$ ip community-list expanded c5 permit 100 ^65000:4_0:55_0:10$ ip community-list expanded c5 permit 101 ^65000:4_0:55_0:11$ ip community-list expanded c5 permit 102 ^65000:3_0:55_0:50$ ip community-list expanded c5 permit 103 ^65000:4_0:56_0:10$ ip community-list expanded c5 permit 104 ^65000:4_0:56_0:11$ ip community-list expanded c5 permit 105 ^65000:3_0:56_0:51$ ip community-list expanded c5 permit 106 ^65000:4_0:57_0:10$ ip community-list expanded c5 permit 107 ^65000:4_0:57_0:11$ ip community-list expanded c5 permit 108 ^65000:3_0:57_0:52$ ip community-list expanded c5 permit 109 ^65000:4_0:58_0:10$ ip community-list expanded c5 permit 110 ^65000:4_0:58_0:11$ ip community-list expanded c5 permit 111 ^65000:3_0:58_0:53$ ip community-list expanded c5 permit 112 ^65000:4_0:59_0:10$ ip community-list expanded c5 permit 113 ^65000:4_0:59_0:11$ ip community-list expanded c5 permit 114 ^65000:3_0:59_0:54$ ip community-list expanded c5 permit 115 ^65000:4_0:60_0:11$ ip community-list expanded c5 permit 116 ^65000:4_0:60_0:12$ ip community-list expanded c5 permit 117 ^65000:3_0:60_0:55$ ip community-list expanded c5 permit 118 ^65000:4_0:61_0:11$ ip community-list expanded c5 permit 119 ^65000:4_0:61_0:12$ ip community-list expanded c5 permit 120 ^65000:3_0:61_0:56$ ip community-list expanded c5 permit 121 ^65000:4_0:62_0:11$ ip community-list expanded c5 permit 122 ^65000:4_0:62_0:12$ ip community-list expanded c5 permit 123 ^65000:3_0:62_0:57$ ip community-list expanded c5 permit 124 ^65000:4_0:63_0:11$ ip community-list expanded c5 permit 125 ^65000:4_0:63_0:12$ ip community-list expanded c5 permit 126 ^65000:3_0:63_0:58$ ip community-list expanded c5 permit 127 ^65000:4_0:64_0:11$ ip community-list expanded c5 permit 128 ^65000:4_0:64_0:12$ ip community-list expanded c5 permit 129 ^65000:3_0:64_0:59$ ip community-list expanded c5 permit 130 ^65000:4_0:65_0:11$ ip community-list expanded c5 permit 131 ^65000:4_0:65_0:12$ ip community-list expanded c5 permit 132 ^65000:4_0:65_0:13$ ip community-list expanded c5 permit 133 ^65000:3_0:65_0:60$ ip community-list expanded c5 permit 134 ^65000:4_0:66_0:12$ ip community-list expanded c5 permit 135 ^65000:4_0:66_0:13$ ip community-list expanded c5 permit 136 ^65000:3_0:66_0:61$ ip community-list expanded c5 permit 137 ^65000:4_0:67_0:12$ ip community-list expanded c5 permit 138 ^65000:4_0:67_0:13$ ip community-list expanded c5 permit 139 ^65000:3_0:67_0:62$ ip community-list expanded c5 permit 140 ^65000:4_0:68_0:12$ ip community-list expanded c5 permit 141 ^65000:4_0:68_0:13$ ip community-list expanded c5 permit 142 ^65000:3_0:68_0:63$ ip community-list expanded c5 permit 143 ^65000:4_0:69_0:12$ ip community-list expanded c5 permit 144 ^65000:4_0:69_0:13$ ip community-list expanded c5 permit 145 ^65000:3_0:69_0:64$ ip community-list expanded c5 permit 146 ^65000:4_0:70_0:12$ ip community-list expanded c5 permit 147 ^65000:4_0:70_0:13$ ip community-list expanded c5 permit 148 ^65000:4_0:70_0:14$ ip community-list expanded c5 permit 149 ^65000:3_0:70_0:65$ ip community-list expanded c5 permit 150 ^65000:4_0:71_0:12$ ip community-list expanded c5 permit 151 ^65000:4_0:71_0:13$ ip community-list expanded c5 permit 152 ^65000:4_0:71_0:14$ ip community-list expanded c5 permit 153 ^65000:3_0:71_0:66$ ip community-list expanded c5 permit 154 ^65000:4_0:72_0:13$ ip community-list expanded c5 permit 155 ^65000:4_0:72_0:14$ ip community-list expanded c5 permit 156 ^65000:3_0:72_0:67$ ip community-list expanded c5 permit 157 ^65000:4_0:73_0:13$ ip community-list expanded c5 permit 158 ^65000:4_0:73_0:14$ ip community-list expanded c5 permit 159 ^65000:3_0:73_0:68$ ip community-list expanded c5 permit 160 ^65000:4_0:74_0:13$ ip community-list expanded c5 permit 161 ^65000:4_0:74_0:14$ ip community-list expanded c5 permit 162 ^65000:3_0:74_0:69$ ip community-list expanded c5 permit 163 ^65000:4_0:75_0:13$ ip community-list expanded c5 permit 164 ^65000:4_0:75_0:14$ ip community-list expanded c5 permit 165 ^65000:4_0:75_0:15$ ip community-list expanded c5 permit 166 ^65000:3_0:75_0:70$ ip community-list expanded c5 permit 167 ^65000:4_0:76_0:13$ ip community-list expanded c5 permit 168 ^65000:4_0:76_0:14$ ip community-list expanded c5 permit 169 ^65000:4_0:76_0:15$ ip community-list expanded c5 permit 170 ^65000:3_0:76_0:71$ ip community-list expanded c5 permit 171 ^65000:4_0:77_0:13$ ip community-list expanded c5 permit 172 ^65000:4_0:77_0:14$ ip community-list expanded c5 permit 173 ^65000:4_0:77_0:15$ ip community-list expanded c5 permit 174 ^65000:3_0:77_0:72$ ip community-list expanded c5 permit 175 ^65000:4_0:78_0:14$ ip community-list expanded c5 permit 176 ^65000:4_0:78_0:15$ ip community-list expanded c5 permit 177 ^65000:3_0:78_0:73$ ip community-list expanded c5 permit 178 ^65000:4_0:79_0:14$ ip community-list expanded c5 permit 179 ^65000:4_0:79_0:15$ ip community-list expanded c5 permit 180 ^65000:3_0:79_0:74$ ip community-list expanded c5 permit 181 ^65000:4_0:80_0:14$ ip community-list expanded c5 permit 182 ^65000:4_0:80_0:15$ ip community-list expanded c5 permit 183 ^65000:4_0:80_0:16$ ip community-list expanded c5 permit 184 ^65000:3_0:80_0:75$ ip community-list expanded c5 permit 185 ^65000:4_0:81_0:14$ ip community-list expanded c5 permit 186 ^65000:4_0:81_0:15$ ip community-list expanded c5 permit 187 ^65000:4_0:81_0:16$ ip community-list expanded c5 permit 188 ^65000:3_0:81_0:76$ ip community-list expanded c5 permit 189 ^65000:4_0:82_0:14$ ip community-list expanded c5 permit 190 ^65000:4_0:82_0:15$ ip community-list expanded c5 permit 191 ^65000:4_0:82_0:16$ ip community-list expanded c5 permit 192 ^65000:3_0:82_0:77$ ip community-list expanded c5 permit 193 ^65000:4_0:83_0:14$ ip community-list expanded c5 permit 194 ^65000:4_0:83_0:15$ ip community-list expanded c5 permit 195 ^65000:4_0:83_0:16$ ip community-list expanded c5 permit 196 ^65000:3_0:83_0:78$ ip community-list expanded c5 permit 197 ^65000:4_0:84_0:15$ ip community-list expanded c5 permit 198 ^65000:4_0:84_0:16$ ip community-list expanded c5 permit 199 ^65000:3_0:84_0:79$ ip community-list expanded c5 permit 200 ^65000:4_0:85_0:15$ ip community-list expanded c5 permit 201 ^65000:4_0:85_0:16$ ip community-list expanded c5 permit 202 ^65000:4_0:85_0:17$ ip community-list expanded c5 permit 203 ^65000:3_0:85_0:80$ ip community-list expanded c5 permit 204 ^65000:4_0:86_0:15$ ip community-list expanded c5 permit 205 ^65000:4_0:86_0:16$ ip community-list expanded c5 permit 206 ^65000:4_0:86_0:17$ ip community-list expanded c5 permit 207 ^65000:3_0:86_0:81$ ip community-list expanded c5 permit 208 ^65000:4_0:87_0:15$ ip community-list expanded c5 permit 209 ^65000:4_0:87_0:16$ ip community-list expanded c5 permit 210 ^65000:4_0:87_0:17$ ip community-list expanded c5 permit 211 ^65000:3_0:87_0:82$ ip community-list expanded c5 permit 212 ^65000:4_0:88_0:15$ ip community-list expanded c5 permit 213 ^65000:4_0:88_0:16$ ip community-list expanded c5 permit 214 ^65000:4_0:88_0:17$ ip community-list expanded c5 permit 215 ^65000:3_0:88_0:83$ ip community-list expanded c5 permit 216 ^65000:4_0:89_0:15$ ip community-list expanded c5 permit 217 ^65000:4_0:89_0:16$ ip community-list expanded c5 permit 218 ^65000:4_0:89_0:17$ ip community-list expanded c5 permit 219 ^65000:3_0:89_0:84$ ip community-list expanded c5 permit 220 ^65000:4_0:90_0:16$ ip community-list expanded c5 permit 221 ^65000:4_0:90_0:17$ ip community-list expanded c5 permit 222 ^65000:4_0:90_0:18$ ip community-list expanded c5 permit 223 ^65000:3_0:90_0:85$ ip community-list expanded c5 permit 224 ^65000:4_0:91_0:16$ ip community-list expanded c5 permit 225 ^65000:4_0:91_0:17$ ip community-list expanded c5 permit 226 ^65000:4_0:91_0:18$ ip community-list expanded c5 permit 227 ^65000:3_0:91_0:86$ ip community-list expanded c5 permit 228 ^65000:4_0:92_0:16$ ip community-list expanded c5 permit 229 ^65000:4_0:92_0:17$ ip community-list expanded c5 permit 230 ^65000:4_0:92_0:18$ ip community-list expanded c5 permit 231 ^65000:3_0:92_0:87$ ip community-list expanded c5 permit 232 ^65000:4_0:93_0:16$ ip community-list expanded c5 permit 233 ^65000:4_0:93_0:17$ ip community-list expanded c5 permit 234 ^65000:4_0:93_0:18$ ip community-list expanded c5 permit 235 ^65000:3_0:93_0:88$ ip community-list expanded c5 permit 236 ^65000:4_0:94_0:16$ ip community-list expanded c5 permit 237 ^65000:4_0:94_0:17$ ip community-list expanded c5 permit 238 ^65000:4_0:94_0:18$ ip community-list expanded c5 permit 239 ^65000:3_0:94_0:89$ ip community-list expanded c5 permit 240 ^65000:4_0:95_0:16$ ip community-list expanded c5 permit 241 ^65000:4_0:95_0:17$ ip community-list expanded c5 permit 242 ^65000:4_0:95_0:18$ ip community-list expanded c5 permit 243 ^65000:4_0:95_0:19$ ip community-list expanded c5 permit 244 ^65000:3_0:95_0:90$ ip community-list expanded c5 permit 245 ^65000:4_0:96_0:17$ ip community-list expanded c5 permit 246 ^65000:4_0:96_0:18$ ip community-list expanded c5 permit 247 ^65000:4_0:96_0:19$ ip community-list expanded c5 permit 248 ^65000:3_0:96_0:91$ ip community-list expanded c5 permit 249 ^65000:4_0:97_0:17$ ip community-list expanded c5 permit 250 ^65000:4_0:97_0:18$ ip community-list expanded c5 permit 251 ^65000:4_0:97_0:19$ ip community-list expanded c5 permit 252 ^65000:3_0:97_0:92$ ip community-list expanded c5 permit 253 ^65000:4_0:98_0:17$ ip community-list expanded c5 permit 254 ^65000:4_0:98_0:18$ ip community-list expanded c5 permit 255 ^65000:4_0:98_0:19$ ip community-list expanded c5 permit 256 ^65000:3_0:98_0:93$ ip community-list expanded c5 permit 257 ^65000:4_0:99_0:17$ ip community-list expanded c5 permit 258 ^65000:4_0:99_0:18$ ip community-list expanded c5 permit 259 ^65000:4_0:99_0:19$ ip community-list expanded c5 permit 260 ^65000:3_0:99_0:94$ ip community-list expanded c5 permit 261 ^65000:4_0:100_0:17$ ip community-list expanded c5 permit 262 ^65000:4_0:100_0:18$ ip community-list expanded c5 permit 263 ^65000:4_0:100_0:19$ ip community-list expanded c5 permit 264 ^65000:4_0:100_0:20$ ip community-list expanded c5 permit 265 ^65000:3_0:100_0:95$ ip community-list expanded c5 permit 266 ^65000:4_0:101_0:17$ ip community-list expanded c5 permit 267 ^65000:4_0:101_0:18$ ip community-list expanded c5 permit 268 ^65000:4_0:101_0:19$ ip community-list expanded c5 permit 269 ^65000:4_0:101_0:20$ ip community-list expanded c5 permit 270 ^65000:3_0:101_0:96$ ip community-list expanded c5 permit 271 ^65000:4_0:102_0:18$ ip community-list expanded c5 permit 272 ^65000:4_0:102_0:19$ ip community-list expanded c5 permit 273 ^65000:4_0:102_0:20$ ip community-list expanded c5 permit 274 ^65000:3_0:102_0:97$ ip community-list expanded c5 permit 275 ^65000:4_0:103_0:18$ ip community-list expanded c5 permit 276 ^65000:4_0:103_0:19$ ip community-list expanded c5 permit 277 ^65000:4_0:103_0:20$ ip community-list expanded c5 permit 278 ^65000:3_0:103_0:98$ ip community-list expanded c5 permit 279 ^65000:4_0:104_0:18$ ip community-list expanded c5 permit 280 ^65000:4_0:104_0:19$ ip community-list expanded c5 permit 281 ^65000:4_0:104_0:20$ ip community-list expanded c5 permit 282 ^65000:3_0:104_0:99$ ip community-list expanded c5 permit 283 ^65000:4_0:105_0:18$ ip community-list expanded c5 permit 284 ^65000:4_0:105_0:19$ ip community-list expanded c5 permit 285 ^65000:4_0:105_0:20$ ip community-list expanded c5 permit 286 ^65000:4_0:105_0:21$ ip community-list expanded c5 permit 287 ^65000:3_0:105_0:100$ ip community-list expanded c5 permit 288 ^65000:4_0:106_0:18$ ip community-list expanded c5 permit 289 ^65000:4_0:106_0:19$ ip community-list expanded c5 permit 290 ^65000:4_0:106_0:20$ ip community-list expanded c5 permit 291 ^65000:4_0:106_0:21$ ip community-list expanded c5 permit 292 ^65000:3_0:106_0:101$ ip community-list expanded c5 permit 293 ^65000:4_0:107_0:18$ ip community-list expanded c5 permit 294 ^65000:4_0:107_0:19$ ip community-list expanded c5 permit 295 ^65000:4_0:107_0:20$ ip community-list expanded c5 permit 296 ^65000:4_0:107_0:21$ ip community-list expanded c5 permit 297 ^65000:3_0:107_0:102$ ip community-list expanded c5 permit 298 ^65000:4_0:108_0:19$ ip community-list expanded c5 permit 299 ^65000:4_0:108_0:20$ ip community-list expanded c5 permit 300 ^65000:4_0:108_0:21$ ip community-list expanded c5 permit 301 ^65000:3_0:108_0:103$ ip community-list expanded c5 permit 302 ^65000:4_0:109_0:19$ ip community-list expanded c5 permit 303 ^65000:4_0:109_0:20$ ip community-list expanded c5 permit 304 ^65000:4_0:109_0:21$ ip community-list expanded c5 permit 305 ^65000:3_0:109_0:104$ ip community-list expanded c5 permit 306 ^65000:4_0:110_0:19$ ip community-list expanded c5 permit 307 ^65000:4_0:110_0:20$ ip community-list expanded c5 permit 308 ^65000:4_0:110_0:21$ ip community-list expanded c5 permit 309 ^65000:4_0:110_0:22$ ip community-list expanded c5 permit 310 ^65000:3_0:110_0:105$ ip community-list expanded c5 permit 311 ^65000:4_0:111_0:19$ ip community-list expanded c5 permit 312 ^65000:4_0:111_0:20$ ip community-list expanded c5 permit 313 ^65000:4_0:111_0:21$ ip community-list expanded c5 permit 314 ^65000:4_0:111_0:22$ ip community-list expanded c5 permit 315 ^65000:3_0:111_0:106$ ip community-list expanded c5 permit 316 ^65000:4_0:112_0:19$ ip community-list expanded c5 permit 317 ^65000:4_0:112_0:20$ ip community-list expanded c5 permit 318 ^65000:4_0:112_0:21$ ip community-list expanded c5 permit 319 ^65000:4_0:112_0:22$ ip community-list expanded c5 permit 320 ^65000:3_0:112_0:107$ ip community-list expanded c5 permit 321 ^65000:4_0:113_0:19$ ip community-list expanded c5 permit 322 ^65000:4_0:113_0:20$ ip community-list expanded c5 permit 323 ^65000:4_0:113_0:21$ ip community-list expanded c5 permit 324 ^65000:4_0:113_0:22$ ip community-list expanded c5 permit 325 ^65000:3_0:113_0:108$ ip community-list expanded c5 permit 326 ^65000:4_0:114_0:20$ ip community-list expanded c5 permit 327 ^65000:4_0:114_0:21$ ip community-list expanded c5 permit 328 ^65000:4_0:114_0:22$ ip community-list expanded c5 permit 329 ^65000:3_0:114_0:109$ ip community-list expanded c5 permit 330 ^65000:4_0:115_0:20$ ip community-list expanded c5 permit 331 ^65000:4_0:115_0:21$ ip community-list expanded c5 permit 332 ^65000:4_0:115_0:22$ ip community-list expanded c5 permit 333 ^65000:4_0:115_0:23$ ip community-list expanded c5 permit 334 ^65000:3_0:115_0:110$ ip community-list expanded c5 permit 335 ^65000:4_0:116_0:20$ ip community-list expanded c5 permit 336 ^65000:4_0:116_0:21$ ip community-list expanded c5 permit 337 ^65000:4_0:116_0:22$ ip community-list expanded c5 permit 338 ^65000:4_0:116_0:23$ ip community-list expanded c5 permit 339 ^65000:3_0:116_0:111$ ip community-list expanded c5 permit 340 ^65000:4_0:117_0:20$ ip community-list expanded c5 permit 341 ^65000:4_0:117_0:21$ ip community-list expanded c5 permit 342 ^65000:4_0:117_0:22$ ip community-list expanded c5 permit 343 ^65000:4_0:117_0:23$ ip community-list expanded c5 permit 344 ^65000:3_0:117_0:112$ ip community-list expanded c5 permit 345 ^65000:4_0:118_0:20$ ip community-list expanded c5 permit 346 ^65000:4_0:118_0:21$ ip community-list expanded c5 permit 347 ^65000:4_0:118_0:22$ ip community-list expanded c5 permit 348 ^65000:4_0:118_0:23$ ip community-list expanded c5 permit 349 ^65000:3_0:118_0:113$ ip community-list expanded c5 permit 350 ^65000:4_0:119_0:20$ ip community-list expanded c5 permit 351 ^65000:4_0:119_0:21$ ip community-list expanded c5 permit 352 ^65000:4_0:119_0:22$ ip community-list expanded c5 permit 353 ^65000:4_0:119_0:23$ ip community-list expanded c5 permit 354 ^65000:3_0:119_0:114$ ip community-list expanded c5 permit 355 ^65000:4_0:120_0:21$ ip community-list expanded c5 permit 356 ^65000:4_0:120_0:22$ ip community-list expanded c5 permit 357 ^65000:4_0:120_0:23$ ip community-list expanded c5 permit 358 ^65000:4_0:120_0:24$ ip community-list expanded c5 permit 359 ^65000:3_0:120_0:115$ ip community-list expanded c5 permit 360 ^65000:4_0:121_0:21$ ip community-list expanded c5 permit 361 ^65000:4_0:121_0:22$ ip community-list expanded c5 permit 362 ^65000:4_0:121_0:23$ ip community-list expanded c5 permit 363 ^65000:4_0:121_0:24$ ip community-list expanded c5 permit 364 ^65000:3_0:121_0:116$ ip community-list expanded c5 permit 365 ^65000:4_0:122_0:21$ ip community-list expanded c5 permit 366 ^65000:4_0:122_0:22$ ip community-list expanded c5 permit 367 ^65000:4_0:122_0:23$ ip community-list expanded c5 permit 368 ^65000:4_0:122_0:24$ ip community-list expanded c5 permit 369 ^65000:3_0:122_0:117$ ip community-list expanded c5 permit 370 ^65000:4_0:123_0:21$ ip community-list expanded c5 permit 371 ^65000:4_0:123_0:22$ ip community-list expanded c5 permit 372 ^65000:4_0:123_0:23$ ip community-list expanded c5 permit 373 ^65000:4_0:123_0:24$ ip community-list expanded c5 permit 374 ^65000:3_0:123_0:118$ ip community-list expanded c5 permit 375 ^65000:4_0:124_0:21$ ip community-list expanded c5 permit 376 ^65000:4_0:124_0:22$ ip community-list expanded c5 permit 377 ^65000:4_0:124_0:23$ ip community-list expanded c5 permit 378 ^65000:4_0:124_0:24$ ip community-list expanded c5 permit 379 ^65000:3_0:124_0:119$ ip community-list expanded c5 permit 380 ^65000:4_0:125_0:21$ ip community-list expanded c5 permit 381 ^65000:4_0:125_0:22$ ip community-list expanded c5 permit 382 ^65000:4_0:125_0:23$ ip community-list expanded c5 permit 383 ^65000:4_0:125_0:24$ ip community-list expanded c5 permit 384 ^65000:4_0:125_0:25$ ip community-list expanded c5 permit 385 ^65000:3_0:125_0:120$ ip community-list expanded c5 permit 386 ^65000:4_0:126_0:22$ ip community-list expanded c5 permit 387 ^65000:4_0:126_0:23$ ip community-list expanded c5 permit 388 ^65000:4_0:126_0:24$ ip community-list expanded c5 permit 389 ^65000:4_0:126_0:25$ ip community-list expanded c5 permit 390 ^65000:3_0:126_0:121$ ip community-list expanded c5 permit 391 ^65000:4_0:127_0:22$ ip community-list expanded c5 permit 392 ^65000:4_0:127_0:23$ ip community-list expanded c5 permit 393 ^65000:4_0:127_0:24$ ip community-list expanded c5 permit 394 ^65000:4_0:127_0:25$ ip community-list expanded c5 permit 395 ^65000:3_0:127_0:122$ ip community-list expanded c5 permit 396 ^65000:4_0:128_0:22$ ip community-list expanded c5 permit 397 ^65000:4_0:128_0:23$ ip community-list expanded c5 permit 398 ^65000:4_0:128_0:24$ ip community-list expanded c5 permit 399 ^65000:4_0:128_0:25$ ip community-list expanded c5 permit 400 ^65000:3_0:128_0:123$ ip community-list expanded c5 permit 401 ^65000:4_0:129_0:22$ ip community-list expanded c5 permit 402 ^65000:4_0:129_0:23$ ip community-list expanded c5 permit 403 ^65000:4_0:129_0:24$ ip community-list expanded c5 permit 404 ^65000:4_0:129_0:25$ ip community-list expanded c5 permit 405 ^65000:3_0:129_0:124$ ip community-list expanded c5 permit 406 ^65000:4_0:130_0:22$ ip community-list expanded c5 permit 407 ^65000:4_0:130_0:23$ ip community-list expanded c5 permit 408 ^65000:4_0:130_0:24$ ip community-list expanded c5 permit 409 ^65000:4_0:130_0:25$ ip community-list expanded c5 permit 410 ^65000:4_0:130_0:26$ ip community-list expanded c5 permit 411 ^65000:3_0:130_0:125$ ip community-list expanded c5 permit 412 ^65000:4_0:131_0:22$ ip community-list expanded c5 permit 413 ^65000:4_0:131_0:23$ ip community-list expanded c5 permit 414 ^65000:4_0:131_0:24$ ip community-list expanded c5 permit 415 ^65000:4_0:131_0:25$ ip community-list expanded c5 permit 416 ^65000:4_0:131_0:26$ ip community-list expanded c5 permit 417 ^65000:3_0:131_0:126$ ip community-list expanded c5 permit 418 ^65000:4_0:132_0:23$ ip community-list expanded c5 permit 419 ^65000:4_0:132_0:24$ ip community-list expanded c5 permit 420 ^65000:4_0:132_0:25$ ip community-list expanded c5 permit 421 ^65000:4_0:132_0:26$ ip community-list expanded c5 permit 422 ^65000:3_0:132_0:127$ ip community-list expanded c5 permit 423 ^65000:4_0:133_0:23$ ip community-list expanded c5 permit 424 ^65000:4_0:133_0:24$ ip community-list expanded c5 permit 425 ^65000:4_0:133_0:25$ ip community-list expanded c5 permit 426 ^65000:4_0:133_0:26$ ip community-list expanded c5 permit 427 ^65000:3_0:133_0:128$ ip community-list expanded c5 permit 428 ^65000:4_0:134_0:23$ ip community-list expanded c5 permit 429 ^65000:4_0:134_0:24$ ip community-list expanded c5 permit 430 ^65000:4_0:134_0:25$ ip community-list expanded c5 permit 431 ^65000:4_0:134_0:26$ ip community-list expanded c5 permit 432 ^65000:3_0:134_0:129$ ip community-list expanded c5 permit 433 ^65000:4_0:135_0:23$ ip community-list expanded c5 permit 434 ^65000:4_0:135_0:24$ ip community-list expanded c5 permit 435 ^65000:4_0:135_0:25$ ip community-list expanded c5 permit 436 ^65000:4_0:135_0:26$ ip community-list expanded c5 permit 437 ^65000:4_0:135_0:27$ ip community-list expanded c5 permit 438 ^65000:3_0:135_0:130$ ip community-list expanded c5 permit 439 ^65000:4_0:136_0:23$ ip community-list expanded c5 permit 440 ^65000:4_0:136_0:24$ ip community-list expanded c5 permit 441 ^65000:4_0:136_0:25$ ip community-list expanded c5 permit 442 ^65000:4_0:136_0:26$ ip community-list expanded c5 permit 443 ^65000:4_0:136_0:27$ ip community-list expanded c5 permit 444 ^65000:3_0:136_0:131$ ip community-list expanded c5 permit 445 ^65000:4_0:137_0:23$ ip community-list expanded c5 permit 446 ^65000:4_0:137_0:24$ ip community-list expanded c5 permit 447 ^65000:4_0:137_0:25$ ip community-list expanded c5 permit 448 ^65000:4_0:137_0:26$ ip community-list expanded c5 permit 449 ^65000:4_0:137_0:27$ ip community-list expanded c5 permit 450 ^65000:3_0:137_0:132$ ip community-list expanded c5 permit 451 ^65000:4_0:138_0:24$ ip community-list expanded c5 permit 452 ^65000:4_0:138_0:25$ ip community-list expanded c5 permit 453 ^65000:4_0:138_0:26$ ip community-list expanded c5 permit 454 ^65000:4_0:138_0:27$ ip community-list expanded c5 permit 455 ^65000:3_0:138_0:133$ ip community-list expanded c5 permit 456 ^65000:4_0:139_0:24$ ip community-list expanded c5 permit 457 ^65000:4_0:139_0:25$ ip community-list expanded c5 permit 458 ^65000:4_0:139_0:26$ ip community-list expanded c5 permit 459 ^65000:4_0:139_0:27$ ip community-list expanded c5 permit 460 ^65000:3_0:139_0:134$ ip community-list expanded c5 permit 461 ^65000:4_0:140_0:24$ ip community-list expanded c5 permit 462 ^65000:4_0:140_0:25$ ip community-list expanded c5 permit 463 ^65000:4_0:140_0:26$ ip community-list expanded c5 permit 464 ^65000:4_0:140_0:27$ ip community-list expanded c5 permit 465 ^65000:4_0:140_0:28$ ip community-list expanded c5 permit 466 ^65000:3_0:140_0:135$ ip community-list expanded c5 permit 467 ^65000:4_0:141_0:24$ ip community-list expanded c5 permit 468 ^65000:4_0:141_0:25$ ip community-list expanded c5 permit 469 ^65000:4_0:141_0:26$ ip community-list expanded c5 permit 470 ^65000:4_0:141_0:27$ ip community-list expanded c5 permit 471 ^65000:4_0:141_0:28$ ip community-list expanded c5 permit 472 ^65000:3_0:141_0:136$ ip community-list expanded c5 permit 473 ^65000:4_0:142_0:24$ ip community-list expanded c5 permit 474 ^65000:4_0:142_0:25$ ip community-list expanded c5 permit 475 ^65000:4_0:142_0:26$ ip community-list expanded c5 permit 476 ^65000:4_0:142_0:27$ ip community-list expanded c5 permit 477 ^65000:4_0:142_0:28$ ip community-list expanded c5 permit 478 ^65000:3_0:142_0:137$ ip community-list expanded c5 permit 479 ^65000:4_0:143_0:24$ ip community-list expanded c5 permit 480 ^65000:4_0:143_0:25$ ip community-list expanded c5 permit 481 ^65000:4_0:143_0:26$ ip community-list expanded c5 permit 482 ^65000:4_0:143_0:27$ ip community-list expanded c5 permit 483 ^65000:4_0:143_0:28$ ip community-list expanded c5 permit 484 ^65000:3_0:143_0:138$ ip community-list expanded c5 permit 485 ^65000:4_0:144_0:25$ ip community-list expanded c5 permit 486 ^65000:4_0:144_0:26$ ip community-list expanded c5 permit 487 ^65000:4_0:144_0:27$ ip community-list expanded c5 permit 488 ^65000:4_0:144_0:28$ ip community-list expanded c5 permit 489 ^65000:3_0:144_0:139$ ip community-list expanded c5 permit 490 ^65000:4_0:145_0:25$ ip community-list expanded c5 permit 491 ^65000:4_0:145_0:26$ ip community-list expanded c5 permit 492 ^65000:4_0:145_0:27$ ip community-list expanded c5 permit 493 ^65000:4_0:145_0:28$ ip community-list expanded c5 permit 494 ^65000:4_0:145_0:29$ ip community-list expanded c5 permit 495 ^65000:3_0:145_0:140$ ip community-list expanded c5 permit 496 ^65000:4_0:146_0:25$ ip community-list expanded c5 permit 497 ^65000:4_0:146_0:26$ ip community-list expanded c5 permit 498 ^65000:4_0:146_0:27$ ip community-list expanded c5 permit 499 ^65000:4_0:146_0:28$ ip community-list expanded c5 permit 500 ^65000:4_0:146_0:29$ ip community-list expanded c5 permit 501 ^65000:3_0:146_0:141$ ip community-list expanded c5 permit 502 ^65000:4_0:147_0:25$ ip community-list expanded c5 permit 503 ^65000:4_0:147_0:26$ ip community-list expanded c5 permit 504 ^65000:4_0:147_0:27$ ip community-list expanded c5 permit 505 ^65000:4_0:147_0:28$ ip community-list expanded c5 permit 506 ^65000:4_0:147_0:29$ ip community-list expanded c5 permit 507 ^65000:3_0:147_0:142$ ip community-list expanded c5 permit 508 ^65000:4_0:148_0:25$ ip community-list expanded c5 permit 509 ^65000:4_0:148_0:26$ ip community-list expanded c5 permit 510 ^65000:4_0:148_0:27$ ip community-list expanded c5 permit 511 ^65000:4_0:148_0:28$ ip community-list expanded c5 permit 512 ^65000:4_0:148_0:29$ ip community-list expanded c5 permit 513 ^65000:3_0:148_0:143$ ip community-list expanded c5 permit 514 ^65000:4_0:149_0:25$ ip community-list expanded c5 permit 515 ^65000:4_0:149_0:26$ ip community-list expanded c5 permit 516 ^65000:4_0:149_0:27$ ip community-list expanded c5 permit 517 ^65000:4_0:149_0:28$ ip community-list expanded c5 permit 518 ^65000:4_0:149_0:29$ ip community-list expanded c5 permit 519 ^65000:3_0:149_0:144$ ip community-list expanded c5 permit 520 ^65000:4_0:150_0:26$ ip community-list expanded c5 permit 521 ^65000:4_0:150_0:27$ ip community-list expanded c5 permit 522 ^65000:4_0:150_0:28$ ip community-list expanded c5 permit 523 ^65000:4_0:150_0:29$ ip community-list expanded c5 permit 524 ^65000:4_0:150_0:30$ ip community-list expanded c5 permit 525 ^65000:3_0:150_0:145$ ip community-list expanded c5 permit 526 ^65000:4_0:151_0:26$ ip community-list expanded c5 permit 527 ^65000:4_0:151_0:27$ ip community-list expanded c5 permit 528 ^65000:4_0:151_0:28$ ip community-list expanded c5 permit 529 ^65000:4_0:151_0:29$ ip community-list expanded c5 permit 530 ^65000:4_0:151_0:30$ ip community-list expanded c5 permit 531 ^65000:3_0:151_0:146$ ip community-list expanded c5 permit 532 ^65000:4_0:152_0:26$ ip community-list expanded c5 permit 533 ^65000:4_0:152_0:27$ ip community-list expanded c5 permit 534 ^65000:4_0:152_0:28$ ip community-list expanded c5 permit 535 ^65000:4_0:152_0:29$ ip community-list expanded c5 permit 536 ^65000:4_0:152_0:30$ ip community-list expanded c5 permit 537 ^65000:3_0:152_0:147$ ip community-list expanded c5 permit 538 ^65000:4_0:153_0:26$ ip community-list expanded c5 permit 539 ^65000:4_0:153_0:27$ ip community-list expanded c5 permit 540 ^65000:4_0:153_0:28$ ip community-list expanded c5 permit 541 ^65000:4_0:153_0:29$ ip community-list expanded c5 permit 542 ^65000:4_0:153_0:30$ ip community-list expanded c5 permit 543 ^65000:3_0:153_0:148$ ip community-list expanded c5 permit 544 ^65000:4_0:154_0:26$ ip community-list expanded c5 permit 545 ^65000:4_0:154_0:27$ ip community-list expanded c5 permit 546 ^65000:4_0:154_0:28$ ip community-list expanded c5 permit 547 ^65000:4_0:154_0:29$ ip community-list expanded c5 permit 548 ^65000:4_0:154_0:30$ ip community-list expanded c5 permit 549 ^65000:3_0:154_0:149$ ip community-list expanded c5 permit 550 ^65000:4_0:155_0:26$ ip community-list expanded c5 permit 551 ^65000:4_0:155_0:27$ ip community-list expanded c5 permit 552 ^65000:4_0:155_0:28$ ip community-list expanded c5 permit 553 ^65000:4_0:155_0:29$ ip community-list expanded c5 permit 554 ^65000:4_0:155_0:30$ ip community-list expanded c5 permit 555 ^65000:4_0:155_0:31$ ip community-list expanded c5 permit 556 ^65000:3_0:155_0:150$ ip community-list expanded c5 permit 557 ^65000:4_0:156_0:27$ ip community-list expanded c5 permit 558 ^65000:4_0:156_0:28$ ip community-list expanded c5 permit 559 ^65000:4_0:156_0:29$ ip community-list expanded c5 permit 560 ^65000:4_0:156_0:30$ ip community-list expanded c5 permit 561 ^65000:4_0:156_0:31$ ip community-list expanded c5 permit 562 ^65000:3_0:156_0:151$ ip community-list expanded c5 permit 563 ^65000:4_0:157_0:27$ ip community-list expanded c5 permit 564 ^65000:4_0:157_0:28$ ip community-list expanded c5 permit 565 ^65000:4_0:157_0:29$ ip community-list expanded c5 permit 566 ^65000:4_0:157_0:30$ ip community-list expanded c5 permit 567 ^65000:4_0:157_0:31$ ip community-list expanded c5 permit 568 ^65000:3_0:157_0:152$ ip community-list expanded c5 permit 569 ^65000:4_0:158_0:27$ ip community-list expanded c5 permit 570 ^65000:4_0:158_0:28$ ip community-list expanded c5 permit 571 ^65000:4_0:158_0:29$ ip community-list expanded c5 permit 572 ^65000:4_0:158_0:30$ ip community-list expanded c5 permit 573 ^65000:4_0:158_0:31$ ip community-list expanded c5 permit 574 ^65000:3_0:158_0:153$ ip community-list expanded c5 permit 575 ^65000:4_0:159_0:27$ ip community-list expanded c5 permit 576 ^65000:4_0:159_0:28$ ip community-list expanded c5 permit 577 ^65000:4_0:159_0:29$ ip community-list expanded c5 permit 578 ^65000:4_0:159_0:30$ ip community-list expanded c5 permit 579 ^65000:4_0:159_0:31$ ip community-list expanded c5 permit 580 ^65000:3_0:159_0:154$ ip community-list expanded c5 permit 581 ^65000:4_0:160_0:27$ ip community-list expanded c5 permit 582 ^65000:4_0:160_0:28$ ip community-list expanded c5 permit 583 ^65000:4_0:160_0:29$ ip community-list expanded c5 permit 584 ^65000:4_0:160_0:30$ ip community-list expanded c5 permit 585 ^65000:4_0:160_0:31$ ip community-list expanded c5 permit 586 ^65000:4_0:160_0:32$ ip community-list expanded c5 permit 587 ^65000:3_0:160_0:155$ ip community-list expanded c5 permit 588 ^65000:4_0:161_0:27$ ip community-list expanded c5 permit 589 ^65000:4_0:161_0:28$ ip community-list expanded c5 permit 590 ^65000:4_0:161_0:29$ ip community-list expanded c5 permit 591 ^65000:4_0:161_0:30$ ip community-list expanded c5 permit 592 ^65000:4_0:161_0:31$ ip community-list expanded c5 permit 593 ^65000:4_0:161_0:32$ ip community-list expanded c5 permit 594 ^65000:3_0:161_0:156$ ip community-list expanded c5 permit 595 ^65000:4_0:162_0:28$ ip community-list expanded c5 permit 596 ^65000:4_0:162_0:29$ ip community-list expanded c5 permit 597 ^65000:4_0:162_0:30$ ip community-list expanded c5 permit 598 ^65000:4_0:162_0:31$ ip community-list expanded c5 permit 599 ^65000:4_0:162_0:32$ ip community-list expanded c5 permit 600 ^65000:3_0:162_0:157$ ip community-list expanded c5 permit 601 ^65000:4_0:163_0:28$ ip community-list expanded c5 permit 602 ^65000:4_0:163_0:29$ ip community-list expanded c5 permit 603 ^65000:4_0:163_0:30$ ip community-list expanded c5 permit 604 ^65000:4_0:163_0:31$ ip community-list expanded c5 permit 605 ^65000:4_0:163_0:32$ ip community-list expanded c5 permit 606 ^65000:3_0:163_0:158$ ip community-list expanded c5 permit 607 ^65000:4_0:164_0:28$ ip community-list expanded c5 permit 608 ^65000:4_0:164_0:29$ ip community-list expanded c5 permit 609 ^65000:4_0:164_0:30$ ip community-list expanded c5 permit 610 ^65000:4_0:164_0:31$ ip community-list expanded c5 permit 611 ^65000:4_0:164_0:32$ ip community-list expanded c5 permit 612 ^65000:3_0:164_0:159$ ip community-list expanded c5 permit 613 ^65000:4_0:165_0:28$ ip community-list expanded c5 permit 614 ^65000:4_0:165_0:29$ ip community-list expanded c5 permit 615 ^65000:4_0:165_0:30$ ip community-list expanded c5 permit 616 ^65000:4_0:165_0:31$ ip community-list expanded c5 permit 617 ^65000:4_0:165_0:32$ ip community-list expanded c5 permit 618 ^65000:4_0:165_0:33$ ip community-list expanded c5 permit 619 ^65000:3_0:165_0:160$ ip community-list expanded c5 permit 620 ^65000:4_0:166_0:28$ ip community-list expanded c5 permit 621 ^65000:4_0:166_0:29$ ip community-list expanded c5 permit 622 ^65000:4_0:166_0:30$ ip community-list expanded c5 permit 623 ^65000:4_0:166_0:31$ ip community-list expanded c5 permit 624 ^65000:4_0:166_0:32$ ip community-list expanded c5 permit 625 ^65000:4_0:166_0:33$ ip community-list expanded c5 permit 626 ^65000:3_0:166_0:161$ ip community-list expanded c5 permit 627 ^65000:4_0:167_0:28$ ip community-list expanded c5 permit 628 ^65000:4_0:167_0:29$ ip community-list expanded c5 permit 629 ^65000:4_0:167_0:30$ ip community-list expanded c5 permit 630 ^65000:4_0:167_0:31$ ip community-list expanded c5 permit 631 ^65000:4_0:167_0:32$ ip community-list expanded c5 permit 632 ^65000:4_0:167_0:33$ ip community-list expanded c5 permit 633 ^65000:3_0:167_0:162$ ip community-list expanded c5 permit 634 ^65000:4_0:168_0:29$ ip community-list expanded c5 permit 635 ^65000:4_0:168_0:30$ ip community-list expanded c5 permit 636 ^65000:4_0:168_0:31$ ip community-list expanded c5 permit 637 ^65000:4_0:168_0:32$ ip community-list expanded c5 permit 638 ^65000:4_0:168_0:33$ ip community-list expanded c5 permit 639 ^65000:3_0:168_0:163$ ip community-list expanded c5 permit 640 ^65000:4_0:169_0:29$ ip community-list expanded c5 permit 641 ^65000:4_0:169_0:30$ ip community-list expanded c5 permit 642 ^65000:4_0:169_0:31$ ip community-list expanded c5 permit 643 ^65000:4_0:169_0:32$ ip community-list expanded c5 permit 644 ^65000:4_0:169_0:33$ ip community-list expanded c5 permit 645 ^65000:3_0:169_0:164$ ip community-list expanded c5 permit 646 ^65000:4_0:170_0:29$ ip community-list expanded c5 permit 647 ^65000:4_0:170_0:30$ ip community-list expanded c5 permit 648 ^65000:4_0:170_0:31$ ip community-list expanded c5 permit 649 ^65000:4_0:170_0:32$ ip community-list expanded c5 permit 650 ^65000:4_0:170_0:33$ ip community-list expanded c5 permit 651 ^65000:4_0:170_0:34$ ip community-list expanded c5 permit 652 ^65000:3_0:170_0:165$ ip community-list expanded c5 permit 653 ^65000:4_0:171_0:29$ ip community-list expanded c5 permit 654 ^65000:4_0:171_0:30$ ip community-list expanded c5 permit 655 ^65000:4_0:171_0:31$ ip community-list expanded c5 permit 656 ^65000:4_0:171_0:32$ ip community-list expanded c5 permit 657 ^65000:4_0:171_0:33$ ip community-list expanded c5 permit 658 ^65000:4_0:171_0:34$ ip community-list expanded c5 permit 659 ^65000:3_0:171_0:166$ ip community-list expanded c5 permit 660 ^65000:4_0:172_0:29$ ip community-list expanded c5 permit 661 ^65000:4_0:172_0:30$ ip community-list expanded c5 permit 662 ^65000:4_0:172_0:31$ ip community-list expanded c5 permit 663 ^65000:4_0:172_0:32$ ip community-list expanded c5 permit 664 ^65000:4_0:172_0:33$ ip community-list expanded c5 permit 665 ^65000:4_0:172_0:34$ ip community-list expanded c5 permit 666 ^65000:3_0:172_0:167$ ip community-list expanded c5 permit 667 ^65000:4_0:173_0:29$ ip community-list expanded c5 permit 668 ^65000:4_0:173_0:30$ ip community-list expanded c5 permit 669 ^65000:4_0:173_0:31$ ip community-list expanded c5 permit 670 ^65000:4_0:173_0:32$ ip community-list expanded c5 permit 671 ^65000:4_0:173_0:33$ ip community-list expanded c5 permit 672 ^65000:4_0:173_0:34$ ip community-list expanded c5 permit 673 ^65000:3_0:173_0:168$ ip community-list expanded c5 permit 674 ^65000:4_0:174_0:30$ ip community-list expanded c5 permit 675 ^65000:4_0:174_0:31$ ip community-list expanded c5 permit 676 ^65000:4_0:174_0:32$ ip community-list expanded c5 permit 677 ^65000:4_0:174_0:33$ ip community-list expanded c5 permit 678 ^65000:4_0:174_0:34$ ip community-list expanded c5 permit 679 ^65000:3_0:174_0:169$ ip community-list expanded c5 permit 680 ^65000:4_0:175_0:30$ ip community-list expanded c5 permit 681 ^65000:4_0:175_0:31$ ip community-list expanded c5 permit 682 ^65000:4_0:175_0:32$ ip community-list expanded c5 permit 683 ^65000:4_0:175_0:33$ ip community-list expanded c5 permit 684 ^65000:4_0:175_0:34$ ip community-list expanded c5 permit 685 ^65000:4_0:175_0:35$ ip community-list expanded c5 permit 686 ^65000:3_0:175_0:170$ ip community-list expanded c5 permit 687 ^65000:4_0:176_0:30$ ip community-list expanded c5 permit 688 ^65000:4_0:176_0:31$ ip community-list expanded c5 permit 689 ^65000:4_0:176_0:32$ ip community-list expanded c5 permit 690 ^65000:4_0:176_0:33$ ip community-list expanded c5 permit 691 ^65000:4_0:176_0:34$ ip community-list expanded c5 permit 692 ^65000:4_0:176_0:35$ ip community-list expanded c5 permit 693 ^65000:3_0:176_0:171$ ip community-list expanded c5 permit 694 ^65000:4_0:177_0:30$ ip community-list expanded c5 permit 695 ^65000:4_0:177_0:31$ ip community-list expanded c5 permit 696 ^65000:4_0:177_0:32$ ip community-list expanded c5 permit 697 ^65000:4_0:177_0:33$ ip community-list expanded c5 permit 698 ^65000:4_0:177_0:34$ ip community-list expanded c5 permit 699 ^65000:4_0:177_0:35$ ip community-list expanded c5 permit 700 ^65000:3_0:177_0:172$ ip community-list expanded c5 permit 701 ^65000:4_0:178_0:30$ ip community-list expanded c5 permit 702 ^65000:4_0:178_0:31$ ip community-list expanded c5 permit 703 ^65000:4_0:178_0:32$ ip community-list expanded c5 permit 704 ^65000:4_0:178_0:33$ ip community-list expanded c5 permit 705 ^65000:4_0:178_0:34$ ip community-list expanded c5 permit 706 ^65000:4_0:178_0:35$ ip community-list expanded c5 permit 707 ^65000:3_0:178_0:173$ ip community-list expanded c5 permit 708 ^65000:4_0:179_0:30$ ip community-list expanded c5 permit 709 ^65000:4_0:179_0:31$ ip community-list expanded c5 permit 710 ^65000:4_0:179_0:32$ ip community-list expanded c5 permit 711 ^65000:4_0:179_0:33$ ip community-list expanded c5 permit 712 ^65000:4_0:179_0:34$ ip community-list expanded c5 permit 713 ^65000:4_0:179_0:35$ ip community-list expanded c5 permit 714 ^65000:3_0:179_0:174$ ip community-list expanded c5 permit 715 ^65000:4_0:180_0:31$ ip community-list expanded c5 permit 716 ^65000:4_0:180_0:32$ ip community-list expanded c5 permit 717 ^65000:4_0:180_0:33$ ip community-list expanded c5 permit 718 ^65000:4_0:180_0:34$ ip community-list expanded c5 permit 719 ^65000:4_0:180_0:35$ ip community-list expanded c5 permit 720 ^65000:4_0:180_0:36$ ip community-list expanded c5 permit 721 ^65000:3_0:180_0:175$ ip community-list expanded c5 permit 722 ^65000:4_0:181_0:31$ ip community-list expanded c5 permit 723 ^65000:4_0:181_0:32$ ip community-list expanded c5 permit 724 ^65000:4_0:181_0:33$ ip community-list expanded c5 permit 725 ^65000:4_0:181_0:34$ ip community-list expanded c5 permit 726 ^65000:4_0:181_0:35$ ip community-list expanded c5 permit 727 ^65000:4_0:181_0:36$ ip community-list expanded c5 permit 728 ^65000:3_0:181_0:176$ ip community-list expanded c5 permit 729 ^65000:4_0:182_0:31$ ip community-list expanded c5 permit 730 ^65000:4_0:182_0:32$ ip community-list expanded c5 permit 731 ^65000:4_0:182_0:33$ ip community-list expanded c5 permit 732 ^65000:4_0:182_0:34$ ip community-list expanded c5 permit 733 ^65000:4_0:182_0:35$ ip community-list expanded c5 permit 734 ^65000:4_0:182_0:36$ ip community-list expanded c5 permit 735 ^65000:3_0:182_0:177$ ip community-list expanded c5 permit 736 ^65000:4_0:183_0:31$ ip community-list expanded c5 permit 737 ^65000:4_0:183_0:32$ ip community-list expanded c5 permit 738 ^65000:4_0:183_0:33$ ip community-list expanded c5 permit 739 ^65000:4_0:183_0:34$ ip community-list expanded c5 permit 740 ^65000:4_0:183_0:35$ ip community-list expanded c5 permit 741 ^65000:4_0:183_0:36$ ip community-list expanded c5 permit 742 ^65000:3_0:183_0:178$ ip community-list expanded c5 permit 743 ^65000:4_0:184_0:31$ ip community-list expanded c5 permit 744 ^65000:4_0:184_0:32$ ip community-list expanded c5 permit 745 ^65000:4_0:184_0:33$ ip community-list expanded c5 permit 746 ^65000:4_0:184_0:34$ ip community-list expanded c5 permit 747 ^65000:4_0:184_0:35$ ip community-list expanded c5 permit 748 ^65000:4_0:184_0:36$ ip community-list expanded c5 permit 749 ^65000:3_0:184_0:179$ ip community-list expanded c5 permit 750 ^65000:4_0:185_0:31$ ip community-list expanded c5 permit 751 ^65000:4_0:185_0:32$ ip community-list expanded c5 permit 752 ^65000:4_0:185_0:33$ ip community-list expanded c5 permit 753 ^65000:4_0:185_0:34$ ip community-list expanded c5 permit 754 ^65000:4_0:185_0:35$ ip community-list expanded c5 permit 755 ^65000:4_0:185_0:36$ ip community-list expanded c5 permit 756 ^65000:4_0:185_0:37$ ip community-list expanded c5 permit 757 ^65000:3_0:185_0:180$ ip community-list expanded c5 permit 758 ^65000:4_0:186_0:32$ ip community-list expanded c5 permit 759 ^65000:4_0:186_0:33$ ip community-list expanded c5 permit 760 ^65000:4_0:186_0:34$ ip community-list expanded c5 permit 761 ^65000:4_0:186_0:35$ ip community-list expanded c5 permit 762 ^65000:4_0:186_0:36$ ip community-list expanded c5 permit 763 ^65000:4_0:186_0:37$ ip community-list expanded c5 permit 764 ^65000:3_0:186_0:181$ ip community-list expanded c5 permit 765 ^65000:4_0:187_0:32$ ip community-list expanded c5 permit 766 ^65000:4_0:187_0:33$ ip community-list expanded c5 permit 767 ^65000:4_0:187_0:34$ ip community-list expanded c5 permit 768 ^65000:4_0:187_0:35$ ip community-list expanded c5 permit 769 ^65000:4_0:187_0:36$ ip community-list expanded c5 permit 770 ^65000:4_0:187_0:37$ ip community-list expanded c5 permit 771 ^65000:3_0:187_0:182$ ip community-list expanded c5 permit 772 ^65000:4_0:188_0:32$ ip community-list expanded c5 permit 773 ^65000:4_0:188_0:33$ ip community-list expanded c5 permit 774 ^65000:4_0:188_0:34$ ip community-list expanded c5 permit 775 ^65000:4_0:188_0:35$ ip community-list expanded c5 permit 776 ^65000:4_0:188_0:36$ ip community-list expanded c5 permit 777 ^65000:4_0:188_0:37$ ip community-list expanded c5 permit 778 ^65000:3_0:188_0:183$ ip community-list expanded c5 permit 779 ^65000:4_0:189_0:32$ ip community-list expanded c5 permit 780 ^65000:4_0:189_0:33$ ip community-list expanded c5 permit 781 ^65000:4_0:189_0:34$ ip community-list expanded c5 permit 782 ^65000:4_0:189_0:35$ ip community-list expanded c5 permit 783 ^65000:4_0:189_0:36$ ip community-list expanded c5 permit 784 ^65000:4_0:189_0:37$ ip community-list expanded c5 permit 785 ^65000:3_0:189_0:184$ ip community-list expanded c5 permit 786 ^65000:4_0:190_0:32$ ip community-list expanded c5 permit 787 ^65000:4_0:190_0:33$ ip community-list expanded c5 permit 788 ^65000:4_0:190_0:34$ ip community-list expanded c5 permit 789 ^65000:4_0:190_0:35$ ip community-list expanded c5 permit 790 ^65000:4_0:190_0:36$ ip community-list expanded c5 permit 791 ^65000:4_0:190_0:37$ ip community-list expanded c5 permit 792 ^65000:4_0:190_0:38$ ip community-list expanded c5 permit 793 ^65000:3_0:190_0:185$ ip community-list expanded c5 permit 794 ^65000:4_0:191_0:32$ ip community-list expanded c5 permit 795 ^65000:4_0:191_0:33$ ip community-list expanded c5 permit 796 ^65000:4_0:191_0:34$ ip community-list expanded c5 permit 797 ^65000:4_0:191_0:35$ ip community-list expanded c5 permit 798 ^65000:4_0:191_0:36$ ip community-list expanded c5 permit 799 ^65000:4_0:191_0:37$ ip community-list expanded c5 permit 800 ^65000:4_0:191_0:38$ ip community-list expanded c5 permit 801 ^65000:3_0:191_0:186$ ip community-list expanded c5 permit 802 ^65000:4_0:192_0:33$ ip community-list expanded c5 permit 803 ^65000:4_0:192_0:34$ ip community-list expanded c5 permit 804 ^65000:4_0:192_0:35$ ip community-list expanded c5 permit 805 ^65000:4_0:192_0:36$ ip community-list expanded c5 permit 806 ^65000:4_0:192_0:37$ ip community-list expanded c5 permit 807 ^65000:4_0:192_0:38$ ip community-list expanded c5 permit 808 ^65000:3_0:192_0:187$ ip community-list expanded c5 permit 809 ^65000:4_0:193_0:33$ ip community-list expanded c5 permit 810 ^65000:4_0:193_0:34$ ip community-list expanded c5 permit 811 ^65000:4_0:193_0:35$ ip community-list expanded c5 permit 812 ^65000:4_0:193_0:36$ ip community-list expanded c5 permit 813 ^65000:4_0:193_0:37$ ip community-list expanded c5 permit 814 ^65000:4_0:193_0:38$ ip community-list expanded c5 permit 815 ^65000:3_0:193_0:188$ ip community-list expanded c5 permit 816 ^65000:4_0:194_0:33$ ip community-list expanded c5 permit 817 ^65000:4_0:194_0:34$ ip community-list expanded c5 permit 818 ^65000:4_0:194_0:35$ ip community-list expanded c5 permit 819 ^65000:4_0:194_0:36$ ip community-list expanded c5 permit 820 ^65000:4_0:194_0:37$ ip community-list expanded c5 permit 821 ^65000:4_0:194_0:38$ ip community-list expanded c5 permit 822 ^65000:3_0:194_0:189$ ip community-list expanded c5 permit 823 ^65000:4_0:195_0:33$ ip community-list expanded c5 permit 824 ^65000:4_0:195_0:34$ ip community-list expanded c5 permit 825 ^65000:4_0:195_0:35$ ip community-list expanded c5 permit 826 ^65000:4_0:195_0:36$ ip community-list expanded c5 permit 827 ^65000:4_0:195_0:37$ ip community-list expanded c5 permit 828 ^65000:4_0:195_0:38$ ip community-list expanded c5 permit 829 ^65000:4_0:195_0:39$ ip community-list expanded c5 permit 830 ^65000:3_0:195_0:190$ ip community-list expanded c5 permit 831 ^65000:4_0:196_0:33$ ip community-list expanded c5 permit 832 ^65000:4_0:196_0:34$ ip community-list expanded c5 permit 833 ^65000:4_0:196_0:35$ ip community-list expanded c5 permit 834 ^65000:4_0:196_0:36$ ip community-list expanded c5 permit 835 ^65000:4_0:196_0:37$ ip community-list expanded c5 permit 836 ^65000:4_0:196_0:38$ ip community-list expanded c5 permit 837 ^65000:4_0:196_0:39$ ip community-list expanded c5 permit 838 ^65000:3_0:196_0:191$ ip community-list expanded c5 permit 839 ^65000:4_0:197_0:33$ ip community-list expanded c5 permit 840 ^65000:4_0:197_0:34$ ip community-list expanded c5 permit 841 ^65000:4_0:197_0:35$ ip community-list expanded c5 permit 842 ^65000:4_0:197_0:36$ ip community-list expanded c5 permit 843 ^65000:4_0:197_0:37$ ip community-list expanded c5 permit 844 ^65000:4_0:197_0:38$ ip community-list expanded c5 permit 845 ^65000:4_0:197_0:39$ ip community-list expanded c5 permit 846 ^65000:3_0:197_0:192$ ip community-list expanded c5 permit 847 ^65000:4_0:198_0:34$ ip community-list expanded c5 permit 848 ^65000:4_0:198_0:35$ ip community-list expanded c5 permit 849 ^65000:4_0:198_0:36$ ip community-list expanded c5 permit 850 ^65000:4_0:198_0:37$ ip community-list expanded c5 permit 851 ^65000:4_0:198_0:38$ ip community-list expanded c5 permit 852 ^65000:4_0:198_0:39$ ip community-list expanded c5 permit 853 ^65000:3_0:198_0:193$ ip community-list expanded c5 permit 854 ^65000:4_0:199_0:34$ ip community-list expanded c5 permit 855 ^65000:4_0:199_0:35$ ip community-list expanded c5 permit 856 ^65000:4_0:199_0:36$ ip community-list expanded c5 permit 857 ^65000:4_0:199_0:37$ ip community-list expanded c5 permit 858 ^65000:4_0:199_0:38$ ip community-list expanded c5 permit 859 ^65000:4_0:199_0:39$ ip community-list expanded c5 permit 860 ^65000:3_0:199_0:194$ ip community-list expanded c5 permit 861 ^65000:4_0:200_0:34$ ip community-list expanded c5 permit 862 ^65000:4_0:200_0:35$ ip community-list expanded c5 permit 863 ^65000:4_0:200_0:36$ ip community-list expanded c5 permit 864 ^65000:4_0:200_0:37$ ip community-list expanded c5 permit 865 ^65000:4_0:200_0:38$ ip community-list expanded c5 permit 866 ^65000:4_0:200_0:39$ ip community-list expanded c5 permit 867 ^65000:4_0:200_0:40$ ip community-list expanded c5 permit 868 ^65000:3_0:200_0:195$ ip community-list expanded c5 permit 869 ^65000:4_0:201_0:34$ ip community-list expanded c5 permit 870 ^65000:4_0:201_0:35$ ip community-list expanded c5 permit 871 ^65000:4_0:201_0:36$ ip community-list expanded c5 permit 872 ^65000:4_0:201_0:37$ ip community-list expanded c5 permit 873 ^65000:4_0:201_0:38$ ip community-list expanded c5 permit 874 ^65000:4_0:201_0:39$ ip community-list expanded c5 permit 875 ^65000:4_0:201_0:40$ ip community-list expanded c5 permit 876 ^65000:3_0:201_0:196$ ip community-list expanded c5 permit 877 ^65000:4_0:202_0:34$ ip community-list expanded c5 permit 878 ^65000:4_0:202_0:35$ ip community-list expanded c5 permit 879 ^65000:4_0:202_0:36$ ip community-list expanded c5 permit 880 ^65000:4_0:202_0:37$ ip community-list expanded c5 permit 881 ^65000:4_0:202_0:38$ ip community-list expanded c5 permit 882 ^65000:4_0:202_0:39$ ip community-list expanded c5 permit 883 ^65000:4_0:202_0:40$ ip community-list expanded c5 permit 884 ^65000:3_0:202_0:197$ ip community-list expanded c5 permit 885 ^65000:4_0:203_0:34$ ip community-list expanded c5 permit 886 ^65000:4_0:203_0:35$ ip community-list expanded c5 permit 887 ^65000:4_0:203_0:36$ ip community-list expanded c5 permit 888 ^65000:4_0:203_0:37$ ip community-list expanded c5 permit 889 ^65000:4_0:203_0:38$ ip community-list expanded c5 permit 890 ^65000:4_0:203_0:39$ ip community-list expanded c5 permit 891 ^65000:4_0:203_0:40$ ip community-list expanded c5 permit 892 ^65000:3_0:203_0:198$ ip community-list expanded c5 permit 893 ^65000:4_0:204_0:35$ ip community-list expanded c5 permit 894 ^65000:4_0:204_0:36$ ip community-list expanded c5 permit 895 ^65000:4_0:204_0:37$ ip community-list expanded c5 permit 896 ^65000:4_0:204_0:38$ ip community-list expanded c5 permit 897 ^65000:4_0:204_0:39$ ip community-list expanded c5 permit 898 ^65000:4_0:204_0:40$ ip community-list expanded c5 permit 899 ^65000:3_0:204_0:199$ ip community-list expanded c5 permit 900 ^65000:4_0:205_0:35$ ip community-list expanded c5 permit 901 ^65000:4_0:205_0:36$ ip community-list expanded c5 permit 902 ^65000:4_0:205_0:37$ ip community-list expanded c5 permit 903 ^65000:4_0:205_0:38$ ip community-list expanded c5 permit 904 ^65000:4_0:205_0:39$ ip community-list expanded c5 permit 905 ^65000:4_0:205_0:40$ ip community-list expanded c5 permit 906 ^65000:4_0:205_0:41$ ip community-list expanded c5 permit 907 ^65000:3_0:205_0:200$ ip community-list expanded c5 permit 908 ^65000:4_0:206_0:35$ ip community-list expanded c5 permit 909 ^65000:4_0:206_0:36$ ip community-list expanded c5 permit 910 ^65000:4_0:206_0:37$ ip community-list expanded c5 permit 911 ^65000:4_0:206_0:38$ ip community-list expanded c5 permit 912 ^65000:4_0:206_0:39$ ip community-list expanded c5 permit 913 ^65000:4_0:206_0:40$ ip community-list expanded c5 permit 914 ^65000:4_0:206_0:41$ ip community-list expanded c5 permit 915 ^65000:3_0:206_0:201$ ip community-list expanded c5 permit 916 ^65000:4_0:207_0:35$ ip community-list expanded c5 permit 917 ^65000:4_0:207_0:36$ ip community-list expanded c5 permit 918 ^65000:4_0:207_0:37$ ip community-list expanded c5 permit 919 ^65000:4_0:207_0:38$ ip community-list expanded c5 permit 920 ^65000:4_0:207_0:39$ ip community-list expanded c5 permit 921 ^65000:4_0:207_0:40$ ip community-list expanded c5 permit 922 ^65000:4_0:207_0:41$ ip community-list expanded c5 permit 923 ^65000:3_0:207_0:202$ ip community-list expanded c5 permit 924 ^65000:4_0:208_0:35$ ip community-list expanded c5 permit 925 ^65000:4_0:208_0:36$ ip community-list expanded c5 permit 926 ^65000:4_0:208_0:37$ ip community-list expanded c5 permit 927 ^65000:4_0:208_0:38$ ip community-list expanded c5 permit 928 ^65000:4_0:208_0:39$ ip community-list expanded c5 permit 929 ^65000:4_0:208_0:40$ ip community-list expanded c5 permit 930 ^65000:4_0:208_0:41$ ip community-list expanded c5 permit 931 ^65000:3_0:208_0:203$ ip community-list expanded c5 permit 932 ^65000:4_0:209_0:35$ ip community-list expanded c5 permit 933 ^65000:4_0:209_0:36$ ip community-list expanded c5 permit 934 ^65000:4_0:209_0:37$ ip community-list expanded c5 permit 935 ^65000:4_0:209_0:38$ ip community-list expanded c5 permit 936 ^65000:4_0:209_0:39$ ip community-list expanded c5 permit 937 ^65000:4_0:209_0:40$ ip community-list expanded c5 permit 938 ^65000:4_0:209_0:41$ ip community-list expanded c5 permit 939 ^65000:3_0:209_0:204$ ip community-list expanded c5 permit 940 ^65000:4_0:210_0:36$ ip community-list expanded c5 permit 941 ^65000:4_0:210_0:37$ ip community-list expanded c5 permit 942 ^65000:4_0:210_0:38$ ip community-list expanded c5 permit 943 ^65000:4_0:210_0:39$ ip community-list expanded c5 permit 944 ^65000:4_0:210_0:40$ ip community-list expanded c5 permit 945 ^65000:4_0:210_0:41$ ip community-list expanded c5 permit 946 ^65000:4_0:210_0:42$ ip community-list expanded c5 permit 947 ^65000:3_0:210_0:205$ ip community-list expanded c5 permit 948 ^65000:4_0:211_0:36$ ip community-list expanded c5 permit 949 ^65000:4_0:211_0:37$ ip community-list expanded c5 permit 950 ^65000:4_0:211_0:38$ ip community-list expanded c5 permit 951 ^65000:4_0:211_0:39$ ip community-list expanded c5 permit 952 ^65000:4_0:211_0:40$ ip community-list expanded c5 permit 953 ^65000:4_0:211_0:41$ ip community-list expanded c5 permit 954 ^65000:4_0:211_0:42$ ip community-list expanded c5 permit 955 ^65000:3_0:211_0:206$ ip community-list expanded c5 permit 956 ^65000:4_0:212_0:36$ ip community-list expanded c5 permit 957 ^65000:4_0:212_0:37$ ip community-list expanded c5 permit 958 ^65000:4_0:212_0:38$ ip community-list expanded c5 permit 959 ^65000:4_0:212_0:39$ ip community-list expanded c5 permit 960 ^65000:4_0:212_0:40$ ip community-list expanded c5 permit 961 ^65000:4_0:212_0:41$ ip community-list expanded c5 permit 962 ^65000:4_0:212_0:42$ ip community-list expanded c5 permit 963 ^65000:3_0:212_0:207$ ip community-list expanded c5 permit 964 ^65000:4_0:213_0:36$ ip community-list expanded c5 permit 965 ^65000:4_0:213_0:37$ ip community-list expanded c5 permit 966 ^65000:4_0:213_0:38$ ip community-list expanded c5 permit 967 ^65000:4_0:213_0:39$ ip community-list expanded c5 permit 968 ^65000:4_0:213_0:40$ ip community-list expanded c5 permit 969 ^65000:4_0:213_0:41$ ip community-list expanded c5 permit 970 ^65000:4_0:213_0:42$ ip community-list expanded c5 permit 971 ^65000:3_0:213_0:208$ ip community-list expanded c5 permit 972 ^65000:4_0:214_0:36$ ip community-list expanded c5 permit 973 ^65000:4_0:214_0:37$ ip community-list expanded c5 permit 974 ^65000:4_0:214_0:38$ ip community-list expanded c5 permit 975 ^65000:4_0:214_0:39$ ip community-list expanded c5 permit 976 ^65000:4_0:214_0:40$ ip community-list expanded c5 permit 977 ^65000:4_0:214_0:41$ ip community-list expanded c5 permit 978 ^65000:4_0:214_0:42$ ip community-list expanded c5 permit 979 ^65000:3_0:214_0:209$ ip community-list expanded c5 permit 980 ^65000:4_0:215_0:36$ ip community-list expanded c5 permit 981 ^65000:4_0:215_0:37$ ip community-list expanded c5 permit 982 ^65000:4_0:215_0:38$ ip community-list expanded c5 permit 983 ^65000:4_0:215_0:39$ ip community-list expanded c5 permit 984 ^65000:4_0:215_0:40$ ip community-list expanded c5 permit 985 ^65000:4_0:215_0:41$ ip community-list expanded c5 permit 986 ^65000:4_0:215_0:42$ ip community-list expanded c5 permit 987 ^65000:4_0:215_0:43$ ip community-list expanded c5 permit 988 ^65000:3_0:215_0:210$ ip community-list expanded c5 permit 989 ^65000:4_0:216_0:37$ ip community-list expanded c5 permit 990 ^65000:4_0:216_0:38$ ip community-list expanded c5 permit 991 ^65000:4_0:216_0:39$ ip community-list expanded c5 permit 992 ^65000:4_0:216_0:40$ ip community-list expanded c5 permit 993 ^65000:4_0:216_0:41$ ip community-list expanded c5 permit 994 ^65000:4_0:216_0:42$ ip community-list expanded c5 permit 995 ^65000:4_0:216_0:43$ ip community-list expanded c5 permit 996 ^65000:3_0:216_0:211$ ip community-list expanded c5 permit 997 ^65000:4_0:217_0:37$ ip community-list expanded c5 permit 998 ^65000:4_0:217_0:38$ ip community-list expanded c5 permit 999 ^65000:4_0:217_0:39$ ip community-list expanded c5 permit 1000 ^65000:4_0:217_0:40$ ip community-list expanded c5 permit 1001 ^65000:4_0:217_0:41$ ip community-list expanded c5 permit 1002 ^65000:4_0:217_0:42$ ip community-list expanded c5 permit 1003 ^65000:4_0:217_0:43$ ip community-list expanded c5 permit 1004 ^65000:3_0:217_0:212$ ip community-list expanded c5 permit 1005 ^65000:4_0:218_0:37$ ip community-list expanded c5 permit 1006 ^65000:4_0:218_0:38$ ip community-list expanded c5 permit 1007 ^65000:4_0:218_0:39$ ip community-list expanded c5 permit 1008 ^65000:4_0:218_0:40$ ip community-list expanded c5 permit 1009 ^65000:4_0:218_0:41$ ip community-list expanded c5 permit 1010 ^65000:4_0:218_0:42$ ip community-list expanded c5 permit 1011 ^65000:4_0:218_0:43$ ip community-list expanded c5 permit 1012 ^65000:3_0:218_0:213$ ip community-list expanded c5 permit 1013 ^65000:4_0:219_0:37$ ip community-list expanded c5 permit 1014 ^65000:4_0:219_0:38$ ip community-list expanded c5 permit 1015 ^65000:4_0:219_0:39$ ip community-list expanded c5 permit 1016 ^65000:4_0:219_0:40$ ip community-list expanded c5 permit 1017 ^65000:4_0:219_0:41$ ip community-list expanded c5 permit 1018 ^65000:4_0:219_0:42$ ip community-list expanded c5 permit 1019 ^65000:4_0:219_0:43$ ip community-list expanded c5 permit 1020 ^65000:3_0:219_0:214$ ip community-list expanded c5 permit 1021 ^65000:4_0:220_0:37$ ip community-list expanded c5 permit 1022 ^65000:4_0:220_0:38$ ip community-list expanded c5 permit 1023 ^65000:4_0:220_0:39$ ip community-list expanded c5 permit 1024 ^65000:4_0:220_0:40$ ip community-list expanded c5 permit 1025 ^65000:4_0:220_0:41$ ip community-list expanded c5 permit 1026 ^65000:4_0:220_0:42$ ip community-list expanded c5 permit 1027 ^65000:4_0:220_0:43$ ip community-list expanded c5 permit 1028 ^65000:4_0:220_0:44$ ip community-list expanded c5 permit 1029 ^65000:3_0:220_0:215$ ip community-list expanded c5 permit 1030 ^65000:4_0:221_0:37$ ip community-list expanded c5 permit 1031 ^65000:4_0:221_0:38$ ip community-list expanded c5 permit 1032 ^65000:4_0:221_0:39$ ip community-list expanded c5 permit 1033 ^65000:4_0:221_0:40$ ip community-list expanded c5 permit 1034 ^65000:4_0:221_0:41$ ip community-list expanded c5 permit 1035 ^65000:4_0:221_0:42$ ip community-list expanded c5 permit 1036 ^65000:4_0:221_0:43$ ip community-list expanded c5 permit 1037 ^65000:4_0:221_0:44$ ip community-list expanded c5 permit 1038 ^65000:3_0:221_0:216$ ip community-list expanded c5 permit 1039 ^65000:4_0:222_0:38$ ip community-list expanded c5 permit 1040 ^65000:4_0:222_0:39$ ip community-list expanded c5 permit 1041 ^65000:4_0:222_0:40$ ip community-list expanded c5 permit 1042 ^65000:4_0:222_0:41$ ip community-list expanded c5 permit 1043 ^65000:4_0:222_0:42$ ip community-list expanded c5 permit 1044 ^65000:4_0:222_0:43$ ip community-list expanded c5 permit 1045 ^65000:4_0:222_0:44$ ip community-list expanded c5 permit 1046 ^65000:3_0:222_0:217$ ip community-list expanded c5 permit 1047 ^65000:4_0:223_0:38$ ip community-list expanded c5 permit 1048 ^65000:4_0:223_0:39$ ip community-list expanded c5 permit 1049 ^65000:4_0:223_0:40$ ip community-list expanded c5 permit 1050 ^65000:4_0:223_0:41$ ip community-list expanded c5 permit 1051 ^65000:4_0:223_0:42$ ip community-list expanded c5 permit 1052 ^65000:4_0:223_0:43$ ip community-list expanded c5 permit 1053 ^65000:4_0:223_0:44$ ip community-list expanded c5 permit 1054 ^65000:3_0:223_0:218$ ip community-list expanded c5 permit 1055 ^65000:4_0:224_0:38$ ip community-list expanded c5 permit 1056 ^65000:4_0:224_0:39$ ip community-list expanded c5 permit 1057 ^65000:4_0:224_0:40$ ip community-list expanded c5 permit 1058 ^65000:4_0:224_0:41$ ip community-list expanded c5 permit 1059 ^65000:4_0:224_0:42$ ip community-list expanded c5 permit 1060 ^65000:4_0:224_0:43$ ip community-list expanded c5 permit 1061 ^65000:4_0:224_0:44$ ip community-list expanded c5 permit 1062 ^65000:3_0:224_0:219$ ip community-list expanded c5 permit 1063 ^65000:4_0:225_0:38$ ip community-list expanded c5 permit 1064 ^65000:4_0:225_0:39$ ip community-list expanded c5 permit 1065 ^65000:4_0:225_0:40$ ip community-list expanded c5 permit 1066 ^65000:4_0:225_0:41$ ip community-list expanded c5 permit 1067 ^65000:4_0:225_0:42$ ip community-list expanded c5 permit 1068 ^65000:4_0:225_0:43$ ip community-list expanded c5 permit 1069 ^65000:4_0:225_0:44$ ip community-list expanded c5 permit 1070 ^65000:4_0:225_0:45$ ip community-list expanded c5 permit 1071 ^65000:3_0:225_0:220$ ip community-list expanded c5 permit 1072 ^65000:4_0:226_0:38$ ip community-list expanded c5 permit 1073 ^65000:4_0:226_0:39$ ip community-list expanded c5 permit 1074 ^65000:4_0:226_0:40$ ip community-list expanded c5 permit 1075 ^65000:4_0:226_0:41$ ip community-list expanded c5 permit 1076 ^65000:4_0:226_0:42$ ip community-list expanded c5 permit 1077 ^65000:4_0:226_0:43$ ip community-list expanded c5 permit 1078 ^65000:4_0:226_0:44$ ip community-list expanded c5 permit 1079 ^65000:4_0:226_0:45$ ip community-list expanded c5 permit 1080 ^65000:3_0:226_0:221$ ip community-list expanded c5 permit 1081 ^65000:4_0:227_0:38$ ip community-list expanded c5 permit 1082 ^65000:4_0:227_0:39$ ip community-list expanded c5 permit 1083 ^65000:4_0:227_0:40$ ip community-list expanded c5 permit 1084 ^65000:4_0:227_0:41$ ip community-list expanded c5 permit 1085 ^65000:4_0:227_0:42$ ip community-list expanded c5 permit 1086 ^65000:4_0:227_0:43$ ip community-list expanded c5 permit 1087 ^65000:4_0:227_0:44$ ip community-list expanded c5 permit 1088 ^65000:4_0:227_0:45$ ip community-list expanded c5 permit 1089 ^65000:3_0:227_0:222$ ip community-list expanded c5 permit 1090 ^65000:4_0:228_0:39$ ip community-list expanded c5 permit 1091 ^65000:4_0:228_0:40$ ip community-list expanded c5 permit 1092 ^65000:4_0:228_0:41$ ip community-list expanded c5 permit 1093 ^65000:4_0:228_0:42$ ip community-list expanded c5 permit 1094 ^65000:4_0:228_0:43$ ip community-list expanded c5 permit 1095 ^65000:4_0:228_0:44$ ip community-list expanded c5 permit 1096 ^65000:4_0:228_0:45$ ip community-list expanded c5 permit 1097 ^65000:3_0:228_0:223$ ip community-list expanded c5 permit 1098 ^65000:4_0:229_0:39$ ip community-list expanded c5 permit 1099 ^65000:4_0:229_0:40$ ip community-list expanded c5 permit 1100 ^65000:4_0:229_0:41$ ip community-list expanded c5 permit 1101 ^65000:4_0:229_0:42$ ip community-list expanded c5 permit 1102 ^65000:4_0:229_0:43$ ip community-list expanded c5 permit 1103 ^65000:4_0:229_0:44$ ip community-list expanded c5 permit 1104 ^65000:4_0:229_0:45$ ip community-list expanded c5 permit 1105 ^65000:3_0:229_0:224$ ip community-list expanded c5 permit 1106 ^65000:4_0:230_0:39$ ip community-list expanded c5 permit 1107 ^65000:4_0:230_0:40$ ip community-list expanded c5 permit 1108 ^65000:4_0:230_0:41$ ip community-list expanded c5 permit 1109 ^65000:4_0:230_0:42$ ip community-list expanded c5 permit 1110 ^65000:4_0:230_0:43$ ip community-list expanded c5 permit 1111 ^65000:4_0:230_0:44$ ip community-list expanded c5 permit 1112 ^65000:4_0:230_0:45$ ip community-list expanded c5 permit 1113 ^65000:4_0:230_0:46$ ip community-list expanded c5 permit 1114 ^65000:3_0:230_0:225$ ip community-list expanded c5 permit 1115 ^65000:4_0:231_0:39$ ip community-list expanded c5 permit 1116 ^65000:4_0:231_0:40$ ip community-list expanded c5 permit 1117 ^65000:4_0:231_0:41$ ip community-list expanded c5 permit 1118 ^65000:4_0:231_0:42$ ip community-list expanded c5 permit 1119 ^65000:4_0:231_0:43$ ip community-list expanded c5 permit 1120 ^65000:4_0:231_0:44$ ip community-list expanded c5 permit 1121 ^65000:4_0:231_0:45$ ip community-list expanded c5 permit 1122 ^65000:4_0:231_0:46$ ip community-list expanded c5 permit 1123 ^65000:3_0:231_0:226$ ip community-list expanded c5 permit 1124 ^65000:4_0:232_0:39$ ip community-list expanded c5 permit 1125 ^65000:4_0:232_0:40$ ip community-list expanded c5 permit 1126 ^65000:4_0:232_0:41$ ip community-list expanded c5 permit 1127 ^65000:4_0:232_0:42$ ip community-list expanded c5 permit 1128 ^65000:4_0:232_0:43$ ip community-list expanded c5 permit 1129 ^65000:4_0:232_0:44$ ip community-list expanded c5 permit 1130 ^65000:4_0:232_0:45$ ip community-list expanded c5 permit 1131 ^65000:4_0:232_0:46$ ip community-list expanded c5 permit 1132 ^65000:3_0:232_0:227$ ip community-list expanded c5 permit 1133 ^65000:4_0:233_0:39$ ip community-list expanded c5 permit 1134 ^65000:4_0:233_0:40$ ip community-list expanded c5 permit 1135 ^65000:4_0:233_0:41$ ip community-list expanded c5 permit 1136 ^65000:4_0:233_0:42$ ip community-list expanded c5 permit 1137 ^65000:4_0:233_0:43$ ip community-list expanded c5 permit 1138 ^65000:4_0:233_0:44$ ip community-list expanded c5 permit 1139 ^65000:4_0:233_0:45$ ip community-list expanded c5 permit 1140 ^65000:4_0:233_0:46$ ip community-list expanded c5 permit 1141 ^65000:3_0:233_0:228$ ip community-list expanded c5 permit 1142 ^65000:4_0:234_0:40$ ip community-list expanded c5 permit 1143 ^65000:4_0:234_0:41$ ip community-list expanded c5 permit 1144 ^65000:4_0:234_0:42$ ip community-list expanded c5 permit 1145 ^65000:4_0:234_0:43$ ip community-list expanded c5 permit 1146 ^65000:4_0:234_0:44$ ip community-list expanded c5 permit 1147 ^65000:4_0:234_0:45$ ip community-list expanded c5 permit 1148 ^65000:4_0:234_0:46$ ip community-list expanded c5 permit 1149 ^65000:3_0:234_0:229$ ip community-list expanded c5 permit 1150 ^65000:4_0:235_0:40$ ip community-list expanded c5 permit 1151 ^65000:4_0:235_0:41$ ip community-list expanded c5 permit 1152 ^65000:4_0:235_0:42$ ip community-list expanded c5 permit 1153 ^65000:4_0:235_0:43$ ip community-list expanded c5 permit 1154 ^65000:4_0:235_0:44$ ip community-list expanded c5 permit 1155 ^65000:4_0:235_0:45$ ip community-list expanded c5 permit 1156 ^65000:4_0:235_0:46$ ip community-list expanded c5 permit 1157 ^65000:4_0:235_0:47$ ip community-list expanded c5 permit 1158 ^65000:3_0:235_0:230$ ip community-list expanded c5 permit 1159 ^65000:4_0:236_0:40$ ip community-list expanded c5 permit 1160 ^65000:4_0:236_0:41$ ip community-list expanded c5 permit 1161 ^65000:4_0:236_0:42$ ip community-list expanded c5 permit 1162 ^65000:4_0:236_0:43$ ip community-list expanded c5 permit 1163 ^65000:4_0:236_0:44$ ip community-list expanded c5 permit 1164 ^65000:4_0:236_0:45$ ip community-list expanded c5 permit 1165 ^65000:4_0:236_0:46$ ip community-list expanded c5 permit 1166 ^65000:4_0:236_0:47$ ip community-list expanded c5 permit 1167 ^65000:3_0:236_0:231$ ip community-list expanded c5 permit 1168 ^65000:4_0:237_0:40$ ip community-list expanded c5 permit 1169 ^65000:4_0:237_0:41$ ip community-list expanded c5 permit 1170 ^65000:4_0:237_0:42$ ip community-list expanded c5 permit 1171 ^65000:4_0:237_0:43$ ip community-list expanded c5 permit 1172 ^65000:4_0:237_0:44$ ip community-list expanded c5 permit 1173 ^65000:4_0:237_0:45$ ip community-list expanded c5 permit 1174 ^65000:4_0:237_0:46$ ip community-list expanded c5 permit 1175 ^65000:4_0:237_0:47$ ip community-list expanded c5 permit 1176 ^65000:3_0:237_0:232$ ip community-list expanded c5 permit 1177 ^65000:4_0:238_0:40$ ip community-list expanded c5 permit 1178 ^65000:4_0:238_0:41$ ip community-list expanded c5 permit 1179 ^65000:4_0:238_0:42$ ip community-list expanded c5 permit 1180 ^65000:4_0:238_0:43$ ip community-list expanded c5 permit 1181 ^65000:4_0:238_0:44$ ip community-list expanded c5 permit 1182 ^65000:4_0:238_0:45$ ip community-list expanded c5 permit 1183 ^65000:4_0:238_0:46$ ip community-list expanded c5 permit 1184 ^65000:4_0:238_0:47$ ip community-list expanded c5 permit 1185 ^65000:3_0:238_0:233$ ip community-list expanded c5 permit 1186 ^65000:4_0:239_0:40$ ip community-list expanded c5 permit 1187 ^65000:4_0:239_0:41$ ip community-list expanded c5 permit 1188 ^65000:4_0:239_0:42$ ip community-list expanded c5 permit 1189 ^65000:4_0:239_0:43$ ip community-list expanded c5 permit 1190 ^65000:4_0:239_0:44$ ip community-list expanded c5 permit 1191 ^65000:4_0:239_0:45$ ip community-list expanded c5 permit 1192 ^65000:4_0:239_0:46$ ip community-list expanded c5 permit 1193 ^65000:4_0:239_0:47$ ip community-list expanded c5 permit 1194 ^65000:3_0:239_0:234$ ip community-list expanded c5 permit 1195 ^65000:4_0:240_0:41$ ip community-list expanded c5 permit 1196 ^65000:4_0:240_0:42$ ip community-list expanded c5 permit 1197 ^65000:4_0:240_0:43$ ip community-list expanded c5 permit 1198 ^65000:4_0:240_0:44$ ip community-list expanded c5 permit 1199 ^65000:4_0:240_0:45$ ip community-list expanded c5 permit 1200 ^65000:4_0:240_0:46$ ip community-list expanded c5 permit 1201 ^65000:4_0:240_0:47$ ip community-list expanded c5 permit 1202 ^65000:4_0:240_0:48$ ip community-list expanded c5 permit 1203 ^65000:3_0:240_0:235$ ip community-list expanded c5 permit 1204 ^65000:4_0:241_0:41$ ip community-list expanded c5 permit 1205 ^65000:4_0:241_0:42$ ip community-list expanded c5 permit 1206 ^65000:4_0:241_0:43$ ip community-list expanded c5 permit 1207 ^65000:4_0:241_0:44$ ip community-list expanded c5 permit 1208 ^65000:4_0:241_0:45$ ip community-list expanded c5 permit 1209 ^65000:4_0:241_0:46$ ip community-list expanded c5 permit 1210 ^65000:4_0:241_0:47$ ip community-list expanded c5 permit 1211 ^65000:4_0:241_0:48$ ip community-list expanded c5 permit 1212 ^65000:3_0:241_0:236$ ip community-list expanded c5 permit 1213 ^65000:4_0:242_0:41$ ip community-list expanded c5 permit 1214 ^65000:4_0:242_0:42$ ip community-list expanded c5 permit 1215 ^65000:4_0:242_0:43$ ip community-list expanded c5 permit 1216 ^65000:4_0:242_0:44$ ip community-list expanded c5 permit 1217 ^65000:4_0:242_0:45$ ip community-list expanded c5 permit 1218 ^65000:4_0:242_0:46$ ip community-list expanded c5 permit 1219 ^65000:4_0:242_0:47$ ip community-list expanded c5 permit 1220 ^65000:4_0:242_0:48$ ip community-list expanded c5 permit 1221 ^65000:3_0:242_0:237$ ip community-list expanded c5 permit 1222 ^65000:4_0:243_0:41$ ip community-list expanded c5 permit 1223 ^65000:4_0:243_0:42$ ip community-list expanded c5 permit 1224 ^65000:4_0:243_0:43$ ip community-list expanded c5 permit 1225 ^65000:4_0:243_0:44$ ip community-list expanded c5 permit 1226 ^65000:4_0:243_0:45$ ip community-list expanded c5 permit 1227 ^65000:4_0:243_0:46$ ip community-list expanded c5 permit 1228 ^65000:4_0:243_0:47$ ip community-list expanded c5 permit 1229 ^65000:4_0:243_0:48$ ip community-list expanded c5 permit 1230 ^65000:3_0:243_0:238$ ip community-list expanded c5 permit 1231 ^65000:4_0:244_0:41$ ip community-list expanded c5 permit 1232 ^65000:4_0:244_0:42$ ip community-list expanded c5 permit 1233 ^65000:4_0:244_0:43$ ip community-list expanded c5 permit 1234 ^65000:4_0:244_0:44$ ip community-list expanded c5 permit 1235 ^65000:4_0:244_0:45$ ip community-list expanded c5 permit 1236 ^65000:4_0:244_0:46$ ip community-list expanded c5 permit 1237 ^65000:4_0:244_0:47$ ip community-list expanded c5 permit 1238 ^65000:4_0:244_0:48$ ip community-list expanded c5 permit 1239 ^65000:3_0:244_0:239$ ip community-list expanded c5 permit 1240 ^65000:4_0:245_0:41$ ip community-list expanded c5 permit 1241 ^65000:4_0:245_0:42$ ip community-list expanded c5 permit 1242 ^65000:4_0:245_0:43$ ip community-list expanded c5 permit 1243 ^65000:4_0:245_0:44$ ip community-list expanded c5 permit 1244 ^65000:4_0:245_0:45$ ip community-list expanded c5 permit 1245 ^65000:4_0:245_0:46$ ip community-list expanded c5 permit 1246 ^65000:4_0:245_0:47$ ip community-list expanded c5 permit 1247 ^65000:4_0:245_0:48$ ip community-list expanded c5 permit 1248 ^65000:4_0:245_0:49$ ip community-list expanded c5 permit 1249 ^65000:3_0:245_0:240$ ip community-list expanded c5 permit 1250 ^65000:4_0:246_0:42$ ip community-list expanded c5 permit 1251 ^65000:4_0:246_0:43$ ip community-list expanded c5 permit 1252 ^65000:4_0:246_0:44$ ip community-list expanded c5 permit 1253 ^65000:4_0:246_0:45$ ip community-list expanded c5 permit 1254 ^65000:4_0:246_0:46$ ip community-list expanded c5 permit 1255 ^65000:4_0:246_0:47$ ip community-list expanded c5 permit 1256 ^65000:4_0:246_0:48$ ip community-list expanded c5 permit 1257 ^65000:4_0:246_0:49$ ip community-list expanded c5 permit 1258 ^65000:3_0:246_0:241$ ip community-list expanded c5 permit 1259 ^65000:4_0:247_0:42$ ip community-list expanded c5 permit 1260 ^65000:4_0:247_0:43$ ip community-list expanded c5 permit 1261 ^65000:4_0:247_0:44$ ip community-list expanded c5 permit 1262 ^65000:4_0:247_0:45$ ip community-list expanded c5 permit 1263 ^65000:4_0:247_0:46$ ip community-list expanded c5 permit 1264 ^65000:4_0:247_0:47$ ip community-list expanded c5 permit 1265 ^65000:4_0:247_0:48$ ip community-list expanded c5 permit 1266 ^65000:4_0:247_0:49$ ip community-list expanded c5 permit 1267 ^65000:3_0:247_0:242$ ip community-list expanded c5 permit 1268 ^65000:4_0:248_0:42$ ip community-list expanded c5 permit 1269 ^65000:4_0:248_0:43$ ip community-list expanded c5 permit 1270 ^65000:4_0:248_0:44$ ip community-list expanded c5 permit 1271 ^65000:4_0:248_0:45$ ip community-list expanded c5 permit 1272 ^65000:4_0:248_0:46$ ip community-list expanded c5 permit 1273 ^65000:4_0:248_0:47$ ip community-list expanded c5 permit 1274 ^65000:4_0:248_0:48$ ip community-list expanded c5 permit 1275 ^65000:4_0:248_0:49$ ip community-list expanded c5 permit 1276 ^65000:3_0:248_0:243$ ip community-list expanded c5 permit 1277 ^65000:4_0:249_0:42$ ip community-list expanded c5 permit 1278 ^65000:4_0:249_0:43$ ip community-list expanded c5 permit 1279 ^65000:4_0:249_0:44$ ip community-list expanded c5 permit 1280 ^65000:4_0:249_0:45$ ip community-list expanded c5 permit 1281 ^65000:4_0:249_0:46$ ip community-list expanded c5 permit 1282 ^65000:4_0:249_0:47$ ip community-list expanded c5 permit 1283 ^65000:4_0:249_0:48$ ip community-list expanded c5 permit 1284 ^65000:4_0:249_0:49$ ip community-list expanded c5 permit 1285 ^65000:3_0:249_0:244$ ip community-list expanded c5 permit 1286 ^65000:4_0:250_0:42$ ip community-list expanded c5 permit 1287 ^65000:4_0:250_0:43$ ip community-list expanded c5 permit 1288 ^65000:4_0:250_0:44$ ip community-list expanded c5 permit 1289 ^65000:4_0:250_0:45$ ip community-list expanded c5 permit 1290 ^65000:4_0:250_0:46$ ip community-list expanded c5 permit 1291 ^65000:4_0:250_0:47$ ip community-list expanded c5 permit 1292 ^65000:4_0:250_0:48$ ip community-list expanded c5 permit 1293 ^65000:4_0:250_0:49$ ip community-list expanded c5 permit 1294 ^65000:4_0:250_0:50$ ip community-list expanded c5 permit 1295 ^65000:3_0:250_0:245$ ip community-list expanded c5 permit 1296 ^65000:4_0:251_0:42$ ip community-list expanded c5 permit 1297 ^65000:4_0:251_0:43$ ip community-list expanded c5 permit 1298 ^65000:4_0:251_0:44$ ip community-list expanded c5 permit 1299 ^65000:4_0:251_0:45$ ip community-list expanded c5 permit 1300 ^65000:4_0:251_0:46$ ip community-list expanded c5 permit 1301 ^65000:4_0:251_0:47$ ip community-list expanded c5 permit 1302 ^65000:4_0:251_0:48$ ip community-list expanded c5 permit 1303 ^65000:4_0:251_0:49$ ip community-list expanded c5 permit 1304 ^65000:4_0:251_0:50$ ip community-list expanded c5 permit 1305 ^65000:3_0:251_0:246$ ip community-list expanded c5 permit 1306 ^65000:4_0:252_0:43$ ip community-list expanded c5 permit 1307 ^65000:4_0:252_0:44$ ip community-list expanded c5 permit 1308 ^65000:4_0:252_0:45$ ip community-list expanded c5 permit 1309 ^65000:4_0:252_0:46$ ip community-list expanded c5 permit 1310 ^65000:4_0:252_0:47$ ip community-list expanded c5 permit 1311 ^65000:4_0:252_0:48$ ip community-list expanded c5 permit 1312 ^65000:4_0:252_0:49$ ip community-list expanded c5 permit 1313 ^65000:4_0:252_0:50$ ip community-list expanded c5 permit 1314 ^65000:3_0:252_0:247$ ip community-list expanded c5 permit 1315 ^65000:4_0:253_0:43$ ip community-list expanded c5 permit 1316 ^65000:4_0:253_0:44$ ip community-list expanded c5 permit 1317 ^65000:4_0:253_0:45$ ip community-list expanded c5 permit 1318 ^65000:4_0:253_0:46$ ip community-list expanded c5 permit 1319 ^65000:4_0:253_0:47$ ip community-list expanded c5 permit 1320 ^65000:4_0:253_0:48$ ip community-list expanded c5 permit 1321 ^65000:4_0:253_0:49$ ip community-list expanded c5 permit 1322 ^65000:4_0:253_0:50$ ip community-list expanded c5 permit 1323 ^65000:3_0:253_0:248$ ip community-list expanded c5 permit 1324 ^65000:4_0:254_0:43$ ip community-list expanded c5 permit 1325 ^65000:4_0:254_0:44$ ip community-list expanded c5 permit 1326 ^65000:4_0:254_0:45$ ip community-list expanded c5 permit 1327 ^65000:4_0:254_0:46$ ip community-list expanded c5 permit 1328 ^65000:4_0:254_0:47$ ip community-list expanded c5 permit 1329 ^65000:4_0:254_0:48$ ip community-list expanded c5 permit 1330 ^65000:4_0:254_0:49$ ip community-list expanded c5 permit 1331 ^65000:4_0:254_0:50$ ip community-list expanded c5 permit 1332 ^65000:3_0:254_0:249$ ip community-list expanded c5 permit 1333 ^65000:4_0:255_0:43$ ip community-list expanded c5 permit 1334 ^65000:4_0:255_0:44$ ip community-list expanded c5 permit 1335 ^65000:4_0:255_0:45$ ip community-list expanded c5 permit 1336 ^65000:4_0:255_0:46$ ip community-list expanded c5 permit 1337 ^65000:4_0:255_0:47$ ip community-list expanded c5 permit 1338 ^65000:4_0:255_0:48$ ip community-list expanded c5 permit 1339 ^65000:4_0:255_0:49$ ip community-list expanded c5 permit 1340 ^65000:4_0:255_0:50$ ip community-list expanded c5 permit 1341 ^65000:4_0:255_0:51$ ip community-list expanded c5 permit 1342 ^65000:3_0:255_0:250$ ip community-list expanded c5 permit 1343 ^65000:4_0:256_0:43$ ip community-list expanded c5 permit 1344 ^65000:4_0:256_0:44$ ip community-list expanded c5 permit 1345 ^65000:4_0:256_0:45$ ip community-list expanded c5 permit 1346 ^65000:4_0:256_0:46$ ip community-list expanded c5 permit 1347 ^65000:4_0:256_0:47$ ip community-list expanded c5 permit 1348 ^65000:4_0:256_0:48$ ip community-list expanded c5 permit 1349 ^65000:4_0:256_0:49$ ip community-list expanded c5 permit 1350 ^65000:4_0:256_0:50$ ip community-list expanded c5 permit 1351 ^65000:4_0:256_0:51$ ip community-list expanded c5 permit 1352 ^65000:3_0:256_0:251$ route-map calculator permit 9227 match community 1_1_4 2_1_5 1_2_3 c4_5_1 c3_6_1 set community 0:5 route-map calculator permit 9228 match community c3_7_2 c3_8_3 c3_9_4 c4_10_2 c3_10_5 set community 0:5 route-map calculator permit 9229 match community c4_11_2 c3_11_6 c3_12_7 c3_13_8 c3_14_9 set community 0:5 route-map calculator permit 9230 match community c4_15_3 c3_15_10 c4_16_3 c3_16_11 c4_17_3 set community 0:5 route-map calculator permit 9231 match community c3_17_12 c3_18_13 c3_19_14 c4_20_4 c3_20_15 set community 0:5 route-map calculator permit 9232 match community c4_21_4 c3_21_16 c4_22_4 c3_22_17 c4_23_4 set community 0:5 route-map calculator permit 9233 match community c3_23_18 c3_24_19 c4_25_5 c3_25_20 c4_26_5 set community 0:5 route-map calculator permit 9234 match community c3_26_21 c4_27_5 c3_27_22 c4_28_5 c3_28_23 set community 0:5 route-map calculator permit 9235 match community c4_29_5 c3_29_24 c4_30_6 c3_30_25 c4_31_6 set community 0:5 route-map calculator permit 9236 match community c3_31_26 c4_32_6 c3_32_27 c4_33_6 c3_33_28 set community 0:5 route-map calculator permit 9237 match community c4_34_6 c3_34_29 c4_35_6 c4_35_7 c3_35_30 set community 0:5 route-map calculator permit 9238 match community c4_36_7 c3_36_31 c4_37_7 c3_37_32 c4_38_7 set community 0:5 route-map calculator permit 9239 match community c3_38_33 c4_39_7 c3_39_34 c4_40_7 c4_40_8 set community 0:5 route-map calculator permit 9240 match community c3_40_35 c4_41_7 c4_41_8 c3_41_36 c4_42_8 set community 0:5 route-map calculator permit 9241 match community c3_42_37 c4_43_8 c3_43_38 c4_44_8 c3_44_39 set community 0:5 route-map calculator permit 9242 match community c4_45_8 c4_45_9 c3_45_40 c4_46_8 c4_46_9 set community 0:5 route-map calculator permit 9243 match community c3_46_41 c4_47_8 c4_47_9 c3_47_42 c4_48_9 set community 0:5 route-map calculator permit 9244 match community c3_48_43 c4_49_9 c3_49_44 c4_50_9 c4_50_10 set community 0:5 route-map calculator permit 9245 match community c3_50_45 c4_51_9 c4_51_10 c3_51_46 c4_52_9 set community 0:5 route-map calculator permit 9246 match community c4_52_10 c3_52_47 c4_53_9 c4_53_10 c3_53_48 set community 0:5 route-map calculator permit 9247 match community c4_54_10 c3_54_49 c4_55_10 c4_55_11 c3_55_50 set community 0:5 route-map calculator permit 9248 match community c4_56_10 c4_56_11 c3_56_51 c4_57_10 c4_57_11 set community 0:5 route-map calculator permit 9249 match community c3_57_52 c4_58_10 c4_58_11 c3_58_53 c4_59_10 set community 0:5 route-map calculator permit 9250 match community c4_59_11 c3_59_54 c4_60_11 c4_60_12 c3_60_55 set community 0:5 route-map calculator permit 9251 match community c4_61_11 c4_61_12 c3_61_56 c4_62_11 c4_62_12 set community 0:5 route-map calculator permit 9252 match community c3_62_57 c4_63_11 c4_63_12 c3_63_58 c4_64_11 set community 0:5 route-map calculator permit 9253 match community c4_64_12 c3_64_59 c4_65_11 c4_65_12 c4_65_13 set community 0:5 route-map calculator permit 9254 match community c3_65_60 c4_66_12 c4_66_13 c3_66_61 c4_67_12 set community 0:5 route-map calculator permit 9255 match community c4_67_13 c3_67_62 c4_68_12 c4_68_13 c3_68_63 set community 0:5 route-map calculator permit 9256 match community c4_69_12 c4_69_13 c3_69_64 c4_70_12 c4_70_13 set community 0:5 route-map calculator permit 9257 match community c4_70_14 c3_70_65 c4_71_12 c4_71_13 c4_71_14 set community 0:5 route-map calculator permit 9258 match community c3_71_66 c4_72_13 c4_72_14 c3_72_67 c4_73_13 set community 0:5 route-map calculator permit 9259 match community c4_73_14 c3_73_68 c4_74_13 c4_74_14 c3_74_69 set community 0:5 route-map calculator permit 9260 match community c4_75_13 c4_75_14 c4_75_15 c3_75_70 c4_76_13 set community 0:5 route-map calculator permit 9261 match community c4_76_14 c4_76_15 c3_76_71 c4_77_13 c4_77_14 set community 0:5 route-map calculator permit 9262 match community c4_77_15 c3_77_72 c4_78_14 c4_78_15 c3_78_73 set community 0:5 route-map calculator permit 9263 match community c4_79_14 c4_79_15 c3_79_74 c4_80_14 c4_80_15 set community 0:5 route-map calculator permit 9264 match community c4_80_16 c3_80_75 c4_81_14 c4_81_15 c4_81_16 set community 0:5 route-map calculator permit 9265 match community c3_81_76 c4_82_14 c4_82_15 c4_82_16 c3_82_77 set community 0:5 route-map calculator permit 9266 match community c4_83_14 c4_83_15 c4_83_16 c3_83_78 c4_84_15 set community 0:5 route-map calculator permit 9267 match community c4_84_16 c3_84_79 c4_85_15 c4_85_16 c4_85_17 set community 0:5 route-map calculator permit 9268 match community c3_85_80 c4_86_15 c4_86_16 c4_86_17 c3_86_81 set community 0:5 route-map calculator permit 9269 match community c4_87_15 c4_87_16 c4_87_17 c3_87_82 c4_88_15 set community 0:5 route-map calculator permit 9270 match community c4_88_16 c4_88_17 c3_88_83 c4_89_15 c4_89_16 set community 0:5 route-map calculator permit 9271 match community c4_89_17 c3_89_84 c4_90_16 c4_90_17 c4_90_18 set community 0:5 route-map calculator permit 9272 match community c3_90_85 c4_91_16 c4_91_17 c4_91_18 c3_91_86 set community 0:5 route-map calculator permit 9273 match community c4_92_16 c4_92_17 c4_92_18 c3_92_87 c4_93_16 set community 0:5 route-map calculator permit 9274 match community c4_93_17 c4_93_18 c3_93_88 c4_94_16 c4_94_17 set community 0:5 route-map calculator permit 9275 match community c4_94_18 c3_94_89 c4_95_16 c4_95_17 c4_95_18 set community 0:5 route-map calculator permit 9276 match community c4_95_19 c3_95_90 c4_96_17 c4_96_18 c4_96_19 set community 0:5 route-map calculator permit 9277 match community c3_96_91 c4_97_17 c4_97_18 c4_97_19 c3_97_92 set community 0:5 route-map calculator permit 9278 match community c4_98_17 c4_98_18 c4_98_19 c3_98_93 c4_99_17 set community 0:5 route-map calculator permit 9279 match community c4_99_18 c4_99_19 c3_99_94 c4_100_17 c4_100_18 set community 0:5 route-map calculator permit 9280 match community c4_100_19 c4_100_20 c3_100_95 c4_101_17 c4_101_18 set community 0:5 route-map calculator permit 9281 match community c4_101_19 c4_101_20 c3_101_96 c4_102_18 c4_102_19 set community 0:5 route-map calculator permit 9282 match community c4_102_20 c3_102_97 c4_103_18 c4_103_19 c4_103_20 set community 0:5 route-map calculator permit 9283 match community c3_103_98 c4_104_18 c4_104_19 c4_104_20 c3_104_99 set community 0:5 route-map calculator permit 9284 match community c4_105_18 c4_105_19 c4_105_20 c4_105_21 c3_105_100 set community 0:5 route-map calculator permit 9285 match community c4_106_18 c4_106_19 c4_106_20 c4_106_21 c3_106_101 set community 0:5 route-map calculator permit 9286 match community c4_107_18 c4_107_19 c4_107_20 c4_107_21 c3_107_102 set community 0:5 route-map calculator permit 9287 match community c4_108_19 c4_108_20 c4_108_21 c3_108_103 c4_109_19 set community 0:5 route-map calculator permit 9288 match community c4_109_20 c4_109_21 c3_109_104 c4_110_19 c4_110_20 set community 0:5 route-map calculator permit 9289 match community c4_110_21 c4_110_22 c3_110_105 c4_111_19 c4_111_20 set community 0:5 route-map calculator permit 9290 match community c4_111_21 c4_111_22 c3_111_106 c4_112_19 c4_112_20 set community 0:5 route-map calculator permit 9291 match community c4_112_21 c4_112_22 c3_112_107 c4_113_19 c4_113_20 set community 0:5 route-map calculator permit 9292 match community c4_113_21 c4_113_22 c3_113_108 c4_114_20 c4_114_21 set community 0:5 route-map calculator permit 9293 match community c4_114_22 c3_114_109 c4_115_20 c4_115_21 c4_115_22 set community 0:5 route-map calculator permit 9294 match community c4_115_23 c3_115_110 c4_116_20 c4_116_21 c4_116_22 set community 0:5 route-map calculator permit 9295 match community c4_116_23 c3_116_111 c4_117_20 c4_117_21 c4_117_22 set community 0:5 route-map calculator permit 9296 match community c4_117_23 c3_117_112 c4_118_20 c4_118_21 c4_118_22 set community 0:5 route-map calculator permit 9297 match community c4_118_23 c3_118_113 c4_119_20 c4_119_21 c4_119_22 set community 0:5 route-map calculator permit 9298 match community c4_119_23 c3_119_114 c4_120_21 c4_120_22 c4_120_23 set community 0:5 route-map calculator permit 9299 match community c4_120_24 c3_120_115 c4_121_21 c4_121_22 c4_121_23 set community 0:5 route-map calculator permit 9300 match community c4_121_24 c3_121_116 c4_122_21 c4_122_22 c4_122_23 set community 0:5 route-map calculator permit 9301 match community c4_122_24 c3_122_117 c4_123_21 c4_123_22 c4_123_23 set community 0:5 route-map calculator permit 9302 match community c4_123_24 c3_123_118 c4_124_21 c4_124_22 c4_124_23 set community 0:5 route-map calculator permit 9303 match community c4_124_24 c3_124_119 c4_125_21 c4_125_22 c4_125_23 set community 0:5 route-map calculator permit 9304 match community c4_125_24 c4_125_25 c3_125_120 c4_126_22 c4_126_23 set community 0:5 route-map calculator permit 9305 match community c4_126_24 c4_126_25 c3_126_121 c4_127_22 c4_127_23 set community 0:5 route-map calculator permit 9306 match community c4_127_24 c4_127_25 c3_127_122 c4_128_22 c4_128_23 set community 0:5 route-map calculator permit 9307 match community c4_128_24 c4_128_25 c3_128_123 c4_129_22 c4_129_23 set community 0:5 route-map calculator permit 9308 match community c4_129_24 c4_129_25 c3_129_124 c4_130_22 c4_130_23 set community 0:5 route-map calculator permit 9309 match community c4_130_24 c4_130_25 c4_130_26 c3_130_125 c4_131_22 set community 0:5 route-map calculator permit 9310 match community c4_131_23 c4_131_24 c4_131_25 c4_131_26 c3_131_126 set community 0:5 route-map calculator permit 9311 match community c4_132_23 c4_132_24 c4_132_25 c4_132_26 c3_132_127 set community 0:5 route-map calculator permit 9312 match community c4_133_23 c4_133_24 c4_133_25 c4_133_26 c3_133_128 set community 0:5 route-map calculator permit 9313 match community c4_134_23 c4_134_24 c4_134_25 c4_134_26 c3_134_129 set community 0:5 route-map calculator permit 9314 match community c4_135_23 c4_135_24 c4_135_25 c4_135_26 c4_135_27 set community 0:5 route-map calculator permit 9315 match community c3_135_130 c4_136_23 c4_136_24 c4_136_25 c4_136_26 set community 0:5 route-map calculator permit 9316 match community c4_136_27 c3_136_131 c4_137_23 c4_137_24 c4_137_25 set community 0:5 route-map calculator permit 9317 match community c4_137_26 c4_137_27 c3_137_132 c4_138_24 c4_138_25 set community 0:5 route-map calculator permit 9318 match community c4_138_26 c4_138_27 c3_138_133 c4_139_24 c4_139_25 set community 0:5 route-map calculator permit 9319 match community c4_139_26 c4_139_27 c3_139_134 c4_140_24 c4_140_25 set community 0:5 route-map calculator permit 9320 match community c4_140_26 c4_140_27 c4_140_28 c3_140_135 c4_141_24 set community 0:5 route-map calculator permit 9321 match community c4_141_25 c4_141_26 c4_141_27 c4_141_28 c3_141_136 set community 0:5 route-map calculator permit 9322 match community c4_142_24 c4_142_25 c4_142_26 c4_142_27 c4_142_28 set community 0:5 route-map calculator permit 9323 match community c3_142_137 c4_143_24 c4_143_25 c4_143_26 c4_143_27 set community 0:5 route-map calculator permit 9324 match community c4_143_28 c3_143_138 c4_144_25 c4_144_26 c4_144_27 set community 0:5 route-map calculator permit 9325 match community c4_144_28 c3_144_139 c4_145_25 c4_145_26 c4_145_27 set community 0:5 route-map calculator permit 9326 match community c4_145_28 c4_145_29 c3_145_140 c4_146_25 c4_146_26 set community 0:5 route-map calculator permit 9327 match community c4_146_27 c4_146_28 c4_146_29 c3_146_141 c4_147_25 set community 0:5 route-map calculator permit 9328 match community c4_147_26 c4_147_27 c4_147_28 c4_147_29 c3_147_142 set community 0:5 route-map calculator permit 9329 match community c4_148_25 c4_148_26 c4_148_27 c4_148_28 c4_148_29 set community 0:5 route-map calculator permit 9330 match community c3_148_143 c4_149_25 c4_149_26 c4_149_27 c4_149_28 set community 0:5 route-map calculator permit 9331 match community c4_149_29 c3_149_144 c4_150_26 c4_150_27 c4_150_28 set community 0:5 route-map calculator permit 9332 match community c4_150_29 c4_150_30 c3_150_145 c4_151_26 c4_151_27 set community 0:5 route-map calculator permit 9333 match community c4_151_28 c4_151_29 c4_151_30 c3_151_146 c4_152_26 set community 0:5 route-map calculator permit 9334 match community c4_152_27 c4_152_28 c4_152_29 c4_152_30 c3_152_147 set community 0:5 route-map calculator permit 9335 match community c4_153_26 c4_153_27 c4_153_28 c4_153_29 c4_153_30 set community 0:5 route-map calculator permit 9336 match community c3_153_148 c4_154_26 c4_154_27 c4_154_28 c4_154_29 set community 0:5 route-map calculator permit 9337 match community c4_154_30 c3_154_149 c4_155_26 c4_155_27 c4_155_28 set community 0:5 route-map calculator permit 9338 match community c4_155_29 c4_155_30 c4_155_31 c3_155_150 c4_156_27 set community 0:5 route-map calculator permit 9339 match community c4_156_28 c4_156_29 c4_156_30 c4_156_31 c3_156_151 set community 0:5 route-map calculator permit 9340 match community c4_157_27 c4_157_28 c4_157_29 c4_157_30 c4_157_31 set community 0:5 route-map calculator permit 9341 match community c3_157_152 c4_158_27 c4_158_28 c4_158_29 c4_158_30 set community 0:5 route-map calculator permit 9342 match community c4_158_31 c3_158_153 c4_159_27 c4_159_28 c4_159_29 set community 0:5 route-map calculator permit 9343 match community c4_159_30 c4_159_31 c3_159_154 c4_160_27 c4_160_28 set community 0:5 route-map calculator permit 9344 match community c4_160_29 c4_160_30 c4_160_31 c4_160_32 c3_160_155 set community 0:5 route-map calculator permit 9345 match community c4_161_27 c4_161_28 c4_161_29 c4_161_30 c4_161_31 set community 0:5 route-map calculator permit 9346 match community c4_161_32 c3_161_156 c4_162_28 c4_162_29 c4_162_30 set community 0:5 route-map calculator permit 9347 match community c4_162_31 c4_162_32 c3_162_157 c4_163_28 c4_163_29 set community 0:5 route-map calculator permit 9348 match community c4_163_30 c4_163_31 c4_163_32 c3_163_158 c4_164_28 set community 0:5 route-map calculator permit 9349 match community c4_164_29 c4_164_30 c4_164_31 c4_164_32 c3_164_159 set community 0:5 route-map calculator permit 9350 match community c4_165_28 c4_165_29 c4_165_30 c4_165_31 c4_165_32 set community 0:5 route-map calculator permit 9351 match community c4_165_33 c3_165_160 c4_166_28 c4_166_29 c4_166_30 set community 0:5 route-map calculator permit 9352 match community c4_166_31 c4_166_32 c4_166_33 c3_166_161 c4_167_28 set community 0:5 route-map calculator permit 9353 match community c4_167_29 c4_167_30 c4_167_31 c4_167_32 c4_167_33 set community 0:5 route-map calculator permit 9354 match community c3_167_162 c4_168_29 c4_168_30 c4_168_31 c4_168_32 set community 0:5 route-map calculator permit 9355 match community c4_168_33 c3_168_163 c4_169_29 c4_169_30 c4_169_31 set community 0:5 route-map calculator permit 9356 match community c4_169_32 c4_169_33 c3_169_164 c4_170_29 c4_170_30 set community 0:5 route-map calculator permit 9357 match community c4_170_31 c4_170_32 c4_170_33 c4_170_34 c3_170_165 set community 0:5 route-map calculator permit 9358 match community c4_171_29 c4_171_30 c4_171_31 c4_171_32 c4_171_33 set community 0:5 route-map calculator permit 9359 match community c4_171_34 c3_171_166 c4_172_29 c4_172_30 c4_172_31 set community 0:5 route-map calculator permit 9360 match community c4_172_32 c4_172_33 c4_172_34 c3_172_167 c4_173_29 set community 0:5 route-map calculator permit 9361 match community c4_173_30 c4_173_31 c4_173_32 c4_173_33 c4_173_34 set community 0:5 route-map calculator permit 9362 match community c3_173_168 c4_174_30 c4_174_31 c4_174_32 c4_174_33 set community 0:5 route-map calculator permit 9363 match community c4_174_34 c3_174_169 c4_175_30 c4_175_31 c4_175_32 set community 0:5 route-map calculator permit 9364 match community c4_175_33 c4_175_34 c4_175_35 c3_175_170 c4_176_30 set community 0:5 route-map calculator permit 9365 match community c4_176_31 c4_176_32 c4_176_33 c4_176_34 c4_176_35 set community 0:5 route-map calculator permit 9366 match community c3_176_171 c4_177_30 c4_177_31 c4_177_32 c4_177_33 set community 0:5 route-map calculator permit 9367 match community c4_177_34 c4_177_35 c3_177_172 c4_178_30 c4_178_31 set community 0:5 route-map calculator permit 9368 match community c4_178_32 c4_178_33 c4_178_34 c4_178_35 c3_178_173 set community 0:5 route-map calculator permit 9369 match community c4_179_30 c4_179_31 c4_179_32 c4_179_33 c4_179_34 set community 0:5 route-map calculator permit 9370 match community c4_179_35 c3_179_174 c4_180_31 c4_180_32 c4_180_33 set community 0:5 route-map calculator permit 9371 match community c4_180_34 c4_180_35 c4_180_36 c3_180_175 c4_181_31 set community 0:5 route-map calculator permit 9372 match community c4_181_32 c4_181_33 c4_181_34 c4_181_35 c4_181_36 set community 0:5 route-map calculator permit 9373 match community c3_181_176 c4_182_31 c4_182_32 c4_182_33 c4_182_34 set community 0:5 route-map calculator permit 9374 match community c4_182_35 c4_182_36 c3_182_177 c4_183_31 c4_183_32 set community 0:5 route-map calculator permit 9375 match community c4_183_33 c4_183_34 c4_183_35 c4_183_36 c3_183_178 set community 0:5 route-map calculator permit 9376 match community c4_184_31 c4_184_32 c4_184_33 c4_184_34 c4_184_35 set community 0:5 route-map calculator permit 9377 match community c4_184_36 c3_184_179 c4_185_31 c4_185_32 c4_185_33 set community 0:5 route-map calculator permit 9378 match community c4_185_34 c4_185_35 c4_185_36 c4_185_37 c3_185_180 set community 0:5 route-map calculator permit 9379 match community c4_186_32 c4_186_33 c4_186_34 c4_186_35 c4_186_36 set community 0:5 route-map calculator permit 9380 match community c4_186_37 c3_186_181 c4_187_32 c4_187_33 c4_187_34 set community 0:5 route-map calculator permit 9381 match community c4_187_35 c4_187_36 c4_187_37 c3_187_182 c4_188_32 set community 0:5 route-map calculator permit 9382 match community c4_188_33 c4_188_34 c4_188_35 c4_188_36 c4_188_37 set community 0:5 route-map calculator permit 9383 match community c3_188_183 c4_189_32 c4_189_33 c4_189_34 c4_189_35 set community 0:5 route-map calculator permit 9384 match community c4_189_36 c4_189_37 c3_189_184 c4_190_32 c4_190_33 set community 0:5 route-map calculator permit 9385 match community c4_190_34 c4_190_35 c4_190_36 c4_190_37 c4_190_38 set community 0:5 route-map calculator permit 9386 match community c3_190_185 c4_191_32 c4_191_33 c4_191_34 c4_191_35 set community 0:5 route-map calculator permit 9387 match community c4_191_36 c4_191_37 c4_191_38 c3_191_186 c4_192_33 set community 0:5 route-map calculator permit 9388 match community c4_192_34 c4_192_35 c4_192_36 c4_192_37 c4_192_38 set community 0:5 route-map calculator permit 9389 match community c3_192_187 c4_193_33 c4_193_34 c4_193_35 c4_193_36 set community 0:5 route-map calculator permit 9390 match community c4_193_37 c4_193_38 c3_193_188 c4_194_33 c4_194_34 set community 0:5 route-map calculator permit 9391 match community c4_194_35 c4_194_36 c4_194_37 c4_194_38 c3_194_189 set community 0:5 route-map calculator permit 9392 match community c4_195_33 c4_195_34 c4_195_35 c4_195_36 c4_195_37 set community 0:5 route-map calculator permit 9393 match community c4_195_38 c4_195_39 c3_195_190 c4_196_33 c4_196_34 set community 0:5 route-map calculator permit 9394 match community c4_196_35 c4_196_36 c4_196_37 c4_196_38 c4_196_39 set community 0:5 route-map calculator permit 9395 match community c3_196_191 c4_197_33 c4_197_34 c4_197_35 c4_197_36 set community 0:5 route-map calculator permit 9396 match community c4_197_37 c4_197_38 c4_197_39 c3_197_192 c4_198_34 set community 0:5 route-map calculator permit 9397 match community c4_198_35 c4_198_36 c4_198_37 c4_198_38 c4_198_39 set community 0:5 route-map calculator permit 9398 match community c3_198_193 c4_199_34 c4_199_35 c4_199_36 c4_199_37 set community 0:5 route-map calculator permit 9399 match community c4_199_38 c4_199_39 c3_199_194 c4_200_34 c4_200_35 set community 0:5 route-map calculator permit 9400 match community c4_200_36 c4_200_37 c4_200_38 c4_200_39 c4_200_40 set community 0:5 route-map calculator permit 9401 match community c3_200_195 c4_201_34 c4_201_35 c4_201_36 c4_201_37 set community 0:5 route-map calculator permit 9402 match community c4_201_38 c4_201_39 c4_201_40 c3_201_196 c4_202_34 set community 0:5 route-map calculator permit 9403 match community c4_202_35 c4_202_36 c4_202_37 c4_202_38 c4_202_39 set community 0:5 route-map calculator permit 9404 match community c4_202_40 c3_202_197 c4_203_34 c4_203_35 c4_203_36 set community 0:5 route-map calculator permit 9405 match community c4_203_37 c4_203_38 c4_203_39 c4_203_40 c3_203_198 set community 0:5 route-map calculator permit 9406 match community c4_204_35 c4_204_36 c4_204_37 c4_204_38 c4_204_39 set community 0:5 route-map calculator permit 9407 match community c4_204_40 c3_204_199 c4_205_35 c4_205_36 c4_205_37 set community 0:5 route-map calculator permit 9408 match community c4_205_38 c4_205_39 c4_205_40 c4_205_41 c3_205_200 set community 0:5 route-map calculator permit 9409 match community c4_206_35 c4_206_36 c4_206_37 c4_206_38 c4_206_39 set community 0:5 route-map calculator permit 9410 match community c4_206_40 c4_206_41 c3_206_201 c4_207_35 c4_207_36 set community 0:5 route-map calculator permit 9411 match community c4_207_37 c4_207_38 c4_207_39 c4_207_40 c4_207_41 set community 0:5 route-map calculator permit 9412 match community c3_207_202 c4_208_35 c4_208_36 c4_208_37 c4_208_38 set community 0:5 route-map calculator permit 9413 match community c4_208_39 c4_208_40 c4_208_41 c3_208_203 c4_209_35 set community 0:5 route-map calculator permit 9414 match community c4_209_36 c4_209_37 c4_209_38 c4_209_39 c4_209_40 set community 0:5 route-map calculator permit 9415 match community c4_209_41 c3_209_204 c4_210_36 c4_210_37 c4_210_38 set community 0:5 route-map calculator permit 9416 match community c4_210_39 c4_210_40 c4_210_41 c4_210_42 c3_210_205 set community 0:5 route-map calculator permit 9417 match community c4_211_36 c4_211_37 c4_211_38 c4_211_39 c4_211_40 set community 0:5 route-map calculator permit 9418 match community c4_211_41 c4_211_42 c3_211_206 c4_212_36 c4_212_37 set community 0:5 route-map calculator permit 9419 match community c4_212_38 c4_212_39 c4_212_40 c4_212_41 c4_212_42 set community 0:5 route-map calculator permit 9420 match community c3_212_207 c4_213_36 c4_213_37 c4_213_38 c4_213_39 set community 0:5 route-map calculator permit 9421 match community c4_213_40 c4_213_41 c4_213_42 c3_213_208 c4_214_36 set community 0:5 route-map calculator permit 9422 match community c4_214_37 c4_214_38 c4_214_39 c4_214_40 c4_214_41 set community 0:5 route-map calculator permit 9423 match community c4_214_42 c3_214_209 c4_215_36 c4_215_37 c4_215_38 set community 0:5 route-map calculator permit 9424 match community c4_215_39 c4_215_40 c4_215_41 c4_215_42 c4_215_43 set community 0:5 route-map calculator permit 9425 match community c3_215_210 c4_216_37 c4_216_38 c4_216_39 c4_216_40 set community 0:5 route-map calculator permit 9426 match community c4_216_41 c4_216_42 c4_216_43 c3_216_211 c4_217_37 set community 0:5 route-map calculator permit 9427 match community c4_217_38 c4_217_39 c4_217_40 c4_217_41 c4_217_42 set community 0:5 route-map calculator permit 9428 match community c4_217_43 c3_217_212 c4_218_37 c4_218_38 c4_218_39 set community 0:5 route-map calculator permit 9429 match community c4_218_40 c4_218_41 c4_218_42 c4_218_43 c3_218_213 set community 0:5 route-map calculator permit 9430 match community c4_219_37 c4_219_38 c4_219_39 c4_219_40 c4_219_41 set community 0:5 route-map calculator permit 9431 match community c4_219_42 c4_219_43 c3_219_214 c4_220_37 c4_220_38 set community 0:5 route-map calculator permit 9432 match community c4_220_39 c4_220_40 c4_220_41 c4_220_42 c4_220_43 set community 0:5 route-map calculator permit 9433 match community c4_220_44 c3_220_215 c4_221_37 c4_221_38 c4_221_39 set community 0:5 route-map calculator permit 9434 match community c4_221_40 c4_221_41 c4_221_42 c4_221_43 c4_221_44 set community 0:5 route-map calculator permit 9435 match community c3_221_216 c4_222_38 c4_222_39 c4_222_40 c4_222_41 set community 0:5 route-map calculator permit 9436 match community c4_222_42 c4_222_43 c4_222_44 c3_222_217 c4_223_38 set community 0:5 route-map calculator permit 9437 match community c4_223_39 c4_223_40 c4_223_41 c4_223_42 c4_223_43 set community 0:5 route-map calculator permit 9438 match community c4_223_44 c3_223_218 c4_224_38 c4_224_39 c4_224_40 set community 0:5 route-map calculator permit 9439 match community c4_224_41 c4_224_42 c4_224_43 c4_224_44 c3_224_219 set community 0:5 route-map calculator permit 9440 match community c4_225_38 c4_225_39 c4_225_40 c4_225_41 c4_225_42 set community 0:5 route-map calculator permit 9441 match community c4_225_43 c4_225_44 c4_225_45 c3_225_220 c4_226_38 set community 0:5 route-map calculator permit 9442 match community c4_226_39 c4_226_40 c4_226_41 c4_226_42 c4_226_43 set community 0:5 route-map calculator permit 9443 match community c4_226_44 c4_226_45 c3_226_221 c4_227_38 c4_227_39 set community 0:5 route-map calculator permit 9444 match community c4_227_40 c4_227_41 c4_227_42 c4_227_43 c4_227_44 set community 0:5 route-map calculator permit 9445 match community c4_227_45 c3_227_222 c4_228_39 c4_228_40 c4_228_41 set community 0:5 route-map calculator permit 9446 match community c4_228_42 c4_228_43 c4_228_44 c4_228_45 c3_228_223 set community 0:5 route-map calculator permit 9447 match community c4_229_39 c4_229_40 c4_229_41 c4_229_42 c4_229_43 set community 0:5 route-map calculator permit 9448 match community c4_229_44 c4_229_45 c3_229_224 c4_230_39 c4_230_40 set community 0:5 route-map calculator permit 9449 match community c4_230_41 c4_230_42 c4_230_43 c4_230_44 c4_230_45 set community 0:5 route-map calculator permit 9450 match community c4_230_46 c3_230_225 c4_231_39 c4_231_40 c4_231_41 set community 0:5 route-map calculator permit 9451 match community c4_231_42 c4_231_43 c4_231_44 c4_231_45 c4_231_46 set community 0:5 route-map calculator permit 9452 match community c3_231_226 c4_232_39 c4_232_40 c4_232_41 c4_232_42 set community 0:5 route-map calculator permit 9453 match community c4_232_43 c4_232_44 c4_232_45 c4_232_46 c3_232_227 set community 0:5 route-map calculator permit 9454 match community c4_233_39 c4_233_40 c4_233_41 c4_233_42 c4_233_43 set community 0:5 route-map calculator permit 9455 match community c4_233_44 c4_233_45 c4_233_46 c3_233_228 c4_234_40 set community 0:5 route-map calculator permit 9456 match community c4_234_41 c4_234_42 c4_234_43 c4_234_44 c4_234_45 set community 0:5 route-map calculator permit 9457 match community c4_234_46 c3_234_229 c4_235_40 c4_235_41 c4_235_42 set community 0:5 route-map calculator permit 9458 match community c4_235_43 c4_235_44 c4_235_45 c4_235_46 c4_235_47 set community 0:5 route-map calculator permit 9459 match community c3_235_230 c4_236_40 c4_236_41 c4_236_42 c4_236_43 set community 0:5 route-map calculator permit 9460 match community c4_236_44 c4_236_45 c4_236_46 c4_236_47 c3_236_231 set community 0:5 route-map calculator permit 9461 match community c4_237_40 c4_237_41 c4_237_42 c4_237_43 c4_237_44 set community 0:5 route-map calculator permit 9462 match community c4_237_45 c4_237_46 c4_237_47 c3_237_232 c4_238_40 set community 0:5 route-map calculator permit 9463 match community c4_238_41 c4_238_42 c4_238_43 c4_238_44 c4_238_45 set community 0:5 route-map calculator permit 9464 match community c4_238_46 c4_238_47 c3_238_233 c4_239_40 c4_239_41 set community 0:5 route-map calculator permit 9465 match community c4_239_42 c4_239_43 c4_239_44 c4_239_45 c4_239_46 set community 0:5 route-map calculator permit 9466 match community c4_239_47 c3_239_234 c4_240_41 c4_240_42 c4_240_43 set community 0:5 route-map calculator permit 9467 match community c4_240_44 c4_240_45 c4_240_46 c4_240_47 c4_240_48 set community 0:5 route-map calculator permit 9468 match community c3_240_235 c4_241_41 c4_241_42 c4_241_43 c4_241_44 set community 0:5 route-map calculator permit 9469 match community c4_241_45 c4_241_46 c4_241_47 c4_241_48 c3_241_236 set community 0:5 route-map calculator permit 9470 match community c4_242_41 c4_242_42 c4_242_43 c4_242_44 c4_242_45 set community 0:5 route-map calculator permit 9471 match community c4_242_46 c4_242_47 c4_242_48 c3_242_237 c4_243_41 set community 0:5 route-map calculator permit 9472 match community c4_243_42 c4_243_43 c4_243_44 c4_243_45 c4_243_46 set community 0:5 route-map calculator permit 9473 match community c4_243_47 c4_243_48 c3_243_238 c4_244_41 c4_244_42 set community 0:5 route-map calculator permit 9474 match community c4_244_43 c4_244_44 c4_244_45 c4_244_46 c4_244_47 set community 0:5 route-map calculator permit 9475 match community c4_244_48 c3_244_239 c4_245_41 c4_245_42 c4_245_43 set community 0:5 route-map calculator permit 9476 match community c4_245_44 c4_245_45 c4_245_46 c4_245_47 c4_245_48 set community 0:5 route-map calculator permit 9477 match community c4_245_49 c3_245_240 c4_246_42 c4_246_43 c4_246_44 set community 0:5 route-map calculator permit 9478 match community c4_246_45 c4_246_46 c4_246_47 c4_246_48 c4_246_49 set community 0:5 route-map calculator permit 9479 match community c3_246_241 c4_247_42 c4_247_43 c4_247_44 c4_247_45 set community 0:5 route-map calculator permit 9480 match community c4_247_46 c4_247_47 c4_247_48 c4_247_49 c3_247_242 set community 0:5 route-map calculator permit 9481 match community c4_248_42 c4_248_43 c4_248_44 c4_248_45 c4_248_46 set community 0:5 route-map calculator permit 9482 match community c4_248_47 c4_248_48 c4_248_49 c3_248_243 c4_249_42 set community 0:5 route-map calculator permit 9483 match community c4_249_43 c4_249_44 c4_249_45 c4_249_46 c4_249_47 set community 0:5 route-map calculator permit 9484 match community c4_249_48 c4_249_49 c3_249_244 c4_250_42 c4_250_43 set community 0:5 route-map calculator permit 9485 match community c4_250_44 c4_250_45 c4_250_46 c4_250_47 c4_250_48 set community 0:5 route-map calculator permit 9486 match community c4_250_49 c4_250_50 c3_250_245 c4_251_42 c4_251_43 set community 0:5 route-map calculator permit 9487 match community c4_251_44 c4_251_45 c4_251_46 c4_251_47 c4_251_48 set community 0:5 route-map calculator permit 9488 match community c4_251_49 c4_251_50 c3_251_246 c4_252_43 c4_252_44 set community 0:5 route-map calculator permit 9489 match community c4_252_45 c4_252_46 c4_252_47 c4_252_48 c4_252_49 set community 0:5 route-map calculator permit 9490 match community c4_252_50 c3_252_247 c4_253_43 c4_253_44 c4_253_45 set community 0:5 route-map calculator permit 9491 match community c4_253_46 c4_253_47 c4_253_48 c4_253_49 c4_253_50 set community 0:5 route-map calculator permit 9492 match community c3_253_248 c4_254_43 c4_254_44 c4_254_45 c4_254_46 set community 0:5 route-map calculator permit 9493 match community c4_254_47 c4_254_48 c4_254_49 c4_254_50 c3_254_249 set community 0:5 route-map calculator permit 9494 match community c4_255_43 c4_255_44 c4_255_45 c4_255_46 c4_255_47 set community 0:5 route-map calculator permit 9495 match community c4_255_48 c4_255_49 c4_255_50 c4_255_51 c3_255_250 set community 0:5 route-map calculator permit 9496 match community c4_256_43 c4_256_44 c4_256_45 c4_256_46 c4_256_47 set community 0:5 route-map calculator permit 9497 match community c4_256_48 c4_256_49 c4_256_50 c4_256_51 c3_256_251 set community 0:5 ip community-list standard 2_191_237 permit 65000:2 0:191 0:237 route-map calculator permit 9498 match community 2_191_237 set community 0:45267 ip community-list standard 2_129_222 permit 65000:2 0:129 0:222 route-map calculator permit 9499 match community 2_129_222 set community 0:28638 ip community-list standard 2_46_158 permit 65000:2 0:46 0:158 ip community-list standard 2_79_92 permit 65000:2 0:79 0:92 route-map calculator permit 9500 match community 2_46_158 2_79_92 set community 0:7268 ip community-list standard 2_203_212 permit 65000:2 0:203 0:212 route-map calculator permit 9501 match community 2_203_212 set community 0:43036 ip community-list standard 2_84_206 permit 65000:2 0:84 0:206 ip community-list standard 2_103_168 permit 65000:2 0:103 0:168 route-map calculator permit 9502 match community 2_84_206 2_103_168 set community 0:17304 ip community-list standard 2_2_242 permit 65000:2 0:2 0:242 ip community-list standard 2_4_121 permit 65000:2 0:4 0:121 ip community-list standard 2_11_44 permit 65000:2 0:11 0:44 ip community-list standard 2_22_22 permit 65000:2 0:22 0:22 ip community-list standard 1_228_256 permit 65000:1 0:228 0:256 ip community-list standard 1_229_255 permit 65000:1 0:229 0:255 ip community-list standard 1_230_254 permit 65000:1 0:230 0:254 ip community-list standard 1_231_253 permit 65000:1 0:231 0:253 ip community-list standard 1_232_252 permit 65000:1 0:232 0:252 ip community-list standard 1_233_251 permit 65000:1 0:233 0:251 ip community-list standard 1_234_250 permit 65000:1 0:234 0:250 ip community-list standard 1_235_249 permit 65000:1 0:235 0:249 ip community-list standard 1_236_248 permit 65000:1 0:236 0:248 ip community-list standard 1_237_247 permit 65000:1 0:237 0:247 ip community-list standard 1_238_246 permit 65000:1 0:238 0:246 ip community-list standard 1_239_245 permit 65000:1 0:239 0:245 ip community-list standard 1_240_244 permit 65000:1 0:240 0:244 ip community-list standard 1_241_243 permit 65000:1 0:241 0:243 ip community-list standard 1_242_242 permit 65000:1 0:242 0:242 route-map calculator permit 9503 match community 2_2_242 2_4_121 2_11_44 2_22_22 1_228_256 set community 0:484 route-map calculator permit 9504 match community 1_229_255 1_230_254 1_231_253 1_232_252 1_233_251 set community 0:484 route-map calculator permit 9505 match community 1_234_250 1_235_249 1_236_248 1_237_247 1_238_246 set community 0:484 route-map calculator permit 9506 match community 1_239_245 1_240_244 1_241_243 1_242_242 set community 0:484 ip community-list standard 2_77_239 permit 65000:2 0:77 0:239 route-map calculator permit 9507 match community 2_77_239 set community 0:18403 ip community-list standard 2_162_218 permit 65000:2 0:162 0:218 route-map calculator permit 9508 match community 2_162_218 set community 0:35316 ip community-list standard 2_2_247 permit 65000:2 0:2 0:247 ip community-list standard 2_13_38 permit 65000:2 0:13 0:38 ip community-list standard 2_19_26 permit 65000:2 0:19 0:26 ip community-list standard 1_238_256 permit 65000:1 0:238 0:256 ip community-list standard 1_239_255 permit 65000:1 0:239 0:255 ip community-list standard 1_240_254 permit 65000:1 0:240 0:254 ip community-list standard 1_241_253 permit 65000:1 0:241 0:253 ip community-list standard 1_242_252 permit 65000:1 0:242 0:252 ip community-list standard 1_243_251 permit 65000:1 0:243 0:251 ip community-list standard 1_244_250 permit 65000:1 0:244 0:250 ip community-list standard 1_245_249 permit 65000:1 0:245 0:249 ip community-list standard 1_246_248 permit 65000:1 0:246 0:248 ip community-list standard 1_247_247 permit 65000:1 0:247 0:247 route-map calculator permit 9509 match community 2_2_247 2_13_38 2_19_26 1_238_256 1_239_255 set community 0:494 route-map calculator permit 9510 match community 1_240_254 1_241_253 1_242_252 1_243_251 1_244_250 set community 0:494 route-map calculator permit 9511 match community 1_245_249 1_246_248 1_247_247 set community 0:494 ip community-list standard 2_14_235 permit 65000:2 0:14 0:235 ip community-list standard 2_35_94 permit 65000:2 0:35 0:94 ip community-list standard 2_47_70 permit 65000:2 0:47 0:70 route-map calculator permit 9512 match community 2_14_235 2_35_94 2_47_70 set community 0:3290 ip community-list standard 2_17_74 permit 65000:2 0:17 0:74 ip community-list standard 2_34_37 permit 65000:2 0:34 0:37 route-map calculator permit 9513 match community 2_17_74 2_34_37 set community 0:1258 ip community-list standard 2_20_195 permit 65000:2 0:20 0:195 ip community-list standard 2_25_156 permit 65000:2 0:25 0:156 ip community-list standard 2_26_150 permit 65000:2 0:26 0:150 ip community-list standard 2_30_130 permit 65000:2 0:30 0:130 ip community-list standard 2_39_100 permit 65000:2 0:39 0:100 ip community-list standard 2_50_78 permit 65000:2 0:50 0:78 ip community-list standard 2_52_75 permit 65000:2 0:52 0:75 ip community-list standard 2_60_65 permit 65000:2 0:60 0:65 route-map calculator permit 9514 match community 2_20_195 2_25_156 2_26_150 2_30_130 2_39_100 set community 0:3900 route-map calculator permit 9515 match community 2_50_78 2_52_75 2_60_65 set community 0:3900 ip community-list standard 2_153_253 permit 65000:2 0:153 0:253 ip community-list standard 2_187_207 permit 65000:2 0:187 0:207 route-map calculator permit 9516 match community 2_153_253 2_187_207 set community 0:38709 ip community-list standard 2_153_233 permit 65000:2 0:153 0:233 route-map calculator permit 9517 match community 2_153_233 set community 0:35649 ip community-list standard 2_68_251 permit 65000:2 0:68 0:251 route-map calculator permit 9518 match community 2_68_251 set community 0:17068 ip community-list standard 2_22_166 permit 65000:2 0:22 0:166 ip community-list standard 2_44_83 permit 65000:2 0:44 0:83 route-map calculator permit 9519 match community 2_22_166 2_44_83 set community 0:3652 ip community-list standard 2_163_238 permit 65000:2 0:163 0:238 route-map calculator permit 9520 match community 2_163_238 set community 0:38794 ip community-list standard 2_24_236 permit 65000:2 0:24 0:236 ip community-list standard 2_32_177 permit 65000:2 0:32 0:177 ip community-list standard 2_48_118 permit 65000:2 0:48 0:118 ip community-list standard 2_59_96 permit 65000:2 0:59 0:96 route-map calculator permit 9521 match community 2_24_236 2_32_177 2_48_118 2_59_96 set community 0:5664 ip community-list standard 2_12_246 permit 65000:2 0:12 0:246 ip community-list standard 2_18_164 permit 65000:2 0:18 0:164 ip community-list standard 2_24_123 permit 65000:2 0:24 0:123 ip community-list standard 2_36_82 permit 65000:2 0:36 0:82 ip community-list standard 2_41_72 permit 65000:2 0:41 0:72 route-map calculator permit 9522 match community 2_12_246 2_18_164 2_24_123 2_36_82 2_41_72 set community 0:2952 ip community-list standard 2_106_217 permit 65000:2 0:106 0:217 route-map calculator permit 9523 match community 2_106_217 set community 0:23002 ip community-list standard 2_40_243 permit 65000:2 0:40 0:243 ip community-list standard 2_45_216 permit 65000:2 0:45 0:216 ip community-list standard 2_54_180 permit 65000:2 0:54 0:180 ip community-list standard 2_60_162 permit 65000:2 0:60 0:162 ip community-list standard 2_72_135 permit 65000:2 0:72 0:135 ip community-list standard 2_81_120 permit 65000:2 0:81 0:120 ip community-list standard 2_90_108 permit 65000:2 0:90 0:108 route-map calculator permit 9524 match community 2_40_243 2_45_216 2_54_180 2_60_162 2_72_135 set community 0:9720 route-map calculator permit 9525 match community 2_81_120 2_90_108 set community 0:9720 ip community-list standard 2_66_213 permit 65000:2 0:66 0:213 ip community-list standard 2_71_198 permit 65000:2 0:71 0:198 ip community-list standard 2_99_142 permit 65000:2 0:99 0:142 route-map calculator permit 9526 match community 2_66_213 2_71_198 2_99_142 set community 0:14058 ip community-list standard 2_146_221 permit 65000:2 0:146 0:221 route-map calculator permit 9527 match community 2_146_221 set community 0:32266 ip community-list standard 2_19_62 permit 65000:2 0:19 0:62 ip community-list standard 2_31_38 permit 65000:2 0:31 0:38 route-map calculator permit 9528 match community 2_19_62 2_31_38 set community 0:1178 ip community-list standard 2_13_246 permit 65000:2 0:13 0:246 ip community-list standard 2_26_123 permit 65000:2 0:26 0:123 ip community-list standard 2_39_82 permit 65000:2 0:39 0:82 ip community-list standard 2_41_78 permit 65000:2 0:41 0:78 route-map calculator permit 9529 match community 2_13_246 2_26_123 2_39_82 2_41_78 set community 0:3198 ip community-list standard 2_101_203 permit 65000:2 0:101 0:203 route-map calculator permit 9530 match community 2_101_203 set community 0:20503 ip community-list standard 2_154_227 permit 65000:2 0:154 0:227 route-map calculator permit 9531 match community 2_154_227 set community 0:34958 ip community-list standard 2_65_238 permit 65000:2 0:65 0:238 ip community-list standard 2_70_221 permit 65000:2 0:70 0:221 ip community-list standard 2_85_182 permit 65000:2 0:85 0:182 ip community-list standard 2_91_170 permit 65000:2 0:91 0:170 ip community-list standard 2_119_130 permit 65000:2 0:119 0:130 route-map calculator permit 9532 match community 2_65_238 2_70_221 2_85_182 2_91_170 2_119_130 set community 0:15470 ip community-list standard 2_201_247 permit 65000:2 0:201 0:247 route-map calculator permit 9533 match community 2_201_247 set community 0:49647 ip community-list standard 2_65_210 permit 65000:2 0:65 0:210 ip community-list standard 2_70_195 permit 65000:2 0:70 0:195 ip community-list standard 2_75_182 permit 65000:2 0:75 0:182 ip community-list standard 2_78_175 permit 65000:2 0:78 0:175 ip community-list standard 2_91_150 permit 65000:2 0:91 0:150 ip community-list standard 2_105_130 permit 65000:2 0:105 0:130 route-map calculator permit 9534 match community 2_65_210 2_70_195 2_75_182 2_78_175 2_91_150 set community 0:13650 route-map calculator permit 9535 match community 2_105_130 set community 0:13650 ip community-list standard 2_223_246 permit 65000:2 0:223 0:246 route-map calculator permit 9536 match community 2_223_246 set community 0:54858 ip community-list standard 2_6_235 permit 65000:2 0:6 0:235 ip community-list standard 2_10_141 permit 65000:2 0:10 0:141 ip community-list standard 2_15_94 permit 65000:2 0:15 0:94 ip community-list standard 2_30_47 permit 65000:2 0:30 0:47 route-map calculator permit 9537 match community 2_6_235 2_10_141 2_15_94 2_30_47 set community 0:1410 ip community-list standard 2_74_188 permit 65000:2 0:74 0:188 ip community-list standard 2_94_148 permit 65000:2 0:94 0:148 route-map calculator permit 9538 match community 2_74_188 2_94_148 set community 0:13912 ip community-list standard 2_238_256 permit 65000:2 0:238 0:256 route-map calculator permit 9539 match community 2_238_256 set community 0:60928 ip community-list standard 2_70_255 permit 65000:2 0:70 0:255 ip community-list standard 2_75_238 permit 65000:2 0:75 0:238 ip community-list standard 2_85_210 permit 65000:2 0:85 0:210 ip community-list standard 2_102_175 permit 65000:2 0:102 0:175 ip community-list standard 2_105_170 permit 65000:2 0:105 0:170 ip community-list standard 2_119_150 permit 65000:2 0:119 0:150 route-map calculator permit 9540 match community 2_70_255 2_75_238 2_85_210 2_102_175 2_105_170 set community 0:17850 route-map calculator permit 9541 match community 2_119_150 set community 0:17850 ip community-list standard 2_82_173 permit 65000:2 0:82 0:173 route-map calculator permit 9542 match community 2_82_173 set community 0:14186 ip community-list standard 2_86_233 permit 65000:2 0:86 0:233 route-map calculator permit 9543 match community 2_86_233 set community 0:20038 ip community-list standard 2_235_249 permit 65000:2 0:235 0:249 route-map calculator permit 9544 match community 2_235_249 set community 0:58515 ip community-list standard 2_11_233 permit 65000:2 0:11 0:233 route-map calculator permit 9545 match community 2_11_233 set community 0:2563 ip community-list standard 2_185_187 permit 65000:2 0:185 0:187 route-map calculator permit 9546 match community 2_185_187 set community 0:34595 ip community-list standard 2_73_85 permit 65000:2 0:73 0:85 route-map calculator permit 9547 match community 2_73_85 set community 0:6205 ip community-list standard 1_1_52 permit 65000:1 0:1 0:52 ip community-list standard 2_1_53 permit 65000:2 0:1 0:53 ip community-list standard 1_2_51 permit 65000:1 0:2 0:51 ip community-list standard 1_3_50 permit 65000:1 0:3 0:50 ip community-list standard 1_4_49 permit 65000:1 0:4 0:49 ip community-list standard 1_5_48 permit 65000:1 0:5 0:48 ip community-list standard 1_6_47 permit 65000:1 0:6 0:47 ip community-list standard 1_7_46 permit 65000:1 0:7 0:46 ip community-list standard 1_8_45 permit 65000:1 0:8 0:45 ip community-list standard 1_9_44 permit 65000:1 0:9 0:44 ip community-list standard 1_10_43 permit 65000:1 0:10 0:43 ip community-list standard 1_11_42 permit 65000:1 0:11 0:42 ip community-list standard 1_12_41 permit 65000:1 0:12 0:41 ip community-list standard 1_13_40 permit 65000:1 0:13 0:40 ip community-list standard 1_14_39 permit 65000:1 0:14 0:39 ip community-list standard 1_15_38 permit 65000:1 0:15 0:38 ip community-list standard 1_16_37 permit 65000:1 0:16 0:37 ip community-list standard 1_17_36 permit 65000:1 0:17 0:36 ip community-list standard 1_18_35 permit 65000:1 0:18 0:35 ip community-list standard 1_19_34 permit 65000:1 0:19 0:34 ip community-list standard 1_20_33 permit 65000:1 0:20 0:33 ip community-list standard 1_21_32 permit 65000:1 0:21 0:32 ip community-list standard 1_22_31 permit 65000:1 0:22 0:31 ip community-list standard 1_23_30 permit 65000:1 0:23 0:30 ip community-list standard 1_24_29 permit 65000:1 0:24 0:29 ip community-list standard 1_25_28 permit 65000:1 0:25 0:28 ip community-list standard 1_26_27 permit 65000:1 0:26 0:27 ip community-list expanded c53 permit 1 ^65000:4_0:53_0:1$ ip community-list expanded c53 permit 2 ^65000:3_0:54_0:1$ ip community-list expanded c53 permit 3 ^65000:3_0:55_0:2$ ip community-list expanded c53 permit 4 ^65000:3_0:56_0:3$ ip community-list expanded c53 permit 5 ^65000:3_0:57_0:4$ ip community-list expanded c53 permit 6 ^65000:3_0:58_0:5$ ip community-list expanded c53 permit 7 ^65000:3_0:59_0:6$ ip community-list expanded c53 permit 8 ^65000:3_0:60_0:7$ ip community-list expanded c53 permit 9 ^65000:3_0:61_0:8$ ip community-list expanded c53 permit 10 ^65000:3_0:62_0:9$ ip community-list expanded c53 permit 11 ^65000:3_0:63_0:10$ ip community-list expanded c53 permit 12 ^65000:3_0:64_0:11$ ip community-list expanded c53 permit 13 ^65000:3_0:65_0:12$ ip community-list expanded c53 permit 14 ^65000:3_0:66_0:13$ ip community-list expanded c53 permit 15 ^65000:3_0:67_0:14$ ip community-list expanded c53 permit 16 ^65000:3_0:68_0:15$ ip community-list expanded c53 permit 17 ^65000:3_0:69_0:16$ ip community-list expanded c53 permit 18 ^65000:3_0:70_0:17$ ip community-list expanded c53 permit 19 ^65000:3_0:71_0:18$ ip community-list expanded c53 permit 20 ^65000:3_0:72_0:19$ ip community-list expanded c53 permit 21 ^65000:3_0:73_0:20$ ip community-list expanded c53 permit 22 ^65000:3_0:74_0:21$ ip community-list expanded c53 permit 23 ^65000:3_0:75_0:22$ ip community-list expanded c53 permit 24 ^65000:3_0:76_0:23$ ip community-list expanded c53 permit 25 ^65000:3_0:77_0:24$ ip community-list expanded c53 permit 26 ^65000:3_0:78_0:25$ ip community-list expanded c53 permit 27 ^65000:3_0:79_0:26$ ip community-list expanded c53 permit 28 ^65000:3_0:80_0:27$ ip community-list expanded c53 permit 29 ^65000:3_0:81_0:28$ ip community-list expanded c53 permit 30 ^65000:3_0:82_0:29$ ip community-list expanded c53 permit 31 ^65000:3_0:83_0:30$ ip community-list expanded c53 permit 32 ^65000:3_0:84_0:31$ ip community-list expanded c53 permit 33 ^65000:3_0:85_0:32$ ip community-list expanded c53 permit 34 ^65000:3_0:86_0:33$ ip community-list expanded c53 permit 35 ^65000:3_0:87_0:34$ ip community-list expanded c53 permit 36 ^65000:3_0:88_0:35$ ip community-list expanded c53 permit 37 ^65000:3_0:89_0:36$ ip community-list expanded c53 permit 38 ^65000:3_0:90_0:37$ ip community-list expanded c53 permit 39 ^65000:3_0:91_0:38$ ip community-list expanded c53 permit 40 ^65000:3_0:92_0:39$ ip community-list expanded c53 permit 41 ^65000:3_0:93_0:40$ ip community-list expanded c53 permit 42 ^65000:3_0:94_0:41$ ip community-list expanded c53 permit 43 ^65000:3_0:95_0:42$ ip community-list expanded c53 permit 44 ^65000:3_0:96_0:43$ ip community-list expanded c53 permit 45 ^65000:3_0:97_0:44$ ip community-list expanded c53 permit 46 ^65000:3_0:98_0:45$ ip community-list expanded c53 permit 47 ^65000:3_0:99_0:46$ ip community-list expanded c53 permit 48 ^65000:3_0:100_0:47$ ip community-list expanded c53 permit 49 ^65000:3_0:101_0:48$ ip community-list expanded c53 permit 50 ^65000:3_0:102_0:49$ ip community-list expanded c53 permit 51 ^65000:3_0:103_0:50$ ip community-list expanded c53 permit 52 ^65000:3_0:104_0:51$ ip community-list expanded c53 permit 53 ^65000:3_0:105_0:52$ ip community-list expanded c53 permit 54 ^65000:4_0:106_0:2$ ip community-list expanded c53 permit 55 ^65000:3_0:106_0:53$ ip community-list expanded c53 permit 56 ^65000:4_0:107_0:2$ ip community-list expanded c53 permit 57 ^65000:3_0:107_0:54$ ip community-list expanded c53 permit 58 ^65000:3_0:108_0:55$ ip community-list expanded c53 permit 59 ^65000:3_0:109_0:56$ ip community-list expanded c53 permit 60 ^65000:3_0:110_0:57$ ip community-list expanded c53 permit 61 ^65000:3_0:111_0:58$ ip community-list expanded c53 permit 62 ^65000:3_0:112_0:59$ ip community-list expanded c53 permit 63 ^65000:3_0:113_0:60$ ip community-list expanded c53 permit 64 ^65000:3_0:114_0:61$ ip community-list expanded c53 permit 65 ^65000:3_0:115_0:62$ ip community-list expanded c53 permit 66 ^65000:3_0:116_0:63$ ip community-list expanded c53 permit 67 ^65000:3_0:117_0:64$ ip community-list expanded c53 permit 68 ^65000:3_0:118_0:65$ ip community-list expanded c53 permit 69 ^65000:3_0:119_0:66$ ip community-list expanded c53 permit 70 ^65000:3_0:120_0:67$ ip community-list expanded c53 permit 71 ^65000:3_0:121_0:68$ ip community-list expanded c53 permit 72 ^65000:3_0:122_0:69$ ip community-list expanded c53 permit 73 ^65000:3_0:123_0:70$ ip community-list expanded c53 permit 74 ^65000:3_0:124_0:71$ ip community-list expanded c53 permit 75 ^65000:3_0:125_0:72$ ip community-list expanded c53 permit 76 ^65000:3_0:126_0:73$ ip community-list expanded c53 permit 77 ^65000:3_0:127_0:74$ ip community-list expanded c53 permit 78 ^65000:3_0:128_0:75$ ip community-list expanded c53 permit 79 ^65000:3_0:129_0:76$ ip community-list expanded c53 permit 80 ^65000:3_0:130_0:77$ ip community-list expanded c53 permit 81 ^65000:3_0:131_0:78$ ip community-list expanded c53 permit 82 ^65000:3_0:132_0:79$ ip community-list expanded c53 permit 83 ^65000:3_0:133_0:80$ ip community-list expanded c53 permit 84 ^65000:3_0:134_0:81$ ip community-list expanded c53 permit 85 ^65000:3_0:135_0:82$ ip community-list expanded c53 permit 86 ^65000:3_0:136_0:83$ ip community-list expanded c53 permit 87 ^65000:3_0:137_0:84$ ip community-list expanded c53 permit 88 ^65000:3_0:138_0:85$ ip community-list expanded c53 permit 89 ^65000:3_0:139_0:86$ ip community-list expanded c53 permit 90 ^65000:3_0:140_0:87$ ip community-list expanded c53 permit 91 ^65000:3_0:141_0:88$ ip community-list expanded c53 permit 92 ^65000:3_0:142_0:89$ ip community-list expanded c53 permit 93 ^65000:3_0:143_0:90$ ip community-list expanded c53 permit 94 ^65000:3_0:144_0:91$ ip community-list expanded c53 permit 95 ^65000:3_0:145_0:92$ ip community-list expanded c53 permit 96 ^65000:3_0:146_0:93$ ip community-list expanded c53 permit 97 ^65000:3_0:147_0:94$ ip community-list expanded c53 permit 98 ^65000:3_0:148_0:95$ ip community-list expanded c53 permit 99 ^65000:3_0:149_0:96$ ip community-list expanded c53 permit 100 ^65000:3_0:150_0:97$ ip community-list expanded c53 permit 101 ^65000:3_0:151_0:98$ ip community-list expanded c53 permit 102 ^65000:3_0:152_0:99$ ip community-list expanded c53 permit 103 ^65000:3_0:153_0:100$ ip community-list expanded c53 permit 104 ^65000:3_0:154_0:101$ ip community-list expanded c53 permit 105 ^65000:3_0:155_0:102$ ip community-list expanded c53 permit 106 ^65000:3_0:156_0:103$ ip community-list expanded c53 permit 107 ^65000:3_0:157_0:104$ ip community-list expanded c53 permit 108 ^65000:3_0:158_0:105$ ip community-list expanded c53 permit 109 ^65000:4_0:159_0:3$ ip community-list expanded c53 permit 110 ^65000:3_0:159_0:106$ ip community-list expanded c53 permit 111 ^65000:4_0:160_0:3$ ip community-list expanded c53 permit 112 ^65000:3_0:160_0:107$ ip community-list expanded c53 permit 113 ^65000:4_0:161_0:3$ ip community-list expanded c53 permit 114 ^65000:3_0:161_0:108$ ip community-list expanded c53 permit 115 ^65000:3_0:162_0:109$ ip community-list expanded c53 permit 116 ^65000:3_0:163_0:110$ ip community-list expanded c53 permit 117 ^65000:3_0:164_0:111$ ip community-list expanded c53 permit 118 ^65000:3_0:165_0:112$ ip community-list expanded c53 permit 119 ^65000:3_0:166_0:113$ ip community-list expanded c53 permit 120 ^65000:3_0:167_0:114$ ip community-list expanded c53 permit 121 ^65000:3_0:168_0:115$ ip community-list expanded c53 permit 122 ^65000:3_0:169_0:116$ ip community-list expanded c53 permit 123 ^65000:3_0:170_0:117$ ip community-list expanded c53 permit 124 ^65000:3_0:171_0:118$ ip community-list expanded c53 permit 125 ^65000:3_0:172_0:119$ ip community-list expanded c53 permit 126 ^65000:3_0:173_0:120$ ip community-list expanded c53 permit 127 ^65000:3_0:174_0:121$ ip community-list expanded c53 permit 128 ^65000:3_0:175_0:122$ ip community-list expanded c53 permit 129 ^65000:3_0:176_0:123$ ip community-list expanded c53 permit 130 ^65000:3_0:177_0:124$ ip community-list expanded c53 permit 131 ^65000:3_0:178_0:125$ ip community-list expanded c53 permit 132 ^65000:3_0:179_0:126$ ip community-list expanded c53 permit 133 ^65000:3_0:180_0:127$ ip community-list expanded c53 permit 134 ^65000:3_0:181_0:128$ ip community-list expanded c53 permit 135 ^65000:3_0:182_0:129$ ip community-list expanded c53 permit 136 ^65000:3_0:183_0:130$ ip community-list expanded c53 permit 137 ^65000:3_0:184_0:131$ ip community-list expanded c53 permit 138 ^65000:3_0:185_0:132$ ip community-list expanded c53 permit 139 ^65000:3_0:186_0:133$ ip community-list expanded c53 permit 140 ^65000:3_0:187_0:134$ ip community-list expanded c53 permit 141 ^65000:3_0:188_0:135$ ip community-list expanded c53 permit 142 ^65000:3_0:189_0:136$ ip community-list expanded c53 permit 143 ^65000:3_0:190_0:137$ ip community-list expanded c53 permit 144 ^65000:3_0:191_0:138$ ip community-list expanded c53 permit 145 ^65000:3_0:192_0:139$ ip community-list expanded c53 permit 146 ^65000:3_0:193_0:140$ ip community-list expanded c53 permit 147 ^65000:3_0:194_0:141$ ip community-list expanded c53 permit 148 ^65000:3_0:195_0:142$ ip community-list expanded c53 permit 149 ^65000:3_0:196_0:143$ ip community-list expanded c53 permit 150 ^65000:3_0:197_0:144$ ip community-list expanded c53 permit 151 ^65000:3_0:198_0:145$ ip community-list expanded c53 permit 152 ^65000:3_0:199_0:146$ ip community-list expanded c53 permit 153 ^65000:3_0:200_0:147$ ip community-list expanded c53 permit 154 ^65000:3_0:201_0:148$ ip community-list expanded c53 permit 155 ^65000:3_0:202_0:149$ ip community-list expanded c53 permit 156 ^65000:3_0:203_0:150$ ip community-list expanded c53 permit 157 ^65000:3_0:204_0:151$ ip community-list expanded c53 permit 158 ^65000:3_0:205_0:152$ ip community-list expanded c53 permit 159 ^65000:3_0:206_0:153$ ip community-list expanded c53 permit 160 ^65000:3_0:207_0:154$ ip community-list expanded c53 permit 161 ^65000:3_0:208_0:155$ ip community-list expanded c53 permit 162 ^65000:3_0:209_0:156$ ip community-list expanded c53 permit 163 ^65000:3_0:210_0:157$ ip community-list expanded c53 permit 164 ^65000:3_0:211_0:158$ ip community-list expanded c53 permit 165 ^65000:4_0:212_0:4$ ip community-list expanded c53 permit 166 ^65000:3_0:212_0:159$ ip community-list expanded c53 permit 167 ^65000:4_0:213_0:4$ ip community-list expanded c53 permit 168 ^65000:3_0:213_0:160$ ip community-list expanded c53 permit 169 ^65000:4_0:214_0:4$ ip community-list expanded c53 permit 170 ^65000:3_0:214_0:161$ ip community-list expanded c53 permit 171 ^65000:4_0:215_0:4$ ip community-list expanded c53 permit 172 ^65000:3_0:215_0:162$ ip community-list expanded c53 permit 173 ^65000:3_0:216_0:163$ ip community-list expanded c53 permit 174 ^65000:3_0:217_0:164$ ip community-list expanded c53 permit 175 ^65000:3_0:218_0:165$ ip community-list expanded c53 permit 176 ^65000:3_0:219_0:166$ ip community-list expanded c53 permit 177 ^65000:3_0:220_0:167$ ip community-list expanded c53 permit 178 ^65000:3_0:221_0:168$ ip community-list expanded c53 permit 179 ^65000:3_0:222_0:169$ ip community-list expanded c53 permit 180 ^65000:3_0:223_0:170$ ip community-list expanded c53 permit 181 ^65000:3_0:224_0:171$ ip community-list expanded c53 permit 182 ^65000:3_0:225_0:172$ ip community-list expanded c53 permit 183 ^65000:3_0:226_0:173$ ip community-list expanded c53 permit 184 ^65000:3_0:227_0:174$ ip community-list expanded c53 permit 185 ^65000:3_0:228_0:175$ ip community-list expanded c53 permit 186 ^65000:3_0:229_0:176$ ip community-list expanded c53 permit 187 ^65000:3_0:230_0:177$ ip community-list expanded c53 permit 188 ^65000:3_0:231_0:178$ ip community-list expanded c53 permit 189 ^65000:3_0:232_0:179$ ip community-list expanded c53 permit 190 ^65000:3_0:233_0:180$ ip community-list expanded c53 permit 191 ^65000:3_0:234_0:181$ ip community-list expanded c53 permit 192 ^65000:3_0:235_0:182$ ip community-list expanded c53 permit 193 ^65000:3_0:236_0:183$ ip community-list expanded c53 permit 194 ^65000:3_0:237_0:184$ ip community-list expanded c53 permit 195 ^65000:3_0:238_0:185$ ip community-list expanded c53 permit 196 ^65000:3_0:239_0:186$ ip community-list expanded c53 permit 197 ^65000:3_0:240_0:187$ ip community-list expanded c53 permit 198 ^65000:3_0:241_0:188$ ip community-list expanded c53 permit 199 ^65000:3_0:242_0:189$ ip community-list expanded c53 permit 200 ^65000:3_0:243_0:190$ ip community-list expanded c53 permit 201 ^65000:3_0:244_0:191$ ip community-list expanded c53 permit 202 ^65000:3_0:245_0:192$ ip community-list expanded c53 permit 203 ^65000:3_0:246_0:193$ ip community-list expanded c53 permit 204 ^65000:3_0:247_0:194$ ip community-list expanded c53 permit 205 ^65000:3_0:248_0:195$ ip community-list expanded c53 permit 206 ^65000:3_0:249_0:196$ ip community-list expanded c53 permit 207 ^65000:3_0:250_0:197$ ip community-list expanded c53 permit 208 ^65000:3_0:251_0:198$ ip community-list expanded c53 permit 209 ^65000:3_0:252_0:199$ ip community-list expanded c53 permit 210 ^65000:3_0:253_0:200$ ip community-list expanded c53 permit 211 ^65000:3_0:254_0:201$ ip community-list expanded c53 permit 212 ^65000:3_0:255_0:202$ ip community-list expanded c53 permit 213 ^65000:3_0:256_0:203$ route-map calculator permit 9548 match community 1_1_52 2_1_53 1_2_51 1_3_50 1_4_49 set community 0:53 route-map calculator permit 9549 match community 1_5_48 1_6_47 1_7_46 1_8_45 1_9_44 set community 0:53 route-map calculator permit 9550 match community 1_10_43 1_11_42 1_12_41 1_13_40 1_14_39 set community 0:53 route-map calculator permit 9551 match community 1_15_38 1_16_37 1_17_36 1_18_35 1_19_34 set community 0:53 route-map calculator permit 9552 match community 1_20_33 1_21_32 1_22_31 1_23_30 1_24_29 set community 0:53 route-map calculator permit 9553 match community 1_25_28 1_26_27 c4_53_1 c3_54_1 c3_55_2 set community 0:53 route-map calculator permit 9554 match community c3_56_3 c3_57_4 c3_58_5 c3_59_6 c3_60_7 set community 0:53 route-map calculator permit 9555 match community c3_61_8 c3_62_9 c3_63_10 c3_64_11 c3_65_12 set community 0:53 route-map calculator permit 9556 match community c3_66_13 c3_67_14 c3_68_15 c3_69_16 c3_70_17 set community 0:53 route-map calculator permit 9557 match community c3_71_18 c3_72_19 c3_73_20 c3_74_21 c3_75_22 set community 0:53 route-map calculator permit 9558 match community c3_76_23 c3_77_24 c3_78_25 c3_79_26 c3_80_27 set community 0:53 route-map calculator permit 9559 match community c3_81_28 c3_82_29 c3_83_30 c3_84_31 c3_85_32 set community 0:53 route-map calculator permit 9560 match community c3_86_33 c3_87_34 c3_88_35 c3_89_36 c3_90_37 set community 0:53 route-map calculator permit 9561 match community c3_91_38 c3_92_39 c3_93_40 c3_94_41 c3_95_42 set community 0:53 route-map calculator permit 9562 match community c3_96_43 c3_97_44 c3_98_45 c3_99_46 c3_100_47 set community 0:53 route-map calculator permit 9563 match community c3_101_48 c3_102_49 c3_103_50 c3_104_51 c3_105_52 set community 0:53 route-map calculator permit 9564 match community c4_106_2 c3_106_53 c4_107_2 c3_107_54 c3_108_55 set community 0:53 route-map calculator permit 9565 match community c3_109_56 c3_110_57 c3_111_58 c3_112_59 c3_113_60 set community 0:53 route-map calculator permit 9566 match community c3_114_61 c3_115_62 c3_116_63 c3_117_64 c3_118_65 set community 0:53 route-map calculator permit 9567 match community c3_119_66 c3_120_67 c3_121_68 c3_122_69 c3_123_70 set community 0:53 route-map calculator permit 9568 match community c3_124_71 c3_125_72 c3_126_73 c3_127_74 c3_128_75 set community 0:53 route-map calculator permit 9569 match community c3_129_76 c3_130_77 c3_131_78 c3_132_79 c3_133_80 set community 0:53 route-map calculator permit 9570 match community c3_134_81 c3_135_82 c3_136_83 c3_137_84 c3_138_85 set community 0:53 route-map calculator permit 9571 match community c3_139_86 c3_140_87 c3_141_88 c3_142_89 c3_143_90 set community 0:53 route-map calculator permit 9572 match community c3_144_91 c3_145_92 c3_146_93 c3_147_94 c3_148_95 set community 0:53 route-map calculator permit 9573 match community c3_149_96 c3_150_97 c3_151_98 c3_152_99 c3_153_100 set community 0:53 route-map calculator permit 9574 match community c3_154_101 c3_155_102 c3_156_103 c3_157_104 c3_158_105 set community 0:53 route-map calculator permit 9575 match community c4_159_3 c3_159_106 c4_160_3 c3_160_107 c4_161_3 set community 0:53 route-map calculator permit 9576 match community c3_161_108 c3_162_109 c3_163_110 c3_164_111 c3_165_112 set community 0:53 route-map calculator permit 9577 match community c3_166_113 c3_167_114 c3_168_115 c3_169_116 c3_170_117 set community 0:53 route-map calculator permit 9578 match community c3_171_118 c3_172_119 c3_173_120 c3_174_121 c3_175_122 set community 0:53 route-map calculator permit 9579 match community c3_176_123 c3_177_124 c3_178_125 c3_179_126 c3_180_127 set community 0:53 route-map calculator permit 9580 match community c3_181_128 c3_182_129 c3_183_130 c3_184_131 c3_185_132 set community 0:53 route-map calculator permit 9581 match community c3_186_133 c3_187_134 c3_188_135 c3_189_136 c3_190_137 set community 0:53 route-map calculator permit 9582 match community c3_191_138 c3_192_139 c3_193_140 c3_194_141 c3_195_142 set community 0:53 route-map calculator permit 9583 match community c3_196_143 c3_197_144 c3_198_145 c3_199_146 c3_200_147 set community 0:53 route-map calculator permit 9584 match community c3_201_148 c3_202_149 c3_203_150 c3_204_151 c3_205_152 set community 0:53 route-map calculator permit 9585 match community c3_206_153 c3_207_154 c3_208_155 c3_209_156 c3_210_157 set community 0:53 route-map calculator permit 9586 match community c3_211_158 c4_212_4 c3_212_159 c4_213_4 c3_213_160 set community 0:53 route-map calculator permit 9587 match community c4_214_4 c3_214_161 c4_215_4 c3_215_162 c3_216_163 set community 0:53 route-map calculator permit 9588 match community c3_217_164 c3_218_165 c3_219_166 c3_220_167 c3_221_168 set community 0:53 route-map calculator permit 9589 match community c3_222_169 c3_223_170 c3_224_171 c3_225_172 c3_226_173 set community 0:53 route-map calculator permit 9590 match community c3_227_174 c3_228_175 c3_229_176 c3_230_177 c3_231_178 set community 0:53 route-map calculator permit 9591 match community c3_232_179 c3_233_180 c3_234_181 c3_235_182 c3_236_183 set community 0:53 route-map calculator permit 9592 match community c3_237_184 c3_238_185 c3_239_186 c3_240_187 c3_241_188 set community 0:53 route-map calculator permit 9593 match community c3_242_189 c3_243_190 c3_244_191 c3_245_192 c3_246_193 set community 0:53 route-map calculator permit 9594 match community c3_247_194 c3_248_195 c3_249_196 c3_250_197 c3_251_198 set community 0:53 route-map calculator permit 9595 match community c3_252_199 c3_253_200 c3_254_201 c3_255_202 c3_256_203 set community 0:53 ip community-list standard 2_167_185 permit 65000:2 0:167 0:185 route-map calculator permit 9596 match community 2_167_185 set community 0:30895 ip community-list standard 2_157_232 permit 65000:2 0:157 0:232 route-map calculator permit 9597 match community 2_157_232 set community 0:36424 ip community-list standard 2_166_256 permit 65000:2 0:166 0:256 route-map calculator permit 9598 match community 2_166_256 set community 0:42496 ip community-list standard 2_93_206 permit 65000:2 0:93 0:206 ip community-list standard 2_103_186 permit 65000:2 0:103 0:186 route-map calculator permit 9599 match community 2_93_206 2_103_186 set community 0:19158 ip community-list standard 2_42_184 permit 65000:2 0:42 0:184 ip community-list standard 2_46_168 permit 65000:2 0:46 0:168 ip community-list standard 2_48_161 permit 65000:2 0:48 0:161 ip community-list standard 2_56_138 permit 65000:2 0:56 0:138 ip community-list standard 2_69_112 permit 65000:2 0:69 0:112 ip community-list standard 2_84_92 permit 65000:2 0:84 0:92 route-map calculator permit 9600 match community 2_42_184 2_46_168 2_48_161 2_56_138 2_69_112 set community 0:7728 route-map calculator permit 9601 match community 2_84_92 set community 0:7728 ip community-list standard 2_2_170 permit 65000:2 0:2 0:170 ip community-list standard 2_4_85 permit 65000:2 0:4 0:85 ip community-list standard 2_5_68 permit 65000:2 0:5 0:68 ip community-list standard 2_10_34 permit 65000:2 0:10 0:34 ip community-list standard 2_17_20 permit 65000:2 0:17 0:20 ip community-list standard 1_84_256 permit 65000:1 0:84 0:256 ip community-list standard 1_85_255 permit 65000:1 0:85 0:255 ip community-list standard 1_86_254 permit 65000:1 0:86 0:254 ip community-list standard 1_87_253 permit 65000:1 0:87 0:253 ip community-list standard 1_88_252 permit 65000:1 0:88 0:252 ip community-list standard 1_89_251 permit 65000:1 0:89 0:251 ip community-list standard 1_90_250 permit 65000:1 0:90 0:250 ip community-list standard 1_91_249 permit 65000:1 0:91 0:249 ip community-list standard 1_92_248 permit 65000:1 0:92 0:248 ip community-list standard 1_93_247 permit 65000:1 0:93 0:247 ip community-list standard 1_94_246 permit 65000:1 0:94 0:246 ip community-list standard 1_95_245 permit 65000:1 0:95 0:245 ip community-list standard 1_96_244 permit 65000:1 0:96 0:244 ip community-list standard 1_97_243 permit 65000:1 0:97 0:243 ip community-list standard 1_98_242 permit 65000:1 0:98 0:242 ip community-list standard 1_99_241 permit 65000:1 0:99 0:241 ip community-list standard 1_100_240 permit 65000:1 0:100 0:240 ip community-list standard 1_101_239 permit 65000:1 0:101 0:239 ip community-list standard 1_102_238 permit 65000:1 0:102 0:238 ip community-list standard 1_103_237 permit 65000:1 0:103 0:237 ip community-list standard 1_104_236 permit 65000:1 0:104 0:236 ip community-list standard 1_105_235 permit 65000:1 0:105 0:235 ip community-list standard 1_106_234 permit 65000:1 0:106 0:234 ip community-list standard 1_107_233 permit 65000:1 0:107 0:233 ip community-list standard 1_108_232 permit 65000:1 0:108 0:232 ip community-list standard 1_109_231 permit 65000:1 0:109 0:231 ip community-list standard 1_110_230 permit 65000:1 0:110 0:230 ip community-list standard 1_111_229 permit 65000:1 0:111 0:229 ip community-list standard 1_112_228 permit 65000:1 0:112 0:228 ip community-list standard 1_113_227 permit 65000:1 0:113 0:227 ip community-list standard 1_114_226 permit 65000:1 0:114 0:226 ip community-list standard 1_115_225 permit 65000:1 0:115 0:225 ip community-list standard 1_116_224 permit 65000:1 0:116 0:224 ip community-list standard 1_117_223 permit 65000:1 0:117 0:223 ip community-list standard 1_118_222 permit 65000:1 0:118 0:222 ip community-list standard 1_119_221 permit 65000:1 0:119 0:221 ip community-list standard 1_120_220 permit 65000:1 0:120 0:220 ip community-list standard 1_121_219 permit 65000:1 0:121 0:219 ip community-list standard 1_122_218 permit 65000:1 0:122 0:218 ip community-list standard 1_123_217 permit 65000:1 0:123 0:217 ip community-list standard 1_124_216 permit 65000:1 0:124 0:216 ip community-list standard 1_125_215 permit 65000:1 0:125 0:215 ip community-list standard 1_126_214 permit 65000:1 0:126 0:214 ip community-list standard 1_127_213 permit 65000:1 0:127 0:213 ip community-list standard 1_128_212 permit 65000:1 0:128 0:212 ip community-list standard 1_129_211 permit 65000:1 0:129 0:211 ip community-list standard 1_130_210 permit 65000:1 0:130 0:210 ip community-list standard 1_131_209 permit 65000:1 0:131 0:209 ip community-list standard 1_132_208 permit 65000:1 0:132 0:208 ip community-list standard 1_133_207 permit 65000:1 0:133 0:207 ip community-list standard 1_134_206 permit 65000:1 0:134 0:206 ip community-list standard 1_135_205 permit 65000:1 0:135 0:205 ip community-list standard 1_136_204 permit 65000:1 0:136 0:204 ip community-list standard 1_137_203 permit 65000:1 0:137 0:203 ip community-list standard 1_138_202 permit 65000:1 0:138 0:202 ip community-list standard 1_139_201 permit 65000:1 0:139 0:201 ip community-list standard 1_140_200 permit 65000:1 0:140 0:200 ip community-list standard 1_141_199 permit 65000:1 0:141 0:199 ip community-list standard 1_142_198 permit 65000:1 0:142 0:198 ip community-list standard 1_143_197 permit 65000:1 0:143 0:197 ip community-list standard 1_144_196 permit 65000:1 0:144 0:196 ip community-list standard 1_145_195 permit 65000:1 0:145 0:195 ip community-list standard 1_146_194 permit 65000:1 0:146 0:194 ip community-list standard 1_147_193 permit 65000:1 0:147 0:193 ip community-list standard 1_148_192 permit 65000:1 0:148 0:192 ip community-list standard 1_149_191 permit 65000:1 0:149 0:191 ip community-list standard 1_150_190 permit 65000:1 0:150 0:190 ip community-list standard 1_151_189 permit 65000:1 0:151 0:189 ip community-list standard 1_152_188 permit 65000:1 0:152 0:188 ip community-list standard 1_153_187 permit 65000:1 0:153 0:187 ip community-list standard 1_154_186 permit 65000:1 0:154 0:186 ip community-list standard 1_155_185 permit 65000:1 0:155 0:185 ip community-list standard 1_156_184 permit 65000:1 0:156 0:184 ip community-list standard 1_157_183 permit 65000:1 0:157 0:183 ip community-list standard 1_158_182 permit 65000:1 0:158 0:182 ip community-list standard 1_159_181 permit 65000:1 0:159 0:181 ip community-list standard 1_160_180 permit 65000:1 0:160 0:180 ip community-list standard 1_161_179 permit 65000:1 0:161 0:179 ip community-list standard 1_162_178 permit 65000:1 0:162 0:178 ip community-list standard 1_163_177 permit 65000:1 0:163 0:177 ip community-list standard 1_164_176 permit 65000:1 0:164 0:176 ip community-list standard 1_165_175 permit 65000:1 0:165 0:175 ip community-list standard 1_166_174 permit 65000:1 0:166 0:174 ip community-list standard 1_167_173 permit 65000:1 0:167 0:173 ip community-list standard 1_168_172 permit 65000:1 0:168 0:172 ip community-list standard 1_169_171 permit 65000:1 0:169 0:171 ip community-list standard 1_170_170 permit 65000:1 0:170 0:170 route-map calculator permit 9602 match community 2_2_170 2_4_85 2_5_68 2_10_34 2_17_20 set community 0:340 route-map calculator permit 9603 match community 1_84_256 1_85_255 1_86_254 1_87_253 1_88_252 set community 0:340 route-map calculator permit 9604 match community 1_89_251 1_90_250 1_91_249 1_92_248 1_93_247 set community 0:340 route-map calculator permit 9605 match community 1_94_246 1_95_245 1_96_244 1_97_243 1_98_242 set community 0:340 route-map calculator permit 9606 match community 1_99_241 1_100_240 1_101_239 1_102_238 1_103_237 set community 0:340 route-map calculator permit 9607 match community 1_104_236 1_105_235 1_106_234 1_107_233 1_108_232 set community 0:340 route-map calculator permit 9608 match community 1_109_231 1_110_230 1_111_229 1_112_228 1_113_227 set community 0:340 route-map calculator permit 9609 match community 1_114_226 1_115_225 1_116_224 1_117_223 1_118_222 set community 0:340 route-map calculator permit 9610 match community 1_119_221 1_120_220 1_121_219 1_122_218 1_123_217 set community 0:340 route-map calculator permit 9611 match community 1_124_216 1_125_215 1_126_214 1_127_213 1_128_212 set community 0:340 route-map calculator permit 9612 match community 1_129_211 1_130_210 1_131_209 1_132_208 1_133_207 set community 0:340 route-map calculator permit 9613 match community 1_134_206 1_135_205 1_136_204 1_137_203 1_138_202 set community 0:340 route-map calculator permit 9614 match community 1_139_201 1_140_200 1_141_199 1_142_198 1_143_197 set community 0:340 route-map calculator permit 9615 match community 1_144_196 1_145_195 1_146_194 1_147_193 1_148_192 set community 0:340 route-map calculator permit 9616 match community 1_149_191 1_150_190 1_151_189 1_152_188 1_153_187 set community 0:340 route-map calculator permit 9617 match community 1_154_186 1_155_185 1_156_184 1_157_183 1_158_182 set community 0:340 route-map calculator permit 9618 match community 1_159_181 1_160_180 1_161_179 1_162_178 1_163_177 set community 0:340 route-map calculator permit 9619 match community 1_164_176 1_165_175 1_166_174 1_167_173 1_168_172 set community 0:340 route-map calculator permit 9620 match community 1_169_171 1_170_170 set community 0:340 ip community-list standard 2_38_218 permit 65000:2 0:38 0:218 ip community-list standard 2_76_109 permit 65000:2 0:76 0:109 route-map calculator permit 9621 match community 2_38_218 2_76_109 set community 0:8284 ip community-list standard 2_12_240 permit 65000:2 0:12 0:240 ip community-list standard 2_15_192 permit 65000:2 0:15 0:192 ip community-list standard 2_16_180 permit 65000:2 0:16 0:180 ip community-list standard 2_18_160 permit 65000:2 0:18 0:160 ip community-list standard 2_20_144 permit 65000:2 0:20 0:144 ip community-list standard 2_24_120 permit 65000:2 0:24 0:120 ip community-list standard 2_30_96 permit 65000:2 0:30 0:96 ip community-list standard 2_32_90 permit 65000:2 0:32 0:90 ip community-list standard 2_36_80 permit 65000:2 0:36 0:80 ip community-list standard 2_40_72 permit 65000:2 0:40 0:72 ip community-list standard 2_45_64 permit 65000:2 0:45 0:64 ip community-list standard 2_48_60 permit 65000:2 0:48 0:60 route-map calculator permit 9622 match community 2_12_240 2_15_192 2_16_180 2_18_160 2_20_144 set community 0:2880 route-map calculator permit 9623 match community 2_24_120 2_30_96 2_32_90 2_36_80 2_40_72 set community 0:2880 route-map calculator permit 9624 match community 2_45_64 2_48_60 set community 0:2880 ip community-list standard 2_10_253 permit 65000:2 0:10 0:253 ip community-list standard 2_11_230 permit 65000:2 0:11 0:230 ip community-list standard 2_22_115 permit 65000:2 0:22 0:115 ip community-list standard 2_23_110 permit 65000:2 0:23 0:110 ip community-list standard 2_46_55 permit 65000:2 0:46 0:55 route-map calculator permit 9625 match community 2_10_253 2_11_230 2_22_115 2_23_110 2_46_55 set community 0:2530 ip community-list standard 2_144_247 permit 65000:2 0:144 0:247 ip community-list standard 2_152_234 permit 65000:2 0:152 0:234 ip community-list standard 2_156_228 permit 65000:2 0:156 0:228 ip community-list standard 2_171_208 permit 65000:2 0:171 0:208 route-map calculator permit 9626 match community 2_144_247 2_152_234 2_156_228 2_171_208 set community 0:35568 ip community-list standard 2_11_178 permit 65000:2 0:11 0:178 ip community-list standard 2_22_89 permit 65000:2 0:22 0:89 route-map calculator permit 9627 match community 2_11_178 2_22_89 set community 0:1958 ip community-list standard 2_36_236 permit 65000:2 0:36 0:236 ip community-list standard 2_48_177 permit 65000:2 0:48 0:177 ip community-list standard 2_59_144 permit 65000:2 0:59 0:144 ip community-list standard 2_72_118 permit 65000:2 0:72 0:118 route-map calculator permit 9628 match community 2_36_236 2_48_177 2_59_144 2_72_118 set community 0:8496 ip community-list standard 2_137_182 permit 65000:2 0:137 0:182 route-map calculator permit 9629 match community 2_137_182 set community 0:24934 ip community-list standard 2_26_201 permit 65000:2 0:26 0:201 ip community-list standard 2_39_134 permit 65000:2 0:39 0:134 ip community-list standard 2_67_78 permit 65000:2 0:67 0:78 route-map calculator permit 9630 match community 2_26_201 2_39_134 2_67_78 set community 0:5226 ip community-list standard 2_156_241 permit 65000:2 0:156 0:241 route-map calculator permit 9631 match community 2_156_241 set community 0:37596 ip community-list standard 2_79_97 permit 65000:2 0:79 0:97 route-map calculator permit 9632 match community 2_79_97 set community 0:7663 ip community-list standard 2_160_173 permit 65000:2 0:160 0:173 route-map calculator permit 9633 match community 2_160_173 set community 0:27680 ip community-list standard 2_27_246 permit 65000:2 0:27 0:246 ip community-list standard 2_41_162 permit 65000:2 0:41 0:162 ip community-list standard 2_54_123 permit 65000:2 0:54 0:123 ip community-list standard 2_81_82 permit 65000:2 0:81 0:82 route-map calculator permit 9634 match community 2_27_246 2_41_162 2_54_123 2_81_82 set community 0:6642 ip community-list standard 2_110_251 permit 65000:2 0:110 0:251 route-map calculator permit 9635 match community 2_110_251 set community 0:27610 ip community-list standard 2_39_226 permit 65000:2 0:39 0:226 ip community-list standard 2_78_113 permit 65000:2 0:78 0:113 route-map calculator permit 9636 match community 2_39_226 2_78_113 set community 0:8814 ip community-list standard 2_13_202 permit 65000:2 0:13 0:202 ip community-list standard 2_26_101 permit 65000:2 0:26 0:101 route-map calculator permit 9637 match community 2_13_202 2_26_101 set community 0:2626 ip community-list standard 2_164_209 permit 65000:2 0:164 0:209 route-map calculator permit 9638 match community 2_164_209 set community 0:34276 ip community-list standard 2_37_242 permit 65000:2 0:37 0:242 ip community-list standard 2_74_121 permit 65000:2 0:74 0:121 route-map calculator permit 9639 match community 2_37_242 2_74_121 set community 0:8954 ip community-list standard 2_97_177 permit 65000:2 0:97 0:177 route-map calculator permit 9640 match community 2_97_177 set community 0:17169 ip community-list standard 2_47_219 permit 65000:2 0:47 0:219 ip community-list standard 2_73_141 permit 65000:2 0:73 0:141 route-map calculator permit 9641 match community 2_47_219 2_73_141 set community 0:10293 ip community-list standard 2_17_164 permit 65000:2 0:17 0:164 ip community-list standard 2_34_82 permit 65000:2 0:34 0:82 ip community-list standard 2_41_68 permit 65000:2 0:41 0:68 route-map calculator permit 9642 match community 2_17_164 2_34_82 2_41_68 set community 0:2788 ip community-list standard 2_155_173 permit 65000:2 0:155 0:173 route-map calculator permit 9643 match community 2_155_173 set community 0:26815 ip community-list standard 2_136_185 permit 65000:2 0:136 0:185 ip community-list standard 2_148_170 permit 65000:2 0:148 0:170 route-map calculator permit 9644 match community 2_136_185 2_148_170 set community 0:25160 ip community-list standard 2_150_253 permit 65000:2 0:150 0:253 ip community-list standard 2_165_230 permit 65000:2 0:165 0:230 route-map calculator permit 9645 match community 2_150_253 2_165_230 set community 0:37950 ip community-list standard 2_189_223 permit 65000:2 0:189 0:223 route-map calculator permit 9646 match community 2_189_223 set community 0:42147 ip community-list standard 2_112_223 permit 65000:2 0:112 0:223 route-map calculator permit 9647 match community 2_112_223 set community 0:24976 ip community-list standard 2_140_248 permit 65000:2 0:140 0:248 ip community-list standard 2_155_224 permit 65000:2 0:155 0:224 ip community-list standard 2_160_217 permit 65000:2 0:160 0:217 route-map calculator permit 9648 match community 2_140_248 2_155_224 2_160_217 set community 0:34720 ip community-list standard 2_126_245 permit 65000:2 0:126 0:245 ip community-list standard 2_147_210 permit 65000:2 0:147 0:210 route-map calculator permit 9649 match community 2_126_245 2_147_210 set community 0:30870 ip community-list standard 2_120_199 permit 65000:2 0:120 0:199 route-map calculator permit 9650 match community 2_120_199 set community 0:23880 ip community-list standard 2_163_224 permit 65000:2 0:163 0:224 route-map calculator permit 9651 match community 2_163_224 set community 0:36512 ip community-list standard 2_107_169 permit 65000:2 0:107 0:169 route-map calculator permit 9652 match community 2_107_169 set community 0:18083 ip community-list standard 2_127_227 permit 65000:2 0:127 0:227 route-map calculator permit 9653 match community 2_127_227 set community 0:28829 ip community-list standard 2_73_133 permit 65000:2 0:73 0:133 route-map calculator permit 9654 match community 2_73_133 set community 0:9709 ip community-list standard 2_142_245 permit 65000:2 0:142 0:245 route-map calculator permit 9655 match community 2_142_245 set community 0:34790 ip community-list standard 2_91_218 permit 65000:2 0:91 0:218 ip community-list standard 2_109_182 permit 65000:2 0:109 0:182 route-map calculator permit 9656 match community 2_91_218 2_109_182 set community 0:19838 ip community-list standard 2_174_231 permit 65000:2 0:174 0:231 ip community-list standard 2_198_203 permit 65000:2 0:198 0:203 route-map calculator permit 9657 match community 2_174_231 2_198_203 set community 0:40194 ip community-list standard 2_28_217 permit 65000:2 0:28 0:217 ip community-list standard 2_31_196 permit 65000:2 0:31 0:196 ip community-list standard 2_49_124 permit 65000:2 0:49 0:124 ip community-list standard 2_62_98 permit 65000:2 0:62 0:98 route-map calculator permit 9658 match community 2_28_217 2_31_196 2_49_124 2_62_98 set community 0:6076 ip community-list standard 2_142_193 permit 65000:2 0:142 0:193 route-map calculator permit 9659 match community 2_142_193 set community 0:27406 ip community-list standard 2_12_230 permit 65000:2 0:12 0:230 ip community-list standard 2_15_184 permit 65000:2 0:15 0:184 ip community-list standard 2_20_138 permit 65000:2 0:20 0:138 ip community-list standard 2_23_120 permit 65000:2 0:23 0:120 ip community-list standard 2_24_115 permit 65000:2 0:24 0:115 ip community-list standard 2_30_92 permit 65000:2 0:30 0:92 ip community-list standard 2_40_69 permit 65000:2 0:40 0:69 ip community-list standard 2_46_60 permit 65000:2 0:46 0:60 route-map calculator permit 9660 match community 2_12_230 2_15_184 2_20_138 2_23_120 2_24_115 set community 0:2760 route-map calculator permit 9661 match community 2_30_92 2_40_69 2_46_60 set community 0:2760 ip community-list standard 2_195_237 permit 65000:2 0:195 0:237 route-map calculator permit 9662 match community 2_195_237 set community 0:46215 ip community-list standard 2_149_168 permit 65000:2 0:149 0:168 route-map calculator permit 9663 match community 2_149_168 set community 0:25032 ip community-list standard 2_8_191 permit 65000:2 0:8 0:191 route-map calculator permit 9664 match community 2_8_191 set community 0:1528 ip community-list standard 2_169_248 permit 65000:2 0:169 0:248 route-map calculator permit 9665 match community 2_169_248 set community 0:41912 ip community-list standard 2_102_199 permit 65000:2 0:102 0:199 route-map calculator permit 9666 match community 2_102_199 set community 0:20298 ip community-list standard 2_72_248 permit 65000:2 0:72 0:248 ip community-list standard 2_93_192 permit 65000:2 0:93 0:192 ip community-list standard 2_96_186 permit 65000:2 0:96 0:186 ip community-list standard 2_124_144 permit 65000:2 0:124 0:144 route-map calculator permit 9667 match community 2_72_248 2_93_192 2_96_186 2_124_144 set community 0:17856 ip community-list standard 2_100_208 permit 65000:2 0:100 0:208 ip community-list standard 2_104_200 permit 65000:2 0:104 0:200 ip community-list standard 2_130_160 permit 65000:2 0:130 0:160 route-map calculator permit 9668 match community 2_100_208 2_104_200 2_130_160 set community 0:20800 ip community-list standard 2_212_238 permit 65000:2 0:212 0:238 route-map calculator permit 9669 match community 2_212_238 set community 0:50456 ip community-list standard 2_185_199 permit 65000:2 0:185 0:199 route-map calculator permit 9670 match community 2_185_199 set community 0:36815 ip community-list standard 2_134_134 permit 65000:2 0:134 0:134 route-map calculator permit 9671 match community 2_134_134 set community 0:17956 ip community-list standard 2_173_202 permit 65000:2 0:173 0:202 route-map calculator permit 9672 match community 2_173_202 set community 0:34946 ip community-list standard 2_101_210 permit 65000:2 0:101 0:210 ip community-list standard 2_105_202 permit 65000:2 0:105 0:202 route-map calculator permit 9673 match community 2_101_210 2_105_202 set community 0:21210 ip community-list standard 2_93_193 permit 65000:2 0:93 0:193 route-map calculator permit 9674 match community 2_93_193 set community 0:17949 ip community-list standard 2_127_147 permit 65000:2 0:127 0:147 route-map calculator permit 9675 match community 2_127_147 set community 0:18669 ip community-list standard 2_113_197 permit 65000:2 0:113 0:197 route-map calculator permit 9676 match community 2_113_197 set community 0:22261 ip community-list standard 2_131_253 permit 65000:2 0:131 0:253 route-map calculator permit 9677 match community 2_131_253 set community 0:33143 ip community-list standard 2_23_167 permit 65000:2 0:23 0:167 route-map calculator permit 9678 match community 2_23_167 set community 0:3841 ip community-list standard 2_217_255 permit 65000:2 0:217 0:255 route-map calculator permit 9679 match community 2_217_255 set community 0:55335 ip community-list standard 2_23_82 permit 65000:2 0:23 0:82 ip community-list standard 2_41_46 permit 65000:2 0:41 0:46 route-map calculator permit 9680 match community 2_23_82 2_41_46 set community 0:1886 ip community-list standard 2_187_237 permit 65000:2 0:187 0:237 route-map calculator permit 9681 match community 2_187_237 set community 0:44319 ip community-list standard 2_217_250 permit 65000:2 0:217 0:250 route-map calculator permit 9682 match community 2_217_250 set community 0:54250 ip community-list standard 2_67_230 permit 65000:2 0:67 0:230 ip community-list standard 2_115_134 permit 65000:2 0:115 0:134 route-map calculator permit 9683 match community 2_67_230 2_115_134 set community 0:15410 ip community-list standard 2_234_235 permit 65000:2 0:234 0:235 route-map calculator permit 9684 match community 2_234_235 set community 0:54990 ip community-list standard 2_33_244 permit 65000:2 0:33 0:244 ip community-list standard 2_44_183 permit 65000:2 0:44 0:183 ip community-list standard 2_61_132 permit 65000:2 0:61 0:132 ip community-list standard 2_66_122 permit 65000:2 0:66 0:122 route-map calculator permit 9685 match community 2_33_244 2_44_183 2_61_132 2_66_122 set community 0:8052 ip community-list standard 2_155_169 permit 65000:2 0:155 0:169 route-map calculator permit 9686 match community 2_155_169 set community 0:26195 ip community-list standard 2_145_177 permit 65000:2 0:145 0:177 route-map calculator permit 9687 match community 2_145_177 set community 0:25665 ip community-list standard 2_91_242 permit 65000:2 0:91 0:242 ip community-list standard 2_121_182 permit 65000:2 0:121 0:182 ip community-list standard 2_143_154 permit 65000:2 0:143 0:154 route-map calculator permit 9688 match community 2_91_242 2_121_182 2_143_154 set community 0:22022 ip community-list standard 2_32_202 permit 65000:2 0:32 0:202 ip community-list standard 2_64_101 permit 65000:2 0:64 0:101 route-map calculator permit 9689 match community 2_32_202 2_64_101 set community 0:6464 ip community-list standard 2_134_206 permit 65000:2 0:134 0:206 route-map calculator permit 9690 match community 2_134_206 set community 0:27604 ip community-list standard 2_11_158 permit 65000:2 0:11 0:158 ip community-list standard 2_22_79 permit 65000:2 0:22 0:79 route-map calculator permit 9691 match community 2_11_158 2_22_79 set community 0:1738 ip community-list standard 2_93_169 permit 65000:2 0:93 0:169 route-map calculator permit 9692 match community 2_93_169 set community 0:15717 ip community-list standard 2_210_226 permit 65000:2 0:210 0:226 route-map calculator permit 9693 match community 2_210_226 set community 0:47460 ip community-list standard 2_186_226 permit 65000:2 0:186 0:226 route-map calculator permit 9694 match community 2_186_226 set community 0:42036 ip community-list standard 2_152_231 permit 65000:2 0:152 0:231 ip community-list standard 2_154_228 permit 65000:2 0:154 0:228 ip community-list standard 2_168_209 permit 65000:2 0:168 0:209 route-map calculator permit 9695 match community 2_152_231 2_154_228 2_168_209 set community 0:35112 ip community-list standard 2_179_195 permit 65000:2 0:179 0:195 route-map calculator permit 9696 match community 2_179_195 set community 0:34905 ip community-list standard 2_171_183 permit 65000:2 0:171 0:183 route-map calculator permit 9697 match community 2_171_183 set community 0:31293 ip community-list standard 2_43_237 permit 65000:2 0:43 0:237 ip community-list standard 2_79_129 permit 65000:2 0:79 0:129 route-map calculator permit 9698 match community 2_43_237 2_79_129 set community 0:10191 ip community-list standard 2_93_214 permit 65000:2 0:93 0:214 ip community-list standard 2_107_186 permit 65000:2 0:107 0:186 route-map calculator permit 9699 match community 2_93_214 2_107_186 set community 0:19902 ip community-list standard 2_142_218 permit 65000:2 0:142 0:218 route-map calculator permit 9700 match community 2_142_218 set community 0:30956 ip community-list standard 2_51_139 permit 65000:2 0:51 0:139 route-map calculator permit 9701 match community 2_51_139 set community 0:7089 ip community-list standard 2_132_219 permit 65000:2 0:132 0:219 ip community-list standard 2_146_198 permit 65000:2 0:146 0:198 route-map calculator permit 9702 match community 2_132_219 2_146_198 set community 0:28908 ip community-list standard 2_157_233 permit 65000:2 0:157 0:233 route-map calculator permit 9703 match community 2_157_233 set community 0:36581 ip community-list standard 2_23_246 permit 65000:2 0:23 0:246 ip community-list standard 2_41_138 permit 65000:2 0:41 0:138 ip community-list standard 2_46_123 permit 65000:2 0:46 0:123 ip community-list standard 2_69_82 permit 65000:2 0:69 0:82 route-map calculator permit 9704 match community 2_23_246 2_41_138 2_46_123 2_69_82 set community 0:5658 ip community-list standard 2_87_139 permit 65000:2 0:87 0:139 route-map calculator permit 9705 match community 2_87_139 set community 0:12093 ip community-list standard 2_23_94 permit 65000:2 0:23 0:94 ip community-list standard 2_46_47 permit 65000:2 0:46 0:47 route-map calculator permit 9706 match community 2_23_94 2_46_47 set community 0:2162 ip community-list standard 2_89_186 permit 65000:2 0:89 0:186 ip community-list standard 2_93_178 permit 65000:2 0:93 0:178 route-map calculator permit 9707 match community 2_89_186 2_93_178 set community 0:16554 ip community-list standard 2_111_161 permit 65000:2 0:111 0:161 route-map calculator permit 9708 match community 2_111_161 set community 0:17871 ip community-list standard 2_148_224 permit 65000:2 0:148 0:224 route-map calculator permit 9709 match community 2_148_224 set community 0:33152 ip community-list standard 2_61_249 permit 65000:2 0:61 0:249 ip community-list standard 2_83_183 permit 65000:2 0:83 0:183 route-map calculator permit 9710 match community 2_61_249 2_83_183 set community 0:15189 ip community-list standard 2_161_191 permit 65000:2 0:161 0:191 route-map calculator permit 9711 match community 2_161_191 set community 0:30751 ip community-list standard 2_86_169 permit 65000:2 0:86 0:169 route-map calculator permit 9712 match community 2_86_169 set community 0:14534 ip community-list standard 2_8_235 permit 65000:2 0:8 0:235 ip community-list standard 2_10_188 permit 65000:2 0:10 0:188 ip community-list standard 2_20_94 permit 65000:2 0:20 0:94 ip community-list standard 2_40_47 permit 65000:2 0:40 0:47 route-map calculator permit 9713 match community 2_8_235 2_10_188 2_20_94 2_40_47 set community 0:1880 ip community-list standard 2_65_166 permit 65000:2 0:65 0:166 ip community-list standard 2_83_130 permit 65000:2 0:83 0:130 route-map calculator permit 9714 match community 2_65_166 2_83_130 set community 0:10790 ip community-list standard 2_148_182 permit 65000:2 0:148 0:182 route-map calculator permit 9715 match community 2_148_182 set community 0:26936 ip community-list standard 2_86_182 permit 65000:2 0:86 0:182 ip community-list standard 2_91_172 permit 65000:2 0:91 0:172 route-map calculator permit 9716 match community 2_86_182 2_91_172 set community 0:15652 ip community-list standard 2_117_237 permit 65000:2 0:117 0:237 route-map calculator permit 9717 match community 2_117_237 set community 0:27729 ip community-list standard 2_7_207 permit 65000:2 0:7 0:207 ip community-list standard 2_9_161 permit 65000:2 0:9 0:161 ip community-list standard 2_21_69 permit 65000:2 0:21 0:69 ip community-list standard 2_23_63 permit 65000:2 0:23 0:63 route-map calculator permit 9718 match community 2_7_207 2_9_161 2_21_69 2_23_63 set community 0:1449 ip community-list standard 2_63_113 permit 65000:2 0:63 0:113 route-map calculator permit 9719 match community 2_63_113 set community 0:7119 ip community-list standard 2_101_193 permit 65000:2 0:101 0:193 route-map calculator permit 9720 match community 2_101_193 set community 0:19493 ip community-list standard 2_31_31 permit 65000:2 0:31 0:31 route-map calculator permit 9721 match community 2_31_31 set community 0:961 ip community-list standard 2_97_147 permit 65000:2 0:97 0:147 route-map calculator permit 9722 match community 2_97_147 set community 0:14259 ip community-list standard 2_210_229 permit 65000:2 0:210 0:229 route-map calculator permit 9723 match community 2_210_229 set community 0:48090 ip community-list standard 2_55_195 permit 65000:2 0:55 0:195 ip community-list standard 2_65_165 permit 65000:2 0:65 0:165 ip community-list standard 2_75_143 permit 65000:2 0:75 0:143 route-map calculator permit 9724 match community 2_55_195 2_65_165 2_75_143 set community 0:10725 ip community-list standard 2_134_142 permit 65000:2 0:134 0:142 route-map calculator permit 9725 match community 2_134_142 set community 0:19028 ip community-list standard 2_36_212 permit 65000:2 0:36 0:212 ip community-list standard 2_48_159 permit 65000:2 0:48 0:159 ip community-list standard 2_53_144 permit 65000:2 0:53 0:144 ip community-list standard 2_72_106 permit 65000:2 0:72 0:106 route-map calculator permit 9726 match community 2_36_212 2_48_159 2_53_144 2_72_106 set community 0:7632 ip community-list standard 2_11_166 permit 65000:2 0:11 0:166 ip community-list standard 2_22_83 permit 65000:2 0:22 0:83 route-map calculator permit 9727 match community 2_11_166 2_22_83 set community 0:1826 ip community-list standard 2_42_141 permit 65000:2 0:42 0:141 ip community-list standard 2_47_126 permit 65000:2 0:47 0:126 ip community-list standard 2_63_94 permit 65000:2 0:63 0:94 route-map calculator permit 9728 match community 2_42_141 2_47_126 2_63_94 set community 0:5922 ip community-list standard 2_81_252 permit 65000:2 0:81 0:252 ip community-list standard 2_84_243 permit 65000:2 0:84 0:243 ip community-list standard 2_108_189 permit 65000:2 0:108 0:189 ip community-list standard 2_126_162 permit 65000:2 0:126 0:162 route-map calculator permit 9729 match community 2_81_252 2_84_243 2_108_189 2_126_162 set community 0:20412 ip community-list standard 1_1_42 permit 65000:1 0:1 0:42 ip community-list standard 2_1_43 permit 65000:2 0:1 0:43 ip community-list standard 1_2_41 permit 65000:1 0:2 0:41 ip community-list standard 1_3_40 permit 65000:1 0:3 0:40 ip community-list standard 1_4_39 permit 65000:1 0:4 0:39 ip community-list standard 1_5_38 permit 65000:1 0:5 0:38 ip community-list standard 1_6_37 permit 65000:1 0:6 0:37 ip community-list standard 1_7_36 permit 65000:1 0:7 0:36 ip community-list standard 1_8_35 permit 65000:1 0:8 0:35 ip community-list standard 1_9_34 permit 65000:1 0:9 0:34 ip community-list standard 1_10_33 permit 65000:1 0:10 0:33 ip community-list standard 1_11_32 permit 65000:1 0:11 0:32 ip community-list standard 1_12_31 permit 65000:1 0:12 0:31 ip community-list standard 1_13_30 permit 65000:1 0:13 0:30 ip community-list standard 1_14_29 permit 65000:1 0:14 0:29 ip community-list standard 1_15_28 permit 65000:1 0:15 0:28 ip community-list standard 1_16_27 permit 65000:1 0:16 0:27 ip community-list standard 1_17_26 permit 65000:1 0:17 0:26 ip community-list standard 1_18_25 permit 65000:1 0:18 0:25 ip community-list standard 1_19_24 permit 65000:1 0:19 0:24 ip community-list standard 1_20_23 permit 65000:1 0:20 0:23 ip community-list standard 1_21_22 permit 65000:1 0:21 0:22 ip community-list expanded c43 permit 1 ^65000:4_0:43_0:1$ ip community-list expanded c43 permit 2 ^65000:3_0:44_0:1$ ip community-list expanded c43 permit 3 ^65000:3_0:45_0:2$ ip community-list expanded c43 permit 4 ^65000:3_0:46_0:3$ ip community-list expanded c43 permit 5 ^65000:3_0:47_0:4$ ip community-list expanded c43 permit 6 ^65000:3_0:48_0:5$ ip community-list expanded c43 permit 7 ^65000:3_0:49_0:6$ ip community-list expanded c43 permit 8 ^65000:3_0:50_0:7$ ip community-list expanded c43 permit 9 ^65000:3_0:51_0:8$ ip community-list expanded c43 permit 10 ^65000:3_0:52_0:9$ ip community-list expanded c43 permit 11 ^65000:3_0:53_0:10$ ip community-list expanded c43 permit 12 ^65000:3_0:54_0:11$ ip community-list expanded c43 permit 13 ^65000:3_0:55_0:12$ ip community-list expanded c43 permit 14 ^65000:3_0:56_0:13$ ip community-list expanded c43 permit 15 ^65000:3_0:57_0:14$ ip community-list expanded c43 permit 16 ^65000:3_0:58_0:15$ ip community-list expanded c43 permit 17 ^65000:3_0:59_0:16$ ip community-list expanded c43 permit 18 ^65000:3_0:60_0:17$ ip community-list expanded c43 permit 19 ^65000:3_0:61_0:18$ ip community-list expanded c43 permit 20 ^65000:3_0:62_0:19$ ip community-list expanded c43 permit 21 ^65000:3_0:63_0:20$ ip community-list expanded c43 permit 22 ^65000:3_0:64_0:21$ ip community-list expanded c43 permit 23 ^65000:3_0:65_0:22$ ip community-list expanded c43 permit 24 ^65000:3_0:66_0:23$ ip community-list expanded c43 permit 25 ^65000:3_0:67_0:24$ ip community-list expanded c43 permit 26 ^65000:3_0:68_0:25$ ip community-list expanded c43 permit 27 ^65000:3_0:69_0:26$ ip community-list expanded c43 permit 28 ^65000:3_0:70_0:27$ ip community-list expanded c43 permit 29 ^65000:3_0:71_0:28$ ip community-list expanded c43 permit 30 ^65000:3_0:72_0:29$ ip community-list expanded c43 permit 31 ^65000:3_0:73_0:30$ ip community-list expanded c43 permit 32 ^65000:3_0:74_0:31$ ip community-list expanded c43 permit 33 ^65000:3_0:75_0:32$ ip community-list expanded c43 permit 34 ^65000:3_0:76_0:33$ ip community-list expanded c43 permit 35 ^65000:3_0:77_0:34$ ip community-list expanded c43 permit 36 ^65000:3_0:78_0:35$ ip community-list expanded c43 permit 37 ^65000:3_0:79_0:36$ ip community-list expanded c43 permit 38 ^65000:3_0:80_0:37$ ip community-list expanded c43 permit 39 ^65000:3_0:81_0:38$ ip community-list expanded c43 permit 40 ^65000:3_0:82_0:39$ ip community-list expanded c43 permit 41 ^65000:3_0:83_0:40$ ip community-list expanded c43 permit 42 ^65000:3_0:84_0:41$ ip community-list expanded c43 permit 43 ^65000:3_0:85_0:42$ ip community-list expanded c43 permit 44 ^65000:4_0:86_0:2$ ip community-list expanded c43 permit 45 ^65000:3_0:86_0:43$ ip community-list expanded c43 permit 46 ^65000:4_0:87_0:2$ ip community-list expanded c43 permit 47 ^65000:3_0:87_0:44$ ip community-list expanded c43 permit 48 ^65000:3_0:88_0:45$ ip community-list expanded c43 permit 49 ^65000:3_0:89_0:46$ ip community-list expanded c43 permit 50 ^65000:3_0:90_0:47$ ip community-list expanded c43 permit 51 ^65000:3_0:91_0:48$ ip community-list expanded c43 permit 52 ^65000:3_0:92_0:49$ ip community-list expanded c43 permit 53 ^65000:3_0:93_0:50$ ip community-list expanded c43 permit 54 ^65000:3_0:94_0:51$ ip community-list expanded c43 permit 55 ^65000:3_0:95_0:52$ ip community-list expanded c43 permit 56 ^65000:3_0:96_0:53$ ip community-list expanded c43 permit 57 ^65000:3_0:97_0:54$ ip community-list expanded c43 permit 58 ^65000:3_0:98_0:55$ ip community-list expanded c43 permit 59 ^65000:3_0:99_0:56$ ip community-list expanded c43 permit 60 ^65000:3_0:100_0:57$ ip community-list expanded c43 permit 61 ^65000:3_0:101_0:58$ ip community-list expanded c43 permit 62 ^65000:3_0:102_0:59$ ip community-list expanded c43 permit 63 ^65000:3_0:103_0:60$ ip community-list expanded c43 permit 64 ^65000:3_0:104_0:61$ ip community-list expanded c43 permit 65 ^65000:3_0:105_0:62$ ip community-list expanded c43 permit 66 ^65000:3_0:106_0:63$ ip community-list expanded c43 permit 67 ^65000:3_0:107_0:64$ ip community-list expanded c43 permit 68 ^65000:3_0:108_0:65$ ip community-list expanded c43 permit 69 ^65000:3_0:109_0:66$ ip community-list expanded c43 permit 70 ^65000:3_0:110_0:67$ ip community-list expanded c43 permit 71 ^65000:3_0:111_0:68$ ip community-list expanded c43 permit 72 ^65000:3_0:112_0:69$ ip community-list expanded c43 permit 73 ^65000:3_0:113_0:70$ ip community-list expanded c43 permit 74 ^65000:3_0:114_0:71$ ip community-list expanded c43 permit 75 ^65000:3_0:115_0:72$ ip community-list expanded c43 permit 76 ^65000:3_0:116_0:73$ ip community-list expanded c43 permit 77 ^65000:3_0:117_0:74$ ip community-list expanded c43 permit 78 ^65000:3_0:118_0:75$ ip community-list expanded c43 permit 79 ^65000:3_0:119_0:76$ ip community-list expanded c43 permit 80 ^65000:3_0:120_0:77$ ip community-list expanded c43 permit 81 ^65000:3_0:121_0:78$ ip community-list expanded c43 permit 82 ^65000:3_0:122_0:79$ ip community-list expanded c43 permit 83 ^65000:3_0:123_0:80$ ip community-list expanded c43 permit 84 ^65000:3_0:124_0:81$ ip community-list expanded c43 permit 85 ^65000:3_0:125_0:82$ ip community-list expanded c43 permit 86 ^65000:3_0:126_0:83$ ip community-list expanded c43 permit 87 ^65000:3_0:127_0:84$ ip community-list expanded c43 permit 88 ^65000:3_0:128_0:85$ ip community-list expanded c43 permit 89 ^65000:4_0:129_0:3$ ip community-list expanded c43 permit 90 ^65000:3_0:129_0:86$ ip community-list expanded c43 permit 91 ^65000:4_0:130_0:3$ ip community-list expanded c43 permit 92 ^65000:3_0:130_0:87$ ip community-list expanded c43 permit 93 ^65000:4_0:131_0:3$ ip community-list expanded c43 permit 94 ^65000:3_0:131_0:88$ ip community-list expanded c43 permit 95 ^65000:3_0:132_0:89$ ip community-list expanded c43 permit 96 ^65000:3_0:133_0:90$ ip community-list expanded c43 permit 97 ^65000:3_0:134_0:91$ ip community-list expanded c43 permit 98 ^65000:3_0:135_0:92$ ip community-list expanded c43 permit 99 ^65000:3_0:136_0:93$ ip community-list expanded c43 permit 100 ^65000:3_0:137_0:94$ ip community-list expanded c43 permit 101 ^65000:3_0:138_0:95$ ip community-list expanded c43 permit 102 ^65000:3_0:139_0:96$ ip community-list expanded c43 permit 103 ^65000:3_0:140_0:97$ ip community-list expanded c43 permit 104 ^65000:3_0:141_0:98$ ip community-list expanded c43 permit 105 ^65000:3_0:142_0:99$ ip community-list expanded c43 permit 106 ^65000:3_0:143_0:100$ ip community-list expanded c43 permit 107 ^65000:3_0:144_0:101$ ip community-list expanded c43 permit 108 ^65000:3_0:145_0:102$ ip community-list expanded c43 permit 109 ^65000:3_0:146_0:103$ ip community-list expanded c43 permit 110 ^65000:3_0:147_0:104$ ip community-list expanded c43 permit 111 ^65000:3_0:148_0:105$ ip community-list expanded c43 permit 112 ^65000:3_0:149_0:106$ ip community-list expanded c43 permit 113 ^65000:3_0:150_0:107$ ip community-list expanded c43 permit 114 ^65000:3_0:151_0:108$ ip community-list expanded c43 permit 115 ^65000:3_0:152_0:109$ ip community-list expanded c43 permit 116 ^65000:3_0:153_0:110$ ip community-list expanded c43 permit 117 ^65000:3_0:154_0:111$ ip community-list expanded c43 permit 118 ^65000:3_0:155_0:112$ ip community-list expanded c43 permit 119 ^65000:3_0:156_0:113$ ip community-list expanded c43 permit 120 ^65000:3_0:157_0:114$ ip community-list expanded c43 permit 121 ^65000:3_0:158_0:115$ ip community-list expanded c43 permit 122 ^65000:3_0:159_0:116$ ip community-list expanded c43 permit 123 ^65000:3_0:160_0:117$ ip community-list expanded c43 permit 124 ^65000:3_0:161_0:118$ ip community-list expanded c43 permit 125 ^65000:3_0:162_0:119$ ip community-list expanded c43 permit 126 ^65000:3_0:163_0:120$ ip community-list expanded c43 permit 127 ^65000:3_0:164_0:121$ ip community-list expanded c43 permit 128 ^65000:3_0:165_0:122$ ip community-list expanded c43 permit 129 ^65000:3_0:166_0:123$ ip community-list expanded c43 permit 130 ^65000:3_0:167_0:124$ ip community-list expanded c43 permit 131 ^65000:3_0:168_0:125$ ip community-list expanded c43 permit 132 ^65000:3_0:169_0:126$ ip community-list expanded c43 permit 133 ^65000:3_0:170_0:127$ ip community-list expanded c43 permit 134 ^65000:3_0:171_0:128$ ip community-list expanded c43 permit 135 ^65000:4_0:172_0:4$ ip community-list expanded c43 permit 136 ^65000:3_0:172_0:129$ ip community-list expanded c43 permit 137 ^65000:4_0:173_0:4$ ip community-list expanded c43 permit 138 ^65000:3_0:173_0:130$ ip community-list expanded c43 permit 139 ^65000:4_0:174_0:4$ ip community-list expanded c43 permit 140 ^65000:3_0:174_0:131$ ip community-list expanded c43 permit 141 ^65000:4_0:175_0:4$ ip community-list expanded c43 permit 142 ^65000:3_0:175_0:132$ ip community-list expanded c43 permit 143 ^65000:3_0:176_0:133$ ip community-list expanded c43 permit 144 ^65000:3_0:177_0:134$ ip community-list expanded c43 permit 145 ^65000:3_0:178_0:135$ ip community-list expanded c43 permit 146 ^65000:3_0:179_0:136$ ip community-list expanded c43 permit 147 ^65000:3_0:180_0:137$ ip community-list expanded c43 permit 148 ^65000:3_0:181_0:138$ ip community-list expanded c43 permit 149 ^65000:3_0:182_0:139$ ip community-list expanded c43 permit 150 ^65000:3_0:183_0:140$ ip community-list expanded c43 permit 151 ^65000:3_0:184_0:141$ ip community-list expanded c43 permit 152 ^65000:3_0:185_0:142$ ip community-list expanded c43 permit 153 ^65000:3_0:186_0:143$ ip community-list expanded c43 permit 154 ^65000:3_0:187_0:144$ ip community-list expanded c43 permit 155 ^65000:3_0:188_0:145$ ip community-list expanded c43 permit 156 ^65000:3_0:189_0:146$ ip community-list expanded c43 permit 157 ^65000:3_0:190_0:147$ ip community-list expanded c43 permit 158 ^65000:3_0:191_0:148$ ip community-list expanded c43 permit 159 ^65000:3_0:192_0:149$ ip community-list expanded c43 permit 160 ^65000:3_0:193_0:150$ ip community-list expanded c43 permit 161 ^65000:3_0:194_0:151$ ip community-list expanded c43 permit 162 ^65000:3_0:195_0:152$ ip community-list expanded c43 permit 163 ^65000:3_0:196_0:153$ ip community-list expanded c43 permit 164 ^65000:3_0:197_0:154$ ip community-list expanded c43 permit 165 ^65000:3_0:198_0:155$ ip community-list expanded c43 permit 166 ^65000:3_0:199_0:156$ ip community-list expanded c43 permit 167 ^65000:3_0:200_0:157$ ip community-list expanded c43 permit 168 ^65000:3_0:201_0:158$ ip community-list expanded c43 permit 169 ^65000:3_0:202_0:159$ ip community-list expanded c43 permit 170 ^65000:3_0:203_0:160$ ip community-list expanded c43 permit 171 ^65000:3_0:204_0:161$ ip community-list expanded c43 permit 172 ^65000:3_0:205_0:162$ ip community-list expanded c43 permit 173 ^65000:3_0:206_0:163$ ip community-list expanded c43 permit 174 ^65000:3_0:207_0:164$ ip community-list expanded c43 permit 175 ^65000:3_0:208_0:165$ ip community-list expanded c43 permit 176 ^65000:3_0:209_0:166$ ip community-list expanded c43 permit 177 ^65000:3_0:210_0:167$ ip community-list expanded c43 permit 178 ^65000:3_0:211_0:168$ ip community-list expanded c43 permit 179 ^65000:3_0:212_0:169$ ip community-list expanded c43 permit 180 ^65000:3_0:213_0:170$ ip community-list expanded c43 permit 181 ^65000:3_0:214_0:171$ ip community-list expanded c43 permit 182 ^65000:4_0:215_0:5$ ip community-list expanded c43 permit 183 ^65000:3_0:215_0:172$ ip community-list expanded c43 permit 184 ^65000:4_0:216_0:5$ ip community-list expanded c43 permit 185 ^65000:3_0:216_0:173$ ip community-list expanded c43 permit 186 ^65000:4_0:217_0:5$ ip community-list expanded c43 permit 187 ^65000:3_0:217_0:174$ ip community-list expanded c43 permit 188 ^65000:4_0:218_0:5$ ip community-list expanded c43 permit 189 ^65000:3_0:218_0:175$ ip community-list expanded c43 permit 190 ^65000:4_0:219_0:5$ ip community-list expanded c43 permit 191 ^65000:3_0:219_0:176$ ip community-list expanded c43 permit 192 ^65000:3_0:220_0:177$ ip community-list expanded c43 permit 193 ^65000:3_0:221_0:178$ ip community-list expanded c43 permit 194 ^65000:3_0:222_0:179$ ip community-list expanded c43 permit 195 ^65000:3_0:223_0:180$ ip community-list expanded c43 permit 196 ^65000:3_0:224_0:181$ ip community-list expanded c43 permit 197 ^65000:3_0:225_0:182$ ip community-list expanded c43 permit 198 ^65000:3_0:226_0:183$ ip community-list expanded c43 permit 199 ^65000:3_0:227_0:184$ ip community-list expanded c43 permit 200 ^65000:3_0:228_0:185$ ip community-list expanded c43 permit 201 ^65000:3_0:229_0:186$ ip community-list expanded c43 permit 202 ^65000:3_0:230_0:187$ ip community-list expanded c43 permit 203 ^65000:3_0:231_0:188$ ip community-list expanded c43 permit 204 ^65000:3_0:232_0:189$ ip community-list expanded c43 permit 205 ^65000:3_0:233_0:190$ ip community-list expanded c43 permit 206 ^65000:3_0:234_0:191$ ip community-list expanded c43 permit 207 ^65000:3_0:235_0:192$ ip community-list expanded c43 permit 208 ^65000:3_0:236_0:193$ ip community-list expanded c43 permit 209 ^65000:3_0:237_0:194$ ip community-list expanded c43 permit 210 ^65000:3_0:238_0:195$ ip community-list expanded c43 permit 211 ^65000:3_0:239_0:196$ ip community-list expanded c43 permit 212 ^65000:3_0:240_0:197$ ip community-list expanded c43 permit 213 ^65000:3_0:241_0:198$ ip community-list expanded c43 permit 214 ^65000:3_0:242_0:199$ ip community-list expanded c43 permit 215 ^65000:3_0:243_0:200$ ip community-list expanded c43 permit 216 ^65000:3_0:244_0:201$ ip community-list expanded c43 permit 217 ^65000:3_0:245_0:202$ ip community-list expanded c43 permit 218 ^65000:3_0:246_0:203$ ip community-list expanded c43 permit 219 ^65000:3_0:247_0:204$ ip community-list expanded c43 permit 220 ^65000:3_0:248_0:205$ ip community-list expanded c43 permit 221 ^65000:3_0:249_0:206$ ip community-list expanded c43 permit 222 ^65000:3_0:250_0:207$ ip community-list expanded c43 permit 223 ^65000:3_0:251_0:208$ ip community-list expanded c43 permit 224 ^65000:3_0:252_0:209$ ip community-list expanded c43 permit 225 ^65000:3_0:253_0:210$ ip community-list expanded c43 permit 226 ^65000:3_0:254_0:211$ ip community-list expanded c43 permit 227 ^65000:3_0:255_0:212$ ip community-list expanded c43 permit 228 ^65000:3_0:256_0:213$ route-map calculator permit 9730 match community 1_1_42 2_1_43 1_2_41 1_3_40 1_4_39 set community 0:43 route-map calculator permit 9731 match community 1_5_38 1_6_37 1_7_36 1_8_35 1_9_34 set community 0:43 route-map calculator permit 9732 match community 1_10_33 1_11_32 1_12_31 1_13_30 1_14_29 set community 0:43 route-map calculator permit 9733 match community 1_15_28 1_16_27 1_17_26 1_18_25 1_19_24 set community 0:43 route-map calculator permit 9734 match community 1_20_23 1_21_22 c4_43_1 c3_44_1 c3_45_2 set community 0:43 route-map calculator permit 9735 match community c3_46_3 c3_47_4 c3_48_5 c3_49_6 c3_50_7 set community 0:43 route-map calculator permit 9736 match community c3_51_8 c3_52_9 c3_53_10 c3_54_11 c3_55_12 set community 0:43 route-map calculator permit 9737 match community c3_56_13 c3_57_14 c3_58_15 c3_59_16 c3_60_17 set community 0:43 route-map calculator permit 9738 match community c3_61_18 c3_62_19 c3_63_20 c3_64_21 c3_65_22 set community 0:43 route-map calculator permit 9739 match community c3_66_23 c3_67_24 c3_68_25 c3_69_26 c3_70_27 set community 0:43 route-map calculator permit 9740 match community c3_71_28 c3_72_29 c3_73_30 c3_74_31 c3_75_32 set community 0:43 route-map calculator permit 9741 match community c3_76_33 c3_77_34 c3_78_35 c3_79_36 c3_80_37 set community 0:43 route-map calculator permit 9742 match community c3_81_38 c3_82_39 c3_83_40 c3_84_41 c3_85_42 set community 0:43 route-map calculator permit 9743 match community c4_86_2 c3_86_43 c4_87_2 c3_87_44 c3_88_45 set community 0:43 route-map calculator permit 9744 match community c3_89_46 c3_90_47 c3_91_48 c3_92_49 c3_93_50 set community 0:43 route-map calculator permit 9745 match community c3_94_51 c3_95_52 c3_96_53 c3_97_54 c3_98_55 set community 0:43 route-map calculator permit 9746 match community c3_99_56 c3_100_57 c3_101_58 c3_102_59 c3_103_60 set community 0:43 route-map calculator permit 9747 match community c3_104_61 c3_105_62 c3_106_63 c3_107_64 c3_108_65 set community 0:43 route-map calculator permit 9748 match community c3_109_66 c3_110_67 c3_111_68 c3_112_69 c3_113_70 set community 0:43 route-map calculator permit 9749 match community c3_114_71 c3_115_72 c3_116_73 c3_117_74 c3_118_75 set community 0:43 route-map calculator permit 9750 match community c3_119_76 c3_120_77 c3_121_78 c3_122_79 c3_123_80 set community 0:43 route-map calculator permit 9751 match community c3_124_81 c3_125_82 c3_126_83 c3_127_84 c3_128_85 set community 0:43 route-map calculator permit 9752 match community c4_129_3 c3_129_86 c4_130_3 c3_130_87 c4_131_3 set community 0:43 route-map calculator permit 9753 match community c3_131_88 c3_132_89 c3_133_90 c3_134_91 c3_135_92 set community 0:43 route-map calculator permit 9754 match community c3_136_93 c3_137_94 c3_138_95 c3_139_96 c3_140_97 set community 0:43 route-map calculator permit 9755 match community c3_141_98 c3_142_99 c3_143_100 c3_144_101 c3_145_102 set community 0:43 route-map calculator permit 9756 match community c3_146_103 c3_147_104 c3_148_105 c3_149_106 c3_150_107 set community 0:43 route-map calculator permit 9757 match community c3_151_108 c3_152_109 c3_153_110 c3_154_111 c3_155_112 set community 0:43 route-map calculator permit 9758 match community c3_156_113 c3_157_114 c3_158_115 c3_159_116 c3_160_117 set community 0:43 route-map calculator permit 9759 match community c3_161_118 c3_162_119 c3_163_120 c3_164_121 c3_165_122 set community 0:43 route-map calculator permit 9760 match community c3_166_123 c3_167_124 c3_168_125 c3_169_126 c3_170_127 set community 0:43 route-map calculator permit 9761 match community c3_171_128 c4_172_4 c3_172_129 c4_173_4 c3_173_130 set community 0:43 route-map calculator permit 9762 match community c4_174_4 c3_174_131 c4_175_4 c3_175_132 c3_176_133 set community 0:43 route-map calculator permit 9763 match community c3_177_134 c3_178_135 c3_179_136 c3_180_137 c3_181_138 set community 0:43 route-map calculator permit 9764 match community c3_182_139 c3_183_140 c3_184_141 c3_185_142 c3_186_143 set community 0:43 route-map calculator permit 9765 match community c3_187_144 c3_188_145 c3_189_146 c3_190_147 c3_191_148 set community 0:43 route-map calculator permit 9766 match community c3_192_149 c3_193_150 c3_194_151 c3_195_152 c3_196_153 set community 0:43 route-map calculator permit 9767 match community c3_197_154 c3_198_155 c3_199_156 c3_200_157 c3_201_158 set community 0:43 route-map calculator permit 9768 match community c3_202_159 c3_203_160 c3_204_161 c3_205_162 c3_206_163 set community 0:43 route-map calculator permit 9769 match community c3_207_164 c3_208_165 c3_209_166 c3_210_167 c3_211_168 set community 0:43 route-map calculator permit 9770 match community c3_212_169 c3_213_170 c3_214_171 c4_215_5 c3_215_172 set community 0:43 route-map calculator permit 9771 match community c4_216_5 c3_216_173 c4_217_5 c3_217_174 c4_218_5 set community 0:43 route-map calculator permit 9772 match community c3_218_175 c4_219_5 c3_219_176 c3_220_177 c3_221_178 set community 0:43 route-map calculator permit 9773 match community c3_222_179 c3_223_180 c3_224_181 c3_225_182 c3_226_183 set community 0:43 route-map calculator permit 9774 match community c3_227_184 c3_228_185 c3_229_186 c3_230_187 c3_231_188 set community 0:43 route-map calculator permit 9775 match community c3_232_189 c3_233_190 c3_234_191 c3_235_192 c3_236_193 set community 0:43 route-map calculator permit 9776 match community c3_237_194 c3_238_195 c3_239_196 c3_240_197 c3_241_198 set community 0:43 route-map calculator permit 9777 match community c3_242_199 c3_243_200 c3_244_201 c3_245_202 c3_246_203 set community 0:43 route-map calculator permit 9778 match community c3_247_204 c3_248_205 c3_249_206 c3_250_207 c3_251_208 set community 0:43 route-map calculator permit 9779 match community c3_252_209 c3_253_210 c3_254_211 c3_255_212 c3_256_213 set community 0:43 ip community-list standard 1_1_45 permit 65000:1 0:1 0:45 ip community-list standard 2_1_46 permit 65000:2 0:1 0:46 ip community-list standard 2_2_23 permit 65000:2 0:2 0:23 ip community-list standard 1_2_44 permit 65000:1 0:2 0:44 ip community-list standard 1_3_43 permit 65000:1 0:3 0:43 ip community-list standard 1_4_42 permit 65000:1 0:4 0:42 ip community-list standard 1_5_41 permit 65000:1 0:5 0:41 ip community-list standard 1_6_40 permit 65000:1 0:6 0:40 ip community-list standard 1_7_39 permit 65000:1 0:7 0:39 ip community-list standard 1_8_38 permit 65000:1 0:8 0:38 ip community-list standard 1_9_37 permit 65000:1 0:9 0:37 ip community-list standard 1_10_36 permit 65000:1 0:10 0:36 ip community-list standard 1_11_35 permit 65000:1 0:11 0:35 ip community-list standard 1_12_34 permit 65000:1 0:12 0:34 ip community-list standard 1_13_33 permit 65000:1 0:13 0:33 ip community-list standard 1_14_32 permit 65000:1 0:14 0:32 ip community-list standard 1_15_31 permit 65000:1 0:15 0:31 ip community-list standard 1_16_30 permit 65000:1 0:16 0:30 ip community-list standard 1_17_29 permit 65000:1 0:17 0:29 ip community-list standard 1_18_28 permit 65000:1 0:18 0:28 ip community-list standard 1_19_27 permit 65000:1 0:19 0:27 ip community-list standard 1_20_26 permit 65000:1 0:20 0:26 ip community-list standard 1_21_25 permit 65000:1 0:21 0:25 ip community-list standard 1_22_24 permit 65000:1 0:22 0:24 ip community-list standard 1_23_23 permit 65000:1 0:23 0:23 ip community-list expanded c46 permit 1 ^65000:4_0:46_0:1$ ip community-list expanded c46 permit 2 ^65000:3_0:47_0:1$ ip community-list expanded c46 permit 3 ^65000:3_0:48_0:2$ ip community-list expanded c46 permit 4 ^65000:3_0:49_0:3$ ip community-list expanded c46 permit 5 ^65000:3_0:50_0:4$ ip community-list expanded c46 permit 6 ^65000:3_0:51_0:5$ ip community-list expanded c46 permit 7 ^65000:3_0:52_0:6$ ip community-list expanded c46 permit 8 ^65000:3_0:53_0:7$ ip community-list expanded c46 permit 9 ^65000:3_0:54_0:8$ ip community-list expanded c46 permit 10 ^65000:3_0:55_0:9$ ip community-list expanded c46 permit 11 ^65000:3_0:56_0:10$ ip community-list expanded c46 permit 12 ^65000:3_0:57_0:11$ ip community-list expanded c46 permit 13 ^65000:3_0:58_0:12$ ip community-list expanded c46 permit 14 ^65000:3_0:59_0:13$ ip community-list expanded c46 permit 15 ^65000:3_0:60_0:14$ ip community-list expanded c46 permit 16 ^65000:3_0:61_0:15$ ip community-list expanded c46 permit 17 ^65000:3_0:62_0:16$ ip community-list expanded c46 permit 18 ^65000:3_0:63_0:17$ ip community-list expanded c46 permit 19 ^65000:3_0:64_0:18$ ip community-list expanded c46 permit 20 ^65000:3_0:65_0:19$ ip community-list expanded c46 permit 21 ^65000:3_0:66_0:20$ ip community-list expanded c46 permit 22 ^65000:3_0:67_0:21$ ip community-list expanded c46 permit 23 ^65000:3_0:68_0:22$ ip community-list expanded c46 permit 24 ^65000:3_0:69_0:23$ ip community-list expanded c46 permit 25 ^65000:3_0:70_0:24$ ip community-list expanded c46 permit 26 ^65000:3_0:71_0:25$ ip community-list expanded c46 permit 27 ^65000:3_0:72_0:26$ ip community-list expanded c46 permit 28 ^65000:3_0:73_0:27$ ip community-list expanded c46 permit 29 ^65000:3_0:74_0:28$ ip community-list expanded c46 permit 30 ^65000:3_0:75_0:29$ ip community-list expanded c46 permit 31 ^65000:3_0:76_0:30$ ip community-list expanded c46 permit 32 ^65000:3_0:77_0:31$ ip community-list expanded c46 permit 33 ^65000:3_0:78_0:32$ ip community-list expanded c46 permit 34 ^65000:3_0:79_0:33$ ip community-list expanded c46 permit 35 ^65000:3_0:80_0:34$ ip community-list expanded c46 permit 36 ^65000:3_0:81_0:35$ ip community-list expanded c46 permit 37 ^65000:3_0:82_0:36$ ip community-list expanded c46 permit 38 ^65000:3_0:83_0:37$ ip community-list expanded c46 permit 39 ^65000:3_0:84_0:38$ ip community-list expanded c46 permit 40 ^65000:3_0:85_0:39$ ip community-list expanded c46 permit 41 ^65000:3_0:86_0:40$ ip community-list expanded c46 permit 42 ^65000:3_0:87_0:41$ ip community-list expanded c46 permit 43 ^65000:3_0:88_0:42$ ip community-list expanded c46 permit 44 ^65000:3_0:89_0:43$ ip community-list expanded c46 permit 45 ^65000:3_0:90_0:44$ ip community-list expanded c46 permit 46 ^65000:3_0:91_0:45$ ip community-list expanded c46 permit 47 ^65000:4_0:92_0:2$ ip community-list expanded c46 permit 48 ^65000:3_0:92_0:46$ ip community-list expanded c46 permit 49 ^65000:4_0:93_0:2$ ip community-list expanded c46 permit 50 ^65000:3_0:93_0:47$ ip community-list expanded c46 permit 51 ^65000:3_0:94_0:48$ ip community-list expanded c46 permit 52 ^65000:3_0:95_0:49$ ip community-list expanded c46 permit 53 ^65000:3_0:96_0:50$ ip community-list expanded c46 permit 54 ^65000:3_0:97_0:51$ ip community-list expanded c46 permit 55 ^65000:3_0:98_0:52$ ip community-list expanded c46 permit 56 ^65000:3_0:99_0:53$ ip community-list expanded c46 permit 57 ^65000:3_0:100_0:54$ ip community-list expanded c46 permit 58 ^65000:3_0:101_0:55$ ip community-list expanded c46 permit 59 ^65000:3_0:102_0:56$ ip community-list expanded c46 permit 60 ^65000:3_0:103_0:57$ ip community-list expanded c46 permit 61 ^65000:3_0:104_0:58$ ip community-list expanded c46 permit 62 ^65000:3_0:105_0:59$ ip community-list expanded c46 permit 63 ^65000:3_0:106_0:60$ ip community-list expanded c46 permit 64 ^65000:3_0:107_0:61$ ip community-list expanded c46 permit 65 ^65000:3_0:108_0:62$ ip community-list expanded c46 permit 66 ^65000:3_0:109_0:63$ ip community-list expanded c46 permit 67 ^65000:3_0:110_0:64$ ip community-list expanded c46 permit 68 ^65000:3_0:111_0:65$ ip community-list expanded c46 permit 69 ^65000:3_0:112_0:66$ ip community-list expanded c46 permit 70 ^65000:3_0:113_0:67$ ip community-list expanded c46 permit 71 ^65000:3_0:114_0:68$ ip community-list expanded c46 permit 72 ^65000:3_0:115_0:69$ ip community-list expanded c46 permit 73 ^65000:3_0:116_0:70$ ip community-list expanded c46 permit 74 ^65000:3_0:117_0:71$ ip community-list expanded c46 permit 75 ^65000:3_0:118_0:72$ ip community-list expanded c46 permit 76 ^65000:3_0:119_0:73$ ip community-list expanded c46 permit 77 ^65000:3_0:120_0:74$ ip community-list expanded c46 permit 78 ^65000:3_0:121_0:75$ ip community-list expanded c46 permit 79 ^65000:3_0:122_0:76$ ip community-list expanded c46 permit 80 ^65000:3_0:123_0:77$ ip community-list expanded c46 permit 81 ^65000:3_0:124_0:78$ ip community-list expanded c46 permit 82 ^65000:3_0:125_0:79$ ip community-list expanded c46 permit 83 ^65000:3_0:126_0:80$ ip community-list expanded c46 permit 84 ^65000:3_0:127_0:81$ ip community-list expanded c46 permit 85 ^65000:3_0:128_0:82$ ip community-list expanded c46 permit 86 ^65000:3_0:129_0:83$ ip community-list expanded c46 permit 87 ^65000:3_0:130_0:84$ ip community-list expanded c46 permit 88 ^65000:3_0:131_0:85$ ip community-list expanded c46 permit 89 ^65000:3_0:132_0:86$ ip community-list expanded c46 permit 90 ^65000:3_0:133_0:87$ ip community-list expanded c46 permit 91 ^65000:3_0:134_0:88$ ip community-list expanded c46 permit 92 ^65000:3_0:135_0:89$ ip community-list expanded c46 permit 93 ^65000:3_0:136_0:90$ ip community-list expanded c46 permit 94 ^65000:3_0:137_0:91$ ip community-list expanded c46 permit 95 ^65000:4_0:138_0:3$ ip community-list expanded c46 permit 96 ^65000:3_0:138_0:92$ ip community-list expanded c46 permit 97 ^65000:4_0:139_0:3$ ip community-list expanded c46 permit 98 ^65000:3_0:139_0:93$ ip community-list expanded c46 permit 99 ^65000:4_0:140_0:3$ ip community-list expanded c46 permit 100 ^65000:3_0:140_0:94$ ip community-list expanded c46 permit 101 ^65000:3_0:141_0:95$ ip community-list expanded c46 permit 102 ^65000:3_0:142_0:96$ ip community-list expanded c46 permit 103 ^65000:3_0:143_0:97$ ip community-list expanded c46 permit 104 ^65000:3_0:144_0:98$ ip community-list expanded c46 permit 105 ^65000:3_0:145_0:99$ ip community-list expanded c46 permit 106 ^65000:3_0:146_0:100$ ip community-list expanded c46 permit 107 ^65000:3_0:147_0:101$ ip community-list expanded c46 permit 108 ^65000:3_0:148_0:102$ ip community-list expanded c46 permit 109 ^65000:3_0:149_0:103$ ip community-list expanded c46 permit 110 ^65000:3_0:150_0:104$ ip community-list expanded c46 permit 111 ^65000:3_0:151_0:105$ ip community-list expanded c46 permit 112 ^65000:3_0:152_0:106$ ip community-list expanded c46 permit 113 ^65000:3_0:153_0:107$ ip community-list expanded c46 permit 114 ^65000:3_0:154_0:108$ ip community-list expanded c46 permit 115 ^65000:3_0:155_0:109$ ip community-list expanded c46 permit 116 ^65000:3_0:156_0:110$ ip community-list expanded c46 permit 117 ^65000:3_0:157_0:111$ ip community-list expanded c46 permit 118 ^65000:3_0:158_0:112$ ip community-list expanded c46 permit 119 ^65000:3_0:159_0:113$ ip community-list expanded c46 permit 120 ^65000:3_0:160_0:114$ ip community-list expanded c46 permit 121 ^65000:3_0:161_0:115$ ip community-list expanded c46 permit 122 ^65000:3_0:162_0:116$ ip community-list expanded c46 permit 123 ^65000:3_0:163_0:117$ ip community-list expanded c46 permit 124 ^65000:3_0:164_0:118$ ip community-list expanded c46 permit 125 ^65000:3_0:165_0:119$ ip community-list expanded c46 permit 126 ^65000:3_0:166_0:120$ ip community-list expanded c46 permit 127 ^65000:3_0:167_0:121$ ip community-list expanded c46 permit 128 ^65000:3_0:168_0:122$ ip community-list expanded c46 permit 129 ^65000:3_0:169_0:123$ ip community-list expanded c46 permit 130 ^65000:3_0:170_0:124$ ip community-list expanded c46 permit 131 ^65000:3_0:171_0:125$ ip community-list expanded c46 permit 132 ^65000:3_0:172_0:126$ ip community-list expanded c46 permit 133 ^65000:3_0:173_0:127$ ip community-list expanded c46 permit 134 ^65000:3_0:174_0:128$ ip community-list expanded c46 permit 135 ^65000:3_0:175_0:129$ ip community-list expanded c46 permit 136 ^65000:3_0:176_0:130$ ip community-list expanded c46 permit 137 ^65000:3_0:177_0:131$ ip community-list expanded c46 permit 138 ^65000:3_0:178_0:132$ ip community-list expanded c46 permit 139 ^65000:3_0:179_0:133$ ip community-list expanded c46 permit 140 ^65000:3_0:180_0:134$ ip community-list expanded c46 permit 141 ^65000:3_0:181_0:135$ ip community-list expanded c46 permit 142 ^65000:3_0:182_0:136$ ip community-list expanded c46 permit 143 ^65000:3_0:183_0:137$ ip community-list expanded c46 permit 144 ^65000:4_0:184_0:4$ ip community-list expanded c46 permit 145 ^65000:3_0:184_0:138$ ip community-list expanded c46 permit 146 ^65000:4_0:185_0:4$ ip community-list expanded c46 permit 147 ^65000:3_0:185_0:139$ ip community-list expanded c46 permit 148 ^65000:4_0:186_0:4$ ip community-list expanded c46 permit 149 ^65000:3_0:186_0:140$ ip community-list expanded c46 permit 150 ^65000:4_0:187_0:4$ ip community-list expanded c46 permit 151 ^65000:3_0:187_0:141$ ip community-list expanded c46 permit 152 ^65000:3_0:188_0:142$ ip community-list expanded c46 permit 153 ^65000:3_0:189_0:143$ ip community-list expanded c46 permit 154 ^65000:3_0:190_0:144$ ip community-list expanded c46 permit 155 ^65000:3_0:191_0:145$ ip community-list expanded c46 permit 156 ^65000:3_0:192_0:146$ ip community-list expanded c46 permit 157 ^65000:3_0:193_0:147$ ip community-list expanded c46 permit 158 ^65000:3_0:194_0:148$ ip community-list expanded c46 permit 159 ^65000:3_0:195_0:149$ ip community-list expanded c46 permit 160 ^65000:3_0:196_0:150$ ip community-list expanded c46 permit 161 ^65000:3_0:197_0:151$ ip community-list expanded c46 permit 162 ^65000:3_0:198_0:152$ ip community-list expanded c46 permit 163 ^65000:3_0:199_0:153$ ip community-list expanded c46 permit 164 ^65000:3_0:200_0:154$ ip community-list expanded c46 permit 165 ^65000:3_0:201_0:155$ ip community-list expanded c46 permit 166 ^65000:3_0:202_0:156$ ip community-list expanded c46 permit 167 ^65000:3_0:203_0:157$ ip community-list expanded c46 permit 168 ^65000:3_0:204_0:158$ ip community-list expanded c46 permit 169 ^65000:3_0:205_0:159$ ip community-list expanded c46 permit 170 ^65000:3_0:206_0:160$ ip community-list expanded c46 permit 171 ^65000:3_0:207_0:161$ ip community-list expanded c46 permit 172 ^65000:3_0:208_0:162$ ip community-list expanded c46 permit 173 ^65000:3_0:209_0:163$ ip community-list expanded c46 permit 174 ^65000:3_0:210_0:164$ ip community-list expanded c46 permit 175 ^65000:3_0:211_0:165$ ip community-list expanded c46 permit 176 ^65000:3_0:212_0:166$ ip community-list expanded c46 permit 177 ^65000:3_0:213_0:167$ ip community-list expanded c46 permit 178 ^65000:3_0:214_0:168$ ip community-list expanded c46 permit 179 ^65000:3_0:215_0:169$ ip community-list expanded c46 permit 180 ^65000:3_0:216_0:170$ ip community-list expanded c46 permit 181 ^65000:3_0:217_0:171$ ip community-list expanded c46 permit 182 ^65000:3_0:218_0:172$ ip community-list expanded c46 permit 183 ^65000:3_0:219_0:173$ ip community-list expanded c46 permit 184 ^65000:3_0:220_0:174$ ip community-list expanded c46 permit 185 ^65000:3_0:221_0:175$ ip community-list expanded c46 permit 186 ^65000:3_0:222_0:176$ ip community-list expanded c46 permit 187 ^65000:3_0:223_0:177$ ip community-list expanded c46 permit 188 ^65000:3_0:224_0:178$ ip community-list expanded c46 permit 189 ^65000:3_0:225_0:179$ ip community-list expanded c46 permit 190 ^65000:3_0:226_0:180$ ip community-list expanded c46 permit 191 ^65000:3_0:227_0:181$ ip community-list expanded c46 permit 192 ^65000:3_0:228_0:182$ ip community-list expanded c46 permit 193 ^65000:3_0:229_0:183$ ip community-list expanded c46 permit 194 ^65000:4_0:230_0:5$ ip community-list expanded c46 permit 195 ^65000:3_0:230_0:184$ ip community-list expanded c46 permit 196 ^65000:4_0:231_0:5$ ip community-list expanded c46 permit 197 ^65000:3_0:231_0:185$ ip community-list expanded c46 permit 198 ^65000:4_0:232_0:5$ ip community-list expanded c46 permit 199 ^65000:3_0:232_0:186$ ip community-list expanded c46 permit 200 ^65000:4_0:233_0:5$ ip community-list expanded c46 permit 201 ^65000:3_0:233_0:187$ ip community-list expanded c46 permit 202 ^65000:4_0:234_0:5$ ip community-list expanded c46 permit 203 ^65000:3_0:234_0:188$ ip community-list expanded c46 permit 204 ^65000:3_0:235_0:189$ ip community-list expanded c46 permit 205 ^65000:3_0:236_0:190$ ip community-list expanded c46 permit 206 ^65000:3_0:237_0:191$ ip community-list expanded c46 permit 207 ^65000:3_0:238_0:192$ ip community-list expanded c46 permit 208 ^65000:3_0:239_0:193$ ip community-list expanded c46 permit 209 ^65000:3_0:240_0:194$ ip community-list expanded c46 permit 210 ^65000:3_0:241_0:195$ ip community-list expanded c46 permit 211 ^65000:3_0:242_0:196$ ip community-list expanded c46 permit 212 ^65000:3_0:243_0:197$ ip community-list expanded c46 permit 213 ^65000:3_0:244_0:198$ ip community-list expanded c46 permit 214 ^65000:3_0:245_0:199$ ip community-list expanded c46 permit 215 ^65000:3_0:246_0:200$ ip community-list expanded c46 permit 216 ^65000:3_0:247_0:201$ ip community-list expanded c46 permit 217 ^65000:3_0:248_0:202$ ip community-list expanded c46 permit 218 ^65000:3_0:249_0:203$ ip community-list expanded c46 permit 219 ^65000:3_0:250_0:204$ ip community-list expanded c46 permit 220 ^65000:3_0:251_0:205$ ip community-list expanded c46 permit 221 ^65000:3_0:252_0:206$ ip community-list expanded c46 permit 222 ^65000:3_0:253_0:207$ ip community-list expanded c46 permit 223 ^65000:3_0:254_0:208$ ip community-list expanded c46 permit 224 ^65000:3_0:255_0:209$ ip community-list expanded c46 permit 225 ^65000:3_0:256_0:210$ route-map calculator permit 9780 match community 1_1_45 2_1_46 2_2_23 1_2_44 1_3_43 set community 0:46 route-map calculator permit 9781 match community 1_4_42 1_5_41 1_6_40 1_7_39 1_8_38 set community 0:46 route-map calculator permit 9782 match community 1_9_37 1_10_36 1_11_35 1_12_34 1_13_33 set community 0:46 route-map calculator permit 9783 match community 1_14_32 1_15_31 1_16_30 1_17_29 1_18_28 set community 0:46 route-map calculator permit 9784 match community 1_19_27 1_20_26 1_21_25 1_22_24 1_23_23 set community 0:46 route-map calculator permit 9785 match community c4_46_1 c3_47_1 c3_48_2 c3_49_3 c3_50_4 set community 0:46 route-map calculator permit 9786 match community c3_51_5 c3_52_6 c3_53_7 c3_54_8 c3_55_9 set community 0:46 route-map calculator permit 9787 match community c3_56_10 c3_57_11 c3_58_12 c3_59_13 c3_60_14 set community 0:46 route-map calculator permit 9788 match community c3_61_15 c3_62_16 c3_63_17 c3_64_18 c3_65_19 set community 0:46 route-map calculator permit 9789 match community c3_66_20 c3_67_21 c3_68_22 c3_69_23 c3_70_24 set community 0:46 route-map calculator permit 9790 match community c3_71_25 c3_72_26 c3_73_27 c3_74_28 c3_75_29 set community 0:46 route-map calculator permit 9791 match community c3_76_30 c3_77_31 c3_78_32 c3_79_33 c3_80_34 set community 0:46 route-map calculator permit 9792 match community c3_81_35 c3_82_36 c3_83_37 c3_84_38 c3_85_39 set community 0:46 route-map calculator permit 9793 match community c3_86_40 c3_87_41 c3_88_42 c3_89_43 c3_90_44 set community 0:46 route-map calculator permit 9794 match community c3_91_45 c4_92_2 c3_92_46 c4_93_2 c3_93_47 set community 0:46 route-map calculator permit 9795 match community c3_94_48 c3_95_49 c3_96_50 c3_97_51 c3_98_52 set community 0:46 route-map calculator permit 9796 match community c3_99_53 c3_100_54 c3_101_55 c3_102_56 c3_103_57 set community 0:46 route-map calculator permit 9797 match community c3_104_58 c3_105_59 c3_106_60 c3_107_61 c3_108_62 set community 0:46 route-map calculator permit 9798 match community c3_109_63 c3_110_64 c3_111_65 c3_112_66 c3_113_67 set community 0:46 route-map calculator permit 9799 match community c3_114_68 c3_115_69 c3_116_70 c3_117_71 c3_118_72 set community 0:46 route-map calculator permit 9800 match community c3_119_73 c3_120_74 c3_121_75 c3_122_76 c3_123_77 set community 0:46 route-map calculator permit 9801 match community c3_124_78 c3_125_79 c3_126_80 c3_127_81 c3_128_82 set community 0:46 route-map calculator permit 9802 match community c3_129_83 c3_130_84 c3_131_85 c3_132_86 c3_133_87 set community 0:46 route-map calculator permit 9803 match community c3_134_88 c3_135_89 c3_136_90 c3_137_91 c4_138_3 set community 0:46 route-map calculator permit 9804 match community c3_138_92 c4_139_3 c3_139_93 c4_140_3 c3_140_94 set community 0:46 route-map calculator permit 9805 match community c3_141_95 c3_142_96 c3_143_97 c3_144_98 c3_145_99 set community 0:46 route-map calculator permit 9806 match community c3_146_100 c3_147_101 c3_148_102 c3_149_103 c3_150_104 set community 0:46 route-map calculator permit 9807 match community c3_151_105 c3_152_106 c3_153_107 c3_154_108 c3_155_109 set community 0:46 route-map calculator permit 9808 match community c3_156_110 c3_157_111 c3_158_112 c3_159_113 c3_160_114 set community 0:46 route-map calculator permit 9809 match community c3_161_115 c3_162_116 c3_163_117 c3_164_118 c3_165_119 set community 0:46 route-map calculator permit 9810 match community c3_166_120 c3_167_121 c3_168_122 c3_169_123 c3_170_124 set community 0:46 route-map calculator permit 9811 match community c3_171_125 c3_172_126 c3_173_127 c3_174_128 c3_175_129 set community 0:46 route-map calculator permit 9812 match community c3_176_130 c3_177_131 c3_178_132 c3_179_133 c3_180_134 set community 0:46 route-map calculator permit 9813 match community c3_181_135 c3_182_136 c3_183_137 c4_184_4 c3_184_138 set community 0:46 route-map calculator permit 9814 match community c4_185_4 c3_185_139 c4_186_4 c3_186_140 c4_187_4 set community 0:46 route-map calculator permit 9815 match community c3_187_141 c3_188_142 c3_189_143 c3_190_144 c3_191_145 set community 0:46 route-map calculator permit 9816 match community c3_192_146 c3_193_147 c3_194_148 c3_195_149 c3_196_150 set community 0:46 route-map calculator permit 9817 match community c3_197_151 c3_198_152 c3_199_153 c3_200_154 c3_201_155 set community 0:46 route-map calculator permit 9818 match community c3_202_156 c3_203_157 c3_204_158 c3_205_159 c3_206_160 set community 0:46 route-map calculator permit 9819 match community c3_207_161 c3_208_162 c3_209_163 c3_210_164 c3_211_165 set community 0:46 route-map calculator permit 9820 match community c3_212_166 c3_213_167 c3_214_168 c3_215_169 c3_216_170 set community 0:46 route-map calculator permit 9821 match community c3_217_171 c3_218_172 c3_219_173 c3_220_174 c3_221_175 set community 0:46 route-map calculator permit 9822 match community c3_222_176 c3_223_177 c3_224_178 c3_225_179 c3_226_180 set community 0:46 route-map calculator permit 9823 match community c3_227_181 c3_228_182 c3_229_183 c4_230_5 c3_230_184 set community 0:46 route-map calculator permit 9824 match community c4_231_5 c3_231_185 c4_232_5 c3_232_186 c4_233_5 set community 0:46 route-map calculator permit 9825 match community c3_233_187 c4_234_5 c3_234_188 c3_235_189 c3_236_190 set community 0:46 route-map calculator permit 9826 match community c3_237_191 c3_238_192 c3_239_193 c3_240_194 c3_241_195 set community 0:46 route-map calculator permit 9827 match community c3_242_196 c3_243_197 c3_244_198 c3_245_199 c3_246_200 set community 0:46 route-map calculator permit 9828 match community c3_247_201 c3_248_202 c3_249_203 c3_250_204 c3_251_205 set community 0:46 route-map calculator permit 9829 match community c3_252_206 c3_253_207 c3_254_208 c3_255_209 c3_256_210 set community 0:46 ip community-list standard 2_103_117 permit 65000:2 0:103 0:117 route-map calculator permit 9830 match community 2_103_117 set community 0:12051 ip community-list standard 2_91_249 permit 65000:2 0:91 0:249 route-map calculator permit 9831 match community 2_91_249 set community 0:22659 ip community-list standard 2_186_198 permit 65000:2 0:186 0:198 route-map calculator permit 9832 match community 2_186_198 set community 0:36828 ip community-list standard 2_104_253 permit 65000:2 0:104 0:253 ip community-list standard 2_143_184 permit 65000:2 0:143 0:184 route-map calculator permit 9833 match community 2_104_253 2_143_184 set community 0:26312 ip community-list standard 2_25_174 permit 65000:2 0:25 0:174 ip community-list standard 2_29_150 permit 65000:2 0:29 0:150 ip community-list standard 2_30_145 permit 65000:2 0:30 0:145 ip community-list standard 2_50_87 permit 65000:2 0:50 0:87 ip community-list standard 2_58_75 permit 65000:2 0:58 0:75 route-map calculator permit 9834 match community 2_25_174 2_29_150 2_30_145 2_50_87 2_58_75 set community 0:4350 ip community-list standard 2_199_206 permit 65000:2 0:199 0:206 route-map calculator permit 9835 match community 2_199_206 set community 0:40994 ip community-list standard 2_11_193 permit 65000:2 0:11 0:193 route-map calculator permit 9836 match community 2_11_193 set community 0:2123 ip community-list standard 2_132_169 permit 65000:2 0:132 0:169 ip community-list standard 2_143_156 permit 65000:2 0:143 0:156 route-map calculator permit 9837 match community 2_132_169 2_143_156 set community 0:22308 ip community-list standard 2_185_214 permit 65000:2 0:185 0:214 route-map calculator permit 9838 match community 2_185_214 set community 0:39590 ip community-list standard 2_94_196 permit 65000:2 0:94 0:196 ip community-list standard 2_98_188 permit 65000:2 0:98 0:188 route-map calculator permit 9839 match community 2_94_196 2_98_188 set community 0:18424 ip community-list standard 2_111_149 permit 65000:2 0:111 0:149 route-map calculator permit 9840 match community 2_111_149 set community 0:16539 ip community-list standard 2_20_254 permit 65000:2 0:20 0:254 ip community-list standard 2_40_127 permit 65000:2 0:40 0:127 route-map calculator permit 9841 match community 2_20_254 2_40_127 set community 0:5080 ip community-list standard 2_3_105 permit 65000:2 0:3 0:105 ip community-list standard 2_5_63 permit 65000:2 0:5 0:63 ip community-list standard 2_7_45 permit 65000:2 0:7 0:45 ip community-list standard 2_9_35 permit 65000:2 0:9 0:35 ip community-list standard 2_15_21 permit 65000:2 0:15 0:21 ip community-list standard 1_59_256 permit 65000:1 0:59 0:256 ip community-list standard 1_60_255 permit 65000:1 0:60 0:255 ip community-list standard 1_61_254 permit 65000:1 0:61 0:254 ip community-list standard 1_62_253 permit 65000:1 0:62 0:253 ip community-list standard 1_63_252 permit 65000:1 0:63 0:252 ip community-list standard 1_64_251 permit 65000:1 0:64 0:251 ip community-list standard 1_65_250 permit 65000:1 0:65 0:250 ip community-list standard 1_66_249 permit 65000:1 0:66 0:249 ip community-list standard 1_67_248 permit 65000:1 0:67 0:248 ip community-list standard 1_68_247 permit 65000:1 0:68 0:247 ip community-list standard 1_69_246 permit 65000:1 0:69 0:246 ip community-list standard 1_70_245 permit 65000:1 0:70 0:245 ip community-list standard 1_71_244 permit 65000:1 0:71 0:244 ip community-list standard 1_72_243 permit 65000:1 0:72 0:243 ip community-list standard 1_73_242 permit 65000:1 0:73 0:242 ip community-list standard 1_74_241 permit 65000:1 0:74 0:241 ip community-list standard 1_75_240 permit 65000:1 0:75 0:240 ip community-list standard 1_76_239 permit 65000:1 0:76 0:239 ip community-list standard 1_77_238 permit 65000:1 0:77 0:238 ip community-list standard 1_78_237 permit 65000:1 0:78 0:237 ip community-list standard 1_79_236 permit 65000:1 0:79 0:236 ip community-list standard 1_80_235 permit 65000:1 0:80 0:235 ip community-list standard 1_81_234 permit 65000:1 0:81 0:234 ip community-list standard 1_82_233 permit 65000:1 0:82 0:233 ip community-list standard 1_83_232 permit 65000:1 0:83 0:232 ip community-list standard 1_84_231 permit 65000:1 0:84 0:231 ip community-list standard 1_85_230 permit 65000:1 0:85 0:230 ip community-list standard 1_86_229 permit 65000:1 0:86 0:229 ip community-list standard 1_87_228 permit 65000:1 0:87 0:228 ip community-list standard 1_88_227 permit 65000:1 0:88 0:227 ip community-list standard 1_89_226 permit 65000:1 0:89 0:226 ip community-list standard 1_90_225 permit 65000:1 0:90 0:225 ip community-list standard 1_91_224 permit 65000:1 0:91 0:224 ip community-list standard 1_92_223 permit 65000:1 0:92 0:223 ip community-list standard 1_93_222 permit 65000:1 0:93 0:222 ip community-list standard 1_94_221 permit 65000:1 0:94 0:221 ip community-list standard 1_95_220 permit 65000:1 0:95 0:220 ip community-list standard 1_96_219 permit 65000:1 0:96 0:219 ip community-list standard 1_97_218 permit 65000:1 0:97 0:218 ip community-list standard 1_98_217 permit 65000:1 0:98 0:217 ip community-list standard 1_99_216 permit 65000:1 0:99 0:216 ip community-list standard 1_100_215 permit 65000:1 0:100 0:215 ip community-list standard 1_101_214 permit 65000:1 0:101 0:214 ip community-list standard 1_102_213 permit 65000:1 0:102 0:213 ip community-list standard 1_103_212 permit 65000:1 0:103 0:212 ip community-list standard 1_104_211 permit 65000:1 0:104 0:211 ip community-list standard 1_105_210 permit 65000:1 0:105 0:210 ip community-list standard 1_106_209 permit 65000:1 0:106 0:209 ip community-list standard 1_107_208 permit 65000:1 0:107 0:208 ip community-list standard 1_108_207 permit 65000:1 0:108 0:207 ip community-list standard 1_109_206 permit 65000:1 0:109 0:206 ip community-list standard 1_110_205 permit 65000:1 0:110 0:205 ip community-list standard 1_111_204 permit 65000:1 0:111 0:204 ip community-list standard 1_112_203 permit 65000:1 0:112 0:203 ip community-list standard 1_113_202 permit 65000:1 0:113 0:202 ip community-list standard 1_114_201 permit 65000:1 0:114 0:201 ip community-list standard 1_115_200 permit 65000:1 0:115 0:200 ip community-list standard 1_116_199 permit 65000:1 0:116 0:199 ip community-list standard 1_117_198 permit 65000:1 0:117 0:198 ip community-list standard 1_118_197 permit 65000:1 0:118 0:197 ip community-list standard 1_119_196 permit 65000:1 0:119 0:196 ip community-list standard 1_120_195 permit 65000:1 0:120 0:195 ip community-list standard 1_121_194 permit 65000:1 0:121 0:194 ip community-list standard 1_122_193 permit 65000:1 0:122 0:193 ip community-list standard 1_123_192 permit 65000:1 0:123 0:192 ip community-list standard 1_124_191 permit 65000:1 0:124 0:191 ip community-list standard 1_125_190 permit 65000:1 0:125 0:190 ip community-list standard 1_126_189 permit 65000:1 0:126 0:189 ip community-list standard 1_127_188 permit 65000:1 0:127 0:188 ip community-list standard 1_128_187 permit 65000:1 0:128 0:187 ip community-list standard 1_129_186 permit 65000:1 0:129 0:186 ip community-list standard 1_130_185 permit 65000:1 0:130 0:185 ip community-list standard 1_131_184 permit 65000:1 0:131 0:184 ip community-list standard 1_132_183 permit 65000:1 0:132 0:183 ip community-list standard 1_133_182 permit 65000:1 0:133 0:182 ip community-list standard 1_134_181 permit 65000:1 0:134 0:181 ip community-list standard 1_135_180 permit 65000:1 0:135 0:180 ip community-list standard 1_136_179 permit 65000:1 0:136 0:179 ip community-list standard 1_137_178 permit 65000:1 0:137 0:178 ip community-list standard 1_138_177 permit 65000:1 0:138 0:177 ip community-list standard 1_139_176 permit 65000:1 0:139 0:176 ip community-list standard 1_140_175 permit 65000:1 0:140 0:175 ip community-list standard 1_141_174 permit 65000:1 0:141 0:174 ip community-list standard 1_142_173 permit 65000:1 0:142 0:173 ip community-list standard 1_143_172 permit 65000:1 0:143 0:172 ip community-list standard 1_144_171 permit 65000:1 0:144 0:171 ip community-list standard 1_145_170 permit 65000:1 0:145 0:170 ip community-list standard 1_146_169 permit 65000:1 0:146 0:169 ip community-list standard 1_147_168 permit 65000:1 0:147 0:168 ip community-list standard 1_148_167 permit 65000:1 0:148 0:167 ip community-list standard 1_149_166 permit 65000:1 0:149 0:166 ip community-list standard 1_150_165 permit 65000:1 0:150 0:165 ip community-list standard 1_151_164 permit 65000:1 0:151 0:164 ip community-list standard 1_152_163 permit 65000:1 0:152 0:163 ip community-list standard 1_153_162 permit 65000:1 0:153 0:162 ip community-list standard 1_154_161 permit 65000:1 0:154 0:161 ip community-list standard 1_155_160 permit 65000:1 0:155 0:160 ip community-list standard 1_156_159 permit 65000:1 0:156 0:159 ip community-list standard 1_157_158 permit 65000:1 0:157 0:158 route-map calculator permit 9842 match community 2_3_105 2_5_63 2_7_45 2_9_35 2_15_21 set community 0:315 route-map calculator permit 9843 match community 1_59_256 1_60_255 1_61_254 1_62_253 1_63_252 set community 0:315 route-map calculator permit 9844 match community 1_64_251 1_65_250 1_66_249 1_67_248 1_68_247 set community 0:315 route-map calculator permit 9845 match community 1_69_246 1_70_245 1_71_244 1_72_243 1_73_242 set community 0:315 route-map calculator permit 9846 match community 1_74_241 1_75_240 1_76_239 1_77_238 1_78_237 set community 0:315 route-map calculator permit 9847 match community 1_79_236 1_80_235 1_81_234 1_82_233 1_83_232 set community 0:315 route-map calculator permit 9848 match community 1_84_231 1_85_230 1_86_229 1_87_228 1_88_227 set community 0:315 route-map calculator permit 9849 match community 1_89_226 1_90_225 1_91_224 1_92_223 1_93_222 set community 0:315 route-map calculator permit 9850 match community 1_94_221 1_95_220 1_96_219 1_97_218 1_98_217 set community 0:315 route-map calculator permit 9851 match community 1_99_216 1_100_215 1_101_214 1_102_213 1_103_212 set community 0:315 route-map calculator permit 9852 match community 1_104_211 1_105_210 1_106_209 1_107_208 1_108_207 set community 0:315 route-map calculator permit 9853 match community 1_109_206 1_110_205 1_111_204 1_112_203 1_113_202 set community 0:315 route-map calculator permit 9854 match community 1_114_201 1_115_200 1_116_199 1_117_198 1_118_197 set community 0:315 route-map calculator permit 9855 match community 1_119_196 1_120_195 1_121_194 1_122_193 1_123_192 set community 0:315 route-map calculator permit 9856 match community 1_124_191 1_125_190 1_126_189 1_127_188 1_128_187 set community 0:315 route-map calculator permit 9857 match community 1_129_186 1_130_185 1_131_184 1_132_183 1_133_182 set community 0:315 route-map calculator permit 9858 match community 1_134_181 1_135_180 1_136_179 1_137_178 1_138_177 set community 0:315 route-map calculator permit 9859 match community 1_139_176 1_140_175 1_141_174 1_142_173 1_143_172 set community 0:315 route-map calculator permit 9860 match community 1_144_171 1_145_170 1_146_169 1_147_168 1_148_167 set community 0:315 route-map calculator permit 9861 match community 1_149_166 1_150_165 1_151_164 1_152_163 1_153_162 set community 0:315 route-map calculator permit 9862 match community 1_154_161 1_155_160 1_156_159 1_157_158 set community 0:315 ip community-list standard 2_9_239 permit 65000:2 0:9 0:239 route-map calculator permit 9863 match community 2_9_239 set community 0:2151 ip community-list standard 2_7_157 permit 65000:2 0:7 0:157 route-map calculator permit 9864 match community 2_7_157 set community 0:1099 ip community-list standard 1_1_39 permit 65000:1 0:1 0:39 ip community-list standard 2_1_40 permit 65000:2 0:1 0:40 ip community-list standard 2_2_20 permit 65000:2 0:2 0:20 ip community-list standard 1_2_38 permit 65000:1 0:2 0:38 ip community-list standard 1_3_37 permit 65000:1 0:3 0:37 ip community-list standard 2_4_10 permit 65000:2 0:4 0:10 ip community-list standard 1_4_36 permit 65000:1 0:4 0:36 ip community-list standard 2_5_8 permit 65000:2 0:5 0:8 ip community-list standard 1_5_35 permit 65000:1 0:5 0:35 ip community-list standard 1_6_34 permit 65000:1 0:6 0:34 ip community-list standard 1_7_33 permit 65000:1 0:7 0:33 ip community-list standard 1_8_32 permit 65000:1 0:8 0:32 ip community-list standard 1_9_31 permit 65000:1 0:9 0:31 ip community-list standard 1_10_30 permit 65000:1 0:10 0:30 ip community-list standard 1_11_29 permit 65000:1 0:11 0:29 ip community-list standard 1_12_28 permit 65000:1 0:12 0:28 ip community-list standard 1_13_27 permit 65000:1 0:13 0:27 ip community-list standard 1_14_26 permit 65000:1 0:14 0:26 ip community-list standard 1_15_25 permit 65000:1 0:15 0:25 ip community-list standard 1_16_24 permit 65000:1 0:16 0:24 ip community-list standard 1_17_23 permit 65000:1 0:17 0:23 ip community-list standard 1_18_22 permit 65000:1 0:18 0:22 ip community-list standard 1_19_21 permit 65000:1 0:19 0:21 ip community-list standard 1_20_20 permit 65000:1 0:20 0:20 ip community-list expanded c40 permit 1 ^65000:4_0:40_0:1$ ip community-list expanded c40 permit 2 ^65000:3_0:41_0:1$ ip community-list expanded c40 permit 3 ^65000:3_0:42_0:2$ ip community-list expanded c40 permit 4 ^65000:3_0:43_0:3$ ip community-list expanded c40 permit 5 ^65000:3_0:44_0:4$ ip community-list expanded c40 permit 6 ^65000:3_0:45_0:5$ ip community-list expanded c40 permit 7 ^65000:3_0:46_0:6$ ip community-list expanded c40 permit 8 ^65000:3_0:47_0:7$ ip community-list expanded c40 permit 9 ^65000:3_0:48_0:8$ ip community-list expanded c40 permit 10 ^65000:3_0:49_0:9$ ip community-list expanded c40 permit 11 ^65000:3_0:50_0:10$ ip community-list expanded c40 permit 12 ^65000:3_0:51_0:11$ ip community-list expanded c40 permit 13 ^65000:3_0:52_0:12$ ip community-list expanded c40 permit 14 ^65000:3_0:53_0:13$ ip community-list expanded c40 permit 15 ^65000:3_0:54_0:14$ ip community-list expanded c40 permit 16 ^65000:3_0:55_0:15$ ip community-list expanded c40 permit 17 ^65000:3_0:56_0:16$ ip community-list expanded c40 permit 18 ^65000:3_0:57_0:17$ ip community-list expanded c40 permit 19 ^65000:3_0:58_0:18$ ip community-list expanded c40 permit 20 ^65000:3_0:59_0:19$ ip community-list expanded c40 permit 21 ^65000:3_0:60_0:20$ ip community-list expanded c40 permit 22 ^65000:3_0:61_0:21$ ip community-list expanded c40 permit 23 ^65000:3_0:62_0:22$ ip community-list expanded c40 permit 24 ^65000:3_0:63_0:23$ ip community-list expanded c40 permit 25 ^65000:3_0:64_0:24$ ip community-list expanded c40 permit 26 ^65000:3_0:65_0:25$ ip community-list expanded c40 permit 27 ^65000:3_0:66_0:26$ ip community-list expanded c40 permit 28 ^65000:3_0:67_0:27$ ip community-list expanded c40 permit 29 ^65000:3_0:68_0:28$ ip community-list expanded c40 permit 30 ^65000:3_0:69_0:29$ ip community-list expanded c40 permit 31 ^65000:3_0:70_0:30$ ip community-list expanded c40 permit 32 ^65000:3_0:71_0:31$ ip community-list expanded c40 permit 33 ^65000:3_0:72_0:32$ ip community-list expanded c40 permit 34 ^65000:3_0:73_0:33$ ip community-list expanded c40 permit 35 ^65000:3_0:74_0:34$ ip community-list expanded c40 permit 36 ^65000:3_0:75_0:35$ ip community-list expanded c40 permit 37 ^65000:3_0:76_0:36$ ip community-list expanded c40 permit 38 ^65000:3_0:77_0:37$ ip community-list expanded c40 permit 39 ^65000:3_0:78_0:38$ ip community-list expanded c40 permit 40 ^65000:3_0:79_0:39$ ip community-list expanded c40 permit 41 ^65000:4_0:80_0:2$ ip community-list expanded c40 permit 42 ^65000:3_0:80_0:40$ ip community-list expanded c40 permit 43 ^65000:4_0:81_0:2$ ip community-list expanded c40 permit 44 ^65000:3_0:81_0:41$ ip community-list expanded c40 permit 45 ^65000:3_0:82_0:42$ ip community-list expanded c40 permit 46 ^65000:3_0:83_0:43$ ip community-list expanded c40 permit 47 ^65000:3_0:84_0:44$ ip community-list expanded c40 permit 48 ^65000:3_0:85_0:45$ ip community-list expanded c40 permit 49 ^65000:3_0:86_0:46$ ip community-list expanded c40 permit 50 ^65000:3_0:87_0:47$ ip community-list expanded c40 permit 51 ^65000:3_0:88_0:48$ ip community-list expanded c40 permit 52 ^65000:3_0:89_0:49$ ip community-list expanded c40 permit 53 ^65000:3_0:90_0:50$ ip community-list expanded c40 permit 54 ^65000:3_0:91_0:51$ ip community-list expanded c40 permit 55 ^65000:3_0:92_0:52$ ip community-list expanded c40 permit 56 ^65000:3_0:93_0:53$ ip community-list expanded c40 permit 57 ^65000:3_0:94_0:54$ ip community-list expanded c40 permit 58 ^65000:3_0:95_0:55$ ip community-list expanded c40 permit 59 ^65000:3_0:96_0:56$ ip community-list expanded c40 permit 60 ^65000:3_0:97_0:57$ ip community-list expanded c40 permit 61 ^65000:3_0:98_0:58$ ip community-list expanded c40 permit 62 ^65000:3_0:99_0:59$ ip community-list expanded c40 permit 63 ^65000:3_0:100_0:60$ ip community-list expanded c40 permit 64 ^65000:3_0:101_0:61$ ip community-list expanded c40 permit 65 ^65000:3_0:102_0:62$ ip community-list expanded c40 permit 66 ^65000:3_0:103_0:63$ ip community-list expanded c40 permit 67 ^65000:3_0:104_0:64$ ip community-list expanded c40 permit 68 ^65000:3_0:105_0:65$ ip community-list expanded c40 permit 69 ^65000:3_0:106_0:66$ ip community-list expanded c40 permit 70 ^65000:3_0:107_0:67$ ip community-list expanded c40 permit 71 ^65000:3_0:108_0:68$ ip community-list expanded c40 permit 72 ^65000:3_0:109_0:69$ ip community-list expanded c40 permit 73 ^65000:3_0:110_0:70$ ip community-list expanded c40 permit 74 ^65000:3_0:111_0:71$ ip community-list expanded c40 permit 75 ^65000:3_0:112_0:72$ ip community-list expanded c40 permit 76 ^65000:3_0:113_0:73$ ip community-list expanded c40 permit 77 ^65000:3_0:114_0:74$ ip community-list expanded c40 permit 78 ^65000:3_0:115_0:75$ ip community-list expanded c40 permit 79 ^65000:3_0:116_0:76$ ip community-list expanded c40 permit 80 ^65000:3_0:117_0:77$ ip community-list expanded c40 permit 81 ^65000:3_0:118_0:78$ ip community-list expanded c40 permit 82 ^65000:3_0:119_0:79$ ip community-list expanded c40 permit 83 ^65000:4_0:120_0:3$ ip community-list expanded c40 permit 84 ^65000:3_0:120_0:80$ ip community-list expanded c40 permit 85 ^65000:4_0:121_0:3$ ip community-list expanded c40 permit 86 ^65000:3_0:121_0:81$ ip community-list expanded c40 permit 87 ^65000:4_0:122_0:3$ ip community-list expanded c40 permit 88 ^65000:3_0:122_0:82$ ip community-list expanded c40 permit 89 ^65000:3_0:123_0:83$ ip community-list expanded c40 permit 90 ^65000:3_0:124_0:84$ ip community-list expanded c40 permit 91 ^65000:3_0:125_0:85$ ip community-list expanded c40 permit 92 ^65000:3_0:126_0:86$ ip community-list expanded c40 permit 93 ^65000:3_0:127_0:87$ ip community-list expanded c40 permit 94 ^65000:3_0:128_0:88$ ip community-list expanded c40 permit 95 ^65000:3_0:129_0:89$ ip community-list expanded c40 permit 96 ^65000:3_0:130_0:90$ ip community-list expanded c40 permit 97 ^65000:3_0:131_0:91$ ip community-list expanded c40 permit 98 ^65000:3_0:132_0:92$ ip community-list expanded c40 permit 99 ^65000:3_0:133_0:93$ ip community-list expanded c40 permit 100 ^65000:3_0:134_0:94$ ip community-list expanded c40 permit 101 ^65000:3_0:135_0:95$ ip community-list expanded c40 permit 102 ^65000:3_0:136_0:96$ ip community-list expanded c40 permit 103 ^65000:3_0:137_0:97$ ip community-list expanded c40 permit 104 ^65000:3_0:138_0:98$ ip community-list expanded c40 permit 105 ^65000:3_0:139_0:99$ ip community-list expanded c40 permit 106 ^65000:3_0:140_0:100$ ip community-list expanded c40 permit 107 ^65000:3_0:141_0:101$ ip community-list expanded c40 permit 108 ^65000:3_0:142_0:102$ ip community-list expanded c40 permit 109 ^65000:3_0:143_0:103$ ip community-list expanded c40 permit 110 ^65000:3_0:144_0:104$ ip community-list expanded c40 permit 111 ^65000:3_0:145_0:105$ ip community-list expanded c40 permit 112 ^65000:3_0:146_0:106$ ip community-list expanded c40 permit 113 ^65000:3_0:147_0:107$ ip community-list expanded c40 permit 114 ^65000:3_0:148_0:108$ ip community-list expanded c40 permit 115 ^65000:3_0:149_0:109$ ip community-list expanded c40 permit 116 ^65000:3_0:150_0:110$ ip community-list expanded c40 permit 117 ^65000:3_0:151_0:111$ ip community-list expanded c40 permit 118 ^65000:3_0:152_0:112$ ip community-list expanded c40 permit 119 ^65000:3_0:153_0:113$ ip community-list expanded c40 permit 120 ^65000:3_0:154_0:114$ ip community-list expanded c40 permit 121 ^65000:3_0:155_0:115$ ip community-list expanded c40 permit 122 ^65000:3_0:156_0:116$ ip community-list expanded c40 permit 123 ^65000:3_0:157_0:117$ ip community-list expanded c40 permit 124 ^65000:3_0:158_0:118$ ip community-list expanded c40 permit 125 ^65000:3_0:159_0:119$ ip community-list expanded c40 permit 126 ^65000:4_0:160_0:4$ ip community-list expanded c40 permit 127 ^65000:3_0:160_0:120$ ip community-list expanded c40 permit 128 ^65000:4_0:161_0:4$ ip community-list expanded c40 permit 129 ^65000:3_0:161_0:121$ ip community-list expanded c40 permit 130 ^65000:4_0:162_0:4$ ip community-list expanded c40 permit 131 ^65000:3_0:162_0:122$ ip community-list expanded c40 permit 132 ^65000:4_0:163_0:4$ ip community-list expanded c40 permit 133 ^65000:3_0:163_0:123$ ip community-list expanded c40 permit 134 ^65000:3_0:164_0:124$ ip community-list expanded c40 permit 135 ^65000:3_0:165_0:125$ ip community-list expanded c40 permit 136 ^65000:3_0:166_0:126$ ip community-list expanded c40 permit 137 ^65000:3_0:167_0:127$ ip community-list expanded c40 permit 138 ^65000:3_0:168_0:128$ ip community-list expanded c40 permit 139 ^65000:3_0:169_0:129$ ip community-list expanded c40 permit 140 ^65000:3_0:170_0:130$ ip community-list expanded c40 permit 141 ^65000:3_0:171_0:131$ ip community-list expanded c40 permit 142 ^65000:3_0:172_0:132$ ip community-list expanded c40 permit 143 ^65000:3_0:173_0:133$ ip community-list expanded c40 permit 144 ^65000:3_0:174_0:134$ ip community-list expanded c40 permit 145 ^65000:3_0:175_0:135$ ip community-list expanded c40 permit 146 ^65000:3_0:176_0:136$ ip community-list expanded c40 permit 147 ^65000:3_0:177_0:137$ ip community-list expanded c40 permit 148 ^65000:3_0:178_0:138$ ip community-list expanded c40 permit 149 ^65000:3_0:179_0:139$ ip community-list expanded c40 permit 150 ^65000:3_0:180_0:140$ ip community-list expanded c40 permit 151 ^65000:3_0:181_0:141$ ip community-list expanded c40 permit 152 ^65000:3_0:182_0:142$ ip community-list expanded c40 permit 153 ^65000:3_0:183_0:143$ ip community-list expanded c40 permit 154 ^65000:3_0:184_0:144$ ip community-list expanded c40 permit 155 ^65000:3_0:185_0:145$ ip community-list expanded c40 permit 156 ^65000:3_0:186_0:146$ ip community-list expanded c40 permit 157 ^65000:3_0:187_0:147$ ip community-list expanded c40 permit 158 ^65000:3_0:188_0:148$ ip community-list expanded c40 permit 159 ^65000:3_0:189_0:149$ ip community-list expanded c40 permit 160 ^65000:3_0:190_0:150$ ip community-list expanded c40 permit 161 ^65000:3_0:191_0:151$ ip community-list expanded c40 permit 162 ^65000:3_0:192_0:152$ ip community-list expanded c40 permit 163 ^65000:3_0:193_0:153$ ip community-list expanded c40 permit 164 ^65000:3_0:194_0:154$ ip community-list expanded c40 permit 165 ^65000:3_0:195_0:155$ ip community-list expanded c40 permit 166 ^65000:3_0:196_0:156$ ip community-list expanded c40 permit 167 ^65000:3_0:197_0:157$ ip community-list expanded c40 permit 168 ^65000:3_0:198_0:158$ ip community-list expanded c40 permit 169 ^65000:3_0:199_0:159$ ip community-list expanded c40 permit 170 ^65000:4_0:200_0:5$ ip community-list expanded c40 permit 171 ^65000:3_0:200_0:160$ ip community-list expanded c40 permit 172 ^65000:4_0:201_0:5$ ip community-list expanded c40 permit 173 ^65000:3_0:201_0:161$ ip community-list expanded c40 permit 174 ^65000:4_0:202_0:5$ ip community-list expanded c40 permit 175 ^65000:3_0:202_0:162$ ip community-list expanded c40 permit 176 ^65000:4_0:203_0:5$ ip community-list expanded c40 permit 177 ^65000:3_0:203_0:163$ ip community-list expanded c40 permit 178 ^65000:4_0:204_0:5$ ip community-list expanded c40 permit 179 ^65000:3_0:204_0:164$ ip community-list expanded c40 permit 180 ^65000:3_0:205_0:165$ ip community-list expanded c40 permit 181 ^65000:3_0:206_0:166$ ip community-list expanded c40 permit 182 ^65000:3_0:207_0:167$ ip community-list expanded c40 permit 183 ^65000:3_0:208_0:168$ ip community-list expanded c40 permit 184 ^65000:3_0:209_0:169$ ip community-list expanded c40 permit 185 ^65000:3_0:210_0:170$ ip community-list expanded c40 permit 186 ^65000:3_0:211_0:171$ ip community-list expanded c40 permit 187 ^65000:3_0:212_0:172$ ip community-list expanded c40 permit 188 ^65000:3_0:213_0:173$ ip community-list expanded c40 permit 189 ^65000:3_0:214_0:174$ ip community-list expanded c40 permit 190 ^65000:3_0:215_0:175$ ip community-list expanded c40 permit 191 ^65000:3_0:216_0:176$ ip community-list expanded c40 permit 192 ^65000:3_0:217_0:177$ ip community-list expanded c40 permit 193 ^65000:3_0:218_0:178$ ip community-list expanded c40 permit 194 ^65000:3_0:219_0:179$ ip community-list expanded c40 permit 195 ^65000:3_0:220_0:180$ ip community-list expanded c40 permit 196 ^65000:3_0:221_0:181$ ip community-list expanded c40 permit 197 ^65000:3_0:222_0:182$ ip community-list expanded c40 permit 198 ^65000:3_0:223_0:183$ ip community-list expanded c40 permit 199 ^65000:3_0:224_0:184$ ip community-list expanded c40 permit 200 ^65000:3_0:225_0:185$ ip community-list expanded c40 permit 201 ^65000:3_0:226_0:186$ ip community-list expanded c40 permit 202 ^65000:3_0:227_0:187$ ip community-list expanded c40 permit 203 ^65000:3_0:228_0:188$ ip community-list expanded c40 permit 204 ^65000:3_0:229_0:189$ ip community-list expanded c40 permit 205 ^65000:3_0:230_0:190$ ip community-list expanded c40 permit 206 ^65000:3_0:231_0:191$ ip community-list expanded c40 permit 207 ^65000:3_0:232_0:192$ ip community-list expanded c40 permit 208 ^65000:3_0:233_0:193$ ip community-list expanded c40 permit 209 ^65000:3_0:234_0:194$ ip community-list expanded c40 permit 210 ^65000:3_0:235_0:195$ ip community-list expanded c40 permit 211 ^65000:3_0:236_0:196$ ip community-list expanded c40 permit 212 ^65000:3_0:237_0:197$ ip community-list expanded c40 permit 213 ^65000:3_0:238_0:198$ ip community-list expanded c40 permit 214 ^65000:3_0:239_0:199$ ip community-list expanded c40 permit 215 ^65000:4_0:240_0:6$ ip community-list expanded c40 permit 216 ^65000:3_0:240_0:200$ ip community-list expanded c40 permit 217 ^65000:4_0:241_0:6$ ip community-list expanded c40 permit 218 ^65000:3_0:241_0:201$ ip community-list expanded c40 permit 219 ^65000:4_0:242_0:6$ ip community-list expanded c40 permit 220 ^65000:3_0:242_0:202$ ip community-list expanded c40 permit 221 ^65000:4_0:243_0:6$ ip community-list expanded c40 permit 222 ^65000:3_0:243_0:203$ ip community-list expanded c40 permit 223 ^65000:4_0:244_0:6$ ip community-list expanded c40 permit 224 ^65000:3_0:244_0:204$ ip community-list expanded c40 permit 225 ^65000:4_0:245_0:6$ ip community-list expanded c40 permit 226 ^65000:3_0:245_0:205$ ip community-list expanded c40 permit 227 ^65000:3_0:246_0:206$ ip community-list expanded c40 permit 228 ^65000:3_0:247_0:207$ ip community-list expanded c40 permit 229 ^65000:3_0:248_0:208$ ip community-list expanded c40 permit 230 ^65000:3_0:249_0:209$ ip community-list expanded c40 permit 231 ^65000:3_0:250_0:210$ ip community-list expanded c40 permit 232 ^65000:3_0:251_0:211$ ip community-list expanded c40 permit 233 ^65000:3_0:252_0:212$ ip community-list expanded c40 permit 234 ^65000:3_0:253_0:213$ ip community-list expanded c40 permit 235 ^65000:3_0:254_0:214$ ip community-list expanded c40 permit 236 ^65000:3_0:255_0:215$ ip community-list expanded c40 permit 237 ^65000:3_0:256_0:216$ route-map calculator permit 9865 match community 1_1_39 2_1_40 2_2_20 1_2_38 1_3_37 set community 0:40 route-map calculator permit 9866 match community 2_4_10 1_4_36 2_5_8 1_5_35 1_6_34 set community 0:40 route-map calculator permit 9867 match community 1_7_33 1_8_32 1_9_31 1_10_30 1_11_29 set community 0:40 route-map calculator permit 9868 match community 1_12_28 1_13_27 1_14_26 1_15_25 1_16_24 set community 0:40 route-map calculator permit 9869 match community 1_17_23 1_18_22 1_19_21 1_20_20 c4_40_1 set community 0:40 route-map calculator permit 9870 match community c3_41_1 c3_42_2 c3_43_3 c3_44_4 c3_45_5 set community 0:40 route-map calculator permit 9871 match community c3_46_6 c3_47_7 c3_48_8 c3_49_9 c3_50_10 set community 0:40 route-map calculator permit 9872 match community c3_51_11 c3_52_12 c3_53_13 c3_54_14 c3_55_15 set community 0:40 route-map calculator permit 9873 match community c3_56_16 c3_57_17 c3_58_18 c3_59_19 c3_60_20 set community 0:40 route-map calculator permit 9874 match community c3_61_21 c3_62_22 c3_63_23 c3_64_24 c3_65_25 set community 0:40 route-map calculator permit 9875 match community c3_66_26 c3_67_27 c3_68_28 c3_69_29 c3_70_30 set community 0:40 route-map calculator permit 9876 match community c3_71_31 c3_72_32 c3_73_33 c3_74_34 c3_75_35 set community 0:40 route-map calculator permit 9877 match community c3_76_36 c3_77_37 c3_78_38 c3_79_39 c4_80_2 set community 0:40 route-map calculator permit 9878 match community c3_80_40 c4_81_2 c3_81_41 c3_82_42 c3_83_43 set community 0:40 route-map calculator permit 9879 match community c3_84_44 c3_85_45 c3_86_46 c3_87_47 c3_88_48 set community 0:40 route-map calculator permit 9880 match community c3_89_49 c3_90_50 c3_91_51 c3_92_52 c3_93_53 set community 0:40 route-map calculator permit 9881 match community c3_94_54 c3_95_55 c3_96_56 c3_97_57 c3_98_58 set community 0:40 route-map calculator permit 9882 match community c3_99_59 c3_100_60 c3_101_61 c3_102_62 c3_103_63 set community 0:40 route-map calculator permit 9883 match community c3_104_64 c3_105_65 c3_106_66 c3_107_67 c3_108_68 set community 0:40 route-map calculator permit 9884 match community c3_109_69 c3_110_70 c3_111_71 c3_112_72 c3_113_73 set community 0:40 route-map calculator permit 9885 match community c3_114_74 c3_115_75 c3_116_76 c3_117_77 c3_118_78 set community 0:40 route-map calculator permit 9886 match community c3_119_79 c4_120_3 c3_120_80 c4_121_3 c3_121_81 set community 0:40 route-map calculator permit 9887 match community c4_122_3 c3_122_82 c3_123_83 c3_124_84 c3_125_85 set community 0:40 route-map calculator permit 9888 match community c3_126_86 c3_127_87 c3_128_88 c3_129_89 c3_130_90 set community 0:40 route-map calculator permit 9889 match community c3_131_91 c3_132_92 c3_133_93 c3_134_94 c3_135_95 set community 0:40 route-map calculator permit 9890 match community c3_136_96 c3_137_97 c3_138_98 c3_139_99 c3_140_100 set community 0:40 route-map calculator permit 9891 match community c3_141_101 c3_142_102 c3_143_103 c3_144_104 c3_145_105 set community 0:40 route-map calculator permit 9892 match community c3_146_106 c3_147_107 c3_148_108 c3_149_109 c3_150_110 set community 0:40 route-map calculator permit 9893 match community c3_151_111 c3_152_112 c3_153_113 c3_154_114 c3_155_115 set community 0:40 route-map calculator permit 9894 match community c3_156_116 c3_157_117 c3_158_118 c3_159_119 c4_160_4 set community 0:40 route-map calculator permit 9895 match community c3_160_120 c4_161_4 c3_161_121 c4_162_4 c3_162_122 set community 0:40 route-map calculator permit 9896 match community c4_163_4 c3_163_123 c3_164_124 c3_165_125 c3_166_126 set community 0:40 route-map calculator permit 9897 match community c3_167_127 c3_168_128 c3_169_129 c3_170_130 c3_171_131 set community 0:40 route-map calculator permit 9898 match community c3_172_132 c3_173_133 c3_174_134 c3_175_135 c3_176_136 set community 0:40 route-map calculator permit 9899 match community c3_177_137 c3_178_138 c3_179_139 c3_180_140 c3_181_141 set community 0:40 route-map calculator permit 9900 match community c3_182_142 c3_183_143 c3_184_144 c3_185_145 c3_186_146 set community 0:40 route-map calculator permit 9901 match community c3_187_147 c3_188_148 c3_189_149 c3_190_150 c3_191_151 set community 0:40 route-map calculator permit 9902 match community c3_192_152 c3_193_153 c3_194_154 c3_195_155 c3_196_156 set community 0:40 route-map calculator permit 9903 match community c3_197_157 c3_198_158 c3_199_159 c4_200_5 c3_200_160 set community 0:40 route-map calculator permit 9904 match community c4_201_5 c3_201_161 c4_202_5 c3_202_162 c4_203_5 set community 0:40 route-map calculator permit 9905 match community c3_203_163 c4_204_5 c3_204_164 c3_205_165 c3_206_166 set community 0:40 route-map calculator permit 9906 match community c3_207_167 c3_208_168 c3_209_169 c3_210_170 c3_211_171 set community 0:40 route-map calculator permit 9907 match community c3_212_172 c3_213_173 c3_214_174 c3_215_175 c3_216_176 set community 0:40 route-map calculator permit 9908 match community c3_217_177 c3_218_178 c3_219_179 c3_220_180 c3_221_181 set community 0:40 route-map calculator permit 9909 match community c3_222_182 c3_223_183 c3_224_184 c3_225_185 c3_226_186 set community 0:40 route-map calculator permit 9910 match community c3_227_187 c3_228_188 c3_229_189 c3_230_190 c3_231_191 set community 0:40 route-map calculator permit 9911 match community c3_232_192 c3_233_193 c3_234_194 c3_235_195 c3_236_196 set community 0:40 route-map calculator permit 9912 match community c3_237_197 c3_238_198 c3_239_199 c4_240_6 c3_240_200 set community 0:40 route-map calculator permit 9913 match community c4_241_6 c3_241_201 c4_242_6 c3_242_202 c4_243_6 set community 0:40 route-map calculator permit 9914 match community c3_243_203 c4_244_6 c3_244_204 c4_245_6 c3_245_205 set community 0:40 route-map calculator permit 9915 match community c3_246_206 c3_247_207 c3_248_208 c3_249_209 c3_250_210 set community 0:40 route-map calculator permit 9916 match community c3_251_211 c3_252_212 c3_253_213 c3_254_214 c3_255_215 set community 0:40 route-map calculator permit 9917 match community c3_256_216 set community 0:40 ip community-list standard 2_107_117 permit 65000:2 0:107 0:117 route-map calculator permit 9918 match community 2_107_117 set community 0:12519 ip community-list standard 2_22_227 permit 65000:2 0:22 0:227 route-map calculator permit 9919 match community 2_22_227 set community 0:4994 ip community-list standard 2_50_166 permit 65000:2 0:50 0:166 ip community-list standard 2_83_100 permit 65000:2 0:83 0:100 route-map calculator permit 9920 match community 2_50_166 2_83_100 set community 0:8300 ip community-list standard 2_13_234 permit 65000:2 0:13 0:234 ip community-list standard 2_18_169 permit 65000:2 0:18 0:169 ip community-list standard 2_26_117 permit 65000:2 0:26 0:117 ip community-list standard 2_39_78 permit 65000:2 0:39 0:78 route-map calculator permit 9921 match community 2_13_234 2_18_169 2_26_117 2_39_78 set community 0:3042 ip community-list standard 2_103_179 permit 65000:2 0:103 0:179 route-map calculator permit 9922 match community 2_103_179 set community 0:18437 ip community-list standard 2_110_254 permit 65000:2 0:110 0:254 ip community-list standard 2_127_220 permit 65000:2 0:127 0:220 route-map calculator permit 9923 match community 2_110_254 2_127_220 set community 0:27940 ip community-list standard 2_115_227 permit 65000:2 0:115 0:227 route-map calculator permit 9924 match community 2_115_227 set community 0:26105 ip community-list standard 2_67_204 permit 65000:2 0:67 0:204 ip community-list standard 2_68_201 permit 65000:2 0:68 0:201 ip community-list standard 2_102_134 permit 65000:2 0:102 0:134 route-map calculator permit 9925 match community 2_67_204 2_68_201 2_102_134 set community 0:13668 ip community-list standard 2_240_256 permit 65000:2 0:240 0:256 route-map calculator permit 9926 match community 2_240_256 set community 0:61440 ip community-list standard 2_148_185 permit 65000:2 0:148 0:185 route-map calculator permit 9927 match community 2_148_185 set community 0:27380 ip community-list standard 2_180_244 permit 65000:2 0:180 0:244 ip community-list standard 2_183_240 permit 65000:2 0:183 0:240 route-map calculator permit 9928 match community 2_180_244 2_183_240 set community 0:43920 ip community-list standard 2_155_226 permit 65000:2 0:155 0:226 route-map calculator permit 9929 match community 2_155_226 set community 0:35030 ip community-list standard 2_82_217 permit 65000:2 0:82 0:217 route-map calculator permit 9930 match community 2_82_217 set community 0:17794 ip community-list standard 2_227_245 permit 65000:2 0:227 0:245 route-map calculator permit 9931 match community 2_227_245 set community 0:55615 ip community-list standard 2_182_215 permit 65000:2 0:182 0:215 route-map calculator permit 9932 match community 2_182_215 set community 0:39130 ip community-list standard 2_163_172 permit 65000:2 0:163 0:172 route-map calculator permit 9933 match community 2_163_172 set community 0:28036 ip community-list standard 2_23_115 permit 65000:2 0:23 0:115 route-map calculator permit 9934 match community 2_23_115 set community 0:2645 ip community-list standard 2_111_227 permit 65000:2 0:111 0:227 route-map calculator permit 9935 match community 2_111_227 set community 0:25197 ip community-list standard 2_9_202 permit 65000:2 0:9 0:202 ip community-list standard 2_18_101 permit 65000:2 0:18 0:101 route-map calculator permit 9936 match community 2_9_202 2_18_101 set community 0:1818 ip community-list standard 2_74_179 permit 65000:2 0:74 0:179 route-map calculator permit 9937 match community 2_74_179 set community 0:13246 ip community-list standard 2_157_159 permit 65000:2 0:157 0:159 route-map calculator permit 9938 match community 2_157_159 set community 0:24963 ip community-list standard 2_25_212 permit 65000:2 0:25 0:212 ip community-list standard 2_50_106 permit 65000:2 0:50 0:106 ip community-list standard 2_53_100 permit 65000:2 0:53 0:100 route-map calculator permit 9939 match community 2_25_212 2_50_106 2_53_100 set community 0:5300 ip community-list standard 2_108_191 permit 65000:2 0:108 0:191 route-map calculator permit 9940 match community 2_108_191 set community 0:20628 ip community-list standard 2_145_225 permit 65000:2 0:145 0:225 route-map calculator permit 9941 match community 2_145_225 set community 0:32625 ip community-list standard 2_191_217 permit 65000:2 0:191 0:217 route-map calculator permit 9942 match community 2_191_217 set community 0:41447 ip community-list standard 2_45_149 permit 65000:2 0:45 0:149 route-map calculator permit 9943 match community 2_45_149 set community 0:6705 ip community-list standard 2_59_238 permit 65000:2 0:59 0:238 ip community-list standard 2_118_119 permit 65000:2 0:118 0:119 route-map calculator permit 9944 match community 2_59_238 2_118_119 set community 0:14042 ip community-list standard 2_109_185 permit 65000:2 0:109 0:185 route-map calculator permit 9945 match community 2_109_185 set community 0:20165 ip community-list standard 2_240_242 permit 65000:2 0:240 0:242 route-map calculator permit 9946 match community 2_240_242 set community 0:58080 ip community-list standard 2_27_235 permit 65000:2 0:27 0:235 ip community-list standard 2_45_141 permit 65000:2 0:45 0:141 ip community-list standard 2_47_135 permit 65000:2 0:47 0:135 route-map calculator permit 9947 match community 2_27_235 2_45_141 2_47_135 set community 0:6345 ip community-list standard 2_8_178 permit 65000:2 0:8 0:178 ip community-list standard 2_16_89 permit 65000:2 0:16 0:89 route-map calculator permit 9948 match community 2_8_178 2_16_89 set community 0:1424 ip community-list standard 2_150_234 permit 65000:2 0:150 0:234 ip community-list standard 2_156_225 permit 65000:2 0:156 0:225 ip community-list standard 2_180_195 permit 65000:2 0:180 0:195 route-map calculator permit 9949 match community 2_150_234 2_156_225 2_180_195 set community 0:35100 ip community-list standard 2_20_139 permit 65000:2 0:20 0:139 route-map calculator permit 9950 match community 2_20_139 set community 0:2780 ip community-list standard 2_107_245 permit 65000:2 0:107 0:245 route-map calculator permit 9951 match community 2_107_245 set community 0:26215 ip community-list standard 2_56_139 permit 65000:2 0:56 0:139 route-map calculator permit 9952 match community 2_56_139 set community 0:7784 ip community-list standard 2_37_241 permit 65000:2 0:37 0:241 route-map calculator permit 9953 match community 2_37_241 set community 0:8917 ip community-list standard 2_34_214 permit 65000:2 0:34 0:214 ip community-list standard 2_68_107 permit 65000:2 0:68 0:107 route-map calculator permit 9954 match community 2_34_214 2_68_107 set community 0:7276 ip community-list standard 2_6_161 permit 65000:2 0:6 0:161 ip community-list standard 2_7_138 permit 65000:2 0:7 0:138 ip community-list standard 2_14_69 permit 65000:2 0:14 0:69 ip community-list standard 2_21_46 permit 65000:2 0:21 0:46 ip community-list standard 2_23_42 permit 65000:2 0:23 0:42 route-map calculator permit 9955 match community 2_6_161 2_7_138 2_14_69 2_21_46 2_23_42 set community 0:966 ip community-list standard 2_7_158 permit 65000:2 0:7 0:158 ip community-list standard 2_14_79 permit 65000:2 0:14 0:79 route-map calculator permit 9956 match community 2_7_158 2_14_79 set community 0:1106 ip community-list standard 2_8_151 permit 65000:2 0:8 0:151 route-map calculator permit 9957 match community 2_8_151 set community 0:1208 ip community-list standard 2_89_217 permit 65000:2 0:89 0:217 route-map calculator permit 9958 match community 2_89_217 set community 0:19313 ip community-list standard 2_79_196 permit 65000:2 0:79 0:196 ip community-list standard 2_98_158 permit 65000:2 0:98 0:158 route-map calculator permit 9959 match community 2_79_196 2_98_158 set community 0:15484 ip community-list standard 2_64_222 permit 65000:2 0:64 0:222 ip community-list standard 2_74_192 permit 65000:2 0:74 0:192 ip community-list standard 2_96_148 permit 65000:2 0:96 0:148 ip community-list standard 2_111_128 permit 65000:2 0:111 0:128 route-map calculator permit 9960 match community 2_64_222 2_74_192 2_96_148 2_111_128 set community 0:14208 ip community-list standard 2_117_123 permit 65000:2 0:117 0:123 route-map calculator permit 9961 match community 2_117_123 set community 0:14391 ip community-list standard 2_61_241 permit 65000:2 0:61 0:241 route-map calculator permit 9962 match community 2_61_241 set community 0:14701 ip community-list standard 2_222_242 permit 65000:2 0:222 0:242 route-map calculator permit 9963 match community 2_222_242 set community 0:53724 ip community-list standard 2_79_173 permit 65000:2 0:79 0:173 route-map calculator permit 9964 match community 2_79_173 set community 0:13667 ip community-list standard 2_167_197 permit 65000:2 0:167 0:197 route-map calculator permit 9965 match community 2_167_197 set community 0:32899 ip community-list standard 2_222_245 permit 65000:2 0:222 0:245 route-map calculator permit 9966 match community 2_222_245 set community 0:54390 ip community-list standard 2_22_254 permit 65000:2 0:22 0:254 ip community-list standard 2_44_127 permit 65000:2 0:44 0:127 route-map calculator permit 9967 match community 2_22_254 2_44_127 set community 0:5588 ip community-list standard 2_119_255 permit 65000:2 0:119 0:255 route-map calculator permit 9968 match community 2_119_255 set community 0:30345 ip community-list standard 2_41_247 permit 65000:2 0:41 0:247 route-map calculator permit 9969 match community 2_41_247 set community 0:10127 ip community-list standard 2_22_239 permit 65000:2 0:22 0:239 route-map calculator permit 9970 match community 2_22_239 set community 0:5258 ip community-list standard 2_23_217 permit 65000:2 0:23 0:217 ip community-list standard 2_31_161 permit 65000:2 0:31 0:161 route-map calculator permit 9971 match community 2_23_217 2_31_161 set community 0:4991 ip community-list standard 2_40_233 permit 65000:2 0:40 0:233 route-map calculator permit 9972 match community 2_40_233 set community 0:9320 ip community-list standard 2_122_131 permit 65000:2 0:122 0:131 route-map calculator permit 9973 match community 2_122_131 set community 0:15982 ip community-list standard 2_77_157 permit 65000:2 0:77 0:157 route-map calculator permit 9974 match community 2_77_157 set community 0:12089 ip community-list standard 2_159_197 permit 65000:2 0:159 0:197 route-map calculator permit 9975 match community 2_159_197 set community 0:31323 ip community-list standard 2_71_167 permit 65000:2 0:71 0:167 route-map calculator permit 9976 match community 2_71_167 set community 0:11857 ip community-list standard 2_71_254 permit 65000:2 0:71 0:254 ip community-list standard 2_127_142 permit 65000:2 0:127 0:142 route-map calculator permit 9977 match community 2_71_254 2_127_142 set community 0:18034 ip community-list standard 2_13_247 permit 65000:2 0:13 0:247 ip community-list standard 2_19_169 permit 65000:2 0:19 0:169 route-map calculator permit 9978 match community 2_13_247 2_19_169 set community 0:3211 ip community-list standard 2_145_191 permit 65000:2 0:145 0:191 route-map calculator permit 9979 match community 2_145_191 set community 0:27695 ip community-list standard 2_153_198 permit 65000:2 0:153 0:198 ip community-list standard 2_162_187 permit 65000:2 0:162 0:187 route-map calculator permit 9980 match community 2_153_198 2_162_187 set community 0:30294 ip community-list standard 2_190_214 permit 65000:2 0:190 0:214 route-map calculator permit 9981 match community 2_190_214 set community 0:40660 ip community-list standard 2_178_236 permit 65000:2 0:178 0:236 route-map calculator permit 9982 match community 2_178_236 set community 0:42008 ip community-list standard 2_173_178 permit 65000:2 0:173 0:178 route-map calculator permit 9983 match community 2_173_178 set community 0:30794 ip community-list standard 2_82_164 permit 65000:2 0:82 0:164 route-map calculator permit 9984 match community 2_82_164 set community 0:13448 ip community-list standard 2_50_179 permit 65000:2 0:50 0:179 route-map calculator permit 9985 match community 2_50_179 set community 0:8950 ip community-list standard 2_33_97 permit 65000:2 0:33 0:97 route-map calculator permit 9986 match community 2_33_97 set community 0:3201 ip community-list standard 1_57_256 permit 65000:1 0:57 0:256 ip community-list standard 1_58_255 permit 65000:1 0:58 0:255 ip community-list standard 1_59_254 permit 65000:1 0:59 0:254 ip community-list standard 1_60_253 permit 65000:1 0:60 0:253 ip community-list standard 1_61_252 permit 65000:1 0:61 0:252 ip community-list standard 1_62_251 permit 65000:1 0:62 0:251 ip community-list standard 1_63_250 permit 65000:1 0:63 0:250 ip community-list standard 1_64_249 permit 65000:1 0:64 0:249 ip community-list standard 1_65_248 permit 65000:1 0:65 0:248 ip community-list standard 1_66_247 permit 65000:1 0:66 0:247 ip community-list standard 1_67_246 permit 65000:1 0:67 0:246 ip community-list standard 1_68_245 permit 65000:1 0:68 0:245 ip community-list standard 1_69_244 permit 65000:1 0:69 0:244 ip community-list standard 1_70_243 permit 65000:1 0:70 0:243 ip community-list standard 1_71_242 permit 65000:1 0:71 0:242 ip community-list standard 1_72_241 permit 65000:1 0:72 0:241 ip community-list standard 1_73_240 permit 65000:1 0:73 0:240 ip community-list standard 1_74_239 permit 65000:1 0:74 0:239 ip community-list standard 1_75_238 permit 65000:1 0:75 0:238 ip community-list standard 1_76_237 permit 65000:1 0:76 0:237 ip community-list standard 1_77_236 permit 65000:1 0:77 0:236 ip community-list standard 1_78_235 permit 65000:1 0:78 0:235 ip community-list standard 1_79_234 permit 65000:1 0:79 0:234 ip community-list standard 1_80_233 permit 65000:1 0:80 0:233 ip community-list standard 1_81_232 permit 65000:1 0:81 0:232 ip community-list standard 1_82_231 permit 65000:1 0:82 0:231 ip community-list standard 1_83_230 permit 65000:1 0:83 0:230 ip community-list standard 1_84_229 permit 65000:1 0:84 0:229 ip community-list standard 1_85_228 permit 65000:1 0:85 0:228 ip community-list standard 1_86_227 permit 65000:1 0:86 0:227 ip community-list standard 1_87_226 permit 65000:1 0:87 0:226 ip community-list standard 1_88_225 permit 65000:1 0:88 0:225 ip community-list standard 1_89_224 permit 65000:1 0:89 0:224 ip community-list standard 1_90_223 permit 65000:1 0:90 0:223 ip community-list standard 1_91_222 permit 65000:1 0:91 0:222 ip community-list standard 1_92_221 permit 65000:1 0:92 0:221 ip community-list standard 1_93_220 permit 65000:1 0:93 0:220 ip community-list standard 1_94_219 permit 65000:1 0:94 0:219 ip community-list standard 1_95_218 permit 65000:1 0:95 0:218 ip community-list standard 1_96_217 permit 65000:1 0:96 0:217 ip community-list standard 1_97_216 permit 65000:1 0:97 0:216 ip community-list standard 1_98_215 permit 65000:1 0:98 0:215 ip community-list standard 1_99_214 permit 65000:1 0:99 0:214 ip community-list standard 1_100_213 permit 65000:1 0:100 0:213 ip community-list standard 1_101_212 permit 65000:1 0:101 0:212 ip community-list standard 1_102_211 permit 65000:1 0:102 0:211 ip community-list standard 1_103_210 permit 65000:1 0:103 0:210 ip community-list standard 1_104_209 permit 65000:1 0:104 0:209 ip community-list standard 1_105_208 permit 65000:1 0:105 0:208 ip community-list standard 1_106_207 permit 65000:1 0:106 0:207 ip community-list standard 1_107_206 permit 65000:1 0:107 0:206 ip community-list standard 1_108_205 permit 65000:1 0:108 0:205 ip community-list standard 1_109_204 permit 65000:1 0:109 0:204 ip community-list standard 1_110_203 permit 65000:1 0:110 0:203 ip community-list standard 1_111_202 permit 65000:1 0:111 0:202 ip community-list standard 1_112_201 permit 65000:1 0:112 0:201 ip community-list standard 1_113_200 permit 65000:1 0:113 0:200 ip community-list standard 1_114_199 permit 65000:1 0:114 0:199 ip community-list standard 1_115_198 permit 65000:1 0:115 0:198 ip community-list standard 1_116_197 permit 65000:1 0:116 0:197 ip community-list standard 1_117_196 permit 65000:1 0:117 0:196 ip community-list standard 1_118_195 permit 65000:1 0:118 0:195 ip community-list standard 1_119_194 permit 65000:1 0:119 0:194 ip community-list standard 1_120_193 permit 65000:1 0:120 0:193 ip community-list standard 1_121_192 permit 65000:1 0:121 0:192 ip community-list standard 1_122_191 permit 65000:1 0:122 0:191 ip community-list standard 1_123_190 permit 65000:1 0:123 0:190 ip community-list standard 1_124_189 permit 65000:1 0:124 0:189 ip community-list standard 1_125_188 permit 65000:1 0:125 0:188 ip community-list standard 1_126_187 permit 65000:1 0:126 0:187 ip community-list standard 1_127_186 permit 65000:1 0:127 0:186 ip community-list standard 1_128_185 permit 65000:1 0:128 0:185 ip community-list standard 1_129_184 permit 65000:1 0:129 0:184 ip community-list standard 1_130_183 permit 65000:1 0:130 0:183 ip community-list standard 1_131_182 permit 65000:1 0:131 0:182 ip community-list standard 1_132_181 permit 65000:1 0:132 0:181 ip community-list standard 1_133_180 permit 65000:1 0:133 0:180 ip community-list standard 1_134_179 permit 65000:1 0:134 0:179 ip community-list standard 1_135_178 permit 65000:1 0:135 0:178 ip community-list standard 1_136_177 permit 65000:1 0:136 0:177 ip community-list standard 1_137_176 permit 65000:1 0:137 0:176 ip community-list standard 1_138_175 permit 65000:1 0:138 0:175 ip community-list standard 1_139_174 permit 65000:1 0:139 0:174 ip community-list standard 1_140_173 permit 65000:1 0:140 0:173 ip community-list standard 1_141_172 permit 65000:1 0:141 0:172 ip community-list standard 1_142_171 permit 65000:1 0:142 0:171 ip community-list standard 1_143_170 permit 65000:1 0:143 0:170 ip community-list standard 1_144_169 permit 65000:1 0:144 0:169 ip community-list standard 1_145_168 permit 65000:1 0:145 0:168 ip community-list standard 1_146_167 permit 65000:1 0:146 0:167 ip community-list standard 1_147_166 permit 65000:1 0:147 0:166 ip community-list standard 1_148_165 permit 65000:1 0:148 0:165 ip community-list standard 1_149_164 permit 65000:1 0:149 0:164 ip community-list standard 1_150_163 permit 65000:1 0:150 0:163 ip community-list standard 1_151_162 permit 65000:1 0:151 0:162 ip community-list standard 1_152_161 permit 65000:1 0:152 0:161 ip community-list standard 1_153_160 permit 65000:1 0:153 0:160 ip community-list standard 1_154_159 permit 65000:1 0:154 0:159 ip community-list standard 1_155_158 permit 65000:1 0:155 0:158 ip community-list standard 1_156_157 permit 65000:1 0:156 0:157 route-map calculator permit 9987 match community 1_57_256 1_58_255 1_59_254 1_60_253 1_61_252 set community 0:313 route-map calculator permit 9988 match community 1_62_251 1_63_250 1_64_249 1_65_248 1_66_247 set community 0:313 route-map calculator permit 9989 match community 1_67_246 1_68_245 1_69_244 1_70_243 1_71_242 set community 0:313 route-map calculator permit 9990 match community 1_72_241 1_73_240 1_74_239 1_75_238 1_76_237 set community 0:313 route-map calculator permit 9991 match community 1_77_236 1_78_235 1_79_234 1_80_233 1_81_232 set community 0:313 route-map calculator permit 9992 match community 1_82_231 1_83_230 1_84_229 1_85_228 1_86_227 set community 0:313 route-map calculator permit 9993 match community 1_87_226 1_88_225 1_89_224 1_90_223 1_91_222 set community 0:313 route-map calculator permit 9994 match community 1_92_221 1_93_220 1_94_219 1_95_218 1_96_217 set community 0:313 route-map calculator permit 9995 match community 1_97_216 1_98_215 1_99_214 1_100_213 1_101_212 set community 0:313 route-map calculator permit 9996 match community 1_102_211 1_103_210 1_104_209 1_105_208 1_106_207 set community 0:313 route-map calculator permit 9997 match community 1_107_206 1_108_205 1_109_204 1_110_203 1_111_202 set community 0:313 route-map calculator permit 9998 match community 1_112_201 1_113_200 1_114_199 1_115_198 1_116_197 set community 0:313 route-map calculator permit 9999 match community 1_117_196 1_118_195 1_119_194 1_120_193 1_121_192 set community 0:313 route-map calculator permit 10000 match community 1_122_191 1_123_190 1_124_189 1_125_188 1_126_187 set community 0:313 route-map calculator permit 10001 match community 1_127_186 1_128_185 1_129_184 1_130_183 1_131_182 set community 0:313 route-map calculator permit 10002 match community 1_132_181 1_133_180 1_134_179 1_135_178 1_136_177 set community 0:313 route-map calculator permit 10003 match community 1_137_176 1_138_175 1_139_174 1_140_173 1_141_172 set community 0:313 route-map calculator permit 10004 match community 1_142_171 1_143_170 1_144_169 1_145_168 1_146_167 set community 0:313 route-map calculator permit 10005 match community 1_147_166 1_148_165 1_149_164 1_150_163 1_151_162 set community 0:313 route-map calculator permit 10006 match community 1_152_161 1_153_160 1_154_159 1_155_158 1_156_157 set community 0:313 ip community-list standard 2_14_149 permit 65000:2 0:14 0:149 route-map calculator permit 10007 match community 2_14_149 set community 0:2086 ip community-list standard 2_123_241 permit 65000:2 0:123 0:241 route-map calculator permit 10008 match community 2_123_241 set community 0:29643 ip community-list standard 2_90_167 permit 65000:2 0:90 0:167 route-map calculator permit 10009 match community 2_90_167 set community 0:15030 ip community-list standard 2_105_245 permit 65000:2 0:105 0:245 ip community-list standard 2_147_175 permit 65000:2 0:147 0:175 route-map calculator permit 10010 match community 2_105_245 2_147_175 set community 0:25725 ip community-list standard 2_209_247 permit 65000:2 0:209 0:247 route-map calculator permit 10011 match community 2_209_247 set community 0:51623 ip community-list standard 2_19_188 permit 65000:2 0:19 0:188 ip community-list standard 2_38_94 permit 65000:2 0:38 0:94 ip community-list standard 2_47_76 permit 65000:2 0:47 0:76 route-map calculator permit 10012 match community 2_19_188 2_38_94 2_47_76 set community 0:3572 ip community-list standard 2_155_211 permit 65000:2 0:155 0:211 route-map calculator permit 10013 match community 2_155_211 set community 0:32705 ip community-list standard 2_75_175 permit 65000:2 0:75 0:175 ip community-list standard 2_105_125 permit 65000:2 0:105 0:125 route-map calculator permit 10014 match community 2_75_175 2_105_125 set community 0:13125 ip community-list standard 2_173_256 permit 65000:2 0:173 0:256 route-map calculator permit 10015 match community 2_173_256 set community 0:44288 ip community-list standard 2_145_209 permit 65000:2 0:145 0:209 route-map calculator permit 10016 match community 2_145_209 set community 0:30305 ip community-list standard 2_9_195 permit 65000:2 0:9 0:195 ip community-list standard 2_13_135 permit 65000:2 0:13 0:135 ip community-list standard 2_15_117 permit 65000:2 0:15 0:117 ip community-list standard 2_27_65 permit 65000:2 0:27 0:65 ip community-list standard 2_39_45 permit 65000:2 0:39 0:45 route-map calculator permit 10017 match community 2_9_195 2_13_135 2_15_117 2_27_65 2_39_45 set community 0:1755 ip community-list standard 2_38_152 permit 65000:2 0:38 0:152 ip community-list standard 2_76_76 permit 65000:2 0:76 0:76 route-map calculator permit 10018 match community 2_38_152 2_76_76 set community 0:5776 ip community-list standard 2_11_159 permit 65000:2 0:11 0:159 ip community-list standard 2_33_53 permit 65000:2 0:33 0:53 route-map calculator permit 10019 match community 2_11_159 2_33_53 set community 0:1749 ip community-list standard 2_115_159 permit 65000:2 0:115 0:159 route-map calculator permit 10020 match community 2_115_159 set community 0:18285 ip community-list standard 2_242_255 permit 65000:2 0:242 0:255 route-map calculator permit 10021 match community 2_242_255 set community 0:61710 ip community-list standard 2_89_199 permit 65000:2 0:89 0:199 route-map calculator permit 10022 match community 2_89_199 set community 0:17711 ip community-list standard 2_103_127 permit 65000:2 0:103 0:127 route-map calculator permit 10023 match community 2_103_127 set community 0:13081 ip community-list standard 2_140_249 permit 65000:2 0:140 0:249 ip community-list standard 2_166_210 permit 65000:2 0:166 0:210 route-map calculator permit 10024 match community 2_140_249 2_166_210 set community 0:34860 ip community-list standard 2_45_163 permit 65000:2 0:45 0:163 route-map calculator permit 10025 match community 2_45_163 set community 0:7335 ip community-list standard 2_234_254 permit 65000:2 0:234 0:254 route-map calculator permit 10026 match community 2_234_254 set community 0:59436 ip community-list standard 2_139_216 permit 65000:2 0:139 0:216 route-map calculator permit 10027 match community 2_139_216 set community 0:30024 ip community-list standard 2_89_95 permit 65000:2 0:89 0:95 route-map calculator permit 10028 match community 2_89_95 set community 0:8455 ip community-list standard 2_41_187 permit 65000:2 0:41 0:187 route-map calculator permit 10029 match community 2_41_187 set community 0:7667 ip community-list standard 2_223_255 permit 65000:2 0:223 0:255 route-map calculator permit 10030 match community 2_223_255 set community 0:56865 ip community-list standard 2_141_147 permit 65000:2 0:141 0:147 route-map calculator permit 10031 match community 2_141_147 set community 0:20727 ip community-list standard 2_38_191 permit 65000:2 0:38 0:191 route-map calculator permit 10032 match community 2_38_191 set community 0:7258 ip community-list standard 2_20_215 permit 65000:2 0:20 0:215 ip community-list standard 2_25_172 permit 65000:2 0:25 0:172 ip community-list standard 2_43_100 permit 65000:2 0:43 0:100 ip community-list standard 2_50_86 permit 65000:2 0:50 0:86 route-map calculator permit 10033 match community 2_20_215 2_25_172 2_43_100 2_50_86 set community 0:4300 ip community-list standard 1_1_106 permit 65000:1 0:1 0:106 ip community-list standard 2_1_107 permit 65000:2 0:1 0:107 ip community-list standard 1_2_105 permit 65000:1 0:2 0:105 ip community-list standard 1_3_104 permit 65000:1 0:3 0:104 ip community-list standard 1_4_103 permit 65000:1 0:4 0:103 ip community-list standard 1_5_102 permit 65000:1 0:5 0:102 ip community-list standard 1_6_101 permit 65000:1 0:6 0:101 ip community-list standard 1_7_100 permit 65000:1 0:7 0:100 ip community-list standard 1_8_99 permit 65000:1 0:8 0:99 ip community-list standard 1_9_98 permit 65000:1 0:9 0:98 ip community-list standard 1_10_97 permit 65000:1 0:10 0:97 ip community-list standard 1_11_96 permit 65000:1 0:11 0:96 ip community-list standard 1_12_95 permit 65000:1 0:12 0:95 ip community-list standard 1_13_94 permit 65000:1 0:13 0:94 ip community-list standard 1_14_93 permit 65000:1 0:14 0:93 ip community-list standard 1_15_92 permit 65000:1 0:15 0:92 ip community-list standard 1_16_91 permit 65000:1 0:16 0:91 ip community-list standard 1_17_90 permit 65000:1 0:17 0:90 ip community-list standard 1_18_89 permit 65000:1 0:18 0:89 ip community-list standard 1_19_88 permit 65000:1 0:19 0:88 ip community-list standard 1_20_87 permit 65000:1 0:20 0:87 ip community-list standard 1_21_86 permit 65000:1 0:21 0:86 ip community-list standard 1_22_85 permit 65000:1 0:22 0:85 ip community-list standard 1_23_84 permit 65000:1 0:23 0:84 ip community-list standard 1_24_83 permit 65000:1 0:24 0:83 ip community-list standard 1_25_82 permit 65000:1 0:25 0:82 ip community-list standard 1_26_81 permit 65000:1 0:26 0:81 ip community-list standard 1_27_80 permit 65000:1 0:27 0:80 ip community-list standard 1_28_79 permit 65000:1 0:28 0:79 ip community-list standard 1_29_78 permit 65000:1 0:29 0:78 ip community-list standard 1_30_77 permit 65000:1 0:30 0:77 ip community-list standard 1_31_76 permit 65000:1 0:31 0:76 ip community-list standard 1_32_75 permit 65000:1 0:32 0:75 ip community-list standard 1_33_74 permit 65000:1 0:33 0:74 ip community-list standard 1_34_73 permit 65000:1 0:34 0:73 ip community-list standard 1_35_72 permit 65000:1 0:35 0:72 ip community-list standard 1_36_71 permit 65000:1 0:36 0:71 ip community-list standard 1_37_70 permit 65000:1 0:37 0:70 ip community-list standard 1_38_69 permit 65000:1 0:38 0:69 ip community-list standard 1_39_68 permit 65000:1 0:39 0:68 ip community-list standard 1_40_67 permit 65000:1 0:40 0:67 ip community-list standard 1_41_66 permit 65000:1 0:41 0:66 ip community-list standard 1_42_65 permit 65000:1 0:42 0:65 ip community-list standard 1_43_64 permit 65000:1 0:43 0:64 ip community-list standard 1_44_63 permit 65000:1 0:44 0:63 ip community-list standard 1_45_62 permit 65000:1 0:45 0:62 ip community-list standard 1_46_61 permit 65000:1 0:46 0:61 ip community-list standard 1_47_60 permit 65000:1 0:47 0:60 ip community-list standard 1_48_59 permit 65000:1 0:48 0:59 ip community-list standard 1_49_58 permit 65000:1 0:49 0:58 ip community-list standard 1_50_57 permit 65000:1 0:50 0:57 ip community-list standard 1_51_56 permit 65000:1 0:51 0:56 ip community-list standard 1_52_55 permit 65000:1 0:52 0:55 ip community-list standard 1_53_54 permit 65000:1 0:53 0:54 ip community-list expanded c107 permit 1 ^65000:4_0:107_0:1$ ip community-list expanded c107 permit 2 ^65000:3_0:108_0:1$ ip community-list expanded c107 permit 3 ^65000:3_0:109_0:2$ ip community-list expanded c107 permit 4 ^65000:3_0:110_0:3$ ip community-list expanded c107 permit 5 ^65000:3_0:111_0:4$ ip community-list expanded c107 permit 6 ^65000:3_0:112_0:5$ ip community-list expanded c107 permit 7 ^65000:3_0:113_0:6$ ip community-list expanded c107 permit 8 ^65000:3_0:114_0:7$ ip community-list expanded c107 permit 9 ^65000:3_0:115_0:8$ ip community-list expanded c107 permit 10 ^65000:3_0:116_0:9$ ip community-list expanded c107 permit 11 ^65000:3_0:117_0:10$ ip community-list expanded c107 permit 12 ^65000:3_0:118_0:11$ ip community-list expanded c107 permit 13 ^65000:3_0:119_0:12$ ip community-list expanded c107 permit 14 ^65000:3_0:120_0:13$ ip community-list expanded c107 permit 15 ^65000:3_0:121_0:14$ ip community-list expanded c107 permit 16 ^65000:3_0:122_0:15$ ip community-list expanded c107 permit 17 ^65000:3_0:123_0:16$ ip community-list expanded c107 permit 18 ^65000:3_0:124_0:17$ ip community-list expanded c107 permit 19 ^65000:3_0:125_0:18$ ip community-list expanded c107 permit 20 ^65000:3_0:126_0:19$ ip community-list expanded c107 permit 21 ^65000:3_0:127_0:20$ ip community-list expanded c107 permit 22 ^65000:3_0:128_0:21$ ip community-list expanded c107 permit 23 ^65000:3_0:129_0:22$ ip community-list expanded c107 permit 24 ^65000:3_0:130_0:23$ ip community-list expanded c107 permit 25 ^65000:3_0:131_0:24$ ip community-list expanded c107 permit 26 ^65000:3_0:132_0:25$ ip community-list expanded c107 permit 27 ^65000:3_0:133_0:26$ ip community-list expanded c107 permit 28 ^65000:3_0:134_0:27$ ip community-list expanded c107 permit 29 ^65000:3_0:135_0:28$ ip community-list expanded c107 permit 30 ^65000:3_0:136_0:29$ ip community-list expanded c107 permit 31 ^65000:3_0:137_0:30$ ip community-list expanded c107 permit 32 ^65000:3_0:138_0:31$ ip community-list expanded c107 permit 33 ^65000:3_0:139_0:32$ ip community-list expanded c107 permit 34 ^65000:3_0:140_0:33$ ip community-list expanded c107 permit 35 ^65000:3_0:141_0:34$ ip community-list expanded c107 permit 36 ^65000:3_0:142_0:35$ ip community-list expanded c107 permit 37 ^65000:3_0:143_0:36$ ip community-list expanded c107 permit 38 ^65000:3_0:144_0:37$ ip community-list expanded c107 permit 39 ^65000:3_0:145_0:38$ ip community-list expanded c107 permit 40 ^65000:3_0:146_0:39$ ip community-list expanded c107 permit 41 ^65000:3_0:147_0:40$ ip community-list expanded c107 permit 42 ^65000:3_0:148_0:41$ ip community-list expanded c107 permit 43 ^65000:3_0:149_0:42$ ip community-list expanded c107 permit 44 ^65000:3_0:150_0:43$ ip community-list expanded c107 permit 45 ^65000:3_0:151_0:44$ ip community-list expanded c107 permit 46 ^65000:3_0:152_0:45$ ip community-list expanded c107 permit 47 ^65000:3_0:153_0:46$ ip community-list expanded c107 permit 48 ^65000:3_0:154_0:47$ ip community-list expanded c107 permit 49 ^65000:3_0:155_0:48$ ip community-list expanded c107 permit 50 ^65000:3_0:156_0:49$ ip community-list expanded c107 permit 51 ^65000:3_0:157_0:50$ ip community-list expanded c107 permit 52 ^65000:3_0:158_0:51$ ip community-list expanded c107 permit 53 ^65000:3_0:159_0:52$ ip community-list expanded c107 permit 54 ^65000:3_0:160_0:53$ ip community-list expanded c107 permit 55 ^65000:3_0:161_0:54$ ip community-list expanded c107 permit 56 ^65000:3_0:162_0:55$ ip community-list expanded c107 permit 57 ^65000:3_0:163_0:56$ ip community-list expanded c107 permit 58 ^65000:3_0:164_0:57$ ip community-list expanded c107 permit 59 ^65000:3_0:165_0:58$ ip community-list expanded c107 permit 60 ^65000:3_0:166_0:59$ ip community-list expanded c107 permit 61 ^65000:3_0:167_0:60$ ip community-list expanded c107 permit 62 ^65000:3_0:168_0:61$ ip community-list expanded c107 permit 63 ^65000:3_0:169_0:62$ ip community-list expanded c107 permit 64 ^65000:3_0:170_0:63$ ip community-list expanded c107 permit 65 ^65000:3_0:171_0:64$ ip community-list expanded c107 permit 66 ^65000:3_0:172_0:65$ ip community-list expanded c107 permit 67 ^65000:3_0:173_0:66$ ip community-list expanded c107 permit 68 ^65000:3_0:174_0:67$ ip community-list expanded c107 permit 69 ^65000:3_0:175_0:68$ ip community-list expanded c107 permit 70 ^65000:3_0:176_0:69$ ip community-list expanded c107 permit 71 ^65000:3_0:177_0:70$ ip community-list expanded c107 permit 72 ^65000:3_0:178_0:71$ ip community-list expanded c107 permit 73 ^65000:3_0:179_0:72$ ip community-list expanded c107 permit 74 ^65000:3_0:180_0:73$ ip community-list expanded c107 permit 75 ^65000:3_0:181_0:74$ ip community-list expanded c107 permit 76 ^65000:3_0:182_0:75$ ip community-list expanded c107 permit 77 ^65000:3_0:183_0:76$ ip community-list expanded c107 permit 78 ^65000:3_0:184_0:77$ ip community-list expanded c107 permit 79 ^65000:3_0:185_0:78$ ip community-list expanded c107 permit 80 ^65000:3_0:186_0:79$ ip community-list expanded c107 permit 81 ^65000:3_0:187_0:80$ ip community-list expanded c107 permit 82 ^65000:3_0:188_0:81$ ip community-list expanded c107 permit 83 ^65000:3_0:189_0:82$ ip community-list expanded c107 permit 84 ^65000:3_0:190_0:83$ ip community-list expanded c107 permit 85 ^65000:3_0:191_0:84$ ip community-list expanded c107 permit 86 ^65000:3_0:192_0:85$ ip community-list expanded c107 permit 87 ^65000:3_0:193_0:86$ ip community-list expanded c107 permit 88 ^65000:3_0:194_0:87$ ip community-list expanded c107 permit 89 ^65000:3_0:195_0:88$ ip community-list expanded c107 permit 90 ^65000:3_0:196_0:89$ ip community-list expanded c107 permit 91 ^65000:3_0:197_0:90$ ip community-list expanded c107 permit 92 ^65000:3_0:198_0:91$ ip community-list expanded c107 permit 93 ^65000:3_0:199_0:92$ ip community-list expanded c107 permit 94 ^65000:3_0:200_0:93$ ip community-list expanded c107 permit 95 ^65000:3_0:201_0:94$ ip community-list expanded c107 permit 96 ^65000:3_0:202_0:95$ ip community-list expanded c107 permit 97 ^65000:3_0:203_0:96$ ip community-list expanded c107 permit 98 ^65000:3_0:204_0:97$ ip community-list expanded c107 permit 99 ^65000:3_0:205_0:98$ ip community-list expanded c107 permit 100 ^65000:3_0:206_0:99$ ip community-list expanded c107 permit 101 ^65000:3_0:207_0:100$ ip community-list expanded c107 permit 102 ^65000:3_0:208_0:101$ ip community-list expanded c107 permit 103 ^65000:3_0:209_0:102$ ip community-list expanded c107 permit 104 ^65000:3_0:210_0:103$ ip community-list expanded c107 permit 105 ^65000:3_0:211_0:104$ ip community-list expanded c107 permit 106 ^65000:3_0:212_0:105$ ip community-list expanded c107 permit 107 ^65000:3_0:213_0:106$ ip community-list expanded c107 permit 108 ^65000:4_0:214_0:2$ ip community-list expanded c107 permit 109 ^65000:3_0:214_0:107$ ip community-list expanded c107 permit 110 ^65000:4_0:215_0:2$ ip community-list expanded c107 permit 111 ^65000:3_0:215_0:108$ ip community-list expanded c107 permit 112 ^65000:3_0:216_0:109$ ip community-list expanded c107 permit 113 ^65000:3_0:217_0:110$ ip community-list expanded c107 permit 114 ^65000:3_0:218_0:111$ ip community-list expanded c107 permit 115 ^65000:3_0:219_0:112$ ip community-list expanded c107 permit 116 ^65000:3_0:220_0:113$ ip community-list expanded c107 permit 117 ^65000:3_0:221_0:114$ ip community-list expanded c107 permit 118 ^65000:3_0:222_0:115$ ip community-list expanded c107 permit 119 ^65000:3_0:223_0:116$ ip community-list expanded c107 permit 120 ^65000:3_0:224_0:117$ ip community-list expanded c107 permit 121 ^65000:3_0:225_0:118$ ip community-list expanded c107 permit 122 ^65000:3_0:226_0:119$ ip community-list expanded c107 permit 123 ^65000:3_0:227_0:120$ ip community-list expanded c107 permit 124 ^65000:3_0:228_0:121$ ip community-list expanded c107 permit 125 ^65000:3_0:229_0:122$ ip community-list expanded c107 permit 126 ^65000:3_0:230_0:123$ ip community-list expanded c107 permit 127 ^65000:3_0:231_0:124$ ip community-list expanded c107 permit 128 ^65000:3_0:232_0:125$ ip community-list expanded c107 permit 129 ^65000:3_0:233_0:126$ ip community-list expanded c107 permit 130 ^65000:3_0:234_0:127$ ip community-list expanded c107 permit 131 ^65000:3_0:235_0:128$ ip community-list expanded c107 permit 132 ^65000:3_0:236_0:129$ ip community-list expanded c107 permit 133 ^65000:3_0:237_0:130$ ip community-list expanded c107 permit 134 ^65000:3_0:238_0:131$ ip community-list expanded c107 permit 135 ^65000:3_0:239_0:132$ ip community-list expanded c107 permit 136 ^65000:3_0:240_0:133$ ip community-list expanded c107 permit 137 ^65000:3_0:241_0:134$ ip community-list expanded c107 permit 138 ^65000:3_0:242_0:135$ ip community-list expanded c107 permit 139 ^65000:3_0:243_0:136$ ip community-list expanded c107 permit 140 ^65000:3_0:244_0:137$ ip community-list expanded c107 permit 141 ^65000:3_0:245_0:138$ ip community-list expanded c107 permit 142 ^65000:3_0:246_0:139$ ip community-list expanded c107 permit 143 ^65000:3_0:247_0:140$ ip community-list expanded c107 permit 144 ^65000:3_0:248_0:141$ ip community-list expanded c107 permit 145 ^65000:3_0:249_0:142$ ip community-list expanded c107 permit 146 ^65000:3_0:250_0:143$ ip community-list expanded c107 permit 147 ^65000:3_0:251_0:144$ ip community-list expanded c107 permit 148 ^65000:3_0:252_0:145$ ip community-list expanded c107 permit 149 ^65000:3_0:253_0:146$ ip community-list expanded c107 permit 150 ^65000:3_0:254_0:147$ ip community-list expanded c107 permit 151 ^65000:3_0:255_0:148$ ip community-list expanded c107 permit 152 ^65000:3_0:256_0:149$ route-map calculator permit 10034 match community 1_1_106 2_1_107 1_2_105 1_3_104 1_4_103 set community 0:107 route-map calculator permit 10035 match community 1_5_102 1_6_101 1_7_100 1_8_99 1_9_98 set community 0:107 route-map calculator permit 10036 match community 1_10_97 1_11_96 1_12_95 1_13_94 1_14_93 set community 0:107 route-map calculator permit 10037 match community 1_15_92 1_16_91 1_17_90 1_18_89 1_19_88 set community 0:107 route-map calculator permit 10038 match community 1_20_87 1_21_86 1_22_85 1_23_84 1_24_83 set community 0:107 route-map calculator permit 10039 match community 1_25_82 1_26_81 1_27_80 1_28_79 1_29_78 set community 0:107 route-map calculator permit 10040 match community 1_30_77 1_31_76 1_32_75 1_33_74 1_34_73 set community 0:107 route-map calculator permit 10041 match community 1_35_72 1_36_71 1_37_70 1_38_69 1_39_68 set community 0:107 route-map calculator permit 10042 match community 1_40_67 1_41_66 1_42_65 1_43_64 1_44_63 set community 0:107 route-map calculator permit 10043 match community 1_45_62 1_46_61 1_47_60 1_48_59 1_49_58 set community 0:107 route-map calculator permit 10044 match community 1_50_57 1_51_56 1_52_55 1_53_54 c4_107_1 set community 0:107 route-map calculator permit 10045 match community c3_108_1 c3_109_2 c3_110_3 c3_111_4 c3_112_5 set community 0:107 route-map calculator permit 10046 match community c3_113_6 c3_114_7 c3_115_8 c3_116_9 c3_117_10 set community 0:107 route-map calculator permit 10047 match community c3_118_11 c3_119_12 c3_120_13 c3_121_14 c3_122_15 set community 0:107 route-map calculator permit 10048 match community c3_123_16 c3_124_17 c3_125_18 c3_126_19 c3_127_20 set community 0:107 route-map calculator permit 10049 match community c3_128_21 c3_129_22 c3_130_23 c3_131_24 c3_132_25 set community 0:107 route-map calculator permit 10050 match community c3_133_26 c3_134_27 c3_135_28 c3_136_29 c3_137_30 set community 0:107 route-map calculator permit 10051 match community c3_138_31 c3_139_32 c3_140_33 c3_141_34 c3_142_35 set community 0:107 route-map calculator permit 10052 match community c3_143_36 c3_144_37 c3_145_38 c3_146_39 c3_147_40 set community 0:107 route-map calculator permit 10053 match community c3_148_41 c3_149_42 c3_150_43 c3_151_44 c3_152_45 set community 0:107 route-map calculator permit 10054 match community c3_153_46 c3_154_47 c3_155_48 c3_156_49 c3_157_50 set community 0:107 route-map calculator permit 10055 match community c3_158_51 c3_159_52 c3_160_53 c3_161_54 c3_162_55 set community 0:107 route-map calculator permit 10056 match community c3_163_56 c3_164_57 c3_165_58 c3_166_59 c3_167_60 set community 0:107 route-map calculator permit 10057 match community c3_168_61 c3_169_62 c3_170_63 c3_171_64 c3_172_65 set community 0:107 route-map calculator permit 10058 match community c3_173_66 c3_174_67 c3_175_68 c3_176_69 c3_177_70 set community 0:107 route-map calculator permit 10059 match community c3_178_71 c3_179_72 c3_180_73 c3_181_74 c3_182_75 set community 0:107 route-map calculator permit 10060 match community c3_183_76 c3_184_77 c3_185_78 c3_186_79 c3_187_80 set community 0:107 route-map calculator permit 10061 match community c3_188_81 c3_189_82 c3_190_83 c3_191_84 c3_192_85 set community 0:107 route-map calculator permit 10062 match community c3_193_86 c3_194_87 c3_195_88 c3_196_89 c3_197_90 set community 0:107 route-map calculator permit 10063 match community c3_198_91 c3_199_92 c3_200_93 c3_201_94 c3_202_95 set community 0:107 route-map calculator permit 10064 match community c3_203_96 c3_204_97 c3_205_98 c3_206_99 c3_207_100 set community 0:107 route-map calculator permit 10065 match community c3_208_101 c3_209_102 c3_210_103 c3_211_104 c3_212_105 set community 0:107 route-map calculator permit 10066 match community c3_213_106 c4_214_2 c3_214_107 c4_215_2 c3_215_108 set community 0:107 route-map calculator permit 10067 match community c3_216_109 c3_217_110 c3_218_111 c3_219_112 c3_220_113 set community 0:107 route-map calculator permit 10068 match community c3_221_114 c3_222_115 c3_223_116 c3_224_117 c3_225_118 set community 0:107 route-map calculator permit 10069 match community c3_226_119 c3_227_120 c3_228_121 c3_229_122 c3_230_123 set community 0:107 route-map calculator permit 10070 match community c3_231_124 c3_232_125 c3_233_126 c3_234_127 c3_235_128 set community 0:107 route-map calculator permit 10071 match community c3_236_129 c3_237_130 c3_238_131 c3_239_132 c3_240_133 set community 0:107 route-map calculator permit 10072 match community c3_241_134 c3_242_135 c3_243_136 c3_244_137 c3_245_138 set community 0:107 route-map calculator permit 10073 match community c3_246_139 c3_247_140 c3_248_141 c3_249_142 c3_250_143 set community 0:107 route-map calculator permit 10074 match community c3_251_144 c3_252_145 c3_253_146 c3_254_147 c3_255_148 set community 0:107 route-map calculator permit 10075 match community c3_256_149 set community 0:107 ip community-list standard 2_217_247 permit 65000:2 0:217 0:247 route-map calculator permit 10076 match community 2_217_247 set community 0:53599 ip community-list standard 2_43_207 permit 65000:2 0:43 0:207 ip community-list standard 2_69_129 permit 65000:2 0:69 0:129 route-map calculator permit 10077 match community 2_43_207 2_69_129 set community 0:8901 ip community-list standard 2_27_188 permit 65000:2 0:27 0:188 ip community-list standard 2_36_141 permit 65000:2 0:36 0:141 ip community-list standard 2_47_108 permit 65000:2 0:47 0:108 ip community-list standard 2_54_94 permit 65000:2 0:54 0:94 route-map calculator permit 10078 match community 2_27_188 2_36_141 2_47_108 2_54_94 set community 0:5076 ip community-list standard 2_30_212 permit 65000:2 0:30 0:212 ip community-list standard 2_40_159 permit 65000:2 0:40 0:159 ip community-list standard 2_53_120 permit 65000:2 0:53 0:120 ip community-list standard 2_60_106 permit 65000:2 0:60 0:106 route-map calculator permit 10079 match community 2_30_212 2_40_159 2_53_120 2_60_106 set community 0:6360 ip community-list standard 2_31_61 permit 65000:2 0:31 0:61 route-map calculator permit 10080 match community 2_31_61 set community 0:1891 ip community-list standard 2_25_194 permit 65000:2 0:25 0:194 ip community-list standard 2_50_97 permit 65000:2 0:50 0:97 route-map calculator permit 10081 match community 2_25_194 2_50_97 set community 0:4850 ip community-list standard 2_79_248 permit 65000:2 0:79 0:248 ip community-list standard 2_124_158 permit 65000:2 0:124 0:158 route-map calculator permit 10082 match community 2_79_248 2_124_158 set community 0:19592 ip community-list standard 2_145_198 permit 65000:2 0:145 0:198 ip community-list standard 2_165_174 permit 65000:2 0:165 0:174 route-map calculator permit 10083 match community 2_145_198 2_165_174 set community 0:28710 ip community-list standard 2_16_230 permit 65000:2 0:16 0:230 ip community-list standard 2_20_184 permit 65000:2 0:20 0:184 ip community-list standard 2_23_160 permit 65000:2 0:23 0:160 ip community-list standard 2_32_115 permit 65000:2 0:32 0:115 ip community-list standard 2_40_92 permit 65000:2 0:40 0:92 ip community-list standard 2_46_80 permit 65000:2 0:46 0:80 route-map calculator permit 10084 match community 2_16_230 2_20_184 2_23_160 2_32_115 2_40_92 set community 0:3680 route-map calculator permit 10085 match community 2_46_80 set community 0:3680 ip community-list standard 2_83_89 permit 65000:2 0:83 0:89 route-map calculator permit 10086 match community 2_83_89 set community 0:7387 ip community-list standard 2_217_238 permit 65000:2 0:217 0:238 route-map calculator permit 10087 match community 2_217_238 set community 0:51646 ip community-list standard 2_138_226 permit 65000:2 0:138 0:226 route-map calculator permit 10088 match community 2_138_226 set community 0:31188 ip community-list standard 2_83_188 permit 65000:2 0:83 0:188 ip community-list standard 2_94_166 permit 65000:2 0:94 0:166 route-map calculator permit 10089 match community 2_83_188 2_94_166 set community 0:15604 ip community-list standard 2_123_201 permit 65000:2 0:123 0:201 route-map calculator permit 10090 match community 2_123_201 set community 0:24723 ip community-list standard 2_68_136 permit 65000:2 0:68 0:136 route-map calculator permit 10091 match community 2_68_136 set community 0:9248 ip community-list standard 2_107_141 permit 65000:2 0:107 0:141 route-map calculator permit 10092 match community 2_107_141 set community 0:15087 ip community-list standard 2_165_219 permit 65000:2 0:165 0:219 route-map calculator permit 10093 match community 2_165_219 set community 0:36135 ip community-list standard 2_12_235 permit 65000:2 0:12 0:235 ip community-list standard 2_15_188 permit 65000:2 0:15 0:188 ip community-list standard 2_20_141 permit 65000:2 0:20 0:141 ip community-list standard 2_30_94 permit 65000:2 0:30 0:94 ip community-list standard 2_47_60 permit 65000:2 0:47 0:60 route-map calculator permit 10094 match community 2_12_235 2_15_188 2_20_141 2_30_94 2_47_60 set community 0:2820 ip community-list standard 2_221_249 permit 65000:2 0:221 0:249 route-map calculator permit 10095 match community 2_221_249 set community 0:55029 ip community-list standard 2_174_248 permit 65000:2 0:174 0:248 ip community-list standard 2_186_232 permit 65000:2 0:186 0:232 route-map calculator permit 10096 match community 2_174_248 2_186_232 set community 0:43152 ip community-list standard 2_9_87 permit 65000:2 0:9 0:87 ip community-list standard 2_27_29 permit 65000:2 0:27 0:29 route-map calculator permit 10097 match community 2_9_87 2_27_29 set community 0:783 ip community-list standard 2_184_222 permit 65000:2 0:184 0:222 route-map calculator permit 10098 match community 2_184_222 set community 0:40848 ip community-list standard 2_150_227 permit 65000:2 0:150 0:227 route-map calculator permit 10099 match community 2_150_227 set community 0:34050 ip community-list standard 2_136_226 permit 65000:2 0:136 0:226 route-map calculator permit 10100 match community 2_136_226 set community 0:30736 ip community-list standard 2_191_197 permit 65000:2 0:191 0:197 route-map calculator permit 10101 match community 2_191_197 set community 0:37627 ip community-list standard 2_161_228 permit 65000:2 0:161 0:228 route-map calculator permit 10102 match community 2_161_228 set community 0:36708 ip community-list standard 2_180_248 permit 65000:2 0:180 0:248 ip community-list standard 2_186_240 permit 65000:2 0:186 0:240 route-map calculator permit 10103 match community 2_180_248 2_186_240 set community 0:44640 ip community-list standard 2_58_194 permit 65000:2 0:58 0:194 ip community-list standard 2_97_116 permit 65000:2 0:97 0:116 route-map calculator permit 10104 match community 2_58_194 2_97_116 set community 0:11252 ip community-list standard 2_88_253 permit 65000:2 0:88 0:253 ip community-list standard 2_92_242 permit 65000:2 0:92 0:242 ip community-list standard 2_121_184 permit 65000:2 0:121 0:184 route-map calculator permit 10105 match community 2_88_253 2_92_242 2_121_184 set community 0:22264 ip community-list standard 2_175_227 permit 65000:2 0:175 0:227 route-map calculator permit 10106 match community 2_175_227 set community 0:39725 ip community-list standard 2_4_254 permit 65000:2 0:4 0:254 ip community-list standard 2_8_127 permit 65000:2 0:8 0:127 route-map calculator permit 10107 match community 2_4_254 2_8_127 set community 0:1016 ip community-list standard 2_35_207 permit 65000:2 0:35 0:207 ip community-list standard 2_45_161 permit 65000:2 0:45 0:161 ip community-list standard 2_63_115 permit 65000:2 0:63 0:115 ip community-list standard 2_69_105 permit 65000:2 0:69 0:105 route-map calculator permit 10108 match community 2_35_207 2_45_161 2_63_115 2_69_105 set community 0:7245 ip community-list standard 2_105_181 permit 65000:2 0:105 0:181 route-map calculator permit 10109 match community 2_105_181 set community 0:19005 ip community-list standard 2_74_182 permit 65000:2 0:74 0:182 ip community-list standard 2_91_148 permit 65000:2 0:91 0:148 route-map calculator permit 10110 match community 2_74_182 2_91_148 set community 0:13468 ip community-list standard 2_134_256 permit 65000:2 0:134 0:256 route-map calculator permit 10111 match community 2_134_256 set community 0:34304 ip community-list standard 2_13_188 permit 65000:2 0:13 0:188 ip community-list standard 2_26_94 permit 65000:2 0:26 0:94 ip community-list standard 2_47_52 permit 65000:2 0:47 0:52 route-map calculator permit 10112 match community 2_13_188 2_26_94 2_47_52 set community 0:2444 ip community-list standard 2_40_173 permit 65000:2 0:40 0:173 route-map calculator permit 10113 match community 2_40_173 set community 0:6920 ip community-list standard 2_17_227 permit 65000:2 0:17 0:227 route-map calculator permit 10114 match community 2_17_227 set community 0:3859 ip community-list standard 2_151_181 permit 65000:2 0:151 0:181 route-map calculator permit 10115 match community 2_151_181 set community 0:27331 ip community-list standard 2_37_240 permit 65000:2 0:37 0:240 ip community-list standard 2_40_222 permit 65000:2 0:40 0:222 ip community-list standard 2_48_185 permit 65000:2 0:48 0:185 ip community-list standard 2_60_148 permit 65000:2 0:60 0:148 ip community-list standard 2_74_120 permit 65000:2 0:74 0:120 ip community-list standard 2_80_111 permit 65000:2 0:80 0:111 route-map calculator permit 10116 match community 2_37_240 2_40_222 2_48_185 2_60_148 2_74_120 set community 0:8880 route-map calculator permit 10117 match community 2_80_111 set community 0:8880 ip community-list standard 2_80_233 permit 65000:2 0:80 0:233 route-map calculator permit 10118 match community 2_80_233 set community 0:18640 ip community-list standard 2_113_226 permit 65000:2 0:113 0:226 route-map calculator permit 10119 match community 2_113_226 set community 0:25538 ip community-list standard 2_134_170 permit 65000:2 0:134 0:170 route-map calculator permit 10120 match community 2_134_170 set community 0:22780 ip community-list standard 2_131_137 permit 65000:2 0:131 0:137 route-map calculator permit 10121 match community 2_131_137 set community 0:17947 ip community-list standard 2_151_180 permit 65000:2 0:151 0:180 route-map calculator permit 10122 match community 2_151_180 set community 0:27180 ip community-list standard 2_17_197 permit 65000:2 0:17 0:197 route-map calculator permit 10123 match community 2_17_197 set community 0:3349 ip community-list standard 2_111_205 permit 65000:2 0:111 0:205 ip community-list standard 2_123_185 permit 65000:2 0:123 0:185 route-map calculator permit 10124 match community 2_111_205 2_123_185 set community 0:22755 ip community-list standard 2_92_248 permit 65000:2 0:92 0:248 ip community-list standard 2_124_184 permit 65000:2 0:124 0:184 route-map calculator permit 10125 match community 2_92_248 2_124_184 set community 0:22816 ip community-list standard 2_27_220 permit 65000:2 0:27 0:220 ip community-list standard 2_30_198 permit 65000:2 0:30 0:198 ip community-list standard 2_33_180 permit 65000:2 0:33 0:180 ip community-list standard 2_36_165 permit 65000:2 0:36 0:165 ip community-list standard 2_44_135 permit 65000:2 0:44 0:135 ip community-list standard 2_45_132 permit 65000:2 0:45 0:132 ip community-list standard 2_54_110 permit 65000:2 0:54 0:110 ip community-list standard 2_55_108 permit 65000:2 0:55 0:108 ip community-list standard 2_60_99 permit 65000:2 0:60 0:99 ip community-list standard 2_66_90 permit 65000:2 0:66 0:90 route-map calculator permit 10126 match community 2_27_220 2_30_198 2_33_180 2_36_165 2_44_135 set community 0:5940 route-map calculator permit 10127 match community 2_45_132 2_54_110 2_55_108 2_60_99 2_66_90 set community 0:5940 ip community-list standard 2_160_205 permit 65000:2 0:160 0:205 ip community-list standard 2_164_200 permit 65000:2 0:164 0:200 route-map calculator permit 10128 match community 2_160_205 2_164_200 set community 0:32800 ip community-list standard 2_38_134 permit 65000:2 0:38 0:134 ip community-list standard 2_67_76 permit 65000:2 0:67 0:76 route-map calculator permit 10129 match community 2_38_134 2_67_76 set community 0:5092 ip community-list standard 2_94_177 permit 65000:2 0:94 0:177 ip community-list standard 2_118_141 permit 65000:2 0:118 0:141 route-map calculator permit 10130 match community 2_94_177 2_118_141 set community 0:16638 ip community-list standard 2_65_223 permit 65000:2 0:65 0:223 route-map calculator permit 10131 match community 2_65_223 set community 0:14495 ip community-list standard 2_155_158 permit 65000:2 0:155 0:158 route-map calculator permit 10132 match community 2_155_158 set community 0:24490 ip community-list standard 2_98_163 permit 65000:2 0:98 0:163 route-map calculator permit 10133 match community 2_98_163 set community 0:15974 ip community-list standard 2_47_71 permit 65000:2 0:47 0:71 route-map calculator permit 10134 match community 2_47_71 set community 0:3337 ip community-list standard 2_138_173 permit 65000:2 0:138 0:173 route-map calculator permit 10135 match community 2_138_173 set community 0:23874 ip community-list standard 2_23_203 permit 65000:2 0:23 0:203 ip community-list standard 2_29_161 permit 65000:2 0:29 0:161 route-map calculator permit 10136 match community 2_23_203 2_29_161 set community 0:4669 ip community-list standard 2_13_67 permit 65000:2 0:13 0:67 route-map calculator permit 10137 match community 2_13_67 set community 0:871 ip community-list standard 2_62_143 permit 65000:2 0:62 0:143 route-map calculator permit 10138 match community 2_62_143 set community 0:8866 ip community-list standard 2_154_218 permit 65000:2 0:154 0:218 route-map calculator permit 10139 match community 2_154_218 set community 0:33572 ip community-list standard 2_205_211 permit 65000:2 0:205 0:211 route-map calculator permit 10140 match community 2_205_211 set community 0:43255 ip community-list standard 2_115_131 permit 65000:2 0:115 0:131 route-map calculator permit 10141 match community 2_115_131 set community 0:15065 ip community-list standard 2_105_201 permit 65000:2 0:105 0:201 route-map calculator permit 10142 match community 2_105_201 set community 0:21105 ip community-list standard 2_71_170 permit 65000:2 0:71 0:170 ip community-list standard 2_85_142 permit 65000:2 0:85 0:142 route-map calculator permit 10143 match community 2_71_170 2_85_142 set community 0:12070 ip community-list standard 2_25_226 permit 65000:2 0:25 0:226 ip community-list standard 2_50_113 permit 65000:2 0:50 0:113 route-map calculator permit 10144 match community 2_25_226 2_50_113 set community 0:5650 ip community-list standard 2_146_199 permit 65000:2 0:146 0:199 route-map calculator permit 10145 match community 2_146_199 set community 0:29054 ip community-list standard 2_159_205 permit 65000:2 0:159 0:205 route-map calculator permit 10146 match community 2_159_205 set community 0:32595 ip community-list standard 2_121_139 permit 65000:2 0:121 0:139 route-map calculator permit 10147 match community 2_121_139 set community 0:16819 ip community-list standard 2_127_135 permit 65000:2 0:127 0:135 route-map calculator permit 10148 match community 2_127_135 set community 0:17145 ip community-list standard 2_109_163 permit 65000:2 0:109 0:163 route-map calculator permit 10149 match community 2_109_163 set community 0:17767 ip community-list standard 2_28_142 permit 65000:2 0:28 0:142 ip community-list standard 2_56_71 permit 65000:2 0:56 0:71 route-map calculator permit 10150 match community 2_28_142 2_56_71 set community 0:3976 ip community-list standard 2_146_254 permit 65000:2 0:146 0:254 route-map calculator permit 10151 match community 2_146_254 set community 0:37084 ip community-list standard 2_159_245 permit 65000:2 0:159 0:245 route-map calculator permit 10152 match community 2_159_245 set community 0:38955 ip community-list standard 2_85_244 permit 65000:2 0:85 0:244 ip community-list standard 2_122_170 permit 65000:2 0:122 0:170 route-map calculator permit 10153 match community 2_85_244 2_122_170 set community 0:20740 ip community-list standard 2_5_166 permit 65000:2 0:5 0:166 ip community-list standard 2_10_83 permit 65000:2 0:10 0:83 route-map calculator permit 10154 match community 2_5_166 2_10_83 set community 0:830 ip community-list standard 2_28_191 permit 65000:2 0:28 0:191 route-map calculator permit 10155 match community 2_28_191 set community 0:5348 ip community-list standard 2_195_229 permit 65000:2 0:195 0:229 route-map calculator permit 10156 match community 2_195_229 set community 0:44655 ip community-list standard 2_5_197 permit 65000:2 0:5 0:197 route-map calculator permit 10157 match community 2_5_197 set community 0:985 ip community-list standard 2_23_107 permit 65000:2 0:23 0:107 route-map calculator permit 10158 match community 2_23_107 set community 0:2461 ip community-list standard 2_185_238 permit 65000:2 0:185 0:238 route-map calculator permit 10159 match community 2_185_238 set community 0:44030 ip community-list standard 2_176_232 permit 65000:2 0:176 0:232 route-map calculator permit 10160 match community 2_176_232 set community 0:40832 ip community-list standard 1_1_110 permit 65000:1 0:1 0:110 ip community-list standard 2_1_111 permit 65000:2 0:1 0:111 ip community-list standard 1_2_109 permit 65000:1 0:2 0:109 ip community-list standard 2_3_37 permit 65000:2 0:3 0:37 ip community-list standard 1_3_108 permit 65000:1 0:3 0:108 ip community-list standard 1_4_107 permit 65000:1 0:4 0:107 ip community-list standard 1_5_106 permit 65000:1 0:5 0:106 ip community-list standard 1_6_105 permit 65000:1 0:6 0:105 ip community-list standard 1_7_104 permit 65000:1 0:7 0:104 ip community-list standard 1_8_103 permit 65000:1 0:8 0:103 ip community-list standard 1_9_102 permit 65000:1 0:9 0:102 ip community-list standard 1_10_101 permit 65000:1 0:10 0:101 ip community-list standard 1_11_100 permit 65000:1 0:11 0:100 ip community-list standard 1_12_99 permit 65000:1 0:12 0:99 ip community-list standard 1_13_98 permit 65000:1 0:13 0:98 ip community-list standard 1_14_97 permit 65000:1 0:14 0:97 ip community-list standard 1_15_96 permit 65000:1 0:15 0:96 ip community-list standard 1_16_95 permit 65000:1 0:16 0:95 ip community-list standard 1_17_94 permit 65000:1 0:17 0:94 ip community-list standard 1_18_93 permit 65000:1 0:18 0:93 ip community-list standard 1_19_92 permit 65000:1 0:19 0:92 ip community-list standard 1_20_91 permit 65000:1 0:20 0:91 ip community-list standard 1_21_90 permit 65000:1 0:21 0:90 ip community-list standard 1_22_89 permit 65000:1 0:22 0:89 ip community-list standard 1_23_88 permit 65000:1 0:23 0:88 ip community-list standard 1_24_87 permit 65000:1 0:24 0:87 ip community-list standard 1_25_86 permit 65000:1 0:25 0:86 ip community-list standard 1_26_85 permit 65000:1 0:26 0:85 ip community-list standard 1_27_84 permit 65000:1 0:27 0:84 ip community-list standard 1_28_83 permit 65000:1 0:28 0:83 ip community-list standard 1_29_82 permit 65000:1 0:29 0:82 ip community-list standard 1_30_81 permit 65000:1 0:30 0:81 ip community-list standard 1_31_80 permit 65000:1 0:31 0:80 ip community-list standard 1_32_79 permit 65000:1 0:32 0:79 ip community-list standard 1_33_78 permit 65000:1 0:33 0:78 ip community-list standard 1_34_77 permit 65000:1 0:34 0:77 ip community-list standard 1_35_76 permit 65000:1 0:35 0:76 ip community-list standard 1_36_75 permit 65000:1 0:36 0:75 ip community-list standard 1_37_74 permit 65000:1 0:37 0:74 ip community-list standard 1_38_73 permit 65000:1 0:38 0:73 ip community-list standard 1_39_72 permit 65000:1 0:39 0:72 ip community-list standard 1_40_71 permit 65000:1 0:40 0:71 ip community-list standard 1_41_70 permit 65000:1 0:41 0:70 ip community-list standard 1_42_69 permit 65000:1 0:42 0:69 ip community-list standard 1_43_68 permit 65000:1 0:43 0:68 ip community-list standard 1_44_67 permit 65000:1 0:44 0:67 ip community-list standard 1_45_66 permit 65000:1 0:45 0:66 ip community-list standard 1_46_65 permit 65000:1 0:46 0:65 ip community-list standard 1_47_64 permit 65000:1 0:47 0:64 ip community-list standard 1_48_63 permit 65000:1 0:48 0:63 ip community-list standard 1_49_62 permit 65000:1 0:49 0:62 ip community-list standard 1_50_61 permit 65000:1 0:50 0:61 ip community-list standard 1_51_60 permit 65000:1 0:51 0:60 ip community-list standard 1_52_59 permit 65000:1 0:52 0:59 ip community-list standard 1_53_58 permit 65000:1 0:53 0:58 ip community-list standard 1_54_57 permit 65000:1 0:54 0:57 ip community-list standard 1_55_56 permit 65000:1 0:55 0:56 ip community-list expanded c111 permit 1 ^65000:4_0:111_0:1$ ip community-list expanded c111 permit 2 ^65000:3_0:112_0:1$ ip community-list expanded c111 permit 3 ^65000:3_0:113_0:2$ ip community-list expanded c111 permit 4 ^65000:3_0:114_0:3$ ip community-list expanded c111 permit 5 ^65000:3_0:115_0:4$ ip community-list expanded c111 permit 6 ^65000:3_0:116_0:5$ ip community-list expanded c111 permit 7 ^65000:3_0:117_0:6$ ip community-list expanded c111 permit 8 ^65000:3_0:118_0:7$ ip community-list expanded c111 permit 9 ^65000:3_0:119_0:8$ ip community-list expanded c111 permit 10 ^65000:3_0:120_0:9$ ip community-list expanded c111 permit 11 ^65000:3_0:121_0:10$ ip community-list expanded c111 permit 12 ^65000:3_0:122_0:11$ ip community-list expanded c111 permit 13 ^65000:3_0:123_0:12$ ip community-list expanded c111 permit 14 ^65000:3_0:124_0:13$ ip community-list expanded c111 permit 15 ^65000:3_0:125_0:14$ ip community-list expanded c111 permit 16 ^65000:3_0:126_0:15$ ip community-list expanded c111 permit 17 ^65000:3_0:127_0:16$ ip community-list expanded c111 permit 18 ^65000:3_0:128_0:17$ ip community-list expanded c111 permit 19 ^65000:3_0:129_0:18$ ip community-list expanded c111 permit 20 ^65000:3_0:130_0:19$ ip community-list expanded c111 permit 21 ^65000:3_0:131_0:20$ ip community-list expanded c111 permit 22 ^65000:3_0:132_0:21$ ip community-list expanded c111 permit 23 ^65000:3_0:133_0:22$ ip community-list expanded c111 permit 24 ^65000:3_0:134_0:23$ ip community-list expanded c111 permit 25 ^65000:3_0:135_0:24$ ip community-list expanded c111 permit 26 ^65000:3_0:136_0:25$ ip community-list expanded c111 permit 27 ^65000:3_0:137_0:26$ ip community-list expanded c111 permit 28 ^65000:3_0:138_0:27$ ip community-list expanded c111 permit 29 ^65000:3_0:139_0:28$ ip community-list expanded c111 permit 30 ^65000:3_0:140_0:29$ ip community-list expanded c111 permit 31 ^65000:3_0:141_0:30$ ip community-list expanded c111 permit 32 ^65000:3_0:142_0:31$ ip community-list expanded c111 permit 33 ^65000:3_0:143_0:32$ ip community-list expanded c111 permit 34 ^65000:3_0:144_0:33$ ip community-list expanded c111 permit 35 ^65000:3_0:145_0:34$ ip community-list expanded c111 permit 36 ^65000:3_0:146_0:35$ ip community-list expanded c111 permit 37 ^65000:3_0:147_0:36$ ip community-list expanded c111 permit 38 ^65000:3_0:148_0:37$ ip community-list expanded c111 permit 39 ^65000:3_0:149_0:38$ ip community-list expanded c111 permit 40 ^65000:3_0:150_0:39$ ip community-list expanded c111 permit 41 ^65000:3_0:151_0:40$ ip community-list expanded c111 permit 42 ^65000:3_0:152_0:41$ ip community-list expanded c111 permit 43 ^65000:3_0:153_0:42$ ip community-list expanded c111 permit 44 ^65000:3_0:154_0:43$ ip community-list expanded c111 permit 45 ^65000:3_0:155_0:44$ ip community-list expanded c111 permit 46 ^65000:3_0:156_0:45$ ip community-list expanded c111 permit 47 ^65000:3_0:157_0:46$ ip community-list expanded c111 permit 48 ^65000:3_0:158_0:47$ ip community-list expanded c111 permit 49 ^65000:3_0:159_0:48$ ip community-list expanded c111 permit 50 ^65000:3_0:160_0:49$ ip community-list expanded c111 permit 51 ^65000:3_0:161_0:50$ ip community-list expanded c111 permit 52 ^65000:3_0:162_0:51$ ip community-list expanded c111 permit 53 ^65000:3_0:163_0:52$ ip community-list expanded c111 permit 54 ^65000:3_0:164_0:53$ ip community-list expanded c111 permit 55 ^65000:3_0:165_0:54$ ip community-list expanded c111 permit 56 ^65000:3_0:166_0:55$ ip community-list expanded c111 permit 57 ^65000:3_0:167_0:56$ ip community-list expanded c111 permit 58 ^65000:3_0:168_0:57$ ip community-list expanded c111 permit 59 ^65000:3_0:169_0:58$ ip community-list expanded c111 permit 60 ^65000:3_0:170_0:59$ ip community-list expanded c111 permit 61 ^65000:3_0:171_0:60$ ip community-list expanded c111 permit 62 ^65000:3_0:172_0:61$ ip community-list expanded c111 permit 63 ^65000:3_0:173_0:62$ ip community-list expanded c111 permit 64 ^65000:3_0:174_0:63$ ip community-list expanded c111 permit 65 ^65000:3_0:175_0:64$ ip community-list expanded c111 permit 66 ^65000:3_0:176_0:65$ ip community-list expanded c111 permit 67 ^65000:3_0:177_0:66$ ip community-list expanded c111 permit 68 ^65000:3_0:178_0:67$ ip community-list expanded c111 permit 69 ^65000:3_0:179_0:68$ ip community-list expanded c111 permit 70 ^65000:3_0:180_0:69$ ip community-list expanded c111 permit 71 ^65000:3_0:181_0:70$ ip community-list expanded c111 permit 72 ^65000:3_0:182_0:71$ ip community-list expanded c111 permit 73 ^65000:3_0:183_0:72$ ip community-list expanded c111 permit 74 ^65000:3_0:184_0:73$ ip community-list expanded c111 permit 75 ^65000:3_0:185_0:74$ ip community-list expanded c111 permit 76 ^65000:3_0:186_0:75$ ip community-list expanded c111 permit 77 ^65000:3_0:187_0:76$ ip community-list expanded c111 permit 78 ^65000:3_0:188_0:77$ ip community-list expanded c111 permit 79 ^65000:3_0:189_0:78$ ip community-list expanded c111 permit 80 ^65000:3_0:190_0:79$ ip community-list expanded c111 permit 81 ^65000:3_0:191_0:80$ ip community-list expanded c111 permit 82 ^65000:3_0:192_0:81$ ip community-list expanded c111 permit 83 ^65000:3_0:193_0:82$ ip community-list expanded c111 permit 84 ^65000:3_0:194_0:83$ ip community-list expanded c111 permit 85 ^65000:3_0:195_0:84$ ip community-list expanded c111 permit 86 ^65000:3_0:196_0:85$ ip community-list expanded c111 permit 87 ^65000:3_0:197_0:86$ ip community-list expanded c111 permit 88 ^65000:3_0:198_0:87$ ip community-list expanded c111 permit 89 ^65000:3_0:199_0:88$ ip community-list expanded c111 permit 90 ^65000:3_0:200_0:89$ ip community-list expanded c111 permit 91 ^65000:3_0:201_0:90$ ip community-list expanded c111 permit 92 ^65000:3_0:202_0:91$ ip community-list expanded c111 permit 93 ^65000:3_0:203_0:92$ ip community-list expanded c111 permit 94 ^65000:3_0:204_0:93$ ip community-list expanded c111 permit 95 ^65000:3_0:205_0:94$ ip community-list expanded c111 permit 96 ^65000:3_0:206_0:95$ ip community-list expanded c111 permit 97 ^65000:3_0:207_0:96$ ip community-list expanded c111 permit 98 ^65000:3_0:208_0:97$ ip community-list expanded c111 permit 99 ^65000:3_0:209_0:98$ ip community-list expanded c111 permit 100 ^65000:3_0:210_0:99$ ip community-list expanded c111 permit 101 ^65000:3_0:211_0:100$ ip community-list expanded c111 permit 102 ^65000:3_0:212_0:101$ ip community-list expanded c111 permit 103 ^65000:3_0:213_0:102$ ip community-list expanded c111 permit 104 ^65000:3_0:214_0:103$ ip community-list expanded c111 permit 105 ^65000:3_0:215_0:104$ ip community-list expanded c111 permit 106 ^65000:3_0:216_0:105$ ip community-list expanded c111 permit 107 ^65000:3_0:217_0:106$ ip community-list expanded c111 permit 108 ^65000:3_0:218_0:107$ ip community-list expanded c111 permit 109 ^65000:3_0:219_0:108$ ip community-list expanded c111 permit 110 ^65000:3_0:220_0:109$ ip community-list expanded c111 permit 111 ^65000:3_0:221_0:110$ ip community-list expanded c111 permit 112 ^65000:4_0:222_0:2$ ip community-list expanded c111 permit 113 ^65000:3_0:222_0:111$ ip community-list expanded c111 permit 114 ^65000:4_0:223_0:2$ ip community-list expanded c111 permit 115 ^65000:3_0:223_0:112$ ip community-list expanded c111 permit 116 ^65000:3_0:224_0:113$ ip community-list expanded c111 permit 117 ^65000:3_0:225_0:114$ ip community-list expanded c111 permit 118 ^65000:3_0:226_0:115$ ip community-list expanded c111 permit 119 ^65000:3_0:227_0:116$ ip community-list expanded c111 permit 120 ^65000:3_0:228_0:117$ ip community-list expanded c111 permit 121 ^65000:3_0:229_0:118$ ip community-list expanded c111 permit 122 ^65000:3_0:230_0:119$ ip community-list expanded c111 permit 123 ^65000:3_0:231_0:120$ ip community-list expanded c111 permit 124 ^65000:3_0:232_0:121$ ip community-list expanded c111 permit 125 ^65000:3_0:233_0:122$ ip community-list expanded c111 permit 126 ^65000:3_0:234_0:123$ ip community-list expanded c111 permit 127 ^65000:3_0:235_0:124$ ip community-list expanded c111 permit 128 ^65000:3_0:236_0:125$ ip community-list expanded c111 permit 129 ^65000:3_0:237_0:126$ ip community-list expanded c111 permit 130 ^65000:3_0:238_0:127$ ip community-list expanded c111 permit 131 ^65000:3_0:239_0:128$ ip community-list expanded c111 permit 132 ^65000:3_0:240_0:129$ ip community-list expanded c111 permit 133 ^65000:3_0:241_0:130$ ip community-list expanded c111 permit 134 ^65000:3_0:242_0:131$ ip community-list expanded c111 permit 135 ^65000:3_0:243_0:132$ ip community-list expanded c111 permit 136 ^65000:3_0:244_0:133$ ip community-list expanded c111 permit 137 ^65000:3_0:245_0:134$ ip community-list expanded c111 permit 138 ^65000:3_0:246_0:135$ ip community-list expanded c111 permit 139 ^65000:3_0:247_0:136$ ip community-list expanded c111 permit 140 ^65000:3_0:248_0:137$ ip community-list expanded c111 permit 141 ^65000:3_0:249_0:138$ ip community-list expanded c111 permit 142 ^65000:3_0:250_0:139$ ip community-list expanded c111 permit 143 ^65000:3_0:251_0:140$ ip community-list expanded c111 permit 144 ^65000:3_0:252_0:141$ ip community-list expanded c111 permit 145 ^65000:3_0:253_0:142$ ip community-list expanded c111 permit 146 ^65000:3_0:254_0:143$ ip community-list expanded c111 permit 147 ^65000:3_0:255_0:144$ ip community-list expanded c111 permit 148 ^65000:3_0:256_0:145$ route-map calculator permit 10161 match community 1_1_110 2_1_111 1_2_109 2_3_37 1_3_108 set community 0:111 route-map calculator permit 10162 match community 1_4_107 1_5_106 1_6_105 1_7_104 1_8_103 set community 0:111 route-map calculator permit 10163 match community 1_9_102 1_10_101 1_11_100 1_12_99 1_13_98 set community 0:111 route-map calculator permit 10164 match community 1_14_97 1_15_96 1_16_95 1_17_94 1_18_93 set community 0:111 route-map calculator permit 10165 match community 1_19_92 1_20_91 1_21_90 1_22_89 1_23_88 set community 0:111 route-map calculator permit 10166 match community 1_24_87 1_25_86 1_26_85 1_27_84 1_28_83 set community 0:111 route-map calculator permit 10167 match community 1_29_82 1_30_81 1_31_80 1_32_79 1_33_78 set community 0:111 route-map calculator permit 10168 match community 1_34_77 1_35_76 1_36_75 1_37_74 1_38_73 set community 0:111 route-map calculator permit 10169 match community 1_39_72 1_40_71 1_41_70 1_42_69 1_43_68 set community 0:111 route-map calculator permit 10170 match community 1_44_67 1_45_66 1_46_65 1_47_64 1_48_63 set community 0:111 route-map calculator permit 10171 match community 1_49_62 1_50_61 1_51_60 1_52_59 1_53_58 set community 0:111 route-map calculator permit 10172 match community 1_54_57 1_55_56 c4_111_1 c3_112_1 c3_113_2 set community 0:111 route-map calculator permit 10173 match community c3_114_3 c3_115_4 c3_116_5 c3_117_6 c3_118_7 set community 0:111 route-map calculator permit 10174 match community c3_119_8 c3_120_9 c3_121_10 c3_122_11 c3_123_12 set community 0:111 route-map calculator permit 10175 match community c3_124_13 c3_125_14 c3_126_15 c3_127_16 c3_128_17 set community 0:111 route-map calculator permit 10176 match community c3_129_18 c3_130_19 c3_131_20 c3_132_21 c3_133_22 set community 0:111 route-map calculator permit 10177 match community c3_134_23 c3_135_24 c3_136_25 c3_137_26 c3_138_27 set community 0:111 route-map calculator permit 10178 match community c3_139_28 c3_140_29 c3_141_30 c3_142_31 c3_143_32 set community 0:111 route-map calculator permit 10179 match community c3_144_33 c3_145_34 c3_146_35 c3_147_36 c3_148_37 set community 0:111 route-map calculator permit 10180 match community c3_149_38 c3_150_39 c3_151_40 c3_152_41 c3_153_42 set community 0:111 route-map calculator permit 10181 match community c3_154_43 c3_155_44 c3_156_45 c3_157_46 c3_158_47 set community 0:111 route-map calculator permit 10182 match community c3_159_48 c3_160_49 c3_161_50 c3_162_51 c3_163_52 set community 0:111 route-map calculator permit 10183 match community c3_164_53 c3_165_54 c3_166_55 c3_167_56 c3_168_57 set community 0:111 route-map calculator permit 10184 match community c3_169_58 c3_170_59 c3_171_60 c3_172_61 c3_173_62 set community 0:111 route-map calculator permit 10185 match community c3_174_63 c3_175_64 c3_176_65 c3_177_66 c3_178_67 set community 0:111 route-map calculator permit 10186 match community c3_179_68 c3_180_69 c3_181_70 c3_182_71 c3_183_72 set community 0:111 route-map calculator permit 10187 match community c3_184_73 c3_185_74 c3_186_75 c3_187_76 c3_188_77 set community 0:111 route-map calculator permit 10188 match community c3_189_78 c3_190_79 c3_191_80 c3_192_81 c3_193_82 set community 0:111 route-map calculator permit 10189 match community c3_194_83 c3_195_84 c3_196_85 c3_197_86 c3_198_87 set community 0:111 route-map calculator permit 10190 match community c3_199_88 c3_200_89 c3_201_90 c3_202_91 c3_203_92 set community 0:111 route-map calculator permit 10191 match community c3_204_93 c3_205_94 c3_206_95 c3_207_96 c3_208_97 set community 0:111 route-map calculator permit 10192 match community c3_209_98 c3_210_99 c3_211_100 c3_212_101 c3_213_102 set community 0:111 route-map calculator permit 10193 match community c3_214_103 c3_215_104 c3_216_105 c3_217_106 c3_218_107 set community 0:111 route-map calculator permit 10194 match community c3_219_108 c3_220_109 c3_221_110 c4_222_2 c3_222_111 set community 0:111 route-map calculator permit 10195 match community c4_223_2 c3_223_112 c3_224_113 c3_225_114 c3_226_115 set community 0:111 route-map calculator permit 10196 match community c3_227_116 c3_228_117 c3_229_118 c3_230_119 c3_231_120 set community 0:111 route-map calculator permit 10197 match community c3_232_121 c3_233_122 c3_234_123 c3_235_124 c3_236_125 set community 0:111 route-map calculator permit 10198 match community c3_237_126 c3_238_127 c3_239_128 c3_240_129 c3_241_130 set community 0:111 route-map calculator permit 10199 match community c3_242_131 c3_243_132 c3_244_133 c3_245_134 c3_246_135 set community 0:111 route-map calculator permit 10200 match community c3_247_136 c3_248_137 c3_249_138 c3_250_139 c3_251_140 set community 0:111 route-map calculator permit 10201 match community c3_252_141 c3_253_142 c3_254_143 c3_255_144 c3_256_145 set community 0:111 ip community-list standard 2_120_244 permit 65000:2 0:120 0:244 ip community-list standard 2_122_240 permit 65000:2 0:122 0:240 ip community-list standard 2_160_183 permit 65000:2 0:160 0:183 route-map calculator permit 10202 match community 2_120_244 2_122_240 2_160_183 set community 0:29280 ip community-list standard 2_90_243 permit 65000:2 0:90 0:243 ip community-list standard 2_135_162 permit 65000:2 0:135 0:162 route-map calculator permit 10203 match community 2_90_243 2_135_162 set community 0:21870 ip community-list standard 2_17_201 permit 65000:2 0:17 0:201 ip community-list standard 2_51_67 permit 65000:2 0:51 0:67 route-map calculator permit 10204 match community 2_17_201 2_51_67 set community 0:3417 ip community-list standard 2_86_153 permit 65000:2 0:86 0:153 ip community-list standard 2_102_129 permit 65000:2 0:102 0:129 route-map calculator permit 10205 match community 2_86_153 2_102_129 set community 0:13158 ip community-list standard 2_19_159 permit 65000:2 0:19 0:159 ip community-list standard 2_53_57 permit 65000:2 0:53 0:57 route-map calculator permit 10206 match community 2_19_159 2_53_57 set community 0:3021 ip community-list standard 2_172_237 permit 65000:2 0:172 0:237 route-map calculator permit 10207 match community 2_172_237 set community 0:40764 ip community-list standard 2_19_197 permit 65000:2 0:19 0:197 route-map calculator permit 10208 match community 2_19_197 set community 0:3743 ip community-list standard 2_99_228 permit 65000:2 0:99 0:228 ip community-list standard 2_108_209 permit 65000:2 0:108 0:209 ip community-list standard 2_114_198 permit 65000:2 0:114 0:198 ip community-list standard 2_132_171 permit 65000:2 0:132 0:171 route-map calculator permit 10209 match community 2_99_228 2_108_209 2_114_198 2_132_171 set community 0:22572 ip community-list standard 2_177_255 permit 65000:2 0:177 0:255 route-map calculator permit 10210 match community 2_177_255 set community 0:45135 ip community-list standard 2_117_203 permit 65000:2 0:117 0:203 route-map calculator permit 10211 match community 2_117_203 set community 0:23751 ip community-list standard 2_172_213 permit 65000:2 0:172 0:213 route-map calculator permit 10212 match community 2_172_213 set community 0:36636 ip community-list standard 2_9_101 permit 65000:2 0:9 0:101 route-map calculator permit 10213 match community 2_9_101 set community 0:909 ip community-list standard 2_5_65 permit 65000:2 0:5 0:65 ip community-list standard 2_13_25 permit 65000:2 0:13 0:25 ip community-list standard 1_69_256 permit 65000:1 0:69 0:256 ip community-list standard 1_70_255 permit 65000:1 0:70 0:255 ip community-list standard 1_71_254 permit 65000:1 0:71 0:254 ip community-list standard 1_72_253 permit 65000:1 0:72 0:253 ip community-list standard 1_73_252 permit 65000:1 0:73 0:252 ip community-list standard 1_74_251 permit 65000:1 0:74 0:251 ip community-list standard 1_75_250 permit 65000:1 0:75 0:250 ip community-list standard 1_76_249 permit 65000:1 0:76 0:249 ip community-list standard 1_77_248 permit 65000:1 0:77 0:248 ip community-list standard 1_78_247 permit 65000:1 0:78 0:247 ip community-list standard 1_79_246 permit 65000:1 0:79 0:246 ip community-list standard 1_80_245 permit 65000:1 0:80 0:245 ip community-list standard 1_81_244 permit 65000:1 0:81 0:244 ip community-list standard 1_82_243 permit 65000:1 0:82 0:243 ip community-list standard 1_83_242 permit 65000:1 0:83 0:242 ip community-list standard 1_84_241 permit 65000:1 0:84 0:241 ip community-list standard 1_85_240 permit 65000:1 0:85 0:240 ip community-list standard 1_86_239 permit 65000:1 0:86 0:239 ip community-list standard 1_87_238 permit 65000:1 0:87 0:238 ip community-list standard 1_88_237 permit 65000:1 0:88 0:237 ip community-list standard 1_89_236 permit 65000:1 0:89 0:236 ip community-list standard 1_90_235 permit 65000:1 0:90 0:235 ip community-list standard 1_91_234 permit 65000:1 0:91 0:234 ip community-list standard 1_92_233 permit 65000:1 0:92 0:233 ip community-list standard 1_93_232 permit 65000:1 0:93 0:232 ip community-list standard 1_94_231 permit 65000:1 0:94 0:231 ip community-list standard 1_95_230 permit 65000:1 0:95 0:230 ip community-list standard 1_96_229 permit 65000:1 0:96 0:229 ip community-list standard 1_97_228 permit 65000:1 0:97 0:228 ip community-list standard 1_98_227 permit 65000:1 0:98 0:227 ip community-list standard 1_99_226 permit 65000:1 0:99 0:226 ip community-list standard 1_100_225 permit 65000:1 0:100 0:225 ip community-list standard 1_101_224 permit 65000:1 0:101 0:224 ip community-list standard 1_102_223 permit 65000:1 0:102 0:223 ip community-list standard 1_103_222 permit 65000:1 0:103 0:222 ip community-list standard 1_104_221 permit 65000:1 0:104 0:221 ip community-list standard 1_105_220 permit 65000:1 0:105 0:220 ip community-list standard 1_106_219 permit 65000:1 0:106 0:219 ip community-list standard 1_107_218 permit 65000:1 0:107 0:218 ip community-list standard 1_108_217 permit 65000:1 0:108 0:217 ip community-list standard 1_109_216 permit 65000:1 0:109 0:216 ip community-list standard 1_110_215 permit 65000:1 0:110 0:215 ip community-list standard 1_111_214 permit 65000:1 0:111 0:214 ip community-list standard 1_112_213 permit 65000:1 0:112 0:213 ip community-list standard 1_113_212 permit 65000:1 0:113 0:212 ip community-list standard 1_114_211 permit 65000:1 0:114 0:211 ip community-list standard 1_115_210 permit 65000:1 0:115 0:210 ip community-list standard 1_116_209 permit 65000:1 0:116 0:209 ip community-list standard 1_117_208 permit 65000:1 0:117 0:208 ip community-list standard 1_118_207 permit 65000:1 0:118 0:207 ip community-list standard 1_119_206 permit 65000:1 0:119 0:206 ip community-list standard 1_120_205 permit 65000:1 0:120 0:205 ip community-list standard 1_121_204 permit 65000:1 0:121 0:204 ip community-list standard 1_122_203 permit 65000:1 0:122 0:203 ip community-list standard 1_123_202 permit 65000:1 0:123 0:202 ip community-list standard 1_124_201 permit 65000:1 0:124 0:201 ip community-list standard 1_125_200 permit 65000:1 0:125 0:200 ip community-list standard 1_126_199 permit 65000:1 0:126 0:199 ip community-list standard 1_127_198 permit 65000:1 0:127 0:198 ip community-list standard 1_128_197 permit 65000:1 0:128 0:197 ip community-list standard 1_129_196 permit 65000:1 0:129 0:196 ip community-list standard 1_130_195 permit 65000:1 0:130 0:195 ip community-list standard 1_131_194 permit 65000:1 0:131 0:194 ip community-list standard 1_132_193 permit 65000:1 0:132 0:193 ip community-list standard 1_133_192 permit 65000:1 0:133 0:192 ip community-list standard 1_134_191 permit 65000:1 0:134 0:191 ip community-list standard 1_135_190 permit 65000:1 0:135 0:190 ip community-list standard 1_136_189 permit 65000:1 0:136 0:189 ip community-list standard 1_137_188 permit 65000:1 0:137 0:188 ip community-list standard 1_138_187 permit 65000:1 0:138 0:187 ip community-list standard 1_139_186 permit 65000:1 0:139 0:186 ip community-list standard 1_140_185 permit 65000:1 0:140 0:185 ip community-list standard 1_141_184 permit 65000:1 0:141 0:184 ip community-list standard 1_142_183 permit 65000:1 0:142 0:183 ip community-list standard 1_143_182 permit 65000:1 0:143 0:182 ip community-list standard 1_144_181 permit 65000:1 0:144 0:181 ip community-list standard 1_145_180 permit 65000:1 0:145 0:180 ip community-list standard 1_146_179 permit 65000:1 0:146 0:179 ip community-list standard 1_147_178 permit 65000:1 0:147 0:178 ip community-list standard 1_148_177 permit 65000:1 0:148 0:177 ip community-list standard 1_149_176 permit 65000:1 0:149 0:176 ip community-list standard 1_150_175 permit 65000:1 0:150 0:175 ip community-list standard 1_151_174 permit 65000:1 0:151 0:174 ip community-list standard 1_152_173 permit 65000:1 0:152 0:173 ip community-list standard 1_153_172 permit 65000:1 0:153 0:172 ip community-list standard 1_154_171 permit 65000:1 0:154 0:171 ip community-list standard 1_155_170 permit 65000:1 0:155 0:170 ip community-list standard 1_156_169 permit 65000:1 0:156 0:169 ip community-list standard 1_157_168 permit 65000:1 0:157 0:168 ip community-list standard 1_158_167 permit 65000:1 0:158 0:167 ip community-list standard 1_159_166 permit 65000:1 0:159 0:166 ip community-list standard 1_160_165 permit 65000:1 0:160 0:165 ip community-list standard 1_161_164 permit 65000:1 0:161 0:164 ip community-list standard 1_162_163 permit 65000:1 0:162 0:163 route-map calculator permit 10214 match community 2_5_65 2_13_25 1_69_256 1_70_255 1_71_254 set community 0:325 route-map calculator permit 10215 match community 1_72_253 1_73_252 1_74_251 1_75_250 1_76_249 set community 0:325 route-map calculator permit 10216 match community 1_77_248 1_78_247 1_79_246 1_80_245 1_81_244 set community 0:325 route-map calculator permit 10217 match community 1_82_243 1_83_242 1_84_241 1_85_240 1_86_239 set community 0:325 route-map calculator permit 10218 match community 1_87_238 1_88_237 1_89_236 1_90_235 1_91_234 set community 0:325 route-map calculator permit 10219 match community 1_92_233 1_93_232 1_94_231 1_95_230 1_96_229 set community 0:325 route-map calculator permit 10220 match community 1_97_228 1_98_227 1_99_226 1_100_225 1_101_224 set community 0:325 route-map calculator permit 10221 match community 1_102_223 1_103_222 1_104_221 1_105_220 1_106_219 set community 0:325 route-map calculator permit 10222 match community 1_107_218 1_108_217 1_109_216 1_110_215 1_111_214 set community 0:325 route-map calculator permit 10223 match community 1_112_213 1_113_212 1_114_211 1_115_210 1_116_209 set community 0:325 route-map calculator permit 10224 match community 1_117_208 1_118_207 1_119_206 1_120_205 1_121_204 set community 0:325 route-map calculator permit 10225 match community 1_122_203 1_123_202 1_124_201 1_125_200 1_126_199 set community 0:325 route-map calculator permit 10226 match community 1_127_198 1_128_197 1_129_196 1_130_195 1_131_194 set community 0:325 route-map calculator permit 10227 match community 1_132_193 1_133_192 1_134_191 1_135_190 1_136_189 set community 0:325 route-map calculator permit 10228 match community 1_137_188 1_138_187 1_139_186 1_140_185 1_141_184 set community 0:325 route-map calculator permit 10229 match community 1_142_183 1_143_182 1_144_181 1_145_180 1_146_179 set community 0:325 route-map calculator permit 10230 match community 1_147_178 1_148_177 1_149_176 1_150_175 1_151_174 set community 0:325 route-map calculator permit 10231 match community 1_152_173 1_153_172 1_154_171 1_155_170 1_156_169 set community 0:325 route-map calculator permit 10232 match community 1_157_168 1_158_167 1_159_166 1_160_165 1_161_164 set community 0:325 route-map calculator permit 10233 match community 1_162_163 set community 0:325 ip community-list standard 2_91_177 permit 65000:2 0:91 0:177 route-map calculator permit 10234 match community 2_91_177 set community 0:16107 ip community-list standard 2_29_37 permit 65000:2 0:29 0:37 route-map calculator permit 10235 match community 2_29_37 set community 0:1073 ip community-list standard 2_36_241 permit 65000:2 0:36 0:241 route-map calculator permit 10236 match community 2_36_241 set community 0:8676 ip community-list standard 2_123_247 permit 65000:2 0:123 0:247 route-map calculator permit 10237 match community 2_123_247 set community 0:30381 ip community-list standard 2_34_149 permit 65000:2 0:34 0:149 route-map calculator permit 10238 match community 2_34_149 set community 0:5066 ip community-list standard 2_36_242 permit 65000:2 0:36 0:242 ip community-list standard 2_44_198 permit 65000:2 0:44 0:198 ip community-list standard 2_66_132 permit 65000:2 0:66 0:132 ip community-list standard 2_72_121 permit 65000:2 0:72 0:121 ip community-list standard 2_88_99 permit 65000:2 0:88 0:99 route-map calculator permit 10239 match community 2_36_242 2_44_198 2_66_132 2_72_121 2_88_99 set community 0:8712 ip community-list standard 2_67_219 permit 65000:2 0:67 0:219 ip community-list standard 2_73_201 permit 65000:2 0:73 0:201 route-map calculator permit 10240 match community 2_67_219 2_73_201 set community 0:14673 ip community-list standard 2_118_173 permit 65000:2 0:118 0:173 route-map calculator permit 10241 match community 2_118_173 set community 0:20414 ip community-list standard 2_38_183 permit 65000:2 0:38 0:183 ip community-list standard 2_57_122 permit 65000:2 0:57 0:122 ip community-list standard 2_61_114 permit 65000:2 0:61 0:114 route-map calculator permit 10242 match community 2_38_183 2_57_122 2_61_114 set community 0:6954 ip community-list standard 2_160_218 permit 65000:2 0:160 0:218 route-map calculator permit 10243 match community 2_160_218 set community 0:34880 ip community-list standard 2_171_171 permit 65000:2 0:171 0:171 route-map calculator permit 10244 match community 2_171_171 set community 0:29241 ip community-list standard 2_51_107 permit 65000:2 0:51 0:107 route-map calculator permit 10245 match community 2_51_107 set community 0:5457 ip community-list standard 2_38_242 permit 65000:2 0:38 0:242 ip community-list standard 2_44_209 permit 65000:2 0:44 0:209 ip community-list standard 2_76_121 permit 65000:2 0:76 0:121 route-map calculator permit 10246 match community 2_38_242 2_44_209 2_76_121 set community 0:9196 ip community-list standard 2_75_205 permit 65000:2 0:75 0:205 ip community-list standard 2_123_125 permit 65000:2 0:123 0:125 route-map calculator permit 10247 match community 2_75_205 2_123_125 set community 0:15375 ip community-list standard 2_68_222 permit 65000:2 0:68 0:222 ip community-list standard 2_74_204 permit 65000:2 0:74 0:204 ip community-list standard 2_102_148 permit 65000:2 0:102 0:148 ip community-list standard 2_111_136 permit 65000:2 0:111 0:136 route-map calculator permit 10248 match community 2_68_222 2_74_204 2_102_148 2_111_136 set community 0:15096 ip community-list standard 2_130_252 permit 65000:2 0:130 0:252 ip community-list standard 2_140_234 permit 65000:2 0:140 0:234 ip community-list standard 2_156_210 permit 65000:2 0:156 0:210 ip community-list standard 2_168_195 permit 65000:2 0:168 0:195 ip community-list standard 2_180_182 permit 65000:2 0:180 0:182 route-map calculator permit 10249 match community 2_130_252 2_140_234 2_156_210 2_168_195 2_180_182 set community 0:32760 ip community-list standard 1_1_196 permit 65000:1 0:1 0:196 ip community-list standard 2_1_197 permit 65000:2 0:1 0:197 ip community-list standard 1_2_195 permit 65000:1 0:2 0:195 ip community-list standard 1_3_194 permit 65000:1 0:3 0:194 ip community-list standard 1_4_193 permit 65000:1 0:4 0:193 ip community-list standard 1_5_192 permit 65000:1 0:5 0:192 ip community-list standard 1_6_191 permit 65000:1 0:6 0:191 ip community-list standard 1_7_190 permit 65000:1 0:7 0:190 ip community-list standard 1_8_189 permit 65000:1 0:8 0:189 ip community-list standard 1_9_188 permit 65000:1 0:9 0:188 ip community-list standard 1_10_187 permit 65000:1 0:10 0:187 ip community-list standard 1_11_186 permit 65000:1 0:11 0:186 ip community-list standard 1_12_185 permit 65000:1 0:12 0:185 ip community-list standard 1_13_184 permit 65000:1 0:13 0:184 ip community-list standard 1_14_183 permit 65000:1 0:14 0:183 ip community-list standard 1_15_182 permit 65000:1 0:15 0:182 ip community-list standard 1_16_181 permit 65000:1 0:16 0:181 ip community-list standard 1_17_180 permit 65000:1 0:17 0:180 ip community-list standard 1_18_179 permit 65000:1 0:18 0:179 ip community-list standard 1_19_178 permit 65000:1 0:19 0:178 ip community-list standard 1_20_177 permit 65000:1 0:20 0:177 ip community-list standard 1_21_176 permit 65000:1 0:21 0:176 ip community-list standard 1_22_175 permit 65000:1 0:22 0:175 ip community-list standard 1_23_174 permit 65000:1 0:23 0:174 ip community-list standard 1_24_173 permit 65000:1 0:24 0:173 ip community-list standard 1_25_172 permit 65000:1 0:25 0:172 ip community-list standard 1_26_171 permit 65000:1 0:26 0:171 ip community-list standard 1_27_170 permit 65000:1 0:27 0:170 ip community-list standard 1_28_169 permit 65000:1 0:28 0:169 ip community-list standard 1_29_168 permit 65000:1 0:29 0:168 ip community-list standard 1_30_167 permit 65000:1 0:30 0:167 ip community-list standard 1_31_166 permit 65000:1 0:31 0:166 ip community-list standard 1_32_165 permit 65000:1 0:32 0:165 ip community-list standard 1_33_164 permit 65000:1 0:33 0:164 ip community-list standard 1_34_163 permit 65000:1 0:34 0:163 ip community-list standard 1_35_162 permit 65000:1 0:35 0:162 ip community-list standard 1_36_161 permit 65000:1 0:36 0:161 ip community-list standard 1_37_160 permit 65000:1 0:37 0:160 ip community-list standard 1_38_159 permit 65000:1 0:38 0:159 ip community-list standard 1_39_158 permit 65000:1 0:39 0:158 ip community-list standard 1_40_157 permit 65000:1 0:40 0:157 ip community-list standard 1_41_156 permit 65000:1 0:41 0:156 ip community-list standard 1_42_155 permit 65000:1 0:42 0:155 ip community-list standard 1_43_154 permit 65000:1 0:43 0:154 ip community-list standard 1_44_153 permit 65000:1 0:44 0:153 ip community-list standard 1_45_152 permit 65000:1 0:45 0:152 ip community-list standard 1_46_151 permit 65000:1 0:46 0:151 ip community-list standard 1_47_150 permit 65000:1 0:47 0:150 ip community-list standard 1_48_149 permit 65000:1 0:48 0:149 ip community-list standard 1_49_148 permit 65000:1 0:49 0:148 ip community-list standard 1_50_147 permit 65000:1 0:50 0:147 ip community-list standard 1_51_146 permit 65000:1 0:51 0:146 ip community-list standard 1_52_145 permit 65000:1 0:52 0:145 ip community-list standard 1_53_144 permit 65000:1 0:53 0:144 ip community-list standard 1_54_143 permit 65000:1 0:54 0:143 ip community-list standard 1_55_142 permit 65000:1 0:55 0:142 ip community-list standard 1_56_141 permit 65000:1 0:56 0:141 ip community-list standard 1_57_140 permit 65000:1 0:57 0:140 ip community-list standard 1_58_139 permit 65000:1 0:58 0:139 ip community-list standard 1_59_138 permit 65000:1 0:59 0:138 ip community-list standard 1_60_137 permit 65000:1 0:60 0:137 ip community-list standard 1_61_136 permit 65000:1 0:61 0:136 ip community-list standard 1_62_135 permit 65000:1 0:62 0:135 ip community-list standard 1_63_134 permit 65000:1 0:63 0:134 ip community-list standard 1_64_133 permit 65000:1 0:64 0:133 ip community-list standard 1_65_132 permit 65000:1 0:65 0:132 ip community-list standard 1_66_131 permit 65000:1 0:66 0:131 ip community-list standard 1_67_130 permit 65000:1 0:67 0:130 ip community-list standard 1_68_129 permit 65000:1 0:68 0:129 ip community-list standard 1_69_128 permit 65000:1 0:69 0:128 ip community-list standard 1_70_127 permit 65000:1 0:70 0:127 ip community-list standard 1_71_126 permit 65000:1 0:71 0:126 ip community-list standard 1_72_125 permit 65000:1 0:72 0:125 ip community-list standard 1_73_124 permit 65000:1 0:73 0:124 ip community-list standard 1_74_123 permit 65000:1 0:74 0:123 ip community-list standard 1_75_122 permit 65000:1 0:75 0:122 ip community-list standard 1_76_121 permit 65000:1 0:76 0:121 ip community-list standard 1_77_120 permit 65000:1 0:77 0:120 ip community-list standard 1_78_119 permit 65000:1 0:78 0:119 ip community-list standard 1_79_118 permit 65000:1 0:79 0:118 ip community-list standard 1_80_117 permit 65000:1 0:80 0:117 ip community-list standard 1_81_116 permit 65000:1 0:81 0:116 ip community-list standard 1_82_115 permit 65000:1 0:82 0:115 ip community-list standard 1_83_114 permit 65000:1 0:83 0:114 ip community-list standard 1_84_113 permit 65000:1 0:84 0:113 ip community-list standard 1_85_112 permit 65000:1 0:85 0:112 ip community-list standard 1_86_111 permit 65000:1 0:86 0:111 ip community-list standard 1_87_110 permit 65000:1 0:87 0:110 ip community-list standard 1_88_109 permit 65000:1 0:88 0:109 ip community-list standard 1_89_108 permit 65000:1 0:89 0:108 ip community-list standard 1_90_107 permit 65000:1 0:90 0:107 ip community-list standard 1_91_106 permit 65000:1 0:91 0:106 ip community-list standard 1_92_105 permit 65000:1 0:92 0:105 ip community-list standard 1_93_104 permit 65000:1 0:93 0:104 ip community-list standard 1_94_103 permit 65000:1 0:94 0:103 ip community-list standard 1_95_102 permit 65000:1 0:95 0:102 ip community-list standard 1_96_101 permit 65000:1 0:96 0:101 ip community-list standard 1_97_100 permit 65000:1 0:97 0:100 ip community-list standard 1_98_99 permit 65000:1 0:98 0:99 ip community-list expanded c197 permit 1 ^65000:4_0:197_0:1$ ip community-list expanded c197 permit 2 ^65000:3_0:198_0:1$ ip community-list expanded c197 permit 3 ^65000:3_0:199_0:2$ ip community-list expanded c197 permit 4 ^65000:3_0:200_0:3$ ip community-list expanded c197 permit 5 ^65000:3_0:201_0:4$ ip community-list expanded c197 permit 6 ^65000:3_0:202_0:5$ ip community-list expanded c197 permit 7 ^65000:3_0:203_0:6$ ip community-list expanded c197 permit 8 ^65000:3_0:204_0:7$ ip community-list expanded c197 permit 9 ^65000:3_0:205_0:8$ ip community-list expanded c197 permit 10 ^65000:3_0:206_0:9$ ip community-list expanded c197 permit 11 ^65000:3_0:207_0:10$ ip community-list expanded c197 permit 12 ^65000:3_0:208_0:11$ ip community-list expanded c197 permit 13 ^65000:3_0:209_0:12$ ip community-list expanded c197 permit 14 ^65000:3_0:210_0:13$ ip community-list expanded c197 permit 15 ^65000:3_0:211_0:14$ ip community-list expanded c197 permit 16 ^65000:3_0:212_0:15$ ip community-list expanded c197 permit 17 ^65000:3_0:213_0:16$ ip community-list expanded c197 permit 18 ^65000:3_0:214_0:17$ ip community-list expanded c197 permit 19 ^65000:3_0:215_0:18$ ip community-list expanded c197 permit 20 ^65000:3_0:216_0:19$ ip community-list expanded c197 permit 21 ^65000:3_0:217_0:20$ ip community-list expanded c197 permit 22 ^65000:3_0:218_0:21$ ip community-list expanded c197 permit 23 ^65000:3_0:219_0:22$ ip community-list expanded c197 permit 24 ^65000:3_0:220_0:23$ ip community-list expanded c197 permit 25 ^65000:3_0:221_0:24$ ip community-list expanded c197 permit 26 ^65000:3_0:222_0:25$ ip community-list expanded c197 permit 27 ^65000:3_0:223_0:26$ ip community-list expanded c197 permit 28 ^65000:3_0:224_0:27$ ip community-list expanded c197 permit 29 ^65000:3_0:225_0:28$ ip community-list expanded c197 permit 30 ^65000:3_0:226_0:29$ ip community-list expanded c197 permit 31 ^65000:3_0:227_0:30$ ip community-list expanded c197 permit 32 ^65000:3_0:228_0:31$ ip community-list expanded c197 permit 33 ^65000:3_0:229_0:32$ ip community-list expanded c197 permit 34 ^65000:3_0:230_0:33$ ip community-list expanded c197 permit 35 ^65000:3_0:231_0:34$ ip community-list expanded c197 permit 36 ^65000:3_0:232_0:35$ ip community-list expanded c197 permit 37 ^65000:3_0:233_0:36$ ip community-list expanded c197 permit 38 ^65000:3_0:234_0:37$ ip community-list expanded c197 permit 39 ^65000:3_0:235_0:38$ ip community-list expanded c197 permit 40 ^65000:3_0:236_0:39$ ip community-list expanded c197 permit 41 ^65000:3_0:237_0:40$ ip community-list expanded c197 permit 42 ^65000:3_0:238_0:41$ ip community-list expanded c197 permit 43 ^65000:3_0:239_0:42$ ip community-list expanded c197 permit 44 ^65000:3_0:240_0:43$ ip community-list expanded c197 permit 45 ^65000:3_0:241_0:44$ ip community-list expanded c197 permit 46 ^65000:3_0:242_0:45$ ip community-list expanded c197 permit 47 ^65000:3_0:243_0:46$ ip community-list expanded c197 permit 48 ^65000:3_0:244_0:47$ ip community-list expanded c197 permit 49 ^65000:3_0:245_0:48$ ip community-list expanded c197 permit 50 ^65000:3_0:246_0:49$ ip community-list expanded c197 permit 51 ^65000:3_0:247_0:50$ ip community-list expanded c197 permit 52 ^65000:3_0:248_0:51$ ip community-list expanded c197 permit 53 ^65000:3_0:249_0:52$ ip community-list expanded c197 permit 54 ^65000:3_0:250_0:53$ ip community-list expanded c197 permit 55 ^65000:3_0:251_0:54$ ip community-list expanded c197 permit 56 ^65000:3_0:252_0:55$ ip community-list expanded c197 permit 57 ^65000:3_0:253_0:56$ ip community-list expanded c197 permit 58 ^65000:3_0:254_0:57$ ip community-list expanded c197 permit 59 ^65000:3_0:255_0:58$ ip community-list expanded c197 permit 60 ^65000:3_0:256_0:59$ route-map calculator permit 10250 match community 1_1_196 2_1_197 1_2_195 1_3_194 1_4_193 set community 0:197 route-map calculator permit 10251 match community 1_5_192 1_6_191 1_7_190 1_8_189 1_9_188 set community 0:197 route-map calculator permit 10252 match community 1_10_187 1_11_186 1_12_185 1_13_184 1_14_183 set community 0:197 route-map calculator permit 10253 match community 1_15_182 1_16_181 1_17_180 1_18_179 1_19_178 set community 0:197 route-map calculator permit 10254 match community 1_20_177 1_21_176 1_22_175 1_23_174 1_24_173 set community 0:197 route-map calculator permit 10255 match community 1_25_172 1_26_171 1_27_170 1_28_169 1_29_168 set community 0:197 route-map calculator permit 10256 match community 1_30_167 1_31_166 1_32_165 1_33_164 1_34_163 set community 0:197 route-map calculator permit 10257 match community 1_35_162 1_36_161 1_37_160 1_38_159 1_39_158 set community 0:197 route-map calculator permit 10258 match community 1_40_157 1_41_156 1_42_155 1_43_154 1_44_153 set community 0:197 route-map calculator permit 10259 match community 1_45_152 1_46_151 1_47_150 1_48_149 1_49_148 set community 0:197 route-map calculator permit 10260 match community 1_50_147 1_51_146 1_52_145 1_53_144 1_54_143 set community 0:197 route-map calculator permit 10261 match community 1_55_142 1_56_141 1_57_140 1_58_139 1_59_138 set community 0:197 route-map calculator permit 10262 match community 1_60_137 1_61_136 1_62_135 1_63_134 1_64_133 set community 0:197 route-map calculator permit 10263 match community 1_65_132 1_66_131 1_67_130 1_68_129 1_69_128 set community 0:197 route-map calculator permit 10264 match community 1_70_127 1_71_126 1_72_125 1_73_124 1_74_123 set community 0:197 route-map calculator permit 10265 match community 1_75_122 1_76_121 1_77_120 1_78_119 1_79_118 set community 0:197 route-map calculator permit 10266 match community 1_80_117 1_81_116 1_82_115 1_83_114 1_84_113 set community 0:197 route-map calculator permit 10267 match community 1_85_112 1_86_111 1_87_110 1_88_109 1_89_108 set community 0:197 route-map calculator permit 10268 match community 1_90_107 1_91_106 1_92_105 1_93_104 1_94_103 set community 0:197 route-map calculator permit 10269 match community 1_95_102 1_96_101 1_97_100 1_98_99 c4_197_1 set community 0:197 route-map calculator permit 10270 match community c3_198_1 c3_199_2 c3_200_3 c3_201_4 c3_202_5 set community 0:197 route-map calculator permit 10271 match community c3_203_6 c3_204_7 c3_205_8 c3_206_9 c3_207_10 set community 0:197 route-map calculator permit 10272 match community c3_208_11 c3_209_12 c3_210_13 c3_211_14 c3_212_15 set community 0:197 route-map calculator permit 10273 match community c3_213_16 c3_214_17 c3_215_18 c3_216_19 c3_217_20 set community 0:197 route-map calculator permit 10274 match community c3_218_21 c3_219_22 c3_220_23 c3_221_24 c3_222_25 set community 0:197 route-map calculator permit 10275 match community c3_223_26 c3_224_27 c3_225_28 c3_226_29 c3_227_30 set community 0:197 route-map calculator permit 10276 match community c3_228_31 c3_229_32 c3_230_33 c3_231_34 c3_232_35 set community 0:197 route-map calculator permit 10277 match community c3_233_36 c3_234_37 c3_235_38 c3_236_39 c3_237_40 set community 0:197 route-map calculator permit 10278 match community c3_238_41 c3_239_42 c3_240_43 c3_241_44 c3_242_45 set community 0:197 route-map calculator permit 10279 match community c3_243_46 c3_244_47 c3_245_48 c3_246_49 c3_247_50 set community 0:197 route-map calculator permit 10280 match community c3_248_51 c3_249_52 c3_250_53 c3_251_54 c3_252_55 set community 0:197 route-map calculator permit 10281 match community c3_253_56 c3_254_57 c3_255_58 c3_256_59 set community 0:197 ip community-list standard 2_25_243 permit 65000:2 0:25 0:243 ip community-list standard 2_27_225 permit 65000:2 0:27 0:225 ip community-list standard 2_45_135 permit 65000:2 0:45 0:135 ip community-list standard 2_75_81 permit 65000:2 0:75 0:81 route-map calculator permit 10282 match community 2_25_243 2_27_225 2_45_135 2_75_81 set community 0:6075 ip community-list standard 2_137_162 permit 65000:2 0:137 0:162 route-map calculator permit 10283 match community 2_137_162 set community 0:22194 ip community-list standard 2_76_228 permit 65000:2 0:76 0:228 ip community-list standard 2_114_152 permit 65000:2 0:114 0:152 route-map calculator permit 10284 match community 2_76_228 2_114_152 set community 0:17328 ip community-list standard 2_114_228 permit 65000:2 0:114 0:228 ip community-list standard 2_152_171 permit 65000:2 0:152 0:171 route-map calculator permit 10285 match community 2_114_228 2_152_171 set community 0:25992 ip community-list standard 2_191_241 permit 65000:2 0:191 0:241 route-map calculator permit 10286 match community 2_191_241 set community 0:46031 ip community-list standard 2_186_219 permit 65000:2 0:186 0:219 route-map calculator permit 10287 match community 2_186_219 set community 0:40734 ip community-list standard 2_150_226 permit 65000:2 0:150 0:226 route-map calculator permit 10288 match community 2_150_226 set community 0:33900 ip community-list standard 2_161_226 permit 65000:2 0:161 0:226 route-map calculator permit 10289 match community 2_161_226 set community 0:36386 ip community-list standard 2_166_227 permit 65000:2 0:166 0:227 route-map calculator permit 10290 match community 2_166_227 set community 0:37682 ip community-list standard 1_1_140 permit 65000:1 0:1 0:140 ip community-list standard 2_1_141 permit 65000:2 0:1 0:141 ip community-list standard 1_2_139 permit 65000:1 0:2 0:139 ip community-list standard 2_3_47 permit 65000:2 0:3 0:47 ip community-list standard 1_3_138 permit 65000:1 0:3 0:138 ip community-list standard 1_4_137 permit 65000:1 0:4 0:137 ip community-list standard 1_5_136 permit 65000:1 0:5 0:136 ip community-list standard 1_6_135 permit 65000:1 0:6 0:135 ip community-list standard 1_7_134 permit 65000:1 0:7 0:134 ip community-list standard 1_8_133 permit 65000:1 0:8 0:133 ip community-list standard 1_9_132 permit 65000:1 0:9 0:132 ip community-list standard 1_10_131 permit 65000:1 0:10 0:131 ip community-list standard 1_11_130 permit 65000:1 0:11 0:130 ip community-list standard 1_12_129 permit 65000:1 0:12 0:129 ip community-list standard 1_13_128 permit 65000:1 0:13 0:128 ip community-list standard 1_14_127 permit 65000:1 0:14 0:127 ip community-list standard 1_15_126 permit 65000:1 0:15 0:126 ip community-list standard 1_16_125 permit 65000:1 0:16 0:125 ip community-list standard 1_17_124 permit 65000:1 0:17 0:124 ip community-list standard 1_18_123 permit 65000:1 0:18 0:123 ip community-list standard 1_19_122 permit 65000:1 0:19 0:122 ip community-list standard 1_20_121 permit 65000:1 0:20 0:121 ip community-list standard 1_21_120 permit 65000:1 0:21 0:120 ip community-list standard 1_22_119 permit 65000:1 0:22 0:119 ip community-list standard 1_23_118 permit 65000:1 0:23 0:118 ip community-list standard 1_24_117 permit 65000:1 0:24 0:117 ip community-list standard 1_25_116 permit 65000:1 0:25 0:116 ip community-list standard 1_26_115 permit 65000:1 0:26 0:115 ip community-list standard 1_27_114 permit 65000:1 0:27 0:114 ip community-list standard 1_28_113 permit 65000:1 0:28 0:113 ip community-list standard 1_29_112 permit 65000:1 0:29 0:112 ip community-list standard 1_30_111 permit 65000:1 0:30 0:111 ip community-list standard 1_31_110 permit 65000:1 0:31 0:110 ip community-list standard 1_32_109 permit 65000:1 0:32 0:109 ip community-list standard 1_33_108 permit 65000:1 0:33 0:108 ip community-list standard 1_34_107 permit 65000:1 0:34 0:107 ip community-list standard 1_35_106 permit 65000:1 0:35 0:106 ip community-list standard 1_36_105 permit 65000:1 0:36 0:105 ip community-list standard 1_37_104 permit 65000:1 0:37 0:104 ip community-list standard 1_38_103 permit 65000:1 0:38 0:103 ip community-list standard 1_39_102 permit 65000:1 0:39 0:102 ip community-list standard 1_40_101 permit 65000:1 0:40 0:101 ip community-list standard 1_41_100 permit 65000:1 0:41 0:100 ip community-list standard 1_42_99 permit 65000:1 0:42 0:99 ip community-list standard 1_43_98 permit 65000:1 0:43 0:98 ip community-list standard 1_44_97 permit 65000:1 0:44 0:97 ip community-list standard 1_45_96 permit 65000:1 0:45 0:96 ip community-list standard 1_46_95 permit 65000:1 0:46 0:95 ip community-list standard 1_47_94 permit 65000:1 0:47 0:94 ip community-list standard 1_48_93 permit 65000:1 0:48 0:93 ip community-list standard 1_49_92 permit 65000:1 0:49 0:92 ip community-list standard 1_50_91 permit 65000:1 0:50 0:91 ip community-list standard 1_51_90 permit 65000:1 0:51 0:90 ip community-list standard 1_52_89 permit 65000:1 0:52 0:89 ip community-list standard 1_53_88 permit 65000:1 0:53 0:88 ip community-list standard 1_54_87 permit 65000:1 0:54 0:87 ip community-list standard 1_55_86 permit 65000:1 0:55 0:86 ip community-list standard 1_56_85 permit 65000:1 0:56 0:85 ip community-list standard 1_57_84 permit 65000:1 0:57 0:84 ip community-list standard 1_58_83 permit 65000:1 0:58 0:83 ip community-list standard 1_59_82 permit 65000:1 0:59 0:82 ip community-list standard 1_60_81 permit 65000:1 0:60 0:81 ip community-list standard 1_61_80 permit 65000:1 0:61 0:80 ip community-list standard 1_62_79 permit 65000:1 0:62 0:79 ip community-list standard 1_63_78 permit 65000:1 0:63 0:78 ip community-list standard 1_64_77 permit 65000:1 0:64 0:77 ip community-list standard 1_65_76 permit 65000:1 0:65 0:76 ip community-list standard 1_66_75 permit 65000:1 0:66 0:75 ip community-list standard 1_67_74 permit 65000:1 0:67 0:74 ip community-list standard 1_68_73 permit 65000:1 0:68 0:73 ip community-list standard 1_69_72 permit 65000:1 0:69 0:72 ip community-list standard 1_70_71 permit 65000:1 0:70 0:71 ip community-list expanded c141 permit 1 ^65000:4_0:141_0:1$ ip community-list expanded c141 permit 2 ^65000:3_0:142_0:1$ ip community-list expanded c141 permit 3 ^65000:3_0:143_0:2$ ip community-list expanded c141 permit 4 ^65000:3_0:144_0:3$ ip community-list expanded c141 permit 5 ^65000:3_0:145_0:4$ ip community-list expanded c141 permit 6 ^65000:3_0:146_0:5$ ip community-list expanded c141 permit 7 ^65000:3_0:147_0:6$ ip community-list expanded c141 permit 8 ^65000:3_0:148_0:7$ ip community-list expanded c141 permit 9 ^65000:3_0:149_0:8$ ip community-list expanded c141 permit 10 ^65000:3_0:150_0:9$ ip community-list expanded c141 permit 11 ^65000:3_0:151_0:10$ ip community-list expanded c141 permit 12 ^65000:3_0:152_0:11$ ip community-list expanded c141 permit 13 ^65000:3_0:153_0:12$ ip community-list expanded c141 permit 14 ^65000:3_0:154_0:13$ ip community-list expanded c141 permit 15 ^65000:3_0:155_0:14$ ip community-list expanded c141 permit 16 ^65000:3_0:156_0:15$ ip community-list expanded c141 permit 17 ^65000:3_0:157_0:16$ ip community-list expanded c141 permit 18 ^65000:3_0:158_0:17$ ip community-list expanded c141 permit 19 ^65000:3_0:159_0:18$ ip community-list expanded c141 permit 20 ^65000:3_0:160_0:19$ ip community-list expanded c141 permit 21 ^65000:3_0:161_0:20$ ip community-list expanded c141 permit 22 ^65000:3_0:162_0:21$ ip community-list expanded c141 permit 23 ^65000:3_0:163_0:22$ ip community-list expanded c141 permit 24 ^65000:3_0:164_0:23$ ip community-list expanded c141 permit 25 ^65000:3_0:165_0:24$ ip community-list expanded c141 permit 26 ^65000:3_0:166_0:25$ ip community-list expanded c141 permit 27 ^65000:3_0:167_0:26$ ip community-list expanded c141 permit 28 ^65000:3_0:168_0:27$ ip community-list expanded c141 permit 29 ^65000:3_0:169_0:28$ ip community-list expanded c141 permit 30 ^65000:3_0:170_0:29$ ip community-list expanded c141 permit 31 ^65000:3_0:171_0:30$ ip community-list expanded c141 permit 32 ^65000:3_0:172_0:31$ ip community-list expanded c141 permit 33 ^65000:3_0:173_0:32$ ip community-list expanded c141 permit 34 ^65000:3_0:174_0:33$ ip community-list expanded c141 permit 35 ^65000:3_0:175_0:34$ ip community-list expanded c141 permit 36 ^65000:3_0:176_0:35$ ip community-list expanded c141 permit 37 ^65000:3_0:177_0:36$ ip community-list expanded c141 permit 38 ^65000:3_0:178_0:37$ ip community-list expanded c141 permit 39 ^65000:3_0:179_0:38$ ip community-list expanded c141 permit 40 ^65000:3_0:180_0:39$ ip community-list expanded c141 permit 41 ^65000:3_0:181_0:40$ ip community-list expanded c141 permit 42 ^65000:3_0:182_0:41$ ip community-list expanded c141 permit 43 ^65000:3_0:183_0:42$ ip community-list expanded c141 permit 44 ^65000:3_0:184_0:43$ ip community-list expanded c141 permit 45 ^65000:3_0:185_0:44$ ip community-list expanded c141 permit 46 ^65000:3_0:186_0:45$ ip community-list expanded c141 permit 47 ^65000:3_0:187_0:46$ ip community-list expanded c141 permit 48 ^65000:3_0:188_0:47$ ip community-list expanded c141 permit 49 ^65000:3_0:189_0:48$ ip community-list expanded c141 permit 50 ^65000:3_0:190_0:49$ ip community-list expanded c141 permit 51 ^65000:3_0:191_0:50$ ip community-list expanded c141 permit 52 ^65000:3_0:192_0:51$ ip community-list expanded c141 permit 53 ^65000:3_0:193_0:52$ ip community-list expanded c141 permit 54 ^65000:3_0:194_0:53$ ip community-list expanded c141 permit 55 ^65000:3_0:195_0:54$ ip community-list expanded c141 permit 56 ^65000:3_0:196_0:55$ ip community-list expanded c141 permit 57 ^65000:3_0:197_0:56$ ip community-list expanded c141 permit 58 ^65000:3_0:198_0:57$ ip community-list expanded c141 permit 59 ^65000:3_0:199_0:58$ ip community-list expanded c141 permit 60 ^65000:3_0:200_0:59$ ip community-list expanded c141 permit 61 ^65000:3_0:201_0:60$ ip community-list expanded c141 permit 62 ^65000:3_0:202_0:61$ ip community-list expanded c141 permit 63 ^65000:3_0:203_0:62$ ip community-list expanded c141 permit 64 ^65000:3_0:204_0:63$ ip community-list expanded c141 permit 65 ^65000:3_0:205_0:64$ ip community-list expanded c141 permit 66 ^65000:3_0:206_0:65$ ip community-list expanded c141 permit 67 ^65000:3_0:207_0:66$ ip community-list expanded c141 permit 68 ^65000:3_0:208_0:67$ ip community-list expanded c141 permit 69 ^65000:3_0:209_0:68$ ip community-list expanded c141 permit 70 ^65000:3_0:210_0:69$ ip community-list expanded c141 permit 71 ^65000:3_0:211_0:70$ ip community-list expanded c141 permit 72 ^65000:3_0:212_0:71$ ip community-list expanded c141 permit 73 ^65000:3_0:213_0:72$ ip community-list expanded c141 permit 74 ^65000:3_0:214_0:73$ ip community-list expanded c141 permit 75 ^65000:3_0:215_0:74$ ip community-list expanded c141 permit 76 ^65000:3_0:216_0:75$ ip community-list expanded c141 permit 77 ^65000:3_0:217_0:76$ ip community-list expanded c141 permit 78 ^65000:3_0:218_0:77$ ip community-list expanded c141 permit 79 ^65000:3_0:219_0:78$ ip community-list expanded c141 permit 80 ^65000:3_0:220_0:79$ ip community-list expanded c141 permit 81 ^65000:3_0:221_0:80$ ip community-list expanded c141 permit 82 ^65000:3_0:222_0:81$ ip community-list expanded c141 permit 83 ^65000:3_0:223_0:82$ ip community-list expanded c141 permit 84 ^65000:3_0:224_0:83$ ip community-list expanded c141 permit 85 ^65000:3_0:225_0:84$ ip community-list expanded c141 permit 86 ^65000:3_0:226_0:85$ ip community-list expanded c141 permit 87 ^65000:3_0:227_0:86$ ip community-list expanded c141 permit 88 ^65000:3_0:228_0:87$ ip community-list expanded c141 permit 89 ^65000:3_0:229_0:88$ ip community-list expanded c141 permit 90 ^65000:3_0:230_0:89$ ip community-list expanded c141 permit 91 ^65000:3_0:231_0:90$ ip community-list expanded c141 permit 92 ^65000:3_0:232_0:91$ ip community-list expanded c141 permit 93 ^65000:3_0:233_0:92$ ip community-list expanded c141 permit 94 ^65000:3_0:234_0:93$ ip community-list expanded c141 permit 95 ^65000:3_0:235_0:94$ ip community-list expanded c141 permit 96 ^65000:3_0:236_0:95$ ip community-list expanded c141 permit 97 ^65000:3_0:237_0:96$ ip community-list expanded c141 permit 98 ^65000:3_0:238_0:97$ ip community-list expanded c141 permit 99 ^65000:3_0:239_0:98$ ip community-list expanded c141 permit 100 ^65000:3_0:240_0:99$ ip community-list expanded c141 permit 101 ^65000:3_0:241_0:100$ ip community-list expanded c141 permit 102 ^65000:3_0:242_0:101$ ip community-list expanded c141 permit 103 ^65000:3_0:243_0:102$ ip community-list expanded c141 permit 104 ^65000:3_0:244_0:103$ ip community-list expanded c141 permit 105 ^65000:3_0:245_0:104$ ip community-list expanded c141 permit 106 ^65000:3_0:246_0:105$ ip community-list expanded c141 permit 107 ^65000:3_0:247_0:106$ ip community-list expanded c141 permit 108 ^65000:3_0:248_0:107$ ip community-list expanded c141 permit 109 ^65000:3_0:249_0:108$ ip community-list expanded c141 permit 110 ^65000:3_0:250_0:109$ ip community-list expanded c141 permit 111 ^65000:3_0:251_0:110$ ip community-list expanded c141 permit 112 ^65000:3_0:252_0:111$ ip community-list expanded c141 permit 113 ^65000:3_0:253_0:112$ ip community-list expanded c141 permit 114 ^65000:3_0:254_0:113$ ip community-list expanded c141 permit 115 ^65000:3_0:255_0:114$ ip community-list expanded c141 permit 116 ^65000:3_0:256_0:115$ route-map calculator permit 10291 match community 1_1_140 2_1_141 1_2_139 2_3_47 1_3_138 set community 0:141 route-map calculator permit 10292 match community 1_4_137 1_5_136 1_6_135 1_7_134 1_8_133 set community 0:141 route-map calculator permit 10293 match community 1_9_132 1_10_131 1_11_130 1_12_129 1_13_128 set community 0:141 route-map calculator permit 10294 match community 1_14_127 1_15_126 1_16_125 1_17_124 1_18_123 set community 0:141 route-map calculator permit 10295 match community 1_19_122 1_20_121 1_21_120 1_22_119 1_23_118 set community 0:141 route-map calculator permit 10296 match community 1_24_117 1_25_116 1_26_115 1_27_114 1_28_113 set community 0:141 route-map calculator permit 10297 match community 1_29_112 1_30_111 1_31_110 1_32_109 1_33_108 set community 0:141 route-map calculator permit 10298 match community 1_34_107 1_35_106 1_36_105 1_37_104 1_38_103 set community 0:141 route-map calculator permit 10299 match community 1_39_102 1_40_101 1_41_100 1_42_99 1_43_98 set community 0:141 route-map calculator permit 10300 match community 1_44_97 1_45_96 1_46_95 1_47_94 1_48_93 set community 0:141 route-map calculator permit 10301 match community 1_49_92 1_50_91 1_51_90 1_52_89 1_53_88 set community 0:141 route-map calculator permit 10302 match community 1_54_87 1_55_86 1_56_85 1_57_84 1_58_83 set community 0:141 route-map calculator permit 10303 match community 1_59_82 1_60_81 1_61_80 1_62_79 1_63_78 set community 0:141 route-map calculator permit 10304 match community 1_64_77 1_65_76 1_66_75 1_67_74 1_68_73 set community 0:141 route-map calculator permit 10305 match community 1_69_72 1_70_71 c4_141_1 c3_142_1 c3_143_2 set community 0:141 route-map calculator permit 10306 match community c3_144_3 c3_145_4 c3_146_5 c3_147_6 c3_148_7 set community 0:141 route-map calculator permit 10307 match community c3_149_8 c3_150_9 c3_151_10 c3_152_11 c3_153_12 set community 0:141 route-map calculator permit 10308 match community c3_154_13 c3_155_14 c3_156_15 c3_157_16 c3_158_17 set community 0:141 route-map calculator permit 10309 match community c3_159_18 c3_160_19 c3_161_20 c3_162_21 c3_163_22 set community 0:141 route-map calculator permit 10310 match community c3_164_23 c3_165_24 c3_166_25 c3_167_26 c3_168_27 set community 0:141 route-map calculator permit 10311 match community c3_169_28 c3_170_29 c3_171_30 c3_172_31 c3_173_32 set community 0:141 route-map calculator permit 10312 match community c3_174_33 c3_175_34 c3_176_35 c3_177_36 c3_178_37 set community 0:141 route-map calculator permit 10313 match community c3_179_38 c3_180_39 c3_181_40 c3_182_41 c3_183_42 set community 0:141 route-map calculator permit 10314 match community c3_184_43 c3_185_44 c3_186_45 c3_187_46 c3_188_47 set community 0:141 route-map calculator permit 10315 match community c3_189_48 c3_190_49 c3_191_50 c3_192_51 c3_193_52 set community 0:141 route-map calculator permit 10316 match community c3_194_53 c3_195_54 c3_196_55 c3_197_56 c3_198_57 set community 0:141 route-map calculator permit 10317 match community c3_199_58 c3_200_59 c3_201_60 c3_202_61 c3_203_62 set community 0:141 route-map calculator permit 10318 match community c3_204_63 c3_205_64 c3_206_65 c3_207_66 c3_208_67 set community 0:141 route-map calculator permit 10319 match community c3_209_68 c3_210_69 c3_211_70 c3_212_71 c3_213_72 set community 0:141 route-map calculator permit 10320 match community c3_214_73 c3_215_74 c3_216_75 c3_217_76 c3_218_77 set community 0:141 route-map calculator permit 10321 match community c3_219_78 c3_220_79 c3_221_80 c3_222_81 c3_223_82 set community 0:141 route-map calculator permit 10322 match community c3_224_83 c3_225_84 c3_226_85 c3_227_86 c3_228_87 set community 0:141 route-map calculator permit 10323 match community c3_229_88 c3_230_89 c3_231_90 c3_232_91 c3_233_92 set community 0:141 route-map calculator permit 10324 match community c3_234_93 c3_235_94 c3_236_95 c3_237_96 c3_238_97 set community 0:141 route-map calculator permit 10325 match community c3_239_98 c3_240_99 c3_241_100 c3_242_101 c3_243_102 set community 0:141 route-map calculator permit 10326 match community c3_244_103 c3_245_104 c3_246_105 c3_247_106 c3_248_107 set community 0:141 route-map calculator permit 10327 match community c3_249_108 c3_250_109 c3_251_110 c3_252_111 c3_253_112 set community 0:141 route-map calculator permit 10328 match community c3_254_113 c3_255_114 c3_256_115 set community 0:141 ip community-list standard 2_134_205 permit 65000:2 0:134 0:205 route-map calculator permit 10329 match community 2_134_205 set community 0:27470 ip community-list standard 2_212_252 permit 65000:2 0:212 0:252 route-map calculator permit 10330 match community 2_212_252 set community 0:53424 ip community-list standard 2_3_238 permit 65000:2 0:3 0:238 ip community-list standard 2_6_119 permit 65000:2 0:6 0:119 ip community-list standard 2_7_102 permit 65000:2 0:7 0:102 ip community-list standard 2_14_51 permit 65000:2 0:14 0:51 ip community-list standard 2_17_42 permit 65000:2 0:17 0:42 ip community-list standard 2_21_34 permit 65000:2 0:21 0:34 route-map calculator permit 10331 match community 2_3_238 2_6_119 2_7_102 2_14_51 2_17_42 set community 0:714 route-map calculator permit 10332 match community 2_21_34 set community 0:714 ip community-list standard 2_17_159 permit 65000:2 0:17 0:159 ip community-list standard 2_51_53 permit 65000:2 0:51 0:53 route-map calculator permit 10333 match community 2_17_159 2_51_53 set community 0:2703 ip community-list standard 2_17_185 permit 65000:2 0:17 0:185 ip community-list standard 2_37_85 permit 65000:2 0:37 0:85 route-map calculator permit 10334 match community 2_17_185 2_37_85 set community 0:3145 ip community-list standard 2_119_181 permit 65000:2 0:119 0:181 route-map calculator permit 10335 match community 2_119_181 set community 0:21539 ip community-list standard 2_150_231 permit 65000:2 0:150 0:231 ip community-list standard 2_154_225 permit 65000:2 0:154 0:225 ip community-list standard 2_165_210 permit 65000:2 0:165 0:210 ip community-list standard 2_175_198 permit 65000:2 0:175 0:198 route-map calculator permit 10336 match community 2_150_231 2_154_225 2_165_210 2_175_198 set community 0:34650 ip community-list standard 2_132_255 permit 65000:2 0:132 0:255 ip community-list standard 2_153_220 permit 65000:2 0:153 0:220 ip community-list standard 2_165_204 permit 65000:2 0:165 0:204 ip community-list standard 2_170_198 permit 65000:2 0:170 0:198 ip community-list standard 2_180_187 permit 65000:2 0:180 0:187 route-map calculator permit 10337 match community 2_132_255 2_153_220 2_165_204 2_170_198 2_180_187 set community 0:33660 ip community-list standard 2_123_167 permit 65000:2 0:123 0:167 route-map calculator permit 10338 match community 2_123_167 set community 0:20541 ip community-list standard 2_106_231 permit 65000:2 0:106 0:231 ip community-list standard 2_154_159 permit 65000:2 0:154 0:159 route-map calculator permit 10339 match community 2_106_231 2_154_159 set community 0:24486 ip community-list standard 2_146_249 permit 65000:2 0:146 0:249 ip community-list standard 2_166_219 permit 65000:2 0:166 0:219 route-map calculator permit 10340 match community 2_146_249 2_166_219 set community 0:36354 ip community-list standard 1_1_16 permit 65000:1 0:1 0:16 ip community-list standard 2_1_17 permit 65000:2 0:1 0:17 ip community-list standard 1_2_15 permit 65000:1 0:2 0:15 ip community-list standard 1_3_14 permit 65000:1 0:3 0:14 ip community-list standard 1_4_13 permit 65000:1 0:4 0:13 ip community-list standard 1_5_12 permit 65000:1 0:5 0:12 ip community-list standard 1_6_11 permit 65000:1 0:6 0:11 ip community-list standard 1_7_10 permit 65000:1 0:7 0:10 ip community-list standard 1_8_9 permit 65000:1 0:8 0:9 ip community-list expanded c17 permit 1 ^65000:4_0:17_0:1$ ip community-list expanded c17 permit 2 ^65000:3_0:18_0:1$ ip community-list expanded c17 permit 3 ^65000:3_0:19_0:2$ ip community-list expanded c17 permit 4 ^65000:3_0:20_0:3$ ip community-list expanded c17 permit 5 ^65000:3_0:21_0:4$ ip community-list expanded c17 permit 6 ^65000:3_0:22_0:5$ ip community-list expanded c17 permit 7 ^65000:3_0:23_0:6$ ip community-list expanded c17 permit 8 ^65000:3_0:24_0:7$ ip community-list expanded c17 permit 9 ^65000:3_0:25_0:8$ ip community-list expanded c17 permit 10 ^65000:3_0:26_0:9$ ip community-list expanded c17 permit 11 ^65000:3_0:27_0:10$ ip community-list expanded c17 permit 12 ^65000:3_0:28_0:11$ ip community-list expanded c17 permit 13 ^65000:3_0:29_0:12$ ip community-list expanded c17 permit 14 ^65000:3_0:30_0:13$ ip community-list expanded c17 permit 15 ^65000:3_0:31_0:14$ ip community-list expanded c17 permit 16 ^65000:3_0:32_0:15$ ip community-list expanded c17 permit 17 ^65000:3_0:33_0:16$ ip community-list expanded c17 permit 18 ^65000:4_0:34_0:2$ ip community-list expanded c17 permit 19 ^65000:3_0:34_0:17$ ip community-list expanded c17 permit 20 ^65000:4_0:35_0:2$ ip community-list expanded c17 permit 21 ^65000:3_0:35_0:18$ ip community-list expanded c17 permit 22 ^65000:3_0:36_0:19$ ip community-list expanded c17 permit 23 ^65000:3_0:37_0:20$ ip community-list expanded c17 permit 24 ^65000:3_0:38_0:21$ ip community-list expanded c17 permit 25 ^65000:3_0:39_0:22$ ip community-list expanded c17 permit 26 ^65000:3_0:40_0:23$ ip community-list expanded c17 permit 27 ^65000:3_0:41_0:24$ ip community-list expanded c17 permit 28 ^65000:3_0:42_0:25$ ip community-list expanded c17 permit 29 ^65000:3_0:43_0:26$ ip community-list expanded c17 permit 30 ^65000:3_0:44_0:27$ ip community-list expanded c17 permit 31 ^65000:3_0:45_0:28$ ip community-list expanded c17 permit 32 ^65000:3_0:46_0:29$ ip community-list expanded c17 permit 33 ^65000:3_0:47_0:30$ ip community-list expanded c17 permit 34 ^65000:3_0:48_0:31$ ip community-list expanded c17 permit 35 ^65000:3_0:49_0:32$ ip community-list expanded c17 permit 36 ^65000:3_0:50_0:33$ ip community-list expanded c17 permit 37 ^65000:4_0:51_0:3$ ip community-list expanded c17 permit 38 ^65000:3_0:51_0:34$ ip community-list expanded c17 permit 39 ^65000:4_0:52_0:3$ ip community-list expanded c17 permit 40 ^65000:3_0:52_0:35$ ip community-list expanded c17 permit 41 ^65000:4_0:53_0:3$ ip community-list expanded c17 permit 42 ^65000:3_0:53_0:36$ ip community-list expanded c17 permit 43 ^65000:3_0:54_0:37$ ip community-list expanded c17 permit 44 ^65000:3_0:55_0:38$ ip community-list expanded c17 permit 45 ^65000:3_0:56_0:39$ ip community-list expanded c17 permit 46 ^65000:3_0:57_0:40$ ip community-list expanded c17 permit 47 ^65000:3_0:58_0:41$ ip community-list expanded c17 permit 48 ^65000:3_0:59_0:42$ ip community-list expanded c17 permit 49 ^65000:3_0:60_0:43$ ip community-list expanded c17 permit 50 ^65000:3_0:61_0:44$ ip community-list expanded c17 permit 51 ^65000:3_0:62_0:45$ ip community-list expanded c17 permit 52 ^65000:3_0:63_0:46$ ip community-list expanded c17 permit 53 ^65000:3_0:64_0:47$ ip community-list expanded c17 permit 54 ^65000:3_0:65_0:48$ ip community-list expanded c17 permit 55 ^65000:3_0:66_0:49$ ip community-list expanded c17 permit 56 ^65000:3_0:67_0:50$ ip community-list expanded c17 permit 57 ^65000:4_0:68_0:4$ ip community-list expanded c17 permit 58 ^65000:3_0:68_0:51$ ip community-list expanded c17 permit 59 ^65000:4_0:69_0:4$ ip community-list expanded c17 permit 60 ^65000:3_0:69_0:52$ ip community-list expanded c17 permit 61 ^65000:4_0:70_0:4$ ip community-list expanded c17 permit 62 ^65000:3_0:70_0:53$ ip community-list expanded c17 permit 63 ^65000:4_0:71_0:4$ ip community-list expanded c17 permit 64 ^65000:3_0:71_0:54$ ip community-list expanded c17 permit 65 ^65000:3_0:72_0:55$ ip community-list expanded c17 permit 66 ^65000:3_0:73_0:56$ ip community-list expanded c17 permit 67 ^65000:3_0:74_0:57$ ip community-list expanded c17 permit 68 ^65000:3_0:75_0:58$ ip community-list expanded c17 permit 69 ^65000:3_0:76_0:59$ ip community-list expanded c17 permit 70 ^65000:3_0:77_0:60$ ip community-list expanded c17 permit 71 ^65000:3_0:78_0:61$ ip community-list expanded c17 permit 72 ^65000:3_0:79_0:62$ ip community-list expanded c17 permit 73 ^65000:3_0:80_0:63$ ip community-list expanded c17 permit 74 ^65000:3_0:81_0:64$ ip community-list expanded c17 permit 75 ^65000:3_0:82_0:65$ ip community-list expanded c17 permit 76 ^65000:3_0:83_0:66$ ip community-list expanded c17 permit 77 ^65000:3_0:84_0:67$ ip community-list expanded c17 permit 78 ^65000:4_0:85_0:5$ ip community-list expanded c17 permit 79 ^65000:3_0:85_0:68$ ip community-list expanded c17 permit 80 ^65000:4_0:86_0:5$ ip community-list expanded c17 permit 81 ^65000:3_0:86_0:69$ ip community-list expanded c17 permit 82 ^65000:4_0:87_0:5$ ip community-list expanded c17 permit 83 ^65000:3_0:87_0:70$ ip community-list expanded c17 permit 84 ^65000:4_0:88_0:5$ ip community-list expanded c17 permit 85 ^65000:3_0:88_0:71$ ip community-list expanded c17 permit 86 ^65000:4_0:89_0:5$ ip community-list expanded c17 permit 87 ^65000:3_0:89_0:72$ ip community-list expanded c17 permit 88 ^65000:3_0:90_0:73$ ip community-list expanded c17 permit 89 ^65000:3_0:91_0:74$ ip community-list expanded c17 permit 90 ^65000:3_0:92_0:75$ ip community-list expanded c17 permit 91 ^65000:3_0:93_0:76$ ip community-list expanded c17 permit 92 ^65000:3_0:94_0:77$ ip community-list expanded c17 permit 93 ^65000:3_0:95_0:78$ ip community-list expanded c17 permit 94 ^65000:3_0:96_0:79$ ip community-list expanded c17 permit 95 ^65000:3_0:97_0:80$ ip community-list expanded c17 permit 96 ^65000:3_0:98_0:81$ ip community-list expanded c17 permit 97 ^65000:3_0:99_0:82$ ip community-list expanded c17 permit 98 ^65000:3_0:100_0:83$ ip community-list expanded c17 permit 99 ^65000:3_0:101_0:84$ ip community-list expanded c17 permit 100 ^65000:4_0:102_0:6$ ip community-list expanded c17 permit 101 ^65000:3_0:102_0:85$ ip community-list expanded c17 permit 102 ^65000:4_0:103_0:6$ ip community-list expanded c17 permit 103 ^65000:3_0:103_0:86$ ip community-list expanded c17 permit 104 ^65000:4_0:104_0:6$ ip community-list expanded c17 permit 105 ^65000:3_0:104_0:87$ ip community-list expanded c17 permit 106 ^65000:4_0:105_0:6$ ip community-list expanded c17 permit 107 ^65000:3_0:105_0:88$ ip community-list expanded c17 permit 108 ^65000:4_0:106_0:6$ ip community-list expanded c17 permit 109 ^65000:3_0:106_0:89$ ip community-list expanded c17 permit 110 ^65000:4_0:107_0:6$ ip community-list expanded c17 permit 111 ^65000:3_0:107_0:90$ ip community-list expanded c17 permit 112 ^65000:3_0:108_0:91$ ip community-list expanded c17 permit 113 ^65000:3_0:109_0:92$ ip community-list expanded c17 permit 114 ^65000:3_0:110_0:93$ ip community-list expanded c17 permit 115 ^65000:3_0:111_0:94$ ip community-list expanded c17 permit 116 ^65000:3_0:112_0:95$ ip community-list expanded c17 permit 117 ^65000:3_0:113_0:96$ ip community-list expanded c17 permit 118 ^65000:3_0:114_0:97$ ip community-list expanded c17 permit 119 ^65000:3_0:115_0:98$ ip community-list expanded c17 permit 120 ^65000:3_0:116_0:99$ ip community-list expanded c17 permit 121 ^65000:3_0:117_0:100$ ip community-list expanded c17 permit 122 ^65000:3_0:118_0:101$ ip community-list expanded c17 permit 123 ^65000:4_0:119_0:7$ ip community-list expanded c17 permit 124 ^65000:3_0:119_0:102$ ip community-list expanded c17 permit 125 ^65000:4_0:120_0:7$ ip community-list expanded c17 permit 126 ^65000:3_0:120_0:103$ ip community-list expanded c17 permit 127 ^65000:4_0:121_0:7$ ip community-list expanded c17 permit 128 ^65000:3_0:121_0:104$ ip community-list expanded c17 permit 129 ^65000:4_0:122_0:7$ ip community-list expanded c17 permit 130 ^65000:3_0:122_0:105$ ip community-list expanded c17 permit 131 ^65000:4_0:123_0:7$ ip community-list expanded c17 permit 132 ^65000:3_0:123_0:106$ ip community-list expanded c17 permit 133 ^65000:4_0:124_0:7$ ip community-list expanded c17 permit 134 ^65000:3_0:124_0:107$ ip community-list expanded c17 permit 135 ^65000:4_0:125_0:7$ ip community-list expanded c17 permit 136 ^65000:3_0:125_0:108$ ip community-list expanded c17 permit 137 ^65000:3_0:126_0:109$ ip community-list expanded c17 permit 138 ^65000:3_0:127_0:110$ ip community-list expanded c17 permit 139 ^65000:3_0:128_0:111$ ip community-list expanded c17 permit 140 ^65000:3_0:129_0:112$ ip community-list expanded c17 permit 141 ^65000:3_0:130_0:113$ ip community-list expanded c17 permit 142 ^65000:3_0:131_0:114$ ip community-list expanded c17 permit 143 ^65000:3_0:132_0:115$ ip community-list expanded c17 permit 144 ^65000:3_0:133_0:116$ ip community-list expanded c17 permit 145 ^65000:3_0:134_0:117$ ip community-list expanded c17 permit 146 ^65000:3_0:135_0:118$ ip community-list expanded c17 permit 147 ^65000:4_0:136_0:8$ ip community-list expanded c17 permit 148 ^65000:3_0:136_0:119$ ip community-list expanded c17 permit 149 ^65000:4_0:137_0:8$ ip community-list expanded c17 permit 150 ^65000:3_0:137_0:120$ ip community-list expanded c17 permit 151 ^65000:4_0:138_0:8$ ip community-list expanded c17 permit 152 ^65000:3_0:138_0:121$ ip community-list expanded c17 permit 153 ^65000:4_0:139_0:8$ ip community-list expanded c17 permit 154 ^65000:3_0:139_0:122$ ip community-list expanded c17 permit 155 ^65000:4_0:140_0:8$ ip community-list expanded c17 permit 156 ^65000:3_0:140_0:123$ ip community-list expanded c17 permit 157 ^65000:4_0:141_0:8$ ip community-list expanded c17 permit 158 ^65000:3_0:141_0:124$ ip community-list expanded c17 permit 159 ^65000:4_0:142_0:8$ ip community-list expanded c17 permit 160 ^65000:3_0:142_0:125$ ip community-list expanded c17 permit 161 ^65000:4_0:143_0:8$ ip community-list expanded c17 permit 162 ^65000:3_0:143_0:126$ ip community-list expanded c17 permit 163 ^65000:3_0:144_0:127$ ip community-list expanded c17 permit 164 ^65000:3_0:145_0:128$ ip community-list expanded c17 permit 165 ^65000:3_0:146_0:129$ ip community-list expanded c17 permit 166 ^65000:3_0:147_0:130$ ip community-list expanded c17 permit 167 ^65000:3_0:148_0:131$ ip community-list expanded c17 permit 168 ^65000:3_0:149_0:132$ ip community-list expanded c17 permit 169 ^65000:3_0:150_0:133$ ip community-list expanded c17 permit 170 ^65000:3_0:151_0:134$ ip community-list expanded c17 permit 171 ^65000:3_0:152_0:135$ ip community-list expanded c17 permit 172 ^65000:4_0:153_0:9$ ip community-list expanded c17 permit 173 ^65000:3_0:153_0:136$ ip community-list expanded c17 permit 174 ^65000:4_0:154_0:9$ ip community-list expanded c17 permit 175 ^65000:3_0:154_0:137$ ip community-list expanded c17 permit 176 ^65000:4_0:155_0:9$ ip community-list expanded c17 permit 177 ^65000:3_0:155_0:138$ ip community-list expanded c17 permit 178 ^65000:4_0:156_0:9$ ip community-list expanded c17 permit 179 ^65000:3_0:156_0:139$ ip community-list expanded c17 permit 180 ^65000:4_0:157_0:9$ ip community-list expanded c17 permit 181 ^65000:3_0:157_0:140$ ip community-list expanded c17 permit 182 ^65000:4_0:158_0:9$ ip community-list expanded c17 permit 183 ^65000:3_0:158_0:141$ ip community-list expanded c17 permit 184 ^65000:4_0:159_0:9$ ip community-list expanded c17 permit 185 ^65000:3_0:159_0:142$ ip community-list expanded c17 permit 186 ^65000:4_0:160_0:9$ ip community-list expanded c17 permit 187 ^65000:3_0:160_0:143$ ip community-list expanded c17 permit 188 ^65000:4_0:161_0:9$ ip community-list expanded c17 permit 189 ^65000:3_0:161_0:144$ ip community-list expanded c17 permit 190 ^65000:3_0:162_0:145$ ip community-list expanded c17 permit 191 ^65000:3_0:163_0:146$ ip community-list expanded c17 permit 192 ^65000:3_0:164_0:147$ ip community-list expanded c17 permit 193 ^65000:3_0:165_0:148$ ip community-list expanded c17 permit 194 ^65000:3_0:166_0:149$ ip community-list expanded c17 permit 195 ^65000:3_0:167_0:150$ ip community-list expanded c17 permit 196 ^65000:3_0:168_0:151$ ip community-list expanded c17 permit 197 ^65000:3_0:169_0:152$ ip community-list expanded c17 permit 198 ^65000:4_0:170_0:10$ ip community-list expanded c17 permit 199 ^65000:3_0:170_0:153$ ip community-list expanded c17 permit 200 ^65000:4_0:171_0:10$ ip community-list expanded c17 permit 201 ^65000:3_0:171_0:154$ ip community-list expanded c17 permit 202 ^65000:4_0:172_0:10$ ip community-list expanded c17 permit 203 ^65000:3_0:172_0:155$ ip community-list expanded c17 permit 204 ^65000:4_0:173_0:10$ ip community-list expanded c17 permit 205 ^65000:3_0:173_0:156$ ip community-list expanded c17 permit 206 ^65000:4_0:174_0:10$ ip community-list expanded c17 permit 207 ^65000:3_0:174_0:157$ ip community-list expanded c17 permit 208 ^65000:4_0:175_0:10$ ip community-list expanded c17 permit 209 ^65000:3_0:175_0:158$ ip community-list expanded c17 permit 210 ^65000:4_0:176_0:10$ ip community-list expanded c17 permit 211 ^65000:3_0:176_0:159$ ip community-list expanded c17 permit 212 ^65000:4_0:177_0:10$ ip community-list expanded c17 permit 213 ^65000:3_0:177_0:160$ ip community-list expanded c17 permit 214 ^65000:4_0:178_0:10$ ip community-list expanded c17 permit 215 ^65000:3_0:178_0:161$ ip community-list expanded c17 permit 216 ^65000:4_0:179_0:10$ ip community-list expanded c17 permit 217 ^65000:3_0:179_0:162$ ip community-list expanded c17 permit 218 ^65000:3_0:180_0:163$ ip community-list expanded c17 permit 219 ^65000:3_0:181_0:164$ ip community-list expanded c17 permit 220 ^65000:3_0:182_0:165$ ip community-list expanded c17 permit 221 ^65000:3_0:183_0:166$ ip community-list expanded c17 permit 222 ^65000:3_0:184_0:167$ ip community-list expanded c17 permit 223 ^65000:3_0:185_0:168$ ip community-list expanded c17 permit 224 ^65000:3_0:186_0:169$ ip community-list expanded c17 permit 225 ^65000:4_0:187_0:11$ ip community-list expanded c17 permit 226 ^65000:3_0:187_0:170$ ip community-list expanded c17 permit 227 ^65000:4_0:188_0:11$ ip community-list expanded c17 permit 228 ^65000:3_0:188_0:171$ ip community-list expanded c17 permit 229 ^65000:4_0:189_0:11$ ip community-list expanded c17 permit 230 ^65000:3_0:189_0:172$ ip community-list expanded c17 permit 231 ^65000:4_0:190_0:11$ ip community-list expanded c17 permit 232 ^65000:3_0:190_0:173$ ip community-list expanded c17 permit 233 ^65000:4_0:191_0:11$ ip community-list expanded c17 permit 234 ^65000:3_0:191_0:174$ ip community-list expanded c17 permit 235 ^65000:4_0:192_0:11$ ip community-list expanded c17 permit 236 ^65000:3_0:192_0:175$ ip community-list expanded c17 permit 237 ^65000:4_0:193_0:11$ ip community-list expanded c17 permit 238 ^65000:3_0:193_0:176$ ip community-list expanded c17 permit 239 ^65000:4_0:194_0:11$ ip community-list expanded c17 permit 240 ^65000:3_0:194_0:177$ ip community-list expanded c17 permit 241 ^65000:4_0:195_0:11$ ip community-list expanded c17 permit 242 ^65000:3_0:195_0:178$ ip community-list expanded c17 permit 243 ^65000:4_0:196_0:11$ ip community-list expanded c17 permit 244 ^65000:3_0:196_0:179$ ip community-list expanded c17 permit 245 ^65000:4_0:197_0:11$ ip community-list expanded c17 permit 246 ^65000:3_0:197_0:180$ ip community-list expanded c17 permit 247 ^65000:3_0:198_0:181$ ip community-list expanded c17 permit 248 ^65000:3_0:199_0:182$ ip community-list expanded c17 permit 249 ^65000:3_0:200_0:183$ ip community-list expanded c17 permit 250 ^65000:3_0:201_0:184$ ip community-list expanded c17 permit 251 ^65000:3_0:202_0:185$ ip community-list expanded c17 permit 252 ^65000:3_0:203_0:186$ ip community-list expanded c17 permit 253 ^65000:4_0:204_0:12$ ip community-list expanded c17 permit 254 ^65000:3_0:204_0:187$ ip community-list expanded c17 permit 255 ^65000:4_0:205_0:12$ ip community-list expanded c17 permit 256 ^65000:3_0:205_0:188$ ip community-list expanded c17 permit 257 ^65000:4_0:206_0:12$ ip community-list expanded c17 permit 258 ^65000:3_0:206_0:189$ ip community-list expanded c17 permit 259 ^65000:4_0:207_0:12$ ip community-list expanded c17 permit 260 ^65000:3_0:207_0:190$ ip community-list expanded c17 permit 261 ^65000:4_0:208_0:12$ ip community-list expanded c17 permit 262 ^65000:3_0:208_0:191$ ip community-list expanded c17 permit 263 ^65000:4_0:209_0:12$ ip community-list expanded c17 permit 264 ^65000:3_0:209_0:192$ ip community-list expanded c17 permit 265 ^65000:4_0:210_0:12$ ip community-list expanded c17 permit 266 ^65000:3_0:210_0:193$ ip community-list expanded c17 permit 267 ^65000:4_0:211_0:12$ ip community-list expanded c17 permit 268 ^65000:3_0:211_0:194$ ip community-list expanded c17 permit 269 ^65000:4_0:212_0:12$ ip community-list expanded c17 permit 270 ^65000:3_0:212_0:195$ ip community-list expanded c17 permit 271 ^65000:4_0:213_0:12$ ip community-list expanded c17 permit 272 ^65000:3_0:213_0:196$ ip community-list expanded c17 permit 273 ^65000:4_0:214_0:12$ ip community-list expanded c17 permit 274 ^65000:3_0:214_0:197$ ip community-list expanded c17 permit 275 ^65000:4_0:215_0:12$ ip community-list expanded c17 permit 276 ^65000:3_0:215_0:198$ ip community-list expanded c17 permit 277 ^65000:3_0:216_0:199$ ip community-list expanded c17 permit 278 ^65000:3_0:217_0:200$ ip community-list expanded c17 permit 279 ^65000:3_0:218_0:201$ ip community-list expanded c17 permit 280 ^65000:3_0:219_0:202$ ip community-list expanded c17 permit 281 ^65000:3_0:220_0:203$ ip community-list expanded c17 permit 282 ^65000:4_0:221_0:13$ ip community-list expanded c17 permit 283 ^65000:3_0:221_0:204$ ip community-list expanded c17 permit 284 ^65000:4_0:222_0:13$ ip community-list expanded c17 permit 285 ^65000:3_0:222_0:205$ ip community-list expanded c17 permit 286 ^65000:4_0:223_0:13$ ip community-list expanded c17 permit 287 ^65000:3_0:223_0:206$ ip community-list expanded c17 permit 288 ^65000:4_0:224_0:13$ ip community-list expanded c17 permit 289 ^65000:3_0:224_0:207$ ip community-list expanded c17 permit 290 ^65000:4_0:225_0:13$ ip community-list expanded c17 permit 291 ^65000:3_0:225_0:208$ ip community-list expanded c17 permit 292 ^65000:4_0:226_0:13$ ip community-list expanded c17 permit 293 ^65000:3_0:226_0:209$ ip community-list expanded c17 permit 294 ^65000:4_0:227_0:13$ ip community-list expanded c17 permit 295 ^65000:3_0:227_0:210$ ip community-list expanded c17 permit 296 ^65000:4_0:228_0:13$ ip community-list expanded c17 permit 297 ^65000:3_0:228_0:211$ ip community-list expanded c17 permit 298 ^65000:4_0:229_0:13$ ip community-list expanded c17 permit 299 ^65000:3_0:229_0:212$ ip community-list expanded c17 permit 300 ^65000:4_0:230_0:13$ ip community-list expanded c17 permit 301 ^65000:3_0:230_0:213$ ip community-list expanded c17 permit 302 ^65000:4_0:231_0:13$ ip community-list expanded c17 permit 303 ^65000:3_0:231_0:214$ ip community-list expanded c17 permit 304 ^65000:4_0:232_0:13$ ip community-list expanded c17 permit 305 ^65000:3_0:232_0:215$ ip community-list expanded c17 permit 306 ^65000:4_0:233_0:13$ ip community-list expanded c17 permit 307 ^65000:3_0:233_0:216$ ip community-list expanded c17 permit 308 ^65000:3_0:234_0:217$ ip community-list expanded c17 permit 309 ^65000:3_0:235_0:218$ ip community-list expanded c17 permit 310 ^65000:3_0:236_0:219$ ip community-list expanded c17 permit 311 ^65000:3_0:237_0:220$ ip community-list expanded c17 permit 312 ^65000:4_0:238_0:14$ ip community-list expanded c17 permit 313 ^65000:3_0:238_0:221$ ip community-list expanded c17 permit 314 ^65000:4_0:239_0:14$ ip community-list expanded c17 permit 315 ^65000:3_0:239_0:222$ ip community-list expanded c17 permit 316 ^65000:4_0:240_0:14$ ip community-list expanded c17 permit 317 ^65000:3_0:240_0:223$ ip community-list expanded c17 permit 318 ^65000:4_0:241_0:14$ ip community-list expanded c17 permit 319 ^65000:3_0:241_0:224$ ip community-list expanded c17 permit 320 ^65000:4_0:242_0:14$ ip community-list expanded c17 permit 321 ^65000:3_0:242_0:225$ ip community-list expanded c17 permit 322 ^65000:4_0:243_0:14$ ip community-list expanded c17 permit 323 ^65000:3_0:243_0:226$ ip community-list expanded c17 permit 324 ^65000:4_0:244_0:14$ ip community-list expanded c17 permit 325 ^65000:3_0:244_0:227$ ip community-list expanded c17 permit 326 ^65000:4_0:245_0:14$ ip community-list expanded c17 permit 327 ^65000:3_0:245_0:228$ ip community-list expanded c17 permit 328 ^65000:4_0:246_0:14$ ip community-list expanded c17 permit 329 ^65000:3_0:246_0:229$ ip community-list expanded c17 permit 330 ^65000:4_0:247_0:14$ ip community-list expanded c17 permit 331 ^65000:3_0:247_0:230$ ip community-list expanded c17 permit 332 ^65000:4_0:248_0:14$ ip community-list expanded c17 permit 333 ^65000:3_0:248_0:231$ ip community-list expanded c17 permit 334 ^65000:4_0:249_0:14$ ip community-list expanded c17 permit 335 ^65000:3_0:249_0:232$ ip community-list expanded c17 permit 336 ^65000:4_0:250_0:14$ ip community-list expanded c17 permit 337 ^65000:3_0:250_0:233$ ip community-list expanded c17 permit 338 ^65000:4_0:251_0:14$ ip community-list expanded c17 permit 339 ^65000:3_0:251_0:234$ ip community-list expanded c17 permit 340 ^65000:3_0:252_0:235$ ip community-list expanded c17 permit 341 ^65000:3_0:253_0:236$ ip community-list expanded c17 permit 342 ^65000:3_0:254_0:237$ ip community-list expanded c17 permit 343 ^65000:4_0:255_0:15$ ip community-list expanded c17 permit 344 ^65000:3_0:255_0:238$ ip community-list expanded c17 permit 345 ^65000:4_0:256_0:15$ ip community-list expanded c17 permit 346 ^65000:3_0:256_0:239$ route-map calculator permit 10341 match community 1_1_16 2_1_17 1_2_15 1_3_14 1_4_13 set community 0:17 route-map calculator permit 10342 match community 1_5_12 1_6_11 1_7_10 1_8_9 c4_17_1 set community 0:17 route-map calculator permit 10343 match community c3_18_1 c3_19_2 c3_20_3 c3_21_4 c3_22_5 set community 0:17 route-map calculator permit 10344 match community c3_23_6 c3_24_7 c3_25_8 c3_26_9 c3_27_10 set community 0:17 route-map calculator permit 10345 match community c3_28_11 c3_29_12 c3_30_13 c3_31_14 c3_32_15 set community 0:17 route-map calculator permit 10346 match community c3_33_16 c4_34_2 c3_34_17 c4_35_2 c3_35_18 set community 0:17 route-map calculator permit 10347 match community c3_36_19 c3_37_20 c3_38_21 c3_39_22 c3_40_23 set community 0:17 route-map calculator permit 10348 match community c3_41_24 c3_42_25 c3_43_26 c3_44_27 c3_45_28 set community 0:17 route-map calculator permit 10349 match community c3_46_29 c3_47_30 c3_48_31 c3_49_32 c3_50_33 set community 0:17 route-map calculator permit 10350 match community c4_51_3 c3_51_34 c4_52_3 c3_52_35 c4_53_3 set community 0:17 route-map calculator permit 10351 match community c3_53_36 c3_54_37 c3_55_38 c3_56_39 c3_57_40 set community 0:17 route-map calculator permit 10352 match community c3_58_41 c3_59_42 c3_60_43 c3_61_44 c3_62_45 set community 0:17 route-map calculator permit 10353 match community c3_63_46 c3_64_47 c3_65_48 c3_66_49 c3_67_50 set community 0:17 route-map calculator permit 10354 match community c4_68_4 c3_68_51 c4_69_4 c3_69_52 c4_70_4 set community 0:17 route-map calculator permit 10355 match community c3_70_53 c4_71_4 c3_71_54 c3_72_55 c3_73_56 set community 0:17 route-map calculator permit 10356 match community c3_74_57 c3_75_58 c3_76_59 c3_77_60 c3_78_61 set community 0:17 route-map calculator permit 10357 match community c3_79_62 c3_80_63 c3_81_64 c3_82_65 c3_83_66 set community 0:17 route-map calculator permit 10358 match community c3_84_67 c4_85_5 c3_85_68 c4_86_5 c3_86_69 set community 0:17 route-map calculator permit 10359 match community c4_87_5 c3_87_70 c4_88_5 c3_88_71 c4_89_5 set community 0:17 route-map calculator permit 10360 match community c3_89_72 c3_90_73 c3_91_74 c3_92_75 c3_93_76 set community 0:17 route-map calculator permit 10361 match community c3_94_77 c3_95_78 c3_96_79 c3_97_80 c3_98_81 set community 0:17 route-map calculator permit 10362 match community c3_99_82 c3_100_83 c3_101_84 c4_102_6 c3_102_85 set community 0:17 route-map calculator permit 10363 match community c4_103_6 c3_103_86 c4_104_6 c3_104_87 c4_105_6 set community 0:17 route-map calculator permit 10364 match community c3_105_88 c4_106_6 c3_106_89 c4_107_6 c3_107_90 set community 0:17 route-map calculator permit 10365 match community c3_108_91 c3_109_92 c3_110_93 c3_111_94 c3_112_95 set community 0:17 route-map calculator permit 10366 match community c3_113_96 c3_114_97 c3_115_98 c3_116_99 c3_117_100 set community 0:17 route-map calculator permit 10367 match community c3_118_101 c4_119_7 c3_119_102 c4_120_7 c3_120_103 set community 0:17 route-map calculator permit 10368 match community c4_121_7 c3_121_104 c4_122_7 c3_122_105 c4_123_7 set community 0:17 route-map calculator permit 10369 match community c3_123_106 c4_124_7 c3_124_107 c4_125_7 c3_125_108 set community 0:17 route-map calculator permit 10370 match community c3_126_109 c3_127_110 c3_128_111 c3_129_112 c3_130_113 set community 0:17 route-map calculator permit 10371 match community c3_131_114 c3_132_115 c3_133_116 c3_134_117 c3_135_118 set community 0:17 route-map calculator permit 10372 match community c4_136_8 c3_136_119 c4_137_8 c3_137_120 c4_138_8 set community 0:17 route-map calculator permit 10373 match community c3_138_121 c4_139_8 c3_139_122 c4_140_8 c3_140_123 set community 0:17 route-map calculator permit 10374 match community c4_141_8 c3_141_124 c4_142_8 c3_142_125 c4_143_8 set community 0:17 route-map calculator permit 10375 match community c3_143_126 c3_144_127 c3_145_128 c3_146_129 c3_147_130 set community 0:17 route-map calculator permit 10376 match community c3_148_131 c3_149_132 c3_150_133 c3_151_134 c3_152_135 set community 0:17 route-map calculator permit 10377 match community c4_153_9 c3_153_136 c4_154_9 c3_154_137 c4_155_9 set community 0:17 route-map calculator permit 10378 match community c3_155_138 c4_156_9 c3_156_139 c4_157_9 c3_157_140 set community 0:17 route-map calculator permit 10379 match community c4_158_9 c3_158_141 c4_159_9 c3_159_142 c4_160_9 set community 0:17 route-map calculator permit 10380 match community c3_160_143 c4_161_9 c3_161_144 c3_162_145 c3_163_146 set community 0:17 route-map calculator permit 10381 match community c3_164_147 c3_165_148 c3_166_149 c3_167_150 c3_168_151 set community 0:17 route-map calculator permit 10382 match community c3_169_152 c4_170_10 c3_170_153 c4_171_10 c3_171_154 set community 0:17 route-map calculator permit 10383 match community c4_172_10 c3_172_155 c4_173_10 c3_173_156 c4_174_10 set community 0:17 route-map calculator permit 10384 match community c3_174_157 c4_175_10 c3_175_158 c4_176_10 c3_176_159 set community 0:17 route-map calculator permit 10385 match community c4_177_10 c3_177_160 c4_178_10 c3_178_161 c4_179_10 set community 0:17 route-map calculator permit 10386 match community c3_179_162 c3_180_163 c3_181_164 c3_182_165 c3_183_166 set community 0:17 route-map calculator permit 10387 match community c3_184_167 c3_185_168 c3_186_169 c4_187_11 c3_187_170 set community 0:17 route-map calculator permit 10388 match community c4_188_11 c3_188_171 c4_189_11 c3_189_172 c4_190_11 set community 0:17 route-map calculator permit 10389 match community c3_190_173 c4_191_11 c3_191_174 c4_192_11 c3_192_175 set community 0:17 route-map calculator permit 10390 match community c4_193_11 c3_193_176 c4_194_11 c3_194_177 c4_195_11 set community 0:17 route-map calculator permit 10391 match community c3_195_178 c4_196_11 c3_196_179 c4_197_11 c3_197_180 set community 0:17 route-map calculator permit 10392 match community c3_198_181 c3_199_182 c3_200_183 c3_201_184 c3_202_185 set community 0:17 route-map calculator permit 10393 match community c3_203_186 c4_204_12 c3_204_187 c4_205_12 c3_205_188 set community 0:17 route-map calculator permit 10394 match community c4_206_12 c3_206_189 c4_207_12 c3_207_190 c4_208_12 set community 0:17 route-map calculator permit 10395 match community c3_208_191 c4_209_12 c3_209_192 c4_210_12 c3_210_193 set community 0:17 route-map calculator permit 10396 match community c4_211_12 c3_211_194 c4_212_12 c3_212_195 c4_213_12 set community 0:17 route-map calculator permit 10397 match community c3_213_196 c4_214_12 c3_214_197 c4_215_12 c3_215_198 set community 0:17 route-map calculator permit 10398 match community c3_216_199 c3_217_200 c3_218_201 c3_219_202 c3_220_203 set community 0:17 route-map calculator permit 10399 match community c4_221_13 c3_221_204 c4_222_13 c3_222_205 c4_223_13 set community 0:17 route-map calculator permit 10400 match community c3_223_206 c4_224_13 c3_224_207 c4_225_13 c3_225_208 set community 0:17 route-map calculator permit 10401 match community c4_226_13 c3_226_209 c4_227_13 c3_227_210 c4_228_13 set community 0:17 route-map calculator permit 10402 match community c3_228_211 c4_229_13 c3_229_212 c4_230_13 c3_230_213 set community 0:17 route-map calculator permit 10403 match community c4_231_13 c3_231_214 c4_232_13 c3_232_215 c4_233_13 set community 0:17 route-map calculator permit 10404 match community c3_233_216 c3_234_217 c3_235_218 c3_236_219 c3_237_220 set community 0:17 route-map calculator permit 10405 match community c4_238_14 c3_238_221 c4_239_14 c3_239_222 c4_240_14 set community 0:17 route-map calculator permit 10406 match community c3_240_223 c4_241_14 c3_241_224 c4_242_14 c3_242_225 set community 0:17 route-map calculator permit 10407 match community c4_243_14 c3_243_226 c4_244_14 c3_244_227 c4_245_14 set community 0:17 route-map calculator permit 10408 match community c3_245_228 c4_246_14 c3_246_229 c4_247_14 c3_247_230 set community 0:17 route-map calculator permit 10409 match community c4_248_14 c3_248_231 c4_249_14 c3_249_232 c4_250_14 set community 0:17 route-map calculator permit 10410 match community c3_250_233 c4_251_14 c3_251_234 c3_252_235 c3_253_236 set community 0:17 route-map calculator permit 10411 match community c3_254_237 c4_255_15 c3_255_238 c4_256_15 c3_256_239 set community 0:17 ip community-list standard 2_202_250 permit 65000:2 0:202 0:250 route-map calculator permit 10412 match community 2_202_250 set community 0:50500 ip community-list standard 2_118_227 permit 65000:2 0:118 0:227 route-map calculator permit 10413 match community 2_118_227 set community 0:26786 ip community-list standard 2_169_233 permit 65000:2 0:169 0:233 route-map calculator permit 10414 match community 2_169_233 set community 0:39377 ip community-list standard 2_113_137 permit 65000:2 0:113 0:137 route-map calculator permit 10415 match community 2_113_137 set community 0:15481 ip community-list standard 2_104_205 permit 65000:2 0:104 0:205 ip community-list standard 2_130_164 permit 65000:2 0:130 0:164 route-map calculator permit 10416 match community 2_104_205 2_130_164 set community 0:21320 ip community-list standard 2_92_214 permit 65000:2 0:92 0:214 ip community-list standard 2_107_184 permit 65000:2 0:107 0:184 route-map calculator permit 10417 match community 2_92_214 2_107_184 set community 0:19688 ip community-list standard 2_75_206 permit 65000:2 0:75 0:206 ip community-list standard 2_103_150 permit 65000:2 0:103 0:150 route-map calculator permit 10418 match community 2_75_206 2_103_150 set community 0:15450 ip community-list standard 2_89_201 permit 65000:2 0:89 0:201 route-map calculator permit 10419 match community 2_89_201 set community 0:17889 ip community-list standard 2_43_163 permit 65000:2 0:43 0:163 route-map calculator permit 10420 match community 2_43_163 set community 0:7009 ip community-list standard 2_93_141 permit 65000:2 0:93 0:141 route-map calculator permit 10421 match community 2_93_141 set community 0:13113 ip community-list standard 2_112_139 permit 65000:2 0:112 0:139 route-map calculator permit 10422 match community 2_112_139 set community 0:15568 ip community-list standard 2_125_239 permit 65000:2 0:125 0:239 route-map calculator permit 10423 match community 2_125_239 set community 0:29875 ip community-list standard 2_135_151 permit 65000:2 0:135 0:151 route-map calculator permit 10424 match community 2_135_151 set community 0:20385 ip community-list standard 2_206_219 permit 65000:2 0:206 0:219 route-map calculator permit 10425 match community 2_206_219 set community 0:45114 ip community-list standard 2_65_158 permit 65000:2 0:65 0:158 ip community-list standard 2_79_130 permit 65000:2 0:79 0:130 route-map calculator permit 10426 match community 2_65_158 2_79_130 set community 0:10270 ip community-list standard 2_185_248 permit 65000:2 0:185 0:248 route-map calculator permit 10427 match community 2_185_248 set community 0:45880 ip community-list standard 2_150_241 permit 65000:2 0:150 0:241 route-map calculator permit 10428 match community 2_150_241 set community 0:36150 ip community-list standard 2_83_226 permit 65000:2 0:83 0:226 ip community-list standard 2_113_166 permit 65000:2 0:113 0:166 route-map calculator permit 10429 match community 2_83_226 2_113_166 set community 0:18758 ip community-list standard 2_154_166 permit 65000:2 0:154 0:166 route-map calculator permit 10430 match community 2_154_166 set community 0:25564 ip community-list standard 2_180_250 permit 65000:2 0:180 0:250 ip community-list standard 2_200_225 permit 65000:2 0:200 0:225 route-map calculator permit 10431 match community 2_180_250 2_200_225 set community 0:45000 ip community-list standard 2_208_242 permit 65000:2 0:208 0:242 route-map calculator permit 10432 match community 2_208_242 set community 0:50336 ip community-list standard 2_19_97 permit 65000:2 0:19 0:97 route-map calculator permit 10433 match community 2_19_97 set community 0:1843 ip community-list standard 2_4_161 permit 65000:2 0:4 0:161 ip community-list standard 2_7_92 permit 65000:2 0:7 0:92 ip community-list standard 2_14_46 permit 65000:2 0:14 0:46 ip community-list standard 2_23_28 permit 65000:2 0:23 0:28 route-map calculator permit 10434 match community 2_4_161 2_7_92 2_14_46 2_23_28 set community 0:644 ip community-list standard 2_21_253 permit 65000:2 0:21 0:253 ip community-list standard 2_23_231 permit 65000:2 0:23 0:231 ip community-list standard 2_33_161 permit 65000:2 0:33 0:161 ip community-list standard 2_69_77 permit 65000:2 0:69 0:77 route-map calculator permit 10435 match community 2_21_253 2_23_231 2_33_161 2_69_77 set community 0:5313 ip community-list standard 2_12_242 permit 65000:2 0:12 0:242 ip community-list standard 2_22_132 permit 65000:2 0:22 0:132 ip community-list standard 2_24_121 permit 65000:2 0:24 0:121 ip community-list standard 2_33_88 permit 65000:2 0:33 0:88 ip community-list standard 2_44_66 permit 65000:2 0:44 0:66 route-map calculator permit 10436 match community 2_12_242 2_22_132 2_24_121 2_33_88 2_44_66 set community 0:2904 ip community-list standard 2_79_167 permit 65000:2 0:79 0:167 route-map calculator permit 10437 match community 2_79_167 set community 0:13193 ip community-list standard 2_89_223 permit 65000:2 0:89 0:223 route-map calculator permit 10438 match community 2_89_223 set community 0:19847 ip community-list standard 2_37_203 permit 65000:2 0:37 0:203 route-map calculator permit 10439 match community 2_37_203 set community 0:7511 ip community-list standard 2_223_241 permit 65000:2 0:223 0:241 route-map calculator permit 10440 match community 2_223_241 set community 0:53743 ip community-list standard 2_154_199 permit 65000:2 0:154 0:199 route-map calculator permit 10441 match community 2_154_199 set community 0:30646 ip community-list standard 2_191_236 permit 65000:2 0:191 0:236 route-map calculator permit 10442 match community 2_191_236 set community 0:45076 ip community-list standard 2_7_211 permit 65000:2 0:7 0:211 route-map calculator permit 10443 match community 2_7_211 set community 0:1477 ip community-list standard 2_7_206 permit 65000:2 0:7 0:206 ip community-list standard 2_14_103 permit 65000:2 0:14 0:103 route-map calculator permit 10444 match community 2_7_206 2_14_103 set community 0:1442 ip community-list standard 2_143_231 permit 65000:2 0:143 0:231 route-map calculator permit 10445 match community 2_143_231 set community 0:33033 ip community-list standard 2_71_243 permit 65000:2 0:71 0:243 ip community-list standard 2_81_213 permit 65000:2 0:81 0:213 route-map calculator permit 10446 match community 2_71_243 2_81_213 set community 0:17253 ip community-list standard 2_86_213 permit 65000:2 0:86 0:213 ip community-list standard 2_129_142 permit 65000:2 0:129 0:142 route-map calculator permit 10447 match community 2_86_213 2_129_142 set community 0:18318 ip community-list standard 2_32_191 permit 65000:2 0:32 0:191 route-map calculator permit 10448 match community 2_32_191 set community 0:6112 ip community-list standard 2_122_252 permit 65000:2 0:122 0:252 ip community-list standard 2_126_244 permit 65000:2 0:126 0:244 ip community-list standard 2_168_183 permit 65000:2 0:168 0:183 route-map calculator permit 10449 match community 2_122_252 2_126_244 2_168_183 set community 0:30744 ip community-list standard 2_23_59 permit 65000:2 0:23 0:59 route-map calculator permit 10450 match community 2_23_59 set community 0:1357 ip community-list standard 2_94_194 permit 65000:2 0:94 0:194 ip community-list standard 2_97_188 permit 65000:2 0:97 0:188 route-map calculator permit 10451 match community 2_94_194 2_97_188 set community 0:18236 ip community-list standard 2_41_237 permit 65000:2 0:41 0:237 ip community-list standard 2_79_123 permit 65000:2 0:79 0:123 route-map calculator permit 10452 match community 2_41_237 2_79_123 set community 0:9717 ip community-list standard 2_58_210 permit 65000:2 0:58 0:210 ip community-list standard 2_60_203 permit 65000:2 0:60 0:203 ip community-list standard 2_70_174 permit 65000:2 0:70 0:174 ip community-list standard 2_84_145 permit 65000:2 0:84 0:145 ip community-list standard 2_87_140 permit 65000:2 0:87 0:140 ip community-list standard 2_105_116 permit 65000:2 0:105 0:116 route-map calculator permit 10453 match community 2_58_210 2_60_203 2_70_174 2_84_145 2_87_140 set community 0:12180 route-map calculator permit 10454 match community 2_105_116 set community 0:12180 ip community-list standard 2_94_221 permit 65000:2 0:94 0:221 route-map calculator permit 10455 match community 2_94_221 set community 0:20774 ip community-list standard 2_92_223 permit 65000:2 0:92 0:223 route-map calculator permit 10456 match community 2_92_223 set community 0:20516 ip community-list standard 2_97_211 permit 65000:2 0:97 0:211 route-map calculator permit 10457 match community 2_97_211 set community 0:20467 ip community-list standard 2_7_86 permit 65000:2 0:7 0:86 ip community-list standard 2_14_43 permit 65000:2 0:14 0:43 route-map calculator permit 10458 match community 2_7_86 2_14_43 set community 0:602 ip community-list standard 2_12_222 permit 65000:2 0:12 0:222 ip community-list standard 2_18_148 permit 65000:2 0:18 0:148 ip community-list standard 2_24_111 permit 65000:2 0:24 0:111 ip community-list standard 2_36_74 permit 65000:2 0:36 0:74 ip community-list standard 2_37_72 permit 65000:2 0:37 0:72 route-map calculator permit 10459 match community 2_12_222 2_18_148 2_24_111 2_36_74 2_37_72 set community 0:2664 ip community-list standard 2_55_253 permit 65000:2 0:55 0:253 ip community-list standard 2_115_121 permit 65000:2 0:115 0:121 route-map calculator permit 10460 match community 2_55_253 2_115_121 set community 0:13915 ip community-list standard 2_92_191 permit 65000:2 0:92 0:191 route-map calculator permit 10461 match community 2_92_191 set community 0:17572 ip community-list standard 2_135_202 permit 65000:2 0:135 0:202 route-map calculator permit 10462 match community 2_135_202 set community 0:27270 ip community-list standard 2_94_141 permit 65000:2 0:94 0:141 route-map calculator permit 10463 match community 2_94_141 set community 0:13254 ip community-list standard 2_226_256 permit 65000:2 0:226 0:256 route-map calculator permit 10464 match community 2_226_256 set community 0:57856 ip community-list standard 2_182_214 permit 65000:2 0:182 0:214 route-map calculator permit 10465 match community 2_182_214 set community 0:38948 ip community-list standard 2_23_169 permit 65000:2 0:23 0:169 route-map calculator permit 10466 match community 2_23_169 set community 0:3887 ip community-list standard 2_21_183 permit 65000:2 0:21 0:183 ip community-list standard 2_61_63 permit 65000:2 0:61 0:63 route-map calculator permit 10467 match community 2_21_183 2_61_63 set community 0:3843 ip community-list standard 2_198_206 permit 65000:2 0:198 0:206 route-map calculator permit 10468 match community 2_198_206 set community 0:40788 ip community-list standard 1_1_182 permit 65000:1 0:1 0:182 ip community-list standard 2_1_183 permit 65000:2 0:1 0:183 ip community-list standard 1_2_181 permit 65000:1 0:2 0:181 ip community-list standard 2_3_61 permit 65000:2 0:3 0:61 ip community-list standard 1_3_180 permit 65000:1 0:3 0:180 ip community-list standard 1_4_179 permit 65000:1 0:4 0:179 ip community-list standard 1_5_178 permit 65000:1 0:5 0:178 ip community-list standard 1_6_177 permit 65000:1 0:6 0:177 ip community-list standard 1_7_176 permit 65000:1 0:7 0:176 ip community-list standard 1_8_175 permit 65000:1 0:8 0:175 ip community-list standard 1_9_174 permit 65000:1 0:9 0:174 ip community-list standard 1_10_173 permit 65000:1 0:10 0:173 ip community-list standard 1_11_172 permit 65000:1 0:11 0:172 ip community-list standard 1_12_171 permit 65000:1 0:12 0:171 ip community-list standard 1_13_170 permit 65000:1 0:13 0:170 ip community-list standard 1_14_169 permit 65000:1 0:14 0:169 ip community-list standard 1_15_168 permit 65000:1 0:15 0:168 ip community-list standard 1_16_167 permit 65000:1 0:16 0:167 ip community-list standard 1_17_166 permit 65000:1 0:17 0:166 ip community-list standard 1_18_165 permit 65000:1 0:18 0:165 ip community-list standard 1_19_164 permit 65000:1 0:19 0:164 ip community-list standard 1_20_163 permit 65000:1 0:20 0:163 ip community-list standard 1_21_162 permit 65000:1 0:21 0:162 ip community-list standard 1_22_161 permit 65000:1 0:22 0:161 ip community-list standard 1_23_160 permit 65000:1 0:23 0:160 ip community-list standard 1_24_159 permit 65000:1 0:24 0:159 ip community-list standard 1_25_158 permit 65000:1 0:25 0:158 ip community-list standard 1_26_157 permit 65000:1 0:26 0:157 ip community-list standard 1_27_156 permit 65000:1 0:27 0:156 ip community-list standard 1_28_155 permit 65000:1 0:28 0:155 ip community-list standard 1_29_154 permit 65000:1 0:29 0:154 ip community-list standard 1_30_153 permit 65000:1 0:30 0:153 ip community-list standard 1_31_152 permit 65000:1 0:31 0:152 ip community-list standard 1_32_151 permit 65000:1 0:32 0:151 ip community-list standard 1_33_150 permit 65000:1 0:33 0:150 ip community-list standard 1_34_149 permit 65000:1 0:34 0:149 ip community-list standard 1_35_148 permit 65000:1 0:35 0:148 ip community-list standard 1_36_147 permit 65000:1 0:36 0:147 ip community-list standard 1_37_146 permit 65000:1 0:37 0:146 ip community-list standard 1_38_145 permit 65000:1 0:38 0:145 ip community-list standard 1_39_144 permit 65000:1 0:39 0:144 ip community-list standard 1_40_143 permit 65000:1 0:40 0:143 ip community-list standard 1_41_142 permit 65000:1 0:41 0:142 ip community-list standard 1_42_141 permit 65000:1 0:42 0:141 ip community-list standard 1_43_140 permit 65000:1 0:43 0:140 ip community-list standard 1_44_139 permit 65000:1 0:44 0:139 ip community-list standard 1_45_138 permit 65000:1 0:45 0:138 ip community-list standard 1_46_137 permit 65000:1 0:46 0:137 ip community-list standard 1_47_136 permit 65000:1 0:47 0:136 ip community-list standard 1_48_135 permit 65000:1 0:48 0:135 ip community-list standard 1_49_134 permit 65000:1 0:49 0:134 ip community-list standard 1_50_133 permit 65000:1 0:50 0:133 ip community-list standard 1_51_132 permit 65000:1 0:51 0:132 ip community-list standard 1_52_131 permit 65000:1 0:52 0:131 ip community-list standard 1_53_130 permit 65000:1 0:53 0:130 ip community-list standard 1_54_129 permit 65000:1 0:54 0:129 ip community-list standard 1_55_128 permit 65000:1 0:55 0:128 ip community-list standard 1_56_127 permit 65000:1 0:56 0:127 ip community-list standard 1_57_126 permit 65000:1 0:57 0:126 ip community-list standard 1_58_125 permit 65000:1 0:58 0:125 ip community-list standard 1_59_124 permit 65000:1 0:59 0:124 ip community-list standard 1_60_123 permit 65000:1 0:60 0:123 ip community-list standard 1_61_122 permit 65000:1 0:61 0:122 ip community-list standard 1_62_121 permit 65000:1 0:62 0:121 ip community-list standard 1_63_120 permit 65000:1 0:63 0:120 ip community-list standard 1_64_119 permit 65000:1 0:64 0:119 ip community-list standard 1_65_118 permit 65000:1 0:65 0:118 ip community-list standard 1_66_117 permit 65000:1 0:66 0:117 ip community-list standard 1_67_116 permit 65000:1 0:67 0:116 ip community-list standard 1_68_115 permit 65000:1 0:68 0:115 ip community-list standard 1_69_114 permit 65000:1 0:69 0:114 ip community-list standard 1_70_113 permit 65000:1 0:70 0:113 ip community-list standard 1_71_112 permit 65000:1 0:71 0:112 ip community-list standard 1_72_111 permit 65000:1 0:72 0:111 ip community-list standard 1_73_110 permit 65000:1 0:73 0:110 ip community-list standard 1_74_109 permit 65000:1 0:74 0:109 ip community-list standard 1_75_108 permit 65000:1 0:75 0:108 ip community-list standard 1_76_107 permit 65000:1 0:76 0:107 ip community-list standard 1_77_106 permit 65000:1 0:77 0:106 ip community-list standard 1_78_105 permit 65000:1 0:78 0:105 ip community-list standard 1_79_104 permit 65000:1 0:79 0:104 ip community-list standard 1_80_103 permit 65000:1 0:80 0:103 ip community-list standard 1_81_102 permit 65000:1 0:81 0:102 ip community-list standard 1_82_101 permit 65000:1 0:82 0:101 ip community-list standard 1_83_100 permit 65000:1 0:83 0:100 ip community-list standard 1_84_99 permit 65000:1 0:84 0:99 ip community-list standard 1_85_98 permit 65000:1 0:85 0:98 ip community-list standard 1_86_97 permit 65000:1 0:86 0:97 ip community-list standard 1_87_96 permit 65000:1 0:87 0:96 ip community-list standard 1_88_95 permit 65000:1 0:88 0:95 ip community-list standard 1_89_94 permit 65000:1 0:89 0:94 ip community-list standard 1_90_93 permit 65000:1 0:90 0:93 ip community-list standard 1_91_92 permit 65000:1 0:91 0:92 ip community-list expanded c183 permit 1 ^65000:4_0:183_0:1$ ip community-list expanded c183 permit 2 ^65000:3_0:184_0:1$ ip community-list expanded c183 permit 3 ^65000:3_0:185_0:2$ ip community-list expanded c183 permit 4 ^65000:3_0:186_0:3$ ip community-list expanded c183 permit 5 ^65000:3_0:187_0:4$ ip community-list expanded c183 permit 6 ^65000:3_0:188_0:5$ ip community-list expanded c183 permit 7 ^65000:3_0:189_0:6$ ip community-list expanded c183 permit 8 ^65000:3_0:190_0:7$ ip community-list expanded c183 permit 9 ^65000:3_0:191_0:8$ ip community-list expanded c183 permit 10 ^65000:3_0:192_0:9$ ip community-list expanded c183 permit 11 ^65000:3_0:193_0:10$ ip community-list expanded c183 permit 12 ^65000:3_0:194_0:11$ ip community-list expanded c183 permit 13 ^65000:3_0:195_0:12$ ip community-list expanded c183 permit 14 ^65000:3_0:196_0:13$ ip community-list expanded c183 permit 15 ^65000:3_0:197_0:14$ ip community-list expanded c183 permit 16 ^65000:3_0:198_0:15$ ip community-list expanded c183 permit 17 ^65000:3_0:199_0:16$ ip community-list expanded c183 permit 18 ^65000:3_0:200_0:17$ ip community-list expanded c183 permit 19 ^65000:3_0:201_0:18$ ip community-list expanded c183 permit 20 ^65000:3_0:202_0:19$ ip community-list expanded c183 permit 21 ^65000:3_0:203_0:20$ ip community-list expanded c183 permit 22 ^65000:3_0:204_0:21$ ip community-list expanded c183 permit 23 ^65000:3_0:205_0:22$ ip community-list expanded c183 permit 24 ^65000:3_0:206_0:23$ ip community-list expanded c183 permit 25 ^65000:3_0:207_0:24$ ip community-list expanded c183 permit 26 ^65000:3_0:208_0:25$ ip community-list expanded c183 permit 27 ^65000:3_0:209_0:26$ ip community-list expanded c183 permit 28 ^65000:3_0:210_0:27$ ip community-list expanded c183 permit 29 ^65000:3_0:211_0:28$ ip community-list expanded c183 permit 30 ^65000:3_0:212_0:29$ ip community-list expanded c183 permit 31 ^65000:3_0:213_0:30$ ip community-list expanded c183 permit 32 ^65000:3_0:214_0:31$ ip community-list expanded c183 permit 33 ^65000:3_0:215_0:32$ ip community-list expanded c183 permit 34 ^65000:3_0:216_0:33$ ip community-list expanded c183 permit 35 ^65000:3_0:217_0:34$ ip community-list expanded c183 permit 36 ^65000:3_0:218_0:35$ ip community-list expanded c183 permit 37 ^65000:3_0:219_0:36$ ip community-list expanded c183 permit 38 ^65000:3_0:220_0:37$ ip community-list expanded c183 permit 39 ^65000:3_0:221_0:38$ ip community-list expanded c183 permit 40 ^65000:3_0:222_0:39$ ip community-list expanded c183 permit 41 ^65000:3_0:223_0:40$ ip community-list expanded c183 permit 42 ^65000:3_0:224_0:41$ ip community-list expanded c183 permit 43 ^65000:3_0:225_0:42$ ip community-list expanded c183 permit 44 ^65000:3_0:226_0:43$ ip community-list expanded c183 permit 45 ^65000:3_0:227_0:44$ ip community-list expanded c183 permit 46 ^65000:3_0:228_0:45$ ip community-list expanded c183 permit 47 ^65000:3_0:229_0:46$ ip community-list expanded c183 permit 48 ^65000:3_0:230_0:47$ ip community-list expanded c183 permit 49 ^65000:3_0:231_0:48$ ip community-list expanded c183 permit 50 ^65000:3_0:232_0:49$ ip community-list expanded c183 permit 51 ^65000:3_0:233_0:50$ ip community-list expanded c183 permit 52 ^65000:3_0:234_0:51$ ip community-list expanded c183 permit 53 ^65000:3_0:235_0:52$ ip community-list expanded c183 permit 54 ^65000:3_0:236_0:53$ ip community-list expanded c183 permit 55 ^65000:3_0:237_0:54$ ip community-list expanded c183 permit 56 ^65000:3_0:238_0:55$ ip community-list expanded c183 permit 57 ^65000:3_0:239_0:56$ ip community-list expanded c183 permit 58 ^65000:3_0:240_0:57$ ip community-list expanded c183 permit 59 ^65000:3_0:241_0:58$ ip community-list expanded c183 permit 60 ^65000:3_0:242_0:59$ ip community-list expanded c183 permit 61 ^65000:3_0:243_0:60$ ip community-list expanded c183 permit 62 ^65000:3_0:244_0:61$ ip community-list expanded c183 permit 63 ^65000:3_0:245_0:62$ ip community-list expanded c183 permit 64 ^65000:3_0:246_0:63$ ip community-list expanded c183 permit 65 ^65000:3_0:247_0:64$ ip community-list expanded c183 permit 66 ^65000:3_0:248_0:65$ ip community-list expanded c183 permit 67 ^65000:3_0:249_0:66$ ip community-list expanded c183 permit 68 ^65000:3_0:250_0:67$ ip community-list expanded c183 permit 69 ^65000:3_0:251_0:68$ ip community-list expanded c183 permit 70 ^65000:3_0:252_0:69$ ip community-list expanded c183 permit 71 ^65000:3_0:253_0:70$ ip community-list expanded c183 permit 72 ^65000:3_0:254_0:71$ ip community-list expanded c183 permit 73 ^65000:3_0:255_0:72$ ip community-list expanded c183 permit 74 ^65000:3_0:256_0:73$ route-map calculator permit 10469 match community 1_1_182 2_1_183 1_2_181 2_3_61 1_3_180 set community 0:183 route-map calculator permit 10470 match community 1_4_179 1_5_178 1_6_177 1_7_176 1_8_175 set community 0:183 route-map calculator permit 10471 match community 1_9_174 1_10_173 1_11_172 1_12_171 1_13_170 set community 0:183 route-map calculator permit 10472 match community 1_14_169 1_15_168 1_16_167 1_17_166 1_18_165 set community 0:183 route-map calculator permit 10473 match community 1_19_164 1_20_163 1_21_162 1_22_161 1_23_160 set community 0:183 route-map calculator permit 10474 match community 1_24_159 1_25_158 1_26_157 1_27_156 1_28_155 set community 0:183 route-map calculator permit 10475 match community 1_29_154 1_30_153 1_31_152 1_32_151 1_33_150 set community 0:183 route-map calculator permit 10476 match community 1_34_149 1_35_148 1_36_147 1_37_146 1_38_145 set community 0:183 route-map calculator permit 10477 match community 1_39_144 1_40_143 1_41_142 1_42_141 1_43_140 set community 0:183 route-map calculator permit 10478 match community 1_44_139 1_45_138 1_46_137 1_47_136 1_48_135 set community 0:183 route-map calculator permit 10479 match community 1_49_134 1_50_133 1_51_132 1_52_131 1_53_130 set community 0:183 route-map calculator permit 10480 match community 1_54_129 1_55_128 1_56_127 1_57_126 1_58_125 set community 0:183 route-map calculator permit 10481 match community 1_59_124 1_60_123 1_61_122 1_62_121 1_63_120 set community 0:183 route-map calculator permit 10482 match community 1_64_119 1_65_118 1_66_117 1_67_116 1_68_115 set community 0:183 route-map calculator permit 10483 match community 1_69_114 1_70_113 1_71_112 1_72_111 1_73_110 set community 0:183 route-map calculator permit 10484 match community 1_74_109 1_75_108 1_76_107 1_77_106 1_78_105 set community 0:183 route-map calculator permit 10485 match community 1_79_104 1_80_103 1_81_102 1_82_101 1_83_100 set community 0:183 route-map calculator permit 10486 match community 1_84_99 1_85_98 1_86_97 1_87_96 1_88_95 set community 0:183 route-map calculator permit 10487 match community 1_89_94 1_90_93 1_91_92 c4_183_1 c3_184_1 set community 0:183 route-map calculator permit 10488 match community c3_185_2 c3_186_3 c3_187_4 c3_188_5 c3_189_6 set community 0:183 route-map calculator permit 10489 match community c3_190_7 c3_191_8 c3_192_9 c3_193_10 c3_194_11 set community 0:183 route-map calculator permit 10490 match community c3_195_12 c3_196_13 c3_197_14 c3_198_15 c3_199_16 set community 0:183 route-map calculator permit 10491 match community c3_200_17 c3_201_18 c3_202_19 c3_203_20 c3_204_21 set community 0:183 route-map calculator permit 10492 match community c3_205_22 c3_206_23 c3_207_24 c3_208_25 c3_209_26 set community 0:183 route-map calculator permit 10493 match community c3_210_27 c3_211_28 c3_212_29 c3_213_30 c3_214_31 set community 0:183 route-map calculator permit 10494 match community c3_215_32 c3_216_33 c3_217_34 c3_218_35 c3_219_36 set community 0:183 route-map calculator permit 10495 match community c3_220_37 c3_221_38 c3_222_39 c3_223_40 c3_224_41 set community 0:183 route-map calculator permit 10496 match community c3_225_42 c3_226_43 c3_227_44 c3_228_45 c3_229_46 set community 0:183 route-map calculator permit 10497 match community c3_230_47 c3_231_48 c3_232_49 c3_233_50 c3_234_51 set community 0:183 route-map calculator permit 10498 match community c3_235_52 c3_236_53 c3_237_54 c3_238_55 c3_239_56 set community 0:183 route-map calculator permit 10499 match community c3_240_57 c3_241_58 c3_242_59 c3_243_60 c3_244_61 set community 0:183 route-map calculator permit 10500 match community c3_245_62 c3_246_63 c3_247_64 c3_248_65 c3_249_66 set community 0:183 route-map calculator permit 10501 match community c3_250_67 c3_251_68 c3_252_69 c3_253_70 c3_254_71 set community 0:183 route-map calculator permit 10502 match community c3_255_72 c3_256_73 set community 0:183 ip community-list standard 2_174_174 permit 65000:2 0:174 0:174 route-map calculator permit 10503 match community 2_174_174 set community 0:30276 ip community-list standard 2_164_202 permit 65000:2 0:164 0:202 route-map calculator permit 10504 match community 2_164_202 set community 0:33128 ip community-list standard 2_2_252 permit 65000:2 0:2 0:252 ip community-list standard 2_3_168 permit 65000:2 0:3 0:168 ip community-list standard 2_4_126 permit 65000:2 0:4 0:126 ip community-list standard 2_6_84 permit 65000:2 0:6 0:84 ip community-list standard 2_7_72 permit 65000:2 0:7 0:72 ip community-list standard 2_8_63 permit 65000:2 0:8 0:63 ip community-list standard 2_9_56 permit 65000:2 0:9 0:56 ip community-list standard 2_12_42 permit 65000:2 0:12 0:42 ip community-list standard 2_14_36 permit 65000:2 0:14 0:36 ip community-list standard 2_18_28 permit 65000:2 0:18 0:28 ip community-list standard 2_21_24 permit 65000:2 0:21 0:24 ip community-list standard 1_248_256 permit 65000:1 0:248 0:256 ip community-list standard 1_249_255 permit 65000:1 0:249 0:255 ip community-list standard 1_250_254 permit 65000:1 0:250 0:254 ip community-list standard 1_251_253 permit 65000:1 0:251 0:253 ip community-list standard 1_252_252 permit 65000:1 0:252 0:252 route-map calculator permit 10505 match community 2_2_252 2_3_168 2_4_126 2_6_84 2_7_72 set community 0:504 route-map calculator permit 10506 match community 2_8_63 2_9_56 2_12_42 2_14_36 2_18_28 set community 0:504 route-map calculator permit 10507 match community 2_21_24 1_248_256 1_249_255 1_250_254 1_251_253 set community 0:504 route-map calculator permit 10508 match community 1_252_252 set community 0:504 ip community-list standard 2_86_231 permit 65000:2 0:86 0:231 ip community-list standard 2_129_154 permit 65000:2 0:129 0:154 route-map calculator permit 10509 match community 2_86_231 2_129_154 set community 0:19866 ip community-list standard 2_102_222 permit 65000:2 0:102 0:222 ip community-list standard 2_111_204 permit 65000:2 0:111 0:204 ip community-list standard 2_148_153 permit 65000:2 0:148 0:153 route-map calculator permit 10510 match community 2_102_222 2_111_204 2_148_153 set community 0:22644 ip community-list standard 2_16_136 permit 65000:2 0:16 0:136 ip community-list standard 2_17_128 permit 65000:2 0:17 0:128 ip community-list standard 2_32_68 permit 65000:2 0:32 0:68 ip community-list standard 2_34_64 permit 65000:2 0:34 0:64 route-map calculator permit 10511 match community 2_16_136 2_17_128 2_32_68 2_34_64 set community 0:2176 ip community-list standard 2_53_146 permit 65000:2 0:53 0:146 ip community-list standard 2_73_106 permit 65000:2 0:73 0:106 route-map calculator permit 10512 match community 2_53_146 2_73_106 set community 0:7738 ip community-list standard 2_226_241 permit 65000:2 0:226 0:241 route-map calculator permit 10513 match community 2_226_241 set community 0:54466 ip community-list standard 2_109_226 permit 65000:2 0:109 0:226 ip community-list standard 2_113_218 permit 65000:2 0:113 0:218 route-map calculator permit 10514 match community 2_109_226 2_113_218 set community 0:24634 ip community-list standard 2_26_248 permit 65000:2 0:26 0:248 ip community-list standard 2_31_208 permit 65000:2 0:31 0:208 ip community-list standard 2_52_124 permit 65000:2 0:52 0:124 ip community-list standard 2_62_104 permit 65000:2 0:62 0:104 route-map calculator permit 10515 match community 2_26_248 2_31_208 2_52_124 2_62_104 set community 0:6448 ip community-list standard 2_2_225 permit 65000:2 0:2 0:225 ip community-list standard 2_3_150 permit 65000:2 0:3 0:150 ip community-list standard 2_5_90 permit 65000:2 0:5 0:90 ip community-list standard 2_6_75 permit 65000:2 0:6 0:75 ip community-list standard 2_9_50 permit 65000:2 0:9 0:50 ip community-list standard 2_10_45 permit 65000:2 0:10 0:45 ip community-list standard 2_15_30 permit 65000:2 0:15 0:30 ip community-list standard 2_18_25 permit 65000:2 0:18 0:25 ip community-list standard 1_194_256 permit 65000:1 0:194 0:256 ip community-list standard 1_195_255 permit 65000:1 0:195 0:255 ip community-list standard 1_196_254 permit 65000:1 0:196 0:254 ip community-list standard 1_197_253 permit 65000:1 0:197 0:253 ip community-list standard 1_198_252 permit 65000:1 0:198 0:252 ip community-list standard 1_199_251 permit 65000:1 0:199 0:251 ip community-list standard 1_200_250 permit 65000:1 0:200 0:250 ip community-list standard 1_201_249 permit 65000:1 0:201 0:249 ip community-list standard 1_202_248 permit 65000:1 0:202 0:248 ip community-list standard 1_203_247 permit 65000:1 0:203 0:247 ip community-list standard 1_204_246 permit 65000:1 0:204 0:246 ip community-list standard 1_205_245 permit 65000:1 0:205 0:245 ip community-list standard 1_206_244 permit 65000:1 0:206 0:244 ip community-list standard 1_207_243 permit 65000:1 0:207 0:243 ip community-list standard 1_208_242 permit 65000:1 0:208 0:242 ip community-list standard 1_209_241 permit 65000:1 0:209 0:241 ip community-list standard 1_210_240 permit 65000:1 0:210 0:240 ip community-list standard 1_211_239 permit 65000:1 0:211 0:239 ip community-list standard 1_212_238 permit 65000:1 0:212 0:238 ip community-list standard 1_213_237 permit 65000:1 0:213 0:237 ip community-list standard 1_214_236 permit 65000:1 0:214 0:236 ip community-list standard 1_215_235 permit 65000:1 0:215 0:235 ip community-list standard 1_216_234 permit 65000:1 0:216 0:234 ip community-list standard 1_217_233 permit 65000:1 0:217 0:233 ip community-list standard 1_218_232 permit 65000:1 0:218 0:232 ip community-list standard 1_219_231 permit 65000:1 0:219 0:231 ip community-list standard 1_220_230 permit 65000:1 0:220 0:230 ip community-list standard 1_221_229 permit 65000:1 0:221 0:229 ip community-list standard 1_222_228 permit 65000:1 0:222 0:228 ip community-list standard 1_223_227 permit 65000:1 0:223 0:227 ip community-list standard 1_224_226 permit 65000:1 0:224 0:226 ip community-list standard 1_225_225 permit 65000:1 0:225 0:225 route-map calculator permit 10516 match community 2_2_225 2_3_150 2_5_90 2_6_75 2_9_50 set community 0:450 route-map calculator permit 10517 match community 2_10_45 2_15_30 2_18_25 1_194_256 1_195_255 set community 0:450 route-map calculator permit 10518 match community 1_196_254 1_197_253 1_198_252 1_199_251 1_200_250 set community 0:450 route-map calculator permit 10519 match community 1_201_249 1_202_248 1_203_247 1_204_246 1_205_245 set community 0:450 route-map calculator permit 10520 match community 1_206_244 1_207_243 1_208_242 1_209_241 1_210_240 set community 0:450 route-map calculator permit 10521 match community 1_211_239 1_212_238 1_213_237 1_214_236 1_215_235 set community 0:450 route-map calculator permit 10522 match community 1_216_234 1_217_233 1_218_232 1_219_231 1_220_230 set community 0:450 route-map calculator permit 10523 match community 1_221_229 1_222_228 1_223_227 1_224_226 1_225_225 set community 0:450 ip community-list standard 2_75_250 permit 65000:2 0:75 0:250 ip community-list standard 2_125_150 permit 65000:2 0:125 0:150 route-map calculator permit 10524 match community 2_75_250 2_125_150 set community 0:18750 ip community-list standard 1_1_2 permit 65000:1 0:1 0:2 ip community-list standard 2_1_3 permit 65000:2 0:1 0:3 ip community-list expanded c3 permit 1 ^65000:4_0:3_0:1$ ip community-list expanded c3 permit 2 ^65000:3_0:4_0:1$ ip community-list expanded c3 permit 3 ^65000:3_0:5_0:2$ ip community-list expanded c3 permit 4 ^65000:4_0:6_0:2$ ip community-list expanded c3 permit 5 ^65000:3_0:6_0:3$ ip community-list expanded c3 permit 6 ^65000:4_0:7_0:2$ ip community-list expanded c3 permit 7 ^65000:3_0:7_0:4$ ip community-list expanded c3 permit 8 ^65000:3_0:8_0:5$ ip community-list expanded c3 permit 9 ^65000:4_0:9_0:3$ ip community-list expanded c3 permit 10 ^65000:3_0:9_0:6$ ip community-list expanded c3 permit 11 ^65000:4_0:10_0:3$ ip community-list expanded c3 permit 12 ^65000:3_0:10_0:7$ ip community-list expanded c3 permit 13 ^65000:4_0:11_0:3$ ip community-list expanded c3 permit 14 ^65000:3_0:11_0:8$ ip community-list expanded c3 permit 15 ^65000:4_0:12_0:4$ ip community-list expanded c3 permit 16 ^65000:3_0:12_0:9$ ip community-list expanded c3 permit 17 ^65000:4_0:13_0:4$ ip community-list expanded c3 permit 18 ^65000:3_0:13_0:10$ ip community-list expanded c3 permit 19 ^65000:4_0:14_0:4$ ip community-list expanded c3 permit 20 ^65000:3_0:14_0:11$ ip community-list expanded c3 permit 21 ^65000:4_0:15_0:4$ ip community-list expanded c3 permit 22 ^65000:4_0:15_0:5$ ip community-list expanded c3 permit 23 ^65000:3_0:15_0:12$ ip community-list expanded c3 permit 24 ^65000:4_0:16_0:5$ ip community-list expanded c3 permit 25 ^65000:3_0:16_0:13$ ip community-list expanded c3 permit 26 ^65000:4_0:17_0:5$ ip community-list expanded c3 permit 27 ^65000:3_0:17_0:14$ ip community-list expanded c3 permit 28 ^65000:4_0:18_0:5$ ip community-list expanded c3 permit 29 ^65000:4_0:18_0:6$ ip community-list expanded c3 permit 30 ^65000:3_0:18_0:15$ ip community-list expanded c3 permit 31 ^65000:4_0:19_0:5$ ip community-list expanded c3 permit 32 ^65000:4_0:19_0:6$ ip community-list expanded c3 permit 33 ^65000:3_0:19_0:16$ ip community-list expanded c3 permit 34 ^65000:4_0:20_0:6$ ip community-list expanded c3 permit 35 ^65000:3_0:20_0:17$ ip community-list expanded c3 permit 36 ^65000:4_0:21_0:6$ ip community-list expanded c3 permit 37 ^65000:4_0:21_0:7$ ip community-list expanded c3 permit 38 ^65000:3_0:21_0:18$ ip community-list expanded c3 permit 39 ^65000:4_0:22_0:6$ ip community-list expanded c3 permit 40 ^65000:4_0:22_0:7$ ip community-list expanded c3 permit 41 ^65000:3_0:22_0:19$ ip community-list expanded c3 permit 42 ^65000:4_0:23_0:6$ ip community-list expanded c3 permit 43 ^65000:4_0:23_0:7$ ip community-list expanded c3 permit 44 ^65000:3_0:23_0:20$ ip community-list expanded c3 permit 45 ^65000:4_0:24_0:7$ ip community-list expanded c3 permit 46 ^65000:4_0:24_0:8$ ip community-list expanded c3 permit 47 ^65000:3_0:24_0:21$ ip community-list expanded c3 permit 48 ^65000:4_0:25_0:7$ ip community-list expanded c3 permit 49 ^65000:4_0:25_0:8$ ip community-list expanded c3 permit 50 ^65000:3_0:25_0:22$ ip community-list expanded c3 permit 51 ^65000:4_0:26_0:7$ ip community-list expanded c3 permit 52 ^65000:4_0:26_0:8$ ip community-list expanded c3 permit 53 ^65000:3_0:26_0:23$ ip community-list expanded c3 permit 54 ^65000:4_0:27_0:7$ ip community-list expanded c3 permit 55 ^65000:4_0:27_0:8$ ip community-list expanded c3 permit 56 ^65000:4_0:27_0:9$ ip community-list expanded c3 permit 57 ^65000:3_0:27_0:24$ ip community-list expanded c3 permit 58 ^65000:4_0:28_0:8$ ip community-list expanded c3 permit 59 ^65000:4_0:28_0:9$ ip community-list expanded c3 permit 60 ^65000:3_0:28_0:25$ ip community-list expanded c3 permit 61 ^65000:4_0:29_0:8$ ip community-list expanded c3 permit 62 ^65000:4_0:29_0:9$ ip community-list expanded c3 permit 63 ^65000:3_0:29_0:26$ ip community-list expanded c3 permit 64 ^65000:4_0:30_0:8$ ip community-list expanded c3 permit 65 ^65000:4_0:30_0:9$ ip community-list expanded c3 permit 66 ^65000:4_0:30_0:10$ ip community-list expanded c3 permit 67 ^65000:3_0:30_0:27$ ip community-list expanded c3 permit 68 ^65000:4_0:31_0:8$ ip community-list expanded c3 permit 69 ^65000:4_0:31_0:9$ ip community-list expanded c3 permit 70 ^65000:4_0:31_0:10$ ip community-list expanded c3 permit 71 ^65000:3_0:31_0:28$ ip community-list expanded c3 permit 72 ^65000:4_0:32_0:9$ ip community-list expanded c3 permit 73 ^65000:4_0:32_0:10$ ip community-list expanded c3 permit 74 ^65000:3_0:32_0:29$ ip community-list expanded c3 permit 75 ^65000:4_0:33_0:9$ ip community-list expanded c3 permit 76 ^65000:4_0:33_0:10$ ip community-list expanded c3 permit 77 ^65000:4_0:33_0:11$ ip community-list expanded c3 permit 78 ^65000:3_0:33_0:30$ ip community-list expanded c3 permit 79 ^65000:4_0:34_0:9$ ip community-list expanded c3 permit 80 ^65000:4_0:34_0:10$ ip community-list expanded c3 permit 81 ^65000:4_0:34_0:11$ ip community-list expanded c3 permit 82 ^65000:3_0:34_0:31$ ip community-list expanded c3 permit 83 ^65000:4_0:35_0:9$ ip community-list expanded c3 permit 84 ^65000:4_0:35_0:10$ ip community-list expanded c3 permit 85 ^65000:4_0:35_0:11$ ip community-list expanded c3 permit 86 ^65000:3_0:35_0:32$ ip community-list expanded c3 permit 87 ^65000:4_0:36_0:10$ ip community-list expanded c3 permit 88 ^65000:4_0:36_0:11$ ip community-list expanded c3 permit 89 ^65000:4_0:36_0:12$ ip community-list expanded c3 permit 90 ^65000:3_0:36_0:33$ ip community-list expanded c3 permit 91 ^65000:4_0:37_0:10$ ip community-list expanded c3 permit 92 ^65000:4_0:37_0:11$ ip community-list expanded c3 permit 93 ^65000:4_0:37_0:12$ ip community-list expanded c3 permit 94 ^65000:3_0:37_0:34$ ip community-list expanded c3 permit 95 ^65000:4_0:38_0:10$ ip community-list expanded c3 permit 96 ^65000:4_0:38_0:11$ ip community-list expanded c3 permit 97 ^65000:4_0:38_0:12$ ip community-list expanded c3 permit 98 ^65000:3_0:38_0:35$ ip community-list expanded c3 permit 99 ^65000:4_0:39_0:10$ ip community-list expanded c3 permit 100 ^65000:4_0:39_0:11$ ip community-list expanded c3 permit 101 ^65000:4_0:39_0:12$ ip community-list expanded c3 permit 102 ^65000:4_0:39_0:13$ ip community-list expanded c3 permit 103 ^65000:3_0:39_0:36$ ip community-list expanded c3 permit 104 ^65000:4_0:40_0:11$ ip community-list expanded c3 permit 105 ^65000:4_0:40_0:12$ ip community-list expanded c3 permit 106 ^65000:4_0:40_0:13$ ip community-list expanded c3 permit 107 ^65000:3_0:40_0:37$ ip community-list expanded c3 permit 108 ^65000:4_0:41_0:11$ ip community-list expanded c3 permit 109 ^65000:4_0:41_0:12$ ip community-list expanded c3 permit 110 ^65000:4_0:41_0:13$ ip community-list expanded c3 permit 111 ^65000:3_0:41_0:38$ ip community-list expanded c3 permit 112 ^65000:4_0:42_0:11$ ip community-list expanded c3 permit 113 ^65000:4_0:42_0:12$ ip community-list expanded c3 permit 114 ^65000:4_0:42_0:13$ ip community-list expanded c3 permit 115 ^65000:4_0:42_0:14$ ip community-list expanded c3 permit 116 ^65000:3_0:42_0:39$ ip community-list expanded c3 permit 117 ^65000:4_0:43_0:11$ ip community-list expanded c3 permit 118 ^65000:4_0:43_0:12$ ip community-list expanded c3 permit 119 ^65000:4_0:43_0:13$ ip community-list expanded c3 permit 120 ^65000:4_0:43_0:14$ ip community-list expanded c3 permit 121 ^65000:3_0:43_0:40$ ip community-list expanded c3 permit 122 ^65000:4_0:44_0:12$ ip community-list expanded c3 permit 123 ^65000:4_0:44_0:13$ ip community-list expanded c3 permit 124 ^65000:4_0:44_0:14$ ip community-list expanded c3 permit 125 ^65000:3_0:44_0:41$ ip community-list expanded c3 permit 126 ^65000:4_0:45_0:12$ ip community-list expanded c3 permit 127 ^65000:4_0:45_0:13$ ip community-list expanded c3 permit 128 ^65000:4_0:45_0:14$ ip community-list expanded c3 permit 129 ^65000:4_0:45_0:15$ ip community-list expanded c3 permit 130 ^65000:3_0:45_0:42$ ip community-list expanded c3 permit 131 ^65000:4_0:46_0:12$ ip community-list expanded c3 permit 132 ^65000:4_0:46_0:13$ ip community-list expanded c3 permit 133 ^65000:4_0:46_0:14$ ip community-list expanded c3 permit 134 ^65000:4_0:46_0:15$ ip community-list expanded c3 permit 135 ^65000:3_0:46_0:43$ ip community-list expanded c3 permit 136 ^65000:4_0:47_0:12$ ip community-list expanded c3 permit 137 ^65000:4_0:47_0:13$ ip community-list expanded c3 permit 138 ^65000:4_0:47_0:14$ ip community-list expanded c3 permit 139 ^65000:4_0:47_0:15$ ip community-list expanded c3 permit 140 ^65000:3_0:47_0:44$ ip community-list expanded c3 permit 141 ^65000:4_0:48_0:13$ ip community-list expanded c3 permit 142 ^65000:4_0:48_0:14$ ip community-list expanded c3 permit 143 ^65000:4_0:48_0:15$ ip community-list expanded c3 permit 144 ^65000:4_0:48_0:16$ ip community-list expanded c3 permit 145 ^65000:3_0:48_0:45$ ip community-list expanded c3 permit 146 ^65000:4_0:49_0:13$ ip community-list expanded c3 permit 147 ^65000:4_0:49_0:14$ ip community-list expanded c3 permit 148 ^65000:4_0:49_0:15$ ip community-list expanded c3 permit 149 ^65000:4_0:49_0:16$ ip community-list expanded c3 permit 150 ^65000:3_0:49_0:46$ ip community-list expanded c3 permit 151 ^65000:4_0:50_0:13$ ip community-list expanded c3 permit 152 ^65000:4_0:50_0:14$ ip community-list expanded c3 permit 153 ^65000:4_0:50_0:15$ ip community-list expanded c3 permit 154 ^65000:4_0:50_0:16$ ip community-list expanded c3 permit 155 ^65000:3_0:50_0:47$ ip community-list expanded c3 permit 156 ^65000:4_0:51_0:13$ ip community-list expanded c3 permit 157 ^65000:4_0:51_0:14$ ip community-list expanded c3 permit 158 ^65000:4_0:51_0:15$ ip community-list expanded c3 permit 159 ^65000:4_0:51_0:16$ ip community-list expanded c3 permit 160 ^65000:4_0:51_0:17$ ip community-list expanded c3 permit 161 ^65000:3_0:51_0:48$ ip community-list expanded c3 permit 162 ^65000:4_0:52_0:14$ ip community-list expanded c3 permit 163 ^65000:4_0:52_0:15$ ip community-list expanded c3 permit 164 ^65000:4_0:52_0:16$ ip community-list expanded c3 permit 165 ^65000:4_0:52_0:17$ ip community-list expanded c3 permit 166 ^65000:3_0:52_0:49$ ip community-list expanded c3 permit 167 ^65000:4_0:53_0:14$ ip community-list expanded c3 permit 168 ^65000:4_0:53_0:15$ ip community-list expanded c3 permit 169 ^65000:4_0:53_0:16$ ip community-list expanded c3 permit 170 ^65000:4_0:53_0:17$ ip community-list expanded c3 permit 171 ^65000:3_0:53_0:50$ ip community-list expanded c3 permit 172 ^65000:4_0:54_0:14$ ip community-list expanded c3 permit 173 ^65000:4_0:54_0:15$ ip community-list expanded c3 permit 174 ^65000:4_0:54_0:16$ ip community-list expanded c3 permit 175 ^65000:4_0:54_0:17$ ip community-list expanded c3 permit 176 ^65000:4_0:54_0:18$ ip community-list expanded c3 permit 177 ^65000:3_0:54_0:51$ ip community-list expanded c3 permit 178 ^65000:4_0:55_0:14$ ip community-list expanded c3 permit 179 ^65000:4_0:55_0:15$ ip community-list expanded c3 permit 180 ^65000:4_0:55_0:16$ ip community-list expanded c3 permit 181 ^65000:4_0:55_0:17$ ip community-list expanded c3 permit 182 ^65000:4_0:55_0:18$ ip community-list expanded c3 permit 183 ^65000:3_0:55_0:52$ ip community-list expanded c3 permit 184 ^65000:4_0:56_0:15$ ip community-list expanded c3 permit 185 ^65000:4_0:56_0:16$ ip community-list expanded c3 permit 186 ^65000:4_0:56_0:17$ ip community-list expanded c3 permit 187 ^65000:4_0:56_0:18$ ip community-list expanded c3 permit 188 ^65000:3_0:56_0:53$ ip community-list expanded c3 permit 189 ^65000:4_0:57_0:15$ ip community-list expanded c3 permit 190 ^65000:4_0:57_0:16$ ip community-list expanded c3 permit 191 ^65000:4_0:57_0:17$ ip community-list expanded c3 permit 192 ^65000:4_0:57_0:18$ ip community-list expanded c3 permit 193 ^65000:4_0:57_0:19$ ip community-list expanded c3 permit 194 ^65000:3_0:57_0:54$ ip community-list expanded c3 permit 195 ^65000:4_0:58_0:15$ ip community-list expanded c3 permit 196 ^65000:4_0:58_0:16$ ip community-list expanded c3 permit 197 ^65000:4_0:58_0:17$ ip community-list expanded c3 permit 198 ^65000:4_0:58_0:18$ ip community-list expanded c3 permit 199 ^65000:4_0:58_0:19$ ip community-list expanded c3 permit 200 ^65000:3_0:58_0:55$ ip community-list expanded c3 permit 201 ^65000:4_0:59_0:15$ ip community-list expanded c3 permit 202 ^65000:4_0:59_0:16$ ip community-list expanded c3 permit 203 ^65000:4_0:59_0:17$ ip community-list expanded c3 permit 204 ^65000:4_0:59_0:18$ ip community-list expanded c3 permit 205 ^65000:4_0:59_0:19$ ip community-list expanded c3 permit 206 ^65000:3_0:59_0:56$ ip community-list expanded c3 permit 207 ^65000:4_0:60_0:16$ ip community-list expanded c3 permit 208 ^65000:4_0:60_0:17$ ip community-list expanded c3 permit 209 ^65000:4_0:60_0:18$ ip community-list expanded c3 permit 210 ^65000:4_0:60_0:19$ ip community-list expanded c3 permit 211 ^65000:4_0:60_0:20$ ip community-list expanded c3 permit 212 ^65000:3_0:60_0:57$ ip community-list expanded c3 permit 213 ^65000:4_0:61_0:16$ ip community-list expanded c3 permit 214 ^65000:4_0:61_0:17$ ip community-list expanded c3 permit 215 ^65000:4_0:61_0:18$ ip community-list expanded c3 permit 216 ^65000:4_0:61_0:19$ ip community-list expanded c3 permit 217 ^65000:4_0:61_0:20$ ip community-list expanded c3 permit 218 ^65000:3_0:61_0:58$ ip community-list expanded c3 permit 219 ^65000:4_0:62_0:16$ ip community-list expanded c3 permit 220 ^65000:4_0:62_0:17$ ip community-list expanded c3 permit 221 ^65000:4_0:62_0:18$ ip community-list expanded c3 permit 222 ^65000:4_0:62_0:19$ ip community-list expanded c3 permit 223 ^65000:4_0:62_0:20$ ip community-list expanded c3 permit 224 ^65000:3_0:62_0:59$ ip community-list expanded c3 permit 225 ^65000:4_0:63_0:16$ ip community-list expanded c3 permit 226 ^65000:4_0:63_0:17$ ip community-list expanded c3 permit 227 ^65000:4_0:63_0:18$ ip community-list expanded c3 permit 228 ^65000:4_0:63_0:19$ ip community-list expanded c3 permit 229 ^65000:4_0:63_0:20$ ip community-list expanded c3 permit 230 ^65000:4_0:63_0:21$ ip community-list expanded c3 permit 231 ^65000:3_0:63_0:60$ ip community-list expanded c3 permit 232 ^65000:4_0:64_0:17$ ip community-list expanded c3 permit 233 ^65000:4_0:64_0:18$ ip community-list expanded c3 permit 234 ^65000:4_0:64_0:19$ ip community-list expanded c3 permit 235 ^65000:4_0:64_0:20$ ip community-list expanded c3 permit 236 ^65000:4_0:64_0:21$ ip community-list expanded c3 permit 237 ^65000:3_0:64_0:61$ ip community-list expanded c3 permit 238 ^65000:4_0:65_0:17$ ip community-list expanded c3 permit 239 ^65000:4_0:65_0:18$ ip community-list expanded c3 permit 240 ^65000:4_0:65_0:19$ ip community-list expanded c3 permit 241 ^65000:4_0:65_0:20$ ip community-list expanded c3 permit 242 ^65000:4_0:65_0:21$ ip community-list expanded c3 permit 243 ^65000:3_0:65_0:62$ ip community-list expanded c3 permit 244 ^65000:4_0:66_0:17$ ip community-list expanded c3 permit 245 ^65000:4_0:66_0:18$ ip community-list expanded c3 permit 246 ^65000:4_0:66_0:19$ ip community-list expanded c3 permit 247 ^65000:4_0:66_0:20$ ip community-list expanded c3 permit 248 ^65000:4_0:66_0:21$ ip community-list expanded c3 permit 249 ^65000:4_0:66_0:22$ ip community-list expanded c3 permit 250 ^65000:3_0:66_0:63$ ip community-list expanded c3 permit 251 ^65000:4_0:67_0:17$ ip community-list expanded c3 permit 252 ^65000:4_0:67_0:18$ ip community-list expanded c3 permit 253 ^65000:4_0:67_0:19$ ip community-list expanded c3 permit 254 ^65000:4_0:67_0:20$ ip community-list expanded c3 permit 255 ^65000:4_0:67_0:21$ ip community-list expanded c3 permit 256 ^65000:4_0:67_0:22$ ip community-list expanded c3 permit 257 ^65000:3_0:67_0:64$ ip community-list expanded c3 permit 258 ^65000:4_0:68_0:18$ ip community-list expanded c3 permit 259 ^65000:4_0:68_0:19$ ip community-list expanded c3 permit 260 ^65000:4_0:68_0:20$ ip community-list expanded c3 permit 261 ^65000:4_0:68_0:21$ ip community-list expanded c3 permit 262 ^65000:4_0:68_0:22$ ip community-list expanded c3 permit 263 ^65000:3_0:68_0:65$ ip community-list expanded c3 permit 264 ^65000:4_0:69_0:18$ ip community-list expanded c3 permit 265 ^65000:4_0:69_0:19$ ip community-list expanded c3 permit 266 ^65000:4_0:69_0:20$ ip community-list expanded c3 permit 267 ^65000:4_0:69_0:21$ ip community-list expanded c3 permit 268 ^65000:4_0:69_0:22$ ip community-list expanded c3 permit 269 ^65000:4_0:69_0:23$ ip community-list expanded c3 permit 270 ^65000:3_0:69_0:66$ ip community-list expanded c3 permit 271 ^65000:4_0:70_0:18$ ip community-list expanded c3 permit 272 ^65000:4_0:70_0:19$ ip community-list expanded c3 permit 273 ^65000:4_0:70_0:20$ ip community-list expanded c3 permit 274 ^65000:4_0:70_0:21$ ip community-list expanded c3 permit 275 ^65000:4_0:70_0:22$ ip community-list expanded c3 permit 276 ^65000:4_0:70_0:23$ ip community-list expanded c3 permit 277 ^65000:3_0:70_0:67$ ip community-list expanded c3 permit 278 ^65000:4_0:71_0:18$ ip community-list expanded c3 permit 279 ^65000:4_0:71_0:19$ ip community-list expanded c3 permit 280 ^65000:4_0:71_0:20$ ip community-list expanded c3 permit 281 ^65000:4_0:71_0:21$ ip community-list expanded c3 permit 282 ^65000:4_0:71_0:22$ ip community-list expanded c3 permit 283 ^65000:4_0:71_0:23$ ip community-list expanded c3 permit 284 ^65000:3_0:71_0:68$ ip community-list expanded c3 permit 285 ^65000:4_0:72_0:19$ ip community-list expanded c3 permit 286 ^65000:4_0:72_0:20$ ip community-list expanded c3 permit 287 ^65000:4_0:72_0:21$ ip community-list expanded c3 permit 288 ^65000:4_0:72_0:22$ ip community-list expanded c3 permit 289 ^65000:4_0:72_0:23$ ip community-list expanded c3 permit 290 ^65000:4_0:72_0:24$ ip community-list expanded c3 permit 291 ^65000:3_0:72_0:69$ ip community-list expanded c3 permit 292 ^65000:4_0:73_0:19$ ip community-list expanded c3 permit 293 ^65000:4_0:73_0:20$ ip community-list expanded c3 permit 294 ^65000:4_0:73_0:21$ ip community-list expanded c3 permit 295 ^65000:4_0:73_0:22$ ip community-list expanded c3 permit 296 ^65000:4_0:73_0:23$ ip community-list expanded c3 permit 297 ^65000:4_0:73_0:24$ ip community-list expanded c3 permit 298 ^65000:3_0:73_0:70$ ip community-list expanded c3 permit 299 ^65000:4_0:74_0:19$ ip community-list expanded c3 permit 300 ^65000:4_0:74_0:20$ ip community-list expanded c3 permit 301 ^65000:4_0:74_0:21$ ip community-list expanded c3 permit 302 ^65000:4_0:74_0:22$ ip community-list expanded c3 permit 303 ^65000:4_0:74_0:23$ ip community-list expanded c3 permit 304 ^65000:4_0:74_0:24$ ip community-list expanded c3 permit 305 ^65000:3_0:74_0:71$ ip community-list expanded c3 permit 306 ^65000:4_0:75_0:19$ ip community-list expanded c3 permit 307 ^65000:4_0:75_0:20$ ip community-list expanded c3 permit 308 ^65000:4_0:75_0:21$ ip community-list expanded c3 permit 309 ^65000:4_0:75_0:22$ ip community-list expanded c3 permit 310 ^65000:4_0:75_0:23$ ip community-list expanded c3 permit 311 ^65000:4_0:75_0:24$ ip community-list expanded c3 permit 312 ^65000:4_0:75_0:25$ ip community-list expanded c3 permit 313 ^65000:3_0:75_0:72$ ip community-list expanded c3 permit 314 ^65000:4_0:76_0:20$ ip community-list expanded c3 permit 315 ^65000:4_0:76_0:21$ ip community-list expanded c3 permit 316 ^65000:4_0:76_0:22$ ip community-list expanded c3 permit 317 ^65000:4_0:76_0:23$ ip community-list expanded c3 permit 318 ^65000:4_0:76_0:24$ ip community-list expanded c3 permit 319 ^65000:4_0:76_0:25$ ip community-list expanded c3 permit 320 ^65000:3_0:76_0:73$ ip community-list expanded c3 permit 321 ^65000:4_0:77_0:20$ ip community-list expanded c3 permit 322 ^65000:4_0:77_0:21$ ip community-list expanded c3 permit 323 ^65000:4_0:77_0:22$ ip community-list expanded c3 permit 324 ^65000:4_0:77_0:23$ ip community-list expanded c3 permit 325 ^65000:4_0:77_0:24$ ip community-list expanded c3 permit 326 ^65000:4_0:77_0:25$ ip community-list expanded c3 permit 327 ^65000:3_0:77_0:74$ ip community-list expanded c3 permit 328 ^65000:4_0:78_0:20$ ip community-list expanded c3 permit 329 ^65000:4_0:78_0:21$ ip community-list expanded c3 permit 330 ^65000:4_0:78_0:22$ ip community-list expanded c3 permit 331 ^65000:4_0:78_0:23$ ip community-list expanded c3 permit 332 ^65000:4_0:78_0:24$ ip community-list expanded c3 permit 333 ^65000:4_0:78_0:25$ ip community-list expanded c3 permit 334 ^65000:4_0:78_0:26$ ip community-list expanded c3 permit 335 ^65000:3_0:78_0:75$ ip community-list expanded c3 permit 336 ^65000:4_0:79_0:20$ ip community-list expanded c3 permit 337 ^65000:4_0:79_0:21$ ip community-list expanded c3 permit 338 ^65000:4_0:79_0:22$ ip community-list expanded c3 permit 339 ^65000:4_0:79_0:23$ ip community-list expanded c3 permit 340 ^65000:4_0:79_0:24$ ip community-list expanded c3 permit 341 ^65000:4_0:79_0:25$ ip community-list expanded c3 permit 342 ^65000:4_0:79_0:26$ ip community-list expanded c3 permit 343 ^65000:3_0:79_0:76$ ip community-list expanded c3 permit 344 ^65000:4_0:80_0:21$ ip community-list expanded c3 permit 345 ^65000:4_0:80_0:22$ ip community-list expanded c3 permit 346 ^65000:4_0:80_0:23$ ip community-list expanded c3 permit 347 ^65000:4_0:80_0:24$ ip community-list expanded c3 permit 348 ^65000:4_0:80_0:25$ ip community-list expanded c3 permit 349 ^65000:4_0:80_0:26$ ip community-list expanded c3 permit 350 ^65000:3_0:80_0:77$ ip community-list expanded c3 permit 351 ^65000:4_0:81_0:21$ ip community-list expanded c3 permit 352 ^65000:4_0:81_0:22$ ip community-list expanded c3 permit 353 ^65000:4_0:81_0:23$ ip community-list expanded c3 permit 354 ^65000:4_0:81_0:24$ ip community-list expanded c3 permit 355 ^65000:4_0:81_0:25$ ip community-list expanded c3 permit 356 ^65000:4_0:81_0:26$ ip community-list expanded c3 permit 357 ^65000:4_0:81_0:27$ ip community-list expanded c3 permit 358 ^65000:3_0:81_0:78$ ip community-list expanded c3 permit 359 ^65000:4_0:82_0:21$ ip community-list expanded c3 permit 360 ^65000:4_0:82_0:22$ ip community-list expanded c3 permit 361 ^65000:4_0:82_0:23$ ip community-list expanded c3 permit 362 ^65000:4_0:82_0:24$ ip community-list expanded c3 permit 363 ^65000:4_0:82_0:25$ ip community-list expanded c3 permit 364 ^65000:4_0:82_0:26$ ip community-list expanded c3 permit 365 ^65000:4_0:82_0:27$ ip community-list expanded c3 permit 366 ^65000:3_0:82_0:79$ ip community-list expanded c3 permit 367 ^65000:4_0:83_0:21$ ip community-list expanded c3 permit 368 ^65000:4_0:83_0:22$ ip community-list expanded c3 permit 369 ^65000:4_0:83_0:23$ ip community-list expanded c3 permit 370 ^65000:4_0:83_0:24$ ip community-list expanded c3 permit 371 ^65000:4_0:83_0:25$ ip community-list expanded c3 permit 372 ^65000:4_0:83_0:26$ ip community-list expanded c3 permit 373 ^65000:4_0:83_0:27$ ip community-list expanded c3 permit 374 ^65000:3_0:83_0:80$ ip community-list expanded c3 permit 375 ^65000:4_0:84_0:22$ ip community-list expanded c3 permit 376 ^65000:4_0:84_0:23$ ip community-list expanded c3 permit 377 ^65000:4_0:84_0:24$ ip community-list expanded c3 permit 378 ^65000:4_0:84_0:25$ ip community-list expanded c3 permit 379 ^65000:4_0:84_0:26$ ip community-list expanded c3 permit 380 ^65000:4_0:84_0:27$ ip community-list expanded c3 permit 381 ^65000:4_0:84_0:28$ ip community-list expanded c3 permit 382 ^65000:3_0:84_0:81$ ip community-list expanded c3 permit 383 ^65000:4_0:85_0:22$ ip community-list expanded c3 permit 384 ^65000:4_0:85_0:23$ ip community-list expanded c3 permit 385 ^65000:4_0:85_0:24$ ip community-list expanded c3 permit 386 ^65000:4_0:85_0:25$ ip community-list expanded c3 permit 387 ^65000:4_0:85_0:26$ ip community-list expanded c3 permit 388 ^65000:4_0:85_0:27$ ip community-list expanded c3 permit 389 ^65000:4_0:85_0:28$ ip community-list expanded c3 permit 390 ^65000:3_0:85_0:82$ ip community-list expanded c3 permit 391 ^65000:4_0:86_0:22$ ip community-list expanded c3 permit 392 ^65000:4_0:86_0:23$ ip community-list expanded c3 permit 393 ^65000:4_0:86_0:24$ ip community-list expanded c3 permit 394 ^65000:4_0:86_0:25$ ip community-list expanded c3 permit 395 ^65000:4_0:86_0:26$ ip community-list expanded c3 permit 396 ^65000:4_0:86_0:27$ ip community-list expanded c3 permit 397 ^65000:4_0:86_0:28$ ip community-list expanded c3 permit 398 ^65000:3_0:86_0:83$ ip community-list expanded c3 permit 399 ^65000:4_0:87_0:22$ ip community-list expanded c3 permit 400 ^65000:4_0:87_0:23$ ip community-list expanded c3 permit 401 ^65000:4_0:87_0:24$ ip community-list expanded c3 permit 402 ^65000:4_0:87_0:25$ ip community-list expanded c3 permit 403 ^65000:4_0:87_0:26$ ip community-list expanded c3 permit 404 ^65000:4_0:87_0:27$ ip community-list expanded c3 permit 405 ^65000:4_0:87_0:28$ ip community-list expanded c3 permit 406 ^65000:4_0:87_0:29$ ip community-list expanded c3 permit 407 ^65000:3_0:87_0:84$ ip community-list expanded c3 permit 408 ^65000:4_0:88_0:23$ ip community-list expanded c3 permit 409 ^65000:4_0:88_0:24$ ip community-list expanded c3 permit 410 ^65000:4_0:88_0:25$ ip community-list expanded c3 permit 411 ^65000:4_0:88_0:26$ ip community-list expanded c3 permit 412 ^65000:4_0:88_0:27$ ip community-list expanded c3 permit 413 ^65000:4_0:88_0:28$ ip community-list expanded c3 permit 414 ^65000:4_0:88_0:29$ ip community-list expanded c3 permit 415 ^65000:3_0:88_0:85$ ip community-list expanded c3 permit 416 ^65000:4_0:89_0:23$ ip community-list expanded c3 permit 417 ^65000:4_0:89_0:24$ ip community-list expanded c3 permit 418 ^65000:4_0:89_0:25$ ip community-list expanded c3 permit 419 ^65000:4_0:89_0:26$ ip community-list expanded c3 permit 420 ^65000:4_0:89_0:27$ ip community-list expanded c3 permit 421 ^65000:4_0:89_0:28$ ip community-list expanded c3 permit 422 ^65000:4_0:89_0:29$ ip community-list expanded c3 permit 423 ^65000:3_0:89_0:86$ ip community-list expanded c3 permit 424 ^65000:4_0:90_0:23$ ip community-list expanded c3 permit 425 ^65000:4_0:90_0:24$ ip community-list expanded c3 permit 426 ^65000:4_0:90_0:25$ ip community-list expanded c3 permit 427 ^65000:4_0:90_0:26$ ip community-list expanded c3 permit 428 ^65000:4_0:90_0:27$ ip community-list expanded c3 permit 429 ^65000:4_0:90_0:28$ ip community-list expanded c3 permit 430 ^65000:4_0:90_0:29$ ip community-list expanded c3 permit 431 ^65000:4_0:90_0:30$ ip community-list expanded c3 permit 432 ^65000:3_0:90_0:87$ ip community-list expanded c3 permit 433 ^65000:4_0:91_0:23$ ip community-list expanded c3 permit 434 ^65000:4_0:91_0:24$ ip community-list expanded c3 permit 435 ^65000:4_0:91_0:25$ ip community-list expanded c3 permit 436 ^65000:4_0:91_0:26$ ip community-list expanded c3 permit 437 ^65000:4_0:91_0:27$ ip community-list expanded c3 permit 438 ^65000:4_0:91_0:28$ ip community-list expanded c3 permit 439 ^65000:4_0:91_0:29$ ip community-list expanded c3 permit 440 ^65000:4_0:91_0:30$ ip community-list expanded c3 permit 441 ^65000:3_0:91_0:88$ ip community-list expanded c3 permit 442 ^65000:4_0:92_0:24$ ip community-list expanded c3 permit 443 ^65000:4_0:92_0:25$ ip community-list expanded c3 permit 444 ^65000:4_0:92_0:26$ ip community-list expanded c3 permit 445 ^65000:4_0:92_0:27$ ip community-list expanded c3 permit 446 ^65000:4_0:92_0:28$ ip community-list expanded c3 permit 447 ^65000:4_0:92_0:29$ ip community-list expanded c3 permit 448 ^65000:4_0:92_0:30$ ip community-list expanded c3 permit 449 ^65000:3_0:92_0:89$ ip community-list expanded c3 permit 450 ^65000:4_0:93_0:24$ ip community-list expanded c3 permit 451 ^65000:4_0:93_0:25$ ip community-list expanded c3 permit 452 ^65000:4_0:93_0:26$ ip community-list expanded c3 permit 453 ^65000:4_0:93_0:27$ ip community-list expanded c3 permit 454 ^65000:4_0:93_0:28$ ip community-list expanded c3 permit 455 ^65000:4_0:93_0:29$ ip community-list expanded c3 permit 456 ^65000:4_0:93_0:30$ ip community-list expanded c3 permit 457 ^65000:4_0:93_0:31$ ip community-list expanded c3 permit 458 ^65000:3_0:93_0:90$ ip community-list expanded c3 permit 459 ^65000:4_0:94_0:24$ ip community-list expanded c3 permit 460 ^65000:4_0:94_0:25$ ip community-list expanded c3 permit 461 ^65000:4_0:94_0:26$ ip community-list expanded c3 permit 462 ^65000:4_0:94_0:27$ ip community-list expanded c3 permit 463 ^65000:4_0:94_0:28$ ip community-list expanded c3 permit 464 ^65000:4_0:94_0:29$ ip community-list expanded c3 permit 465 ^65000:4_0:94_0:30$ ip community-list expanded c3 permit 466 ^65000:4_0:94_0:31$ ip community-list expanded c3 permit 467 ^65000:3_0:94_0:91$ ip community-list expanded c3 permit 468 ^65000:4_0:95_0:24$ ip community-list expanded c3 permit 469 ^65000:4_0:95_0:25$ ip community-list expanded c3 permit 470 ^65000:4_0:95_0:26$ ip community-list expanded c3 permit 471 ^65000:4_0:95_0:27$ ip community-list expanded c3 permit 472 ^65000:4_0:95_0:28$ ip community-list expanded c3 permit 473 ^65000:4_0:95_0:29$ ip community-list expanded c3 permit 474 ^65000:4_0:95_0:30$ ip community-list expanded c3 permit 475 ^65000:4_0:95_0:31$ ip community-list expanded c3 permit 476 ^65000:3_0:95_0:92$ ip community-list expanded c3 permit 477 ^65000:4_0:96_0:25$ ip community-list expanded c3 permit 478 ^65000:4_0:96_0:26$ ip community-list expanded c3 permit 479 ^65000:4_0:96_0:27$ ip community-list expanded c3 permit 480 ^65000:4_0:96_0:28$ ip community-list expanded c3 permit 481 ^65000:4_0:96_0:29$ ip community-list expanded c3 permit 482 ^65000:4_0:96_0:30$ ip community-list expanded c3 permit 483 ^65000:4_0:96_0:31$ ip community-list expanded c3 permit 484 ^65000:4_0:96_0:32$ ip community-list expanded c3 permit 485 ^65000:3_0:96_0:93$ ip community-list expanded c3 permit 486 ^65000:4_0:97_0:25$ ip community-list expanded c3 permit 487 ^65000:4_0:97_0:26$ ip community-list expanded c3 permit 488 ^65000:4_0:97_0:27$ ip community-list expanded c3 permit 489 ^65000:4_0:97_0:28$ ip community-list expanded c3 permit 490 ^65000:4_0:97_0:29$ ip community-list expanded c3 permit 491 ^65000:4_0:97_0:30$ ip community-list expanded c3 permit 492 ^65000:4_0:97_0:31$ ip community-list expanded c3 permit 493 ^65000:4_0:97_0:32$ ip community-list expanded c3 permit 494 ^65000:3_0:97_0:94$ ip community-list expanded c3 permit 495 ^65000:4_0:98_0:25$ ip community-list expanded c3 permit 496 ^65000:4_0:98_0:26$ ip community-list expanded c3 permit 497 ^65000:4_0:98_0:27$ ip community-list expanded c3 permit 498 ^65000:4_0:98_0:28$ ip community-list expanded c3 permit 499 ^65000:4_0:98_0:29$ ip community-list expanded c3 permit 500 ^65000:4_0:98_0:30$ ip community-list expanded c3 permit 501 ^65000:4_0:98_0:31$ ip community-list expanded c3 permit 502 ^65000:4_0:98_0:32$ ip community-list expanded c3 permit 503 ^65000:3_0:98_0:95$ ip community-list expanded c3 permit 504 ^65000:4_0:99_0:25$ ip community-list expanded c3 permit 505 ^65000:4_0:99_0:26$ ip community-list expanded c3 permit 506 ^65000:4_0:99_0:27$ ip community-list expanded c3 permit 507 ^65000:4_0:99_0:28$ ip community-list expanded c3 permit 508 ^65000:4_0:99_0:29$ ip community-list expanded c3 permit 509 ^65000:4_0:99_0:30$ ip community-list expanded c3 permit 510 ^65000:4_0:99_0:31$ ip community-list expanded c3 permit 511 ^65000:4_0:99_0:32$ ip community-list expanded c3 permit 512 ^65000:4_0:99_0:33$ ip community-list expanded c3 permit 513 ^65000:3_0:99_0:96$ ip community-list expanded c3 permit 514 ^65000:4_0:100_0:26$ ip community-list expanded c3 permit 515 ^65000:4_0:100_0:27$ ip community-list expanded c3 permit 516 ^65000:4_0:100_0:28$ ip community-list expanded c3 permit 517 ^65000:4_0:100_0:29$ ip community-list expanded c3 permit 518 ^65000:4_0:100_0:30$ ip community-list expanded c3 permit 519 ^65000:4_0:100_0:31$ ip community-list expanded c3 permit 520 ^65000:4_0:100_0:32$ ip community-list expanded c3 permit 521 ^65000:4_0:100_0:33$ ip community-list expanded c3 permit 522 ^65000:3_0:100_0:97$ ip community-list expanded c3 permit 523 ^65000:4_0:101_0:26$ ip community-list expanded c3 permit 524 ^65000:4_0:101_0:27$ ip community-list expanded c3 permit 525 ^65000:4_0:101_0:28$ ip community-list expanded c3 permit 526 ^65000:4_0:101_0:29$ ip community-list expanded c3 permit 527 ^65000:4_0:101_0:30$ ip community-list expanded c3 permit 528 ^65000:4_0:101_0:31$ ip community-list expanded c3 permit 529 ^65000:4_0:101_0:32$ ip community-list expanded c3 permit 530 ^65000:4_0:101_0:33$ ip community-list expanded c3 permit 531 ^65000:3_0:101_0:98$ ip community-list expanded c3 permit 532 ^65000:4_0:102_0:26$ ip community-list expanded c3 permit 533 ^65000:4_0:102_0:27$ ip community-list expanded c3 permit 534 ^65000:4_0:102_0:28$ ip community-list expanded c3 permit 535 ^65000:4_0:102_0:29$ ip community-list expanded c3 permit 536 ^65000:4_0:102_0:30$ ip community-list expanded c3 permit 537 ^65000:4_0:102_0:31$ ip community-list expanded c3 permit 538 ^65000:4_0:102_0:32$ ip community-list expanded c3 permit 539 ^65000:4_0:102_0:33$ ip community-list expanded c3 permit 540 ^65000:4_0:102_0:34$ ip community-list expanded c3 permit 541 ^65000:3_0:102_0:99$ ip community-list expanded c3 permit 542 ^65000:4_0:103_0:26$ ip community-list expanded c3 permit 543 ^65000:4_0:103_0:27$ ip community-list expanded c3 permit 544 ^65000:4_0:103_0:28$ ip community-list expanded c3 permit 545 ^65000:4_0:103_0:29$ ip community-list expanded c3 permit 546 ^65000:4_0:103_0:30$ ip community-list expanded c3 permit 547 ^65000:4_0:103_0:31$ ip community-list expanded c3 permit 548 ^65000:4_0:103_0:32$ ip community-list expanded c3 permit 549 ^65000:4_0:103_0:33$ ip community-list expanded c3 permit 550 ^65000:4_0:103_0:34$ ip community-list expanded c3 permit 551 ^65000:3_0:103_0:100$ ip community-list expanded c3 permit 552 ^65000:4_0:104_0:27$ ip community-list expanded c3 permit 553 ^65000:4_0:104_0:28$ ip community-list expanded c3 permit 554 ^65000:4_0:104_0:29$ ip community-list expanded c3 permit 555 ^65000:4_0:104_0:30$ ip community-list expanded c3 permit 556 ^65000:4_0:104_0:31$ ip community-list expanded c3 permit 557 ^65000:4_0:104_0:32$ ip community-list expanded c3 permit 558 ^65000:4_0:104_0:33$ ip community-list expanded c3 permit 559 ^65000:4_0:104_0:34$ ip community-list expanded c3 permit 560 ^65000:3_0:104_0:101$ ip community-list expanded c3 permit 561 ^65000:4_0:105_0:27$ ip community-list expanded c3 permit 562 ^65000:4_0:105_0:28$ ip community-list expanded c3 permit 563 ^65000:4_0:105_0:29$ ip community-list expanded c3 permit 564 ^65000:4_0:105_0:30$ ip community-list expanded c3 permit 565 ^65000:4_0:105_0:31$ ip community-list expanded c3 permit 566 ^65000:4_0:105_0:32$ ip community-list expanded c3 permit 567 ^65000:4_0:105_0:33$ ip community-list expanded c3 permit 568 ^65000:4_0:105_0:34$ ip community-list expanded c3 permit 569 ^65000:4_0:105_0:35$ ip community-list expanded c3 permit 570 ^65000:3_0:105_0:102$ ip community-list expanded c3 permit 571 ^65000:4_0:106_0:27$ ip community-list expanded c3 permit 572 ^65000:4_0:106_0:28$ ip community-list expanded c3 permit 573 ^65000:4_0:106_0:29$ ip community-list expanded c3 permit 574 ^65000:4_0:106_0:30$ ip community-list expanded c3 permit 575 ^65000:4_0:106_0:31$ ip community-list expanded c3 permit 576 ^65000:4_0:106_0:32$ ip community-list expanded c3 permit 577 ^65000:4_0:106_0:33$ ip community-list expanded c3 permit 578 ^65000:4_0:106_0:34$ ip community-list expanded c3 permit 579 ^65000:4_0:106_0:35$ ip community-list expanded c3 permit 580 ^65000:3_0:106_0:103$ ip community-list expanded c3 permit 581 ^65000:4_0:107_0:27$ ip community-list expanded c3 permit 582 ^65000:4_0:107_0:28$ ip community-list expanded c3 permit 583 ^65000:4_0:107_0:29$ ip community-list expanded c3 permit 584 ^65000:4_0:107_0:30$ ip community-list expanded c3 permit 585 ^65000:4_0:107_0:31$ ip community-list expanded c3 permit 586 ^65000:4_0:107_0:32$ ip community-list expanded c3 permit 587 ^65000:4_0:107_0:33$ ip community-list expanded c3 permit 588 ^65000:4_0:107_0:34$ ip community-list expanded c3 permit 589 ^65000:4_0:107_0:35$ ip community-list expanded c3 permit 590 ^65000:3_0:107_0:104$ ip community-list expanded c3 permit 591 ^65000:4_0:108_0:28$ ip community-list expanded c3 permit 592 ^65000:4_0:108_0:29$ ip community-list expanded c3 permit 593 ^65000:4_0:108_0:30$ ip community-list expanded c3 permit 594 ^65000:4_0:108_0:31$ ip community-list expanded c3 permit 595 ^65000:4_0:108_0:32$ ip community-list expanded c3 permit 596 ^65000:4_0:108_0:33$ ip community-list expanded c3 permit 597 ^65000:4_0:108_0:34$ ip community-list expanded c3 permit 598 ^65000:4_0:108_0:35$ ip community-list expanded c3 permit 599 ^65000:4_0:108_0:36$ ip community-list expanded c3 permit 600 ^65000:3_0:108_0:105$ ip community-list expanded c3 permit 601 ^65000:4_0:109_0:28$ ip community-list expanded c3 permit 602 ^65000:4_0:109_0:29$ ip community-list expanded c3 permit 603 ^65000:4_0:109_0:30$ ip community-list expanded c3 permit 604 ^65000:4_0:109_0:31$ ip community-list expanded c3 permit 605 ^65000:4_0:109_0:32$ ip community-list expanded c3 permit 606 ^65000:4_0:109_0:33$ ip community-list expanded c3 permit 607 ^65000:4_0:109_0:34$ ip community-list expanded c3 permit 608 ^65000:4_0:109_0:35$ ip community-list expanded c3 permit 609 ^65000:4_0:109_0:36$ ip community-list expanded c3 permit 610 ^65000:3_0:109_0:106$ ip community-list expanded c3 permit 611 ^65000:4_0:110_0:28$ ip community-list expanded c3 permit 612 ^65000:4_0:110_0:29$ ip community-list expanded c3 permit 613 ^65000:4_0:110_0:30$ ip community-list expanded c3 permit 614 ^65000:4_0:110_0:31$ ip community-list expanded c3 permit 615 ^65000:4_0:110_0:32$ ip community-list expanded c3 permit 616 ^65000:4_0:110_0:33$ ip community-list expanded c3 permit 617 ^65000:4_0:110_0:34$ ip community-list expanded c3 permit 618 ^65000:4_0:110_0:35$ ip community-list expanded c3 permit 619 ^65000:4_0:110_0:36$ ip community-list expanded c3 permit 620 ^65000:3_0:110_0:107$ ip community-list expanded c3 permit 621 ^65000:4_0:111_0:28$ ip community-list expanded c3 permit 622 ^65000:4_0:111_0:29$ ip community-list expanded c3 permit 623 ^65000:4_0:111_0:30$ ip community-list expanded c3 permit 624 ^65000:4_0:111_0:31$ ip community-list expanded c3 permit 625 ^65000:4_0:111_0:32$ ip community-list expanded c3 permit 626 ^65000:4_0:111_0:33$ ip community-list expanded c3 permit 627 ^65000:4_0:111_0:34$ ip community-list expanded c3 permit 628 ^65000:4_0:111_0:35$ ip community-list expanded c3 permit 629 ^65000:4_0:111_0:36$ ip community-list expanded c3 permit 630 ^65000:4_0:111_0:37$ ip community-list expanded c3 permit 631 ^65000:3_0:111_0:108$ ip community-list expanded c3 permit 632 ^65000:4_0:112_0:29$ ip community-list expanded c3 permit 633 ^65000:4_0:112_0:30$ ip community-list expanded c3 permit 634 ^65000:4_0:112_0:31$ ip community-list expanded c3 permit 635 ^65000:4_0:112_0:32$ ip community-list expanded c3 permit 636 ^65000:4_0:112_0:33$ ip community-list expanded c3 permit 637 ^65000:4_0:112_0:34$ ip community-list expanded c3 permit 638 ^65000:4_0:112_0:35$ ip community-list expanded c3 permit 639 ^65000:4_0:112_0:36$ ip community-list expanded c3 permit 640 ^65000:4_0:112_0:37$ ip community-list expanded c3 permit 641 ^65000:3_0:112_0:109$ ip community-list expanded c3 permit 642 ^65000:4_0:113_0:29$ ip community-list expanded c3 permit 643 ^65000:4_0:113_0:30$ ip community-list expanded c3 permit 644 ^65000:4_0:113_0:31$ ip community-list expanded c3 permit 645 ^65000:4_0:113_0:32$ ip community-list expanded c3 permit 646 ^65000:4_0:113_0:33$ ip community-list expanded c3 permit 647 ^65000:4_0:113_0:34$ ip community-list expanded c3 permit 648 ^65000:4_0:113_0:35$ ip community-list expanded c3 permit 649 ^65000:4_0:113_0:36$ ip community-list expanded c3 permit 650 ^65000:4_0:113_0:37$ ip community-list expanded c3 permit 651 ^65000:3_0:113_0:110$ ip community-list expanded c3 permit 652 ^65000:4_0:114_0:29$ ip community-list expanded c3 permit 653 ^65000:4_0:114_0:30$ ip community-list expanded c3 permit 654 ^65000:4_0:114_0:31$ ip community-list expanded c3 permit 655 ^65000:4_0:114_0:32$ ip community-list expanded c3 permit 656 ^65000:4_0:114_0:33$ ip community-list expanded c3 permit 657 ^65000:4_0:114_0:34$ ip community-list expanded c3 permit 658 ^65000:4_0:114_0:35$ ip community-list expanded c3 permit 659 ^65000:4_0:114_0:36$ ip community-list expanded c3 permit 660 ^65000:4_0:114_0:37$ ip community-list expanded c3 permit 661 ^65000:4_0:114_0:38$ ip community-list expanded c3 permit 662 ^65000:3_0:114_0:111$ ip community-list expanded c3 permit 663 ^65000:4_0:115_0:29$ ip community-list expanded c3 permit 664 ^65000:4_0:115_0:30$ ip community-list expanded c3 permit 665 ^65000:4_0:115_0:31$ ip community-list expanded c3 permit 666 ^65000:4_0:115_0:32$ ip community-list expanded c3 permit 667 ^65000:4_0:115_0:33$ ip community-list expanded c3 permit 668 ^65000:4_0:115_0:34$ ip community-list expanded c3 permit 669 ^65000:4_0:115_0:35$ ip community-list expanded c3 permit 670 ^65000:4_0:115_0:36$ ip community-list expanded c3 permit 671 ^65000:4_0:115_0:37$ ip community-list expanded c3 permit 672 ^65000:4_0:115_0:38$ ip community-list expanded c3 permit 673 ^65000:3_0:115_0:112$ ip community-list expanded c3 permit 674 ^65000:4_0:116_0:30$ ip community-list expanded c3 permit 675 ^65000:4_0:116_0:31$ ip community-list expanded c3 permit 676 ^65000:4_0:116_0:32$ ip community-list expanded c3 permit 677 ^65000:4_0:116_0:33$ ip community-list expanded c3 permit 678 ^65000:4_0:116_0:34$ ip community-list expanded c3 permit 679 ^65000:4_0:116_0:35$ ip community-list expanded c3 permit 680 ^65000:4_0:116_0:36$ ip community-list expanded c3 permit 681 ^65000:4_0:116_0:37$ ip community-list expanded c3 permit 682 ^65000:4_0:116_0:38$ ip community-list expanded c3 permit 683 ^65000:3_0:116_0:113$ ip community-list expanded c3 permit 684 ^65000:4_0:117_0:30$ ip community-list expanded c3 permit 685 ^65000:4_0:117_0:31$ ip community-list expanded c3 permit 686 ^65000:4_0:117_0:32$ ip community-list expanded c3 permit 687 ^65000:4_0:117_0:33$ ip community-list expanded c3 permit 688 ^65000:4_0:117_0:34$ ip community-list expanded c3 permit 689 ^65000:4_0:117_0:35$ ip community-list expanded c3 permit 690 ^65000:4_0:117_0:36$ ip community-list expanded c3 permit 691 ^65000:4_0:117_0:37$ ip community-list expanded c3 permit 692 ^65000:4_0:117_0:38$ ip community-list expanded c3 permit 693 ^65000:4_0:117_0:39$ ip community-list expanded c3 permit 694 ^65000:3_0:117_0:114$ ip community-list expanded c3 permit 695 ^65000:4_0:118_0:30$ ip community-list expanded c3 permit 696 ^65000:4_0:118_0:31$ ip community-list expanded c3 permit 697 ^65000:4_0:118_0:32$ ip community-list expanded c3 permit 698 ^65000:4_0:118_0:33$ ip community-list expanded c3 permit 699 ^65000:4_0:118_0:34$ ip community-list expanded c3 permit 700 ^65000:4_0:118_0:35$ ip community-list expanded c3 permit 701 ^65000:4_0:118_0:36$ ip community-list expanded c3 permit 702 ^65000:4_0:118_0:37$ ip community-list expanded c3 permit 703 ^65000:4_0:118_0:38$ ip community-list expanded c3 permit 704 ^65000:4_0:118_0:39$ ip community-list expanded c3 permit 705 ^65000:3_0:118_0:115$ ip community-list expanded c3 permit 706 ^65000:4_0:119_0:30$ ip community-list expanded c3 permit 707 ^65000:4_0:119_0:31$ ip community-list expanded c3 permit 708 ^65000:4_0:119_0:32$ ip community-list expanded c3 permit 709 ^65000:4_0:119_0:33$ ip community-list expanded c3 permit 710 ^65000:4_0:119_0:34$ ip community-list expanded c3 permit 711 ^65000:4_0:119_0:35$ ip community-list expanded c3 permit 712 ^65000:4_0:119_0:36$ ip community-list expanded c3 permit 713 ^65000:4_0:119_0:37$ ip community-list expanded c3 permit 714 ^65000:4_0:119_0:38$ ip community-list expanded c3 permit 715 ^65000:4_0:119_0:39$ ip community-list expanded c3 permit 716 ^65000:3_0:119_0:116$ ip community-list expanded c3 permit 717 ^65000:4_0:120_0:31$ ip community-list expanded c3 permit 718 ^65000:4_0:120_0:32$ ip community-list expanded c3 permit 719 ^65000:4_0:120_0:33$ ip community-list expanded c3 permit 720 ^65000:4_0:120_0:34$ ip community-list expanded c3 permit 721 ^65000:4_0:120_0:35$ ip community-list expanded c3 permit 722 ^65000:4_0:120_0:36$ ip community-list expanded c3 permit 723 ^65000:4_0:120_0:37$ ip community-list expanded c3 permit 724 ^65000:4_0:120_0:38$ ip community-list expanded c3 permit 725 ^65000:4_0:120_0:39$ ip community-list expanded c3 permit 726 ^65000:4_0:120_0:40$ ip community-list expanded c3 permit 727 ^65000:3_0:120_0:117$ ip community-list expanded c3 permit 728 ^65000:4_0:121_0:31$ ip community-list expanded c3 permit 729 ^65000:4_0:121_0:32$ ip community-list expanded c3 permit 730 ^65000:4_0:121_0:33$ ip community-list expanded c3 permit 731 ^65000:4_0:121_0:34$ ip community-list expanded c3 permit 732 ^65000:4_0:121_0:35$ ip community-list expanded c3 permit 733 ^65000:4_0:121_0:36$ ip community-list expanded c3 permit 734 ^65000:4_0:121_0:37$ ip community-list expanded c3 permit 735 ^65000:4_0:121_0:38$ ip community-list expanded c3 permit 736 ^65000:4_0:121_0:39$ ip community-list expanded c3 permit 737 ^65000:4_0:121_0:40$ ip community-list expanded c3 permit 738 ^65000:3_0:121_0:118$ ip community-list expanded c3 permit 739 ^65000:4_0:122_0:31$ ip community-list expanded c3 permit 740 ^65000:4_0:122_0:32$ ip community-list expanded c3 permit 741 ^65000:4_0:122_0:33$ ip community-list expanded c3 permit 742 ^65000:4_0:122_0:34$ ip community-list expanded c3 permit 743 ^65000:4_0:122_0:35$ ip community-list expanded c3 permit 744 ^65000:4_0:122_0:36$ ip community-list expanded c3 permit 745 ^65000:4_0:122_0:37$ ip community-list expanded c3 permit 746 ^65000:4_0:122_0:38$ ip community-list expanded c3 permit 747 ^65000:4_0:122_0:39$ ip community-list expanded c3 permit 748 ^65000:4_0:122_0:40$ ip community-list expanded c3 permit 749 ^65000:3_0:122_0:119$ ip community-list expanded c3 permit 750 ^65000:4_0:123_0:31$ ip community-list expanded c3 permit 751 ^65000:4_0:123_0:32$ ip community-list expanded c3 permit 752 ^65000:4_0:123_0:33$ ip community-list expanded c3 permit 753 ^65000:4_0:123_0:34$ ip community-list expanded c3 permit 754 ^65000:4_0:123_0:35$ ip community-list expanded c3 permit 755 ^65000:4_0:123_0:36$ ip community-list expanded c3 permit 756 ^65000:4_0:123_0:37$ ip community-list expanded c3 permit 757 ^65000:4_0:123_0:38$ ip community-list expanded c3 permit 758 ^65000:4_0:123_0:39$ ip community-list expanded c3 permit 759 ^65000:4_0:123_0:40$ ip community-list expanded c3 permit 760 ^65000:4_0:123_0:41$ ip community-list expanded c3 permit 761 ^65000:3_0:123_0:120$ ip community-list expanded c3 permit 762 ^65000:4_0:124_0:32$ ip community-list expanded c3 permit 763 ^65000:4_0:124_0:33$ ip community-list expanded c3 permit 764 ^65000:4_0:124_0:34$ ip community-list expanded c3 permit 765 ^65000:4_0:124_0:35$ ip community-list expanded c3 permit 766 ^65000:4_0:124_0:36$ ip community-list expanded c3 permit 767 ^65000:4_0:124_0:37$ ip community-list expanded c3 permit 768 ^65000:4_0:124_0:38$ ip community-list expanded c3 permit 769 ^65000:4_0:124_0:39$ ip community-list expanded c3 permit 770 ^65000:4_0:124_0:40$ ip community-list expanded c3 permit 771 ^65000:4_0:124_0:41$ ip community-list expanded c3 permit 772 ^65000:3_0:124_0:121$ ip community-list expanded c3 permit 773 ^65000:4_0:125_0:32$ ip community-list expanded c3 permit 774 ^65000:4_0:125_0:33$ ip community-list expanded c3 permit 775 ^65000:4_0:125_0:34$ ip community-list expanded c3 permit 776 ^65000:4_0:125_0:35$ ip community-list expanded c3 permit 777 ^65000:4_0:125_0:36$ ip community-list expanded c3 permit 778 ^65000:4_0:125_0:37$ ip community-list expanded c3 permit 779 ^65000:4_0:125_0:38$ ip community-list expanded c3 permit 780 ^65000:4_0:125_0:39$ ip community-list expanded c3 permit 781 ^65000:4_0:125_0:40$ ip community-list expanded c3 permit 782 ^65000:4_0:125_0:41$ ip community-list expanded c3 permit 783 ^65000:3_0:125_0:122$ ip community-list expanded c3 permit 784 ^65000:4_0:126_0:32$ ip community-list expanded c3 permit 785 ^65000:4_0:126_0:33$ ip community-list expanded c3 permit 786 ^65000:4_0:126_0:34$ ip community-list expanded c3 permit 787 ^65000:4_0:126_0:35$ ip community-list expanded c3 permit 788 ^65000:4_0:126_0:36$ ip community-list expanded c3 permit 789 ^65000:4_0:126_0:37$ ip community-list expanded c3 permit 790 ^65000:4_0:126_0:38$ ip community-list expanded c3 permit 791 ^65000:4_0:126_0:39$ ip community-list expanded c3 permit 792 ^65000:4_0:126_0:40$ ip community-list expanded c3 permit 793 ^65000:4_0:126_0:41$ ip community-list expanded c3 permit 794 ^65000:4_0:126_0:42$ ip community-list expanded c3 permit 795 ^65000:3_0:126_0:123$ ip community-list expanded c3 permit 796 ^65000:4_0:127_0:32$ ip community-list expanded c3 permit 797 ^65000:4_0:127_0:33$ ip community-list expanded c3 permit 798 ^65000:4_0:127_0:34$ ip community-list expanded c3 permit 799 ^65000:4_0:127_0:35$ ip community-list expanded c3 permit 800 ^65000:4_0:127_0:36$ ip community-list expanded c3 permit 801 ^65000:4_0:127_0:37$ ip community-list expanded c3 permit 802 ^65000:4_0:127_0:38$ ip community-list expanded c3 permit 803 ^65000:4_0:127_0:39$ ip community-list expanded c3 permit 804 ^65000:4_0:127_0:40$ ip community-list expanded c3 permit 805 ^65000:4_0:127_0:41$ ip community-list expanded c3 permit 806 ^65000:4_0:127_0:42$ ip community-list expanded c3 permit 807 ^65000:3_0:127_0:124$ ip community-list expanded c3 permit 808 ^65000:4_0:128_0:33$ ip community-list expanded c3 permit 809 ^65000:4_0:128_0:34$ ip community-list expanded c3 permit 810 ^65000:4_0:128_0:35$ ip community-list expanded c3 permit 811 ^65000:4_0:128_0:36$ ip community-list expanded c3 permit 812 ^65000:4_0:128_0:37$ ip community-list expanded c3 permit 813 ^65000:4_0:128_0:38$ ip community-list expanded c3 permit 814 ^65000:4_0:128_0:39$ ip community-list expanded c3 permit 815 ^65000:4_0:128_0:40$ ip community-list expanded c3 permit 816 ^65000:4_0:128_0:41$ ip community-list expanded c3 permit 817 ^65000:4_0:128_0:42$ ip community-list expanded c3 permit 818 ^65000:3_0:128_0:125$ ip community-list expanded c3 permit 819 ^65000:4_0:129_0:33$ ip community-list expanded c3 permit 820 ^65000:4_0:129_0:34$ ip community-list expanded c3 permit 821 ^65000:4_0:129_0:35$ ip community-list expanded c3 permit 822 ^65000:4_0:129_0:36$ ip community-list expanded c3 permit 823 ^65000:4_0:129_0:37$ ip community-list expanded c3 permit 824 ^65000:4_0:129_0:38$ ip community-list expanded c3 permit 825 ^65000:4_0:129_0:39$ ip community-list expanded c3 permit 826 ^65000:4_0:129_0:40$ ip community-list expanded c3 permit 827 ^65000:4_0:129_0:41$ ip community-list expanded c3 permit 828 ^65000:4_0:129_0:42$ ip community-list expanded c3 permit 829 ^65000:4_0:129_0:43$ ip community-list expanded c3 permit 830 ^65000:3_0:129_0:126$ ip community-list expanded c3 permit 831 ^65000:4_0:130_0:33$ ip community-list expanded c3 permit 832 ^65000:4_0:130_0:34$ ip community-list expanded c3 permit 833 ^65000:4_0:130_0:35$ ip community-list expanded c3 permit 834 ^65000:4_0:130_0:36$ ip community-list expanded c3 permit 835 ^65000:4_0:130_0:37$ ip community-list expanded c3 permit 836 ^65000:4_0:130_0:38$ ip community-list expanded c3 permit 837 ^65000:4_0:130_0:39$ ip community-list expanded c3 permit 838 ^65000:4_0:130_0:40$ ip community-list expanded c3 permit 839 ^65000:4_0:130_0:41$ ip community-list expanded c3 permit 840 ^65000:4_0:130_0:42$ ip community-list expanded c3 permit 841 ^65000:4_0:130_0:43$ ip community-list expanded c3 permit 842 ^65000:3_0:130_0:127$ ip community-list expanded c3 permit 843 ^65000:4_0:131_0:33$ ip community-list expanded c3 permit 844 ^65000:4_0:131_0:34$ ip community-list expanded c3 permit 845 ^65000:4_0:131_0:35$ ip community-list expanded c3 permit 846 ^65000:4_0:131_0:36$ ip community-list expanded c3 permit 847 ^65000:4_0:131_0:37$ ip community-list expanded c3 permit 848 ^65000:4_0:131_0:38$ ip community-list expanded c3 permit 849 ^65000:4_0:131_0:39$ ip community-list expanded c3 permit 850 ^65000:4_0:131_0:40$ ip community-list expanded c3 permit 851 ^65000:4_0:131_0:41$ ip community-list expanded c3 permit 852 ^65000:4_0:131_0:42$ ip community-list expanded c3 permit 853 ^65000:4_0:131_0:43$ ip community-list expanded c3 permit 854 ^65000:3_0:131_0:128$ ip community-list expanded c3 permit 855 ^65000:4_0:132_0:34$ ip community-list expanded c3 permit 856 ^65000:4_0:132_0:35$ ip community-list expanded c3 permit 857 ^65000:4_0:132_0:36$ ip community-list expanded c3 permit 858 ^65000:4_0:132_0:37$ ip community-list expanded c3 permit 859 ^65000:4_0:132_0:38$ ip community-list expanded c3 permit 860 ^65000:4_0:132_0:39$ ip community-list expanded c3 permit 861 ^65000:4_0:132_0:40$ ip community-list expanded c3 permit 862 ^65000:4_0:132_0:41$ ip community-list expanded c3 permit 863 ^65000:4_0:132_0:42$ ip community-list expanded c3 permit 864 ^65000:4_0:132_0:43$ ip community-list expanded c3 permit 865 ^65000:4_0:132_0:44$ ip community-list expanded c3 permit 866 ^65000:3_0:132_0:129$ ip community-list expanded c3 permit 867 ^65000:4_0:133_0:34$ ip community-list expanded c3 permit 868 ^65000:4_0:133_0:35$ ip community-list expanded c3 permit 869 ^65000:4_0:133_0:36$ ip community-list expanded c3 permit 870 ^65000:4_0:133_0:37$ ip community-list expanded c3 permit 871 ^65000:4_0:133_0:38$ ip community-list expanded c3 permit 872 ^65000:4_0:133_0:39$ ip community-list expanded c3 permit 873 ^65000:4_0:133_0:40$ ip community-list expanded c3 permit 874 ^65000:4_0:133_0:41$ ip community-list expanded c3 permit 875 ^65000:4_0:133_0:42$ ip community-list expanded c3 permit 876 ^65000:4_0:133_0:43$ ip community-list expanded c3 permit 877 ^65000:4_0:133_0:44$ ip community-list expanded c3 permit 878 ^65000:3_0:133_0:130$ ip community-list expanded c3 permit 879 ^65000:4_0:134_0:34$ ip community-list expanded c3 permit 880 ^65000:4_0:134_0:35$ ip community-list expanded c3 permit 881 ^65000:4_0:134_0:36$ ip community-list expanded c3 permit 882 ^65000:4_0:134_0:37$ ip community-list expanded c3 permit 883 ^65000:4_0:134_0:38$ ip community-list expanded c3 permit 884 ^65000:4_0:134_0:39$ ip community-list expanded c3 permit 885 ^65000:4_0:134_0:40$ ip community-list expanded c3 permit 886 ^65000:4_0:134_0:41$ ip community-list expanded c3 permit 887 ^65000:4_0:134_0:42$ ip community-list expanded c3 permit 888 ^65000:4_0:134_0:43$ ip community-list expanded c3 permit 889 ^65000:4_0:134_0:44$ ip community-list expanded c3 permit 890 ^65000:3_0:134_0:131$ ip community-list expanded c3 permit 891 ^65000:4_0:135_0:34$ ip community-list expanded c3 permit 892 ^65000:4_0:135_0:35$ ip community-list expanded c3 permit 893 ^65000:4_0:135_0:36$ ip community-list expanded c3 permit 894 ^65000:4_0:135_0:37$ ip community-list expanded c3 permit 895 ^65000:4_0:135_0:38$ ip community-list expanded c3 permit 896 ^65000:4_0:135_0:39$ ip community-list expanded c3 permit 897 ^65000:4_0:135_0:40$ ip community-list expanded c3 permit 898 ^65000:4_0:135_0:41$ ip community-list expanded c3 permit 899 ^65000:4_0:135_0:42$ ip community-list expanded c3 permit 900 ^65000:4_0:135_0:43$ ip community-list expanded c3 permit 901 ^65000:4_0:135_0:44$ ip community-list expanded c3 permit 902 ^65000:4_0:135_0:45$ ip community-list expanded c3 permit 903 ^65000:3_0:135_0:132$ ip community-list expanded c3 permit 904 ^65000:4_0:136_0:35$ ip community-list expanded c3 permit 905 ^65000:4_0:136_0:36$ ip community-list expanded c3 permit 906 ^65000:4_0:136_0:37$ ip community-list expanded c3 permit 907 ^65000:4_0:136_0:38$ ip community-list expanded c3 permit 908 ^65000:4_0:136_0:39$ ip community-list expanded c3 permit 909 ^65000:4_0:136_0:40$ ip community-list expanded c3 permit 910 ^65000:4_0:136_0:41$ ip community-list expanded c3 permit 911 ^65000:4_0:136_0:42$ ip community-list expanded c3 permit 912 ^65000:4_0:136_0:43$ ip community-list expanded c3 permit 913 ^65000:4_0:136_0:44$ ip community-list expanded c3 permit 914 ^65000:4_0:136_0:45$ ip community-list expanded c3 permit 915 ^65000:3_0:136_0:133$ ip community-list expanded c3 permit 916 ^65000:4_0:137_0:35$ ip community-list expanded c3 permit 917 ^65000:4_0:137_0:36$ ip community-list expanded c3 permit 918 ^65000:4_0:137_0:37$ ip community-list expanded c3 permit 919 ^65000:4_0:137_0:38$ ip community-list expanded c3 permit 920 ^65000:4_0:137_0:39$ ip community-list expanded c3 permit 921 ^65000:4_0:137_0:40$ ip community-list expanded c3 permit 922 ^65000:4_0:137_0:41$ ip community-list expanded c3 permit 923 ^65000:4_0:137_0:42$ ip community-list expanded c3 permit 924 ^65000:4_0:137_0:43$ ip community-list expanded c3 permit 925 ^65000:4_0:137_0:44$ ip community-list expanded c3 permit 926 ^65000:4_0:137_0:45$ ip community-list expanded c3 permit 927 ^65000:3_0:137_0:134$ ip community-list expanded c3 permit 928 ^65000:4_0:138_0:35$ ip community-list expanded c3 permit 929 ^65000:4_0:138_0:36$ ip community-list expanded c3 permit 930 ^65000:4_0:138_0:37$ ip community-list expanded c3 permit 931 ^65000:4_0:138_0:38$ ip community-list expanded c3 permit 932 ^65000:4_0:138_0:39$ ip community-list expanded c3 permit 933 ^65000:4_0:138_0:40$ ip community-list expanded c3 permit 934 ^65000:4_0:138_0:41$ ip community-list expanded c3 permit 935 ^65000:4_0:138_0:42$ ip community-list expanded c3 permit 936 ^65000:4_0:138_0:43$ ip community-list expanded c3 permit 937 ^65000:4_0:138_0:44$ ip community-list expanded c3 permit 938 ^65000:4_0:138_0:45$ ip community-list expanded c3 permit 939 ^65000:4_0:138_0:46$ ip community-list expanded c3 permit 940 ^65000:3_0:138_0:135$ ip community-list expanded c3 permit 941 ^65000:4_0:139_0:35$ ip community-list expanded c3 permit 942 ^65000:4_0:139_0:36$ ip community-list expanded c3 permit 943 ^65000:4_0:139_0:37$ ip community-list expanded c3 permit 944 ^65000:4_0:139_0:38$ ip community-list expanded c3 permit 945 ^65000:4_0:139_0:39$ ip community-list expanded c3 permit 946 ^65000:4_0:139_0:40$ ip community-list expanded c3 permit 947 ^65000:4_0:139_0:41$ ip community-list expanded c3 permit 948 ^65000:4_0:139_0:42$ ip community-list expanded c3 permit 949 ^65000:4_0:139_0:43$ ip community-list expanded c3 permit 950 ^65000:4_0:139_0:44$ ip community-list expanded c3 permit 951 ^65000:4_0:139_0:45$ ip community-list expanded c3 permit 952 ^65000:4_0:139_0:46$ ip community-list expanded c3 permit 953 ^65000:3_0:139_0:136$ ip community-list expanded c3 permit 954 ^65000:4_0:140_0:36$ ip community-list expanded c3 permit 955 ^65000:4_0:140_0:37$ ip community-list expanded c3 permit 956 ^65000:4_0:140_0:38$ ip community-list expanded c3 permit 957 ^65000:4_0:140_0:39$ ip community-list expanded c3 permit 958 ^65000:4_0:140_0:40$ ip community-list expanded c3 permit 959 ^65000:4_0:140_0:41$ ip community-list expanded c3 permit 960 ^65000:4_0:140_0:42$ ip community-list expanded c3 permit 961 ^65000:4_0:140_0:43$ ip community-list expanded c3 permit 962 ^65000:4_0:140_0:44$ ip community-list expanded c3 permit 963 ^65000:4_0:140_0:45$ ip community-list expanded c3 permit 964 ^65000:4_0:140_0:46$ ip community-list expanded c3 permit 965 ^65000:3_0:140_0:137$ ip community-list expanded c3 permit 966 ^65000:4_0:141_0:36$ ip community-list expanded c3 permit 967 ^65000:4_0:141_0:37$ ip community-list expanded c3 permit 968 ^65000:4_0:141_0:38$ ip community-list expanded c3 permit 969 ^65000:4_0:141_0:39$ ip community-list expanded c3 permit 970 ^65000:4_0:141_0:40$ ip community-list expanded c3 permit 971 ^65000:4_0:141_0:41$ ip community-list expanded c3 permit 972 ^65000:4_0:141_0:42$ ip community-list expanded c3 permit 973 ^65000:4_0:141_0:43$ ip community-list expanded c3 permit 974 ^65000:4_0:141_0:44$ ip community-list expanded c3 permit 975 ^65000:4_0:141_0:45$ ip community-list expanded c3 permit 976 ^65000:4_0:141_0:46$ ip community-list expanded c3 permit 977 ^65000:4_0:141_0:47$ ip community-list expanded c3 permit 978 ^65000:3_0:141_0:138$ ip community-list expanded c3 permit 979 ^65000:4_0:142_0:36$ ip community-list expanded c3 permit 980 ^65000:4_0:142_0:37$ ip community-list expanded c3 permit 981 ^65000:4_0:142_0:38$ ip community-list expanded c3 permit 982 ^65000:4_0:142_0:39$ ip community-list expanded c3 permit 983 ^65000:4_0:142_0:40$ ip community-list expanded c3 permit 984 ^65000:4_0:142_0:41$ ip community-list expanded c3 permit 985 ^65000:4_0:142_0:42$ ip community-list expanded c3 permit 986 ^65000:4_0:142_0:43$ ip community-list expanded c3 permit 987 ^65000:4_0:142_0:44$ ip community-list expanded c3 permit 988 ^65000:4_0:142_0:45$ ip community-list expanded c3 permit 989 ^65000:4_0:142_0:46$ ip community-list expanded c3 permit 990 ^65000:4_0:142_0:47$ ip community-list expanded c3 permit 991 ^65000:3_0:142_0:139$ ip community-list expanded c3 permit 992 ^65000:4_0:143_0:36$ ip community-list expanded c3 permit 993 ^65000:4_0:143_0:37$ ip community-list expanded c3 permit 994 ^65000:4_0:143_0:38$ ip community-list expanded c3 permit 995 ^65000:4_0:143_0:39$ ip community-list expanded c3 permit 996 ^65000:4_0:143_0:40$ ip community-list expanded c3 permit 997 ^65000:4_0:143_0:41$ ip community-list expanded c3 permit 998 ^65000:4_0:143_0:42$ ip community-list expanded c3 permit 999 ^65000:4_0:143_0:43$ ip community-list expanded c3 permit 1000 ^65000:4_0:143_0:44$ ip community-list expanded c3 permit 1001 ^65000:4_0:143_0:45$ ip community-list expanded c3 permit 1002 ^65000:4_0:143_0:46$ ip community-list expanded c3 permit 1003 ^65000:4_0:143_0:47$ ip community-list expanded c3 permit 1004 ^65000:3_0:143_0:140$ ip community-list expanded c3 permit 1005 ^65000:4_0:144_0:37$ ip community-list expanded c3 permit 1006 ^65000:4_0:144_0:38$ ip community-list expanded c3 permit 1007 ^65000:4_0:144_0:39$ ip community-list expanded c3 permit 1008 ^65000:4_0:144_0:40$ ip community-list expanded c3 permit 1009 ^65000:4_0:144_0:41$ ip community-list expanded c3 permit 1010 ^65000:4_0:144_0:42$ ip community-list expanded c3 permit 1011 ^65000:4_0:144_0:43$ ip community-list expanded c3 permit 1012 ^65000:4_0:144_0:44$ ip community-list expanded c3 permit 1013 ^65000:4_0:144_0:45$ ip community-list expanded c3 permit 1014 ^65000:4_0:144_0:46$ ip community-list expanded c3 permit 1015 ^65000:4_0:144_0:47$ ip community-list expanded c3 permit 1016 ^65000:4_0:144_0:48$ ip community-list expanded c3 permit 1017 ^65000:3_0:144_0:141$ ip community-list expanded c3 permit 1018 ^65000:4_0:145_0:37$ ip community-list expanded c3 permit 1019 ^65000:4_0:145_0:38$ ip community-list expanded c3 permit 1020 ^65000:4_0:145_0:39$ ip community-list expanded c3 permit 1021 ^65000:4_0:145_0:40$ ip community-list expanded c3 permit 1022 ^65000:4_0:145_0:41$ ip community-list expanded c3 permit 1023 ^65000:4_0:145_0:42$ ip community-list expanded c3 permit 1024 ^65000:4_0:145_0:43$ ip community-list expanded c3 permit 1025 ^65000:4_0:145_0:44$ ip community-list expanded c3 permit 1026 ^65000:4_0:145_0:45$ ip community-list expanded c3 permit 1027 ^65000:4_0:145_0:46$ ip community-list expanded c3 permit 1028 ^65000:4_0:145_0:47$ ip community-list expanded c3 permit 1029 ^65000:4_0:145_0:48$ ip community-list expanded c3 permit 1030 ^65000:3_0:145_0:142$ ip community-list expanded c3 permit 1031 ^65000:4_0:146_0:37$ ip community-list expanded c3 permit 1032 ^65000:4_0:146_0:38$ ip community-list expanded c3 permit 1033 ^65000:4_0:146_0:39$ ip community-list expanded c3 permit 1034 ^65000:4_0:146_0:40$ ip community-list expanded c3 permit 1035 ^65000:4_0:146_0:41$ ip community-list expanded c3 permit 1036 ^65000:4_0:146_0:42$ ip community-list expanded c3 permit 1037 ^65000:4_0:146_0:43$ ip community-list expanded c3 permit 1038 ^65000:4_0:146_0:44$ ip community-list expanded c3 permit 1039 ^65000:4_0:146_0:45$ ip community-list expanded c3 permit 1040 ^65000:4_0:146_0:46$ ip community-list expanded c3 permit 1041 ^65000:4_0:146_0:47$ ip community-list expanded c3 permit 1042 ^65000:4_0:146_0:48$ ip community-list expanded c3 permit 1043 ^65000:3_0:146_0:143$ ip community-list expanded c3 permit 1044 ^65000:4_0:147_0:37$ ip community-list expanded c3 permit 1045 ^65000:4_0:147_0:38$ ip community-list expanded c3 permit 1046 ^65000:4_0:147_0:39$ ip community-list expanded c3 permit 1047 ^65000:4_0:147_0:40$ ip community-list expanded c3 permit 1048 ^65000:4_0:147_0:41$ ip community-list expanded c3 permit 1049 ^65000:4_0:147_0:42$ ip community-list expanded c3 permit 1050 ^65000:4_0:147_0:43$ ip community-list expanded c3 permit 1051 ^65000:4_0:147_0:44$ ip community-list expanded c3 permit 1052 ^65000:4_0:147_0:45$ ip community-list expanded c3 permit 1053 ^65000:4_0:147_0:46$ ip community-list expanded c3 permit 1054 ^65000:4_0:147_0:47$ ip community-list expanded c3 permit 1055 ^65000:4_0:147_0:48$ ip community-list expanded c3 permit 1056 ^65000:4_0:147_0:49$ ip community-list expanded c3 permit 1057 ^65000:3_0:147_0:144$ ip community-list expanded c3 permit 1058 ^65000:4_0:148_0:38$ ip community-list expanded c3 permit 1059 ^65000:4_0:148_0:39$ ip community-list expanded c3 permit 1060 ^65000:4_0:148_0:40$ ip community-list expanded c3 permit 1061 ^65000:4_0:148_0:41$ ip community-list expanded c3 permit 1062 ^65000:4_0:148_0:42$ ip community-list expanded c3 permit 1063 ^65000:4_0:148_0:43$ ip community-list expanded c3 permit 1064 ^65000:4_0:148_0:44$ ip community-list expanded c3 permit 1065 ^65000:4_0:148_0:45$ ip community-list expanded c3 permit 1066 ^65000:4_0:148_0:46$ ip community-list expanded c3 permit 1067 ^65000:4_0:148_0:47$ ip community-list expanded c3 permit 1068 ^65000:4_0:148_0:48$ ip community-list expanded c3 permit 1069 ^65000:4_0:148_0:49$ ip community-list expanded c3 permit 1070 ^65000:3_0:148_0:145$ ip community-list expanded c3 permit 1071 ^65000:4_0:149_0:38$ ip community-list expanded c3 permit 1072 ^65000:4_0:149_0:39$ ip community-list expanded c3 permit 1073 ^65000:4_0:149_0:40$ ip community-list expanded c3 permit 1074 ^65000:4_0:149_0:41$ ip community-list expanded c3 permit 1075 ^65000:4_0:149_0:42$ ip community-list expanded c3 permit 1076 ^65000:4_0:149_0:43$ ip community-list expanded c3 permit 1077 ^65000:4_0:149_0:44$ ip community-list expanded c3 permit 1078 ^65000:4_0:149_0:45$ ip community-list expanded c3 permit 1079 ^65000:4_0:149_0:46$ ip community-list expanded c3 permit 1080 ^65000:4_0:149_0:47$ ip community-list expanded c3 permit 1081 ^65000:4_0:149_0:48$ ip community-list expanded c3 permit 1082 ^65000:4_0:149_0:49$ ip community-list expanded c3 permit 1083 ^65000:3_0:149_0:146$ ip community-list expanded c3 permit 1084 ^65000:4_0:150_0:38$ ip community-list expanded c3 permit 1085 ^65000:4_0:150_0:39$ ip community-list expanded c3 permit 1086 ^65000:4_0:150_0:40$ ip community-list expanded c3 permit 1087 ^65000:4_0:150_0:41$ ip community-list expanded c3 permit 1088 ^65000:4_0:150_0:42$ ip community-list expanded c3 permit 1089 ^65000:4_0:150_0:43$ ip community-list expanded c3 permit 1090 ^65000:4_0:150_0:44$ ip community-list expanded c3 permit 1091 ^65000:4_0:150_0:45$ ip community-list expanded c3 permit 1092 ^65000:4_0:150_0:46$ ip community-list expanded c3 permit 1093 ^65000:4_0:150_0:47$ ip community-list expanded c3 permit 1094 ^65000:4_0:150_0:48$ ip community-list expanded c3 permit 1095 ^65000:4_0:150_0:49$ ip community-list expanded c3 permit 1096 ^65000:4_0:150_0:50$ ip community-list expanded c3 permit 1097 ^65000:3_0:150_0:147$ ip community-list expanded c3 permit 1098 ^65000:4_0:151_0:38$ ip community-list expanded c3 permit 1099 ^65000:4_0:151_0:39$ ip community-list expanded c3 permit 1100 ^65000:4_0:151_0:40$ ip community-list expanded c3 permit 1101 ^65000:4_0:151_0:41$ ip community-list expanded c3 permit 1102 ^65000:4_0:151_0:42$ ip community-list expanded c3 permit 1103 ^65000:4_0:151_0:43$ ip community-list expanded c3 permit 1104 ^65000:4_0:151_0:44$ ip community-list expanded c3 permit 1105 ^65000:4_0:151_0:45$ ip community-list expanded c3 permit 1106 ^65000:4_0:151_0:46$ ip community-list expanded c3 permit 1107 ^65000:4_0:151_0:47$ ip community-list expanded c3 permit 1108 ^65000:4_0:151_0:48$ ip community-list expanded c3 permit 1109 ^65000:4_0:151_0:49$ ip community-list expanded c3 permit 1110 ^65000:4_0:151_0:50$ ip community-list expanded c3 permit 1111 ^65000:3_0:151_0:148$ ip community-list expanded c3 permit 1112 ^65000:4_0:152_0:39$ ip community-list expanded c3 permit 1113 ^65000:4_0:152_0:40$ ip community-list expanded c3 permit 1114 ^65000:4_0:152_0:41$ ip community-list expanded c3 permit 1115 ^65000:4_0:152_0:42$ ip community-list expanded c3 permit 1116 ^65000:4_0:152_0:43$ ip community-list expanded c3 permit 1117 ^65000:4_0:152_0:44$ ip community-list expanded c3 permit 1118 ^65000:4_0:152_0:45$ ip community-list expanded c3 permit 1119 ^65000:4_0:152_0:46$ ip community-list expanded c3 permit 1120 ^65000:4_0:152_0:47$ ip community-list expanded c3 permit 1121 ^65000:4_0:152_0:48$ ip community-list expanded c3 permit 1122 ^65000:4_0:152_0:49$ ip community-list expanded c3 permit 1123 ^65000:4_0:152_0:50$ ip community-list expanded c3 permit 1124 ^65000:3_0:152_0:149$ ip community-list expanded c3 permit 1125 ^65000:4_0:153_0:39$ ip community-list expanded c3 permit 1126 ^65000:4_0:153_0:40$ ip community-list expanded c3 permit 1127 ^65000:4_0:153_0:41$ ip community-list expanded c3 permit 1128 ^65000:4_0:153_0:42$ ip community-list expanded c3 permit 1129 ^65000:4_0:153_0:43$ ip community-list expanded c3 permit 1130 ^65000:4_0:153_0:44$ ip community-list expanded c3 permit 1131 ^65000:4_0:153_0:45$ ip community-list expanded c3 permit 1132 ^65000:4_0:153_0:46$ ip community-list expanded c3 permit 1133 ^65000:4_0:153_0:47$ ip community-list expanded c3 permit 1134 ^65000:4_0:153_0:48$ ip community-list expanded c3 permit 1135 ^65000:4_0:153_0:49$ ip community-list expanded c3 permit 1136 ^65000:4_0:153_0:50$ ip community-list expanded c3 permit 1137 ^65000:4_0:153_0:51$ ip community-list expanded c3 permit 1138 ^65000:3_0:153_0:150$ ip community-list expanded c3 permit 1139 ^65000:4_0:154_0:39$ ip community-list expanded c3 permit 1140 ^65000:4_0:154_0:40$ ip community-list expanded c3 permit 1141 ^65000:4_0:154_0:41$ ip community-list expanded c3 permit 1142 ^65000:4_0:154_0:42$ ip community-list expanded c3 permit 1143 ^65000:4_0:154_0:43$ ip community-list expanded c3 permit 1144 ^65000:4_0:154_0:44$ ip community-list expanded c3 permit 1145 ^65000:4_0:154_0:45$ ip community-list expanded c3 permit 1146 ^65000:4_0:154_0:46$ ip community-list expanded c3 permit 1147 ^65000:4_0:154_0:47$ ip community-list expanded c3 permit 1148 ^65000:4_0:154_0:48$ ip community-list expanded c3 permit 1149 ^65000:4_0:154_0:49$ ip community-list expanded c3 permit 1150 ^65000:4_0:154_0:50$ ip community-list expanded c3 permit 1151 ^65000:4_0:154_0:51$ ip community-list expanded c3 permit 1152 ^65000:3_0:154_0:151$ ip community-list expanded c3 permit 1153 ^65000:4_0:155_0:39$ ip community-list expanded c3 permit 1154 ^65000:4_0:155_0:40$ ip community-list expanded c3 permit 1155 ^65000:4_0:155_0:41$ ip community-list expanded c3 permit 1156 ^65000:4_0:155_0:42$ ip community-list expanded c3 permit 1157 ^65000:4_0:155_0:43$ ip community-list expanded c3 permit 1158 ^65000:4_0:155_0:44$ ip community-list expanded c3 permit 1159 ^65000:4_0:155_0:45$ ip community-list expanded c3 permit 1160 ^65000:4_0:155_0:46$ ip community-list expanded c3 permit 1161 ^65000:4_0:155_0:47$ ip community-list expanded c3 permit 1162 ^65000:4_0:155_0:48$ ip community-list expanded c3 permit 1163 ^65000:4_0:155_0:49$ ip community-list expanded c3 permit 1164 ^65000:4_0:155_0:50$ ip community-list expanded c3 permit 1165 ^65000:4_0:155_0:51$ ip community-list expanded c3 permit 1166 ^65000:3_0:155_0:152$ ip community-list expanded c3 permit 1167 ^65000:4_0:156_0:40$ ip community-list expanded c3 permit 1168 ^65000:4_0:156_0:41$ ip community-list expanded c3 permit 1169 ^65000:4_0:156_0:42$ ip community-list expanded c3 permit 1170 ^65000:4_0:156_0:43$ ip community-list expanded c3 permit 1171 ^65000:4_0:156_0:44$ ip community-list expanded c3 permit 1172 ^65000:4_0:156_0:45$ ip community-list expanded c3 permit 1173 ^65000:4_0:156_0:46$ ip community-list expanded c3 permit 1174 ^65000:4_0:156_0:47$ ip community-list expanded c3 permit 1175 ^65000:4_0:156_0:48$ ip community-list expanded c3 permit 1176 ^65000:4_0:156_0:49$ ip community-list expanded c3 permit 1177 ^65000:4_0:156_0:50$ ip community-list expanded c3 permit 1178 ^65000:4_0:156_0:51$ ip community-list expanded c3 permit 1179 ^65000:4_0:156_0:52$ ip community-list expanded c3 permit 1180 ^65000:3_0:156_0:153$ ip community-list expanded c3 permit 1181 ^65000:4_0:157_0:40$ ip community-list expanded c3 permit 1182 ^65000:4_0:157_0:41$ ip community-list expanded c3 permit 1183 ^65000:4_0:157_0:42$ ip community-list expanded c3 permit 1184 ^65000:4_0:157_0:43$ ip community-list expanded c3 permit 1185 ^65000:4_0:157_0:44$ ip community-list expanded c3 permit 1186 ^65000:4_0:157_0:45$ ip community-list expanded c3 permit 1187 ^65000:4_0:157_0:46$ ip community-list expanded c3 permit 1188 ^65000:4_0:157_0:47$ ip community-list expanded c3 permit 1189 ^65000:4_0:157_0:48$ ip community-list expanded c3 permit 1190 ^65000:4_0:157_0:49$ ip community-list expanded c3 permit 1191 ^65000:4_0:157_0:50$ ip community-list expanded c3 permit 1192 ^65000:4_0:157_0:51$ ip community-list expanded c3 permit 1193 ^65000:4_0:157_0:52$ ip community-list expanded c3 permit 1194 ^65000:3_0:157_0:154$ ip community-list expanded c3 permit 1195 ^65000:4_0:158_0:40$ ip community-list expanded c3 permit 1196 ^65000:4_0:158_0:41$ ip community-list expanded c3 permit 1197 ^65000:4_0:158_0:42$ ip community-list expanded c3 permit 1198 ^65000:4_0:158_0:43$ ip community-list expanded c3 permit 1199 ^65000:4_0:158_0:44$ ip community-list expanded c3 permit 1200 ^65000:4_0:158_0:45$ ip community-list expanded c3 permit 1201 ^65000:4_0:158_0:46$ ip community-list expanded c3 permit 1202 ^65000:4_0:158_0:47$ ip community-list expanded c3 permit 1203 ^65000:4_0:158_0:48$ ip community-list expanded c3 permit 1204 ^65000:4_0:158_0:49$ ip community-list expanded c3 permit 1205 ^65000:4_0:158_0:50$ ip community-list expanded c3 permit 1206 ^65000:4_0:158_0:51$ ip community-list expanded c3 permit 1207 ^65000:4_0:158_0:52$ ip community-list expanded c3 permit 1208 ^65000:3_0:158_0:155$ ip community-list expanded c3 permit 1209 ^65000:4_0:159_0:40$ ip community-list expanded c3 permit 1210 ^65000:4_0:159_0:41$ ip community-list expanded c3 permit 1211 ^65000:4_0:159_0:42$ ip community-list expanded c3 permit 1212 ^65000:4_0:159_0:43$ ip community-list expanded c3 permit 1213 ^65000:4_0:159_0:44$ ip community-list expanded c3 permit 1214 ^65000:4_0:159_0:45$ ip community-list expanded c3 permit 1215 ^65000:4_0:159_0:46$ ip community-list expanded c3 permit 1216 ^65000:4_0:159_0:47$ ip community-list expanded c3 permit 1217 ^65000:4_0:159_0:48$ ip community-list expanded c3 permit 1218 ^65000:4_0:159_0:49$ ip community-list expanded c3 permit 1219 ^65000:4_0:159_0:50$ ip community-list expanded c3 permit 1220 ^65000:4_0:159_0:51$ ip community-list expanded c3 permit 1221 ^65000:4_0:159_0:52$ ip community-list expanded c3 permit 1222 ^65000:4_0:159_0:53$ ip community-list expanded c3 permit 1223 ^65000:3_0:159_0:156$ ip community-list expanded c3 permit 1224 ^65000:4_0:160_0:41$ ip community-list expanded c3 permit 1225 ^65000:4_0:160_0:42$ ip community-list expanded c3 permit 1226 ^65000:4_0:160_0:43$ ip community-list expanded c3 permit 1227 ^65000:4_0:160_0:44$ ip community-list expanded c3 permit 1228 ^65000:4_0:160_0:45$ ip community-list expanded c3 permit 1229 ^65000:4_0:160_0:46$ ip community-list expanded c3 permit 1230 ^65000:4_0:160_0:47$ ip community-list expanded c3 permit 1231 ^65000:4_0:160_0:48$ ip community-list expanded c3 permit 1232 ^65000:4_0:160_0:49$ ip community-list expanded c3 permit 1233 ^65000:4_0:160_0:50$ ip community-list expanded c3 permit 1234 ^65000:4_0:160_0:51$ ip community-list expanded c3 permit 1235 ^65000:4_0:160_0:52$ ip community-list expanded c3 permit 1236 ^65000:4_0:160_0:53$ ip community-list expanded c3 permit 1237 ^65000:3_0:160_0:157$ ip community-list expanded c3 permit 1238 ^65000:4_0:161_0:41$ ip community-list expanded c3 permit 1239 ^65000:4_0:161_0:42$ ip community-list expanded c3 permit 1240 ^65000:4_0:161_0:43$ ip community-list expanded c3 permit 1241 ^65000:4_0:161_0:44$ ip community-list expanded c3 permit 1242 ^65000:4_0:161_0:45$ ip community-list expanded c3 permit 1243 ^65000:4_0:161_0:46$ ip community-list expanded c3 permit 1244 ^65000:4_0:161_0:47$ ip community-list expanded c3 permit 1245 ^65000:4_0:161_0:48$ ip community-list expanded c3 permit 1246 ^65000:4_0:161_0:49$ ip community-list expanded c3 permit 1247 ^65000:4_0:161_0:50$ ip community-list expanded c3 permit 1248 ^65000:4_0:161_0:51$ ip community-list expanded c3 permit 1249 ^65000:4_0:161_0:52$ ip community-list expanded c3 permit 1250 ^65000:4_0:161_0:53$ ip community-list expanded c3 permit 1251 ^65000:3_0:161_0:158$ ip community-list expanded c3 permit 1252 ^65000:4_0:162_0:41$ ip community-list expanded c3 permit 1253 ^65000:4_0:162_0:42$ ip community-list expanded c3 permit 1254 ^65000:4_0:162_0:43$ ip community-list expanded c3 permit 1255 ^65000:4_0:162_0:44$ ip community-list expanded c3 permit 1256 ^65000:4_0:162_0:45$ ip community-list expanded c3 permit 1257 ^65000:4_0:162_0:46$ ip community-list expanded c3 permit 1258 ^65000:4_0:162_0:47$ ip community-list expanded c3 permit 1259 ^65000:4_0:162_0:48$ ip community-list expanded c3 permit 1260 ^65000:4_0:162_0:49$ ip community-list expanded c3 permit 1261 ^65000:4_0:162_0:50$ ip community-list expanded c3 permit 1262 ^65000:4_0:162_0:51$ ip community-list expanded c3 permit 1263 ^65000:4_0:162_0:52$ ip community-list expanded c3 permit 1264 ^65000:4_0:162_0:53$ ip community-list expanded c3 permit 1265 ^65000:4_0:162_0:54$ ip community-list expanded c3 permit 1266 ^65000:3_0:162_0:159$ ip community-list expanded c3 permit 1267 ^65000:4_0:163_0:41$ ip community-list expanded c3 permit 1268 ^65000:4_0:163_0:42$ ip community-list expanded c3 permit 1269 ^65000:4_0:163_0:43$ ip community-list expanded c3 permit 1270 ^65000:4_0:163_0:44$ ip community-list expanded c3 permit 1271 ^65000:4_0:163_0:45$ ip community-list expanded c3 permit 1272 ^65000:4_0:163_0:46$ ip community-list expanded c3 permit 1273 ^65000:4_0:163_0:47$ ip community-list expanded c3 permit 1274 ^65000:4_0:163_0:48$ ip community-list expanded c3 permit 1275 ^65000:4_0:163_0:49$ ip community-list expanded c3 permit 1276 ^65000:4_0:163_0:50$ ip community-list expanded c3 permit 1277 ^65000:4_0:163_0:51$ ip community-list expanded c3 permit 1278 ^65000:4_0:163_0:52$ ip community-list expanded c3 permit 1279 ^65000:4_0:163_0:53$ ip community-list expanded c3 permit 1280 ^65000:4_0:163_0:54$ ip community-list expanded c3 permit 1281 ^65000:3_0:163_0:160$ ip community-list expanded c3 permit 1282 ^65000:4_0:164_0:42$ ip community-list expanded c3 permit 1283 ^65000:4_0:164_0:43$ ip community-list expanded c3 permit 1284 ^65000:4_0:164_0:44$ ip community-list expanded c3 permit 1285 ^65000:4_0:164_0:45$ ip community-list expanded c3 permit 1286 ^65000:4_0:164_0:46$ ip community-list expanded c3 permit 1287 ^65000:4_0:164_0:47$ ip community-list expanded c3 permit 1288 ^65000:4_0:164_0:48$ ip community-list expanded c3 permit 1289 ^65000:4_0:164_0:49$ ip community-list expanded c3 permit 1290 ^65000:4_0:164_0:50$ ip community-list expanded c3 permit 1291 ^65000:4_0:164_0:51$ ip community-list expanded c3 permit 1292 ^65000:4_0:164_0:52$ ip community-list expanded c3 permit 1293 ^65000:4_0:164_0:53$ ip community-list expanded c3 permit 1294 ^65000:4_0:164_0:54$ ip community-list expanded c3 permit 1295 ^65000:3_0:164_0:161$ ip community-list expanded c3 permit 1296 ^65000:4_0:165_0:42$ ip community-list expanded c3 permit 1297 ^65000:4_0:165_0:43$ ip community-list expanded c3 permit 1298 ^65000:4_0:165_0:44$ ip community-list expanded c3 permit 1299 ^65000:4_0:165_0:45$ ip community-list expanded c3 permit 1300 ^65000:4_0:165_0:46$ ip community-list expanded c3 permit 1301 ^65000:4_0:165_0:47$ ip community-list expanded c3 permit 1302 ^65000:4_0:165_0:48$ ip community-list expanded c3 permit 1303 ^65000:4_0:165_0:49$ ip community-list expanded c3 permit 1304 ^65000:4_0:165_0:50$ ip community-list expanded c3 permit 1305 ^65000:4_0:165_0:51$ ip community-list expanded c3 permit 1306 ^65000:4_0:165_0:52$ ip community-list expanded c3 permit 1307 ^65000:4_0:165_0:53$ ip community-list expanded c3 permit 1308 ^65000:4_0:165_0:54$ ip community-list expanded c3 permit 1309 ^65000:4_0:165_0:55$ ip community-list expanded c3 permit 1310 ^65000:3_0:165_0:162$ ip community-list expanded c3 permit 1311 ^65000:4_0:166_0:42$ ip community-list expanded c3 permit 1312 ^65000:4_0:166_0:43$ ip community-list expanded c3 permit 1313 ^65000:4_0:166_0:44$ ip community-list expanded c3 permit 1314 ^65000:4_0:166_0:45$ ip community-list expanded c3 permit 1315 ^65000:4_0:166_0:46$ ip community-list expanded c3 permit 1316 ^65000:4_0:166_0:47$ ip community-list expanded c3 permit 1317 ^65000:4_0:166_0:48$ ip community-list expanded c3 permit 1318 ^65000:4_0:166_0:49$ ip community-list expanded c3 permit 1319 ^65000:4_0:166_0:50$ ip community-list expanded c3 permit 1320 ^65000:4_0:166_0:51$ ip community-list expanded c3 permit 1321 ^65000:4_0:166_0:52$ ip community-list expanded c3 permit 1322 ^65000:4_0:166_0:53$ ip community-list expanded c3 permit 1323 ^65000:4_0:166_0:54$ ip community-list expanded c3 permit 1324 ^65000:4_0:166_0:55$ ip community-list expanded c3 permit 1325 ^65000:3_0:166_0:163$ ip community-list expanded c3 permit 1326 ^65000:4_0:167_0:42$ ip community-list expanded c3 permit 1327 ^65000:4_0:167_0:43$ ip community-list expanded c3 permit 1328 ^65000:4_0:167_0:44$ ip community-list expanded c3 permit 1329 ^65000:4_0:167_0:45$ ip community-list expanded c3 permit 1330 ^65000:4_0:167_0:46$ ip community-list expanded c3 permit 1331 ^65000:4_0:167_0:47$ ip community-list expanded c3 permit 1332 ^65000:4_0:167_0:48$ ip community-list expanded c3 permit 1333 ^65000:4_0:167_0:49$ ip community-list expanded c3 permit 1334 ^65000:4_0:167_0:50$ ip community-list expanded c3 permit 1335 ^65000:4_0:167_0:51$ ip community-list expanded c3 permit 1336 ^65000:4_0:167_0:52$ ip community-list expanded c3 permit 1337 ^65000:4_0:167_0:53$ ip community-list expanded c3 permit 1338 ^65000:4_0:167_0:54$ ip community-list expanded c3 permit 1339 ^65000:4_0:167_0:55$ ip community-list expanded c3 permit 1340 ^65000:3_0:167_0:164$ ip community-list expanded c3 permit 1341 ^65000:4_0:168_0:43$ ip community-list expanded c3 permit 1342 ^65000:4_0:168_0:44$ ip community-list expanded c3 permit 1343 ^65000:4_0:168_0:45$ ip community-list expanded c3 permit 1344 ^65000:4_0:168_0:46$ ip community-list expanded c3 permit 1345 ^65000:4_0:168_0:47$ ip community-list expanded c3 permit 1346 ^65000:4_0:168_0:48$ ip community-list expanded c3 permit 1347 ^65000:4_0:168_0:49$ ip community-list expanded c3 permit 1348 ^65000:4_0:168_0:50$ ip community-list expanded c3 permit 1349 ^65000:4_0:168_0:51$ ip community-list expanded c3 permit 1350 ^65000:4_0:168_0:52$ ip community-list expanded c3 permit 1351 ^65000:4_0:168_0:53$ ip community-list expanded c3 permit 1352 ^65000:4_0:168_0:54$ ip community-list expanded c3 permit 1353 ^65000:4_0:168_0:55$ ip community-list expanded c3 permit 1354 ^65000:4_0:168_0:56$ ip community-list expanded c3 permit 1355 ^65000:3_0:168_0:165$ ip community-list expanded c3 permit 1356 ^65000:4_0:169_0:43$ ip community-list expanded c3 permit 1357 ^65000:4_0:169_0:44$ ip community-list expanded c3 permit 1358 ^65000:4_0:169_0:45$ ip community-list expanded c3 permit 1359 ^65000:4_0:169_0:46$ ip community-list expanded c3 permit 1360 ^65000:4_0:169_0:47$ ip community-list expanded c3 permit 1361 ^65000:4_0:169_0:48$ ip community-list expanded c3 permit 1362 ^65000:4_0:169_0:49$ ip community-list expanded c3 permit 1363 ^65000:4_0:169_0:50$ ip community-list expanded c3 permit 1364 ^65000:4_0:169_0:51$ ip community-list expanded c3 permit 1365 ^65000:4_0:169_0:52$ ip community-list expanded c3 permit 1366 ^65000:4_0:169_0:53$ ip community-list expanded c3 permit 1367 ^65000:4_0:169_0:54$ ip community-list expanded c3 permit 1368 ^65000:4_0:169_0:55$ ip community-list expanded c3 permit 1369 ^65000:4_0:169_0:56$ ip community-list expanded c3 permit 1370 ^65000:3_0:169_0:166$ ip community-list expanded c3 permit 1371 ^65000:4_0:170_0:43$ ip community-list expanded c3 permit 1372 ^65000:4_0:170_0:44$ ip community-list expanded c3 permit 1373 ^65000:4_0:170_0:45$ ip community-list expanded c3 permit 1374 ^65000:4_0:170_0:46$ ip community-list expanded c3 permit 1375 ^65000:4_0:170_0:47$ ip community-list expanded c3 permit 1376 ^65000:4_0:170_0:48$ ip community-list expanded c3 permit 1377 ^65000:4_0:170_0:49$ ip community-list expanded c3 permit 1378 ^65000:4_0:170_0:50$ ip community-list expanded c3 permit 1379 ^65000:4_0:170_0:51$ ip community-list expanded c3 permit 1380 ^65000:4_0:170_0:52$ ip community-list expanded c3 permit 1381 ^65000:4_0:170_0:53$ ip community-list expanded c3 permit 1382 ^65000:4_0:170_0:54$ ip community-list expanded c3 permit 1383 ^65000:4_0:170_0:55$ ip community-list expanded c3 permit 1384 ^65000:4_0:170_0:56$ ip community-list expanded c3 permit 1385 ^65000:3_0:170_0:167$ ip community-list expanded c3 permit 1386 ^65000:4_0:171_0:43$ ip community-list expanded c3 permit 1387 ^65000:4_0:171_0:44$ ip community-list expanded c3 permit 1388 ^65000:4_0:171_0:45$ ip community-list expanded c3 permit 1389 ^65000:4_0:171_0:46$ ip community-list expanded c3 permit 1390 ^65000:4_0:171_0:47$ ip community-list expanded c3 permit 1391 ^65000:4_0:171_0:48$ ip community-list expanded c3 permit 1392 ^65000:4_0:171_0:49$ ip community-list expanded c3 permit 1393 ^65000:4_0:171_0:50$ ip community-list expanded c3 permit 1394 ^65000:4_0:171_0:51$ ip community-list expanded c3 permit 1395 ^65000:4_0:171_0:52$ ip community-list expanded c3 permit 1396 ^65000:4_0:171_0:53$ ip community-list expanded c3 permit 1397 ^65000:4_0:171_0:54$ ip community-list expanded c3 permit 1398 ^65000:4_0:171_0:55$ ip community-list expanded c3 permit 1399 ^65000:4_0:171_0:56$ ip community-list expanded c3 permit 1400 ^65000:4_0:171_0:57$ ip community-list expanded c3 permit 1401 ^65000:3_0:171_0:168$ ip community-list expanded c3 permit 1402 ^65000:4_0:172_0:44$ ip community-list expanded c3 permit 1403 ^65000:4_0:172_0:45$ ip community-list expanded c3 permit 1404 ^65000:4_0:172_0:46$ ip community-list expanded c3 permit 1405 ^65000:4_0:172_0:47$ ip community-list expanded c3 permit 1406 ^65000:4_0:172_0:48$ ip community-list expanded c3 permit 1407 ^65000:4_0:172_0:49$ ip community-list expanded c3 permit 1408 ^65000:4_0:172_0:50$ ip community-list expanded c3 permit 1409 ^65000:4_0:172_0:51$ ip community-list expanded c3 permit 1410 ^65000:4_0:172_0:52$ ip community-list expanded c3 permit 1411 ^65000:4_0:172_0:53$ ip community-list expanded c3 permit 1412 ^65000:4_0:172_0:54$ ip community-list expanded c3 permit 1413 ^65000:4_0:172_0:55$ ip community-list expanded c3 permit 1414 ^65000:4_0:172_0:56$ ip community-list expanded c3 permit 1415 ^65000:4_0:172_0:57$ ip community-list expanded c3 permit 1416 ^65000:3_0:172_0:169$ ip community-list expanded c3 permit 1417 ^65000:4_0:173_0:44$ ip community-list expanded c3 permit 1418 ^65000:4_0:173_0:45$ ip community-list expanded c3 permit 1419 ^65000:4_0:173_0:46$ ip community-list expanded c3 permit 1420 ^65000:4_0:173_0:47$ ip community-list expanded c3 permit 1421 ^65000:4_0:173_0:48$ ip community-list expanded c3 permit 1422 ^65000:4_0:173_0:49$ ip community-list expanded c3 permit 1423 ^65000:4_0:173_0:50$ ip community-list expanded c3 permit 1424 ^65000:4_0:173_0:51$ ip community-list expanded c3 permit 1425 ^65000:4_0:173_0:52$ ip community-list expanded c3 permit 1426 ^65000:4_0:173_0:53$ ip community-list expanded c3 permit 1427 ^65000:4_0:173_0:54$ ip community-list expanded c3 permit 1428 ^65000:4_0:173_0:55$ ip community-list expanded c3 permit 1429 ^65000:4_0:173_0:56$ ip community-list expanded c3 permit 1430 ^65000:4_0:173_0:57$ ip community-list expanded c3 permit 1431 ^65000:3_0:173_0:170$ ip community-list expanded c3 permit 1432 ^65000:4_0:174_0:44$ ip community-list expanded c3 permit 1433 ^65000:4_0:174_0:45$ ip community-list expanded c3 permit 1434 ^65000:4_0:174_0:46$ ip community-list expanded c3 permit 1435 ^65000:4_0:174_0:47$ ip community-list expanded c3 permit 1436 ^65000:4_0:174_0:48$ ip community-list expanded c3 permit 1437 ^65000:4_0:174_0:49$ ip community-list expanded c3 permit 1438 ^65000:4_0:174_0:50$ ip community-list expanded c3 permit 1439 ^65000:4_0:174_0:51$ ip community-list expanded c3 permit 1440 ^65000:4_0:174_0:52$ ip community-list expanded c3 permit 1441 ^65000:4_0:174_0:53$ ip community-list expanded c3 permit 1442 ^65000:4_0:174_0:54$ ip community-list expanded c3 permit 1443 ^65000:4_0:174_0:55$ ip community-list expanded c3 permit 1444 ^65000:4_0:174_0:56$ ip community-list expanded c3 permit 1445 ^65000:4_0:174_0:57$ ip community-list expanded c3 permit 1446 ^65000:4_0:174_0:58$ ip community-list expanded c3 permit 1447 ^65000:3_0:174_0:171$ ip community-list expanded c3 permit 1448 ^65000:4_0:175_0:44$ ip community-list expanded c3 permit 1449 ^65000:4_0:175_0:45$ ip community-list expanded c3 permit 1450 ^65000:4_0:175_0:46$ ip community-list expanded c3 permit 1451 ^65000:4_0:175_0:47$ ip community-list expanded c3 permit 1452 ^65000:4_0:175_0:48$ ip community-list expanded c3 permit 1453 ^65000:4_0:175_0:49$ ip community-list expanded c3 permit 1454 ^65000:4_0:175_0:50$ ip community-list expanded c3 permit 1455 ^65000:4_0:175_0:51$ ip community-list expanded c3 permit 1456 ^65000:4_0:175_0:52$ ip community-list expanded c3 permit 1457 ^65000:4_0:175_0:53$ ip community-list expanded c3 permit 1458 ^65000:4_0:175_0:54$ ip community-list expanded c3 permit 1459 ^65000:4_0:175_0:55$ ip community-list expanded c3 permit 1460 ^65000:4_0:175_0:56$ ip community-list expanded c3 permit 1461 ^65000:4_0:175_0:57$ ip community-list expanded c3 permit 1462 ^65000:4_0:175_0:58$ ip community-list expanded c3 permit 1463 ^65000:3_0:175_0:172$ ip community-list expanded c3 permit 1464 ^65000:4_0:176_0:45$ ip community-list expanded c3 permit 1465 ^65000:4_0:176_0:46$ ip community-list expanded c3 permit 1466 ^65000:4_0:176_0:47$ ip community-list expanded c3 permit 1467 ^65000:4_0:176_0:48$ ip community-list expanded c3 permit 1468 ^65000:4_0:176_0:49$ ip community-list expanded c3 permit 1469 ^65000:4_0:176_0:50$ ip community-list expanded c3 permit 1470 ^65000:4_0:176_0:51$ ip community-list expanded c3 permit 1471 ^65000:4_0:176_0:52$ ip community-list expanded c3 permit 1472 ^65000:4_0:176_0:53$ ip community-list expanded c3 permit 1473 ^65000:4_0:176_0:54$ ip community-list expanded c3 permit 1474 ^65000:4_0:176_0:55$ ip community-list expanded c3 permit 1475 ^65000:4_0:176_0:56$ ip community-list expanded c3 permit 1476 ^65000:4_0:176_0:57$ ip community-list expanded c3 permit 1477 ^65000:4_0:176_0:58$ ip community-list expanded c3 permit 1478 ^65000:3_0:176_0:173$ ip community-list expanded c3 permit 1479 ^65000:4_0:177_0:45$ ip community-list expanded c3 permit 1480 ^65000:4_0:177_0:46$ ip community-list expanded c3 permit 1481 ^65000:4_0:177_0:47$ ip community-list expanded c3 permit 1482 ^65000:4_0:177_0:48$ ip community-list expanded c3 permit 1483 ^65000:4_0:177_0:49$ ip community-list expanded c3 permit 1484 ^65000:4_0:177_0:50$ ip community-list expanded c3 permit 1485 ^65000:4_0:177_0:51$ ip community-list expanded c3 permit 1486 ^65000:4_0:177_0:52$ ip community-list expanded c3 permit 1487 ^65000:4_0:177_0:53$ ip community-list expanded c3 permit 1488 ^65000:4_0:177_0:54$ ip community-list expanded c3 permit 1489 ^65000:4_0:177_0:55$ ip community-list expanded c3 permit 1490 ^65000:4_0:177_0:56$ ip community-list expanded c3 permit 1491 ^65000:4_0:177_0:57$ ip community-list expanded c3 permit 1492 ^65000:4_0:177_0:58$ ip community-list expanded c3 permit 1493 ^65000:4_0:177_0:59$ ip community-list expanded c3 permit 1494 ^65000:3_0:177_0:174$ ip community-list expanded c3 permit 1495 ^65000:4_0:178_0:45$ ip community-list expanded c3 permit 1496 ^65000:4_0:178_0:46$ ip community-list expanded c3 permit 1497 ^65000:4_0:178_0:47$ ip community-list expanded c3 permit 1498 ^65000:4_0:178_0:48$ ip community-list expanded c3 permit 1499 ^65000:4_0:178_0:49$ ip community-list expanded c3 permit 1500 ^65000:4_0:178_0:50$ ip community-list expanded c3 permit 1501 ^65000:4_0:178_0:51$ ip community-list expanded c3 permit 1502 ^65000:4_0:178_0:52$ ip community-list expanded c3 permit 1503 ^65000:4_0:178_0:53$ ip community-list expanded c3 permit 1504 ^65000:4_0:178_0:54$ ip community-list expanded c3 permit 1505 ^65000:4_0:178_0:55$ ip community-list expanded c3 permit 1506 ^65000:4_0:178_0:56$ ip community-list expanded c3 permit 1507 ^65000:4_0:178_0:57$ ip community-list expanded c3 permit 1508 ^65000:4_0:178_0:58$ ip community-list expanded c3 permit 1509 ^65000:4_0:178_0:59$ ip community-list expanded c3 permit 1510 ^65000:3_0:178_0:175$ ip community-list expanded c3 permit 1511 ^65000:4_0:179_0:45$ ip community-list expanded c3 permit 1512 ^65000:4_0:179_0:46$ ip community-list expanded c3 permit 1513 ^65000:4_0:179_0:47$ ip community-list expanded c3 permit 1514 ^65000:4_0:179_0:48$ ip community-list expanded c3 permit 1515 ^65000:4_0:179_0:49$ ip community-list expanded c3 permit 1516 ^65000:4_0:179_0:50$ ip community-list expanded c3 permit 1517 ^65000:4_0:179_0:51$ ip community-list expanded c3 permit 1518 ^65000:4_0:179_0:52$ ip community-list expanded c3 permit 1519 ^65000:4_0:179_0:53$ ip community-list expanded c3 permit 1520 ^65000:4_0:179_0:54$ ip community-list expanded c3 permit 1521 ^65000:4_0:179_0:55$ ip community-list expanded c3 permit 1522 ^65000:4_0:179_0:56$ ip community-list expanded c3 permit 1523 ^65000:4_0:179_0:57$ ip community-list expanded c3 permit 1524 ^65000:4_0:179_0:58$ ip community-list expanded c3 permit 1525 ^65000:4_0:179_0:59$ ip community-list expanded c3 permit 1526 ^65000:3_0:179_0:176$ ip community-list expanded c3 permit 1527 ^65000:4_0:180_0:46$ ip community-list expanded c3 permit 1528 ^65000:4_0:180_0:47$ ip community-list expanded c3 permit 1529 ^65000:4_0:180_0:48$ ip community-list expanded c3 permit 1530 ^65000:4_0:180_0:49$ ip community-list expanded c3 permit 1531 ^65000:4_0:180_0:50$ ip community-list expanded c3 permit 1532 ^65000:4_0:180_0:51$ ip community-list expanded c3 permit 1533 ^65000:4_0:180_0:52$ ip community-list expanded c3 permit 1534 ^65000:4_0:180_0:53$ ip community-list expanded c3 permit 1535 ^65000:4_0:180_0:54$ ip community-list expanded c3 permit 1536 ^65000:4_0:180_0:55$ ip community-list expanded c3 permit 1537 ^65000:4_0:180_0:56$ ip community-list expanded c3 permit 1538 ^65000:4_0:180_0:57$ ip community-list expanded c3 permit 1539 ^65000:4_0:180_0:58$ ip community-list expanded c3 permit 1540 ^65000:4_0:180_0:59$ ip community-list expanded c3 permit 1541 ^65000:4_0:180_0:60$ ip community-list expanded c3 permit 1542 ^65000:3_0:180_0:177$ ip community-list expanded c3 permit 1543 ^65000:4_0:181_0:46$ ip community-list expanded c3 permit 1544 ^65000:4_0:181_0:47$ ip community-list expanded c3 permit 1545 ^65000:4_0:181_0:48$ ip community-list expanded c3 permit 1546 ^65000:4_0:181_0:49$ ip community-list expanded c3 permit 1547 ^65000:4_0:181_0:50$ ip community-list expanded c3 permit 1548 ^65000:4_0:181_0:51$ ip community-list expanded c3 permit 1549 ^65000:4_0:181_0:52$ ip community-list expanded c3 permit 1550 ^65000:4_0:181_0:53$ ip community-list expanded c3 permit 1551 ^65000:4_0:181_0:54$ ip community-list expanded c3 permit 1552 ^65000:4_0:181_0:55$ ip community-list expanded c3 permit 1553 ^65000:4_0:181_0:56$ ip community-list expanded c3 permit 1554 ^65000:4_0:181_0:57$ ip community-list expanded c3 permit 1555 ^65000:4_0:181_0:58$ ip community-list expanded c3 permit 1556 ^65000:4_0:181_0:59$ ip community-list expanded c3 permit 1557 ^65000:4_0:181_0:60$ ip community-list expanded c3 permit 1558 ^65000:3_0:181_0:178$ ip community-list expanded c3 permit 1559 ^65000:4_0:182_0:46$ ip community-list expanded c3 permit 1560 ^65000:4_0:182_0:47$ ip community-list expanded c3 permit 1561 ^65000:4_0:182_0:48$ ip community-list expanded c3 permit 1562 ^65000:4_0:182_0:49$ ip community-list expanded c3 permit 1563 ^65000:4_0:182_0:50$ ip community-list expanded c3 permit 1564 ^65000:4_0:182_0:51$ ip community-list expanded c3 permit 1565 ^65000:4_0:182_0:52$ ip community-list expanded c3 permit 1566 ^65000:4_0:182_0:53$ ip community-list expanded c3 permit 1567 ^65000:4_0:182_0:54$ ip community-list expanded c3 permit 1568 ^65000:4_0:182_0:55$ ip community-list expanded c3 permit 1569 ^65000:4_0:182_0:56$ ip community-list expanded c3 permit 1570 ^65000:4_0:182_0:57$ ip community-list expanded c3 permit 1571 ^65000:4_0:182_0:58$ ip community-list expanded c3 permit 1572 ^65000:4_0:182_0:59$ ip community-list expanded c3 permit 1573 ^65000:4_0:182_0:60$ ip community-list expanded c3 permit 1574 ^65000:3_0:182_0:179$ ip community-list expanded c3 permit 1575 ^65000:4_0:183_0:46$ ip community-list expanded c3 permit 1576 ^65000:4_0:183_0:47$ ip community-list expanded c3 permit 1577 ^65000:4_0:183_0:48$ ip community-list expanded c3 permit 1578 ^65000:4_0:183_0:49$ ip community-list expanded c3 permit 1579 ^65000:4_0:183_0:50$ ip community-list expanded c3 permit 1580 ^65000:4_0:183_0:51$ ip community-list expanded c3 permit 1581 ^65000:4_0:183_0:52$ ip community-list expanded c3 permit 1582 ^65000:4_0:183_0:53$ ip community-list expanded c3 permit 1583 ^65000:4_0:183_0:54$ ip community-list expanded c3 permit 1584 ^65000:4_0:183_0:55$ ip community-list expanded c3 permit 1585 ^65000:4_0:183_0:56$ ip community-list expanded c3 permit 1586 ^65000:4_0:183_0:57$ ip community-list expanded c3 permit 1587 ^65000:4_0:183_0:58$ ip community-list expanded c3 permit 1588 ^65000:4_0:183_0:59$ ip community-list expanded c3 permit 1589 ^65000:4_0:183_0:60$ ip community-list expanded c3 permit 1590 ^65000:4_0:183_0:61$ ip community-list expanded c3 permit 1591 ^65000:3_0:183_0:180$ ip community-list expanded c3 permit 1592 ^65000:4_0:184_0:47$ ip community-list expanded c3 permit 1593 ^65000:4_0:184_0:48$ ip community-list expanded c3 permit 1594 ^65000:4_0:184_0:49$ ip community-list expanded c3 permit 1595 ^65000:4_0:184_0:50$ ip community-list expanded c3 permit 1596 ^65000:4_0:184_0:51$ ip community-list expanded c3 permit 1597 ^65000:4_0:184_0:52$ ip community-list expanded c3 permit 1598 ^65000:4_0:184_0:53$ ip community-list expanded c3 permit 1599 ^65000:4_0:184_0:54$ ip community-list expanded c3 permit 1600 ^65000:4_0:184_0:55$ ip community-list expanded c3 permit 1601 ^65000:4_0:184_0:56$ ip community-list expanded c3 permit 1602 ^65000:4_0:184_0:57$ ip community-list expanded c3 permit 1603 ^65000:4_0:184_0:58$ ip community-list expanded c3 permit 1604 ^65000:4_0:184_0:59$ ip community-list expanded c3 permit 1605 ^65000:4_0:184_0:60$ ip community-list expanded c3 permit 1606 ^65000:4_0:184_0:61$ ip community-list expanded c3 permit 1607 ^65000:3_0:184_0:181$ ip community-list expanded c3 permit 1608 ^65000:4_0:185_0:47$ ip community-list expanded c3 permit 1609 ^65000:4_0:185_0:48$ ip community-list expanded c3 permit 1610 ^65000:4_0:185_0:49$ ip community-list expanded c3 permit 1611 ^65000:4_0:185_0:50$ ip community-list expanded c3 permit 1612 ^65000:4_0:185_0:51$ ip community-list expanded c3 permit 1613 ^65000:4_0:185_0:52$ ip community-list expanded c3 permit 1614 ^65000:4_0:185_0:53$ ip community-list expanded c3 permit 1615 ^65000:4_0:185_0:54$ ip community-list expanded c3 permit 1616 ^65000:4_0:185_0:55$ ip community-list expanded c3 permit 1617 ^65000:4_0:185_0:56$ ip community-list expanded c3 permit 1618 ^65000:4_0:185_0:57$ ip community-list expanded c3 permit 1619 ^65000:4_0:185_0:58$ ip community-list expanded c3 permit 1620 ^65000:4_0:185_0:59$ ip community-list expanded c3 permit 1621 ^65000:4_0:185_0:60$ ip community-list expanded c3 permit 1622 ^65000:4_0:185_0:61$ ip community-list expanded c3 permit 1623 ^65000:3_0:185_0:182$ ip community-list expanded c3 permit 1624 ^65000:4_0:186_0:47$ ip community-list expanded c3 permit 1625 ^65000:4_0:186_0:48$ ip community-list expanded c3 permit 1626 ^65000:4_0:186_0:49$ ip community-list expanded c3 permit 1627 ^65000:4_0:186_0:50$ ip community-list expanded c3 permit 1628 ^65000:4_0:186_0:51$ ip community-list expanded c3 permit 1629 ^65000:4_0:186_0:52$ ip community-list expanded c3 permit 1630 ^65000:4_0:186_0:53$ ip community-list expanded c3 permit 1631 ^65000:4_0:186_0:54$ ip community-list expanded c3 permit 1632 ^65000:4_0:186_0:55$ ip community-list expanded c3 permit 1633 ^65000:4_0:186_0:56$ ip community-list expanded c3 permit 1634 ^65000:4_0:186_0:57$ ip community-list expanded c3 permit 1635 ^65000:4_0:186_0:58$ ip community-list expanded c3 permit 1636 ^65000:4_0:186_0:59$ ip community-list expanded c3 permit 1637 ^65000:4_0:186_0:60$ ip community-list expanded c3 permit 1638 ^65000:4_0:186_0:61$ ip community-list expanded c3 permit 1639 ^65000:4_0:186_0:62$ ip community-list expanded c3 permit 1640 ^65000:3_0:186_0:183$ ip community-list expanded c3 permit 1641 ^65000:4_0:187_0:47$ ip community-list expanded c3 permit 1642 ^65000:4_0:187_0:48$ ip community-list expanded c3 permit 1643 ^65000:4_0:187_0:49$ ip community-list expanded c3 permit 1644 ^65000:4_0:187_0:50$ ip community-list expanded c3 permit 1645 ^65000:4_0:187_0:51$ ip community-list expanded c3 permit 1646 ^65000:4_0:187_0:52$ ip community-list expanded c3 permit 1647 ^65000:4_0:187_0:53$ ip community-list expanded c3 permit 1648 ^65000:4_0:187_0:54$ ip community-list expanded c3 permit 1649 ^65000:4_0:187_0:55$ ip community-list expanded c3 permit 1650 ^65000:4_0:187_0:56$ ip community-list expanded c3 permit 1651 ^65000:4_0:187_0:57$ ip community-list expanded c3 permit 1652 ^65000:4_0:187_0:58$ ip community-list expanded c3 permit 1653 ^65000:4_0:187_0:59$ ip community-list expanded c3 permit 1654 ^65000:4_0:187_0:60$ ip community-list expanded c3 permit 1655 ^65000:4_0:187_0:61$ ip community-list expanded c3 permit 1656 ^65000:4_0:187_0:62$ ip community-list expanded c3 permit 1657 ^65000:3_0:187_0:184$ ip community-list expanded c3 permit 1658 ^65000:4_0:188_0:48$ ip community-list expanded c3 permit 1659 ^65000:4_0:188_0:49$ ip community-list expanded c3 permit 1660 ^65000:4_0:188_0:50$ ip community-list expanded c3 permit 1661 ^65000:4_0:188_0:51$ ip community-list expanded c3 permit 1662 ^65000:4_0:188_0:52$ ip community-list expanded c3 permit 1663 ^65000:4_0:188_0:53$ ip community-list expanded c3 permit 1664 ^65000:4_0:188_0:54$ ip community-list expanded c3 permit 1665 ^65000:4_0:188_0:55$ ip community-list expanded c3 permit 1666 ^65000:4_0:188_0:56$ ip community-list expanded c3 permit 1667 ^65000:4_0:188_0:57$ ip community-list expanded c3 permit 1668 ^65000:4_0:188_0:58$ ip community-list expanded c3 permit 1669 ^65000:4_0:188_0:59$ ip community-list expanded c3 permit 1670 ^65000:4_0:188_0:60$ ip community-list expanded c3 permit 1671 ^65000:4_0:188_0:61$ ip community-list expanded c3 permit 1672 ^65000:4_0:188_0:62$ ip community-list expanded c3 permit 1673 ^65000:3_0:188_0:185$ ip community-list expanded c3 permit 1674 ^65000:4_0:189_0:48$ ip community-list expanded c3 permit 1675 ^65000:4_0:189_0:49$ ip community-list expanded c3 permit 1676 ^65000:4_0:189_0:50$ ip community-list expanded c3 permit 1677 ^65000:4_0:189_0:51$ ip community-list expanded c3 permit 1678 ^65000:4_0:189_0:52$ ip community-list expanded c3 permit 1679 ^65000:4_0:189_0:53$ ip community-list expanded c3 permit 1680 ^65000:4_0:189_0:54$ ip community-list expanded c3 permit 1681 ^65000:4_0:189_0:55$ ip community-list expanded c3 permit 1682 ^65000:4_0:189_0:56$ ip community-list expanded c3 permit 1683 ^65000:4_0:189_0:57$ ip community-list expanded c3 permit 1684 ^65000:4_0:189_0:58$ ip community-list expanded c3 permit 1685 ^65000:4_0:189_0:59$ ip community-list expanded c3 permit 1686 ^65000:4_0:189_0:60$ ip community-list expanded c3 permit 1687 ^65000:4_0:189_0:61$ ip community-list expanded c3 permit 1688 ^65000:4_0:189_0:62$ ip community-list expanded c3 permit 1689 ^65000:4_0:189_0:63$ ip community-list expanded c3 permit 1690 ^65000:3_0:189_0:186$ ip community-list expanded c3 permit 1691 ^65000:4_0:190_0:48$ ip community-list expanded c3 permit 1692 ^65000:4_0:190_0:49$ ip community-list expanded c3 permit 1693 ^65000:4_0:190_0:50$ ip community-list expanded c3 permit 1694 ^65000:4_0:190_0:51$ ip community-list expanded c3 permit 1695 ^65000:4_0:190_0:52$ ip community-list expanded c3 permit 1696 ^65000:4_0:190_0:53$ ip community-list expanded c3 permit 1697 ^65000:4_0:190_0:54$ ip community-list expanded c3 permit 1698 ^65000:4_0:190_0:55$ ip community-list expanded c3 permit 1699 ^65000:4_0:190_0:56$ ip community-list expanded c3 permit 1700 ^65000:4_0:190_0:57$ ip community-list expanded c3 permit 1701 ^65000:4_0:190_0:58$ ip community-list expanded c3 permit 1702 ^65000:4_0:190_0:59$ ip community-list expanded c3 permit 1703 ^65000:4_0:190_0:60$ ip community-list expanded c3 permit 1704 ^65000:4_0:190_0:61$ ip community-list expanded c3 permit 1705 ^65000:4_0:190_0:62$ ip community-list expanded c3 permit 1706 ^65000:4_0:190_0:63$ ip community-list expanded c3 permit 1707 ^65000:3_0:190_0:187$ ip community-list expanded c3 permit 1708 ^65000:4_0:191_0:48$ ip community-list expanded c3 permit 1709 ^65000:4_0:191_0:49$ ip community-list expanded c3 permit 1710 ^65000:4_0:191_0:50$ ip community-list expanded c3 permit 1711 ^65000:4_0:191_0:51$ ip community-list expanded c3 permit 1712 ^65000:4_0:191_0:52$ ip community-list expanded c3 permit 1713 ^65000:4_0:191_0:53$ ip community-list expanded c3 permit 1714 ^65000:4_0:191_0:54$ ip community-list expanded c3 permit 1715 ^65000:4_0:191_0:55$ ip community-list expanded c3 permit 1716 ^65000:4_0:191_0:56$ ip community-list expanded c3 permit 1717 ^65000:4_0:191_0:57$ ip community-list expanded c3 permit 1718 ^65000:4_0:191_0:58$ ip community-list expanded c3 permit 1719 ^65000:4_0:191_0:59$ ip community-list expanded c3 permit 1720 ^65000:4_0:191_0:60$ ip community-list expanded c3 permit 1721 ^65000:4_0:191_0:61$ ip community-list expanded c3 permit 1722 ^65000:4_0:191_0:62$ ip community-list expanded c3 permit 1723 ^65000:4_0:191_0:63$ ip community-list expanded c3 permit 1724 ^65000:3_0:191_0:188$ ip community-list expanded c3 permit 1725 ^65000:4_0:192_0:49$ ip community-list expanded c3 permit 1726 ^65000:4_0:192_0:50$ ip community-list expanded c3 permit 1727 ^65000:4_0:192_0:51$ ip community-list expanded c3 permit 1728 ^65000:4_0:192_0:52$ ip community-list expanded c3 permit 1729 ^65000:4_0:192_0:53$ ip community-list expanded c3 permit 1730 ^65000:4_0:192_0:54$ ip community-list expanded c3 permit 1731 ^65000:4_0:192_0:55$ ip community-list expanded c3 permit 1732 ^65000:4_0:192_0:56$ ip community-list expanded c3 permit 1733 ^65000:4_0:192_0:57$ ip community-list expanded c3 permit 1734 ^65000:4_0:192_0:58$ ip community-list expanded c3 permit 1735 ^65000:4_0:192_0:59$ ip community-list expanded c3 permit 1736 ^65000:4_0:192_0:60$ ip community-list expanded c3 permit 1737 ^65000:4_0:192_0:61$ ip community-list expanded c3 permit 1738 ^65000:4_0:192_0:62$ ip community-list expanded c3 permit 1739 ^65000:4_0:192_0:63$ ip community-list expanded c3 permit 1740 ^65000:4_0:192_0:64$ ip community-list expanded c3 permit 1741 ^65000:3_0:192_0:189$ ip community-list expanded c3 permit 1742 ^65000:4_0:193_0:49$ ip community-list expanded c3 permit 1743 ^65000:4_0:193_0:50$ ip community-list expanded c3 permit 1744 ^65000:4_0:193_0:51$ ip community-list expanded c3 permit 1745 ^65000:4_0:193_0:52$ ip community-list expanded c3 permit 1746 ^65000:4_0:193_0:53$ ip community-list expanded c3 permit 1747 ^65000:4_0:193_0:54$ ip community-list expanded c3 permit 1748 ^65000:4_0:193_0:55$ ip community-list expanded c3 permit 1749 ^65000:4_0:193_0:56$ ip community-list expanded c3 permit 1750 ^65000:4_0:193_0:57$ ip community-list expanded c3 permit 1751 ^65000:4_0:193_0:58$ ip community-list expanded c3 permit 1752 ^65000:4_0:193_0:59$ ip community-list expanded c3 permit 1753 ^65000:4_0:193_0:60$ ip community-list expanded c3 permit 1754 ^65000:4_0:193_0:61$ ip community-list expanded c3 permit 1755 ^65000:4_0:193_0:62$ ip community-list expanded c3 permit 1756 ^65000:4_0:193_0:63$ ip community-list expanded c3 permit 1757 ^65000:4_0:193_0:64$ ip community-list expanded c3 permit 1758 ^65000:3_0:193_0:190$ ip community-list expanded c3 permit 1759 ^65000:4_0:194_0:49$ ip community-list expanded c3 permit 1760 ^65000:4_0:194_0:50$ ip community-list expanded c3 permit 1761 ^65000:4_0:194_0:51$ ip community-list expanded c3 permit 1762 ^65000:4_0:194_0:52$ ip community-list expanded c3 permit 1763 ^65000:4_0:194_0:53$ ip community-list expanded c3 permit 1764 ^65000:4_0:194_0:54$ ip community-list expanded c3 permit 1765 ^65000:4_0:194_0:55$ ip community-list expanded c3 permit 1766 ^65000:4_0:194_0:56$ ip community-list expanded c3 permit 1767 ^65000:4_0:194_0:57$ ip community-list expanded c3 permit 1768 ^65000:4_0:194_0:58$ ip community-list expanded c3 permit 1769 ^65000:4_0:194_0:59$ ip community-list expanded c3 permit 1770 ^65000:4_0:194_0:60$ ip community-list expanded c3 permit 1771 ^65000:4_0:194_0:61$ ip community-list expanded c3 permit 1772 ^65000:4_0:194_0:62$ ip community-list expanded c3 permit 1773 ^65000:4_0:194_0:63$ ip community-list expanded c3 permit 1774 ^65000:4_0:194_0:64$ ip community-list expanded c3 permit 1775 ^65000:3_0:194_0:191$ ip community-list expanded c3 permit 1776 ^65000:4_0:195_0:49$ ip community-list expanded c3 permit 1777 ^65000:4_0:195_0:50$ ip community-list expanded c3 permit 1778 ^65000:4_0:195_0:51$ ip community-list expanded c3 permit 1779 ^65000:4_0:195_0:52$ ip community-list expanded c3 permit 1780 ^65000:4_0:195_0:53$ ip community-list expanded c3 permit 1781 ^65000:4_0:195_0:54$ ip community-list expanded c3 permit 1782 ^65000:4_0:195_0:55$ ip community-list expanded c3 permit 1783 ^65000:4_0:195_0:56$ ip community-list expanded c3 permit 1784 ^65000:4_0:195_0:57$ ip community-list expanded c3 permit 1785 ^65000:4_0:195_0:58$ ip community-list expanded c3 permit 1786 ^65000:4_0:195_0:59$ ip community-list expanded c3 permit 1787 ^65000:4_0:195_0:60$ ip community-list expanded c3 permit 1788 ^65000:4_0:195_0:61$ ip community-list expanded c3 permit 1789 ^65000:4_0:195_0:62$ ip community-list expanded c3 permit 1790 ^65000:4_0:195_0:63$ ip community-list expanded c3 permit 1791 ^65000:4_0:195_0:64$ ip community-list expanded c3 permit 1792 ^65000:4_0:195_0:65$ ip community-list expanded c3 permit 1793 ^65000:3_0:195_0:192$ ip community-list expanded c3 permit 1794 ^65000:4_0:196_0:50$ ip community-list expanded c3 permit 1795 ^65000:4_0:196_0:51$ ip community-list expanded c3 permit 1796 ^65000:4_0:196_0:52$ ip community-list expanded c3 permit 1797 ^65000:4_0:196_0:53$ ip community-list expanded c3 permit 1798 ^65000:4_0:196_0:54$ ip community-list expanded c3 permit 1799 ^65000:4_0:196_0:55$ ip community-list expanded c3 permit 1800 ^65000:4_0:196_0:56$ ip community-list expanded c3 permit 1801 ^65000:4_0:196_0:57$ ip community-list expanded c3 permit 1802 ^65000:4_0:196_0:58$ ip community-list expanded c3 permit 1803 ^65000:4_0:196_0:59$ ip community-list expanded c3 permit 1804 ^65000:4_0:196_0:60$ ip community-list expanded c3 permit 1805 ^65000:4_0:196_0:61$ ip community-list expanded c3 permit 1806 ^65000:4_0:196_0:62$ ip community-list expanded c3 permit 1807 ^65000:4_0:196_0:63$ ip community-list expanded c3 permit 1808 ^65000:4_0:196_0:64$ ip community-list expanded c3 permit 1809 ^65000:4_0:196_0:65$ ip community-list expanded c3 permit 1810 ^65000:3_0:196_0:193$ ip community-list expanded c3 permit 1811 ^65000:4_0:197_0:50$ ip community-list expanded c3 permit 1812 ^65000:4_0:197_0:51$ ip community-list expanded c3 permit 1813 ^65000:4_0:197_0:52$ ip community-list expanded c3 permit 1814 ^65000:4_0:197_0:53$ ip community-list expanded c3 permit 1815 ^65000:4_0:197_0:54$ ip community-list expanded c3 permit 1816 ^65000:4_0:197_0:55$ ip community-list expanded c3 permit 1817 ^65000:4_0:197_0:56$ ip community-list expanded c3 permit 1818 ^65000:4_0:197_0:57$ ip community-list expanded c3 permit 1819 ^65000:4_0:197_0:58$ ip community-list expanded c3 permit 1820 ^65000:4_0:197_0:59$ ip community-list expanded c3 permit 1821 ^65000:4_0:197_0:60$ ip community-list expanded c3 permit 1822 ^65000:4_0:197_0:61$ ip community-list expanded c3 permit 1823 ^65000:4_0:197_0:62$ ip community-list expanded c3 permit 1824 ^65000:4_0:197_0:63$ ip community-list expanded c3 permit 1825 ^65000:4_0:197_0:64$ ip community-list expanded c3 permit 1826 ^65000:4_0:197_0:65$ ip community-list expanded c3 permit 1827 ^65000:3_0:197_0:194$ ip community-list expanded c3 permit 1828 ^65000:4_0:198_0:50$ ip community-list expanded c3 permit 1829 ^65000:4_0:198_0:51$ ip community-list expanded c3 permit 1830 ^65000:4_0:198_0:52$ ip community-list expanded c3 permit 1831 ^65000:4_0:198_0:53$ ip community-list expanded c3 permit 1832 ^65000:4_0:198_0:54$ ip community-list expanded c3 permit 1833 ^65000:4_0:198_0:55$ ip community-list expanded c3 permit 1834 ^65000:4_0:198_0:56$ ip community-list expanded c3 permit 1835 ^65000:4_0:198_0:57$ ip community-list expanded c3 permit 1836 ^65000:4_0:198_0:58$ ip community-list expanded c3 permit 1837 ^65000:4_0:198_0:59$ ip community-list expanded c3 permit 1838 ^65000:4_0:198_0:60$ ip community-list expanded c3 permit 1839 ^65000:4_0:198_0:61$ ip community-list expanded c3 permit 1840 ^65000:4_0:198_0:62$ ip community-list expanded c3 permit 1841 ^65000:4_0:198_0:63$ ip community-list expanded c3 permit 1842 ^65000:4_0:198_0:64$ ip community-list expanded c3 permit 1843 ^65000:4_0:198_0:65$ ip community-list expanded c3 permit 1844 ^65000:4_0:198_0:66$ ip community-list expanded c3 permit 1845 ^65000:3_0:198_0:195$ ip community-list expanded c3 permit 1846 ^65000:4_0:199_0:50$ ip community-list expanded c3 permit 1847 ^65000:4_0:199_0:51$ ip community-list expanded c3 permit 1848 ^65000:4_0:199_0:52$ ip community-list expanded c3 permit 1849 ^65000:4_0:199_0:53$ ip community-list expanded c3 permit 1850 ^65000:4_0:199_0:54$ ip community-list expanded c3 permit 1851 ^65000:4_0:199_0:55$ ip community-list expanded c3 permit 1852 ^65000:4_0:199_0:56$ ip community-list expanded c3 permit 1853 ^65000:4_0:199_0:57$ ip community-list expanded c3 permit 1854 ^65000:4_0:199_0:58$ ip community-list expanded c3 permit 1855 ^65000:4_0:199_0:59$ ip community-list expanded c3 permit 1856 ^65000:4_0:199_0:60$ ip community-list expanded c3 permit 1857 ^65000:4_0:199_0:61$ ip community-list expanded c3 permit 1858 ^65000:4_0:199_0:62$ ip community-list expanded c3 permit 1859 ^65000:4_0:199_0:63$ ip community-list expanded c3 permit 1860 ^65000:4_0:199_0:64$ ip community-list expanded c3 permit 1861 ^65000:4_0:199_0:65$ ip community-list expanded c3 permit 1862 ^65000:4_0:199_0:66$ ip community-list expanded c3 permit 1863 ^65000:3_0:199_0:196$ ip community-list expanded c3 permit 1864 ^65000:4_0:200_0:51$ ip community-list expanded c3 permit 1865 ^65000:4_0:200_0:52$ ip community-list expanded c3 permit 1866 ^65000:4_0:200_0:53$ ip community-list expanded c3 permit 1867 ^65000:4_0:200_0:54$ ip community-list expanded c3 permit 1868 ^65000:4_0:200_0:55$ ip community-list expanded c3 permit 1869 ^65000:4_0:200_0:56$ ip community-list expanded c3 permit 1870 ^65000:4_0:200_0:57$ ip community-list expanded c3 permit 1871 ^65000:4_0:200_0:58$ ip community-list expanded c3 permit 1872 ^65000:4_0:200_0:59$ ip community-list expanded c3 permit 1873 ^65000:4_0:200_0:60$ ip community-list expanded c3 permit 1874 ^65000:4_0:200_0:61$ ip community-list expanded c3 permit 1875 ^65000:4_0:200_0:62$ ip community-list expanded c3 permit 1876 ^65000:4_0:200_0:63$ ip community-list expanded c3 permit 1877 ^65000:4_0:200_0:64$ ip community-list expanded c3 permit 1878 ^65000:4_0:200_0:65$ ip community-list expanded c3 permit 1879 ^65000:4_0:200_0:66$ ip community-list expanded c3 permit 1880 ^65000:3_0:200_0:197$ ip community-list expanded c3 permit 1881 ^65000:4_0:201_0:51$ ip community-list expanded c3 permit 1882 ^65000:4_0:201_0:52$ ip community-list expanded c3 permit 1883 ^65000:4_0:201_0:53$ ip community-list expanded c3 permit 1884 ^65000:4_0:201_0:54$ ip community-list expanded c3 permit 1885 ^65000:4_0:201_0:55$ ip community-list expanded c3 permit 1886 ^65000:4_0:201_0:56$ ip community-list expanded c3 permit 1887 ^65000:4_0:201_0:57$ ip community-list expanded c3 permit 1888 ^65000:4_0:201_0:58$ ip community-list expanded c3 permit 1889 ^65000:4_0:201_0:59$ ip community-list expanded c3 permit 1890 ^65000:4_0:201_0:60$ ip community-list expanded c3 permit 1891 ^65000:4_0:201_0:61$ ip community-list expanded c3 permit 1892 ^65000:4_0:201_0:62$ ip community-list expanded c3 permit 1893 ^65000:4_0:201_0:63$ ip community-list expanded c3 permit 1894 ^65000:4_0:201_0:64$ ip community-list expanded c3 permit 1895 ^65000:4_0:201_0:65$ ip community-list expanded c3 permit 1896 ^65000:4_0:201_0:66$ ip community-list expanded c3 permit 1897 ^65000:4_0:201_0:67$ ip community-list expanded c3 permit 1898 ^65000:3_0:201_0:198$ ip community-list expanded c3 permit 1899 ^65000:4_0:202_0:51$ ip community-list expanded c3 permit 1900 ^65000:4_0:202_0:52$ ip community-list expanded c3 permit 1901 ^65000:4_0:202_0:53$ ip community-list expanded c3 permit 1902 ^65000:4_0:202_0:54$ ip community-list expanded c3 permit 1903 ^65000:4_0:202_0:55$ ip community-list expanded c3 permit 1904 ^65000:4_0:202_0:56$ ip community-list expanded c3 permit 1905 ^65000:4_0:202_0:57$ ip community-list expanded c3 permit 1906 ^65000:4_0:202_0:58$ ip community-list expanded c3 permit 1907 ^65000:4_0:202_0:59$ ip community-list expanded c3 permit 1908 ^65000:4_0:202_0:60$ ip community-list expanded c3 permit 1909 ^65000:4_0:202_0:61$ ip community-list expanded c3 permit 1910 ^65000:4_0:202_0:62$ ip community-list expanded c3 permit 1911 ^65000:4_0:202_0:63$ ip community-list expanded c3 permit 1912 ^65000:4_0:202_0:64$ ip community-list expanded c3 permit 1913 ^65000:4_0:202_0:65$ ip community-list expanded c3 permit 1914 ^65000:4_0:202_0:66$ ip community-list expanded c3 permit 1915 ^65000:4_0:202_0:67$ ip community-list expanded c3 permit 1916 ^65000:3_0:202_0:199$ ip community-list expanded c3 permit 1917 ^65000:4_0:203_0:51$ ip community-list expanded c3 permit 1918 ^65000:4_0:203_0:52$ ip community-list expanded c3 permit 1919 ^65000:4_0:203_0:53$ ip community-list expanded c3 permit 1920 ^65000:4_0:203_0:54$ ip community-list expanded c3 permit 1921 ^65000:4_0:203_0:55$ ip community-list expanded c3 permit 1922 ^65000:4_0:203_0:56$ ip community-list expanded c3 permit 1923 ^65000:4_0:203_0:57$ ip community-list expanded c3 permit 1924 ^65000:4_0:203_0:58$ ip community-list expanded c3 permit 1925 ^65000:4_0:203_0:59$ ip community-list expanded c3 permit 1926 ^65000:4_0:203_0:60$ ip community-list expanded c3 permit 1927 ^65000:4_0:203_0:61$ ip community-list expanded c3 permit 1928 ^65000:4_0:203_0:62$ ip community-list expanded c3 permit 1929 ^65000:4_0:203_0:63$ ip community-list expanded c3 permit 1930 ^65000:4_0:203_0:64$ ip community-list expanded c3 permit 1931 ^65000:4_0:203_0:65$ ip community-list expanded c3 permit 1932 ^65000:4_0:203_0:66$ ip community-list expanded c3 permit 1933 ^65000:4_0:203_0:67$ ip community-list expanded c3 permit 1934 ^65000:3_0:203_0:200$ ip community-list expanded c3 permit 1935 ^65000:4_0:204_0:52$ ip community-list expanded c3 permit 1936 ^65000:4_0:204_0:53$ ip community-list expanded c3 permit 1937 ^65000:4_0:204_0:54$ ip community-list expanded c3 permit 1938 ^65000:4_0:204_0:55$ ip community-list expanded c3 permit 1939 ^65000:4_0:204_0:56$ ip community-list expanded c3 permit 1940 ^65000:4_0:204_0:57$ ip community-list expanded c3 permit 1941 ^65000:4_0:204_0:58$ ip community-list expanded c3 permit 1942 ^65000:4_0:204_0:59$ ip community-list expanded c3 permit 1943 ^65000:4_0:204_0:60$ ip community-list expanded c3 permit 1944 ^65000:4_0:204_0:61$ ip community-list expanded c3 permit 1945 ^65000:4_0:204_0:62$ ip community-list expanded c3 permit 1946 ^65000:4_0:204_0:63$ ip community-list expanded c3 permit 1947 ^65000:4_0:204_0:64$ ip community-list expanded c3 permit 1948 ^65000:4_0:204_0:65$ ip community-list expanded c3 permit 1949 ^65000:4_0:204_0:66$ ip community-list expanded c3 permit 1950 ^65000:4_0:204_0:67$ ip community-list expanded c3 permit 1951 ^65000:4_0:204_0:68$ ip community-list expanded c3 permit 1952 ^65000:3_0:204_0:201$ ip community-list expanded c3 permit 1953 ^65000:4_0:205_0:52$ ip community-list expanded c3 permit 1954 ^65000:4_0:205_0:53$ ip community-list expanded c3 permit 1955 ^65000:4_0:205_0:54$ ip community-list expanded c3 permit 1956 ^65000:4_0:205_0:55$ ip community-list expanded c3 permit 1957 ^65000:4_0:205_0:56$ ip community-list expanded c3 permit 1958 ^65000:4_0:205_0:57$ ip community-list expanded c3 permit 1959 ^65000:4_0:205_0:58$ ip community-list expanded c3 permit 1960 ^65000:4_0:205_0:59$ ip community-list expanded c3 permit 1961 ^65000:4_0:205_0:60$ ip community-list expanded c3 permit 1962 ^65000:4_0:205_0:61$ ip community-list expanded c3 permit 1963 ^65000:4_0:205_0:62$ ip community-list expanded c3 permit 1964 ^65000:4_0:205_0:63$ ip community-list expanded c3 permit 1965 ^65000:4_0:205_0:64$ ip community-list expanded c3 permit 1966 ^65000:4_0:205_0:65$ ip community-list expanded c3 permit 1967 ^65000:4_0:205_0:66$ ip community-list expanded c3 permit 1968 ^65000:4_0:205_0:67$ ip community-list expanded c3 permit 1969 ^65000:4_0:205_0:68$ ip community-list expanded c3 permit 1970 ^65000:3_0:205_0:202$ ip community-list expanded c3 permit 1971 ^65000:4_0:206_0:52$ ip community-list expanded c3 permit 1972 ^65000:4_0:206_0:53$ ip community-list expanded c3 permit 1973 ^65000:4_0:206_0:54$ ip community-list expanded c3 permit 1974 ^65000:4_0:206_0:55$ ip community-list expanded c3 permit 1975 ^65000:4_0:206_0:56$ ip community-list expanded c3 permit 1976 ^65000:4_0:206_0:57$ ip community-list expanded c3 permit 1977 ^65000:4_0:206_0:58$ ip community-list expanded c3 permit 1978 ^65000:4_0:206_0:59$ ip community-list expanded c3 permit 1979 ^65000:4_0:206_0:60$ ip community-list expanded c3 permit 1980 ^65000:4_0:206_0:61$ ip community-list expanded c3 permit 1981 ^65000:4_0:206_0:62$ ip community-list expanded c3 permit 1982 ^65000:4_0:206_0:63$ ip community-list expanded c3 permit 1983 ^65000:4_0:206_0:64$ ip community-list expanded c3 permit 1984 ^65000:4_0:206_0:65$ ip community-list expanded c3 permit 1985 ^65000:4_0:206_0:66$ ip community-list expanded c3 permit 1986 ^65000:4_0:206_0:67$ ip community-list expanded c3 permit 1987 ^65000:4_0:206_0:68$ ip community-list expanded c3 permit 1988 ^65000:3_0:206_0:203$ ip community-list expanded c3 permit 1989 ^65000:4_0:207_0:52$ ip community-list expanded c3 permit 1990 ^65000:4_0:207_0:53$ ip community-list expanded c3 permit 1991 ^65000:4_0:207_0:54$ ip community-list expanded c3 permit 1992 ^65000:4_0:207_0:55$ ip community-list expanded c3 permit 1993 ^65000:4_0:207_0:56$ ip community-list expanded c3 permit 1994 ^65000:4_0:207_0:57$ ip community-list expanded c3 permit 1995 ^65000:4_0:207_0:58$ ip community-list expanded c3 permit 1996 ^65000:4_0:207_0:59$ ip community-list expanded c3 permit 1997 ^65000:4_0:207_0:60$ ip community-list expanded c3 permit 1998 ^65000:4_0:207_0:61$ ip community-list expanded c3 permit 1999 ^65000:4_0:207_0:62$ ip community-list expanded c3 permit 2000 ^65000:4_0:207_0:63$ ip community-list expanded c3 permit 2001 ^65000:4_0:207_0:64$ ip community-list expanded c3 permit 2002 ^65000:4_0:207_0:65$ ip community-list expanded c3 permit 2003 ^65000:4_0:207_0:66$ ip community-list expanded c3 permit 2004 ^65000:4_0:207_0:67$ ip community-list expanded c3 permit 2005 ^65000:4_0:207_0:68$ ip community-list expanded c3 permit 2006 ^65000:4_0:207_0:69$ ip community-list expanded c3 permit 2007 ^65000:3_0:207_0:204$ ip community-list expanded c3 permit 2008 ^65000:4_0:208_0:53$ ip community-list expanded c3 permit 2009 ^65000:4_0:208_0:54$ ip community-list expanded c3 permit 2010 ^65000:4_0:208_0:55$ ip community-list expanded c3 permit 2011 ^65000:4_0:208_0:56$ ip community-list expanded c3 permit 2012 ^65000:4_0:208_0:57$ ip community-list expanded c3 permit 2013 ^65000:4_0:208_0:58$ ip community-list expanded c3 permit 2014 ^65000:4_0:208_0:59$ ip community-list expanded c3 permit 2015 ^65000:4_0:208_0:60$ ip community-list expanded c3 permit 2016 ^65000:4_0:208_0:61$ ip community-list expanded c3 permit 2017 ^65000:4_0:208_0:62$ ip community-list expanded c3 permit 2018 ^65000:4_0:208_0:63$ ip community-list expanded c3 permit 2019 ^65000:4_0:208_0:64$ ip community-list expanded c3 permit 2020 ^65000:4_0:208_0:65$ ip community-list expanded c3 permit 2021 ^65000:4_0:208_0:66$ ip community-list expanded c3 permit 2022 ^65000:4_0:208_0:67$ ip community-list expanded c3 permit 2023 ^65000:4_0:208_0:68$ ip community-list expanded c3 permit 2024 ^65000:4_0:208_0:69$ ip community-list expanded c3 permit 2025 ^65000:3_0:208_0:205$ ip community-list expanded c3 permit 2026 ^65000:4_0:209_0:53$ ip community-list expanded c3 permit 2027 ^65000:4_0:209_0:54$ ip community-list expanded c3 permit 2028 ^65000:4_0:209_0:55$ ip community-list expanded c3 permit 2029 ^65000:4_0:209_0:56$ ip community-list expanded c3 permit 2030 ^65000:4_0:209_0:57$ ip community-list expanded c3 permit 2031 ^65000:4_0:209_0:58$ ip community-list expanded c3 permit 2032 ^65000:4_0:209_0:59$ ip community-list expanded c3 permit 2033 ^65000:4_0:209_0:60$ ip community-list expanded c3 permit 2034 ^65000:4_0:209_0:61$ ip community-list expanded c3 permit 2035 ^65000:4_0:209_0:62$ ip community-list expanded c3 permit 2036 ^65000:4_0:209_0:63$ ip community-list expanded c3 permit 2037 ^65000:4_0:209_0:64$ ip community-list expanded c3 permit 2038 ^65000:4_0:209_0:65$ ip community-list expanded c3 permit 2039 ^65000:4_0:209_0:66$ ip community-list expanded c3 permit 2040 ^65000:4_0:209_0:67$ ip community-list expanded c3 permit 2041 ^65000:4_0:209_0:68$ ip community-list expanded c3 permit 2042 ^65000:4_0:209_0:69$ ip community-list expanded c3 permit 2043 ^65000:3_0:209_0:206$ ip community-list expanded c3 permit 2044 ^65000:4_0:210_0:53$ ip community-list expanded c3 permit 2045 ^65000:4_0:210_0:54$ ip community-list expanded c3 permit 2046 ^65000:4_0:210_0:55$ ip community-list expanded c3 permit 2047 ^65000:4_0:210_0:56$ ip community-list expanded c3 permit 2048 ^65000:4_0:210_0:57$ ip community-list expanded c3 permit 2049 ^65000:4_0:210_0:58$ ip community-list expanded c3 permit 2050 ^65000:4_0:210_0:59$ ip community-list expanded c3 permit 2051 ^65000:4_0:210_0:60$ ip community-list expanded c3 permit 2052 ^65000:4_0:210_0:61$ ip community-list expanded c3 permit 2053 ^65000:4_0:210_0:62$ ip community-list expanded c3 permit 2054 ^65000:4_0:210_0:63$ ip community-list expanded c3 permit 2055 ^65000:4_0:210_0:64$ ip community-list expanded c3 permit 2056 ^65000:4_0:210_0:65$ ip community-list expanded c3 permit 2057 ^65000:4_0:210_0:66$ ip community-list expanded c3 permit 2058 ^65000:4_0:210_0:67$ ip community-list expanded c3 permit 2059 ^65000:4_0:210_0:68$ ip community-list expanded c3 permit 2060 ^65000:4_0:210_0:69$ ip community-list expanded c3 permit 2061 ^65000:4_0:210_0:70$ ip community-list expanded c3 permit 2062 ^65000:3_0:210_0:207$ ip community-list expanded c3 permit 2063 ^65000:4_0:211_0:53$ ip community-list expanded c3 permit 2064 ^65000:4_0:211_0:54$ ip community-list expanded c3 permit 2065 ^65000:4_0:211_0:55$ ip community-list expanded c3 permit 2066 ^65000:4_0:211_0:56$ ip community-list expanded c3 permit 2067 ^65000:4_0:211_0:57$ ip community-list expanded c3 permit 2068 ^65000:4_0:211_0:58$ ip community-list expanded c3 permit 2069 ^65000:4_0:211_0:59$ ip community-list expanded c3 permit 2070 ^65000:4_0:211_0:60$ ip community-list expanded c3 permit 2071 ^65000:4_0:211_0:61$ ip community-list expanded c3 permit 2072 ^65000:4_0:211_0:62$ ip community-list expanded c3 permit 2073 ^65000:4_0:211_0:63$ ip community-list expanded c3 permit 2074 ^65000:4_0:211_0:64$ ip community-list expanded c3 permit 2075 ^65000:4_0:211_0:65$ ip community-list expanded c3 permit 2076 ^65000:4_0:211_0:66$ ip community-list expanded c3 permit 2077 ^65000:4_0:211_0:67$ ip community-list expanded c3 permit 2078 ^65000:4_0:211_0:68$ ip community-list expanded c3 permit 2079 ^65000:4_0:211_0:69$ ip community-list expanded c3 permit 2080 ^65000:4_0:211_0:70$ ip community-list expanded c3 permit 2081 ^65000:3_0:211_0:208$ ip community-list expanded c3 permit 2082 ^65000:4_0:212_0:54$ ip community-list expanded c3 permit 2083 ^65000:4_0:212_0:55$ ip community-list expanded c3 permit 2084 ^65000:4_0:212_0:56$ ip community-list expanded c3 permit 2085 ^65000:4_0:212_0:57$ ip community-list expanded c3 permit 2086 ^65000:4_0:212_0:58$ ip community-list expanded c3 permit 2087 ^65000:4_0:212_0:59$ ip community-list expanded c3 permit 2088 ^65000:4_0:212_0:60$ ip community-list expanded c3 permit 2089 ^65000:4_0:212_0:61$ ip community-list expanded c3 permit 2090 ^65000:4_0:212_0:62$ ip community-list expanded c3 permit 2091 ^65000:4_0:212_0:63$ ip community-list expanded c3 permit 2092 ^65000:4_0:212_0:64$ ip community-list expanded c3 permit 2093 ^65000:4_0:212_0:65$ ip community-list expanded c3 permit 2094 ^65000:4_0:212_0:66$ ip community-list expanded c3 permit 2095 ^65000:4_0:212_0:67$ ip community-list expanded c3 permit 2096 ^65000:4_0:212_0:68$ ip community-list expanded c3 permit 2097 ^65000:4_0:212_0:69$ ip community-list expanded c3 permit 2098 ^65000:4_0:212_0:70$ ip community-list expanded c3 permit 2099 ^65000:3_0:212_0:209$ ip community-list expanded c3 permit 2100 ^65000:4_0:213_0:54$ ip community-list expanded c3 permit 2101 ^65000:4_0:213_0:55$ ip community-list expanded c3 permit 2102 ^65000:4_0:213_0:56$ ip community-list expanded c3 permit 2103 ^65000:4_0:213_0:57$ ip community-list expanded c3 permit 2104 ^65000:4_0:213_0:58$ ip community-list expanded c3 permit 2105 ^65000:4_0:213_0:59$ ip community-list expanded c3 permit 2106 ^65000:4_0:213_0:60$ ip community-list expanded c3 permit 2107 ^65000:4_0:213_0:61$ ip community-list expanded c3 permit 2108 ^65000:4_0:213_0:62$ ip community-list expanded c3 permit 2109 ^65000:4_0:213_0:63$ ip community-list expanded c3 permit 2110 ^65000:4_0:213_0:64$ ip community-list expanded c3 permit 2111 ^65000:4_0:213_0:65$ ip community-list expanded c3 permit 2112 ^65000:4_0:213_0:66$ ip community-list expanded c3 permit 2113 ^65000:4_0:213_0:67$ ip community-list expanded c3 permit 2114 ^65000:4_0:213_0:68$ ip community-list expanded c3 permit 2115 ^65000:4_0:213_0:69$ ip community-list expanded c3 permit 2116 ^65000:4_0:213_0:70$ ip community-list expanded c3 permit 2117 ^65000:4_0:213_0:71$ ip community-list expanded c3 permit 2118 ^65000:3_0:213_0:210$ ip community-list expanded c3 permit 2119 ^65000:4_0:214_0:54$ ip community-list expanded c3 permit 2120 ^65000:4_0:214_0:55$ ip community-list expanded c3 permit 2121 ^65000:4_0:214_0:56$ ip community-list expanded c3 permit 2122 ^65000:4_0:214_0:57$ ip community-list expanded c3 permit 2123 ^65000:4_0:214_0:58$ ip community-list expanded c3 permit 2124 ^65000:4_0:214_0:59$ ip community-list expanded c3 permit 2125 ^65000:4_0:214_0:60$ ip community-list expanded c3 permit 2126 ^65000:4_0:214_0:61$ ip community-list expanded c3 permit 2127 ^65000:4_0:214_0:62$ ip community-list expanded c3 permit 2128 ^65000:4_0:214_0:63$ ip community-list expanded c3 permit 2129 ^65000:4_0:214_0:64$ ip community-list expanded c3 permit 2130 ^65000:4_0:214_0:65$ ip community-list expanded c3 permit 2131 ^65000:4_0:214_0:66$ ip community-list expanded c3 permit 2132 ^65000:4_0:214_0:67$ ip community-list expanded c3 permit 2133 ^65000:4_0:214_0:68$ ip community-list expanded c3 permit 2134 ^65000:4_0:214_0:69$ ip community-list expanded c3 permit 2135 ^65000:4_0:214_0:70$ ip community-list expanded c3 permit 2136 ^65000:4_0:214_0:71$ ip community-list expanded c3 permit 2137 ^65000:3_0:214_0:211$ ip community-list expanded c3 permit 2138 ^65000:4_0:215_0:54$ ip community-list expanded c3 permit 2139 ^65000:4_0:215_0:55$ ip community-list expanded c3 permit 2140 ^65000:4_0:215_0:56$ ip community-list expanded c3 permit 2141 ^65000:4_0:215_0:57$ ip community-list expanded c3 permit 2142 ^65000:4_0:215_0:58$ ip community-list expanded c3 permit 2143 ^65000:4_0:215_0:59$ ip community-list expanded c3 permit 2144 ^65000:4_0:215_0:60$ ip community-list expanded c3 permit 2145 ^65000:4_0:215_0:61$ ip community-list expanded c3 permit 2146 ^65000:4_0:215_0:62$ ip community-list expanded c3 permit 2147 ^65000:4_0:215_0:63$ ip community-list expanded c3 permit 2148 ^65000:4_0:215_0:64$ ip community-list expanded c3 permit 2149 ^65000:4_0:215_0:65$ ip community-list expanded c3 permit 2150 ^65000:4_0:215_0:66$ ip community-list expanded c3 permit 2151 ^65000:4_0:215_0:67$ ip community-list expanded c3 permit 2152 ^65000:4_0:215_0:68$ ip community-list expanded c3 permit 2153 ^65000:4_0:215_0:69$ ip community-list expanded c3 permit 2154 ^65000:4_0:215_0:70$ ip community-list expanded c3 permit 2155 ^65000:4_0:215_0:71$ ip community-list expanded c3 permit 2156 ^65000:3_0:215_0:212$ ip community-list expanded c3 permit 2157 ^65000:4_0:216_0:55$ ip community-list expanded c3 permit 2158 ^65000:4_0:216_0:56$ ip community-list expanded c3 permit 2159 ^65000:4_0:216_0:57$ ip community-list expanded c3 permit 2160 ^65000:4_0:216_0:58$ ip community-list expanded c3 permit 2161 ^65000:4_0:216_0:59$ ip community-list expanded c3 permit 2162 ^65000:4_0:216_0:60$ ip community-list expanded c3 permit 2163 ^65000:4_0:216_0:61$ ip community-list expanded c3 permit 2164 ^65000:4_0:216_0:62$ ip community-list expanded c3 permit 2165 ^65000:4_0:216_0:63$ ip community-list expanded c3 permit 2166 ^65000:4_0:216_0:64$ ip community-list expanded c3 permit 2167 ^65000:4_0:216_0:65$ ip community-list expanded c3 permit 2168 ^65000:4_0:216_0:66$ ip community-list expanded c3 permit 2169 ^65000:4_0:216_0:67$ ip community-list expanded c3 permit 2170 ^65000:4_0:216_0:68$ ip community-list expanded c3 permit 2171 ^65000:4_0:216_0:69$ ip community-list expanded c3 permit 2172 ^65000:4_0:216_0:70$ ip community-list expanded c3 permit 2173 ^65000:4_0:216_0:71$ ip community-list expanded c3 permit 2174 ^65000:4_0:216_0:72$ ip community-list expanded c3 permit 2175 ^65000:3_0:216_0:213$ ip community-list expanded c3 permit 2176 ^65000:4_0:217_0:55$ ip community-list expanded c3 permit 2177 ^65000:4_0:217_0:56$ ip community-list expanded c3 permit 2178 ^65000:4_0:217_0:57$ ip community-list expanded c3 permit 2179 ^65000:4_0:217_0:58$ ip community-list expanded c3 permit 2180 ^65000:4_0:217_0:59$ ip community-list expanded c3 permit 2181 ^65000:4_0:217_0:60$ ip community-list expanded c3 permit 2182 ^65000:4_0:217_0:61$ ip community-list expanded c3 permit 2183 ^65000:4_0:217_0:62$ ip community-list expanded c3 permit 2184 ^65000:4_0:217_0:63$ ip community-list expanded c3 permit 2185 ^65000:4_0:217_0:64$ ip community-list expanded c3 permit 2186 ^65000:4_0:217_0:65$ ip community-list expanded c3 permit 2187 ^65000:4_0:217_0:66$ ip community-list expanded c3 permit 2188 ^65000:4_0:217_0:67$ ip community-list expanded c3 permit 2189 ^65000:4_0:217_0:68$ ip community-list expanded c3 permit 2190 ^65000:4_0:217_0:69$ ip community-list expanded c3 permit 2191 ^65000:4_0:217_0:70$ ip community-list expanded c3 permit 2192 ^65000:4_0:217_0:71$ ip community-list expanded c3 permit 2193 ^65000:4_0:217_0:72$ ip community-list expanded c3 permit 2194 ^65000:3_0:217_0:214$ ip community-list expanded c3 permit 2195 ^65000:4_0:218_0:55$ ip community-list expanded c3 permit 2196 ^65000:4_0:218_0:56$ ip community-list expanded c3 permit 2197 ^65000:4_0:218_0:57$ ip community-list expanded c3 permit 2198 ^65000:4_0:218_0:58$ ip community-list expanded c3 permit 2199 ^65000:4_0:218_0:59$ ip community-list expanded c3 permit 2200 ^65000:4_0:218_0:60$ ip community-list expanded c3 permit 2201 ^65000:4_0:218_0:61$ ip community-list expanded c3 permit 2202 ^65000:4_0:218_0:62$ ip community-list expanded c3 permit 2203 ^65000:4_0:218_0:63$ ip community-list expanded c3 permit 2204 ^65000:4_0:218_0:64$ ip community-list expanded c3 permit 2205 ^65000:4_0:218_0:65$ ip community-list expanded c3 permit 2206 ^65000:4_0:218_0:66$ ip community-list expanded c3 permit 2207 ^65000:4_0:218_0:67$ ip community-list expanded c3 permit 2208 ^65000:4_0:218_0:68$ ip community-list expanded c3 permit 2209 ^65000:4_0:218_0:69$ ip community-list expanded c3 permit 2210 ^65000:4_0:218_0:70$ ip community-list expanded c3 permit 2211 ^65000:4_0:218_0:71$ ip community-list expanded c3 permit 2212 ^65000:4_0:218_0:72$ ip community-list expanded c3 permit 2213 ^65000:3_0:218_0:215$ ip community-list expanded c3 permit 2214 ^65000:4_0:219_0:55$ ip community-list expanded c3 permit 2215 ^65000:4_0:219_0:56$ ip community-list expanded c3 permit 2216 ^65000:4_0:219_0:57$ ip community-list expanded c3 permit 2217 ^65000:4_0:219_0:58$ ip community-list expanded c3 permit 2218 ^65000:4_0:219_0:59$ ip community-list expanded c3 permit 2219 ^65000:4_0:219_0:60$ ip community-list expanded c3 permit 2220 ^65000:4_0:219_0:61$ ip community-list expanded c3 permit 2221 ^65000:4_0:219_0:62$ ip community-list expanded c3 permit 2222 ^65000:4_0:219_0:63$ ip community-list expanded c3 permit 2223 ^65000:4_0:219_0:64$ ip community-list expanded c3 permit 2224 ^65000:4_0:219_0:65$ ip community-list expanded c3 permit 2225 ^65000:4_0:219_0:66$ ip community-list expanded c3 permit 2226 ^65000:4_0:219_0:67$ ip community-list expanded c3 permit 2227 ^65000:4_0:219_0:68$ ip community-list expanded c3 permit 2228 ^65000:4_0:219_0:69$ ip community-list expanded c3 permit 2229 ^65000:4_0:219_0:70$ ip community-list expanded c3 permit 2230 ^65000:4_0:219_0:71$ ip community-list expanded c3 permit 2231 ^65000:4_0:219_0:72$ ip community-list expanded c3 permit 2232 ^65000:4_0:219_0:73$ ip community-list expanded c3 permit 2233 ^65000:3_0:219_0:216$ ip community-list expanded c3 permit 2234 ^65000:4_0:220_0:56$ ip community-list expanded c3 permit 2235 ^65000:4_0:220_0:57$ ip community-list expanded c3 permit 2236 ^65000:4_0:220_0:58$ ip community-list expanded c3 permit 2237 ^65000:4_0:220_0:59$ ip community-list expanded c3 permit 2238 ^65000:4_0:220_0:60$ ip community-list expanded c3 permit 2239 ^65000:4_0:220_0:61$ ip community-list expanded c3 permit 2240 ^65000:4_0:220_0:62$ ip community-list expanded c3 permit 2241 ^65000:4_0:220_0:63$ ip community-list expanded c3 permit 2242 ^65000:4_0:220_0:64$ ip community-list expanded c3 permit 2243 ^65000:4_0:220_0:65$ ip community-list expanded c3 permit 2244 ^65000:4_0:220_0:66$ ip community-list expanded c3 permit 2245 ^65000:4_0:220_0:67$ ip community-list expanded c3 permit 2246 ^65000:4_0:220_0:68$ ip community-list expanded c3 permit 2247 ^65000:4_0:220_0:69$ ip community-list expanded c3 permit 2248 ^65000:4_0:220_0:70$ ip community-list expanded c3 permit 2249 ^65000:4_0:220_0:71$ ip community-list expanded c3 permit 2250 ^65000:4_0:220_0:72$ ip community-list expanded c3 permit 2251 ^65000:4_0:220_0:73$ ip community-list expanded c3 permit 2252 ^65000:3_0:220_0:217$ ip community-list expanded c3 permit 2253 ^65000:4_0:221_0:56$ ip community-list expanded c3 permit 2254 ^65000:4_0:221_0:57$ ip community-list expanded c3 permit 2255 ^65000:4_0:221_0:58$ ip community-list expanded c3 permit 2256 ^65000:4_0:221_0:59$ ip community-list expanded c3 permit 2257 ^65000:4_0:221_0:60$ ip community-list expanded c3 permit 2258 ^65000:4_0:221_0:61$ ip community-list expanded c3 permit 2259 ^65000:4_0:221_0:62$ ip community-list expanded c3 permit 2260 ^65000:4_0:221_0:63$ ip community-list expanded c3 permit 2261 ^65000:4_0:221_0:64$ ip community-list expanded c3 permit 2262 ^65000:4_0:221_0:65$ ip community-list expanded c3 permit 2263 ^65000:4_0:221_0:66$ ip community-list expanded c3 permit 2264 ^65000:4_0:221_0:67$ ip community-list expanded c3 permit 2265 ^65000:4_0:221_0:68$ ip community-list expanded c3 permit 2266 ^65000:4_0:221_0:69$ ip community-list expanded c3 permit 2267 ^65000:4_0:221_0:70$ ip community-list expanded c3 permit 2268 ^65000:4_0:221_0:71$ ip community-list expanded c3 permit 2269 ^65000:4_0:221_0:72$ ip community-list expanded c3 permit 2270 ^65000:4_0:221_0:73$ ip community-list expanded c3 permit 2271 ^65000:3_0:221_0:218$ ip community-list expanded c3 permit 2272 ^65000:4_0:222_0:56$ ip community-list expanded c3 permit 2273 ^65000:4_0:222_0:57$ ip community-list expanded c3 permit 2274 ^65000:4_0:222_0:58$ ip community-list expanded c3 permit 2275 ^65000:4_0:222_0:59$ ip community-list expanded c3 permit 2276 ^65000:4_0:222_0:60$ ip community-list expanded c3 permit 2277 ^65000:4_0:222_0:61$ ip community-list expanded c3 permit 2278 ^65000:4_0:222_0:62$ ip community-list expanded c3 permit 2279 ^65000:4_0:222_0:63$ ip community-list expanded c3 permit 2280 ^65000:4_0:222_0:64$ ip community-list expanded c3 permit 2281 ^65000:4_0:222_0:65$ ip community-list expanded c3 permit 2282 ^65000:4_0:222_0:66$ ip community-list expanded c3 permit 2283 ^65000:4_0:222_0:67$ ip community-list expanded c3 permit 2284 ^65000:4_0:222_0:68$ ip community-list expanded c3 permit 2285 ^65000:4_0:222_0:69$ ip community-list expanded c3 permit 2286 ^65000:4_0:222_0:70$ ip community-list expanded c3 permit 2287 ^65000:4_0:222_0:71$ ip community-list expanded c3 permit 2288 ^65000:4_0:222_0:72$ ip community-list expanded c3 permit 2289 ^65000:4_0:222_0:73$ ip community-list expanded c3 permit 2290 ^65000:4_0:222_0:74$ ip community-list expanded c3 permit 2291 ^65000:3_0:222_0:219$ ip community-list expanded c3 permit 2292 ^65000:4_0:223_0:56$ ip community-list expanded c3 permit 2293 ^65000:4_0:223_0:57$ ip community-list expanded c3 permit 2294 ^65000:4_0:223_0:58$ ip community-list expanded c3 permit 2295 ^65000:4_0:223_0:59$ ip community-list expanded c3 permit 2296 ^65000:4_0:223_0:60$ ip community-list expanded c3 permit 2297 ^65000:4_0:223_0:61$ ip community-list expanded c3 permit 2298 ^65000:4_0:223_0:62$ ip community-list expanded c3 permit 2299 ^65000:4_0:223_0:63$ ip community-list expanded c3 permit 2300 ^65000:4_0:223_0:64$ ip community-list expanded c3 permit 2301 ^65000:4_0:223_0:65$ ip community-list expanded c3 permit 2302 ^65000:4_0:223_0:66$ ip community-list expanded c3 permit 2303 ^65000:4_0:223_0:67$ ip community-list expanded c3 permit 2304 ^65000:4_0:223_0:68$ ip community-list expanded c3 permit 2305 ^65000:4_0:223_0:69$ ip community-list expanded c3 permit 2306 ^65000:4_0:223_0:70$ ip community-list expanded c3 permit 2307 ^65000:4_0:223_0:71$ ip community-list expanded c3 permit 2308 ^65000:4_0:223_0:72$ ip community-list expanded c3 permit 2309 ^65000:4_0:223_0:73$ ip community-list expanded c3 permit 2310 ^65000:4_0:223_0:74$ ip community-list expanded c3 permit 2311 ^65000:3_0:223_0:220$ ip community-list expanded c3 permit 2312 ^65000:4_0:224_0:57$ ip community-list expanded c3 permit 2313 ^65000:4_0:224_0:58$ ip community-list expanded c3 permit 2314 ^65000:4_0:224_0:59$ ip community-list expanded c3 permit 2315 ^65000:4_0:224_0:60$ ip community-list expanded c3 permit 2316 ^65000:4_0:224_0:61$ ip community-list expanded c3 permit 2317 ^65000:4_0:224_0:62$ ip community-list expanded c3 permit 2318 ^65000:4_0:224_0:63$ ip community-list expanded c3 permit 2319 ^65000:4_0:224_0:64$ ip community-list expanded c3 permit 2320 ^65000:4_0:224_0:65$ ip community-list expanded c3 permit 2321 ^65000:4_0:224_0:66$ ip community-list expanded c3 permit 2322 ^65000:4_0:224_0:67$ ip community-list expanded c3 permit 2323 ^65000:4_0:224_0:68$ ip community-list expanded c3 permit 2324 ^65000:4_0:224_0:69$ ip community-list expanded c3 permit 2325 ^65000:4_0:224_0:70$ ip community-list expanded c3 permit 2326 ^65000:4_0:224_0:71$ ip community-list expanded c3 permit 2327 ^65000:4_0:224_0:72$ ip community-list expanded c3 permit 2328 ^65000:4_0:224_0:73$ ip community-list expanded c3 permit 2329 ^65000:4_0:224_0:74$ ip community-list expanded c3 permit 2330 ^65000:3_0:224_0:221$ ip community-list expanded c3 permit 2331 ^65000:4_0:225_0:57$ ip community-list expanded c3 permit 2332 ^65000:4_0:225_0:58$ ip community-list expanded c3 permit 2333 ^65000:4_0:225_0:59$ ip community-list expanded c3 permit 2334 ^65000:4_0:225_0:60$ ip community-list expanded c3 permit 2335 ^65000:4_0:225_0:61$ ip community-list expanded c3 permit 2336 ^65000:4_0:225_0:62$ ip community-list expanded c3 permit 2337 ^65000:4_0:225_0:63$ ip community-list expanded c3 permit 2338 ^65000:4_0:225_0:64$ ip community-list expanded c3 permit 2339 ^65000:4_0:225_0:65$ ip community-list expanded c3 permit 2340 ^65000:4_0:225_0:66$ ip community-list expanded c3 permit 2341 ^65000:4_0:225_0:67$ ip community-list expanded c3 permit 2342 ^65000:4_0:225_0:68$ ip community-list expanded c3 permit 2343 ^65000:4_0:225_0:69$ ip community-list expanded c3 permit 2344 ^65000:4_0:225_0:70$ ip community-list expanded c3 permit 2345 ^65000:4_0:225_0:71$ ip community-list expanded c3 permit 2346 ^65000:4_0:225_0:72$ ip community-list expanded c3 permit 2347 ^65000:4_0:225_0:73$ ip community-list expanded c3 permit 2348 ^65000:4_0:225_0:74$ ip community-list expanded c3 permit 2349 ^65000:4_0:225_0:75$ ip community-list expanded c3 permit 2350 ^65000:3_0:225_0:222$ ip community-list expanded c3 permit 2351 ^65000:4_0:226_0:57$ ip community-list expanded c3 permit 2352 ^65000:4_0:226_0:58$ ip community-list expanded c3 permit 2353 ^65000:4_0:226_0:59$ ip community-list expanded c3 permit 2354 ^65000:4_0:226_0:60$ ip community-list expanded c3 permit 2355 ^65000:4_0:226_0:61$ ip community-list expanded c3 permit 2356 ^65000:4_0:226_0:62$ ip community-list expanded c3 permit 2357 ^65000:4_0:226_0:63$ ip community-list expanded c3 permit 2358 ^65000:4_0:226_0:64$ ip community-list expanded c3 permit 2359 ^65000:4_0:226_0:65$ ip community-list expanded c3 permit 2360 ^65000:4_0:226_0:66$ ip community-list expanded c3 permit 2361 ^65000:4_0:226_0:67$ ip community-list expanded c3 permit 2362 ^65000:4_0:226_0:68$ ip community-list expanded c3 permit 2363 ^65000:4_0:226_0:69$ ip community-list expanded c3 permit 2364 ^65000:4_0:226_0:70$ ip community-list expanded c3 permit 2365 ^65000:4_0:226_0:71$ ip community-list expanded c3 permit 2366 ^65000:4_0:226_0:72$ ip community-list expanded c3 permit 2367 ^65000:4_0:226_0:73$ ip community-list expanded c3 permit 2368 ^65000:4_0:226_0:74$ ip community-list expanded c3 permit 2369 ^65000:4_0:226_0:75$ ip community-list expanded c3 permit 2370 ^65000:3_0:226_0:223$ ip community-list expanded c3 permit 2371 ^65000:4_0:227_0:57$ ip community-list expanded c3 permit 2372 ^65000:4_0:227_0:58$ ip community-list expanded c3 permit 2373 ^65000:4_0:227_0:59$ ip community-list expanded c3 permit 2374 ^65000:4_0:227_0:60$ ip community-list expanded c3 permit 2375 ^65000:4_0:227_0:61$ ip community-list expanded c3 permit 2376 ^65000:4_0:227_0:62$ ip community-list expanded c3 permit 2377 ^65000:4_0:227_0:63$ ip community-list expanded c3 permit 2378 ^65000:4_0:227_0:64$ ip community-list expanded c3 permit 2379 ^65000:4_0:227_0:65$ ip community-list expanded c3 permit 2380 ^65000:4_0:227_0:66$ ip community-list expanded c3 permit 2381 ^65000:4_0:227_0:67$ ip community-list expanded c3 permit 2382 ^65000:4_0:227_0:68$ ip community-list expanded c3 permit 2383 ^65000:4_0:227_0:69$ ip community-list expanded c3 permit 2384 ^65000:4_0:227_0:70$ ip community-list expanded c3 permit 2385 ^65000:4_0:227_0:71$ ip community-list expanded c3 permit 2386 ^65000:4_0:227_0:72$ ip community-list expanded c3 permit 2387 ^65000:4_0:227_0:73$ ip community-list expanded c3 permit 2388 ^65000:4_0:227_0:74$ ip community-list expanded c3 permit 2389 ^65000:4_0:227_0:75$ ip community-list expanded c3 permit 2390 ^65000:3_0:227_0:224$ ip community-list expanded c3 permit 2391 ^65000:4_0:228_0:58$ ip community-list expanded c3 permit 2392 ^65000:4_0:228_0:59$ ip community-list expanded c3 permit 2393 ^65000:4_0:228_0:60$ ip community-list expanded c3 permit 2394 ^65000:4_0:228_0:61$ ip community-list expanded c3 permit 2395 ^65000:4_0:228_0:62$ ip community-list expanded c3 permit 2396 ^65000:4_0:228_0:63$ ip community-list expanded c3 permit 2397 ^65000:4_0:228_0:64$ ip community-list expanded c3 permit 2398 ^65000:4_0:228_0:65$ ip community-list expanded c3 permit 2399 ^65000:4_0:228_0:66$ ip community-list expanded c3 permit 2400 ^65000:4_0:228_0:67$ ip community-list expanded c3 permit 2401 ^65000:4_0:228_0:68$ ip community-list expanded c3 permit 2402 ^65000:4_0:228_0:69$ ip community-list expanded c3 permit 2403 ^65000:4_0:228_0:70$ ip community-list expanded c3 permit 2404 ^65000:4_0:228_0:71$ ip community-list expanded c3 permit 2405 ^65000:4_0:228_0:72$ ip community-list expanded c3 permit 2406 ^65000:4_0:228_0:73$ ip community-list expanded c3 permit 2407 ^65000:4_0:228_0:74$ ip community-list expanded c3 permit 2408 ^65000:4_0:228_0:75$ ip community-list expanded c3 permit 2409 ^65000:4_0:228_0:76$ ip community-list expanded c3 permit 2410 ^65000:3_0:228_0:225$ ip community-list expanded c3 permit 2411 ^65000:4_0:229_0:58$ ip community-list expanded c3 permit 2412 ^65000:4_0:229_0:59$ ip community-list expanded c3 permit 2413 ^65000:4_0:229_0:60$ ip community-list expanded c3 permit 2414 ^65000:4_0:229_0:61$ ip community-list expanded c3 permit 2415 ^65000:4_0:229_0:62$ ip community-list expanded c3 permit 2416 ^65000:4_0:229_0:63$ ip community-list expanded c3 permit 2417 ^65000:4_0:229_0:64$ ip community-list expanded c3 permit 2418 ^65000:4_0:229_0:65$ ip community-list expanded c3 permit 2419 ^65000:4_0:229_0:66$ ip community-list expanded c3 permit 2420 ^65000:4_0:229_0:67$ ip community-list expanded c3 permit 2421 ^65000:4_0:229_0:68$ ip community-list expanded c3 permit 2422 ^65000:4_0:229_0:69$ ip community-list expanded c3 permit 2423 ^65000:4_0:229_0:70$ ip community-list expanded c3 permit 2424 ^65000:4_0:229_0:71$ ip community-list expanded c3 permit 2425 ^65000:4_0:229_0:72$ ip community-list expanded c3 permit 2426 ^65000:4_0:229_0:73$ ip community-list expanded c3 permit 2427 ^65000:4_0:229_0:74$ ip community-list expanded c3 permit 2428 ^65000:4_0:229_0:75$ ip community-list expanded c3 permit 2429 ^65000:4_0:229_0:76$ ip community-list expanded c3 permit 2430 ^65000:3_0:229_0:226$ ip community-list expanded c3 permit 2431 ^65000:4_0:230_0:58$ ip community-list expanded c3 permit 2432 ^65000:4_0:230_0:59$ ip community-list expanded c3 permit 2433 ^65000:4_0:230_0:60$ ip community-list expanded c3 permit 2434 ^65000:4_0:230_0:61$ ip community-list expanded c3 permit 2435 ^65000:4_0:230_0:62$ ip community-list expanded c3 permit 2436 ^65000:4_0:230_0:63$ ip community-list expanded c3 permit 2437 ^65000:4_0:230_0:64$ ip community-list expanded c3 permit 2438 ^65000:4_0:230_0:65$ ip community-list expanded c3 permit 2439 ^65000:4_0:230_0:66$ ip community-list expanded c3 permit 2440 ^65000:4_0:230_0:67$ ip community-list expanded c3 permit 2441 ^65000:4_0:230_0:68$ ip community-list expanded c3 permit 2442 ^65000:4_0:230_0:69$ ip community-list expanded c3 permit 2443 ^65000:4_0:230_0:70$ ip community-list expanded c3 permit 2444 ^65000:4_0:230_0:71$ ip community-list expanded c3 permit 2445 ^65000:4_0:230_0:72$ ip community-list expanded c3 permit 2446 ^65000:4_0:230_0:73$ ip community-list expanded c3 permit 2447 ^65000:4_0:230_0:74$ ip community-list expanded c3 permit 2448 ^65000:4_0:230_0:75$ ip community-list expanded c3 permit 2449 ^65000:4_0:230_0:76$ ip community-list expanded c3 permit 2450 ^65000:3_0:230_0:227$ ip community-list expanded c3 permit 2451 ^65000:4_0:231_0:58$ ip community-list expanded c3 permit 2452 ^65000:4_0:231_0:59$ ip community-list expanded c3 permit 2453 ^65000:4_0:231_0:60$ ip community-list expanded c3 permit 2454 ^65000:4_0:231_0:61$ ip community-list expanded c3 permit 2455 ^65000:4_0:231_0:62$ ip community-list expanded c3 permit 2456 ^65000:4_0:231_0:63$ ip community-list expanded c3 permit 2457 ^65000:4_0:231_0:64$ ip community-list expanded c3 permit 2458 ^65000:4_0:231_0:65$ ip community-list expanded c3 permit 2459 ^65000:4_0:231_0:66$ ip community-list expanded c3 permit 2460 ^65000:4_0:231_0:67$ ip community-list expanded c3 permit 2461 ^65000:4_0:231_0:68$ ip community-list expanded c3 permit 2462 ^65000:4_0:231_0:69$ ip community-list expanded c3 permit 2463 ^65000:4_0:231_0:70$ ip community-list expanded c3 permit 2464 ^65000:4_0:231_0:71$ ip community-list expanded c3 permit 2465 ^65000:4_0:231_0:72$ ip community-list expanded c3 permit 2466 ^65000:4_0:231_0:73$ ip community-list expanded c3 permit 2467 ^65000:4_0:231_0:74$ ip community-list expanded c3 permit 2468 ^65000:4_0:231_0:75$ ip community-list expanded c3 permit 2469 ^65000:4_0:231_0:76$ ip community-list expanded c3 permit 2470 ^65000:4_0:231_0:77$ ip community-list expanded c3 permit 2471 ^65000:3_0:231_0:228$ ip community-list expanded c3 permit 2472 ^65000:4_0:232_0:59$ ip community-list expanded c3 permit 2473 ^65000:4_0:232_0:60$ ip community-list expanded c3 permit 2474 ^65000:4_0:232_0:61$ ip community-list expanded c3 permit 2475 ^65000:4_0:232_0:62$ ip community-list expanded c3 permit 2476 ^65000:4_0:232_0:63$ ip community-list expanded c3 permit 2477 ^65000:4_0:232_0:64$ ip community-list expanded c3 permit 2478 ^65000:4_0:232_0:65$ ip community-list expanded c3 permit 2479 ^65000:4_0:232_0:66$ ip community-list expanded c3 permit 2480 ^65000:4_0:232_0:67$ ip community-list expanded c3 permit 2481 ^65000:4_0:232_0:68$ ip community-list expanded c3 permit 2482 ^65000:4_0:232_0:69$ ip community-list expanded c3 permit 2483 ^65000:4_0:232_0:70$ ip community-list expanded c3 permit 2484 ^65000:4_0:232_0:71$ ip community-list expanded c3 permit 2485 ^65000:4_0:232_0:72$ ip community-list expanded c3 permit 2486 ^65000:4_0:232_0:73$ ip community-list expanded c3 permit 2487 ^65000:4_0:232_0:74$ ip community-list expanded c3 permit 2488 ^65000:4_0:232_0:75$ ip community-list expanded c3 permit 2489 ^65000:4_0:232_0:76$ ip community-list expanded c3 permit 2490 ^65000:4_0:232_0:77$ ip community-list expanded c3 permit 2491 ^65000:3_0:232_0:229$ ip community-list expanded c3 permit 2492 ^65000:4_0:233_0:59$ ip community-list expanded c3 permit 2493 ^65000:4_0:233_0:60$ ip community-list expanded c3 permit 2494 ^65000:4_0:233_0:61$ ip community-list expanded c3 permit 2495 ^65000:4_0:233_0:62$ ip community-list expanded c3 permit 2496 ^65000:4_0:233_0:63$ ip community-list expanded c3 permit 2497 ^65000:4_0:233_0:64$ ip community-list expanded c3 permit 2498 ^65000:4_0:233_0:65$ ip community-list expanded c3 permit 2499 ^65000:4_0:233_0:66$ ip community-list expanded c3 permit 2500 ^65000:4_0:233_0:67$ ip community-list expanded c3 permit 2501 ^65000:4_0:233_0:68$ ip community-list expanded c3 permit 2502 ^65000:4_0:233_0:69$ ip community-list expanded c3 permit 2503 ^65000:4_0:233_0:70$ ip community-list expanded c3 permit 2504 ^65000:4_0:233_0:71$ ip community-list expanded c3 permit 2505 ^65000:4_0:233_0:72$ ip community-list expanded c3 permit 2506 ^65000:4_0:233_0:73$ ip community-list expanded c3 permit 2507 ^65000:4_0:233_0:74$ ip community-list expanded c3 permit 2508 ^65000:4_0:233_0:75$ ip community-list expanded c3 permit 2509 ^65000:4_0:233_0:76$ ip community-list expanded c3 permit 2510 ^65000:4_0:233_0:77$ ip community-list expanded c3 permit 2511 ^65000:3_0:233_0:230$ ip community-list expanded c3 permit 2512 ^65000:4_0:234_0:59$ ip community-list expanded c3 permit 2513 ^65000:4_0:234_0:60$ ip community-list expanded c3 permit 2514 ^65000:4_0:234_0:61$ ip community-list expanded c3 permit 2515 ^65000:4_0:234_0:62$ ip community-list expanded c3 permit 2516 ^65000:4_0:234_0:63$ ip community-list expanded c3 permit 2517 ^65000:4_0:234_0:64$ ip community-list expanded c3 permit 2518 ^65000:4_0:234_0:65$ ip community-list expanded c3 permit 2519 ^65000:4_0:234_0:66$ ip community-list expanded c3 permit 2520 ^65000:4_0:234_0:67$ ip community-list expanded c3 permit 2521 ^65000:4_0:234_0:68$ ip community-list expanded c3 permit 2522 ^65000:4_0:234_0:69$ ip community-list expanded c3 permit 2523 ^65000:4_0:234_0:70$ ip community-list expanded c3 permit 2524 ^65000:4_0:234_0:71$ ip community-list expanded c3 permit 2525 ^65000:4_0:234_0:72$ ip community-list expanded c3 permit 2526 ^65000:4_0:234_0:73$ ip community-list expanded c3 permit 2527 ^65000:4_0:234_0:74$ ip community-list expanded c3 permit 2528 ^65000:4_0:234_0:75$ ip community-list expanded c3 permit 2529 ^65000:4_0:234_0:76$ ip community-list expanded c3 permit 2530 ^65000:4_0:234_0:77$ ip community-list expanded c3 permit 2531 ^65000:4_0:234_0:78$ ip community-list expanded c3 permit 2532 ^65000:3_0:234_0:231$ ip community-list expanded c3 permit 2533 ^65000:4_0:235_0:59$ ip community-list expanded c3 permit 2534 ^65000:4_0:235_0:60$ ip community-list expanded c3 permit 2535 ^65000:4_0:235_0:61$ ip community-list expanded c3 permit 2536 ^65000:4_0:235_0:62$ ip community-list expanded c3 permit 2537 ^65000:4_0:235_0:63$ ip community-list expanded c3 permit 2538 ^65000:4_0:235_0:64$ ip community-list expanded c3 permit 2539 ^65000:4_0:235_0:65$ ip community-list expanded c3 permit 2540 ^65000:4_0:235_0:66$ ip community-list expanded c3 permit 2541 ^65000:4_0:235_0:67$ ip community-list expanded c3 permit 2542 ^65000:4_0:235_0:68$ ip community-list expanded c3 permit 2543 ^65000:4_0:235_0:69$ ip community-list expanded c3 permit 2544 ^65000:4_0:235_0:70$ ip community-list expanded c3 permit 2545 ^65000:4_0:235_0:71$ ip community-list expanded c3 permit 2546 ^65000:4_0:235_0:72$ ip community-list expanded c3 permit 2547 ^65000:4_0:235_0:73$ ip community-list expanded c3 permit 2548 ^65000:4_0:235_0:74$ ip community-list expanded c3 permit 2549 ^65000:4_0:235_0:75$ ip community-list expanded c3 permit 2550 ^65000:4_0:235_0:76$ ip community-list expanded c3 permit 2551 ^65000:4_0:235_0:77$ ip community-list expanded c3 permit 2552 ^65000:4_0:235_0:78$ ip community-list expanded c3 permit 2553 ^65000:3_0:235_0:232$ ip community-list expanded c3 permit 2554 ^65000:4_0:236_0:60$ ip community-list expanded c3 permit 2555 ^65000:4_0:236_0:61$ ip community-list expanded c3 permit 2556 ^65000:4_0:236_0:62$ ip community-list expanded c3 permit 2557 ^65000:4_0:236_0:63$ ip community-list expanded c3 permit 2558 ^65000:4_0:236_0:64$ ip community-list expanded c3 permit 2559 ^65000:4_0:236_0:65$ ip community-list expanded c3 permit 2560 ^65000:4_0:236_0:66$ ip community-list expanded c3 permit 2561 ^65000:4_0:236_0:67$ ip community-list expanded c3 permit 2562 ^65000:4_0:236_0:68$ ip community-list expanded c3 permit 2563 ^65000:4_0:236_0:69$ ip community-list expanded c3 permit 2564 ^65000:4_0:236_0:70$ ip community-list expanded c3 permit 2565 ^65000:4_0:236_0:71$ ip community-list expanded c3 permit 2566 ^65000:4_0:236_0:72$ ip community-list expanded c3 permit 2567 ^65000:4_0:236_0:73$ ip community-list expanded c3 permit 2568 ^65000:4_0:236_0:74$ ip community-list expanded c3 permit 2569 ^65000:4_0:236_0:75$ ip community-list expanded c3 permit 2570 ^65000:4_0:236_0:76$ ip community-list expanded c3 permit 2571 ^65000:4_0:236_0:77$ ip community-list expanded c3 permit 2572 ^65000:4_0:236_0:78$ ip community-list expanded c3 permit 2573 ^65000:3_0:236_0:233$ ip community-list expanded c3 permit 2574 ^65000:4_0:237_0:60$ ip community-list expanded c3 permit 2575 ^65000:4_0:237_0:61$ ip community-list expanded c3 permit 2576 ^65000:4_0:237_0:62$ ip community-list expanded c3 permit 2577 ^65000:4_0:237_0:63$ ip community-list expanded c3 permit 2578 ^65000:4_0:237_0:64$ ip community-list expanded c3 permit 2579 ^65000:4_0:237_0:65$ ip community-list expanded c3 permit 2580 ^65000:4_0:237_0:66$ ip community-list expanded c3 permit 2581 ^65000:4_0:237_0:67$ ip community-list expanded c3 permit 2582 ^65000:4_0:237_0:68$ ip community-list expanded c3 permit 2583 ^65000:4_0:237_0:69$ ip community-list expanded c3 permit 2584 ^65000:4_0:237_0:70$ ip community-list expanded c3 permit 2585 ^65000:4_0:237_0:71$ ip community-list expanded c3 permit 2586 ^65000:4_0:237_0:72$ ip community-list expanded c3 permit 2587 ^65000:4_0:237_0:73$ ip community-list expanded c3 permit 2588 ^65000:4_0:237_0:74$ ip community-list expanded c3 permit 2589 ^65000:4_0:237_0:75$ ip community-list expanded c3 permit 2590 ^65000:4_0:237_0:76$ ip community-list expanded c3 permit 2591 ^65000:4_0:237_0:77$ ip community-list expanded c3 permit 2592 ^65000:4_0:237_0:78$ ip community-list expanded c3 permit 2593 ^65000:4_0:237_0:79$ ip community-list expanded c3 permit 2594 ^65000:3_0:237_0:234$ ip community-list expanded c3 permit 2595 ^65000:4_0:238_0:60$ ip community-list expanded c3 permit 2596 ^65000:4_0:238_0:61$ ip community-list expanded c3 permit 2597 ^65000:4_0:238_0:62$ ip community-list expanded c3 permit 2598 ^65000:4_0:238_0:63$ ip community-list expanded c3 permit 2599 ^65000:4_0:238_0:64$ ip community-list expanded c3 permit 2600 ^65000:4_0:238_0:65$ ip community-list expanded c3 permit 2601 ^65000:4_0:238_0:66$ ip community-list expanded c3 permit 2602 ^65000:4_0:238_0:67$ ip community-list expanded c3 permit 2603 ^65000:4_0:238_0:68$ ip community-list expanded c3 permit 2604 ^65000:4_0:238_0:69$ ip community-list expanded c3 permit 2605 ^65000:4_0:238_0:70$ ip community-list expanded c3 permit 2606 ^65000:4_0:238_0:71$ ip community-list expanded c3 permit 2607 ^65000:4_0:238_0:72$ ip community-list expanded c3 permit 2608 ^65000:4_0:238_0:73$ ip community-list expanded c3 permit 2609 ^65000:4_0:238_0:74$ ip community-list expanded c3 permit 2610 ^65000:4_0:238_0:75$ ip community-list expanded c3 permit 2611 ^65000:4_0:238_0:76$ ip community-list expanded c3 permit 2612 ^65000:4_0:238_0:77$ ip community-list expanded c3 permit 2613 ^65000:4_0:238_0:78$ ip community-list expanded c3 permit 2614 ^65000:4_0:238_0:79$ ip community-list expanded c3 permit 2615 ^65000:3_0:238_0:235$ ip community-list expanded c3 permit 2616 ^65000:4_0:239_0:60$ ip community-list expanded c3 permit 2617 ^65000:4_0:239_0:61$ ip community-list expanded c3 permit 2618 ^65000:4_0:239_0:62$ ip community-list expanded c3 permit 2619 ^65000:4_0:239_0:63$ ip community-list expanded c3 permit 2620 ^65000:4_0:239_0:64$ ip community-list expanded c3 permit 2621 ^65000:4_0:239_0:65$ ip community-list expanded c3 permit 2622 ^65000:4_0:239_0:66$ ip community-list expanded c3 permit 2623 ^65000:4_0:239_0:67$ ip community-list expanded c3 permit 2624 ^65000:4_0:239_0:68$ ip community-list expanded c3 permit 2625 ^65000:4_0:239_0:69$ ip community-list expanded c3 permit 2626 ^65000:4_0:239_0:70$ ip community-list expanded c3 permit 2627 ^65000:4_0:239_0:71$ ip community-list expanded c3 permit 2628 ^65000:4_0:239_0:72$ ip community-list expanded c3 permit 2629 ^65000:4_0:239_0:73$ ip community-list expanded c3 permit 2630 ^65000:4_0:239_0:74$ ip community-list expanded c3 permit 2631 ^65000:4_0:239_0:75$ ip community-list expanded c3 permit 2632 ^65000:4_0:239_0:76$ ip community-list expanded c3 permit 2633 ^65000:4_0:239_0:77$ ip community-list expanded c3 permit 2634 ^65000:4_0:239_0:78$ ip community-list expanded c3 permit 2635 ^65000:4_0:239_0:79$ ip community-list expanded c3 permit 2636 ^65000:3_0:239_0:236$ ip community-list expanded c3 permit 2637 ^65000:4_0:240_0:61$ ip community-list expanded c3 permit 2638 ^65000:4_0:240_0:62$ ip community-list expanded c3 permit 2639 ^65000:4_0:240_0:63$ ip community-list expanded c3 permit 2640 ^65000:4_0:240_0:64$ ip community-list expanded c3 permit 2641 ^65000:4_0:240_0:65$ ip community-list expanded c3 permit 2642 ^65000:4_0:240_0:66$ ip community-list expanded c3 permit 2643 ^65000:4_0:240_0:67$ ip community-list expanded c3 permit 2644 ^65000:4_0:240_0:68$ ip community-list expanded c3 permit 2645 ^65000:4_0:240_0:69$ ip community-list expanded c3 permit 2646 ^65000:4_0:240_0:70$ ip community-list expanded c3 permit 2647 ^65000:4_0:240_0:71$ ip community-list expanded c3 permit 2648 ^65000:4_0:240_0:72$ ip community-list expanded c3 permit 2649 ^65000:4_0:240_0:73$ ip community-list expanded c3 permit 2650 ^65000:4_0:240_0:74$ ip community-list expanded c3 permit 2651 ^65000:4_0:240_0:75$ ip community-list expanded c3 permit 2652 ^65000:4_0:240_0:76$ ip community-list expanded c3 permit 2653 ^65000:4_0:240_0:77$ ip community-list expanded c3 permit 2654 ^65000:4_0:240_0:78$ ip community-list expanded c3 permit 2655 ^65000:4_0:240_0:79$ ip community-list expanded c3 permit 2656 ^65000:4_0:240_0:80$ ip community-list expanded c3 permit 2657 ^65000:3_0:240_0:237$ ip community-list expanded c3 permit 2658 ^65000:4_0:241_0:61$ ip community-list expanded c3 permit 2659 ^65000:4_0:241_0:62$ ip community-list expanded c3 permit 2660 ^65000:4_0:241_0:63$ ip community-list expanded c3 permit 2661 ^65000:4_0:241_0:64$ ip community-list expanded c3 permit 2662 ^65000:4_0:241_0:65$ ip community-list expanded c3 permit 2663 ^65000:4_0:241_0:66$ ip community-list expanded c3 permit 2664 ^65000:4_0:241_0:67$ ip community-list expanded c3 permit 2665 ^65000:4_0:241_0:68$ ip community-list expanded c3 permit 2666 ^65000:4_0:241_0:69$ ip community-list expanded c3 permit 2667 ^65000:4_0:241_0:70$ ip community-list expanded c3 permit 2668 ^65000:4_0:241_0:71$ ip community-list expanded c3 permit 2669 ^65000:4_0:241_0:72$ ip community-list expanded c3 permit 2670 ^65000:4_0:241_0:73$ ip community-list expanded c3 permit 2671 ^65000:4_0:241_0:74$ ip community-list expanded c3 permit 2672 ^65000:4_0:241_0:75$ ip community-list expanded c3 permit 2673 ^65000:4_0:241_0:76$ ip community-list expanded c3 permit 2674 ^65000:4_0:241_0:77$ ip community-list expanded c3 permit 2675 ^65000:4_0:241_0:78$ ip community-list expanded c3 permit 2676 ^65000:4_0:241_0:79$ ip community-list expanded c3 permit 2677 ^65000:4_0:241_0:80$ ip community-list expanded c3 permit 2678 ^65000:3_0:241_0:238$ ip community-list expanded c3 permit 2679 ^65000:4_0:242_0:61$ ip community-list expanded c3 permit 2680 ^65000:4_0:242_0:62$ ip community-list expanded c3 permit 2681 ^65000:4_0:242_0:63$ ip community-list expanded c3 permit 2682 ^65000:4_0:242_0:64$ ip community-list expanded c3 permit 2683 ^65000:4_0:242_0:65$ ip community-list expanded c3 permit 2684 ^65000:4_0:242_0:66$ ip community-list expanded c3 permit 2685 ^65000:4_0:242_0:67$ ip community-list expanded c3 permit 2686 ^65000:4_0:242_0:68$ ip community-list expanded c3 permit 2687 ^65000:4_0:242_0:69$ ip community-list expanded c3 permit 2688 ^65000:4_0:242_0:70$ ip community-list expanded c3 permit 2689 ^65000:4_0:242_0:71$ ip community-list expanded c3 permit 2690 ^65000:4_0:242_0:72$ ip community-list expanded c3 permit 2691 ^65000:4_0:242_0:73$ ip community-list expanded c3 permit 2692 ^65000:4_0:242_0:74$ ip community-list expanded c3 permit 2693 ^65000:4_0:242_0:75$ ip community-list expanded c3 permit 2694 ^65000:4_0:242_0:76$ ip community-list expanded c3 permit 2695 ^65000:4_0:242_0:77$ ip community-list expanded c3 permit 2696 ^65000:4_0:242_0:78$ ip community-list expanded c3 permit 2697 ^65000:4_0:242_0:79$ ip community-list expanded c3 permit 2698 ^65000:4_0:242_0:80$ ip community-list expanded c3 permit 2699 ^65000:3_0:242_0:239$ ip community-list expanded c3 permit 2700 ^65000:4_0:243_0:61$ ip community-list expanded c3 permit 2701 ^65000:4_0:243_0:62$ ip community-list expanded c3 permit 2702 ^65000:4_0:243_0:63$ ip community-list expanded c3 permit 2703 ^65000:4_0:243_0:64$ ip community-list expanded c3 permit 2704 ^65000:4_0:243_0:65$ ip community-list expanded c3 permit 2705 ^65000:4_0:243_0:66$ ip community-list expanded c3 permit 2706 ^65000:4_0:243_0:67$ ip community-list expanded c3 permit 2707 ^65000:4_0:243_0:68$ ip community-list expanded c3 permit 2708 ^65000:4_0:243_0:69$ ip community-list expanded c3 permit 2709 ^65000:4_0:243_0:70$ ip community-list expanded c3 permit 2710 ^65000:4_0:243_0:71$ ip community-list expanded c3 permit 2711 ^65000:4_0:243_0:72$ ip community-list expanded c3 permit 2712 ^65000:4_0:243_0:73$ ip community-list expanded c3 permit 2713 ^65000:4_0:243_0:74$ ip community-list expanded c3 permit 2714 ^65000:4_0:243_0:75$ ip community-list expanded c3 permit 2715 ^65000:4_0:243_0:76$ ip community-list expanded c3 permit 2716 ^65000:4_0:243_0:77$ ip community-list expanded c3 permit 2717 ^65000:4_0:243_0:78$ ip community-list expanded c3 permit 2718 ^65000:4_0:243_0:79$ ip community-list expanded c3 permit 2719 ^65000:4_0:243_0:80$ ip community-list expanded c3 permit 2720 ^65000:4_0:243_0:81$ ip community-list expanded c3 permit 2721 ^65000:3_0:243_0:240$ ip community-list expanded c3 permit 2722 ^65000:4_0:244_0:62$ ip community-list expanded c3 permit 2723 ^65000:4_0:244_0:63$ ip community-list expanded c3 permit 2724 ^65000:4_0:244_0:64$ ip community-list expanded c3 permit 2725 ^65000:4_0:244_0:65$ ip community-list expanded c3 permit 2726 ^65000:4_0:244_0:66$ ip community-list expanded c3 permit 2727 ^65000:4_0:244_0:67$ ip community-list expanded c3 permit 2728 ^65000:4_0:244_0:68$ ip community-list expanded c3 permit 2729 ^65000:4_0:244_0:69$ ip community-list expanded c3 permit 2730 ^65000:4_0:244_0:70$ ip community-list expanded c3 permit 2731 ^65000:4_0:244_0:71$ ip community-list expanded c3 permit 2732 ^65000:4_0:244_0:72$ ip community-list expanded c3 permit 2733 ^65000:4_0:244_0:73$ ip community-list expanded c3 permit 2734 ^65000:4_0:244_0:74$ ip community-list expanded c3 permit 2735 ^65000:4_0:244_0:75$ ip community-list expanded c3 permit 2736 ^65000:4_0:244_0:76$ ip community-list expanded c3 permit 2737 ^65000:4_0:244_0:77$ ip community-list expanded c3 permit 2738 ^65000:4_0:244_0:78$ ip community-list expanded c3 permit 2739 ^65000:4_0:244_0:79$ ip community-list expanded c3 permit 2740 ^65000:4_0:244_0:80$ ip community-list expanded c3 permit 2741 ^65000:4_0:244_0:81$ ip community-list expanded c3 permit 2742 ^65000:3_0:244_0:241$ ip community-list expanded c3 permit 2743 ^65000:4_0:245_0:62$ ip community-list expanded c3 permit 2744 ^65000:4_0:245_0:63$ ip community-list expanded c3 permit 2745 ^65000:4_0:245_0:64$ ip community-list expanded c3 permit 2746 ^65000:4_0:245_0:65$ ip community-list expanded c3 permit 2747 ^65000:4_0:245_0:66$ ip community-list expanded c3 permit 2748 ^65000:4_0:245_0:67$ ip community-list expanded c3 permit 2749 ^65000:4_0:245_0:68$ ip community-list expanded c3 permit 2750 ^65000:4_0:245_0:69$ ip community-list expanded c3 permit 2751 ^65000:4_0:245_0:70$ ip community-list expanded c3 permit 2752 ^65000:4_0:245_0:71$ ip community-list expanded c3 permit 2753 ^65000:4_0:245_0:72$ ip community-list expanded c3 permit 2754 ^65000:4_0:245_0:73$ ip community-list expanded c3 permit 2755 ^65000:4_0:245_0:74$ ip community-list expanded c3 permit 2756 ^65000:4_0:245_0:75$ ip community-list expanded c3 permit 2757 ^65000:4_0:245_0:76$ ip community-list expanded c3 permit 2758 ^65000:4_0:245_0:77$ ip community-list expanded c3 permit 2759 ^65000:4_0:245_0:78$ ip community-list expanded c3 permit 2760 ^65000:4_0:245_0:79$ ip community-list expanded c3 permit 2761 ^65000:4_0:245_0:80$ ip community-list expanded c3 permit 2762 ^65000:4_0:245_0:81$ ip community-list expanded c3 permit 2763 ^65000:3_0:245_0:242$ ip community-list expanded c3 permit 2764 ^65000:4_0:246_0:62$ ip community-list expanded c3 permit 2765 ^65000:4_0:246_0:63$ ip community-list expanded c3 permit 2766 ^65000:4_0:246_0:64$ ip community-list expanded c3 permit 2767 ^65000:4_0:246_0:65$ ip community-list expanded c3 permit 2768 ^65000:4_0:246_0:66$ ip community-list expanded c3 permit 2769 ^65000:4_0:246_0:67$ ip community-list expanded c3 permit 2770 ^65000:4_0:246_0:68$ ip community-list expanded c3 permit 2771 ^65000:4_0:246_0:69$ ip community-list expanded c3 permit 2772 ^65000:4_0:246_0:70$ ip community-list expanded c3 permit 2773 ^65000:4_0:246_0:71$ ip community-list expanded c3 permit 2774 ^65000:4_0:246_0:72$ ip community-list expanded c3 permit 2775 ^65000:4_0:246_0:73$ ip community-list expanded c3 permit 2776 ^65000:4_0:246_0:74$ ip community-list expanded c3 permit 2777 ^65000:4_0:246_0:75$ ip community-list expanded c3 permit 2778 ^65000:4_0:246_0:76$ ip community-list expanded c3 permit 2779 ^65000:4_0:246_0:77$ ip community-list expanded c3 permit 2780 ^65000:4_0:246_0:78$ ip community-list expanded c3 permit 2781 ^65000:4_0:246_0:79$ ip community-list expanded c3 permit 2782 ^65000:4_0:246_0:80$ ip community-list expanded c3 permit 2783 ^65000:4_0:246_0:81$ ip community-list expanded c3 permit 2784 ^65000:4_0:246_0:82$ ip community-list expanded c3 permit 2785 ^65000:3_0:246_0:243$ ip community-list expanded c3 permit 2786 ^65000:4_0:247_0:62$ ip community-list expanded c3 permit 2787 ^65000:4_0:247_0:63$ ip community-list expanded c3 permit 2788 ^65000:4_0:247_0:64$ ip community-list expanded c3 permit 2789 ^65000:4_0:247_0:65$ ip community-list expanded c3 permit 2790 ^65000:4_0:247_0:66$ ip community-list expanded c3 permit 2791 ^65000:4_0:247_0:67$ ip community-list expanded c3 permit 2792 ^65000:4_0:247_0:68$ ip community-list expanded c3 permit 2793 ^65000:4_0:247_0:69$ ip community-list expanded c3 permit 2794 ^65000:4_0:247_0:70$ ip community-list expanded c3 permit 2795 ^65000:4_0:247_0:71$ ip community-list expanded c3 permit 2796 ^65000:4_0:247_0:72$ ip community-list expanded c3 permit 2797 ^65000:4_0:247_0:73$ ip community-list expanded c3 permit 2798 ^65000:4_0:247_0:74$ ip community-list expanded c3 permit 2799 ^65000:4_0:247_0:75$ ip community-list expanded c3 permit 2800 ^65000:4_0:247_0:76$ ip community-list expanded c3 permit 2801 ^65000:4_0:247_0:77$ ip community-list expanded c3 permit 2802 ^65000:4_0:247_0:78$ ip community-list expanded c3 permit 2803 ^65000:4_0:247_0:79$ ip community-list expanded c3 permit 2804 ^65000:4_0:247_0:80$ ip community-list expanded c3 permit 2805 ^65000:4_0:247_0:81$ ip community-list expanded c3 permit 2806 ^65000:4_0:247_0:82$ ip community-list expanded c3 permit 2807 ^65000:3_0:247_0:244$ ip community-list expanded c3 permit 2808 ^65000:4_0:248_0:63$ ip community-list expanded c3 permit 2809 ^65000:4_0:248_0:64$ ip community-list expanded c3 permit 2810 ^65000:4_0:248_0:65$ ip community-list expanded c3 permit 2811 ^65000:4_0:248_0:66$ ip community-list expanded c3 permit 2812 ^65000:4_0:248_0:67$ ip community-list expanded c3 permit 2813 ^65000:4_0:248_0:68$ ip community-list expanded c3 permit 2814 ^65000:4_0:248_0:69$ ip community-list expanded c3 permit 2815 ^65000:4_0:248_0:70$ ip community-list expanded c3 permit 2816 ^65000:4_0:248_0:71$ ip community-list expanded c3 permit 2817 ^65000:4_0:248_0:72$ ip community-list expanded c3 permit 2818 ^65000:4_0:248_0:73$ ip community-list expanded c3 permit 2819 ^65000:4_0:248_0:74$ ip community-list expanded c3 permit 2820 ^65000:4_0:248_0:75$ ip community-list expanded c3 permit 2821 ^65000:4_0:248_0:76$ ip community-list expanded c3 permit 2822 ^65000:4_0:248_0:77$ ip community-list expanded c3 permit 2823 ^65000:4_0:248_0:78$ ip community-list expanded c3 permit 2824 ^65000:4_0:248_0:79$ ip community-list expanded c3 permit 2825 ^65000:4_0:248_0:80$ ip community-list expanded c3 permit 2826 ^65000:4_0:248_0:81$ ip community-list expanded c3 permit 2827 ^65000:4_0:248_0:82$ ip community-list expanded c3 permit 2828 ^65000:3_0:248_0:245$ ip community-list expanded c3 permit 2829 ^65000:4_0:249_0:63$ ip community-list expanded c3 permit 2830 ^65000:4_0:249_0:64$ ip community-list expanded c3 permit 2831 ^65000:4_0:249_0:65$ ip community-list expanded c3 permit 2832 ^65000:4_0:249_0:66$ ip community-list expanded c3 permit 2833 ^65000:4_0:249_0:67$ ip community-list expanded c3 permit 2834 ^65000:4_0:249_0:68$ ip community-list expanded c3 permit 2835 ^65000:4_0:249_0:69$ ip community-list expanded c3 permit 2836 ^65000:4_0:249_0:70$ ip community-list expanded c3 permit 2837 ^65000:4_0:249_0:71$ ip community-list expanded c3 permit 2838 ^65000:4_0:249_0:72$ ip community-list expanded c3 permit 2839 ^65000:4_0:249_0:73$ ip community-list expanded c3 permit 2840 ^65000:4_0:249_0:74$ ip community-list expanded c3 permit 2841 ^65000:4_0:249_0:75$ ip community-list expanded c3 permit 2842 ^65000:4_0:249_0:76$ ip community-list expanded c3 permit 2843 ^65000:4_0:249_0:77$ ip community-list expanded c3 permit 2844 ^65000:4_0:249_0:78$ ip community-list expanded c3 permit 2845 ^65000:4_0:249_0:79$ ip community-list expanded c3 permit 2846 ^65000:4_0:249_0:80$ ip community-list expanded c3 permit 2847 ^65000:4_0:249_0:81$ ip community-list expanded c3 permit 2848 ^65000:4_0:249_0:82$ ip community-list expanded c3 permit 2849 ^65000:4_0:249_0:83$ ip community-list expanded c3 permit 2850 ^65000:3_0:249_0:246$ ip community-list expanded c3 permit 2851 ^65000:4_0:250_0:63$ ip community-list expanded c3 permit 2852 ^65000:4_0:250_0:64$ ip community-list expanded c3 permit 2853 ^65000:4_0:250_0:65$ ip community-list expanded c3 permit 2854 ^65000:4_0:250_0:66$ ip community-list expanded c3 permit 2855 ^65000:4_0:250_0:67$ ip community-list expanded c3 permit 2856 ^65000:4_0:250_0:68$ ip community-list expanded c3 permit 2857 ^65000:4_0:250_0:69$ ip community-list expanded c3 permit 2858 ^65000:4_0:250_0:70$ ip community-list expanded c3 permit 2859 ^65000:4_0:250_0:71$ ip community-list expanded c3 permit 2860 ^65000:4_0:250_0:72$ ip community-list expanded c3 permit 2861 ^65000:4_0:250_0:73$ ip community-list expanded c3 permit 2862 ^65000:4_0:250_0:74$ ip community-list expanded c3 permit 2863 ^65000:4_0:250_0:75$ ip community-list expanded c3 permit 2864 ^65000:4_0:250_0:76$ ip community-list expanded c3 permit 2865 ^65000:4_0:250_0:77$ ip community-list expanded c3 permit 2866 ^65000:4_0:250_0:78$ ip community-list expanded c3 permit 2867 ^65000:4_0:250_0:79$ ip community-list expanded c3 permit 2868 ^65000:4_0:250_0:80$ ip community-list expanded c3 permit 2869 ^65000:4_0:250_0:81$ ip community-list expanded c3 permit 2870 ^65000:4_0:250_0:82$ ip community-list expanded c3 permit 2871 ^65000:4_0:250_0:83$ ip community-list expanded c3 permit 2872 ^65000:3_0:250_0:247$ ip community-list expanded c3 permit 2873 ^65000:4_0:251_0:63$ ip community-list expanded c3 permit 2874 ^65000:4_0:251_0:64$ ip community-list expanded c3 permit 2875 ^65000:4_0:251_0:65$ ip community-list expanded c3 permit 2876 ^65000:4_0:251_0:66$ ip community-list expanded c3 permit 2877 ^65000:4_0:251_0:67$ ip community-list expanded c3 permit 2878 ^65000:4_0:251_0:68$ ip community-list expanded c3 permit 2879 ^65000:4_0:251_0:69$ ip community-list expanded c3 permit 2880 ^65000:4_0:251_0:70$ ip community-list expanded c3 permit 2881 ^65000:4_0:251_0:71$ ip community-list expanded c3 permit 2882 ^65000:4_0:251_0:72$ ip community-list expanded c3 permit 2883 ^65000:4_0:251_0:73$ ip community-list expanded c3 permit 2884 ^65000:4_0:251_0:74$ ip community-list expanded c3 permit 2885 ^65000:4_0:251_0:75$ ip community-list expanded c3 permit 2886 ^65000:4_0:251_0:76$ ip community-list expanded c3 permit 2887 ^65000:4_0:251_0:77$ ip community-list expanded c3 permit 2888 ^65000:4_0:251_0:78$ ip community-list expanded c3 permit 2889 ^65000:4_0:251_0:79$ ip community-list expanded c3 permit 2890 ^65000:4_0:251_0:80$ ip community-list expanded c3 permit 2891 ^65000:4_0:251_0:81$ ip community-list expanded c3 permit 2892 ^65000:4_0:251_0:82$ ip community-list expanded c3 permit 2893 ^65000:4_0:251_0:83$ ip community-list expanded c3 permit 2894 ^65000:3_0:251_0:248$ ip community-list expanded c3 permit 2895 ^65000:4_0:252_0:64$ ip community-list expanded c3 permit 2896 ^65000:4_0:252_0:65$ ip community-list expanded c3 permit 2897 ^65000:4_0:252_0:66$ ip community-list expanded c3 permit 2898 ^65000:4_0:252_0:67$ ip community-list expanded c3 permit 2899 ^65000:4_0:252_0:68$ ip community-list expanded c3 permit 2900 ^65000:4_0:252_0:69$ ip community-list expanded c3 permit 2901 ^65000:4_0:252_0:70$ ip community-list expanded c3 permit 2902 ^65000:4_0:252_0:71$ ip community-list expanded c3 permit 2903 ^65000:4_0:252_0:72$ ip community-list expanded c3 permit 2904 ^65000:4_0:252_0:73$ ip community-list expanded c3 permit 2905 ^65000:4_0:252_0:74$ ip community-list expanded c3 permit 2906 ^65000:4_0:252_0:75$ ip community-list expanded c3 permit 2907 ^65000:4_0:252_0:76$ ip community-list expanded c3 permit 2908 ^65000:4_0:252_0:77$ ip community-list expanded c3 permit 2909 ^65000:4_0:252_0:78$ ip community-list expanded c3 permit 2910 ^65000:4_0:252_0:79$ ip community-list expanded c3 permit 2911 ^65000:4_0:252_0:80$ ip community-list expanded c3 permit 2912 ^65000:4_0:252_0:81$ ip community-list expanded c3 permit 2913 ^65000:4_0:252_0:82$ ip community-list expanded c3 permit 2914 ^65000:4_0:252_0:83$ ip community-list expanded c3 permit 2915 ^65000:4_0:252_0:84$ ip community-list expanded c3 permit 2916 ^65000:3_0:252_0:249$ ip community-list expanded c3 permit 2917 ^65000:4_0:253_0:64$ ip community-list expanded c3 permit 2918 ^65000:4_0:253_0:65$ ip community-list expanded c3 permit 2919 ^65000:4_0:253_0:66$ ip community-list expanded c3 permit 2920 ^65000:4_0:253_0:67$ ip community-list expanded c3 permit 2921 ^65000:4_0:253_0:68$ ip community-list expanded c3 permit 2922 ^65000:4_0:253_0:69$ ip community-list expanded c3 permit 2923 ^65000:4_0:253_0:70$ ip community-list expanded c3 permit 2924 ^65000:4_0:253_0:71$ ip community-list expanded c3 permit 2925 ^65000:4_0:253_0:72$ ip community-list expanded c3 permit 2926 ^65000:4_0:253_0:73$ ip community-list expanded c3 permit 2927 ^65000:4_0:253_0:74$ ip community-list expanded c3 permit 2928 ^65000:4_0:253_0:75$ ip community-list expanded c3 permit 2929 ^65000:4_0:253_0:76$ ip community-list expanded c3 permit 2930 ^65000:4_0:253_0:77$ ip community-list expanded c3 permit 2931 ^65000:4_0:253_0:78$ ip community-list expanded c3 permit 2932 ^65000:4_0:253_0:79$ ip community-list expanded c3 permit 2933 ^65000:4_0:253_0:80$ ip community-list expanded c3 permit 2934 ^65000:4_0:253_0:81$ ip community-list expanded c3 permit 2935 ^65000:4_0:253_0:82$ ip community-list expanded c3 permit 2936 ^65000:4_0:253_0:83$ ip community-list expanded c3 permit 2937 ^65000:4_0:253_0:84$ ip community-list expanded c3 permit 2938 ^65000:3_0:253_0:250$ ip community-list expanded c3 permit 2939 ^65000:4_0:254_0:64$ ip community-list expanded c3 permit 2940 ^65000:4_0:254_0:65$ ip community-list expanded c3 permit 2941 ^65000:4_0:254_0:66$ ip community-list expanded c3 permit 2942 ^65000:4_0:254_0:67$ ip community-list expanded c3 permit 2943 ^65000:4_0:254_0:68$ ip community-list expanded c3 permit 2944 ^65000:4_0:254_0:69$ ip community-list expanded c3 permit 2945 ^65000:4_0:254_0:70$ ip community-list expanded c3 permit 2946 ^65000:4_0:254_0:71$ ip community-list expanded c3 permit 2947 ^65000:4_0:254_0:72$ ip community-list expanded c3 permit 2948 ^65000:4_0:254_0:73$ ip community-list expanded c3 permit 2949 ^65000:4_0:254_0:74$ ip community-list expanded c3 permit 2950 ^65000:4_0:254_0:75$ ip community-list expanded c3 permit 2951 ^65000:4_0:254_0:76$ ip community-list expanded c3 permit 2952 ^65000:4_0:254_0:77$ ip community-list expanded c3 permit 2953 ^65000:4_0:254_0:78$ ip community-list expanded c3 permit 2954 ^65000:4_0:254_0:79$ ip community-list expanded c3 permit 2955 ^65000:4_0:254_0:80$ ip community-list expanded c3 permit 2956 ^65000:4_0:254_0:81$ ip community-list expanded c3 permit 2957 ^65000:4_0:254_0:82$ ip community-list expanded c3 permit 2958 ^65000:4_0:254_0:83$ ip community-list expanded c3 permit 2959 ^65000:4_0:254_0:84$ ip community-list expanded c3 permit 2960 ^65000:3_0:254_0:251$ ip community-list expanded c3 permit 2961 ^65000:4_0:255_0:64$ ip community-list expanded c3 permit 2962 ^65000:4_0:255_0:65$ ip community-list expanded c3 permit 2963 ^65000:4_0:255_0:66$ ip community-list expanded c3 permit 2964 ^65000:4_0:255_0:67$ ip community-list expanded c3 permit 2965 ^65000:4_0:255_0:68$ ip community-list expanded c3 permit 2966 ^65000:4_0:255_0:69$ ip community-list expanded c3 permit 2967 ^65000:4_0:255_0:70$ ip community-list expanded c3 permit 2968 ^65000:4_0:255_0:71$ ip community-list expanded c3 permit 2969 ^65000:4_0:255_0:72$ ip community-list expanded c3 permit 2970 ^65000:4_0:255_0:73$ ip community-list expanded c3 permit 2971 ^65000:4_0:255_0:74$ ip community-list expanded c3 permit 2972 ^65000:4_0:255_0:75$ ip community-list expanded c3 permit 2973 ^65000:4_0:255_0:76$ ip community-list expanded c3 permit 2974 ^65000:4_0:255_0:77$ ip community-list expanded c3 permit 2975 ^65000:4_0:255_0:78$ ip community-list expanded c3 permit 2976 ^65000:4_0:255_0:79$ ip community-list expanded c3 permit 2977 ^65000:4_0:255_0:80$ ip community-list expanded c3 permit 2978 ^65000:4_0:255_0:81$ ip community-list expanded c3 permit 2979 ^65000:4_0:255_0:82$ ip community-list expanded c3 permit 2980 ^65000:4_0:255_0:83$ ip community-list expanded c3 permit 2981 ^65000:4_0:255_0:84$ ip community-list expanded c3 permit 2982 ^65000:4_0:255_0:85$ ip community-list expanded c3 permit 2983 ^65000:3_0:255_0:252$ ip community-list expanded c3 permit 2984 ^65000:4_0:256_0:65$ ip community-list expanded c3 permit 2985 ^65000:4_0:256_0:66$ ip community-list expanded c3 permit 2986 ^65000:4_0:256_0:67$ ip community-list expanded c3 permit 2987 ^65000:4_0:256_0:68$ ip community-list expanded c3 permit 2988 ^65000:4_0:256_0:69$ ip community-list expanded c3 permit 2989 ^65000:4_0:256_0:70$ ip community-list expanded c3 permit 2990 ^65000:4_0:256_0:71$ ip community-list expanded c3 permit 2991 ^65000:4_0:256_0:72$ ip community-list expanded c3 permit 2992 ^65000:4_0:256_0:73$ ip community-list expanded c3 permit 2993 ^65000:4_0:256_0:74$ ip community-list expanded c3 permit 2994 ^65000:4_0:256_0:75$ ip community-list expanded c3 permit 2995 ^65000:4_0:256_0:76$ ip community-list expanded c3 permit 2996 ^65000:4_0:256_0:77$ ip community-list expanded c3 permit 2997 ^65000:4_0:256_0:78$ ip community-list expanded c3 permit 2998 ^65000:4_0:256_0:79$ ip community-list expanded c3 permit 2999 ^65000:4_0:256_0:80$ ip community-list expanded c3 permit 3000 ^65000:4_0:256_0:81$ ip community-list expanded c3 permit 3001 ^65000:4_0:256_0:82$ ip community-list expanded c3 permit 3002 ^65000:4_0:256_0:83$ ip community-list expanded c3 permit 3003 ^65000:4_0:256_0:84$ ip community-list expanded c3 permit 3004 ^65000:4_0:256_0:85$ ip community-list expanded c3 permit 3005 ^65000:3_0:256_0:253$ route-map calculator permit 10525 match community 1_1_2 2_1_3 c4_3_1 c3_4_1 c3_5_2 set community 0:3 route-map calculator permit 10526 match community c4_6_2 c3_6_3 c4_7_2 c3_7_4 c3_8_5 set community 0:3 route-map calculator permit 10527 match community c4_9_3 c3_9_6 c4_10_3 c3_10_7 c4_11_3 set community 0:3 route-map calculator permit 10528 match community c3_11_8 c4_12_4 c3_12_9 c4_13_4 c3_13_10 set community 0:3 route-map calculator permit 10529 match community c4_14_4 c3_14_11 c4_15_4 c4_15_5 c3_15_12 set community 0:3 route-map calculator permit 10530 match community c4_16_5 c3_16_13 c4_17_5 c3_17_14 c4_18_5 set community 0:3 route-map calculator permit 10531 match community c4_18_6 c3_18_15 c4_19_5 c4_19_6 c3_19_16 set community 0:3 route-map calculator permit 10532 match community c4_20_6 c3_20_17 c4_21_6 c4_21_7 c3_21_18 set community 0:3 route-map calculator permit 10533 match community c4_22_6 c4_22_7 c3_22_19 c4_23_6 c4_23_7 set community 0:3 route-map calculator permit 10534 match community c3_23_20 c4_24_7 c4_24_8 c3_24_21 c4_25_7 set community 0:3 route-map calculator permit 10535 match community c4_25_8 c3_25_22 c4_26_7 c4_26_8 c3_26_23 set community 0:3 route-map calculator permit 10536 match community c4_27_7 c4_27_8 c4_27_9 c3_27_24 c4_28_8 set community 0:3 route-map calculator permit 10537 match community c4_28_9 c3_28_25 c4_29_8 c4_29_9 c3_29_26 set community 0:3 route-map calculator permit 10538 match community c4_30_8 c4_30_9 c4_30_10 c3_30_27 c4_31_8 set community 0:3 route-map calculator permit 10539 match community c4_31_9 c4_31_10 c3_31_28 c4_32_9 c4_32_10 set community 0:3 route-map calculator permit 10540 match community c3_32_29 c4_33_9 c4_33_10 c4_33_11 c3_33_30 set community 0:3 route-map calculator permit 10541 match community c4_34_9 c4_34_10 c4_34_11 c3_34_31 c4_35_9 set community 0:3 route-map calculator permit 10542 match community c4_35_10 c4_35_11 c3_35_32 c4_36_10 c4_36_11 set community 0:3 route-map calculator permit 10543 match community c4_36_12 c3_36_33 c4_37_10 c4_37_11 c4_37_12 set community 0:3 route-map calculator permit 10544 match community c3_37_34 c4_38_10 c4_38_11 c4_38_12 c3_38_35 set community 0:3 route-map calculator permit 10545 match community c4_39_10 c4_39_11 c4_39_12 c4_39_13 c3_39_36 set community 0:3 route-map calculator permit 10546 match community c4_40_11 c4_40_12 c4_40_13 c3_40_37 c4_41_11 set community 0:3 route-map calculator permit 10547 match community c4_41_12 c4_41_13 c3_41_38 c4_42_11 c4_42_12 set community 0:3 route-map calculator permit 10548 match community c4_42_13 c4_42_14 c3_42_39 c4_43_11 c4_43_12 set community 0:3 route-map calculator permit 10549 match community c4_43_13 c4_43_14 c3_43_40 c4_44_12 c4_44_13 set community 0:3 route-map calculator permit 10550 match community c4_44_14 c3_44_41 c4_45_12 c4_45_13 c4_45_14 set community 0:3 route-map calculator permit 10551 match community c4_45_15 c3_45_42 c4_46_12 c4_46_13 c4_46_14 set community 0:3 route-map calculator permit 10552 match community c4_46_15 c3_46_43 c4_47_12 c4_47_13 c4_47_14 set community 0:3 route-map calculator permit 10553 match community c4_47_15 c3_47_44 c4_48_13 c4_48_14 c4_48_15 set community 0:3 route-map calculator permit 10554 match community c4_48_16 c3_48_45 c4_49_13 c4_49_14 c4_49_15 set community 0:3 route-map calculator permit 10555 match community c4_49_16 c3_49_46 c4_50_13 c4_50_14 c4_50_15 set community 0:3 route-map calculator permit 10556 match community c4_50_16 c3_50_47 c4_51_13 c4_51_14 c4_51_15 set community 0:3 route-map calculator permit 10557 match community c4_51_16 c4_51_17 c3_51_48 c4_52_14 c4_52_15 set community 0:3 route-map calculator permit 10558 match community c4_52_16 c4_52_17 c3_52_49 c4_53_14 c4_53_15 set community 0:3 route-map calculator permit 10559 match community c4_53_16 c4_53_17 c3_53_50 c4_54_14 c4_54_15 set community 0:3 route-map calculator permit 10560 match community c4_54_16 c4_54_17 c4_54_18 c3_54_51 c4_55_14 set community 0:3 route-map calculator permit 10561 match community c4_55_15 c4_55_16 c4_55_17 c4_55_18 c3_55_52 set community 0:3 route-map calculator permit 10562 match community c4_56_15 c4_56_16 c4_56_17 c4_56_18 c3_56_53 set community 0:3 route-map calculator permit 10563 match community c4_57_15 c4_57_16 c4_57_17 c4_57_18 c4_57_19 set community 0:3 route-map calculator permit 10564 match community c3_57_54 c4_58_15 c4_58_16 c4_58_17 c4_58_18 set community 0:3 route-map calculator permit 10565 match community c4_58_19 c3_58_55 c4_59_15 c4_59_16 c4_59_17 set community 0:3 route-map calculator permit 10566 match community c4_59_18 c4_59_19 c3_59_56 c4_60_16 c4_60_17 set community 0:3 route-map calculator permit 10567 match community c4_60_18 c4_60_19 c4_60_20 c3_60_57 c4_61_16 set community 0:3 route-map calculator permit 10568 match community c4_61_17 c4_61_18 c4_61_19 c4_61_20 c3_61_58 set community 0:3 route-map calculator permit 10569 match community c4_62_16 c4_62_17 c4_62_18 c4_62_19 c4_62_20 set community 0:3 route-map calculator permit 10570 match community c3_62_59 c4_63_16 c4_63_17 c4_63_18 c4_63_19 set community 0:3 route-map calculator permit 10571 match community c4_63_20 c4_63_21 c3_63_60 c4_64_17 c4_64_18 set community 0:3 route-map calculator permit 10572 match community c4_64_19 c4_64_20 c4_64_21 c3_64_61 c4_65_17 set community 0:3 route-map calculator permit 10573 match community c4_65_18 c4_65_19 c4_65_20 c4_65_21 c3_65_62 set community 0:3 route-map calculator permit 10574 match community c4_66_17 c4_66_18 c4_66_19 c4_66_20 c4_66_21 set community 0:3 route-map calculator permit 10575 match community c4_66_22 c3_66_63 c4_67_17 c4_67_18 c4_67_19 set community 0:3 route-map calculator permit 10576 match community c4_67_20 c4_67_21 c4_67_22 c3_67_64 c4_68_18 set community 0:3 route-map calculator permit 10577 match community c4_68_19 c4_68_20 c4_68_21 c4_68_22 c3_68_65 set community 0:3 route-map calculator permit 10578 match community c4_69_18 c4_69_19 c4_69_20 c4_69_21 c4_69_22 set community 0:3 route-map calculator permit 10579 match community c4_69_23 c3_69_66 c4_70_18 c4_70_19 c4_70_20 set community 0:3 route-map calculator permit 10580 match community c4_70_21 c4_70_22 c4_70_23 c3_70_67 c4_71_18 set community 0:3 route-map calculator permit 10581 match community c4_71_19 c4_71_20 c4_71_21 c4_71_22 c4_71_23 set community 0:3 route-map calculator permit 10582 match community c3_71_68 c4_72_19 c4_72_20 c4_72_21 c4_72_22 set community 0:3 route-map calculator permit 10583 match community c4_72_23 c4_72_24 c3_72_69 c4_73_19 c4_73_20 set community 0:3 route-map calculator permit 10584 match community c4_73_21 c4_73_22 c4_73_23 c4_73_24 c3_73_70 set community 0:3 route-map calculator permit 10585 match community c4_74_19 c4_74_20 c4_74_21 c4_74_22 c4_74_23 set community 0:3 route-map calculator permit 10586 match community c4_74_24 c3_74_71 c4_75_19 c4_75_20 c4_75_21 set community 0:3 route-map calculator permit 10587 match community c4_75_22 c4_75_23 c4_75_24 c4_75_25 c3_75_72 set community 0:3 route-map calculator permit 10588 match community c4_76_20 c4_76_21 c4_76_22 c4_76_23 c4_76_24 set community 0:3 route-map calculator permit 10589 match community c4_76_25 c3_76_73 c4_77_20 c4_77_21 c4_77_22 set community 0:3 route-map calculator permit 10590 match community c4_77_23 c4_77_24 c4_77_25 c3_77_74 c4_78_20 set community 0:3 route-map calculator permit 10591 match community c4_78_21 c4_78_22 c4_78_23 c4_78_24 c4_78_25 set community 0:3 route-map calculator permit 10592 match community c4_78_26 c3_78_75 c4_79_20 c4_79_21 c4_79_22 set community 0:3 route-map calculator permit 10593 match community c4_79_23 c4_79_24 c4_79_25 c4_79_26 c3_79_76 set community 0:3 route-map calculator permit 10594 match community c4_80_21 c4_80_22 c4_80_23 c4_80_24 c4_80_25 set community 0:3 route-map calculator permit 10595 match community c4_80_26 c3_80_77 c4_81_21 c4_81_22 c4_81_23 set community 0:3 route-map calculator permit 10596 match community c4_81_24 c4_81_25 c4_81_26 c4_81_27 c3_81_78 set community 0:3 route-map calculator permit 10597 match community c4_82_21 c4_82_22 c4_82_23 c4_82_24 c4_82_25 set community 0:3 route-map calculator permit 10598 match community c4_82_26 c4_82_27 c3_82_79 c4_83_21 c4_83_22 set community 0:3 route-map calculator permit 10599 match community c4_83_23 c4_83_24 c4_83_25 c4_83_26 c4_83_27 set community 0:3 route-map calculator permit 10600 match community c3_83_80 c4_84_22 c4_84_23 c4_84_24 c4_84_25 set community 0:3 route-map calculator permit 10601 match community c4_84_26 c4_84_27 c4_84_28 c3_84_81 c4_85_22 set community 0:3 route-map calculator permit 10602 match community c4_85_23 c4_85_24 c4_85_25 c4_85_26 c4_85_27 set community 0:3 route-map calculator permit 10603 match community c4_85_28 c3_85_82 c4_86_22 c4_86_23 c4_86_24 set community 0:3 route-map calculator permit 10604 match community c4_86_25 c4_86_26 c4_86_27 c4_86_28 c3_86_83 set community 0:3 route-map calculator permit 10605 match community c4_87_22 c4_87_23 c4_87_24 c4_87_25 c4_87_26 set community 0:3 route-map calculator permit 10606 match community c4_87_27 c4_87_28 c4_87_29 c3_87_84 c4_88_23 set community 0:3 route-map calculator permit 10607 match community c4_88_24 c4_88_25 c4_88_26 c4_88_27 c4_88_28 set community 0:3 route-map calculator permit 10608 match community c4_88_29 c3_88_85 c4_89_23 c4_89_24 c4_89_25 set community 0:3 route-map calculator permit 10609 match community c4_89_26 c4_89_27 c4_89_28 c4_89_29 c3_89_86 set community 0:3 route-map calculator permit 10610 match community c4_90_23 c4_90_24 c4_90_25 c4_90_26 c4_90_27 set community 0:3 route-map calculator permit 10611 match community c4_90_28 c4_90_29 c4_90_30 c3_90_87 c4_91_23 set community 0:3 route-map calculator permit 10612 match community c4_91_24 c4_91_25 c4_91_26 c4_91_27 c4_91_28 set community 0:3 route-map calculator permit 10613 match community c4_91_29 c4_91_30 c3_91_88 c4_92_24 c4_92_25 set community 0:3 route-map calculator permit 10614 match community c4_92_26 c4_92_27 c4_92_28 c4_92_29 c4_92_30 set community 0:3 route-map calculator permit 10615 match community c3_92_89 c4_93_24 c4_93_25 c4_93_26 c4_93_27 set community 0:3 route-map calculator permit 10616 match community c4_93_28 c4_93_29 c4_93_30 c4_93_31 c3_93_90 set community 0:3 route-map calculator permit 10617 match community c4_94_24 c4_94_25 c4_94_26 c4_94_27 c4_94_28 set community 0:3 route-map calculator permit 10618 match community c4_94_29 c4_94_30 c4_94_31 c3_94_91 c4_95_24 set community 0:3 route-map calculator permit 10619 match community c4_95_25 c4_95_26 c4_95_27 c4_95_28 c4_95_29 set community 0:3 route-map calculator permit 10620 match community c4_95_30 c4_95_31 c3_95_92 c4_96_25 c4_96_26 set community 0:3 route-map calculator permit 10621 match community c4_96_27 c4_96_28 c4_96_29 c4_96_30 c4_96_31 set community 0:3 route-map calculator permit 10622 match community c4_96_32 c3_96_93 c4_97_25 c4_97_26 c4_97_27 set community 0:3 route-map calculator permit 10623 match community c4_97_28 c4_97_29 c4_97_30 c4_97_31 c4_97_32 set community 0:3 route-map calculator permit 10624 match community c3_97_94 c4_98_25 c4_98_26 c4_98_27 c4_98_28 set community 0:3 route-map calculator permit 10625 match community c4_98_29 c4_98_30 c4_98_31 c4_98_32 c3_98_95 set community 0:3 route-map calculator permit 10626 match community c4_99_25 c4_99_26 c4_99_27 c4_99_28 c4_99_29 set community 0:3 route-map calculator permit 10627 match community c4_99_30 c4_99_31 c4_99_32 c4_99_33 c3_99_96 set community 0:3 route-map calculator permit 10628 match community c4_100_26 c4_100_27 c4_100_28 c4_100_29 c4_100_30 set community 0:3 route-map calculator permit 10629 match community c4_100_31 c4_100_32 c4_100_33 c3_100_97 c4_101_26 set community 0:3 route-map calculator permit 10630 match community c4_101_27 c4_101_28 c4_101_29 c4_101_30 c4_101_31 set community 0:3 route-map calculator permit 10631 match community c4_101_32 c4_101_33 c3_101_98 c4_102_26 c4_102_27 set community 0:3 route-map calculator permit 10632 match community c4_102_28 c4_102_29 c4_102_30 c4_102_31 c4_102_32 set community 0:3 route-map calculator permit 10633 match community c4_102_33 c4_102_34 c3_102_99 c4_103_26 c4_103_27 set community 0:3 route-map calculator permit 10634 match community c4_103_28 c4_103_29 c4_103_30 c4_103_31 c4_103_32 set community 0:3 route-map calculator permit 10635 match community c4_103_33 c4_103_34 c3_103_100 c4_104_27 c4_104_28 set community 0:3 route-map calculator permit 10636 match community c4_104_29 c4_104_30 c4_104_31 c4_104_32 c4_104_33 set community 0:3 route-map calculator permit 10637 match community c4_104_34 c3_104_101 c4_105_27 c4_105_28 c4_105_29 set community 0:3 route-map calculator permit 10638 match community c4_105_30 c4_105_31 c4_105_32 c4_105_33 c4_105_34 set community 0:3 route-map calculator permit 10639 match community c4_105_35 c3_105_102 c4_106_27 c4_106_28 c4_106_29 set community 0:3 route-map calculator permit 10640 match community c4_106_30 c4_106_31 c4_106_32 c4_106_33 c4_106_34 set community 0:3 route-map calculator permit 10641 match community c4_106_35 c3_106_103 c4_107_27 c4_107_28 c4_107_29 set community 0:3 route-map calculator permit 10642 match community c4_107_30 c4_107_31 c4_107_32 c4_107_33 c4_107_34 set community 0:3 route-map calculator permit 10643 match community c4_107_35 c3_107_104 c4_108_28 c4_108_29 c4_108_30 set community 0:3 route-map calculator permit 10644 match community c4_108_31 c4_108_32 c4_108_33 c4_108_34 c4_108_35 set community 0:3 route-map calculator permit 10645 match community c4_108_36 c3_108_105 c4_109_28 c4_109_29 c4_109_30 set community 0:3 route-map calculator permit 10646 match community c4_109_31 c4_109_32 c4_109_33 c4_109_34 c4_109_35 set community 0:3 route-map calculator permit 10647 match community c4_109_36 c3_109_106 c4_110_28 c4_110_29 c4_110_30 set community 0:3 route-map calculator permit 10648 match community c4_110_31 c4_110_32 c4_110_33 c4_110_34 c4_110_35 set community 0:3 route-map calculator permit 10649 match community c4_110_36 c3_110_107 c4_111_28 c4_111_29 c4_111_30 set community 0:3 route-map calculator permit 10650 match community c4_111_31 c4_111_32 c4_111_33 c4_111_34 c4_111_35 set community 0:3 route-map calculator permit 10651 match community c4_111_36 c4_111_37 c3_111_108 c4_112_29 c4_112_30 set community 0:3 route-map calculator permit 10652 match community c4_112_31 c4_112_32 c4_112_33 c4_112_34 c4_112_35 set community 0:3 route-map calculator permit 10653 match community c4_112_36 c4_112_37 c3_112_109 c4_113_29 c4_113_30 set community 0:3 route-map calculator permit 10654 match community c4_113_31 c4_113_32 c4_113_33 c4_113_34 c4_113_35 set community 0:3 route-map calculator permit 10655 match community c4_113_36 c4_113_37 c3_113_110 c4_114_29 c4_114_30 set community 0:3 route-map calculator permit 10656 match community c4_114_31 c4_114_32 c4_114_33 c4_114_34 c4_114_35 set community 0:3 route-map calculator permit 10657 match community c4_114_36 c4_114_37 c4_114_38 c3_114_111 c4_115_29 set community 0:3 route-map calculator permit 10658 match community c4_115_30 c4_115_31 c4_115_32 c4_115_33 c4_115_34 set community 0:3 route-map calculator permit 10659 match community c4_115_35 c4_115_36 c4_115_37 c4_115_38 c3_115_112 set community 0:3 route-map calculator permit 10660 match community c4_116_30 c4_116_31 c4_116_32 c4_116_33 c4_116_34 set community 0:3 route-map calculator permit 10661 match community c4_116_35 c4_116_36 c4_116_37 c4_116_38 c3_116_113 set community 0:3 route-map calculator permit 10662 match community c4_117_30 c4_117_31 c4_117_32 c4_117_33 c4_117_34 set community 0:3 route-map calculator permit 10663 match community c4_117_35 c4_117_36 c4_117_37 c4_117_38 c4_117_39 set community 0:3 route-map calculator permit 10664 match community c3_117_114 c4_118_30 c4_118_31 c4_118_32 c4_118_33 set community 0:3 route-map calculator permit 10665 match community c4_118_34 c4_118_35 c4_118_36 c4_118_37 c4_118_38 set community 0:3 route-map calculator permit 10666 match community c4_118_39 c3_118_115 c4_119_30 c4_119_31 c4_119_32 set community 0:3 route-map calculator permit 10667 match community c4_119_33 c4_119_34 c4_119_35 c4_119_36 c4_119_37 set community 0:3 route-map calculator permit 10668 match community c4_119_38 c4_119_39 c3_119_116 c4_120_31 c4_120_32 set community 0:3 route-map calculator permit 10669 match community c4_120_33 c4_120_34 c4_120_35 c4_120_36 c4_120_37 set community 0:3 route-map calculator permit 10670 match community c4_120_38 c4_120_39 c4_120_40 c3_120_117 c4_121_31 set community 0:3 route-map calculator permit 10671 match community c4_121_32 c4_121_33 c4_121_34 c4_121_35 c4_121_36 set community 0:3 route-map calculator permit 10672 match community c4_121_37 c4_121_38 c4_121_39 c4_121_40 c3_121_118 set community 0:3 route-map calculator permit 10673 match community c4_122_31 c4_122_32 c4_122_33 c4_122_34 c4_122_35 set community 0:3 route-map calculator permit 10674 match community c4_122_36 c4_122_37 c4_122_38 c4_122_39 c4_122_40 set community 0:3 route-map calculator permit 10675 match community c3_122_119 c4_123_31 c4_123_32 c4_123_33 c4_123_34 set community 0:3 route-map calculator permit 10676 match community c4_123_35 c4_123_36 c4_123_37 c4_123_38 c4_123_39 set community 0:3 route-map calculator permit 10677 match community c4_123_40 c4_123_41 c3_123_120 c4_124_32 c4_124_33 set community 0:3 route-map calculator permit 10678 match community c4_124_34 c4_124_35 c4_124_36 c4_124_37 c4_124_38 set community 0:3 route-map calculator permit 10679 match community c4_124_39 c4_124_40 c4_124_41 c3_124_121 c4_125_32 set community 0:3 route-map calculator permit 10680 match community c4_125_33 c4_125_34 c4_125_35 c4_125_36 c4_125_37 set community 0:3 route-map calculator permit 10681 match community c4_125_38 c4_125_39 c4_125_40 c4_125_41 c3_125_122 set community 0:3 route-map calculator permit 10682 match community c4_126_32 c4_126_33 c4_126_34 c4_126_35 c4_126_36 set community 0:3 route-map calculator permit 10683 match community c4_126_37 c4_126_38 c4_126_39 c4_126_40 c4_126_41 set community 0:3 route-map calculator permit 10684 match community c4_126_42 c3_126_123 c4_127_32 c4_127_33 c4_127_34 set community 0:3 route-map calculator permit 10685 match community c4_127_35 c4_127_36 c4_127_37 c4_127_38 c4_127_39 set community 0:3 route-map calculator permit 10686 match community c4_127_40 c4_127_41 c4_127_42 c3_127_124 c4_128_33 set community 0:3 route-map calculator permit 10687 match community c4_128_34 c4_128_35 c4_128_36 c4_128_37 c4_128_38 set community 0:3 route-map calculator permit 10688 match community c4_128_39 c4_128_40 c4_128_41 c4_128_42 c3_128_125 set community 0:3 route-map calculator permit 10689 match community c4_129_33 c4_129_34 c4_129_35 c4_129_36 c4_129_37 set community 0:3 route-map calculator permit 10690 match community c4_129_38 c4_129_39 c4_129_40 c4_129_41 c4_129_42 set community 0:3 route-map calculator permit 10691 match community c4_129_43 c3_129_126 c4_130_33 c4_130_34 c4_130_35 set community 0:3 route-map calculator permit 10692 match community c4_130_36 c4_130_37 c4_130_38 c4_130_39 c4_130_40 set community 0:3 route-map calculator permit 10693 match community c4_130_41 c4_130_42 c4_130_43 c3_130_127 c4_131_33 set community 0:3 route-map calculator permit 10694 match community c4_131_34 c4_131_35 c4_131_36 c4_131_37 c4_131_38 set community 0:3 route-map calculator permit 10695 match community c4_131_39 c4_131_40 c4_131_41 c4_131_42 c4_131_43 set community 0:3 route-map calculator permit 10696 match community c3_131_128 c4_132_34 c4_132_35 c4_132_36 c4_132_37 set community 0:3 route-map calculator permit 10697 match community c4_132_38 c4_132_39 c4_132_40 c4_132_41 c4_132_42 set community 0:3 route-map calculator permit 10698 match community c4_132_43 c4_132_44 c3_132_129 c4_133_34 c4_133_35 set community 0:3 route-map calculator permit 10699 match community c4_133_36 c4_133_37 c4_133_38 c4_133_39 c4_133_40 set community 0:3 route-map calculator permit 10700 match community c4_133_41 c4_133_42 c4_133_43 c4_133_44 c3_133_130 set community 0:3 route-map calculator permit 10701 match community c4_134_34 c4_134_35 c4_134_36 c4_134_37 c4_134_38 set community 0:3 route-map calculator permit 10702 match community c4_134_39 c4_134_40 c4_134_41 c4_134_42 c4_134_43 set community 0:3 route-map calculator permit 10703 match community c4_134_44 c3_134_131 c4_135_34 c4_135_35 c4_135_36 set community 0:3 route-map calculator permit 10704 match community c4_135_37 c4_135_38 c4_135_39 c4_135_40 c4_135_41 set community 0:3 route-map calculator permit 10705 match community c4_135_42 c4_135_43 c4_135_44 c4_135_45 c3_135_132 set community 0:3 route-map calculator permit 10706 match community c4_136_35 c4_136_36 c4_136_37 c4_136_38 c4_136_39 set community 0:3 route-map calculator permit 10707 match community c4_136_40 c4_136_41 c4_136_42 c4_136_43 c4_136_44 set community 0:3 route-map calculator permit 10708 match community c4_136_45 c3_136_133 c4_137_35 c4_137_36 c4_137_37 set community 0:3 route-map calculator permit 10709 match community c4_137_38 c4_137_39 c4_137_40 c4_137_41 c4_137_42 set community 0:3 route-map calculator permit 10710 match community c4_137_43 c4_137_44 c4_137_45 c3_137_134 c4_138_35 set community 0:3 route-map calculator permit 10711 match community c4_138_36 c4_138_37 c4_138_38 c4_138_39 c4_138_40 set community 0:3 route-map calculator permit 10712 match community c4_138_41 c4_138_42 c4_138_43 c4_138_44 c4_138_45 set community 0:3 route-map calculator permit 10713 match community c4_138_46 c3_138_135 c4_139_35 c4_139_36 c4_139_37 set community 0:3 route-map calculator permit 10714 match community c4_139_38 c4_139_39 c4_139_40 c4_139_41 c4_139_42 set community 0:3 route-map calculator permit 10715 match community c4_139_43 c4_139_44 c4_139_45 c4_139_46 c3_139_136 set community 0:3 route-map calculator permit 10716 match community c4_140_36 c4_140_37 c4_140_38 c4_140_39 c4_140_40 set community 0:3 route-map calculator permit 10717 match community c4_140_41 c4_140_42 c4_140_43 c4_140_44 c4_140_45 set community 0:3 route-map calculator permit 10718 match community c4_140_46 c3_140_137 c4_141_36 c4_141_37 c4_141_38 set community 0:3 route-map calculator permit 10719 match community c4_141_39 c4_141_40 c4_141_41 c4_141_42 c4_141_43 set community 0:3 route-map calculator permit 10720 match community c4_141_44 c4_141_45 c4_141_46 c4_141_47 c3_141_138 set community 0:3 route-map calculator permit 10721 match community c4_142_36 c4_142_37 c4_142_38 c4_142_39 c4_142_40 set community 0:3 route-map calculator permit 10722 match community c4_142_41 c4_142_42 c4_142_43 c4_142_44 c4_142_45 set community 0:3 route-map calculator permit 10723 match community c4_142_46 c4_142_47 c3_142_139 c4_143_36 c4_143_37 set community 0:3 route-map calculator permit 10724 match community c4_143_38 c4_143_39 c4_143_40 c4_143_41 c4_143_42 set community 0:3 route-map calculator permit 10725 match community c4_143_43 c4_143_44 c4_143_45 c4_143_46 c4_143_47 set community 0:3 route-map calculator permit 10726 match community c3_143_140 c4_144_37 c4_144_38 c4_144_39 c4_144_40 set community 0:3 route-map calculator permit 10727 match community c4_144_41 c4_144_42 c4_144_43 c4_144_44 c4_144_45 set community 0:3 route-map calculator permit 10728 match community c4_144_46 c4_144_47 c4_144_48 c3_144_141 c4_145_37 set community 0:3 route-map calculator permit 10729 match community c4_145_38 c4_145_39 c4_145_40 c4_145_41 c4_145_42 set community 0:3 route-map calculator permit 10730 match community c4_145_43 c4_145_44 c4_145_45 c4_145_46 c4_145_47 set community 0:3 route-map calculator permit 10731 match community c4_145_48 c3_145_142 c4_146_37 c4_146_38 c4_146_39 set community 0:3 route-map calculator permit 10732 match community c4_146_40 c4_146_41 c4_146_42 c4_146_43 c4_146_44 set community 0:3 route-map calculator permit 10733 match community c4_146_45 c4_146_46 c4_146_47 c4_146_48 c3_146_143 set community 0:3 route-map calculator permit 10734 match community c4_147_37 c4_147_38 c4_147_39 c4_147_40 c4_147_41 set community 0:3 route-map calculator permit 10735 match community c4_147_42 c4_147_43 c4_147_44 c4_147_45 c4_147_46 set community 0:3 route-map calculator permit 10736 match community c4_147_47 c4_147_48 c4_147_49 c3_147_144 c4_148_38 set community 0:3 route-map calculator permit 10737 match community c4_148_39 c4_148_40 c4_148_41 c4_148_42 c4_148_43 set community 0:3 route-map calculator permit 10738 match community c4_148_44 c4_148_45 c4_148_46 c4_148_47 c4_148_48 set community 0:3 route-map calculator permit 10739 match community c4_148_49 c3_148_145 c4_149_38 c4_149_39 c4_149_40 set community 0:3 route-map calculator permit 10740 match community c4_149_41 c4_149_42 c4_149_43 c4_149_44 c4_149_45 set community 0:3 route-map calculator permit 10741 match community c4_149_46 c4_149_47 c4_149_48 c4_149_49 c3_149_146 set community 0:3 route-map calculator permit 10742 match community c4_150_38 c4_150_39 c4_150_40 c4_150_41 c4_150_42 set community 0:3 route-map calculator permit 10743 match community c4_150_43 c4_150_44 c4_150_45 c4_150_46 c4_150_47 set community 0:3 route-map calculator permit 10744 match community c4_150_48 c4_150_49 c4_150_50 c3_150_147 c4_151_38 set community 0:3 route-map calculator permit 10745 match community c4_151_39 c4_151_40 c4_151_41 c4_151_42 c4_151_43 set community 0:3 route-map calculator permit 10746 match community c4_151_44 c4_151_45 c4_151_46 c4_151_47 c4_151_48 set community 0:3 route-map calculator permit 10747 match community c4_151_49 c4_151_50 c3_151_148 c4_152_39 c4_152_40 set community 0:3 route-map calculator permit 10748 match community c4_152_41 c4_152_42 c4_152_43 c4_152_44 c4_152_45 set community 0:3 route-map calculator permit 10749 match community c4_152_46 c4_152_47 c4_152_48 c4_152_49 c4_152_50 set community 0:3 route-map calculator permit 10750 match community c3_152_149 c4_153_39 c4_153_40 c4_153_41 c4_153_42 set community 0:3 route-map calculator permit 10751 match community c4_153_43 c4_153_44 c4_153_45 c4_153_46 c4_153_47 set community 0:3 route-map calculator permit 10752 match community c4_153_48 c4_153_49 c4_153_50 c4_153_51 c3_153_150 set community 0:3 route-map calculator permit 10753 match community c4_154_39 c4_154_40 c4_154_41 c4_154_42 c4_154_43 set community 0:3 route-map calculator permit 10754 match community c4_154_44 c4_154_45 c4_154_46 c4_154_47 c4_154_48 set community 0:3 route-map calculator permit 10755 match community c4_154_49 c4_154_50 c4_154_51 c3_154_151 c4_155_39 set community 0:3 route-map calculator permit 10756 match community c4_155_40 c4_155_41 c4_155_42 c4_155_43 c4_155_44 set community 0:3 route-map calculator permit 10757 match community c4_155_45 c4_155_46 c4_155_47 c4_155_48 c4_155_49 set community 0:3 route-map calculator permit 10758 match community c4_155_50 c4_155_51 c3_155_152 c4_156_40 c4_156_41 set community 0:3 route-map calculator permit 10759 match community c4_156_42 c4_156_43 c4_156_44 c4_156_45 c4_156_46 set community 0:3 route-map calculator permit 10760 match community c4_156_47 c4_156_48 c4_156_49 c4_156_50 c4_156_51 set community 0:3 route-map calculator permit 10761 match community c4_156_52 c3_156_153 c4_157_40 c4_157_41 c4_157_42 set community 0:3 route-map calculator permit 10762 match community c4_157_43 c4_157_44 c4_157_45 c4_157_46 c4_157_47 set community 0:3 route-map calculator permit 10763 match community c4_157_48 c4_157_49 c4_157_50 c4_157_51 c4_157_52 set community 0:3 route-map calculator permit 10764 match community c3_157_154 c4_158_40 c4_158_41 c4_158_42 c4_158_43 set community 0:3 route-map calculator permit 10765 match community c4_158_44 c4_158_45 c4_158_46 c4_158_47 c4_158_48 set community 0:3 route-map calculator permit 10766 match community c4_158_49 c4_158_50 c4_158_51 c4_158_52 c3_158_155 set community 0:3 route-map calculator permit 10767 match community c4_159_40 c4_159_41 c4_159_42 c4_159_43 c4_159_44 set community 0:3 route-map calculator permit 10768 match community c4_159_45 c4_159_46 c4_159_47 c4_159_48 c4_159_49 set community 0:3 route-map calculator permit 10769 match community c4_159_50 c4_159_51 c4_159_52 c4_159_53 c3_159_156 set community 0:3 route-map calculator permit 10770 match community c4_160_41 c4_160_42 c4_160_43 c4_160_44 c4_160_45 set community 0:3 route-map calculator permit 10771 match community c4_160_46 c4_160_47 c4_160_48 c4_160_49 c4_160_50 set community 0:3 route-map calculator permit 10772 match community c4_160_51 c4_160_52 c4_160_53 c3_160_157 c4_161_41 set community 0:3 route-map calculator permit 10773 match community c4_161_42 c4_161_43 c4_161_44 c4_161_45 c4_161_46 set community 0:3 route-map calculator permit 10774 match community c4_161_47 c4_161_48 c4_161_49 c4_161_50 c4_161_51 set community 0:3 route-map calculator permit 10775 match community c4_161_52 c4_161_53 c3_161_158 c4_162_41 c4_162_42 set community 0:3 route-map calculator permit 10776 match community c4_162_43 c4_162_44 c4_162_45 c4_162_46 c4_162_47 set community 0:3 route-map calculator permit 10777 match community c4_162_48 c4_162_49 c4_162_50 c4_162_51 c4_162_52 set community 0:3 route-map calculator permit 10778 match community c4_162_53 c4_162_54 c3_162_159 c4_163_41 c4_163_42 set community 0:3 route-map calculator permit 10779 match community c4_163_43 c4_163_44 c4_163_45 c4_163_46 c4_163_47 set community 0:3 route-map calculator permit 10780 match community c4_163_48 c4_163_49 c4_163_50 c4_163_51 c4_163_52 set community 0:3 route-map calculator permit 10781 match community c4_163_53 c4_163_54 c3_163_160 c4_164_42 c4_164_43 set community 0:3 route-map calculator permit 10782 match community c4_164_44 c4_164_45 c4_164_46 c4_164_47 c4_164_48 set community 0:3 route-map calculator permit 10783 match community c4_164_49 c4_164_50 c4_164_51 c4_164_52 c4_164_53 set community 0:3 route-map calculator permit 10784 match community c4_164_54 c3_164_161 c4_165_42 c4_165_43 c4_165_44 set community 0:3 route-map calculator permit 10785 match community c4_165_45 c4_165_46 c4_165_47 c4_165_48 c4_165_49 set community 0:3 route-map calculator permit 10786 match community c4_165_50 c4_165_51 c4_165_52 c4_165_53 c4_165_54 set community 0:3 route-map calculator permit 10787 match community c4_165_55 c3_165_162 c4_166_42 c4_166_43 c4_166_44 set community 0:3 route-map calculator permit 10788 match community c4_166_45 c4_166_46 c4_166_47 c4_166_48 c4_166_49 set community 0:3 route-map calculator permit 10789 match community c4_166_50 c4_166_51 c4_166_52 c4_166_53 c4_166_54 set community 0:3 route-map calculator permit 10790 match community c4_166_55 c3_166_163 c4_167_42 c4_167_43 c4_167_44 set community 0:3 route-map calculator permit 10791 match community c4_167_45 c4_167_46 c4_167_47 c4_167_48 c4_167_49 set community 0:3 route-map calculator permit 10792 match community c4_167_50 c4_167_51 c4_167_52 c4_167_53 c4_167_54 set community 0:3 route-map calculator permit 10793 match community c4_167_55 c3_167_164 c4_168_43 c4_168_44 c4_168_45 set community 0:3 route-map calculator permit 10794 match community c4_168_46 c4_168_47 c4_168_48 c4_168_49 c4_168_50 set community 0:3 route-map calculator permit 10795 match community c4_168_51 c4_168_52 c4_168_53 c4_168_54 c4_168_55 set community 0:3 route-map calculator permit 10796 match community c4_168_56 c3_168_165 c4_169_43 c4_169_44 c4_169_45 set community 0:3 route-map calculator permit 10797 match community c4_169_46 c4_169_47 c4_169_48 c4_169_49 c4_169_50 set community 0:3 route-map calculator permit 10798 match community c4_169_51 c4_169_52 c4_169_53 c4_169_54 c4_169_55 set community 0:3 route-map calculator permit 10799 match community c4_169_56 c3_169_166 c4_170_43 c4_170_44 c4_170_45 set community 0:3 route-map calculator permit 10800 match community c4_170_46 c4_170_47 c4_170_48 c4_170_49 c4_170_50 set community 0:3 route-map calculator permit 10801 match community c4_170_51 c4_170_52 c4_170_53 c4_170_54 c4_170_55 set community 0:3 route-map calculator permit 10802 match community c4_170_56 c3_170_167 c4_171_43 c4_171_44 c4_171_45 set community 0:3 route-map calculator permit 10803 match community c4_171_46 c4_171_47 c4_171_48 c4_171_49 c4_171_50 set community 0:3 route-map calculator permit 10804 match community c4_171_51 c4_171_52 c4_171_53 c4_171_54 c4_171_55 set community 0:3 route-map calculator permit 10805 match community c4_171_56 c4_171_57 c3_171_168 c4_172_44 c4_172_45 set community 0:3 route-map calculator permit 10806 match community c4_172_46 c4_172_47 c4_172_48 c4_172_49 c4_172_50 set community 0:3 route-map calculator permit 10807 match community c4_172_51 c4_172_52 c4_172_53 c4_172_54 c4_172_55 set community 0:3 route-map calculator permit 10808 match community c4_172_56 c4_172_57 c3_172_169 c4_173_44 c4_173_45 set community 0:3 route-map calculator permit 10809 match community c4_173_46 c4_173_47 c4_173_48 c4_173_49 c4_173_50 set community 0:3 route-map calculator permit 10810 match community c4_173_51 c4_173_52 c4_173_53 c4_173_54 c4_173_55 set community 0:3 route-map calculator permit 10811 match community c4_173_56 c4_173_57 c3_173_170 c4_174_44 c4_174_45 set community 0:3 route-map calculator permit 10812 match community c4_174_46 c4_174_47 c4_174_48 c4_174_49 c4_174_50 set community 0:3 route-map calculator permit 10813 match community c4_174_51 c4_174_52 c4_174_53 c4_174_54 c4_174_55 set community 0:3 route-map calculator permit 10814 match community c4_174_56 c4_174_57 c4_174_58 c3_174_171 c4_175_44 set community 0:3 route-map calculator permit 10815 match community c4_175_45 c4_175_46 c4_175_47 c4_175_48 c4_175_49 set community 0:3 route-map calculator permit 10816 match community c4_175_50 c4_175_51 c4_175_52 c4_175_53 c4_175_54 set community 0:3 route-map calculator permit 10817 match community c4_175_55 c4_175_56 c4_175_57 c4_175_58 c3_175_172 set community 0:3 route-map calculator permit 10818 match community c4_176_45 c4_176_46 c4_176_47 c4_176_48 c4_176_49 set community 0:3 route-map calculator permit 10819 match community c4_176_50 c4_176_51 c4_176_52 c4_176_53 c4_176_54 set community 0:3 route-map calculator permit 10820 match community c4_176_55 c4_176_56 c4_176_57 c4_176_58 c3_176_173 set community 0:3 route-map calculator permit 10821 match community c4_177_45 c4_177_46 c4_177_47 c4_177_48 c4_177_49 set community 0:3 route-map calculator permit 10822 match community c4_177_50 c4_177_51 c4_177_52 c4_177_53 c4_177_54 set community 0:3 route-map calculator permit 10823 match community c4_177_55 c4_177_56 c4_177_57 c4_177_58 c4_177_59 set community 0:3 route-map calculator permit 10824 match community c3_177_174 c4_178_45 c4_178_46 c4_178_47 c4_178_48 set community 0:3 route-map calculator permit 10825 match community c4_178_49 c4_178_50 c4_178_51 c4_178_52 c4_178_53 set community 0:3 route-map calculator permit 10826 match community c4_178_54 c4_178_55 c4_178_56 c4_178_57 c4_178_58 set community 0:3 route-map calculator permit 10827 match community c4_178_59 c3_178_175 c4_179_45 c4_179_46 c4_179_47 set community 0:3 route-map calculator permit 10828 match community c4_179_48 c4_179_49 c4_179_50 c4_179_51 c4_179_52 set community 0:3 route-map calculator permit 10829 match community c4_179_53 c4_179_54 c4_179_55 c4_179_56 c4_179_57 set community 0:3 route-map calculator permit 10830 match community c4_179_58 c4_179_59 c3_179_176 c4_180_46 c4_180_47 set community 0:3 route-map calculator permit 10831 match community c4_180_48 c4_180_49 c4_180_50 c4_180_51 c4_180_52 set community 0:3 route-map calculator permit 10832 match community c4_180_53 c4_180_54 c4_180_55 c4_180_56 c4_180_57 set community 0:3 route-map calculator permit 10833 match community c4_180_58 c4_180_59 c4_180_60 c3_180_177 c4_181_46 set community 0:3 route-map calculator permit 10834 match community c4_181_47 c4_181_48 c4_181_49 c4_181_50 c4_181_51 set community 0:3 route-map calculator permit 10835 match community c4_181_52 c4_181_53 c4_181_54 c4_181_55 c4_181_56 set community 0:3 route-map calculator permit 10836 match community c4_181_57 c4_181_58 c4_181_59 c4_181_60 c3_181_178 set community 0:3 route-map calculator permit 10837 match community c4_182_46 c4_182_47 c4_182_48 c4_182_49 c4_182_50 set community 0:3 route-map calculator permit 10838 match community c4_182_51 c4_182_52 c4_182_53 c4_182_54 c4_182_55 set community 0:3 route-map calculator permit 10839 match community c4_182_56 c4_182_57 c4_182_58 c4_182_59 c4_182_60 set community 0:3 route-map calculator permit 10840 match community c3_182_179 c4_183_46 c4_183_47 c4_183_48 c4_183_49 set community 0:3 route-map calculator permit 10841 match community c4_183_50 c4_183_51 c4_183_52 c4_183_53 c4_183_54 set community 0:3 route-map calculator permit 10842 match community c4_183_55 c4_183_56 c4_183_57 c4_183_58 c4_183_59 set community 0:3 route-map calculator permit 10843 match community c4_183_60 c4_183_61 c3_183_180 c4_184_47 c4_184_48 set community 0:3 route-map calculator permit 10844 match community c4_184_49 c4_184_50 c4_184_51 c4_184_52 c4_184_53 set community 0:3 route-map calculator permit 10845 match community c4_184_54 c4_184_55 c4_184_56 c4_184_57 c4_184_58 set community 0:3 route-map calculator permit 10846 match community c4_184_59 c4_184_60 c4_184_61 c3_184_181 c4_185_47 set community 0:3 route-map calculator permit 10847 match community c4_185_48 c4_185_49 c4_185_50 c4_185_51 c4_185_52 set community 0:3 route-map calculator permit 10848 match community c4_185_53 c4_185_54 c4_185_55 c4_185_56 c4_185_57 set community 0:3 route-map calculator permit 10849 match community c4_185_58 c4_185_59 c4_185_60 c4_185_61 c3_185_182 set community 0:3 route-map calculator permit 10850 match community c4_186_47 c4_186_48 c4_186_49 c4_186_50 c4_186_51 set community 0:3 route-map calculator permit 10851 match community c4_186_52 c4_186_53 c4_186_54 c4_186_55 c4_186_56 set community 0:3 route-map calculator permit 10852 match community c4_186_57 c4_186_58 c4_186_59 c4_186_60 c4_186_61 set community 0:3 route-map calculator permit 10853 match community c4_186_62 c3_186_183 c4_187_47 c4_187_48 c4_187_49 set community 0:3 route-map calculator permit 10854 match community c4_187_50 c4_187_51 c4_187_52 c4_187_53 c4_187_54 set community 0:3 route-map calculator permit 10855 match community c4_187_55 c4_187_56 c4_187_57 c4_187_58 c4_187_59 set community 0:3 route-map calculator permit 10856 match community c4_187_60 c4_187_61 c4_187_62 c3_187_184 c4_188_48 set community 0:3 route-map calculator permit 10857 match community c4_188_49 c4_188_50 c4_188_51 c4_188_52 c4_188_53 set community 0:3 route-map calculator permit 10858 match community c4_188_54 c4_188_55 c4_188_56 c4_188_57 c4_188_58 set community 0:3 route-map calculator permit 10859 match community c4_188_59 c4_188_60 c4_188_61 c4_188_62 c3_188_185 set community 0:3 route-map calculator permit 10860 match community c4_189_48 c4_189_49 c4_189_50 c4_189_51 c4_189_52 set community 0:3 route-map calculator permit 10861 match community c4_189_53 c4_189_54 c4_189_55 c4_189_56 c4_189_57 set community 0:3 route-map calculator permit 10862 match community c4_189_58 c4_189_59 c4_189_60 c4_189_61 c4_189_62 set community 0:3 route-map calculator permit 10863 match community c4_189_63 c3_189_186 c4_190_48 c4_190_49 c4_190_50 set community 0:3 route-map calculator permit 10864 match community c4_190_51 c4_190_52 c4_190_53 c4_190_54 c4_190_55 set community 0:3 route-map calculator permit 10865 match community c4_190_56 c4_190_57 c4_190_58 c4_190_59 c4_190_60 set community 0:3 route-map calculator permit 10866 match community c4_190_61 c4_190_62 c4_190_63 c3_190_187 c4_191_48 set community 0:3 route-map calculator permit 10867 match community c4_191_49 c4_191_50 c4_191_51 c4_191_52 c4_191_53 set community 0:3 route-map calculator permit 10868 match community c4_191_54 c4_191_55 c4_191_56 c4_191_57 c4_191_58 set community 0:3 route-map calculator permit 10869 match community c4_191_59 c4_191_60 c4_191_61 c4_191_62 c4_191_63 set community 0:3 route-map calculator permit 10870 match community c3_191_188 c4_192_49 c4_192_50 c4_192_51 c4_192_52 set community 0:3 route-map calculator permit 10871 match community c4_192_53 c4_192_54 c4_192_55 c4_192_56 c4_192_57 set community 0:3 route-map calculator permit 10872 match community c4_192_58 c4_192_59 c4_192_60 c4_192_61 c4_192_62 set community 0:3 route-map calculator permit 10873 match community c4_192_63 c4_192_64 c3_192_189 c4_193_49 c4_193_50 set community 0:3 route-map calculator permit 10874 match community c4_193_51 c4_193_52 c4_193_53 c4_193_54 c4_193_55 set community 0:3 route-map calculator permit 10875 match community c4_193_56 c4_193_57 c4_193_58 c4_193_59 c4_193_60 set community 0:3 route-map calculator permit 10876 match community c4_193_61 c4_193_62 c4_193_63 c4_193_64 c3_193_190 set community 0:3 route-map calculator permit 10877 match community c4_194_49 c4_194_50 c4_194_51 c4_194_52 c4_194_53 set community 0:3 route-map calculator permit 10878 match community c4_194_54 c4_194_55 c4_194_56 c4_194_57 c4_194_58 set community 0:3 route-map calculator permit 10879 match community c4_194_59 c4_194_60 c4_194_61 c4_194_62 c4_194_63 set community 0:3 route-map calculator permit 10880 match community c4_194_64 c3_194_191 c4_195_49 c4_195_50 c4_195_51 set community 0:3 route-map calculator permit 10881 match community c4_195_52 c4_195_53 c4_195_54 c4_195_55 c4_195_56 set community 0:3 route-map calculator permit 10882 match community c4_195_57 c4_195_58 c4_195_59 c4_195_60 c4_195_61 set community 0:3 route-map calculator permit 10883 match community c4_195_62 c4_195_63 c4_195_64 c4_195_65 c3_195_192 set community 0:3 route-map calculator permit 10884 match community c4_196_50 c4_196_51 c4_196_52 c4_196_53 c4_196_54 set community 0:3 route-map calculator permit 10885 match community c4_196_55 c4_196_56 c4_196_57 c4_196_58 c4_196_59 set community 0:3 route-map calculator permit 10886 match community c4_196_60 c4_196_61 c4_196_62 c4_196_63 c4_196_64 set community 0:3 route-map calculator permit 10887 match community c4_196_65 c3_196_193 c4_197_50 c4_197_51 c4_197_52 set community 0:3 route-map calculator permit 10888 match community c4_197_53 c4_197_54 c4_197_55 c4_197_56 c4_197_57 set community 0:3 route-map calculator permit 10889 match community c4_197_58 c4_197_59 c4_197_60 c4_197_61 c4_197_62 set community 0:3 route-map calculator permit 10890 match community c4_197_63 c4_197_64 c4_197_65 c3_197_194 c4_198_50 set community 0:3 route-map calculator permit 10891 match community c4_198_51 c4_198_52 c4_198_53 c4_198_54 c4_198_55 set community 0:3 route-map calculator permit 10892 match community c4_198_56 c4_198_57 c4_198_58 c4_198_59 c4_198_60 set community 0:3 route-map calculator permit 10893 match community c4_198_61 c4_198_62 c4_198_63 c4_198_64 c4_198_65 set community 0:3 route-map calculator permit 10894 match community c4_198_66 c3_198_195 c4_199_50 c4_199_51 c4_199_52 set community 0:3 route-map calculator permit 10895 match community c4_199_53 c4_199_54 c4_199_55 c4_199_56 c4_199_57 set community 0:3 route-map calculator permit 10896 match community c4_199_58 c4_199_59 c4_199_60 c4_199_61 c4_199_62 set community 0:3 route-map calculator permit 10897 match community c4_199_63 c4_199_64 c4_199_65 c4_199_66 c3_199_196 set community 0:3 route-map calculator permit 10898 match community c4_200_51 c4_200_52 c4_200_53 c4_200_54 c4_200_55 set community 0:3 route-map calculator permit 10899 match community c4_200_56 c4_200_57 c4_200_58 c4_200_59 c4_200_60 set community 0:3 route-map calculator permit 10900 match community c4_200_61 c4_200_62 c4_200_63 c4_200_64 c4_200_65 set community 0:3 route-map calculator permit 10901 match community c4_200_66 c3_200_197 c4_201_51 c4_201_52 c4_201_53 set community 0:3 route-map calculator permit 10902 match community c4_201_54 c4_201_55 c4_201_56 c4_201_57 c4_201_58 set community 0:3 route-map calculator permit 10903 match community c4_201_59 c4_201_60 c4_201_61 c4_201_62 c4_201_63 set community 0:3 route-map calculator permit 10904 match community c4_201_64 c4_201_65 c4_201_66 c4_201_67 c3_201_198 set community 0:3 route-map calculator permit 10905 match community c4_202_51 c4_202_52 c4_202_53 c4_202_54 c4_202_55 set community 0:3 route-map calculator permit 10906 match community c4_202_56 c4_202_57 c4_202_58 c4_202_59 c4_202_60 set community 0:3 route-map calculator permit 10907 match community c4_202_61 c4_202_62 c4_202_63 c4_202_64 c4_202_65 set community 0:3 route-map calculator permit 10908 match community c4_202_66 c4_202_67 c3_202_199 c4_203_51 c4_203_52 set community 0:3 route-map calculator permit 10909 match community c4_203_53 c4_203_54 c4_203_55 c4_203_56 c4_203_57 set community 0:3 route-map calculator permit 10910 match community c4_203_58 c4_203_59 c4_203_60 c4_203_61 c4_203_62 set community 0:3 route-map calculator permit 10911 match community c4_203_63 c4_203_64 c4_203_65 c4_203_66 c4_203_67 set community 0:3 route-map calculator permit 10912 match community c3_203_200 c4_204_52 c4_204_53 c4_204_54 c4_204_55 set community 0:3 route-map calculator permit 10913 match community c4_204_56 c4_204_57 c4_204_58 c4_204_59 c4_204_60 set community 0:3 route-map calculator permit 10914 match community c4_204_61 c4_204_62 c4_204_63 c4_204_64 c4_204_65 set community 0:3 route-map calculator permit 10915 match community c4_204_66 c4_204_67 c4_204_68 c3_204_201 c4_205_52 set community 0:3 route-map calculator permit 10916 match community c4_205_53 c4_205_54 c4_205_55 c4_205_56 c4_205_57 set community 0:3 route-map calculator permit 10917 match community c4_205_58 c4_205_59 c4_205_60 c4_205_61 c4_205_62 set community 0:3 route-map calculator permit 10918 match community c4_205_63 c4_205_64 c4_205_65 c4_205_66 c4_205_67 set community 0:3 route-map calculator permit 10919 match community c4_205_68 c3_205_202 c4_206_52 c4_206_53 c4_206_54 set community 0:3 route-map calculator permit 10920 match community c4_206_55 c4_206_56 c4_206_57 c4_206_58 c4_206_59 set community 0:3 route-map calculator permit 10921 match community c4_206_60 c4_206_61 c4_206_62 c4_206_63 c4_206_64 set community 0:3 route-map calculator permit 10922 match community c4_206_65 c4_206_66 c4_206_67 c4_206_68 c3_206_203 set community 0:3 route-map calculator permit 10923 match community c4_207_52 c4_207_53 c4_207_54 c4_207_55 c4_207_56 set community 0:3 route-map calculator permit 10924 match community c4_207_57 c4_207_58 c4_207_59 c4_207_60 c4_207_61 set community 0:3 route-map calculator permit 10925 match community c4_207_62 c4_207_63 c4_207_64 c4_207_65 c4_207_66 set community 0:3 route-map calculator permit 10926 match community c4_207_67 c4_207_68 c4_207_69 c3_207_204 c4_208_53 set community 0:3 route-map calculator permit 10927 match community c4_208_54 c4_208_55 c4_208_56 c4_208_57 c4_208_58 set community 0:3 route-map calculator permit 10928 match community c4_208_59 c4_208_60 c4_208_61 c4_208_62 c4_208_63 set community 0:3 route-map calculator permit 10929 match community c4_208_64 c4_208_65 c4_208_66 c4_208_67 c4_208_68 set community 0:3 route-map calculator permit 10930 match community c4_208_69 c3_208_205 c4_209_53 c4_209_54 c4_209_55 set community 0:3 route-map calculator permit 10931 match community c4_209_56 c4_209_57 c4_209_58 c4_209_59 c4_209_60 set community 0:3 route-map calculator permit 10932 match community c4_209_61 c4_209_62 c4_209_63 c4_209_64 c4_209_65 set community 0:3 route-map calculator permit 10933 match community c4_209_66 c4_209_67 c4_209_68 c4_209_69 c3_209_206 set community 0:3 route-map calculator permit 10934 match community c4_210_53 c4_210_54 c4_210_55 c4_210_56 c4_210_57 set community 0:3 route-map calculator permit 10935 match community c4_210_58 c4_210_59 c4_210_60 c4_210_61 c4_210_62 set community 0:3 route-map calculator permit 10936 match community c4_210_63 c4_210_64 c4_210_65 c4_210_66 c4_210_67 set community 0:3 route-map calculator permit 10937 match community c4_210_68 c4_210_69 c4_210_70 c3_210_207 c4_211_53 set community 0:3 route-map calculator permit 10938 match community c4_211_54 c4_211_55 c4_211_56 c4_211_57 c4_211_58 set community 0:3 route-map calculator permit 10939 match community c4_211_59 c4_211_60 c4_211_61 c4_211_62 c4_211_63 set community 0:3 route-map calculator permit 10940 match community c4_211_64 c4_211_65 c4_211_66 c4_211_67 c4_211_68 set community 0:3 route-map calculator permit 10941 match community c4_211_69 c4_211_70 c3_211_208 c4_212_54 c4_212_55 set community 0:3 route-map calculator permit 10942 match community c4_212_56 c4_212_57 c4_212_58 c4_212_59 c4_212_60 set community 0:3 route-map calculator permit 10943 match community c4_212_61 c4_212_62 c4_212_63 c4_212_64 c4_212_65 set community 0:3 route-map calculator permit 10944 match community c4_212_66 c4_212_67 c4_212_68 c4_212_69 c4_212_70 set community 0:3 route-map calculator permit 10945 match community c3_212_209 c4_213_54 c4_213_55 c4_213_56 c4_213_57 set community 0:3 route-map calculator permit 10946 match community c4_213_58 c4_213_59 c4_213_60 c4_213_61 c4_213_62 set community 0:3 route-map calculator permit 10947 match community c4_213_63 c4_213_64 c4_213_65 c4_213_66 c4_213_67 set community 0:3 route-map calculator permit 10948 match community c4_213_68 c4_213_69 c4_213_70 c4_213_71 c3_213_210 set community 0:3 route-map calculator permit 10949 match community c4_214_54 c4_214_55 c4_214_56 c4_214_57 c4_214_58 set community 0:3 route-map calculator permit 10950 match community c4_214_59 c4_214_60 c4_214_61 c4_214_62 c4_214_63 set community 0:3 route-map calculator permit 10951 match community c4_214_64 c4_214_65 c4_214_66 c4_214_67 c4_214_68 set community 0:3 route-map calculator permit 10952 match community c4_214_69 c4_214_70 c4_214_71 c3_214_211 c4_215_54 set community 0:3 route-map calculator permit 10953 match community c4_215_55 c4_215_56 c4_215_57 c4_215_58 c4_215_59 set community 0:3 route-map calculator permit 10954 match community c4_215_60 c4_215_61 c4_215_62 c4_215_63 c4_215_64 set community 0:3 route-map calculator permit 10955 match community c4_215_65 c4_215_66 c4_215_67 c4_215_68 c4_215_69 set community 0:3 route-map calculator permit 10956 match community c4_215_70 c4_215_71 c3_215_212 c4_216_55 c4_216_56 set community 0:3 route-map calculator permit 10957 match community c4_216_57 c4_216_58 c4_216_59 c4_216_60 c4_216_61 set community 0:3 route-map calculator permit 10958 match community c4_216_62 c4_216_63 c4_216_64 c4_216_65 c4_216_66 set community 0:3 route-map calculator permit 10959 match community c4_216_67 c4_216_68 c4_216_69 c4_216_70 c4_216_71 set community 0:3 route-map calculator permit 10960 match community c4_216_72 c3_216_213 c4_217_55 c4_217_56 c4_217_57 set community 0:3 route-map calculator permit 10961 match community c4_217_58 c4_217_59 c4_217_60 c4_217_61 c4_217_62 set community 0:3 route-map calculator permit 10962 match community c4_217_63 c4_217_64 c4_217_65 c4_217_66 c4_217_67 set community 0:3 route-map calculator permit 10963 match community c4_217_68 c4_217_69 c4_217_70 c4_217_71 c4_217_72 set community 0:3 route-map calculator permit 10964 match community c3_217_214 c4_218_55 c4_218_56 c4_218_57 c4_218_58 set community 0:3 route-map calculator permit 10965 match community c4_218_59 c4_218_60 c4_218_61 c4_218_62 c4_218_63 set community 0:3 route-map calculator permit 10966 match community c4_218_64 c4_218_65 c4_218_66 c4_218_67 c4_218_68 set community 0:3 route-map calculator permit 10967 match community c4_218_69 c4_218_70 c4_218_71 c4_218_72 c3_218_215 set community 0:3 route-map calculator permit 10968 match community c4_219_55 c4_219_56 c4_219_57 c4_219_58 c4_219_59 set community 0:3 route-map calculator permit 10969 match community c4_219_60 c4_219_61 c4_219_62 c4_219_63 c4_219_64 set community 0:3 route-map calculator permit 10970 match community c4_219_65 c4_219_66 c4_219_67 c4_219_68 c4_219_69 set community 0:3 route-map calculator permit 10971 match community c4_219_70 c4_219_71 c4_219_72 c4_219_73 c3_219_216 set community 0:3 route-map calculator permit 10972 match community c4_220_56 c4_220_57 c4_220_58 c4_220_59 c4_220_60 set community 0:3 route-map calculator permit 10973 match community c4_220_61 c4_220_62 c4_220_63 c4_220_64 c4_220_65 set community 0:3 route-map calculator permit 10974 match community c4_220_66 c4_220_67 c4_220_68 c4_220_69 c4_220_70 set community 0:3 route-map calculator permit 10975 match community c4_220_71 c4_220_72 c4_220_73 c3_220_217 c4_221_56 set community 0:3 route-map calculator permit 10976 match community c4_221_57 c4_221_58 c4_221_59 c4_221_60 c4_221_61 set community 0:3 route-map calculator permit 10977 match community c4_221_62 c4_221_63 c4_221_64 c4_221_65 c4_221_66 set community 0:3 route-map calculator permit 10978 match community c4_221_67 c4_221_68 c4_221_69 c4_221_70 c4_221_71 set community 0:3 route-map calculator permit 10979 match community c4_221_72 c4_221_73 c3_221_218 c4_222_56 c4_222_57 set community 0:3 route-map calculator permit 10980 match community c4_222_58 c4_222_59 c4_222_60 c4_222_61 c4_222_62 set community 0:3 route-map calculator permit 10981 match community c4_222_63 c4_222_64 c4_222_65 c4_222_66 c4_222_67 set community 0:3 route-map calculator permit 10982 match community c4_222_68 c4_222_69 c4_222_70 c4_222_71 c4_222_72 set community 0:3 route-map calculator permit 10983 match community c4_222_73 c4_222_74 c3_222_219 c4_223_56 c4_223_57 set community 0:3 route-map calculator permit 10984 match community c4_223_58 c4_223_59 c4_223_60 c4_223_61 c4_223_62 set community 0:3 route-map calculator permit 10985 match community c4_223_63 c4_223_64 c4_223_65 c4_223_66 c4_223_67 set community 0:3 route-map calculator permit 10986 match community c4_223_68 c4_223_69 c4_223_70 c4_223_71 c4_223_72 set community 0:3 route-map calculator permit 10987 match community c4_223_73 c4_223_74 c3_223_220 c4_224_57 c4_224_58 set community 0:3 route-map calculator permit 10988 match community c4_224_59 c4_224_60 c4_224_61 c4_224_62 c4_224_63 set community 0:3 route-map calculator permit 10989 match community c4_224_64 c4_224_65 c4_224_66 c4_224_67 c4_224_68 set community 0:3 route-map calculator permit 10990 match community c4_224_69 c4_224_70 c4_224_71 c4_224_72 c4_224_73 set community 0:3 route-map calculator permit 10991 match community c4_224_74 c3_224_221 c4_225_57 c4_225_58 c4_225_59 set community 0:3 route-map calculator permit 10992 match community c4_225_60 c4_225_61 c4_225_62 c4_225_63 c4_225_64 set community 0:3 route-map calculator permit 10993 match community c4_225_65 c4_225_66 c4_225_67 c4_225_68 c4_225_69 set community 0:3 route-map calculator permit 10994 match community c4_225_70 c4_225_71 c4_225_72 c4_225_73 c4_225_74 set community 0:3 route-map calculator permit 10995 match community c4_225_75 c3_225_222 c4_226_57 c4_226_58 c4_226_59 set community 0:3 route-map calculator permit 10996 match community c4_226_60 c4_226_61 c4_226_62 c4_226_63 c4_226_64 set community 0:3 route-map calculator permit 10997 match community c4_226_65 c4_226_66 c4_226_67 c4_226_68 c4_226_69 set community 0:3 route-map calculator permit 10998 match community c4_226_70 c4_226_71 c4_226_72 c4_226_73 c4_226_74 set community 0:3 route-map calculator permit 10999 match community c4_226_75 c3_226_223 c4_227_57 c4_227_58 c4_227_59 set community 0:3 route-map calculator permit 11000 match community c4_227_60 c4_227_61 c4_227_62 c4_227_63 c4_227_64 set community 0:3 route-map calculator permit 11001 match community c4_227_65 c4_227_66 c4_227_67 c4_227_68 c4_227_69 set community 0:3 route-map calculator permit 11002 match community c4_227_70 c4_227_71 c4_227_72 c4_227_73 c4_227_74 set community 0:3 route-map calculator permit 11003 match community c4_227_75 c3_227_224 c4_228_58 c4_228_59 c4_228_60 set community 0:3 route-map calculator permit 11004 match community c4_228_61 c4_228_62 c4_228_63 c4_228_64 c4_228_65 set community 0:3 route-map calculator permit 11005 match community c4_228_66 c4_228_67 c4_228_68 c4_228_69 c4_228_70 set community 0:3 route-map calculator permit 11006 match community c4_228_71 c4_228_72 c4_228_73 c4_228_74 c4_228_75 set community 0:3 route-map calculator permit 11007 match community c4_228_76 c3_228_225 c4_229_58 c4_229_59 c4_229_60 set community 0:3 route-map calculator permit 11008 match community c4_229_61 c4_229_62 c4_229_63 c4_229_64 c4_229_65 set community 0:3 route-map calculator permit 11009 match community c4_229_66 c4_229_67 c4_229_68 c4_229_69 c4_229_70 set community 0:3 route-map calculator permit 11010 match community c4_229_71 c4_229_72 c4_229_73 c4_229_74 c4_229_75 set community 0:3 route-map calculator permit 11011 match community c4_229_76 c3_229_226 c4_230_58 c4_230_59 c4_230_60 set community 0:3 route-map calculator permit 11012 match community c4_230_61 c4_230_62 c4_230_63 c4_230_64 c4_230_65 set community 0:3 route-map calculator permit 11013 match community c4_230_66 c4_230_67 c4_230_68 c4_230_69 c4_230_70 set community 0:3 route-map calculator permit 11014 match community c4_230_71 c4_230_72 c4_230_73 c4_230_74 c4_230_75 set community 0:3 route-map calculator permit 11015 match community c4_230_76 c3_230_227 c4_231_58 c4_231_59 c4_231_60 set community 0:3 route-map calculator permit 11016 match community c4_231_61 c4_231_62 c4_231_63 c4_231_64 c4_231_65 set community 0:3 route-map calculator permit 11017 match community c4_231_66 c4_231_67 c4_231_68 c4_231_69 c4_231_70 set community 0:3 route-map calculator permit 11018 match community c4_231_71 c4_231_72 c4_231_73 c4_231_74 c4_231_75 set community 0:3 route-map calculator permit 11019 match community c4_231_76 c4_231_77 c3_231_228 c4_232_59 c4_232_60 set community 0:3 route-map calculator permit 11020 match community c4_232_61 c4_232_62 c4_232_63 c4_232_64 c4_232_65 set community 0:3 route-map calculator permit 11021 match community c4_232_66 c4_232_67 c4_232_68 c4_232_69 c4_232_70 set community 0:3 route-map calculator permit 11022 match community c4_232_71 c4_232_72 c4_232_73 c4_232_74 c4_232_75 set community 0:3 route-map calculator permit 11023 match community c4_232_76 c4_232_77 c3_232_229 c4_233_59 c4_233_60 set community 0:3 route-map calculator permit 11024 match community c4_233_61 c4_233_62 c4_233_63 c4_233_64 c4_233_65 set community 0:3 route-map calculator permit 11025 match community c4_233_66 c4_233_67 c4_233_68 c4_233_69 c4_233_70 set community 0:3 route-map calculator permit 11026 match community c4_233_71 c4_233_72 c4_233_73 c4_233_74 c4_233_75 set community 0:3 route-map calculator permit 11027 match community c4_233_76 c4_233_77 c3_233_230 c4_234_59 c4_234_60 set community 0:3 route-map calculator permit 11028 match community c4_234_61 c4_234_62 c4_234_63 c4_234_64 c4_234_65 set community 0:3 route-map calculator permit 11029 match community c4_234_66 c4_234_67 c4_234_68 c4_234_69 c4_234_70 set community 0:3 route-map calculator permit 11030 match community c4_234_71 c4_234_72 c4_234_73 c4_234_74 c4_234_75 set community 0:3 route-map calculator permit 11031 match community c4_234_76 c4_234_77 c4_234_78 c3_234_231 c4_235_59 set community 0:3 route-map calculator permit 11032 match community c4_235_60 c4_235_61 c4_235_62 c4_235_63 c4_235_64 set community 0:3 route-map calculator permit 11033 match community c4_235_65 c4_235_66 c4_235_67 c4_235_68 c4_235_69 set community 0:3 route-map calculator permit 11034 match community c4_235_70 c4_235_71 c4_235_72 c4_235_73 c4_235_74 set community 0:3 route-map calculator permit 11035 match community c4_235_75 c4_235_76 c4_235_77 c4_235_78 c3_235_232 set community 0:3 route-map calculator permit 11036 match community c4_236_60 c4_236_61 c4_236_62 c4_236_63 c4_236_64 set community 0:3 route-map calculator permit 11037 match community c4_236_65 c4_236_66 c4_236_67 c4_236_68 c4_236_69 set community 0:3 route-map calculator permit 11038 match community c4_236_70 c4_236_71 c4_236_72 c4_236_73 c4_236_74 set community 0:3 route-map calculator permit 11039 match community c4_236_75 c4_236_76 c4_236_77 c4_236_78 c3_236_233 set community 0:3 route-map calculator permit 11040 match community c4_237_60 c4_237_61 c4_237_62 c4_237_63 c4_237_64 set community 0:3 route-map calculator permit 11041 match community c4_237_65 c4_237_66 c4_237_67 c4_237_68 c4_237_69 set community 0:3 route-map calculator permit 11042 match community c4_237_70 c4_237_71 c4_237_72 c4_237_73 c4_237_74 set community 0:3 route-map calculator permit 11043 match community c4_237_75 c4_237_76 c4_237_77 c4_237_78 c4_237_79 set community 0:3 route-map calculator permit 11044 match community c3_237_234 c4_238_60 c4_238_61 c4_238_62 c4_238_63 set community 0:3 route-map calculator permit 11045 match community c4_238_64 c4_238_65 c4_238_66 c4_238_67 c4_238_68 set community 0:3 route-map calculator permit 11046 match community c4_238_69 c4_238_70 c4_238_71 c4_238_72 c4_238_73 set community 0:3 route-map calculator permit 11047 match community c4_238_74 c4_238_75 c4_238_76 c4_238_77 c4_238_78 set community 0:3 route-map calculator permit 11048 match community c4_238_79 c3_238_235 c4_239_60 c4_239_61 c4_239_62 set community 0:3 route-map calculator permit 11049 match community c4_239_63 c4_239_64 c4_239_65 c4_239_66 c4_239_67 set community 0:3 route-map calculator permit 11050 match community c4_239_68 c4_239_69 c4_239_70 c4_239_71 c4_239_72 set community 0:3 route-map calculator permit 11051 match community c4_239_73 c4_239_74 c4_239_75 c4_239_76 c4_239_77 set community 0:3 route-map calculator permit 11052 match community c4_239_78 c4_239_79 c3_239_236 c4_240_61 c4_240_62 set community 0:3 route-map calculator permit 11053 match community c4_240_63 c4_240_64 c4_240_65 c4_240_66 c4_240_67 set community 0:3 route-map calculator permit 11054 match community c4_240_68 c4_240_69 c4_240_70 c4_240_71 c4_240_72 set community 0:3 route-map calculator permit 11055 match community c4_240_73 c4_240_74 c4_240_75 c4_240_76 c4_240_77 set community 0:3 route-map calculator permit 11056 match community c4_240_78 c4_240_79 c4_240_80 c3_240_237 c4_241_61 set community 0:3 route-map calculator permit 11057 match community c4_241_62 c4_241_63 c4_241_64 c4_241_65 c4_241_66 set community 0:3 route-map calculator permit 11058 match community c4_241_67 c4_241_68 c4_241_69 c4_241_70 c4_241_71 set community 0:3 route-map calculator permit 11059 match community c4_241_72 c4_241_73 c4_241_74 c4_241_75 c4_241_76 set community 0:3 route-map calculator permit 11060 match community c4_241_77 c4_241_78 c4_241_79 c4_241_80 c3_241_238 set community 0:3 route-map calculator permit 11061 match community c4_242_61 c4_242_62 c4_242_63 c4_242_64 c4_242_65 set community 0:3 route-map calculator permit 11062 match community c4_242_66 c4_242_67 c4_242_68 c4_242_69 c4_242_70 set community 0:3 route-map calculator permit 11063 match community c4_242_71 c4_242_72 c4_242_73 c4_242_74 c4_242_75 set community 0:3 route-map calculator permit 11064 match community c4_242_76 c4_242_77 c4_242_78 c4_242_79 c4_242_80 set community 0:3 route-map calculator permit 11065 match community c3_242_239 c4_243_61 c4_243_62 c4_243_63 c4_243_64 set community 0:3 route-map calculator permit 11066 match community c4_243_65 c4_243_66 c4_243_67 c4_243_68 c4_243_69 set community 0:3 route-map calculator permit 11067 match community c4_243_70 c4_243_71 c4_243_72 c4_243_73 c4_243_74 set community 0:3 route-map calculator permit 11068 match community c4_243_75 c4_243_76 c4_243_77 c4_243_78 c4_243_79 set community 0:3 route-map calculator permit 11069 match community c4_243_80 c4_243_81 c3_243_240 c4_244_62 c4_244_63 set community 0:3 route-map calculator permit 11070 match community c4_244_64 c4_244_65 c4_244_66 c4_244_67 c4_244_68 set community 0:3 route-map calculator permit 11071 match community c4_244_69 c4_244_70 c4_244_71 c4_244_72 c4_244_73 set community 0:3 route-map calculator permit 11072 match community c4_244_74 c4_244_75 c4_244_76 c4_244_77 c4_244_78 set community 0:3 route-map calculator permit 11073 match community c4_244_79 c4_244_80 c4_244_81 c3_244_241 c4_245_62 set community 0:3 route-map calculator permit 11074 match community c4_245_63 c4_245_64 c4_245_65 c4_245_66 c4_245_67 set community 0:3 route-map calculator permit 11075 match community c4_245_68 c4_245_69 c4_245_70 c4_245_71 c4_245_72 set community 0:3 route-map calculator permit 11076 match community c4_245_73 c4_245_74 c4_245_75 c4_245_76 c4_245_77 set community 0:3 route-map calculator permit 11077 match community c4_245_78 c4_245_79 c4_245_80 c4_245_81 c3_245_242 set community 0:3 route-map calculator permit 11078 match community c4_246_62 c4_246_63 c4_246_64 c4_246_65 c4_246_66 set community 0:3 route-map calculator permit 11079 match community c4_246_67 c4_246_68 c4_246_69 c4_246_70 c4_246_71 set community 0:3 route-map calculator permit 11080 match community c4_246_72 c4_246_73 c4_246_74 c4_246_75 c4_246_76 set community 0:3 route-map calculator permit 11081 match community c4_246_77 c4_246_78 c4_246_79 c4_246_80 c4_246_81 set community 0:3 route-map calculator permit 11082 match community c4_246_82 c3_246_243 c4_247_62 c4_247_63 c4_247_64 set community 0:3 route-map calculator permit 11083 match community c4_247_65 c4_247_66 c4_247_67 c4_247_68 c4_247_69 set community 0:3 route-map calculator permit 11084 match community c4_247_70 c4_247_71 c4_247_72 c4_247_73 c4_247_74 set community 0:3 route-map calculator permit 11085 match community c4_247_75 c4_247_76 c4_247_77 c4_247_78 c4_247_79 set community 0:3 route-map calculator permit 11086 match community c4_247_80 c4_247_81 c4_247_82 c3_247_244 c4_248_63 set community 0:3 route-map calculator permit 11087 match community c4_248_64 c4_248_65 c4_248_66 c4_248_67 c4_248_68 set community 0:3 route-map calculator permit 11088 match community c4_248_69 c4_248_70 c4_248_71 c4_248_72 c4_248_73 set community 0:3 route-map calculator permit 11089 match community c4_248_74 c4_248_75 c4_248_76 c4_248_77 c4_248_78 set community 0:3 route-map calculator permit 11090 match community c4_248_79 c4_248_80 c4_248_81 c4_248_82 c3_248_245 set community 0:3 route-map calculator permit 11091 match community c4_249_63 c4_249_64 c4_249_65 c4_249_66 c4_249_67 set community 0:3 route-map calculator permit 11092 match community c4_249_68 c4_249_69 c4_249_70 c4_249_71 c4_249_72 set community 0:3 route-map calculator permit 11093 match community c4_249_73 c4_249_74 c4_249_75 c4_249_76 c4_249_77 set community 0:3 route-map calculator permit 11094 match community c4_249_78 c4_249_79 c4_249_80 c4_249_81 c4_249_82 set community 0:3 route-map calculator permit 11095 match community c4_249_83 c3_249_246 c4_250_63 c4_250_64 c4_250_65 set community 0:3 route-map calculator permit 11096 match community c4_250_66 c4_250_67 c4_250_68 c4_250_69 c4_250_70 set community 0:3 route-map calculator permit 11097 match community c4_250_71 c4_250_72 c4_250_73 c4_250_74 c4_250_75 set community 0:3 route-map calculator permit 11098 match community c4_250_76 c4_250_77 c4_250_78 c4_250_79 c4_250_80 set community 0:3 route-map calculator permit 11099 match community c4_250_81 c4_250_82 c4_250_83 c3_250_247 c4_251_63 set community 0:3 route-map calculator permit 11100 match community c4_251_64 c4_251_65 c4_251_66 c4_251_67 c4_251_68 set community 0:3 route-map calculator permit 11101 match community c4_251_69 c4_251_70 c4_251_71 c4_251_72 c4_251_73 set community 0:3 route-map calculator permit 11102 match community c4_251_74 c4_251_75 c4_251_76 c4_251_77 c4_251_78 set community 0:3 route-map calculator permit 11103 match community c4_251_79 c4_251_80 c4_251_81 c4_251_82 c4_251_83 set community 0:3 route-map calculator permit 11104 match community c3_251_248 c4_252_64 c4_252_65 c4_252_66 c4_252_67 set community 0:3 route-map calculator permit 11105 match community c4_252_68 c4_252_69 c4_252_70 c4_252_71 c4_252_72 set community 0:3 route-map calculator permit 11106 match community c4_252_73 c4_252_74 c4_252_75 c4_252_76 c4_252_77 set community 0:3 route-map calculator permit 11107 match community c4_252_78 c4_252_79 c4_252_80 c4_252_81 c4_252_82 set community 0:3 route-map calculator permit 11108 match community c4_252_83 c4_252_84 c3_252_249 c4_253_64 c4_253_65 set community 0:3 route-map calculator permit 11109 match community c4_253_66 c4_253_67 c4_253_68 c4_253_69 c4_253_70 set community 0:3 route-map calculator permit 11110 match community c4_253_71 c4_253_72 c4_253_73 c4_253_74 c4_253_75 set community 0:3 route-map calculator permit 11111 match community c4_253_76 c4_253_77 c4_253_78 c4_253_79 c4_253_80 set community 0:3 route-map calculator permit 11112 match community c4_253_81 c4_253_82 c4_253_83 c4_253_84 c3_253_250 set community 0:3 route-map calculator permit 11113 match community c4_254_64 c4_254_65 c4_254_66 c4_254_67 c4_254_68 set community 0:3 route-map calculator permit 11114 match community c4_254_69 c4_254_70 c4_254_71 c4_254_72 c4_254_73 set community 0:3 route-map calculator permit 11115 match community c4_254_74 c4_254_75 c4_254_76 c4_254_77 c4_254_78 set community 0:3 route-map calculator permit 11116 match community c4_254_79 c4_254_80 c4_254_81 c4_254_82 c4_254_83 set community 0:3 route-map calculator permit 11117 match community c4_254_84 c3_254_251 c4_255_64 c4_255_65 c4_255_66 set community 0:3 route-map calculator permit 11118 match community c4_255_67 c4_255_68 c4_255_69 c4_255_70 c4_255_71 set community 0:3 route-map calculator permit 11119 match community c4_255_72 c4_255_73 c4_255_74 c4_255_75 c4_255_76 set community 0:3 route-map calculator permit 11120 match community c4_255_77 c4_255_78 c4_255_79 c4_255_80 c4_255_81 set community 0:3 route-map calculator permit 11121 match community c4_255_82 c4_255_83 c4_255_84 c4_255_85 c3_255_252 set community 0:3 route-map calculator permit 11122 match community c4_256_65 c4_256_66 c4_256_67 c4_256_68 c4_256_69 set community 0:3 route-map calculator permit 11123 match community c4_256_70 c4_256_71 c4_256_72 c4_256_73 c4_256_74 set community 0:3 route-map calculator permit 11124 match community c4_256_75 c4_256_76 c4_256_77 c4_256_78 c4_256_79 set community 0:3 route-map calculator permit 11125 match community c4_256_80 c4_256_81 c4_256_82 c4_256_83 c4_256_84 set community 0:3 route-map calculator permit 11126 match community c4_256_85 c3_256_253 set community 0:3 ip community-list standard 2_122_248 permit 65000:2 0:122 0:248 ip community-list standard 2_124_244 permit 65000:2 0:124 0:244 route-map calculator permit 11127 match community 2_122_248 2_124_244 set community 0:30256 ip community-list standard 2_232_235 permit 65000:2 0:232 0:235 route-map calculator permit 11128 match community 2_232_235 set community 0:54520 ip community-list standard 2_42_129 permit 65000:2 0:42 0:129 ip community-list standard 2_43_126 permit 65000:2 0:43 0:126 ip community-list standard 2_63_86 permit 65000:2 0:63 0:86 route-map calculator permit 11129 match community 2_42_129 2_43_126 2_63_86 set community 0:5418 ip community-list standard 2_139_168 permit 65000:2 0:139 0:168 route-map calculator permit 11130 match community 2_139_168 set community 0:23352 ip community-list standard 2_66_137 permit 65000:2 0:66 0:137 route-map calculator permit 11131 match community 2_66_137 set community 0:9042 ip community-list standard 2_31_153 permit 65000:2 0:31 0:153 ip community-list standard 2_51_93 permit 65000:2 0:51 0:93 route-map calculator permit 11132 match community 2_31_153 2_51_93 set community 0:4743 ip community-list standard 2_169_252 permit 65000:2 0:169 0:252 ip community-list standard 2_182_234 permit 65000:2 0:182 0:234 route-map calculator permit 11133 match community 2_169_252 2_182_234 set community 0:42588 ip community-list standard 2_221_255 permit 65000:2 0:221 0:255 route-map calculator permit 11134 match community 2_221_255 set community 0:56355 ip community-list standard 2_34_252 permit 65000:2 0:34 0:252 ip community-list standard 2_36_238 permit 65000:2 0:36 0:238 ip community-list standard 2_42_204 permit 65000:2 0:42 0:204 ip community-list standard 2_51_168 permit 65000:2 0:51 0:168 ip community-list standard 2_56_153 permit 65000:2 0:56 0:153 ip community-list standard 2_63_136 permit 65000:2 0:63 0:136 ip community-list standard 2_68_126 permit 65000:2 0:68 0:126 ip community-list standard 2_72_119 permit 65000:2 0:72 0:119 ip community-list standard 2_84_102 permit 65000:2 0:84 0:102 route-map calculator permit 11135 match community 2_34_252 2_36_238 2_42_204 2_51_168 2_56_153 set community 0:8568 route-map calculator permit 11136 match community 2_63_136 2_68_126 2_72_119 2_84_102 set community 0:8568 ip community-list standard 2_188_194 permit 65000:2 0:188 0:194 route-map calculator permit 11137 match community 2_188_194 set community 0:36472 ip community-list standard 2_142_158 permit 65000:2 0:142 0:158 route-map calculator permit 11138 match community 2_142_158 set community 0:22436 ip community-list standard 2_151_253 permit 65000:2 0:151 0:253 route-map calculator permit 11139 match community 2_151_253 set community 0:38203 ip community-list standard 2_53_154 permit 65000:2 0:53 0:154 ip community-list standard 2_77_106 permit 65000:2 0:77 0:106 route-map calculator permit 11140 match community 2_53_154 2_77_106 set community 0:8162 ip community-list standard 2_227_250 permit 65000:2 0:227 0:250 route-map calculator permit 11141 match community 2_227_250 set community 0:56750 ip community-list standard 2_52_179 permit 65000:2 0:52 0:179 route-map calculator permit 11142 match community 2_52_179 set community 0:9308 ip community-list standard 2_134_231 permit 65000:2 0:134 0:231 ip community-list standard 2_154_201 permit 65000:2 0:154 0:201 route-map calculator permit 11143 match community 2_134_231 2_154_201 set community 0:30954 ip community-list standard 2_140_191 permit 65000:2 0:140 0:191 route-map calculator permit 11144 match community 2_140_191 set community 0:26740 ip community-list standard 2_231_249 permit 65000:2 0:231 0:249 route-map calculator permit 11145 match community 2_231_249 set community 0:57519 ip community-list standard 2_173_220 permit 65000:2 0:173 0:220 route-map calculator permit 11146 match community 2_173_220 set community 0:38060 ip community-list standard 2_131_206 permit 65000:2 0:131 0:206 route-map calculator permit 11147 match community 2_131_206 set community 0:26986 ip community-list standard 2_83_242 permit 65000:2 0:83 0:242 ip community-list standard 2_121_166 permit 65000:2 0:121 0:166 route-map calculator permit 11148 match community 2_83_242 2_121_166 set community 0:20086 ip community-list standard 2_233_244 permit 65000:2 0:233 0:244 route-map calculator permit 11149 match community 2_233_244 set community 0:56852 ip community-list standard 2_79_109 permit 65000:2 0:79 0:109 route-map calculator permit 11150 match community 2_79_109 set community 0:8611 ip community-list standard 2_107_147 permit 65000:2 0:107 0:147 route-map calculator permit 11151 match community 2_107_147 set community 0:15729 ip community-list standard 2_138_237 permit 65000:2 0:138 0:237 ip community-list standard 2_158_207 permit 65000:2 0:158 0:207 route-map calculator permit 11152 match community 2_138_237 2_158_207 set community 0:32706 ip community-list standard 2_25_247 permit 65000:2 0:25 0:247 ip community-list standard 2_65_95 permit 65000:2 0:65 0:95 route-map calculator permit 11153 match community 2_25_247 2_65_95 set community 0:6175 ip community-list standard 2_52_197 permit 65000:2 0:52 0:197 route-map calculator permit 11154 match community 2_52_197 set community 0:10244 ip community-list standard 2_110_195 permit 65000:2 0:110 0:195 ip community-list standard 2_130_165 permit 65000:2 0:130 0:165 ip community-list standard 2_143_150 permit 65000:2 0:143 0:150 route-map calculator permit 11155 match community 2_110_195 2_130_165 2_143_150 set community 0:21450 ip community-list standard 2_15_251 permit 65000:2 0:15 0:251 route-map calculator permit 11156 match community 2_15_251 set community 0:3765 ip community-list standard 2_38_213 permit 65000:2 0:38 0:213 ip community-list standard 2_57_142 permit 65000:2 0:57 0:142 ip community-list standard 2_71_114 permit 65000:2 0:71 0:114 route-map calculator permit 11157 match community 2_38_213 2_57_142 2_71_114 set community 0:8094 ip community-list standard 2_29_218 permit 65000:2 0:29 0:218 ip community-list standard 2_58_109 permit 65000:2 0:58 0:109 route-map calculator permit 11158 match community 2_29_218 2_58_109 set community 0:6322 ip community-list standard 2_27_178 permit 65000:2 0:27 0:178 ip community-list standard 2_54_89 permit 65000:2 0:54 0:89 route-map calculator permit 11159 match community 2_27_178 2_54_89 set community 0:4806 ip community-list standard 2_62_146 permit 65000:2 0:62 0:146 ip community-list standard 2_73_124 permit 65000:2 0:73 0:124 route-map calculator permit 11160 match community 2_62_146 2_73_124 set community 0:9052 ip community-list standard 2_189_203 permit 65000:2 0:189 0:203 route-map calculator permit 11161 match community 2_189_203 set community 0:38367 ip community-list standard 2_203_213 permit 65000:2 0:203 0:213 route-map calculator permit 11162 match community 2_203_213 set community 0:43239 ip community-list standard 2_6_137 permit 65000:2 0:6 0:137 route-map calculator permit 11163 match community 2_6_137 set community 0:822 ip community-list standard 2_151_233 permit 65000:2 0:151 0:233 route-map calculator permit 11164 match community 2_151_233 set community 0:35183 ip community-list standard 2_17_111 permit 65000:2 0:17 0:111 ip community-list standard 2_37_51 permit 65000:2 0:37 0:51 route-map calculator permit 11165 match community 2_17_111 2_37_51 set community 0:1887 ip community-list standard 2_29_212 permit 65000:2 0:29 0:212 ip community-list standard 2_53_116 permit 65000:2 0:53 0:116 ip community-list standard 2_58_106 permit 65000:2 0:58 0:106 route-map calculator permit 11166 match community 2_29_212 2_53_116 2_58_106 set community 0:6148 ip community-list standard 2_231_234 permit 65000:2 0:231 0:234 route-map calculator permit 11167 match community 2_231_234 set community 0:54054 ip community-list standard 2_100_242 permit 65000:2 0:100 0:242 ip community-list standard 2_110_220 permit 65000:2 0:110 0:220 ip community-list standard 2_121_200 permit 65000:2 0:121 0:200 route-map calculator permit 11168 match community 2_100_242 2_110_220 2_121_200 set community 0:24200 ip community-list standard 2_96_250 permit 65000:2 0:96 0:250 ip community-list standard 2_100_240 permit 65000:2 0:100 0:240 ip community-list standard 2_120_200 permit 65000:2 0:120 0:200 ip community-list standard 2_125_192 permit 65000:2 0:125 0:192 ip community-list standard 2_150_160 permit 65000:2 0:150 0:160 route-map calculator permit 11169 match community 2_96_250 2_100_240 2_120_200 2_125_192 2_150_160 set community 0:24000 ip community-list standard 2_22_252 permit 65000:2 0:22 0:252 ip community-list standard 2_24_231 permit 65000:2 0:24 0:231 ip community-list standard 2_28_198 permit 65000:2 0:28 0:198 ip community-list standard 2_33_168 permit 65000:2 0:33 0:168 ip community-list standard 2_36_154 permit 65000:2 0:36 0:154 ip community-list standard 2_42_132 permit 65000:2 0:42 0:132 ip community-list standard 2_44_126 permit 65000:2 0:44 0:126 ip community-list standard 2_56_99 permit 65000:2 0:56 0:99 ip community-list standard 2_63_88 permit 65000:2 0:63 0:88 ip community-list standard 2_66_84 permit 65000:2 0:66 0:84 ip community-list standard 2_72_77 permit 65000:2 0:72 0:77 route-map calculator permit 11170 match community 2_22_252 2_24_231 2_28_198 2_33_168 2_36_154 set community 0:5544 route-map calculator permit 11171 match community 2_42_132 2_44_126 2_56_99 2_63_88 2_66_84 set community 0:5544 route-map calculator permit 11172 match community 2_72_77 set community 0:5544 ip community-list standard 2_99_223 permit 65000:2 0:99 0:223 route-map calculator permit 11173 match community 2_99_223 set community 0:22077 ip community-list standard 2_4_205 permit 65000:2 0:4 0:205 ip community-list standard 2_5_164 permit 65000:2 0:5 0:164 ip community-list standard 2_10_82 permit 65000:2 0:10 0:82 ip community-list standard 2_20_41 permit 65000:2 0:20 0:41 route-map calculator permit 11174 match community 2_4_205 2_5_164 2_10_82 2_20_41 set community 0:820 ip community-list standard 2_39_188 permit 65000:2 0:39 0:188 ip community-list standard 2_47_156 permit 65000:2 0:47 0:156 ip community-list standard 2_52_141 permit 65000:2 0:52 0:141 ip community-list standard 2_78_94 permit 65000:2 0:78 0:94 route-map calculator permit 11175 match community 2_39_188 2_47_156 2_52_141 2_78_94 set community 0:7332 ip community-list standard 2_136_152 permit 65000:2 0:136 0:152 route-map calculator permit 11176 match community 2_136_152 set community 0:20672 ip community-list standard 2_188_197 permit 65000:2 0:188 0:197 route-map calculator permit 11177 match community 2_188_197 set community 0:37036 ip community-list standard 2_160_245 permit 65000:2 0:160 0:245 ip community-list standard 2_175_224 permit 65000:2 0:175 0:224 ip community-list standard 2_196_200 permit 65000:2 0:196 0:200 route-map calculator permit 11178 match community 2_160_245 2_175_224 2_196_200 set community 0:39200 ip community-list standard 2_96_247 permit 65000:2 0:96 0:247 ip community-list standard 2_104_228 permit 65000:2 0:104 0:228 ip community-list standard 2_114_208 permit 65000:2 0:114 0:208 ip community-list standard 2_152_156 permit 65000:2 0:152 0:156 route-map calculator permit 11179 match community 2_96_247 2_104_228 2_114_208 2_152_156 set community 0:23712 ip community-list standard 2_28_163 permit 65000:2 0:28 0:163 route-map calculator permit 11180 match community 2_28_163 set community 0:4564 ip community-list standard 2_12_151 permit 65000:2 0:12 0:151 route-map calculator permit 11181 match community 2_12_151 set community 0:1812 ip community-list standard 2_130_238 permit 65000:2 0:130 0:238 ip community-list standard 2_140_221 permit 65000:2 0:140 0:221 ip community-list standard 2_170_182 permit 65000:2 0:170 0:182 route-map calculator permit 11182 match community 2_130_238 2_140_221 2_170_182 set community 0:30940 ip community-list standard 2_91_255 permit 65000:2 0:91 0:255 ip community-list standard 2_105_221 permit 65000:2 0:105 0:221 ip community-list standard 2_119_195 permit 65000:2 0:119 0:195 route-map calculator permit 11183 match community 2_91_255 2_105_221 2_119_195 set community 0:23205 ip community-list standard 2_58_244 permit 65000:2 0:58 0:244 ip community-list standard 2_61_232 permit 65000:2 0:61 0:232 ip community-list standard 2_116_122 permit 65000:2 0:116 0:122 route-map calculator permit 11184 match community 2_58_244 2_61_232 2_116_122 set community 0:14152 ip community-list standard 2_105_193 permit 65000:2 0:105 0:193 route-map calculator permit 11185 match community 2_105_193 set community 0:20265 ip community-list standard 2_25_218 permit 65000:2 0:25 0:218 ip community-list standard 2_50_109 permit 65000:2 0:50 0:109 route-map calculator permit 11186 match community 2_25_218 2_50_109 set community 0:5450 ip community-list standard 2_55_238 permit 65000:2 0:55 0:238 ip community-list standard 2_70_187 permit 65000:2 0:70 0:187 ip community-list standard 2_77_170 permit 65000:2 0:77 0:170 ip community-list standard 2_85_154 permit 65000:2 0:85 0:154 ip community-list standard 2_110_119 permit 65000:2 0:110 0:119 route-map calculator permit 11187 match community 2_55_238 2_70_187 2_77_170 2_85_154 2_110_119 set community 0:13090 ip community-list standard 2_51_113 permit 65000:2 0:51 0:113 route-map calculator permit 11188 match community 2_51_113 set community 0:5763 ip community-list standard 2_242_244 permit 65000:2 0:242 0:244 route-map calculator permit 11189 match community 2_242_244 set community 0:59048 ip community-list standard 2_134_190 permit 65000:2 0:134 0:190 route-map calculator permit 11190 match community 2_134_190 set community 0:25460 ip community-list standard 2_37_201 permit 65000:2 0:37 0:201 ip community-list standard 2_67_111 permit 65000:2 0:67 0:111 route-map calculator permit 11191 match community 2_37_201 2_67_111 set community 0:7437 ip community-list standard 2_205_224 permit 65000:2 0:205 0:224 route-map calculator permit 11192 match community 2_205_224 set community 0:45920 ip community-list standard 2_199_241 permit 65000:2 0:199 0:241 route-map calculator permit 11193 match community 2_199_241 set community 0:47959 ip community-list standard 2_220_227 permit 65000:2 0:220 0:227 route-map calculator permit 11194 match community 2_220_227 set community 0:49940 ip community-list standard 2_3_239 permit 65000:2 0:3 0:239 route-map calculator permit 11195 match community 2_3_239 set community 0:717 ip community-list standard 2_116_235 permit 65000:2 0:116 0:235 ip community-list standard 2_145_188 permit 65000:2 0:145 0:188 route-map calculator permit 11196 match community 2_116_235 2_145_188 set community 0:27260 ip community-list standard 2_61_218 permit 65000:2 0:61 0:218 ip community-list standard 2_109_122 permit 65000:2 0:109 0:122 route-map calculator permit 11197 match community 2_61_218 2_109_122 set community 0:13298 ip community-list standard 2_28_246 permit 65000:2 0:28 0:246 ip community-list standard 2_41_168 permit 65000:2 0:41 0:168 ip community-list standard 2_42_164 permit 65000:2 0:42 0:164 ip community-list standard 2_56_123 permit 65000:2 0:56 0:123 ip community-list standard 2_82_84 permit 65000:2 0:82 0:84 route-map calculator permit 11198 match community 2_28_246 2_41_168 2_42_164 2_56_123 2_82_84 set community 0:6888 ip community-list standard 2_189_194 permit 65000:2 0:189 0:194 route-map calculator permit 11199 match community 2_189_194 set community 0:36666 ip community-list standard 2_16_148 permit 65000:2 0:16 0:148 ip community-list standard 2_32_74 permit 65000:2 0:32 0:74 ip community-list standard 2_37_64 permit 65000:2 0:37 0:64 route-map calculator permit 11200 match community 2_16_148 2_32_74 2_37_64 set community 0:2368 ip community-list standard 2_73_229 permit 65000:2 0:73 0:229 route-map calculator permit 11201 match community 2_73_229 set community 0:16717 ip community-list standard 2_18_245 permit 65000:2 0:18 0:245 ip community-list standard 2_21_210 permit 65000:2 0:21 0:210 ip community-list standard 2_30_147 permit 65000:2 0:30 0:147 ip community-list standard 2_35_126 permit 65000:2 0:35 0:126 ip community-list standard 2_42_105 permit 65000:2 0:42 0:105 ip community-list standard 2_45_98 permit 65000:2 0:45 0:98 ip community-list standard 2_49_90 permit 65000:2 0:49 0:90 ip community-list standard 2_63_70 permit 65000:2 0:63 0:70 route-map calculator permit 11202 match community 2_18_245 2_21_210 2_30_147 2_35_126 2_42_105 set community 0:4410 route-map calculator permit 11203 match community 2_45_98 2_49_90 2_63_70 set community 0:4410 ip community-list standard 2_101_161 permit 65000:2 0:101 0:161 route-map calculator permit 11204 match community 2_101_161 set community 0:16261 ip community-list standard 2_87_239 permit 65000:2 0:87 0:239 route-map calculator permit 11205 match community 2_87_239 set community 0:20793 ip community-list standard 2_133_181 permit 65000:2 0:133 0:181 route-map calculator permit 11206 match community 2_133_181 set community 0:24073 ip community-list standard 2_17_221 permit 65000:2 0:17 0:221 route-map calculator permit 11207 match community 2_17_221 set community 0:3757 ip community-list standard 2_147_197 permit 65000:2 0:147 0:197 route-map calculator permit 11208 match community 2_147_197 set community 0:28959 ip community-list standard 2_238_252 permit 65000:2 0:238 0:252 route-map calculator permit 11209 match community 2_238_252 set community 0:59976 ip community-list standard 2_86_223 permit 65000:2 0:86 0:223 route-map calculator permit 11210 match community 2_86_223 set community 0:19178 ip community-list standard 2_97_222 permit 65000:2 0:97 0:222 ip community-list standard 2_111_194 permit 65000:2 0:111 0:194 route-map calculator permit 11211 match community 2_97_222 2_111_194 set community 0:21534 ip community-list standard 2_110_145 permit 65000:2 0:110 0:145 route-map calculator permit 11212 match community 2_110_145 set community 0:15950 ip community-list standard 2_71_145 permit 65000:2 0:71 0:145 route-map calculator permit 11213 match community 2_71_145 set community 0:10295 ip community-list standard 2_199_202 permit 65000:2 0:199 0:202 route-map calculator permit 11214 match community 2_199_202 set community 0:40198 ip community-list standard 2_224_251 permit 65000:2 0:224 0:251 route-map calculator permit 11215 match community 2_224_251 set community 0:56224 ip community-list standard 2_194_245 permit 65000:2 0:194 0:245 route-map calculator permit 11216 match community 2_194_245 set community 0:47530 ip community-list standard 2_68_187 permit 65000:2 0:68 0:187 route-map calculator permit 11217 match community 2_68_187 set community 0:12716 ip community-list standard 2_2_150 permit 65000:2 0:2 0:150 ip community-list standard 2_3_100 permit 65000:2 0:3 0:100 ip community-list standard 2_4_75 permit 65000:2 0:4 0:75 ip community-list standard 2_5_60 permit 65000:2 0:5 0:60 ip community-list standard 2_6_50 permit 65000:2 0:6 0:50 ip community-list standard 2_10_30 permit 65000:2 0:10 0:30 ip community-list standard 2_12_25 permit 65000:2 0:12 0:25 ip community-list standard 2_15_20 permit 65000:2 0:15 0:20 ip community-list standard 1_44_256 permit 65000:1 0:44 0:256 ip community-list standard 1_45_255 permit 65000:1 0:45 0:255 ip community-list standard 1_46_254 permit 65000:1 0:46 0:254 ip community-list standard 1_47_253 permit 65000:1 0:47 0:253 ip community-list standard 1_48_252 permit 65000:1 0:48 0:252 ip community-list standard 1_49_251 permit 65000:1 0:49 0:251 ip community-list standard 1_50_250 permit 65000:1 0:50 0:250 ip community-list standard 1_51_249 permit 65000:1 0:51 0:249 ip community-list standard 1_52_248 permit 65000:1 0:52 0:248 ip community-list standard 1_53_247 permit 65000:1 0:53 0:247 ip community-list standard 1_54_246 permit 65000:1 0:54 0:246 ip community-list standard 1_55_245 permit 65000:1 0:55 0:245 ip community-list standard 1_56_244 permit 65000:1 0:56 0:244 ip community-list standard 1_57_243 permit 65000:1 0:57 0:243 ip community-list standard 1_58_242 permit 65000:1 0:58 0:242 ip community-list standard 1_59_241 permit 65000:1 0:59 0:241 ip community-list standard 1_60_240 permit 65000:1 0:60 0:240 ip community-list standard 1_61_239 permit 65000:1 0:61 0:239 ip community-list standard 1_62_238 permit 65000:1 0:62 0:238 ip community-list standard 1_63_237 permit 65000:1 0:63 0:237 ip community-list standard 1_64_236 permit 65000:1 0:64 0:236 ip community-list standard 1_65_235 permit 65000:1 0:65 0:235 ip community-list standard 1_66_234 permit 65000:1 0:66 0:234 ip community-list standard 1_67_233 permit 65000:1 0:67 0:233 ip community-list standard 1_68_232 permit 65000:1 0:68 0:232 ip community-list standard 1_69_231 permit 65000:1 0:69 0:231 ip community-list standard 1_70_230 permit 65000:1 0:70 0:230 ip community-list standard 1_71_229 permit 65000:1 0:71 0:229 ip community-list standard 1_72_228 permit 65000:1 0:72 0:228 ip community-list standard 1_73_227 permit 65000:1 0:73 0:227 ip community-list standard 1_74_226 permit 65000:1 0:74 0:226 ip community-list standard 1_75_225 permit 65000:1 0:75 0:225 ip community-list standard 1_76_224 permit 65000:1 0:76 0:224 ip community-list standard 1_77_223 permit 65000:1 0:77 0:223 ip community-list standard 1_78_222 permit 65000:1 0:78 0:222 ip community-list standard 1_79_221 permit 65000:1 0:79 0:221 ip community-list standard 1_80_220 permit 65000:1 0:80 0:220 ip community-list standard 1_81_219 permit 65000:1 0:81 0:219 ip community-list standard 1_82_218 permit 65000:1 0:82 0:218 ip community-list standard 1_83_217 permit 65000:1 0:83 0:217 ip community-list standard 1_84_216 permit 65000:1 0:84 0:216 ip community-list standard 1_85_215 permit 65000:1 0:85 0:215 ip community-list standard 1_86_214 permit 65000:1 0:86 0:214 ip community-list standard 1_87_213 permit 65000:1 0:87 0:213 ip community-list standard 1_88_212 permit 65000:1 0:88 0:212 ip community-list standard 1_89_211 permit 65000:1 0:89 0:211 ip community-list standard 1_90_210 permit 65000:1 0:90 0:210 ip community-list standard 1_91_209 permit 65000:1 0:91 0:209 ip community-list standard 1_92_208 permit 65000:1 0:92 0:208 ip community-list standard 1_93_207 permit 65000:1 0:93 0:207 ip community-list standard 1_94_206 permit 65000:1 0:94 0:206 ip community-list standard 1_95_205 permit 65000:1 0:95 0:205 ip community-list standard 1_96_204 permit 65000:1 0:96 0:204 ip community-list standard 1_97_203 permit 65000:1 0:97 0:203 ip community-list standard 1_98_202 permit 65000:1 0:98 0:202 ip community-list standard 1_99_201 permit 65000:1 0:99 0:201 ip community-list standard 1_100_200 permit 65000:1 0:100 0:200 ip community-list standard 1_101_199 permit 65000:1 0:101 0:199 ip community-list standard 1_102_198 permit 65000:1 0:102 0:198 ip community-list standard 1_103_197 permit 65000:1 0:103 0:197 ip community-list standard 1_104_196 permit 65000:1 0:104 0:196 ip community-list standard 1_105_195 permit 65000:1 0:105 0:195 ip community-list standard 1_106_194 permit 65000:1 0:106 0:194 ip community-list standard 1_107_193 permit 65000:1 0:107 0:193 ip community-list standard 1_108_192 permit 65000:1 0:108 0:192 ip community-list standard 1_109_191 permit 65000:1 0:109 0:191 ip community-list standard 1_110_190 permit 65000:1 0:110 0:190 ip community-list standard 1_111_189 permit 65000:1 0:111 0:189 ip community-list standard 1_112_188 permit 65000:1 0:112 0:188 ip community-list standard 1_113_187 permit 65000:1 0:113 0:187 ip community-list standard 1_114_186 permit 65000:1 0:114 0:186 ip community-list standard 1_115_185 permit 65000:1 0:115 0:185 ip community-list standard 1_116_184 permit 65000:1 0:116 0:184 ip community-list standard 1_117_183 permit 65000:1 0:117 0:183 ip community-list standard 1_118_182 permit 65000:1 0:118 0:182 ip community-list standard 1_119_181 permit 65000:1 0:119 0:181 ip community-list standard 1_120_180 permit 65000:1 0:120 0:180 ip community-list standard 1_121_179 permit 65000:1 0:121 0:179 ip community-list standard 1_122_178 permit 65000:1 0:122 0:178 ip community-list standard 1_123_177 permit 65000:1 0:123 0:177 ip community-list standard 1_124_176 permit 65000:1 0:124 0:176 ip community-list standard 1_125_175 permit 65000:1 0:125 0:175 ip community-list standard 1_126_174 permit 65000:1 0:126 0:174 ip community-list standard 1_127_173 permit 65000:1 0:127 0:173 ip community-list standard 1_128_172 permit 65000:1 0:128 0:172 ip community-list standard 1_129_171 permit 65000:1 0:129 0:171 ip community-list standard 1_130_170 permit 65000:1 0:130 0:170 ip community-list standard 1_131_169 permit 65000:1 0:131 0:169 ip community-list standard 1_132_168 permit 65000:1 0:132 0:168 ip community-list standard 1_133_167 permit 65000:1 0:133 0:167 ip community-list standard 1_134_166 permit 65000:1 0:134 0:166 ip community-list standard 1_135_165 permit 65000:1 0:135 0:165 ip community-list standard 1_136_164 permit 65000:1 0:136 0:164 ip community-list standard 1_137_163 permit 65000:1 0:137 0:163 ip community-list standard 1_138_162 permit 65000:1 0:138 0:162 ip community-list standard 1_139_161 permit 65000:1 0:139 0:161 ip community-list standard 1_140_160 permit 65000:1 0:140 0:160 ip community-list standard 1_141_159 permit 65000:1 0:141 0:159 ip community-list standard 1_142_158 permit 65000:1 0:142 0:158 ip community-list standard 1_143_157 permit 65000:1 0:143 0:157 ip community-list standard 1_144_156 permit 65000:1 0:144 0:156 ip community-list standard 1_145_155 permit 65000:1 0:145 0:155 ip community-list standard 1_146_154 permit 65000:1 0:146 0:154 ip community-list standard 1_147_153 permit 65000:1 0:147 0:153 ip community-list standard 1_148_152 permit 65000:1 0:148 0:152 ip community-list standard 1_149_151 permit 65000:1 0:149 0:151 ip community-list standard 1_150_150 permit 65000:1 0:150 0:150 route-map calculator permit 11218 match community 2_2_150 2_3_100 2_4_75 2_5_60 2_6_50 set community 0:300 route-map calculator permit 11219 match community 2_10_30 2_12_25 2_15_20 1_44_256 1_45_255 set community 0:300 route-map calculator permit 11220 match community 1_46_254 1_47_253 1_48_252 1_49_251 1_50_250 set community 0:300 route-map calculator permit 11221 match community 1_51_249 1_52_248 1_53_247 1_54_246 1_55_245 set community 0:300 route-map calculator permit 11222 match community 1_56_244 1_57_243 1_58_242 1_59_241 1_60_240 set community 0:300 route-map calculator permit 11223 match community 1_61_239 1_62_238 1_63_237 1_64_236 1_65_235 set community 0:300 route-map calculator permit 11224 match community 1_66_234 1_67_233 1_68_232 1_69_231 1_70_230 set community 0:300 route-map calculator permit 11225 match community 1_71_229 1_72_228 1_73_227 1_74_226 1_75_225 set community 0:300 route-map calculator permit 11226 match community 1_76_224 1_77_223 1_78_222 1_79_221 1_80_220 set community 0:300 route-map calculator permit 11227 match community 1_81_219 1_82_218 1_83_217 1_84_216 1_85_215 set community 0:300 route-map calculator permit 11228 match community 1_86_214 1_87_213 1_88_212 1_89_211 1_90_210 set community 0:300 route-map calculator permit 11229 match community 1_91_209 1_92_208 1_93_207 1_94_206 1_95_205 set community 0:300 route-map calculator permit 11230 match community 1_96_204 1_97_203 1_98_202 1_99_201 1_100_200 set community 0:300 route-map calculator permit 11231 match community 1_101_199 1_102_198 1_103_197 1_104_196 1_105_195 set community 0:300 route-map calculator permit 11232 match community 1_106_194 1_107_193 1_108_192 1_109_191 1_110_190 set community 0:300 route-map calculator permit 11233 match community 1_111_189 1_112_188 1_113_187 1_114_186 1_115_185 set community 0:300 route-map calculator permit 11234 match community 1_116_184 1_117_183 1_118_182 1_119_181 1_120_180 set community 0:300 route-map calculator permit 11235 match community 1_121_179 1_122_178 1_123_177 1_124_176 1_125_175 set community 0:300 route-map calculator permit 11236 match community 1_126_174 1_127_173 1_128_172 1_129_171 1_130_170 set community 0:300 route-map calculator permit 11237 match community 1_131_169 1_132_168 1_133_167 1_134_166 1_135_165 set community 0:300 route-map calculator permit 11238 match community 1_136_164 1_137_163 1_138_162 1_139_161 1_140_160 set community 0:300 route-map calculator permit 11239 match community 1_141_159 1_142_158 1_143_157 1_144_156 1_145_155 set community 0:300 route-map calculator permit 11240 match community 1_146_154 1_147_153 1_148_152 1_149_151 1_150_150 set community 0:300 ip community-list standard 2_187_214 permit 65000:2 0:187 0:214 route-map calculator permit 11241 match community 2_187_214 set community 0:40018 ip community-list standard 2_15_202 permit 65000:2 0:15 0:202 ip community-list standard 2_30_101 permit 65000:2 0:30 0:101 route-map calculator permit 11242 match community 2_15_202 2_30_101 set community 0:3030 ip community-list standard 2_216_250 permit 65000:2 0:216 0:250 ip community-list standard 2_225_240 permit 65000:2 0:225 0:240 route-map calculator permit 11243 match community 2_216_250 2_225_240 set community 0:54000 ip community-list standard 2_212_247 permit 65000:2 0:212 0:247 route-map calculator permit 11244 match community 2_212_247 set community 0:52364 ip community-list standard 2_181_247 permit 65000:2 0:181 0:247 route-map calculator permit 11245 match community 2_181_247 set community 0:44707 ip community-list standard 2_181_212 permit 65000:2 0:181 0:212 route-map calculator permit 11246 match community 2_181_212 set community 0:38372 ip community-list standard 2_112_246 permit 65000:2 0:112 0:246 ip community-list standard 2_123_224 permit 65000:2 0:123 0:224 ip community-list standard 2_164_168 permit 65000:2 0:164 0:168 route-map calculator permit 11247 match community 2_112_246 2_123_224 2_164_168 set community 0:27552 ip community-list standard 2_40_199 permit 65000:2 0:40 0:199 route-map calculator permit 11248 match community 2_40_199 set community 0:7960 ip community-list standard 2_157_169 permit 65000:2 0:157 0:169 route-map calculator permit 11249 match community 2_157_169 set community 0:26533 ip community-list standard 2_141_141 permit 65000:2 0:141 0:141 route-map calculator permit 11250 match community 2_141_141 set community 0:19881 ip community-list standard 2_160_206 permit 65000:2 0:160 0:206 route-map calculator permit 11251 match community 2_160_206 set community 0:32960 ip community-list standard 2_98_238 permit 65000:2 0:98 0:238 ip community-list standard 2_119_196 permit 65000:2 0:119 0:196 route-map calculator permit 11252 match community 2_98_238 2_119_196 set community 0:23324 ip community-list standard 2_106_252 permit 65000:2 0:106 0:252 ip community-list standard 2_126_212 permit 65000:2 0:126 0:212 ip community-list standard 2_159_168 permit 65000:2 0:159 0:168 route-map calculator permit 11253 match community 2_106_252 2_126_212 2_159_168 set community 0:26712 ip community-list standard 2_171_251 permit 65000:2 0:171 0:251 route-map calculator permit 11254 match community 2_171_251 set community 0:42921 ip community-list standard 2_9_191 permit 65000:2 0:9 0:191 route-map calculator permit 11255 match community 2_9_191 set community 0:1719 ip community-list standard 2_41_181 permit 65000:2 0:41 0:181 route-map calculator permit 11256 match community 2_41_181 set community 0:7421 ip community-list standard 2_94_238 permit 65000:2 0:94 0:238 ip community-list standard 2_119_188 permit 65000:2 0:119 0:188 route-map calculator permit 11257 match community 2_94_238 2_119_188 set community 0:22372 ip community-list standard 2_55_244 permit 65000:2 0:55 0:244 ip community-list standard 2_61_220 permit 65000:2 0:61 0:220 ip community-list standard 2_110_122 permit 65000:2 0:110 0:122 route-map calculator permit 11258 match community 2_55_244 2_61_220 2_110_122 set community 0:13420 ip community-list standard 2_29_170 permit 65000:2 0:29 0:170 ip community-list standard 2_34_145 permit 65000:2 0:34 0:145 ip community-list standard 2_58_85 permit 65000:2 0:58 0:85 route-map calculator permit 11259 match community 2_29_170 2_34_145 2_58_85 set community 0:4930 ip community-list standard 2_86_256 permit 65000:2 0:86 0:256 ip community-list standard 2_128_172 permit 65000:2 0:128 0:172 route-map calculator permit 11260 match community 2_86_256 2_128_172 set community 0:22016 ip community-list standard 2_39_224 permit 65000:2 0:39 0:224 ip community-list standard 2_42_208 permit 65000:2 0:42 0:208 ip community-list standard 2_48_182 permit 65000:2 0:48 0:182 ip community-list standard 2_52_168 permit 65000:2 0:52 0:168 ip community-list standard 2_56_156 permit 65000:2 0:56 0:156 ip community-list standard 2_78_112 permit 65000:2 0:78 0:112 ip community-list standard 2_84_104 permit 65000:2 0:84 0:104 ip community-list standard 2_91_96 permit 65000:2 0:91 0:96 route-map calculator permit 11261 match community 2_39_224 2_42_208 2_48_182 2_52_168 2_56_156 set community 0:8736 route-map calculator permit 11262 match community 2_78_112 2_84_104 2_91_96 set community 0:8736 ip community-list standard 2_101_143 permit 65000:2 0:101 0:143 route-map calculator permit 11263 match community 2_101_143 set community 0:14443 ip community-list standard 2_145_251 permit 65000:2 0:145 0:251 route-map calculator permit 11264 match community 2_145_251 set community 0:36395 ip community-list standard 2_2_156 permit 65000:2 0:2 0:156 ip community-list standard 2_3_104 permit 65000:2 0:3 0:104 ip community-list standard 2_4_78 permit 65000:2 0:4 0:78 ip community-list standard 2_6_52 permit 65000:2 0:6 0:52 ip community-list standard 2_8_39 permit 65000:2 0:8 0:39 ip community-list standard 2_12_26 permit 65000:2 0:12 0:26 ip community-list standard 2_13_24 permit 65000:2 0:13 0:24 ip community-list standard 1_56_256 permit 65000:1 0:56 0:256 ip community-list standard 1_57_255 permit 65000:1 0:57 0:255 ip community-list standard 1_58_254 permit 65000:1 0:58 0:254 ip community-list standard 1_59_253 permit 65000:1 0:59 0:253 ip community-list standard 1_60_252 permit 65000:1 0:60 0:252 ip community-list standard 1_61_251 permit 65000:1 0:61 0:251 ip community-list standard 1_62_250 permit 65000:1 0:62 0:250 ip community-list standard 1_63_249 permit 65000:1 0:63 0:249 ip community-list standard 1_64_248 permit 65000:1 0:64 0:248 ip community-list standard 1_65_247 permit 65000:1 0:65 0:247 ip community-list standard 1_66_246 permit 65000:1 0:66 0:246 ip community-list standard 1_67_245 permit 65000:1 0:67 0:245 ip community-list standard 1_68_244 permit 65000:1 0:68 0:244 ip community-list standard 1_69_243 permit 65000:1 0:69 0:243 ip community-list standard 1_70_242 permit 65000:1 0:70 0:242 ip community-list standard 1_71_241 permit 65000:1 0:71 0:241 ip community-list standard 1_72_240 permit 65000:1 0:72 0:240 ip community-list standard 1_73_239 permit 65000:1 0:73 0:239 ip community-list standard 1_74_238 permit 65000:1 0:74 0:238 ip community-list standard 1_75_237 permit 65000:1 0:75 0:237 ip community-list standard 1_76_236 permit 65000:1 0:76 0:236 ip community-list standard 1_77_235 permit 65000:1 0:77 0:235 ip community-list standard 1_78_234 permit 65000:1 0:78 0:234 ip community-list standard 1_79_233 permit 65000:1 0:79 0:233 ip community-list standard 1_80_232 permit 65000:1 0:80 0:232 ip community-list standard 1_81_231 permit 65000:1 0:81 0:231 ip community-list standard 1_82_230 permit 65000:1 0:82 0:230 ip community-list standard 1_83_229 permit 65000:1 0:83 0:229 ip community-list standard 1_84_228 permit 65000:1 0:84 0:228 ip community-list standard 1_85_227 permit 65000:1 0:85 0:227 ip community-list standard 1_86_226 permit 65000:1 0:86 0:226 ip community-list standard 1_87_225 permit 65000:1 0:87 0:225 ip community-list standard 1_88_224 permit 65000:1 0:88 0:224 ip community-list standard 1_89_223 permit 65000:1 0:89 0:223 ip community-list standard 1_90_222 permit 65000:1 0:90 0:222 ip community-list standard 1_91_221 permit 65000:1 0:91 0:221 ip community-list standard 1_92_220 permit 65000:1 0:92 0:220 ip community-list standard 1_93_219 permit 65000:1 0:93 0:219 ip community-list standard 1_94_218 permit 65000:1 0:94 0:218 ip community-list standard 1_95_217 permit 65000:1 0:95 0:217 ip community-list standard 1_96_216 permit 65000:1 0:96 0:216 ip community-list standard 1_97_215 permit 65000:1 0:97 0:215 ip community-list standard 1_98_214 permit 65000:1 0:98 0:214 ip community-list standard 1_99_213 permit 65000:1 0:99 0:213 ip community-list standard 1_100_212 permit 65000:1 0:100 0:212 ip community-list standard 1_101_211 permit 65000:1 0:101 0:211 ip community-list standard 1_102_210 permit 65000:1 0:102 0:210 ip community-list standard 1_103_209 permit 65000:1 0:103 0:209 ip community-list standard 1_104_208 permit 65000:1 0:104 0:208 ip community-list standard 1_105_207 permit 65000:1 0:105 0:207 ip community-list standard 1_106_206 permit 65000:1 0:106 0:206 ip community-list standard 1_107_205 permit 65000:1 0:107 0:205 ip community-list standard 1_108_204 permit 65000:1 0:108 0:204 ip community-list standard 1_109_203 permit 65000:1 0:109 0:203 ip community-list standard 1_110_202 permit 65000:1 0:110 0:202 ip community-list standard 1_111_201 permit 65000:1 0:111 0:201 ip community-list standard 1_112_200 permit 65000:1 0:112 0:200 ip community-list standard 1_113_199 permit 65000:1 0:113 0:199 ip community-list standard 1_114_198 permit 65000:1 0:114 0:198 ip community-list standard 1_115_197 permit 65000:1 0:115 0:197 ip community-list standard 1_116_196 permit 65000:1 0:116 0:196 ip community-list standard 1_117_195 permit 65000:1 0:117 0:195 ip community-list standard 1_118_194 permit 65000:1 0:118 0:194 ip community-list standard 1_119_193 permit 65000:1 0:119 0:193 ip community-list standard 1_120_192 permit 65000:1 0:120 0:192 ip community-list standard 1_121_191 permit 65000:1 0:121 0:191 ip community-list standard 1_122_190 permit 65000:1 0:122 0:190 ip community-list standard 1_123_189 permit 65000:1 0:123 0:189 ip community-list standard 1_124_188 permit 65000:1 0:124 0:188 ip community-list standard 1_125_187 permit 65000:1 0:125 0:187 ip community-list standard 1_126_186 permit 65000:1 0:126 0:186 ip community-list standard 1_127_185 permit 65000:1 0:127 0:185 ip community-list standard 1_128_184 permit 65000:1 0:128 0:184 ip community-list standard 1_129_183 permit 65000:1 0:129 0:183 ip community-list standard 1_130_182 permit 65000:1 0:130 0:182 ip community-list standard 1_131_181 permit 65000:1 0:131 0:181 ip community-list standard 1_132_180 permit 65000:1 0:132 0:180 ip community-list standard 1_133_179 permit 65000:1 0:133 0:179 ip community-list standard 1_134_178 permit 65000:1 0:134 0:178 ip community-list standard 1_135_177 permit 65000:1 0:135 0:177 ip community-list standard 1_136_176 permit 65000:1 0:136 0:176 ip community-list standard 1_137_175 permit 65000:1 0:137 0:175 ip community-list standard 1_138_174 permit 65000:1 0:138 0:174 ip community-list standard 1_139_173 permit 65000:1 0:139 0:173 ip community-list standard 1_140_172 permit 65000:1 0:140 0:172 ip community-list standard 1_141_171 permit 65000:1 0:141 0:171 ip community-list standard 1_142_170 permit 65000:1 0:142 0:170 ip community-list standard 1_143_169 permit 65000:1 0:143 0:169 ip community-list standard 1_144_168 permit 65000:1 0:144 0:168 ip community-list standard 1_145_167 permit 65000:1 0:145 0:167 ip community-list standard 1_146_166 permit 65000:1 0:146 0:166 ip community-list standard 1_147_165 permit 65000:1 0:147 0:165 ip community-list standard 1_148_164 permit 65000:1 0:148 0:164 ip community-list standard 1_149_163 permit 65000:1 0:149 0:163 ip community-list standard 1_150_162 permit 65000:1 0:150 0:162 ip community-list standard 1_151_161 permit 65000:1 0:151 0:161 ip community-list standard 1_152_160 permit 65000:1 0:152 0:160 ip community-list standard 1_153_159 permit 65000:1 0:153 0:159 ip community-list standard 1_154_158 permit 65000:1 0:154 0:158 ip community-list standard 1_155_157 permit 65000:1 0:155 0:157 ip community-list standard 1_156_156 permit 65000:1 0:156 0:156 route-map calculator permit 11265 match community 2_2_156 2_3_104 2_4_78 2_6_52 2_8_39 set community 0:312 route-map calculator permit 11266 match community 2_12_26 2_13_24 1_56_256 1_57_255 1_58_254 set community 0:312 route-map calculator permit 11267 match community 1_59_253 1_60_252 1_61_251 1_62_250 1_63_249 set community 0:312 route-map calculator permit 11268 match community 1_64_248 1_65_247 1_66_246 1_67_245 1_68_244 set community 0:312 route-map calculator permit 11269 match community 1_69_243 1_70_242 1_71_241 1_72_240 1_73_239 set community 0:312 route-map calculator permit 11270 match community 1_74_238 1_75_237 1_76_236 1_77_235 1_78_234 set community 0:312 route-map calculator permit 11271 match community 1_79_233 1_80_232 1_81_231 1_82_230 1_83_229 set community 0:312 route-map calculator permit 11272 match community 1_84_228 1_85_227 1_86_226 1_87_225 1_88_224 set community 0:312 route-map calculator permit 11273 match community 1_89_223 1_90_222 1_91_221 1_92_220 1_93_219 set community 0:312 route-map calculator permit 11274 match community 1_94_218 1_95_217 1_96_216 1_97_215 1_98_214 set community 0:312 route-map calculator permit 11275 match community 1_99_213 1_100_212 1_101_211 1_102_210 1_103_209 set community 0:312 route-map calculator permit 11276 match community 1_104_208 1_105_207 1_106_206 1_107_205 1_108_204 set community 0:312 route-map calculator permit 11277 match community 1_109_203 1_110_202 1_111_201 1_112_200 1_113_199 set community 0:312 route-map calculator permit 11278 match community 1_114_198 1_115_197 1_116_196 1_117_195 1_118_194 set community 0:312 route-map calculator permit 11279 match community 1_119_193 1_120_192 1_121_191 1_122_190 1_123_189 set community 0:312 route-map calculator permit 11280 match community 1_124_188 1_125_187 1_126_186 1_127_185 1_128_184 set community 0:312 route-map calculator permit 11281 match community 1_129_183 1_130_182 1_131_181 1_132_180 1_133_179 set community 0:312 route-map calculator permit 11282 match community 1_134_178 1_135_177 1_136_176 1_137_175 1_138_174 set community 0:312 route-map calculator permit 11283 match community 1_139_173 1_140_172 1_141_171 1_142_170 1_143_169 set community 0:312 route-map calculator permit 11284 match community 1_144_168 1_145_167 1_146_166 1_147_165 1_148_164 set community 0:312 route-map calculator permit 11285 match community 1_149_163 1_150_162 1_151_161 1_152_160 1_153_159 set community 0:312 route-map calculator permit 11286 match community 1_154_158 1_155_157 1_156_156 set community 0:312 ip community-list standard 2_17_233 permit 65000:2 0:17 0:233 route-map calculator permit 11287 match community 2_17_233 set community 0:3961 ip community-list standard 2_42_232 permit 65000:2 0:42 0:232 ip community-list standard 2_48_203 permit 65000:2 0:48 0:203 ip community-list standard 2_56_174 permit 65000:2 0:56 0:174 ip community-list standard 2_58_168 permit 65000:2 0:58 0:168 ip community-list standard 2_84_116 permit 65000:2 0:84 0:116 ip community-list standard 2_87_112 permit 65000:2 0:87 0:112 route-map calculator permit 11288 match community 2_42_232 2_48_203 2_56_174 2_58_168 2_84_116 set community 0:9744 route-map calculator permit 11289 match community 2_87_112 set community 0:9744 ip community-list standard 2_37_79 permit 65000:2 0:37 0:79 route-map calculator permit 11290 match community 2_37_79 set community 0:2923 ip community-list standard 2_6_208 permit 65000:2 0:6 0:208 ip community-list standard 2_8_156 permit 65000:2 0:8 0:156 ip community-list standard 2_12_104 permit 65000:2 0:12 0:104 ip community-list standard 2_13_96 permit 65000:2 0:13 0:96 ip community-list standard 2_16_78 permit 65000:2 0:16 0:78 ip community-list standard 2_24_52 permit 65000:2 0:24 0:52 ip community-list standard 2_26_48 permit 65000:2 0:26 0:48 ip community-list standard 2_32_39 permit 65000:2 0:32 0:39 route-map calculator permit 11291 match community 2_6_208 2_8_156 2_12_104 2_13_96 2_16_78 set community 0:1248 route-map calculator permit 11292 match community 2_24_52 2_26_48 2_32_39 set community 0:1248 ip community-list standard 2_149_167 permit 65000:2 0:149 0:167 route-map calculator permit 11293 match community 2_149_167 set community 0:24883 ip community-list standard 2_37_226 permit 65000:2 0:37 0:226 ip community-list standard 2_74_113 permit 65000:2 0:74 0:113 route-map calculator permit 11294 match community 2_37_226 2_74_113 set community 0:8362 ip community-list standard 2_96_131 permit 65000:2 0:96 0:131 route-map calculator permit 11295 match community 2_96_131 set community 0:12576 ip community-list standard 2_113_171 permit 65000:2 0:113 0:171 route-map calculator permit 11296 match community 2_113_171 set community 0:19323 ip community-list standard 2_12_182 permit 65000:2 0:12 0:182 ip community-list standard 2_13_168 permit 65000:2 0:13 0:168 ip community-list standard 2_14_156 permit 65000:2 0:14 0:156 ip community-list standard 2_21_104 permit 65000:2 0:21 0:104 ip community-list standard 2_24_91 permit 65000:2 0:24 0:91 ip community-list standard 2_26_84 permit 65000:2 0:26 0:84 ip community-list standard 2_28_78 permit 65000:2 0:28 0:78 ip community-list standard 2_39_56 permit 65000:2 0:39 0:56 ip community-list standard 2_42_52 permit 65000:2 0:42 0:52 route-map calculator permit 11297 match community 2_12_182 2_13_168 2_14_156 2_21_104 2_24_91 set community 0:2184 route-map calculator permit 11298 match community 2_26_84 2_28_78 2_39_56 2_42_52 set community 0:2184 ip community-list standard 2_85_203 permit 65000:2 0:85 0:203 ip community-list standard 2_119_145 permit 65000:2 0:119 0:145 route-map calculator permit 11299 match community 2_85_203 2_119_145 set community 0:17255 ip community-list standard 2_89_141 permit 65000:2 0:89 0:141 route-map calculator permit 11300 match community 2_89_141 set community 0:12549 ip community-list standard 2_179_253 permit 65000:2 0:179 0:253 route-map calculator permit 11301 match community 2_179_253 set community 0:45287 ip community-list standard 2_25_239 permit 65000:2 0:25 0:239 route-map calculator permit 11302 match community 2_25_239 set community 0:5975 ip community-list standard 2_201_239 permit 65000:2 0:201 0:239 route-map calculator permit 11303 match community 2_201_239 set community 0:48039 ip community-list standard 2_78_182 permit 65000:2 0:78 0:182 ip community-list standard 2_84_169 permit 65000:2 0:84 0:169 ip community-list standard 2_91_156 permit 65000:2 0:91 0:156 route-map calculator permit 11304 match community 2_78_182 2_84_169 2_91_156 set community 0:14196 ip community-list standard 2_160_194 permit 65000:2 0:160 0:194 route-map calculator permit 11305 match community 2_160_194 set community 0:31040 ip community-list standard 2_23_238 permit 65000:2 0:23 0:238 ip community-list standard 2_34_161 permit 65000:2 0:34 0:161 ip community-list standard 2_46_119 permit 65000:2 0:46 0:119 route-map calculator permit 11306 match community 2_23_238 2_34_161 2_46_119 set community 0:5474 ip community-list standard 2_175_247 permit 65000:2 0:175 0:247 route-map calculator permit 11307 match community 2_175_247 set community 0:43225 ip community-list standard 2_35_199 permit 65000:2 0:35 0:199 route-map calculator permit 11308 match community 2_35_199 set community 0:6965 ip community-list standard 2_134_201 permit 65000:2 0:134 0:201 route-map calculator permit 11309 match community 2_134_201 set community 0:26934 ip community-list standard 2_35_146 permit 65000:2 0:35 0:146 ip community-list standard 2_70_73 permit 65000:2 0:70 0:73 route-map calculator permit 11310 match community 2_35_146 2_70_73 set community 0:5110 ip community-list standard 2_73_241 permit 65000:2 0:73 0:241 route-map calculator permit 11311 match community 2_73_241 set community 0:17593 ip community-list standard 2_221_248 permit 65000:2 0:221 0:248 route-map calculator permit 11312 match community 2_221_248 set community 0:54808 ip community-list standard 2_64_249 permit 65000:2 0:64 0:249 ip community-list standard 2_83_192 permit 65000:2 0:83 0:192 ip community-list standard 2_96_166 permit 65000:2 0:96 0:166 route-map calculator permit 11313 match community 2_64_249 2_83_192 2_96_166 set community 0:15936 ip community-list standard 2_73_244 permit 65000:2 0:73 0:244 ip community-list standard 2_122_146 permit 65000:2 0:122 0:146 route-map calculator permit 11314 match community 2_73_244 2_122_146 set community 0:17812 ip community-list standard 2_36_181 permit 65000:2 0:36 0:181 route-map calculator permit 11315 match community 2_36_181 set community 0:6516 ip community-list standard 2_229_245 permit 65000:2 0:229 0:245 route-map calculator permit 11316 match community 2_229_245 set community 0:56105 ip community-list standard 2_161_211 permit 65000:2 0:161 0:211 route-map calculator permit 11317 match community 2_161_211 set community 0:33971 ip community-list standard 2_76_256 permit 65000:2 0:76 0:256 ip community-list standard 2_128_152 permit 65000:2 0:128 0:152 route-map calculator permit 11318 match community 2_76_256 2_128_152 set community 0:19456 ip community-list standard 2_96_251 permit 65000:2 0:96 0:251 route-map calculator permit 11319 match community 2_96_251 set community 0:24096 ip community-list standard 2_124_167 permit 65000:2 0:124 0:167 route-map calculator permit 11320 match community 2_124_167 set community 0:20708 ip community-list standard 2_133_238 permit 65000:2 0:133 0:238 route-map calculator permit 11321 match community 2_133_238 set community 0:31654 ip community-list standard 2_48_179 permit 65000:2 0:48 0:179 route-map calculator permit 11322 match community 2_48_179 set community 0:8592 ip community-list standard 2_78_137 permit 65000:2 0:78 0:137 route-map calculator permit 11323 match community 2_78_137 set community 0:10686 ip community-list standard 2_97_125 permit 65000:2 0:97 0:125 route-map calculator permit 11324 match community 2_97_125 set community 0:12125 ip community-list standard 2_159_186 permit 65000:2 0:159 0:186 route-map calculator permit 11325 match community 2_159_186 set community 0:29574 ip community-list standard 2_101_155 permit 65000:2 0:101 0:155 route-map calculator permit 11326 match community 2_101_155 set community 0:15655 ip community-list standard 2_115_145 permit 65000:2 0:115 0:145 route-map calculator permit 11327 match community 2_115_145 set community 0:16675 ip community-list standard 2_11_106 permit 65000:2 0:11 0:106 ip community-list standard 2_22_53 permit 65000:2 0:22 0:53 route-map calculator permit 11328 match community 2_11_106 2_22_53 set community 0:1166 ip community-list standard 2_23_182 permit 65000:2 0:23 0:182 ip community-list standard 2_26_161 permit 65000:2 0:26 0:161 ip community-list standard 2_46_91 permit 65000:2 0:46 0:91 route-map calculator permit 11329 match community 2_23_182 2_26_161 2_46_91 set community 0:4186 ip community-list standard 2_28_230 permit 65000:2 0:28 0:230 ip community-list standard 2_35_184 permit 65000:2 0:35 0:184 ip community-list standard 2_40_161 permit 65000:2 0:40 0:161 ip community-list standard 2_46_140 permit 65000:2 0:46 0:140 ip community-list standard 2_56_115 permit 65000:2 0:56 0:115 ip community-list standard 2_70_92 permit 65000:2 0:70 0:92 route-map calculator permit 11330 match community 2_28_230 2_35_184 2_40_161 2_46_140 2_56_115 set community 0:6440 route-map calculator permit 11331 match community 2_70_92 set community 0:6440 ip community-list standard 2_67_131 permit 65000:2 0:67 0:131 route-map calculator permit 11332 match community 2_67_131 set community 0:8777 ip community-list standard 2_120_167 permit 65000:2 0:120 0:167 route-map calculator permit 11333 match community 2_120_167 set community 0:20040 ip community-list standard 2_202_227 permit 65000:2 0:202 0:227 route-map calculator permit 11334 match community 2_202_227 set community 0:45854 ip community-list standard 2_153_217 permit 65000:2 0:153 0:217 route-map calculator permit 11335 match community 2_153_217 set community 0:33201 ip community-list standard 2_89_225 permit 65000:2 0:89 0:225 route-map calculator permit 11336 match community 2_89_225 set community 0:20025 ip community-list standard 2_75_237 permit 65000:2 0:75 0:237 ip community-list standard 2_79_225 permit 65000:2 0:79 0:225 route-map calculator permit 11337 match community 2_75_237 2_79_225 set community 0:17775 ip community-list standard 2_15_226 permit 65000:2 0:15 0:226 ip community-list standard 2_30_113 permit 65000:2 0:30 0:113 route-map calculator permit 11338 match community 2_15_226 2_30_113 set community 0:3390 ip community-list standard 2_51_171 permit 65000:2 0:51 0:171 ip community-list standard 2_57_153 permit 65000:2 0:57 0:153 route-map calculator permit 11339 match community 2_51_171 2_57_153 set community 0:8721 ip community-list standard 2_145_165 permit 65000:2 0:145 0:165 route-map calculator permit 11340 match community 2_145_165 set community 0:23925 ip community-list standard 2_42_217 permit 65000:2 0:42 0:217 ip community-list standard 2_49_186 permit 65000:2 0:49 0:186 ip community-list standard 2_62_147 permit 65000:2 0:62 0:147 ip community-list standard 2_93_98 permit 65000:2 0:93 0:98 route-map calculator permit 11341 match community 2_42_217 2_49_186 2_62_147 2_93_98 set community 0:9114 ip community-list standard 2_34_142 permit 65000:2 0:34 0:142 ip community-list standard 2_68_71 permit 65000:2 0:68 0:71 route-map calculator permit 11342 match community 2_34_142 2_68_71 set community 0:4828 ip community-list standard 2_157_248 permit 65000:2 0:157 0:248 route-map calculator permit 11343 match community 2_157_248 set community 0:38936 ip community-list standard 2_172_207 permit 65000:2 0:172 0:207 route-map calculator permit 11344 match community 2_172_207 set community 0:35604 ip community-list standard 2_196_211 permit 65000:2 0:196 0:211 route-map calculator permit 11345 match community 2_196_211 set community 0:41356 ip community-list standard 2_49_161 permit 65000:2 0:49 0:161 route-map calculator permit 11346 match community 2_49_161 set community 0:7889 ip community-list standard 1_1_146 permit 65000:1 0:1 0:146 ip community-list standard 2_1_147 permit 65000:2 0:1 0:147 ip community-list standard 1_2_145 permit 65000:1 0:2 0:145 ip community-list standard 2_3_49 permit 65000:2 0:3 0:49 ip community-list standard 1_3_144 permit 65000:1 0:3 0:144 ip community-list standard 1_4_143 permit 65000:1 0:4 0:143 ip community-list standard 1_5_142 permit 65000:1 0:5 0:142 ip community-list standard 1_6_141 permit 65000:1 0:6 0:141 ip community-list standard 2_7_21 permit 65000:2 0:7 0:21 ip community-list standard 1_7_140 permit 65000:1 0:7 0:140 ip community-list standard 1_8_139 permit 65000:1 0:8 0:139 ip community-list standard 1_9_138 permit 65000:1 0:9 0:138 ip community-list standard 1_10_137 permit 65000:1 0:10 0:137 ip community-list standard 1_11_136 permit 65000:1 0:11 0:136 ip community-list standard 1_12_135 permit 65000:1 0:12 0:135 ip community-list standard 1_13_134 permit 65000:1 0:13 0:134 ip community-list standard 1_14_133 permit 65000:1 0:14 0:133 ip community-list standard 1_15_132 permit 65000:1 0:15 0:132 ip community-list standard 1_16_131 permit 65000:1 0:16 0:131 ip community-list standard 1_17_130 permit 65000:1 0:17 0:130 ip community-list standard 1_18_129 permit 65000:1 0:18 0:129 ip community-list standard 1_19_128 permit 65000:1 0:19 0:128 ip community-list standard 1_20_127 permit 65000:1 0:20 0:127 ip community-list standard 1_21_126 permit 65000:1 0:21 0:126 ip community-list standard 1_22_125 permit 65000:1 0:22 0:125 ip community-list standard 1_23_124 permit 65000:1 0:23 0:124 ip community-list standard 1_24_123 permit 65000:1 0:24 0:123 ip community-list standard 1_25_122 permit 65000:1 0:25 0:122 ip community-list standard 1_26_121 permit 65000:1 0:26 0:121 ip community-list standard 1_27_120 permit 65000:1 0:27 0:120 ip community-list standard 1_28_119 permit 65000:1 0:28 0:119 ip community-list standard 1_29_118 permit 65000:1 0:29 0:118 ip community-list standard 1_30_117 permit 65000:1 0:30 0:117 ip community-list standard 1_31_116 permit 65000:1 0:31 0:116 ip community-list standard 1_32_115 permit 65000:1 0:32 0:115 ip community-list standard 1_33_114 permit 65000:1 0:33 0:114 ip community-list standard 1_34_113 permit 65000:1 0:34 0:113 ip community-list standard 1_35_112 permit 65000:1 0:35 0:112 ip community-list standard 1_36_111 permit 65000:1 0:36 0:111 ip community-list standard 1_37_110 permit 65000:1 0:37 0:110 ip community-list standard 1_38_109 permit 65000:1 0:38 0:109 ip community-list standard 1_39_108 permit 65000:1 0:39 0:108 ip community-list standard 1_40_107 permit 65000:1 0:40 0:107 ip community-list standard 1_41_106 permit 65000:1 0:41 0:106 ip community-list standard 1_42_105 permit 65000:1 0:42 0:105 ip community-list standard 1_43_104 permit 65000:1 0:43 0:104 ip community-list standard 1_44_103 permit 65000:1 0:44 0:103 ip community-list standard 1_45_102 permit 65000:1 0:45 0:102 ip community-list standard 1_46_101 permit 65000:1 0:46 0:101 ip community-list standard 1_47_100 permit 65000:1 0:47 0:100 ip community-list standard 1_48_99 permit 65000:1 0:48 0:99 ip community-list standard 1_49_98 permit 65000:1 0:49 0:98 ip community-list standard 1_50_97 permit 65000:1 0:50 0:97 ip community-list standard 1_51_96 permit 65000:1 0:51 0:96 ip community-list standard 1_52_95 permit 65000:1 0:52 0:95 ip community-list standard 1_53_94 permit 65000:1 0:53 0:94 ip community-list standard 1_54_93 permit 65000:1 0:54 0:93 ip community-list standard 1_55_92 permit 65000:1 0:55 0:92 ip community-list standard 1_56_91 permit 65000:1 0:56 0:91 ip community-list standard 1_57_90 permit 65000:1 0:57 0:90 ip community-list standard 1_58_89 permit 65000:1 0:58 0:89 ip community-list standard 1_59_88 permit 65000:1 0:59 0:88 ip community-list standard 1_60_87 permit 65000:1 0:60 0:87 ip community-list standard 1_61_86 permit 65000:1 0:61 0:86 ip community-list standard 1_62_85 permit 65000:1 0:62 0:85 ip community-list standard 1_63_84 permit 65000:1 0:63 0:84 ip community-list standard 1_64_83 permit 65000:1 0:64 0:83 ip community-list standard 1_65_82 permit 65000:1 0:65 0:82 ip community-list standard 1_66_81 permit 65000:1 0:66 0:81 ip community-list standard 1_67_80 permit 65000:1 0:67 0:80 ip community-list standard 1_68_79 permit 65000:1 0:68 0:79 ip community-list standard 1_69_78 permit 65000:1 0:69 0:78 ip community-list standard 1_70_77 permit 65000:1 0:70 0:77 ip community-list standard 1_71_76 permit 65000:1 0:71 0:76 ip community-list standard 1_72_75 permit 65000:1 0:72 0:75 ip community-list standard 1_73_74 permit 65000:1 0:73 0:74 ip community-list expanded c147 permit 1 ^65000:4_0:147_0:1$ ip community-list expanded c147 permit 2 ^65000:3_0:148_0:1$ ip community-list expanded c147 permit 3 ^65000:3_0:149_0:2$ ip community-list expanded c147 permit 4 ^65000:3_0:150_0:3$ ip community-list expanded c147 permit 5 ^65000:3_0:151_0:4$ ip community-list expanded c147 permit 6 ^65000:3_0:152_0:5$ ip community-list expanded c147 permit 7 ^65000:3_0:153_0:6$ ip community-list expanded c147 permit 8 ^65000:3_0:154_0:7$ ip community-list expanded c147 permit 9 ^65000:3_0:155_0:8$ ip community-list expanded c147 permit 10 ^65000:3_0:156_0:9$ ip community-list expanded c147 permit 11 ^65000:3_0:157_0:10$ ip community-list expanded c147 permit 12 ^65000:3_0:158_0:11$ ip community-list expanded c147 permit 13 ^65000:3_0:159_0:12$ ip community-list expanded c147 permit 14 ^65000:3_0:160_0:13$ ip community-list expanded c147 permit 15 ^65000:3_0:161_0:14$ ip community-list expanded c147 permit 16 ^65000:3_0:162_0:15$ ip community-list expanded c147 permit 17 ^65000:3_0:163_0:16$ ip community-list expanded c147 permit 18 ^65000:3_0:164_0:17$ ip community-list expanded c147 permit 19 ^65000:3_0:165_0:18$ ip community-list expanded c147 permit 20 ^65000:3_0:166_0:19$ ip community-list expanded c147 permit 21 ^65000:3_0:167_0:20$ ip community-list expanded c147 permit 22 ^65000:3_0:168_0:21$ ip community-list expanded c147 permit 23 ^65000:3_0:169_0:22$ ip community-list expanded c147 permit 24 ^65000:3_0:170_0:23$ ip community-list expanded c147 permit 25 ^65000:3_0:171_0:24$ ip community-list expanded c147 permit 26 ^65000:3_0:172_0:25$ ip community-list expanded c147 permit 27 ^65000:3_0:173_0:26$ ip community-list expanded c147 permit 28 ^65000:3_0:174_0:27$ ip community-list expanded c147 permit 29 ^65000:3_0:175_0:28$ ip community-list expanded c147 permit 30 ^65000:3_0:176_0:29$ ip community-list expanded c147 permit 31 ^65000:3_0:177_0:30$ ip community-list expanded c147 permit 32 ^65000:3_0:178_0:31$ ip community-list expanded c147 permit 33 ^65000:3_0:179_0:32$ ip community-list expanded c147 permit 34 ^65000:3_0:180_0:33$ ip community-list expanded c147 permit 35 ^65000:3_0:181_0:34$ ip community-list expanded c147 permit 36 ^65000:3_0:182_0:35$ ip community-list expanded c147 permit 37 ^65000:3_0:183_0:36$ ip community-list expanded c147 permit 38 ^65000:3_0:184_0:37$ ip community-list expanded c147 permit 39 ^65000:3_0:185_0:38$ ip community-list expanded c147 permit 40 ^65000:3_0:186_0:39$ ip community-list expanded c147 permit 41 ^65000:3_0:187_0:40$ ip community-list expanded c147 permit 42 ^65000:3_0:188_0:41$ ip community-list expanded c147 permit 43 ^65000:3_0:189_0:42$ ip community-list expanded c147 permit 44 ^65000:3_0:190_0:43$ ip community-list expanded c147 permit 45 ^65000:3_0:191_0:44$ ip community-list expanded c147 permit 46 ^65000:3_0:192_0:45$ ip community-list expanded c147 permit 47 ^65000:3_0:193_0:46$ ip community-list expanded c147 permit 48 ^65000:3_0:194_0:47$ ip community-list expanded c147 permit 49 ^65000:3_0:195_0:48$ ip community-list expanded c147 permit 50 ^65000:3_0:196_0:49$ ip community-list expanded c147 permit 51 ^65000:3_0:197_0:50$ ip community-list expanded c147 permit 52 ^65000:3_0:198_0:51$ ip community-list expanded c147 permit 53 ^65000:3_0:199_0:52$ ip community-list expanded c147 permit 54 ^65000:3_0:200_0:53$ ip community-list expanded c147 permit 55 ^65000:3_0:201_0:54$ ip community-list expanded c147 permit 56 ^65000:3_0:202_0:55$ ip community-list expanded c147 permit 57 ^65000:3_0:203_0:56$ ip community-list expanded c147 permit 58 ^65000:3_0:204_0:57$ ip community-list expanded c147 permit 59 ^65000:3_0:205_0:58$ ip community-list expanded c147 permit 60 ^65000:3_0:206_0:59$ ip community-list expanded c147 permit 61 ^65000:3_0:207_0:60$ ip community-list expanded c147 permit 62 ^65000:3_0:208_0:61$ ip community-list expanded c147 permit 63 ^65000:3_0:209_0:62$ ip community-list expanded c147 permit 64 ^65000:3_0:210_0:63$ ip community-list expanded c147 permit 65 ^65000:3_0:211_0:64$ ip community-list expanded c147 permit 66 ^65000:3_0:212_0:65$ ip community-list expanded c147 permit 67 ^65000:3_0:213_0:66$ ip community-list expanded c147 permit 68 ^65000:3_0:214_0:67$ ip community-list expanded c147 permit 69 ^65000:3_0:215_0:68$ ip community-list expanded c147 permit 70 ^65000:3_0:216_0:69$ ip community-list expanded c147 permit 71 ^65000:3_0:217_0:70$ ip community-list expanded c147 permit 72 ^65000:3_0:218_0:71$ ip community-list expanded c147 permit 73 ^65000:3_0:219_0:72$ ip community-list expanded c147 permit 74 ^65000:3_0:220_0:73$ ip community-list expanded c147 permit 75 ^65000:3_0:221_0:74$ ip community-list expanded c147 permit 76 ^65000:3_0:222_0:75$ ip community-list expanded c147 permit 77 ^65000:3_0:223_0:76$ ip community-list expanded c147 permit 78 ^65000:3_0:224_0:77$ ip community-list expanded c147 permit 79 ^65000:3_0:225_0:78$ ip community-list expanded c147 permit 80 ^65000:3_0:226_0:79$ ip community-list expanded c147 permit 81 ^65000:3_0:227_0:80$ ip community-list expanded c147 permit 82 ^65000:3_0:228_0:81$ ip community-list expanded c147 permit 83 ^65000:3_0:229_0:82$ ip community-list expanded c147 permit 84 ^65000:3_0:230_0:83$ ip community-list expanded c147 permit 85 ^65000:3_0:231_0:84$ ip community-list expanded c147 permit 86 ^65000:3_0:232_0:85$ ip community-list expanded c147 permit 87 ^65000:3_0:233_0:86$ ip community-list expanded c147 permit 88 ^65000:3_0:234_0:87$ ip community-list expanded c147 permit 89 ^65000:3_0:235_0:88$ ip community-list expanded c147 permit 90 ^65000:3_0:236_0:89$ ip community-list expanded c147 permit 91 ^65000:3_0:237_0:90$ ip community-list expanded c147 permit 92 ^65000:3_0:238_0:91$ ip community-list expanded c147 permit 93 ^65000:3_0:239_0:92$ ip community-list expanded c147 permit 94 ^65000:3_0:240_0:93$ ip community-list expanded c147 permit 95 ^65000:3_0:241_0:94$ ip community-list expanded c147 permit 96 ^65000:3_0:242_0:95$ ip community-list expanded c147 permit 97 ^65000:3_0:243_0:96$ ip community-list expanded c147 permit 98 ^65000:3_0:244_0:97$ ip community-list expanded c147 permit 99 ^65000:3_0:245_0:98$ ip community-list expanded c147 permit 100 ^65000:3_0:246_0:99$ ip community-list expanded c147 permit 101 ^65000:3_0:247_0:100$ ip community-list expanded c147 permit 102 ^65000:3_0:248_0:101$ ip community-list expanded c147 permit 103 ^65000:3_0:249_0:102$ ip community-list expanded c147 permit 104 ^65000:3_0:250_0:103$ ip community-list expanded c147 permit 105 ^65000:3_0:251_0:104$ ip community-list expanded c147 permit 106 ^65000:3_0:252_0:105$ ip community-list expanded c147 permit 107 ^65000:3_0:253_0:106$ ip community-list expanded c147 permit 108 ^65000:3_0:254_0:107$ ip community-list expanded c147 permit 109 ^65000:3_0:255_0:108$ ip community-list expanded c147 permit 110 ^65000:3_0:256_0:109$ route-map calculator permit 11347 match community 1_1_146 2_1_147 1_2_145 2_3_49 1_3_144 set community 0:147 route-map calculator permit 11348 match community 1_4_143 1_5_142 1_6_141 2_7_21 1_7_140 set community 0:147 route-map calculator permit 11349 match community 1_8_139 1_9_138 1_10_137 1_11_136 1_12_135 set community 0:147 route-map calculator permit 11350 match community 1_13_134 1_14_133 1_15_132 1_16_131 1_17_130 set community 0:147 route-map calculator permit 11351 match community 1_18_129 1_19_128 1_20_127 1_21_126 1_22_125 set community 0:147 route-map calculator permit 11352 match community 1_23_124 1_24_123 1_25_122 1_26_121 1_27_120 set community 0:147 route-map calculator permit 11353 match community 1_28_119 1_29_118 1_30_117 1_31_116 1_32_115 set community 0:147 route-map calculator permit 11354 match community 1_33_114 1_34_113 1_35_112 1_36_111 1_37_110 set community 0:147 route-map calculator permit 11355 match community 1_38_109 1_39_108 1_40_107 1_41_106 1_42_105 set community 0:147 route-map calculator permit 11356 match community 1_43_104 1_44_103 1_45_102 1_46_101 1_47_100 set community 0:147 route-map calculator permit 11357 match community 1_48_99 1_49_98 1_50_97 1_51_96 1_52_95 set community 0:147 route-map calculator permit 11358 match community 1_53_94 1_54_93 1_55_92 1_56_91 1_57_90 set community 0:147 route-map calculator permit 11359 match community 1_58_89 1_59_88 1_60_87 1_61_86 1_62_85 set community 0:147 route-map calculator permit 11360 match community 1_63_84 1_64_83 1_65_82 1_66_81 1_67_80 set community 0:147 route-map calculator permit 11361 match community 1_68_79 1_69_78 1_70_77 1_71_76 1_72_75 set community 0:147 route-map calculator permit 11362 match community 1_73_74 c4_147_1 c3_148_1 c3_149_2 c3_150_3 set community 0:147 route-map calculator permit 11363 match community c3_151_4 c3_152_5 c3_153_6 c3_154_7 c3_155_8 set community 0:147 route-map calculator permit 11364 match community c3_156_9 c3_157_10 c3_158_11 c3_159_12 c3_160_13 set community 0:147 route-map calculator permit 11365 match community c3_161_14 c3_162_15 c3_163_16 c3_164_17 c3_165_18 set community 0:147 route-map calculator permit 11366 match community c3_166_19 c3_167_20 c3_168_21 c3_169_22 c3_170_23 set community 0:147 route-map calculator permit 11367 match community c3_171_24 c3_172_25 c3_173_26 c3_174_27 c3_175_28 set community 0:147 route-map calculator permit 11368 match community c3_176_29 c3_177_30 c3_178_31 c3_179_32 c3_180_33 set community 0:147 route-map calculator permit 11369 match community c3_181_34 c3_182_35 c3_183_36 c3_184_37 c3_185_38 set community 0:147 route-map calculator permit 11370 match community c3_186_39 c3_187_40 c3_188_41 c3_189_42 c3_190_43 set community 0:147 route-map calculator permit 11371 match community c3_191_44 c3_192_45 c3_193_46 c3_194_47 c3_195_48 set community 0:147 route-map calculator permit 11372 match community c3_196_49 c3_197_50 c3_198_51 c3_199_52 c3_200_53 set community 0:147 route-map calculator permit 11373 match community c3_201_54 c3_202_55 c3_203_56 c3_204_57 c3_205_58 set community 0:147 route-map calculator permit 11374 match community c3_206_59 c3_207_60 c3_208_61 c3_209_62 c3_210_63 set community 0:147 route-map calculator permit 11375 match community c3_211_64 c3_212_65 c3_213_66 c3_214_67 c3_215_68 set community 0:147 route-map calculator permit 11376 match community c3_216_69 c3_217_70 c3_218_71 c3_219_72 c3_220_73 set community 0:147 route-map calculator permit 11377 match community c3_221_74 c3_222_75 c3_223_76 c3_224_77 c3_225_78 set community 0:147 route-map calculator permit 11378 match community c3_226_79 c3_227_80 c3_228_81 c3_229_82 c3_230_83 set community 0:147 route-map calculator permit 11379 match community c3_231_84 c3_232_85 c3_233_86 c3_234_87 c3_235_88 set community 0:147 route-map calculator permit 11380 match community c3_236_89 c3_237_90 c3_238_91 c3_239_92 c3_240_93 set community 0:147 route-map calculator permit 11381 match community c3_241_94 c3_242_95 c3_243_96 c3_244_97 c3_245_98 set community 0:147 route-map calculator permit 11382 match community c3_246_99 c3_247_100 c3_248_101 c3_249_102 c3_250_103 set community 0:147 route-map calculator permit 11383 match community c3_251_104 c3_252_105 c3_253_106 c3_254_107 c3_255_108 set community 0:147 route-map calculator permit 11384 match community c3_256_109 set community 0:147 ip community-list standard 2_53_223 permit 65000:2 0:53 0:223 route-map calculator permit 11385 match community 2_53_223 set community 0:11819 ip community-list standard 2_213_241 permit 65000:2 0:213 0:241 route-map calculator permit 11386 match community 2_213_241 set community 0:51333 ip community-list standard 2_93_157 permit 65000:2 0:93 0:157 route-map calculator permit 11387 match community 2_93_157 set community 0:14601 ip community-list standard 2_149_197 permit 65000:2 0:149 0:197 route-map calculator permit 11388 match community 2_149_197 set community 0:29353 ip community-list standard 2_16_157 permit 65000:2 0:16 0:157 route-map calculator permit 11389 match community 2_16_157 set community 0:2512 ip community-list standard 2_52_193 permit 65000:2 0:52 0:193 route-map calculator permit 11390 match community 2_52_193 set community 0:10036 ip community-list standard 1_1_83 permit 65000:1 0:1 0:83 ip community-list standard 2_1_84 permit 65000:2 0:1 0:84 ip community-list standard 2_2_42 permit 65000:2 0:2 0:42 ip community-list standard 1_2_82 permit 65000:1 0:2 0:82 ip community-list standard 2_3_28 permit 65000:2 0:3 0:28 ip community-list standard 1_3_81 permit 65000:1 0:3 0:81 ip community-list standard 2_4_21 permit 65000:2 0:4 0:21 ip community-list standard 1_4_80 permit 65000:1 0:4 0:80 ip community-list standard 1_5_79 permit 65000:1 0:5 0:79 ip community-list standard 2_6_14 permit 65000:2 0:6 0:14 ip community-list standard 1_6_78 permit 65000:1 0:6 0:78 ip community-list standard 2_7_12 permit 65000:2 0:7 0:12 ip community-list standard 1_7_77 permit 65000:1 0:7 0:77 ip community-list standard 1_8_76 permit 65000:1 0:8 0:76 ip community-list standard 1_9_75 permit 65000:1 0:9 0:75 ip community-list standard 1_10_74 permit 65000:1 0:10 0:74 ip community-list standard 1_11_73 permit 65000:1 0:11 0:73 ip community-list standard 1_12_72 permit 65000:1 0:12 0:72 ip community-list standard 1_13_71 permit 65000:1 0:13 0:71 ip community-list standard 1_14_70 permit 65000:1 0:14 0:70 ip community-list standard 1_15_69 permit 65000:1 0:15 0:69 ip community-list standard 1_16_68 permit 65000:1 0:16 0:68 ip community-list standard 1_17_67 permit 65000:1 0:17 0:67 ip community-list standard 1_18_66 permit 65000:1 0:18 0:66 ip community-list standard 1_19_65 permit 65000:1 0:19 0:65 ip community-list standard 1_20_64 permit 65000:1 0:20 0:64 ip community-list standard 1_21_63 permit 65000:1 0:21 0:63 ip community-list standard 1_22_62 permit 65000:1 0:22 0:62 ip community-list standard 1_23_61 permit 65000:1 0:23 0:61 ip community-list standard 1_24_60 permit 65000:1 0:24 0:60 ip community-list standard 1_25_59 permit 65000:1 0:25 0:59 ip community-list standard 1_26_58 permit 65000:1 0:26 0:58 ip community-list standard 1_27_57 permit 65000:1 0:27 0:57 ip community-list standard 1_28_56 permit 65000:1 0:28 0:56 ip community-list standard 1_29_55 permit 65000:1 0:29 0:55 ip community-list standard 1_30_54 permit 65000:1 0:30 0:54 ip community-list standard 1_31_53 permit 65000:1 0:31 0:53 ip community-list standard 1_32_52 permit 65000:1 0:32 0:52 ip community-list standard 1_33_51 permit 65000:1 0:33 0:51 ip community-list standard 1_34_50 permit 65000:1 0:34 0:50 ip community-list standard 1_35_49 permit 65000:1 0:35 0:49 ip community-list standard 1_36_48 permit 65000:1 0:36 0:48 ip community-list standard 1_37_47 permit 65000:1 0:37 0:47 ip community-list standard 1_38_46 permit 65000:1 0:38 0:46 ip community-list standard 1_39_45 permit 65000:1 0:39 0:45 ip community-list standard 1_40_44 permit 65000:1 0:40 0:44 ip community-list standard 1_41_43 permit 65000:1 0:41 0:43 ip community-list standard 1_42_42 permit 65000:1 0:42 0:42 ip community-list expanded c84 permit 1 ^65000:4_0:84_0:1$ ip community-list expanded c84 permit 2 ^65000:3_0:85_0:1$ ip community-list expanded c84 permit 3 ^65000:3_0:86_0:2$ ip community-list expanded c84 permit 4 ^65000:3_0:87_0:3$ ip community-list expanded c84 permit 5 ^65000:3_0:88_0:4$ ip community-list expanded c84 permit 6 ^65000:3_0:89_0:5$ ip community-list expanded c84 permit 7 ^65000:3_0:90_0:6$ ip community-list expanded c84 permit 8 ^65000:3_0:91_0:7$ ip community-list expanded c84 permit 9 ^65000:3_0:92_0:8$ ip community-list expanded c84 permit 10 ^65000:3_0:93_0:9$ ip community-list expanded c84 permit 11 ^65000:3_0:94_0:10$ ip community-list expanded c84 permit 12 ^65000:3_0:95_0:11$ ip community-list expanded c84 permit 13 ^65000:3_0:96_0:12$ ip community-list expanded c84 permit 14 ^65000:3_0:97_0:13$ ip community-list expanded c84 permit 15 ^65000:3_0:98_0:14$ ip community-list expanded c84 permit 16 ^65000:3_0:99_0:15$ ip community-list expanded c84 permit 17 ^65000:3_0:100_0:16$ ip community-list expanded c84 permit 18 ^65000:3_0:101_0:17$ ip community-list expanded c84 permit 19 ^65000:3_0:102_0:18$ ip community-list expanded c84 permit 20 ^65000:3_0:103_0:19$ ip community-list expanded c84 permit 21 ^65000:3_0:104_0:20$ ip community-list expanded c84 permit 22 ^65000:3_0:105_0:21$ ip community-list expanded c84 permit 23 ^65000:3_0:106_0:22$ ip community-list expanded c84 permit 24 ^65000:3_0:107_0:23$ ip community-list expanded c84 permit 25 ^65000:3_0:108_0:24$ ip community-list expanded c84 permit 26 ^65000:3_0:109_0:25$ ip community-list expanded c84 permit 27 ^65000:3_0:110_0:26$ ip community-list expanded c84 permit 28 ^65000:3_0:111_0:27$ ip community-list expanded c84 permit 29 ^65000:3_0:112_0:28$ ip community-list expanded c84 permit 30 ^65000:3_0:113_0:29$ ip community-list expanded c84 permit 31 ^65000:3_0:114_0:30$ ip community-list expanded c84 permit 32 ^65000:3_0:115_0:31$ ip community-list expanded c84 permit 33 ^65000:3_0:116_0:32$ ip community-list expanded c84 permit 34 ^65000:3_0:117_0:33$ ip community-list expanded c84 permit 35 ^65000:3_0:118_0:34$ ip community-list expanded c84 permit 36 ^65000:3_0:119_0:35$ ip community-list expanded c84 permit 37 ^65000:3_0:120_0:36$ ip community-list expanded c84 permit 38 ^65000:3_0:121_0:37$ ip community-list expanded c84 permit 39 ^65000:3_0:122_0:38$ ip community-list expanded c84 permit 40 ^65000:3_0:123_0:39$ ip community-list expanded c84 permit 41 ^65000:3_0:124_0:40$ ip community-list expanded c84 permit 42 ^65000:3_0:125_0:41$ ip community-list expanded c84 permit 43 ^65000:3_0:126_0:42$ ip community-list expanded c84 permit 44 ^65000:3_0:127_0:43$ ip community-list expanded c84 permit 45 ^65000:3_0:128_0:44$ ip community-list expanded c84 permit 46 ^65000:3_0:129_0:45$ ip community-list expanded c84 permit 47 ^65000:3_0:130_0:46$ ip community-list expanded c84 permit 48 ^65000:3_0:131_0:47$ ip community-list expanded c84 permit 49 ^65000:3_0:132_0:48$ ip community-list expanded c84 permit 50 ^65000:3_0:133_0:49$ ip community-list expanded c84 permit 51 ^65000:3_0:134_0:50$ ip community-list expanded c84 permit 52 ^65000:3_0:135_0:51$ ip community-list expanded c84 permit 53 ^65000:3_0:136_0:52$ ip community-list expanded c84 permit 54 ^65000:3_0:137_0:53$ ip community-list expanded c84 permit 55 ^65000:3_0:138_0:54$ ip community-list expanded c84 permit 56 ^65000:3_0:139_0:55$ ip community-list expanded c84 permit 57 ^65000:3_0:140_0:56$ ip community-list expanded c84 permit 58 ^65000:3_0:141_0:57$ ip community-list expanded c84 permit 59 ^65000:3_0:142_0:58$ ip community-list expanded c84 permit 60 ^65000:3_0:143_0:59$ ip community-list expanded c84 permit 61 ^65000:3_0:144_0:60$ ip community-list expanded c84 permit 62 ^65000:3_0:145_0:61$ ip community-list expanded c84 permit 63 ^65000:3_0:146_0:62$ ip community-list expanded c84 permit 64 ^65000:3_0:147_0:63$ ip community-list expanded c84 permit 65 ^65000:3_0:148_0:64$ ip community-list expanded c84 permit 66 ^65000:3_0:149_0:65$ ip community-list expanded c84 permit 67 ^65000:3_0:150_0:66$ ip community-list expanded c84 permit 68 ^65000:3_0:151_0:67$ ip community-list expanded c84 permit 69 ^65000:3_0:152_0:68$ ip community-list expanded c84 permit 70 ^65000:3_0:153_0:69$ ip community-list expanded c84 permit 71 ^65000:3_0:154_0:70$ ip community-list expanded c84 permit 72 ^65000:3_0:155_0:71$ ip community-list expanded c84 permit 73 ^65000:3_0:156_0:72$ ip community-list expanded c84 permit 74 ^65000:3_0:157_0:73$ ip community-list expanded c84 permit 75 ^65000:3_0:158_0:74$ ip community-list expanded c84 permit 76 ^65000:3_0:159_0:75$ ip community-list expanded c84 permit 77 ^65000:3_0:160_0:76$ ip community-list expanded c84 permit 78 ^65000:3_0:161_0:77$ ip community-list expanded c84 permit 79 ^65000:3_0:162_0:78$ ip community-list expanded c84 permit 80 ^65000:3_0:163_0:79$ ip community-list expanded c84 permit 81 ^65000:3_0:164_0:80$ ip community-list expanded c84 permit 82 ^65000:3_0:165_0:81$ ip community-list expanded c84 permit 83 ^65000:3_0:166_0:82$ ip community-list expanded c84 permit 84 ^65000:3_0:167_0:83$ ip community-list expanded c84 permit 85 ^65000:4_0:168_0:2$ ip community-list expanded c84 permit 86 ^65000:3_0:168_0:84$ ip community-list expanded c84 permit 87 ^65000:4_0:169_0:2$ ip community-list expanded c84 permit 88 ^65000:3_0:169_0:85$ ip community-list expanded c84 permit 89 ^65000:3_0:170_0:86$ ip community-list expanded c84 permit 90 ^65000:3_0:171_0:87$ ip community-list expanded c84 permit 91 ^65000:3_0:172_0:88$ ip community-list expanded c84 permit 92 ^65000:3_0:173_0:89$ ip community-list expanded c84 permit 93 ^65000:3_0:174_0:90$ ip community-list expanded c84 permit 94 ^65000:3_0:175_0:91$ ip community-list expanded c84 permit 95 ^65000:3_0:176_0:92$ ip community-list expanded c84 permit 96 ^65000:3_0:177_0:93$ ip community-list expanded c84 permit 97 ^65000:3_0:178_0:94$ ip community-list expanded c84 permit 98 ^65000:3_0:179_0:95$ ip community-list expanded c84 permit 99 ^65000:3_0:180_0:96$ ip community-list expanded c84 permit 100 ^65000:3_0:181_0:97$ ip community-list expanded c84 permit 101 ^65000:3_0:182_0:98$ ip community-list expanded c84 permit 102 ^65000:3_0:183_0:99$ ip community-list expanded c84 permit 103 ^65000:3_0:184_0:100$ ip community-list expanded c84 permit 104 ^65000:3_0:185_0:101$ ip community-list expanded c84 permit 105 ^65000:3_0:186_0:102$ ip community-list expanded c84 permit 106 ^65000:3_0:187_0:103$ ip community-list expanded c84 permit 107 ^65000:3_0:188_0:104$ ip community-list expanded c84 permit 108 ^65000:3_0:189_0:105$ ip community-list expanded c84 permit 109 ^65000:3_0:190_0:106$ ip community-list expanded c84 permit 110 ^65000:3_0:191_0:107$ ip community-list expanded c84 permit 111 ^65000:3_0:192_0:108$ ip community-list expanded c84 permit 112 ^65000:3_0:193_0:109$ ip community-list expanded c84 permit 113 ^65000:3_0:194_0:110$ ip community-list expanded c84 permit 114 ^65000:3_0:195_0:111$ ip community-list expanded c84 permit 115 ^65000:3_0:196_0:112$ ip community-list expanded c84 permit 116 ^65000:3_0:197_0:113$ ip community-list expanded c84 permit 117 ^65000:3_0:198_0:114$ ip community-list expanded c84 permit 118 ^65000:3_0:199_0:115$ ip community-list expanded c84 permit 119 ^65000:3_0:200_0:116$ ip community-list expanded c84 permit 120 ^65000:3_0:201_0:117$ ip community-list expanded c84 permit 121 ^65000:3_0:202_0:118$ ip community-list expanded c84 permit 122 ^65000:3_0:203_0:119$ ip community-list expanded c84 permit 123 ^65000:3_0:204_0:120$ ip community-list expanded c84 permit 124 ^65000:3_0:205_0:121$ ip community-list expanded c84 permit 125 ^65000:3_0:206_0:122$ ip community-list expanded c84 permit 126 ^65000:3_0:207_0:123$ ip community-list expanded c84 permit 127 ^65000:3_0:208_0:124$ ip community-list expanded c84 permit 128 ^65000:3_0:209_0:125$ ip community-list expanded c84 permit 129 ^65000:3_0:210_0:126$ ip community-list expanded c84 permit 130 ^65000:3_0:211_0:127$ ip community-list expanded c84 permit 131 ^65000:3_0:212_0:128$ ip community-list expanded c84 permit 132 ^65000:3_0:213_0:129$ ip community-list expanded c84 permit 133 ^65000:3_0:214_0:130$ ip community-list expanded c84 permit 134 ^65000:3_0:215_0:131$ ip community-list expanded c84 permit 135 ^65000:3_0:216_0:132$ ip community-list expanded c84 permit 136 ^65000:3_0:217_0:133$ ip community-list expanded c84 permit 137 ^65000:3_0:218_0:134$ ip community-list expanded c84 permit 138 ^65000:3_0:219_0:135$ ip community-list expanded c84 permit 139 ^65000:3_0:220_0:136$ ip community-list expanded c84 permit 140 ^65000:3_0:221_0:137$ ip community-list expanded c84 permit 141 ^65000:3_0:222_0:138$ ip community-list expanded c84 permit 142 ^65000:3_0:223_0:139$ ip community-list expanded c84 permit 143 ^65000:3_0:224_0:140$ ip community-list expanded c84 permit 144 ^65000:3_0:225_0:141$ ip community-list expanded c84 permit 145 ^65000:3_0:226_0:142$ ip community-list expanded c84 permit 146 ^65000:3_0:227_0:143$ ip community-list expanded c84 permit 147 ^65000:3_0:228_0:144$ ip community-list expanded c84 permit 148 ^65000:3_0:229_0:145$ ip community-list expanded c84 permit 149 ^65000:3_0:230_0:146$ ip community-list expanded c84 permit 150 ^65000:3_0:231_0:147$ ip community-list expanded c84 permit 151 ^65000:3_0:232_0:148$ ip community-list expanded c84 permit 152 ^65000:3_0:233_0:149$ ip community-list expanded c84 permit 153 ^65000:3_0:234_0:150$ ip community-list expanded c84 permit 154 ^65000:3_0:235_0:151$ ip community-list expanded c84 permit 155 ^65000:3_0:236_0:152$ ip community-list expanded c84 permit 156 ^65000:3_0:237_0:153$ ip community-list expanded c84 permit 157 ^65000:3_0:238_0:154$ ip community-list expanded c84 permit 158 ^65000:3_0:239_0:155$ ip community-list expanded c84 permit 159 ^65000:3_0:240_0:156$ ip community-list expanded c84 permit 160 ^65000:3_0:241_0:157$ ip community-list expanded c84 permit 161 ^65000:3_0:242_0:158$ ip community-list expanded c84 permit 162 ^65000:3_0:243_0:159$ ip community-list expanded c84 permit 163 ^65000:3_0:244_0:160$ ip community-list expanded c84 permit 164 ^65000:3_0:245_0:161$ ip community-list expanded c84 permit 165 ^65000:3_0:246_0:162$ ip community-list expanded c84 permit 166 ^65000:3_0:247_0:163$ ip community-list expanded c84 permit 167 ^65000:3_0:248_0:164$ ip community-list expanded c84 permit 168 ^65000:3_0:249_0:165$ ip community-list expanded c84 permit 169 ^65000:3_0:250_0:166$ ip community-list expanded c84 permit 170 ^65000:3_0:251_0:167$ ip community-list expanded c84 permit 171 ^65000:4_0:252_0:3$ ip community-list expanded c84 permit 172 ^65000:3_0:252_0:168$ ip community-list expanded c84 permit 173 ^65000:4_0:253_0:3$ ip community-list expanded c84 permit 174 ^65000:3_0:253_0:169$ ip community-list expanded c84 permit 175 ^65000:4_0:254_0:3$ ip community-list expanded c84 permit 176 ^65000:3_0:254_0:170$ ip community-list expanded c84 permit 177 ^65000:3_0:255_0:171$ ip community-list expanded c84 permit 178 ^65000:3_0:256_0:172$ route-map calculator permit 11391 match community 1_1_83 2_1_84 2_2_42 1_2_82 2_3_28 set community 0:84 route-map calculator permit 11392 match community 1_3_81 2_4_21 1_4_80 1_5_79 2_6_14 set community 0:84 route-map calculator permit 11393 match community 1_6_78 2_7_12 1_7_77 1_8_76 1_9_75 set community 0:84 route-map calculator permit 11394 match community 1_10_74 1_11_73 1_12_72 1_13_71 1_14_70 set community 0:84 route-map calculator permit 11395 match community 1_15_69 1_16_68 1_17_67 1_18_66 1_19_65 set community 0:84 route-map calculator permit 11396 match community 1_20_64 1_21_63 1_22_62 1_23_61 1_24_60 set community 0:84 route-map calculator permit 11397 match community 1_25_59 1_26_58 1_27_57 1_28_56 1_29_55 set community 0:84 route-map calculator permit 11398 match community 1_30_54 1_31_53 1_32_52 1_33_51 1_34_50 set community 0:84 route-map calculator permit 11399 match community 1_35_49 1_36_48 1_37_47 1_38_46 1_39_45 set community 0:84 route-map calculator permit 11400 match community 1_40_44 1_41_43 1_42_42 c4_84_1 c3_85_1 set community 0:84 route-map calculator permit 11401 match community c3_86_2 c3_87_3 c3_88_4 c3_89_5 c3_90_6 set community 0:84 route-map calculator permit 11402 match community c3_91_7 c3_92_8 c3_93_9 c3_94_10 c3_95_11 set community 0:84 route-map calculator permit 11403 match community c3_96_12 c3_97_13 c3_98_14 c3_99_15 c3_100_16 set community 0:84 route-map calculator permit 11404 match community c3_101_17 c3_102_18 c3_103_19 c3_104_20 c3_105_21 set community 0:84 route-map calculator permit 11405 match community c3_106_22 c3_107_23 c3_108_24 c3_109_25 c3_110_26 set community 0:84 route-map calculator permit 11406 match community c3_111_27 c3_112_28 c3_113_29 c3_114_30 c3_115_31 set community 0:84 route-map calculator permit 11407 match community c3_116_32 c3_117_33 c3_118_34 c3_119_35 c3_120_36 set community 0:84 route-map calculator permit 11408 match community c3_121_37 c3_122_38 c3_123_39 c3_124_40 c3_125_41 set community 0:84 route-map calculator permit 11409 match community c3_126_42 c3_127_43 c3_128_44 c3_129_45 c3_130_46 set community 0:84 route-map calculator permit 11410 match community c3_131_47 c3_132_48 c3_133_49 c3_134_50 c3_135_51 set community 0:84 route-map calculator permit 11411 match community c3_136_52 c3_137_53 c3_138_54 c3_139_55 c3_140_56 set community 0:84 route-map calculator permit 11412 match community c3_141_57 c3_142_58 c3_143_59 c3_144_60 c3_145_61 set community 0:84 route-map calculator permit 11413 match community c3_146_62 c3_147_63 c3_148_64 c3_149_65 c3_150_66 set community 0:84 route-map calculator permit 11414 match community c3_151_67 c3_152_68 c3_153_69 c3_154_70 c3_155_71 set community 0:84 route-map calculator permit 11415 match community c3_156_72 c3_157_73 c3_158_74 c3_159_75 c3_160_76 set community 0:84 route-map calculator permit 11416 match community c3_161_77 c3_162_78 c3_163_79 c3_164_80 c3_165_81 set community 0:84 route-map calculator permit 11417 match community c3_166_82 c3_167_83 c4_168_2 c3_168_84 c4_169_2 set community 0:84 route-map calculator permit 11418 match community c3_169_85 c3_170_86 c3_171_87 c3_172_88 c3_173_89 set community 0:84 route-map calculator permit 11419 match community c3_174_90 c3_175_91 c3_176_92 c3_177_93 c3_178_94 set community 0:84 route-map calculator permit 11420 match community c3_179_95 c3_180_96 c3_181_97 c3_182_98 c3_183_99 set community 0:84 route-map calculator permit 11421 match community c3_184_100 c3_185_101 c3_186_102 c3_187_103 c3_188_104 set community 0:84 route-map calculator permit 11422 match community c3_189_105 c3_190_106 c3_191_107 c3_192_108 c3_193_109 set community 0:84 route-map calculator permit 11423 match community c3_194_110 c3_195_111 c3_196_112 c3_197_113 c3_198_114 set community 0:84 route-map calculator permit 11424 match community c3_199_115 c3_200_116 c3_201_117 c3_202_118 c3_203_119 set community 0:84 route-map calculator permit 11425 match community c3_204_120 c3_205_121 c3_206_122 c3_207_123 c3_208_124 set community 0:84 route-map calculator permit 11426 match community c3_209_125 c3_210_126 c3_211_127 c3_212_128 c3_213_129 set community 0:84 route-map calculator permit 11427 match community c3_214_130 c3_215_131 c3_216_132 c3_217_133 c3_218_134 set community 0:84 route-map calculator permit 11428 match community c3_219_135 c3_220_136 c3_221_137 c3_222_138 c3_223_139 set community 0:84 route-map calculator permit 11429 match community c3_224_140 c3_225_141 c3_226_142 c3_227_143 c3_228_144 set community 0:84 route-map calculator permit 11430 match community c3_229_145 c3_230_146 c3_231_147 c3_232_148 c3_233_149 set community 0:84 route-map calculator permit 11431 match community c3_234_150 c3_235_151 c3_236_152 c3_237_153 c3_238_154 set community 0:84 route-map calculator permit 11432 match community c3_239_155 c3_240_156 c3_241_157 c3_242_158 c3_243_159 set community 0:84 route-map calculator permit 11433 match community c3_244_160 c3_245_161 c3_246_162 c3_247_163 c3_248_164 set community 0:84 route-map calculator permit 11434 match community c3_249_165 c3_250_166 c3_251_167 c4_252_3 c3_252_168 set community 0:84 route-map calculator permit 11435 match community c4_253_3 c3_253_169 c4_254_3 c3_254_170 c3_255_171 set community 0:84 route-map calculator permit 11436 match community c3_256_172 set community 0:84 ip community-list standard 2_126_231 permit 65000:2 0:126 0:231 ip community-list standard 2_147_198 permit 65000:2 0:147 0:198 ip community-list standard 2_154_189 permit 65000:2 0:154 0:189 route-map calculator permit 11437 match community 2_126_231 2_147_198 2_154_189 set community 0:29106 ip community-list standard 2_62_246 permit 65000:2 0:62 0:246 ip community-list standard 2_82_186 permit 65000:2 0:82 0:186 ip community-list standard 2_93_164 permit 65000:2 0:93 0:164 ip community-list standard 2_123_124 permit 65000:2 0:123 0:124 route-map calculator permit 11438 match community 2_62_246 2_82_186 2_93_164 2_123_124 set community 0:15252 ip community-list standard 2_109_203 permit 65000:2 0:109 0:203 route-map calculator permit 11439 match community 2_109_203 set community 0:22127 ip community-list standard 2_223_254 permit 65000:2 0:223 0:254 route-map calculator permit 11440 match community 2_223_254 set community 0:56642 ip community-list standard 2_161_245 permit 65000:2 0:161 0:245 route-map calculator permit 11441 match community 2_161_245 set community 0:39445 ip community-list standard 2_143_233 permit 65000:2 0:143 0:233 route-map calculator permit 11442 match community 2_143_233 set community 0:33319 ip community-list standard 2_140_240 permit 65000:2 0:140 0:240 ip community-list standard 2_150_224 permit 65000:2 0:150 0:224 ip community-list standard 2_160_210 permit 65000:2 0:160 0:210 ip community-list standard 2_168_200 permit 65000:2 0:168 0:200 ip community-list standard 2_175_192 permit 65000:2 0:175 0:192 route-map calculator permit 11443 match community 2_140_240 2_150_224 2_160_210 2_168_200 2_175_192 set community 0:33600 ip community-list standard 2_86_194 permit 65000:2 0:86 0:194 ip community-list standard 2_97_172 permit 65000:2 0:97 0:172 route-map calculator permit 11444 match community 2_86_194 2_97_172 set community 0:16684 ip community-list standard 2_109_129 permit 65000:2 0:109 0:129 route-map calculator permit 11445 match community 2_109_129 set community 0:14061 ip community-list standard 2_32_206 permit 65000:2 0:32 0:206 ip community-list standard 2_64_103 permit 65000:2 0:64 0:103 route-map calculator permit 11446 match community 2_32_206 2_64_103 set community 0:6592 ip community-list standard 2_54_163 permit 65000:2 0:54 0:163 route-map calculator permit 11447 match community 2_54_163 set community 0:8802 ip community-list standard 2_40_238 permit 65000:2 0:40 0:238 ip community-list standard 2_56_170 permit 65000:2 0:56 0:170 ip community-list standard 2_68_140 permit 65000:2 0:68 0:140 ip community-list standard 2_70_136 permit 65000:2 0:70 0:136 ip community-list standard 2_80_119 permit 65000:2 0:80 0:119 ip community-list standard 2_85_112 permit 65000:2 0:85 0:112 route-map calculator permit 11448 match community 2_40_238 2_56_170 2_68_140 2_70_136 2_80_119 set community 0:9520 route-map calculator permit 11449 match community 2_85_112 set community 0:9520 ip community-list standard 2_144_194 permit 65000:2 0:144 0:194 route-map calculator permit 11450 match community 2_144_194 set community 0:27936 ip community-list standard 2_89_248 permit 65000:2 0:89 0:248 ip community-list standard 2_124_178 permit 65000:2 0:124 0:178 route-map calculator permit 11451 match community 2_89_248 2_124_178 set community 0:22072 ip community-list standard 2_87_155 permit 65000:2 0:87 0:155 ip community-list standard 2_93_145 permit 65000:2 0:93 0:145 route-map calculator permit 11452 match community 2_87_155 2_93_145 set community 0:13485 ip community-list standard 2_78_208 permit 65000:2 0:78 0:208 ip community-list standard 2_96_169 permit 65000:2 0:96 0:169 ip community-list standard 2_104_156 permit 65000:2 0:104 0:156 route-map calculator permit 11453 match community 2_78_208 2_96_169 2_104_156 set community 0:16224 ip community-list standard 2_147_241 permit 65000:2 0:147 0:241 route-map calculator permit 11454 match community 2_147_241 set community 0:35427 ip community-list standard 2_140_211 permit 65000:2 0:140 0:211 route-map calculator permit 11455 match community 2_140_211 set community 0:29540 ip community-list standard 2_140_223 permit 65000:2 0:140 0:223 route-map calculator permit 11456 match community 2_140_223 set community 0:31220 ip community-list standard 2_141_249 permit 65000:2 0:141 0:249 route-map calculator permit 11457 match community 2_141_249 set community 0:35109 ip community-list standard 2_170_255 permit 65000:2 0:170 0:255 route-map calculator permit 11458 match community 2_170_255 set community 0:43350 ip community-list standard 2_91_185 permit 65000:2 0:91 0:185 route-map calculator permit 11459 match community 2_91_185 set community 0:16835 ip community-list standard 2_174_238 permit 65000:2 0:174 0:238 ip community-list standard 2_203_204 permit 65000:2 0:203 0:204 route-map calculator permit 11460 match community 2_174_238 2_203_204 set community 0:41412 ip community-list standard 2_113_193 permit 65000:2 0:113 0:193 route-map calculator permit 11461 match community 2_113_193 set community 0:21809 ip community-list standard 2_80_252 permit 65000:2 0:80 0:252 ip community-list standard 2_84_240 permit 65000:2 0:84 0:240 ip community-list standard 2_90_224 permit 65000:2 0:90 0:224 ip community-list standard 2_96_210 permit 65000:2 0:96 0:210 ip community-list standard 2_105_192 permit 65000:2 0:105 0:192 ip community-list standard 2_112_180 permit 65000:2 0:112 0:180 ip community-list standard 2_120_168 permit 65000:2 0:120 0:168 ip community-list standard 2_126_160 permit 65000:2 0:126 0:160 ip community-list standard 2_140_144 permit 65000:2 0:140 0:144 route-map calculator permit 11462 match community 2_80_252 2_84_240 2_90_224 2_96_210 2_105_192 set community 0:20160 route-map calculator permit 11463 match community 2_112_180 2_120_168 2_126_160 2_140_144 set community 0:20160 ip community-list standard 2_87_240 permit 65000:2 0:87 0:240 ip community-list standard 2_90_232 permit 65000:2 0:90 0:232 ip community-list standard 2_116_180 permit 65000:2 0:116 0:180 ip community-list standard 2_120_174 permit 65000:2 0:120 0:174 ip community-list standard 2_144_145 permit 65000:2 0:144 0:145 route-map calculator permit 11464 match community 2_87_240 2_90_232 2_116_180 2_120_174 2_144_145 set community 0:20880 ip community-list standard 2_149_246 permit 65000:2 0:149 0:246 route-map calculator permit 11465 match community 2_149_246 set community 0:36654 ip community-list standard 2_155_157 permit 65000:2 0:155 0:157 route-map calculator permit 11466 match community 2_155_157 set community 0:24335 ip community-list standard 2_114_191 permit 65000:2 0:114 0:191 route-map calculator permit 11467 match community 2_114_191 set community 0:21774 ip community-list standard 2_47_223 permit 65000:2 0:47 0:223 route-map calculator permit 11468 match community 2_47_223 set community 0:10481 ip community-list standard 2_55_203 permit 65000:2 0:55 0:203 ip community-list standard 2_77_145 permit 65000:2 0:77 0:145 route-map calculator permit 11469 match community 2_55_203 2_77_145 set community 0:11165 ip community-list standard 2_175_226 permit 65000:2 0:175 0:226 route-map calculator permit 11470 match community 2_175_226 set community 0:39550 ip community-list standard 2_51_199 permit 65000:2 0:51 0:199 route-map calculator permit 11471 match community 2_51_199 set community 0:10149 ip community-list standard 2_83_97 permit 65000:2 0:83 0:97 route-map calculator permit 11472 match community 2_83_97 set community 0:8051 ip community-list standard 2_185_237 permit 65000:2 0:185 0:237 route-map calculator permit 11473 match community 2_185_237 set community 0:43845 ip community-list standard 2_221_232 permit 65000:2 0:221 0:232 route-map calculator permit 11474 match community 2_221_232 set community 0:51272 ip community-list standard 2_225_228 permit 65000:2 0:225 0:228 route-map calculator permit 11475 match community 2_225_228 set community 0:51300 ip community-list standard 2_62_242 permit 65000:2 0:62 0:242 ip community-list standard 2_121_124 permit 65000:2 0:121 0:124 route-map calculator permit 11476 match community 2_62_242 2_121_124 set community 0:15004 ip community-list standard 2_101_225 permit 65000:2 0:101 0:225 route-map calculator permit 11477 match community 2_101_225 set community 0:22725 ip community-list standard 2_174_233 permit 65000:2 0:174 0:233 route-map calculator permit 11478 match community 2_174_233 set community 0:40542 ip community-list standard 2_89_206 permit 65000:2 0:89 0:206 ip community-list standard 2_103_178 permit 65000:2 0:103 0:178 route-map calculator permit 11479 match community 2_89_206 2_103_178 set community 0:18334 ip community-list standard 2_127_143 permit 65000:2 0:127 0:143 route-map calculator permit 11480 match community 2_127_143 set community 0:18161 ip community-list standard 2_114_177 permit 65000:2 0:114 0:177 ip community-list standard 2_118_171 permit 65000:2 0:118 0:171 route-map calculator permit 11481 match community 2_114_177 2_118_171 set community 0:20178 ip community-list standard 2_2_172 permit 65000:2 0:2 0:172 ip community-list standard 2_4_86 permit 65000:2 0:4 0:86 ip community-list standard 2_8_43 permit 65000:2 0:8 0:43 ip community-list standard 1_88_256 permit 65000:1 0:88 0:256 ip community-list standard 1_89_255 permit 65000:1 0:89 0:255 ip community-list standard 1_90_254 permit 65000:1 0:90 0:254 ip community-list standard 1_91_253 permit 65000:1 0:91 0:253 ip community-list standard 1_92_252 permit 65000:1 0:92 0:252 ip community-list standard 1_93_251 permit 65000:1 0:93 0:251 ip community-list standard 1_94_250 permit 65000:1 0:94 0:250 ip community-list standard 1_95_249 permit 65000:1 0:95 0:249 ip community-list standard 1_96_248 permit 65000:1 0:96 0:248 ip community-list standard 1_97_247 permit 65000:1 0:97 0:247 ip community-list standard 1_98_246 permit 65000:1 0:98 0:246 ip community-list standard 1_99_245 permit 65000:1 0:99 0:245 ip community-list standard 1_100_244 permit 65000:1 0:100 0:244 ip community-list standard 1_101_243 permit 65000:1 0:101 0:243 ip community-list standard 1_102_242 permit 65000:1 0:102 0:242 ip community-list standard 1_103_241 permit 65000:1 0:103 0:241 ip community-list standard 1_104_240 permit 65000:1 0:104 0:240 ip community-list standard 1_105_239 permit 65000:1 0:105 0:239 ip community-list standard 1_106_238 permit 65000:1 0:106 0:238 ip community-list standard 1_107_237 permit 65000:1 0:107 0:237 ip community-list standard 1_108_236 permit 65000:1 0:108 0:236 ip community-list standard 1_109_235 permit 65000:1 0:109 0:235 ip community-list standard 1_110_234 permit 65000:1 0:110 0:234 ip community-list standard 1_111_233 permit 65000:1 0:111 0:233 ip community-list standard 1_112_232 permit 65000:1 0:112 0:232 ip community-list standard 1_113_231 permit 65000:1 0:113 0:231 ip community-list standard 1_114_230 permit 65000:1 0:114 0:230 ip community-list standard 1_115_229 permit 65000:1 0:115 0:229 ip community-list standard 1_116_228 permit 65000:1 0:116 0:228 ip community-list standard 1_117_227 permit 65000:1 0:117 0:227 ip community-list standard 1_118_226 permit 65000:1 0:118 0:226 ip community-list standard 1_119_225 permit 65000:1 0:119 0:225 ip community-list standard 1_120_224 permit 65000:1 0:120 0:224 ip community-list standard 1_121_223 permit 65000:1 0:121 0:223 ip community-list standard 1_122_222 permit 65000:1 0:122 0:222 ip community-list standard 1_123_221 permit 65000:1 0:123 0:221 ip community-list standard 1_124_220 permit 65000:1 0:124 0:220 ip community-list standard 1_125_219 permit 65000:1 0:125 0:219 ip community-list standard 1_126_218 permit 65000:1 0:126 0:218 ip community-list standard 1_127_217 permit 65000:1 0:127 0:217 ip community-list standard 1_128_216 permit 65000:1 0:128 0:216 ip community-list standard 1_129_215 permit 65000:1 0:129 0:215 ip community-list standard 1_130_214 permit 65000:1 0:130 0:214 ip community-list standard 1_131_213 permit 65000:1 0:131 0:213 ip community-list standard 1_132_212 permit 65000:1 0:132 0:212 ip community-list standard 1_133_211 permit 65000:1 0:133 0:211 ip community-list standard 1_134_210 permit 65000:1 0:134 0:210 ip community-list standard 1_135_209 permit 65000:1 0:135 0:209 ip community-list standard 1_136_208 permit 65000:1 0:136 0:208 ip community-list standard 1_137_207 permit 65000:1 0:137 0:207 ip community-list standard 1_138_206 permit 65000:1 0:138 0:206 ip community-list standard 1_139_205 permit 65000:1 0:139 0:205 ip community-list standard 1_140_204 permit 65000:1 0:140 0:204 ip community-list standard 1_141_203 permit 65000:1 0:141 0:203 ip community-list standard 1_142_202 permit 65000:1 0:142 0:202 ip community-list standard 1_143_201 permit 65000:1 0:143 0:201 ip community-list standard 1_144_200 permit 65000:1 0:144 0:200 ip community-list standard 1_145_199 permit 65000:1 0:145 0:199 ip community-list standard 1_146_198 permit 65000:1 0:146 0:198 ip community-list standard 1_147_197 permit 65000:1 0:147 0:197 ip community-list standard 1_148_196 permit 65000:1 0:148 0:196 ip community-list standard 1_149_195 permit 65000:1 0:149 0:195 ip community-list standard 1_150_194 permit 65000:1 0:150 0:194 ip community-list standard 1_151_193 permit 65000:1 0:151 0:193 ip community-list standard 1_152_192 permit 65000:1 0:152 0:192 ip community-list standard 1_153_191 permit 65000:1 0:153 0:191 ip community-list standard 1_154_190 permit 65000:1 0:154 0:190 ip community-list standard 1_155_189 permit 65000:1 0:155 0:189 ip community-list standard 1_156_188 permit 65000:1 0:156 0:188 ip community-list standard 1_157_187 permit 65000:1 0:157 0:187 ip community-list standard 1_158_186 permit 65000:1 0:158 0:186 ip community-list standard 1_159_185 permit 65000:1 0:159 0:185 ip community-list standard 1_160_184 permit 65000:1 0:160 0:184 ip community-list standard 1_161_183 permit 65000:1 0:161 0:183 ip community-list standard 1_162_182 permit 65000:1 0:162 0:182 ip community-list standard 1_163_181 permit 65000:1 0:163 0:181 ip community-list standard 1_164_180 permit 65000:1 0:164 0:180 ip community-list standard 1_165_179 permit 65000:1 0:165 0:179 ip community-list standard 1_166_178 permit 65000:1 0:166 0:178 ip community-list standard 1_167_177 permit 65000:1 0:167 0:177 ip community-list standard 1_168_176 permit 65000:1 0:168 0:176 ip community-list standard 1_169_175 permit 65000:1 0:169 0:175 ip community-list standard 1_170_174 permit 65000:1 0:170 0:174 ip community-list standard 1_171_173 permit 65000:1 0:171 0:173 ip community-list standard 1_172_172 permit 65000:1 0:172 0:172 route-map calculator permit 11482 match community 2_2_172 2_4_86 2_8_43 1_88_256 1_89_255 set community 0:344 route-map calculator permit 11483 match community 1_90_254 1_91_253 1_92_252 1_93_251 1_94_250 set community 0:344 route-map calculator permit 11484 match community 1_95_249 1_96_248 1_97_247 1_98_246 1_99_245 set community 0:344 route-map calculator permit 11485 match community 1_100_244 1_101_243 1_102_242 1_103_241 1_104_240 set community 0:344 route-map calculator permit 11486 match community 1_105_239 1_106_238 1_107_237 1_108_236 1_109_235 set community 0:344 route-map calculator permit 11487 match community 1_110_234 1_111_233 1_112_232 1_113_231 1_114_230 set community 0:344 route-map calculator permit 11488 match community 1_115_229 1_116_228 1_117_227 1_118_226 1_119_225 set community 0:344 route-map calculator permit 11489 match community 1_120_224 1_121_223 1_122_222 1_123_221 1_124_220 set community 0:344 route-map calculator permit 11490 match community 1_125_219 1_126_218 1_127_217 1_128_216 1_129_215 set community 0:344 route-map calculator permit 11491 match community 1_130_214 1_131_213 1_132_212 1_133_211 1_134_210 set community 0:344 route-map calculator permit 11492 match community 1_135_209 1_136_208 1_137_207 1_138_206 1_139_205 set community 0:344 route-map calculator permit 11493 match community 1_140_204 1_141_203 1_142_202 1_143_201 1_144_200 set community 0:344 route-map calculator permit 11494 match community 1_145_199 1_146_198 1_147_197 1_148_196 1_149_195 set community 0:344 route-map calculator permit 11495 match community 1_150_194 1_151_193 1_152_192 1_153_191 1_154_190 set community 0:344 route-map calculator permit 11496 match community 1_155_189 1_156_188 1_157_187 1_158_186 1_159_185 set community 0:344 route-map calculator permit 11497 match community 1_160_184 1_161_183 1_162_182 1_163_181 1_164_180 set community 0:344 route-map calculator permit 11498 match community 1_165_179 1_166_178 1_167_177 1_168_176 1_169_175 set community 0:344 route-map calculator permit 11499 match community 1_170_174 1_171_173 1_172_172 set community 0:344 ip community-list standard 2_115_255 permit 65000:2 0:115 0:255 route-map calculator permit 11500 match community 2_115_255 set community 0:29325 ip community-list standard 2_87_236 permit 65000:2 0:87 0:236 ip community-list standard 2_116_177 permit 65000:2 0:116 0:177 ip community-list standard 2_118_174 permit 65000:2 0:118 0:174 route-map calculator permit 11501 match community 2_87_236 2_116_177 2_118_174 set community 0:20532 ip community-list standard 2_102_201 permit 65000:2 0:102 0:201 ip community-list standard 2_134_153 permit 65000:2 0:134 0:153 route-map calculator permit 11502 match community 2_102_201 2_134_153 set community 0:20502 ip community-list standard 2_157_214 permit 65000:2 0:157 0:214 route-map calculator permit 11503 match community 2_157_214 set community 0:33598 ip community-list standard 2_44_243 permit 65000:2 0:44 0:243 ip community-list standard 2_54_198 permit 65000:2 0:54 0:198 ip community-list standard 2_66_162 permit 65000:2 0:66 0:162 ip community-list standard 2_81_132 permit 65000:2 0:81 0:132 ip community-list standard 2_99_108 permit 65000:2 0:99 0:108 route-map calculator permit 11504 match community 2_44_243 2_54_198 2_66_162 2_81_132 2_99_108 set community 0:10692 ip community-list standard 2_193_237 permit 65000:2 0:193 0:237 route-map calculator permit 11505 match community 2_193_237 set community 0:45741 ip community-list standard 2_157_173 permit 65000:2 0:157 0:173 route-map calculator permit 11506 match community 2_157_173 set community 0:27161 ip community-list standard 2_106_175 permit 65000:2 0:106 0:175 route-map calculator permit 11507 match community 2_106_175 set community 0:18550 ip community-list standard 2_11_254 permit 65000:2 0:11 0:254 ip community-list standard 2_22_127 permit 65000:2 0:22 0:127 route-map calculator permit 11508 match community 2_11_254 2_22_127 set community 0:2794 ip community-list standard 2_39_236 permit 65000:2 0:39 0:236 ip community-list standard 2_52_177 permit 65000:2 0:52 0:177 ip community-list standard 2_59_156 permit 65000:2 0:59 0:156 ip community-list standard 2_78_118 permit 65000:2 0:78 0:118 route-map calculator permit 11509 match community 2_39_236 2_52_177 2_59_156 2_78_118 set community 0:9204 ip community-list standard 2_190_220 permit 65000:2 0:190 0:220 ip community-list standard 2_200_209 permit 65000:2 0:200 0:209 route-map calculator permit 11510 match community 2_190_220 2_200_209 set community 0:41800 ip community-list standard 2_2_193 permit 65000:2 0:2 0:193 ip community-list standard 1_130_256 permit 65000:1 0:130 0:256 ip community-list standard 1_131_255 permit 65000:1 0:131 0:255 ip community-list standard 1_132_254 permit 65000:1 0:132 0:254 ip community-list standard 1_133_253 permit 65000:1 0:133 0:253 ip community-list standard 1_134_252 permit 65000:1 0:134 0:252 ip community-list standard 1_135_251 permit 65000:1 0:135 0:251 ip community-list standard 1_136_250 permit 65000:1 0:136 0:250 ip community-list standard 1_137_249 permit 65000:1 0:137 0:249 ip community-list standard 1_138_248 permit 65000:1 0:138 0:248 ip community-list standard 1_139_247 permit 65000:1 0:139 0:247 ip community-list standard 1_140_246 permit 65000:1 0:140 0:246 ip community-list standard 1_141_245 permit 65000:1 0:141 0:245 ip community-list standard 1_142_244 permit 65000:1 0:142 0:244 ip community-list standard 1_143_243 permit 65000:1 0:143 0:243 ip community-list standard 1_144_242 permit 65000:1 0:144 0:242 ip community-list standard 1_145_241 permit 65000:1 0:145 0:241 ip community-list standard 1_146_240 permit 65000:1 0:146 0:240 ip community-list standard 1_147_239 permit 65000:1 0:147 0:239 ip community-list standard 1_148_238 permit 65000:1 0:148 0:238 ip community-list standard 1_149_237 permit 65000:1 0:149 0:237 ip community-list standard 1_150_236 permit 65000:1 0:150 0:236 ip community-list standard 1_151_235 permit 65000:1 0:151 0:235 ip community-list standard 1_152_234 permit 65000:1 0:152 0:234 ip community-list standard 1_153_233 permit 65000:1 0:153 0:233 ip community-list standard 1_154_232 permit 65000:1 0:154 0:232 ip community-list standard 1_155_231 permit 65000:1 0:155 0:231 ip community-list standard 1_156_230 permit 65000:1 0:156 0:230 ip community-list standard 1_157_229 permit 65000:1 0:157 0:229 ip community-list standard 1_158_228 permit 65000:1 0:158 0:228 ip community-list standard 1_159_227 permit 65000:1 0:159 0:227 ip community-list standard 1_160_226 permit 65000:1 0:160 0:226 ip community-list standard 1_161_225 permit 65000:1 0:161 0:225 ip community-list standard 1_162_224 permit 65000:1 0:162 0:224 ip community-list standard 1_163_223 permit 65000:1 0:163 0:223 ip community-list standard 1_164_222 permit 65000:1 0:164 0:222 ip community-list standard 1_165_221 permit 65000:1 0:165 0:221 ip community-list standard 1_166_220 permit 65000:1 0:166 0:220 ip community-list standard 1_167_219 permit 65000:1 0:167 0:219 ip community-list standard 1_168_218 permit 65000:1 0:168 0:218 ip community-list standard 1_169_217 permit 65000:1 0:169 0:217 ip community-list standard 1_170_216 permit 65000:1 0:170 0:216 ip community-list standard 1_171_215 permit 65000:1 0:171 0:215 ip community-list standard 1_172_214 permit 65000:1 0:172 0:214 ip community-list standard 1_173_213 permit 65000:1 0:173 0:213 ip community-list standard 1_174_212 permit 65000:1 0:174 0:212 ip community-list standard 1_175_211 permit 65000:1 0:175 0:211 ip community-list standard 1_176_210 permit 65000:1 0:176 0:210 ip community-list standard 1_177_209 permit 65000:1 0:177 0:209 ip community-list standard 1_178_208 permit 65000:1 0:178 0:208 ip community-list standard 1_179_207 permit 65000:1 0:179 0:207 ip community-list standard 1_180_206 permit 65000:1 0:180 0:206 ip community-list standard 1_181_205 permit 65000:1 0:181 0:205 ip community-list standard 1_182_204 permit 65000:1 0:182 0:204 ip community-list standard 1_183_203 permit 65000:1 0:183 0:203 ip community-list standard 1_184_202 permit 65000:1 0:184 0:202 ip community-list standard 1_185_201 permit 65000:1 0:185 0:201 ip community-list standard 1_186_200 permit 65000:1 0:186 0:200 ip community-list standard 1_187_199 permit 65000:1 0:187 0:199 ip community-list standard 1_188_198 permit 65000:1 0:188 0:198 ip community-list standard 1_189_197 permit 65000:1 0:189 0:197 ip community-list standard 1_190_196 permit 65000:1 0:190 0:196 ip community-list standard 1_191_195 permit 65000:1 0:191 0:195 ip community-list standard 1_192_194 permit 65000:1 0:192 0:194 ip community-list standard 1_193_193 permit 65000:1 0:193 0:193 route-map calculator permit 11511 match community 2_2_193 1_130_256 1_131_255 1_132_254 1_133_253 set community 0:386 route-map calculator permit 11512 match community 1_134_252 1_135_251 1_136_250 1_137_249 1_138_248 set community 0:386 route-map calculator permit 11513 match community 1_139_247 1_140_246 1_141_245 1_142_244 1_143_243 set community 0:386 route-map calculator permit 11514 match community 1_144_242 1_145_241 1_146_240 1_147_239 1_148_238 set community 0:386 route-map calculator permit 11515 match community 1_149_237 1_150_236 1_151_235 1_152_234 1_153_233 set community 0:386 route-map calculator permit 11516 match community 1_154_232 1_155_231 1_156_230 1_157_229 1_158_228 set community 0:386 route-map calculator permit 11517 match community 1_159_227 1_160_226 1_161_225 1_162_224 1_163_223 set community 0:386 route-map calculator permit 11518 match community 1_164_222 1_165_221 1_166_220 1_167_219 1_168_218 set community 0:386 route-map calculator permit 11519 match community 1_169_217 1_170_216 1_171_215 1_172_214 1_173_213 set community 0:386 route-map calculator permit 11520 match community 1_174_212 1_175_211 1_176_210 1_177_209 1_178_208 set community 0:386 route-map calculator permit 11521 match community 1_179_207 1_180_206 1_181_205 1_182_204 1_183_203 set community 0:386 route-map calculator permit 11522 match community 1_184_202 1_185_201 1_186_200 1_187_199 1_188_198 set community 0:386 route-map calculator permit 11523 match community 1_189_197 1_190_196 1_191_195 1_192_194 1_193_193 set community 0:386 ip community-list standard 2_84_151 permit 65000:2 0:84 0:151 route-map calculator permit 11524 match community 2_84_151 set community 0:12684 ip community-list standard 2_71_191 permit 65000:2 0:71 0:191 route-map calculator permit 11525 match community 2_71_191 set community 0:13561 ip community-list standard 2_163_227 permit 65000:2 0:163 0:227 route-map calculator permit 11526 match community 2_163_227 set community 0:37001 ip community-list standard 2_127_223 permit 65000:2 0:127 0:223 route-map calculator permit 11527 match community 2_127_223 set community 0:28321 ip community-list standard 2_139_215 permit 65000:2 0:139 0:215 route-map calculator permit 11528 match community 2_139_215 set community 0:29885 ip community-list standard 2_69_244 permit 65000:2 0:69 0:244 ip community-list standard 2_92_183 permit 65000:2 0:92 0:183 ip community-list standard 2_122_138 permit 65000:2 0:122 0:138 route-map calculator permit 11529 match community 2_69_244 2_92_183 2_122_138 set community 0:16836 ip community-list standard 2_13_240 permit 65000:2 0:13 0:240 ip community-list standard 2_15_208 permit 65000:2 0:15 0:208 ip community-list standard 2_16_195 permit 65000:2 0:16 0:195 ip community-list standard 2_20_156 permit 65000:2 0:20 0:156 ip community-list standard 2_24_130 permit 65000:2 0:24 0:130 ip community-list standard 2_26_120 permit 65000:2 0:26 0:120 ip community-list standard 2_30_104 permit 65000:2 0:30 0:104 ip community-list standard 2_39_80 permit 65000:2 0:39 0:80 ip community-list standard 2_40_78 permit 65000:2 0:40 0:78 ip community-list standard 2_48_65 permit 65000:2 0:48 0:65 ip community-list standard 2_52_60 permit 65000:2 0:52 0:60 route-map calculator permit 11530 match community 2_13_240 2_15_208 2_16_195 2_20_156 2_24_130 set community 0:3120 route-map calculator permit 11531 match community 2_26_120 2_30_104 2_39_80 2_40_78 2_48_65 set community 0:3120 route-map calculator permit 11532 match community 2_52_60 set community 0:3120 ip community-list standard 2_55_197 permit 65000:2 0:55 0:197 route-map calculator permit 11533 match community 2_55_197 set community 0:10835 ip community-list standard 2_20_199 permit 65000:2 0:20 0:199 route-map calculator permit 11534 match community 2_20_199 set community 0:3980 ip community-list standard 2_35_134 permit 65000:2 0:35 0:134 ip community-list standard 2_67_70 permit 65000:2 0:67 0:70 route-map calculator permit 11535 match community 2_35_134 2_67_70 set community 0:4690 ip community-list standard 2_212_249 permit 65000:2 0:212 0:249 route-map calculator permit 11536 match community 2_212_249 set community 0:52788 ip community-list standard 2_82_245 permit 65000:2 0:82 0:245 ip community-list standard 2_98_205 permit 65000:2 0:98 0:205 route-map calculator permit 11537 match community 2_82_245 2_98_205 set community 0:20090 ip community-list standard 2_62_158 permit 65000:2 0:62 0:158 ip community-list standard 2_79_124 permit 65000:2 0:79 0:124 route-map calculator permit 11538 match community 2_62_158 2_79_124 set community 0:9796 ip community-list standard 2_221_245 permit 65000:2 0:221 0:245 route-map calculator permit 11539 match community 2_221_245 set community 0:54145 ip community-list standard 2_161_256 permit 65000:2 0:161 0:256 ip community-list standard 2_184_224 permit 65000:2 0:184 0:224 route-map calculator permit 11540 match community 2_161_256 2_184_224 set community 0:41216 ip community-list standard 2_153_193 permit 65000:2 0:153 0:193 route-map calculator permit 11541 match community 2_153_193 set community 0:29529 ip community-list standard 2_68_199 permit 65000:2 0:68 0:199 route-map calculator permit 11542 match community 2_68_199 set community 0:13532 ip community-list standard 2_199_224 permit 65000:2 0:199 0:224 route-map calculator permit 11543 match community 2_199_224 set community 0:44576 ip community-list standard 2_92_199 permit 65000:2 0:92 0:199 route-map calculator permit 11544 match community 2_92_199 set community 0:18308 ip community-list standard 2_12_252 permit 65000:2 0:12 0:252 ip community-list standard 2_14_216 permit 65000:2 0:14 0:216 ip community-list standard 2_16_189 permit 65000:2 0:16 0:189 ip community-list standard 2_18_168 permit 65000:2 0:18 0:168 ip community-list standard 2_21_144 permit 65000:2 0:21 0:144 ip community-list standard 2_24_126 permit 65000:2 0:24 0:126 ip community-list standard 2_27_112 permit 65000:2 0:27 0:112 ip community-list standard 2_28_108 permit 65000:2 0:28 0:108 ip community-list standard 2_36_84 permit 65000:2 0:36 0:84 ip community-list standard 2_42_72 permit 65000:2 0:42 0:72 ip community-list standard 2_48_63 permit 65000:2 0:48 0:63 ip community-list standard 2_54_56 permit 65000:2 0:54 0:56 route-map calculator permit 11545 match community 2_12_252 2_14_216 2_16_189 2_18_168 2_21_144 set community 0:3024 route-map calculator permit 11546 match community 2_24_126 2_27_112 2_28_108 2_36_84 2_42_72 set community 0:3024 route-map calculator permit 11547 match community 2_48_63 2_54_56 set community 0:3024 ip community-list standard 2_133_222 permit 65000:2 0:133 0:222 route-map calculator permit 11548 match community 2_133_222 set community 0:29526 ip community-list standard 2_81_121 permit 65000:2 0:81 0:121 ip community-list standard 2_99_99 permit 65000:2 0:99 0:99 route-map calculator permit 11549 match community 2_81_121 2_99_99 set community 0:9801 ip community-list standard 2_133_229 permit 65000:2 0:133 0:229 route-map calculator permit 11550 match community 2_133_229 set community 0:30457 ip community-list standard 2_36_193 permit 65000:2 0:36 0:193 route-map calculator permit 11551 match community 2_36_193 set community 0:6948 ip community-list standard 2_249_256 permit 65000:2 0:249 0:256 route-map calculator permit 11552 match community 2_249_256 set community 0:63744 ip community-list standard 2_9_127 permit 65000:2 0:9 0:127 route-map calculator permit 11553 match community 2_9_127 set community 0:1143 ip community-list standard 2_80_230 permit 65000:2 0:80 0:230 ip community-list standard 2_92_200 permit 65000:2 0:92 0:200 ip community-list standard 2_100_184 permit 65000:2 0:100 0:184 ip community-list standard 2_115_160 permit 65000:2 0:115 0:160 route-map calculator permit 11554 match community 2_80_230 2_92_200 2_100_184 2_115_160 set community 0:18400 ip community-list standard 2_87_243 permit 65000:2 0:87 0:243 route-map calculator permit 11555 match community 2_87_243 set community 0:21141 ip community-list standard 2_152_233 permit 65000:2 0:152 0:233 route-map calculator permit 11556 match community 2_152_233 set community 0:35416 ip community-list standard 2_2_192 permit 65000:2 0:2 0:192 ip community-list standard 2_3_128 permit 65000:2 0:3 0:128 ip community-list standard 2_4_96 permit 65000:2 0:4 0:96 ip community-list standard 2_6_64 permit 65000:2 0:6 0:64 ip community-list standard 2_8_48 permit 65000:2 0:8 0:48 ip community-list standard 2_12_32 permit 65000:2 0:12 0:32 ip community-list standard 2_16_24 permit 65000:2 0:16 0:24 ip community-list standard 1_128_256 permit 65000:1 0:128 0:256 ip community-list standard 1_129_255 permit 65000:1 0:129 0:255 ip community-list standard 1_130_254 permit 65000:1 0:130 0:254 ip community-list standard 1_131_253 permit 65000:1 0:131 0:253 ip community-list standard 1_132_252 permit 65000:1 0:132 0:252 ip community-list standard 1_133_251 permit 65000:1 0:133 0:251 ip community-list standard 1_134_250 permit 65000:1 0:134 0:250 ip community-list standard 1_135_249 permit 65000:1 0:135 0:249 ip community-list standard 1_136_248 permit 65000:1 0:136 0:248 ip community-list standard 1_137_247 permit 65000:1 0:137 0:247 ip community-list standard 1_138_246 permit 65000:1 0:138 0:246 ip community-list standard 1_139_245 permit 65000:1 0:139 0:245 ip community-list standard 1_140_244 permit 65000:1 0:140 0:244 ip community-list standard 1_141_243 permit 65000:1 0:141 0:243 ip community-list standard 1_142_242 permit 65000:1 0:142 0:242 ip community-list standard 1_143_241 permit 65000:1 0:143 0:241 ip community-list standard 1_144_240 permit 65000:1 0:144 0:240 ip community-list standard 1_145_239 permit 65000:1 0:145 0:239 ip community-list standard 1_146_238 permit 65000:1 0:146 0:238 ip community-list standard 1_147_237 permit 65000:1 0:147 0:237 ip community-list standard 1_148_236 permit 65000:1 0:148 0:236 ip community-list standard 1_149_235 permit 65000:1 0:149 0:235 ip community-list standard 1_150_234 permit 65000:1 0:150 0:234 ip community-list standard 1_151_233 permit 65000:1 0:151 0:233 ip community-list standard 1_152_232 permit 65000:1 0:152 0:232 ip community-list standard 1_153_231 permit 65000:1 0:153 0:231 ip community-list standard 1_154_230 permit 65000:1 0:154 0:230 ip community-list standard 1_155_229 permit 65000:1 0:155 0:229 ip community-list standard 1_156_228 permit 65000:1 0:156 0:228 ip community-list standard 1_157_227 permit 65000:1 0:157 0:227 ip community-list standard 1_158_226 permit 65000:1 0:158 0:226 ip community-list standard 1_159_225 permit 65000:1 0:159 0:225 ip community-list standard 1_160_224 permit 65000:1 0:160 0:224 ip community-list standard 1_161_223 permit 65000:1 0:161 0:223 ip community-list standard 1_162_222 permit 65000:1 0:162 0:222 ip community-list standard 1_163_221 permit 65000:1 0:163 0:221 ip community-list standard 1_164_220 permit 65000:1 0:164 0:220 ip community-list standard 1_165_219 permit 65000:1 0:165 0:219 ip community-list standard 1_166_218 permit 65000:1 0:166 0:218 ip community-list standard 1_167_217 permit 65000:1 0:167 0:217 ip community-list standard 1_168_216 permit 65000:1 0:168 0:216 ip community-list standard 1_169_215 permit 65000:1 0:169 0:215 ip community-list standard 1_170_214 permit 65000:1 0:170 0:214 ip community-list standard 1_171_213 permit 65000:1 0:171 0:213 ip community-list standard 1_172_212 permit 65000:1 0:172 0:212 ip community-list standard 1_173_211 permit 65000:1 0:173 0:211 ip community-list standard 1_174_210 permit 65000:1 0:174 0:210 ip community-list standard 1_175_209 permit 65000:1 0:175 0:209 ip community-list standard 1_176_208 permit 65000:1 0:176 0:208 ip community-list standard 1_177_207 permit 65000:1 0:177 0:207 ip community-list standard 1_178_206 permit 65000:1 0:178 0:206 ip community-list standard 1_179_205 permit 65000:1 0:179 0:205 ip community-list standard 1_180_204 permit 65000:1 0:180 0:204 ip community-list standard 1_181_203 permit 65000:1 0:181 0:203 ip community-list standard 1_182_202 permit 65000:1 0:182 0:202 ip community-list standard 1_183_201 permit 65000:1 0:183 0:201 ip community-list standard 1_184_200 permit 65000:1 0:184 0:200 ip community-list standard 1_185_199 permit 65000:1 0:185 0:199 ip community-list standard 1_186_198 permit 65000:1 0:186 0:198 ip community-list standard 1_187_197 permit 65000:1 0:187 0:197 ip community-list standard 1_188_196 permit 65000:1 0:188 0:196 ip community-list standard 1_189_195 permit 65000:1 0:189 0:195 ip community-list standard 1_190_194 permit 65000:1 0:190 0:194 ip community-list standard 1_191_193 permit 65000:1 0:191 0:193 ip community-list standard 1_192_192 permit 65000:1 0:192 0:192 route-map calculator permit 11557 match community 2_2_192 2_3_128 2_4_96 2_6_64 2_8_48 set community 0:384 route-map calculator permit 11558 match community 2_12_32 2_16_24 1_128_256 1_129_255 1_130_254 set community 0:384 route-map calculator permit 11559 match community 1_131_253 1_132_252 1_133_251 1_134_250 1_135_249 set community 0:384 route-map calculator permit 11560 match community 1_136_248 1_137_247 1_138_246 1_139_245 1_140_244 set community 0:384 route-map calculator permit 11561 match community 1_141_243 1_142_242 1_143_241 1_144_240 1_145_239 set community 0:384 route-map calculator permit 11562 match community 1_146_238 1_147_237 1_148_236 1_149_235 1_150_234 set community 0:384 route-map calculator permit 11563 match community 1_151_233 1_152_232 1_153_231 1_154_230 1_155_229 set community 0:384 route-map calculator permit 11564 match community 1_156_228 1_157_227 1_158_226 1_159_225 1_160_224 set community 0:384 route-map calculator permit 11565 match community 1_161_223 1_162_222 1_163_221 1_164_220 1_165_219 set community 0:384 route-map calculator permit 11566 match community 1_166_218 1_167_217 1_168_216 1_169_215 1_170_214 set community 0:384 route-map calculator permit 11567 match community 1_171_213 1_172_212 1_173_211 1_174_210 1_175_209 set community 0:384 route-map calculator permit 11568 match community 1_176_208 1_177_207 1_178_206 1_179_205 1_180_204 set community 0:384 route-map calculator permit 11569 match community 1_181_203 1_182_202 1_183_201 1_184_200 1_185_199 set community 0:384 route-map calculator permit 11570 match community 1_186_198 1_187_197 1_188_196 1_189_195 1_190_194 set community 0:384 route-map calculator permit 11571 match community 1_191_193 1_192_192 set community 0:384 ip community-list standard 2_115_248 permit 65000:2 0:115 0:248 ip community-list standard 2_124_230 permit 65000:2 0:124 0:230 ip community-list standard 2_155_184 permit 65000:2 0:155 0:184 route-map calculator permit 11572 match community 2_115_248 2_124_230 2_155_184 set community 0:28520 ip community-list standard 2_89_249 permit 65000:2 0:89 0:249 route-map calculator permit 11573 match community 2_89_249 set community 0:22161 ip community-list standard 2_98_231 permit 65000:2 0:98 0:231 ip community-list standard 2_147_154 permit 65000:2 0:147 0:154 route-map calculator permit 11574 match community 2_98_231 2_147_154 set community 0:22638 ip community-list standard 2_96_234 permit 65000:2 0:96 0:234 ip community-list standard 2_104_216 permit 65000:2 0:104 0:216 ip community-list standard 2_108_208 permit 65000:2 0:108 0:208 ip community-list standard 2_117_192 permit 65000:2 0:117 0:192 ip community-list standard 2_144_156 permit 65000:2 0:144 0:156 route-map calculator permit 11575 match community 2_96_234 2_104_216 2_108_208 2_117_192 2_144_156 set community 0:22464 ip community-list standard 2_28_212 permit 65000:2 0:28 0:212 ip community-list standard 2_53_112 permit 65000:2 0:53 0:112 ip community-list standard 2_56_106 permit 65000:2 0:56 0:106 route-map calculator permit 11576 match community 2_28_212 2_53_112 2_56_106 set community 0:5936 ip community-list standard 2_161_223 permit 65000:2 0:161 0:223 route-map calculator permit 11577 match community 2_161_223 set community 0:35903 ip community-list standard 2_27_201 permit 65000:2 0:27 0:201 ip community-list standard 2_67_81 permit 65000:2 0:67 0:81 route-map calculator permit 11578 match community 2_27_201 2_67_81 set community 0:5427 ip community-list standard 2_178_205 permit 65000:2 0:178 0:205 route-map calculator permit 11579 match community 2_178_205 set community 0:36490 ip community-list standard 2_37_171 permit 65000:2 0:37 0:171 ip community-list standard 2_57_111 permit 65000:2 0:57 0:111 route-map calculator permit 11580 match community 2_37_171 2_57_111 set community 0:6327 ip community-list standard 2_111_143 permit 65000:2 0:111 0:143 route-map calculator permit 11581 match community 2_111_143 set community 0:15873 ip community-list standard 2_182_206 permit 65000:2 0:182 0:206 route-map calculator permit 11582 match community 2_182_206 set community 0:37492 ip community-list standard 2_137_160 permit 65000:2 0:137 0:160 route-map calculator permit 11583 match community 2_137_160 set community 0:21920 ip community-list standard 2_199_252 permit 65000:2 0:199 0:252 route-map calculator permit 11584 match community 2_199_252 set community 0:50148 ip community-list standard 2_69_169 permit 65000:2 0:69 0:169 route-map calculator permit 11585 match community 2_69_169 set community 0:11661 ip community-list standard 2_11_37 permit 65000:2 0:11 0:37 ip community-list standard 1_151_256 permit 65000:1 0:151 0:256 ip community-list standard 1_152_255 permit 65000:1 0:152 0:255 ip community-list standard 1_153_254 permit 65000:1 0:153 0:254 ip community-list standard 1_154_253 permit 65000:1 0:154 0:253 ip community-list standard 1_155_252 permit 65000:1 0:155 0:252 ip community-list standard 1_156_251 permit 65000:1 0:156 0:251 ip community-list standard 1_157_250 permit 65000:1 0:157 0:250 ip community-list standard 1_158_249 permit 65000:1 0:158 0:249 ip community-list standard 1_159_248 permit 65000:1 0:159 0:248 ip community-list standard 1_160_247 permit 65000:1 0:160 0:247 ip community-list standard 1_161_246 permit 65000:1 0:161 0:246 ip community-list standard 1_162_245 permit 65000:1 0:162 0:245 ip community-list standard 1_163_244 permit 65000:1 0:163 0:244 ip community-list standard 1_164_243 permit 65000:1 0:164 0:243 ip community-list standard 1_165_242 permit 65000:1 0:165 0:242 ip community-list standard 1_166_241 permit 65000:1 0:166 0:241 ip community-list standard 1_167_240 permit 65000:1 0:167 0:240 ip community-list standard 1_168_239 permit 65000:1 0:168 0:239 ip community-list standard 1_169_238 permit 65000:1 0:169 0:238 ip community-list standard 1_170_237 permit 65000:1 0:170 0:237 ip community-list standard 1_171_236 permit 65000:1 0:171 0:236 ip community-list standard 1_172_235 permit 65000:1 0:172 0:235 ip community-list standard 1_173_234 permit 65000:1 0:173 0:234 ip community-list standard 1_174_233 permit 65000:1 0:174 0:233 ip community-list standard 1_175_232 permit 65000:1 0:175 0:232 ip community-list standard 1_176_231 permit 65000:1 0:176 0:231 ip community-list standard 1_177_230 permit 65000:1 0:177 0:230 ip community-list standard 1_178_229 permit 65000:1 0:178 0:229 ip community-list standard 1_179_228 permit 65000:1 0:179 0:228 ip community-list standard 1_180_227 permit 65000:1 0:180 0:227 ip community-list standard 1_181_226 permit 65000:1 0:181 0:226 ip community-list standard 1_182_225 permit 65000:1 0:182 0:225 ip community-list standard 1_183_224 permit 65000:1 0:183 0:224 ip community-list standard 1_184_223 permit 65000:1 0:184 0:223 ip community-list standard 1_185_222 permit 65000:1 0:185 0:222 ip community-list standard 1_186_221 permit 65000:1 0:186 0:221 ip community-list standard 1_187_220 permit 65000:1 0:187 0:220 ip community-list standard 1_188_219 permit 65000:1 0:188 0:219 ip community-list standard 1_189_218 permit 65000:1 0:189 0:218 ip community-list standard 1_190_217 permit 65000:1 0:190 0:217 ip community-list standard 1_191_216 permit 65000:1 0:191 0:216 ip community-list standard 1_192_215 permit 65000:1 0:192 0:215 ip community-list standard 1_193_214 permit 65000:1 0:193 0:214 ip community-list standard 1_194_213 permit 65000:1 0:194 0:213 ip community-list standard 1_195_212 permit 65000:1 0:195 0:212 ip community-list standard 1_196_211 permit 65000:1 0:196 0:211 ip community-list standard 1_197_210 permit 65000:1 0:197 0:210 ip community-list standard 1_198_209 permit 65000:1 0:198 0:209 ip community-list standard 1_199_208 permit 65000:1 0:199 0:208 ip community-list standard 1_200_207 permit 65000:1 0:200 0:207 ip community-list standard 1_201_206 permit 65000:1 0:201 0:206 ip community-list standard 1_202_205 permit 65000:1 0:202 0:205 ip community-list standard 1_203_204 permit 65000:1 0:203 0:204 route-map calculator permit 11586 match community 2_11_37 1_151_256 1_152_255 1_153_254 1_154_253 set community 0:407 route-map calculator permit 11587 match community 1_155_252 1_156_251 1_157_250 1_158_249 1_159_248 set community 0:407 route-map calculator permit 11588 match community 1_160_247 1_161_246 1_162_245 1_163_244 1_164_243 set community 0:407 route-map calculator permit 11589 match community 1_165_242 1_166_241 1_167_240 1_168_239 1_169_238 set community 0:407 route-map calculator permit 11590 match community 1_170_237 1_171_236 1_172_235 1_173_234 1_174_233 set community 0:407 route-map calculator permit 11591 match community 1_175_232 1_176_231 1_177_230 1_178_229 1_179_228 set community 0:407 route-map calculator permit 11592 match community 1_180_227 1_181_226 1_182_225 1_183_224 1_184_223 set community 0:407 route-map calculator permit 11593 match community 1_185_222 1_186_221 1_187_220 1_188_219 1_189_218 set community 0:407 route-map calculator permit 11594 match community 1_190_217 1_191_216 1_192_215 1_193_214 1_194_213 set community 0:407 route-map calculator permit 11595 match community 1_195_212 1_196_211 1_197_210 1_198_209 1_199_208 set community 0:407 route-map calculator permit 11596 match community 1_200_207 1_201_206 1_202_205 1_203_204 set community 0:407 ip community-list standard 2_41_223 permit 65000:2 0:41 0:223 route-map calculator permit 11597 match community 2_41_223 set community 0:9143 ip community-list standard 2_147_183 permit 65000:2 0:147 0:183 route-map calculator permit 11598 match community 2_147_183 set community 0:26901 ip community-list standard 2_55_226 permit 65000:2 0:55 0:226 ip community-list standard 2_110_113 permit 65000:2 0:110 0:113 route-map calculator permit 11599 match community 2_55_226 2_110_113 set community 0:12430 ip community-list standard 2_31_249 permit 65000:2 0:31 0:249 ip community-list standard 2_83_93 permit 65000:2 0:83 0:93 route-map calculator permit 11600 match community 2_31_249 2_83_93 set community 0:7719 ip community-list standard 2_145_220 permit 65000:2 0:145 0:220 route-map calculator permit 11601 match community 2_145_220 set community 0:31900 ip community-list standard 2_107_193 permit 65000:2 0:107 0:193 route-map calculator permit 11602 match community 2_107_193 set community 0:20651 ip community-list standard 2_95_175 permit 65000:2 0:95 0:175 ip community-list standard 2_125_133 permit 65000:2 0:125 0:133 route-map calculator permit 11603 match community 2_95_175 2_125_133 set community 0:16625 ip community-list standard 2_107_155 permit 65000:2 0:107 0:155 route-map calculator permit 11604 match community 2_107_155 set community 0:16585 ip community-list standard 2_67_121 permit 65000:2 0:67 0:121 route-map calculator permit 11605 match community 2_67_121 set community 0:8107 ip community-list standard 2_156_202 permit 65000:2 0:156 0:202 route-map calculator permit 11606 match community 2_156_202 set community 0:31512 ip community-list standard 2_167_236 permit 65000:2 0:167 0:236 route-map calculator permit 11607 match community 2_167_236 set community 0:39412 ip community-list standard 2_46_246 permit 65000:2 0:46 0:246 ip community-list standard 2_69_164 permit 65000:2 0:69 0:164 ip community-list standard 2_82_138 permit 65000:2 0:82 0:138 ip community-list standard 2_92_123 permit 65000:2 0:92 0:123 route-map calculator permit 11608 match community 2_46_246 2_69_164 2_82_138 2_92_123 set community 0:11316 ip community-list standard 2_129_236 permit 65000:2 0:129 0:236 ip community-list standard 2_172_177 permit 65000:2 0:172 0:177 route-map calculator permit 11609 match community 2_129_236 2_172_177 set community 0:30444 ip community-list standard 2_97_119 permit 65000:2 0:97 0:119 route-map calculator permit 11610 match community 2_97_119 set community 0:11543 ip community-list standard 2_244_255 permit 65000:2 0:244 0:255 route-map calculator permit 11611 match community 2_244_255 set community 0:62220 ip community-list standard 2_242_245 permit 65000:2 0:242 0:245 route-map calculator permit 11612 match community 2_242_245 set community 0:59290 ip community-list standard 2_209_212 permit 65000:2 0:209 0:212 route-map calculator permit 11613 match community 2_209_212 set community 0:44308 ip community-list standard 2_79_170 permit 65000:2 0:79 0:170 ip community-list standard 2_85_158 permit 65000:2 0:85 0:158 route-map calculator permit 11614 match community 2_79_170 2_85_158 set community 0:13430 ip community-list standard 2_99_103 permit 65000:2 0:99 0:103 route-map calculator permit 11615 match community 2_99_103 set community 0:10197 ip community-list standard 2_35_197 permit 65000:2 0:35 0:197 route-map calculator permit 11616 match community 2_35_197 set community 0:6895 ip community-list standard 2_17_19 permit 65000:2 0:17 0:19 ip community-list standard 1_67_256 permit 65000:1 0:67 0:256 ip community-list standard 1_68_255 permit 65000:1 0:68 0:255 ip community-list standard 1_69_254 permit 65000:1 0:69 0:254 ip community-list standard 1_70_253 permit 65000:1 0:70 0:253 ip community-list standard 1_71_252 permit 65000:1 0:71 0:252 ip community-list standard 1_72_251 permit 65000:1 0:72 0:251 ip community-list standard 1_73_250 permit 65000:1 0:73 0:250 ip community-list standard 1_74_249 permit 65000:1 0:74 0:249 ip community-list standard 1_75_248 permit 65000:1 0:75 0:248 ip community-list standard 1_76_247 permit 65000:1 0:76 0:247 ip community-list standard 1_77_246 permit 65000:1 0:77 0:246 ip community-list standard 1_78_245 permit 65000:1 0:78 0:245 ip community-list standard 1_79_244 permit 65000:1 0:79 0:244 ip community-list standard 1_80_243 permit 65000:1 0:80 0:243 ip community-list standard 1_81_242 permit 65000:1 0:81 0:242 ip community-list standard 1_82_241 permit 65000:1 0:82 0:241 ip community-list standard 1_83_240 permit 65000:1 0:83 0:240 ip community-list standard 1_84_239 permit 65000:1 0:84 0:239 ip community-list standard 1_85_238 permit 65000:1 0:85 0:238 ip community-list standard 1_86_237 permit 65000:1 0:86 0:237 ip community-list standard 1_87_236 permit 65000:1 0:87 0:236 ip community-list standard 1_88_235 permit 65000:1 0:88 0:235 ip community-list standard 1_89_234 permit 65000:1 0:89 0:234 ip community-list standard 1_90_233 permit 65000:1 0:90 0:233 ip community-list standard 1_91_232 permit 65000:1 0:91 0:232 ip community-list standard 1_92_231 permit 65000:1 0:92 0:231 ip community-list standard 1_93_230 permit 65000:1 0:93 0:230 ip community-list standard 1_94_229 permit 65000:1 0:94 0:229 ip community-list standard 1_95_228 permit 65000:1 0:95 0:228 ip community-list standard 1_96_227 permit 65000:1 0:96 0:227 ip community-list standard 1_97_226 permit 65000:1 0:97 0:226 ip community-list standard 1_98_225 permit 65000:1 0:98 0:225 ip community-list standard 1_99_224 permit 65000:1 0:99 0:224 ip community-list standard 1_100_223 permit 65000:1 0:100 0:223 ip community-list standard 1_101_222 permit 65000:1 0:101 0:222 ip community-list standard 1_102_221 permit 65000:1 0:102 0:221 ip community-list standard 1_103_220 permit 65000:1 0:103 0:220 ip community-list standard 1_104_219 permit 65000:1 0:104 0:219 ip community-list standard 1_105_218 permit 65000:1 0:105 0:218 ip community-list standard 1_106_217 permit 65000:1 0:106 0:217 ip community-list standard 1_107_216 permit 65000:1 0:107 0:216 ip community-list standard 1_108_215 permit 65000:1 0:108 0:215 ip community-list standard 1_109_214 permit 65000:1 0:109 0:214 ip community-list standard 1_110_213 permit 65000:1 0:110 0:213 ip community-list standard 1_111_212 permit 65000:1 0:111 0:212 ip community-list standard 1_112_211 permit 65000:1 0:112 0:211 ip community-list standard 1_113_210 permit 65000:1 0:113 0:210 ip community-list standard 1_114_209 permit 65000:1 0:114 0:209 ip community-list standard 1_115_208 permit 65000:1 0:115 0:208 ip community-list standard 1_116_207 permit 65000:1 0:116 0:207 ip community-list standard 1_117_206 permit 65000:1 0:117 0:206 ip community-list standard 1_118_205 permit 65000:1 0:118 0:205 ip community-list standard 1_119_204 permit 65000:1 0:119 0:204 ip community-list standard 1_120_203 permit 65000:1 0:120 0:203 ip community-list standard 1_121_202 permit 65000:1 0:121 0:202 ip community-list standard 1_122_201 permit 65000:1 0:122 0:201 ip community-list standard 1_123_200 permit 65000:1 0:123 0:200 ip community-list standard 1_124_199 permit 65000:1 0:124 0:199 ip community-list standard 1_125_198 permit 65000:1 0:125 0:198 ip community-list standard 1_126_197 permit 65000:1 0:126 0:197 ip community-list standard 1_127_196 permit 65000:1 0:127 0:196 ip community-list standard 1_128_195 permit 65000:1 0:128 0:195 ip community-list standard 1_129_194 permit 65000:1 0:129 0:194 ip community-list standard 1_130_193 permit 65000:1 0:130 0:193 ip community-list standard 1_131_192 permit 65000:1 0:131 0:192 ip community-list standard 1_132_191 permit 65000:1 0:132 0:191 ip community-list standard 1_133_190 permit 65000:1 0:133 0:190 ip community-list standard 1_134_189 permit 65000:1 0:134 0:189 ip community-list standard 1_135_188 permit 65000:1 0:135 0:188 ip community-list standard 1_136_187 permit 65000:1 0:136 0:187 ip community-list standard 1_137_186 permit 65000:1 0:137 0:186 ip community-list standard 1_138_185 permit 65000:1 0:138 0:185 ip community-list standard 1_139_184 permit 65000:1 0:139 0:184 ip community-list standard 1_140_183 permit 65000:1 0:140 0:183 ip community-list standard 1_141_182 permit 65000:1 0:141 0:182 ip community-list standard 1_142_181 permit 65000:1 0:142 0:181 ip community-list standard 1_143_180 permit 65000:1 0:143 0:180 ip community-list standard 1_144_179 permit 65000:1 0:144 0:179 ip community-list standard 1_145_178 permit 65000:1 0:145 0:178 ip community-list standard 1_146_177 permit 65000:1 0:146 0:177 ip community-list standard 1_147_176 permit 65000:1 0:147 0:176 ip community-list standard 1_148_175 permit 65000:1 0:148 0:175 ip community-list standard 1_149_174 permit 65000:1 0:149 0:174 ip community-list standard 1_150_173 permit 65000:1 0:150 0:173 ip community-list standard 1_151_172 permit 65000:1 0:151 0:172 ip community-list standard 1_152_171 permit 65000:1 0:152 0:171 ip community-list standard 1_153_170 permit 65000:1 0:153 0:170 ip community-list standard 1_154_169 permit 65000:1 0:154 0:169 ip community-list standard 1_155_168 permit 65000:1 0:155 0:168 ip community-list standard 1_156_167 permit 65000:1 0:156 0:167 ip community-list standard 1_157_166 permit 65000:1 0:157 0:166 ip community-list standard 1_158_165 permit 65000:1 0:158 0:165 ip community-list standard 1_159_164 permit 65000:1 0:159 0:164 ip community-list standard 1_160_163 permit 65000:1 0:160 0:163 ip community-list standard 1_161_162 permit 65000:1 0:161 0:162 route-map calculator permit 11617 match community 2_17_19 1_67_256 1_68_255 1_69_254 1_70_253 set community 0:323 route-map calculator permit 11618 match community 1_71_252 1_72_251 1_73_250 1_74_249 1_75_248 set community 0:323 route-map calculator permit 11619 match community 1_76_247 1_77_246 1_78_245 1_79_244 1_80_243 set community 0:323 route-map calculator permit 11620 match community 1_81_242 1_82_241 1_83_240 1_84_239 1_85_238 set community 0:323 route-map calculator permit 11621 match community 1_86_237 1_87_236 1_88_235 1_89_234 1_90_233 set community 0:323 route-map calculator permit 11622 match community 1_91_232 1_92_231 1_93_230 1_94_229 1_95_228 set community 0:323 route-map calculator permit 11623 match community 1_96_227 1_97_226 1_98_225 1_99_224 1_100_223 set community 0:323 route-map calculator permit 11624 match community 1_101_222 1_102_221 1_103_220 1_104_219 1_105_218 set community 0:323 route-map calculator permit 11625 match community 1_106_217 1_107_216 1_108_215 1_109_214 1_110_213 set community 0:323 route-map calculator permit 11626 match community 1_111_212 1_112_211 1_113_210 1_114_209 1_115_208 set community 0:323 route-map calculator permit 11627 match community 1_116_207 1_117_206 1_118_205 1_119_204 1_120_203 set community 0:323 route-map calculator permit 11628 match community 1_121_202 1_122_201 1_123_200 1_124_199 1_125_198 set community 0:323 route-map calculator permit 11629 match community 1_126_197 1_127_196 1_128_195 1_129_194 1_130_193 set community 0:323 route-map calculator permit 11630 match community 1_131_192 1_132_191 1_133_190 1_134_189 1_135_188 set community 0:323 route-map calculator permit 11631 match community 1_136_187 1_137_186 1_138_185 1_139_184 1_140_183 set community 0:323 route-map calculator permit 11632 match community 1_141_182 1_142_181 1_143_180 1_144_179 1_145_178 set community 0:323 route-map calculator permit 11633 match community 1_146_177 1_147_176 1_148_175 1_149_174 1_150_173 set community 0:323 route-map calculator permit 11634 match community 1_151_172 1_152_171 1_153_170 1_154_169 1_155_168 set community 0:323 route-map calculator permit 11635 match community 1_156_167 1_157_166 1_158_165 1_159_164 1_160_163 set community 0:323 route-map calculator permit 11636 match community 1_161_162 set community 0:323 ip community-list standard 2_217_249 permit 65000:2 0:217 0:249 route-map calculator permit 11637 match community 2_217_249 set community 0:54033 ip community-list standard 2_192_238 permit 65000:2 0:192 0:238 ip community-list standard 2_204_224 permit 65000:2 0:204 0:224 route-map calculator permit 11638 match community 2_192_238 2_204_224 set community 0:45696 ip community-list standard 2_64_131 permit 65000:2 0:64 0:131 route-map calculator permit 11639 match community 2_64_131 set community 0:8384 ip community-list standard 2_60_242 permit 65000:2 0:60 0:242 ip community-list standard 2_66_220 permit 65000:2 0:66 0:220 ip community-list standard 2_88_165 permit 65000:2 0:88 0:165 ip community-list standard 2_110_132 permit 65000:2 0:110 0:132 ip community-list standard 2_120_121 permit 65000:2 0:120 0:121 route-map calculator permit 11640 match community 2_60_242 2_66_220 2_88_165 2_110_132 2_120_121 set community 0:14520 ip community-list standard 2_168_255 permit 65000:2 0:168 0:255 ip community-list standard 2_170_252 permit 65000:2 0:170 0:252 ip community-list standard 2_180_238 permit 65000:2 0:180 0:238 ip community-list standard 2_204_210 permit 65000:2 0:204 0:210 route-map calculator permit 11641 match community 2_168_255 2_170_252 2_180_238 2_204_210 set community 0:42840 ip community-list standard 2_39_141 permit 65000:2 0:39 0:141 ip community-list standard 2_47_117 permit 65000:2 0:47 0:117 route-map calculator permit 11642 match community 2_39_141 2_47_117 set community 0:5499 ip community-list standard 2_86_216 permit 65000:2 0:86 0:216 ip community-list standard 2_108_172 permit 65000:2 0:108 0:172 ip community-list standard 2_129_144 permit 65000:2 0:129 0:144 route-map calculator permit 11643 match community 2_86_216 2_108_172 2_129_144 set community 0:18576 ip community-list standard 2_129_173 permit 65000:2 0:129 0:173 route-map calculator permit 11644 match community 2_129_173 set community 0:22317 ip community-list standard 2_18_174 permit 65000:2 0:18 0:174 ip community-list standard 2_27_116 permit 65000:2 0:27 0:116 ip community-list standard 2_29_108 permit 65000:2 0:29 0:108 ip community-list standard 2_36_87 permit 65000:2 0:36 0:87 ip community-list standard 2_54_58 permit 65000:2 0:54 0:58 route-map calculator permit 11645 match community 2_18_174 2_27_116 2_29_108 2_36_87 2_54_58 set community 0:3132 ip community-list standard 2_129_147 permit 65000:2 0:129 0:147 route-map calculator permit 11646 match community 2_129_147 set community 0:18963 ip community-list standard 2_23_208 permit 65000:2 0:23 0:208 ip community-list standard 2_26_184 permit 65000:2 0:26 0:184 ip community-list standard 2_46_104 permit 65000:2 0:46 0:104 ip community-list standard 2_52_92 permit 65000:2 0:52 0:92 route-map calculator permit 11647 match community 2_23_208 2_26_184 2_46_104 2_52_92 set community 0:4784 ip community-list standard 2_153_157 permit 65000:2 0:153 0:157 route-map calculator permit 11648 match community 2_153_157 set community 0:24021 ip community-list standard 2_135_197 permit 65000:2 0:135 0:197 route-map calculator permit 11649 match community 2_135_197 set community 0:26595 ip community-list standard 2_77_83 permit 65000:2 0:77 0:83 route-map calculator permit 11650 match community 2_77_83 set community 0:6391 ip community-list standard 2_91_254 permit 65000:2 0:91 0:254 ip community-list standard 2_127_182 permit 65000:2 0:127 0:182 route-map calculator permit 11651 match community 2_91_254 2_127_182 set community 0:23114 ip community-list standard 2_51_206 permit 65000:2 0:51 0:206 ip community-list standard 2_102_103 permit 65000:2 0:102 0:103 route-map calculator permit 11652 match community 2_51_206 2_102_103 set community 0:10506 ip community-list standard 2_185_252 permit 65000:2 0:185 0:252 ip community-list standard 2_210_222 permit 65000:2 0:210 0:222 route-map calculator permit 11653 match community 2_185_252 2_210_222 set community 0:46620 ip community-list standard 2_58_235 permit 65000:2 0:58 0:235 ip community-list standard 2_94_145 permit 65000:2 0:94 0:145 route-map calculator permit 11654 match community 2_58_235 2_94_145 set community 0:13630 ip community-list standard 2_37_247 permit 65000:2 0:37 0:247 route-map calculator permit 11655 match community 2_37_247 set community 0:9139 ip community-list standard 2_27_174 permit 65000:2 0:27 0:174 ip community-list standard 2_29_162 permit 65000:2 0:29 0:162 ip community-list standard 2_54_87 permit 65000:2 0:54 0:87 ip community-list standard 2_58_81 permit 65000:2 0:58 0:81 route-map calculator permit 11656 match community 2_27_174 2_29_162 2_54_87 2_58_81 set community 0:4698 ip community-list standard 2_119_133 permit 65000:2 0:119 0:133 route-map calculator permit 11657 match community 2_119_133 set community 0:15827 ip community-list standard 2_53_65 permit 65000:2 0:53 0:65 route-map calculator permit 11658 match community 2_53_65 set community 0:3445 ip community-list standard 2_46_227 permit 65000:2 0:46 0:227 route-map calculator permit 11659 match community 2_46_227 set community 0:10442 ip community-list standard 2_31_142 permit 65000:2 0:31 0:142 ip community-list standard 2_62_71 permit 65000:2 0:62 0:71 route-map calculator permit 11660 match community 2_31_142 2_62_71 set community 0:4402 ip community-list standard 2_14_229 permit 65000:2 0:14 0:229 route-map calculator permit 11661 match community 2_14_229 set community 0:3206 ip community-list standard 2_208_248 permit 65000:2 0:208 0:248 route-map calculator permit 11662 match community 2_208_248 set community 0:51584 ip community-list standard 2_117_251 permit 65000:2 0:117 0:251 route-map calculator permit 11663 match community 2_117_251 set community 0:29367 ip community-list standard 2_48_249 permit 65000:2 0:48 0:249 ip community-list standard 2_72_166 permit 65000:2 0:72 0:166 ip community-list standard 2_83_144 permit 65000:2 0:83 0:144 route-map calculator permit 11664 match community 2_48_249 2_72_166 2_83_144 set community 0:11952 ip community-list standard 2_10_241 permit 65000:2 0:10 0:241 route-map calculator permit 11665 match community 2_10_241 set community 0:2410 ip community-list standard 2_6_143 permit 65000:2 0:6 0:143 ip community-list standard 2_11_78 permit 65000:2 0:11 0:78 ip community-list standard 2_13_66 permit 65000:2 0:13 0:66 ip community-list standard 2_22_39 permit 65000:2 0:22 0:39 ip community-list standard 2_26_33 permit 65000:2 0:26 0:33 route-map calculator permit 11666 match community 2_6_143 2_11_78 2_13_66 2_22_39 2_26_33 set community 0:858 ip community-list standard 2_221_226 permit 65000:2 0:221 0:226 route-map calculator permit 11667 match community 2_221_226 set community 0:49946 ip community-list standard 2_210_237 permit 65000:2 0:210 0:237 route-map calculator permit 11668 match community 2_210_237 set community 0:49770 ip community-list standard 2_110_255 permit 65000:2 0:110 0:255 ip community-list standard 2_150_187 permit 65000:2 0:150 0:187 ip community-list standard 2_165_170 permit 65000:2 0:165 0:170 route-map calculator permit 11669 match community 2_110_255 2_150_187 2_165_170 set community 0:28050 ip community-list standard 2_157_250 permit 65000:2 0:157 0:250 route-map calculator permit 11670 match community 2_157_250 set community 0:39250 ip community-list standard 2_174_229 permit 65000:2 0:174 0:229 route-map calculator permit 11671 match community 2_174_229 set community 0:39846 ip community-list standard 2_109_209 permit 65000:2 0:109 0:209 route-map calculator permit 11672 match community 2_109_209 set community 0:22781 ip community-list standard 2_55_240 permit 65000:2 0:55 0:240 ip community-list standard 2_60_220 permit 65000:2 0:60 0:220 ip community-list standard 2_66_200 permit 65000:2 0:66 0:200 ip community-list standard 2_75_176 permit 65000:2 0:75 0:176 ip community-list standard 2_80_165 permit 65000:2 0:80 0:165 ip community-list standard 2_88_150 permit 65000:2 0:88 0:150 ip community-list standard 2_100_132 permit 65000:2 0:100 0:132 ip community-list standard 2_110_120 permit 65000:2 0:110 0:120 route-map calculator permit 11673 match community 2_55_240 2_60_220 2_66_200 2_75_176 2_80_165 set community 0:13200 route-map calculator permit 11674 match community 2_88_150 2_100_132 2_110_120 set community 0:13200 ip community-list standard 2_21_181 permit 65000:2 0:21 0:181 route-map calculator permit 11675 match community 2_21_181 set community 0:3801 ip community-list standard 2_3_205 permit 65000:2 0:3 0:205 ip community-list standard 2_5_123 permit 65000:2 0:5 0:123 ip community-list standard 2_15_41 permit 65000:2 0:15 0:41 route-map calculator permit 11676 match community 2_3_205 2_5_123 2_15_41 set community 0:615 ip community-list standard 2_21_238 permit 65000:2 0:21 0:238 ip community-list standard 2_34_147 permit 65000:2 0:34 0:147 ip community-list standard 2_42_119 permit 65000:2 0:42 0:119 ip community-list standard 2_49_102 permit 65000:2 0:49 0:102 ip community-list standard 2_51_98 permit 65000:2 0:51 0:98 route-map calculator permit 11677 match community 2_21_238 2_34_147 2_42_119 2_49_102 2_51_98 set community 0:4998 ip community-list standard 2_178_211 permit 65000:2 0:178 0:211 route-map calculator permit 11678 match community 2_178_211 set community 0:37558 ip community-list standard 2_146_202 permit 65000:2 0:146 0:202 route-map calculator permit 11679 match community 2_146_202 set community 0:29492 ip community-list standard 2_83_119 permit 65000:2 0:83 0:119 route-map calculator permit 11680 match community 2_83_119 set community 0:9877 ip community-list standard 2_153_255 permit 65000:2 0:153 0:255 route-map calculator permit 11681 match community 2_153_255 set community 0:39015 ip community-list standard 2_52_247 permit 65000:2 0:52 0:247 ip community-list standard 2_76_169 permit 65000:2 0:76 0:169 route-map calculator permit 11682 match community 2_52_247 2_76_169 set community 0:12844 ip community-list standard 2_8_256 permit 65000:2 0:8 0:256 ip community-list standard 2_16_128 permit 65000:2 0:16 0:128 ip community-list standard 2_32_64 permit 65000:2 0:32 0:64 route-map calculator permit 11683 match community 2_8_256 2_16_128 2_32_64 set community 0:2048 ip community-list standard 2_179_238 permit 65000:2 0:179 0:238 route-map calculator permit 11684 match community 2_179_238 set community 0:42602 ip community-list standard 2_106_183 permit 65000:2 0:106 0:183 ip community-list standard 2_122_159 permit 65000:2 0:122 0:159 route-map calculator permit 11685 match community 2_106_183 2_122_159 set community 0:19398 ip community-list standard 2_181_251 permit 65000:2 0:181 0:251 route-map calculator permit 11686 match community 2_181_251 set community 0:45431 ip community-list standard 2_73_182 permit 65000:2 0:73 0:182 ip community-list standard 2_91_146 permit 65000:2 0:91 0:146 route-map calculator permit 11687 match community 2_73_182 2_91_146 set community 0:13286 ip community-list standard 2_136_187 permit 65000:2 0:136 0:187 route-map calculator permit 11688 match community 2_136_187 set community 0:25432 ip community-list standard 2_104_231 permit 65000:2 0:104 0:231 ip community-list standard 2_132_182 permit 65000:2 0:132 0:182 ip community-list standard 2_143_168 permit 65000:2 0:143 0:168 ip community-list standard 2_154_156 permit 65000:2 0:154 0:156 route-map calculator permit 11689 match community 2_104_231 2_132_182 2_143_168 2_154_156 set community 0:24024 ip community-list standard 2_140_230 permit 65000:2 0:140 0:230 ip community-list standard 2_161_200 permit 65000:2 0:161 0:200 ip community-list standard 2_175_184 permit 65000:2 0:175 0:184 route-map calculator permit 11690 match community 2_140_230 2_161_200 2_175_184 set community 0:32200 ip community-list standard 2_65_221 permit 65000:2 0:65 0:221 ip community-list standard 2_85_169 permit 65000:2 0:85 0:169 route-map calculator permit 11691 match community 2_65_221 2_85_169 set community 0:14365 ip community-list standard 2_51_254 permit 65000:2 0:51 0:254 ip community-list standard 2_102_127 permit 65000:2 0:102 0:127 route-map calculator permit 11692 match community 2_51_254 2_102_127 set community 0:12954 ip community-list standard 2_107_191 permit 65000:2 0:107 0:191 route-map calculator permit 11693 match community 2_107_191 set community 0:20437 ip community-list standard 2_33_204 permit 65000:2 0:33 0:204 ip community-list standard 2_34_198 permit 65000:2 0:34 0:198 ip community-list standard 2_36_187 permit 65000:2 0:36 0:187 ip community-list standard 2_44_153 permit 65000:2 0:44 0:153 ip community-list standard 2_51_132 permit 65000:2 0:51 0:132 ip community-list standard 2_66_102 permit 65000:2 0:66 0:102 ip community-list standard 2_68_99 permit 65000:2 0:68 0:99 route-map calculator permit 11694 match community 2_33_204 2_34_198 2_36_187 2_44_153 2_51_132 set community 0:6732 route-map calculator permit 11695 match community 2_66_102 2_68_99 set community 0:6732 ip community-list standard 2_240_245 permit 65000:2 0:240 0:245 route-map calculator permit 11696 match community 2_240_245 set community 0:58800 ip community-list standard 2_59_218 permit 65000:2 0:59 0:218 ip community-list standard 2_109_118 permit 65000:2 0:109 0:118 route-map calculator permit 11697 match community 2_59_218 2_109_118 set community 0:12862 ip community-list standard 2_100_246 permit 65000:2 0:100 0:246 ip community-list standard 2_120_205 permit 65000:2 0:120 0:205 ip community-list standard 2_123_200 permit 65000:2 0:123 0:200 ip community-list standard 2_150_164 permit 65000:2 0:150 0:164 route-map calculator permit 11698 match community 2_100_246 2_120_205 2_123_200 2_150_164 set community 0:24600 ip community-list standard 2_162_242 permit 65000:2 0:162 0:242 ip community-list standard 2_198_198 permit 65000:2 0:198 0:198 route-map calculator permit 11699 match community 2_162_242 2_198_198 set community 0:39204 ip community-list standard 2_149_155 permit 65000:2 0:149 0:155 route-map calculator permit 11700 match community 2_149_155 set community 0:23095 ip community-list standard 2_71_194 permit 65000:2 0:71 0:194 ip community-list standard 2_97_142 permit 65000:2 0:97 0:142 route-map calculator permit 11701 match community 2_71_194 2_97_142 set community 0:13774 ip community-list standard 2_196_228 permit 65000:2 0:196 0:228 route-map calculator permit 11702 match community 2_196_228 set community 0:44688 ip community-list standard 2_146_220 permit 65000:2 0:146 0:220 route-map calculator permit 11703 match community 2_146_220 set community 0:32120 ip community-list standard 2_99_243 permit 65000:2 0:99 0:243 route-map calculator permit 11704 match community 2_99_243 set community 0:24057 ip community-list standard 2_53_130 permit 65000:2 0:53 0:130 ip community-list standard 2_65_106 permit 65000:2 0:65 0:106 route-map calculator permit 11705 match community 2_53_130 2_65_106 set community 0:6890 ip community-list standard 2_116_187 permit 65000:2 0:116 0:187 route-map calculator permit 11706 match community 2_116_187 set community 0:21692 ip community-list standard 2_6_213 permit 65000:2 0:6 0:213 ip community-list standard 2_9_142 permit 65000:2 0:9 0:142 ip community-list standard 2_18_71 permit 65000:2 0:18 0:71 route-map calculator permit 11707 match community 2_6_213 2_9_142 2_18_71 set community 0:1278 ip community-list standard 2_4_256 permit 65000:2 0:4 0:256 ip community-list standard 2_8_128 permit 65000:2 0:8 0:128 ip community-list standard 2_16_64 permit 65000:2 0:16 0:64 ip community-list standard 2_32_32 permit 65000:2 0:32 0:32 route-map calculator permit 11708 match community 2_4_256 2_8_128 2_16_64 2_32_32 set community 0:1024 ip community-list standard 2_201_206 permit 65000:2 0:201 0:206 route-map calculator permit 11709 match community 2_201_206 set community 0:41406 ip community-list standard 2_202_209 permit 65000:2 0:202 0:209 route-map calculator permit 11710 match community 2_202_209 set community 0:42218 ip community-list standard 2_31_191 permit 65000:2 0:31 0:191 route-map calculator permit 11711 match community 2_31_191 set community 0:5921 ip community-list standard 2_6_225 permit 65000:2 0:6 0:225 ip community-list standard 2_9_150 permit 65000:2 0:9 0:150 ip community-list standard 2_10_135 permit 65000:2 0:10 0:135 ip community-list standard 2_15_90 permit 65000:2 0:15 0:90 ip community-list standard 2_18_75 permit 65000:2 0:18 0:75 ip community-list standard 2_25_54 permit 65000:2 0:25 0:54 ip community-list standard 2_27_50 permit 65000:2 0:27 0:50 ip community-list standard 2_30_45 permit 65000:2 0:30 0:45 route-map calculator permit 11712 match community 2_6_225 2_9_150 2_10_135 2_15_90 2_18_75 set community 0:1350 route-map calculator permit 11713 match community 2_25_54 2_27_50 2_30_45 set community 0:1350 ip community-list standard 2_29_87 permit 65000:2 0:29 0:87 route-map calculator permit 11714 match community 2_29_87 set community 0:2523 ip community-list standard 2_119_193 permit 65000:2 0:119 0:193 route-map calculator permit 11715 match community 2_119_193 set community 0:22967 ip community-list standard 2_133_218 permit 65000:2 0:133 0:218 route-map calculator permit 11716 match community 2_133_218 set community 0:28994 ip community-list standard 2_116_244 permit 65000:2 0:116 0:244 ip community-list standard 2_122_232 permit 65000:2 0:122 0:232 route-map calculator permit 11717 match community 2_116_244 2_122_232 set community 0:28304 ip community-list standard 2_216_218 permit 65000:2 0:216 0:218 route-map calculator permit 11718 match community 2_216_218 set community 0:47088 ip community-list standard 2_58_170 permit 65000:2 0:58 0:170 ip community-list standard 2_68_145 permit 65000:2 0:68 0:145 ip community-list standard 2_85_116 permit 65000:2 0:85 0:116 route-map calculator permit 11719 match community 2_58_170 2_68_145 2_85_116 set community 0:9860 ip community-list standard 2_101_169 permit 65000:2 0:101 0:169 route-map calculator permit 11720 match community 2_101_169 set community 0:17069 ip community-list standard 2_27_109 permit 65000:2 0:27 0:109 route-map calculator permit 11721 match community 2_27_109 set community 0:2943 ip community-list standard 2_43_149 permit 65000:2 0:43 0:149 route-map calculator permit 11722 match community 2_43_149 set community 0:6407 ip community-list standard 2_14_247 permit 65000:2 0:14 0:247 ip community-list standard 2_19_182 permit 65000:2 0:19 0:182 ip community-list standard 2_26_133 permit 65000:2 0:26 0:133 ip community-list standard 2_38_91 permit 65000:2 0:38 0:91 route-map calculator permit 11723 match community 2_14_247 2_19_182 2_26_133 2_38_91 set community 0:3458 ip community-list standard 2_16_235 permit 65000:2 0:16 0:235 ip community-list standard 2_20_188 permit 65000:2 0:20 0:188 ip community-list standard 2_40_94 permit 65000:2 0:40 0:94 ip community-list standard 2_47_80 permit 65000:2 0:47 0:80 route-map calculator permit 11724 match community 2_16_235 2_20_188 2_40_94 2_47_80 set community 0:3760 ip community-list standard 2_131_182 permit 65000:2 0:131 0:182 route-map calculator permit 11725 match community 2_131_182 set community 0:23842 ip community-list standard 2_136_223 permit 65000:2 0:136 0:223 route-map calculator permit 11726 match community 2_136_223 set community 0:30328 ip community-list standard 2_175_223 permit 65000:2 0:175 0:223 route-map calculator permit 11727 match community 2_175_223 set community 0:39025 ip community-list standard 2_149_215 permit 65000:2 0:149 0:215 route-map calculator permit 11728 match community 2_149_215 set community 0:32035 ip community-list standard 2_25_205 permit 65000:2 0:25 0:205 ip community-list standard 2_41_125 permit 65000:2 0:41 0:125 route-map calculator permit 11729 match community 2_25_205 2_41_125 set community 0:5125 ip community-list standard 2_212_241 permit 65000:2 0:212 0:241 route-map calculator permit 11730 match community 2_212_241 set community 0:51092 ip community-list standard 2_105_250 permit 65000:2 0:105 0:250 ip community-list standard 2_125_210 permit 65000:2 0:125 0:210 ip community-list standard 2_150_175 permit 65000:2 0:150 0:175 route-map calculator permit 11731 match community 2_105_250 2_125_210 2_150_175 set community 0:26250 ip community-list standard 2_115_253 permit 65000:2 0:115 0:253 route-map calculator permit 11732 match community 2_115_253 set community 0:29095 ip community-list standard 2_120_163 permit 65000:2 0:120 0:163 route-map calculator permit 11733 match community 2_120_163 set community 0:19560 ip community-list standard 2_188_237 permit 65000:2 0:188 0:237 route-map calculator permit 11734 match community 2_188_237 set community 0:44556 ip community-list standard 2_90_197 permit 65000:2 0:90 0:197 route-map calculator permit 11735 match community 2_90_197 set community 0:17730 ip community-list standard 2_73_167 permit 65000:2 0:73 0:167 route-map calculator permit 11736 match community 2_73_167 set community 0:12191 ip community-list standard 2_62_137 permit 65000:2 0:62 0:137 route-map calculator permit 11737 match community 2_62_137 set community 0:8494 ip community-list standard 2_105_241 permit 65000:2 0:105 0:241 route-map calculator permit 11738 match community 2_105_241 set community 0:25305 ip community-list standard 2_25_139 permit 65000:2 0:25 0:139 route-map calculator permit 11739 match community 2_25_139 set community 0:3475 ip community-list standard 2_43_256 permit 65000:2 0:43 0:256 ip community-list standard 2_64_172 permit 65000:2 0:64 0:172 ip community-list standard 2_86_128 permit 65000:2 0:86 0:128 route-map calculator permit 11740 match community 2_43_256 2_64_172 2_86_128 set community 0:11008 ip community-list standard 2_83_149 permit 65000:2 0:83 0:149 route-map calculator permit 11741 match community 2_83_149 set community 0:12367 ip community-list standard 2_17_86 permit 65000:2 0:17 0:86 ip community-list standard 2_34_43 permit 65000:2 0:34 0:43 route-map calculator permit 11742 match community 2_17_86 2_34_43 set community 0:1462 ip community-list standard 2_35_183 permit 65000:2 0:35 0:183 ip community-list standard 2_61_105 permit 65000:2 0:61 0:105 route-map calculator permit 11743 match community 2_35_183 2_61_105 set community 0:6405 ip community-list standard 2_12_228 permit 65000:2 0:12 0:228 ip community-list standard 2_16_171 permit 65000:2 0:16 0:171 ip community-list standard 2_18_152 permit 65000:2 0:18 0:152 ip community-list standard 2_19_144 permit 65000:2 0:19 0:144 ip community-list standard 2_24_114 permit 65000:2 0:24 0:114 ip community-list standard 2_36_76 permit 65000:2 0:36 0:76 ip community-list standard 2_38_72 permit 65000:2 0:38 0:72 ip community-list standard 2_48_57 permit 65000:2 0:48 0:57 route-map calculator permit 11744 match community 2_12_228 2_16_171 2_18_152 2_19_144 2_24_114 set community 0:2736 route-map calculator permit 11745 match community 2_36_76 2_38_72 2_48_57 set community 0:2736 ip community-list standard 2_142_200 permit 65000:2 0:142 0:200 route-map calculator permit 11746 match community 2_142_200 set community 0:28400 ip community-list standard 2_66_208 permit 65000:2 0:66 0:208 ip community-list standard 2_78_176 permit 65000:2 0:78 0:176 ip community-list standard 2_88_156 permit 65000:2 0:88 0:156 ip community-list standard 2_96_143 permit 65000:2 0:96 0:143 ip community-list standard 2_104_132 permit 65000:2 0:104 0:132 route-map calculator permit 11747 match community 2_66_208 2_78_176 2_88_156 2_96_143 2_104_132 set community 0:13728 ip community-list standard 2_5_143 permit 65000:2 0:5 0:143 ip community-list standard 2_11_65 permit 65000:2 0:11 0:65 ip community-list standard 2_13_55 permit 65000:2 0:13 0:55 route-map calculator permit 11748 match community 2_5_143 2_11_65 2_13_55 set community 0:715 ip community-list standard 2_36_206 permit 65000:2 0:36 0:206 ip community-list standard 2_72_103 permit 65000:2 0:72 0:103 route-map calculator permit 11749 match community 2_36_206 2_72_103 set community 0:7416 ip community-list standard 2_27_249 permit 65000:2 0:27 0:249 ip community-list standard 2_81_83 permit 65000:2 0:81 0:83 route-map calculator permit 11750 match community 2_27_249 2_81_83 set community 0:6723 ip community-list standard 2_20_239 permit 65000:2 0:20 0:239 route-map calculator permit 11751 match community 2_20_239 set community 0:4780 ip community-list standard 2_147_196 permit 65000:2 0:147 0:196 route-map calculator permit 11752 match community 2_147_196 set community 0:28812 ip community-list standard 2_119_219 permit 65000:2 0:119 0:219 route-map calculator permit 11753 match community 2_119_219 set community 0:26061 ip community-list standard 2_41_154 permit 65000:2 0:41 0:154 ip community-list standard 2_77_82 permit 65000:2 0:77 0:82 route-map calculator permit 11754 match community 2_41_154 2_77_82 set community 0:6314 ip community-list standard 2_167_254 permit 65000:2 0:167 0:254 route-map calculator permit 11755 match community 2_167_254 set community 0:42418 ip community-list standard 2_54_218 permit 65000:2 0:54 0:218 ip community-list standard 2_108_109 permit 65000:2 0:108 0:109 route-map calculator permit 11756 match community 2_54_218 2_108_109 set community 0:11772 ip community-list standard 2_176_242 permit 65000:2 0:176 0:242 route-map calculator permit 11757 match community 2_176_242 set community 0:42592 ip community-list standard 2_165_194 permit 65000:2 0:165 0:194 route-map calculator permit 11758 match community 2_165_194 set community 0:32010 ip community-list standard 2_168_194 permit 65000:2 0:168 0:194 route-map calculator permit 11759 match community 2_168_194 set community 0:32592 ip community-list standard 2_10_229 permit 65000:2 0:10 0:229 route-map calculator permit 11760 match community 2_10_229 set community 0:2290 ip community-list standard 2_97_246 permit 65000:2 0:97 0:246 ip community-list standard 2_123_194 permit 65000:2 0:123 0:194 route-map calculator permit 11761 match community 2_97_246 2_123_194 set community 0:23862 ip community-list standard 2_18_219 permit 65000:2 0:18 0:219 ip community-list standard 2_27_146 permit 65000:2 0:27 0:146 ip community-list standard 2_54_73 permit 65000:2 0:54 0:73 route-map calculator permit 11762 match community 2_18_219 2_27_146 2_54_73 set community 0:3942 ip community-list standard 2_183_205 permit 65000:2 0:183 0:205 route-map calculator permit 11763 match community 2_183_205 set community 0:37515 ip community-list standard 2_39_248 permit 65000:2 0:39 0:248 ip community-list standard 2_52_186 permit 65000:2 0:52 0:186 ip community-list standard 2_62_156 permit 65000:2 0:62 0:156 ip community-list standard 2_78_124 permit 65000:2 0:78 0:124 ip community-list standard 2_93_104 permit 65000:2 0:93 0:104 route-map calculator permit 11764 match community 2_39_248 2_52_186 2_62_156 2_78_124 2_93_104 set community 0:9672 ip community-list standard 2_97_137 permit 65000:2 0:97 0:137 route-map calculator permit 11765 match community 2_97_137 set community 0:13289 ip community-list standard 2_187_218 permit 65000:2 0:187 0:218 route-map calculator permit 11766 match community 2_187_218 set community 0:40766 ip community-list standard 2_212_246 permit 65000:2 0:212 0:246 route-map calculator permit 11767 match community 2_212_246 set community 0:52152 ip community-list standard 2_137_168 permit 65000:2 0:137 0:168 route-map calculator permit 11768 match community 2_137_168 set community 0:23016 ip community-list standard 2_58_158 permit 65000:2 0:58 0:158 ip community-list standard 2_79_116 permit 65000:2 0:79 0:116 route-map calculator permit 11769 match community 2_58_158 2_79_116 set community 0:9164 ip community-list standard 2_204_236 permit 65000:2 0:204 0:236 route-map calculator permit 11770 match community 2_204_236 set community 0:48144 ip community-list standard 2_215_253 permit 65000:2 0:215 0:253 route-map calculator permit 11771 match community 2_215_253 set community 0:54395 ip community-list standard 2_157_158 permit 65000:2 0:157 0:158 route-map calculator permit 11772 match community 2_157_158 set community 0:24806 ip community-list standard 2_88_188 permit 65000:2 0:88 0:188 ip community-list standard 2_94_176 permit 65000:2 0:94 0:176 route-map calculator permit 11773 match community 2_88_188 2_94_176 set community 0:16544 ip community-list standard 2_34_184 permit 65000:2 0:34 0:184 ip community-list standard 2_46_136 permit 65000:2 0:46 0:136 ip community-list standard 2_68_92 permit 65000:2 0:68 0:92 route-map calculator permit 11774 match community 2_34_184 2_46_136 2_68_92 set community 0:6256 ip community-list standard 2_121_217 permit 65000:2 0:121 0:217 route-map calculator permit 11775 match community 2_121_217 set community 0:26257 ip community-list standard 2_208_246 permit 65000:2 0:208 0:246 route-map calculator permit 11776 match community 2_208_246 set community 0:51168 ip community-list standard 2_171_197 permit 65000:2 0:171 0:197 route-map calculator permit 11777 match community 2_171_197 set community 0:33687 ip community-list standard 2_188_204 permit 65000:2 0:188 0:204 route-map calculator permit 11778 match community 2_188_204 set community 0:38352 ip community-list standard 2_17_61 permit 65000:2 0:17 0:61 route-map calculator permit 11779 match community 2_17_61 set community 0:1037 ip community-list standard 2_69_246 permit 65000:2 0:69 0:246 ip community-list standard 2_82_207 permit 65000:2 0:82 0:207 ip community-list standard 2_123_138 permit 65000:2 0:123 0:138 route-map calculator permit 11780 match community 2_69_246 2_82_207 2_123_138 set community 0:16974 ip community-list standard 2_48_218 permit 65000:2 0:48 0:218 ip community-list standard 2_96_109 permit 65000:2 0:96 0:109 route-map calculator permit 11781 match community 2_48_218 2_96_109 set community 0:10464 ip community-list standard 2_31_241 permit 65000:2 0:31 0:241 route-map calculator permit 11782 match community 2_31_241 set community 0:7471 ip community-list standard 2_239_246 permit 65000:2 0:239 0:246 route-map calculator permit 11783 match community 2_239_246 set community 0:58794 ip community-list standard 2_157_217 permit 65000:2 0:157 0:217 route-map calculator permit 11784 match community 2_157_217 set community 0:34069 ip community-list standard 2_51_237 permit 65000:2 0:51 0:237 ip community-list standard 2_79_153 permit 65000:2 0:79 0:153 route-map calculator permit 11785 match community 2_51_237 2_79_153 set community 0:12087 ip community-list standard 2_203_225 permit 65000:2 0:203 0:225 route-map calculator permit 11786 match community 2_203_225 set community 0:45675 ip community-list standard 2_148_214 permit 65000:2 0:148 0:214 route-map calculator permit 11787 match community 2_148_214 set community 0:31672 ip community-list standard 2_33_103 permit 65000:2 0:33 0:103 route-map calculator permit 11788 match community 2_33_103 set community 0:3399 ip community-list standard 2_189_227 permit 65000:2 0:189 0:227 route-map calculator permit 11789 match community 2_189_227 set community 0:42903 ip community-list standard 1_1_154 permit 65000:1 0:1 0:154 ip community-list standard 2_1_155 permit 65000:2 0:1 0:155 ip community-list standard 1_2_153 permit 65000:1 0:2 0:153 ip community-list standard 1_3_152 permit 65000:1 0:3 0:152 ip community-list standard 1_4_151 permit 65000:1 0:4 0:151 ip community-list standard 2_5_31 permit 65000:2 0:5 0:31 ip community-list standard 1_5_150 permit 65000:1 0:5 0:150 ip community-list standard 1_6_149 permit 65000:1 0:6 0:149 ip community-list standard 1_7_148 permit 65000:1 0:7 0:148 ip community-list standard 1_8_147 permit 65000:1 0:8 0:147 ip community-list standard 1_9_146 permit 65000:1 0:9 0:146 ip community-list standard 1_10_145 permit 65000:1 0:10 0:145 ip community-list standard 1_11_144 permit 65000:1 0:11 0:144 ip community-list standard 1_12_143 permit 65000:1 0:12 0:143 ip community-list standard 1_13_142 permit 65000:1 0:13 0:142 ip community-list standard 1_14_141 permit 65000:1 0:14 0:141 ip community-list standard 1_15_140 permit 65000:1 0:15 0:140 ip community-list standard 1_16_139 permit 65000:1 0:16 0:139 ip community-list standard 1_17_138 permit 65000:1 0:17 0:138 ip community-list standard 1_18_137 permit 65000:1 0:18 0:137 ip community-list standard 1_19_136 permit 65000:1 0:19 0:136 ip community-list standard 1_20_135 permit 65000:1 0:20 0:135 ip community-list standard 1_21_134 permit 65000:1 0:21 0:134 ip community-list standard 1_22_133 permit 65000:1 0:22 0:133 ip community-list standard 1_23_132 permit 65000:1 0:23 0:132 ip community-list standard 1_24_131 permit 65000:1 0:24 0:131 ip community-list standard 1_25_130 permit 65000:1 0:25 0:130 ip community-list standard 1_26_129 permit 65000:1 0:26 0:129 ip community-list standard 1_27_128 permit 65000:1 0:27 0:128 ip community-list standard 1_28_127 permit 65000:1 0:28 0:127 ip community-list standard 1_29_126 permit 65000:1 0:29 0:126 ip community-list standard 1_30_125 permit 65000:1 0:30 0:125 ip community-list standard 1_31_124 permit 65000:1 0:31 0:124 ip community-list standard 1_32_123 permit 65000:1 0:32 0:123 ip community-list standard 1_33_122 permit 65000:1 0:33 0:122 ip community-list standard 1_34_121 permit 65000:1 0:34 0:121 ip community-list standard 1_35_120 permit 65000:1 0:35 0:120 ip community-list standard 1_36_119 permit 65000:1 0:36 0:119 ip community-list standard 1_37_118 permit 65000:1 0:37 0:118 ip community-list standard 1_38_117 permit 65000:1 0:38 0:117 ip community-list standard 1_39_116 permit 65000:1 0:39 0:116 ip community-list standard 1_40_115 permit 65000:1 0:40 0:115 ip community-list standard 1_41_114 permit 65000:1 0:41 0:114 ip community-list standard 1_42_113 permit 65000:1 0:42 0:113 ip community-list standard 1_43_112 permit 65000:1 0:43 0:112 ip community-list standard 1_44_111 permit 65000:1 0:44 0:111 ip community-list standard 1_45_110 permit 65000:1 0:45 0:110 ip community-list standard 1_46_109 permit 65000:1 0:46 0:109 ip community-list standard 1_47_108 permit 65000:1 0:47 0:108 ip community-list standard 1_48_107 permit 65000:1 0:48 0:107 ip community-list standard 1_49_106 permit 65000:1 0:49 0:106 ip community-list standard 1_50_105 permit 65000:1 0:50 0:105 ip community-list standard 1_51_104 permit 65000:1 0:51 0:104 ip community-list standard 1_52_103 permit 65000:1 0:52 0:103 ip community-list standard 1_53_102 permit 65000:1 0:53 0:102 ip community-list standard 1_54_101 permit 65000:1 0:54 0:101 ip community-list standard 1_55_100 permit 65000:1 0:55 0:100 ip community-list standard 1_56_99 permit 65000:1 0:56 0:99 ip community-list standard 1_57_98 permit 65000:1 0:57 0:98 ip community-list standard 1_58_97 permit 65000:1 0:58 0:97 ip community-list standard 1_59_96 permit 65000:1 0:59 0:96 ip community-list standard 1_60_95 permit 65000:1 0:60 0:95 ip community-list standard 1_61_94 permit 65000:1 0:61 0:94 ip community-list standard 1_62_93 permit 65000:1 0:62 0:93 ip community-list standard 1_63_92 permit 65000:1 0:63 0:92 ip community-list standard 1_64_91 permit 65000:1 0:64 0:91 ip community-list standard 1_65_90 permit 65000:1 0:65 0:90 ip community-list standard 1_66_89 permit 65000:1 0:66 0:89 ip community-list standard 1_67_88 permit 65000:1 0:67 0:88 ip community-list standard 1_68_87 permit 65000:1 0:68 0:87 ip community-list standard 1_69_86 permit 65000:1 0:69 0:86 ip community-list standard 1_70_85 permit 65000:1 0:70 0:85 ip community-list standard 1_71_84 permit 65000:1 0:71 0:84 ip community-list standard 1_72_83 permit 65000:1 0:72 0:83 ip community-list standard 1_73_82 permit 65000:1 0:73 0:82 ip community-list standard 1_74_81 permit 65000:1 0:74 0:81 ip community-list standard 1_75_80 permit 65000:1 0:75 0:80 ip community-list standard 1_76_79 permit 65000:1 0:76 0:79 ip community-list standard 1_77_78 permit 65000:1 0:77 0:78 ip community-list expanded c155 permit 1 ^65000:4_0:155_0:1$ ip community-list expanded c155 permit 2 ^65000:3_0:156_0:1$ ip community-list expanded c155 permit 3 ^65000:3_0:157_0:2$ ip community-list expanded c155 permit 4 ^65000:3_0:158_0:3$ ip community-list expanded c155 permit 5 ^65000:3_0:159_0:4$ ip community-list expanded c155 permit 6 ^65000:3_0:160_0:5$ ip community-list expanded c155 permit 7 ^65000:3_0:161_0:6$ ip community-list expanded c155 permit 8 ^65000:3_0:162_0:7$ ip community-list expanded c155 permit 9 ^65000:3_0:163_0:8$ ip community-list expanded c155 permit 10 ^65000:3_0:164_0:9$ ip community-list expanded c155 permit 11 ^65000:3_0:165_0:10$ ip community-list expanded c155 permit 12 ^65000:3_0:166_0:11$ ip community-list expanded c155 permit 13 ^65000:3_0:167_0:12$ ip community-list expanded c155 permit 14 ^65000:3_0:168_0:13$ ip community-list expanded c155 permit 15 ^65000:3_0:169_0:14$ ip community-list expanded c155 permit 16 ^65000:3_0:170_0:15$ ip community-list expanded c155 permit 17 ^65000:3_0:171_0:16$ ip community-list expanded c155 permit 18 ^65000:3_0:172_0:17$ ip community-list expanded c155 permit 19 ^65000:3_0:173_0:18$ ip community-list expanded c155 permit 20 ^65000:3_0:174_0:19$ ip community-list expanded c155 permit 21 ^65000:3_0:175_0:20$ ip community-list expanded c155 permit 22 ^65000:3_0:176_0:21$ ip community-list expanded c155 permit 23 ^65000:3_0:177_0:22$ ip community-list expanded c155 permit 24 ^65000:3_0:178_0:23$ ip community-list expanded c155 permit 25 ^65000:3_0:179_0:24$ ip community-list expanded c155 permit 26 ^65000:3_0:180_0:25$ ip community-list expanded c155 permit 27 ^65000:3_0:181_0:26$ ip community-list expanded c155 permit 28 ^65000:3_0:182_0:27$ ip community-list expanded c155 permit 29 ^65000:3_0:183_0:28$ ip community-list expanded c155 permit 30 ^65000:3_0:184_0:29$ ip community-list expanded c155 permit 31 ^65000:3_0:185_0:30$ ip community-list expanded c155 permit 32 ^65000:3_0:186_0:31$ ip community-list expanded c155 permit 33 ^65000:3_0:187_0:32$ ip community-list expanded c155 permit 34 ^65000:3_0:188_0:33$ ip community-list expanded c155 permit 35 ^65000:3_0:189_0:34$ ip community-list expanded c155 permit 36 ^65000:3_0:190_0:35$ ip community-list expanded c155 permit 37 ^65000:3_0:191_0:36$ ip community-list expanded c155 permit 38 ^65000:3_0:192_0:37$ ip community-list expanded c155 permit 39 ^65000:3_0:193_0:38$ ip community-list expanded c155 permit 40 ^65000:3_0:194_0:39$ ip community-list expanded c155 permit 41 ^65000:3_0:195_0:40$ ip community-list expanded c155 permit 42 ^65000:3_0:196_0:41$ ip community-list expanded c155 permit 43 ^65000:3_0:197_0:42$ ip community-list expanded c155 permit 44 ^65000:3_0:198_0:43$ ip community-list expanded c155 permit 45 ^65000:3_0:199_0:44$ ip community-list expanded c155 permit 46 ^65000:3_0:200_0:45$ ip community-list expanded c155 permit 47 ^65000:3_0:201_0:46$ ip community-list expanded c155 permit 48 ^65000:3_0:202_0:47$ ip community-list expanded c155 permit 49 ^65000:3_0:203_0:48$ ip community-list expanded c155 permit 50 ^65000:3_0:204_0:49$ ip community-list expanded c155 permit 51 ^65000:3_0:205_0:50$ ip community-list expanded c155 permit 52 ^65000:3_0:206_0:51$ ip community-list expanded c155 permit 53 ^65000:3_0:207_0:52$ ip community-list expanded c155 permit 54 ^65000:3_0:208_0:53$ ip community-list expanded c155 permit 55 ^65000:3_0:209_0:54$ ip community-list expanded c155 permit 56 ^65000:3_0:210_0:55$ ip community-list expanded c155 permit 57 ^65000:3_0:211_0:56$ ip community-list expanded c155 permit 58 ^65000:3_0:212_0:57$ ip community-list expanded c155 permit 59 ^65000:3_0:213_0:58$ ip community-list expanded c155 permit 60 ^65000:3_0:214_0:59$ ip community-list expanded c155 permit 61 ^65000:3_0:215_0:60$ ip community-list expanded c155 permit 62 ^65000:3_0:216_0:61$ ip community-list expanded c155 permit 63 ^65000:3_0:217_0:62$ ip community-list expanded c155 permit 64 ^65000:3_0:218_0:63$ ip community-list expanded c155 permit 65 ^65000:3_0:219_0:64$ ip community-list expanded c155 permit 66 ^65000:3_0:220_0:65$ ip community-list expanded c155 permit 67 ^65000:3_0:221_0:66$ ip community-list expanded c155 permit 68 ^65000:3_0:222_0:67$ ip community-list expanded c155 permit 69 ^65000:3_0:223_0:68$ ip community-list expanded c155 permit 70 ^65000:3_0:224_0:69$ ip community-list expanded c155 permit 71 ^65000:3_0:225_0:70$ ip community-list expanded c155 permit 72 ^65000:3_0:226_0:71$ ip community-list expanded c155 permit 73 ^65000:3_0:227_0:72$ ip community-list expanded c155 permit 74 ^65000:3_0:228_0:73$ ip community-list expanded c155 permit 75 ^65000:3_0:229_0:74$ ip community-list expanded c155 permit 76 ^65000:3_0:230_0:75$ ip community-list expanded c155 permit 77 ^65000:3_0:231_0:76$ ip community-list expanded c155 permit 78 ^65000:3_0:232_0:77$ ip community-list expanded c155 permit 79 ^65000:3_0:233_0:78$ ip community-list expanded c155 permit 80 ^65000:3_0:234_0:79$ ip community-list expanded c155 permit 81 ^65000:3_0:235_0:80$ ip community-list expanded c155 permit 82 ^65000:3_0:236_0:81$ ip community-list expanded c155 permit 83 ^65000:3_0:237_0:82$ ip community-list expanded c155 permit 84 ^65000:3_0:238_0:83$ ip community-list expanded c155 permit 85 ^65000:3_0:239_0:84$ ip community-list expanded c155 permit 86 ^65000:3_0:240_0:85$ ip community-list expanded c155 permit 87 ^65000:3_0:241_0:86$ ip community-list expanded c155 permit 88 ^65000:3_0:242_0:87$ ip community-list expanded c155 permit 89 ^65000:3_0:243_0:88$ ip community-list expanded c155 permit 90 ^65000:3_0:244_0:89$ ip community-list expanded c155 permit 91 ^65000:3_0:245_0:90$ ip community-list expanded c155 permit 92 ^65000:3_0:246_0:91$ ip community-list expanded c155 permit 93 ^65000:3_0:247_0:92$ ip community-list expanded c155 permit 94 ^65000:3_0:248_0:93$ ip community-list expanded c155 permit 95 ^65000:3_0:249_0:94$ ip community-list expanded c155 permit 96 ^65000:3_0:250_0:95$ ip community-list expanded c155 permit 97 ^65000:3_0:251_0:96$ ip community-list expanded c155 permit 98 ^65000:3_0:252_0:97$ ip community-list expanded c155 permit 99 ^65000:3_0:253_0:98$ ip community-list expanded c155 permit 100 ^65000:3_0:254_0:99$ ip community-list expanded c155 permit 101 ^65000:3_0:255_0:100$ ip community-list expanded c155 permit 102 ^65000:3_0:256_0:101$ route-map calculator permit 11790 match community 1_1_154 2_1_155 1_2_153 1_3_152 1_4_151 set community 0:155 route-map calculator permit 11791 match community 2_5_31 1_5_150 1_6_149 1_7_148 1_8_147 set community 0:155 route-map calculator permit 11792 match community 1_9_146 1_10_145 1_11_144 1_12_143 1_13_142 set community 0:155 route-map calculator permit 11793 match community 1_14_141 1_15_140 1_16_139 1_17_138 1_18_137 set community 0:155 route-map calculator permit 11794 match community 1_19_136 1_20_135 1_21_134 1_22_133 1_23_132 set community 0:155 route-map calculator permit 11795 match community 1_24_131 1_25_130 1_26_129 1_27_128 1_28_127 set community 0:155 route-map calculator permit 11796 match community 1_29_126 1_30_125 1_31_124 1_32_123 1_33_122 set community 0:155 route-map calculator permit 11797 match community 1_34_121 1_35_120 1_36_119 1_37_118 1_38_117 set community 0:155 route-map calculator permit 11798 match community 1_39_116 1_40_115 1_41_114 1_42_113 1_43_112 set community 0:155 route-map calculator permit 11799 match community 1_44_111 1_45_110 1_46_109 1_47_108 1_48_107 set community 0:155 route-map calculator permit 11800 match community 1_49_106 1_50_105 1_51_104 1_52_103 1_53_102 set community 0:155 route-map calculator permit 11801 match community 1_54_101 1_55_100 1_56_99 1_57_98 1_58_97 set community 0:155 route-map calculator permit 11802 match community 1_59_96 1_60_95 1_61_94 1_62_93 1_63_92 set community 0:155 route-map calculator permit 11803 match community 1_64_91 1_65_90 1_66_89 1_67_88 1_68_87 set community 0:155 route-map calculator permit 11804 match community 1_69_86 1_70_85 1_71_84 1_72_83 1_73_82 set community 0:155 route-map calculator permit 11805 match community 1_74_81 1_75_80 1_76_79 1_77_78 c4_155_1 set community 0:155 route-map calculator permit 11806 match community c3_156_1 c3_157_2 c3_158_3 c3_159_4 c3_160_5 set community 0:155 route-map calculator permit 11807 match community c3_161_6 c3_162_7 c3_163_8 c3_164_9 c3_165_10 set community 0:155 route-map calculator permit 11808 match community c3_166_11 c3_167_12 c3_168_13 c3_169_14 c3_170_15 set community 0:155 route-map calculator permit 11809 match community c3_171_16 c3_172_17 c3_173_18 c3_174_19 c3_175_20 set community 0:155 route-map calculator permit 11810 match community c3_176_21 c3_177_22 c3_178_23 c3_179_24 c3_180_25 set community 0:155 route-map calculator permit 11811 match community c3_181_26 c3_182_27 c3_183_28 c3_184_29 c3_185_30 set community 0:155 route-map calculator permit 11812 match community c3_186_31 c3_187_32 c3_188_33 c3_189_34 c3_190_35 set community 0:155 route-map calculator permit 11813 match community c3_191_36 c3_192_37 c3_193_38 c3_194_39 c3_195_40 set community 0:155 route-map calculator permit 11814 match community c3_196_41 c3_197_42 c3_198_43 c3_199_44 c3_200_45 set community 0:155 route-map calculator permit 11815 match community c3_201_46 c3_202_47 c3_203_48 c3_204_49 c3_205_50 set community 0:155 route-map calculator permit 11816 match community c3_206_51 c3_207_52 c3_208_53 c3_209_54 c3_210_55 set community 0:155 route-map calculator permit 11817 match community c3_211_56 c3_212_57 c3_213_58 c3_214_59 c3_215_60 set community 0:155 route-map calculator permit 11818 match community c3_216_61 c3_217_62 c3_218_63 c3_219_64 c3_220_65 set community 0:155 route-map calculator permit 11819 match community c3_221_66 c3_222_67 c3_223_68 c3_224_69 c3_225_70 set community 0:155 route-map calculator permit 11820 match community c3_226_71 c3_227_72 c3_228_73 c3_229_74 c3_230_75 set community 0:155 route-map calculator permit 11821 match community c3_231_76 c3_232_77 c3_233_78 c3_234_79 c3_235_80 set community 0:155 route-map calculator permit 11822 match community c3_236_81 c3_237_82 c3_238_83 c3_239_84 c3_240_85 set community 0:155 route-map calculator permit 11823 match community c3_241_86 c3_242_87 c3_243_88 c3_244_89 c3_245_90 set community 0:155 route-map calculator permit 11824 match community c3_246_91 c3_247_92 c3_248_93 c3_249_94 c3_250_95 set community 0:155 route-map calculator permit 11825 match community c3_251_96 c3_252_97 c3_253_98 c3_254_99 c3_255_100 set community 0:155 route-map calculator permit 11826 match community c3_256_101 set community 0:155 ip community-list standard 2_114_248 permit 65000:2 0:114 0:248 ip community-list standard 2_124_228 permit 65000:2 0:124 0:228 ip community-list standard 2_152_186 permit 65000:2 0:152 0:186 route-map calculator permit 11827 match community 2_114_248 2_124_228 2_152_186 set community 0:28272 ip community-list standard 2_214_225 permit 65000:2 0:214 0:225 route-map calculator permit 11828 match community 2_214_225 set community 0:48150 ip community-list standard 2_65_246 permit 65000:2 0:65 0:246 ip community-list standard 2_78_205 permit 65000:2 0:78 0:205 ip community-list standard 2_82_195 permit 65000:2 0:82 0:195 ip community-list standard 2_123_130 permit 65000:2 0:123 0:130 route-map calculator permit 11829 match community 2_65_246 2_78_205 2_82_195 2_123_130 set community 0:15990 ip community-list standard 2_35_240 permit 65000:2 0:35 0:240 ip community-list standard 2_40_210 permit 65000:2 0:40 0:210 ip community-list standard 2_42_200 permit 65000:2 0:42 0:200 ip community-list standard 2_48_175 permit 65000:2 0:48 0:175 ip community-list standard 2_50_168 permit 65000:2 0:50 0:168 ip community-list standard 2_56_150 permit 65000:2 0:56 0:150 ip community-list standard 2_60_140 permit 65000:2 0:60 0:140 ip community-list standard 2_70_120 permit 65000:2 0:70 0:120 ip community-list standard 2_75_112 permit 65000:2 0:75 0:112 ip community-list standard 2_80_105 permit 65000:2 0:80 0:105 ip community-list standard 2_84_100 permit 65000:2 0:84 0:100 route-map calculator permit 11830 match community 2_35_240 2_40_210 2_42_200 2_48_175 2_50_168 set community 0:8400 route-map calculator permit 11831 match community 2_56_150 2_60_140 2_70_120 2_75_112 2_80_105 set community 0:8400 route-map calculator permit 11832 match community 2_84_100 set community 0:8400 ip community-list standard 2_71_255 permit 65000:2 0:71 0:255 ip community-list standard 2_85_213 permit 65000:2 0:85 0:213 route-map calculator permit 11833 match community 2_71_255 2_85_213 set community 0:18105 ip community-list standard 2_92_216 permit 65000:2 0:92 0:216 ip community-list standard 2_96_207 permit 65000:2 0:96 0:207 ip community-list standard 2_108_184 permit 65000:2 0:108 0:184 ip community-list standard 2_138_144 permit 65000:2 0:138 0:144 route-map calculator permit 11834 match community 2_92_216 2_96_207 2_108_184 2_138_144 set community 0:19872 ip community-list standard 2_12_131 permit 65000:2 0:12 0:131 route-map calculator permit 11835 match community 2_12_131 set community 0:1572 ip community-list standard 2_40_218 permit 65000:2 0:40 0:218 ip community-list standard 2_80_109 permit 65000:2 0:80 0:109 route-map calculator permit 11836 match community 2_40_218 2_80_109 set community 0:8720 ip community-list standard 2_17_204 permit 65000:2 0:17 0:204 ip community-list standard 2_34_102 permit 65000:2 0:34 0:102 ip community-list standard 2_51_68 permit 65000:2 0:51 0:68 route-map calculator permit 11837 match community 2_17_204 2_34_102 2_51_68 set community 0:3468 ip community-list standard 2_198_228 permit 65000:2 0:198 0:228 ip community-list standard 2_209_216 permit 65000:2 0:209 0:216 route-map calculator permit 11838 match community 2_198_228 2_209_216 set community 0:45144 ip community-list standard 2_20_243 permit 65000:2 0:20 0:243 ip community-list standard 2_27_180 permit 65000:2 0:27 0:180 ip community-list standard 2_30_162 permit 65000:2 0:30 0:162 ip community-list standard 2_36_135 permit 65000:2 0:36 0:135 ip community-list standard 2_45_108 permit 65000:2 0:45 0:108 ip community-list standard 2_54_90 permit 65000:2 0:54 0:90 ip community-list standard 2_60_81 permit 65000:2 0:60 0:81 route-map calculator permit 11839 match community 2_20_243 2_27_180 2_30_162 2_36_135 2_45_108 set community 0:4860 route-map calculator permit 11840 match community 2_54_90 2_60_81 set community 0:4860 ip community-list standard 2_43_201 permit 65000:2 0:43 0:201 ip community-list standard 2_67_129 permit 65000:2 0:67 0:129 route-map calculator permit 11841 match community 2_43_201 2_67_129 set community 0:8643 ip community-list standard 2_18_256 permit 65000:2 0:18 0:256 ip community-list standard 2_24_192 permit 65000:2 0:24 0:192 ip community-list standard 2_32_144 permit 65000:2 0:32 0:144 ip community-list standard 2_36_128 permit 65000:2 0:36 0:128 ip community-list standard 2_48_96 permit 65000:2 0:48 0:96 ip community-list standard 2_64_72 permit 65000:2 0:64 0:72 route-map calculator permit 11842 match community 2_18_256 2_24_192 2_32_144 2_36_128 2_48_96 set community 0:4608 route-map calculator permit 11843 match community 2_64_72 set community 0:4608 ip community-list standard 2_39_163 permit 65000:2 0:39 0:163 route-map calculator permit 11844 match community 2_39_163 set community 0:6357 ip community-list standard 1_1_74 permit 65000:1 0:1 0:74 ip community-list standard 2_1_75 permit 65000:2 0:1 0:75 ip community-list standard 1_2_73 permit 65000:1 0:2 0:73 ip community-list standard 2_3_25 permit 65000:2 0:3 0:25 ip community-list standard 1_3_72 permit 65000:1 0:3 0:72 ip community-list standard 1_4_71 permit 65000:1 0:4 0:71 ip community-list standard 2_5_15 permit 65000:2 0:5 0:15 ip community-list standard 1_5_70 permit 65000:1 0:5 0:70 ip community-list standard 1_6_69 permit 65000:1 0:6 0:69 ip community-list standard 1_7_68 permit 65000:1 0:7 0:68 ip community-list standard 1_8_67 permit 65000:1 0:8 0:67 ip community-list standard 1_9_66 permit 65000:1 0:9 0:66 ip community-list standard 1_10_65 permit 65000:1 0:10 0:65 ip community-list standard 1_11_64 permit 65000:1 0:11 0:64 ip community-list standard 1_12_63 permit 65000:1 0:12 0:63 ip community-list standard 1_13_62 permit 65000:1 0:13 0:62 ip community-list standard 1_14_61 permit 65000:1 0:14 0:61 ip community-list standard 1_15_60 permit 65000:1 0:15 0:60 ip community-list standard 1_16_59 permit 65000:1 0:16 0:59 ip community-list standard 1_17_58 permit 65000:1 0:17 0:58 ip community-list standard 1_18_57 permit 65000:1 0:18 0:57 ip community-list standard 1_19_56 permit 65000:1 0:19 0:56 ip community-list standard 1_20_55 permit 65000:1 0:20 0:55 ip community-list standard 1_21_54 permit 65000:1 0:21 0:54 ip community-list standard 1_22_53 permit 65000:1 0:22 0:53 ip community-list standard 1_23_52 permit 65000:1 0:23 0:52 ip community-list standard 1_24_51 permit 65000:1 0:24 0:51 ip community-list standard 1_25_50 permit 65000:1 0:25 0:50 ip community-list standard 1_26_49 permit 65000:1 0:26 0:49 ip community-list standard 1_27_48 permit 65000:1 0:27 0:48 ip community-list standard 1_28_47 permit 65000:1 0:28 0:47 ip community-list standard 1_29_46 permit 65000:1 0:29 0:46 ip community-list standard 1_30_45 permit 65000:1 0:30 0:45 ip community-list standard 1_31_44 permit 65000:1 0:31 0:44 ip community-list standard 1_32_43 permit 65000:1 0:32 0:43 ip community-list standard 1_33_42 permit 65000:1 0:33 0:42 ip community-list standard 1_34_41 permit 65000:1 0:34 0:41 ip community-list standard 1_35_40 permit 65000:1 0:35 0:40 ip community-list standard 1_36_39 permit 65000:1 0:36 0:39 ip community-list standard 1_37_38 permit 65000:1 0:37 0:38 ip community-list expanded c75 permit 1 ^65000:4_0:75_0:1$ ip community-list expanded c75 permit 2 ^65000:3_0:76_0:1$ ip community-list expanded c75 permit 3 ^65000:3_0:77_0:2$ ip community-list expanded c75 permit 4 ^65000:3_0:78_0:3$ ip community-list expanded c75 permit 5 ^65000:3_0:79_0:4$ ip community-list expanded c75 permit 6 ^65000:3_0:80_0:5$ ip community-list expanded c75 permit 7 ^65000:3_0:81_0:6$ ip community-list expanded c75 permit 8 ^65000:3_0:82_0:7$ ip community-list expanded c75 permit 9 ^65000:3_0:83_0:8$ ip community-list expanded c75 permit 10 ^65000:3_0:84_0:9$ ip community-list expanded c75 permit 11 ^65000:3_0:85_0:10$ ip community-list expanded c75 permit 12 ^65000:3_0:86_0:11$ ip community-list expanded c75 permit 13 ^65000:3_0:87_0:12$ ip community-list expanded c75 permit 14 ^65000:3_0:88_0:13$ ip community-list expanded c75 permit 15 ^65000:3_0:89_0:14$ ip community-list expanded c75 permit 16 ^65000:3_0:90_0:15$ ip community-list expanded c75 permit 17 ^65000:3_0:91_0:16$ ip community-list expanded c75 permit 18 ^65000:3_0:92_0:17$ ip community-list expanded c75 permit 19 ^65000:3_0:93_0:18$ ip community-list expanded c75 permit 20 ^65000:3_0:94_0:19$ ip community-list expanded c75 permit 21 ^65000:3_0:95_0:20$ ip community-list expanded c75 permit 22 ^65000:3_0:96_0:21$ ip community-list expanded c75 permit 23 ^65000:3_0:97_0:22$ ip community-list expanded c75 permit 24 ^65000:3_0:98_0:23$ ip community-list expanded c75 permit 25 ^65000:3_0:99_0:24$ ip community-list expanded c75 permit 26 ^65000:3_0:100_0:25$ ip community-list expanded c75 permit 27 ^65000:3_0:101_0:26$ ip community-list expanded c75 permit 28 ^65000:3_0:102_0:27$ ip community-list expanded c75 permit 29 ^65000:3_0:103_0:28$ ip community-list expanded c75 permit 30 ^65000:3_0:104_0:29$ ip community-list expanded c75 permit 31 ^65000:3_0:105_0:30$ ip community-list expanded c75 permit 32 ^65000:3_0:106_0:31$ ip community-list expanded c75 permit 33 ^65000:3_0:107_0:32$ ip community-list expanded c75 permit 34 ^65000:3_0:108_0:33$ ip community-list expanded c75 permit 35 ^65000:3_0:109_0:34$ ip community-list expanded c75 permit 36 ^65000:3_0:110_0:35$ ip community-list expanded c75 permit 37 ^65000:3_0:111_0:36$ ip community-list expanded c75 permit 38 ^65000:3_0:112_0:37$ ip community-list expanded c75 permit 39 ^65000:3_0:113_0:38$ ip community-list expanded c75 permit 40 ^65000:3_0:114_0:39$ ip community-list expanded c75 permit 41 ^65000:3_0:115_0:40$ ip community-list expanded c75 permit 42 ^65000:3_0:116_0:41$ ip community-list expanded c75 permit 43 ^65000:3_0:117_0:42$ ip community-list expanded c75 permit 44 ^65000:3_0:118_0:43$ ip community-list expanded c75 permit 45 ^65000:3_0:119_0:44$ ip community-list expanded c75 permit 46 ^65000:3_0:120_0:45$ ip community-list expanded c75 permit 47 ^65000:3_0:121_0:46$ ip community-list expanded c75 permit 48 ^65000:3_0:122_0:47$ ip community-list expanded c75 permit 49 ^65000:3_0:123_0:48$ ip community-list expanded c75 permit 50 ^65000:3_0:124_0:49$ ip community-list expanded c75 permit 51 ^65000:3_0:125_0:50$ ip community-list expanded c75 permit 52 ^65000:3_0:126_0:51$ ip community-list expanded c75 permit 53 ^65000:3_0:127_0:52$ ip community-list expanded c75 permit 54 ^65000:3_0:128_0:53$ ip community-list expanded c75 permit 55 ^65000:3_0:129_0:54$ ip community-list expanded c75 permit 56 ^65000:3_0:130_0:55$ ip community-list expanded c75 permit 57 ^65000:3_0:131_0:56$ ip community-list expanded c75 permit 58 ^65000:3_0:132_0:57$ ip community-list expanded c75 permit 59 ^65000:3_0:133_0:58$ ip community-list expanded c75 permit 60 ^65000:3_0:134_0:59$ ip community-list expanded c75 permit 61 ^65000:3_0:135_0:60$ ip community-list expanded c75 permit 62 ^65000:3_0:136_0:61$ ip community-list expanded c75 permit 63 ^65000:3_0:137_0:62$ ip community-list expanded c75 permit 64 ^65000:3_0:138_0:63$ ip community-list expanded c75 permit 65 ^65000:3_0:139_0:64$ ip community-list expanded c75 permit 66 ^65000:3_0:140_0:65$ ip community-list expanded c75 permit 67 ^65000:3_0:141_0:66$ ip community-list expanded c75 permit 68 ^65000:3_0:142_0:67$ ip community-list expanded c75 permit 69 ^65000:3_0:143_0:68$ ip community-list expanded c75 permit 70 ^65000:3_0:144_0:69$ ip community-list expanded c75 permit 71 ^65000:3_0:145_0:70$ ip community-list expanded c75 permit 72 ^65000:3_0:146_0:71$ ip community-list expanded c75 permit 73 ^65000:3_0:147_0:72$ ip community-list expanded c75 permit 74 ^65000:3_0:148_0:73$ ip community-list expanded c75 permit 75 ^65000:3_0:149_0:74$ ip community-list expanded c75 permit 76 ^65000:4_0:150_0:2$ ip community-list expanded c75 permit 77 ^65000:3_0:150_0:75$ ip community-list expanded c75 permit 78 ^65000:4_0:151_0:2$ ip community-list expanded c75 permit 79 ^65000:3_0:151_0:76$ ip community-list expanded c75 permit 80 ^65000:3_0:152_0:77$ ip community-list expanded c75 permit 81 ^65000:3_0:153_0:78$ ip community-list expanded c75 permit 82 ^65000:3_0:154_0:79$ ip community-list expanded c75 permit 83 ^65000:3_0:155_0:80$ ip community-list expanded c75 permit 84 ^65000:3_0:156_0:81$ ip community-list expanded c75 permit 85 ^65000:3_0:157_0:82$ ip community-list expanded c75 permit 86 ^65000:3_0:158_0:83$ ip community-list expanded c75 permit 87 ^65000:3_0:159_0:84$ ip community-list expanded c75 permit 88 ^65000:3_0:160_0:85$ ip community-list expanded c75 permit 89 ^65000:3_0:161_0:86$ ip community-list expanded c75 permit 90 ^65000:3_0:162_0:87$ ip community-list expanded c75 permit 91 ^65000:3_0:163_0:88$ ip community-list expanded c75 permit 92 ^65000:3_0:164_0:89$ ip community-list expanded c75 permit 93 ^65000:3_0:165_0:90$ ip community-list expanded c75 permit 94 ^65000:3_0:166_0:91$ ip community-list expanded c75 permit 95 ^65000:3_0:167_0:92$ ip community-list expanded c75 permit 96 ^65000:3_0:168_0:93$ ip community-list expanded c75 permit 97 ^65000:3_0:169_0:94$ ip community-list expanded c75 permit 98 ^65000:3_0:170_0:95$ ip community-list expanded c75 permit 99 ^65000:3_0:171_0:96$ ip community-list expanded c75 permit 100 ^65000:3_0:172_0:97$ ip community-list expanded c75 permit 101 ^65000:3_0:173_0:98$ ip community-list expanded c75 permit 102 ^65000:3_0:174_0:99$ ip community-list expanded c75 permit 103 ^65000:3_0:175_0:100$ ip community-list expanded c75 permit 104 ^65000:3_0:176_0:101$ ip community-list expanded c75 permit 105 ^65000:3_0:177_0:102$ ip community-list expanded c75 permit 106 ^65000:3_0:178_0:103$ ip community-list expanded c75 permit 107 ^65000:3_0:179_0:104$ ip community-list expanded c75 permit 108 ^65000:3_0:180_0:105$ ip community-list expanded c75 permit 109 ^65000:3_0:181_0:106$ ip community-list expanded c75 permit 110 ^65000:3_0:182_0:107$ ip community-list expanded c75 permit 111 ^65000:3_0:183_0:108$ ip community-list expanded c75 permit 112 ^65000:3_0:184_0:109$ ip community-list expanded c75 permit 113 ^65000:3_0:185_0:110$ ip community-list expanded c75 permit 114 ^65000:3_0:186_0:111$ ip community-list expanded c75 permit 115 ^65000:3_0:187_0:112$ ip community-list expanded c75 permit 116 ^65000:3_0:188_0:113$ ip community-list expanded c75 permit 117 ^65000:3_0:189_0:114$ ip community-list expanded c75 permit 118 ^65000:3_0:190_0:115$ ip community-list expanded c75 permit 119 ^65000:3_0:191_0:116$ ip community-list expanded c75 permit 120 ^65000:3_0:192_0:117$ ip community-list expanded c75 permit 121 ^65000:3_0:193_0:118$ ip community-list expanded c75 permit 122 ^65000:3_0:194_0:119$ ip community-list expanded c75 permit 123 ^65000:3_0:195_0:120$ ip community-list expanded c75 permit 124 ^65000:3_0:196_0:121$ ip community-list expanded c75 permit 125 ^65000:3_0:197_0:122$ ip community-list expanded c75 permit 126 ^65000:3_0:198_0:123$ ip community-list expanded c75 permit 127 ^65000:3_0:199_0:124$ ip community-list expanded c75 permit 128 ^65000:3_0:200_0:125$ ip community-list expanded c75 permit 129 ^65000:3_0:201_0:126$ ip community-list expanded c75 permit 130 ^65000:3_0:202_0:127$ ip community-list expanded c75 permit 131 ^65000:3_0:203_0:128$ ip community-list expanded c75 permit 132 ^65000:3_0:204_0:129$ ip community-list expanded c75 permit 133 ^65000:3_0:205_0:130$ ip community-list expanded c75 permit 134 ^65000:3_0:206_0:131$ ip community-list expanded c75 permit 135 ^65000:3_0:207_0:132$ ip community-list expanded c75 permit 136 ^65000:3_0:208_0:133$ ip community-list expanded c75 permit 137 ^65000:3_0:209_0:134$ ip community-list expanded c75 permit 138 ^65000:3_0:210_0:135$ ip community-list expanded c75 permit 139 ^65000:3_0:211_0:136$ ip community-list expanded c75 permit 140 ^65000:3_0:212_0:137$ ip community-list expanded c75 permit 141 ^65000:3_0:213_0:138$ ip community-list expanded c75 permit 142 ^65000:3_0:214_0:139$ ip community-list expanded c75 permit 143 ^65000:3_0:215_0:140$ ip community-list expanded c75 permit 144 ^65000:3_0:216_0:141$ ip community-list expanded c75 permit 145 ^65000:3_0:217_0:142$ ip community-list expanded c75 permit 146 ^65000:3_0:218_0:143$ ip community-list expanded c75 permit 147 ^65000:3_0:219_0:144$ ip community-list expanded c75 permit 148 ^65000:3_0:220_0:145$ ip community-list expanded c75 permit 149 ^65000:3_0:221_0:146$ ip community-list expanded c75 permit 150 ^65000:3_0:222_0:147$ ip community-list expanded c75 permit 151 ^65000:3_0:223_0:148$ ip community-list expanded c75 permit 152 ^65000:3_0:224_0:149$ ip community-list expanded c75 permit 153 ^65000:4_0:225_0:3$ ip community-list expanded c75 permit 154 ^65000:3_0:225_0:150$ ip community-list expanded c75 permit 155 ^65000:4_0:226_0:3$ ip community-list expanded c75 permit 156 ^65000:3_0:226_0:151$ ip community-list expanded c75 permit 157 ^65000:4_0:227_0:3$ ip community-list expanded c75 permit 158 ^65000:3_0:227_0:152$ ip community-list expanded c75 permit 159 ^65000:3_0:228_0:153$ ip community-list expanded c75 permit 160 ^65000:3_0:229_0:154$ ip community-list expanded c75 permit 161 ^65000:3_0:230_0:155$ ip community-list expanded c75 permit 162 ^65000:3_0:231_0:156$ ip community-list expanded c75 permit 163 ^65000:3_0:232_0:157$ ip community-list expanded c75 permit 164 ^65000:3_0:233_0:158$ ip community-list expanded c75 permit 165 ^65000:3_0:234_0:159$ ip community-list expanded c75 permit 166 ^65000:3_0:235_0:160$ ip community-list expanded c75 permit 167 ^65000:3_0:236_0:161$ ip community-list expanded c75 permit 168 ^65000:3_0:237_0:162$ ip community-list expanded c75 permit 169 ^65000:3_0:238_0:163$ ip community-list expanded c75 permit 170 ^65000:3_0:239_0:164$ ip community-list expanded c75 permit 171 ^65000:3_0:240_0:165$ ip community-list expanded c75 permit 172 ^65000:3_0:241_0:166$ ip community-list expanded c75 permit 173 ^65000:3_0:242_0:167$ ip community-list expanded c75 permit 174 ^65000:3_0:243_0:168$ ip community-list expanded c75 permit 175 ^65000:3_0:244_0:169$ ip community-list expanded c75 permit 176 ^65000:3_0:245_0:170$ ip community-list expanded c75 permit 177 ^65000:3_0:246_0:171$ ip community-list expanded c75 permit 178 ^65000:3_0:247_0:172$ ip community-list expanded c75 permit 179 ^65000:3_0:248_0:173$ ip community-list expanded c75 permit 180 ^65000:3_0:249_0:174$ ip community-list expanded c75 permit 181 ^65000:3_0:250_0:175$ ip community-list expanded c75 permit 182 ^65000:3_0:251_0:176$ ip community-list expanded c75 permit 183 ^65000:3_0:252_0:177$ ip community-list expanded c75 permit 184 ^65000:3_0:253_0:178$ ip community-list expanded c75 permit 185 ^65000:3_0:254_0:179$ ip community-list expanded c75 permit 186 ^65000:3_0:255_0:180$ ip community-list expanded c75 permit 187 ^65000:3_0:256_0:181$ route-map calculator permit 11845 match community 1_1_74 2_1_75 1_2_73 2_3_25 1_3_72 set community 0:75 route-map calculator permit 11846 match community 1_4_71 2_5_15 1_5_70 1_6_69 1_7_68 set community 0:75 route-map calculator permit 11847 match community 1_8_67 1_9_66 1_10_65 1_11_64 1_12_63 set community 0:75 route-map calculator permit 11848 match community 1_13_62 1_14_61 1_15_60 1_16_59 1_17_58 set community 0:75 route-map calculator permit 11849 match community 1_18_57 1_19_56 1_20_55 1_21_54 1_22_53 set community 0:75 route-map calculator permit 11850 match community 1_23_52 1_24_51 1_25_50 1_26_49 1_27_48 set community 0:75 route-map calculator permit 11851 match community 1_28_47 1_29_46 1_30_45 1_31_44 1_32_43 set community 0:75 route-map calculator permit 11852 match community 1_33_42 1_34_41 1_35_40 1_36_39 1_37_38 set community 0:75 route-map calculator permit 11853 match community c4_75_1 c3_76_1 c3_77_2 c3_78_3 c3_79_4 set community 0:75 route-map calculator permit 11854 match community c3_80_5 c3_81_6 c3_82_7 c3_83_8 c3_84_9 set community 0:75 route-map calculator permit 11855 match community c3_85_10 c3_86_11 c3_87_12 c3_88_13 c3_89_14 set community 0:75 route-map calculator permit 11856 match community c3_90_15 c3_91_16 c3_92_17 c3_93_18 c3_94_19 set community 0:75 route-map calculator permit 11857 match community c3_95_20 c3_96_21 c3_97_22 c3_98_23 c3_99_24 set community 0:75 route-map calculator permit 11858 match community c3_100_25 c3_101_26 c3_102_27 c3_103_28 c3_104_29 set community 0:75 route-map calculator permit 11859 match community c3_105_30 c3_106_31 c3_107_32 c3_108_33 c3_109_34 set community 0:75 route-map calculator permit 11860 match community c3_110_35 c3_111_36 c3_112_37 c3_113_38 c3_114_39 set community 0:75 route-map calculator permit 11861 match community c3_115_40 c3_116_41 c3_117_42 c3_118_43 c3_119_44 set community 0:75 route-map calculator permit 11862 match community c3_120_45 c3_121_46 c3_122_47 c3_123_48 c3_124_49 set community 0:75 route-map calculator permit 11863 match community c3_125_50 c3_126_51 c3_127_52 c3_128_53 c3_129_54 set community 0:75 route-map calculator permit 11864 match community c3_130_55 c3_131_56 c3_132_57 c3_133_58 c3_134_59 set community 0:75 route-map calculator permit 11865 match community c3_135_60 c3_136_61 c3_137_62 c3_138_63 c3_139_64 set community 0:75 route-map calculator permit 11866 match community c3_140_65 c3_141_66 c3_142_67 c3_143_68 c3_144_69 set community 0:75 route-map calculator permit 11867 match community c3_145_70 c3_146_71 c3_147_72 c3_148_73 c3_149_74 set community 0:75 route-map calculator permit 11868 match community c4_150_2 c3_150_75 c4_151_2 c3_151_76 c3_152_77 set community 0:75 route-map calculator permit 11869 match community c3_153_78 c3_154_79 c3_155_80 c3_156_81 c3_157_82 set community 0:75 route-map calculator permit 11870 match community c3_158_83 c3_159_84 c3_160_85 c3_161_86 c3_162_87 set community 0:75 route-map calculator permit 11871 match community c3_163_88 c3_164_89 c3_165_90 c3_166_91 c3_167_92 set community 0:75 route-map calculator permit 11872 match community c3_168_93 c3_169_94 c3_170_95 c3_171_96 c3_172_97 set community 0:75 route-map calculator permit 11873 match community c3_173_98 c3_174_99 c3_175_100 c3_176_101 c3_177_102 set community 0:75 route-map calculator permit 11874 match community c3_178_103 c3_179_104 c3_180_105 c3_181_106 c3_182_107 set community 0:75 route-map calculator permit 11875 match community c3_183_108 c3_184_109 c3_185_110 c3_186_111 c3_187_112 set community 0:75 route-map calculator permit 11876 match community c3_188_113 c3_189_114 c3_190_115 c3_191_116 c3_192_117 set community 0:75 route-map calculator permit 11877 match community c3_193_118 c3_194_119 c3_195_120 c3_196_121 c3_197_122 set community 0:75 route-map calculator permit 11878 match community c3_198_123 c3_199_124 c3_200_125 c3_201_126 c3_202_127 set community 0:75 route-map calculator permit 11879 match community c3_203_128 c3_204_129 c3_205_130 c3_206_131 c3_207_132 set community 0:75 route-map calculator permit 11880 match community c3_208_133 c3_209_134 c3_210_135 c3_211_136 c3_212_137 set community 0:75 route-map calculator permit 11881 match community c3_213_138 c3_214_139 c3_215_140 c3_216_141 c3_217_142 set community 0:75 route-map calculator permit 11882 match community c3_218_143 c3_219_144 c3_220_145 c3_221_146 c3_222_147 set community 0:75 route-map calculator permit 11883 match community c3_223_148 c3_224_149 c4_225_3 c3_225_150 c4_226_3 set community 0:75 route-map calculator permit 11884 match community c3_226_151 c4_227_3 c3_227_152 c3_228_153 c3_229_154 set community 0:75 route-map calculator permit 11885 match community c3_230_155 c3_231_156 c3_232_157 c3_233_158 c3_234_159 set community 0:75 route-map calculator permit 11886 match community c3_235_160 c3_236_161 c3_237_162 c3_238_163 c3_239_164 set community 0:75 route-map calculator permit 11887 match community c3_240_165 c3_241_166 c3_242_167 c3_243_168 c3_244_169 set community 0:75 route-map calculator permit 11888 match community c3_245_170 c3_246_171 c3_247_172 c3_248_173 c3_249_174 set community 0:75 route-map calculator permit 11889 match community c3_250_175 c3_251_176 c3_252_177 c3_253_178 c3_254_179 set community 0:75 route-map calculator permit 11890 match community c3_255_180 c3_256_181 set community 0:75 ip community-list standard 2_162_250 permit 65000:2 0:162 0:250 ip community-list standard 2_180_225 permit 65000:2 0:180 0:225 route-map calculator permit 11891 match community 2_162_250 2_180_225 set community 0:40500 ip community-list standard 2_228_235 permit 65000:2 0:228 0:235 route-map calculator permit 11892 match community 2_228_235 set community 0:53580 ip community-list standard 2_103_241 permit 65000:2 0:103 0:241 route-map calculator permit 11893 match community 2_103_241 set community 0:24823 ip community-list standard 2_72_137 permit 65000:2 0:72 0:137 route-map calculator permit 11894 match community 2_72_137 set community 0:9864 ip community-list standard 1_1_113 permit 65000:1 0:1 0:113 ip community-list standard 2_1_114 permit 65000:2 0:1 0:114 ip community-list standard 2_2_57 permit 65000:2 0:2 0:57 ip community-list standard 1_2_112 permit 65000:1 0:2 0:112 ip community-list standard 2_3_38 permit 65000:2 0:3 0:38 ip community-list standard 1_3_111 permit 65000:1 0:3 0:111 ip community-list standard 1_4_110 permit 65000:1 0:4 0:110 ip community-list standard 1_5_109 permit 65000:1 0:5 0:109 ip community-list standard 2_6_19 permit 65000:2 0:6 0:19 ip community-list standard 1_6_108 permit 65000:1 0:6 0:108 ip community-list standard 1_7_107 permit 65000:1 0:7 0:107 ip community-list standard 1_8_106 permit 65000:1 0:8 0:106 ip community-list standard 1_9_105 permit 65000:1 0:9 0:105 ip community-list standard 1_10_104 permit 65000:1 0:10 0:104 ip community-list standard 1_11_103 permit 65000:1 0:11 0:103 ip community-list standard 1_12_102 permit 65000:1 0:12 0:102 ip community-list standard 1_13_101 permit 65000:1 0:13 0:101 ip community-list standard 1_14_100 permit 65000:1 0:14 0:100 ip community-list standard 1_15_99 permit 65000:1 0:15 0:99 ip community-list standard 1_16_98 permit 65000:1 0:16 0:98 ip community-list standard 1_17_97 permit 65000:1 0:17 0:97 ip community-list standard 1_18_96 permit 65000:1 0:18 0:96 ip community-list standard 1_19_95 permit 65000:1 0:19 0:95 ip community-list standard 1_20_94 permit 65000:1 0:20 0:94 ip community-list standard 1_21_93 permit 65000:1 0:21 0:93 ip community-list standard 1_22_92 permit 65000:1 0:22 0:92 ip community-list standard 1_23_91 permit 65000:1 0:23 0:91 ip community-list standard 1_24_90 permit 65000:1 0:24 0:90 ip community-list standard 1_25_89 permit 65000:1 0:25 0:89 ip community-list standard 1_26_88 permit 65000:1 0:26 0:88 ip community-list standard 1_27_87 permit 65000:1 0:27 0:87 ip community-list standard 1_28_86 permit 65000:1 0:28 0:86 ip community-list standard 1_29_85 permit 65000:1 0:29 0:85 ip community-list standard 1_30_84 permit 65000:1 0:30 0:84 ip community-list standard 1_31_83 permit 65000:1 0:31 0:83 ip community-list standard 1_32_82 permit 65000:1 0:32 0:82 ip community-list standard 1_33_81 permit 65000:1 0:33 0:81 ip community-list standard 1_34_80 permit 65000:1 0:34 0:80 ip community-list standard 1_35_79 permit 65000:1 0:35 0:79 ip community-list standard 1_36_78 permit 65000:1 0:36 0:78 ip community-list standard 1_37_77 permit 65000:1 0:37 0:77 ip community-list standard 1_38_76 permit 65000:1 0:38 0:76 ip community-list standard 1_39_75 permit 65000:1 0:39 0:75 ip community-list standard 1_40_74 permit 65000:1 0:40 0:74 ip community-list standard 1_41_73 permit 65000:1 0:41 0:73 ip community-list standard 1_42_72 permit 65000:1 0:42 0:72 ip community-list standard 1_43_71 permit 65000:1 0:43 0:71 ip community-list standard 1_44_70 permit 65000:1 0:44 0:70 ip community-list standard 1_45_69 permit 65000:1 0:45 0:69 ip community-list standard 1_46_68 permit 65000:1 0:46 0:68 ip community-list standard 1_47_67 permit 65000:1 0:47 0:67 ip community-list standard 1_48_66 permit 65000:1 0:48 0:66 ip community-list standard 1_49_65 permit 65000:1 0:49 0:65 ip community-list standard 1_50_64 permit 65000:1 0:50 0:64 ip community-list standard 1_51_63 permit 65000:1 0:51 0:63 ip community-list standard 1_52_62 permit 65000:1 0:52 0:62 ip community-list standard 1_53_61 permit 65000:1 0:53 0:61 ip community-list standard 1_54_60 permit 65000:1 0:54 0:60 ip community-list standard 1_55_59 permit 65000:1 0:55 0:59 ip community-list standard 1_56_58 permit 65000:1 0:56 0:58 ip community-list standard 1_57_57 permit 65000:1 0:57 0:57 ip community-list expanded c114 permit 1 ^65000:4_0:114_0:1$ ip community-list expanded c114 permit 2 ^65000:3_0:115_0:1$ ip community-list expanded c114 permit 3 ^65000:3_0:116_0:2$ ip community-list expanded c114 permit 4 ^65000:3_0:117_0:3$ ip community-list expanded c114 permit 5 ^65000:3_0:118_0:4$ ip community-list expanded c114 permit 6 ^65000:3_0:119_0:5$ ip community-list expanded c114 permit 7 ^65000:3_0:120_0:6$ ip community-list expanded c114 permit 8 ^65000:3_0:121_0:7$ ip community-list expanded c114 permit 9 ^65000:3_0:122_0:8$ ip community-list expanded c114 permit 10 ^65000:3_0:123_0:9$ ip community-list expanded c114 permit 11 ^65000:3_0:124_0:10$ ip community-list expanded c114 permit 12 ^65000:3_0:125_0:11$ ip community-list expanded c114 permit 13 ^65000:3_0:126_0:12$ ip community-list expanded c114 permit 14 ^65000:3_0:127_0:13$ ip community-list expanded c114 permit 15 ^65000:3_0:128_0:14$ ip community-list expanded c114 permit 16 ^65000:3_0:129_0:15$ ip community-list expanded c114 permit 17 ^65000:3_0:130_0:16$ ip community-list expanded c114 permit 18 ^65000:3_0:131_0:17$ ip community-list expanded c114 permit 19 ^65000:3_0:132_0:18$ ip community-list expanded c114 permit 20 ^65000:3_0:133_0:19$ ip community-list expanded c114 permit 21 ^65000:3_0:134_0:20$ ip community-list expanded c114 permit 22 ^65000:3_0:135_0:21$ ip community-list expanded c114 permit 23 ^65000:3_0:136_0:22$ ip community-list expanded c114 permit 24 ^65000:3_0:137_0:23$ ip community-list expanded c114 permit 25 ^65000:3_0:138_0:24$ ip community-list expanded c114 permit 26 ^65000:3_0:139_0:25$ ip community-list expanded c114 permit 27 ^65000:3_0:140_0:26$ ip community-list expanded c114 permit 28 ^65000:3_0:141_0:27$ ip community-list expanded c114 permit 29 ^65000:3_0:142_0:28$ ip community-list expanded c114 permit 30 ^65000:3_0:143_0:29$ ip community-list expanded c114 permit 31 ^65000:3_0:144_0:30$ ip community-list expanded c114 permit 32 ^65000:3_0:145_0:31$ ip community-list expanded c114 permit 33 ^65000:3_0:146_0:32$ ip community-list expanded c114 permit 34 ^65000:3_0:147_0:33$ ip community-list expanded c114 permit 35 ^65000:3_0:148_0:34$ ip community-list expanded c114 permit 36 ^65000:3_0:149_0:35$ ip community-list expanded c114 permit 37 ^65000:3_0:150_0:36$ ip community-list expanded c114 permit 38 ^65000:3_0:151_0:37$ ip community-list expanded c114 permit 39 ^65000:3_0:152_0:38$ ip community-list expanded c114 permit 40 ^65000:3_0:153_0:39$ ip community-list expanded c114 permit 41 ^65000:3_0:154_0:40$ ip community-list expanded c114 permit 42 ^65000:3_0:155_0:41$ ip community-list expanded c114 permit 43 ^65000:3_0:156_0:42$ ip community-list expanded c114 permit 44 ^65000:3_0:157_0:43$ ip community-list expanded c114 permit 45 ^65000:3_0:158_0:44$ ip community-list expanded c114 permit 46 ^65000:3_0:159_0:45$ ip community-list expanded c114 permit 47 ^65000:3_0:160_0:46$ ip community-list expanded c114 permit 48 ^65000:3_0:161_0:47$ ip community-list expanded c114 permit 49 ^65000:3_0:162_0:48$ ip community-list expanded c114 permit 50 ^65000:3_0:163_0:49$ ip community-list expanded c114 permit 51 ^65000:3_0:164_0:50$ ip community-list expanded c114 permit 52 ^65000:3_0:165_0:51$ ip community-list expanded c114 permit 53 ^65000:3_0:166_0:52$ ip community-list expanded c114 permit 54 ^65000:3_0:167_0:53$ ip community-list expanded c114 permit 55 ^65000:3_0:168_0:54$ ip community-list expanded c114 permit 56 ^65000:3_0:169_0:55$ ip community-list expanded c114 permit 57 ^65000:3_0:170_0:56$ ip community-list expanded c114 permit 58 ^65000:3_0:171_0:57$ ip community-list expanded c114 permit 59 ^65000:3_0:172_0:58$ ip community-list expanded c114 permit 60 ^65000:3_0:173_0:59$ ip community-list expanded c114 permit 61 ^65000:3_0:174_0:60$ ip community-list expanded c114 permit 62 ^65000:3_0:175_0:61$ ip community-list expanded c114 permit 63 ^65000:3_0:176_0:62$ ip community-list expanded c114 permit 64 ^65000:3_0:177_0:63$ ip community-list expanded c114 permit 65 ^65000:3_0:178_0:64$ ip community-list expanded c114 permit 66 ^65000:3_0:179_0:65$ ip community-list expanded c114 permit 67 ^65000:3_0:180_0:66$ ip community-list expanded c114 permit 68 ^65000:3_0:181_0:67$ ip community-list expanded c114 permit 69 ^65000:3_0:182_0:68$ ip community-list expanded c114 permit 70 ^65000:3_0:183_0:69$ ip community-list expanded c114 permit 71 ^65000:3_0:184_0:70$ ip community-list expanded c114 permit 72 ^65000:3_0:185_0:71$ ip community-list expanded c114 permit 73 ^65000:3_0:186_0:72$ ip community-list expanded c114 permit 74 ^65000:3_0:187_0:73$ ip community-list expanded c114 permit 75 ^65000:3_0:188_0:74$ ip community-list expanded c114 permit 76 ^65000:3_0:189_0:75$ ip community-list expanded c114 permit 77 ^65000:3_0:190_0:76$ ip community-list expanded c114 permit 78 ^65000:3_0:191_0:77$ ip community-list expanded c114 permit 79 ^65000:3_0:192_0:78$ ip community-list expanded c114 permit 80 ^65000:3_0:193_0:79$ ip community-list expanded c114 permit 81 ^65000:3_0:194_0:80$ ip community-list expanded c114 permit 82 ^65000:3_0:195_0:81$ ip community-list expanded c114 permit 83 ^65000:3_0:196_0:82$ ip community-list expanded c114 permit 84 ^65000:3_0:197_0:83$ ip community-list expanded c114 permit 85 ^65000:3_0:198_0:84$ ip community-list expanded c114 permit 86 ^65000:3_0:199_0:85$ ip community-list expanded c114 permit 87 ^65000:3_0:200_0:86$ ip community-list expanded c114 permit 88 ^65000:3_0:201_0:87$ ip community-list expanded c114 permit 89 ^65000:3_0:202_0:88$ ip community-list expanded c114 permit 90 ^65000:3_0:203_0:89$ ip community-list expanded c114 permit 91 ^65000:3_0:204_0:90$ ip community-list expanded c114 permit 92 ^65000:3_0:205_0:91$ ip community-list expanded c114 permit 93 ^65000:3_0:206_0:92$ ip community-list expanded c114 permit 94 ^65000:3_0:207_0:93$ ip community-list expanded c114 permit 95 ^65000:3_0:208_0:94$ ip community-list expanded c114 permit 96 ^65000:3_0:209_0:95$ ip community-list expanded c114 permit 97 ^65000:3_0:210_0:96$ ip community-list expanded c114 permit 98 ^65000:3_0:211_0:97$ ip community-list expanded c114 permit 99 ^65000:3_0:212_0:98$ ip community-list expanded c114 permit 100 ^65000:3_0:213_0:99$ ip community-list expanded c114 permit 101 ^65000:3_0:214_0:100$ ip community-list expanded c114 permit 102 ^65000:3_0:215_0:101$ ip community-list expanded c114 permit 103 ^65000:3_0:216_0:102$ ip community-list expanded c114 permit 104 ^65000:3_0:217_0:103$ ip community-list expanded c114 permit 105 ^65000:3_0:218_0:104$ ip community-list expanded c114 permit 106 ^65000:3_0:219_0:105$ ip community-list expanded c114 permit 107 ^65000:3_0:220_0:106$ ip community-list expanded c114 permit 108 ^65000:3_0:221_0:107$ ip community-list expanded c114 permit 109 ^65000:3_0:222_0:108$ ip community-list expanded c114 permit 110 ^65000:3_0:223_0:109$ ip community-list expanded c114 permit 111 ^65000:3_0:224_0:110$ ip community-list expanded c114 permit 112 ^65000:3_0:225_0:111$ ip community-list expanded c114 permit 113 ^65000:3_0:226_0:112$ ip community-list expanded c114 permit 114 ^65000:3_0:227_0:113$ ip community-list expanded c114 permit 115 ^65000:4_0:228_0:2$ ip community-list expanded c114 permit 116 ^65000:3_0:228_0:114$ ip community-list expanded c114 permit 117 ^65000:4_0:229_0:2$ ip community-list expanded c114 permit 118 ^65000:3_0:229_0:115$ ip community-list expanded c114 permit 119 ^65000:3_0:230_0:116$ ip community-list expanded c114 permit 120 ^65000:3_0:231_0:117$ ip community-list expanded c114 permit 121 ^65000:3_0:232_0:118$ ip community-list expanded c114 permit 122 ^65000:3_0:233_0:119$ ip community-list expanded c114 permit 123 ^65000:3_0:234_0:120$ ip community-list expanded c114 permit 124 ^65000:3_0:235_0:121$ ip community-list expanded c114 permit 125 ^65000:3_0:236_0:122$ ip community-list expanded c114 permit 126 ^65000:3_0:237_0:123$ ip community-list expanded c114 permit 127 ^65000:3_0:238_0:124$ ip community-list expanded c114 permit 128 ^65000:3_0:239_0:125$ ip community-list expanded c114 permit 129 ^65000:3_0:240_0:126$ ip community-list expanded c114 permit 130 ^65000:3_0:241_0:127$ ip community-list expanded c114 permit 131 ^65000:3_0:242_0:128$ ip community-list expanded c114 permit 132 ^65000:3_0:243_0:129$ ip community-list expanded c114 permit 133 ^65000:3_0:244_0:130$ ip community-list expanded c114 permit 134 ^65000:3_0:245_0:131$ ip community-list expanded c114 permit 135 ^65000:3_0:246_0:132$ ip community-list expanded c114 permit 136 ^65000:3_0:247_0:133$ ip community-list expanded c114 permit 137 ^65000:3_0:248_0:134$ ip community-list expanded c114 permit 138 ^65000:3_0:249_0:135$ ip community-list expanded c114 permit 139 ^65000:3_0:250_0:136$ ip community-list expanded c114 permit 140 ^65000:3_0:251_0:137$ ip community-list expanded c114 permit 141 ^65000:3_0:252_0:138$ ip community-list expanded c114 permit 142 ^65000:3_0:253_0:139$ ip community-list expanded c114 permit 143 ^65000:3_0:254_0:140$ ip community-list expanded c114 permit 144 ^65000:3_0:255_0:141$ ip community-list expanded c114 permit 145 ^65000:3_0:256_0:142$ route-map calculator permit 11895 match community 1_1_113 2_1_114 2_2_57 1_2_112 2_3_38 set community 0:114 route-map calculator permit 11896 match community 1_3_111 1_4_110 1_5_109 2_6_19 1_6_108 set community 0:114 route-map calculator permit 11897 match community 1_7_107 1_8_106 1_9_105 1_10_104 1_11_103 set community 0:114 route-map calculator permit 11898 match community 1_12_102 1_13_101 1_14_100 1_15_99 1_16_98 set community 0:114 route-map calculator permit 11899 match community 1_17_97 1_18_96 1_19_95 1_20_94 1_21_93 set community 0:114 route-map calculator permit 11900 match community 1_22_92 1_23_91 1_24_90 1_25_89 1_26_88 set community 0:114 route-map calculator permit 11901 match community 1_27_87 1_28_86 1_29_85 1_30_84 1_31_83 set community 0:114 route-map calculator permit 11902 match community 1_32_82 1_33_81 1_34_80 1_35_79 1_36_78 set community 0:114 route-map calculator permit 11903 match community 1_37_77 1_38_76 1_39_75 1_40_74 1_41_73 set community 0:114 route-map calculator permit 11904 match community 1_42_72 1_43_71 1_44_70 1_45_69 1_46_68 set community 0:114 route-map calculator permit 11905 match community 1_47_67 1_48_66 1_49_65 1_50_64 1_51_63 set community 0:114 route-map calculator permit 11906 match community 1_52_62 1_53_61 1_54_60 1_55_59 1_56_58 set community 0:114 route-map calculator permit 11907 match community 1_57_57 c4_114_1 c3_115_1 c3_116_2 c3_117_3 set community 0:114 route-map calculator permit 11908 match community c3_118_4 c3_119_5 c3_120_6 c3_121_7 c3_122_8 set community 0:114 route-map calculator permit 11909 match community c3_123_9 c3_124_10 c3_125_11 c3_126_12 c3_127_13 set community 0:114 route-map calculator permit 11910 match community c3_128_14 c3_129_15 c3_130_16 c3_131_17 c3_132_18 set community 0:114 route-map calculator permit 11911 match community c3_133_19 c3_134_20 c3_135_21 c3_136_22 c3_137_23 set community 0:114 route-map calculator permit 11912 match community c3_138_24 c3_139_25 c3_140_26 c3_141_27 c3_142_28 set community 0:114 route-map calculator permit 11913 match community c3_143_29 c3_144_30 c3_145_31 c3_146_32 c3_147_33 set community 0:114 route-map calculator permit 11914 match community c3_148_34 c3_149_35 c3_150_36 c3_151_37 c3_152_38 set community 0:114 route-map calculator permit 11915 match community c3_153_39 c3_154_40 c3_155_41 c3_156_42 c3_157_43 set community 0:114 route-map calculator permit 11916 match community c3_158_44 c3_159_45 c3_160_46 c3_161_47 c3_162_48 set community 0:114 route-map calculator permit 11917 match community c3_163_49 c3_164_50 c3_165_51 c3_166_52 c3_167_53 set community 0:114 route-map calculator permit 11918 match community c3_168_54 c3_169_55 c3_170_56 c3_171_57 c3_172_58 set community 0:114 route-map calculator permit 11919 match community c3_173_59 c3_174_60 c3_175_61 c3_176_62 c3_177_63 set community 0:114 route-map calculator permit 11920 match community c3_178_64 c3_179_65 c3_180_66 c3_181_67 c3_182_68 set community 0:114 route-map calculator permit 11921 match community c3_183_69 c3_184_70 c3_185_71 c3_186_72 c3_187_73 set community 0:114 route-map calculator permit 11922 match community c3_188_74 c3_189_75 c3_190_76 c3_191_77 c3_192_78 set community 0:114 route-map calculator permit 11923 match community c3_193_79 c3_194_80 c3_195_81 c3_196_82 c3_197_83 set community 0:114 route-map calculator permit 11924 match community c3_198_84 c3_199_85 c3_200_86 c3_201_87 c3_202_88 set community 0:114 route-map calculator permit 11925 match community c3_203_89 c3_204_90 c3_205_91 c3_206_92 c3_207_93 set community 0:114 route-map calculator permit 11926 match community c3_208_94 c3_209_95 c3_210_96 c3_211_97 c3_212_98 set community 0:114 route-map calculator permit 11927 match community c3_213_99 c3_214_100 c3_215_101 c3_216_102 c3_217_103 set community 0:114 route-map calculator permit 11928 match community c3_218_104 c3_219_105 c3_220_106 c3_221_107 c3_222_108 set community 0:114 route-map calculator permit 11929 match community c3_223_109 c3_224_110 c3_225_111 c3_226_112 c3_227_113 set community 0:114 route-map calculator permit 11930 match community c4_228_2 c3_228_114 c4_229_2 c3_229_115 c3_230_116 set community 0:114 route-map calculator permit 11931 match community c3_231_117 c3_232_118 c3_233_119 c3_234_120 c3_235_121 set community 0:114 route-map calculator permit 11932 match community c3_236_122 c3_237_123 c3_238_124 c3_239_125 c3_240_126 set community 0:114 route-map calculator permit 11933 match community c3_241_127 c3_242_128 c3_243_129 c3_244_130 c3_245_131 set community 0:114 route-map calculator permit 11934 match community c3_246_132 c3_247_133 c3_248_134 c3_249_135 c3_250_136 set community 0:114 route-map calculator permit 11935 match community c3_251_137 c3_252_138 c3_253_139 c3_254_140 c3_255_141 set community 0:114 route-map calculator permit 11936 match community c3_256_142 set community 0:114 ip community-list standard 2_163_217 permit 65000:2 0:163 0:217 route-map calculator permit 11937 match community 2_163_217 set community 0:35371 ip community-list standard 2_8_251 permit 65000:2 0:8 0:251 route-map calculator permit 11938 match community 2_8_251 set community 0:2008 ip community-list standard 2_159_174 permit 65000:2 0:159 0:174 route-map calculator permit 11939 match community 2_159_174 set community 0:27666 ip community-list standard 2_181_182 permit 65000:2 0:181 0:182 route-map calculator permit 11940 match community 2_181_182 set community 0:32942 ip community-list standard 2_243_251 permit 65000:2 0:243 0:251 route-map calculator permit 11941 match community 2_243_251 set community 0:60993 ip community-list standard 2_220_244 permit 65000:2 0:220 0:244 route-map calculator permit 11942 match community 2_220_244 set community 0:53680 ip community-list standard 2_181_215 permit 65000:2 0:181 0:215 route-map calculator permit 11943 match community 2_181_215 set community 0:38915 ip community-list standard 2_49_208 permit 65000:2 0:49 0:208 ip community-list standard 2_52_196 permit 65000:2 0:52 0:196 ip community-list standard 2_56_182 permit 65000:2 0:56 0:182 ip community-list standard 2_91_112 permit 65000:2 0:91 0:112 ip community-list standard 2_98_104 permit 65000:2 0:98 0:104 route-map calculator permit 11944 match community 2_49_208 2_52_196 2_56_182 2_91_112 2_98_104 set community 0:10192 ip community-list standard 2_46_256 permit 65000:2 0:46 0:256 ip community-list standard 2_64_184 permit 65000:2 0:64 0:184 ip community-list standard 2_92_128 permit 65000:2 0:92 0:128 route-map calculator permit 11945 match community 2_46_256 2_64_184 2_92_128 set community 0:11776 ip community-list standard 2_80_149 permit 65000:2 0:80 0:149 route-map calculator permit 11946 match community 2_80_149 set community 0:11920 ip community-list standard 2_29_62 permit 65000:2 0:29 0:62 ip community-list standard 2_31_58 permit 65000:2 0:31 0:58 route-map calculator permit 11947 match community 2_29_62 2_31_58 set community 0:1798 ip community-list standard 2_27_191 permit 65000:2 0:27 0:191 route-map calculator permit 11948 match community 2_27_191 set community 0:5157 ip community-list standard 2_17_247 permit 65000:2 0:17 0:247 ip community-list standard 2_19_221 permit 65000:2 0:19 0:221 route-map calculator permit 11949 match community 2_17_247 2_19_221 set community 0:4199 ip community-list standard 2_182_199 permit 65000:2 0:182 0:199 route-map calculator permit 11950 match community 2_182_199 set community 0:36218 ip community-list standard 2_31_148 permit 65000:2 0:31 0:148 ip community-list standard 2_37_124 permit 65000:2 0:37 0:124 ip community-list standard 2_62_74 permit 65000:2 0:62 0:74 route-map calculator permit 11951 match community 2_31_148 2_37_124 2_62_74 set community 0:4588 ip community-list standard 2_145_199 permit 65000:2 0:145 0:199 route-map calculator permit 11952 match community 2_145_199 set community 0:28855 ip community-list standard 2_91_227 permit 65000:2 0:91 0:227 route-map calculator permit 11953 match community 2_91_227 set community 0:20657 ip community-list standard 2_119_209 permit 65000:2 0:119 0:209 ip community-list standard 2_133_187 permit 65000:2 0:133 0:187 route-map calculator permit 11954 match community 2_119_209 2_133_187 set community 0:24871 ip community-list standard 2_142_185 permit 65000:2 0:142 0:185 route-map calculator permit 11955 match community 2_142_185 set community 0:26270 ip community-list standard 2_115_238 permit 65000:2 0:115 0:238 ip community-list standard 2_119_230 permit 65000:2 0:119 0:230 ip community-list standard 2_161_170 permit 65000:2 0:161 0:170 route-map calculator permit 11956 match community 2_115_238 2_119_230 2_161_170 set community 0:27370 ip community-list standard 2_131_221 permit 65000:2 0:131 0:221 route-map calculator permit 11957 match community 2_131_221 set community 0:28951 ip community-list standard 2_189_195 permit 65000:2 0:189 0:195 route-map calculator permit 11958 match community 2_189_195 set community 0:36855 ip community-list standard 2_235_239 permit 65000:2 0:235 0:239 route-map calculator permit 11959 match community 2_235_239 set community 0:56165 ip community-list standard 2_12_211 permit 65000:2 0:12 0:211 route-map calculator permit 11960 match community 2_12_211 set community 0:2532 ip community-list standard 2_148_247 permit 65000:2 0:148 0:247 route-map calculator permit 11961 match community 2_148_247 set community 0:36556 ip community-list standard 2_51_179 permit 65000:2 0:51 0:179 route-map calculator permit 11962 match community 2_51_179 set community 0:9129 ip community-list standard 2_206_228 permit 65000:2 0:206 0:228 route-map calculator permit 11963 match community 2_206_228 set community 0:46968 ip community-list standard 2_32_220 permit 65000:2 0:32 0:220 ip community-list standard 2_40_176 permit 65000:2 0:40 0:176 ip community-list standard 2_44_160 permit 65000:2 0:44 0:160 ip community-list standard 2_55_128 permit 65000:2 0:55 0:128 ip community-list standard 2_64_110 permit 65000:2 0:64 0:110 ip community-list standard 2_80_88 permit 65000:2 0:80 0:88 route-map calculator permit 11964 match community 2_32_220 2_40_176 2_44_160 2_55_128 2_64_110 set community 0:7040 route-map calculator permit 11965 match community 2_80_88 set community 0:7040 ip community-list standard 2_139_202 permit 65000:2 0:139 0:202 route-map calculator permit 11966 match community 2_139_202 set community 0:28078 ip community-list standard 2_166_211 permit 65000:2 0:166 0:211 route-map calculator permit 11967 match community 2_166_211 set community 0:35026 ip community-list standard 2_251_255 permit 65000:2 0:251 0:255 route-map calculator permit 11968 match community 2_251_255 set community 0:64005 ip community-list standard 2_163_186 permit 65000:2 0:163 0:186 route-map calculator permit 11969 match community 2_163_186 set community 0:30318 ip community-list standard 2_17_215 permit 65000:2 0:17 0:215 ip community-list standard 2_43_85 permit 65000:2 0:43 0:85 route-map calculator permit 11970 match community 2_17_215 2_43_85 set community 0:3655 ip community-list standard 2_26_206 permit 65000:2 0:26 0:206 ip community-list standard 2_52_103 permit 65000:2 0:52 0:103 route-map calculator permit 11971 match community 2_26_206 2_52_103 set community 0:5356 ip community-list standard 2_40_223 permit 65000:2 0:40 0:223 route-map calculator permit 11972 match community 2_40_223 set community 0:8920 ip community-list standard 2_120_242 permit 65000:2 0:120 0:242 ip community-list standard 2_121_240 permit 65000:2 0:121 0:240 ip community-list standard 2_132_220 permit 65000:2 0:132 0:220 ip community-list standard 2_165_176 permit 65000:2 0:165 0:176 route-map calculator permit 11973 match community 2_120_242 2_121_240 2_132_220 2_165_176 set community 0:29040 ip community-list standard 2_146_176 permit 65000:2 0:146 0:176 route-map calculator permit 11974 match community 2_146_176 set community 0:25696 ip community-list standard 2_50_253 permit 65000:2 0:50 0:253 ip community-list standard 2_55_230 permit 65000:2 0:55 0:230 ip community-list standard 2_110_115 permit 65000:2 0:110 0:115 route-map calculator permit 11975 match community 2_50_253 2_55_230 2_110_115 set community 0:12650 ip community-list standard 2_145_203 permit 65000:2 0:145 0:203 route-map calculator permit 11976 match community 2_145_203 set community 0:29435 ip community-list standard 2_14_250 permit 65000:2 0:14 0:250 ip community-list standard 2_20_175 permit 65000:2 0:20 0:175 ip community-list standard 2_25_140 permit 65000:2 0:25 0:140 ip community-list standard 2_28_125 permit 65000:2 0:28 0:125 ip community-list standard 2_35_100 permit 65000:2 0:35 0:100 ip community-list standard 2_50_70 permit 65000:2 0:50 0:70 route-map calculator permit 11977 match community 2_14_250 2_20_175 2_25_140 2_28_125 2_35_100 set community 0:3500 route-map calculator permit 11978 match community 2_50_70 set community 0:3500 ip community-list standard 2_157_178 permit 65000:2 0:157 0:178 route-map calculator permit 11979 match community 2_157_178 set community 0:27946 ip community-list standard 2_220_249 permit 65000:2 0:220 0:249 route-map calculator permit 11980 match community 2_220_249 set community 0:54780 ip community-list standard 2_21_191 permit 65000:2 0:21 0:191 route-map calculator permit 11981 match community 2_21_191 set community 0:4011 ip community-list standard 2_53_235 permit 65000:2 0:53 0:235 route-map calculator permit 11982 match community 2_53_235 set community 0:12455 ip community-list standard 2_44_204 permit 65000:2 0:44 0:204 ip community-list standard 2_48_187 permit 65000:2 0:48 0:187 ip community-list standard 2_51_176 permit 65000:2 0:51 0:176 ip community-list standard 2_66_136 permit 65000:2 0:66 0:136 ip community-list standard 2_68_132 permit 65000:2 0:68 0:132 ip community-list standard 2_88_102 permit 65000:2 0:88 0:102 route-map calculator permit 11983 match community 2_44_204 2_48_187 2_51_176 2_66_136 2_68_132 set community 0:8976 route-map calculator permit 11984 match community 2_88_102 set community 0:8976 ip community-list standard 2_50_254 permit 65000:2 0:50 0:254 ip community-list standard 2_100_127 permit 65000:2 0:100 0:127 route-map calculator permit 11985 match community 2_50_254 2_100_127 set community 0:12700 ip community-list standard 2_16_200 permit 65000:2 0:16 0:200 ip community-list standard 2_20_160 permit 65000:2 0:20 0:160 ip community-list standard 2_25_128 permit 65000:2 0:25 0:128 ip community-list standard 2_32_100 permit 65000:2 0:32 0:100 ip community-list standard 2_40_80 permit 65000:2 0:40 0:80 ip community-list standard 2_50_64 permit 65000:2 0:50 0:64 route-map calculator permit 11986 match community 2_16_200 2_20_160 2_25_128 2_32_100 2_40_80 set community 0:3200 route-map calculator permit 11987 match community 2_50_64 set community 0:3200 ip community-list standard 2_26_167 permit 65000:2 0:26 0:167 route-map calculator permit 11988 match community 2_26_167 set community 0:4342 ip community-list standard 2_141_207 permit 65000:2 0:141 0:207 route-map calculator permit 11989 match community 2_141_207 set community 0:29187 ip community-list standard 2_198_219 permit 65000:2 0:198 0:219 route-map calculator permit 11990 match community 2_198_219 set community 0:43362 ip community-list standard 2_61_253 permit 65000:2 0:61 0:253 route-map calculator permit 11991 match community 2_61_253 set community 0:15433 ip community-list standard 2_131_231 permit 65000:2 0:131 0:231 route-map calculator permit 11992 match community 2_131_231 set community 0:30261 ip community-list standard 2_173_229 permit 65000:2 0:173 0:229 route-map calculator permit 11993 match community 2_173_229 set community 0:39617 ip community-list standard 2_37_227 permit 65000:2 0:37 0:227 route-map calculator permit 11994 match community 2_37_227 set community 0:8399 ip community-list standard 2_87_103 permit 65000:2 0:87 0:103 route-map calculator permit 11995 match community 2_87_103 set community 0:8961 ip community-list standard 2_97_249 permit 65000:2 0:97 0:249 route-map calculator permit 11996 match community 2_97_249 set community 0:24153 ip community-list standard 2_77_237 permit 65000:2 0:77 0:237 ip community-list standard 2_79_231 permit 65000:2 0:79 0:231 route-map calculator permit 11997 match community 2_77_237 2_79_231 set community 0:18249 ip community-list standard 2_46_238 permit 65000:2 0:46 0:238 ip community-list standard 2_68_161 permit 65000:2 0:68 0:161 ip community-list standard 2_92_119 permit 65000:2 0:92 0:119 route-map calculator permit 11998 match community 2_46_238 2_68_161 2_92_119 set community 0:10948 ip community-list standard 2_235_237 permit 65000:2 0:235 0:237 route-map calculator permit 11999 match community 2_235_237 set community 0:55695 ip community-list standard 2_131_235 permit 65000:2 0:131 0:235 route-map calculator permit 12000 match community 2_131_235 set community 0:30785 ip community-list standard 2_129_133 permit 65000:2 0:129 0:133 route-map calculator permit 12001 match community 2_129_133 set community 0:17157 ip community-list standard 2_207_221 permit 65000:2 0:207 0:221 route-map calculator permit 12002 match community 2_207_221 set community 0:45747 ip community-list standard 2_163_223 permit 65000:2 0:163 0:223 route-map calculator permit 12003 match community 2_163_223 set community 0:36349 ip community-list standard 2_143_205 permit 65000:2 0:143 0:205 route-map calculator permit 12004 match community 2_143_205 set community 0:29315 ip community-list standard 2_130_219 permit 65000:2 0:130 0:219 ip community-list standard 2_146_195 permit 65000:2 0:146 0:195 route-map calculator permit 12005 match community 2_130_219 2_146_195 set community 0:28470 ip community-list standard 2_90_131 permit 65000:2 0:90 0:131 route-map calculator permit 12006 match community 2_90_131 set community 0:11790 ip community-list standard 2_145_241 permit 65000:2 0:145 0:241 route-map calculator permit 12007 match community 2_145_241 set community 0:34945 ip community-list standard 2_10_224 permit 65000:2 0:10 0:224 ip community-list standard 2_14_160 permit 65000:2 0:14 0:160 ip community-list standard 2_16_140 permit 65000:2 0:16 0:140 ip community-list standard 2_20_112 permit 65000:2 0:20 0:112 ip community-list standard 2_28_80 permit 65000:2 0:28 0:80 ip community-list standard 2_32_70 permit 65000:2 0:32 0:70 ip community-list standard 2_35_64 permit 65000:2 0:35 0:64 ip community-list standard 2_40_56 permit 65000:2 0:40 0:56 route-map calculator permit 12008 match community 2_10_224 2_14_160 2_16_140 2_20_112 2_28_80 set community 0:2240 route-map calculator permit 12009 match community 2_32_70 2_35_64 2_40_56 set community 0:2240 ip community-list standard 2_207_240 permit 65000:2 0:207 0:240 ip community-list standard 2_216_230 permit 65000:2 0:216 0:230 route-map calculator permit 12010 match community 2_207_240 2_216_230 set community 0:49680 ip community-list standard 2_33_178 permit 65000:2 0:33 0:178 ip community-list standard 2_66_89 permit 65000:2 0:66 0:89 route-map calculator permit 12011 match community 2_33_178 2_66_89 set community 0:5874 ip community-list standard 2_226_231 permit 65000:2 0:226 0:231 route-map calculator permit 12012 match community 2_226_231 set community 0:52206 ip community-list standard 2_184_202 permit 65000:2 0:184 0:202 route-map calculator permit 12013 match community 2_184_202 set community 0:37168 ip community-list standard 2_41_41 permit 65000:2 0:41 0:41 route-map calculator permit 12014 match community 2_41_41 set community 0:1681 ip community-list standard 2_99_159 permit 65000:2 0:99 0:159 route-map calculator permit 12015 match community 2_99_159 set community 0:15741 ip community-list standard 2_161_202 permit 65000:2 0:161 0:202 route-map calculator permit 12016 match community 2_161_202 set community 0:32522 ip community-list standard 2_89_183 permit 65000:2 0:89 0:183 route-map calculator permit 12017 match community 2_89_183 set community 0:16287 ip community-list standard 2_167_252 permit 65000:2 0:167 0:252 route-map calculator permit 12018 match community 2_167_252 set community 0:42084 ip community-list standard 2_214_229 permit 65000:2 0:214 0:229 route-map calculator permit 12019 match community 2_214_229 set community 0:49006 ip community-list standard 2_42_214 permit 65000:2 0:42 0:214 ip community-list standard 2_84_107 permit 65000:2 0:84 0:107 route-map calculator permit 12020 match community 2_42_214 2_84_107 set community 0:8988 ip community-list standard 2_173_230 permit 65000:2 0:173 0:230 route-map calculator permit 12021 match community 2_173_230 set community 0:39790 ip community-list standard 2_14_246 permit 65000:2 0:14 0:246 ip community-list standard 2_21_164 permit 65000:2 0:21 0:164 ip community-list standard 2_28_123 permit 65000:2 0:28 0:123 ip community-list standard 2_41_84 permit 65000:2 0:41 0:84 ip community-list standard 2_42_82 permit 65000:2 0:42 0:82 route-map calculator permit 12022 match community 2_14_246 2_21_164 2_28_123 2_41_84 2_42_82 set community 0:3444 ip community-list standard 2_101_135 permit 65000:2 0:101 0:135 route-map calculator permit 12023 match community 2_101_135 set community 0:13635 ip community-list standard 2_113_117 permit 65000:2 0:113 0:117 route-map calculator permit 12024 match community 2_113_117 set community 0:13221 ip community-list standard 2_94_202 permit 65000:2 0:94 0:202 ip community-list standard 2_101_188 permit 65000:2 0:101 0:188 route-map calculator permit 12025 match community 2_94_202 2_101_188 set community 0:18988 ip community-list standard 2_37_179 permit 65000:2 0:37 0:179 route-map calculator permit 12026 match community 2_37_179 set community 0:6623 ip community-list standard 2_59_59 permit 65000:2 0:59 0:59 route-map calculator permit 12027 match community 2_59_59 set community 0:3481 ip community-list standard 2_97_205 permit 65000:2 0:97 0:205 route-map calculator permit 12028 match community 2_97_205 set community 0:19885 ip community-list standard 2_39_203 permit 65000:2 0:39 0:203 ip community-list standard 2_87_91 permit 65000:2 0:87 0:91 route-map calculator permit 12029 match community 2_39_203 2_87_91 set community 0:7917 ip community-list standard 2_80_193 permit 65000:2 0:80 0:193 route-map calculator permit 12030 match community 2_80_193 set community 0:15440 ip community-list standard 2_184_251 permit 65000:2 0:184 0:251 route-map calculator permit 12031 match community 2_184_251 set community 0:46184 ip community-list standard 2_83_239 permit 65000:2 0:83 0:239 route-map calculator permit 12032 match community 2_83_239 set community 0:19837 ip community-list standard 2_69_212 permit 65000:2 0:69 0:212 ip community-list standard 2_92_159 permit 65000:2 0:92 0:159 ip community-list standard 2_106_138 permit 65000:2 0:106 0:138 route-map calculator permit 12033 match community 2_69_212 2_92_159 2_106_138 set community 0:14628 ip community-list standard 2_11_243 permit 65000:2 0:11 0:243 ip community-list standard 2_27_99 permit 65000:2 0:27 0:99 ip community-list standard 2_33_81 permit 65000:2 0:33 0:81 route-map calculator permit 12034 match community 2_11_243 2_27_99 2_33_81 set community 0:2673 ip community-list standard 2_212_214 permit 65000:2 0:212 0:214 route-map calculator permit 12035 match community 2_212_214 set community 0:45368 ip community-list standard 2_157_224 permit 65000:2 0:157 0:224 route-map calculator permit 12036 match community 2_157_224 set community 0:35168 ip community-list standard 2_14_159 permit 65000:2 0:14 0:159 ip community-list standard 2_21_106 permit 65000:2 0:21 0:106 ip community-list standard 2_42_53 permit 65000:2 0:42 0:53 route-map calculator permit 12037 match community 2_14_159 2_21_106 2_42_53 set community 0:2226 ip community-list standard 2_139_256 permit 65000:2 0:139 0:256 route-map calculator permit 12038 match community 2_139_256 set community 0:35584 ip community-list standard 2_24_254 permit 65000:2 0:24 0:254 ip community-list standard 2_48_127 permit 65000:2 0:48 0:127 route-map calculator permit 12039 match community 2_24_254 2_48_127 set community 0:6096 ip community-list standard 2_5_165 permit 65000:2 0:5 0:165 ip community-list standard 2_11_75 permit 65000:2 0:11 0:75 ip community-list standard 2_15_55 permit 65000:2 0:15 0:55 ip community-list standard 2_25_33 permit 65000:2 0:25 0:33 route-map calculator permit 12040 match community 2_5_165 2_11_75 2_15_55 2_25_33 set community 0:825 ip community-list standard 2_33_242 permit 65000:2 0:33 0:242 ip community-list standard 2_66_121 permit 65000:2 0:66 0:121 route-map calculator permit 12041 match community 2_33_242 2_66_121 set community 0:7986 ip community-list standard 2_2_228 permit 65000:2 0:2 0:228 ip community-list standard 2_3_152 permit 65000:2 0:3 0:152 ip community-list standard 2_4_114 permit 65000:2 0:4 0:114 ip community-list standard 2_6_76 permit 65000:2 0:6 0:76 ip community-list standard 2_8_57 permit 65000:2 0:8 0:57 ip community-list standard 2_12_38 permit 65000:2 0:12 0:38 ip community-list standard 2_19_24 permit 65000:2 0:19 0:24 ip community-list standard 1_200_256 permit 65000:1 0:200 0:256 ip community-list standard 1_201_255 permit 65000:1 0:201 0:255 ip community-list standard 1_202_254 permit 65000:1 0:202 0:254 ip community-list standard 1_203_253 permit 65000:1 0:203 0:253 ip community-list standard 1_204_252 permit 65000:1 0:204 0:252 ip community-list standard 1_205_251 permit 65000:1 0:205 0:251 ip community-list standard 1_206_250 permit 65000:1 0:206 0:250 ip community-list standard 1_207_249 permit 65000:1 0:207 0:249 ip community-list standard 1_208_248 permit 65000:1 0:208 0:248 ip community-list standard 1_209_247 permit 65000:1 0:209 0:247 ip community-list standard 1_210_246 permit 65000:1 0:210 0:246 ip community-list standard 1_211_245 permit 65000:1 0:211 0:245 ip community-list standard 1_212_244 permit 65000:1 0:212 0:244 ip community-list standard 1_213_243 permit 65000:1 0:213 0:243 ip community-list standard 1_214_242 permit 65000:1 0:214 0:242 ip community-list standard 1_215_241 permit 65000:1 0:215 0:241 ip community-list standard 1_216_240 permit 65000:1 0:216 0:240 ip community-list standard 1_217_239 permit 65000:1 0:217 0:239 ip community-list standard 1_218_238 permit 65000:1 0:218 0:238 ip community-list standard 1_219_237 permit 65000:1 0:219 0:237 ip community-list standard 1_220_236 permit 65000:1 0:220 0:236 ip community-list standard 1_221_235 permit 65000:1 0:221 0:235 ip community-list standard 1_222_234 permit 65000:1 0:222 0:234 ip community-list standard 1_223_233 permit 65000:1 0:223 0:233 ip community-list standard 1_224_232 permit 65000:1 0:224 0:232 ip community-list standard 1_225_231 permit 65000:1 0:225 0:231 ip community-list standard 1_226_230 permit 65000:1 0:226 0:230 ip community-list standard 1_227_229 permit 65000:1 0:227 0:229 ip community-list standard 1_228_228 permit 65000:1 0:228 0:228 route-map calculator permit 12042 match community 2_2_228 2_3_152 2_4_114 2_6_76 2_8_57 set community 0:456 route-map calculator permit 12043 match community 2_12_38 2_19_24 1_200_256 1_201_255 1_202_254 set community 0:456 route-map calculator permit 12044 match community 1_203_253 1_204_252 1_205_251 1_206_250 1_207_249 set community 0:456 route-map calculator permit 12045 match community 1_208_248 1_209_247 1_210_246 1_211_245 1_212_244 set community 0:456 route-map calculator permit 12046 match community 1_213_243 1_214_242 1_215_241 1_216_240 1_217_239 set community 0:456 route-map calculator permit 12047 match community 1_218_238 1_219_237 1_220_236 1_221_235 1_222_234 set community 0:456 route-map calculator permit 12048 match community 1_223_233 1_224_232 1_225_231 1_226_230 1_227_229 set community 0:456 route-map calculator permit 12049 match community 1_228_228 set community 0:456 ip community-list standard 2_138_227 permit 65000:2 0:138 0:227 route-map calculator permit 12050 match community 2_138_227 set community 0:31326 ip community-list standard 2_169_189 permit 65000:2 0:169 0:189 route-map calculator permit 12051 match community 2_169_189 set community 0:31941 ip community-list standard 2_99_121 permit 65000:2 0:99 0:121 route-map calculator permit 12052 match community 2_99_121 set community 0:11979 ip community-list standard 2_79_229 permit 65000:2 0:79 0:229 route-map calculator permit 12053 match community 2_79_229 set community 0:18091 ip community-list standard 2_65_178 permit 65000:2 0:65 0:178 ip community-list standard 2_89_130 permit 65000:2 0:89 0:130 route-map calculator permit 12054 match community 2_65_178 2_89_130 set community 0:11570 ip community-list standard 2_69_214 permit 65000:2 0:69 0:214 ip community-list standard 2_107_138 permit 65000:2 0:107 0:138 route-map calculator permit 12055 match community 2_69_214 2_107_138 set community 0:14766 ip community-list standard 1_1_235 permit 65000:1 0:1 0:235 ip community-list standard 2_1_236 permit 65000:2 0:1 0:236 ip community-list standard 2_2_118 permit 65000:2 0:2 0:118 ip community-list standard 1_2_234 permit 65000:1 0:2 0:234 ip community-list standard 1_3_233 permit 65000:1 0:3 0:233 ip community-list standard 2_4_59 permit 65000:2 0:4 0:59 ip community-list standard 1_4_232 permit 65000:1 0:4 0:232 ip community-list standard 1_5_231 permit 65000:1 0:5 0:231 ip community-list standard 1_6_230 permit 65000:1 0:6 0:230 ip community-list standard 1_7_229 permit 65000:1 0:7 0:229 ip community-list standard 1_8_228 permit 65000:1 0:8 0:228 ip community-list standard 1_9_227 permit 65000:1 0:9 0:227 ip community-list standard 1_10_226 permit 65000:1 0:10 0:226 ip community-list standard 1_11_225 permit 65000:1 0:11 0:225 ip community-list standard 1_12_224 permit 65000:1 0:12 0:224 ip community-list standard 1_13_223 permit 65000:1 0:13 0:223 ip community-list standard 1_14_222 permit 65000:1 0:14 0:222 ip community-list standard 1_15_221 permit 65000:1 0:15 0:221 ip community-list standard 1_16_220 permit 65000:1 0:16 0:220 ip community-list standard 1_17_219 permit 65000:1 0:17 0:219 ip community-list standard 1_18_218 permit 65000:1 0:18 0:218 ip community-list standard 1_19_217 permit 65000:1 0:19 0:217 ip community-list standard 1_20_216 permit 65000:1 0:20 0:216 ip community-list standard 1_21_215 permit 65000:1 0:21 0:215 ip community-list standard 1_22_214 permit 65000:1 0:22 0:214 ip community-list standard 1_23_213 permit 65000:1 0:23 0:213 ip community-list standard 1_24_212 permit 65000:1 0:24 0:212 ip community-list standard 1_25_211 permit 65000:1 0:25 0:211 ip community-list standard 1_26_210 permit 65000:1 0:26 0:210 ip community-list standard 1_27_209 permit 65000:1 0:27 0:209 ip community-list standard 1_28_208 permit 65000:1 0:28 0:208 ip community-list standard 1_29_207 permit 65000:1 0:29 0:207 ip community-list standard 1_30_206 permit 65000:1 0:30 0:206 ip community-list standard 1_31_205 permit 65000:1 0:31 0:205 ip community-list standard 1_32_204 permit 65000:1 0:32 0:204 ip community-list standard 1_33_203 permit 65000:1 0:33 0:203 ip community-list standard 1_34_202 permit 65000:1 0:34 0:202 ip community-list standard 1_35_201 permit 65000:1 0:35 0:201 ip community-list standard 1_36_200 permit 65000:1 0:36 0:200 ip community-list standard 1_37_199 permit 65000:1 0:37 0:199 ip community-list standard 1_38_198 permit 65000:1 0:38 0:198 ip community-list standard 1_39_197 permit 65000:1 0:39 0:197 ip community-list standard 1_40_196 permit 65000:1 0:40 0:196 ip community-list standard 1_41_195 permit 65000:1 0:41 0:195 ip community-list standard 1_42_194 permit 65000:1 0:42 0:194 ip community-list standard 1_43_193 permit 65000:1 0:43 0:193 ip community-list standard 1_44_192 permit 65000:1 0:44 0:192 ip community-list standard 1_45_191 permit 65000:1 0:45 0:191 ip community-list standard 1_46_190 permit 65000:1 0:46 0:190 ip community-list standard 1_47_189 permit 65000:1 0:47 0:189 ip community-list standard 1_48_188 permit 65000:1 0:48 0:188 ip community-list standard 1_49_187 permit 65000:1 0:49 0:187 ip community-list standard 1_50_186 permit 65000:1 0:50 0:186 ip community-list standard 1_51_185 permit 65000:1 0:51 0:185 ip community-list standard 1_52_184 permit 65000:1 0:52 0:184 ip community-list standard 1_53_183 permit 65000:1 0:53 0:183 ip community-list standard 1_54_182 permit 65000:1 0:54 0:182 ip community-list standard 1_55_181 permit 65000:1 0:55 0:181 ip community-list standard 1_56_180 permit 65000:1 0:56 0:180 ip community-list standard 1_57_179 permit 65000:1 0:57 0:179 ip community-list standard 1_58_178 permit 65000:1 0:58 0:178 ip community-list standard 1_59_177 permit 65000:1 0:59 0:177 ip community-list standard 1_60_176 permit 65000:1 0:60 0:176 ip community-list standard 1_61_175 permit 65000:1 0:61 0:175 ip community-list standard 1_62_174 permit 65000:1 0:62 0:174 ip community-list standard 1_63_173 permit 65000:1 0:63 0:173 ip community-list standard 1_64_172 permit 65000:1 0:64 0:172 ip community-list standard 1_65_171 permit 65000:1 0:65 0:171 ip community-list standard 1_66_170 permit 65000:1 0:66 0:170 ip community-list standard 1_67_169 permit 65000:1 0:67 0:169 ip community-list standard 1_68_168 permit 65000:1 0:68 0:168 ip community-list standard 1_69_167 permit 65000:1 0:69 0:167 ip community-list standard 1_70_166 permit 65000:1 0:70 0:166 ip community-list standard 1_71_165 permit 65000:1 0:71 0:165 ip community-list standard 1_72_164 permit 65000:1 0:72 0:164 ip community-list standard 1_73_163 permit 65000:1 0:73 0:163 ip community-list standard 1_74_162 permit 65000:1 0:74 0:162 ip community-list standard 1_75_161 permit 65000:1 0:75 0:161 ip community-list standard 1_76_160 permit 65000:1 0:76 0:160 ip community-list standard 1_77_159 permit 65000:1 0:77 0:159 ip community-list standard 1_78_158 permit 65000:1 0:78 0:158 ip community-list standard 1_79_157 permit 65000:1 0:79 0:157 ip community-list standard 1_80_156 permit 65000:1 0:80 0:156 ip community-list standard 1_81_155 permit 65000:1 0:81 0:155 ip community-list standard 1_82_154 permit 65000:1 0:82 0:154 ip community-list standard 1_83_153 permit 65000:1 0:83 0:153 ip community-list standard 1_84_152 permit 65000:1 0:84 0:152 ip community-list standard 1_85_151 permit 65000:1 0:85 0:151 ip community-list standard 1_86_150 permit 65000:1 0:86 0:150 ip community-list standard 1_87_149 permit 65000:1 0:87 0:149 ip community-list standard 1_88_148 permit 65000:1 0:88 0:148 ip community-list standard 1_89_147 permit 65000:1 0:89 0:147 ip community-list standard 1_90_146 permit 65000:1 0:90 0:146 ip community-list standard 1_91_145 permit 65000:1 0:91 0:145 ip community-list standard 1_92_144 permit 65000:1 0:92 0:144 ip community-list standard 1_93_143 permit 65000:1 0:93 0:143 ip community-list standard 1_94_142 permit 65000:1 0:94 0:142 ip community-list standard 1_95_141 permit 65000:1 0:95 0:141 ip community-list standard 1_96_140 permit 65000:1 0:96 0:140 ip community-list standard 1_97_139 permit 65000:1 0:97 0:139 ip community-list standard 1_98_138 permit 65000:1 0:98 0:138 ip community-list standard 1_99_137 permit 65000:1 0:99 0:137 ip community-list standard 1_100_136 permit 65000:1 0:100 0:136 ip community-list standard 1_101_135 permit 65000:1 0:101 0:135 ip community-list standard 1_102_134 permit 65000:1 0:102 0:134 ip community-list standard 1_103_133 permit 65000:1 0:103 0:133 ip community-list standard 1_104_132 permit 65000:1 0:104 0:132 ip community-list standard 1_105_131 permit 65000:1 0:105 0:131 ip community-list standard 1_106_130 permit 65000:1 0:106 0:130 ip community-list standard 1_107_129 permit 65000:1 0:107 0:129 ip community-list standard 1_108_128 permit 65000:1 0:108 0:128 ip community-list standard 1_109_127 permit 65000:1 0:109 0:127 ip community-list standard 1_110_126 permit 65000:1 0:110 0:126 ip community-list standard 1_111_125 permit 65000:1 0:111 0:125 ip community-list standard 1_112_124 permit 65000:1 0:112 0:124 ip community-list standard 1_113_123 permit 65000:1 0:113 0:123 ip community-list standard 1_114_122 permit 65000:1 0:114 0:122 ip community-list standard 1_115_121 permit 65000:1 0:115 0:121 ip community-list standard 1_116_120 permit 65000:1 0:116 0:120 ip community-list standard 1_117_119 permit 65000:1 0:117 0:119 ip community-list standard 1_118_118 permit 65000:1 0:118 0:118 ip community-list expanded c236 permit 1 ^65000:4_0:236_0:1$ ip community-list expanded c236 permit 2 ^65000:3_0:237_0:1$ ip community-list expanded c236 permit 3 ^65000:3_0:238_0:2$ ip community-list expanded c236 permit 4 ^65000:3_0:239_0:3$ ip community-list expanded c236 permit 5 ^65000:3_0:240_0:4$ ip community-list expanded c236 permit 6 ^65000:3_0:241_0:5$ ip community-list expanded c236 permit 7 ^65000:3_0:242_0:6$ ip community-list expanded c236 permit 8 ^65000:3_0:243_0:7$ ip community-list expanded c236 permit 9 ^65000:3_0:244_0:8$ ip community-list expanded c236 permit 10 ^65000:3_0:245_0:9$ ip community-list expanded c236 permit 11 ^65000:3_0:246_0:10$ ip community-list expanded c236 permit 12 ^65000:3_0:247_0:11$ ip community-list expanded c236 permit 13 ^65000:3_0:248_0:12$ ip community-list expanded c236 permit 14 ^65000:3_0:249_0:13$ ip community-list expanded c236 permit 15 ^65000:3_0:250_0:14$ ip community-list expanded c236 permit 16 ^65000:3_0:251_0:15$ ip community-list expanded c236 permit 17 ^65000:3_0:252_0:16$ ip community-list expanded c236 permit 18 ^65000:3_0:253_0:17$ ip community-list expanded c236 permit 19 ^65000:3_0:254_0:18$ ip community-list expanded c236 permit 20 ^65000:3_0:255_0:19$ ip community-list expanded c236 permit 21 ^65000:3_0:256_0:20$ route-map calculator permit 12056 match community 1_1_235 2_1_236 2_2_118 1_2_234 1_3_233 set community 0:236 route-map calculator permit 12057 match community 2_4_59 1_4_232 1_5_231 1_6_230 1_7_229 set community 0:236 route-map calculator permit 12058 match community 1_8_228 1_9_227 1_10_226 1_11_225 1_12_224 set community 0:236 route-map calculator permit 12059 match community 1_13_223 1_14_222 1_15_221 1_16_220 1_17_219 set community 0:236 route-map calculator permit 12060 match community 1_18_218 1_19_217 1_20_216 1_21_215 1_22_214 set community 0:236 route-map calculator permit 12061 match community 1_23_213 1_24_212 1_25_211 1_26_210 1_27_209 set community 0:236 route-map calculator permit 12062 match community 1_28_208 1_29_207 1_30_206 1_31_205 1_32_204 set community 0:236 route-map calculator permit 12063 match community 1_33_203 1_34_202 1_35_201 1_36_200 1_37_199 set community 0:236 route-map calculator permit 12064 match community 1_38_198 1_39_197 1_40_196 1_41_195 1_42_194 set community 0:236 route-map calculator permit 12065 match community 1_43_193 1_44_192 1_45_191 1_46_190 1_47_189 set community 0:236 route-map calculator permit 12066 match community 1_48_188 1_49_187 1_50_186 1_51_185 1_52_184 set community 0:236 route-map calculator permit 12067 match community 1_53_183 1_54_182 1_55_181 1_56_180 1_57_179 set community 0:236 route-map calculator permit 12068 match community 1_58_178 1_59_177 1_60_176 1_61_175 1_62_174 set community 0:236 route-map calculator permit 12069 match community 1_63_173 1_64_172 1_65_171 1_66_170 1_67_169 set community 0:236 route-map calculator permit 12070 match community 1_68_168 1_69_167 1_70_166 1_71_165 1_72_164 set community 0:236 route-map calculator permit 12071 match community 1_73_163 1_74_162 1_75_161 1_76_160 1_77_159 set community 0:236 route-map calculator permit 12072 match community 1_78_158 1_79_157 1_80_156 1_81_155 1_82_154 set community 0:236 route-map calculator permit 12073 match community 1_83_153 1_84_152 1_85_151 1_86_150 1_87_149 set community 0:236 route-map calculator permit 12074 match community 1_88_148 1_89_147 1_90_146 1_91_145 1_92_144 set community 0:236 route-map calculator permit 12075 match community 1_93_143 1_94_142 1_95_141 1_96_140 1_97_139 set community 0:236 route-map calculator permit 12076 match community 1_98_138 1_99_137 1_100_136 1_101_135 1_102_134 set community 0:236 route-map calculator permit 12077 match community 1_103_133 1_104_132 1_105_131 1_106_130 1_107_129 set community 0:236 route-map calculator permit 12078 match community 1_108_128 1_109_127 1_110_126 1_111_125 1_112_124 set community 0:236 route-map calculator permit 12079 match community 1_113_123 1_114_122 1_115_121 1_116_120 1_117_119 set community 0:236 route-map calculator permit 12080 match community 1_118_118 c4_236_1 c3_237_1 c3_238_2 c3_239_3 set community 0:236 route-map calculator permit 12081 match community c3_240_4 c3_241_5 c3_242_6 c3_243_7 c3_244_8 set community 0:236 route-map calculator permit 12082 match community c3_245_9 c3_246_10 c3_247_11 c3_248_12 c3_249_13 set community 0:236 route-map calculator permit 12083 match community c3_250_14 c3_251_15 c3_252_16 c3_253_17 c3_254_18 set community 0:236 route-map calculator permit 12084 match community c3_255_19 c3_256_20 set community 0:236 ip community-list standard 2_26_219 permit 65000:2 0:26 0:219 ip community-list standard 2_39_146 permit 65000:2 0:39 0:146 ip community-list standard 2_73_78 permit 65000:2 0:73 0:78 route-map calculator permit 12085 match community 2_26_219 2_39_146 2_73_78 set community 0:5694 ip community-list standard 2_91_111 permit 65000:2 0:91 0:111 route-map calculator permit 12086 match community 2_91_111 set community 0:10101 ip community-list standard 2_24_239 permit 65000:2 0:24 0:239 route-map calculator permit 12087 match community 2_24_239 set community 0:5736 ip community-list standard 2_72_256 permit 65000:2 0:72 0:256 ip community-list standard 2_96_192 permit 65000:2 0:96 0:192 ip community-list standard 2_128_144 permit 65000:2 0:128 0:144 route-map calculator permit 12088 match community 2_72_256 2_96_192 2_128_144 set community 0:18432 ip community-list standard 2_164_229 permit 65000:2 0:164 0:229 route-map calculator permit 12089 match community 2_164_229 set community 0:37556 ip community-list standard 2_167_205 permit 65000:2 0:167 0:205 route-map calculator permit 12090 match community 2_167_205 set community 0:34235 ip community-list standard 2_53_121 permit 65000:2 0:53 0:121 route-map calculator permit 12091 match community 2_53_121 set community 0:6413 ip community-list standard 2_91_200 permit 65000:2 0:91 0:200 ip community-list standard 2_100_182 permit 65000:2 0:100 0:182 ip community-list standard 2_104_175 permit 65000:2 0:104 0:175 ip community-list standard 2_130_140 permit 65000:2 0:130 0:140 route-map calculator permit 12092 match community 2_91_200 2_100_182 2_104_175 2_130_140 set community 0:18200 ip community-list standard 2_74_228 permit 65000:2 0:74 0:228 ip community-list standard 2_76_222 permit 65000:2 0:76 0:222 ip community-list standard 2_111_152 permit 65000:2 0:111 0:152 ip community-list standard 2_114_148 permit 65000:2 0:114 0:148 route-map calculator permit 12093 match community 2_74_228 2_76_222 2_111_152 2_114_148 set community 0:16872 ip community-list standard 2_165_247 permit 65000:2 0:165 0:247 ip community-list standard 2_195_209 permit 65000:2 0:195 0:209 route-map calculator permit 12094 match community 2_165_247 2_195_209 set community 0:40755 ip community-list standard 2_184_243 permit 65000:2 0:184 0:243 ip community-list standard 2_207_216 permit 65000:2 0:207 0:216 route-map calculator permit 12095 match community 2_184_243 2_207_216 set community 0:44712 ip community-list standard 2_101_247 permit 65000:2 0:101 0:247 route-map calculator permit 12096 match community 2_101_247 set community 0:24947 ip community-list standard 2_163_249 permit 65000:2 0:163 0:249 route-map calculator permit 12097 match community 2_163_249 set community 0:40587 ip community-list standard 2_48_191 permit 65000:2 0:48 0:191 route-map calculator permit 12098 match community 2_48_191 set community 0:9168 ip community-list standard 2_194_253 permit 65000:2 0:194 0:253 route-map calculator permit 12099 match community 2_194_253 set community 0:49082 ip community-list standard 2_163_194 permit 65000:2 0:163 0:194 route-map calculator permit 12100 match community 2_163_194 set community 0:31622 ip community-list standard 2_19_86 permit 65000:2 0:19 0:86 ip community-list standard 2_38_43 permit 65000:2 0:38 0:43 route-map calculator permit 12101 match community 2_19_86 2_38_43 set community 0:1634 ip community-list standard 2_3_184 permit 65000:2 0:3 0:184 ip community-list standard 2_4_138 permit 65000:2 0:4 0:138 ip community-list standard 2_6_92 permit 65000:2 0:6 0:92 ip community-list standard 2_8_69 permit 65000:2 0:8 0:69 ip community-list standard 2_12_46 permit 65000:2 0:12 0:46 ip community-list standard 2_23_24 permit 65000:2 0:23 0:24 route-map calculator permit 12102 match community 2_3_184 2_4_138 2_6_92 2_8_69 2_12_46 set community 0:552 route-map calculator permit 12103 match community 2_23_24 set community 0:552 ip community-list standard 2_17_250 permit 65000:2 0:17 0:250 ip community-list standard 2_25_170 permit 65000:2 0:25 0:170 ip community-list standard 2_34_125 permit 65000:2 0:34 0:125 ip community-list standard 2_50_85 permit 65000:2 0:50 0:85 route-map calculator permit 12104 match community 2_17_250 2_25_170 2_34_125 2_50_85 set community 0:4250 ip community-list standard 2_115_240 permit 65000:2 0:115 0:240 ip community-list standard 2_120_230 permit 65000:2 0:120 0:230 ip community-list standard 2_138_200 permit 65000:2 0:138 0:200 ip community-list standard 2_150_184 permit 65000:2 0:150 0:184 route-map calculator permit 12105 match community 2_115_240 2_120_230 2_138_200 2_150_184 set community 0:27600 ip community-list standard 2_149_209 permit 65000:2 0:149 0:209 route-map calculator permit 12106 match community 2_149_209 set community 0:31141 ip community-list standard 2_181_185 permit 65000:2 0:181 0:185 route-map calculator permit 12107 match community 2_181_185 set community 0:33485 ip community-list standard 2_96_181 permit 65000:2 0:96 0:181 route-map calculator permit 12108 match community 2_96_181 set community 0:17376 ip community-list standard 2_10_240 permit 65000:2 0:10 0:240 ip community-list standard 2_12_200 permit 65000:2 0:12 0:200 ip community-list standard 2_15_160 permit 65000:2 0:15 0:160 ip community-list standard 2_16_150 permit 65000:2 0:16 0:150 ip community-list standard 2_20_120 permit 65000:2 0:20 0:120 ip community-list standard 2_24_100 permit 65000:2 0:24 0:100 ip community-list standard 2_25_96 permit 65000:2 0:25 0:96 ip community-list standard 2_30_80 permit 65000:2 0:30 0:80 ip community-list standard 2_32_75 permit 65000:2 0:32 0:75 ip community-list standard 2_40_60 permit 65000:2 0:40 0:60 ip community-list standard 2_48_50 permit 65000:2 0:48 0:50 route-map calculator permit 12109 match community 2_10_240 2_12_200 2_15_160 2_16_150 2_20_120 set community 0:2400 route-map calculator permit 12110 match community 2_24_100 2_25_96 2_30_80 2_32_75 2_40_60 set community 0:2400 route-map calculator permit 12111 match community 2_48_50 set community 0:2400 ip community-list standard 2_32_235 permit 65000:2 0:32 0:235 ip community-list standard 2_40_188 permit 65000:2 0:40 0:188 ip community-list standard 2_47_160 permit 65000:2 0:47 0:160 ip community-list standard 2_80_94 permit 65000:2 0:80 0:94 route-map calculator permit 12112 match community 2_32_235 2_40_188 2_47_160 2_80_94 set community 0:7520 ip community-list standard 2_129_189 permit 65000:2 0:129 0:189 route-map calculator permit 12113 match community 2_129_189 set community 0:24381 ip community-list standard 2_34_172 permit 65000:2 0:34 0:172 ip community-list standard 2_43_136 permit 65000:2 0:43 0:136 ip community-list standard 2_68_86 permit 65000:2 0:68 0:86 route-map calculator permit 12114 match community 2_34_172 2_43_136 2_68_86 set community 0:5848 ip community-list standard 2_185_207 permit 65000:2 0:185 0:207 route-map calculator permit 12115 match community 2_185_207 set community 0:38295 ip community-list standard 2_61_239 permit 65000:2 0:61 0:239 route-map calculator permit 12116 match community 2_61_239 set community 0:14579 ip community-list standard 2_28_199 permit 65000:2 0:28 0:199 route-map calculator permit 12117 match community 2_28_199 set community 0:5572 ip community-list standard 2_141_245 permit 65000:2 0:141 0:245 ip community-list standard 2_147_235 permit 65000:2 0:147 0:235 route-map calculator permit 12118 match community 2_141_245 2_147_235 set community 0:34545 ip community-list standard 2_173_177 permit 65000:2 0:173 0:177 route-map calculator permit 12119 match community 2_173_177 set community 0:30621 ip community-list standard 2_186_187 permit 65000:2 0:186 0:187 route-map calculator permit 12120 match community 2_186_187 set community 0:34782 ip community-list standard 2_51_204 permit 65000:2 0:51 0:204 ip community-list standard 2_68_153 permit 65000:2 0:68 0:153 ip community-list standard 2_102_102 permit 65000:2 0:102 0:102 route-map calculator permit 12121 match community 2_51_204 2_68_153 2_102_102 set community 0:10404 ip community-list standard 2_123_173 permit 65000:2 0:123 0:173 route-map calculator permit 12122 match community 2_123_173 set community 0:21279 ip community-list standard 2_190_193 permit 65000:2 0:190 0:193 route-map calculator permit 12123 match community 2_190_193 set community 0:36670 ip community-list standard 2_19_95 permit 65000:2 0:19 0:95 route-map calculator permit 12124 match community 2_19_95 set community 0:1805 ip community-list standard 2_115_179 permit 65000:2 0:115 0:179 route-map calculator permit 12125 match community 2_115_179 set community 0:20585 ip community-list standard 2_111_169 permit 65000:2 0:111 0:169 route-map calculator permit 12126 match community 2_111_169 set community 0:18759 ip community-list standard 2_70_220 permit 65000:2 0:70 0:220 ip community-list standard 2_77_200 permit 65000:2 0:77 0:200 ip community-list standard 2_88_175 permit 65000:2 0:88 0:175 ip community-list standard 2_100_154 permit 65000:2 0:100 0:154 ip community-list standard 2_110_140 permit 65000:2 0:110 0:140 route-map calculator permit 12127 match community 2_70_220 2_77_200 2_88_175 2_100_154 2_110_140 set community 0:15400 ip community-list standard 2_35_218 permit 65000:2 0:35 0:218 ip community-list standard 2_70_109 permit 65000:2 0:70 0:109 route-map calculator permit 12128 match community 2_35_218 2_70_109 set community 0:7630 ip community-list standard 2_53_106 permit 65000:2 0:53 0:106 route-map calculator permit 12129 match community 2_53_106 set community 0:5618 ip community-list standard 2_122_219 permit 65000:2 0:122 0:219 ip community-list standard 2_146_183 permit 65000:2 0:146 0:183 route-map calculator permit 12130 match community 2_122_219 2_146_183 set community 0:26718 ip community-list standard 2_3_99 permit 65000:2 0:3 0:99 ip community-list standard 2_9_33 permit 65000:2 0:9 0:33 ip community-list standard 2_11_27 permit 65000:2 0:11 0:27 ip community-list standard 1_41_256 permit 65000:1 0:41 0:256 ip community-list standard 1_42_255 permit 65000:1 0:42 0:255 ip community-list standard 1_43_254 permit 65000:1 0:43 0:254 ip community-list standard 1_44_253 permit 65000:1 0:44 0:253 ip community-list standard 1_45_252 permit 65000:1 0:45 0:252 ip community-list standard 1_46_251 permit 65000:1 0:46 0:251 ip community-list standard 1_47_250 permit 65000:1 0:47 0:250 ip community-list standard 1_48_249 permit 65000:1 0:48 0:249 ip community-list standard 1_49_248 permit 65000:1 0:49 0:248 ip community-list standard 1_50_247 permit 65000:1 0:50 0:247 ip community-list standard 1_51_246 permit 65000:1 0:51 0:246 ip community-list standard 1_52_245 permit 65000:1 0:52 0:245 ip community-list standard 1_53_244 permit 65000:1 0:53 0:244 ip community-list standard 1_54_243 permit 65000:1 0:54 0:243 ip community-list standard 1_55_242 permit 65000:1 0:55 0:242 ip community-list standard 1_56_241 permit 65000:1 0:56 0:241 ip community-list standard 1_57_240 permit 65000:1 0:57 0:240 ip community-list standard 1_58_239 permit 65000:1 0:58 0:239 ip community-list standard 1_59_238 permit 65000:1 0:59 0:238 ip community-list standard 1_60_237 permit 65000:1 0:60 0:237 ip community-list standard 1_61_236 permit 65000:1 0:61 0:236 ip community-list standard 1_62_235 permit 65000:1 0:62 0:235 ip community-list standard 1_63_234 permit 65000:1 0:63 0:234 ip community-list standard 1_64_233 permit 65000:1 0:64 0:233 ip community-list standard 1_65_232 permit 65000:1 0:65 0:232 ip community-list standard 1_66_231 permit 65000:1 0:66 0:231 ip community-list standard 1_67_230 permit 65000:1 0:67 0:230 ip community-list standard 1_68_229 permit 65000:1 0:68 0:229 ip community-list standard 1_69_228 permit 65000:1 0:69 0:228 ip community-list standard 1_70_227 permit 65000:1 0:70 0:227 ip community-list standard 1_71_226 permit 65000:1 0:71 0:226 ip community-list standard 1_72_225 permit 65000:1 0:72 0:225 ip community-list standard 1_73_224 permit 65000:1 0:73 0:224 ip community-list standard 1_74_223 permit 65000:1 0:74 0:223 ip community-list standard 1_75_222 permit 65000:1 0:75 0:222 ip community-list standard 1_76_221 permit 65000:1 0:76 0:221 ip community-list standard 1_77_220 permit 65000:1 0:77 0:220 ip community-list standard 1_78_219 permit 65000:1 0:78 0:219 ip community-list standard 1_79_218 permit 65000:1 0:79 0:218 ip community-list standard 1_80_217 permit 65000:1 0:80 0:217 ip community-list standard 1_81_216 permit 65000:1 0:81 0:216 ip community-list standard 1_82_215 permit 65000:1 0:82 0:215 ip community-list standard 1_83_214 permit 65000:1 0:83 0:214 ip community-list standard 1_84_213 permit 65000:1 0:84 0:213 ip community-list standard 1_85_212 permit 65000:1 0:85 0:212 ip community-list standard 1_86_211 permit 65000:1 0:86 0:211 ip community-list standard 1_87_210 permit 65000:1 0:87 0:210 ip community-list standard 1_88_209 permit 65000:1 0:88 0:209 ip community-list standard 1_89_208 permit 65000:1 0:89 0:208 ip community-list standard 1_90_207 permit 65000:1 0:90 0:207 ip community-list standard 1_91_206 permit 65000:1 0:91 0:206 ip community-list standard 1_92_205 permit 65000:1 0:92 0:205 ip community-list standard 1_93_204 permit 65000:1 0:93 0:204 ip community-list standard 1_94_203 permit 65000:1 0:94 0:203 ip community-list standard 1_95_202 permit 65000:1 0:95 0:202 ip community-list standard 1_96_201 permit 65000:1 0:96 0:201 ip community-list standard 1_97_200 permit 65000:1 0:97 0:200 ip community-list standard 1_98_199 permit 65000:1 0:98 0:199 ip community-list standard 1_99_198 permit 65000:1 0:99 0:198 ip community-list standard 1_100_197 permit 65000:1 0:100 0:197 ip community-list standard 1_101_196 permit 65000:1 0:101 0:196 ip community-list standard 1_102_195 permit 65000:1 0:102 0:195 ip community-list standard 1_103_194 permit 65000:1 0:103 0:194 ip community-list standard 1_104_193 permit 65000:1 0:104 0:193 ip community-list standard 1_105_192 permit 65000:1 0:105 0:192 ip community-list standard 1_106_191 permit 65000:1 0:106 0:191 ip community-list standard 1_107_190 permit 65000:1 0:107 0:190 ip community-list standard 1_108_189 permit 65000:1 0:108 0:189 ip community-list standard 1_109_188 permit 65000:1 0:109 0:188 ip community-list standard 1_110_187 permit 65000:1 0:110 0:187 ip community-list standard 1_111_186 permit 65000:1 0:111 0:186 ip community-list standard 1_112_185 permit 65000:1 0:112 0:185 ip community-list standard 1_113_184 permit 65000:1 0:113 0:184 ip community-list standard 1_114_183 permit 65000:1 0:114 0:183 ip community-list standard 1_115_182 permit 65000:1 0:115 0:182 ip community-list standard 1_116_181 permit 65000:1 0:116 0:181 ip community-list standard 1_117_180 permit 65000:1 0:117 0:180 ip community-list standard 1_118_179 permit 65000:1 0:118 0:179 ip community-list standard 1_119_178 permit 65000:1 0:119 0:178 ip community-list standard 1_120_177 permit 65000:1 0:120 0:177 ip community-list standard 1_121_176 permit 65000:1 0:121 0:176 ip community-list standard 1_122_175 permit 65000:1 0:122 0:175 ip community-list standard 1_123_174 permit 65000:1 0:123 0:174 ip community-list standard 1_124_173 permit 65000:1 0:124 0:173 ip community-list standard 1_125_172 permit 65000:1 0:125 0:172 ip community-list standard 1_126_171 permit 65000:1 0:126 0:171 ip community-list standard 1_127_170 permit 65000:1 0:127 0:170 ip community-list standard 1_128_169 permit 65000:1 0:128 0:169 ip community-list standard 1_129_168 permit 65000:1 0:129 0:168 ip community-list standard 1_130_167 permit 65000:1 0:130 0:167 ip community-list standard 1_131_166 permit 65000:1 0:131 0:166 ip community-list standard 1_132_165 permit 65000:1 0:132 0:165 ip community-list standard 1_133_164 permit 65000:1 0:133 0:164 ip community-list standard 1_134_163 permit 65000:1 0:134 0:163 ip community-list standard 1_135_162 permit 65000:1 0:135 0:162 ip community-list standard 1_136_161 permit 65000:1 0:136 0:161 ip community-list standard 1_137_160 permit 65000:1 0:137 0:160 ip community-list standard 1_138_159 permit 65000:1 0:138 0:159 ip community-list standard 1_139_158 permit 65000:1 0:139 0:158 ip community-list standard 1_140_157 permit 65000:1 0:140 0:157 ip community-list standard 1_141_156 permit 65000:1 0:141 0:156 ip community-list standard 1_142_155 permit 65000:1 0:142 0:155 ip community-list standard 1_143_154 permit 65000:1 0:143 0:154 ip community-list standard 1_144_153 permit 65000:1 0:144 0:153 ip community-list standard 1_145_152 permit 65000:1 0:145 0:152 ip community-list standard 1_146_151 permit 65000:1 0:146 0:151 ip community-list standard 1_147_150 permit 65000:1 0:147 0:150 ip community-list standard 1_148_149 permit 65000:1 0:148 0:149 route-map calculator permit 12131 match community 2_3_99 2_9_33 2_11_27 1_41_256 1_42_255 set community 0:297 route-map calculator permit 12132 match community 1_43_254 1_44_253 1_45_252 1_46_251 1_47_250 set community 0:297 route-map calculator permit 12133 match community 1_48_249 1_49_248 1_50_247 1_51_246 1_52_245 set community 0:297 route-map calculator permit 12134 match community 1_53_244 1_54_243 1_55_242 1_56_241 1_57_240 set community 0:297 route-map calculator permit 12135 match community 1_58_239 1_59_238 1_60_237 1_61_236 1_62_235 set community 0:297 route-map calculator permit 12136 match community 1_63_234 1_64_233 1_65_232 1_66_231 1_67_230 set community 0:297 route-map calculator permit 12137 match community 1_68_229 1_69_228 1_70_227 1_71_226 1_72_225 set community 0:297 route-map calculator permit 12138 match community 1_73_224 1_74_223 1_75_222 1_76_221 1_77_220 set community 0:297 route-map calculator permit 12139 match community 1_78_219 1_79_218 1_80_217 1_81_216 1_82_215 set community 0:297 route-map calculator permit 12140 match community 1_83_214 1_84_213 1_85_212 1_86_211 1_87_210 set community 0:297 route-map calculator permit 12141 match community 1_88_209 1_89_208 1_90_207 1_91_206 1_92_205 set community 0:297 route-map calculator permit 12142 match community 1_93_204 1_94_203 1_95_202 1_96_201 1_97_200 set community 0:297 route-map calculator permit 12143 match community 1_98_199 1_99_198 1_100_197 1_101_196 1_102_195 set community 0:297 route-map calculator permit 12144 match community 1_103_194 1_104_193 1_105_192 1_106_191 1_107_190 set community 0:297 route-map calculator permit 12145 match community 1_108_189 1_109_188 1_110_187 1_111_186 1_112_185 set community 0:297 route-map calculator permit 12146 match community 1_113_184 1_114_183 1_115_182 1_116_181 1_117_180 set community 0:297 route-map calculator permit 12147 match community 1_118_179 1_119_178 1_120_177 1_121_176 1_122_175 set community 0:297 route-map calculator permit 12148 match community 1_123_174 1_124_173 1_125_172 1_126_171 1_127_170 set community 0:297 route-map calculator permit 12149 match community 1_128_169 1_129_168 1_130_167 1_131_166 1_132_165 set community 0:297 route-map calculator permit 12150 match community 1_133_164 1_134_163 1_135_162 1_136_161 1_137_160 set community 0:297 route-map calculator permit 12151 match community 1_138_159 1_139_158 1_140_157 1_141_156 1_142_155 set community 0:297 route-map calculator permit 12152 match community 1_143_154 1_144_153 1_145_152 1_146_151 1_147_150 set community 0:297 route-map calculator permit 12153 match community 1_148_149 set community 0:297 ip community-list standard 2_130_230 permit 65000:2 0:130 0:230 route-map calculator permit 12154 match community 2_130_230 set community 0:29900 ip community-list standard 2_164_184 permit 65000:2 0:164 0:184 route-map calculator permit 12155 match community 2_164_184 set community 0:30176 ip community-list standard 2_23_163 permit 65000:2 0:23 0:163 route-map calculator permit 12156 match community 2_23_163 set community 0:3749 ip community-list standard 2_60_194 permit 65000:2 0:60 0:194 ip community-list standard 2_97_120 permit 65000:2 0:97 0:120 route-map calculator permit 12157 match community 2_60_194 2_97_120 set community 0:11640 ip community-list standard 2_13_89 permit 65000:2 0:13 0:89 route-map calculator permit 12158 match community 2_13_89 set community 0:1157 ip community-list standard 2_126_139 permit 65000:2 0:126 0:139 route-map calculator permit 12159 match community 2_126_139 set community 0:17514 ip community-list standard 2_106_209 permit 65000:2 0:106 0:209 route-map calculator permit 12160 match community 2_106_209 set community 0:22154 ip community-list standard 2_52_203 permit 65000:2 0:52 0:203 ip community-list standard 2_58_182 permit 65000:2 0:58 0:182 ip community-list standard 2_91_116 permit 65000:2 0:91 0:116 route-map calculator permit 12161 match community 2_52_203 2_58_182 2_91_116 set community 0:10556 ip community-list standard 2_103_220 permit 65000:2 0:103 0:220 ip community-list standard 2_110_206 permit 65000:2 0:110 0:206 route-map calculator permit 12162 match community 2_103_220 2_110_206 set community 0:22660 ip community-list standard 2_41_94 permit 65000:2 0:41 0:94 ip community-list standard 2_47_82 permit 65000:2 0:47 0:82 route-map calculator permit 12163 match community 2_41_94 2_47_82 set community 0:3854 ip community-list standard 2_146_256 permit 65000:2 0:146 0:256 route-map calculator permit 12164 match community 2_146_256 set community 0:37376 ip community-list standard 2_2_164 permit 65000:2 0:2 0:164 ip community-list standard 2_4_82 permit 65000:2 0:4 0:82 ip community-list standard 2_8_41 permit 65000:2 0:8 0:41 ip community-list standard 1_72_256 permit 65000:1 0:72 0:256 ip community-list standard 1_73_255 permit 65000:1 0:73 0:255 ip community-list standard 1_74_254 permit 65000:1 0:74 0:254 ip community-list standard 1_75_253 permit 65000:1 0:75 0:253 ip community-list standard 1_76_252 permit 65000:1 0:76 0:252 ip community-list standard 1_77_251 permit 65000:1 0:77 0:251 ip community-list standard 1_78_250 permit 65000:1 0:78 0:250 ip community-list standard 1_79_249 permit 65000:1 0:79 0:249 ip community-list standard 1_80_248 permit 65000:1 0:80 0:248 ip community-list standard 1_81_247 permit 65000:1 0:81 0:247 ip community-list standard 1_82_246 permit 65000:1 0:82 0:246 ip community-list standard 1_83_245 permit 65000:1 0:83 0:245 ip community-list standard 1_84_244 permit 65000:1 0:84 0:244 ip community-list standard 1_85_243 permit 65000:1 0:85 0:243 ip community-list standard 1_86_242 permit 65000:1 0:86 0:242 ip community-list standard 1_87_241 permit 65000:1 0:87 0:241 ip community-list standard 1_88_240 permit 65000:1 0:88 0:240 ip community-list standard 1_89_239 permit 65000:1 0:89 0:239 ip community-list standard 1_90_238 permit 65000:1 0:90 0:238 ip community-list standard 1_91_237 permit 65000:1 0:91 0:237 ip community-list standard 1_92_236 permit 65000:1 0:92 0:236 ip community-list standard 1_93_235 permit 65000:1 0:93 0:235 ip community-list standard 1_94_234 permit 65000:1 0:94 0:234 ip community-list standard 1_95_233 permit 65000:1 0:95 0:233 ip community-list standard 1_96_232 permit 65000:1 0:96 0:232 ip community-list standard 1_97_231 permit 65000:1 0:97 0:231 ip community-list standard 1_98_230 permit 65000:1 0:98 0:230 ip community-list standard 1_99_229 permit 65000:1 0:99 0:229 ip community-list standard 1_100_228 permit 65000:1 0:100 0:228 ip community-list standard 1_101_227 permit 65000:1 0:101 0:227 ip community-list standard 1_102_226 permit 65000:1 0:102 0:226 ip community-list standard 1_103_225 permit 65000:1 0:103 0:225 ip community-list standard 1_104_224 permit 65000:1 0:104 0:224 ip community-list standard 1_105_223 permit 65000:1 0:105 0:223 ip community-list standard 1_106_222 permit 65000:1 0:106 0:222 ip community-list standard 1_107_221 permit 65000:1 0:107 0:221 ip community-list standard 1_108_220 permit 65000:1 0:108 0:220 ip community-list standard 1_109_219 permit 65000:1 0:109 0:219 ip community-list standard 1_110_218 permit 65000:1 0:110 0:218 ip community-list standard 1_111_217 permit 65000:1 0:111 0:217 ip community-list standard 1_112_216 permit 65000:1 0:112 0:216 ip community-list standard 1_113_215 permit 65000:1 0:113 0:215 ip community-list standard 1_114_214 permit 65000:1 0:114 0:214 ip community-list standard 1_115_213 permit 65000:1 0:115 0:213 ip community-list standard 1_116_212 permit 65000:1 0:116 0:212 ip community-list standard 1_117_211 permit 65000:1 0:117 0:211 ip community-list standard 1_118_210 permit 65000:1 0:118 0:210 ip community-list standard 1_119_209 permit 65000:1 0:119 0:209 ip community-list standard 1_120_208 permit 65000:1 0:120 0:208 ip community-list standard 1_121_207 permit 65000:1 0:121 0:207 ip community-list standard 1_122_206 permit 65000:1 0:122 0:206 ip community-list standard 1_123_205 permit 65000:1 0:123 0:205 ip community-list standard 1_124_204 permit 65000:1 0:124 0:204 ip community-list standard 1_125_203 permit 65000:1 0:125 0:203 ip community-list standard 1_126_202 permit 65000:1 0:126 0:202 ip community-list standard 1_127_201 permit 65000:1 0:127 0:201 ip community-list standard 1_128_200 permit 65000:1 0:128 0:200 ip community-list standard 1_129_199 permit 65000:1 0:129 0:199 ip community-list standard 1_130_198 permit 65000:1 0:130 0:198 ip community-list standard 1_131_197 permit 65000:1 0:131 0:197 ip community-list standard 1_132_196 permit 65000:1 0:132 0:196 ip community-list standard 1_133_195 permit 65000:1 0:133 0:195 ip community-list standard 1_134_194 permit 65000:1 0:134 0:194 ip community-list standard 1_135_193 permit 65000:1 0:135 0:193 ip community-list standard 1_136_192 permit 65000:1 0:136 0:192 ip community-list standard 1_137_191 permit 65000:1 0:137 0:191 ip community-list standard 1_138_190 permit 65000:1 0:138 0:190 ip community-list standard 1_139_189 permit 65000:1 0:139 0:189 ip community-list standard 1_140_188 permit 65000:1 0:140 0:188 ip community-list standard 1_141_187 permit 65000:1 0:141 0:187 ip community-list standard 1_142_186 permit 65000:1 0:142 0:186 ip community-list standard 1_143_185 permit 65000:1 0:143 0:185 ip community-list standard 1_144_184 permit 65000:1 0:144 0:184 ip community-list standard 1_145_183 permit 65000:1 0:145 0:183 ip community-list standard 1_146_182 permit 65000:1 0:146 0:182 ip community-list standard 1_147_181 permit 65000:1 0:147 0:181 ip community-list standard 1_148_180 permit 65000:1 0:148 0:180 ip community-list standard 1_149_179 permit 65000:1 0:149 0:179 ip community-list standard 1_150_178 permit 65000:1 0:150 0:178 ip community-list standard 1_151_177 permit 65000:1 0:151 0:177 ip community-list standard 1_152_176 permit 65000:1 0:152 0:176 ip community-list standard 1_153_175 permit 65000:1 0:153 0:175 ip community-list standard 1_154_174 permit 65000:1 0:154 0:174 ip community-list standard 1_155_173 permit 65000:1 0:155 0:173 ip community-list standard 1_156_172 permit 65000:1 0:156 0:172 ip community-list standard 1_157_171 permit 65000:1 0:157 0:171 ip community-list standard 1_158_170 permit 65000:1 0:158 0:170 ip community-list standard 1_159_169 permit 65000:1 0:159 0:169 ip community-list standard 1_160_168 permit 65000:1 0:160 0:168 ip community-list standard 1_161_167 permit 65000:1 0:161 0:167 ip community-list standard 1_162_166 permit 65000:1 0:162 0:166 ip community-list standard 1_163_165 permit 65000:1 0:163 0:165 ip community-list standard 1_164_164 permit 65000:1 0:164 0:164 route-map calculator permit 12165 match community 2_2_164 2_4_82 2_8_41 1_72_256 1_73_255 set community 0:328 route-map calculator permit 12166 match community 1_74_254 1_75_253 1_76_252 1_77_251 1_78_250 set community 0:328 route-map calculator permit 12167 match community 1_79_249 1_80_248 1_81_247 1_82_246 1_83_245 set community 0:328 route-map calculator permit 12168 match community 1_84_244 1_85_243 1_86_242 1_87_241 1_88_240 set community 0:328 route-map calculator permit 12169 match community 1_89_239 1_90_238 1_91_237 1_92_236 1_93_235 set community 0:328 route-map calculator permit 12170 match community 1_94_234 1_95_233 1_96_232 1_97_231 1_98_230 set community 0:328 route-map calculator permit 12171 match community 1_99_229 1_100_228 1_101_227 1_102_226 1_103_225 set community 0:328 route-map calculator permit 12172 match community 1_104_224 1_105_223 1_106_222 1_107_221 1_108_220 set community 0:328 route-map calculator permit 12173 match community 1_109_219 1_110_218 1_111_217 1_112_216 1_113_215 set community 0:328 route-map calculator permit 12174 match community 1_114_214 1_115_213 1_116_212 1_117_211 1_118_210 set community 0:328 route-map calculator permit 12175 match community 1_119_209 1_120_208 1_121_207 1_122_206 1_123_205 set community 0:328 route-map calculator permit 12176 match community 1_124_204 1_125_203 1_126_202 1_127_201 1_128_200 set community 0:328 route-map calculator permit 12177 match community 1_129_199 1_130_198 1_131_197 1_132_196 1_133_195 set community 0:328 route-map calculator permit 12178 match community 1_134_194 1_135_193 1_136_192 1_137_191 1_138_190 set community 0:328 route-map calculator permit 12179 match community 1_139_189 1_140_188 1_141_187 1_142_186 1_143_185 set community 0:328 route-map calculator permit 12180 match community 1_144_184 1_145_183 1_146_182 1_147_181 1_148_180 set community 0:328 route-map calculator permit 12181 match community 1_149_179 1_150_178 1_151_177 1_152_176 1_153_175 set community 0:328 route-map calculator permit 12182 match community 1_154_174 1_155_173 1_156_172 1_157_171 1_158_170 set community 0:328 route-map calculator permit 12183 match community 1_159_169 1_160_168 1_161_167 1_162_166 1_163_165 set community 0:328 route-map calculator permit 12184 match community 1_164_164 set community 0:328 ip community-list standard 2_134_226 permit 65000:2 0:134 0:226 route-map calculator permit 12185 match community 2_134_226 set community 0:30284 ip community-list standard 2_136_204 permit 65000:2 0:136 0:204 route-map calculator permit 12186 match community 2_136_204 set community 0:27744 ip community-list standard 2_161_199 permit 65000:2 0:161 0:199 route-map calculator permit 12187 match community 2_161_199 set community 0:32039 ip community-list standard 2_145_231 permit 65000:2 0:145 0:231 ip community-list standard 2_165_203 permit 65000:2 0:165 0:203 route-map calculator permit 12188 match community 2_145_231 2_165_203 set community 0:33495 ip community-list standard 2_44_212 permit 65000:2 0:44 0:212 ip community-list standard 2_53_176 permit 65000:2 0:53 0:176 ip community-list standard 2_88_106 permit 65000:2 0:88 0:106 route-map calculator permit 12189 match community 2_44_212 2_53_176 2_88_106 set community 0:9328 ip community-list standard 2_101_230 permit 65000:2 0:101 0:230 ip community-list standard 2_115_202 permit 65000:2 0:115 0:202 route-map calculator permit 12190 match community 2_101_230 2_115_202 set community 0:23230 ip community-list standard 2_183_242 permit 65000:2 0:183 0:242 route-map calculator permit 12191 match community 2_183_242 set community 0:44286 ip community-list standard 2_67_218 permit 65000:2 0:67 0:218 ip community-list standard 2_109_134 permit 65000:2 0:109 0:134 route-map calculator permit 12192 match community 2_67_218 2_109_134 set community 0:14606 ip community-list standard 2_25_79 permit 65000:2 0:25 0:79 route-map calculator permit 12193 match community 2_25_79 set community 0:1975 ip community-list standard 2_137_249 permit 65000:2 0:137 0:249 route-map calculator permit 12194 match community 2_137_249 set community 0:34113 ip community-list standard 2_43_97 permit 65000:2 0:43 0:97 route-map calculator permit 12195 match community 2_43_97 set community 0:4171 ip community-list standard 2_192_256 permit 65000:2 0:192 0:256 route-map calculator permit 12196 match community 2_192_256 set community 0:49152 ip community-list standard 2_158_206 permit 65000:2 0:158 0:206 route-map calculator permit 12197 match community 2_158_206 set community 0:32548 ip community-list standard 2_16_142 permit 65000:2 0:16 0:142 ip community-list standard 2_32_71 permit 65000:2 0:32 0:71 route-map calculator permit 12198 match community 2_16_142 2_32_71 set community 0:2272 ip community-list standard 2_112_185 permit 65000:2 0:112 0:185 ip community-list standard 2_140_148 permit 65000:2 0:140 0:148 route-map calculator permit 12199 match community 2_112_185 2_140_148 set community 0:20720 ip community-list standard 2_68_173 permit 65000:2 0:68 0:173 route-map calculator permit 12200 match community 2_68_173 set community 0:11764 ip community-list standard 2_185_244 permit 65000:2 0:185 0:244 route-map calculator permit 12201 match community 2_185_244 set community 0:45140 ip community-list standard 2_83_172 permit 65000:2 0:83 0:172 ip community-list standard 2_86_166 permit 65000:2 0:86 0:166 route-map calculator permit 12202 match community 2_83_172 2_86_166 set community 0:14276 ip community-list standard 2_139_139 permit 65000:2 0:139 0:139 route-map calculator permit 12203 match community 2_139_139 set community 0:19321 ip community-list standard 2_157_200 permit 65000:2 0:157 0:200 route-map calculator permit 12204 match community 2_157_200 set community 0:31400 ip community-list standard 2_186_193 permit 65000:2 0:186 0:193 route-map calculator permit 12205 match community 2_186_193 set community 0:35898 ip community-list standard 2_20_227 permit 65000:2 0:20 0:227 route-map calculator permit 12206 match community 2_20_227 set community 0:4540 ip community-list standard 2_137_191 permit 65000:2 0:137 0:191 route-map calculator permit 12207 match community 2_137_191 set community 0:26167 ip community-list standard 2_229_239 permit 65000:2 0:229 0:239 route-map calculator permit 12208 match community 2_229_239 set community 0:54731 ip community-list standard 2_176_181 permit 65000:2 0:176 0:181 route-map calculator permit 12209 match community 2_176_181 set community 0:31856 ip community-list standard 2_65_127 permit 65000:2 0:65 0:127 route-map calculator permit 12210 match community 2_65_127 set community 0:8255 ip community-list standard 2_4_164 permit 65000:2 0:4 0:164 ip community-list standard 2_8_82 permit 65000:2 0:8 0:82 ip community-list standard 2_16_41 permit 65000:2 0:16 0:41 route-map calculator permit 12211 match community 2_4_164 2_8_82 2_16_41 set community 0:656 ip community-list standard 2_18_231 permit 65000:2 0:18 0:231 ip community-list standard 2_21_198 permit 65000:2 0:21 0:198 ip community-list standard 2_22_189 permit 65000:2 0:22 0:189 ip community-list standard 2_27_154 permit 65000:2 0:27 0:154 ip community-list standard 2_33_126 permit 65000:2 0:33 0:126 ip community-list standard 2_42_99 permit 65000:2 0:42 0:99 ip community-list standard 2_54_77 permit 65000:2 0:54 0:77 ip community-list standard 2_63_66 permit 65000:2 0:63 0:66 route-map calculator permit 12212 match community 2_18_231 2_21_198 2_22_189 2_27_154 2_33_126 set community 0:4158 route-map calculator permit 12213 match community 2_42_99 2_54_77 2_63_66 set community 0:4158 ip community-list standard 2_168_218 permit 65000:2 0:168 0:218 route-map calculator permit 12214 match community 2_168_218 set community 0:36624 ip community-list standard 2_128_163 permit 65000:2 0:128 0:163 route-map calculator permit 12215 match community 2_128_163 set community 0:20864 ip community-list standard 2_106_214 permit 65000:2 0:106 0:214 ip community-list standard 2_107_212 permit 65000:2 0:107 0:212 route-map calculator permit 12216 match community 2_106_214 2_107_212 set community 0:22684 ip community-list standard 2_86_235 permit 65000:2 0:86 0:235 ip community-list standard 2_94_215 permit 65000:2 0:94 0:215 route-map calculator permit 12217 match community 2_86_235 2_94_215 set community 0:20210 ip community-list standard 2_144_223 permit 65000:2 0:144 0:223 route-map calculator permit 12218 match community 2_144_223 set community 0:32112 ip community-list standard 2_22_213 permit 65000:2 0:22 0:213 ip community-list standard 2_33_142 permit 65000:2 0:33 0:142 ip community-list standard 2_66_71 permit 65000:2 0:66 0:71 route-map calculator permit 12219 match community 2_22_213 2_33_142 2_66_71 set community 0:4686 ip community-list standard 2_169_177 permit 65000:2 0:169 0:177 route-map calculator permit 12220 match community 2_169_177 set community 0:29913 ip community-list standard 2_101_177 permit 65000:2 0:101 0:177 route-map calculator permit 12221 match community 2_101_177 set community 0:17877 ip community-list standard 2_161_163 permit 65000:2 0:161 0:163 route-map calculator permit 12222 match community 2_161_163 set community 0:26243 ip community-list standard 2_42_251 permit 65000:2 0:42 0:251 route-map calculator permit 12223 match community 2_42_251 set community 0:10542 ip community-list standard 2_86_163 permit 65000:2 0:86 0:163 route-map calculator permit 12224 match community 2_86_163 set community 0:14018 ip community-list standard 2_17_114 permit 65000:2 0:17 0:114 ip community-list standard 2_19_102 permit 65000:2 0:19 0:102 ip community-list standard 2_34_57 permit 65000:2 0:34 0:57 ip community-list standard 2_38_51 permit 65000:2 0:38 0:51 route-map calculator permit 12225 match community 2_17_114 2_19_102 2_34_57 2_38_51 set community 0:1938 ip community-list standard 2_199_217 permit 65000:2 0:199 0:217 route-map calculator permit 12226 match community 2_199_217 set community 0:43183 ip community-list standard 2_129_202 permit 65000:2 0:129 0:202 route-map calculator permit 12227 match community 2_129_202 set community 0:26058 ip community-list standard 2_87_173 permit 65000:2 0:87 0:173 route-map calculator permit 12228 match community 2_87_173 set community 0:15051 ip community-list standard 2_30_149 permit 65000:2 0:30 0:149 route-map calculator permit 12229 match community 2_30_149 set community 0:4470 ip community-list standard 2_64_234 permit 65000:2 0:64 0:234 ip community-list standard 2_72_208 permit 65000:2 0:72 0:208 ip community-list standard 2_78_192 permit 65000:2 0:78 0:192 ip community-list standard 2_96_156 permit 65000:2 0:96 0:156 ip community-list standard 2_104_144 permit 65000:2 0:104 0:144 ip community-list standard 2_117_128 permit 65000:2 0:117 0:128 route-map calculator permit 12230 match community 2_64_234 2_72_208 2_78_192 2_96_156 2_104_144 set community 0:14976 route-map calculator permit 12231 match community 2_117_128 set community 0:14976 ip community-list standard 2_90_244 permit 65000:2 0:90 0:244 ip community-list standard 2_120_183 permit 65000:2 0:120 0:183 ip community-list standard 2_122_180 permit 65000:2 0:122 0:180 route-map calculator permit 12232 match community 2_90_244 2_120_183 2_122_180 set community 0:21960 ip community-list standard 2_94_253 permit 65000:2 0:94 0:253 route-map calculator permit 12233 match community 2_94_253 set community 0:23782 ip community-list standard 2_105_253 permit 65000:2 0:105 0:253 ip community-list standard 2_115_231 permit 65000:2 0:115 0:231 ip community-list standard 2_161_165 permit 65000:2 0:161 0:165 route-map calculator permit 12234 match community 2_105_253 2_115_231 2_161_165 set community 0:26565 ip community-list standard 2_126_219 permit 65000:2 0:126 0:219 ip community-list standard 2_146_189 permit 65000:2 0:146 0:189 route-map calculator permit 12235 match community 2_126_219 2_146_189 set community 0:27594 ip community-list standard 2_164_255 permit 65000:2 0:164 0:255 ip community-list standard 2_170_246 permit 65000:2 0:170 0:246 ip community-list standard 2_204_205 permit 65000:2 0:204 0:205 route-map calculator permit 12236 match community 2_164_255 2_170_246 2_204_205 set community 0:41820 ip community-list standard 2_31_122 permit 65000:2 0:31 0:122 ip community-list standard 2_61_62 permit 65000:2 0:61 0:62 route-map calculator permit 12237 match community 2_31_122 2_61_62 set community 0:3782 ip community-list standard 2_5_190 permit 65000:2 0:5 0:190 ip community-list standard 2_10_95 permit 65000:2 0:10 0:95 ip community-list standard 2_19_50 permit 65000:2 0:19 0:50 ip community-list standard 2_25_38 permit 65000:2 0:25 0:38 route-map calculator permit 12238 match community 2_5_190 2_10_95 2_19_50 2_25_38 set community 0:950 ip community-list standard 2_47_240 permit 65000:2 0:47 0:240 ip community-list standard 2_48_235 permit 65000:2 0:48 0:235 ip community-list standard 2_60_188 permit 65000:2 0:60 0:188 ip community-list standard 2_80_141 permit 65000:2 0:80 0:141 ip community-list standard 2_94_120 permit 65000:2 0:94 0:120 route-map calculator permit 12239 match community 2_47_240 2_48_235 2_60_188 2_80_141 2_94_120 set community 0:11280 ip community-list standard 2_109_237 permit 65000:2 0:109 0:237 route-map calculator permit 12240 match community 2_109_237 set community 0:25833 ip community-list standard 2_53_247 permit 65000:2 0:53 0:247 route-map calculator permit 12241 match community 2_53_247 set community 0:13091 ip community-list standard 2_145_214 permit 65000:2 0:145 0:214 route-map calculator permit 12242 match community 2_145_214 set community 0:31030 ip community-list standard 2_23_206 permit 65000:2 0:23 0:206 ip community-list standard 2_46_103 permit 65000:2 0:46 0:103 route-map calculator permit 12243 match community 2_23_206 2_46_103 set community 0:4738 ip community-list standard 2_26_166 permit 65000:2 0:26 0:166 ip community-list standard 2_52_83 permit 65000:2 0:52 0:83 route-map calculator permit 12244 match community 2_26_166 2_52_83 set community 0:4316 ip community-list standard 2_10_203 permit 65000:2 0:10 0:203 ip community-list standard 2_14_145 permit 65000:2 0:14 0:145 ip community-list standard 2_29_70 permit 65000:2 0:29 0:70 ip community-list standard 2_35_58 permit 65000:2 0:35 0:58 route-map calculator permit 12245 match community 2_10_203 2_14_145 2_29_70 2_35_58 set community 0:2030 ip community-list standard 2_215_255 permit 65000:2 0:215 0:255 route-map calculator permit 12246 match community 2_215_255 set community 0:54825 ip community-list standard 2_113_232 permit 65000:2 0:113 0:232 ip community-list standard 2_116_226 permit 65000:2 0:116 0:226 route-map calculator permit 12247 match community 2_113_232 2_116_226 set community 0:26216 ip community-list standard 2_52_163 permit 65000:2 0:52 0:163 route-map calculator permit 12248 match community 2_52_163 set community 0:8476 ip community-list standard 2_171_214 permit 65000:2 0:171 0:214 route-map calculator permit 12249 match community 2_171_214 set community 0:36594 ip community-list standard 2_107_231 permit 65000:2 0:107 0:231 route-map calculator permit 12250 match community 2_107_231 set community 0:24717 ip community-list standard 2_79_131 permit 65000:2 0:79 0:131 route-map calculator permit 12251 match community 2_79_131 set community 0:10349 ip community-list standard 2_17_237 permit 65000:2 0:17 0:237 ip community-list standard 2_51_79 permit 65000:2 0:51 0:79 route-map calculator permit 12252 match community 2_17_237 2_51_79 set community 0:4029 ip community-list standard 2_38_142 permit 65000:2 0:38 0:142 ip community-list standard 2_71_76 permit 65000:2 0:71 0:76 route-map calculator permit 12253 match community 2_38_142 2_71_76 set community 0:5396 ip community-list standard 2_116_232 permit 65000:2 0:116 0:232 route-map calculator permit 12254 match community 2_116_232 set community 0:26912 ip community-list standard 2_25_145 permit 65000:2 0:25 0:145 ip community-list standard 2_29_125 permit 65000:2 0:29 0:125 route-map calculator permit 12255 match community 2_25_145 2_29_125 set community 0:3625 ip community-list standard 2_50_234 permit 65000:2 0:50 0:234 ip community-list standard 2_52_225 permit 65000:2 0:52 0:225 ip community-list standard 2_60_195 permit 65000:2 0:60 0:195 ip community-list standard 2_65_180 permit 65000:2 0:65 0:180 ip community-list standard 2_75_156 permit 65000:2 0:75 0:156 ip community-list standard 2_78_150 permit 65000:2 0:78 0:150 ip community-list standard 2_90_130 permit 65000:2 0:90 0:130 ip community-list standard 2_100_117 permit 65000:2 0:100 0:117 route-map calculator permit 12256 match community 2_50_234 2_52_225 2_60_195 2_65_180 2_75_156 set community 0:11700 route-map calculator permit 12257 match community 2_78_150 2_90_130 2_100_117 set community 0:11700 ip community-list standard 2_91_239 permit 65000:2 0:91 0:239 route-map calculator permit 12258 match community 2_91_239 set community 0:21749 ip community-list standard 2_64_201 permit 65000:2 0:64 0:201 ip community-list standard 2_67_192 permit 65000:2 0:67 0:192 ip community-list standard 2_96_134 permit 65000:2 0:96 0:134 route-map calculator permit 12259 match community 2_64_201 2_67_192 2_96_134 set community 0:12864 ip community-list standard 2_139_140 permit 65000:2 0:139 0:140 route-map calculator permit 12260 match community 2_139_140 set community 0:19460 ip community-list standard 2_17_145 permit 65000:2 0:17 0:145 ip community-list standard 2_29_85 permit 65000:2 0:29 0:85 route-map calculator permit 12261 match community 2_17_145 2_29_85 set community 0:2465 ip community-list standard 2_151_213 permit 65000:2 0:151 0:213 route-map calculator permit 12262 match community 2_151_213 set community 0:32163 ip community-list standard 2_29_137 permit 65000:2 0:29 0:137 route-map calculator permit 12263 match community 2_29_137 set community 0:3973 ip community-list standard 2_138_206 permit 65000:2 0:138 0:206 route-map calculator permit 12264 match community 2_138_206 set community 0:28428 ip community-list standard 2_101_151 permit 65000:2 0:101 0:151 route-map calculator permit 12265 match community 2_101_151 set community 0:15251 ip community-list standard 2_21_178 permit 65000:2 0:21 0:178 ip community-list standard 2_42_89 permit 65000:2 0:42 0:89 route-map calculator permit 12266 match community 2_21_178 2_42_89 set community 0:3738 ip community-list standard 2_159_240 permit 65000:2 0:159 0:240 ip community-list standard 2_180_212 permit 65000:2 0:180 0:212 route-map calculator permit 12267 match community 2_159_240 2_180_212 set community 0:38160 ip community-list standard 2_31_202 permit 65000:2 0:31 0:202 ip community-list standard 2_62_101 permit 65000:2 0:62 0:101 route-map calculator permit 12268 match community 2_31_202 2_62_101 set community 0:6262 ip community-list standard 2_149_196 permit 65000:2 0:149 0:196 route-map calculator permit 12269 match community 2_149_196 set community 0:29204 ip community-list standard 2_7_61 permit 65000:2 0:7 0:61 ip community-list standard 1_171_256 permit 65000:1 0:171 0:256 ip community-list standard 1_172_255 permit 65000:1 0:172 0:255 ip community-list standard 1_173_254 permit 65000:1 0:173 0:254 ip community-list standard 1_174_253 permit 65000:1 0:174 0:253 ip community-list standard 1_175_252 permit 65000:1 0:175 0:252 ip community-list standard 1_176_251 permit 65000:1 0:176 0:251 ip community-list standard 1_177_250 permit 65000:1 0:177 0:250 ip community-list standard 1_178_249 permit 65000:1 0:178 0:249 ip community-list standard 1_179_248 permit 65000:1 0:179 0:248 ip community-list standard 1_180_247 permit 65000:1 0:180 0:247 ip community-list standard 1_181_246 permit 65000:1 0:181 0:246 ip community-list standard 1_182_245 permit 65000:1 0:182 0:245 ip community-list standard 1_183_244 permit 65000:1 0:183 0:244 ip community-list standard 1_184_243 permit 65000:1 0:184 0:243 ip community-list standard 1_185_242 permit 65000:1 0:185 0:242 ip community-list standard 1_186_241 permit 65000:1 0:186 0:241 ip community-list standard 1_187_240 permit 65000:1 0:187 0:240 ip community-list standard 1_188_239 permit 65000:1 0:188 0:239 ip community-list standard 1_189_238 permit 65000:1 0:189 0:238 ip community-list standard 1_190_237 permit 65000:1 0:190 0:237 ip community-list standard 1_191_236 permit 65000:1 0:191 0:236 ip community-list standard 1_192_235 permit 65000:1 0:192 0:235 ip community-list standard 1_193_234 permit 65000:1 0:193 0:234 ip community-list standard 1_194_233 permit 65000:1 0:194 0:233 ip community-list standard 1_195_232 permit 65000:1 0:195 0:232 ip community-list standard 1_196_231 permit 65000:1 0:196 0:231 ip community-list standard 1_197_230 permit 65000:1 0:197 0:230 ip community-list standard 1_198_229 permit 65000:1 0:198 0:229 ip community-list standard 1_199_228 permit 65000:1 0:199 0:228 ip community-list standard 1_200_227 permit 65000:1 0:200 0:227 ip community-list standard 1_201_226 permit 65000:1 0:201 0:226 ip community-list standard 1_202_225 permit 65000:1 0:202 0:225 ip community-list standard 1_203_224 permit 65000:1 0:203 0:224 ip community-list standard 1_204_223 permit 65000:1 0:204 0:223 ip community-list standard 1_205_222 permit 65000:1 0:205 0:222 ip community-list standard 1_206_221 permit 65000:1 0:206 0:221 ip community-list standard 1_207_220 permit 65000:1 0:207 0:220 ip community-list standard 1_208_219 permit 65000:1 0:208 0:219 ip community-list standard 1_209_218 permit 65000:1 0:209 0:218 ip community-list standard 1_210_217 permit 65000:1 0:210 0:217 ip community-list standard 1_211_216 permit 65000:1 0:211 0:216 ip community-list standard 1_212_215 permit 65000:1 0:212 0:215 ip community-list standard 1_213_214 permit 65000:1 0:213 0:214 route-map calculator permit 12270 match community 2_7_61 1_171_256 1_172_255 1_173_254 1_174_253 set community 0:427 route-map calculator permit 12271 match community 1_175_252 1_176_251 1_177_250 1_178_249 1_179_248 set community 0:427 route-map calculator permit 12272 match community 1_180_247 1_181_246 1_182_245 1_183_244 1_184_243 set community 0:427 route-map calculator permit 12273 match community 1_185_242 1_186_241 1_187_240 1_188_239 1_189_238 set community 0:427 route-map calculator permit 12274 match community 1_190_237 1_191_236 1_192_235 1_193_234 1_194_233 set community 0:427 route-map calculator permit 12275 match community 1_195_232 1_196_231 1_197_230 1_198_229 1_199_228 set community 0:427 route-map calculator permit 12276 match community 1_200_227 1_201_226 1_202_225 1_203_224 1_204_223 set community 0:427 route-map calculator permit 12277 match community 1_205_222 1_206_221 1_207_220 1_208_219 1_209_218 set community 0:427 route-map calculator permit 12278 match community 1_210_217 1_211_216 1_212_215 1_213_214 set community 0:427 ip community-list standard 2_186_243 permit 65000:2 0:186 0:243 route-map calculator permit 12279 match community 2_186_243 set community 0:45198 ip community-list standard 2_212_224 permit 65000:2 0:212 0:224 route-map calculator permit 12280 match community 2_212_224 set community 0:47488 ip community-list standard 2_2_138 permit 65000:2 0:2 0:138 ip community-list standard 2_3_92 permit 65000:2 0:3 0:92 ip community-list standard 2_4_69 permit 65000:2 0:4 0:69 ip community-list standard 2_6_46 permit 65000:2 0:6 0:46 ip community-list standard 2_12_23 permit 65000:2 0:12 0:23 ip community-list standard 1_20_256 permit 65000:1 0:20 0:256 ip community-list standard 1_21_255 permit 65000:1 0:21 0:255 ip community-list standard 1_22_254 permit 65000:1 0:22 0:254 ip community-list standard 1_23_253 permit 65000:1 0:23 0:253 ip community-list standard 1_24_252 permit 65000:1 0:24 0:252 ip community-list standard 1_25_251 permit 65000:1 0:25 0:251 ip community-list standard 1_26_250 permit 65000:1 0:26 0:250 ip community-list standard 1_27_249 permit 65000:1 0:27 0:249 ip community-list standard 1_28_248 permit 65000:1 0:28 0:248 ip community-list standard 1_29_247 permit 65000:1 0:29 0:247 ip community-list standard 1_30_246 permit 65000:1 0:30 0:246 ip community-list standard 1_31_245 permit 65000:1 0:31 0:245 ip community-list standard 1_32_244 permit 65000:1 0:32 0:244 ip community-list standard 1_33_243 permit 65000:1 0:33 0:243 ip community-list standard 1_34_242 permit 65000:1 0:34 0:242 ip community-list standard 1_35_241 permit 65000:1 0:35 0:241 ip community-list standard 1_36_240 permit 65000:1 0:36 0:240 ip community-list standard 1_37_239 permit 65000:1 0:37 0:239 ip community-list standard 1_38_238 permit 65000:1 0:38 0:238 ip community-list standard 1_39_237 permit 65000:1 0:39 0:237 ip community-list standard 1_40_236 permit 65000:1 0:40 0:236 ip community-list standard 1_41_235 permit 65000:1 0:41 0:235 ip community-list standard 1_42_234 permit 65000:1 0:42 0:234 ip community-list standard 1_43_233 permit 65000:1 0:43 0:233 ip community-list standard 1_44_232 permit 65000:1 0:44 0:232 ip community-list standard 1_45_231 permit 65000:1 0:45 0:231 ip community-list standard 1_46_230 permit 65000:1 0:46 0:230 ip community-list standard 1_47_229 permit 65000:1 0:47 0:229 ip community-list standard 1_48_228 permit 65000:1 0:48 0:228 ip community-list standard 1_49_227 permit 65000:1 0:49 0:227 ip community-list standard 1_50_226 permit 65000:1 0:50 0:226 ip community-list standard 1_51_225 permit 65000:1 0:51 0:225 ip community-list standard 1_52_224 permit 65000:1 0:52 0:224 ip community-list standard 1_53_223 permit 65000:1 0:53 0:223 ip community-list standard 1_54_222 permit 65000:1 0:54 0:222 ip community-list standard 1_55_221 permit 65000:1 0:55 0:221 ip community-list standard 1_56_220 permit 65000:1 0:56 0:220 ip community-list standard 1_57_219 permit 65000:1 0:57 0:219 ip community-list standard 1_58_218 permit 65000:1 0:58 0:218 ip community-list standard 1_59_217 permit 65000:1 0:59 0:217 ip community-list standard 1_60_216 permit 65000:1 0:60 0:216 ip community-list standard 1_61_215 permit 65000:1 0:61 0:215 ip community-list standard 1_62_214 permit 65000:1 0:62 0:214 ip community-list standard 1_63_213 permit 65000:1 0:63 0:213 ip community-list standard 1_64_212 permit 65000:1 0:64 0:212 ip community-list standard 1_65_211 permit 65000:1 0:65 0:211 ip community-list standard 1_66_210 permit 65000:1 0:66 0:210 ip community-list standard 1_67_209 permit 65000:1 0:67 0:209 ip community-list standard 1_68_208 permit 65000:1 0:68 0:208 ip community-list standard 1_69_207 permit 65000:1 0:69 0:207 ip community-list standard 1_70_206 permit 65000:1 0:70 0:206 ip community-list standard 1_71_205 permit 65000:1 0:71 0:205 ip community-list standard 1_72_204 permit 65000:1 0:72 0:204 ip community-list standard 1_73_203 permit 65000:1 0:73 0:203 ip community-list standard 1_74_202 permit 65000:1 0:74 0:202 ip community-list standard 1_75_201 permit 65000:1 0:75 0:201 ip community-list standard 1_76_200 permit 65000:1 0:76 0:200 ip community-list standard 1_77_199 permit 65000:1 0:77 0:199 ip community-list standard 1_78_198 permit 65000:1 0:78 0:198 ip community-list standard 1_79_197 permit 65000:1 0:79 0:197 ip community-list standard 1_80_196 permit 65000:1 0:80 0:196 ip community-list standard 1_81_195 permit 65000:1 0:81 0:195 ip community-list standard 1_82_194 permit 65000:1 0:82 0:194 ip community-list standard 1_83_193 permit 65000:1 0:83 0:193 ip community-list standard 1_84_192 permit 65000:1 0:84 0:192 ip community-list standard 1_85_191 permit 65000:1 0:85 0:191 ip community-list standard 1_86_190 permit 65000:1 0:86 0:190 ip community-list standard 1_87_189 permit 65000:1 0:87 0:189 ip community-list standard 1_88_188 permit 65000:1 0:88 0:188 ip community-list standard 1_89_187 permit 65000:1 0:89 0:187 ip community-list standard 1_90_186 permit 65000:1 0:90 0:186 ip community-list standard 1_91_185 permit 65000:1 0:91 0:185 ip community-list standard 1_92_184 permit 65000:1 0:92 0:184 ip community-list standard 1_93_183 permit 65000:1 0:93 0:183 ip community-list standard 1_94_182 permit 65000:1 0:94 0:182 ip community-list standard 1_95_181 permit 65000:1 0:95 0:181 ip community-list standard 1_96_180 permit 65000:1 0:96 0:180 ip community-list standard 1_97_179 permit 65000:1 0:97 0:179 ip community-list standard 1_98_178 permit 65000:1 0:98 0:178 ip community-list standard 1_99_177 permit 65000:1 0:99 0:177 ip community-list standard 1_100_176 permit 65000:1 0:100 0:176 ip community-list standard 1_101_175 permit 65000:1 0:101 0:175 ip community-list standard 1_102_174 permit 65000:1 0:102 0:174 ip community-list standard 1_103_173 permit 65000:1 0:103 0:173 ip community-list standard 1_104_172 permit 65000:1 0:104 0:172 ip community-list standard 1_105_171 permit 65000:1 0:105 0:171 ip community-list standard 1_106_170 permit 65000:1 0:106 0:170 ip community-list standard 1_107_169 permit 65000:1 0:107 0:169 ip community-list standard 1_108_168 permit 65000:1 0:108 0:168 ip community-list standard 1_109_167 permit 65000:1 0:109 0:167 ip community-list standard 1_110_166 permit 65000:1 0:110 0:166 ip community-list standard 1_111_165 permit 65000:1 0:111 0:165 ip community-list standard 1_112_164 permit 65000:1 0:112 0:164 ip community-list standard 1_113_163 permit 65000:1 0:113 0:163 ip community-list standard 1_114_162 permit 65000:1 0:114 0:162 ip community-list standard 1_115_161 permit 65000:1 0:115 0:161 ip community-list standard 1_116_160 permit 65000:1 0:116 0:160 ip community-list standard 1_117_159 permit 65000:1 0:117 0:159 ip community-list standard 1_118_158 permit 65000:1 0:118 0:158 ip community-list standard 1_119_157 permit 65000:1 0:119 0:157 ip community-list standard 1_120_156 permit 65000:1 0:120 0:156 ip community-list standard 1_121_155 permit 65000:1 0:121 0:155 ip community-list standard 1_122_154 permit 65000:1 0:122 0:154 ip community-list standard 1_123_153 permit 65000:1 0:123 0:153 ip community-list standard 1_124_152 permit 65000:1 0:124 0:152 ip community-list standard 1_125_151 permit 65000:1 0:125 0:151 ip community-list standard 1_126_150 permit 65000:1 0:126 0:150 ip community-list standard 1_127_149 permit 65000:1 0:127 0:149 ip community-list standard 1_128_148 permit 65000:1 0:128 0:148 ip community-list standard 1_129_147 permit 65000:1 0:129 0:147 ip community-list standard 1_130_146 permit 65000:1 0:130 0:146 ip community-list standard 1_131_145 permit 65000:1 0:131 0:145 ip community-list standard 1_132_144 permit 65000:1 0:132 0:144 ip community-list standard 1_133_143 permit 65000:1 0:133 0:143 ip community-list standard 1_134_142 permit 65000:1 0:134 0:142 ip community-list standard 1_135_141 permit 65000:1 0:135 0:141 ip community-list standard 1_136_140 permit 65000:1 0:136 0:140 ip community-list standard 1_137_139 permit 65000:1 0:137 0:139 ip community-list standard 1_138_138 permit 65000:1 0:138 0:138 route-map calculator permit 12281 match community 2_2_138 2_3_92 2_4_69 2_6_46 2_12_23 set community 0:276 route-map calculator permit 12282 match community 1_20_256 1_21_255 1_22_254 1_23_253 1_24_252 set community 0:276 route-map calculator permit 12283 match community 1_25_251 1_26_250 1_27_249 1_28_248 1_29_247 set community 0:276 route-map calculator permit 12284 match community 1_30_246 1_31_245 1_32_244 1_33_243 1_34_242 set community 0:276 route-map calculator permit 12285 match community 1_35_241 1_36_240 1_37_239 1_38_238 1_39_237 set community 0:276 route-map calculator permit 12286 match community 1_40_236 1_41_235 1_42_234 1_43_233 1_44_232 set community 0:276 route-map calculator permit 12287 match community 1_45_231 1_46_230 1_47_229 1_48_228 1_49_227 set community 0:276 route-map calculator permit 12288 match community 1_50_226 1_51_225 1_52_224 1_53_223 1_54_222 set community 0:276 route-map calculator permit 12289 match community 1_55_221 1_56_220 1_57_219 1_58_218 1_59_217 set community 0:276 route-map calculator permit 12290 match community 1_60_216 1_61_215 1_62_214 1_63_213 1_64_212 set community 0:276 route-map calculator permit 12291 match community 1_65_211 1_66_210 1_67_209 1_68_208 1_69_207 set community 0:276 route-map calculator permit 12292 match community 1_70_206 1_71_205 1_72_204 1_73_203 1_74_202 set community 0:276 route-map calculator permit 12293 match community 1_75_201 1_76_200 1_77_199 1_78_198 1_79_197 set community 0:276 route-map calculator permit 12294 match community 1_80_196 1_81_195 1_82_194 1_83_193 1_84_192 set community 0:276 route-map calculator permit 12295 match community 1_85_191 1_86_190 1_87_189 1_88_188 1_89_187 set community 0:276 route-map calculator permit 12296 match community 1_90_186 1_91_185 1_92_184 1_93_183 1_94_182 set community 0:276 route-map calculator permit 12297 match community 1_95_181 1_96_180 1_97_179 1_98_178 1_99_177 set community 0:276 route-map calculator permit 12298 match community 1_100_176 1_101_175 1_102_174 1_103_173 1_104_172 set community 0:276 route-map calculator permit 12299 match community 1_105_171 1_106_170 1_107_169 1_108_168 1_109_167 set community 0:276 route-map calculator permit 12300 match community 1_110_166 1_111_165 1_112_164 1_113_163 1_114_162 set community 0:276 route-map calculator permit 12301 match community 1_115_161 1_116_160 1_117_159 1_118_158 1_119_157 set community 0:276 route-map calculator permit 12302 match community 1_120_156 1_121_155 1_122_154 1_123_153 1_124_152 set community 0:276 route-map calculator permit 12303 match community 1_125_151 1_126_150 1_127_149 1_128_148 1_129_147 set community 0:276 route-map calculator permit 12304 match community 1_130_146 1_131_145 1_132_144 1_133_143 1_134_142 set community 0:276 route-map calculator permit 12305 match community 1_135_141 1_136_140 1_137_139 1_138_138 set community 0:276 ip community-list standard 2_220_255 permit 65000:2 0:220 0:255 route-map calculator permit 12306 match community 2_220_255 set community 0:56100 ip community-list standard 2_51_238 permit 65000:2 0:51 0:238 ip community-list standard 2_102_119 permit 65000:2 0:102 0:119 route-map calculator permit 12307 match community 2_51_238 2_102_119 set community 0:12138 ip community-list standard 2_70_233 permit 65000:2 0:70 0:233 route-map calculator permit 12308 match community 2_70_233 set community 0:16310 ip community-list standard 2_109_111 permit 65000:2 0:109 0:111 route-map calculator permit 12309 match community 2_109_111 set community 0:12099 ip community-list standard 2_67_236 permit 65000:2 0:67 0:236 ip community-list standard 2_118_134 permit 65000:2 0:118 0:134 route-map calculator permit 12310 match community 2_67_236 2_118_134 set community 0:15812 ip community-list standard 2_41_253 permit 65000:2 0:41 0:253 route-map calculator permit 12311 match community 2_41_253 set community 0:10373 ip community-list standard 2_143_224 permit 65000:2 0:143 0:224 ip community-list standard 2_154_208 permit 65000:2 0:154 0:208 ip community-list standard 2_176_182 permit 65000:2 0:176 0:182 route-map calculator permit 12312 match community 2_143_224 2_154_208 2_176_182 set community 0:32032 ip community-list standard 2_124_193 permit 65000:2 0:124 0:193 route-map calculator permit 12313 match community 2_124_193 set community 0:23932 ip community-list standard 2_29_236 permit 65000:2 0:29 0:236 ip community-list standard 2_58_118 permit 65000:2 0:58 0:118 ip community-list standard 2_59_116 permit 65000:2 0:59 0:116 route-map calculator permit 12314 match community 2_29_236 2_58_118 2_59_116 set community 0:6844 ip community-list standard 2_75_233 permit 65000:2 0:75 0:233 route-map calculator permit 12315 match community 2_75_233 set community 0:17475 ip community-list standard 2_61_161 permit 65000:2 0:61 0:161 route-map calculator permit 12316 match community 2_61_161 set community 0:9821 ip community-list standard 2_131_160 permit 65000:2 0:131 0:160 route-map calculator permit 12317 match community 2_131_160 set community 0:20960 ip community-list standard 2_155_215 permit 65000:2 0:155 0:215 route-map calculator permit 12318 match community 2_155_215 set community 0:33325 ip community-list standard 2_46_249 permit 65000:2 0:46 0:249 ip community-list standard 2_69_166 permit 65000:2 0:69 0:166 ip community-list standard 2_83_138 permit 65000:2 0:83 0:138 route-map calculator permit 12319 match community 2_46_249 2_69_166 2_83_138 set community 0:11454 ip community-list standard 2_48_256 permit 65000:2 0:48 0:256 ip community-list standard 2_64_192 permit 65000:2 0:64 0:192 ip community-list standard 2_96_128 permit 65000:2 0:96 0:128 route-map calculator permit 12320 match community 2_48_256 2_64_192 2_96_128 set community 0:12288 ip community-list standard 2_50_173 permit 65000:2 0:50 0:173 route-map calculator permit 12321 match community 2_50_173 set community 0:8650 ip community-list standard 2_109_159 permit 65000:2 0:109 0:159 route-map calculator permit 12322 match community 2_109_159 set community 0:17331 ip community-list standard 2_155_242 permit 65000:2 0:155 0:242 route-map calculator permit 12323 match community 2_155_242 set community 0:37510 ip community-list standard 2_87_238 permit 65000:2 0:87 0:238 ip community-list standard 2_102_203 permit 65000:2 0:102 0:203 ip community-list standard 2_119_174 permit 65000:2 0:119 0:174 route-map calculator permit 12324 match community 2_87_238 2_102_203 2_119_174 set community 0:20706 ip community-list standard 2_18_220 permit 65000:2 0:18 0:220 ip community-list standard 2_20_198 permit 65000:2 0:20 0:198 ip community-list standard 2_22_180 permit 65000:2 0:22 0:180 ip community-list standard 2_24_165 permit 65000:2 0:24 0:165 ip community-list standard 2_30_132 permit 65000:2 0:30 0:132 ip community-list standard 2_33_120 permit 65000:2 0:33 0:120 ip community-list standard 2_36_110 permit 65000:2 0:36 0:110 ip community-list standard 2_40_99 permit 65000:2 0:40 0:99 ip community-list standard 2_44_90 permit 65000:2 0:44 0:90 ip community-list standard 2_45_88 permit 65000:2 0:45 0:88 ip community-list standard 2_55_72 permit 65000:2 0:55 0:72 ip community-list standard 2_60_66 permit 65000:2 0:60 0:66 route-map calculator permit 12325 match community 2_18_220 2_20_198 2_22_180 2_24_165 2_30_132 set community 0:3960 route-map calculator permit 12326 match community 2_33_120 2_36_110 2_40_99 2_44_90 2_45_88 set community 0:3960 route-map calculator permit 12327 match community 2_55_72 2_60_66 set community 0:3960 ip community-list standard 2_184_255 permit 65000:2 0:184 0:255 ip community-list standard 2_204_230 permit 65000:2 0:204 0:230 route-map calculator permit 12328 match community 2_184_255 2_204_230 set community 0:46920 ip community-list standard 2_57_149 permit 65000:2 0:57 0:149 route-map calculator permit 12329 match community 2_57_149 set community 0:8493 ip community-list standard 2_209_209 permit 65000:2 0:209 0:209 route-map calculator permit 12330 match community 2_209_209 set community 0:43681 ip community-list standard 2_166_239 permit 65000:2 0:166 0:239 route-map calculator permit 12331 match community 2_166_239 set community 0:39674 ip community-list standard 2_60_167 permit 65000:2 0:60 0:167 route-map calculator permit 12332 match community 2_60_167 set community 0:10020 ip community-list standard 2_172_196 permit 65000:2 0:172 0:196 route-map calculator permit 12333 match community 2_172_196 set community 0:33712 ip community-list standard 2_51_256 permit 65000:2 0:51 0:256 ip community-list standard 2_64_204 permit 65000:2 0:64 0:204 ip community-list standard 2_68_192 permit 65000:2 0:68 0:192 ip community-list standard 2_96_136 permit 65000:2 0:96 0:136 ip community-list standard 2_102_128 permit 65000:2 0:102 0:128 route-map calculator permit 12334 match community 2_51_256 2_64_204 2_68_192 2_96_136 2_102_128 set community 0:13056 ip community-list standard 2_133_206 permit 65000:2 0:133 0:206 route-map calculator permit 12335 match community 2_133_206 set community 0:27398 ip community-list standard 2_105_107 permit 65000:2 0:105 0:107 route-map calculator permit 12336 match community 2_105_107 set community 0:11235 ip community-list standard 2_61_79 permit 65000:2 0:61 0:79 route-map calculator permit 12337 match community 2_61_79 set community 0:4819 ip community-list standard 2_199_244 permit 65000:2 0:199 0:244 route-map calculator permit 12338 match community 2_199_244 set community 0:48556 ip community-list standard 2_143_179 permit 65000:2 0:143 0:179 route-map calculator permit 12339 match community 2_143_179 set community 0:25597 ip community-list standard 2_79_139 permit 65000:2 0:79 0:139 route-map calculator permit 12340 match community 2_79_139 set community 0:10981 ip community-list standard 2_54_173 permit 65000:2 0:54 0:173 route-map calculator permit 12341 match community 2_54_173 set community 0:9342 ip community-list standard 2_108_230 permit 65000:2 0:108 0:230 ip community-list standard 2_115_216 permit 65000:2 0:115 0:216 ip community-list standard 2_120_207 permit 65000:2 0:120 0:207 ip community-list standard 2_135_184 permit 65000:2 0:135 0:184 ip community-list standard 2_138_180 permit 65000:2 0:138 0:180 route-map calculator permit 12342 match community 2_108_230 2_115_216 2_120_207 2_135_184 2_138_180 set community 0:24840 ip community-list standard 2_17_71 permit 65000:2 0:17 0:71 route-map calculator permit 12343 match community 2_17_71 set community 0:1207 ip community-list standard 2_101_149 permit 65000:2 0:101 0:149 route-map calculator permit 12344 match community 2_101_149 set community 0:15049 ip community-list standard 2_53_233 permit 65000:2 0:53 0:233 route-map calculator permit 12345 match community 2_53_233 set community 0:12349 ip community-list standard 2_6_212 permit 65000:2 0:6 0:212 ip community-list standard 2_8_159 permit 65000:2 0:8 0:159 ip community-list standard 2_12_106 permit 65000:2 0:12 0:106 ip community-list standard 2_24_53 permit 65000:2 0:24 0:53 route-map calculator permit 12346 match community 2_6_212 2_8_159 2_12_106 2_24_53 set community 0:1272 ip community-list standard 2_137_180 permit 65000:2 0:137 0:180 route-map calculator permit 12347 match community 2_137_180 set community 0:24660 ip community-list standard 2_53_229 permit 65000:2 0:53 0:229 route-map calculator permit 12348 match community 2_53_229 set community 0:12137 ip community-list standard 2_172_226 permit 65000:2 0:172 0:226 route-map calculator permit 12349 match community 2_172_226 set community 0:38872 ip community-list standard 2_23_196 permit 65000:2 0:23 0:196 ip community-list standard 2_28_161 permit 65000:2 0:28 0:161 ip community-list standard 2_46_98 permit 65000:2 0:46 0:98 ip community-list standard 2_49_92 permit 65000:2 0:49 0:92 route-map calculator permit 12350 match community 2_23_196 2_28_161 2_46_98 2_49_92 set community 0:4508 ip community-list standard 2_143_219 permit 65000:2 0:143 0:219 route-map calculator permit 12351 match community 2_143_219 set community 0:31317 ip community-list standard 2_99_227 permit 65000:2 0:99 0:227 route-map calculator permit 12352 match community 2_99_227 set community 0:22473 ip community-list standard 2_26_230 permit 65000:2 0:26 0:230 ip community-list standard 2_46_130 permit 65000:2 0:46 0:130 ip community-list standard 2_52_115 permit 65000:2 0:52 0:115 ip community-list standard 2_65_92 permit 65000:2 0:65 0:92 route-map calculator permit 12353 match community 2_26_230 2_46_130 2_52_115 2_65_92 set community 0:5980 ip community-list standard 2_89_221 permit 65000:2 0:89 0:221 route-map calculator permit 12354 match community 2_89_221 set community 0:19669 ip community-list standard 2_102_181 permit 65000:2 0:102 0:181 route-map calculator permit 12355 match community 2_102_181 set community 0:18462 ip community-list standard 1_1_238 permit 65000:1 0:1 0:238 ip community-list standard 2_1_239 permit 65000:2 0:1 0:239 ip community-list standard 1_2_237 permit 65000:1 0:2 0:237 ip community-list standard 1_3_236 permit 65000:1 0:3 0:236 ip community-list standard 1_4_235 permit 65000:1 0:4 0:235 ip community-list standard 1_5_234 permit 65000:1 0:5 0:234 ip community-list standard 1_6_233 permit 65000:1 0:6 0:233 ip community-list standard 1_7_232 permit 65000:1 0:7 0:232 ip community-list standard 1_8_231 permit 65000:1 0:8 0:231 ip community-list standard 1_9_230 permit 65000:1 0:9 0:230 ip community-list standard 1_10_229 permit 65000:1 0:10 0:229 ip community-list standard 1_11_228 permit 65000:1 0:11 0:228 ip community-list standard 1_12_227 permit 65000:1 0:12 0:227 ip community-list standard 1_13_226 permit 65000:1 0:13 0:226 ip community-list standard 1_14_225 permit 65000:1 0:14 0:225 ip community-list standard 1_15_224 permit 65000:1 0:15 0:224 ip community-list standard 1_16_223 permit 65000:1 0:16 0:223 ip community-list standard 1_17_222 permit 65000:1 0:17 0:222 ip community-list standard 1_18_221 permit 65000:1 0:18 0:221 ip community-list standard 1_19_220 permit 65000:1 0:19 0:220 ip community-list standard 1_20_219 permit 65000:1 0:20 0:219 ip community-list standard 1_21_218 permit 65000:1 0:21 0:218 ip community-list standard 1_22_217 permit 65000:1 0:22 0:217 ip community-list standard 1_23_216 permit 65000:1 0:23 0:216 ip community-list standard 1_24_215 permit 65000:1 0:24 0:215 ip community-list standard 1_25_214 permit 65000:1 0:25 0:214 ip community-list standard 1_26_213 permit 65000:1 0:26 0:213 ip community-list standard 1_27_212 permit 65000:1 0:27 0:212 ip community-list standard 1_28_211 permit 65000:1 0:28 0:211 ip community-list standard 1_29_210 permit 65000:1 0:29 0:210 ip community-list standard 1_30_209 permit 65000:1 0:30 0:209 ip community-list standard 1_31_208 permit 65000:1 0:31 0:208 ip community-list standard 1_32_207 permit 65000:1 0:32 0:207 ip community-list standard 1_33_206 permit 65000:1 0:33 0:206 ip community-list standard 1_34_205 permit 65000:1 0:34 0:205 ip community-list standard 1_35_204 permit 65000:1 0:35 0:204 ip community-list standard 1_36_203 permit 65000:1 0:36 0:203 ip community-list standard 1_37_202 permit 65000:1 0:37 0:202 ip community-list standard 1_38_201 permit 65000:1 0:38 0:201 ip community-list standard 1_39_200 permit 65000:1 0:39 0:200 ip community-list standard 1_40_199 permit 65000:1 0:40 0:199 ip community-list standard 1_41_198 permit 65000:1 0:41 0:198 ip community-list standard 1_42_197 permit 65000:1 0:42 0:197 ip community-list standard 1_43_196 permit 65000:1 0:43 0:196 ip community-list standard 1_44_195 permit 65000:1 0:44 0:195 ip community-list standard 1_45_194 permit 65000:1 0:45 0:194 ip community-list standard 1_46_193 permit 65000:1 0:46 0:193 ip community-list standard 1_47_192 permit 65000:1 0:47 0:192 ip community-list standard 1_48_191 permit 65000:1 0:48 0:191 ip community-list standard 1_49_190 permit 65000:1 0:49 0:190 ip community-list standard 1_50_189 permit 65000:1 0:50 0:189 ip community-list standard 1_51_188 permit 65000:1 0:51 0:188 ip community-list standard 1_52_187 permit 65000:1 0:52 0:187 ip community-list standard 1_53_186 permit 65000:1 0:53 0:186 ip community-list standard 1_54_185 permit 65000:1 0:54 0:185 ip community-list standard 1_55_184 permit 65000:1 0:55 0:184 ip community-list standard 1_56_183 permit 65000:1 0:56 0:183 ip community-list standard 1_57_182 permit 65000:1 0:57 0:182 ip community-list standard 1_58_181 permit 65000:1 0:58 0:181 ip community-list standard 1_59_180 permit 65000:1 0:59 0:180 ip community-list standard 1_60_179 permit 65000:1 0:60 0:179 ip community-list standard 1_61_178 permit 65000:1 0:61 0:178 ip community-list standard 1_62_177 permit 65000:1 0:62 0:177 ip community-list standard 1_63_176 permit 65000:1 0:63 0:176 ip community-list standard 1_64_175 permit 65000:1 0:64 0:175 ip community-list standard 1_65_174 permit 65000:1 0:65 0:174 ip community-list standard 1_66_173 permit 65000:1 0:66 0:173 ip community-list standard 1_67_172 permit 65000:1 0:67 0:172 ip community-list standard 1_68_171 permit 65000:1 0:68 0:171 ip community-list standard 1_69_170 permit 65000:1 0:69 0:170 ip community-list standard 1_70_169 permit 65000:1 0:70 0:169 ip community-list standard 1_71_168 permit 65000:1 0:71 0:168 ip community-list standard 1_72_167 permit 65000:1 0:72 0:167 ip community-list standard 1_73_166 permit 65000:1 0:73 0:166 ip community-list standard 1_74_165 permit 65000:1 0:74 0:165 ip community-list standard 1_75_164 permit 65000:1 0:75 0:164 ip community-list standard 1_76_163 permit 65000:1 0:76 0:163 ip community-list standard 1_77_162 permit 65000:1 0:77 0:162 ip community-list standard 1_78_161 permit 65000:1 0:78 0:161 ip community-list standard 1_79_160 permit 65000:1 0:79 0:160 ip community-list standard 1_80_159 permit 65000:1 0:80 0:159 ip community-list standard 1_81_158 permit 65000:1 0:81 0:158 ip community-list standard 1_82_157 permit 65000:1 0:82 0:157 ip community-list standard 1_83_156 permit 65000:1 0:83 0:156 ip community-list standard 1_84_155 permit 65000:1 0:84 0:155 ip community-list standard 1_85_154 permit 65000:1 0:85 0:154 ip community-list standard 1_86_153 permit 65000:1 0:86 0:153 ip community-list standard 1_87_152 permit 65000:1 0:87 0:152 ip community-list standard 1_88_151 permit 65000:1 0:88 0:151 ip community-list standard 1_89_150 permit 65000:1 0:89 0:150 ip community-list standard 1_90_149 permit 65000:1 0:90 0:149 ip community-list standard 1_91_148 permit 65000:1 0:91 0:148 ip community-list standard 1_92_147 permit 65000:1 0:92 0:147 ip community-list standard 1_93_146 permit 65000:1 0:93 0:146 ip community-list standard 1_94_145 permit 65000:1 0:94 0:145 ip community-list standard 1_95_144 permit 65000:1 0:95 0:144 ip community-list standard 1_96_143 permit 65000:1 0:96 0:143 ip community-list standard 1_97_142 permit 65000:1 0:97 0:142 ip community-list standard 1_98_141 permit 65000:1 0:98 0:141 ip community-list standard 1_99_140 permit 65000:1 0:99 0:140 ip community-list standard 1_100_139 permit 65000:1 0:100 0:139 ip community-list standard 1_101_138 permit 65000:1 0:101 0:138 ip community-list standard 1_102_137 permit 65000:1 0:102 0:137 ip community-list standard 1_103_136 permit 65000:1 0:103 0:136 ip community-list standard 1_104_135 permit 65000:1 0:104 0:135 ip community-list standard 1_105_134 permit 65000:1 0:105 0:134 ip community-list standard 1_106_133 permit 65000:1 0:106 0:133 ip community-list standard 1_107_132 permit 65000:1 0:107 0:132 ip community-list standard 1_108_131 permit 65000:1 0:108 0:131 ip community-list standard 1_109_130 permit 65000:1 0:109 0:130 ip community-list standard 1_110_129 permit 65000:1 0:110 0:129 ip community-list standard 1_111_128 permit 65000:1 0:111 0:128 ip community-list standard 1_112_127 permit 65000:1 0:112 0:127 ip community-list standard 1_113_126 permit 65000:1 0:113 0:126 ip community-list standard 1_114_125 permit 65000:1 0:114 0:125 ip community-list standard 1_115_124 permit 65000:1 0:115 0:124 ip community-list standard 1_116_123 permit 65000:1 0:116 0:123 ip community-list standard 1_117_122 permit 65000:1 0:117 0:122 ip community-list standard 1_118_121 permit 65000:1 0:118 0:121 ip community-list standard 1_119_120 permit 65000:1 0:119 0:120 ip community-list expanded c239 permit 1 ^65000:4_0:239_0:1$ ip community-list expanded c239 permit 2 ^65000:3_0:240_0:1$ ip community-list expanded c239 permit 3 ^65000:3_0:241_0:2$ ip community-list expanded c239 permit 4 ^65000:3_0:242_0:3$ ip community-list expanded c239 permit 5 ^65000:3_0:243_0:4$ ip community-list expanded c239 permit 6 ^65000:3_0:244_0:5$ ip community-list expanded c239 permit 7 ^65000:3_0:245_0:6$ ip community-list expanded c239 permit 8 ^65000:3_0:246_0:7$ ip community-list expanded c239 permit 9 ^65000:3_0:247_0:8$ ip community-list expanded c239 permit 10 ^65000:3_0:248_0:9$ ip community-list expanded c239 permit 11 ^65000:3_0:249_0:10$ ip community-list expanded c239 permit 12 ^65000:3_0:250_0:11$ ip community-list expanded c239 permit 13 ^65000:3_0:251_0:12$ ip community-list expanded c239 permit 14 ^65000:3_0:252_0:13$ ip community-list expanded c239 permit 15 ^65000:3_0:253_0:14$ ip community-list expanded c239 permit 16 ^65000:3_0:254_0:15$ ip community-list expanded c239 permit 17 ^65000:3_0:255_0:16$ ip community-list expanded c239 permit 18 ^65000:3_0:256_0:17$ route-map calculator permit 12356 match community 1_1_238 2_1_239 1_2_237 1_3_236 1_4_235 set community 0:239 route-map calculator permit 12357 match community 1_5_234 1_6_233 1_7_232 1_8_231 1_9_230 set community 0:239 route-map calculator permit 12358 match community 1_10_229 1_11_228 1_12_227 1_13_226 1_14_225 set community 0:239 route-map calculator permit 12359 match community 1_15_224 1_16_223 1_17_222 1_18_221 1_19_220 set community 0:239 route-map calculator permit 12360 match community 1_20_219 1_21_218 1_22_217 1_23_216 1_24_215 set community 0:239 route-map calculator permit 12361 match community 1_25_214 1_26_213 1_27_212 1_28_211 1_29_210 set community 0:239 route-map calculator permit 12362 match community 1_30_209 1_31_208 1_32_207 1_33_206 1_34_205 set community 0:239 route-map calculator permit 12363 match community 1_35_204 1_36_203 1_37_202 1_38_201 1_39_200 set community 0:239 route-map calculator permit 12364 match community 1_40_199 1_41_198 1_42_197 1_43_196 1_44_195 set community 0:239 route-map calculator permit 12365 match community 1_45_194 1_46_193 1_47_192 1_48_191 1_49_190 set community 0:239 route-map calculator permit 12366 match community 1_50_189 1_51_188 1_52_187 1_53_186 1_54_185 set community 0:239 route-map calculator permit 12367 match community 1_55_184 1_56_183 1_57_182 1_58_181 1_59_180 set community 0:239 route-map calculator permit 12368 match community 1_60_179 1_61_178 1_62_177 1_63_176 1_64_175 set community 0:239 route-map calculator permit 12369 match community 1_65_174 1_66_173 1_67_172 1_68_171 1_69_170 set community 0:239 route-map calculator permit 12370 match community 1_70_169 1_71_168 1_72_167 1_73_166 1_74_165 set community 0:239 route-map calculator permit 12371 match community 1_75_164 1_76_163 1_77_162 1_78_161 1_79_160 set community 0:239 route-map calculator permit 12372 match community 1_80_159 1_81_158 1_82_157 1_83_156 1_84_155 set community 0:239 route-map calculator permit 12373 match community 1_85_154 1_86_153 1_87_152 1_88_151 1_89_150 set community 0:239 route-map calculator permit 12374 match community 1_90_149 1_91_148 1_92_147 1_93_146 1_94_145 set community 0:239 route-map calculator permit 12375 match community 1_95_144 1_96_143 1_97_142 1_98_141 1_99_140 set community 0:239 route-map calculator permit 12376 match community 1_100_139 1_101_138 1_102_137 1_103_136 1_104_135 set community 0:239 route-map calculator permit 12377 match community 1_105_134 1_106_133 1_107_132 1_108_131 1_109_130 set community 0:239 route-map calculator permit 12378 match community 1_110_129 1_111_128 1_112_127 1_113_126 1_114_125 set community 0:239 route-map calculator permit 12379 match community 1_115_124 1_116_123 1_117_122 1_118_121 1_119_120 set community 0:239 route-map calculator permit 12380 match community c4_239_1 c3_240_1 c3_241_2 c3_242_3 c3_243_4 set community 0:239 route-map calculator permit 12381 match community c3_244_5 c3_245_6 c3_246_7 c3_247_8 c3_248_9 set community 0:239 route-map calculator permit 12382 match community c3_249_10 c3_250_11 c3_251_12 c3_252_13 c3_253_14 set community 0:239 route-map calculator permit 12383 match community c3_254_15 c3_255_16 c3_256_17 set community 0:239 ip community-list standard 2_131_236 permit 65000:2 0:131 0:236 route-map calculator permit 12384 match community 2_131_236 set community 0:30916 ip community-list standard 2_40_229 permit 65000:2 0:40 0:229 route-map calculator permit 12385 match community 2_40_229 set community 0:9160 ip community-list standard 2_162_253 permit 65000:2 0:162 0:253 ip community-list standard 2_198_207 permit 65000:2 0:198 0:207 route-map calculator permit 12386 match community 2_162_253 2_198_207 set community 0:40986 ip community-list standard 2_49_79 permit 65000:2 0:49 0:79 route-map calculator permit 12387 match community 2_49_79 set community 0:3871 ip community-list standard 2_107_179 permit 65000:2 0:107 0:179 route-map calculator permit 12388 match community 2_107_179 set community 0:19153 ip community-list standard 2_53_109 permit 65000:2 0:53 0:109 route-map calculator permit 12389 match community 2_53_109 set community 0:5777 ip community-list standard 2_205_245 permit 65000:2 0:205 0:245 route-map calculator permit 12390 match community 2_205_245 set community 0:50225 ip community-list standard 2_26_173 permit 65000:2 0:26 0:173 route-map calculator permit 12391 match community 2_26_173 set community 0:4498 ip community-list standard 2_185_217 permit 65000:2 0:185 0:217 route-map calculator permit 12392 match community 2_185_217 set community 0:40145 ip community-list standard 2_148_157 permit 65000:2 0:148 0:157 route-map calculator permit 12393 match community 2_148_157 set community 0:23236 ip community-list standard 2_95_205 permit 65000:2 0:95 0:205 route-map calculator permit 12394 match community 2_95_205 set community 0:19475 ip community-list standard 2_75_203 permit 65000:2 0:75 0:203 ip community-list standard 2_87_175 permit 65000:2 0:87 0:175 ip community-list standard 2_105_145 permit 65000:2 0:105 0:145 route-map calculator permit 12395 match community 2_75_203 2_87_175 2_105_145 set community 0:15225 ip community-list standard 2_50_243 permit 65000:2 0:50 0:243 ip community-list standard 2_54_225 permit 65000:2 0:54 0:225 ip community-list standard 2_75_162 permit 65000:2 0:75 0:162 ip community-list standard 2_81_150 permit 65000:2 0:81 0:150 ip community-list standard 2_90_135 permit 65000:2 0:90 0:135 route-map calculator permit 12396 match community 2_50_243 2_54_225 2_75_162 2_81_150 2_90_135 set community 0:12150 ip community-list standard 2_164_226 permit 65000:2 0:164 0:226 route-map calculator permit 12397 match community 2_164_226 set community 0:37064 ip community-list standard 2_137_181 permit 65000:2 0:137 0:181 route-map calculator permit 12398 match community 2_137_181 set community 0:24797 ip community-list standard 2_32_211 permit 65000:2 0:32 0:211 route-map calculator permit 12399 match community 2_32_211 set community 0:6752 ip community-list standard 2_117_225 permit 65000:2 0:117 0:225 ip community-list standard 2_135_195 permit 65000:2 0:135 0:195 route-map calculator permit 12400 match community 2_117_225 2_135_195 set community 0:26325 ip community-list standard 2_129_161 permit 65000:2 0:129 0:161 route-map calculator permit 12401 match community 2_129_161 set community 0:20769 ip community-list standard 2_151_155 permit 65000:2 0:151 0:155 route-map calculator permit 12402 match community 2_151_155 set community 0:23405 ip community-list standard 2_193_250 permit 65000:2 0:193 0:250 route-map calculator permit 12403 match community 2_193_250 set community 0:48250 ip community-list standard 2_153_228 permit 65000:2 0:153 0:228 ip community-list standard 2_171_204 permit 65000:2 0:171 0:204 route-map calculator permit 12404 match community 2_153_228 2_171_204 set community 0:34884 ip community-list standard 2_123_250 permit 65000:2 0:123 0:250 ip community-list standard 2_125_246 permit 65000:2 0:125 0:246 ip community-list standard 2_150_205 permit 65000:2 0:150 0:205 route-map calculator permit 12405 match community 2_123_250 2_125_246 2_150_205 set community 0:30750 ip community-list standard 2_125_173 permit 65000:2 0:125 0:173 route-map calculator permit 12406 match community 2_125_173 set community 0:21625 ip community-list standard 2_4_244 permit 65000:2 0:4 0:244 ip community-list standard 2_8_122 permit 65000:2 0:8 0:122 ip community-list standard 2_16_61 permit 65000:2 0:16 0:61 route-map calculator permit 12407 match community 2_4_244 2_8_122 2_16_61 set community 0:976 ip community-list standard 2_39_214 permit 65000:2 0:39 0:214 ip community-list standard 2_78_107 permit 65000:2 0:78 0:107 route-map calculator permit 12408 match community 2_39_214 2_78_107 set community 0:8346 ip community-list standard 2_34_241 permit 65000:2 0:34 0:241 route-map calculator permit 12409 match community 2_34_241 set community 0:8194 ip community-list standard 2_70_247 permit 65000:2 0:70 0:247 ip community-list standard 2_91_190 permit 65000:2 0:91 0:190 ip community-list standard 2_95_182 permit 65000:2 0:95 0:182 ip community-list standard 2_130_133 permit 65000:2 0:130 0:133 route-map calculator permit 12410 match community 2_70_247 2_91_190 2_95_182 2_130_133 set community 0:17290 ip community-list standard 2_29_107 permit 65000:2 0:29 0:107 route-map calculator permit 12411 match community 2_29_107 set community 0:3103 ip community-list standard 2_21_197 permit 65000:2 0:21 0:197 route-map calculator permit 12412 match community 2_21_197 set community 0:4137 ip community-list standard 2_168_226 permit 65000:2 0:168 0:226 route-map calculator permit 12413 match community 2_168_226 set community 0:37968 ip community-list standard 2_79_119 permit 65000:2 0:79 0:119 route-map calculator permit 12414 match community 2_79_119 set community 0:9401 ip community-list standard 2_116_205 permit 65000:2 0:116 0:205 ip community-list standard 2_145_164 permit 65000:2 0:145 0:164 route-map calculator permit 12415 match community 2_116_205 2_145_164 set community 0:23780 ip community-list standard 2_174_250 permit 65000:2 0:174 0:250 route-map calculator permit 12416 match community 2_174_250 set community 0:43500 ip community-list standard 2_131_248 permit 65000:2 0:131 0:248 route-map calculator permit 12417 match community 2_131_248 set community 0:32488 ip community-list standard 2_214_218 permit 65000:2 0:214 0:218 route-map calculator permit 12418 match community 2_214_218 set community 0:46652 ip community-list standard 1_1_173 permit 65000:1 0:1 0:173 ip community-list standard 2_1_174 permit 65000:2 0:1 0:174 ip community-list standard 2_2_87 permit 65000:2 0:2 0:87 ip community-list standard 1_2_172 permit 65000:1 0:2 0:172 ip community-list standard 2_3_58 permit 65000:2 0:3 0:58 ip community-list standard 1_3_171 permit 65000:1 0:3 0:171 ip community-list standard 1_4_170 permit 65000:1 0:4 0:170 ip community-list standard 1_5_169 permit 65000:1 0:5 0:169 ip community-list standard 2_6_29 permit 65000:2 0:6 0:29 ip community-list standard 1_6_168 permit 65000:1 0:6 0:168 ip community-list standard 1_7_167 permit 65000:1 0:7 0:167 ip community-list standard 1_8_166 permit 65000:1 0:8 0:166 ip community-list standard 1_9_165 permit 65000:1 0:9 0:165 ip community-list standard 1_10_164 permit 65000:1 0:10 0:164 ip community-list standard 1_11_163 permit 65000:1 0:11 0:163 ip community-list standard 1_12_162 permit 65000:1 0:12 0:162 ip community-list standard 1_13_161 permit 65000:1 0:13 0:161 ip community-list standard 1_14_160 permit 65000:1 0:14 0:160 ip community-list standard 1_15_159 permit 65000:1 0:15 0:159 ip community-list standard 1_16_158 permit 65000:1 0:16 0:158 ip community-list standard 1_17_157 permit 65000:1 0:17 0:157 ip community-list standard 1_18_156 permit 65000:1 0:18 0:156 ip community-list standard 1_19_155 permit 65000:1 0:19 0:155 ip community-list standard 1_20_154 permit 65000:1 0:20 0:154 ip community-list standard 1_21_153 permit 65000:1 0:21 0:153 ip community-list standard 1_22_152 permit 65000:1 0:22 0:152 ip community-list standard 1_23_151 permit 65000:1 0:23 0:151 ip community-list standard 1_24_150 permit 65000:1 0:24 0:150 ip community-list standard 1_25_149 permit 65000:1 0:25 0:149 ip community-list standard 1_26_148 permit 65000:1 0:26 0:148 ip community-list standard 1_27_147 permit 65000:1 0:27 0:147 ip community-list standard 1_28_146 permit 65000:1 0:28 0:146 ip community-list standard 1_29_145 permit 65000:1 0:29 0:145 ip community-list standard 1_30_144 permit 65000:1 0:30 0:144 ip community-list standard 1_31_143 permit 65000:1 0:31 0:143 ip community-list standard 1_32_142 permit 65000:1 0:32 0:142 ip community-list standard 1_33_141 permit 65000:1 0:33 0:141 ip community-list standard 1_34_140 permit 65000:1 0:34 0:140 ip community-list standard 1_35_139 permit 65000:1 0:35 0:139 ip community-list standard 1_36_138 permit 65000:1 0:36 0:138 ip community-list standard 1_37_137 permit 65000:1 0:37 0:137 ip community-list standard 1_38_136 permit 65000:1 0:38 0:136 ip community-list standard 1_39_135 permit 65000:1 0:39 0:135 ip community-list standard 1_40_134 permit 65000:1 0:40 0:134 ip community-list standard 1_41_133 permit 65000:1 0:41 0:133 ip community-list standard 1_42_132 permit 65000:1 0:42 0:132 ip community-list standard 1_43_131 permit 65000:1 0:43 0:131 ip community-list standard 1_44_130 permit 65000:1 0:44 0:130 ip community-list standard 1_45_129 permit 65000:1 0:45 0:129 ip community-list standard 1_46_128 permit 65000:1 0:46 0:128 ip community-list standard 1_47_127 permit 65000:1 0:47 0:127 ip community-list standard 1_48_126 permit 65000:1 0:48 0:126 ip community-list standard 1_49_125 permit 65000:1 0:49 0:125 ip community-list standard 1_50_124 permit 65000:1 0:50 0:124 ip community-list standard 1_51_123 permit 65000:1 0:51 0:123 ip community-list standard 1_52_122 permit 65000:1 0:52 0:122 ip community-list standard 1_53_121 permit 65000:1 0:53 0:121 ip community-list standard 1_54_120 permit 65000:1 0:54 0:120 ip community-list standard 1_55_119 permit 65000:1 0:55 0:119 ip community-list standard 1_56_118 permit 65000:1 0:56 0:118 ip community-list standard 1_57_117 permit 65000:1 0:57 0:117 ip community-list standard 1_58_116 permit 65000:1 0:58 0:116 ip community-list standard 1_59_115 permit 65000:1 0:59 0:115 ip community-list standard 1_60_114 permit 65000:1 0:60 0:114 ip community-list standard 1_61_113 permit 65000:1 0:61 0:113 ip community-list standard 1_62_112 permit 65000:1 0:62 0:112 ip community-list standard 1_63_111 permit 65000:1 0:63 0:111 ip community-list standard 1_64_110 permit 65000:1 0:64 0:110 ip community-list standard 1_65_109 permit 65000:1 0:65 0:109 ip community-list standard 1_66_108 permit 65000:1 0:66 0:108 ip community-list standard 1_67_107 permit 65000:1 0:67 0:107 ip community-list standard 1_68_106 permit 65000:1 0:68 0:106 ip community-list standard 1_69_105 permit 65000:1 0:69 0:105 ip community-list standard 1_70_104 permit 65000:1 0:70 0:104 ip community-list standard 1_71_103 permit 65000:1 0:71 0:103 ip community-list standard 1_72_102 permit 65000:1 0:72 0:102 ip community-list standard 1_73_101 permit 65000:1 0:73 0:101 ip community-list standard 1_74_100 permit 65000:1 0:74 0:100 ip community-list standard 1_75_99 permit 65000:1 0:75 0:99 ip community-list standard 1_76_98 permit 65000:1 0:76 0:98 ip community-list standard 1_77_97 permit 65000:1 0:77 0:97 ip community-list standard 1_78_96 permit 65000:1 0:78 0:96 ip community-list standard 1_79_95 permit 65000:1 0:79 0:95 ip community-list standard 1_80_94 permit 65000:1 0:80 0:94 ip community-list standard 1_81_93 permit 65000:1 0:81 0:93 ip community-list standard 1_82_92 permit 65000:1 0:82 0:92 ip community-list standard 1_83_91 permit 65000:1 0:83 0:91 ip community-list standard 1_84_90 permit 65000:1 0:84 0:90 ip community-list standard 1_85_89 permit 65000:1 0:85 0:89 ip community-list standard 1_86_88 permit 65000:1 0:86 0:88 ip community-list standard 1_87_87 permit 65000:1 0:87 0:87 ip community-list expanded c174 permit 1 ^65000:4_0:174_0:1$ ip community-list expanded c174 permit 2 ^65000:3_0:175_0:1$ ip community-list expanded c174 permit 3 ^65000:3_0:176_0:2$ ip community-list expanded c174 permit 4 ^65000:3_0:177_0:3$ ip community-list expanded c174 permit 5 ^65000:3_0:178_0:4$ ip community-list expanded c174 permit 6 ^65000:3_0:179_0:5$ ip community-list expanded c174 permit 7 ^65000:3_0:180_0:6$ ip community-list expanded c174 permit 8 ^65000:3_0:181_0:7$ ip community-list expanded c174 permit 9 ^65000:3_0:182_0:8$ ip community-list expanded c174 permit 10 ^65000:3_0:183_0:9$ ip community-list expanded c174 permit 11 ^65000:3_0:184_0:10$ ip community-list expanded c174 permit 12 ^65000:3_0:185_0:11$ ip community-list expanded c174 permit 13 ^65000:3_0:186_0:12$ ip community-list expanded c174 permit 14 ^65000:3_0:187_0:13$ ip community-list expanded c174 permit 15 ^65000:3_0:188_0:14$ ip community-list expanded c174 permit 16 ^65000:3_0:189_0:15$ ip community-list expanded c174 permit 17 ^65000:3_0:190_0:16$ ip community-list expanded c174 permit 18 ^65000:3_0:191_0:17$ ip community-list expanded c174 permit 19 ^65000:3_0:192_0:18$ ip community-list expanded c174 permit 20 ^65000:3_0:193_0:19$ ip community-list expanded c174 permit 21 ^65000:3_0:194_0:20$ ip community-list expanded c174 permit 22 ^65000:3_0:195_0:21$ ip community-list expanded c174 permit 23 ^65000:3_0:196_0:22$ ip community-list expanded c174 permit 24 ^65000:3_0:197_0:23$ ip community-list expanded c174 permit 25 ^65000:3_0:198_0:24$ ip community-list expanded c174 permit 26 ^65000:3_0:199_0:25$ ip community-list expanded c174 permit 27 ^65000:3_0:200_0:26$ ip community-list expanded c174 permit 28 ^65000:3_0:201_0:27$ ip community-list expanded c174 permit 29 ^65000:3_0:202_0:28$ ip community-list expanded c174 permit 30 ^65000:3_0:203_0:29$ ip community-list expanded c174 permit 31 ^65000:3_0:204_0:30$ ip community-list expanded c174 permit 32 ^65000:3_0:205_0:31$ ip community-list expanded c174 permit 33 ^65000:3_0:206_0:32$ ip community-list expanded c174 permit 34 ^65000:3_0:207_0:33$ ip community-list expanded c174 permit 35 ^65000:3_0:208_0:34$ ip community-list expanded c174 permit 36 ^65000:3_0:209_0:35$ ip community-list expanded c174 permit 37 ^65000:3_0:210_0:36$ ip community-list expanded c174 permit 38 ^65000:3_0:211_0:37$ ip community-list expanded c174 permit 39 ^65000:3_0:212_0:38$ ip community-list expanded c174 permit 40 ^65000:3_0:213_0:39$ ip community-list expanded c174 permit 41 ^65000:3_0:214_0:40$ ip community-list expanded c174 permit 42 ^65000:3_0:215_0:41$ ip community-list expanded c174 permit 43 ^65000:3_0:216_0:42$ ip community-list expanded c174 permit 44 ^65000:3_0:217_0:43$ ip community-list expanded c174 permit 45 ^65000:3_0:218_0:44$ ip community-list expanded c174 permit 46 ^65000:3_0:219_0:45$ ip community-list expanded c174 permit 47 ^65000:3_0:220_0:46$ ip community-list expanded c174 permit 48 ^65000:3_0:221_0:47$ ip community-list expanded c174 permit 49 ^65000:3_0:222_0:48$ ip community-list expanded c174 permit 50 ^65000:3_0:223_0:49$ ip community-list expanded c174 permit 51 ^65000:3_0:224_0:50$ ip community-list expanded c174 permit 52 ^65000:3_0:225_0:51$ ip community-list expanded c174 permit 53 ^65000:3_0:226_0:52$ ip community-list expanded c174 permit 54 ^65000:3_0:227_0:53$ ip community-list expanded c174 permit 55 ^65000:3_0:228_0:54$ ip community-list expanded c174 permit 56 ^65000:3_0:229_0:55$ ip community-list expanded c174 permit 57 ^65000:3_0:230_0:56$ ip community-list expanded c174 permit 58 ^65000:3_0:231_0:57$ ip community-list expanded c174 permit 59 ^65000:3_0:232_0:58$ ip community-list expanded c174 permit 60 ^65000:3_0:233_0:59$ ip community-list expanded c174 permit 61 ^65000:3_0:234_0:60$ ip community-list expanded c174 permit 62 ^65000:3_0:235_0:61$ ip community-list expanded c174 permit 63 ^65000:3_0:236_0:62$ ip community-list expanded c174 permit 64 ^65000:3_0:237_0:63$ ip community-list expanded c174 permit 65 ^65000:3_0:238_0:64$ ip community-list expanded c174 permit 66 ^65000:3_0:239_0:65$ ip community-list expanded c174 permit 67 ^65000:3_0:240_0:66$ ip community-list expanded c174 permit 68 ^65000:3_0:241_0:67$ ip community-list expanded c174 permit 69 ^65000:3_0:242_0:68$ ip community-list expanded c174 permit 70 ^65000:3_0:243_0:69$ ip community-list expanded c174 permit 71 ^65000:3_0:244_0:70$ ip community-list expanded c174 permit 72 ^65000:3_0:245_0:71$ ip community-list expanded c174 permit 73 ^65000:3_0:246_0:72$ ip community-list expanded c174 permit 74 ^65000:3_0:247_0:73$ ip community-list expanded c174 permit 75 ^65000:3_0:248_0:74$ ip community-list expanded c174 permit 76 ^65000:3_0:249_0:75$ ip community-list expanded c174 permit 77 ^65000:3_0:250_0:76$ ip community-list expanded c174 permit 78 ^65000:3_0:251_0:77$ ip community-list expanded c174 permit 79 ^65000:3_0:252_0:78$ ip community-list expanded c174 permit 80 ^65000:3_0:253_0:79$ ip community-list expanded c174 permit 81 ^65000:3_0:254_0:80$ ip community-list expanded c174 permit 82 ^65000:3_0:255_0:81$ ip community-list expanded c174 permit 83 ^65000:3_0:256_0:82$ route-map calculator permit 12419 match community 1_1_173 2_1_174 2_2_87 1_2_172 2_3_58 set community 0:174 route-map calculator permit 12420 match community 1_3_171 1_4_170 1_5_169 2_6_29 1_6_168 set community 0:174 route-map calculator permit 12421 match community 1_7_167 1_8_166 1_9_165 1_10_164 1_11_163 set community 0:174 route-map calculator permit 12422 match community 1_12_162 1_13_161 1_14_160 1_15_159 1_16_158 set community 0:174 route-map calculator permit 12423 match community 1_17_157 1_18_156 1_19_155 1_20_154 1_21_153 set community 0:174 route-map calculator permit 12424 match community 1_22_152 1_23_151 1_24_150 1_25_149 1_26_148 set community 0:174 route-map calculator permit 12425 match community 1_27_147 1_28_146 1_29_145 1_30_144 1_31_143 set community 0:174 route-map calculator permit 12426 match community 1_32_142 1_33_141 1_34_140 1_35_139 1_36_138 set community 0:174 route-map calculator permit 12427 match community 1_37_137 1_38_136 1_39_135 1_40_134 1_41_133 set community 0:174 route-map calculator permit 12428 match community 1_42_132 1_43_131 1_44_130 1_45_129 1_46_128 set community 0:174 route-map calculator permit 12429 match community 1_47_127 1_48_126 1_49_125 1_50_124 1_51_123 set community 0:174 route-map calculator permit 12430 match community 1_52_122 1_53_121 1_54_120 1_55_119 1_56_118 set community 0:174 route-map calculator permit 12431 match community 1_57_117 1_58_116 1_59_115 1_60_114 1_61_113 set community 0:174 route-map calculator permit 12432 match community 1_62_112 1_63_111 1_64_110 1_65_109 1_66_108 set community 0:174 route-map calculator permit 12433 match community 1_67_107 1_68_106 1_69_105 1_70_104 1_71_103 set community 0:174 route-map calculator permit 12434 match community 1_72_102 1_73_101 1_74_100 1_75_99 1_76_98 set community 0:174 route-map calculator permit 12435 match community 1_77_97 1_78_96 1_79_95 1_80_94 1_81_93 set community 0:174 route-map calculator permit 12436 match community 1_82_92 1_83_91 1_84_90 1_85_89 1_86_88 set community 0:174 route-map calculator permit 12437 match community 1_87_87 c4_174_1 c3_175_1 c3_176_2 c3_177_3 set community 0:174 route-map calculator permit 12438 match community c3_178_4 c3_179_5 c3_180_6 c3_181_7 c3_182_8 set community 0:174 route-map calculator permit 12439 match community c3_183_9 c3_184_10 c3_185_11 c3_186_12 c3_187_13 set community 0:174 route-map calculator permit 12440 match community c3_188_14 c3_189_15 c3_190_16 c3_191_17 c3_192_18 set community 0:174 route-map calculator permit 12441 match community c3_193_19 c3_194_20 c3_195_21 c3_196_22 c3_197_23 set community 0:174 route-map calculator permit 12442 match community c3_198_24 c3_199_25 c3_200_26 c3_201_27 c3_202_28 set community 0:174 route-map calculator permit 12443 match community c3_203_29 c3_204_30 c3_205_31 c3_206_32 c3_207_33 set community 0:174 route-map calculator permit 12444 match community c3_208_34 c3_209_35 c3_210_36 c3_211_37 c3_212_38 set community 0:174 route-map calculator permit 12445 match community c3_213_39 c3_214_40 c3_215_41 c3_216_42 c3_217_43 set community 0:174 route-map calculator permit 12446 match community c3_218_44 c3_219_45 c3_220_46 c3_221_47 c3_222_48 set community 0:174 route-map calculator permit 12447 match community c3_223_49 c3_224_50 c3_225_51 c3_226_52 c3_227_53 set community 0:174 route-map calculator permit 12448 match community c3_228_54 c3_229_55 c3_230_56 c3_231_57 c3_232_58 set community 0:174 route-map calculator permit 12449 match community c3_233_59 c3_234_60 c3_235_61 c3_236_62 c3_237_63 set community 0:174 route-map calculator permit 12450 match community c3_238_64 c3_239_65 c3_240_66 c3_241_67 c3_242_68 set community 0:174 route-map calculator permit 12451 match community c3_243_69 c3_244_70 c3_245_71 c3_246_72 c3_247_73 set community 0:174 route-map calculator permit 12452 match community c3_248_74 c3_249_75 c3_250_76 c3_251_77 c3_252_78 set community 0:174 route-map calculator permit 12453 match community c3_253_79 c3_254_80 c3_255_81 c3_256_82 set community 0:174 ip community-list standard 2_167_247 permit 65000:2 0:167 0:247 route-map calculator permit 12454 match community 2_167_247 set community 0:41249 ip community-list standard 2_62_193 permit 65000:2 0:62 0:193 route-map calculator permit 12455 match community 2_62_193 set community 0:11966 ip community-list standard 2_21_241 permit 65000:2 0:21 0:241 route-map calculator permit 12456 match community 2_21_241 set community 0:5061 ip community-list standard 2_83_235 permit 65000:2 0:83 0:235 route-map calculator permit 12457 match community 2_83_235 set community 0:19505 ip community-list standard 2_157_168 permit 65000:2 0:157 0:168 route-map calculator permit 12458 match community 2_157_168 set community 0:26376 ip community-list standard 2_77_143 permit 65000:2 0:77 0:143 ip community-list standard 2_91_121 permit 65000:2 0:91 0:121 route-map calculator permit 12459 match community 2_77_143 2_91_121 set community 0:11011 ip community-list standard 2_25_235 permit 65000:2 0:25 0:235 ip community-list standard 2_47_125 permit 65000:2 0:47 0:125 route-map calculator permit 12460 match community 2_25_235 2_47_125 set community 0:5875 ip community-list standard 2_114_231 permit 65000:2 0:114 0:231 ip community-list standard 2_126_209 permit 65000:2 0:126 0:209 ip community-list standard 2_133_198 permit 65000:2 0:133 0:198 ip community-list standard 2_154_171 permit 65000:2 0:154 0:171 route-map calculator permit 12461 match community 2_114_231 2_126_209 2_133_198 2_154_171 set community 0:26334 ip community-list standard 2_136_136 permit 65000:2 0:136 0:136 route-map calculator permit 12462 match community 2_136_136 set community 0:18496 ip community-list standard 2_13_249 permit 65000:2 0:13 0:249 ip community-list standard 2_39_83 permit 65000:2 0:39 0:83 route-map calculator permit 12463 match community 2_13_249 2_39_83 set community 0:3237 ip community-list standard 2_13_208 permit 65000:2 0:13 0:208 ip community-list standard 2_16_169 permit 65000:2 0:16 0:169 ip community-list standard 2_26_104 permit 65000:2 0:26 0:104 ip community-list standard 2_52_52 permit 65000:2 0:52 0:52 route-map calculator permit 12464 match community 2_13_208 2_16_169 2_26_104 2_52_52 set community 0:2704 ip community-list standard 2_11_179 permit 65000:2 0:11 0:179 route-map calculator permit 12465 match community 2_11_179 set community 0:1969 ip community-list standard 2_179_249 permit 65000:2 0:179 0:249 route-map calculator permit 12466 match community 2_179_249 set community 0:44571 ip community-list standard 2_47_94 permit 65000:2 0:47 0:94 route-map calculator permit 12467 match community 2_47_94 set community 0:4418 ip community-list standard 2_13_230 permit 65000:2 0:13 0:230 ip community-list standard 2_23_130 permit 65000:2 0:23 0:130 ip community-list standard 2_26_115 permit 65000:2 0:26 0:115 ip community-list standard 2_46_65 permit 65000:2 0:46 0:65 route-map calculator permit 12468 match community 2_13_230 2_23_130 2_26_115 2_46_65 set community 0:2990 ip community-list standard 2_67_246 permit 65000:2 0:67 0:246 ip community-list standard 2_82_201 permit 65000:2 0:82 0:201 ip community-list standard 2_123_134 permit 65000:2 0:123 0:134 route-map calculator permit 12469 match community 2_67_246 2_82_201 2_123_134 set community 0:16482 ip community-list standard 2_91_137 permit 65000:2 0:91 0:137 route-map calculator permit 12470 match community 2_91_137 set community 0:12467 ip community-list standard 2_20_256 permit 65000:2 0:20 0:256 ip community-list standard 2_32_160 permit 65000:2 0:32 0:160 ip community-list standard 2_40_128 permit 65000:2 0:40 0:128 ip community-list standard 2_64_80 permit 65000:2 0:64 0:80 route-map calculator permit 12471 match community 2_20_256 2_32_160 2_40_128 2_64_80 set community 0:5120 ip community-list standard 2_71_79 permit 65000:2 0:71 0:79 route-map calculator permit 12472 match community 2_71_79 set community 0:5609 ip community-list standard 2_92_181 permit 65000:2 0:92 0:181 route-map calculator permit 12473 match community 2_92_181 set community 0:16652 ip community-list standard 2_164_220 permit 65000:2 0:164 0:220 ip community-list standard 2_176_205 permit 65000:2 0:176 0:205 route-map calculator permit 12474 match community 2_164_220 2_176_205 set community 0:36080 ip community-list standard 2_25_232 permit 65000:2 0:25 0:232 ip community-list standard 2_29_200 permit 65000:2 0:29 0:200 ip community-list standard 2_40_145 permit 65000:2 0:40 0:145 ip community-list standard 2_50_116 permit 65000:2 0:50 0:116 ip community-list standard 2_58_100 permit 65000:2 0:58 0:100 route-map calculator permit 12475 match community 2_25_232 2_29_200 2_40_145 2_50_116 2_58_100 set community 0:5800 ip community-list standard 2_7_166 permit 65000:2 0:7 0:166 ip community-list standard 2_14_83 permit 65000:2 0:14 0:83 route-map calculator permit 12476 match community 2_7_166 2_14_83 set community 0:1162 ip community-list standard 2_135_211 permit 65000:2 0:135 0:211 route-map calculator permit 12477 match community 2_135_211 set community 0:28485 ip community-list standard 2_213_222 permit 65000:2 0:213 0:222 route-map calculator permit 12478 match community 2_213_222 set community 0:47286 ip community-list standard 2_101_242 permit 65000:2 0:101 0:242 ip community-list standard 2_121_202 permit 65000:2 0:121 0:202 route-map calculator permit 12479 match community 2_101_242 2_121_202 set community 0:24442 ip community-list standard 2_41_229 permit 65000:2 0:41 0:229 route-map calculator permit 12480 match community 2_41_229 set community 0:9389 ip community-list standard 2_8_253 permit 65000:2 0:8 0:253 ip community-list standard 2_11_184 permit 65000:2 0:11 0:184 ip community-list standard 2_22_92 permit 65000:2 0:22 0:92 ip community-list standard 2_23_88 permit 65000:2 0:23 0:88 ip community-list standard 2_44_46 permit 65000:2 0:44 0:46 route-map calculator permit 12481 match community 2_8_253 2_11_184 2_22_92 2_23_88 2_44_46 set community 0:2024 ip community-list standard 2_71_248 permit 65000:2 0:71 0:248 ip community-list standard 2_124_142 permit 65000:2 0:124 0:142 route-map calculator permit 12482 match community 2_71_248 2_124_142 set community 0:17608 ip community-list standard 2_19_241 permit 65000:2 0:19 0:241 route-map calculator permit 12483 match community 2_19_241 set community 0:4579 ip community-list standard 2_216_235 permit 65000:2 0:216 0:235 route-map calculator permit 12484 match community 2_216_235 set community 0:50760 ip community-list standard 2_31_201 permit 65000:2 0:31 0:201 ip community-list standard 2_67_93 permit 65000:2 0:67 0:93 route-map calculator permit 12485 match community 2_31_201 2_67_93 set community 0:6231 ip community-list standard 2_174_223 permit 65000:2 0:174 0:223 route-map calculator permit 12486 match community 2_174_223 set community 0:38802 ip community-list standard 2_146_218 permit 65000:2 0:146 0:218 route-map calculator permit 12487 match community 2_146_218 set community 0:31828 ip community-list standard 2_163_228 permit 65000:2 0:163 0:228 route-map calculator permit 12488 match community 2_163_228 set community 0:37164 ip community-list standard 2_167_207 permit 65000:2 0:167 0:207 route-map calculator permit 12489 match community 2_167_207 set community 0:34569 ip community-list standard 2_196_212 permit 65000:2 0:196 0:212 route-map calculator permit 12490 match community 2_196_212 set community 0:41552 ip community-list standard 2_211_217 permit 65000:2 0:211 0:217 route-map calculator permit 12491 match community 2_211_217 set community 0:45787 ip community-list standard 2_27_149 permit 65000:2 0:27 0:149 route-map calculator permit 12492 match community 2_27_149 set community 0:4023 ip community-list standard 2_106_223 permit 65000:2 0:106 0:223 route-map calculator permit 12493 match community 2_106_223 set community 0:23638 ip community-list standard 2_114_229 permit 65000:2 0:114 0:229 route-map calculator permit 12494 match community 2_114_229 set community 0:26106 ip community-list standard 2_194_219 permit 65000:2 0:194 0:219 route-map calculator permit 12495 match community 2_194_219 set community 0:42486 ip community-list standard 2_190_218 permit 65000:2 0:190 0:218 route-map calculator permit 12496 match community 2_190_218 set community 0:41420 ip community-list standard 2_82_209 permit 65000:2 0:82 0:209 route-map calculator permit 12497 match community 2_82_209 set community 0:17138 ip community-list standard 2_148_176 permit 65000:2 0:148 0:176 route-map calculator permit 12498 match community 2_148_176 set community 0:26048 ip community-list standard 2_69_101 permit 65000:2 0:69 0:101 route-map calculator permit 12499 match community 2_69_101 set community 0:6969 ip community-list standard 2_81_250 permit 65000:2 0:81 0:250 ip community-list standard 2_90_225 permit 65000:2 0:90 0:225 ip community-list standard 2_125_162 permit 65000:2 0:125 0:162 ip community-list standard 2_135_150 permit 65000:2 0:135 0:150 route-map calculator permit 12500 match community 2_81_250 2_90_225 2_125_162 2_135_150 set community 0:20250 ip community-list standard 2_180_242 permit 65000:2 0:180 0:242 ip community-list standard 2_198_220 permit 65000:2 0:198 0:220 route-map calculator permit 12501 match community 2_180_242 2_198_220 set community 0:43560 ip community-list standard 2_142_223 permit 65000:2 0:142 0:223 route-map calculator permit 12502 match community 2_142_223 set community 0:31666 ip community-list standard 2_52_244 permit 65000:2 0:52 0:244 ip community-list standard 2_61_208 permit 65000:2 0:61 0:208 ip community-list standard 2_104_122 permit 65000:2 0:104 0:122 route-map calculator permit 12503 match community 2_52_244 2_61_208 2_104_122 set community 0:12688 ip community-list standard 2_167_191 permit 65000:2 0:167 0:191 route-map calculator permit 12504 match community 2_167_191 set community 0:31897 ip community-list standard 2_184_239 permit 65000:2 0:184 0:239 route-map calculator permit 12505 match community 2_184_239 set community 0:43976 ip community-list standard 2_26_183 permit 65000:2 0:26 0:183 ip community-list standard 2_39_122 permit 65000:2 0:39 0:122 ip community-list standard 2_61_78 permit 65000:2 0:61 0:78 route-map calculator permit 12506 match community 2_26_183 2_39_122 2_61_78 set community 0:4758 ip community-list standard 2_17_172 permit 65000:2 0:17 0:172 ip community-list standard 2_34_86 permit 65000:2 0:34 0:86 ip community-list standard 2_43_68 permit 65000:2 0:43 0:68 route-map calculator permit 12507 match community 2_17_172 2_34_86 2_43_68 set community 0:2924 ip community-list standard 2_95_214 permit 65000:2 0:95 0:214 ip community-list standard 2_107_190 permit 65000:2 0:107 0:190 route-map calculator permit 12508 match community 2_95_214 2_107_190 set community 0:20330 ip community-list standard 2_129_256 permit 65000:2 0:129 0:256 ip community-list standard 2_172_192 permit 65000:2 0:172 0:192 route-map calculator permit 12509 match community 2_129_256 2_172_192 set community 0:33024 ip community-list standard 2_5_244 permit 65000:2 0:5 0:244 ip community-list standard 2_10_122 permit 65000:2 0:10 0:122 ip community-list standard 2_20_61 permit 65000:2 0:20 0:61 route-map calculator permit 12510 match community 2_5_244 2_10_122 2_20_61 set community 0:1220 ip community-list standard 2_163_187 permit 65000:2 0:163 0:187 route-map calculator permit 12511 match community 2_163_187 set community 0:30481 ip community-list standard 2_16_231 permit 65000:2 0:16 0:231 ip community-list standard 2_21_176 permit 65000:2 0:21 0:176 ip community-list standard 2_22_168 permit 65000:2 0:22 0:168 ip community-list standard 2_24_154 permit 65000:2 0:24 0:154 ip community-list standard 2_28_132 permit 65000:2 0:28 0:132 ip community-list standard 2_33_112 permit 65000:2 0:33 0:112 ip community-list standard 2_42_88 permit 65000:2 0:42 0:88 ip community-list standard 2_44_84 permit 65000:2 0:44 0:84 ip community-list standard 2_48_77 permit 65000:2 0:48 0:77 ip community-list standard 2_56_66 permit 65000:2 0:56 0:66 route-map calculator permit 12512 match community 2_16_231 2_21_176 2_22_168 2_24_154 2_28_132 set community 0:3696 route-map calculator permit 12513 match community 2_33_112 2_42_88 2_44_84 2_48_77 2_56_66 set community 0:3696 ip community-list standard 2_145_240 permit 65000:2 0:145 0:240 ip community-list standard 2_150_232 permit 65000:2 0:150 0:232 ip community-list standard 2_174_200 permit 65000:2 0:174 0:200 route-map calculator permit 12514 match community 2_145_240 2_150_232 2_174_200 set community 0:34800 ip community-list standard 2_46_169 permit 65000:2 0:46 0:169 route-map calculator permit 12515 match community 2_46_169 set community 0:7774 ip community-list standard 2_11_188 permit 65000:2 0:11 0:188 ip community-list standard 2_22_94 permit 65000:2 0:22 0:94 ip community-list standard 2_44_47 permit 65000:2 0:44 0:47 route-map calculator permit 12516 match community 2_11_188 2_22_94 2_44_47 set community 0:2068 ip community-list standard 2_82_178 permit 65000:2 0:82 0:178 ip community-list standard 2_89_164 permit 65000:2 0:89 0:164 route-map calculator permit 12517 match community 2_82_178 2_89_164 set community 0:14596 ip community-list standard 2_29_186 permit 65000:2 0:29 0:186 ip community-list standard 2_31_174 permit 65000:2 0:31 0:174 ip community-list standard 2_58_93 permit 65000:2 0:58 0:93 ip community-list standard 2_62_87 permit 65000:2 0:62 0:87 route-map calculator permit 12518 match community 2_29_186 2_31_174 2_58_93 2_62_87 set community 0:5394 ip community-list standard 2_130_142 permit 65000:2 0:130 0:142 route-map calculator permit 12519 match community 2_130_142 set community 0:18460 ip community-list standard 2_203_237 permit 65000:2 0:203 0:237 route-map calculator permit 12520 match community 2_203_237 set community 0:48111 ip community-list standard 2_109_141 permit 65000:2 0:109 0:141 route-map calculator permit 12521 match community 2_109_141 set community 0:15369 ip community-list standard 2_180_197 permit 65000:2 0:180 0:197 route-map calculator permit 12522 match community 2_180_197 set community 0:35460 ip community-list standard 2_46_203 permit 65000:2 0:46 0:203 ip community-list standard 2_58_161 permit 65000:2 0:58 0:161 route-map calculator permit 12523 match community 2_46_203 2_58_161 set community 0:9338 ip community-list standard 2_23_240 permit 65000:2 0:23 0:240 ip community-list standard 2_24_230 permit 65000:2 0:24 0:230 ip community-list standard 2_30_184 permit 65000:2 0:30 0:184 ip community-list standard 2_40_138 permit 65000:2 0:40 0:138 ip community-list standard 2_46_120 permit 65000:2 0:46 0:120 ip community-list standard 2_48_115 permit 65000:2 0:48 0:115 ip community-list standard 2_60_92 permit 65000:2 0:60 0:92 ip community-list standard 2_69_80 permit 65000:2 0:69 0:80 route-map calculator permit 12524 match community 2_23_240 2_24_230 2_30_184 2_40_138 2_46_120 set community 0:5520 route-map calculator permit 12525 match community 2_48_115 2_60_92 2_69_80 set community 0:5520 ip community-list standard 2_42_224 permit 65000:2 0:42 0:224 ip community-list standard 2_48_196 permit 65000:2 0:48 0:196 ip community-list standard 2_49_192 permit 65000:2 0:49 0:192 ip community-list standard 2_56_168 permit 65000:2 0:56 0:168 ip community-list standard 2_64_147 permit 65000:2 0:64 0:147 ip community-list standard 2_84_112 permit 65000:2 0:84 0:112 ip community-list standard 2_96_98 permit 65000:2 0:96 0:98 route-map calculator permit 12526 match community 2_42_224 2_48_196 2_49_192 2_56_168 2_64_147 set community 0:9408 route-map calculator permit 12527 match community 2_84_112 2_96_98 set community 0:9408 ip community-list standard 2_121_215 permit 65000:2 0:121 0:215 route-map calculator permit 12528 match community 2_121_215 set community 0:26015 ip community-list standard 2_86_222 permit 65000:2 0:86 0:222 ip community-list standard 2_111_172 permit 65000:2 0:111 0:172 ip community-list standard 2_129_148 permit 65000:2 0:129 0:148 route-map calculator permit 12529 match community 2_86_222 2_111_172 2_129_148 set community 0:19092 ip community-list standard 2_113_233 permit 65000:2 0:113 0:233 route-map calculator permit 12530 match community 2_113_233 set community 0:26329 ip community-list standard 2_43_218 permit 65000:2 0:43 0:218 ip community-list standard 2_86_109 permit 65000:2 0:86 0:109 route-map calculator permit 12531 match community 2_43_218 2_86_109 set community 0:9374 ip community-list standard 2_59_226 permit 65000:2 0:59 0:226 ip community-list standard 2_113_118 permit 65000:2 0:113 0:118 route-map calculator permit 12532 match community 2_59_226 2_113_118 set community 0:13334 ip community-list standard 2_220_248 permit 65000:2 0:220 0:248 route-map calculator permit 12533 match community 2_220_248 set community 0:54560 ip community-list standard 2_122_223 permit 65000:2 0:122 0:223 route-map calculator permit 12534 match community 2_122_223 set community 0:27206 ip community-list standard 2_116_234 permit 65000:2 0:116 0:234 ip community-list standard 2_117_232 permit 65000:2 0:117 0:232 ip community-list standard 2_156_174 permit 65000:2 0:156 0:174 route-map calculator permit 12535 match community 2_116_234 2_117_232 2_156_174 set community 0:27144 ip community-list standard 2_219_236 permit 65000:2 0:219 0:236 route-map calculator permit 12536 match community 2_219_236 set community 0:51684 ip community-list standard 2_146_200 permit 65000:2 0:146 0:200 route-map calculator permit 12537 match community 2_146_200 set community 0:29200 ip community-list standard 2_31_188 permit 65000:2 0:31 0:188 ip community-list standard 2_47_124 permit 65000:2 0:47 0:124 ip community-list standard 2_62_94 permit 65000:2 0:62 0:94 route-map calculator permit 12538 match community 2_31_188 2_47_124 2_62_94 set community 0:5828 ip community-list standard 1_1_49 permit 65000:1 0:1 0:49 ip community-list standard 2_1_50 permit 65000:2 0:1 0:50 ip community-list standard 2_2_25 permit 65000:2 0:2 0:25 ip community-list standard 1_2_48 permit 65000:1 0:2 0:48 ip community-list standard 1_3_47 permit 65000:1 0:3 0:47 ip community-list standard 1_4_46 permit 65000:1 0:4 0:46 ip community-list standard 2_5_10 permit 65000:2 0:5 0:10 ip community-list standard 1_5_45 permit 65000:1 0:5 0:45 ip community-list standard 1_6_44 permit 65000:1 0:6 0:44 ip community-list standard 1_7_43 permit 65000:1 0:7 0:43 ip community-list standard 1_8_42 permit 65000:1 0:8 0:42 ip community-list standard 1_9_41 permit 65000:1 0:9 0:41 ip community-list standard 1_10_40 permit 65000:1 0:10 0:40 ip community-list standard 1_11_39 permit 65000:1 0:11 0:39 ip community-list standard 1_12_38 permit 65000:1 0:12 0:38 ip community-list standard 1_13_37 permit 65000:1 0:13 0:37 ip community-list standard 1_14_36 permit 65000:1 0:14 0:36 ip community-list standard 1_15_35 permit 65000:1 0:15 0:35 ip community-list standard 1_16_34 permit 65000:1 0:16 0:34 ip community-list standard 1_17_33 permit 65000:1 0:17 0:33 ip community-list standard 1_18_32 permit 65000:1 0:18 0:32 ip community-list standard 1_19_31 permit 65000:1 0:19 0:31 ip community-list standard 1_20_30 permit 65000:1 0:20 0:30 ip community-list standard 1_21_29 permit 65000:1 0:21 0:29 ip community-list standard 1_22_28 permit 65000:1 0:22 0:28 ip community-list standard 1_23_27 permit 65000:1 0:23 0:27 ip community-list standard 1_24_26 permit 65000:1 0:24 0:26 ip community-list standard 1_25_25 permit 65000:1 0:25 0:25 ip community-list expanded c50 permit 1 ^65000:4_0:50_0:1$ ip community-list expanded c50 permit 2 ^65000:3_0:51_0:1$ ip community-list expanded c50 permit 3 ^65000:3_0:52_0:2$ ip community-list expanded c50 permit 4 ^65000:3_0:53_0:3$ ip community-list expanded c50 permit 5 ^65000:3_0:54_0:4$ ip community-list expanded c50 permit 6 ^65000:3_0:55_0:5$ ip community-list expanded c50 permit 7 ^65000:3_0:56_0:6$ ip community-list expanded c50 permit 8 ^65000:3_0:57_0:7$ ip community-list expanded c50 permit 9 ^65000:3_0:58_0:8$ ip community-list expanded c50 permit 10 ^65000:3_0:59_0:9$ ip community-list expanded c50 permit 11 ^65000:3_0:60_0:10$ ip community-list expanded c50 permit 12 ^65000:3_0:61_0:11$ ip community-list expanded c50 permit 13 ^65000:3_0:62_0:12$ ip community-list expanded c50 permit 14 ^65000:3_0:63_0:13$ ip community-list expanded c50 permit 15 ^65000:3_0:64_0:14$ ip community-list expanded c50 permit 16 ^65000:3_0:65_0:15$ ip community-list expanded c50 permit 17 ^65000:3_0:66_0:16$ ip community-list expanded c50 permit 18 ^65000:3_0:67_0:17$ ip community-list expanded c50 permit 19 ^65000:3_0:68_0:18$ ip community-list expanded c50 permit 20 ^65000:3_0:69_0:19$ ip community-list expanded c50 permit 21 ^65000:3_0:70_0:20$ ip community-list expanded c50 permit 22 ^65000:3_0:71_0:21$ ip community-list expanded c50 permit 23 ^65000:3_0:72_0:22$ ip community-list expanded c50 permit 24 ^65000:3_0:73_0:23$ ip community-list expanded c50 permit 25 ^65000:3_0:74_0:24$ ip community-list expanded c50 permit 26 ^65000:3_0:75_0:25$ ip community-list expanded c50 permit 27 ^65000:3_0:76_0:26$ ip community-list expanded c50 permit 28 ^65000:3_0:77_0:27$ ip community-list expanded c50 permit 29 ^65000:3_0:78_0:28$ ip community-list expanded c50 permit 30 ^65000:3_0:79_0:29$ ip community-list expanded c50 permit 31 ^65000:3_0:80_0:30$ ip community-list expanded c50 permit 32 ^65000:3_0:81_0:31$ ip community-list expanded c50 permit 33 ^65000:3_0:82_0:32$ ip community-list expanded c50 permit 34 ^65000:3_0:83_0:33$ ip community-list expanded c50 permit 35 ^65000:3_0:84_0:34$ ip community-list expanded c50 permit 36 ^65000:3_0:85_0:35$ ip community-list expanded c50 permit 37 ^65000:3_0:86_0:36$ ip community-list expanded c50 permit 38 ^65000:3_0:87_0:37$ ip community-list expanded c50 permit 39 ^65000:3_0:88_0:38$ ip community-list expanded c50 permit 40 ^65000:3_0:89_0:39$ ip community-list expanded c50 permit 41 ^65000:3_0:90_0:40$ ip community-list expanded c50 permit 42 ^65000:3_0:91_0:41$ ip community-list expanded c50 permit 43 ^65000:3_0:92_0:42$ ip community-list expanded c50 permit 44 ^65000:3_0:93_0:43$ ip community-list expanded c50 permit 45 ^65000:3_0:94_0:44$ ip community-list expanded c50 permit 46 ^65000:3_0:95_0:45$ ip community-list expanded c50 permit 47 ^65000:3_0:96_0:46$ ip community-list expanded c50 permit 48 ^65000:3_0:97_0:47$ ip community-list expanded c50 permit 49 ^65000:3_0:98_0:48$ ip community-list expanded c50 permit 50 ^65000:3_0:99_0:49$ ip community-list expanded c50 permit 51 ^65000:4_0:100_0:2$ ip community-list expanded c50 permit 52 ^65000:3_0:100_0:50$ ip community-list expanded c50 permit 53 ^65000:4_0:101_0:2$ ip community-list expanded c50 permit 54 ^65000:3_0:101_0:51$ ip community-list expanded c50 permit 55 ^65000:3_0:102_0:52$ ip community-list expanded c50 permit 56 ^65000:3_0:103_0:53$ ip community-list expanded c50 permit 57 ^65000:3_0:104_0:54$ ip community-list expanded c50 permit 58 ^65000:3_0:105_0:55$ ip community-list expanded c50 permit 59 ^65000:3_0:106_0:56$ ip community-list expanded c50 permit 60 ^65000:3_0:107_0:57$ ip community-list expanded c50 permit 61 ^65000:3_0:108_0:58$ ip community-list expanded c50 permit 62 ^65000:3_0:109_0:59$ ip community-list expanded c50 permit 63 ^65000:3_0:110_0:60$ ip community-list expanded c50 permit 64 ^65000:3_0:111_0:61$ ip community-list expanded c50 permit 65 ^65000:3_0:112_0:62$ ip community-list expanded c50 permit 66 ^65000:3_0:113_0:63$ ip community-list expanded c50 permit 67 ^65000:3_0:114_0:64$ ip community-list expanded c50 permit 68 ^65000:3_0:115_0:65$ ip community-list expanded c50 permit 69 ^65000:3_0:116_0:66$ ip community-list expanded c50 permit 70 ^65000:3_0:117_0:67$ ip community-list expanded c50 permit 71 ^65000:3_0:118_0:68$ ip community-list expanded c50 permit 72 ^65000:3_0:119_0:69$ ip community-list expanded c50 permit 73 ^65000:3_0:120_0:70$ ip community-list expanded c50 permit 74 ^65000:3_0:121_0:71$ ip community-list expanded c50 permit 75 ^65000:3_0:122_0:72$ ip community-list expanded c50 permit 76 ^65000:3_0:123_0:73$ ip community-list expanded c50 permit 77 ^65000:3_0:124_0:74$ ip community-list expanded c50 permit 78 ^65000:3_0:125_0:75$ ip community-list expanded c50 permit 79 ^65000:3_0:126_0:76$ ip community-list expanded c50 permit 80 ^65000:3_0:127_0:77$ ip community-list expanded c50 permit 81 ^65000:3_0:128_0:78$ ip community-list expanded c50 permit 82 ^65000:3_0:129_0:79$ ip community-list expanded c50 permit 83 ^65000:3_0:130_0:80$ ip community-list expanded c50 permit 84 ^65000:3_0:131_0:81$ ip community-list expanded c50 permit 85 ^65000:3_0:132_0:82$ ip community-list expanded c50 permit 86 ^65000:3_0:133_0:83$ ip community-list expanded c50 permit 87 ^65000:3_0:134_0:84$ ip community-list expanded c50 permit 88 ^65000:3_0:135_0:85$ ip community-list expanded c50 permit 89 ^65000:3_0:136_0:86$ ip community-list expanded c50 permit 90 ^65000:3_0:137_0:87$ ip community-list expanded c50 permit 91 ^65000:3_0:138_0:88$ ip community-list expanded c50 permit 92 ^65000:3_0:139_0:89$ ip community-list expanded c50 permit 93 ^65000:3_0:140_0:90$ ip community-list expanded c50 permit 94 ^65000:3_0:141_0:91$ ip community-list expanded c50 permit 95 ^65000:3_0:142_0:92$ ip community-list expanded c50 permit 96 ^65000:3_0:143_0:93$ ip community-list expanded c50 permit 97 ^65000:3_0:144_0:94$ ip community-list expanded c50 permit 98 ^65000:3_0:145_0:95$ ip community-list expanded c50 permit 99 ^65000:3_0:146_0:96$ ip community-list expanded c50 permit 100 ^65000:3_0:147_0:97$ ip community-list expanded c50 permit 101 ^65000:3_0:148_0:98$ ip community-list expanded c50 permit 102 ^65000:3_0:149_0:99$ ip community-list expanded c50 permit 103 ^65000:4_0:150_0:3$ ip community-list expanded c50 permit 104 ^65000:3_0:150_0:100$ ip community-list expanded c50 permit 105 ^65000:4_0:151_0:3$ ip community-list expanded c50 permit 106 ^65000:3_0:151_0:101$ ip community-list expanded c50 permit 107 ^65000:4_0:152_0:3$ ip community-list expanded c50 permit 108 ^65000:3_0:152_0:102$ ip community-list expanded c50 permit 109 ^65000:3_0:153_0:103$ ip community-list expanded c50 permit 110 ^65000:3_0:154_0:104$ ip community-list expanded c50 permit 111 ^65000:3_0:155_0:105$ ip community-list expanded c50 permit 112 ^65000:3_0:156_0:106$ ip community-list expanded c50 permit 113 ^65000:3_0:157_0:107$ ip community-list expanded c50 permit 114 ^65000:3_0:158_0:108$ ip community-list expanded c50 permit 115 ^65000:3_0:159_0:109$ ip community-list expanded c50 permit 116 ^65000:3_0:160_0:110$ ip community-list expanded c50 permit 117 ^65000:3_0:161_0:111$ ip community-list expanded c50 permit 118 ^65000:3_0:162_0:112$ ip community-list expanded c50 permit 119 ^65000:3_0:163_0:113$ ip community-list expanded c50 permit 120 ^65000:3_0:164_0:114$ ip community-list expanded c50 permit 121 ^65000:3_0:165_0:115$ ip community-list expanded c50 permit 122 ^65000:3_0:166_0:116$ ip community-list expanded c50 permit 123 ^65000:3_0:167_0:117$ ip community-list expanded c50 permit 124 ^65000:3_0:168_0:118$ ip community-list expanded c50 permit 125 ^65000:3_0:169_0:119$ ip community-list expanded c50 permit 126 ^65000:3_0:170_0:120$ ip community-list expanded c50 permit 127 ^65000:3_0:171_0:121$ ip community-list expanded c50 permit 128 ^65000:3_0:172_0:122$ ip community-list expanded c50 permit 129 ^65000:3_0:173_0:123$ ip community-list expanded c50 permit 130 ^65000:3_0:174_0:124$ ip community-list expanded c50 permit 131 ^65000:3_0:175_0:125$ ip community-list expanded c50 permit 132 ^65000:3_0:176_0:126$ ip community-list expanded c50 permit 133 ^65000:3_0:177_0:127$ ip community-list expanded c50 permit 134 ^65000:3_0:178_0:128$ ip community-list expanded c50 permit 135 ^65000:3_0:179_0:129$ ip community-list expanded c50 permit 136 ^65000:3_0:180_0:130$ ip community-list expanded c50 permit 137 ^65000:3_0:181_0:131$ ip community-list expanded c50 permit 138 ^65000:3_0:182_0:132$ ip community-list expanded c50 permit 139 ^65000:3_0:183_0:133$ ip community-list expanded c50 permit 140 ^65000:3_0:184_0:134$ ip community-list expanded c50 permit 141 ^65000:3_0:185_0:135$ ip community-list expanded c50 permit 142 ^65000:3_0:186_0:136$ ip community-list expanded c50 permit 143 ^65000:3_0:187_0:137$ ip community-list expanded c50 permit 144 ^65000:3_0:188_0:138$ ip community-list expanded c50 permit 145 ^65000:3_0:189_0:139$ ip community-list expanded c50 permit 146 ^65000:3_0:190_0:140$ ip community-list expanded c50 permit 147 ^65000:3_0:191_0:141$ ip community-list expanded c50 permit 148 ^65000:3_0:192_0:142$ ip community-list expanded c50 permit 149 ^65000:3_0:193_0:143$ ip community-list expanded c50 permit 150 ^65000:3_0:194_0:144$ ip community-list expanded c50 permit 151 ^65000:3_0:195_0:145$ ip community-list expanded c50 permit 152 ^65000:3_0:196_0:146$ ip community-list expanded c50 permit 153 ^65000:3_0:197_0:147$ ip community-list expanded c50 permit 154 ^65000:3_0:198_0:148$ ip community-list expanded c50 permit 155 ^65000:3_0:199_0:149$ ip community-list expanded c50 permit 156 ^65000:4_0:200_0:4$ ip community-list expanded c50 permit 157 ^65000:3_0:200_0:150$ ip community-list expanded c50 permit 158 ^65000:4_0:201_0:4$ ip community-list expanded c50 permit 159 ^65000:3_0:201_0:151$ ip community-list expanded c50 permit 160 ^65000:4_0:202_0:4$ ip community-list expanded c50 permit 161 ^65000:3_0:202_0:152$ ip community-list expanded c50 permit 162 ^65000:4_0:203_0:4$ ip community-list expanded c50 permit 163 ^65000:3_0:203_0:153$ ip community-list expanded c50 permit 164 ^65000:3_0:204_0:154$ ip community-list expanded c50 permit 165 ^65000:3_0:205_0:155$ ip community-list expanded c50 permit 166 ^65000:3_0:206_0:156$ ip community-list expanded c50 permit 167 ^65000:3_0:207_0:157$ ip community-list expanded c50 permit 168 ^65000:3_0:208_0:158$ ip community-list expanded c50 permit 169 ^65000:3_0:209_0:159$ ip community-list expanded c50 permit 170 ^65000:3_0:210_0:160$ ip community-list expanded c50 permit 171 ^65000:3_0:211_0:161$ ip community-list expanded c50 permit 172 ^65000:3_0:212_0:162$ ip community-list expanded c50 permit 173 ^65000:3_0:213_0:163$ ip community-list expanded c50 permit 174 ^65000:3_0:214_0:164$ ip community-list expanded c50 permit 175 ^65000:3_0:215_0:165$ ip community-list expanded c50 permit 176 ^65000:3_0:216_0:166$ ip community-list expanded c50 permit 177 ^65000:3_0:217_0:167$ ip community-list expanded c50 permit 178 ^65000:3_0:218_0:168$ ip community-list expanded c50 permit 179 ^65000:3_0:219_0:169$ ip community-list expanded c50 permit 180 ^65000:3_0:220_0:170$ ip community-list expanded c50 permit 181 ^65000:3_0:221_0:171$ ip community-list expanded c50 permit 182 ^65000:3_0:222_0:172$ ip community-list expanded c50 permit 183 ^65000:3_0:223_0:173$ ip community-list expanded c50 permit 184 ^65000:3_0:224_0:174$ ip community-list expanded c50 permit 185 ^65000:3_0:225_0:175$ ip community-list expanded c50 permit 186 ^65000:3_0:226_0:176$ ip community-list expanded c50 permit 187 ^65000:3_0:227_0:177$ ip community-list expanded c50 permit 188 ^65000:3_0:228_0:178$ ip community-list expanded c50 permit 189 ^65000:3_0:229_0:179$ ip community-list expanded c50 permit 190 ^65000:3_0:230_0:180$ ip community-list expanded c50 permit 191 ^65000:3_0:231_0:181$ ip community-list expanded c50 permit 192 ^65000:3_0:232_0:182$ ip community-list expanded c50 permit 193 ^65000:3_0:233_0:183$ ip community-list expanded c50 permit 194 ^65000:3_0:234_0:184$ ip community-list expanded c50 permit 195 ^65000:3_0:235_0:185$ ip community-list expanded c50 permit 196 ^65000:3_0:236_0:186$ ip community-list expanded c50 permit 197 ^65000:3_0:237_0:187$ ip community-list expanded c50 permit 198 ^65000:3_0:238_0:188$ ip community-list expanded c50 permit 199 ^65000:3_0:239_0:189$ ip community-list expanded c50 permit 200 ^65000:3_0:240_0:190$ ip community-list expanded c50 permit 201 ^65000:3_0:241_0:191$ ip community-list expanded c50 permit 202 ^65000:3_0:242_0:192$ ip community-list expanded c50 permit 203 ^65000:3_0:243_0:193$ ip community-list expanded c50 permit 204 ^65000:3_0:244_0:194$ ip community-list expanded c50 permit 205 ^65000:3_0:245_0:195$ ip community-list expanded c50 permit 206 ^65000:3_0:246_0:196$ ip community-list expanded c50 permit 207 ^65000:3_0:247_0:197$ ip community-list expanded c50 permit 208 ^65000:3_0:248_0:198$ ip community-list expanded c50 permit 209 ^65000:3_0:249_0:199$ ip community-list expanded c50 permit 210 ^65000:4_0:250_0:5$ ip community-list expanded c50 permit 211 ^65000:3_0:250_0:200$ ip community-list expanded c50 permit 212 ^65000:4_0:251_0:5$ ip community-list expanded c50 permit 213 ^65000:3_0:251_0:201$ ip community-list expanded c50 permit 214 ^65000:4_0:252_0:5$ ip community-list expanded c50 permit 215 ^65000:3_0:252_0:202$ ip community-list expanded c50 permit 216 ^65000:4_0:253_0:5$ ip community-list expanded c50 permit 217 ^65000:3_0:253_0:203$ ip community-list expanded c50 permit 218 ^65000:4_0:254_0:5$ ip community-list expanded c50 permit 219 ^65000:3_0:254_0:204$ ip community-list expanded c50 permit 220 ^65000:3_0:255_0:205$ ip community-list expanded c50 permit 221 ^65000:3_0:256_0:206$ route-map calculator permit 12539 match community 1_1_49 2_1_50 2_2_25 1_2_48 1_3_47 set community 0:50 route-map calculator permit 12540 match community 1_4_46 2_5_10 1_5_45 1_6_44 1_7_43 set community 0:50 route-map calculator permit 12541 match community 1_8_42 1_9_41 1_10_40 1_11_39 1_12_38 set community 0:50 route-map calculator permit 12542 match community 1_13_37 1_14_36 1_15_35 1_16_34 1_17_33 set community 0:50 route-map calculator permit 12543 match community 1_18_32 1_19_31 1_20_30 1_21_29 1_22_28 set community 0:50 route-map calculator permit 12544 match community 1_23_27 1_24_26 1_25_25 c4_50_1 c3_51_1 set community 0:50 route-map calculator permit 12545 match community c3_52_2 c3_53_3 c3_54_4 c3_55_5 c3_56_6 set community 0:50 route-map calculator permit 12546 match community c3_57_7 c3_58_8 c3_59_9 c3_60_10 c3_61_11 set community 0:50 route-map calculator permit 12547 match community c3_62_12 c3_63_13 c3_64_14 c3_65_15 c3_66_16 set community 0:50 route-map calculator permit 12548 match community c3_67_17 c3_68_18 c3_69_19 c3_70_20 c3_71_21 set community 0:50 route-map calculator permit 12549 match community c3_72_22 c3_73_23 c3_74_24 c3_75_25 c3_76_26 set community 0:50 route-map calculator permit 12550 match community c3_77_27 c3_78_28 c3_79_29 c3_80_30 c3_81_31 set community 0:50 route-map calculator permit 12551 match community c3_82_32 c3_83_33 c3_84_34 c3_85_35 c3_86_36 set community 0:50 route-map calculator permit 12552 match community c3_87_37 c3_88_38 c3_89_39 c3_90_40 c3_91_41 set community 0:50 route-map calculator permit 12553 match community c3_92_42 c3_93_43 c3_94_44 c3_95_45 c3_96_46 set community 0:50 route-map calculator permit 12554 match community c3_97_47 c3_98_48 c3_99_49 c4_100_2 c3_100_50 set community 0:50 route-map calculator permit 12555 match community c4_101_2 c3_101_51 c3_102_52 c3_103_53 c3_104_54 set community 0:50 route-map calculator permit 12556 match community c3_105_55 c3_106_56 c3_107_57 c3_108_58 c3_109_59 set community 0:50 route-map calculator permit 12557 match community c3_110_60 c3_111_61 c3_112_62 c3_113_63 c3_114_64 set community 0:50 route-map calculator permit 12558 match community c3_115_65 c3_116_66 c3_117_67 c3_118_68 c3_119_69 set community 0:50 route-map calculator permit 12559 match community c3_120_70 c3_121_71 c3_122_72 c3_123_73 c3_124_74 set community 0:50 route-map calculator permit 12560 match community c3_125_75 c3_126_76 c3_127_77 c3_128_78 c3_129_79 set community 0:50 route-map calculator permit 12561 match community c3_130_80 c3_131_81 c3_132_82 c3_133_83 c3_134_84 set community 0:50 route-map calculator permit 12562 match community c3_135_85 c3_136_86 c3_137_87 c3_138_88 c3_139_89 set community 0:50 route-map calculator permit 12563 match community c3_140_90 c3_141_91 c3_142_92 c3_143_93 c3_144_94 set community 0:50 route-map calculator permit 12564 match community c3_145_95 c3_146_96 c3_147_97 c3_148_98 c3_149_99 set community 0:50 route-map calculator permit 12565 match community c4_150_3 c3_150_100 c4_151_3 c3_151_101 c4_152_3 set community 0:50 route-map calculator permit 12566 match community c3_152_102 c3_153_103 c3_154_104 c3_155_105 c3_156_106 set community 0:50 route-map calculator permit 12567 match community c3_157_107 c3_158_108 c3_159_109 c3_160_110 c3_161_111 set community 0:50 route-map calculator permit 12568 match community c3_162_112 c3_163_113 c3_164_114 c3_165_115 c3_166_116 set community 0:50 route-map calculator permit 12569 match community c3_167_117 c3_168_118 c3_169_119 c3_170_120 c3_171_121 set community 0:50 route-map calculator permit 12570 match community c3_172_122 c3_173_123 c3_174_124 c3_175_125 c3_176_126 set community 0:50 route-map calculator permit 12571 match community c3_177_127 c3_178_128 c3_179_129 c3_180_130 c3_181_131 set community 0:50 route-map calculator permit 12572 match community c3_182_132 c3_183_133 c3_184_134 c3_185_135 c3_186_136 set community 0:50 route-map calculator permit 12573 match community c3_187_137 c3_188_138 c3_189_139 c3_190_140 c3_191_141 set community 0:50 route-map calculator permit 12574 match community c3_192_142 c3_193_143 c3_194_144 c3_195_145 c3_196_146 set community 0:50 route-map calculator permit 12575 match community c3_197_147 c3_198_148 c3_199_149 c4_200_4 c3_200_150 set community 0:50 route-map calculator permit 12576 match community c4_201_4 c3_201_151 c4_202_4 c3_202_152 c4_203_4 set community 0:50 route-map calculator permit 12577 match community c3_203_153 c3_204_154 c3_205_155 c3_206_156 c3_207_157 set community 0:50 route-map calculator permit 12578 match community c3_208_158 c3_209_159 c3_210_160 c3_211_161 c3_212_162 set community 0:50 route-map calculator permit 12579 match community c3_213_163 c3_214_164 c3_215_165 c3_216_166 c3_217_167 set community 0:50 route-map calculator permit 12580 match community c3_218_168 c3_219_169 c3_220_170 c3_221_171 c3_222_172 set community 0:50 route-map calculator permit 12581 match community c3_223_173 c3_224_174 c3_225_175 c3_226_176 c3_227_177 set community 0:50 route-map calculator permit 12582 match community c3_228_178 c3_229_179 c3_230_180 c3_231_181 c3_232_182 set community 0:50 route-map calculator permit 12583 match community c3_233_183 c3_234_184 c3_235_185 c3_236_186 c3_237_187 set community 0:50 route-map calculator permit 12584 match community c3_238_188 c3_239_189 c3_240_190 c3_241_191 c3_242_192 set community 0:50 route-map calculator permit 12585 match community c3_243_193 c3_244_194 c3_245_195 c3_246_196 c3_247_197 set community 0:50 route-map calculator permit 12586 match community c3_248_198 c3_249_199 c4_250_5 c3_250_200 c4_251_5 set community 0:50 route-map calculator permit 12587 match community c3_251_201 c4_252_5 c3_252_202 c4_253_5 c3_253_203 set community 0:50 route-map calculator permit 12588 match community c4_254_5 c3_254_204 c3_255_205 c3_256_206 set community 0:50 ip community-list standard 2_13_155 permit 65000:2 0:13 0:155 ip community-list standard 2_31_65 permit 65000:2 0:31 0:65 route-map calculator permit 12589 match community 2_13_155 2_31_65 set community 0:2015 ip community-list standard 2_107_254 permit 65000:2 0:107 0:254 ip community-list standard 2_127_214 permit 65000:2 0:127 0:214 route-map calculator permit 12590 match community 2_107_254 2_127_214 set community 0:27178 ip community-list standard 2_176_178 permit 65000:2 0:176 0:178 route-map calculator permit 12591 match community 2_176_178 set community 0:31328 ip community-list standard 2_4_204 permit 65000:2 0:4 0:204 ip community-list standard 2_6_136 permit 65000:2 0:6 0:136 ip community-list standard 2_8_102 permit 65000:2 0:8 0:102 ip community-list standard 2_12_68 permit 65000:2 0:12 0:68 ip community-list standard 2_16_51 permit 65000:2 0:16 0:51 ip community-list standard 2_17_48 permit 65000:2 0:17 0:48 ip community-list standard 2_24_34 permit 65000:2 0:24 0:34 route-map calculator permit 12592 match community 2_4_204 2_6_136 2_8_102 2_12_68 2_16_51 set community 0:816 route-map calculator permit 12593 match community 2_17_48 2_24_34 set community 0:816 ip community-list standard 2_195_203 permit 65000:2 0:195 0:203 route-map calculator permit 12594 match community 2_195_203 set community 0:39585 ip community-list standard 2_157_197 permit 65000:2 0:157 0:197 route-map calculator permit 12595 match community 2_157_197 set community 0:30929 ip community-list standard 2_40_249 permit 65000:2 0:40 0:249 ip community-list standard 2_60_166 permit 65000:2 0:60 0:166 ip community-list standard 2_83_120 permit 65000:2 0:83 0:120 route-map calculator permit 12596 match community 2_40_249 2_60_166 2_83_120 set community 0:9960 ip community-list standard 2_121_163 permit 65000:2 0:121 0:163 route-map calculator permit 12597 match community 2_121_163 set community 0:19723 ip community-list standard 2_81_205 permit 65000:2 0:81 0:205 ip community-list standard 2_123_135 permit 65000:2 0:123 0:135 route-map calculator permit 12598 match community 2_81_205 2_123_135 set community 0:16605 ip community-list standard 2_55_249 permit 65000:2 0:55 0:249 ip community-list standard 2_83_165 permit 65000:2 0:83 0:165 route-map calculator permit 12599 match community 2_55_249 2_83_165 set community 0:13695 ip community-list standard 2_30_219 permit 65000:2 0:30 0:219 ip community-list standard 2_45_146 permit 65000:2 0:45 0:146 ip community-list standard 2_73_90 permit 65000:2 0:73 0:90 route-map calculator permit 12600 match community 2_30_219 2_45_146 2_73_90 set community 0:6570 ip community-list standard 2_70_191 permit 65000:2 0:70 0:191 route-map calculator permit 12601 match community 2_70_191 set community 0:13370 ip community-list standard 2_65_239 permit 65000:2 0:65 0:239 route-map calculator permit 12602 match community 2_65_239 set community 0:15535 ip community-list standard 2_103_254 permit 65000:2 0:103 0:254 ip community-list standard 2_127_206 permit 65000:2 0:127 0:206 route-map calculator permit 12603 match community 2_103_254 2_127_206 set community 0:26162 ip community-list standard 2_131_154 permit 65000:2 0:131 0:154 route-map calculator permit 12604 match community 2_131_154 set community 0:20174 ip community-list standard 2_55_254 permit 65000:2 0:55 0:254 ip community-list standard 2_110_127 permit 65000:2 0:110 0:127 route-map calculator permit 12605 match community 2_55_254 2_110_127 set community 0:13970 ip community-list standard 2_196_201 permit 65000:2 0:196 0:201 route-map calculator permit 12606 match community 2_196_201 set community 0:39396 ip community-list standard 2_99_191 permit 65000:2 0:99 0:191 route-map calculator permit 12607 match community 2_99_191 set community 0:18909 ip community-list standard 2_199_250 permit 65000:2 0:199 0:250 route-map calculator permit 12608 match community 2_199_250 set community 0:49750 ip community-list standard 2_77_208 permit 65000:2 0:77 0:208 ip community-list standard 2_88_182 permit 65000:2 0:88 0:182 ip community-list standard 2_91_176 permit 65000:2 0:91 0:176 ip community-list standard 2_104_154 permit 65000:2 0:104 0:154 ip community-list standard 2_112_143 permit 65000:2 0:112 0:143 route-map calculator permit 12609 match community 2_77_208 2_88_182 2_91_176 2_104_154 2_112_143 set community 0:16016 ip community-list standard 2_145_245 permit 65000:2 0:145 0:245 ip community-list standard 2_175_203 permit 65000:2 0:175 0:203 route-map calculator permit 12610 match community 2_145_245 2_175_203 set community 0:35525 ip community-list standard 2_158_237 permit 65000:2 0:158 0:237 route-map calculator permit 12611 match community 2_158_237 set community 0:37446 ip community-list standard 2_109_145 permit 65000:2 0:109 0:145 route-map calculator permit 12612 match community 2_109_145 set community 0:15805 ip community-list standard 2_108_131 permit 65000:2 0:108 0:131 route-map calculator permit 12613 match community 2_108_131 set community 0:14148 ip community-list standard 2_154_240 permit 65000:2 0:154 0:240 ip community-list standard 2_160_231 permit 65000:2 0:160 0:231 ip community-list standard 2_165_224 permit 65000:2 0:165 0:224 ip community-list standard 2_168_220 permit 65000:2 0:168 0:220 ip community-list standard 2_176_210 permit 65000:2 0:176 0:210 route-map calculator permit 12614 match community 2_154_240 2_160_231 2_165_224 2_168_220 2_176_210 set community 0:36960 ip community-list standard 2_45_245 permit 65000:2 0:45 0:245 ip community-list standard 2_49_225 permit 65000:2 0:49 0:225 ip community-list standard 2_63_175 permit 65000:2 0:63 0:175 ip community-list standard 2_75_147 permit 65000:2 0:75 0:147 ip community-list standard 2_105_105 permit 65000:2 0:105 0:105 route-map calculator permit 12615 match community 2_45_245 2_49_225 2_63_175 2_75_147 2_105_105 set community 0:11025 ip community-list standard 2_112_251 permit 65000:2 0:112 0:251 route-map calculator permit 12616 match community 2_112_251 set community 0:28112 ip community-list standard 2_5_229 permit 65000:2 0:5 0:229 route-map calculator permit 12617 match community 2_5_229 set community 0:1145 ip community-list standard 2_63_254 permit 65000:2 0:63 0:254 ip community-list standard 2_126_127 permit 65000:2 0:126 0:127 route-map calculator permit 12618 match community 2_63_254 2_126_127 set community 0:16002 ip community-list standard 2_241_249 permit 65000:2 0:241 0:249 route-map calculator permit 12619 match community 2_241_249 set community 0:60009 ip community-list standard 2_192_247 permit 65000:2 0:192 0:247 ip community-list standard 2_208_228 permit 65000:2 0:208 0:228 route-map calculator permit 12620 match community 2_192_247 2_208_228 set community 0:47424 ip community-list standard 2_5_149 permit 65000:2 0:5 0:149 route-map calculator permit 12621 match community 2_5_149 set community 0:745 ip community-list standard 2_107_203 permit 65000:2 0:107 0:203 route-map calculator permit 12622 match community 2_107_203 set community 0:21721 ip community-list standard 2_13_237 permit 65000:2 0:13 0:237 ip community-list standard 2_39_79 permit 65000:2 0:39 0:79 route-map calculator permit 12623 match community 2_13_237 2_39_79 set community 0:3081 ip community-list standard 2_130_256 permit 65000:2 0:130 0:256 ip community-list standard 2_160_208 permit 65000:2 0:160 0:208 route-map calculator permit 12624 match community 2_130_256 2_160_208 set community 0:33280 ip community-list standard 2_225_244 permit 65000:2 0:225 0:244 route-map calculator permit 12625 match community 2_225_244 set community 0:54900 ip community-list standard 2_86_183 permit 65000:2 0:86 0:183 ip community-list standard 2_122_129 permit 65000:2 0:122 0:129 route-map calculator permit 12626 match community 2_86_183 2_122_129 set community 0:15738 ip community-list standard 2_25_246 permit 65000:2 0:25 0:246 ip community-list standard 2_30_205 permit 65000:2 0:30 0:205 ip community-list standard 2_41_150 permit 65000:2 0:41 0:150 ip community-list standard 2_50_123 permit 65000:2 0:50 0:123 ip community-list standard 2_75_82 permit 65000:2 0:75 0:82 route-map calculator permit 12627 match community 2_25_246 2_30_205 2_41_150 2_50_123 2_75_82 set community 0:6150 ip community-list standard 2_49_245 permit 65000:2 0:49 0:245 route-map calculator permit 12628 match community 2_49_245 set community 0:12005 ip community-list standard 2_3_101 permit 65000:2 0:3 0:101 ip community-list standard 1_47_256 permit 65000:1 0:47 0:256 ip community-list standard 1_48_255 permit 65000:1 0:48 0:255 ip community-list standard 1_49_254 permit 65000:1 0:49 0:254 ip community-list standard 1_50_253 permit 65000:1 0:50 0:253 ip community-list standard 1_51_252 permit 65000:1 0:51 0:252 ip community-list standard 1_52_251 permit 65000:1 0:52 0:251 ip community-list standard 1_53_250 permit 65000:1 0:53 0:250 ip community-list standard 1_54_249 permit 65000:1 0:54 0:249 ip community-list standard 1_55_248 permit 65000:1 0:55 0:248 ip community-list standard 1_56_247 permit 65000:1 0:56 0:247 ip community-list standard 1_57_246 permit 65000:1 0:57 0:246 ip community-list standard 1_58_245 permit 65000:1 0:58 0:245 ip community-list standard 1_59_244 permit 65000:1 0:59 0:244 ip community-list standard 1_60_243 permit 65000:1 0:60 0:243 ip community-list standard 1_61_242 permit 65000:1 0:61 0:242 ip community-list standard 1_62_241 permit 65000:1 0:62 0:241 ip community-list standard 1_63_240 permit 65000:1 0:63 0:240 ip community-list standard 1_64_239 permit 65000:1 0:64 0:239 ip community-list standard 1_65_238 permit 65000:1 0:65 0:238 ip community-list standard 1_66_237 permit 65000:1 0:66 0:237 ip community-list standard 1_67_236 permit 65000:1 0:67 0:236 ip community-list standard 1_68_235 permit 65000:1 0:68 0:235 ip community-list standard 1_69_234 permit 65000:1 0:69 0:234 ip community-list standard 1_70_233 permit 65000:1 0:70 0:233 ip community-list standard 1_71_232 permit 65000:1 0:71 0:232 ip community-list standard 1_72_231 permit 65000:1 0:72 0:231 ip community-list standard 1_73_230 permit 65000:1 0:73 0:230 ip community-list standard 1_74_229 permit 65000:1 0:74 0:229 ip community-list standard 1_75_228 permit 65000:1 0:75 0:228 ip community-list standard 1_76_227 permit 65000:1 0:76 0:227 ip community-list standard 1_77_226 permit 65000:1 0:77 0:226 ip community-list standard 1_78_225 permit 65000:1 0:78 0:225 ip community-list standard 1_79_224 permit 65000:1 0:79 0:224 ip community-list standard 1_80_223 permit 65000:1 0:80 0:223 ip community-list standard 1_81_222 permit 65000:1 0:81 0:222 ip community-list standard 1_82_221 permit 65000:1 0:82 0:221 ip community-list standard 1_83_220 permit 65000:1 0:83 0:220 ip community-list standard 1_84_219 permit 65000:1 0:84 0:219 ip community-list standard 1_85_218 permit 65000:1 0:85 0:218 ip community-list standard 1_86_217 permit 65000:1 0:86 0:217 ip community-list standard 1_87_216 permit 65000:1 0:87 0:216 ip community-list standard 1_88_215 permit 65000:1 0:88 0:215 ip community-list standard 1_89_214 permit 65000:1 0:89 0:214 ip community-list standard 1_90_213 permit 65000:1 0:90 0:213 ip community-list standard 1_91_212 permit 65000:1 0:91 0:212 ip community-list standard 1_92_211 permit 65000:1 0:92 0:211 ip community-list standard 1_93_210 permit 65000:1 0:93 0:210 ip community-list standard 1_94_209 permit 65000:1 0:94 0:209 ip community-list standard 1_95_208 permit 65000:1 0:95 0:208 ip community-list standard 1_96_207 permit 65000:1 0:96 0:207 ip community-list standard 1_97_206 permit 65000:1 0:97 0:206 ip community-list standard 1_98_205 permit 65000:1 0:98 0:205 ip community-list standard 1_99_204 permit 65000:1 0:99 0:204 ip community-list standard 1_100_203 permit 65000:1 0:100 0:203 ip community-list standard 1_101_202 permit 65000:1 0:101 0:202 ip community-list standard 1_102_201 permit 65000:1 0:102 0:201 ip community-list standard 1_103_200 permit 65000:1 0:103 0:200 ip community-list standard 1_104_199 permit 65000:1 0:104 0:199 ip community-list standard 1_105_198 permit 65000:1 0:105 0:198 ip community-list standard 1_106_197 permit 65000:1 0:106 0:197 ip community-list standard 1_107_196 permit 65000:1 0:107 0:196 ip community-list standard 1_108_195 permit 65000:1 0:108 0:195 ip community-list standard 1_109_194 permit 65000:1 0:109 0:194 ip community-list standard 1_110_193 permit 65000:1 0:110 0:193 ip community-list standard 1_111_192 permit 65000:1 0:111 0:192 ip community-list standard 1_112_191 permit 65000:1 0:112 0:191 ip community-list standard 1_113_190 permit 65000:1 0:113 0:190 ip community-list standard 1_114_189 permit 65000:1 0:114 0:189 ip community-list standard 1_115_188 permit 65000:1 0:115 0:188 ip community-list standard 1_116_187 permit 65000:1 0:116 0:187 ip community-list standard 1_117_186 permit 65000:1 0:117 0:186 ip community-list standard 1_118_185 permit 65000:1 0:118 0:185 ip community-list standard 1_119_184 permit 65000:1 0:119 0:184 ip community-list standard 1_120_183 permit 65000:1 0:120 0:183 ip community-list standard 1_121_182 permit 65000:1 0:121 0:182 ip community-list standard 1_122_181 permit 65000:1 0:122 0:181 ip community-list standard 1_123_180 permit 65000:1 0:123 0:180 ip community-list standard 1_124_179 permit 65000:1 0:124 0:179 ip community-list standard 1_125_178 permit 65000:1 0:125 0:178 ip community-list standard 1_126_177 permit 65000:1 0:126 0:177 ip community-list standard 1_127_176 permit 65000:1 0:127 0:176 ip community-list standard 1_128_175 permit 65000:1 0:128 0:175 ip community-list standard 1_129_174 permit 65000:1 0:129 0:174 ip community-list standard 1_130_173 permit 65000:1 0:130 0:173 ip community-list standard 1_131_172 permit 65000:1 0:131 0:172 ip community-list standard 1_132_171 permit 65000:1 0:132 0:171 ip community-list standard 1_133_170 permit 65000:1 0:133 0:170 ip community-list standard 1_134_169 permit 65000:1 0:134 0:169 ip community-list standard 1_135_168 permit 65000:1 0:135 0:168 ip community-list standard 1_136_167 permit 65000:1 0:136 0:167 ip community-list standard 1_137_166 permit 65000:1 0:137 0:166 ip community-list standard 1_138_165 permit 65000:1 0:138 0:165 ip community-list standard 1_139_164 permit 65000:1 0:139 0:164 ip community-list standard 1_140_163 permit 65000:1 0:140 0:163 ip community-list standard 1_141_162 permit 65000:1 0:141 0:162 ip community-list standard 1_142_161 permit 65000:1 0:142 0:161 ip community-list standard 1_143_160 permit 65000:1 0:143 0:160 ip community-list standard 1_144_159 permit 65000:1 0:144 0:159 ip community-list standard 1_145_158 permit 65000:1 0:145 0:158 ip community-list standard 1_146_157 permit 65000:1 0:146 0:157 ip community-list standard 1_147_156 permit 65000:1 0:147 0:156 ip community-list standard 1_148_155 permit 65000:1 0:148 0:155 ip community-list standard 1_149_154 permit 65000:1 0:149 0:154 ip community-list standard 1_150_153 permit 65000:1 0:150 0:153 ip community-list standard 1_151_152 permit 65000:1 0:151 0:152 route-map calculator permit 12629 match community 2_3_101 1_47_256 1_48_255 1_49_254 1_50_253 set community 0:303 route-map calculator permit 12630 match community 1_51_252 1_52_251 1_53_250 1_54_249 1_55_248 set community 0:303 route-map calculator permit 12631 match community 1_56_247 1_57_246 1_58_245 1_59_244 1_60_243 set community 0:303 route-map calculator permit 12632 match community 1_61_242 1_62_241 1_63_240 1_64_239 1_65_238 set community 0:303 route-map calculator permit 12633 match community 1_66_237 1_67_236 1_68_235 1_69_234 1_70_233 set community 0:303 route-map calculator permit 12634 match community 1_71_232 1_72_231 1_73_230 1_74_229 1_75_228 set community 0:303 route-map calculator permit 12635 match community 1_76_227 1_77_226 1_78_225 1_79_224 1_80_223 set community 0:303 route-map calculator permit 12636 match community 1_81_222 1_82_221 1_83_220 1_84_219 1_85_218 set community 0:303 route-map calculator permit 12637 match community 1_86_217 1_87_216 1_88_215 1_89_214 1_90_213 set community 0:303 route-map calculator permit 12638 match community 1_91_212 1_92_211 1_93_210 1_94_209 1_95_208 set community 0:303 route-map calculator permit 12639 match community 1_96_207 1_97_206 1_98_205 1_99_204 1_100_203 set community 0:303 route-map calculator permit 12640 match community 1_101_202 1_102_201 1_103_200 1_104_199 1_105_198 set community 0:303 route-map calculator permit 12641 match community 1_106_197 1_107_196 1_108_195 1_109_194 1_110_193 set community 0:303 route-map calculator permit 12642 match community 1_111_192 1_112_191 1_113_190 1_114_189 1_115_188 set community 0:303 route-map calculator permit 12643 match community 1_116_187 1_117_186 1_118_185 1_119_184 1_120_183 set community 0:303 route-map calculator permit 12644 match community 1_121_182 1_122_181 1_123_180 1_124_179 1_125_178 set community 0:303 route-map calculator permit 12645 match community 1_126_177 1_127_176 1_128_175 1_129_174 1_130_173 set community 0:303 route-map calculator permit 12646 match community 1_131_172 1_132_171 1_133_170 1_134_169 1_135_168 set community 0:303 route-map calculator permit 12647 match community 1_136_167 1_137_166 1_138_165 1_139_164 1_140_163 set community 0:303 route-map calculator permit 12648 match community 1_141_162 1_142_161 1_143_160 1_144_159 1_145_158 set community 0:303 route-map calculator permit 12649 match community 1_146_157 1_147_156 1_148_155 1_149_154 1_150_153 set community 0:303 route-map calculator permit 12650 match community 1_151_152 set community 0:303 ip community-list standard 2_3_181 permit 65000:2 0:3 0:181 route-map calculator permit 12651 match community 2_3_181 set community 0:543 ip community-list standard 2_106_193 permit 65000:2 0:106 0:193 route-map calculator permit 12652 match community 2_106_193 set community 0:20458 ip community-list standard 2_203_222 permit 65000:2 0:203 0:222 route-map calculator permit 12653 match community 2_203_222 set community 0:45066 ip community-list standard 2_50_137 permit 65000:2 0:50 0:137 route-map calculator permit 12654 match community 2_50_137 set community 0:6850 ip community-list standard 2_182_253 permit 65000:2 0:182 0:253 route-map calculator permit 12655 match community 2_182_253 set community 0:46046 ip community-list standard 2_23_201 permit 65000:2 0:23 0:201 ip community-list standard 2_67_69 permit 65000:2 0:67 0:69 route-map calculator permit 12656 match community 2_23_201 2_67_69 set community 0:4623 ip community-list standard 2_76_164 permit 65000:2 0:76 0:164 ip community-list standard 2_82_152 permit 65000:2 0:82 0:152 route-map calculator permit 12657 match community 2_76_164 2_82_152 set community 0:12464 ip community-list standard 2_119_233 permit 65000:2 0:119 0:233 route-map calculator permit 12658 match community 2_119_233 set community 0:27727 ip community-list standard 2_136_207 permit 65000:2 0:136 0:207 ip community-list standard 2_138_204 permit 65000:2 0:138 0:204 ip community-list standard 2_153_184 permit 65000:2 0:153 0:184 route-map calculator permit 12659 match community 2_136_207 2_138_204 2_153_184 set community 0:28152 ip community-list standard 2_167_200 permit 65000:2 0:167 0:200 route-map calculator permit 12660 match community 2_167_200 set community 0:33400 ip community-list standard 2_59_244 permit 65000:2 0:59 0:244 ip community-list standard 2_61_236 permit 65000:2 0:61 0:236 ip community-list standard 2_118_122 permit 65000:2 0:118 0:122 route-map calculator permit 12661 match community 2_59_244 2_61_236 2_118_122 set community 0:14396 ip community-list standard 2_30_213 permit 65000:2 0:30 0:213 ip community-list standard 2_45_142 permit 65000:2 0:45 0:142 ip community-list standard 2_71_90 permit 65000:2 0:71 0:90 route-map calculator permit 12662 match community 2_30_213 2_45_142 2_71_90 set community 0:6390 ip community-list standard 2_182_213 permit 65000:2 0:182 0:213 route-map calculator permit 12663 match community 2_182_213 set community 0:38766 ip community-list standard 2_172_218 permit 65000:2 0:172 0:218 route-map calculator permit 12664 match community 2_172_218 set community 0:37496 ip community-list standard 2_47_91 permit 65000:2 0:47 0:91 route-map calculator permit 12665 match community 2_47_91 set community 0:4277 ip community-list standard 2_242_253 permit 65000:2 0:242 0:253 route-map calculator permit 12666 match community 2_242_253 set community 0:61226 ip community-list standard 2_36_247 permit 65000:2 0:36 0:247 ip community-list standard 2_38_234 permit 65000:2 0:38 0:234 ip community-list standard 2_39_228 permit 65000:2 0:39 0:228 ip community-list standard 2_52_171 permit 65000:2 0:52 0:171 ip community-list standard 2_57_156 permit 65000:2 0:57 0:156 ip community-list standard 2_76_117 permit 65000:2 0:76 0:117 ip community-list standard 2_78_114 permit 65000:2 0:78 0:114 route-map calculator permit 12667 match community 2_36_247 2_38_234 2_39_228 2_52_171 2_57_156 set community 0:8892 route-map calculator permit 12668 match community 2_76_117 2_78_114 set community 0:8892 ip community-list standard 2_107_183 permit 65000:2 0:107 0:183 route-map calculator permit 12669 match community 2_107_183 set community 0:19581 ip community-list standard 2_115_115 permit 65000:2 0:115 0:115 route-map calculator permit 12670 match community 2_115_115 set community 0:13225 ip community-list standard 2_7_221 permit 65000:2 0:7 0:221 ip community-list standard 2_13_119 permit 65000:2 0:13 0:119 ip community-list standard 2_17_91 permit 65000:2 0:17 0:91 route-map calculator permit 12671 match community 2_7_221 2_13_119 2_17_91 set community 0:1547 ip community-list standard 2_159_194 permit 65000:2 0:159 0:194 route-map calculator permit 12672 match community 2_159_194 set community 0:30846 ip community-list standard 2_215_224 permit 65000:2 0:215 0:224 route-map calculator permit 12673 match community 2_215_224 set community 0:48160 ip community-list standard 2_102_247 permit 65000:2 0:102 0:247 ip community-list standard 2_114_221 permit 65000:2 0:114 0:221 route-map calculator permit 12674 match community 2_102_247 2_114_221 set community 0:25194 ip community-list standard 2_19_245 permit 65000:2 0:19 0:245 ip community-list standard 2_35_133 permit 65000:2 0:35 0:133 ip community-list standard 2_49_95 permit 65000:2 0:49 0:95 route-map calculator permit 12675 match community 2_19_245 2_35_133 2_49_95 set community 0:4655 ip community-list standard 2_42_183 permit 65000:2 0:42 0:183 ip community-list standard 2_61_126 permit 65000:2 0:61 0:126 ip community-list standard 2_63_122 permit 65000:2 0:63 0:122 route-map calculator permit 12676 match community 2_42_183 2_61_126 2_63_122 set community 0:7686 ip community-list standard 2_79_243 permit 65000:2 0:79 0:243 ip community-list standard 2_81_237 permit 65000:2 0:81 0:237 route-map calculator permit 12677 match community 2_79_243 2_81_237 set community 0:19197 ip community-list standard 2_118_231 permit 65000:2 0:118 0:231 ip community-list standard 2_154_177 permit 65000:2 0:154 0:177 route-map calculator permit 12678 match community 2_118_231 2_154_177 set community 0:27258 ip community-list standard 2_146_190 permit 65000:2 0:146 0:190 route-map calculator permit 12679 match community 2_146_190 set community 0:27740 ip community-list standard 2_173_203 permit 65000:2 0:173 0:203 route-map calculator permit 12680 match community 2_173_203 set community 0:35119 ip community-list standard 2_6_199 permit 65000:2 0:6 0:199 route-map calculator permit 12681 match community 2_6_199 set community 0:1194 ip community-list standard 2_39_201 permit 65000:2 0:39 0:201 ip community-list standard 2_67_117 permit 65000:2 0:67 0:117 route-map calculator permit 12682 match community 2_39_201 2_67_117 set community 0:7839 ip community-list standard 2_132_243 permit 65000:2 0:132 0:243 ip community-list standard 2_162_198 permit 65000:2 0:162 0:198 route-map calculator permit 12683 match community 2_132_243 2_162_198 set community 0:32076 ip community-list standard 2_194_207 permit 65000:2 0:194 0:207 route-map calculator permit 12684 match community 2_194_207 set community 0:40158 ip community-list standard 2_222_224 permit 65000:2 0:222 0:224 route-map calculator permit 12685 match community 2_222_224 set community 0:49728 ip community-list standard 2_80_255 permit 65000:2 0:80 0:255 ip community-list standard 2_85_240 permit 65000:2 0:85 0:240 ip community-list standard 2_100_204 permit 65000:2 0:100 0:204 ip community-list standard 2_102_200 permit 65000:2 0:102 0:200 ip community-list standard 2_120_170 permit 65000:2 0:120 0:170 ip community-list standard 2_136_150 permit 65000:2 0:136 0:150 route-map calculator permit 12686 match community 2_80_255 2_85_240 2_100_204 2_102_200 2_120_170 set community 0:20400 route-map calculator permit 12687 match community 2_136_150 set community 0:20400 ip community-list standard 2_207_215 permit 65000:2 0:207 0:215 route-map calculator permit 12688 match community 2_207_215 set community 0:44505 ip community-list standard 2_90_240 permit 65000:2 0:90 0:240 ip community-list standard 2_96_225 permit 65000:2 0:96 0:225 ip community-list standard 2_100_216 permit 65000:2 0:100 0:216 ip community-list standard 2_108_200 permit 65000:2 0:108 0:200 ip community-list standard 2_120_180 permit 65000:2 0:120 0:180 ip community-list standard 2_135_160 permit 65000:2 0:135 0:160 ip community-list standard 2_144_150 permit 65000:2 0:144 0:150 route-map calculator permit 12689 match community 2_90_240 2_96_225 2_100_216 2_108_200 2_120_180 set community 0:21600 route-map calculator permit 12690 match community 2_135_160 2_144_150 set community 0:21600 ip community-list standard 2_39_230 permit 65000:2 0:39 0:230 ip community-list standard 2_46_195 permit 65000:2 0:46 0:195 ip community-list standard 2_65_138 permit 65000:2 0:65 0:138 ip community-list standard 2_69_130 permit 65000:2 0:69 0:130 ip community-list standard 2_78_115 permit 65000:2 0:78 0:115 route-map calculator permit 12691 match community 2_39_230 2_46_195 2_65_138 2_69_130 2_78_115 set community 0:8970 ip community-list standard 2_86_219 permit 65000:2 0:86 0:219 ip community-list standard 2_129_146 permit 65000:2 0:129 0:146 route-map calculator permit 12692 match community 2_86_219 2_129_146 set community 0:18834 ip community-list standard 2_137_144 permit 65000:2 0:137 0:144 route-map calculator permit 12693 match community 2_137_144 set community 0:19728 ip community-list standard 2_29_252 permit 65000:2 0:29 0:252 ip community-list standard 2_36_203 permit 65000:2 0:36 0:203 ip community-list standard 2_42_174 permit 65000:2 0:42 0:174 ip community-list standard 2_58_126 permit 65000:2 0:58 0:126 ip community-list standard 2_63_116 permit 65000:2 0:63 0:116 ip community-list standard 2_84_87 permit 65000:2 0:84 0:87 route-map calculator permit 12694 match community 2_29_252 2_36_203 2_42_174 2_58_126 2_63_116 set community 0:7308 route-map calculator permit 12695 match community 2_84_87 set community 0:7308 ip community-list standard 2_147_201 permit 65000:2 0:147 0:201 route-map calculator permit 12696 match community 2_147_201 set community 0:29547 ip community-list standard 2_139_245 permit 65000:2 0:139 0:245 route-map calculator permit 12697 match community 2_139_245 set community 0:34055 ip community-list standard 2_57_248 permit 65000:2 0:57 0:248 ip community-list standard 2_62_228 permit 65000:2 0:62 0:228 ip community-list standard 2_76_186 permit 65000:2 0:76 0:186 ip community-list standard 2_93_152 permit 65000:2 0:93 0:152 ip community-list standard 2_114_124 permit 65000:2 0:114 0:124 route-map calculator permit 12698 match community 2_57_248 2_62_228 2_76_186 2_93_152 2_114_124 set community 0:14136 ip community-list standard 2_14_199 permit 65000:2 0:14 0:199 route-map calculator permit 12699 match community 2_14_199 set community 0:2786 ip community-list standard 2_249_255 permit 65000:2 0:249 0:255 route-map calculator permit 12700 match community 2_249_255 set community 0:63495 ip community-list standard 2_56_223 permit 65000:2 0:56 0:223 route-map calculator permit 12701 match community 2_56_223 set community 0:12488 ip community-list standard 2_87_169 permit 65000:2 0:87 0:169 route-map calculator permit 12702 match community 2_87_169 set community 0:14703 ip community-list standard 2_178_187 permit 65000:2 0:178 0:187 route-map calculator permit 12703 match community 2_178_187 set community 0:33286 ip community-list standard 2_55_143 permit 65000:2 0:55 0:143 ip community-list standard 2_65_121 permit 65000:2 0:65 0:121 route-map calculator permit 12704 match community 2_55_143 2_65_121 set community 0:7865 ip community-list standard 2_206_233 permit 65000:2 0:206 0:233 route-map calculator permit 12705 match community 2_206_233 set community 0:47998 ip community-list standard 2_15_133 permit 65000:2 0:15 0:133 ip community-list standard 2_19_105 permit 65000:2 0:19 0:105 ip community-list standard 2_21_95 permit 65000:2 0:21 0:95 ip community-list standard 2_35_57 permit 65000:2 0:35 0:57 route-map calculator permit 12706 match community 2_15_133 2_19_105 2_21_95 2_35_57 set community 0:1995 ip community-list standard 2_141_179 permit 65000:2 0:141 0:179 route-map calculator permit 12707 match community 2_141_179 set community 0:25239 ip community-list standard 2_232_246 permit 65000:2 0:232 0:246 route-map calculator permit 12708 match community 2_232_246 set community 0:57072 ip community-list standard 2_92_167 permit 65000:2 0:92 0:167 route-map calculator permit 12709 match community 2_92_167 set community 0:15364 ip community-list standard 2_34_248 permit 65000:2 0:34 0:248 ip community-list standard 2_62_136 permit 65000:2 0:62 0:136 ip community-list standard 2_68_124 permit 65000:2 0:68 0:124 route-map calculator permit 12710 match community 2_34_248 2_62_136 2_68_124 set community 0:8432 ip community-list standard 2_34_228 permit 65000:2 0:34 0:228 ip community-list standard 2_38_204 permit 65000:2 0:38 0:204 ip community-list standard 2_51_152 permit 65000:2 0:51 0:152 ip community-list standard 2_57_136 permit 65000:2 0:57 0:136 ip community-list standard 2_68_114 permit 65000:2 0:68 0:114 ip community-list standard 2_76_102 permit 65000:2 0:76 0:102 route-map calculator permit 12711 match community 2_34_228 2_38_204 2_51_152 2_57_136 2_68_114 set community 0:7752 route-map calculator permit 12712 match community 2_76_102 set community 0:7752 ip community-list standard 2_131_195 permit 65000:2 0:131 0:195 route-map calculator permit 12713 match community 2_131_195 set community 0:25545 ip community-list standard 2_111_237 permit 65000:2 0:111 0:237 route-map calculator permit 12714 match community 2_111_237 set community 0:26307 ip community-list standard 2_84_242 permit 65000:2 0:84 0:242 ip community-list standard 2_88_231 permit 65000:2 0:88 0:231 ip community-list standard 2_121_168 permit 65000:2 0:121 0:168 ip community-list standard 2_132_154 permit 65000:2 0:132 0:154 route-map calculator permit 12715 match community 2_84_242 2_88_231 2_121_168 2_132_154 set community 0:20328 ip community-list standard 2_54_209 permit 65000:2 0:54 0:209 ip community-list standard 2_57_198 permit 65000:2 0:57 0:198 ip community-list standard 2_66_171 permit 65000:2 0:66 0:171 ip community-list standard 2_99_114 permit 65000:2 0:99 0:114 route-map calculator permit 12716 match community 2_54_209 2_57_198 2_66_171 2_99_114 set community 0:11286 ip community-list standard 2_178_227 permit 65000:2 0:178 0:227 route-map calculator permit 12717 match community 2_178_227 set community 0:40406 ip community-list standard 2_54_178 permit 65000:2 0:54 0:178 ip community-list standard 2_89_108 permit 65000:2 0:89 0:108 route-map calculator permit 12718 match community 2_54_178 2_89_108 set community 0:9612 ip community-list standard 2_100_193 permit 65000:2 0:100 0:193 route-map calculator permit 12719 match community 2_100_193 set community 0:19300 ip community-list standard 2_13_211 permit 65000:2 0:13 0:211 route-map calculator permit 12720 match community 2_13_211 set community 0:2743 ip community-list standard 2_59_89 permit 65000:2 0:59 0:89 route-map calculator permit 12721 match community 2_59_89 set community 0:5251 ip community-list standard 2_5_83 permit 65000:2 0:5 0:83 ip community-list standard 1_159_256 permit 65000:1 0:159 0:256 ip community-list standard 1_160_255 permit 65000:1 0:160 0:255 ip community-list standard 1_161_254 permit 65000:1 0:161 0:254 ip community-list standard 1_162_253 permit 65000:1 0:162 0:253 ip community-list standard 1_163_252 permit 65000:1 0:163 0:252 ip community-list standard 1_164_251 permit 65000:1 0:164 0:251 ip community-list standard 1_165_250 permit 65000:1 0:165 0:250 ip community-list standard 1_166_249 permit 65000:1 0:166 0:249 ip community-list standard 1_167_248 permit 65000:1 0:167 0:248 ip community-list standard 1_168_247 permit 65000:1 0:168 0:247 ip community-list standard 1_169_246 permit 65000:1 0:169 0:246 ip community-list standard 1_170_245 permit 65000:1 0:170 0:245 ip community-list standard 1_171_244 permit 65000:1 0:171 0:244 ip community-list standard 1_172_243 permit 65000:1 0:172 0:243 ip community-list standard 1_173_242 permit 65000:1 0:173 0:242 ip community-list standard 1_174_241 permit 65000:1 0:174 0:241 ip community-list standard 1_175_240 permit 65000:1 0:175 0:240 ip community-list standard 1_176_239 permit 65000:1 0:176 0:239 ip community-list standard 1_177_238 permit 65000:1 0:177 0:238 ip community-list standard 1_178_237 permit 65000:1 0:178 0:237 ip community-list standard 1_179_236 permit 65000:1 0:179 0:236 ip community-list standard 1_180_235 permit 65000:1 0:180 0:235 ip community-list standard 1_181_234 permit 65000:1 0:181 0:234 ip community-list standard 1_182_233 permit 65000:1 0:182 0:233 ip community-list standard 1_183_232 permit 65000:1 0:183 0:232 ip community-list standard 1_184_231 permit 65000:1 0:184 0:231 ip community-list standard 1_185_230 permit 65000:1 0:185 0:230 ip community-list standard 1_186_229 permit 65000:1 0:186 0:229 ip community-list standard 1_187_228 permit 65000:1 0:187 0:228 ip community-list standard 1_188_227 permit 65000:1 0:188 0:227 ip community-list standard 1_189_226 permit 65000:1 0:189 0:226 ip community-list standard 1_190_225 permit 65000:1 0:190 0:225 ip community-list standard 1_191_224 permit 65000:1 0:191 0:224 ip community-list standard 1_192_223 permit 65000:1 0:192 0:223 ip community-list standard 1_193_222 permit 65000:1 0:193 0:222 ip community-list standard 1_194_221 permit 65000:1 0:194 0:221 ip community-list standard 1_195_220 permit 65000:1 0:195 0:220 ip community-list standard 1_196_219 permit 65000:1 0:196 0:219 ip community-list standard 1_197_218 permit 65000:1 0:197 0:218 ip community-list standard 1_198_217 permit 65000:1 0:198 0:217 ip community-list standard 1_199_216 permit 65000:1 0:199 0:216 ip community-list standard 1_200_215 permit 65000:1 0:200 0:215 ip community-list standard 1_201_214 permit 65000:1 0:201 0:214 ip community-list standard 1_202_213 permit 65000:1 0:202 0:213 ip community-list standard 1_203_212 permit 65000:1 0:203 0:212 ip community-list standard 1_204_211 permit 65000:1 0:204 0:211 ip community-list standard 1_205_210 permit 65000:1 0:205 0:210 ip community-list standard 1_206_209 permit 65000:1 0:206 0:209 ip community-list standard 1_207_208 permit 65000:1 0:207 0:208 route-map calculator permit 12722 match community 2_5_83 1_159_256 1_160_255 1_161_254 1_162_253 set community 0:415 route-map calculator permit 12723 match community 1_163_252 1_164_251 1_165_250 1_166_249 1_167_248 set community 0:415 route-map calculator permit 12724 match community 1_168_247 1_169_246 1_170_245 1_171_244 1_172_243 set community 0:415 route-map calculator permit 12725 match community 1_173_242 1_174_241 1_175_240 1_176_239 1_177_238 set community 0:415 route-map calculator permit 12726 match community 1_178_237 1_179_236 1_180_235 1_181_234 1_182_233 set community 0:415 route-map calculator permit 12727 match community 1_183_232 1_184_231 1_185_230 1_186_229 1_187_228 set community 0:415 route-map calculator permit 12728 match community 1_188_227 1_189_226 1_190_225 1_191_224 1_192_223 set community 0:415 route-map calculator permit 12729 match community 1_193_222 1_194_221 1_195_220 1_196_219 1_197_218 set community 0:415 route-map calculator permit 12730 match community 1_198_217 1_199_216 1_200_215 1_201_214 1_202_213 set community 0:415 route-map calculator permit 12731 match community 1_203_212 1_204_211 1_205_210 1_206_209 1_207_208 set community 0:415 ip community-list standard 2_25_125 permit 65000:2 0:25 0:125 route-map calculator permit 12732 match community 2_25_125 set community 0:3125 ip community-list standard 2_8_172 permit 65000:2 0:8 0:172 ip community-list standard 2_16_86 permit 65000:2 0:16 0:86 ip community-list standard 2_32_43 permit 65000:2 0:32 0:43 route-map calculator permit 12733 match community 2_8_172 2_16_86 2_32_43 set community 0:1376 ip community-list standard 2_101_248 permit 65000:2 0:101 0:248 ip community-list standard 2_124_202 permit 65000:2 0:124 0:202 route-map calculator permit 12734 match community 2_101_248 2_124_202 set community 0:25048 ip community-list standard 2_11_62 permit 65000:2 0:11 0:62 ip community-list standard 2_22_31 permit 65000:2 0:22 0:31 route-map calculator permit 12735 match community 2_11_62 2_22_31 set community 0:682 ip community-list standard 2_24_201 permit 65000:2 0:24 0:201 ip community-list standard 2_36_134 permit 65000:2 0:36 0:134 ip community-list standard 2_67_72 permit 65000:2 0:67 0:72 route-map calculator permit 12736 match community 2_24_201 2_36_134 2_67_72 set community 0:4824 ip community-list standard 2_95_189 permit 65000:2 0:95 0:189 ip community-list standard 2_105_171 permit 65000:2 0:105 0:171 ip community-list standard 2_133_135 permit 65000:2 0:133 0:135 route-map calculator permit 12737 match community 2_95_189 2_105_171 2_133_135 set community 0:17955 ip community-list standard 2_18_211 permit 65000:2 0:18 0:211 route-map calculator permit 12738 match community 2_18_211 set community 0:3798 ip community-list standard 2_119_163 permit 65000:2 0:119 0:163 route-map calculator permit 12739 match community 2_119_163 set community 0:19397 ip community-list standard 2_99_254 permit 65000:2 0:99 0:254 ip community-list standard 2_127_198 permit 65000:2 0:127 0:198 route-map calculator permit 12740 match community 2_99_254 2_127_198 set community 0:25146 ip community-list standard 2_47_101 permit 65000:2 0:47 0:101 route-map calculator permit 12741 match community 2_47_101 set community 0:4747 ip community-list standard 2_86_204 permit 65000:2 0:86 0:204 ip community-list standard 2_102_172 permit 65000:2 0:102 0:172 ip community-list standard 2_129_136 permit 65000:2 0:129 0:136 route-map calculator permit 12742 match community 2_86_204 2_102_172 2_129_136 set community 0:17544 ip community-list standard 2_69_224 permit 65000:2 0:69 0:224 ip community-list standard 2_84_184 permit 65000:2 0:84 0:184 ip community-list standard 2_92_168 permit 65000:2 0:92 0:168 ip community-list standard 2_96_161 permit 65000:2 0:96 0:161 ip community-list standard 2_112_138 permit 65000:2 0:112 0:138 route-map calculator permit 12743 match community 2_69_224 2_84_184 2_92_168 2_96_161 2_112_138 set community 0:15456 ip community-list standard 2_113_243 permit 65000:2 0:113 0:243 route-map calculator permit 12744 match community 2_113_243 set community 0:27459 ip community-list standard 2_32_221 permit 65000:2 0:32 0:221 ip community-list standard 2_34_208 permit 65000:2 0:34 0:208 ip community-list standard 2_52_136 permit 65000:2 0:52 0:136 ip community-list standard 2_68_104 permit 65000:2 0:68 0:104 route-map calculator permit 12745 match community 2_32_221 2_34_208 2_52_136 2_68_104 set community 0:7072 ip community-list standard 2_158_251 permit 65000:2 0:158 0:251 route-map calculator permit 12746 match community 2_158_251 set community 0:39658 ip community-list standard 2_141_173 permit 65000:2 0:141 0:173 route-map calculator permit 12747 match community 2_141_173 set community 0:24393 ip community-list standard 2_166_188 permit 65000:2 0:166 0:188 route-map calculator permit 12748 match community 2_166_188 set community 0:31208 ip community-list standard 2_39_232 permit 65000:2 0:39 0:232 ip community-list standard 2_52_174 permit 65000:2 0:52 0:174 ip community-list standard 2_58_156 permit 65000:2 0:58 0:156 ip community-list standard 2_78_116 permit 65000:2 0:78 0:116 ip community-list standard 2_87_104 permit 65000:2 0:87 0:104 route-map calculator permit 12749 match community 2_39_232 2_52_174 2_58_156 2_78_116 2_87_104 set community 0:9048 ip community-list standard 2_78_233 permit 65000:2 0:78 0:233 route-map calculator permit 12750 match community 2_78_233 set community 0:18174 ip community-list standard 2_68_172 permit 65000:2 0:68 0:172 ip community-list standard 2_86_136 permit 65000:2 0:86 0:136 route-map calculator permit 12751 match community 2_68_172 2_86_136 set community 0:11696 ip community-list standard 2_194_237 permit 65000:2 0:194 0:237 route-map calculator permit 12752 match community 2_194_237 set community 0:45978 ip community-list standard 2_168_178 permit 65000:2 0:168 0:178 route-map calculator permit 12753 match community 2_168_178 set community 0:29904 ip community-list standard 2_108_237 permit 65000:2 0:108 0:237 ip community-list standard 2_158_162 permit 65000:2 0:158 0:162 route-map calculator permit 12754 match community 2_108_237 2_158_162 set community 0:25596 ip community-list standard 1_1_73 permit 65000:1 0:1 0:73 ip community-list standard 2_1_74 permit 65000:2 0:1 0:74 ip community-list standard 2_2_37 permit 65000:2 0:2 0:37 ip community-list standard 1_2_72 permit 65000:1 0:2 0:72 ip community-list standard 1_3_71 permit 65000:1 0:3 0:71 ip community-list standard 1_4_70 permit 65000:1 0:4 0:70 ip community-list standard 1_5_69 permit 65000:1 0:5 0:69 ip community-list standard 1_6_68 permit 65000:1 0:6 0:68 ip community-list standard 1_7_67 permit 65000:1 0:7 0:67 ip community-list standard 1_8_66 permit 65000:1 0:8 0:66 ip community-list standard 1_9_65 permit 65000:1 0:9 0:65 ip community-list standard 1_10_64 permit 65000:1 0:10 0:64 ip community-list standard 1_11_63 permit 65000:1 0:11 0:63 ip community-list standard 1_12_62 permit 65000:1 0:12 0:62 ip community-list standard 1_13_61 permit 65000:1 0:13 0:61 ip community-list standard 1_14_60 permit 65000:1 0:14 0:60 ip community-list standard 1_15_59 permit 65000:1 0:15 0:59 ip community-list standard 1_16_58 permit 65000:1 0:16 0:58 ip community-list standard 1_17_57 permit 65000:1 0:17 0:57 ip community-list standard 1_18_56 permit 65000:1 0:18 0:56 ip community-list standard 1_19_55 permit 65000:1 0:19 0:55 ip community-list standard 1_20_54 permit 65000:1 0:20 0:54 ip community-list standard 1_21_53 permit 65000:1 0:21 0:53 ip community-list standard 1_22_52 permit 65000:1 0:22 0:52 ip community-list standard 1_23_51 permit 65000:1 0:23 0:51 ip community-list standard 1_24_50 permit 65000:1 0:24 0:50 ip community-list standard 1_25_49 permit 65000:1 0:25 0:49 ip community-list standard 1_26_48 permit 65000:1 0:26 0:48 ip community-list standard 1_27_47 permit 65000:1 0:27 0:47 ip community-list standard 1_28_46 permit 65000:1 0:28 0:46 ip community-list standard 1_29_45 permit 65000:1 0:29 0:45 ip community-list standard 1_30_44 permit 65000:1 0:30 0:44 ip community-list standard 1_31_43 permit 65000:1 0:31 0:43 ip community-list standard 1_32_42 permit 65000:1 0:32 0:42 ip community-list standard 1_33_41 permit 65000:1 0:33 0:41 ip community-list standard 1_34_40 permit 65000:1 0:34 0:40 ip community-list standard 1_35_39 permit 65000:1 0:35 0:39 ip community-list standard 1_36_38 permit 65000:1 0:36 0:38 ip community-list standard 1_37_37 permit 65000:1 0:37 0:37 ip community-list expanded c74 permit 1 ^65000:4_0:74_0:1$ ip community-list expanded c74 permit 2 ^65000:3_0:75_0:1$ ip community-list expanded c74 permit 3 ^65000:3_0:76_0:2$ ip community-list expanded c74 permit 4 ^65000:3_0:77_0:3$ ip community-list expanded c74 permit 5 ^65000:3_0:78_0:4$ ip community-list expanded c74 permit 6 ^65000:3_0:79_0:5$ ip community-list expanded c74 permit 7 ^65000:3_0:80_0:6$ ip community-list expanded c74 permit 8 ^65000:3_0:81_0:7$ ip community-list expanded c74 permit 9 ^65000:3_0:82_0:8$ ip community-list expanded c74 permit 10 ^65000:3_0:83_0:9$ ip community-list expanded c74 permit 11 ^65000:3_0:84_0:10$ ip community-list expanded c74 permit 12 ^65000:3_0:85_0:11$ ip community-list expanded c74 permit 13 ^65000:3_0:86_0:12$ ip community-list expanded c74 permit 14 ^65000:3_0:87_0:13$ ip community-list expanded c74 permit 15 ^65000:3_0:88_0:14$ ip community-list expanded c74 permit 16 ^65000:3_0:89_0:15$ ip community-list expanded c74 permit 17 ^65000:3_0:90_0:16$ ip community-list expanded c74 permit 18 ^65000:3_0:91_0:17$ ip community-list expanded c74 permit 19 ^65000:3_0:92_0:18$ ip community-list expanded c74 permit 20 ^65000:3_0:93_0:19$ ip community-list expanded c74 permit 21 ^65000:3_0:94_0:20$ ip community-list expanded c74 permit 22 ^65000:3_0:95_0:21$ ip community-list expanded c74 permit 23 ^65000:3_0:96_0:22$ ip community-list expanded c74 permit 24 ^65000:3_0:97_0:23$ ip community-list expanded c74 permit 25 ^65000:3_0:98_0:24$ ip community-list expanded c74 permit 26 ^65000:3_0:99_0:25$ ip community-list expanded c74 permit 27 ^65000:3_0:100_0:26$ ip community-list expanded c74 permit 28 ^65000:3_0:101_0:27$ ip community-list expanded c74 permit 29 ^65000:3_0:102_0:28$ ip community-list expanded c74 permit 30 ^65000:3_0:103_0:29$ ip community-list expanded c74 permit 31 ^65000:3_0:104_0:30$ ip community-list expanded c74 permit 32 ^65000:3_0:105_0:31$ ip community-list expanded c74 permit 33 ^65000:3_0:106_0:32$ ip community-list expanded c74 permit 34 ^65000:3_0:107_0:33$ ip community-list expanded c74 permit 35 ^65000:3_0:108_0:34$ ip community-list expanded c74 permit 36 ^65000:3_0:109_0:35$ ip community-list expanded c74 permit 37 ^65000:3_0:110_0:36$ ip community-list expanded c74 permit 38 ^65000:3_0:111_0:37$ ip community-list expanded c74 permit 39 ^65000:3_0:112_0:38$ ip community-list expanded c74 permit 40 ^65000:3_0:113_0:39$ ip community-list expanded c74 permit 41 ^65000:3_0:114_0:40$ ip community-list expanded c74 permit 42 ^65000:3_0:115_0:41$ ip community-list expanded c74 permit 43 ^65000:3_0:116_0:42$ ip community-list expanded c74 permit 44 ^65000:3_0:117_0:43$ ip community-list expanded c74 permit 45 ^65000:3_0:118_0:44$ ip community-list expanded c74 permit 46 ^65000:3_0:119_0:45$ ip community-list expanded c74 permit 47 ^65000:3_0:120_0:46$ ip community-list expanded c74 permit 48 ^65000:3_0:121_0:47$ ip community-list expanded c74 permit 49 ^65000:3_0:122_0:48$ ip community-list expanded c74 permit 50 ^65000:3_0:123_0:49$ ip community-list expanded c74 permit 51 ^65000:3_0:124_0:50$ ip community-list expanded c74 permit 52 ^65000:3_0:125_0:51$ ip community-list expanded c74 permit 53 ^65000:3_0:126_0:52$ ip community-list expanded c74 permit 54 ^65000:3_0:127_0:53$ ip community-list expanded c74 permit 55 ^65000:3_0:128_0:54$ ip community-list expanded c74 permit 56 ^65000:3_0:129_0:55$ ip community-list expanded c74 permit 57 ^65000:3_0:130_0:56$ ip community-list expanded c74 permit 58 ^65000:3_0:131_0:57$ ip community-list expanded c74 permit 59 ^65000:3_0:132_0:58$ ip community-list expanded c74 permit 60 ^65000:3_0:133_0:59$ ip community-list expanded c74 permit 61 ^65000:3_0:134_0:60$ ip community-list expanded c74 permit 62 ^65000:3_0:135_0:61$ ip community-list expanded c74 permit 63 ^65000:3_0:136_0:62$ ip community-list expanded c74 permit 64 ^65000:3_0:137_0:63$ ip community-list expanded c74 permit 65 ^65000:3_0:138_0:64$ ip community-list expanded c74 permit 66 ^65000:3_0:139_0:65$ ip community-list expanded c74 permit 67 ^65000:3_0:140_0:66$ ip community-list expanded c74 permit 68 ^65000:3_0:141_0:67$ ip community-list expanded c74 permit 69 ^65000:3_0:142_0:68$ ip community-list expanded c74 permit 70 ^65000:3_0:143_0:69$ ip community-list expanded c74 permit 71 ^65000:3_0:144_0:70$ ip community-list expanded c74 permit 72 ^65000:3_0:145_0:71$ ip community-list expanded c74 permit 73 ^65000:3_0:146_0:72$ ip community-list expanded c74 permit 74 ^65000:3_0:147_0:73$ ip community-list expanded c74 permit 75 ^65000:4_0:148_0:2$ ip community-list expanded c74 permit 76 ^65000:3_0:148_0:74$ ip community-list expanded c74 permit 77 ^65000:4_0:149_0:2$ ip community-list expanded c74 permit 78 ^65000:3_0:149_0:75$ ip community-list expanded c74 permit 79 ^65000:3_0:150_0:76$ ip community-list expanded c74 permit 80 ^65000:3_0:151_0:77$ ip community-list expanded c74 permit 81 ^65000:3_0:152_0:78$ ip community-list expanded c74 permit 82 ^65000:3_0:153_0:79$ ip community-list expanded c74 permit 83 ^65000:3_0:154_0:80$ ip community-list expanded c74 permit 84 ^65000:3_0:155_0:81$ ip community-list expanded c74 permit 85 ^65000:3_0:156_0:82$ ip community-list expanded c74 permit 86 ^65000:3_0:157_0:83$ ip community-list expanded c74 permit 87 ^65000:3_0:158_0:84$ ip community-list expanded c74 permit 88 ^65000:3_0:159_0:85$ ip community-list expanded c74 permit 89 ^65000:3_0:160_0:86$ ip community-list expanded c74 permit 90 ^65000:3_0:161_0:87$ ip community-list expanded c74 permit 91 ^65000:3_0:162_0:88$ ip community-list expanded c74 permit 92 ^65000:3_0:163_0:89$ ip community-list expanded c74 permit 93 ^65000:3_0:164_0:90$ ip community-list expanded c74 permit 94 ^65000:3_0:165_0:91$ ip community-list expanded c74 permit 95 ^65000:3_0:166_0:92$ ip community-list expanded c74 permit 96 ^65000:3_0:167_0:93$ ip community-list expanded c74 permit 97 ^65000:3_0:168_0:94$ ip community-list expanded c74 permit 98 ^65000:3_0:169_0:95$ ip community-list expanded c74 permit 99 ^65000:3_0:170_0:96$ ip community-list expanded c74 permit 100 ^65000:3_0:171_0:97$ ip community-list expanded c74 permit 101 ^65000:3_0:172_0:98$ ip community-list expanded c74 permit 102 ^65000:3_0:173_0:99$ ip community-list expanded c74 permit 103 ^65000:3_0:174_0:100$ ip community-list expanded c74 permit 104 ^65000:3_0:175_0:101$ ip community-list expanded c74 permit 105 ^65000:3_0:176_0:102$ ip community-list expanded c74 permit 106 ^65000:3_0:177_0:103$ ip community-list expanded c74 permit 107 ^65000:3_0:178_0:104$ ip community-list expanded c74 permit 108 ^65000:3_0:179_0:105$ ip community-list expanded c74 permit 109 ^65000:3_0:180_0:106$ ip community-list expanded c74 permit 110 ^65000:3_0:181_0:107$ ip community-list expanded c74 permit 111 ^65000:3_0:182_0:108$ ip community-list expanded c74 permit 112 ^65000:3_0:183_0:109$ ip community-list expanded c74 permit 113 ^65000:3_0:184_0:110$ ip community-list expanded c74 permit 114 ^65000:3_0:185_0:111$ ip community-list expanded c74 permit 115 ^65000:3_0:186_0:112$ ip community-list expanded c74 permit 116 ^65000:3_0:187_0:113$ ip community-list expanded c74 permit 117 ^65000:3_0:188_0:114$ ip community-list expanded c74 permit 118 ^65000:3_0:189_0:115$ ip community-list expanded c74 permit 119 ^65000:3_0:190_0:116$ ip community-list expanded c74 permit 120 ^65000:3_0:191_0:117$ ip community-list expanded c74 permit 121 ^65000:3_0:192_0:118$ ip community-list expanded c74 permit 122 ^65000:3_0:193_0:119$ ip community-list expanded c74 permit 123 ^65000:3_0:194_0:120$ ip community-list expanded c74 permit 124 ^65000:3_0:195_0:121$ ip community-list expanded c74 permit 125 ^65000:3_0:196_0:122$ ip community-list expanded c74 permit 126 ^65000:3_0:197_0:123$ ip community-list expanded c74 permit 127 ^65000:3_0:198_0:124$ ip community-list expanded c74 permit 128 ^65000:3_0:199_0:125$ ip community-list expanded c74 permit 129 ^65000:3_0:200_0:126$ ip community-list expanded c74 permit 130 ^65000:3_0:201_0:127$ ip community-list expanded c74 permit 131 ^65000:3_0:202_0:128$ ip community-list expanded c74 permit 132 ^65000:3_0:203_0:129$ ip community-list expanded c74 permit 133 ^65000:3_0:204_0:130$ ip community-list expanded c74 permit 134 ^65000:3_0:205_0:131$ ip community-list expanded c74 permit 135 ^65000:3_0:206_0:132$ ip community-list expanded c74 permit 136 ^65000:3_0:207_0:133$ ip community-list expanded c74 permit 137 ^65000:3_0:208_0:134$ ip community-list expanded c74 permit 138 ^65000:3_0:209_0:135$ ip community-list expanded c74 permit 139 ^65000:3_0:210_0:136$ ip community-list expanded c74 permit 140 ^65000:3_0:211_0:137$ ip community-list expanded c74 permit 141 ^65000:3_0:212_0:138$ ip community-list expanded c74 permit 142 ^65000:3_0:213_0:139$ ip community-list expanded c74 permit 143 ^65000:3_0:214_0:140$ ip community-list expanded c74 permit 144 ^65000:3_0:215_0:141$ ip community-list expanded c74 permit 145 ^65000:3_0:216_0:142$ ip community-list expanded c74 permit 146 ^65000:3_0:217_0:143$ ip community-list expanded c74 permit 147 ^65000:3_0:218_0:144$ ip community-list expanded c74 permit 148 ^65000:3_0:219_0:145$ ip community-list expanded c74 permit 149 ^65000:3_0:220_0:146$ ip community-list expanded c74 permit 150 ^65000:3_0:221_0:147$ ip community-list expanded c74 permit 151 ^65000:4_0:222_0:3$ ip community-list expanded c74 permit 152 ^65000:3_0:222_0:148$ ip community-list expanded c74 permit 153 ^65000:4_0:223_0:3$ ip community-list expanded c74 permit 154 ^65000:3_0:223_0:149$ ip community-list expanded c74 permit 155 ^65000:4_0:224_0:3$ ip community-list expanded c74 permit 156 ^65000:3_0:224_0:150$ ip community-list expanded c74 permit 157 ^65000:3_0:225_0:151$ ip community-list expanded c74 permit 158 ^65000:3_0:226_0:152$ ip community-list expanded c74 permit 159 ^65000:3_0:227_0:153$ ip community-list expanded c74 permit 160 ^65000:3_0:228_0:154$ ip community-list expanded c74 permit 161 ^65000:3_0:229_0:155$ ip community-list expanded c74 permit 162 ^65000:3_0:230_0:156$ ip community-list expanded c74 permit 163 ^65000:3_0:231_0:157$ ip community-list expanded c74 permit 164 ^65000:3_0:232_0:158$ ip community-list expanded c74 permit 165 ^65000:3_0:233_0:159$ ip community-list expanded c74 permit 166 ^65000:3_0:234_0:160$ ip community-list expanded c74 permit 167 ^65000:3_0:235_0:161$ ip community-list expanded c74 permit 168 ^65000:3_0:236_0:162$ ip community-list expanded c74 permit 169 ^65000:3_0:237_0:163$ ip community-list expanded c74 permit 170 ^65000:3_0:238_0:164$ ip community-list expanded c74 permit 171 ^65000:3_0:239_0:165$ ip community-list expanded c74 permit 172 ^65000:3_0:240_0:166$ ip community-list expanded c74 permit 173 ^65000:3_0:241_0:167$ ip community-list expanded c74 permit 174 ^65000:3_0:242_0:168$ ip community-list expanded c74 permit 175 ^65000:3_0:243_0:169$ ip community-list expanded c74 permit 176 ^65000:3_0:244_0:170$ ip community-list expanded c74 permit 177 ^65000:3_0:245_0:171$ ip community-list expanded c74 permit 178 ^65000:3_0:246_0:172$ ip community-list expanded c74 permit 179 ^65000:3_0:247_0:173$ ip community-list expanded c74 permit 180 ^65000:3_0:248_0:174$ ip community-list expanded c74 permit 181 ^65000:3_0:249_0:175$ ip community-list expanded c74 permit 182 ^65000:3_0:250_0:176$ ip community-list expanded c74 permit 183 ^65000:3_0:251_0:177$ ip community-list expanded c74 permit 184 ^65000:3_0:252_0:178$ ip community-list expanded c74 permit 185 ^65000:3_0:253_0:179$ ip community-list expanded c74 permit 186 ^65000:3_0:254_0:180$ ip community-list expanded c74 permit 187 ^65000:3_0:255_0:181$ ip community-list expanded c74 permit 188 ^65000:3_0:256_0:182$ route-map calculator permit 12755 match community 1_1_73 2_1_74 2_2_37 1_2_72 1_3_71 set community 0:74 route-map calculator permit 12756 match community 1_4_70 1_5_69 1_6_68 1_7_67 1_8_66 set community 0:74 route-map calculator permit 12757 match community 1_9_65 1_10_64 1_11_63 1_12_62 1_13_61 set community 0:74 route-map calculator permit 12758 match community 1_14_60 1_15_59 1_16_58 1_17_57 1_18_56 set community 0:74 route-map calculator permit 12759 match community 1_19_55 1_20_54 1_21_53 1_22_52 1_23_51 set community 0:74 route-map calculator permit 12760 match community 1_24_50 1_25_49 1_26_48 1_27_47 1_28_46 set community 0:74 route-map calculator permit 12761 match community 1_29_45 1_30_44 1_31_43 1_32_42 1_33_41 set community 0:74 route-map calculator permit 12762 match community 1_34_40 1_35_39 1_36_38 1_37_37 c4_74_1 set community 0:74 route-map calculator permit 12763 match community c3_75_1 c3_76_2 c3_77_3 c3_78_4 c3_79_5 set community 0:74 route-map calculator permit 12764 match community c3_80_6 c3_81_7 c3_82_8 c3_83_9 c3_84_10 set community 0:74 route-map calculator permit 12765 match community c3_85_11 c3_86_12 c3_87_13 c3_88_14 c3_89_15 set community 0:74 route-map calculator permit 12766 match community c3_90_16 c3_91_17 c3_92_18 c3_93_19 c3_94_20 set community 0:74 route-map calculator permit 12767 match community c3_95_21 c3_96_22 c3_97_23 c3_98_24 c3_99_25 set community 0:74 route-map calculator permit 12768 match community c3_100_26 c3_101_27 c3_102_28 c3_103_29 c3_104_30 set community 0:74 route-map calculator permit 12769 match community c3_105_31 c3_106_32 c3_107_33 c3_108_34 c3_109_35 set community 0:74 route-map calculator permit 12770 match community c3_110_36 c3_111_37 c3_112_38 c3_113_39 c3_114_40 set community 0:74 route-map calculator permit 12771 match community c3_115_41 c3_116_42 c3_117_43 c3_118_44 c3_119_45 set community 0:74 route-map calculator permit 12772 match community c3_120_46 c3_121_47 c3_122_48 c3_123_49 c3_124_50 set community 0:74 route-map calculator permit 12773 match community c3_125_51 c3_126_52 c3_127_53 c3_128_54 c3_129_55 set community 0:74 route-map calculator permit 12774 match community c3_130_56 c3_131_57 c3_132_58 c3_133_59 c3_134_60 set community 0:74 route-map calculator permit 12775 match community c3_135_61 c3_136_62 c3_137_63 c3_138_64 c3_139_65 set community 0:74 route-map calculator permit 12776 match community c3_140_66 c3_141_67 c3_142_68 c3_143_69 c3_144_70 set community 0:74 route-map calculator permit 12777 match community c3_145_71 c3_146_72 c3_147_73 c4_148_2 c3_148_74 set community 0:74 route-map calculator permit 12778 match community c4_149_2 c3_149_75 c3_150_76 c3_151_77 c3_152_78 set community 0:74 route-map calculator permit 12779 match community c3_153_79 c3_154_80 c3_155_81 c3_156_82 c3_157_83 set community 0:74 route-map calculator permit 12780 match community c3_158_84 c3_159_85 c3_160_86 c3_161_87 c3_162_88 set community 0:74 route-map calculator permit 12781 match community c3_163_89 c3_164_90 c3_165_91 c3_166_92 c3_167_93 set community 0:74 route-map calculator permit 12782 match community c3_168_94 c3_169_95 c3_170_96 c3_171_97 c3_172_98 set community 0:74 route-map calculator permit 12783 match community c3_173_99 c3_174_100 c3_175_101 c3_176_102 c3_177_103 set community 0:74 route-map calculator permit 12784 match community c3_178_104 c3_179_105 c3_180_106 c3_181_107 c3_182_108 set community 0:74 route-map calculator permit 12785 match community c3_183_109 c3_184_110 c3_185_111 c3_186_112 c3_187_113 set community 0:74 route-map calculator permit 12786 match community c3_188_114 c3_189_115 c3_190_116 c3_191_117 c3_192_118 set community 0:74 route-map calculator permit 12787 match community c3_193_119 c3_194_120 c3_195_121 c3_196_122 c3_197_123 set community 0:74 route-map calculator permit 12788 match community c3_198_124 c3_199_125 c3_200_126 c3_201_127 c3_202_128 set community 0:74 route-map calculator permit 12789 match community c3_203_129 c3_204_130 c3_205_131 c3_206_132 c3_207_133 set community 0:74 route-map calculator permit 12790 match community c3_208_134 c3_209_135 c3_210_136 c3_211_137 c3_212_138 set community 0:74 route-map calculator permit 12791 match community c3_213_139 c3_214_140 c3_215_141 c3_216_142 c3_217_143 set community 0:74 route-map calculator permit 12792 match community c3_218_144 c3_219_145 c3_220_146 c3_221_147 c4_222_3 set community 0:74 route-map calculator permit 12793 match community c3_222_148 c4_223_3 c3_223_149 c4_224_3 c3_224_150 set community 0:74 route-map calculator permit 12794 match community c3_225_151 c3_226_152 c3_227_153 c3_228_154 c3_229_155 set community 0:74 route-map calculator permit 12795 match community c3_230_156 c3_231_157 c3_232_158 c3_233_159 c3_234_160 set community 0:74 route-map calculator permit 12796 match community c3_235_161 c3_236_162 c3_237_163 c3_238_164 c3_239_165 set community 0:74 route-map calculator permit 12797 match community c3_240_166 c3_241_167 c3_242_168 c3_243_169 c3_244_170 set community 0:74 route-map calculator permit 12798 match community c3_245_171 c3_246_172 c3_247_173 c3_248_174 c3_249_175 set community 0:74 route-map calculator permit 12799 match community c3_250_176 c3_251_177 c3_252_178 c3_253_179 c3_254_180 set community 0:74 route-map calculator permit 12800 match community c3_255_181 c3_256_182 set community 0:74 ip community-list standard 2_23_139 permit 65000:2 0:23 0:139 route-map calculator permit 12801 match community 2_23_139 set community 0:3197 ip community-list standard 2_78_157 permit 65000:2 0:78 0:157 route-map calculator permit 12802 match community 2_78_157 set community 0:12246 ip community-list standard 2_94_206 permit 65000:2 0:94 0:206 ip community-list standard 2_103_188 permit 65000:2 0:103 0:188 route-map calculator permit 12803 match community 2_94_206 2_103_188 set community 0:19364 ip community-list standard 2_61_256 permit 65000:2 0:61 0:256 ip community-list standard 2_64_244 permit 65000:2 0:64 0:244 ip community-list standard 2_122_128 permit 65000:2 0:122 0:128 route-map calculator permit 12804 match community 2_61_256 2_64_244 2_122_128 set community 0:15616 ip community-list standard 2_212_220 permit 65000:2 0:212 0:220 route-map calculator permit 12805 match community 2_212_220 set community 0:46640 ip community-list standard 2_73_227 permit 65000:2 0:73 0:227 route-map calculator permit 12806 match community 2_73_227 set community 0:16571 ip community-list standard 2_145_181 permit 65000:2 0:145 0:181 route-map calculator permit 12807 match community 2_145_181 set community 0:26245 ip community-list standard 2_145_212 permit 65000:2 0:145 0:212 route-map calculator permit 12808 match community 2_145_212 set community 0:30740 ip community-list standard 2_224_233 permit 65000:2 0:224 0:233 route-map calculator permit 12809 match community 2_224_233 set community 0:52192 ip community-list standard 2_137_176 permit 65000:2 0:137 0:176 route-map calculator permit 12810 match community 2_137_176 set community 0:24112 ip community-list standard 2_130_254 permit 65000:2 0:130 0:254 route-map calculator permit 12811 match community 2_130_254 set community 0:33020 ip community-list standard 2_31_230 permit 65000:2 0:31 0:230 ip community-list standard 2_46_155 permit 65000:2 0:46 0:155 ip community-list standard 2_62_115 permit 65000:2 0:62 0:115 route-map calculator permit 12812 match community 2_31_230 2_46_155 2_62_115 set community 0:7130 ip community-list standard 2_148_227 permit 65000:2 0:148 0:227 route-map calculator permit 12813 match community 2_148_227 set community 0:33596 ip community-list standard 2_22_141 permit 65000:2 0:22 0:141 ip community-list standard 2_33_94 permit 65000:2 0:33 0:94 ip community-list standard 2_47_66 permit 65000:2 0:47 0:66 route-map calculator permit 12814 match community 2_22_141 2_33_94 2_47_66 set community 0:3102 ip community-list standard 2_61_235 permit 65000:2 0:61 0:235 route-map calculator permit 12815 match community 2_61_235 set community 0:14335 ip community-list standard 2_27_230 permit 65000:2 0:27 0:230 ip community-list standard 2_30_207 permit 65000:2 0:30 0:207 ip community-list standard 2_45_138 permit 65000:2 0:45 0:138 ip community-list standard 2_46_135 permit 65000:2 0:46 0:135 ip community-list standard 2_54_115 permit 65000:2 0:54 0:115 ip community-list standard 2_69_90 permit 65000:2 0:69 0:90 route-map calculator permit 12816 match community 2_27_230 2_30_207 2_45_138 2_46_135 2_54_115 set community 0:6210 route-map calculator permit 12817 match community 2_69_90 set community 0:6210 ip community-list standard 2_73_178 permit 65000:2 0:73 0:178 ip community-list standard 2_89_146 permit 65000:2 0:89 0:146 route-map calculator permit 12818 match community 2_73_178 2_89_146 set community 0:12994 ip community-list standard 2_61_157 permit 65000:2 0:61 0:157 route-map calculator permit 12819 match community 2_61_157 set community 0:9577 ip community-list standard 2_29_158 permit 65000:2 0:29 0:158 ip community-list standard 2_58_79 permit 65000:2 0:58 0:79 route-map calculator permit 12820 match community 2_29_158 2_58_79 set community 0:4582 ip community-list standard 2_61_233 permit 65000:2 0:61 0:233 route-map calculator permit 12821 match community 2_61_233 set community 0:14213 ip community-list standard 2_93_97 permit 65000:2 0:93 0:97 route-map calculator permit 12822 match community 2_93_97 set community 0:9021 ip community-list standard 2_150_256 permit 65000:2 0:150 0:256 ip community-list standard 2_160_240 permit 65000:2 0:160 0:240 ip community-list standard 2_192_200 permit 65000:2 0:192 0:200 route-map calculator permit 12823 match community 2_150_256 2_160_240 2_192_200 set community 0:38400 ip community-list standard 2_26_158 permit 65000:2 0:26 0:158 ip community-list standard 2_52_79 permit 65000:2 0:52 0:79 route-map calculator permit 12824 match community 2_26_158 2_52_79 set community 0:4108 ip community-list standard 2_30_220 permit 65000:2 0:30 0:220 ip community-list standard 2_33_200 permit 65000:2 0:33 0:200 ip community-list standard 2_40_165 permit 65000:2 0:40 0:165 ip community-list standard 2_44_150 permit 65000:2 0:44 0:150 ip community-list standard 2_50_132 permit 65000:2 0:50 0:132 ip community-list standard 2_55_120 permit 65000:2 0:55 0:120 ip community-list standard 2_60_110 permit 65000:2 0:60 0:110 ip community-list standard 2_66_100 permit 65000:2 0:66 0:100 ip community-list standard 2_75_88 permit 65000:2 0:75 0:88 route-map calculator permit 12825 match community 2_30_220 2_33_200 2_40_165 2_44_150 2_50_132 set community 0:6600 route-map calculator permit 12826 match community 2_55_120 2_60_110 2_66_100 2_75_88 set community 0:6600 ip community-list standard 2_157_192 permit 65000:2 0:157 0:192 route-map calculator permit 12827 match community 2_157_192 set community 0:30144 ip community-list standard 2_192_251 permit 65000:2 0:192 0:251 route-map calculator permit 12828 match community 2_192_251 set community 0:48192 ip community-list standard 2_41_47 permit 65000:2 0:41 0:47 route-map calculator permit 12829 match community 2_41_47 set community 0:1927 ip community-list standard 2_121_197 permit 65000:2 0:121 0:197 route-map calculator permit 12830 match community 2_121_197 set community 0:23837 ip community-list standard 2_18_244 permit 65000:2 0:18 0:244 ip community-list standard 2_24_183 permit 65000:2 0:24 0:183 ip community-list standard 2_36_122 permit 65000:2 0:36 0:122 ip community-list standard 2_61_72 permit 65000:2 0:61 0:72 route-map calculator permit 12831 match community 2_18_244 2_24_183 2_36_122 2_61_72 set community 0:4392 ip community-list standard 2_101_228 permit 65000:2 0:101 0:228 ip community-list standard 2_114_202 permit 65000:2 0:114 0:202 route-map calculator permit 12832 match community 2_101_228 2_114_202 set community 0:23028 ip community-list standard 2_171_194 permit 65000:2 0:171 0:194 route-map calculator permit 12833 match community 2_171_194 set community 0:33174 ip community-list standard 2_90_211 permit 65000:2 0:90 0:211 route-map calculator permit 12834 match community 2_90_211 set community 0:18990 ip community-list standard 2_178_229 permit 65000:2 0:178 0:229 route-map calculator permit 12835 match community 2_178_229 set community 0:40762 ip community-list standard 2_108_199 permit 65000:2 0:108 0:199 route-map calculator permit 12836 match community 2_108_199 set community 0:21492 ip community-list standard 2_220_222 permit 65000:2 0:220 0:222 route-map calculator permit 12837 match community 2_220_222 set community 0:48840 ip community-list standard 2_140_235 permit 65000:2 0:140 0:235 ip community-list standard 2_175_188 permit 65000:2 0:175 0:188 route-map calculator permit 12838 match community 2_140_235 2_175_188 set community 0:32900 ip community-list standard 2_88_246 permit 65000:2 0:88 0:246 ip community-list standard 2_123_176 permit 65000:2 0:123 0:176 ip community-list standard 2_132_164 permit 65000:2 0:132 0:164 route-map calculator permit 12839 match community 2_88_246 2_123_176 2_132_164 set community 0:21648 ip community-list standard 2_56_230 permit 65000:2 0:56 0:230 ip community-list standard 2_70_184 permit 65000:2 0:70 0:184 ip community-list standard 2_80_161 permit 65000:2 0:80 0:161 ip community-list standard 2_92_140 permit 65000:2 0:92 0:140 ip community-list standard 2_112_115 permit 65000:2 0:112 0:115 route-map calculator permit 12840 match community 2_56_230 2_70_184 2_80_161 2_92_140 2_112_115 set community 0:12880 ip community-list standard 2_23_89 permit 65000:2 0:23 0:89 route-map calculator permit 12841 match community 2_23_89 set community 0:2047 ip community-list standard 2_29_231 permit 65000:2 0:29 0:231 ip community-list standard 2_33_203 permit 65000:2 0:33 0:203 ip community-list standard 2_77_87 permit 65000:2 0:77 0:87 route-map calculator permit 12842 match community 2_29_231 2_33_203 2_77_87 set community 0:6699 ip community-list standard 2_29_193 permit 65000:2 0:29 0:193 route-map calculator permit 12843 match community 2_29_193 set community 0:5597 ip community-list standard 2_96_236 permit 65000:2 0:96 0:236 ip community-list standard 2_118_192 permit 65000:2 0:118 0:192 ip community-list standard 2_128_177 permit 65000:2 0:128 0:177 route-map calculator permit 12844 match community 2_96_236 2_118_192 2_128_177 set community 0:22656 ip community-list standard 2_24_238 permit 65000:2 0:24 0:238 ip community-list standard 2_28_204 permit 65000:2 0:28 0:204 ip community-list standard 2_34_168 permit 65000:2 0:34 0:168 ip community-list standard 2_42_136 permit 65000:2 0:42 0:136 ip community-list standard 2_48_119 permit 65000:2 0:48 0:119 ip community-list standard 2_51_112 permit 65000:2 0:51 0:112 ip community-list standard 2_56_102 permit 65000:2 0:56 0:102 ip community-list standard 2_68_84 permit 65000:2 0:68 0:84 route-map calculator permit 12845 match community 2_24_238 2_28_204 2_34_168 2_42_136 2_48_119 set community 0:5712 route-map calculator permit 12846 match community 2_51_112 2_56_102 2_68_84 set community 0:5712 ip community-list standard 2_102_209 permit 65000:2 0:102 0:209 ip community-list standard 2_114_187 permit 65000:2 0:114 0:187 route-map calculator permit 12847 match community 2_102_209 2_114_187 set community 0:21318 ip community-list standard 2_130_169 permit 65000:2 0:130 0:169 route-map calculator permit 12848 match community 2_130_169 set community 0:21970 ip community-list standard 2_68_234 permit 65000:2 0:68 0:234 ip community-list standard 2_72_221 permit 65000:2 0:72 0:221 ip community-list standard 2_78_204 permit 65000:2 0:78 0:204 ip community-list standard 2_102_156 permit 65000:2 0:102 0:156 ip community-list standard 2_104_153 permit 65000:2 0:104 0:153 ip community-list standard 2_117_136 permit 65000:2 0:117 0:136 route-map calculator permit 12849 match community 2_68_234 2_72_221 2_78_204 2_102_156 2_104_153 set community 0:15912 route-map calculator permit 12850 match community 2_117_136 set community 0:15912 ip community-list standard 2_146_175 permit 65000:2 0:146 0:175 route-map calculator permit 12851 match community 2_146_175 set community 0:25550 ip community-list standard 2_181_253 permit 65000:2 0:181 0:253 route-map calculator permit 12852 match community 2_181_253 set community 0:45793 ip community-list standard 2_66_226 permit 65000:2 0:66 0:226 ip community-list standard 2_113_132 permit 65000:2 0:113 0:132 route-map calculator permit 12853 match community 2_66_226 2_113_132 set community 0:14916 ip community-list standard 2_224_236 permit 65000:2 0:224 0:236 route-map calculator permit 12854 match community 2_224_236 set community 0:52864 ip community-list standard 2_149_199 permit 65000:2 0:149 0:199 route-map calculator permit 12855 match community 2_149_199 set community 0:29651 ip community-list standard 2_82_220 permit 65000:2 0:82 0:220 ip community-list standard 2_88_205 permit 65000:2 0:88 0:205 ip community-list standard 2_110_164 permit 65000:2 0:110 0:164 route-map calculator permit 12856 match community 2_82_220 2_88_205 2_110_164 set community 0:18040 ip community-list standard 2_7_193 permit 65000:2 0:7 0:193 route-map calculator permit 12857 match community 2_7_193 set community 0:1351 ip community-list standard 2_156_203 permit 65000:2 0:156 0:203 ip community-list standard 2_174_182 permit 65000:2 0:174 0:182 route-map calculator permit 12858 match community 2_156_203 2_174_182 set community 0:31668 ip community-list standard 2_60_223 permit 65000:2 0:60 0:223 route-map calculator permit 12859 match community 2_60_223 set community 0:13380 ip community-list standard 2_142_161 permit 65000:2 0:142 0:161 route-map calculator permit 12860 match community 2_142_161 set community 0:22862 ip community-list standard 2_100_233 permit 65000:2 0:100 0:233 route-map calculator permit 12861 match community 2_100_233 set community 0:23300 ip community-list standard 2_41_212 permit 65000:2 0:41 0:212 ip community-list standard 2_53_164 permit 65000:2 0:53 0:164 ip community-list standard 2_82_106 permit 65000:2 0:82 0:106 route-map calculator permit 12862 match community 2_41_212 2_53_164 2_82_106 set community 0:8692 ip community-list standard 2_111_219 permit 65000:2 0:111 0:219 route-map calculator permit 12863 match community 2_111_219 set community 0:24309 ip community-list standard 2_122_247 permit 65000:2 0:122 0:247 route-map calculator permit 12864 match community 2_122_247 set community 0:30134 ip community-list standard 2_188_240 permit 65000:2 0:188 0:240 ip community-list standard 2_192_235 permit 65000:2 0:192 0:235 route-map calculator permit 12865 match community 2_188_240 2_192_235 set community 0:45120 ip community-list standard 2_149_223 permit 65000:2 0:149 0:223 route-map calculator permit 12866 match community 2_149_223 set community 0:33227 ip community-list standard 2_2_134 permit 65000:2 0:2 0:134 ip community-list standard 2_4_67 permit 65000:2 0:4 0:67 ip community-list standard 1_12_256 permit 65000:1 0:12 0:256 ip community-list standard 1_13_255 permit 65000:1 0:13 0:255 ip community-list standard 1_14_254 permit 65000:1 0:14 0:254 ip community-list standard 1_15_253 permit 65000:1 0:15 0:253 ip community-list standard 1_16_252 permit 65000:1 0:16 0:252 ip community-list standard 1_17_251 permit 65000:1 0:17 0:251 ip community-list standard 1_18_250 permit 65000:1 0:18 0:250 ip community-list standard 1_19_249 permit 65000:1 0:19 0:249 ip community-list standard 1_20_248 permit 65000:1 0:20 0:248 ip community-list standard 1_21_247 permit 65000:1 0:21 0:247 ip community-list standard 1_22_246 permit 65000:1 0:22 0:246 ip community-list standard 1_23_245 permit 65000:1 0:23 0:245 ip community-list standard 1_24_244 permit 65000:1 0:24 0:244 ip community-list standard 1_25_243 permit 65000:1 0:25 0:243 ip community-list standard 1_26_242 permit 65000:1 0:26 0:242 ip community-list standard 1_27_241 permit 65000:1 0:27 0:241 ip community-list standard 1_28_240 permit 65000:1 0:28 0:240 ip community-list standard 1_29_239 permit 65000:1 0:29 0:239 ip community-list standard 1_30_238 permit 65000:1 0:30 0:238 ip community-list standard 1_31_237 permit 65000:1 0:31 0:237 ip community-list standard 1_32_236 permit 65000:1 0:32 0:236 ip community-list standard 1_33_235 permit 65000:1 0:33 0:235 ip community-list standard 1_34_234 permit 65000:1 0:34 0:234 ip community-list standard 1_35_233 permit 65000:1 0:35 0:233 ip community-list standard 1_36_232 permit 65000:1 0:36 0:232 ip community-list standard 1_37_231 permit 65000:1 0:37 0:231 ip community-list standard 1_38_230 permit 65000:1 0:38 0:230 ip community-list standard 1_39_229 permit 65000:1 0:39 0:229 ip community-list standard 1_40_228 permit 65000:1 0:40 0:228 ip community-list standard 1_41_227 permit 65000:1 0:41 0:227 ip community-list standard 1_42_226 permit 65000:1 0:42 0:226 ip community-list standard 1_43_225 permit 65000:1 0:43 0:225 ip community-list standard 1_44_224 permit 65000:1 0:44 0:224 ip community-list standard 1_45_223 permit 65000:1 0:45 0:223 ip community-list standard 1_46_222 permit 65000:1 0:46 0:222 ip community-list standard 1_47_221 permit 65000:1 0:47 0:221 ip community-list standard 1_48_220 permit 65000:1 0:48 0:220 ip community-list standard 1_49_219 permit 65000:1 0:49 0:219 ip community-list standard 1_50_218 permit 65000:1 0:50 0:218 ip community-list standard 1_51_217 permit 65000:1 0:51 0:217 ip community-list standard 1_52_216 permit 65000:1 0:52 0:216 ip community-list standard 1_53_215 permit 65000:1 0:53 0:215 ip community-list standard 1_54_214 permit 65000:1 0:54 0:214 ip community-list standard 1_55_213 permit 65000:1 0:55 0:213 ip community-list standard 1_56_212 permit 65000:1 0:56 0:212 ip community-list standard 1_57_211 permit 65000:1 0:57 0:211 ip community-list standard 1_58_210 permit 65000:1 0:58 0:210 ip community-list standard 1_59_209 permit 65000:1 0:59 0:209 ip community-list standard 1_60_208 permit 65000:1 0:60 0:208 ip community-list standard 1_61_207 permit 65000:1 0:61 0:207 ip community-list standard 1_62_206 permit 65000:1 0:62 0:206 ip community-list standard 1_63_205 permit 65000:1 0:63 0:205 ip community-list standard 1_64_204 permit 65000:1 0:64 0:204 ip community-list standard 1_65_203 permit 65000:1 0:65 0:203 ip community-list standard 1_66_202 permit 65000:1 0:66 0:202 ip community-list standard 1_67_201 permit 65000:1 0:67 0:201 ip community-list standard 1_68_200 permit 65000:1 0:68 0:200 ip community-list standard 1_69_199 permit 65000:1 0:69 0:199 ip community-list standard 1_70_198 permit 65000:1 0:70 0:198 ip community-list standard 1_71_197 permit 65000:1 0:71 0:197 ip community-list standard 1_72_196 permit 65000:1 0:72 0:196 ip community-list standard 1_73_195 permit 65000:1 0:73 0:195 ip community-list standard 1_74_194 permit 65000:1 0:74 0:194 ip community-list standard 1_75_193 permit 65000:1 0:75 0:193 ip community-list standard 1_76_192 permit 65000:1 0:76 0:192 ip community-list standard 1_77_191 permit 65000:1 0:77 0:191 ip community-list standard 1_78_190 permit 65000:1 0:78 0:190 ip community-list standard 1_79_189 permit 65000:1 0:79 0:189 ip community-list standard 1_80_188 permit 65000:1 0:80 0:188 ip community-list standard 1_81_187 permit 65000:1 0:81 0:187 ip community-list standard 1_82_186 permit 65000:1 0:82 0:186 ip community-list standard 1_83_185 permit 65000:1 0:83 0:185 ip community-list standard 1_84_184 permit 65000:1 0:84 0:184 ip community-list standard 1_85_183 permit 65000:1 0:85 0:183 ip community-list standard 1_86_182 permit 65000:1 0:86 0:182 ip community-list standard 1_87_181 permit 65000:1 0:87 0:181 ip community-list standard 1_88_180 permit 65000:1 0:88 0:180 ip community-list standard 1_89_179 permit 65000:1 0:89 0:179 ip community-list standard 1_90_178 permit 65000:1 0:90 0:178 ip community-list standard 1_91_177 permit 65000:1 0:91 0:177 ip community-list standard 1_92_176 permit 65000:1 0:92 0:176 ip community-list standard 1_93_175 permit 65000:1 0:93 0:175 ip community-list standard 1_94_174 permit 65000:1 0:94 0:174 ip community-list standard 1_95_173 permit 65000:1 0:95 0:173 ip community-list standard 1_96_172 permit 65000:1 0:96 0:172 ip community-list standard 1_97_171 permit 65000:1 0:97 0:171 ip community-list standard 1_98_170 permit 65000:1 0:98 0:170 ip community-list standard 1_99_169 permit 65000:1 0:99 0:169 ip community-list standard 1_100_168 permit 65000:1 0:100 0:168 ip community-list standard 1_101_167 permit 65000:1 0:101 0:167 ip community-list standard 1_102_166 permit 65000:1 0:102 0:166 ip community-list standard 1_103_165 permit 65000:1 0:103 0:165 ip community-list standard 1_104_164 permit 65000:1 0:104 0:164 ip community-list standard 1_105_163 permit 65000:1 0:105 0:163 ip community-list standard 1_106_162 permit 65000:1 0:106 0:162 ip community-list standard 1_107_161 permit 65000:1 0:107 0:161 ip community-list standard 1_108_160 permit 65000:1 0:108 0:160 ip community-list standard 1_109_159 permit 65000:1 0:109 0:159 ip community-list standard 1_110_158 permit 65000:1 0:110 0:158 ip community-list standard 1_111_157 permit 65000:1 0:111 0:157 ip community-list standard 1_112_156 permit 65000:1 0:112 0:156 ip community-list standard 1_113_155 permit 65000:1 0:113 0:155 ip community-list standard 1_114_154 permit 65000:1 0:114 0:154 ip community-list standard 1_115_153 permit 65000:1 0:115 0:153 ip community-list standard 1_116_152 permit 65000:1 0:116 0:152 ip community-list standard 1_117_151 permit 65000:1 0:117 0:151 ip community-list standard 1_118_150 permit 65000:1 0:118 0:150 ip community-list standard 1_119_149 permit 65000:1 0:119 0:149 ip community-list standard 1_120_148 permit 65000:1 0:120 0:148 ip community-list standard 1_121_147 permit 65000:1 0:121 0:147 ip community-list standard 1_122_146 permit 65000:1 0:122 0:146 ip community-list standard 1_123_145 permit 65000:1 0:123 0:145 ip community-list standard 1_124_144 permit 65000:1 0:124 0:144 ip community-list standard 1_125_143 permit 65000:1 0:125 0:143 ip community-list standard 1_126_142 permit 65000:1 0:126 0:142 ip community-list standard 1_127_141 permit 65000:1 0:127 0:141 ip community-list standard 1_128_140 permit 65000:1 0:128 0:140 ip community-list standard 1_129_139 permit 65000:1 0:129 0:139 ip community-list standard 1_130_138 permit 65000:1 0:130 0:138 ip community-list standard 1_131_137 permit 65000:1 0:131 0:137 ip community-list standard 1_132_136 permit 65000:1 0:132 0:136 ip community-list standard 1_133_135 permit 65000:1 0:133 0:135 ip community-list standard 1_134_134 permit 65000:1 0:134 0:134 route-map calculator permit 12867 match community 2_2_134 2_4_67 1_12_256 1_13_255 1_14_254 set community 0:268 route-map calculator permit 12868 match community 1_15_253 1_16_252 1_17_251 1_18_250 1_19_249 set community 0:268 route-map calculator permit 12869 match community 1_20_248 1_21_247 1_22_246 1_23_245 1_24_244 set community 0:268 route-map calculator permit 12870 match community 1_25_243 1_26_242 1_27_241 1_28_240 1_29_239 set community 0:268 route-map calculator permit 12871 match community 1_30_238 1_31_237 1_32_236 1_33_235 1_34_234 set community 0:268 route-map calculator permit 12872 match community 1_35_233 1_36_232 1_37_231 1_38_230 1_39_229 set community 0:268 route-map calculator permit 12873 match community 1_40_228 1_41_227 1_42_226 1_43_225 1_44_224 set community 0:268 route-map calculator permit 12874 match community 1_45_223 1_46_222 1_47_221 1_48_220 1_49_219 set community 0:268 route-map calculator permit 12875 match community 1_50_218 1_51_217 1_52_216 1_53_215 1_54_214 set community 0:268 route-map calculator permit 12876 match community 1_55_213 1_56_212 1_57_211 1_58_210 1_59_209 set community 0:268 route-map calculator permit 12877 match community 1_60_208 1_61_207 1_62_206 1_63_205 1_64_204 set community 0:268 route-map calculator permit 12878 match community 1_65_203 1_66_202 1_67_201 1_68_200 1_69_199 set community 0:268 route-map calculator permit 12879 match community 1_70_198 1_71_197 1_72_196 1_73_195 1_74_194 set community 0:268 route-map calculator permit 12880 match community 1_75_193 1_76_192 1_77_191 1_78_190 1_79_189 set community 0:268 route-map calculator permit 12881 match community 1_80_188 1_81_187 1_82_186 1_83_185 1_84_184 set community 0:268 route-map calculator permit 12882 match community 1_85_183 1_86_182 1_87_181 1_88_180 1_89_179 set community 0:268 route-map calculator permit 12883 match community 1_90_178 1_91_177 1_92_176 1_93_175 1_94_174 set community 0:268 route-map calculator permit 12884 match community 1_95_173 1_96_172 1_97_171 1_98_170 1_99_169 set community 0:268 route-map calculator permit 12885 match community 1_100_168 1_101_167 1_102_166 1_103_165 1_104_164 set community 0:268 route-map calculator permit 12886 match community 1_105_163 1_106_162 1_107_161 1_108_160 1_109_159 set community 0:268 route-map calculator permit 12887 match community 1_110_158 1_111_157 1_112_156 1_113_155 1_114_154 set community 0:268 route-map calculator permit 12888 match community 1_115_153 1_116_152 1_117_151 1_118_150 1_119_149 set community 0:268 route-map calculator permit 12889 match community 1_120_148 1_121_147 1_122_146 1_123_145 1_124_144 set community 0:268 route-map calculator permit 12890 match community 1_125_143 1_126_142 1_127_141 1_128_140 1_129_139 set community 0:268 route-map calculator permit 12891 match community 1_130_138 1_131_137 1_132_136 1_133_135 1_134_134 set community 0:268 ip community-list standard 2_39_221 permit 65000:2 0:39 0:221 ip community-list standard 2_51_169 permit 65000:2 0:51 0:169 route-map calculator permit 12892 match community 2_39_221 2_51_169 set community 0:8619 ip community-list standard 2_13_255 permit 65000:2 0:13 0:255 ip community-list standard 2_15_221 permit 65000:2 0:15 0:221 ip community-list standard 2_17_195 permit 65000:2 0:17 0:195 ip community-list standard 2_39_85 permit 65000:2 0:39 0:85 ip community-list standard 2_51_65 permit 65000:2 0:51 0:65 route-map calculator permit 12893 match community 2_13_255 2_15_221 2_17_195 2_39_85 2_51_65 set community 0:3315 ip community-list standard 2_197_222 permit 65000:2 0:197 0:222 route-map calculator permit 12894 match community 2_197_222 set community 0:43734 ip community-list standard 2_208_214 permit 65000:2 0:208 0:214 route-map calculator permit 12895 match community 2_208_214 set community 0:44512 ip community-list standard 2_223_232 permit 65000:2 0:223 0:232 route-map calculator permit 12896 match community 2_223_232 set community 0:51736 ip community-list standard 2_16_167 permit 65000:2 0:16 0:167 route-map calculator permit 12897 match community 2_16_167 set community 0:2672 ip community-list standard 2_116_191 permit 65000:2 0:116 0:191 route-map calculator permit 12898 match community 2_116_191 set community 0:22156 ip community-list standard 2_30_254 permit 65000:2 0:30 0:254 ip community-list standard 2_60_127 permit 65000:2 0:60 0:127 route-map calculator permit 12899 match community 2_30_254 2_60_127 set community 0:7620 ip community-list standard 2_194_230 permit 65000:2 0:194 0:230 route-map calculator permit 12900 match community 2_194_230 set community 0:44620 ip community-list standard 2_180_219 permit 65000:2 0:180 0:219 route-map calculator permit 12901 match community 2_180_219 set community 0:39420 ip community-list standard 2_23_183 permit 65000:2 0:23 0:183 ip community-list standard 2_61_69 permit 65000:2 0:61 0:69 route-map calculator permit 12902 match community 2_23_183 2_61_69 set community 0:4209 ip community-list standard 2_201_204 permit 65000:2 0:201 0:204 route-map calculator permit 12903 match community 2_201_204 set community 0:41004 ip community-list standard 2_96_228 permit 65000:2 0:96 0:228 ip community-list standard 2_114_192 permit 65000:2 0:114 0:192 ip community-list standard 2_128_171 permit 65000:2 0:128 0:171 ip community-list standard 2_144_152 permit 65000:2 0:144 0:152 route-map calculator permit 12904 match community 2_96_228 2_114_192 2_128_171 2_144_152 set community 0:21888 ip community-list standard 2_45_171 permit 65000:2 0:45 0:171 ip community-list standard 2_57_135 permit 65000:2 0:57 0:135 ip community-list standard 2_81_95 permit 65000:2 0:81 0:95 route-map calculator permit 12905 match community 2_45_171 2_57_135 2_81_95 set community 0:7695 ip community-list standard 2_21_89 permit 65000:2 0:21 0:89 route-map calculator permit 12906 match community 2_21_89 set community 0:1869 ip community-list standard 2_92_151 permit 65000:2 0:92 0:151 route-map calculator permit 12907 match community 2_92_151 set community 0:13892 ip community-list standard 2_215_231 permit 65000:2 0:215 0:231 route-map calculator permit 12908 match community 2_215_231 set community 0:49665 ip community-list standard 2_152_246 permit 65000:2 0:152 0:246 ip community-list standard 2_164_228 permit 65000:2 0:164 0:228 route-map calculator permit 12909 match community 2_152_246 2_164_228 set community 0:37392 ip community-list standard 2_117_247 permit 65000:2 0:117 0:247 ip community-list standard 2_169_171 permit 65000:2 0:169 0:171 route-map calculator permit 12910 match community 2_117_247 2_169_171 set community 0:28899 ip community-list standard 2_119_201 permit 65000:2 0:119 0:201 route-map calculator permit 12911 match community 2_119_201 set community 0:23919 ip community-list standard 2_53_252 permit 65000:2 0:53 0:252 ip community-list standard 2_63_212 permit 65000:2 0:63 0:212 ip community-list standard 2_84_159 permit 65000:2 0:84 0:159 ip community-list standard 2_106_126 permit 65000:2 0:106 0:126 route-map calculator permit 12912 match community 2_53_252 2_63_212 2_84_159 2_106_126 set community 0:13356 ip community-list standard 2_10_169 permit 65000:2 0:10 0:169 ip community-list standard 2_13_130 permit 65000:2 0:13 0:130 ip community-list standard 2_26_65 permit 65000:2 0:26 0:65 route-map calculator permit 12913 match community 2_10_169 2_13_130 2_26_65 set community 0:1690 ip community-list standard 2_35_242 permit 65000:2 0:35 0:242 ip community-list standard 2_55_154 permit 65000:2 0:55 0:154 ip community-list standard 2_70_121 permit 65000:2 0:70 0:121 ip community-list standard 2_77_110 permit 65000:2 0:77 0:110 route-map calculator permit 12914 match community 2_35_242 2_55_154 2_70_121 2_77_110 set community 0:8470 ip community-list standard 2_91_222 permit 65000:2 0:91 0:222 ip community-list standard 2_111_182 permit 65000:2 0:111 0:182 route-map calculator permit 12915 match community 2_91_222 2_111_182 set community 0:20202 ip community-list standard 2_67_251 permit 65000:2 0:67 0:251 route-map calculator permit 12916 match community 2_67_251 set community 0:16817 ip community-list standard 2_174_197 permit 65000:2 0:174 0:197 route-map calculator permit 12917 match community 2_174_197 set community 0:34278 ip community-list standard 2_71_91 permit 65000:2 0:71 0:91 route-map calculator permit 12918 match community 2_71_91 set community 0:6461 ip community-list standard 2_121_229 permit 65000:2 0:121 0:229 route-map calculator permit 12919 match community 2_121_229 set community 0:27709 ip community-list standard 2_236_255 permit 65000:2 0:236 0:255 route-map calculator permit 12920 match community 2_236_255 set community 0:60180 ip community-list standard 2_88_243 permit 65000:2 0:88 0:243 ip community-list standard 2_99_216 permit 65000:2 0:99 0:216 ip community-list standard 2_108_198 permit 65000:2 0:108 0:198 ip community-list standard 2_132_162 permit 65000:2 0:132 0:162 route-map calculator permit 12921 match community 2_88_243 2_99_216 2_108_198 2_132_162 set community 0:21384 ip community-list standard 2_175_222 permit 65000:2 0:175 0:222 ip community-list standard 2_185_210 permit 65000:2 0:185 0:210 route-map calculator permit 12922 match community 2_175_222 2_185_210 set community 0:38850 ip community-list standard 2_41_173 permit 65000:2 0:41 0:173 route-map calculator permit 12923 match community 2_41_173 set community 0:7093 ip community-list standard 2_98_247 permit 65000:2 0:98 0:247 ip community-list standard 2_133_182 permit 65000:2 0:133 0:182 route-map calculator permit 12924 match community 2_98_247 2_133_182 set community 0:24206 ip community-list standard 2_136_202 permit 65000:2 0:136 0:202 route-map calculator permit 12925 match community 2_136_202 set community 0:27472 ip community-list standard 2_157_249 permit 65000:2 0:157 0:249 route-map calculator permit 12926 match community 2_157_249 set community 0:39093 ip community-list standard 2_70_236 permit 65000:2 0:70 0:236 ip community-list standard 2_118_140 permit 65000:2 0:118 0:140 route-map calculator permit 12927 match community 2_70_236 2_118_140 set community 0:16520 ip community-list standard 2_169_174 permit 65000:2 0:169 0:174 route-map calculator permit 12928 match community 2_169_174 set community 0:29406 ip community-list standard 2_193_246 permit 65000:2 0:193 0:246 route-map calculator permit 12929 match community 2_193_246 set community 0:47478 ip community-list standard 2_185_191 permit 65000:2 0:185 0:191 route-map calculator permit 12930 match community 2_185_191 set community 0:35335 ip community-list standard 2_68_249 permit 65000:2 0:68 0:249 ip community-list standard 2_83_204 permit 65000:2 0:83 0:204 ip community-list standard 2_102_166 permit 65000:2 0:102 0:166 route-map calculator permit 12931 match community 2_68_249 2_83_204 2_102_166 set community 0:16932 ip community-list standard 2_13_222 permit 65000:2 0:13 0:222 ip community-list standard 2_26_111 permit 65000:2 0:26 0:111 ip community-list standard 2_37_78 permit 65000:2 0:37 0:78 ip community-list standard 2_39_74 permit 65000:2 0:39 0:74 route-map calculator permit 12932 match community 2_13_222 2_26_111 2_37_78 2_39_74 set community 0:2886 ip community-list standard 2_30_249 permit 65000:2 0:30 0:249 ip community-list standard 2_45_166 permit 65000:2 0:45 0:166 ip community-list standard 2_83_90 permit 65000:2 0:83 0:90 route-map calculator permit 12933 match community 2_30_249 2_45_166 2_83_90 set community 0:7470 ip community-list standard 2_14_242 permit 65000:2 0:14 0:242 ip community-list standard 2_22_154 permit 65000:2 0:22 0:154 ip community-list standard 2_28_121 permit 65000:2 0:28 0:121 ip community-list standard 2_44_77 permit 65000:2 0:44 0:77 route-map calculator permit 12934 match community 2_14_242 2_22_154 2_28_121 2_44_77 set community 0:3388 ip community-list standard 2_174_244 permit 65000:2 0:174 0:244 ip community-list standard 2_183_232 permit 65000:2 0:183 0:232 route-map calculator permit 12935 match community 2_174_244 2_183_232 set community 0:42456 ip community-list standard 2_224_250 permit 65000:2 0:224 0:250 route-map calculator permit 12936 match community 2_224_250 set community 0:56000 ip community-list standard 2_129_184 permit 65000:2 0:129 0:184 ip community-list standard 2_138_172 permit 65000:2 0:138 0:172 route-map calculator permit 12937 match community 2_129_184 2_138_172 set community 0:23736 ip community-list standard 2_169_238 permit 65000:2 0:169 0:238 ip community-list standard 2_182_221 permit 65000:2 0:182 0:221 route-map calculator permit 12938 match community 2_169_238 2_182_221 set community 0:40222 ip community-list standard 2_161_253 permit 65000:2 0:161 0:253 route-map calculator permit 12939 match community 2_161_253 set community 0:40733 ip community-list standard 2_5_206 permit 65000:2 0:5 0:206 ip community-list standard 2_10_103 permit 65000:2 0:10 0:103 route-map calculator permit 12940 match community 2_5_206 2_10_103 set community 0:1030 ip community-list standard 2_79_125 permit 65000:2 0:79 0:125 route-map calculator permit 12941 match community 2_79_125 set community 0:9875 ip community-list standard 2_180_206 permit 65000:2 0:180 0:206 route-map calculator permit 12942 match community 2_180_206 set community 0:37080 ip community-list standard 2_68_252 permit 65000:2 0:68 0:252 ip community-list standard 2_72_238 permit 65000:2 0:72 0:238 ip community-list standard 2_84_204 permit 65000:2 0:84 0:204 ip community-list standard 2_102_168 permit 65000:2 0:102 0:168 ip community-list standard 2_112_153 permit 65000:2 0:112 0:153 ip community-list standard 2_119_144 permit 65000:2 0:119 0:144 ip community-list standard 2_126_136 permit 65000:2 0:126 0:136 route-map calculator permit 12943 match community 2_68_252 2_72_238 2_84_204 2_102_168 2_112_153 set community 0:17136 route-map calculator permit 12944 match community 2_119_144 2_126_136 set community 0:17136 ip community-list standard 2_175_214 permit 65000:2 0:175 0:214 route-map calculator permit 12945 match community 2_175_214 set community 0:37450 ip community-list standard 2_37_83 permit 65000:2 0:37 0:83 route-map calculator permit 12946 match community 2_37_83 set community 0:3071 ip community-list standard 2_246_252 permit 65000:2 0:246 0:252 route-map calculator permit 12947 match community 2_246_252 set community 0:61992 ip community-list standard 2_15_198 permit 65000:2 0:15 0:198 ip community-list standard 2_18_165 permit 65000:2 0:18 0:165 ip community-list standard 2_22_135 permit 65000:2 0:22 0:135 ip community-list standard 2_27_110 permit 65000:2 0:27 0:110 ip community-list standard 2_30_99 permit 65000:2 0:30 0:99 ip community-list standard 2_33_90 permit 65000:2 0:33 0:90 ip community-list standard 2_45_66 permit 65000:2 0:45 0:66 ip community-list standard 2_54_55 permit 65000:2 0:54 0:55 route-map calculator permit 12948 match community 2_15_198 2_18_165 2_22_135 2_27_110 2_30_99 set community 0:2970 route-map calculator permit 12949 match community 2_33_90 2_45_66 2_54_55 set community 0:2970 ip community-list standard 2_58_254 permit 65000:2 0:58 0:254 ip community-list standard 2_116_127 permit 65000:2 0:116 0:127 route-map calculator permit 12950 match community 2_58_254 2_116_127 set community 0:14732 ip community-list standard 2_110_155 permit 65000:2 0:110 0:155 route-map calculator permit 12951 match community 2_110_155 set community 0:17050 ip community-list standard 2_60_246 permit 65000:2 0:60 0:246 ip community-list standard 2_72_205 permit 65000:2 0:72 0:205 ip community-list standard 2_82_180 permit 65000:2 0:82 0:180 ip community-list standard 2_90_164 permit 65000:2 0:90 0:164 ip community-list standard 2_120_123 permit 65000:2 0:120 0:123 route-map calculator permit 12952 match community 2_60_246 2_72_205 2_82_180 2_90_164 2_120_123 set community 0:14760 ip community-list standard 2_91_139 permit 65000:2 0:91 0:139 route-map calculator permit 12953 match community 2_91_139 set community 0:12649 ip community-list standard 2_123_217 permit 65000:2 0:123 0:217 route-map calculator permit 12954 match community 2_123_217 set community 0:26691 ip community-list standard 2_83_178 permit 65000:2 0:83 0:178 ip community-list standard 2_89_166 permit 65000:2 0:89 0:166 route-map calculator permit 12955 match community 2_83_178 2_89_166 set community 0:14774 ip community-list standard 2_20_230 permit 65000:2 0:20 0:230 ip community-list standard 2_23_200 permit 65000:2 0:23 0:200 ip community-list standard 2_25_184 permit 65000:2 0:25 0:184 ip community-list standard 2_40_115 permit 65000:2 0:40 0:115 ip community-list standard 2_46_100 permit 65000:2 0:46 0:100 ip community-list standard 2_50_92 permit 65000:2 0:50 0:92 route-map calculator permit 12956 match community 2_20_230 2_23_200 2_25_184 2_40_115 2_46_100 set community 0:4600 route-map calculator permit 12957 match community 2_50_92 set community 0:4600 ip community-list standard 2_101_250 permit 65000:2 0:101 0:250 ip community-list standard 2_125_202 permit 65000:2 0:125 0:202 route-map calculator permit 12958 match community 2_101_250 2_125_202 set community 0:25250 ip community-list standard 2_26_137 permit 65000:2 0:26 0:137 route-map calculator permit 12959 match community 2_26_137 set community 0:3562 ip community-list standard 2_21_224 permit 65000:2 0:21 0:224 ip community-list standard 2_24_196 permit 65000:2 0:24 0:196 ip community-list standard 2_28_168 permit 65000:2 0:28 0:168 ip community-list standard 2_32_147 permit 65000:2 0:32 0:147 ip community-list standard 2_42_112 permit 65000:2 0:42 0:112 ip community-list standard 2_48_98 permit 65000:2 0:48 0:98 ip community-list standard 2_49_96 permit 65000:2 0:49 0:96 ip community-list standard 2_56_84 permit 65000:2 0:56 0:84 route-map calculator permit 12960 match community 2_21_224 2_24_196 2_28_168 2_32_147 2_42_112 set community 0:4704 route-map calculator permit 12961 match community 2_48_98 2_49_96 2_56_84 set community 0:4704 ip community-list standard 2_95_213 permit 65000:2 0:95 0:213 route-map calculator permit 12962 match community 2_95_213 set community 0:20235 ip community-list standard 2_179_232 permit 65000:2 0:179 0:232 route-map calculator permit 12963 match community 2_179_232 set community 0:41528 ip community-list standard 2_37_251 permit 65000:2 0:37 0:251 route-map calculator permit 12964 match community 2_37_251 set community 0:9287 ip community-list standard 2_135_159 permit 65000:2 0:135 0:159 route-map calculator permit 12965 match community 2_135_159 set community 0:21465 ip community-list standard 2_31_237 permit 65000:2 0:31 0:237 ip community-list standard 2_79_93 permit 65000:2 0:79 0:93 route-map calculator permit 12966 match community 2_31_237 2_79_93 set community 0:7347 ip community-list standard 2_14_181 permit 65000:2 0:14 0:181 route-map calculator permit 12967 match community 2_14_181 set community 0:2534 ip community-list standard 2_58_173 permit 65000:2 0:58 0:173 route-map calculator permit 12968 match community 2_58_173 set community 0:10034 ip community-list standard 2_165_183 permit 65000:2 0:165 0:183 route-map calculator permit 12969 match community 2_165_183 set community 0:30195 ip community-list standard 2_87_178 permit 65000:2 0:87 0:178 ip community-list standard 2_89_174 permit 65000:2 0:89 0:174 route-map calculator permit 12970 match community 2_87_178 2_89_174 set community 0:15486 ip community-list standard 2_85_193 permit 65000:2 0:85 0:193 route-map calculator permit 12971 match community 2_85_193 set community 0:16405 ip community-list standard 2_202_252 permit 65000:2 0:202 0:252 route-map calculator permit 12972 match community 2_202_252 set community 0:50904 ip community-list standard 2_73_233 permit 65000:2 0:73 0:233 route-map calculator permit 12973 match community 2_73_233 set community 0:17009 ip community-list standard 2_141_222 permit 65000:2 0:141 0:222 route-map calculator permit 12974 match community 2_141_222 set community 0:31302 ip community-list standard 2_27_222 permit 65000:2 0:27 0:222 ip community-list standard 2_37_162 permit 65000:2 0:37 0:162 ip community-list standard 2_54_111 permit 65000:2 0:54 0:111 ip community-list standard 2_74_81 permit 65000:2 0:74 0:81 route-map calculator permit 12975 match community 2_27_222 2_37_162 2_54_111 2_74_81 set community 0:5994 ip community-list standard 2_111_241 permit 65000:2 0:111 0:241 route-map calculator permit 12976 match community 2_111_241 set community 0:26751 ip community-list standard 2_115_203 permit 65000:2 0:115 0:203 ip community-list standard 2_145_161 permit 65000:2 0:145 0:161 route-map calculator permit 12977 match community 2_115_203 2_145_161 set community 0:23345 ip community-list standard 2_89_242 permit 65000:2 0:89 0:242 ip community-list standard 2_121_178 permit 65000:2 0:121 0:178 route-map calculator permit 12978 match community 2_89_242 2_121_178 set community 0:21538 ip community-list standard 2_164_239 permit 65000:2 0:164 0:239 route-map calculator permit 12979 match community 2_164_239 set community 0:39196 ip community-list standard 2_60_248 permit 65000:2 0:60 0:248 ip community-list standard 2_62_240 permit 65000:2 0:62 0:240 ip community-list standard 2_80_186 permit 65000:2 0:80 0:186 ip community-list standard 2_93_160 permit 65000:2 0:93 0:160 ip community-list standard 2_96_155 permit 65000:2 0:96 0:155 ip community-list standard 2_120_124 permit 65000:2 0:120 0:124 route-map calculator permit 12980 match community 2_60_248 2_62_240 2_80_186 2_93_160 2_96_155 set community 0:14880 route-map calculator permit 12981 match community 2_120_124 set community 0:14880 ip community-list standard 2_34_212 permit 65000:2 0:34 0:212 ip community-list standard 2_53_136 permit 65000:2 0:53 0:136 ip community-list standard 2_68_106 permit 65000:2 0:68 0:106 route-map calculator permit 12982 match community 2_34_212 2_53_136 2_68_106 set community 0:7208 ip community-list standard 2_43_239 permit 65000:2 0:43 0:239 route-map calculator permit 12983 match community 2_43_239 set community 0:10277 ip community-list standard 2_13_223 permit 65000:2 0:13 0:223 route-map calculator permit 12984 match community 2_13_223 set community 0:2899 ip community-list standard 2_25_166 permit 65000:2 0:25 0:166 ip community-list standard 2_50_83 permit 65000:2 0:50 0:83 route-map calculator permit 12985 match community 2_25_166 2_50_83 set community 0:4150 ip community-list standard 2_100_224 permit 65000:2 0:100 0:224 ip community-list standard 2_112_200 permit 65000:2 0:112 0:200 ip community-list standard 2_128_175 permit 65000:2 0:128 0:175 ip community-list standard 2_140_160 permit 65000:2 0:140 0:160 route-map calculator permit 12986 match community 2_100_224 2_112_200 2_128_175 2_140_160 set community 0:22400 ip community-list standard 2_163_221 permit 65000:2 0:163 0:221 route-map calculator permit 12987 match community 2_163_221 set community 0:36023 ip community-list standard 2_11_122 permit 65000:2 0:11 0:122 ip community-list standard 2_22_61 permit 65000:2 0:22 0:61 route-map calculator permit 12988 match community 2_11_122 2_22_61 set community 0:1342 ip community-list standard 2_161_249 permit 65000:2 0:161 0:249 route-map calculator permit 12989 match community 2_161_249 set community 0:40089 ip community-list standard 2_117_201 permit 65000:2 0:117 0:201 route-map calculator permit 12990 match community 2_117_201 set community 0:23517 ip community-list standard 2_69_173 permit 65000:2 0:69 0:173 route-map calculator permit 12991 match community 2_69_173 set community 0:11937 ip community-list standard 2_181_243 permit 65000:2 0:181 0:243 route-map calculator permit 12992 match community 2_181_243 set community 0:43983 ip community-list standard 2_3_203 permit 65000:2 0:3 0:203 ip community-list standard 2_7_87 permit 65000:2 0:7 0:87 ip community-list standard 2_21_29 permit 65000:2 0:21 0:29 route-map calculator permit 12993 match community 2_3_203 2_7_87 2_21_29 set community 0:609 ip community-list standard 2_144_206 permit 65000:2 0:144 0:206 route-map calculator permit 12994 match community 2_144_206 set community 0:29664 ip community-list standard 2_197_214 permit 65000:2 0:197 0:214 route-map calculator permit 12995 match community 2_197_214 set community 0:42158 ip community-list standard 2_57_251 permit 65000:2 0:57 0:251 route-map calculator permit 12996 match community 2_57_251 set community 0:14307 ip community-list standard 2_65_151 permit 65000:2 0:65 0:151 route-map calculator permit 12997 match community 2_65_151 set community 0:9815 ip community-list standard 2_13_191 permit 65000:2 0:13 0:191 route-map calculator permit 12998 match community 2_13_191 set community 0:2483 ip community-list standard 2_136_146 permit 65000:2 0:136 0:146 route-map calculator permit 12999 match community 2_136_146 set community 0:19856 ip community-list standard 2_77_139 permit 65000:2 0:77 0:139 route-map calculator permit 13000 match community 2_77_139 set community 0:10703 ip community-list standard 2_66_212 permit 65000:2 0:66 0:212 ip community-list standard 2_88_159 permit 65000:2 0:88 0:159 ip community-list standard 2_106_132 permit 65000:2 0:106 0:132 route-map calculator permit 13001 match community 2_66_212 2_88_159 2_106_132 set community 0:13992 ip community-list standard 2_236_252 permit 65000:2 0:236 0:252 route-map calculator permit 13002 match community 2_236_252 set community 0:59472 ip community-list standard 2_120_235 permit 65000:2 0:120 0:235 ip community-list standard 2_141_200 permit 65000:2 0:141 0:200 ip community-list standard 2_150_188 permit 65000:2 0:150 0:188 route-map calculator permit 13003 match community 2_120_235 2_141_200 2_150_188 set community 0:28200 ip community-list standard 2_103_212 permit 65000:2 0:103 0:212 ip community-list standard 2_106_206 permit 65000:2 0:106 0:206 route-map calculator permit 13004 match community 2_103_212 2_106_206 set community 0:21836 ip community-list standard 2_87_163 permit 65000:2 0:87 0:163 route-map calculator permit 13005 match community 2_87_163 set community 0:14181 ip community-list standard 2_172_223 permit 65000:2 0:172 0:223 route-map calculator permit 13006 match community 2_172_223 set community 0:38356 ip community-list standard 2_11_238 permit 65000:2 0:11 0:238 ip community-list standard 2_14_187 permit 65000:2 0:14 0:187 ip community-list standard 2_17_154 permit 65000:2 0:17 0:154 ip community-list standard 2_22_119 permit 65000:2 0:22 0:119 ip community-list standard 2_34_77 permit 65000:2 0:34 0:77 route-map calculator permit 13007 match community 2_11_238 2_14_187 2_17_154 2_22_119 2_34_77 set community 0:2618 ip community-list standard 2_121_121 permit 65000:2 0:121 0:121 route-map calculator permit 13008 match community 2_121_121 set community 0:14641 ip community-list standard 2_189_245 permit 65000:2 0:189 0:245 route-map calculator permit 13009 match community 2_189_245 set community 0:46305 ip community-list standard 2_21_195 permit 65000:2 0:21 0:195 ip community-list standard 2_35_117 permit 65000:2 0:35 0:117 ip community-list standard 2_39_105 permit 65000:2 0:39 0:105 ip community-list standard 2_45_91 permit 65000:2 0:45 0:91 ip community-list standard 2_63_65 permit 65000:2 0:63 0:65 route-map calculator permit 13010 match community 2_21_195 2_35_117 2_39_105 2_45_91 2_63_65 set community 0:4095 ip community-list standard 2_105_235 permit 65000:2 0:105 0:235 ip community-list standard 2_141_175 permit 65000:2 0:141 0:175 route-map calculator permit 13011 match community 2_105_235 2_141_175 set community 0:24675 ip community-list standard 2_145_235 permit 65000:2 0:145 0:235 route-map calculator permit 13012 match community 2_145_235 set community 0:34075 ip community-list standard 2_42_236 permit 65000:2 0:42 0:236 ip community-list standard 2_56_177 permit 65000:2 0:56 0:177 ip community-list standard 2_59_168 permit 65000:2 0:59 0:168 ip community-list standard 2_84_118 permit 65000:2 0:84 0:118 route-map calculator permit 13013 match community 2_42_236 2_56_177 2_59_168 2_84_118 set community 0:9912 ip community-list standard 2_89_224 permit 65000:2 0:89 0:224 ip community-list standard 2_112_178 permit 65000:2 0:112 0:178 route-map calculator permit 13014 match community 2_89_224 2_112_178 set community 0:19936 ip community-list standard 2_206_229 permit 65000:2 0:206 0:229 route-map calculator permit 13015 match community 2_206_229 set community 0:47174 ip community-list standard 2_137_152 permit 65000:2 0:137 0:152 route-map calculator permit 13016 match community 2_137_152 set community 0:20824 ip community-list standard 2_11_174 permit 65000:2 0:11 0:174 ip community-list standard 2_22_87 permit 65000:2 0:22 0:87 ip community-list standard 2_29_66 permit 65000:2 0:29 0:66 ip community-list standard 2_33_58 permit 65000:2 0:33 0:58 route-map calculator permit 13017 match community 2_11_174 2_22_87 2_29_66 2_33_58 set community 0:1914 ip community-list standard 2_67_231 permit 65000:2 0:67 0:231 ip community-list standard 2_77_201 permit 65000:2 0:77 0:201 route-map calculator permit 13018 match community 2_67_231 2_77_201 set community 0:15477 ip community-list standard 2_86_181 permit 65000:2 0:86 0:181 route-map calculator permit 13019 match community 2_86_181 set community 0:15566 ip community-list standard 2_145_186 permit 65000:2 0:145 0:186 ip community-list standard 2_155_174 permit 65000:2 0:155 0:174 route-map calculator permit 13020 match community 2_145_186 2_155_174 set community 0:26970 ip community-list standard 2_159_214 permit 65000:2 0:159 0:214 route-map calculator permit 13021 match community 2_159_214 set community 0:34026 ip community-list standard 1_1_242 permit 65000:1 0:1 0:242 ip community-list standard 2_1_243 permit 65000:2 0:1 0:243 ip community-list standard 1_2_241 permit 65000:1 0:2 0:241 ip community-list standard 2_3_81 permit 65000:2 0:3 0:81 ip community-list standard 1_3_240 permit 65000:1 0:3 0:240 ip community-list standard 1_4_239 permit 65000:1 0:4 0:239 ip community-list standard 1_5_238 permit 65000:1 0:5 0:238 ip community-list standard 1_6_237 permit 65000:1 0:6 0:237 ip community-list standard 1_7_236 permit 65000:1 0:7 0:236 ip community-list standard 1_8_235 permit 65000:1 0:8 0:235 ip community-list standard 2_9_27 permit 65000:2 0:9 0:27 ip community-list standard 1_9_234 permit 65000:1 0:9 0:234 ip community-list standard 1_10_233 permit 65000:1 0:10 0:233 ip community-list standard 1_11_232 permit 65000:1 0:11 0:232 ip community-list standard 1_12_231 permit 65000:1 0:12 0:231 ip community-list standard 1_13_230 permit 65000:1 0:13 0:230 ip community-list standard 1_14_229 permit 65000:1 0:14 0:229 ip community-list standard 1_15_228 permit 65000:1 0:15 0:228 ip community-list standard 1_16_227 permit 65000:1 0:16 0:227 ip community-list standard 1_17_226 permit 65000:1 0:17 0:226 ip community-list standard 1_18_225 permit 65000:1 0:18 0:225 ip community-list standard 1_19_224 permit 65000:1 0:19 0:224 ip community-list standard 1_20_223 permit 65000:1 0:20 0:223 ip community-list standard 1_21_222 permit 65000:1 0:21 0:222 ip community-list standard 1_22_221 permit 65000:1 0:22 0:221 ip community-list standard 1_23_220 permit 65000:1 0:23 0:220 ip community-list standard 1_24_219 permit 65000:1 0:24 0:219 ip community-list standard 1_25_218 permit 65000:1 0:25 0:218 ip community-list standard 1_26_217 permit 65000:1 0:26 0:217 ip community-list standard 1_27_216 permit 65000:1 0:27 0:216 ip community-list standard 1_28_215 permit 65000:1 0:28 0:215 ip community-list standard 1_29_214 permit 65000:1 0:29 0:214 ip community-list standard 1_30_213 permit 65000:1 0:30 0:213 ip community-list standard 1_31_212 permit 65000:1 0:31 0:212 ip community-list standard 1_32_211 permit 65000:1 0:32 0:211 ip community-list standard 1_33_210 permit 65000:1 0:33 0:210 ip community-list standard 1_34_209 permit 65000:1 0:34 0:209 ip community-list standard 1_35_208 permit 65000:1 0:35 0:208 ip community-list standard 1_36_207 permit 65000:1 0:36 0:207 ip community-list standard 1_37_206 permit 65000:1 0:37 0:206 ip community-list standard 1_38_205 permit 65000:1 0:38 0:205 ip community-list standard 1_39_204 permit 65000:1 0:39 0:204 ip community-list standard 1_40_203 permit 65000:1 0:40 0:203 ip community-list standard 1_41_202 permit 65000:1 0:41 0:202 ip community-list standard 1_42_201 permit 65000:1 0:42 0:201 ip community-list standard 1_43_200 permit 65000:1 0:43 0:200 ip community-list standard 1_44_199 permit 65000:1 0:44 0:199 ip community-list standard 1_45_198 permit 65000:1 0:45 0:198 ip community-list standard 1_46_197 permit 65000:1 0:46 0:197 ip community-list standard 1_47_196 permit 65000:1 0:47 0:196 ip community-list standard 1_48_195 permit 65000:1 0:48 0:195 ip community-list standard 1_49_194 permit 65000:1 0:49 0:194 ip community-list standard 1_50_193 permit 65000:1 0:50 0:193 ip community-list standard 1_51_192 permit 65000:1 0:51 0:192 ip community-list standard 1_52_191 permit 65000:1 0:52 0:191 ip community-list standard 1_53_190 permit 65000:1 0:53 0:190 ip community-list standard 1_54_189 permit 65000:1 0:54 0:189 ip community-list standard 1_55_188 permit 65000:1 0:55 0:188 ip community-list standard 1_56_187 permit 65000:1 0:56 0:187 ip community-list standard 1_57_186 permit 65000:1 0:57 0:186 ip community-list standard 1_58_185 permit 65000:1 0:58 0:185 ip community-list standard 1_59_184 permit 65000:1 0:59 0:184 ip community-list standard 1_60_183 permit 65000:1 0:60 0:183 ip community-list standard 1_61_182 permit 65000:1 0:61 0:182 ip community-list standard 1_62_181 permit 65000:1 0:62 0:181 ip community-list standard 1_63_180 permit 65000:1 0:63 0:180 ip community-list standard 1_64_179 permit 65000:1 0:64 0:179 ip community-list standard 1_65_178 permit 65000:1 0:65 0:178 ip community-list standard 1_66_177 permit 65000:1 0:66 0:177 ip community-list standard 1_67_176 permit 65000:1 0:67 0:176 ip community-list standard 1_68_175 permit 65000:1 0:68 0:175 ip community-list standard 1_69_174 permit 65000:1 0:69 0:174 ip community-list standard 1_70_173 permit 65000:1 0:70 0:173 ip community-list standard 1_71_172 permit 65000:1 0:71 0:172 ip community-list standard 1_72_171 permit 65000:1 0:72 0:171 ip community-list standard 1_73_170 permit 65000:1 0:73 0:170 ip community-list standard 1_74_169 permit 65000:1 0:74 0:169 ip community-list standard 1_75_168 permit 65000:1 0:75 0:168 ip community-list standard 1_76_167 permit 65000:1 0:76 0:167 ip community-list standard 1_77_166 permit 65000:1 0:77 0:166 ip community-list standard 1_78_165 permit 65000:1 0:78 0:165 ip community-list standard 1_79_164 permit 65000:1 0:79 0:164 ip community-list standard 1_80_163 permit 65000:1 0:80 0:163 ip community-list standard 1_81_162 permit 65000:1 0:81 0:162 ip community-list standard 1_82_161 permit 65000:1 0:82 0:161 ip community-list standard 1_83_160 permit 65000:1 0:83 0:160 ip community-list standard 1_84_159 permit 65000:1 0:84 0:159 ip community-list standard 1_85_158 permit 65000:1 0:85 0:158 ip community-list standard 1_86_157 permit 65000:1 0:86 0:157 ip community-list standard 1_87_156 permit 65000:1 0:87 0:156 ip community-list standard 1_88_155 permit 65000:1 0:88 0:155 ip community-list standard 1_89_154 permit 65000:1 0:89 0:154 ip community-list standard 1_90_153 permit 65000:1 0:90 0:153 ip community-list standard 1_91_152 permit 65000:1 0:91 0:152 ip community-list standard 1_92_151 permit 65000:1 0:92 0:151 ip community-list standard 1_93_150 permit 65000:1 0:93 0:150 ip community-list standard 1_94_149 permit 65000:1 0:94 0:149 ip community-list standard 1_95_148 permit 65000:1 0:95 0:148 ip community-list standard 1_96_147 permit 65000:1 0:96 0:147 ip community-list standard 1_97_146 permit 65000:1 0:97 0:146 ip community-list standard 1_98_145 permit 65000:1 0:98 0:145 ip community-list standard 1_99_144 permit 65000:1 0:99 0:144 ip community-list standard 1_100_143 permit 65000:1 0:100 0:143 ip community-list standard 1_101_142 permit 65000:1 0:101 0:142 ip community-list standard 1_102_141 permit 65000:1 0:102 0:141 ip community-list standard 1_103_140 permit 65000:1 0:103 0:140 ip community-list standard 1_104_139 permit 65000:1 0:104 0:139 ip community-list standard 1_105_138 permit 65000:1 0:105 0:138 ip community-list standard 1_106_137 permit 65000:1 0:106 0:137 ip community-list standard 1_107_136 permit 65000:1 0:107 0:136 ip community-list standard 1_108_135 permit 65000:1 0:108 0:135 ip community-list standard 1_109_134 permit 65000:1 0:109 0:134 ip community-list standard 1_110_133 permit 65000:1 0:110 0:133 ip community-list standard 1_111_132 permit 65000:1 0:111 0:132 ip community-list standard 1_112_131 permit 65000:1 0:112 0:131 ip community-list standard 1_113_130 permit 65000:1 0:113 0:130 ip community-list standard 1_114_129 permit 65000:1 0:114 0:129 ip community-list standard 1_115_128 permit 65000:1 0:115 0:128 ip community-list standard 1_116_127 permit 65000:1 0:116 0:127 ip community-list standard 1_117_126 permit 65000:1 0:117 0:126 ip community-list standard 1_118_125 permit 65000:1 0:118 0:125 ip community-list standard 1_119_124 permit 65000:1 0:119 0:124 ip community-list standard 1_120_123 permit 65000:1 0:120 0:123 ip community-list standard 1_121_122 permit 65000:1 0:121 0:122 ip community-list expanded c243 permit 1 ^65000:4_0:243_0:1$ ip community-list expanded c243 permit 2 ^65000:3_0:244_0:1$ ip community-list expanded c243 permit 3 ^65000:3_0:245_0:2$ ip community-list expanded c243 permit 4 ^65000:3_0:246_0:3$ ip community-list expanded c243 permit 5 ^65000:3_0:247_0:4$ ip community-list expanded c243 permit 6 ^65000:3_0:248_0:5$ ip community-list expanded c243 permit 7 ^65000:3_0:249_0:6$ ip community-list expanded c243 permit 8 ^65000:3_0:250_0:7$ ip community-list expanded c243 permit 9 ^65000:3_0:251_0:8$ ip community-list expanded c243 permit 10 ^65000:3_0:252_0:9$ ip community-list expanded c243 permit 11 ^65000:3_0:253_0:10$ ip community-list expanded c243 permit 12 ^65000:3_0:254_0:11$ ip community-list expanded c243 permit 13 ^65000:3_0:255_0:12$ ip community-list expanded c243 permit 14 ^65000:3_0:256_0:13$ route-map calculator permit 13022 match community 1_1_242 2_1_243 1_2_241 2_3_81 1_3_240 set community 0:243 route-map calculator permit 13023 match community 1_4_239 1_5_238 1_6_237 1_7_236 1_8_235 set community 0:243 route-map calculator permit 13024 match community 2_9_27 1_9_234 1_10_233 1_11_232 1_12_231 set community 0:243 route-map calculator permit 13025 match community 1_13_230 1_14_229 1_15_228 1_16_227 1_17_226 set community 0:243 route-map calculator permit 13026 match community 1_18_225 1_19_224 1_20_223 1_21_222 1_22_221 set community 0:243 route-map calculator permit 13027 match community 1_23_220 1_24_219 1_25_218 1_26_217 1_27_216 set community 0:243 route-map calculator permit 13028 match community 1_28_215 1_29_214 1_30_213 1_31_212 1_32_211 set community 0:243 route-map calculator permit 13029 match community 1_33_210 1_34_209 1_35_208 1_36_207 1_37_206 set community 0:243 route-map calculator permit 13030 match community 1_38_205 1_39_204 1_40_203 1_41_202 1_42_201 set community 0:243 route-map calculator permit 13031 match community 1_43_200 1_44_199 1_45_198 1_46_197 1_47_196 set community 0:243 route-map calculator permit 13032 match community 1_48_195 1_49_194 1_50_193 1_51_192 1_52_191 set community 0:243 route-map calculator permit 13033 match community 1_53_190 1_54_189 1_55_188 1_56_187 1_57_186 set community 0:243 route-map calculator permit 13034 match community 1_58_185 1_59_184 1_60_183 1_61_182 1_62_181 set community 0:243 route-map calculator permit 13035 match community 1_63_180 1_64_179 1_65_178 1_66_177 1_67_176 set community 0:243 route-map calculator permit 13036 match community 1_68_175 1_69_174 1_70_173 1_71_172 1_72_171 set community 0:243 route-map calculator permit 13037 match community 1_73_170 1_74_169 1_75_168 1_76_167 1_77_166 set community 0:243 route-map calculator permit 13038 match community 1_78_165 1_79_164 1_80_163 1_81_162 1_82_161 set community 0:243 route-map calculator permit 13039 match community 1_83_160 1_84_159 1_85_158 1_86_157 1_87_156 set community 0:243 route-map calculator permit 13040 match community 1_88_155 1_89_154 1_90_153 1_91_152 1_92_151 set community 0:243 route-map calculator permit 13041 match community 1_93_150 1_94_149 1_95_148 1_96_147 1_97_146 set community 0:243 route-map calculator permit 13042 match community 1_98_145 1_99_144 1_100_143 1_101_142 1_102_141 set community 0:243 route-map calculator permit 13043 match community 1_103_140 1_104_139 1_105_138 1_106_137 1_107_136 set community 0:243 route-map calculator permit 13044 match community 1_108_135 1_109_134 1_110_133 1_111_132 1_112_131 set community 0:243 route-map calculator permit 13045 match community 1_113_130 1_114_129 1_115_128 1_116_127 1_117_126 set community 0:243 route-map calculator permit 13046 match community 1_118_125 1_119_124 1_120_123 1_121_122 c4_243_1 set community 0:243 route-map calculator permit 13047 match community c3_244_1 c3_245_2 c3_246_3 c3_247_4 c3_248_5 set community 0:243 route-map calculator permit 13048 match community c3_249_6 c3_250_7 c3_251_8 c3_252_9 c3_253_10 set community 0:243 route-map calculator permit 13049 match community c3_254_11 c3_255_12 c3_256_13 set community 0:243 ip community-list standard 2_76_246 permit 65000:2 0:76 0:246 ip community-list standard 2_82_228 permit 65000:2 0:82 0:228 ip community-list standard 2_114_164 permit 65000:2 0:114 0:164 ip community-list standard 2_123_152 permit 65000:2 0:123 0:152 route-map calculator permit 13050 match community 2_76_246 2_82_228 2_114_164 2_123_152 set community 0:18696 ip community-list standard 2_2_237 permit 65000:2 0:2 0:237 ip community-list standard 2_3_158 permit 65000:2 0:3 0:158 ip community-list standard 2_6_79 permit 65000:2 0:6 0:79 ip community-list standard 1_218_256 permit 65000:1 0:218 0:256 ip community-list standard 1_219_255 permit 65000:1 0:219 0:255 ip community-list standard 1_220_254 permit 65000:1 0:220 0:254 ip community-list standard 1_221_253 permit 65000:1 0:221 0:253 ip community-list standard 1_222_252 permit 65000:1 0:222 0:252 ip community-list standard 1_223_251 permit 65000:1 0:223 0:251 ip community-list standard 1_224_250 permit 65000:1 0:224 0:250 ip community-list standard 1_225_249 permit 65000:1 0:225 0:249 ip community-list standard 1_226_248 permit 65000:1 0:226 0:248 ip community-list standard 1_227_247 permit 65000:1 0:227 0:247 ip community-list standard 1_228_246 permit 65000:1 0:228 0:246 ip community-list standard 1_229_245 permit 65000:1 0:229 0:245 ip community-list standard 1_230_244 permit 65000:1 0:230 0:244 ip community-list standard 1_231_243 permit 65000:1 0:231 0:243 ip community-list standard 1_232_242 permit 65000:1 0:232 0:242 ip community-list standard 1_233_241 permit 65000:1 0:233 0:241 ip community-list standard 1_234_240 permit 65000:1 0:234 0:240 ip community-list standard 1_235_239 permit 65000:1 0:235 0:239 ip community-list standard 1_236_238 permit 65000:1 0:236 0:238 ip community-list standard 1_237_237 permit 65000:1 0:237 0:237 route-map calculator permit 13051 match community 2_2_237 2_3_158 2_6_79 1_218_256 1_219_255 set community 0:474 route-map calculator permit 13052 match community 1_220_254 1_221_253 1_222_252 1_223_251 1_224_250 set community 0:474 route-map calculator permit 13053 match community 1_225_249 1_226_248 1_227_247 1_228_246 1_229_245 set community 0:474 route-map calculator permit 13054 match community 1_230_244 1_231_243 1_232_242 1_233_241 1_234_240 set community 0:474 route-map calculator permit 13055 match community 1_235_239 1_236_238 1_237_237 set community 0:474 ip community-list standard 2_5_95 permit 65000:2 0:5 0:95 ip community-list standard 2_19_25 permit 65000:2 0:19 0:25 ip community-list standard 1_219_256 permit 65000:1 0:219 0:256 ip community-list standard 1_220_255 permit 65000:1 0:220 0:255 ip community-list standard 1_221_254 permit 65000:1 0:221 0:254 ip community-list standard 1_222_253 permit 65000:1 0:222 0:253 ip community-list standard 1_223_252 permit 65000:1 0:223 0:252 ip community-list standard 1_224_251 permit 65000:1 0:224 0:251 ip community-list standard 1_225_250 permit 65000:1 0:225 0:250 ip community-list standard 1_226_249 permit 65000:1 0:226 0:249 ip community-list standard 1_227_248 permit 65000:1 0:227 0:248 ip community-list standard 1_228_247 permit 65000:1 0:228 0:247 ip community-list standard 1_229_246 permit 65000:1 0:229 0:246 ip community-list standard 1_230_245 permit 65000:1 0:230 0:245 ip community-list standard 1_231_244 permit 65000:1 0:231 0:244 ip community-list standard 1_232_243 permit 65000:1 0:232 0:243 ip community-list standard 1_233_242 permit 65000:1 0:233 0:242 ip community-list standard 1_234_241 permit 65000:1 0:234 0:241 ip community-list standard 1_235_240 permit 65000:1 0:235 0:240 ip community-list standard 1_236_239 permit 65000:1 0:236 0:239 ip community-list standard 1_237_238 permit 65000:1 0:237 0:238 route-map calculator permit 13056 match community 2_5_95 2_19_25 1_219_256 1_220_255 1_221_254 set community 0:475 route-map calculator permit 13057 match community 1_222_253 1_223_252 1_224_251 1_225_250 1_226_249 set community 0:475 route-map calculator permit 13058 match community 1_227_248 1_228_247 1_229_246 1_230_245 1_231_244 set community 0:475 route-map calculator permit 13059 match community 1_232_243 1_233_242 1_234_241 1_235_240 1_236_239 set community 0:475 route-map calculator permit 13060 match community 1_237_238 set community 0:475 ip community-list standard 2_37_122 permit 65000:2 0:37 0:122 ip community-list standard 2_61_74 permit 65000:2 0:61 0:74 route-map calculator permit 13061 match community 2_37_122 2_61_74 set community 0:4514 ip community-list standard 2_186_225 permit 65000:2 0:186 0:225 route-map calculator permit 13062 match community 2_186_225 set community 0:41850 ip community-list standard 2_227_232 permit 65000:2 0:227 0:232 route-map calculator permit 13063 match community 2_227_232 set community 0:52664 ip community-list standard 2_137_158 permit 65000:2 0:137 0:158 route-map calculator permit 13064 match community 2_137_158 set community 0:21646 ip community-list standard 2_95_199 permit 65000:2 0:95 0:199 route-map calculator permit 13065 match community 2_95_199 set community 0:18905 ip community-list standard 2_181_242 permit 65000:2 0:181 0:242 route-map calculator permit 13066 match community 2_181_242 set community 0:43802 ip community-list standard 2_167_215 permit 65000:2 0:167 0:215 route-map calculator permit 13067 match community 2_167_215 set community 0:35905 ip community-list standard 2_35_235 permit 65000:2 0:35 0:235 ip community-list standard 2_47_175 permit 65000:2 0:47 0:175 route-map calculator permit 13068 match community 2_35_235 2_47_175 set community 0:8225 ip community-list standard 2_121_149 permit 65000:2 0:121 0:149 route-map calculator permit 13069 match community 2_121_149 set community 0:18029 ip community-list standard 2_110_217 permit 65000:2 0:110 0:217 ip community-list standard 2_154_155 permit 65000:2 0:154 0:155 route-map calculator permit 13070 match community 2_110_217 2_154_155 set community 0:23870 ip community-list standard 2_112_219 permit 65000:2 0:112 0:219 ip community-list standard 2_146_168 permit 65000:2 0:146 0:168 route-map calculator permit 13071 match community 2_112_219 2_146_168 set community 0:24528 ip community-list standard 2_7_109 permit 65000:2 0:7 0:109 route-map calculator permit 13072 match community 2_7_109 set community 0:763 ip community-list standard 2_149_149 permit 65000:2 0:149 0:149 route-map calculator permit 13073 match community 2_149_149 set community 0:22201 ip community-list standard 2_153_204 permit 65000:2 0:153 0:204 route-map calculator permit 13074 match community 2_153_204 set community 0:31212 ip community-list standard 2_151_157 permit 65000:2 0:151 0:157 route-map calculator permit 13075 match community 2_151_157 set community 0:23707 ip community-list standard 2_88_157 permit 65000:2 0:88 0:157 route-map calculator permit 13076 match community 2_88_157 set community 0:13816 ip community-list standard 2_106_169 permit 65000:2 0:106 0:169 route-map calculator permit 13077 match community 2_106_169 set community 0:17914 ip community-list standard 1_1_247 permit 65000:1 0:1 0:247 ip community-list standard 2_1_248 permit 65000:2 0:1 0:248 ip community-list standard 2_2_124 permit 65000:2 0:2 0:124 ip community-list standard 1_2_246 permit 65000:1 0:2 0:246 ip community-list standard 1_3_245 permit 65000:1 0:3 0:245 ip community-list standard 2_4_62 permit 65000:2 0:4 0:62 ip community-list standard 1_4_244 permit 65000:1 0:4 0:244 ip community-list standard 1_5_243 permit 65000:1 0:5 0:243 ip community-list standard 1_6_242 permit 65000:1 0:6 0:242 ip community-list standard 1_7_241 permit 65000:1 0:7 0:241 ip community-list standard 2_8_31 permit 65000:2 0:8 0:31 ip community-list standard 1_8_240 permit 65000:1 0:8 0:240 ip community-list standard 1_9_239 permit 65000:1 0:9 0:239 ip community-list standard 1_10_238 permit 65000:1 0:10 0:238 ip community-list standard 1_11_237 permit 65000:1 0:11 0:237 ip community-list standard 1_12_236 permit 65000:1 0:12 0:236 ip community-list standard 1_13_235 permit 65000:1 0:13 0:235 ip community-list standard 1_14_234 permit 65000:1 0:14 0:234 ip community-list standard 1_15_233 permit 65000:1 0:15 0:233 ip community-list standard 1_16_232 permit 65000:1 0:16 0:232 ip community-list standard 1_17_231 permit 65000:1 0:17 0:231 ip community-list standard 1_18_230 permit 65000:1 0:18 0:230 ip community-list standard 1_19_229 permit 65000:1 0:19 0:229 ip community-list standard 1_20_228 permit 65000:1 0:20 0:228 ip community-list standard 1_21_227 permit 65000:1 0:21 0:227 ip community-list standard 1_22_226 permit 65000:1 0:22 0:226 ip community-list standard 1_23_225 permit 65000:1 0:23 0:225 ip community-list standard 1_24_224 permit 65000:1 0:24 0:224 ip community-list standard 1_25_223 permit 65000:1 0:25 0:223 ip community-list standard 1_26_222 permit 65000:1 0:26 0:222 ip community-list standard 1_27_221 permit 65000:1 0:27 0:221 ip community-list standard 1_28_220 permit 65000:1 0:28 0:220 ip community-list standard 1_29_219 permit 65000:1 0:29 0:219 ip community-list standard 1_30_218 permit 65000:1 0:30 0:218 ip community-list standard 1_31_217 permit 65000:1 0:31 0:217 ip community-list standard 1_32_216 permit 65000:1 0:32 0:216 ip community-list standard 1_33_215 permit 65000:1 0:33 0:215 ip community-list standard 1_34_214 permit 65000:1 0:34 0:214 ip community-list standard 1_35_213 permit 65000:1 0:35 0:213 ip community-list standard 1_36_212 permit 65000:1 0:36 0:212 ip community-list standard 1_37_211 permit 65000:1 0:37 0:211 ip community-list standard 1_38_210 permit 65000:1 0:38 0:210 ip community-list standard 1_39_209 permit 65000:1 0:39 0:209 ip community-list standard 1_40_208 permit 65000:1 0:40 0:208 ip community-list standard 1_41_207 permit 65000:1 0:41 0:207 ip community-list standard 1_42_206 permit 65000:1 0:42 0:206 ip community-list standard 1_43_205 permit 65000:1 0:43 0:205 ip community-list standard 1_44_204 permit 65000:1 0:44 0:204 ip community-list standard 1_45_203 permit 65000:1 0:45 0:203 ip community-list standard 1_46_202 permit 65000:1 0:46 0:202 ip community-list standard 1_47_201 permit 65000:1 0:47 0:201 ip community-list standard 1_48_200 permit 65000:1 0:48 0:200 ip community-list standard 1_49_199 permit 65000:1 0:49 0:199 ip community-list standard 1_50_198 permit 65000:1 0:50 0:198 ip community-list standard 1_51_197 permit 65000:1 0:51 0:197 ip community-list standard 1_52_196 permit 65000:1 0:52 0:196 ip community-list standard 1_53_195 permit 65000:1 0:53 0:195 ip community-list standard 1_54_194 permit 65000:1 0:54 0:194 ip community-list standard 1_55_193 permit 65000:1 0:55 0:193 ip community-list standard 1_56_192 permit 65000:1 0:56 0:192 ip community-list standard 1_57_191 permit 65000:1 0:57 0:191 ip community-list standard 1_58_190 permit 65000:1 0:58 0:190 ip community-list standard 1_59_189 permit 65000:1 0:59 0:189 ip community-list standard 1_60_188 permit 65000:1 0:60 0:188 ip community-list standard 1_61_187 permit 65000:1 0:61 0:187 ip community-list standard 1_62_186 permit 65000:1 0:62 0:186 ip community-list standard 1_63_185 permit 65000:1 0:63 0:185 ip community-list standard 1_64_184 permit 65000:1 0:64 0:184 ip community-list standard 1_65_183 permit 65000:1 0:65 0:183 ip community-list standard 1_66_182 permit 65000:1 0:66 0:182 ip community-list standard 1_67_181 permit 65000:1 0:67 0:181 ip community-list standard 1_68_180 permit 65000:1 0:68 0:180 ip community-list standard 1_69_179 permit 65000:1 0:69 0:179 ip community-list standard 1_70_178 permit 65000:1 0:70 0:178 ip community-list standard 1_71_177 permit 65000:1 0:71 0:177 ip community-list standard 1_72_176 permit 65000:1 0:72 0:176 ip community-list standard 1_73_175 permit 65000:1 0:73 0:175 ip community-list standard 1_74_174 permit 65000:1 0:74 0:174 ip community-list standard 1_75_173 permit 65000:1 0:75 0:173 ip community-list standard 1_76_172 permit 65000:1 0:76 0:172 ip community-list standard 1_77_171 permit 65000:1 0:77 0:171 ip community-list standard 1_78_170 permit 65000:1 0:78 0:170 ip community-list standard 1_79_169 permit 65000:1 0:79 0:169 ip community-list standard 1_80_168 permit 65000:1 0:80 0:168 ip community-list standard 1_81_167 permit 65000:1 0:81 0:167 ip community-list standard 1_82_166 permit 65000:1 0:82 0:166 ip community-list standard 1_83_165 permit 65000:1 0:83 0:165 ip community-list standard 1_84_164 permit 65000:1 0:84 0:164 ip community-list standard 1_85_163 permit 65000:1 0:85 0:163 ip community-list standard 1_86_162 permit 65000:1 0:86 0:162 ip community-list standard 1_87_161 permit 65000:1 0:87 0:161 ip community-list standard 1_88_160 permit 65000:1 0:88 0:160 ip community-list standard 1_89_159 permit 65000:1 0:89 0:159 ip community-list standard 1_90_158 permit 65000:1 0:90 0:158 ip community-list standard 1_91_157 permit 65000:1 0:91 0:157 ip community-list standard 1_92_156 permit 65000:1 0:92 0:156 ip community-list standard 1_93_155 permit 65000:1 0:93 0:155 ip community-list standard 1_94_154 permit 65000:1 0:94 0:154 ip community-list standard 1_95_153 permit 65000:1 0:95 0:153 ip community-list standard 1_96_152 permit 65000:1 0:96 0:152 ip community-list standard 1_97_151 permit 65000:1 0:97 0:151 ip community-list standard 1_98_150 permit 65000:1 0:98 0:150 ip community-list standard 1_99_149 permit 65000:1 0:99 0:149 ip community-list standard 1_100_148 permit 65000:1 0:100 0:148 ip community-list standard 1_101_147 permit 65000:1 0:101 0:147 ip community-list standard 1_102_146 permit 65000:1 0:102 0:146 ip community-list standard 1_103_145 permit 65000:1 0:103 0:145 ip community-list standard 1_104_144 permit 65000:1 0:104 0:144 ip community-list standard 1_105_143 permit 65000:1 0:105 0:143 ip community-list standard 1_106_142 permit 65000:1 0:106 0:142 ip community-list standard 1_107_141 permit 65000:1 0:107 0:141 ip community-list standard 1_108_140 permit 65000:1 0:108 0:140 ip community-list standard 1_109_139 permit 65000:1 0:109 0:139 ip community-list standard 1_110_138 permit 65000:1 0:110 0:138 ip community-list standard 1_111_137 permit 65000:1 0:111 0:137 ip community-list standard 1_112_136 permit 65000:1 0:112 0:136 ip community-list standard 1_113_135 permit 65000:1 0:113 0:135 ip community-list standard 1_114_134 permit 65000:1 0:114 0:134 ip community-list standard 1_115_133 permit 65000:1 0:115 0:133 ip community-list standard 1_116_132 permit 65000:1 0:116 0:132 ip community-list standard 1_117_131 permit 65000:1 0:117 0:131 ip community-list standard 1_118_130 permit 65000:1 0:118 0:130 ip community-list standard 1_119_129 permit 65000:1 0:119 0:129 ip community-list standard 1_120_128 permit 65000:1 0:120 0:128 ip community-list standard 1_121_127 permit 65000:1 0:121 0:127 ip community-list standard 1_122_126 permit 65000:1 0:122 0:126 ip community-list standard 1_123_125 permit 65000:1 0:123 0:125 ip community-list standard 1_124_124 permit 65000:1 0:124 0:124 ip community-list expanded c248 permit 1 ^65000:4_0:248_0:1$ ip community-list expanded c248 permit 2 ^65000:3_0:249_0:1$ ip community-list expanded c248 permit 3 ^65000:3_0:250_0:2$ ip community-list expanded c248 permit 4 ^65000:3_0:251_0:3$ ip community-list expanded c248 permit 5 ^65000:3_0:252_0:4$ ip community-list expanded c248 permit 6 ^65000:3_0:253_0:5$ ip community-list expanded c248 permit 7 ^65000:3_0:254_0:6$ ip community-list expanded c248 permit 8 ^65000:3_0:255_0:7$ ip community-list expanded c248 permit 9 ^65000:3_0:256_0:8$ route-map calculator permit 13078 match community 1_1_247 2_1_248 2_2_124 1_2_246 1_3_245 set community 0:248 route-map calculator permit 13079 match community 2_4_62 1_4_244 1_5_243 1_6_242 1_7_241 set community 0:248 route-map calculator permit 13080 match community 2_8_31 1_8_240 1_9_239 1_10_238 1_11_237 set community 0:248 route-map calculator permit 13081 match community 1_12_236 1_13_235 1_14_234 1_15_233 1_16_232 set community 0:248 route-map calculator permit 13082 match community 1_17_231 1_18_230 1_19_229 1_20_228 1_21_227 set community 0:248 route-map calculator permit 13083 match community 1_22_226 1_23_225 1_24_224 1_25_223 1_26_222 set community 0:248 route-map calculator permit 13084 match community 1_27_221 1_28_220 1_29_219 1_30_218 1_31_217 set community 0:248 route-map calculator permit 13085 match community 1_32_216 1_33_215 1_34_214 1_35_213 1_36_212 set community 0:248 route-map calculator permit 13086 match community 1_37_211 1_38_210 1_39_209 1_40_208 1_41_207 set community 0:248 route-map calculator permit 13087 match community 1_42_206 1_43_205 1_44_204 1_45_203 1_46_202 set community 0:248 route-map calculator permit 13088 match community 1_47_201 1_48_200 1_49_199 1_50_198 1_51_197 set community 0:248 route-map calculator permit 13089 match community 1_52_196 1_53_195 1_54_194 1_55_193 1_56_192 set community 0:248 route-map calculator permit 13090 match community 1_57_191 1_58_190 1_59_189 1_60_188 1_61_187 set community 0:248 route-map calculator permit 13091 match community 1_62_186 1_63_185 1_64_184 1_65_183 1_66_182 set community 0:248 route-map calculator permit 13092 match community 1_67_181 1_68_180 1_69_179 1_70_178 1_71_177 set community 0:248 route-map calculator permit 13093 match community 1_72_176 1_73_175 1_74_174 1_75_173 1_76_172 set community 0:248 route-map calculator permit 13094 match community 1_77_171 1_78_170 1_79_169 1_80_168 1_81_167 set community 0:248 route-map calculator permit 13095 match community 1_82_166 1_83_165 1_84_164 1_85_163 1_86_162 set community 0:248 route-map calculator permit 13096 match community 1_87_161 1_88_160 1_89_159 1_90_158 1_91_157 set community 0:248 route-map calculator permit 13097 match community 1_92_156 1_93_155 1_94_154 1_95_153 1_96_152 set community 0:248 route-map calculator permit 13098 match community 1_97_151 1_98_150 1_99_149 1_100_148 1_101_147 set community 0:248 route-map calculator permit 13099 match community 1_102_146 1_103_145 1_104_144 1_105_143 1_106_142 set community 0:248 route-map calculator permit 13100 match community 1_107_141 1_108_140 1_109_139 1_110_138 1_111_137 set community 0:248 route-map calculator permit 13101 match community 1_112_136 1_113_135 1_114_134 1_115_133 1_116_132 set community 0:248 route-map calculator permit 13102 match community 1_117_131 1_118_130 1_119_129 1_120_128 1_121_127 set community 0:248 route-map calculator permit 13103 match community 1_122_126 1_123_125 1_124_124 c4_248_1 c3_249_1 set community 0:248 route-map calculator permit 13104 match community c3_250_2 c3_251_3 c3_252_4 c3_253_5 c3_254_6 set community 0:248 route-map calculator permit 13105 match community c3_255_7 c3_256_8 set community 0:248 ip community-list standard 2_143_149 permit 65000:2 0:143 0:149 route-map calculator permit 13106 match community 2_143_149 set community 0:21307 ip community-list standard 2_13_131 permit 65000:2 0:13 0:131 route-map calculator permit 13107 match community 2_13_131 set community 0:1703 ip community-list standard 2_64_238 permit 65000:2 0:64 0:238 ip community-list standard 2_68_224 permit 65000:2 0:68 0:224 ip community-list standard 2_112_136 permit 65000:2 0:112 0:136 ip community-list standard 2_119_128 permit 65000:2 0:119 0:128 route-map calculator permit 13108 match community 2_64_238 2_68_224 2_112_136 2_119_128 set community 0:15232 ip community-list standard 2_112_228 permit 65000:2 0:112 0:228 ip community-list standard 2_114_224 permit 65000:2 0:114 0:224 ip community-list standard 2_133_192 permit 65000:2 0:133 0:192 ip community-list standard 2_152_168 permit 65000:2 0:152 0:168 route-map calculator permit 13109 match community 2_112_228 2_114_224 2_133_192 2_152_168 set community 0:25536 ip community-list standard 2_49_231 permit 65000:2 0:49 0:231 ip community-list standard 2_77_147 permit 65000:2 0:77 0:147 route-map calculator permit 13110 match community 2_49_231 2_77_147 set community 0:11319 ip community-list standard 2_136_139 permit 65000:2 0:136 0:139 route-map calculator permit 13111 match community 2_136_139 set community 0:18904 ip community-list standard 2_193_194 permit 65000:2 0:193 0:194 route-map calculator permit 13112 match community 2_193_194 set community 0:37442 ip community-list standard 1_1_240 permit 65000:1 0:1 0:240 ip community-list standard 2_1_241 permit 65000:2 0:1 0:241 ip community-list standard 1_2_239 permit 65000:1 0:2 0:239 ip community-list standard 1_3_238 permit 65000:1 0:3 0:238 ip community-list standard 1_4_237 permit 65000:1 0:4 0:237 ip community-list standard 1_5_236 permit 65000:1 0:5 0:236 ip community-list standard 1_6_235 permit 65000:1 0:6 0:235 ip community-list standard 1_7_234 permit 65000:1 0:7 0:234 ip community-list standard 1_8_233 permit 65000:1 0:8 0:233 ip community-list standard 1_9_232 permit 65000:1 0:9 0:232 ip community-list standard 1_10_231 permit 65000:1 0:10 0:231 ip community-list standard 1_11_230 permit 65000:1 0:11 0:230 ip community-list standard 1_12_229 permit 65000:1 0:12 0:229 ip community-list standard 1_13_228 permit 65000:1 0:13 0:228 ip community-list standard 1_14_227 permit 65000:1 0:14 0:227 ip community-list standard 1_15_226 permit 65000:1 0:15 0:226 ip community-list standard 1_16_225 permit 65000:1 0:16 0:225 ip community-list standard 1_17_224 permit 65000:1 0:17 0:224 ip community-list standard 1_18_223 permit 65000:1 0:18 0:223 ip community-list standard 1_19_222 permit 65000:1 0:19 0:222 ip community-list standard 1_20_221 permit 65000:1 0:20 0:221 ip community-list standard 1_21_220 permit 65000:1 0:21 0:220 ip community-list standard 1_22_219 permit 65000:1 0:22 0:219 ip community-list standard 1_23_218 permit 65000:1 0:23 0:218 ip community-list standard 1_24_217 permit 65000:1 0:24 0:217 ip community-list standard 1_25_216 permit 65000:1 0:25 0:216 ip community-list standard 1_26_215 permit 65000:1 0:26 0:215 ip community-list standard 1_27_214 permit 65000:1 0:27 0:214 ip community-list standard 1_28_213 permit 65000:1 0:28 0:213 ip community-list standard 1_29_212 permit 65000:1 0:29 0:212 ip community-list standard 1_30_211 permit 65000:1 0:30 0:211 ip community-list standard 1_31_210 permit 65000:1 0:31 0:210 ip community-list standard 1_32_209 permit 65000:1 0:32 0:209 ip community-list standard 1_33_208 permit 65000:1 0:33 0:208 ip community-list standard 1_34_207 permit 65000:1 0:34 0:207 ip community-list standard 1_35_206 permit 65000:1 0:35 0:206 ip community-list standard 1_36_205 permit 65000:1 0:36 0:205 ip community-list standard 1_37_204 permit 65000:1 0:37 0:204 ip community-list standard 1_38_203 permit 65000:1 0:38 0:203 ip community-list standard 1_39_202 permit 65000:1 0:39 0:202 ip community-list standard 1_40_201 permit 65000:1 0:40 0:201 ip community-list standard 1_41_200 permit 65000:1 0:41 0:200 ip community-list standard 1_42_199 permit 65000:1 0:42 0:199 ip community-list standard 1_43_198 permit 65000:1 0:43 0:198 ip community-list standard 1_44_197 permit 65000:1 0:44 0:197 ip community-list standard 1_45_196 permit 65000:1 0:45 0:196 ip community-list standard 1_46_195 permit 65000:1 0:46 0:195 ip community-list standard 1_47_194 permit 65000:1 0:47 0:194 ip community-list standard 1_48_193 permit 65000:1 0:48 0:193 ip community-list standard 1_49_192 permit 65000:1 0:49 0:192 ip community-list standard 1_50_191 permit 65000:1 0:50 0:191 ip community-list standard 1_51_190 permit 65000:1 0:51 0:190 ip community-list standard 1_52_189 permit 65000:1 0:52 0:189 ip community-list standard 1_53_188 permit 65000:1 0:53 0:188 ip community-list standard 1_54_187 permit 65000:1 0:54 0:187 ip community-list standard 1_55_186 permit 65000:1 0:55 0:186 ip community-list standard 1_56_185 permit 65000:1 0:56 0:185 ip community-list standard 1_57_184 permit 65000:1 0:57 0:184 ip community-list standard 1_58_183 permit 65000:1 0:58 0:183 ip community-list standard 1_59_182 permit 65000:1 0:59 0:182 ip community-list standard 1_60_181 permit 65000:1 0:60 0:181 ip community-list standard 1_61_180 permit 65000:1 0:61 0:180 ip community-list standard 1_62_179 permit 65000:1 0:62 0:179 ip community-list standard 1_63_178 permit 65000:1 0:63 0:178 ip community-list standard 1_64_177 permit 65000:1 0:64 0:177 ip community-list standard 1_65_176 permit 65000:1 0:65 0:176 ip community-list standard 1_66_175 permit 65000:1 0:66 0:175 ip community-list standard 1_67_174 permit 65000:1 0:67 0:174 ip community-list standard 1_68_173 permit 65000:1 0:68 0:173 ip community-list standard 1_69_172 permit 65000:1 0:69 0:172 ip community-list standard 1_70_171 permit 65000:1 0:70 0:171 ip community-list standard 1_71_170 permit 65000:1 0:71 0:170 ip community-list standard 1_72_169 permit 65000:1 0:72 0:169 ip community-list standard 1_73_168 permit 65000:1 0:73 0:168 ip community-list standard 1_74_167 permit 65000:1 0:74 0:167 ip community-list standard 1_75_166 permit 65000:1 0:75 0:166 ip community-list standard 1_76_165 permit 65000:1 0:76 0:165 ip community-list standard 1_77_164 permit 65000:1 0:77 0:164 ip community-list standard 1_78_163 permit 65000:1 0:78 0:163 ip community-list standard 1_79_162 permit 65000:1 0:79 0:162 ip community-list standard 1_80_161 permit 65000:1 0:80 0:161 ip community-list standard 1_81_160 permit 65000:1 0:81 0:160 ip community-list standard 1_82_159 permit 65000:1 0:82 0:159 ip community-list standard 1_83_158 permit 65000:1 0:83 0:158 ip community-list standard 1_84_157 permit 65000:1 0:84 0:157 ip community-list standard 1_85_156 permit 65000:1 0:85 0:156 ip community-list standard 1_86_155 permit 65000:1 0:86 0:155 ip community-list standard 1_87_154 permit 65000:1 0:87 0:154 ip community-list standard 1_88_153 permit 65000:1 0:88 0:153 ip community-list standard 1_89_152 permit 65000:1 0:89 0:152 ip community-list standard 1_90_151 permit 65000:1 0:90 0:151 ip community-list standard 1_91_150 permit 65000:1 0:91 0:150 ip community-list standard 1_92_149 permit 65000:1 0:92 0:149 ip community-list standard 1_93_148 permit 65000:1 0:93 0:148 ip community-list standard 1_94_147 permit 65000:1 0:94 0:147 ip community-list standard 1_95_146 permit 65000:1 0:95 0:146 ip community-list standard 1_96_145 permit 65000:1 0:96 0:145 ip community-list standard 1_97_144 permit 65000:1 0:97 0:144 ip community-list standard 1_98_143 permit 65000:1 0:98 0:143 ip community-list standard 1_99_142 permit 65000:1 0:99 0:142 ip community-list standard 1_100_141 permit 65000:1 0:100 0:141 ip community-list standard 1_101_140 permit 65000:1 0:101 0:140 ip community-list standard 1_102_139 permit 65000:1 0:102 0:139 ip community-list standard 1_103_138 permit 65000:1 0:103 0:138 ip community-list standard 1_104_137 permit 65000:1 0:104 0:137 ip community-list standard 1_105_136 permit 65000:1 0:105 0:136 ip community-list standard 1_106_135 permit 65000:1 0:106 0:135 ip community-list standard 1_107_134 permit 65000:1 0:107 0:134 ip community-list standard 1_108_133 permit 65000:1 0:108 0:133 ip community-list standard 1_109_132 permit 65000:1 0:109 0:132 ip community-list standard 1_110_131 permit 65000:1 0:110 0:131 ip community-list standard 1_111_130 permit 65000:1 0:111 0:130 ip community-list standard 1_112_129 permit 65000:1 0:112 0:129 ip community-list standard 1_113_128 permit 65000:1 0:113 0:128 ip community-list standard 1_114_127 permit 65000:1 0:114 0:127 ip community-list standard 1_115_126 permit 65000:1 0:115 0:126 ip community-list standard 1_116_125 permit 65000:1 0:116 0:125 ip community-list standard 1_117_124 permit 65000:1 0:117 0:124 ip community-list standard 1_118_123 permit 65000:1 0:118 0:123 ip community-list standard 1_119_122 permit 65000:1 0:119 0:122 ip community-list standard 1_120_121 permit 65000:1 0:120 0:121 ip community-list expanded c241 permit 1 ^65000:4_0:241_0:1$ ip community-list expanded c241 permit 2 ^65000:3_0:242_0:1$ ip community-list expanded c241 permit 3 ^65000:3_0:243_0:2$ ip community-list expanded c241 permit 4 ^65000:3_0:244_0:3$ ip community-list expanded c241 permit 5 ^65000:3_0:245_0:4$ ip community-list expanded c241 permit 6 ^65000:3_0:246_0:5$ ip community-list expanded c241 permit 7 ^65000:3_0:247_0:6$ ip community-list expanded c241 permit 8 ^65000:3_0:248_0:7$ ip community-list expanded c241 permit 9 ^65000:3_0:249_0:8$ ip community-list expanded c241 permit 10 ^65000:3_0:250_0:9$ ip community-list expanded c241 permit 11 ^65000:3_0:251_0:10$ ip community-list expanded c241 permit 12 ^65000:3_0:252_0:11$ ip community-list expanded c241 permit 13 ^65000:3_0:253_0:12$ ip community-list expanded c241 permit 14 ^65000:3_0:254_0:13$ ip community-list expanded c241 permit 15 ^65000:3_0:255_0:14$ ip community-list expanded c241 permit 16 ^65000:3_0:256_0:15$ route-map calculator permit 13113 match community 1_1_240 2_1_241 1_2_239 1_3_238 1_4_237 set community 0:241 route-map calculator permit 13114 match community 1_5_236 1_6_235 1_7_234 1_8_233 1_9_232 set community 0:241 route-map calculator permit 13115 match community 1_10_231 1_11_230 1_12_229 1_13_228 1_14_227 set community 0:241 route-map calculator permit 13116 match community 1_15_226 1_16_225 1_17_224 1_18_223 1_19_222 set community 0:241 route-map calculator permit 13117 match community 1_20_221 1_21_220 1_22_219 1_23_218 1_24_217 set community 0:241 route-map calculator permit 13118 match community 1_25_216 1_26_215 1_27_214 1_28_213 1_29_212 set community 0:241 route-map calculator permit 13119 match community 1_30_211 1_31_210 1_32_209 1_33_208 1_34_207 set community 0:241 route-map calculator permit 13120 match community 1_35_206 1_36_205 1_37_204 1_38_203 1_39_202 set community 0:241 route-map calculator permit 13121 match community 1_40_201 1_41_200 1_42_199 1_43_198 1_44_197 set community 0:241 route-map calculator permit 13122 match community 1_45_196 1_46_195 1_47_194 1_48_193 1_49_192 set community 0:241 route-map calculator permit 13123 match community 1_50_191 1_51_190 1_52_189 1_53_188 1_54_187 set community 0:241 route-map calculator permit 13124 match community 1_55_186 1_56_185 1_57_184 1_58_183 1_59_182 set community 0:241 route-map calculator permit 13125 match community 1_60_181 1_61_180 1_62_179 1_63_178 1_64_177 set community 0:241 route-map calculator permit 13126 match community 1_65_176 1_66_175 1_67_174 1_68_173 1_69_172 set community 0:241 route-map calculator permit 13127 match community 1_70_171 1_71_170 1_72_169 1_73_168 1_74_167 set community 0:241 route-map calculator permit 13128 match community 1_75_166 1_76_165 1_77_164 1_78_163 1_79_162 set community 0:241 route-map calculator permit 13129 match community 1_80_161 1_81_160 1_82_159 1_83_158 1_84_157 set community 0:241 route-map calculator permit 13130 match community 1_85_156 1_86_155 1_87_154 1_88_153 1_89_152 set community 0:241 route-map calculator permit 13131 match community 1_90_151 1_91_150 1_92_149 1_93_148 1_94_147 set community 0:241 route-map calculator permit 13132 match community 1_95_146 1_96_145 1_97_144 1_98_143 1_99_142 set community 0:241 route-map calculator permit 13133 match community 1_100_141 1_101_140 1_102_139 1_103_138 1_104_137 set community 0:241 route-map calculator permit 13134 match community 1_105_136 1_106_135 1_107_134 1_108_133 1_109_132 set community 0:241 route-map calculator permit 13135 match community 1_110_131 1_111_130 1_112_129 1_113_128 1_114_127 set community 0:241 route-map calculator permit 13136 match community 1_115_126 1_116_125 1_117_124 1_118_123 1_119_122 set community 0:241 route-map calculator permit 13137 match community 1_120_121 c4_241_1 c3_242_1 c3_243_2 c3_244_3 set community 0:241 route-map calculator permit 13138 match community c3_245_4 c3_246_5 c3_247_6 c3_248_7 c3_249_8 set community 0:241 route-map calculator permit 13139 match community c3_250_9 c3_251_10 c3_252_11 c3_253_12 c3_254_13 set community 0:241 route-map calculator permit 13140 match community c3_255_14 c3_256_15 set community 0:241 ip community-list standard 2_108_244 permit 65000:2 0:108 0:244 ip community-list standard 2_122_216 permit 65000:2 0:122 0:216 ip community-list standard 2_144_183 permit 65000:2 0:144 0:183 route-map calculator permit 13141 match community 2_108_244 2_122_216 2_144_183 set community 0:26352 ip community-list standard 2_170_242 permit 65000:2 0:170 0:242 ip community-list standard 2_187_220 permit 65000:2 0:187 0:220 route-map calculator permit 13142 match community 2_170_242 2_187_220 set community 0:41140 ip community-list standard 2_29_118 permit 65000:2 0:29 0:118 ip community-list standard 2_58_59 permit 65000:2 0:58 0:59 route-map calculator permit 13143 match community 2_29_118 2_58_59 set community 0:3422 ip community-list standard 2_39_239 permit 65000:2 0:39 0:239 route-map calculator permit 13144 match community 2_39_239 set community 0:9321 ip community-list standard 2_96_226 permit 65000:2 0:96 0:226 ip community-list standard 2_113_192 permit 65000:2 0:113 0:192 route-map calculator permit 13145 match community 2_96_226 2_113_192 set community 0:21696 ip community-list standard 2_63_211 permit 65000:2 0:63 0:211 route-map calculator permit 13146 match community 2_63_211 set community 0:13293 ip community-list standard 2_126_253 permit 65000:2 0:126 0:253 ip community-list standard 2_138_231 permit 65000:2 0:138 0:231 ip community-list standard 2_154_207 permit 65000:2 0:154 0:207 ip community-list standard 2_161_198 permit 65000:2 0:161 0:198 route-map calculator permit 13147 match community 2_126_253 2_138_231 2_154_207 2_161_198 set community 0:31878 ip community-list standard 2_13_220 permit 65000:2 0:13 0:220 ip community-list standard 2_20_143 permit 65000:2 0:20 0:143 ip community-list standard 2_22_130 permit 65000:2 0:22 0:130 ip community-list standard 2_26_110 permit 65000:2 0:26 0:110 ip community-list standard 2_44_65 permit 65000:2 0:44 0:65 ip community-list standard 2_52_55 permit 65000:2 0:52 0:55 route-map calculator permit 13148 match community 2_13_220 2_20_143 2_22_130 2_26_110 2_44_65 set community 0:2860 route-map calculator permit 13149 match community 2_52_55 set community 0:2860 ip community-list standard 2_85_221 permit 65000:2 0:85 0:221 route-map calculator permit 13150 match community 2_85_221 set community 0:18785 ip community-list standard 2_120_227 permit 65000:2 0:120 0:227 route-map calculator permit 13151 match community 2_120_227 set community 0:27240 ip community-list standard 2_2_132 permit 65000:2 0:2 0:132 ip community-list standard 2_3_88 permit 65000:2 0:3 0:88 ip community-list standard 2_4_66 permit 65000:2 0:4 0:66 ip community-list standard 2_6_44 permit 65000:2 0:6 0:44 ip community-list standard 2_8_33 permit 65000:2 0:8 0:33 ip community-list standard 1_8_256 permit 65000:1 0:8 0:256 ip community-list standard 1_9_255 permit 65000:1 0:9 0:255 ip community-list standard 1_10_254 permit 65000:1 0:10 0:254 ip community-list standard 2_11_24 permit 65000:2 0:11 0:24 ip community-list standard 1_11_253 permit 65000:1 0:11 0:253 ip community-list standard 2_12_22 permit 65000:2 0:12 0:22 ip community-list standard 1_12_252 permit 65000:1 0:12 0:252 ip community-list standard 1_13_251 permit 65000:1 0:13 0:251 ip community-list standard 1_14_250 permit 65000:1 0:14 0:250 ip community-list standard 1_15_249 permit 65000:1 0:15 0:249 ip community-list standard 1_16_248 permit 65000:1 0:16 0:248 ip community-list standard 1_17_247 permit 65000:1 0:17 0:247 ip community-list standard 1_18_246 permit 65000:1 0:18 0:246 ip community-list standard 1_19_245 permit 65000:1 0:19 0:245 ip community-list standard 1_20_244 permit 65000:1 0:20 0:244 ip community-list standard 1_21_243 permit 65000:1 0:21 0:243 ip community-list standard 1_22_242 permit 65000:1 0:22 0:242 ip community-list standard 1_23_241 permit 65000:1 0:23 0:241 ip community-list standard 1_24_240 permit 65000:1 0:24 0:240 ip community-list standard 1_25_239 permit 65000:1 0:25 0:239 ip community-list standard 1_26_238 permit 65000:1 0:26 0:238 ip community-list standard 1_27_237 permit 65000:1 0:27 0:237 ip community-list standard 1_28_236 permit 65000:1 0:28 0:236 ip community-list standard 1_29_235 permit 65000:1 0:29 0:235 ip community-list standard 1_30_234 permit 65000:1 0:30 0:234 ip community-list standard 1_31_233 permit 65000:1 0:31 0:233 ip community-list standard 1_32_232 permit 65000:1 0:32 0:232 ip community-list standard 1_33_231 permit 65000:1 0:33 0:231 ip community-list standard 1_34_230 permit 65000:1 0:34 0:230 ip community-list standard 1_35_229 permit 65000:1 0:35 0:229 ip community-list standard 1_36_228 permit 65000:1 0:36 0:228 ip community-list standard 1_37_227 permit 65000:1 0:37 0:227 ip community-list standard 1_38_226 permit 65000:1 0:38 0:226 ip community-list standard 1_39_225 permit 65000:1 0:39 0:225 ip community-list standard 1_40_224 permit 65000:1 0:40 0:224 ip community-list standard 1_41_223 permit 65000:1 0:41 0:223 ip community-list standard 1_42_222 permit 65000:1 0:42 0:222 ip community-list standard 1_43_221 permit 65000:1 0:43 0:221 ip community-list standard 1_44_220 permit 65000:1 0:44 0:220 ip community-list standard 1_45_219 permit 65000:1 0:45 0:219 ip community-list standard 1_46_218 permit 65000:1 0:46 0:218 ip community-list standard 1_47_217 permit 65000:1 0:47 0:217 ip community-list standard 1_48_216 permit 65000:1 0:48 0:216 ip community-list standard 1_49_215 permit 65000:1 0:49 0:215 ip community-list standard 1_50_214 permit 65000:1 0:50 0:214 ip community-list standard 1_51_213 permit 65000:1 0:51 0:213 ip community-list standard 1_52_212 permit 65000:1 0:52 0:212 ip community-list standard 1_53_211 permit 65000:1 0:53 0:211 ip community-list standard 1_54_210 permit 65000:1 0:54 0:210 ip community-list standard 1_55_209 permit 65000:1 0:55 0:209 ip community-list standard 1_56_208 permit 65000:1 0:56 0:208 ip community-list standard 1_57_207 permit 65000:1 0:57 0:207 ip community-list standard 1_58_206 permit 65000:1 0:58 0:206 ip community-list standard 1_59_205 permit 65000:1 0:59 0:205 ip community-list standard 1_60_204 permit 65000:1 0:60 0:204 ip community-list standard 1_61_203 permit 65000:1 0:61 0:203 ip community-list standard 1_62_202 permit 65000:1 0:62 0:202 ip community-list standard 1_63_201 permit 65000:1 0:63 0:201 ip community-list standard 1_64_200 permit 65000:1 0:64 0:200 ip community-list standard 1_65_199 permit 65000:1 0:65 0:199 ip community-list standard 1_66_198 permit 65000:1 0:66 0:198 ip community-list standard 1_67_197 permit 65000:1 0:67 0:197 ip community-list standard 1_68_196 permit 65000:1 0:68 0:196 ip community-list standard 1_69_195 permit 65000:1 0:69 0:195 ip community-list standard 1_70_194 permit 65000:1 0:70 0:194 ip community-list standard 1_71_193 permit 65000:1 0:71 0:193 ip community-list standard 1_72_192 permit 65000:1 0:72 0:192 ip community-list standard 1_73_191 permit 65000:1 0:73 0:191 ip community-list standard 1_74_190 permit 65000:1 0:74 0:190 ip community-list standard 1_75_189 permit 65000:1 0:75 0:189 ip community-list standard 1_76_188 permit 65000:1 0:76 0:188 ip community-list standard 1_77_187 permit 65000:1 0:77 0:187 ip community-list standard 1_78_186 permit 65000:1 0:78 0:186 ip community-list standard 1_79_185 permit 65000:1 0:79 0:185 ip community-list standard 1_80_184 permit 65000:1 0:80 0:184 ip community-list standard 1_81_183 permit 65000:1 0:81 0:183 ip community-list standard 1_82_182 permit 65000:1 0:82 0:182 ip community-list standard 1_83_181 permit 65000:1 0:83 0:181 ip community-list standard 1_84_180 permit 65000:1 0:84 0:180 ip community-list standard 1_85_179 permit 65000:1 0:85 0:179 ip community-list standard 1_86_178 permit 65000:1 0:86 0:178 ip community-list standard 1_87_177 permit 65000:1 0:87 0:177 ip community-list standard 1_88_176 permit 65000:1 0:88 0:176 ip community-list standard 1_89_175 permit 65000:1 0:89 0:175 ip community-list standard 1_90_174 permit 65000:1 0:90 0:174 ip community-list standard 1_91_173 permit 65000:1 0:91 0:173 ip community-list standard 1_92_172 permit 65000:1 0:92 0:172 ip community-list standard 1_93_171 permit 65000:1 0:93 0:171 ip community-list standard 1_94_170 permit 65000:1 0:94 0:170 ip community-list standard 1_95_169 permit 65000:1 0:95 0:169 ip community-list standard 1_96_168 permit 65000:1 0:96 0:168 ip community-list standard 1_97_167 permit 65000:1 0:97 0:167 ip community-list standard 1_98_166 permit 65000:1 0:98 0:166 ip community-list standard 1_99_165 permit 65000:1 0:99 0:165 ip community-list standard 1_100_164 permit 65000:1 0:100 0:164 ip community-list standard 1_101_163 permit 65000:1 0:101 0:163 ip community-list standard 1_102_162 permit 65000:1 0:102 0:162 ip community-list standard 1_103_161 permit 65000:1 0:103 0:161 ip community-list standard 1_104_160 permit 65000:1 0:104 0:160 ip community-list standard 1_105_159 permit 65000:1 0:105 0:159 ip community-list standard 1_106_158 permit 65000:1 0:106 0:158 ip community-list standard 1_107_157 permit 65000:1 0:107 0:157 ip community-list standard 1_108_156 permit 65000:1 0:108 0:156 ip community-list standard 1_109_155 permit 65000:1 0:109 0:155 ip community-list standard 1_110_154 permit 65000:1 0:110 0:154 ip community-list standard 1_111_153 permit 65000:1 0:111 0:153 ip community-list standard 1_112_152 permit 65000:1 0:112 0:152 ip community-list standard 1_113_151 permit 65000:1 0:113 0:151 ip community-list standard 1_114_150 permit 65000:1 0:114 0:150 ip community-list standard 1_115_149 permit 65000:1 0:115 0:149 ip community-list standard 1_116_148 permit 65000:1 0:116 0:148 ip community-list standard 1_117_147 permit 65000:1 0:117 0:147 ip community-list standard 1_118_146 permit 65000:1 0:118 0:146 ip community-list standard 1_119_145 permit 65000:1 0:119 0:145 ip community-list standard 1_120_144 permit 65000:1 0:120 0:144 ip community-list standard 1_121_143 permit 65000:1 0:121 0:143 ip community-list standard 1_122_142 permit 65000:1 0:122 0:142 ip community-list standard 1_123_141 permit 65000:1 0:123 0:141 ip community-list standard 1_124_140 permit 65000:1 0:124 0:140 ip community-list standard 1_125_139 permit 65000:1 0:125 0:139 ip community-list standard 1_126_138 permit 65000:1 0:126 0:138 ip community-list standard 1_127_137 permit 65000:1 0:127 0:137 ip community-list standard 1_128_136 permit 65000:1 0:128 0:136 ip community-list standard 1_129_135 permit 65000:1 0:129 0:135 ip community-list standard 1_130_134 permit 65000:1 0:130 0:134 ip community-list standard 1_131_133 permit 65000:1 0:131 0:133 ip community-list standard 1_132_132 permit 65000:1 0:132 0:132 route-map calculator permit 13152 match community 2_2_132 2_3_88 2_4_66 2_6_44 2_8_33 set community 0:264 route-map calculator permit 13153 match community 1_8_256 1_9_255 1_10_254 2_11_24 1_11_253 set community 0:264 route-map calculator permit 13154 match community 2_12_22 1_12_252 1_13_251 1_14_250 1_15_249 set community 0:264 route-map calculator permit 13155 match community 1_16_248 1_17_247 1_18_246 1_19_245 1_20_244 set community 0:264 route-map calculator permit 13156 match community 1_21_243 1_22_242 1_23_241 1_24_240 1_25_239 set community 0:264 route-map calculator permit 13157 match community 1_26_238 1_27_237 1_28_236 1_29_235 1_30_234 set community 0:264 route-map calculator permit 13158 match community 1_31_233 1_32_232 1_33_231 1_34_230 1_35_229 set community 0:264 route-map calculator permit 13159 match community 1_36_228 1_37_227 1_38_226 1_39_225 1_40_224 set community 0:264 route-map calculator permit 13160 match community 1_41_223 1_42_222 1_43_221 1_44_220 1_45_219 set community 0:264 route-map calculator permit 13161 match community 1_46_218 1_47_217 1_48_216 1_49_215 1_50_214 set community 0:264 route-map calculator permit 13162 match community 1_51_213 1_52_212 1_53_211 1_54_210 1_55_209 set community 0:264 route-map calculator permit 13163 match community 1_56_208 1_57_207 1_58_206 1_59_205 1_60_204 set community 0:264 route-map calculator permit 13164 match community 1_61_203 1_62_202 1_63_201 1_64_200 1_65_199 set community 0:264 route-map calculator permit 13165 match community 1_66_198 1_67_197 1_68_196 1_69_195 1_70_194 set community 0:264 route-map calculator permit 13166 match community 1_71_193 1_72_192 1_73_191 1_74_190 1_75_189 set community 0:264 route-map calculator permit 13167 match community 1_76_188 1_77_187 1_78_186 1_79_185 1_80_184 set community 0:264 route-map calculator permit 13168 match community 1_81_183 1_82_182 1_83_181 1_84_180 1_85_179 set community 0:264 route-map calculator permit 13169 match community 1_86_178 1_87_177 1_88_176 1_89_175 1_90_174 set community 0:264 route-map calculator permit 13170 match community 1_91_173 1_92_172 1_93_171 1_94_170 1_95_169 set community 0:264 route-map calculator permit 13171 match community 1_96_168 1_97_167 1_98_166 1_99_165 1_100_164 set community 0:264 route-map calculator permit 13172 match community 1_101_163 1_102_162 1_103_161 1_104_160 1_105_159 set community 0:264 route-map calculator permit 13173 match community 1_106_158 1_107_157 1_108_156 1_109_155 1_110_154 set community 0:264 route-map calculator permit 13174 match community 1_111_153 1_112_152 1_113_151 1_114_150 1_115_149 set community 0:264 route-map calculator permit 13175 match community 1_116_148 1_117_147 1_118_146 1_119_145 1_120_144 set community 0:264 route-map calculator permit 13176 match community 1_121_143 1_122_142 1_123_141 1_124_140 1_125_139 set community 0:264 route-map calculator permit 13177 match community 1_126_138 1_127_137 1_128_136 1_129_135 1_130_134 set community 0:264 route-map calculator permit 13178 match community 1_131_133 1_132_132 set community 0:264 ip community-list standard 2_118_157 permit 65000:2 0:118 0:157 route-map calculator permit 13179 match community 2_118_157 set community 0:18526 ip community-list standard 2_25_228 permit 65000:2 0:25 0:228 ip community-list standard 2_30_190 permit 65000:2 0:30 0:190 ip community-list standard 2_38_150 permit 65000:2 0:38 0:150 ip community-list standard 2_50_114 permit 65000:2 0:50 0:114 ip community-list standard 2_57_100 permit 65000:2 0:57 0:100 ip community-list standard 2_60_95 permit 65000:2 0:60 0:95 ip community-list standard 2_75_76 permit 65000:2 0:75 0:76 route-map calculator permit 13180 match community 2_25_228 2_30_190 2_38_150 2_50_114 2_57_100 set community 0:5700 route-map calculator permit 13181 match community 2_60_95 2_75_76 set community 0:5700 ip community-list standard 2_47_179 permit 65000:2 0:47 0:179 route-map calculator permit 13182 match community 2_47_179 set community 0:8413 ip community-list standard 2_201_207 permit 65000:2 0:201 0:207 route-map calculator permit 13183 match community 2_201_207 set community 0:41607 ip community-list standard 2_106_216 permit 65000:2 0:106 0:216 ip community-list standard 2_108_212 permit 65000:2 0:108 0:212 ip community-list standard 2_144_159 permit 65000:2 0:144 0:159 route-map calculator permit 13184 match community 2_106_216 2_108_212 2_144_159 set community 0:22896 ip community-list standard 2_214_249 permit 65000:2 0:214 0:249 route-map calculator permit 13185 match community 2_214_249 set community 0:53286 ip community-list standard 2_166_197 permit 65000:2 0:166 0:197 route-map calculator permit 13186 match community 2_166_197 set community 0:32702 ip community-list standard 2_146_231 permit 65000:2 0:146 0:231 ip community-list standard 2_154_219 permit 65000:2 0:154 0:219 route-map calculator permit 13187 match community 2_146_231 2_154_219 set community 0:33726 ip community-list standard 2_59_222 permit 65000:2 0:59 0:222 ip community-list standard 2_74_177 permit 65000:2 0:74 0:177 ip community-list standard 2_111_118 permit 65000:2 0:111 0:118 route-map calculator permit 13188 match community 2_59_222 2_74_177 2_111_118 set community 0:13098 ip community-list standard 2_162_223 permit 65000:2 0:162 0:223 route-map calculator permit 13189 match community 2_162_223 set community 0:36126 ip community-list standard 2_31_239 permit 65000:2 0:31 0:239 route-map calculator permit 13190 match community 2_31_239 set community 0:7409 ip community-list standard 2_21_255 permit 65000:2 0:21 0:255 ip community-list standard 2_35_153 permit 65000:2 0:35 0:153 ip community-list standard 2_45_119 permit 65000:2 0:45 0:119 ip community-list standard 2_51_105 permit 65000:2 0:51 0:105 ip community-list standard 2_63_85 permit 65000:2 0:63 0:85 route-map calculator permit 13191 match community 2_21_255 2_35_153 2_45_119 2_51_105 2_63_85 set community 0:5355 ip community-list standard 2_99_249 permit 65000:2 0:99 0:249 route-map calculator permit 13192 match community 2_99_249 set community 0:24651 ip community-list standard 2_186_253 permit 65000:2 0:186 0:253 route-map calculator permit 13193 match community 2_186_253 set community 0:47058 ip community-list standard 2_72_243 permit 65000:2 0:72 0:243 ip community-list standard 2_81_216 permit 65000:2 0:81 0:216 ip community-list standard 2_108_162 permit 65000:2 0:108 0:162 route-map calculator permit 13194 match community 2_72_243 2_81_216 2_108_162 set community 0:17496 ip community-list standard 2_146_151 permit 65000:2 0:146 0:151 route-map calculator permit 13195 match community 2_146_151 set community 0:22046 ip community-list standard 2_13_212 permit 65000:2 0:13 0:212 ip community-list standard 2_26_106 permit 65000:2 0:26 0:106 ip community-list standard 2_52_53 permit 65000:2 0:52 0:53 route-map calculator permit 13196 match community 2_13_212 2_26_106 2_52_53 set community 0:2756 ip community-list standard 2_6_255 permit 65000:2 0:6 0:255 ip community-list standard 2_9_170 permit 65000:2 0:9 0:170 ip community-list standard 2_10_153 permit 65000:2 0:10 0:153 ip community-list standard 2_15_102 permit 65000:2 0:15 0:102 ip community-list standard 2_17_90 permit 65000:2 0:17 0:90 ip community-list standard 2_18_85 permit 65000:2 0:18 0:85 ip community-list standard 2_30_51 permit 65000:2 0:30 0:51 ip community-list standard 2_34_45 permit 65000:2 0:34 0:45 route-map calculator permit 13197 match community 2_6_255 2_9_170 2_10_153 2_15_102 2_17_90 set community 0:1530 route-map calculator permit 13198 match community 2_18_85 2_30_51 2_34_45 set community 0:1530 ip community-list standard 2_162_241 permit 65000:2 0:162 0:241 route-map calculator permit 13199 match community 2_162_241 set community 0:39042 ip community-list standard 2_45_229 permit 65000:2 0:45 0:229 route-map calculator permit 13200 match community 2_45_229 set community 0:10305 ip community-list standard 2_211_254 permit 65000:2 0:211 0:254 route-map calculator permit 13201 match community 2_211_254 set community 0:53594 ip community-list standard 2_55_157 permit 65000:2 0:55 0:157 route-map calculator permit 13202 match community 2_55_157 set community 0:8635 ip community-list standard 2_167_173 permit 65000:2 0:167 0:173 route-map calculator permit 13203 match community 2_167_173 set community 0:28891 ip community-list standard 2_151_198 permit 65000:2 0:151 0:198 route-map calculator permit 13204 match community 2_151_198 set community 0:29898 ip community-list standard 2_33_187 permit 65000:2 0:33 0:187 ip community-list standard 2_51_121 permit 65000:2 0:51 0:121 route-map calculator permit 13205 match community 2_33_187 2_51_121 set community 0:6171 ip community-list standard 2_210_245 permit 65000:2 0:210 0:245 route-map calculator permit 13206 match community 2_210_245 set community 0:51450 ip community-list standard 2_139_148 permit 65000:2 0:139 0:148 route-map calculator permit 13207 match community 2_139_148 set community 0:20572 ip community-list standard 2_38_223 permit 65000:2 0:38 0:223 route-map calculator permit 13208 match community 2_38_223 set community 0:8474 ip community-list standard 2_59_186 permit 65000:2 0:59 0:186 ip community-list standard 2_62_177 permit 65000:2 0:62 0:177 ip community-list standard 2_93_118 permit 65000:2 0:93 0:118 route-map calculator permit 13209 match community 2_59_186 2_62_177 2_93_118 set community 0:10974 ip community-list standard 2_77_202 permit 65000:2 0:77 0:202 ip community-list standard 2_101_154 permit 65000:2 0:101 0:154 route-map calculator permit 13210 match community 2_77_202 2_101_154 set community 0:15554 ip community-list standard 2_208_250 permit 65000:2 0:208 0:250 route-map calculator permit 13211 match community 2_208_250 set community 0:52000 ip community-list standard 2_243_249 permit 65000:2 0:243 0:249 route-map calculator permit 13212 match community 2_243_249 set community 0:60507 ip community-list standard 2_194_216 permit 65000:2 0:194 0:216 route-map calculator permit 13213 match community 2_194_216 set community 0:41904 ip community-list standard 2_195_244 permit 65000:2 0:195 0:244 route-map calculator permit 13214 match community 2_195_244 set community 0:47580 ip community-list standard 2_2_161 permit 65000:2 0:2 0:161 ip community-list standard 2_7_46 permit 65000:2 0:7 0:46 ip community-list standard 2_14_23 permit 65000:2 0:14 0:23 ip community-list standard 1_66_256 permit 65000:1 0:66 0:256 ip community-list standard 1_67_255 permit 65000:1 0:67 0:255 ip community-list standard 1_68_254 permit 65000:1 0:68 0:254 ip community-list standard 1_69_253 permit 65000:1 0:69 0:253 ip community-list standard 1_70_252 permit 65000:1 0:70 0:252 ip community-list standard 1_71_251 permit 65000:1 0:71 0:251 ip community-list standard 1_72_250 permit 65000:1 0:72 0:250 ip community-list standard 1_73_249 permit 65000:1 0:73 0:249 ip community-list standard 1_74_248 permit 65000:1 0:74 0:248 ip community-list standard 1_75_247 permit 65000:1 0:75 0:247 ip community-list standard 1_76_246 permit 65000:1 0:76 0:246 ip community-list standard 1_77_245 permit 65000:1 0:77 0:245 ip community-list standard 1_78_244 permit 65000:1 0:78 0:244 ip community-list standard 1_79_243 permit 65000:1 0:79 0:243 ip community-list standard 1_80_242 permit 65000:1 0:80 0:242 ip community-list standard 1_81_241 permit 65000:1 0:81 0:241 ip community-list standard 1_82_240 permit 65000:1 0:82 0:240 ip community-list standard 1_83_239 permit 65000:1 0:83 0:239 ip community-list standard 1_84_238 permit 65000:1 0:84 0:238 ip community-list standard 1_85_237 permit 65000:1 0:85 0:237 ip community-list standard 1_86_236 permit 65000:1 0:86 0:236 ip community-list standard 1_87_235 permit 65000:1 0:87 0:235 ip community-list standard 1_88_234 permit 65000:1 0:88 0:234 ip community-list standard 1_89_233 permit 65000:1 0:89 0:233 ip community-list standard 1_90_232 permit 65000:1 0:90 0:232 ip community-list standard 1_91_231 permit 65000:1 0:91 0:231 ip community-list standard 1_92_230 permit 65000:1 0:92 0:230 ip community-list standard 1_93_229 permit 65000:1 0:93 0:229 ip community-list standard 1_94_228 permit 65000:1 0:94 0:228 ip community-list standard 1_95_227 permit 65000:1 0:95 0:227 ip community-list standard 1_96_226 permit 65000:1 0:96 0:226 ip community-list standard 1_97_225 permit 65000:1 0:97 0:225 ip community-list standard 1_98_224 permit 65000:1 0:98 0:224 ip community-list standard 1_99_223 permit 65000:1 0:99 0:223 ip community-list standard 1_100_222 permit 65000:1 0:100 0:222 ip community-list standard 1_101_221 permit 65000:1 0:101 0:221 ip community-list standard 1_102_220 permit 65000:1 0:102 0:220 ip community-list standard 1_103_219 permit 65000:1 0:103 0:219 ip community-list standard 1_104_218 permit 65000:1 0:104 0:218 ip community-list standard 1_105_217 permit 65000:1 0:105 0:217 ip community-list standard 1_106_216 permit 65000:1 0:106 0:216 ip community-list standard 1_107_215 permit 65000:1 0:107 0:215 ip community-list standard 1_108_214 permit 65000:1 0:108 0:214 ip community-list standard 1_109_213 permit 65000:1 0:109 0:213 ip community-list standard 1_110_212 permit 65000:1 0:110 0:212 ip community-list standard 1_111_211 permit 65000:1 0:111 0:211 ip community-list standard 1_112_210 permit 65000:1 0:112 0:210 ip community-list standard 1_113_209 permit 65000:1 0:113 0:209 ip community-list standard 1_114_208 permit 65000:1 0:114 0:208 ip community-list standard 1_115_207 permit 65000:1 0:115 0:207 ip community-list standard 1_116_206 permit 65000:1 0:116 0:206 ip community-list standard 1_117_205 permit 65000:1 0:117 0:205 ip community-list standard 1_118_204 permit 65000:1 0:118 0:204 ip community-list standard 1_119_203 permit 65000:1 0:119 0:203 ip community-list standard 1_120_202 permit 65000:1 0:120 0:202 ip community-list standard 1_121_201 permit 65000:1 0:121 0:201 ip community-list standard 1_122_200 permit 65000:1 0:122 0:200 ip community-list standard 1_123_199 permit 65000:1 0:123 0:199 ip community-list standard 1_124_198 permit 65000:1 0:124 0:198 ip community-list standard 1_125_197 permit 65000:1 0:125 0:197 ip community-list standard 1_126_196 permit 65000:1 0:126 0:196 ip community-list standard 1_127_195 permit 65000:1 0:127 0:195 ip community-list standard 1_128_194 permit 65000:1 0:128 0:194 ip community-list standard 1_129_193 permit 65000:1 0:129 0:193 ip community-list standard 1_130_192 permit 65000:1 0:130 0:192 ip community-list standard 1_131_191 permit 65000:1 0:131 0:191 ip community-list standard 1_132_190 permit 65000:1 0:132 0:190 ip community-list standard 1_133_189 permit 65000:1 0:133 0:189 ip community-list standard 1_134_188 permit 65000:1 0:134 0:188 ip community-list standard 1_135_187 permit 65000:1 0:135 0:187 ip community-list standard 1_136_186 permit 65000:1 0:136 0:186 ip community-list standard 1_137_185 permit 65000:1 0:137 0:185 ip community-list standard 1_138_184 permit 65000:1 0:138 0:184 ip community-list standard 1_139_183 permit 65000:1 0:139 0:183 ip community-list standard 1_140_182 permit 65000:1 0:140 0:182 ip community-list standard 1_141_181 permit 65000:1 0:141 0:181 ip community-list standard 1_142_180 permit 65000:1 0:142 0:180 ip community-list standard 1_143_179 permit 65000:1 0:143 0:179 ip community-list standard 1_144_178 permit 65000:1 0:144 0:178 ip community-list standard 1_145_177 permit 65000:1 0:145 0:177 ip community-list standard 1_146_176 permit 65000:1 0:146 0:176 ip community-list standard 1_147_175 permit 65000:1 0:147 0:175 ip community-list standard 1_148_174 permit 65000:1 0:148 0:174 ip community-list standard 1_149_173 permit 65000:1 0:149 0:173 ip community-list standard 1_150_172 permit 65000:1 0:150 0:172 ip community-list standard 1_151_171 permit 65000:1 0:151 0:171 ip community-list standard 1_152_170 permit 65000:1 0:152 0:170 ip community-list standard 1_153_169 permit 65000:1 0:153 0:169 ip community-list standard 1_154_168 permit 65000:1 0:154 0:168 ip community-list standard 1_155_167 permit 65000:1 0:155 0:167 ip community-list standard 1_156_166 permit 65000:1 0:156 0:166 ip community-list standard 1_157_165 permit 65000:1 0:157 0:165 ip community-list standard 1_158_164 permit 65000:1 0:158 0:164 ip community-list standard 1_159_163 permit 65000:1 0:159 0:163 ip community-list standard 1_160_162 permit 65000:1 0:160 0:162 ip community-list standard 1_161_161 permit 65000:1 0:161 0:161 route-map calculator permit 13215 match community 2_2_161 2_7_46 2_14_23 1_66_256 1_67_255 set community 0:322 route-map calculator permit 13216 match community 1_68_254 1_69_253 1_70_252 1_71_251 1_72_250 set community 0:322 route-map calculator permit 13217 match community 1_73_249 1_74_248 1_75_247 1_76_246 1_77_245 set community 0:322 route-map calculator permit 13218 match community 1_78_244 1_79_243 1_80_242 1_81_241 1_82_240 set community 0:322 route-map calculator permit 13219 match community 1_83_239 1_84_238 1_85_237 1_86_236 1_87_235 set community 0:322 route-map calculator permit 13220 match community 1_88_234 1_89_233 1_90_232 1_91_231 1_92_230 set community 0:322 route-map calculator permit 13221 match community 1_93_229 1_94_228 1_95_227 1_96_226 1_97_225 set community 0:322 route-map calculator permit 13222 match community 1_98_224 1_99_223 1_100_222 1_101_221 1_102_220 set community 0:322 route-map calculator permit 13223 match community 1_103_219 1_104_218 1_105_217 1_106_216 1_107_215 set community 0:322 route-map calculator permit 13224 match community 1_108_214 1_109_213 1_110_212 1_111_211 1_112_210 set community 0:322 route-map calculator permit 13225 match community 1_113_209 1_114_208 1_115_207 1_116_206 1_117_205 set community 0:322 route-map calculator permit 13226 match community 1_118_204 1_119_203 1_120_202 1_121_201 1_122_200 set community 0:322 route-map calculator permit 13227 match community 1_123_199 1_124_198 1_125_197 1_126_196 1_127_195 set community 0:322 route-map calculator permit 13228 match community 1_128_194 1_129_193 1_130_192 1_131_191 1_132_190 set community 0:322 route-map calculator permit 13229 match community 1_133_189 1_134_188 1_135_187 1_136_186 1_137_185 set community 0:322 route-map calculator permit 13230 match community 1_138_184 1_139_183 1_140_182 1_141_181 1_142_180 set community 0:322 route-map calculator permit 13231 match community 1_143_179 1_144_178 1_145_177 1_146_176 1_147_175 set community 0:322 route-map calculator permit 13232 match community 1_148_174 1_149_173 1_150_172 1_151_171 1_152_170 set community 0:322 route-map calculator permit 13233 match community 1_153_169 1_154_168 1_155_167 1_156_166 1_157_165 set community 0:322 route-map calculator permit 13234 match community 1_158_164 1_159_163 1_160_162 1_161_161 set community 0:322 ip community-list standard 2_42_193 permit 65000:2 0:42 0:193 route-map calculator permit 13235 match community 2_42_193 set community 0:8106 ip community-list standard 2_175_215 permit 65000:2 0:175 0:215 route-map calculator permit 13236 match community 2_175_215 set community 0:37625 ip community-list standard 2_53_206 permit 65000:2 0:53 0:206 ip community-list standard 2_103_106 permit 65000:2 0:103 0:106 route-map calculator permit 13237 match community 2_53_206 2_103_106 set community 0:10918 ip community-list standard 2_71_113 permit 65000:2 0:71 0:113 route-map calculator permit 13238 match community 2_71_113 set community 0:8023 ip community-list standard 2_135_247 permit 65000:2 0:135 0:247 ip community-list standard 2_171_195 permit 65000:2 0:171 0:195 route-map calculator permit 13239 match community 2_135_247 2_171_195 set community 0:33345 ip community-list standard 2_103_245 permit 65000:2 0:103 0:245 route-map calculator permit 13240 match community 2_103_245 set community 0:25235 ip community-list standard 2_127_141 permit 65000:2 0:127 0:141 route-map calculator permit 13241 match community 2_127_141 set community 0:17907 ip community-list standard 2_14_215 permit 65000:2 0:14 0:215 ip community-list standard 2_35_86 permit 65000:2 0:35 0:86 ip community-list standard 2_43_70 permit 65000:2 0:43 0:70 route-map calculator permit 13242 match community 2_14_215 2_35_86 2_43_70 set community 0:3010 ip community-list standard 2_190_255 permit 65000:2 0:190 0:255 route-map calculator permit 13243 match community 2_190_255 set community 0:48450 ip community-list standard 1_1_174 permit 65000:1 0:1 0:174 ip community-list standard 2_1_175 permit 65000:2 0:1 0:175 ip community-list standard 1_2_173 permit 65000:1 0:2 0:173 ip community-list standard 1_3_172 permit 65000:1 0:3 0:172 ip community-list standard 1_4_171 permit 65000:1 0:4 0:171 ip community-list standard 2_5_35 permit 65000:2 0:5 0:35 ip community-list standard 1_5_170 permit 65000:1 0:5 0:170 ip community-list standard 1_6_169 permit 65000:1 0:6 0:169 ip community-list standard 2_7_25 permit 65000:2 0:7 0:25 ip community-list standard 1_7_168 permit 65000:1 0:7 0:168 ip community-list standard 1_8_167 permit 65000:1 0:8 0:167 ip community-list standard 1_9_166 permit 65000:1 0:9 0:166 ip community-list standard 1_10_165 permit 65000:1 0:10 0:165 ip community-list standard 1_11_164 permit 65000:1 0:11 0:164 ip community-list standard 1_12_163 permit 65000:1 0:12 0:163 ip community-list standard 1_13_162 permit 65000:1 0:13 0:162 ip community-list standard 1_14_161 permit 65000:1 0:14 0:161 ip community-list standard 1_15_160 permit 65000:1 0:15 0:160 ip community-list standard 1_16_159 permit 65000:1 0:16 0:159 ip community-list standard 1_17_158 permit 65000:1 0:17 0:158 ip community-list standard 1_18_157 permit 65000:1 0:18 0:157 ip community-list standard 1_19_156 permit 65000:1 0:19 0:156 ip community-list standard 1_20_155 permit 65000:1 0:20 0:155 ip community-list standard 1_21_154 permit 65000:1 0:21 0:154 ip community-list standard 1_22_153 permit 65000:1 0:22 0:153 ip community-list standard 1_23_152 permit 65000:1 0:23 0:152 ip community-list standard 1_24_151 permit 65000:1 0:24 0:151 ip community-list standard 1_25_150 permit 65000:1 0:25 0:150 ip community-list standard 1_26_149 permit 65000:1 0:26 0:149 ip community-list standard 1_27_148 permit 65000:1 0:27 0:148 ip community-list standard 1_28_147 permit 65000:1 0:28 0:147 ip community-list standard 1_29_146 permit 65000:1 0:29 0:146 ip community-list standard 1_30_145 permit 65000:1 0:30 0:145 ip community-list standard 1_31_144 permit 65000:1 0:31 0:144 ip community-list standard 1_32_143 permit 65000:1 0:32 0:143 ip community-list standard 1_33_142 permit 65000:1 0:33 0:142 ip community-list standard 1_34_141 permit 65000:1 0:34 0:141 ip community-list standard 1_35_140 permit 65000:1 0:35 0:140 ip community-list standard 1_36_139 permit 65000:1 0:36 0:139 ip community-list standard 1_37_138 permit 65000:1 0:37 0:138 ip community-list standard 1_38_137 permit 65000:1 0:38 0:137 ip community-list standard 1_39_136 permit 65000:1 0:39 0:136 ip community-list standard 1_40_135 permit 65000:1 0:40 0:135 ip community-list standard 1_41_134 permit 65000:1 0:41 0:134 ip community-list standard 1_42_133 permit 65000:1 0:42 0:133 ip community-list standard 1_43_132 permit 65000:1 0:43 0:132 ip community-list standard 1_44_131 permit 65000:1 0:44 0:131 ip community-list standard 1_45_130 permit 65000:1 0:45 0:130 ip community-list standard 1_46_129 permit 65000:1 0:46 0:129 ip community-list standard 1_47_128 permit 65000:1 0:47 0:128 ip community-list standard 1_48_127 permit 65000:1 0:48 0:127 ip community-list standard 1_49_126 permit 65000:1 0:49 0:126 ip community-list standard 1_50_125 permit 65000:1 0:50 0:125 ip community-list standard 1_51_124 permit 65000:1 0:51 0:124 ip community-list standard 1_52_123 permit 65000:1 0:52 0:123 ip community-list standard 1_53_122 permit 65000:1 0:53 0:122 ip community-list standard 1_54_121 permit 65000:1 0:54 0:121 ip community-list standard 1_55_120 permit 65000:1 0:55 0:120 ip community-list standard 1_56_119 permit 65000:1 0:56 0:119 ip community-list standard 1_57_118 permit 65000:1 0:57 0:118 ip community-list standard 1_58_117 permit 65000:1 0:58 0:117 ip community-list standard 1_59_116 permit 65000:1 0:59 0:116 ip community-list standard 1_60_115 permit 65000:1 0:60 0:115 ip community-list standard 1_61_114 permit 65000:1 0:61 0:114 ip community-list standard 1_62_113 permit 65000:1 0:62 0:113 ip community-list standard 1_63_112 permit 65000:1 0:63 0:112 ip community-list standard 1_64_111 permit 65000:1 0:64 0:111 ip community-list standard 1_65_110 permit 65000:1 0:65 0:110 ip community-list standard 1_66_109 permit 65000:1 0:66 0:109 ip community-list standard 1_67_108 permit 65000:1 0:67 0:108 ip community-list standard 1_68_107 permit 65000:1 0:68 0:107 ip community-list standard 1_69_106 permit 65000:1 0:69 0:106 ip community-list standard 1_70_105 permit 65000:1 0:70 0:105 ip community-list standard 1_71_104 permit 65000:1 0:71 0:104 ip community-list standard 1_72_103 permit 65000:1 0:72 0:103 ip community-list standard 1_73_102 permit 65000:1 0:73 0:102 ip community-list standard 1_74_101 permit 65000:1 0:74 0:101 ip community-list standard 1_75_100 permit 65000:1 0:75 0:100 ip community-list standard 1_76_99 permit 65000:1 0:76 0:99 ip community-list standard 1_77_98 permit 65000:1 0:77 0:98 ip community-list standard 1_78_97 permit 65000:1 0:78 0:97 ip community-list standard 1_79_96 permit 65000:1 0:79 0:96 ip community-list standard 1_80_95 permit 65000:1 0:80 0:95 ip community-list standard 1_81_94 permit 65000:1 0:81 0:94 ip community-list standard 1_82_93 permit 65000:1 0:82 0:93 ip community-list standard 1_83_92 permit 65000:1 0:83 0:92 ip community-list standard 1_84_91 permit 65000:1 0:84 0:91 ip community-list standard 1_85_90 permit 65000:1 0:85 0:90 ip community-list standard 1_86_89 permit 65000:1 0:86 0:89 ip community-list standard 1_87_88 permit 65000:1 0:87 0:88 ip community-list expanded c175 permit 1 ^65000:4_0:175_0:1$ ip community-list expanded c175 permit 2 ^65000:3_0:176_0:1$ ip community-list expanded c175 permit 3 ^65000:3_0:177_0:2$ ip community-list expanded c175 permit 4 ^65000:3_0:178_0:3$ ip community-list expanded c175 permit 5 ^65000:3_0:179_0:4$ ip community-list expanded c175 permit 6 ^65000:3_0:180_0:5$ ip community-list expanded c175 permit 7 ^65000:3_0:181_0:6$ ip community-list expanded c175 permit 8 ^65000:3_0:182_0:7$ ip community-list expanded c175 permit 9 ^65000:3_0:183_0:8$ ip community-list expanded c175 permit 10 ^65000:3_0:184_0:9$ ip community-list expanded c175 permit 11 ^65000:3_0:185_0:10$ ip community-list expanded c175 permit 12 ^65000:3_0:186_0:11$ ip community-list expanded c175 permit 13 ^65000:3_0:187_0:12$ ip community-list expanded c175 permit 14 ^65000:3_0:188_0:13$ ip community-list expanded c175 permit 15 ^65000:3_0:189_0:14$ ip community-list expanded c175 permit 16 ^65000:3_0:190_0:15$ ip community-list expanded c175 permit 17 ^65000:3_0:191_0:16$ ip community-list expanded c175 permit 18 ^65000:3_0:192_0:17$ ip community-list expanded c175 permit 19 ^65000:3_0:193_0:18$ ip community-list expanded c175 permit 20 ^65000:3_0:194_0:19$ ip community-list expanded c175 permit 21 ^65000:3_0:195_0:20$ ip community-list expanded c175 permit 22 ^65000:3_0:196_0:21$ ip community-list expanded c175 permit 23 ^65000:3_0:197_0:22$ ip community-list expanded c175 permit 24 ^65000:3_0:198_0:23$ ip community-list expanded c175 permit 25 ^65000:3_0:199_0:24$ ip community-list expanded c175 permit 26 ^65000:3_0:200_0:25$ ip community-list expanded c175 permit 27 ^65000:3_0:201_0:26$ ip community-list expanded c175 permit 28 ^65000:3_0:202_0:27$ ip community-list expanded c175 permit 29 ^65000:3_0:203_0:28$ ip community-list expanded c175 permit 30 ^65000:3_0:204_0:29$ ip community-list expanded c175 permit 31 ^65000:3_0:205_0:30$ ip community-list expanded c175 permit 32 ^65000:3_0:206_0:31$ ip community-list expanded c175 permit 33 ^65000:3_0:207_0:32$ ip community-list expanded c175 permit 34 ^65000:3_0:208_0:33$ ip community-list expanded c175 permit 35 ^65000:3_0:209_0:34$ ip community-list expanded c175 permit 36 ^65000:3_0:210_0:35$ ip community-list expanded c175 permit 37 ^65000:3_0:211_0:36$ ip community-list expanded c175 permit 38 ^65000:3_0:212_0:37$ ip community-list expanded c175 permit 39 ^65000:3_0:213_0:38$ ip community-list expanded c175 permit 40 ^65000:3_0:214_0:39$ ip community-list expanded c175 permit 41 ^65000:3_0:215_0:40$ ip community-list expanded c175 permit 42 ^65000:3_0:216_0:41$ ip community-list expanded c175 permit 43 ^65000:3_0:217_0:42$ ip community-list expanded c175 permit 44 ^65000:3_0:218_0:43$ ip community-list expanded c175 permit 45 ^65000:3_0:219_0:44$ ip community-list expanded c175 permit 46 ^65000:3_0:220_0:45$ ip community-list expanded c175 permit 47 ^65000:3_0:221_0:46$ ip community-list expanded c175 permit 48 ^65000:3_0:222_0:47$ ip community-list expanded c175 permit 49 ^65000:3_0:223_0:48$ ip community-list expanded c175 permit 50 ^65000:3_0:224_0:49$ ip community-list expanded c175 permit 51 ^65000:3_0:225_0:50$ ip community-list expanded c175 permit 52 ^65000:3_0:226_0:51$ ip community-list expanded c175 permit 53 ^65000:3_0:227_0:52$ ip community-list expanded c175 permit 54 ^65000:3_0:228_0:53$ ip community-list expanded c175 permit 55 ^65000:3_0:229_0:54$ ip community-list expanded c175 permit 56 ^65000:3_0:230_0:55$ ip community-list expanded c175 permit 57 ^65000:3_0:231_0:56$ ip community-list expanded c175 permit 58 ^65000:3_0:232_0:57$ ip community-list expanded c175 permit 59 ^65000:3_0:233_0:58$ ip community-list expanded c175 permit 60 ^65000:3_0:234_0:59$ ip community-list expanded c175 permit 61 ^65000:3_0:235_0:60$ ip community-list expanded c175 permit 62 ^65000:3_0:236_0:61$ ip community-list expanded c175 permit 63 ^65000:3_0:237_0:62$ ip community-list expanded c175 permit 64 ^65000:3_0:238_0:63$ ip community-list expanded c175 permit 65 ^65000:3_0:239_0:64$ ip community-list expanded c175 permit 66 ^65000:3_0:240_0:65$ ip community-list expanded c175 permit 67 ^65000:3_0:241_0:66$ ip community-list expanded c175 permit 68 ^65000:3_0:242_0:67$ ip community-list expanded c175 permit 69 ^65000:3_0:243_0:68$ ip community-list expanded c175 permit 70 ^65000:3_0:244_0:69$ ip community-list expanded c175 permit 71 ^65000:3_0:245_0:70$ ip community-list expanded c175 permit 72 ^65000:3_0:246_0:71$ ip community-list expanded c175 permit 73 ^65000:3_0:247_0:72$ ip community-list expanded c175 permit 74 ^65000:3_0:248_0:73$ ip community-list expanded c175 permit 75 ^65000:3_0:249_0:74$ ip community-list expanded c175 permit 76 ^65000:3_0:250_0:75$ ip community-list expanded c175 permit 77 ^65000:3_0:251_0:76$ ip community-list expanded c175 permit 78 ^65000:3_0:252_0:77$ ip community-list expanded c175 permit 79 ^65000:3_0:253_0:78$ ip community-list expanded c175 permit 80 ^65000:3_0:254_0:79$ ip community-list expanded c175 permit 81 ^65000:3_0:255_0:80$ ip community-list expanded c175 permit 82 ^65000:3_0:256_0:81$ route-map calculator permit 13244 match community 1_1_174 2_1_175 1_2_173 1_3_172 1_4_171 set community 0:175 route-map calculator permit 13245 match community 2_5_35 1_5_170 1_6_169 2_7_25 1_7_168 set community 0:175 route-map calculator permit 13246 match community 1_8_167 1_9_166 1_10_165 1_11_164 1_12_163 set community 0:175 route-map calculator permit 13247 match community 1_13_162 1_14_161 1_15_160 1_16_159 1_17_158 set community 0:175 route-map calculator permit 13248 match community 1_18_157 1_19_156 1_20_155 1_21_154 1_22_153 set community 0:175 route-map calculator permit 13249 match community 1_23_152 1_24_151 1_25_150 1_26_149 1_27_148 set community 0:175 route-map calculator permit 13250 match community 1_28_147 1_29_146 1_30_145 1_31_144 1_32_143 set community 0:175 route-map calculator permit 13251 match community 1_33_142 1_34_141 1_35_140 1_36_139 1_37_138 set community 0:175 route-map calculator permit 13252 match community 1_38_137 1_39_136 1_40_135 1_41_134 1_42_133 set community 0:175 route-map calculator permit 13253 match community 1_43_132 1_44_131 1_45_130 1_46_129 1_47_128 set community 0:175 route-map calculator permit 13254 match community 1_48_127 1_49_126 1_50_125 1_51_124 1_52_123 set community 0:175 route-map calculator permit 13255 match community 1_53_122 1_54_121 1_55_120 1_56_119 1_57_118 set community 0:175 route-map calculator permit 13256 match community 1_58_117 1_59_116 1_60_115 1_61_114 1_62_113 set community 0:175 route-map calculator permit 13257 match community 1_63_112 1_64_111 1_65_110 1_66_109 1_67_108 set community 0:175 route-map calculator permit 13258 match community 1_68_107 1_69_106 1_70_105 1_71_104 1_72_103 set community 0:175 route-map calculator permit 13259 match community 1_73_102 1_74_101 1_75_100 1_76_99 1_77_98 set community 0:175 route-map calculator permit 13260 match community 1_78_97 1_79_96 1_80_95 1_81_94 1_82_93 set community 0:175 route-map calculator permit 13261 match community 1_83_92 1_84_91 1_85_90 1_86_89 1_87_88 set community 0:175 route-map calculator permit 13262 match community c4_175_1 c3_176_1 c3_177_2 c3_178_3 c3_179_4 set community 0:175 route-map calculator permit 13263 match community c3_180_5 c3_181_6 c3_182_7 c3_183_8 c3_184_9 set community 0:175 route-map calculator permit 13264 match community c3_185_10 c3_186_11 c3_187_12 c3_188_13 c3_189_14 set community 0:175 route-map calculator permit 13265 match community c3_190_15 c3_191_16 c3_192_17 c3_193_18 c3_194_19 set community 0:175 route-map calculator permit 13266 match community c3_195_20 c3_196_21 c3_197_22 c3_198_23 c3_199_24 set community 0:175 route-map calculator permit 13267 match community c3_200_25 c3_201_26 c3_202_27 c3_203_28 c3_204_29 set community 0:175 route-map calculator permit 13268 match community c3_205_30 c3_206_31 c3_207_32 c3_208_33 c3_209_34 set community 0:175 route-map calculator permit 13269 match community c3_210_35 c3_211_36 c3_212_37 c3_213_38 c3_214_39 set community 0:175 route-map calculator permit 13270 match community c3_215_40 c3_216_41 c3_217_42 c3_218_43 c3_219_44 set community 0:175 route-map calculator permit 13271 match community c3_220_45 c3_221_46 c3_222_47 c3_223_48 c3_224_49 set community 0:175 route-map calculator permit 13272 match community c3_225_50 c3_226_51 c3_227_52 c3_228_53 c3_229_54 set community 0:175 route-map calculator permit 13273 match community c3_230_55 c3_231_56 c3_232_57 c3_233_58 c3_234_59 set community 0:175 route-map calculator permit 13274 match community c3_235_60 c3_236_61 c3_237_62 c3_238_63 c3_239_64 set community 0:175 route-map calculator permit 13275 match community c3_240_65 c3_241_66 c3_242_67 c3_243_68 c3_244_69 set community 0:175 route-map calculator permit 13276 match community c3_245_70 c3_246_71 c3_247_72 c3_248_73 c3_249_74 set community 0:175 route-map calculator permit 13277 match community c3_250_75 c3_251_76 c3_252_77 c3_253_78 c3_254_79 set community 0:175 route-map calculator permit 13278 match community c3_255_80 c3_256_81 set community 0:175 ip community-list standard 2_229_246 permit 65000:2 0:229 0:246 route-map calculator permit 13279 match community 2_229_246 set community 0:56334 ip community-list standard 2_86_248 permit 65000:2 0:86 0:248 ip community-list standard 2_124_172 permit 65000:2 0:124 0:172 route-map calculator permit 13280 match community 2_86_248 2_124_172 set community 0:21328 ip community-list standard 2_106_212 permit 65000:2 0:106 0:212 route-map calculator permit 13281 match community 2_106_212 set community 0:22472 ip community-list standard 2_139_189 permit 65000:2 0:139 0:189 route-map calculator permit 13282 match community 2_139_189 set community 0:26271 ip community-list standard 2_3_173 permit 65000:2 0:3 0:173 route-map calculator permit 13283 match community 2_3_173 set community 0:519 ip community-list standard 2_68_157 permit 65000:2 0:68 0:157 route-map calculator permit 13284 match community 2_68_157 set community 0:10676 ip community-list standard 2_96_212 permit 65000:2 0:96 0:212 ip community-list standard 2_106_192 permit 65000:2 0:106 0:192 ip community-list standard 2_128_159 permit 65000:2 0:128 0:159 route-map calculator permit 13285 match community 2_96_212 2_106_192 2_128_159 set community 0:20352 ip community-list standard 2_145_187 permit 65000:2 0:145 0:187 route-map calculator permit 13286 match community 2_145_187 set community 0:27115 ip community-list standard 2_163_170 permit 65000:2 0:163 0:170 route-map calculator permit 13287 match community 2_163_170 set community 0:27710 ip community-list standard 2_129_231 permit 65000:2 0:129 0:231 route-map calculator permit 13288 match community 2_129_231 set community 0:29799 ip community-list standard 2_130_239 permit 65000:2 0:130 0:239 route-map calculator permit 13289 match community 2_130_239 set community 0:31070 ip community-list standard 2_40_227 permit 65000:2 0:40 0:227 route-map calculator permit 13290 match community 2_40_227 set community 0:9080 ip community-list standard 2_67_176 permit 65000:2 0:67 0:176 ip community-list standard 2_88_134 permit 65000:2 0:88 0:134 route-map calculator permit 13291 match community 2_67_176 2_88_134 set community 0:11792 ip community-list standard 2_94_207 permit 65000:2 0:94 0:207 ip community-list standard 2_138_141 permit 65000:2 0:138 0:141 route-map calculator permit 13292 match community 2_94_207 2_138_141 set community 0:19458 ip community-list standard 2_62_254 permit 65000:2 0:62 0:254 ip community-list standard 2_124_127 permit 65000:2 0:124 0:127 route-map calculator permit 13293 match community 2_62_254 2_124_127 set community 0:15748 ip community-list standard 2_74_185 permit 65000:2 0:74 0:185 route-map calculator permit 13294 match community 2_74_185 set community 0:13690 ip community-list standard 2_187_232 permit 65000:2 0:187 0:232 route-map calculator permit 13295 match community 2_187_232 set community 0:43384 ip community-list standard 2_6_228 permit 65000:2 0:6 0:228 ip community-list standard 2_8_171 permit 65000:2 0:8 0:171 ip community-list standard 2_9_152 permit 65000:2 0:9 0:152 ip community-list standard 2_12_114 permit 65000:2 0:12 0:114 ip community-list standard 2_18_76 permit 65000:2 0:18 0:76 ip community-list standard 2_19_72 permit 65000:2 0:19 0:72 ip community-list standard 2_24_57 permit 65000:2 0:24 0:57 ip community-list standard 2_36_38 permit 65000:2 0:36 0:38 route-map calculator permit 13296 match community 2_6_228 2_8_171 2_9_152 2_12_114 2_18_76 set community 0:1368 route-map calculator permit 13297 match community 2_19_72 2_24_57 2_36_38 set community 0:1368 ip community-list standard 2_35_121 permit 65000:2 0:35 0:121 ip community-list standard 2_55_77 permit 65000:2 0:55 0:77 route-map calculator permit 13298 match community 2_35_121 2_55_77 set community 0:4235 ip community-list standard 2_121_203 permit 65000:2 0:121 0:203 route-map calculator permit 13299 match community 2_121_203 set community 0:24563 ip community-list standard 2_166_220 permit 65000:2 0:166 0:220 route-map calculator permit 13300 match community 2_166_220 set community 0:36520 ip community-list standard 2_81_226 permit 65000:2 0:81 0:226 ip community-list standard 2_113_162 permit 65000:2 0:113 0:162 route-map calculator permit 13301 match community 2_81_226 2_113_162 set community 0:18306 ip community-list standard 1_1_98 permit 65000:1 0:1 0:98 ip community-list standard 2_1_99 permit 65000:2 0:1 0:99 ip community-list standard 1_2_97 permit 65000:1 0:2 0:97 ip community-list standard 2_3_33 permit 65000:2 0:3 0:33 ip community-list standard 1_3_96 permit 65000:1 0:3 0:96 ip community-list standard 1_4_95 permit 65000:1 0:4 0:95 ip community-list standard 1_5_94 permit 65000:1 0:5 0:94 ip community-list standard 1_6_93 permit 65000:1 0:6 0:93 ip community-list standard 1_7_92 permit 65000:1 0:7 0:92 ip community-list standard 1_8_91 permit 65000:1 0:8 0:91 ip community-list standard 2_9_11 permit 65000:2 0:9 0:11 ip community-list standard 1_9_90 permit 65000:1 0:9 0:90 ip community-list standard 1_10_89 permit 65000:1 0:10 0:89 ip community-list standard 1_11_88 permit 65000:1 0:11 0:88 ip community-list standard 1_12_87 permit 65000:1 0:12 0:87 ip community-list standard 1_13_86 permit 65000:1 0:13 0:86 ip community-list standard 1_14_85 permit 65000:1 0:14 0:85 ip community-list standard 1_15_84 permit 65000:1 0:15 0:84 ip community-list standard 1_16_83 permit 65000:1 0:16 0:83 ip community-list standard 1_17_82 permit 65000:1 0:17 0:82 ip community-list standard 1_18_81 permit 65000:1 0:18 0:81 ip community-list standard 1_19_80 permit 65000:1 0:19 0:80 ip community-list standard 1_20_79 permit 65000:1 0:20 0:79 ip community-list standard 1_21_78 permit 65000:1 0:21 0:78 ip community-list standard 1_22_77 permit 65000:1 0:22 0:77 ip community-list standard 1_23_76 permit 65000:1 0:23 0:76 ip community-list standard 1_24_75 permit 65000:1 0:24 0:75 ip community-list standard 1_25_74 permit 65000:1 0:25 0:74 ip community-list standard 1_26_73 permit 65000:1 0:26 0:73 ip community-list standard 1_27_72 permit 65000:1 0:27 0:72 ip community-list standard 1_28_71 permit 65000:1 0:28 0:71 ip community-list standard 1_29_70 permit 65000:1 0:29 0:70 ip community-list standard 1_30_69 permit 65000:1 0:30 0:69 ip community-list standard 1_31_68 permit 65000:1 0:31 0:68 ip community-list standard 1_32_67 permit 65000:1 0:32 0:67 ip community-list standard 1_33_66 permit 65000:1 0:33 0:66 ip community-list standard 1_34_65 permit 65000:1 0:34 0:65 ip community-list standard 1_35_64 permit 65000:1 0:35 0:64 ip community-list standard 1_36_63 permit 65000:1 0:36 0:63 ip community-list standard 1_37_62 permit 65000:1 0:37 0:62 ip community-list standard 1_38_61 permit 65000:1 0:38 0:61 ip community-list standard 1_39_60 permit 65000:1 0:39 0:60 ip community-list standard 1_40_59 permit 65000:1 0:40 0:59 ip community-list standard 1_41_58 permit 65000:1 0:41 0:58 ip community-list standard 1_42_57 permit 65000:1 0:42 0:57 ip community-list standard 1_43_56 permit 65000:1 0:43 0:56 ip community-list standard 1_44_55 permit 65000:1 0:44 0:55 ip community-list standard 1_45_54 permit 65000:1 0:45 0:54 ip community-list standard 1_46_53 permit 65000:1 0:46 0:53 ip community-list standard 1_47_52 permit 65000:1 0:47 0:52 ip community-list standard 1_48_51 permit 65000:1 0:48 0:51 ip community-list standard 1_49_50 permit 65000:1 0:49 0:50 ip community-list expanded c99 permit 1 ^65000:4_0:99_0:1$ ip community-list expanded c99 permit 2 ^65000:3_0:100_0:1$ ip community-list expanded c99 permit 3 ^65000:3_0:101_0:2$ ip community-list expanded c99 permit 4 ^65000:3_0:102_0:3$ ip community-list expanded c99 permit 5 ^65000:3_0:103_0:4$ ip community-list expanded c99 permit 6 ^65000:3_0:104_0:5$ ip community-list expanded c99 permit 7 ^65000:3_0:105_0:6$ ip community-list expanded c99 permit 8 ^65000:3_0:106_0:7$ ip community-list expanded c99 permit 9 ^65000:3_0:107_0:8$ ip community-list expanded c99 permit 10 ^65000:3_0:108_0:9$ ip community-list expanded c99 permit 11 ^65000:3_0:109_0:10$ ip community-list expanded c99 permit 12 ^65000:3_0:110_0:11$ ip community-list expanded c99 permit 13 ^65000:3_0:111_0:12$ ip community-list expanded c99 permit 14 ^65000:3_0:112_0:13$ ip community-list expanded c99 permit 15 ^65000:3_0:113_0:14$ ip community-list expanded c99 permit 16 ^65000:3_0:114_0:15$ ip community-list expanded c99 permit 17 ^65000:3_0:115_0:16$ ip community-list expanded c99 permit 18 ^65000:3_0:116_0:17$ ip community-list expanded c99 permit 19 ^65000:3_0:117_0:18$ ip community-list expanded c99 permit 20 ^65000:3_0:118_0:19$ ip community-list expanded c99 permit 21 ^65000:3_0:119_0:20$ ip community-list expanded c99 permit 22 ^65000:3_0:120_0:21$ ip community-list expanded c99 permit 23 ^65000:3_0:121_0:22$ ip community-list expanded c99 permit 24 ^65000:3_0:122_0:23$ ip community-list expanded c99 permit 25 ^65000:3_0:123_0:24$ ip community-list expanded c99 permit 26 ^65000:3_0:124_0:25$ ip community-list expanded c99 permit 27 ^65000:3_0:125_0:26$ ip community-list expanded c99 permit 28 ^65000:3_0:126_0:27$ ip community-list expanded c99 permit 29 ^65000:3_0:127_0:28$ ip community-list expanded c99 permit 30 ^65000:3_0:128_0:29$ ip community-list expanded c99 permit 31 ^65000:3_0:129_0:30$ ip community-list expanded c99 permit 32 ^65000:3_0:130_0:31$ ip community-list expanded c99 permit 33 ^65000:3_0:131_0:32$ ip community-list expanded c99 permit 34 ^65000:3_0:132_0:33$ ip community-list expanded c99 permit 35 ^65000:3_0:133_0:34$ ip community-list expanded c99 permit 36 ^65000:3_0:134_0:35$ ip community-list expanded c99 permit 37 ^65000:3_0:135_0:36$ ip community-list expanded c99 permit 38 ^65000:3_0:136_0:37$ ip community-list expanded c99 permit 39 ^65000:3_0:137_0:38$ ip community-list expanded c99 permit 40 ^65000:3_0:138_0:39$ ip community-list expanded c99 permit 41 ^65000:3_0:139_0:40$ ip community-list expanded c99 permit 42 ^65000:3_0:140_0:41$ ip community-list expanded c99 permit 43 ^65000:3_0:141_0:42$ ip community-list expanded c99 permit 44 ^65000:3_0:142_0:43$ ip community-list expanded c99 permit 45 ^65000:3_0:143_0:44$ ip community-list expanded c99 permit 46 ^65000:3_0:144_0:45$ ip community-list expanded c99 permit 47 ^65000:3_0:145_0:46$ ip community-list expanded c99 permit 48 ^65000:3_0:146_0:47$ ip community-list expanded c99 permit 49 ^65000:3_0:147_0:48$ ip community-list expanded c99 permit 50 ^65000:3_0:148_0:49$ ip community-list expanded c99 permit 51 ^65000:3_0:149_0:50$ ip community-list expanded c99 permit 52 ^65000:3_0:150_0:51$ ip community-list expanded c99 permit 53 ^65000:3_0:151_0:52$ ip community-list expanded c99 permit 54 ^65000:3_0:152_0:53$ ip community-list expanded c99 permit 55 ^65000:3_0:153_0:54$ ip community-list expanded c99 permit 56 ^65000:3_0:154_0:55$ ip community-list expanded c99 permit 57 ^65000:3_0:155_0:56$ ip community-list expanded c99 permit 58 ^65000:3_0:156_0:57$ ip community-list expanded c99 permit 59 ^65000:3_0:157_0:58$ ip community-list expanded c99 permit 60 ^65000:3_0:158_0:59$ ip community-list expanded c99 permit 61 ^65000:3_0:159_0:60$ ip community-list expanded c99 permit 62 ^65000:3_0:160_0:61$ ip community-list expanded c99 permit 63 ^65000:3_0:161_0:62$ ip community-list expanded c99 permit 64 ^65000:3_0:162_0:63$ ip community-list expanded c99 permit 65 ^65000:3_0:163_0:64$ ip community-list expanded c99 permit 66 ^65000:3_0:164_0:65$ ip community-list expanded c99 permit 67 ^65000:3_0:165_0:66$ ip community-list expanded c99 permit 68 ^65000:3_0:166_0:67$ ip community-list expanded c99 permit 69 ^65000:3_0:167_0:68$ ip community-list expanded c99 permit 70 ^65000:3_0:168_0:69$ ip community-list expanded c99 permit 71 ^65000:3_0:169_0:70$ ip community-list expanded c99 permit 72 ^65000:3_0:170_0:71$ ip community-list expanded c99 permit 73 ^65000:3_0:171_0:72$ ip community-list expanded c99 permit 74 ^65000:3_0:172_0:73$ ip community-list expanded c99 permit 75 ^65000:3_0:173_0:74$ ip community-list expanded c99 permit 76 ^65000:3_0:174_0:75$ ip community-list expanded c99 permit 77 ^65000:3_0:175_0:76$ ip community-list expanded c99 permit 78 ^65000:3_0:176_0:77$ ip community-list expanded c99 permit 79 ^65000:3_0:177_0:78$ ip community-list expanded c99 permit 80 ^65000:3_0:178_0:79$ ip community-list expanded c99 permit 81 ^65000:3_0:179_0:80$ ip community-list expanded c99 permit 82 ^65000:3_0:180_0:81$ ip community-list expanded c99 permit 83 ^65000:3_0:181_0:82$ ip community-list expanded c99 permit 84 ^65000:3_0:182_0:83$ ip community-list expanded c99 permit 85 ^65000:3_0:183_0:84$ ip community-list expanded c99 permit 86 ^65000:3_0:184_0:85$ ip community-list expanded c99 permit 87 ^65000:3_0:185_0:86$ ip community-list expanded c99 permit 88 ^65000:3_0:186_0:87$ ip community-list expanded c99 permit 89 ^65000:3_0:187_0:88$ ip community-list expanded c99 permit 90 ^65000:3_0:188_0:89$ ip community-list expanded c99 permit 91 ^65000:3_0:189_0:90$ ip community-list expanded c99 permit 92 ^65000:3_0:190_0:91$ ip community-list expanded c99 permit 93 ^65000:3_0:191_0:92$ ip community-list expanded c99 permit 94 ^65000:3_0:192_0:93$ ip community-list expanded c99 permit 95 ^65000:3_0:193_0:94$ ip community-list expanded c99 permit 96 ^65000:3_0:194_0:95$ ip community-list expanded c99 permit 97 ^65000:3_0:195_0:96$ ip community-list expanded c99 permit 98 ^65000:3_0:196_0:97$ ip community-list expanded c99 permit 99 ^65000:3_0:197_0:98$ ip community-list expanded c99 permit 100 ^65000:4_0:198_0:2$ ip community-list expanded c99 permit 101 ^65000:3_0:198_0:99$ ip community-list expanded c99 permit 102 ^65000:4_0:199_0:2$ ip community-list expanded c99 permit 103 ^65000:3_0:199_0:100$ ip community-list expanded c99 permit 104 ^65000:3_0:200_0:101$ ip community-list expanded c99 permit 105 ^65000:3_0:201_0:102$ ip community-list expanded c99 permit 106 ^65000:3_0:202_0:103$ ip community-list expanded c99 permit 107 ^65000:3_0:203_0:104$ ip community-list expanded c99 permit 108 ^65000:3_0:204_0:105$ ip community-list expanded c99 permit 109 ^65000:3_0:205_0:106$ ip community-list expanded c99 permit 110 ^65000:3_0:206_0:107$ ip community-list expanded c99 permit 111 ^65000:3_0:207_0:108$ ip community-list expanded c99 permit 112 ^65000:3_0:208_0:109$ ip community-list expanded c99 permit 113 ^65000:3_0:209_0:110$ ip community-list expanded c99 permit 114 ^65000:3_0:210_0:111$ ip community-list expanded c99 permit 115 ^65000:3_0:211_0:112$ ip community-list expanded c99 permit 116 ^65000:3_0:212_0:113$ ip community-list expanded c99 permit 117 ^65000:3_0:213_0:114$ ip community-list expanded c99 permit 118 ^65000:3_0:214_0:115$ ip community-list expanded c99 permit 119 ^65000:3_0:215_0:116$ ip community-list expanded c99 permit 120 ^65000:3_0:216_0:117$ ip community-list expanded c99 permit 121 ^65000:3_0:217_0:118$ ip community-list expanded c99 permit 122 ^65000:3_0:218_0:119$ ip community-list expanded c99 permit 123 ^65000:3_0:219_0:120$ ip community-list expanded c99 permit 124 ^65000:3_0:220_0:121$ ip community-list expanded c99 permit 125 ^65000:3_0:221_0:122$ ip community-list expanded c99 permit 126 ^65000:3_0:222_0:123$ ip community-list expanded c99 permit 127 ^65000:3_0:223_0:124$ ip community-list expanded c99 permit 128 ^65000:3_0:224_0:125$ ip community-list expanded c99 permit 129 ^65000:3_0:225_0:126$ ip community-list expanded c99 permit 130 ^65000:3_0:226_0:127$ ip community-list expanded c99 permit 131 ^65000:3_0:227_0:128$ ip community-list expanded c99 permit 132 ^65000:3_0:228_0:129$ ip community-list expanded c99 permit 133 ^65000:3_0:229_0:130$ ip community-list expanded c99 permit 134 ^65000:3_0:230_0:131$ ip community-list expanded c99 permit 135 ^65000:3_0:231_0:132$ ip community-list expanded c99 permit 136 ^65000:3_0:232_0:133$ ip community-list expanded c99 permit 137 ^65000:3_0:233_0:134$ ip community-list expanded c99 permit 138 ^65000:3_0:234_0:135$ ip community-list expanded c99 permit 139 ^65000:3_0:235_0:136$ ip community-list expanded c99 permit 140 ^65000:3_0:236_0:137$ ip community-list expanded c99 permit 141 ^65000:3_0:237_0:138$ ip community-list expanded c99 permit 142 ^65000:3_0:238_0:139$ ip community-list expanded c99 permit 143 ^65000:3_0:239_0:140$ ip community-list expanded c99 permit 144 ^65000:3_0:240_0:141$ ip community-list expanded c99 permit 145 ^65000:3_0:241_0:142$ ip community-list expanded c99 permit 146 ^65000:3_0:242_0:143$ ip community-list expanded c99 permit 147 ^65000:3_0:243_0:144$ ip community-list expanded c99 permit 148 ^65000:3_0:244_0:145$ ip community-list expanded c99 permit 149 ^65000:3_0:245_0:146$ ip community-list expanded c99 permit 150 ^65000:3_0:246_0:147$ ip community-list expanded c99 permit 151 ^65000:3_0:247_0:148$ ip community-list expanded c99 permit 152 ^65000:3_0:248_0:149$ ip community-list expanded c99 permit 153 ^65000:3_0:249_0:150$ ip community-list expanded c99 permit 154 ^65000:3_0:250_0:151$ ip community-list expanded c99 permit 155 ^65000:3_0:251_0:152$ ip community-list expanded c99 permit 156 ^65000:3_0:252_0:153$ ip community-list expanded c99 permit 157 ^65000:3_0:253_0:154$ ip community-list expanded c99 permit 158 ^65000:3_0:254_0:155$ ip community-list expanded c99 permit 159 ^65000:3_0:255_0:156$ ip community-list expanded c99 permit 160 ^65000:3_0:256_0:157$ route-map calculator permit 13302 match community 1_1_98 2_1_99 1_2_97 2_3_33 1_3_96 set community 0:99 route-map calculator permit 13303 match community 1_4_95 1_5_94 1_6_93 1_7_92 1_8_91 set community 0:99 route-map calculator permit 13304 match community 2_9_11 1_9_90 1_10_89 1_11_88 1_12_87 set community 0:99 route-map calculator permit 13305 match community 1_13_86 1_14_85 1_15_84 1_16_83 1_17_82 set community 0:99 route-map calculator permit 13306 match community 1_18_81 1_19_80 1_20_79 1_21_78 1_22_77 set community 0:99 route-map calculator permit 13307 match community 1_23_76 1_24_75 1_25_74 1_26_73 1_27_72 set community 0:99 route-map calculator permit 13308 match community 1_28_71 1_29_70 1_30_69 1_31_68 1_32_67 set community 0:99 route-map calculator permit 13309 match community 1_33_66 1_34_65 1_35_64 1_36_63 1_37_62 set community 0:99 route-map calculator permit 13310 match community 1_38_61 1_39_60 1_40_59 1_41_58 1_42_57 set community 0:99 route-map calculator permit 13311 match community 1_43_56 1_44_55 1_45_54 1_46_53 1_47_52 set community 0:99 route-map calculator permit 13312 match community 1_48_51 1_49_50 c4_99_1 c3_100_1 c3_101_2 set community 0:99 route-map calculator permit 13313 match community c3_102_3 c3_103_4 c3_104_5 c3_105_6 c3_106_7 set community 0:99 route-map calculator permit 13314 match community c3_107_8 c3_108_9 c3_109_10 c3_110_11 c3_111_12 set community 0:99 route-map calculator permit 13315 match community c3_112_13 c3_113_14 c3_114_15 c3_115_16 c3_116_17 set community 0:99 route-map calculator permit 13316 match community c3_117_18 c3_118_19 c3_119_20 c3_120_21 c3_121_22 set community 0:99 route-map calculator permit 13317 match community c3_122_23 c3_123_24 c3_124_25 c3_125_26 c3_126_27 set community 0:99 route-map calculator permit 13318 match community c3_127_28 c3_128_29 c3_129_30 c3_130_31 c3_131_32 set community 0:99 route-map calculator permit 13319 match community c3_132_33 c3_133_34 c3_134_35 c3_135_36 c3_136_37 set community 0:99 route-map calculator permit 13320 match community c3_137_38 c3_138_39 c3_139_40 c3_140_41 c3_141_42 set community 0:99 route-map calculator permit 13321 match community c3_142_43 c3_143_44 c3_144_45 c3_145_46 c3_146_47 set community 0:99 route-map calculator permit 13322 match community c3_147_48 c3_148_49 c3_149_50 c3_150_51 c3_151_52 set community 0:99 route-map calculator permit 13323 match community c3_152_53 c3_153_54 c3_154_55 c3_155_56 c3_156_57 set community 0:99 route-map calculator permit 13324 match community c3_157_58 c3_158_59 c3_159_60 c3_160_61 c3_161_62 set community 0:99 route-map calculator permit 13325 match community c3_162_63 c3_163_64 c3_164_65 c3_165_66 c3_166_67 set community 0:99 route-map calculator permit 13326 match community c3_167_68 c3_168_69 c3_169_70 c3_170_71 c3_171_72 set community 0:99 route-map calculator permit 13327 match community c3_172_73 c3_173_74 c3_174_75 c3_175_76 c3_176_77 set community 0:99 route-map calculator permit 13328 match community c3_177_78 c3_178_79 c3_179_80 c3_180_81 c3_181_82 set community 0:99 route-map calculator permit 13329 match community c3_182_83 c3_183_84 c3_184_85 c3_185_86 c3_186_87 set community 0:99 route-map calculator permit 13330 match community c3_187_88 c3_188_89 c3_189_90 c3_190_91 c3_191_92 set community 0:99 route-map calculator permit 13331 match community c3_192_93 c3_193_94 c3_194_95 c3_195_96 c3_196_97 set community 0:99 route-map calculator permit 13332 match community c3_197_98 c4_198_2 c3_198_99 c4_199_2 c3_199_100 set community 0:99 route-map calculator permit 13333 match community c3_200_101 c3_201_102 c3_202_103 c3_203_104 c3_204_105 set community 0:99 route-map calculator permit 13334 match community c3_205_106 c3_206_107 c3_207_108 c3_208_109 c3_209_110 set community 0:99 route-map calculator permit 13335 match community c3_210_111 c3_211_112 c3_212_113 c3_213_114 c3_214_115 set community 0:99 route-map calculator permit 13336 match community c3_215_116 c3_216_117 c3_217_118 c3_218_119 c3_219_120 set community 0:99 route-map calculator permit 13337 match community c3_220_121 c3_221_122 c3_222_123 c3_223_124 c3_224_125 set community 0:99 route-map calculator permit 13338 match community c3_225_126 c3_226_127 c3_227_128 c3_228_129 c3_229_130 set community 0:99 route-map calculator permit 13339 match community c3_230_131 c3_231_132 c3_232_133 c3_233_134 c3_234_135 set community 0:99 route-map calculator permit 13340 match community c3_235_136 c3_236_137 c3_237_138 c3_238_139 c3_239_140 set community 0:99 route-map calculator permit 13341 match community c3_240_141 c3_241_142 c3_242_143 c3_243_144 c3_244_145 set community 0:99 route-map calculator permit 13342 match community c3_245_146 c3_246_147 c3_247_148 c3_248_149 c3_249_150 set community 0:99 route-map calculator permit 13343 match community c3_250_151 c3_251_152 c3_252_153 c3_253_154 c3_254_155 set community 0:99 route-map calculator permit 13344 match community c3_255_156 c3_256_157 set community 0:99 ip community-list standard 2_153_183 permit 65000:2 0:153 0:183 route-map calculator permit 13345 match community 2_153_183 set community 0:27999 ip community-list standard 2_130_191 permit 65000:2 0:130 0:191 route-map calculator permit 13346 match community 2_130_191 set community 0:24830 ip community-list standard 2_39_196 permit 65000:2 0:39 0:196 ip community-list standard 2_42_182 permit 65000:2 0:42 0:182 ip community-list standard 2_49_156 permit 65000:2 0:49 0:156 ip community-list standard 2_52_147 permit 65000:2 0:52 0:147 ip community-list standard 2_78_98 permit 65000:2 0:78 0:98 ip community-list standard 2_84_91 permit 65000:2 0:84 0:91 route-map calculator permit 13347 match community 2_39_196 2_42_182 2_49_156 2_52_147 2_78_98 set community 0:7644 route-map calculator permit 13348 match community 2_84_91 set community 0:7644 ip community-list standard 2_9_245 permit 65000:2 0:9 0:245 ip community-list standard 2_15_147 permit 65000:2 0:15 0:147 ip community-list standard 2_21_105 permit 65000:2 0:21 0:105 ip community-list standard 2_35_63 permit 65000:2 0:35 0:63 ip community-list standard 2_45_49 permit 65000:2 0:45 0:49 route-map calculator permit 13349 match community 2_9_245 2_15_147 2_21_105 2_35_63 2_45_49 set community 0:2205 ip community-list standard 2_176_221 permit 65000:2 0:176 0:221 ip community-list standard 2_187_208 permit 65000:2 0:187 0:208 route-map calculator permit 13350 match community 2_176_221 2_187_208 set community 0:38896 ip community-list standard 2_213_217 permit 65000:2 0:213 0:217 route-map calculator permit 13351 match community 2_213_217 set community 0:46221 ip community-list standard 2_28_244 permit 65000:2 0:28 0:244 ip community-list standard 2_56_122 permit 65000:2 0:56 0:122 ip community-list standard 2_61_112 permit 65000:2 0:61 0:112 route-map calculator permit 13352 match community 2_28_244 2_56_122 2_61_112 set community 0:6832 ip community-list standard 2_163_183 permit 65000:2 0:163 0:183 route-map calculator permit 13353 match community 2_163_183 set community 0:29829 ip community-list standard 2_194_210 permit 65000:2 0:194 0:210 route-map calculator permit 13354 match community 2_194_210 set community 0:40740 ip community-list standard 2_192_214 permit 65000:2 0:192 0:214 route-map calculator permit 13355 match community 2_192_214 set community 0:41088 ip community-list standard 2_146_212 permit 65000:2 0:146 0:212 route-map calculator permit 13356 match community 2_146_212 set community 0:30952 ip community-list standard 2_70_252 permit 65000:2 0:70 0:252 ip community-list standard 2_72_245 permit 65000:2 0:72 0:245 ip community-list standard 2_84_210 permit 65000:2 0:84 0:210 ip community-list standard 2_90_196 permit 65000:2 0:90 0:196 ip community-list standard 2_98_180 permit 65000:2 0:98 0:180 ip community-list standard 2_105_168 permit 65000:2 0:105 0:168 ip community-list standard 2_120_147 permit 65000:2 0:120 0:147 ip community-list standard 2_126_140 permit 65000:2 0:126 0:140 route-map calculator permit 13357 match community 2_70_252 2_72_245 2_84_210 2_90_196 2_98_180 set community 0:17640 route-map calculator permit 13358 match community 2_105_168 2_120_147 2_126_140 set community 0:17640 ip community-list standard 2_107_109 permit 65000:2 0:107 0:109 route-map calculator permit 13359 match community 2_107_109 set community 0:11663 ip community-list standard 2_85_206 permit 65000:2 0:85 0:206 ip community-list standard 2_103_170 permit 65000:2 0:103 0:170 route-map calculator permit 13360 match community 2_85_206 2_103_170 set community 0:17510 ip community-list standard 2_154_241 permit 65000:2 0:154 0:241 route-map calculator permit 13361 match community 2_154_241 set community 0:37114 ip community-list standard 2_127_145 permit 65000:2 0:127 0:145 route-map calculator permit 13362 match community 2_127_145 set community 0:18415 ip community-list standard 2_160_197 permit 65000:2 0:160 0:197 route-map calculator permit 13363 match community 2_160_197 set community 0:31520 ip community-list standard 2_77_238 permit 65000:2 0:77 0:238 ip community-list standard 2_98_187 permit 65000:2 0:98 0:187 ip community-list standard 2_119_154 permit 65000:2 0:119 0:154 route-map calculator permit 13364 match community 2_77_238 2_98_187 2_119_154 set community 0:18326 ip community-list standard 2_137_142 permit 65000:2 0:137 0:142 route-map calculator permit 13365 match community 2_137_142 set community 0:19454 ip community-list standard 2_199_215 permit 65000:2 0:199 0:215 route-map calculator permit 13366 match community 2_199_215 set community 0:42785 ip community-list standard 2_45_202 permit 65000:2 0:45 0:202 ip community-list standard 2_90_101 permit 65000:2 0:90 0:101 route-map calculator permit 13367 match community 2_45_202 2_90_101 set community 0:9090 ip community-list standard 2_193_228 permit 65000:2 0:193 0:228 route-map calculator permit 13368 match community 2_193_228 set community 0:44004 ip community-list standard 2_250_255 permit 65000:2 0:250 0:255 route-map calculator permit 13369 match community 2_250_255 set community 0:63750 ip community-list standard 2_66_215 permit 65000:2 0:66 0:215 ip community-list standard 2_86_165 permit 65000:2 0:86 0:165 ip community-list standard 2_110_129 permit 65000:2 0:110 0:129 route-map calculator permit 13370 match community 2_66_215 2_86_165 2_110_129 set community 0:14190 ip community-list standard 2_65_167 permit 65000:2 0:65 0:167 route-map calculator permit 13371 match community 2_65_167 set community 0:10855 ip community-list standard 2_2_207 permit 65000:2 0:2 0:207 ip community-list standard 2_3_138 permit 65000:2 0:3 0:138 ip community-list standard 2_6_69 permit 65000:2 0:6 0:69 ip community-list standard 2_9_46 permit 65000:2 0:9 0:46 ip community-list standard 2_18_23 permit 65000:2 0:18 0:23 ip community-list standard 1_158_256 permit 65000:1 0:158 0:256 ip community-list standard 1_159_255 permit 65000:1 0:159 0:255 ip community-list standard 1_160_254 permit 65000:1 0:160 0:254 ip community-list standard 1_161_253 permit 65000:1 0:161 0:253 ip community-list standard 1_162_252 permit 65000:1 0:162 0:252 ip community-list standard 1_163_251 permit 65000:1 0:163 0:251 ip community-list standard 1_164_250 permit 65000:1 0:164 0:250 ip community-list standard 1_165_249 permit 65000:1 0:165 0:249 ip community-list standard 1_166_248 permit 65000:1 0:166 0:248 ip community-list standard 1_167_247 permit 65000:1 0:167 0:247 ip community-list standard 1_168_246 permit 65000:1 0:168 0:246 ip community-list standard 1_169_245 permit 65000:1 0:169 0:245 ip community-list standard 1_170_244 permit 65000:1 0:170 0:244 ip community-list standard 1_171_243 permit 65000:1 0:171 0:243 ip community-list standard 1_172_242 permit 65000:1 0:172 0:242 ip community-list standard 1_173_241 permit 65000:1 0:173 0:241 ip community-list standard 1_174_240 permit 65000:1 0:174 0:240 ip community-list standard 1_175_239 permit 65000:1 0:175 0:239 ip community-list standard 1_176_238 permit 65000:1 0:176 0:238 ip community-list standard 1_177_237 permit 65000:1 0:177 0:237 ip community-list standard 1_178_236 permit 65000:1 0:178 0:236 ip community-list standard 1_179_235 permit 65000:1 0:179 0:235 ip community-list standard 1_180_234 permit 65000:1 0:180 0:234 ip community-list standard 1_181_233 permit 65000:1 0:181 0:233 ip community-list standard 1_182_232 permit 65000:1 0:182 0:232 ip community-list standard 1_183_231 permit 65000:1 0:183 0:231 ip community-list standard 1_184_230 permit 65000:1 0:184 0:230 ip community-list standard 1_185_229 permit 65000:1 0:185 0:229 ip community-list standard 1_186_228 permit 65000:1 0:186 0:228 ip community-list standard 1_187_227 permit 65000:1 0:187 0:227 ip community-list standard 1_188_226 permit 65000:1 0:188 0:226 ip community-list standard 1_189_225 permit 65000:1 0:189 0:225 ip community-list standard 1_190_224 permit 65000:1 0:190 0:224 ip community-list standard 1_191_223 permit 65000:1 0:191 0:223 ip community-list standard 1_192_222 permit 65000:1 0:192 0:222 ip community-list standard 1_193_221 permit 65000:1 0:193 0:221 ip community-list standard 1_194_220 permit 65000:1 0:194 0:220 ip community-list standard 1_195_219 permit 65000:1 0:195 0:219 ip community-list standard 1_196_218 permit 65000:1 0:196 0:218 ip community-list standard 1_197_217 permit 65000:1 0:197 0:217 ip community-list standard 1_198_216 permit 65000:1 0:198 0:216 ip community-list standard 1_199_215 permit 65000:1 0:199 0:215 ip community-list standard 1_200_214 permit 65000:1 0:200 0:214 ip community-list standard 1_201_213 permit 65000:1 0:201 0:213 ip community-list standard 1_202_212 permit 65000:1 0:202 0:212 ip community-list standard 1_203_211 permit 65000:1 0:203 0:211 ip community-list standard 1_204_210 permit 65000:1 0:204 0:210 ip community-list standard 1_205_209 permit 65000:1 0:205 0:209 ip community-list standard 1_206_208 permit 65000:1 0:206 0:208 ip community-list standard 1_207_207 permit 65000:1 0:207 0:207 route-map calculator permit 13372 match community 2_2_207 2_3_138 2_6_69 2_9_46 2_18_23 set community 0:414 route-map calculator permit 13373 match community 1_158_256 1_159_255 1_160_254 1_161_253 1_162_252 set community 0:414 route-map calculator permit 13374 match community 1_163_251 1_164_250 1_165_249 1_166_248 1_167_247 set community 0:414 route-map calculator permit 13375 match community 1_168_246 1_169_245 1_170_244 1_171_243 1_172_242 set community 0:414 route-map calculator permit 13376 match community 1_173_241 1_174_240 1_175_239 1_176_238 1_177_237 set community 0:414 route-map calculator permit 13377 match community 1_178_236 1_179_235 1_180_234 1_181_233 1_182_232 set community 0:414 route-map calculator permit 13378 match community 1_183_231 1_184_230 1_185_229 1_186_228 1_187_227 set community 0:414 route-map calculator permit 13379 match community 1_188_226 1_189_225 1_190_224 1_191_223 1_192_222 set community 0:414 route-map calculator permit 13380 match community 1_193_221 1_194_220 1_195_219 1_196_218 1_197_217 set community 0:414 route-map calculator permit 13381 match community 1_198_216 1_199_215 1_200_214 1_201_213 1_202_212 set community 0:414 route-map calculator permit 13382 match community 1_203_211 1_204_210 1_205_209 1_206_208 1_207_207 set community 0:414 ip community-list standard 2_7_82 permit 65000:2 0:7 0:82 ip community-list standard 2_14_41 permit 65000:2 0:14 0:41 route-map calculator permit 13383 match community 2_7_82 2_14_41 set community 0:574 ip community-list standard 2_162_214 permit 65000:2 0:162 0:214 route-map calculator permit 13384 match community 2_162_214 set community 0:34668 ip community-list standard 2_94_228 permit 65000:2 0:94 0:228 ip community-list standard 2_114_188 permit 65000:2 0:114 0:188 ip community-list standard 2_141_152 permit 65000:2 0:141 0:152 route-map calculator permit 13385 match community 2_94_228 2_114_188 2_141_152 set community 0:21432 ip community-list standard 2_63_167 permit 65000:2 0:63 0:167 route-map calculator permit 13386 match community 2_63_167 set community 0:10521 ip community-list standard 2_31_163 permit 65000:2 0:31 0:163 route-map calculator permit 13387 match community 2_31_163 set community 0:5053 ip community-list standard 2_52_231 permit 65000:2 0:52 0:231 ip community-list standard 2_66_182 permit 65000:2 0:66 0:182 ip community-list standard 2_77_156 permit 65000:2 0:77 0:156 ip community-list standard 2_78_154 permit 65000:2 0:78 0:154 ip community-list standard 2_84_143 permit 65000:2 0:84 0:143 ip community-list standard 2_91_132 permit 65000:2 0:91 0:132 route-map calculator permit 13388 match community 2_52_231 2_66_182 2_77_156 2_78_154 2_84_143 set community 0:12012 route-map calculator permit 13389 match community 2_91_132 set community 0:12012 ip community-list standard 2_4_157 permit 65000:2 0:4 0:157 route-map calculator permit 13390 match community 2_4_157 set community 0:628 ip community-list standard 2_73_251 permit 65000:2 0:73 0:251 route-map calculator permit 13391 match community 2_73_251 set community 0:18323 ip community-list standard 2_95_191 permit 65000:2 0:95 0:191 route-map calculator permit 13392 match community 2_95_191 set community 0:18145 ip community-list standard 2_171_254 permit 65000:2 0:171 0:254 route-map calculator permit 13393 match community 2_171_254 set community 0:43434 ip community-list standard 2_205_255 permit 65000:2 0:205 0:255 route-map calculator permit 13394 match community 2_205_255 set community 0:52275 ip community-list standard 2_46_208 permit 65000:2 0:46 0:208 ip community-list standard 2_52_184 permit 65000:2 0:52 0:184 ip community-list standard 2_92_104 permit 65000:2 0:92 0:104 route-map calculator permit 13395 match community 2_46_208 2_52_184 2_92_104 set community 0:9568 ip community-list standard 2_37_244 permit 65000:2 0:37 0:244 ip community-list standard 2_61_148 permit 65000:2 0:61 0:148 ip community-list standard 2_74_122 permit 65000:2 0:74 0:122 route-map calculator permit 13396 match community 2_37_244 2_61_148 2_74_122 set community 0:9028 ip community-list standard 2_21_215 permit 65000:2 0:21 0:215 ip community-list standard 2_35_129 permit 65000:2 0:35 0:129 ip community-list standard 2_43_105 permit 65000:2 0:43 0:105 route-map calculator permit 13397 match community 2_21_215 2_35_129 2_43_105 set community 0:4515 ip community-list standard 2_132_211 permit 65000:2 0:132 0:211 route-map calculator permit 13398 match community 2_132_211 set community 0:27852 ip community-list standard 2_134_204 permit 65000:2 0:134 0:204 ip community-list standard 2_136_201 permit 65000:2 0:136 0:201 route-map calculator permit 13399 match community 2_134_204 2_136_201 set community 0:27336 ip community-list standard 2_47_239 permit 65000:2 0:47 0:239 route-map calculator permit 13400 match community 2_47_239 set community 0:11233 ip community-list standard 2_153_202 permit 65000:2 0:153 0:202 route-map calculator permit 13401 match community 2_153_202 set community 0:30906 ip community-list standard 2_87_97 permit 65000:2 0:87 0:97 route-map calculator permit 13402 match community 2_87_97 set community 0:8439 ip community-list standard 2_30_250 permit 65000:2 0:30 0:250 ip community-list standard 2_50_150 permit 65000:2 0:50 0:150 ip community-list standard 2_60_125 permit 65000:2 0:60 0:125 ip community-list standard 2_75_100 permit 65000:2 0:75 0:100 route-map calculator permit 13403 match community 2_30_250 2_50_150 2_60_125 2_75_100 set community 0:7500 ip community-list standard 2_70_250 permit 65000:2 0:70 0:250 ip community-list standard 2_100_175 permit 65000:2 0:100 0:175 ip community-list standard 2_125_140 permit 65000:2 0:125 0:140 route-map calculator permit 13404 match community 2_70_250 2_100_175 2_125_140 set community 0:17500 ip community-list standard 2_81_163 permit 65000:2 0:81 0:163 route-map calculator permit 13405 match community 2_81_163 set community 0:13203 ip community-list standard 2_152_202 permit 65000:2 0:152 0:202 route-map calculator permit 13406 match community 2_152_202 set community 0:30704 ip community-list standard 2_97_131 permit 65000:2 0:97 0:131 route-map calculator permit 13407 match community 2_97_131 set community 0:12707 ip community-list standard 2_231_251 permit 65000:2 0:231 0:251 route-map calculator permit 13408 match community 2_231_251 set community 0:57981 ip community-list standard 2_85_161 permit 65000:2 0:85 0:161 ip community-list standard 2_115_119 permit 65000:2 0:115 0:119 route-map calculator permit 13409 match community 2_85_161 2_115_119 set community 0:13685 ip community-list standard 2_9_167 permit 65000:2 0:9 0:167 route-map calculator permit 13410 match community 2_9_167 set community 0:1503 ip community-list standard 2_105_244 permit 65000:2 0:105 0:244 ip community-list standard 2_122_210 permit 65000:2 0:122 0:210 ip community-list standard 2_140_183 permit 65000:2 0:140 0:183 route-map calculator permit 13411 match community 2_105_244 2_122_210 2_140_183 set community 0:25620 ip community-list standard 2_169_253 permit 65000:2 0:169 0:253 route-map calculator permit 13412 match community 2_169_253 set community 0:42757 ip community-list standard 2_7_117 permit 65000:2 0:7 0:117 ip community-list standard 2_9_91 permit 65000:2 0:9 0:91 ip community-list standard 2_13_63 permit 65000:2 0:13 0:63 ip community-list standard 2_21_39 permit 65000:2 0:21 0:39 route-map calculator permit 13413 match community 2_7_117 2_9_91 2_13_63 2_21_39 set community 0:819 ip community-list standard 2_89_200 permit 65000:2 0:89 0:200 ip community-list standard 2_100_178 permit 65000:2 0:100 0:178 route-map calculator permit 13414 match community 2_89_200 2_100_178 set community 0:17800 ip community-list standard 2_25_233 permit 65000:2 0:25 0:233 route-map calculator permit 13415 match community 2_25_233 set community 0:5825 ip community-list standard 2_207_246 permit 65000:2 0:207 0:246 route-map calculator permit 13416 match community 2_207_246 set community 0:50922 ip community-list standard 2_42_241 permit 65000:2 0:42 0:241 route-map calculator permit 13417 match community 2_42_241 set community 0:10122 ip community-list standard 2_29_229 permit 65000:2 0:29 0:229 route-map calculator permit 13418 match community 2_29_229 set community 0:6641 ip community-list standard 2_41_241 permit 65000:2 0:41 0:241 route-map calculator permit 13419 match community 2_41_241 set community 0:9881 ip community-list standard 2_68_223 permit 65000:2 0:68 0:223 route-map calculator permit 13420 match community 2_68_223 set community 0:15164 ip community-list standard 2_208_221 permit 65000:2 0:208 0:221 route-map calculator permit 13421 match community 2_208_221 set community 0:45968 ip community-list standard 2_33_212 permit 65000:2 0:33 0:212 ip community-list standard 2_44_159 permit 65000:2 0:44 0:159 ip community-list standard 2_53_132 permit 65000:2 0:53 0:132 ip community-list standard 2_66_106 permit 65000:2 0:66 0:106 route-map calculator permit 13422 match community 2_33_212 2_44_159 2_53_132 2_66_106 set community 0:6996 ip community-list standard 2_146_188 permit 65000:2 0:146 0:188 route-map calculator permit 13423 match community 2_146_188 set community 0:27448 ip community-list standard 2_245_245 permit 65000:2 0:245 0:245 route-map calculator permit 13424 match community 2_245_245 set community 0:60025 ip community-list standard 2_149_188 permit 65000:2 0:149 0:188 route-map calculator permit 13425 match community 2_149_188 set community 0:28012 ip community-list standard 2_44_131 permit 65000:2 0:44 0:131 route-map calculator permit 13426 match community 2_44_131 set community 0:5764 ip community-list standard 2_130_166 permit 65000:2 0:130 0:166 route-map calculator permit 13427 match community 2_130_166 set community 0:21580 ip community-list standard 2_136_205 permit 65000:2 0:136 0:205 ip community-list standard 2_164_170 permit 65000:2 0:164 0:170 route-map calculator permit 13428 match community 2_136_205 2_164_170 set community 0:27880 ip community-list standard 2_108_239 permit 65000:2 0:108 0:239 route-map calculator permit 13429 match community 2_108_239 set community 0:25812 ip community-list standard 2_82_149 permit 65000:2 0:82 0:149 route-map calculator permit 13430 match community 2_82_149 set community 0:12218 ip community-list standard 2_110_244 permit 65000:2 0:110 0:244 ip community-list standard 2_122_220 permit 65000:2 0:122 0:220 route-map calculator permit 13431 match community 2_110_244 2_122_220 set community 0:26840 ip community-list standard 2_54_215 permit 65000:2 0:54 0:215 ip community-list standard 2_86_135 permit 65000:2 0:86 0:135 ip community-list standard 2_90_129 permit 65000:2 0:90 0:129 route-map calculator permit 13432 match community 2_54_215 2_86_135 2_90_129 set community 0:11610 ip community-list standard 2_118_248 permit 65000:2 0:118 0:248 ip community-list standard 2_124_236 permit 65000:2 0:124 0:236 route-map calculator permit 13433 match community 2_118_248 2_124_236 set community 0:29264 ip community-list standard 2_14_211 permit 65000:2 0:14 0:211 route-map calculator permit 13434 match community 2_14_211 set community 0:2954 ip community-list standard 2_223_251 permit 65000:2 0:223 0:251 route-map calculator permit 13435 match community 2_223_251 set community 0:55973 ip community-list standard 2_89_91 permit 65000:2 0:89 0:91 route-map calculator permit 13436 match community 2_89_91 set community 0:8099 ip community-list standard 2_109_239 permit 65000:2 0:109 0:239 route-map calculator permit 13437 match community 2_109_239 set community 0:26051 ip community-list standard 2_235_255 permit 65000:2 0:235 0:255 route-map calculator permit 13438 match community 2_235_255 set community 0:59925 ip community-list standard 2_21_249 permit 65000:2 0:21 0:249 ip community-list standard 2_63_83 permit 65000:2 0:63 0:83 route-map calculator permit 13439 match community 2_21_249 2_63_83 set community 0:5229 ip community-list standard 2_233_254 permit 65000:2 0:233 0:254 route-map calculator permit 13440 match community 2_233_254 set community 0:59182 ip community-list standard 2_71_182 permit 65000:2 0:71 0:182 ip community-list standard 2_91_142 permit 65000:2 0:91 0:142 route-map calculator permit 13441 match community 2_71_182 2_91_142 set community 0:12922 ip community-list standard 2_47_119 permit 65000:2 0:47 0:119 route-map calculator permit 13442 match community 2_47_119 set community 0:5593 ip community-list standard 2_121_157 permit 65000:2 0:121 0:157 route-map calculator permit 13443 match community 2_121_157 set community 0:18997 ip community-list standard 2_199_209 permit 65000:2 0:199 0:209 route-map calculator permit 13444 match community 2_199_209 set community 0:41591 ip community-list standard 2_82_163 permit 65000:2 0:82 0:163 route-map calculator permit 13445 match community 2_82_163 set community 0:13366 ip community-list standard 2_107_139 permit 65000:2 0:107 0:139 route-map calculator permit 13446 match community 2_107_139 set community 0:14873 ip community-list standard 2_44_233 permit 65000:2 0:44 0:233 route-map calculator permit 13447 match community 2_44_233 set community 0:10252 ip community-list standard 2_169_221 permit 65000:2 0:169 0:221 route-map calculator permit 13448 match community 2_169_221 set community 0:37349 ip community-list standard 2_41_256 permit 65000:2 0:41 0:256 ip community-list standard 2_64_164 permit 65000:2 0:64 0:164 ip community-list standard 2_82_128 permit 65000:2 0:82 0:128 route-map calculator permit 13449 match community 2_41_256 2_64_164 2_82_128 set community 0:10496 ip community-list standard 2_133_239 permit 65000:2 0:133 0:239 route-map calculator permit 13450 match community 2_133_239 set community 0:31787 ip community-list standard 2_201_245 permit 65000:2 0:201 0:245 route-map calculator permit 13451 match community 2_201_245 set community 0:49245 ip community-list standard 2_12_236 permit 65000:2 0:12 0:236 ip community-list standard 2_16_177 permit 65000:2 0:16 0:177 ip community-list standard 2_24_118 permit 65000:2 0:24 0:118 ip community-list standard 2_48_59 permit 65000:2 0:48 0:59 route-map calculator permit 13452 match community 2_12_236 2_16_177 2_24_118 2_48_59 set community 0:2832 ip community-list standard 2_9_123 permit 65000:2 0:9 0:123 ip community-list standard 2_27_41 permit 65000:2 0:27 0:41 route-map calculator permit 13453 match community 2_9_123 2_27_41 set community 0:1107 ip community-list standard 2_43_240 permit 65000:2 0:43 0:240 ip community-list standard 2_48_215 permit 65000:2 0:48 0:215 ip community-list standard 2_60_172 permit 65000:2 0:60 0:172 ip community-list standard 2_80_129 permit 65000:2 0:80 0:129 ip community-list standard 2_86_120 permit 65000:2 0:86 0:120 route-map calculator permit 13454 match community 2_43_240 2_48_215 2_60_172 2_80_129 2_86_120 set community 0:10320 ip community-list standard 2_106_163 permit 65000:2 0:106 0:163 route-map calculator permit 13455 match community 2_106_163 set community 0:17278 ip community-list standard 2_93_185 permit 65000:2 0:93 0:185 ip community-list standard 2_111_155 permit 65000:2 0:111 0:155 route-map calculator permit 13456 match community 2_93_185 2_111_155 set community 0:17205 ip community-list standard 2_148_231 permit 65000:2 0:148 0:231 ip community-list standard 2_154_222 permit 65000:2 0:154 0:222 route-map calculator permit 13457 match community 2_148_231 2_154_222 set community 0:34188 ip community-list standard 2_171_245 permit 65000:2 0:171 0:245 route-map calculator permit 13458 match community 2_171_245 set community 0:41895 ip community-list standard 2_97_121 permit 65000:2 0:97 0:121 route-map calculator permit 13459 match community 2_97_121 set community 0:11737 ip community-list standard 2_155_252 permit 65000:2 0:155 0:252 ip community-list standard 2_180_217 permit 65000:2 0:180 0:217 ip community-list standard 2_186_210 permit 65000:2 0:186 0:210 route-map calculator permit 13460 match community 2_155_252 2_180_217 2_186_210 set community 0:39060 ip community-list standard 2_53_219 permit 65000:2 0:53 0:219 ip community-list standard 2_73_159 permit 65000:2 0:73 0:159 route-map calculator permit 13461 match community 2_53_219 2_73_159 set community 0:11607 ip community-list standard 2_53_201 permit 65000:2 0:53 0:201 ip community-list standard 2_67_159 permit 65000:2 0:67 0:159 route-map calculator permit 13462 match community 2_53_201 2_67_159 set community 0:10653 ip community-list standard 2_79_215 permit 65000:2 0:79 0:215 route-map calculator permit 13463 match community 2_79_215 set community 0:16985 ip community-list standard 2_136_232 permit 65000:2 0:136 0:232 route-map calculator permit 13464 match community 2_136_232 set community 0:31552 ip community-list standard 2_46_219 permit 65000:2 0:46 0:219 ip community-list standard 2_69_146 permit 65000:2 0:69 0:146 ip community-list standard 2_73_138 permit 65000:2 0:73 0:138 route-map calculator permit 13465 match community 2_46_219 2_69_146 2_73_138 set community 0:10074 ip community-list standard 2_73_208 permit 65000:2 0:73 0:208 ip community-list standard 2_104_146 permit 65000:2 0:104 0:146 route-map calculator permit 13466 match community 2_73_208 2_104_146 set community 0:15184 ip community-list standard 2_242_248 permit 65000:2 0:242 0:248 route-map calculator permit 13467 match community 2_242_248 set community 0:60016 ip community-list standard 2_243_245 permit 65000:2 0:243 0:245 route-map calculator permit 13468 match community 2_243_245 set community 0:59535 ip community-list standard 2_225_246 permit 65000:2 0:225 0:246 route-map calculator permit 13469 match community 2_225_246 set community 0:55350 ip community-list standard 2_157_212 permit 65000:2 0:157 0:212 route-map calculator permit 13470 match community 2_157_212 set community 0:33284 ip community-list standard 2_205_205 permit 65000:2 0:205 0:205 route-map calculator permit 13471 match community 2_205_205 set community 0:42025 ip community-list standard 2_99_226 permit 65000:2 0:99 0:226 ip community-list standard 2_113_198 permit 65000:2 0:113 0:198 route-map calculator permit 13472 match community 2_99_226 2_113_198 set community 0:22374 ip community-list standard 2_195_242 permit 65000:2 0:195 0:242 route-map calculator permit 13473 match community 2_195_242 set community 0:47190 ip community-list standard 2_134_193 permit 65000:2 0:134 0:193 route-map calculator permit 13474 match community 2_134_193 set community 0:25862 ip community-list standard 2_17_222 permit 65000:2 0:17 0:222 ip community-list standard 2_34_111 permit 65000:2 0:34 0:111 ip community-list standard 2_37_102 permit 65000:2 0:37 0:102 ip community-list standard 2_51_74 permit 65000:2 0:51 0:74 route-map calculator permit 13475 match community 2_17_222 2_34_111 2_37_102 2_51_74 set community 0:3774 ip community-list standard 2_115_199 permit 65000:2 0:115 0:199 route-map calculator permit 13476 match community 2_115_199 set community 0:22885 ip community-list standard 2_58_213 permit 65000:2 0:58 0:213 ip community-list standard 2_71_174 permit 65000:2 0:71 0:174 ip community-list standard 2_87_142 permit 65000:2 0:87 0:142 route-map calculator permit 13477 match community 2_58_213 2_71_174 2_87_142 set community 0:12354 ip community-list standard 2_220_242 permit 65000:2 0:220 0:242 route-map calculator permit 13478 match community 2_220_242 set community 0:53240 ip community-list standard 2_144_233 permit 65000:2 0:144 0:233 route-map calculator permit 13479 match community 2_144_233 set community 0:33552 ip community-list standard 2_41_177 permit 65000:2 0:41 0:177 ip community-list standard 2_59_123 permit 65000:2 0:59 0:123 route-map calculator permit 13480 match community 2_41_177 2_59_123 set community 0:7257 ip community-list standard 2_211_232 permit 65000:2 0:211 0:232 route-map calculator permit 13481 match community 2_211_232 set community 0:48952 ip community-list standard 2_95_250 permit 65000:2 0:95 0:250 ip community-list standard 2_125_190 permit 65000:2 0:125 0:190 route-map calculator permit 13482 match community 2_95_250 2_125_190 set community 0:23750 ip community-list standard 2_137_229 permit 65000:2 0:137 0:229 route-map calculator permit 13483 match community 2_137_229 set community 0:31373 ip community-list standard 2_109_249 permit 65000:2 0:109 0:249 route-map calculator permit 13484 match community 2_109_249 set community 0:27141 ip community-list standard 2_26_178 permit 65000:2 0:26 0:178 ip community-list standard 2_52_89 permit 65000:2 0:52 0:89 route-map calculator permit 13485 match community 2_26_178 2_52_89 set community 0:4628 ip community-list standard 2_74_208 permit 65000:2 0:74 0:208 ip community-list standard 2_104_148 permit 65000:2 0:104 0:148 route-map calculator permit 13486 match community 2_74_208 2_104_148 set community 0:15392 ip community-list standard 2_43_193 permit 65000:2 0:43 0:193 route-map calculator permit 13487 match community 2_43_193 set community 0:8299 ip community-list standard 2_24_173 permit 65000:2 0:24 0:173 route-map calculator permit 13488 match community 2_24_173 set community 0:4152 ip community-list standard 2_202_234 permit 65000:2 0:202 0:234 route-map calculator permit 13489 match community 2_202_234 set community 0:47268 ip community-list standard 2_220_232 permit 65000:2 0:220 0:232 route-map calculator permit 13490 match community 2_220_232 set community 0:51040 ip community-list standard 2_45_249 permit 65000:2 0:45 0:249 ip community-list standard 2_83_135 permit 65000:2 0:83 0:135 route-map calculator permit 13491 match community 2_45_249 2_83_135 set community 0:11205 ip community-list standard 2_93_204 permit 65000:2 0:93 0:204 ip community-list standard 2_102_186 permit 65000:2 0:102 0:186 ip community-list standard 2_124_153 permit 65000:2 0:124 0:153 route-map calculator permit 13492 match community 2_93_204 2_102_186 2_124_153 set community 0:18972 ip community-list standard 2_39_139 permit 65000:2 0:39 0:139 route-map calculator permit 13493 match community 2_39_139 set community 0:5421 ip community-list standard 1_1_229 permit 65000:1 0:1 0:229 ip community-list standard 2_1_230 permit 65000:2 0:1 0:230 ip community-list standard 2_2_115 permit 65000:2 0:2 0:115 ip community-list standard 1_2_228 permit 65000:1 0:2 0:228 ip community-list standard 1_3_227 permit 65000:1 0:3 0:227 ip community-list standard 1_4_226 permit 65000:1 0:4 0:226 ip community-list standard 2_5_46 permit 65000:2 0:5 0:46 ip community-list standard 1_5_225 permit 65000:1 0:5 0:225 ip community-list standard 1_6_224 permit 65000:1 0:6 0:224 ip community-list standard 1_7_223 permit 65000:1 0:7 0:223 ip community-list standard 1_8_222 permit 65000:1 0:8 0:222 ip community-list standard 1_9_221 permit 65000:1 0:9 0:221 ip community-list standard 2_10_23 permit 65000:2 0:10 0:23 ip community-list standard 1_10_220 permit 65000:1 0:10 0:220 ip community-list standard 1_11_219 permit 65000:1 0:11 0:219 ip community-list standard 1_12_218 permit 65000:1 0:12 0:218 ip community-list standard 1_13_217 permit 65000:1 0:13 0:217 ip community-list standard 1_14_216 permit 65000:1 0:14 0:216 ip community-list standard 1_15_215 permit 65000:1 0:15 0:215 ip community-list standard 1_16_214 permit 65000:1 0:16 0:214 ip community-list standard 1_17_213 permit 65000:1 0:17 0:213 ip community-list standard 1_18_212 permit 65000:1 0:18 0:212 ip community-list standard 1_19_211 permit 65000:1 0:19 0:211 ip community-list standard 1_20_210 permit 65000:1 0:20 0:210 ip community-list standard 1_21_209 permit 65000:1 0:21 0:209 ip community-list standard 1_22_208 permit 65000:1 0:22 0:208 ip community-list standard 1_23_207 permit 65000:1 0:23 0:207 ip community-list standard 1_24_206 permit 65000:1 0:24 0:206 ip community-list standard 1_25_205 permit 65000:1 0:25 0:205 ip community-list standard 1_26_204 permit 65000:1 0:26 0:204 ip community-list standard 1_27_203 permit 65000:1 0:27 0:203 ip community-list standard 1_28_202 permit 65000:1 0:28 0:202 ip community-list standard 1_29_201 permit 65000:1 0:29 0:201 ip community-list standard 1_30_200 permit 65000:1 0:30 0:200 ip community-list standard 1_31_199 permit 65000:1 0:31 0:199 ip community-list standard 1_32_198 permit 65000:1 0:32 0:198 ip community-list standard 1_33_197 permit 65000:1 0:33 0:197 ip community-list standard 1_34_196 permit 65000:1 0:34 0:196 ip community-list standard 1_35_195 permit 65000:1 0:35 0:195 ip community-list standard 1_36_194 permit 65000:1 0:36 0:194 ip community-list standard 1_37_193 permit 65000:1 0:37 0:193 ip community-list standard 1_38_192 permit 65000:1 0:38 0:192 ip community-list standard 1_39_191 permit 65000:1 0:39 0:191 ip community-list standard 1_40_190 permit 65000:1 0:40 0:190 ip community-list standard 1_41_189 permit 65000:1 0:41 0:189 ip community-list standard 1_42_188 permit 65000:1 0:42 0:188 ip community-list standard 1_43_187 permit 65000:1 0:43 0:187 ip community-list standard 1_44_186 permit 65000:1 0:44 0:186 ip community-list standard 1_45_185 permit 65000:1 0:45 0:185 ip community-list standard 1_46_184 permit 65000:1 0:46 0:184 ip community-list standard 1_47_183 permit 65000:1 0:47 0:183 ip community-list standard 1_48_182 permit 65000:1 0:48 0:182 ip community-list standard 1_49_181 permit 65000:1 0:49 0:181 ip community-list standard 1_50_180 permit 65000:1 0:50 0:180 ip community-list standard 1_51_179 permit 65000:1 0:51 0:179 ip community-list standard 1_52_178 permit 65000:1 0:52 0:178 ip community-list standard 1_53_177 permit 65000:1 0:53 0:177 ip community-list standard 1_54_176 permit 65000:1 0:54 0:176 ip community-list standard 1_55_175 permit 65000:1 0:55 0:175 ip community-list standard 1_56_174 permit 65000:1 0:56 0:174 ip community-list standard 1_57_173 permit 65000:1 0:57 0:173 ip community-list standard 1_58_172 permit 65000:1 0:58 0:172 ip community-list standard 1_59_171 permit 65000:1 0:59 0:171 ip community-list standard 1_60_170 permit 65000:1 0:60 0:170 ip community-list standard 1_61_169 permit 65000:1 0:61 0:169 ip community-list standard 1_62_168 permit 65000:1 0:62 0:168 ip community-list standard 1_63_167 permit 65000:1 0:63 0:167 ip community-list standard 1_64_166 permit 65000:1 0:64 0:166 ip community-list standard 1_65_165 permit 65000:1 0:65 0:165 ip community-list standard 1_66_164 permit 65000:1 0:66 0:164 ip community-list standard 1_67_163 permit 65000:1 0:67 0:163 ip community-list standard 1_68_162 permit 65000:1 0:68 0:162 ip community-list standard 1_69_161 permit 65000:1 0:69 0:161 ip community-list standard 1_70_160 permit 65000:1 0:70 0:160 ip community-list standard 1_71_159 permit 65000:1 0:71 0:159 ip community-list standard 1_72_158 permit 65000:1 0:72 0:158 ip community-list standard 1_73_157 permit 65000:1 0:73 0:157 ip community-list standard 1_74_156 permit 65000:1 0:74 0:156 ip community-list standard 1_75_155 permit 65000:1 0:75 0:155 ip community-list standard 1_76_154 permit 65000:1 0:76 0:154 ip community-list standard 1_77_153 permit 65000:1 0:77 0:153 ip community-list standard 1_78_152 permit 65000:1 0:78 0:152 ip community-list standard 1_79_151 permit 65000:1 0:79 0:151 ip community-list standard 1_80_150 permit 65000:1 0:80 0:150 ip community-list standard 1_81_149 permit 65000:1 0:81 0:149 ip community-list standard 1_82_148 permit 65000:1 0:82 0:148 ip community-list standard 1_83_147 permit 65000:1 0:83 0:147 ip community-list standard 1_84_146 permit 65000:1 0:84 0:146 ip community-list standard 1_85_145 permit 65000:1 0:85 0:145 ip community-list standard 1_86_144 permit 65000:1 0:86 0:144 ip community-list standard 1_87_143 permit 65000:1 0:87 0:143 ip community-list standard 1_88_142 permit 65000:1 0:88 0:142 ip community-list standard 1_89_141 permit 65000:1 0:89 0:141 ip community-list standard 1_90_140 permit 65000:1 0:90 0:140 ip community-list standard 1_91_139 permit 65000:1 0:91 0:139 ip community-list standard 1_92_138 permit 65000:1 0:92 0:138 ip community-list standard 1_93_137 permit 65000:1 0:93 0:137 ip community-list standard 1_94_136 permit 65000:1 0:94 0:136 ip community-list standard 1_95_135 permit 65000:1 0:95 0:135 ip community-list standard 1_96_134 permit 65000:1 0:96 0:134 ip community-list standard 1_97_133 permit 65000:1 0:97 0:133 ip community-list standard 1_98_132 permit 65000:1 0:98 0:132 ip community-list standard 1_99_131 permit 65000:1 0:99 0:131 ip community-list standard 1_100_130 permit 65000:1 0:100 0:130 ip community-list standard 1_101_129 permit 65000:1 0:101 0:129 ip community-list standard 1_102_128 permit 65000:1 0:102 0:128 ip community-list standard 1_103_127 permit 65000:1 0:103 0:127 ip community-list standard 1_104_126 permit 65000:1 0:104 0:126 ip community-list standard 1_105_125 permit 65000:1 0:105 0:125 ip community-list standard 1_106_124 permit 65000:1 0:106 0:124 ip community-list standard 1_107_123 permit 65000:1 0:107 0:123 ip community-list standard 1_108_122 permit 65000:1 0:108 0:122 ip community-list standard 1_109_121 permit 65000:1 0:109 0:121 ip community-list standard 1_110_120 permit 65000:1 0:110 0:120 ip community-list standard 1_111_119 permit 65000:1 0:111 0:119 ip community-list standard 1_112_118 permit 65000:1 0:112 0:118 ip community-list standard 1_113_117 permit 65000:1 0:113 0:117 ip community-list standard 1_114_116 permit 65000:1 0:114 0:116 ip community-list standard 1_115_115 permit 65000:1 0:115 0:115 ip community-list expanded c230 permit 1 ^65000:4_0:230_0:1$ ip community-list expanded c230 permit 2 ^65000:3_0:231_0:1$ ip community-list expanded c230 permit 3 ^65000:3_0:232_0:2$ ip community-list expanded c230 permit 4 ^65000:3_0:233_0:3$ ip community-list expanded c230 permit 5 ^65000:3_0:234_0:4$ ip community-list expanded c230 permit 6 ^65000:3_0:235_0:5$ ip community-list expanded c230 permit 7 ^65000:3_0:236_0:6$ ip community-list expanded c230 permit 8 ^65000:3_0:237_0:7$ ip community-list expanded c230 permit 9 ^65000:3_0:238_0:8$ ip community-list expanded c230 permit 10 ^65000:3_0:239_0:9$ ip community-list expanded c230 permit 11 ^65000:3_0:240_0:10$ ip community-list expanded c230 permit 12 ^65000:3_0:241_0:11$ ip community-list expanded c230 permit 13 ^65000:3_0:242_0:12$ ip community-list expanded c230 permit 14 ^65000:3_0:243_0:13$ ip community-list expanded c230 permit 15 ^65000:3_0:244_0:14$ ip community-list expanded c230 permit 16 ^65000:3_0:245_0:15$ ip community-list expanded c230 permit 17 ^65000:3_0:246_0:16$ ip community-list expanded c230 permit 18 ^65000:3_0:247_0:17$ ip community-list expanded c230 permit 19 ^65000:3_0:248_0:18$ ip community-list expanded c230 permit 20 ^65000:3_0:249_0:19$ ip community-list expanded c230 permit 21 ^65000:3_0:250_0:20$ ip community-list expanded c230 permit 22 ^65000:3_0:251_0:21$ ip community-list expanded c230 permit 23 ^65000:3_0:252_0:22$ ip community-list expanded c230 permit 24 ^65000:3_0:253_0:23$ ip community-list expanded c230 permit 25 ^65000:3_0:254_0:24$ ip community-list expanded c230 permit 26 ^65000:3_0:255_0:25$ ip community-list expanded c230 permit 27 ^65000:3_0:256_0:26$ route-map calculator permit 13494 match community 1_1_229 2_1_230 2_2_115 1_2_228 1_3_227 set community 0:230 route-map calculator permit 13495 match community 1_4_226 2_5_46 1_5_225 1_6_224 1_7_223 set community 0:230 route-map calculator permit 13496 match community 1_8_222 1_9_221 2_10_23 1_10_220 1_11_219 set community 0:230 route-map calculator permit 13497 match community 1_12_218 1_13_217 1_14_216 1_15_215 1_16_214 set community 0:230 route-map calculator permit 13498 match community 1_17_213 1_18_212 1_19_211 1_20_210 1_21_209 set community 0:230 route-map calculator permit 13499 match community 1_22_208 1_23_207 1_24_206 1_25_205 1_26_204 set community 0:230 route-map calculator permit 13500 match community 1_27_203 1_28_202 1_29_201 1_30_200 1_31_199 set community 0:230 route-map calculator permit 13501 match community 1_32_198 1_33_197 1_34_196 1_35_195 1_36_194 set community 0:230 route-map calculator permit 13502 match community 1_37_193 1_38_192 1_39_191 1_40_190 1_41_189 set community 0:230 route-map calculator permit 13503 match community 1_42_188 1_43_187 1_44_186 1_45_185 1_46_184 set community 0:230 route-map calculator permit 13504 match community 1_47_183 1_48_182 1_49_181 1_50_180 1_51_179 set community 0:230 route-map calculator permit 13505 match community 1_52_178 1_53_177 1_54_176 1_55_175 1_56_174 set community 0:230 route-map calculator permit 13506 match community 1_57_173 1_58_172 1_59_171 1_60_170 1_61_169 set community 0:230 route-map calculator permit 13507 match community 1_62_168 1_63_167 1_64_166 1_65_165 1_66_164 set community 0:230 route-map calculator permit 13508 match community 1_67_163 1_68_162 1_69_161 1_70_160 1_71_159 set community 0:230 route-map calculator permit 13509 match community 1_72_158 1_73_157 1_74_156 1_75_155 1_76_154 set community 0:230 route-map calculator permit 13510 match community 1_77_153 1_78_152 1_79_151 1_80_150 1_81_149 set community 0:230 route-map calculator permit 13511 match community 1_82_148 1_83_147 1_84_146 1_85_145 1_86_144 set community 0:230 route-map calculator permit 13512 match community 1_87_143 1_88_142 1_89_141 1_90_140 1_91_139 set community 0:230 route-map calculator permit 13513 match community 1_92_138 1_93_137 1_94_136 1_95_135 1_96_134 set community 0:230 route-map calculator permit 13514 match community 1_97_133 1_98_132 1_99_131 1_100_130 1_101_129 set community 0:230 route-map calculator permit 13515 match community 1_102_128 1_103_127 1_104_126 1_105_125 1_106_124 set community 0:230 route-map calculator permit 13516 match community 1_107_123 1_108_122 1_109_121 1_110_120 1_111_119 set community 0:230 route-map calculator permit 13517 match community 1_112_118 1_113_117 1_114_116 1_115_115 c4_230_1 set community 0:230 route-map calculator permit 13518 match community c3_231_1 c3_232_2 c3_233_3 c3_234_4 c3_235_5 set community 0:230 route-map calculator permit 13519 match community c3_236_6 c3_237_7 c3_238_8 c3_239_9 c3_240_10 set community 0:230 route-map calculator permit 13520 match community c3_241_11 c3_242_12 c3_243_13 c3_244_14 c3_245_15 set community 0:230 route-map calculator permit 13521 match community c3_246_16 c3_247_17 c3_248_18 c3_249_19 c3_250_20 set community 0:230 route-map calculator permit 13522 match community c3_251_21 c3_252_22 c3_253_23 c3_254_24 c3_255_25 set community 0:230 route-map calculator permit 13523 match community c3_256_26 set community 0:230 ip community-list standard 2_171_202 permit 65000:2 0:171 0:202 route-map calculator permit 13524 match community 2_171_202 set community 0:34542 ip community-list standard 2_34_229 permit 65000:2 0:34 0:229 route-map calculator permit 13525 match community 2_34_229 set community 0:7786 ip community-list standard 2_179_236 permit 65000:2 0:179 0:236 route-map calculator permit 13526 match community 2_179_236 set community 0:42244 ip community-list standard 2_146_237 permit 65000:2 0:146 0:237 ip community-list standard 2_158_219 permit 65000:2 0:158 0:219 route-map calculator permit 13527 match community 2_146_237 2_158_219 set community 0:34602 ip community-list standard 2_204_232 permit 65000:2 0:204 0:232 route-map calculator permit 13528 match community 2_204_232 set community 0:47328 ip community-list standard 2_32_254 permit 65000:2 0:32 0:254 ip community-list standard 2_64_127 permit 65000:2 0:64 0:127 route-map calculator permit 13529 match community 2_32_254 2_64_127 set community 0:8128 ip community-list standard 2_63_238 permit 65000:2 0:63 0:238 ip community-list standard 2_98_153 permit 65000:2 0:98 0:153 ip community-list standard 2_102_147 permit 65000:2 0:102 0:147 ip community-list standard 2_119_126 permit 65000:2 0:119 0:126 route-map calculator permit 13530 match community 2_63_238 2_98_153 2_102_147 2_119_126 set community 0:14994 ip community-list standard 2_158_166 permit 65000:2 0:158 0:166 route-map calculator permit 13531 match community 2_158_166 set community 0:26228 ip community-list standard 2_13_203 permit 65000:2 0:13 0:203 ip community-list standard 2_29_91 permit 65000:2 0:29 0:91 route-map calculator permit 13532 match community 2_13_203 2_29_91 set community 0:2639 ip community-list standard 2_32_163 permit 65000:2 0:32 0:163 route-map calculator permit 13533 match community 2_32_163 set community 0:5216 ip community-list standard 2_11_111 permit 65000:2 0:11 0:111 ip community-list standard 2_33_37 permit 65000:2 0:33 0:37 route-map calculator permit 13534 match community 2_11_111 2_33_37 set community 0:1221 ip community-list standard 2_159_233 permit 65000:2 0:159 0:233 route-map calculator permit 13535 match community 2_159_233 set community 0:37047 ip community-list standard 2_97_230 permit 65000:2 0:97 0:230 ip community-list standard 2_115_194 permit 65000:2 0:115 0:194 route-map calculator permit 13536 match community 2_97_230 2_115_194 set community 0:22310 ip community-list standard 2_25_83 permit 65000:2 0:25 0:83 route-map calculator permit 13537 match community 2_25_83 set community 0:2075 ip community-list standard 2_53_137 permit 65000:2 0:53 0:137 route-map calculator permit 13538 match community 2_53_137 set community 0:7261 ip community-list standard 2_80_236 permit 65000:2 0:80 0:236 ip community-list standard 2_118_160 permit 65000:2 0:118 0:160 route-map calculator permit 13539 match community 2_80_236 2_118_160 set community 0:18880 ip community-list standard 2_63_109 permit 65000:2 0:63 0:109 route-map calculator permit 13540 match community 2_63_109 set community 0:6867 ip community-list standard 2_104_223 permit 65000:2 0:104 0:223 route-map calculator permit 13541 match community 2_104_223 set community 0:23192 ip community-list standard 2_236_251 permit 65000:2 0:236 0:251 route-map calculator permit 13542 match community 2_236_251 set community 0:59236 ip community-list standard 2_93_179 permit 65000:2 0:93 0:179 route-map calculator permit 13543 match community 2_93_179 set community 0:16647 ip community-list standard 2_109_199 permit 65000:2 0:109 0:199 route-map calculator permit 13544 match community 2_109_199 set community 0:21691 ip community-list standard 2_212_245 permit 65000:2 0:212 0:245 route-map calculator permit 13545 match community 2_212_245 set community 0:51940 ip community-list standard 2_50_191 permit 65000:2 0:50 0:191 route-map calculator permit 13546 match community 2_50_191 set community 0:9550 ip community-list standard 2_32_233 permit 65000:2 0:32 0:233 route-map calculator permit 13547 match community 2_32_233 set community 0:7456 ip community-list standard 2_223_230 permit 65000:2 0:223 0:230 route-map calculator permit 13548 match community 2_223_230 set community 0:51290 ip community-list standard 2_191_192 permit 65000:2 0:191 0:192 route-map calculator permit 13549 match community 2_191_192 set community 0:36672 ip community-list standard 2_124_221 permit 65000:2 0:124 0:221 route-map calculator permit 13550 match community 2_124_221 set community 0:27404 ip community-list standard 2_3_255 permit 65000:2 0:3 0:255 ip community-list standard 2_5_153 permit 65000:2 0:5 0:153 ip community-list standard 2_9_85 permit 65000:2 0:9 0:85 ip community-list standard 2_15_51 permit 65000:2 0:15 0:51 ip community-list standard 2_17_45 permit 65000:2 0:17 0:45 route-map calculator permit 13551 match community 2_3_255 2_5_153 2_9_85 2_15_51 2_17_45 set community 0:765 ip community-list standard 2_162_199 permit 65000:2 0:162 0:199 route-map calculator permit 13552 match community 2_162_199 set community 0:32238 ip community-list standard 2_230_250 permit 65000:2 0:230 0:250 route-map calculator permit 13553 match community 2_230_250 set community 0:57500 ip community-list standard 2_22_131 permit 65000:2 0:22 0:131 route-map calculator permit 13554 match community 2_22_131 set community 0:2882 ip community-list standard 2_104_248 permit 65000:2 0:104 0:248 ip community-list standard 2_124_208 permit 65000:2 0:124 0:208 route-map calculator permit 13555 match community 2_104_248 2_124_208 set community 0:25792 ip community-list standard 2_211_216 permit 65000:2 0:211 0:216 route-map calculator permit 13556 match community 2_211_216 set community 0:45576 ip community-list standard 2_47_109 permit 65000:2 0:47 0:109 route-map calculator permit 13557 match community 2_47_109 set community 0:5123 ip community-list standard 2_84_173 permit 65000:2 0:84 0:173 route-map calculator permit 13558 match community 2_84_173 set community 0:14532 ip community-list standard 2_125_201 permit 65000:2 0:125 0:201 route-map calculator permit 13559 match community 2_125_201 set community 0:25125 ip community-list standard 2_217_237 permit 65000:2 0:217 0:237 route-map calculator permit 13560 match community 2_217_237 set community 0:51429 ip community-list standard 2_52_146 permit 65000:2 0:52 0:146 ip community-list standard 2_73_104 permit 65000:2 0:73 0:104 route-map calculator permit 13561 match community 2_52_146 2_73_104 set community 0:7592 ip community-list standard 2_25_134 permit 65000:2 0:25 0:134 ip community-list standard 2_50_67 permit 65000:2 0:50 0:67 route-map calculator permit 13562 match community 2_25_134 2_50_67 set community 0:3350 ip community-list standard 2_123_133 permit 65000:2 0:123 0:133 route-map calculator permit 13563 match community 2_123_133 set community 0:16359 ip community-list standard 2_137_173 permit 65000:2 0:137 0:173 route-map calculator permit 13564 match community 2_137_173 set community 0:23701 ip community-list standard 2_147_227 permit 65000:2 0:147 0:227 route-map calculator permit 13565 match community 2_147_227 set community 0:33369 ip community-list standard 1_1_190 permit 65000:1 0:1 0:190 ip community-list standard 2_1_191 permit 65000:2 0:1 0:191 ip community-list standard 1_2_189 permit 65000:1 0:2 0:189 ip community-list standard 1_3_188 permit 65000:1 0:3 0:188 ip community-list standard 1_4_187 permit 65000:1 0:4 0:187 ip community-list standard 1_5_186 permit 65000:1 0:5 0:186 ip community-list standard 1_6_185 permit 65000:1 0:6 0:185 ip community-list standard 1_7_184 permit 65000:1 0:7 0:184 ip community-list standard 1_8_183 permit 65000:1 0:8 0:183 ip community-list standard 1_9_182 permit 65000:1 0:9 0:182 ip community-list standard 1_10_181 permit 65000:1 0:10 0:181 ip community-list standard 1_11_180 permit 65000:1 0:11 0:180 ip community-list standard 1_12_179 permit 65000:1 0:12 0:179 ip community-list standard 1_13_178 permit 65000:1 0:13 0:178 ip community-list standard 1_14_177 permit 65000:1 0:14 0:177 ip community-list standard 1_15_176 permit 65000:1 0:15 0:176 ip community-list standard 1_16_175 permit 65000:1 0:16 0:175 ip community-list standard 1_17_174 permit 65000:1 0:17 0:174 ip community-list standard 1_18_173 permit 65000:1 0:18 0:173 ip community-list standard 1_19_172 permit 65000:1 0:19 0:172 ip community-list standard 1_20_171 permit 65000:1 0:20 0:171 ip community-list standard 1_21_170 permit 65000:1 0:21 0:170 ip community-list standard 1_22_169 permit 65000:1 0:22 0:169 ip community-list standard 1_23_168 permit 65000:1 0:23 0:168 ip community-list standard 1_24_167 permit 65000:1 0:24 0:167 ip community-list standard 1_25_166 permit 65000:1 0:25 0:166 ip community-list standard 1_26_165 permit 65000:1 0:26 0:165 ip community-list standard 1_27_164 permit 65000:1 0:27 0:164 ip community-list standard 1_28_163 permit 65000:1 0:28 0:163 ip community-list standard 1_29_162 permit 65000:1 0:29 0:162 ip community-list standard 1_30_161 permit 65000:1 0:30 0:161 ip community-list standard 1_31_160 permit 65000:1 0:31 0:160 ip community-list standard 1_32_159 permit 65000:1 0:32 0:159 ip community-list standard 1_33_158 permit 65000:1 0:33 0:158 ip community-list standard 1_34_157 permit 65000:1 0:34 0:157 ip community-list standard 1_35_156 permit 65000:1 0:35 0:156 ip community-list standard 1_36_155 permit 65000:1 0:36 0:155 ip community-list standard 1_37_154 permit 65000:1 0:37 0:154 ip community-list standard 1_38_153 permit 65000:1 0:38 0:153 ip community-list standard 1_39_152 permit 65000:1 0:39 0:152 ip community-list standard 1_40_151 permit 65000:1 0:40 0:151 ip community-list standard 1_41_150 permit 65000:1 0:41 0:150 ip community-list standard 1_42_149 permit 65000:1 0:42 0:149 ip community-list standard 1_43_148 permit 65000:1 0:43 0:148 ip community-list standard 1_44_147 permit 65000:1 0:44 0:147 ip community-list standard 1_45_146 permit 65000:1 0:45 0:146 ip community-list standard 1_46_145 permit 65000:1 0:46 0:145 ip community-list standard 1_47_144 permit 65000:1 0:47 0:144 ip community-list standard 1_48_143 permit 65000:1 0:48 0:143 ip community-list standard 1_49_142 permit 65000:1 0:49 0:142 ip community-list standard 1_50_141 permit 65000:1 0:50 0:141 ip community-list standard 1_51_140 permit 65000:1 0:51 0:140 ip community-list standard 1_52_139 permit 65000:1 0:52 0:139 ip community-list standard 1_53_138 permit 65000:1 0:53 0:138 ip community-list standard 1_54_137 permit 65000:1 0:54 0:137 ip community-list standard 1_55_136 permit 65000:1 0:55 0:136 ip community-list standard 1_56_135 permit 65000:1 0:56 0:135 ip community-list standard 1_57_134 permit 65000:1 0:57 0:134 ip community-list standard 1_58_133 permit 65000:1 0:58 0:133 ip community-list standard 1_59_132 permit 65000:1 0:59 0:132 ip community-list standard 1_60_131 permit 65000:1 0:60 0:131 ip community-list standard 1_61_130 permit 65000:1 0:61 0:130 ip community-list standard 1_62_129 permit 65000:1 0:62 0:129 ip community-list standard 1_63_128 permit 65000:1 0:63 0:128 ip community-list standard 1_64_127 permit 65000:1 0:64 0:127 ip community-list standard 1_65_126 permit 65000:1 0:65 0:126 ip community-list standard 1_66_125 permit 65000:1 0:66 0:125 ip community-list standard 1_67_124 permit 65000:1 0:67 0:124 ip community-list standard 1_68_123 permit 65000:1 0:68 0:123 ip community-list standard 1_69_122 permit 65000:1 0:69 0:122 ip community-list standard 1_70_121 permit 65000:1 0:70 0:121 ip community-list standard 1_71_120 permit 65000:1 0:71 0:120 ip community-list standard 1_72_119 permit 65000:1 0:72 0:119 ip community-list standard 1_73_118 permit 65000:1 0:73 0:118 ip community-list standard 1_74_117 permit 65000:1 0:74 0:117 ip community-list standard 1_75_116 permit 65000:1 0:75 0:116 ip community-list standard 1_76_115 permit 65000:1 0:76 0:115 ip community-list standard 1_77_114 permit 65000:1 0:77 0:114 ip community-list standard 1_78_113 permit 65000:1 0:78 0:113 ip community-list standard 1_79_112 permit 65000:1 0:79 0:112 ip community-list standard 1_80_111 permit 65000:1 0:80 0:111 ip community-list standard 1_81_110 permit 65000:1 0:81 0:110 ip community-list standard 1_82_109 permit 65000:1 0:82 0:109 ip community-list standard 1_83_108 permit 65000:1 0:83 0:108 ip community-list standard 1_84_107 permit 65000:1 0:84 0:107 ip community-list standard 1_85_106 permit 65000:1 0:85 0:106 ip community-list standard 1_86_105 permit 65000:1 0:86 0:105 ip community-list standard 1_87_104 permit 65000:1 0:87 0:104 ip community-list standard 1_88_103 permit 65000:1 0:88 0:103 ip community-list standard 1_89_102 permit 65000:1 0:89 0:102 ip community-list standard 1_90_101 permit 65000:1 0:90 0:101 ip community-list standard 1_91_100 permit 65000:1 0:91 0:100 ip community-list standard 1_92_99 permit 65000:1 0:92 0:99 ip community-list standard 1_93_98 permit 65000:1 0:93 0:98 ip community-list standard 1_94_97 permit 65000:1 0:94 0:97 ip community-list standard 1_95_96 permit 65000:1 0:95 0:96 ip community-list expanded c191 permit 1 ^65000:4_0:191_0:1$ ip community-list expanded c191 permit 2 ^65000:3_0:192_0:1$ ip community-list expanded c191 permit 3 ^65000:3_0:193_0:2$ ip community-list expanded c191 permit 4 ^65000:3_0:194_0:3$ ip community-list expanded c191 permit 5 ^65000:3_0:195_0:4$ ip community-list expanded c191 permit 6 ^65000:3_0:196_0:5$ ip community-list expanded c191 permit 7 ^65000:3_0:197_0:6$ ip community-list expanded c191 permit 8 ^65000:3_0:198_0:7$ ip community-list expanded c191 permit 9 ^65000:3_0:199_0:8$ ip community-list expanded c191 permit 10 ^65000:3_0:200_0:9$ ip community-list expanded c191 permit 11 ^65000:3_0:201_0:10$ ip community-list expanded c191 permit 12 ^65000:3_0:202_0:11$ ip community-list expanded c191 permit 13 ^65000:3_0:203_0:12$ ip community-list expanded c191 permit 14 ^65000:3_0:204_0:13$ ip community-list expanded c191 permit 15 ^65000:3_0:205_0:14$ ip community-list expanded c191 permit 16 ^65000:3_0:206_0:15$ ip community-list expanded c191 permit 17 ^65000:3_0:207_0:16$ ip community-list expanded c191 permit 18 ^65000:3_0:208_0:17$ ip community-list expanded c191 permit 19 ^65000:3_0:209_0:18$ ip community-list expanded c191 permit 20 ^65000:3_0:210_0:19$ ip community-list expanded c191 permit 21 ^65000:3_0:211_0:20$ ip community-list expanded c191 permit 22 ^65000:3_0:212_0:21$ ip community-list expanded c191 permit 23 ^65000:3_0:213_0:22$ ip community-list expanded c191 permit 24 ^65000:3_0:214_0:23$ ip community-list expanded c191 permit 25 ^65000:3_0:215_0:24$ ip community-list expanded c191 permit 26 ^65000:3_0:216_0:25$ ip community-list expanded c191 permit 27 ^65000:3_0:217_0:26$ ip community-list expanded c191 permit 28 ^65000:3_0:218_0:27$ ip community-list expanded c191 permit 29 ^65000:3_0:219_0:28$ ip community-list expanded c191 permit 30 ^65000:3_0:220_0:29$ ip community-list expanded c191 permit 31 ^65000:3_0:221_0:30$ ip community-list expanded c191 permit 32 ^65000:3_0:222_0:31$ ip community-list expanded c191 permit 33 ^65000:3_0:223_0:32$ ip community-list expanded c191 permit 34 ^65000:3_0:224_0:33$ ip community-list expanded c191 permit 35 ^65000:3_0:225_0:34$ ip community-list expanded c191 permit 36 ^65000:3_0:226_0:35$ ip community-list expanded c191 permit 37 ^65000:3_0:227_0:36$ ip community-list expanded c191 permit 38 ^65000:3_0:228_0:37$ ip community-list expanded c191 permit 39 ^65000:3_0:229_0:38$ ip community-list expanded c191 permit 40 ^65000:3_0:230_0:39$ ip community-list expanded c191 permit 41 ^65000:3_0:231_0:40$ ip community-list expanded c191 permit 42 ^65000:3_0:232_0:41$ ip community-list expanded c191 permit 43 ^65000:3_0:233_0:42$ ip community-list expanded c191 permit 44 ^65000:3_0:234_0:43$ ip community-list expanded c191 permit 45 ^65000:3_0:235_0:44$ ip community-list expanded c191 permit 46 ^65000:3_0:236_0:45$ ip community-list expanded c191 permit 47 ^65000:3_0:237_0:46$ ip community-list expanded c191 permit 48 ^65000:3_0:238_0:47$ ip community-list expanded c191 permit 49 ^65000:3_0:239_0:48$ ip community-list expanded c191 permit 50 ^65000:3_0:240_0:49$ ip community-list expanded c191 permit 51 ^65000:3_0:241_0:50$ ip community-list expanded c191 permit 52 ^65000:3_0:242_0:51$ ip community-list expanded c191 permit 53 ^65000:3_0:243_0:52$ ip community-list expanded c191 permit 54 ^65000:3_0:244_0:53$ ip community-list expanded c191 permit 55 ^65000:3_0:245_0:54$ ip community-list expanded c191 permit 56 ^65000:3_0:246_0:55$ ip community-list expanded c191 permit 57 ^65000:3_0:247_0:56$ ip community-list expanded c191 permit 58 ^65000:3_0:248_0:57$ ip community-list expanded c191 permit 59 ^65000:3_0:249_0:58$ ip community-list expanded c191 permit 60 ^65000:3_0:250_0:59$ ip community-list expanded c191 permit 61 ^65000:3_0:251_0:60$ ip community-list expanded c191 permit 62 ^65000:3_0:252_0:61$ ip community-list expanded c191 permit 63 ^65000:3_0:253_0:62$ ip community-list expanded c191 permit 64 ^65000:3_0:254_0:63$ ip community-list expanded c191 permit 65 ^65000:3_0:255_0:64$ ip community-list expanded c191 permit 66 ^65000:3_0:256_0:65$ route-map calculator permit 13566 match community 1_1_190 2_1_191 1_2_189 1_3_188 1_4_187 set community 0:191 route-map calculator permit 13567 match community 1_5_186 1_6_185 1_7_184 1_8_183 1_9_182 set community 0:191 route-map calculator permit 13568 match community 1_10_181 1_11_180 1_12_179 1_13_178 1_14_177 set community 0:191 route-map calculator permit 13569 match community 1_15_176 1_16_175 1_17_174 1_18_173 1_19_172 set community 0:191 route-map calculator permit 13570 match community 1_20_171 1_21_170 1_22_169 1_23_168 1_24_167 set community 0:191 route-map calculator permit 13571 match community 1_25_166 1_26_165 1_27_164 1_28_163 1_29_162 set community 0:191 route-map calculator permit 13572 match community 1_30_161 1_31_160 1_32_159 1_33_158 1_34_157 set community 0:191 route-map calculator permit 13573 match community 1_35_156 1_36_155 1_37_154 1_38_153 1_39_152 set community 0:191 route-map calculator permit 13574 match community 1_40_151 1_41_150 1_42_149 1_43_148 1_44_147 set community 0:191 route-map calculator permit 13575 match community 1_45_146 1_46_145 1_47_144 1_48_143 1_49_142 set community 0:191 route-map calculator permit 13576 match community 1_50_141 1_51_140 1_52_139 1_53_138 1_54_137 set community 0:191 route-map calculator permit 13577 match community 1_55_136 1_56_135 1_57_134 1_58_133 1_59_132 set community 0:191 route-map calculator permit 13578 match community 1_60_131 1_61_130 1_62_129 1_63_128 1_64_127 set community 0:191 route-map calculator permit 13579 match community 1_65_126 1_66_125 1_67_124 1_68_123 1_69_122 set community 0:191 route-map calculator permit 13580 match community 1_70_121 1_71_120 1_72_119 1_73_118 1_74_117 set community 0:191 route-map calculator permit 13581 match community 1_75_116 1_76_115 1_77_114 1_78_113 1_79_112 set community 0:191 route-map calculator permit 13582 match community 1_80_111 1_81_110 1_82_109 1_83_108 1_84_107 set community 0:191 route-map calculator permit 13583 match community 1_85_106 1_86_105 1_87_104 1_88_103 1_89_102 set community 0:191 route-map calculator permit 13584 match community 1_90_101 1_91_100 1_92_99 1_93_98 1_94_97 set community 0:191 route-map calculator permit 13585 match community 1_95_96 c4_191_1 c3_192_1 c3_193_2 c3_194_3 set community 0:191 route-map calculator permit 13586 match community c3_195_4 c3_196_5 c3_197_6 c3_198_7 c3_199_8 set community 0:191 route-map calculator permit 13587 match community c3_200_9 c3_201_10 c3_202_11 c3_203_12 c3_204_13 set community 0:191 route-map calculator permit 13588 match community c3_205_14 c3_206_15 c3_207_16 c3_208_17 c3_209_18 set community 0:191 route-map calculator permit 13589 match community c3_210_19 c3_211_20 c3_212_21 c3_213_22 c3_214_23 set community 0:191 route-map calculator permit 13590 match community c3_215_24 c3_216_25 c3_217_26 c3_218_27 c3_219_28 set community 0:191 route-map calculator permit 13591 match community c3_220_29 c3_221_30 c3_222_31 c3_223_32 c3_224_33 set community 0:191 route-map calculator permit 13592 match community c3_225_34 c3_226_35 c3_227_36 c3_228_37 c3_229_38 set community 0:191 route-map calculator permit 13593 match community c3_230_39 c3_231_40 c3_232_41 c3_233_42 c3_234_43 set community 0:191 route-map calculator permit 13594 match community c3_235_44 c3_236_45 c3_237_46 c3_238_47 c3_239_48 set community 0:191 route-map calculator permit 13595 match community c3_240_49 c3_241_50 c3_242_51 c3_243_52 c3_244_53 set community 0:191 route-map calculator permit 13596 match community c3_245_54 c3_246_55 c3_247_56 c3_248_57 c3_249_58 set community 0:191 route-map calculator permit 13597 match community c3_250_59 c3_251_60 c3_252_61 c3_253_62 c3_254_63 set community 0:191 route-map calculator permit 13598 match community c3_255_64 c3_256_65 set community 0:191 ip community-list standard 2_37_111 permit 65000:2 0:37 0:111 route-map calculator permit 13599 match community 2_37_111 set community 0:4107 ip community-list standard 2_46_218 permit 65000:2 0:46 0:218 ip community-list standard 2_92_109 permit 65000:2 0:92 0:109 route-map calculator permit 13600 match community 2_46_218 2_92_109 set community 0:10028 ip community-list standard 2_174_226 permit 65000:2 0:174 0:226 route-map calculator permit 13601 match community 2_174_226 set community 0:39324 ip community-list standard 2_229_249 permit 65000:2 0:229 0:249 route-map calculator permit 13602 match community 2_229_249 set community 0:57021 ip community-list standard 2_44_238 permit 65000:2 0:44 0:238 ip community-list standard 2_56_187 permit 65000:2 0:56 0:187 ip community-list standard 2_68_154 permit 65000:2 0:68 0:154 ip community-list standard 2_77_136 permit 65000:2 0:77 0:136 ip community-list standard 2_88_119 permit 65000:2 0:88 0:119 route-map calculator permit 13603 match community 2_44_238 2_56_187 2_68_154 2_77_136 2_88_119 set community 0:10472 ip community-list standard 2_91_238 permit 65000:2 0:91 0:238 ip community-list standard 2_98_221 permit 65000:2 0:98 0:221 ip community-list standard 2_119_182 permit 65000:2 0:119 0:182 route-map calculator permit 13604 match community 2_91_238 2_98_221 2_119_182 set community 0:21658 ip community-list standard 2_62_205 permit 65000:2 0:62 0:205 ip community-list standard 2_82_155 permit 65000:2 0:82 0:155 route-map calculator permit 13605 match community 2_62_205 2_82_155 set community 0:12710 ip community-list standard 2_203_203 permit 65000:2 0:203 0:203 route-map calculator permit 13606 match community 2_203_203 set community 0:41209 ip community-list standard 2_202_216 permit 65000:2 0:202 0:216 route-map calculator permit 13607 match community 2_202_216 set community 0:43632 ip community-list standard 2_47_107 permit 65000:2 0:47 0:107 route-map calculator permit 13608 match community 2_47_107 set community 0:5029 ip community-list standard 2_203_253 permit 65000:2 0:203 0:253 route-map calculator permit 13609 match community 2_203_253 set community 0:51359 ip community-list standard 2_17_186 permit 65000:2 0:17 0:186 ip community-list standard 2_31_102 permit 65000:2 0:31 0:102 ip community-list standard 2_34_93 permit 65000:2 0:34 0:93 ip community-list standard 2_51_62 permit 65000:2 0:51 0:62 route-map calculator permit 13610 match community 2_17_186 2_31_102 2_34_93 2_51_62 set community 0:3162 ip community-list standard 2_97_208 permit 65000:2 0:97 0:208 ip community-list standard 2_104_194 permit 65000:2 0:104 0:194 route-map calculator permit 13611 match community 2_97_208 2_104_194 set community 0:20176 ip community-list standard 2_99_240 permit 65000:2 0:99 0:240 ip community-list standard 2_108_220 permit 65000:2 0:108 0:220 ip community-list standard 2_110_216 permit 65000:2 0:110 0:216 ip community-list standard 2_120_198 permit 65000:2 0:120 0:198 ip community-list standard 2_132_180 permit 65000:2 0:132 0:180 ip community-list standard 2_135_176 permit 65000:2 0:135 0:176 ip community-list standard 2_144_165 permit 65000:2 0:144 0:165 route-map calculator permit 13612 match community 2_99_240 2_108_220 2_110_216 2_120_198 2_132_180 set community 0:23760 route-map calculator permit 13613 match community 2_135_176 2_144_165 set community 0:23760 ip community-list standard 2_154_206 permit 65000:2 0:154 0:206 route-map calculator permit 13614 match community 2_154_206 set community 0:31724 ip community-list standard 2_75_217 permit 65000:2 0:75 0:217 ip community-list standard 2_93_175 permit 65000:2 0:93 0:175 ip community-list standard 2_105_155 permit 65000:2 0:105 0:155 route-map calculator permit 13615 match community 2_75_217 2_93_175 2_105_155 set community 0:16275 ip community-list standard 2_130_242 permit 65000:2 0:130 0:242 ip community-list standard 2_143_220 permit 65000:2 0:143 0:220 route-map calculator permit 13616 match community 2_130_242 2_143_220 set community 0:31460 ip community-list standard 2_175_249 permit 65000:2 0:175 0:249 route-map calculator permit 13617 match community 2_175_249 set community 0:43575 ip community-list standard 2_105_131 permit 65000:2 0:105 0:131 route-map calculator permit 13618 match community 2_105_131 set community 0:13755 ip community-list standard 2_51_236 permit 65000:2 0:51 0:236 ip community-list standard 2_59_204 permit 65000:2 0:59 0:204 ip community-list standard 2_68_177 permit 65000:2 0:68 0:177 ip community-list standard 2_102_118 permit 65000:2 0:102 0:118 route-map calculator permit 13619 match community 2_51_236 2_59_204 2_68_177 2_102_118 set community 0:12036 ip community-list standard 2_174_255 permit 65000:2 0:174 0:255 route-map calculator permit 13620 match community 2_174_255 set community 0:44370 ip community-list standard 2_86_224 permit 65000:2 0:86 0:224 ip community-list standard 2_112_172 permit 65000:2 0:112 0:172 route-map calculator permit 13621 match community 2_86_224 2_112_172 set community 0:19264 ip community-list standard 2_50_227 permit 65000:2 0:50 0:227 route-map calculator permit 13622 match community 2_50_227 set community 0:11350 ip community-list standard 2_208_234 permit 65000:2 0:208 0:234 route-map calculator permit 13623 match community 2_208_234 set community 0:48672 ip community-list standard 2_121_246 permit 65000:2 0:121 0:246 ip community-list standard 2_123_242 permit 65000:2 0:123 0:242 route-map calculator permit 13624 match community 2_121_246 2_123_242 set community 0:29766 ip community-list standard 2_53_241 permit 65000:2 0:53 0:241 route-map calculator permit 13625 match community 2_53_241 set community 0:12773 ip community-list standard 2_85_233 permit 65000:2 0:85 0:233 route-map calculator permit 13626 match community 2_85_233 set community 0:19805 ip community-list standard 2_15_249 permit 65000:2 0:15 0:249 ip community-list standard 2_45_83 permit 65000:2 0:45 0:83 route-map calculator permit 13627 match community 2_15_249 2_45_83 set community 0:3735 ip community-list standard 2_5_211 permit 65000:2 0:5 0:211 route-map calculator permit 13628 match community 2_5_211 set community 0:1055 ip community-list standard 2_2_185 permit 65000:2 0:2 0:185 ip community-list standard 2_5_74 permit 65000:2 0:5 0:74 ip community-list standard 2_10_37 permit 65000:2 0:10 0:37 ip community-list standard 1_114_256 permit 65000:1 0:114 0:256 ip community-list standard 1_115_255 permit 65000:1 0:115 0:255 ip community-list standard 1_116_254 permit 65000:1 0:116 0:254 ip community-list standard 1_117_253 permit 65000:1 0:117 0:253 ip community-list standard 1_118_252 permit 65000:1 0:118 0:252 ip community-list standard 1_119_251 permit 65000:1 0:119 0:251 ip community-list standard 1_120_250 permit 65000:1 0:120 0:250 ip community-list standard 1_121_249 permit 65000:1 0:121 0:249 ip community-list standard 1_122_248 permit 65000:1 0:122 0:248 ip community-list standard 1_123_247 permit 65000:1 0:123 0:247 ip community-list standard 1_124_246 permit 65000:1 0:124 0:246 ip community-list standard 1_125_245 permit 65000:1 0:125 0:245 ip community-list standard 1_126_244 permit 65000:1 0:126 0:244 ip community-list standard 1_127_243 permit 65000:1 0:127 0:243 ip community-list standard 1_128_242 permit 65000:1 0:128 0:242 ip community-list standard 1_129_241 permit 65000:1 0:129 0:241 ip community-list standard 1_130_240 permit 65000:1 0:130 0:240 ip community-list standard 1_131_239 permit 65000:1 0:131 0:239 ip community-list standard 1_132_238 permit 65000:1 0:132 0:238 ip community-list standard 1_133_237 permit 65000:1 0:133 0:237 ip community-list standard 1_134_236 permit 65000:1 0:134 0:236 ip community-list standard 1_135_235 permit 65000:1 0:135 0:235 ip community-list standard 1_136_234 permit 65000:1 0:136 0:234 ip community-list standard 1_137_233 permit 65000:1 0:137 0:233 ip community-list standard 1_138_232 permit 65000:1 0:138 0:232 ip community-list standard 1_139_231 permit 65000:1 0:139 0:231 ip community-list standard 1_140_230 permit 65000:1 0:140 0:230 ip community-list standard 1_141_229 permit 65000:1 0:141 0:229 ip community-list standard 1_142_228 permit 65000:1 0:142 0:228 ip community-list standard 1_143_227 permit 65000:1 0:143 0:227 ip community-list standard 1_144_226 permit 65000:1 0:144 0:226 ip community-list standard 1_145_225 permit 65000:1 0:145 0:225 ip community-list standard 1_146_224 permit 65000:1 0:146 0:224 ip community-list standard 1_147_223 permit 65000:1 0:147 0:223 ip community-list standard 1_148_222 permit 65000:1 0:148 0:222 ip community-list standard 1_149_221 permit 65000:1 0:149 0:221 ip community-list standard 1_150_220 permit 65000:1 0:150 0:220 ip community-list standard 1_151_219 permit 65000:1 0:151 0:219 ip community-list standard 1_152_218 permit 65000:1 0:152 0:218 ip community-list standard 1_153_217 permit 65000:1 0:153 0:217 ip community-list standard 1_154_216 permit 65000:1 0:154 0:216 ip community-list standard 1_155_215 permit 65000:1 0:155 0:215 ip community-list standard 1_156_214 permit 65000:1 0:156 0:214 ip community-list standard 1_157_213 permit 65000:1 0:157 0:213 ip community-list standard 1_158_212 permit 65000:1 0:158 0:212 ip community-list standard 1_159_211 permit 65000:1 0:159 0:211 ip community-list standard 1_160_210 permit 65000:1 0:160 0:210 ip community-list standard 1_161_209 permit 65000:1 0:161 0:209 ip community-list standard 1_162_208 permit 65000:1 0:162 0:208 ip community-list standard 1_163_207 permit 65000:1 0:163 0:207 ip community-list standard 1_164_206 permit 65000:1 0:164 0:206 ip community-list standard 1_165_205 permit 65000:1 0:165 0:205 ip community-list standard 1_166_204 permit 65000:1 0:166 0:204 ip community-list standard 1_167_203 permit 65000:1 0:167 0:203 ip community-list standard 1_168_202 permit 65000:1 0:168 0:202 ip community-list standard 1_169_201 permit 65000:1 0:169 0:201 ip community-list standard 1_170_200 permit 65000:1 0:170 0:200 ip community-list standard 1_171_199 permit 65000:1 0:171 0:199 ip community-list standard 1_172_198 permit 65000:1 0:172 0:198 ip community-list standard 1_173_197 permit 65000:1 0:173 0:197 ip community-list standard 1_174_196 permit 65000:1 0:174 0:196 ip community-list standard 1_175_195 permit 65000:1 0:175 0:195 ip community-list standard 1_176_194 permit 65000:1 0:176 0:194 ip community-list standard 1_177_193 permit 65000:1 0:177 0:193 ip community-list standard 1_178_192 permit 65000:1 0:178 0:192 ip community-list standard 1_179_191 permit 65000:1 0:179 0:191 ip community-list standard 1_180_190 permit 65000:1 0:180 0:190 ip community-list standard 1_181_189 permit 65000:1 0:181 0:189 ip community-list standard 1_182_188 permit 65000:1 0:182 0:188 ip community-list standard 1_183_187 permit 65000:1 0:183 0:187 ip community-list standard 1_184_186 permit 65000:1 0:184 0:186 ip community-list standard 1_185_185 permit 65000:1 0:185 0:185 route-map calculator permit 13629 match community 2_2_185 2_5_74 2_10_37 1_114_256 1_115_255 set community 0:370 route-map calculator permit 13630 match community 1_116_254 1_117_253 1_118_252 1_119_251 1_120_250 set community 0:370 route-map calculator permit 13631 match community 1_121_249 1_122_248 1_123_247 1_124_246 1_125_245 set community 0:370 route-map calculator permit 13632 match community 1_126_244 1_127_243 1_128_242 1_129_241 1_130_240 set community 0:370 route-map calculator permit 13633 match community 1_131_239 1_132_238 1_133_237 1_134_236 1_135_235 set community 0:370 route-map calculator permit 13634 match community 1_136_234 1_137_233 1_138_232 1_139_231 1_140_230 set community 0:370 route-map calculator permit 13635 match community 1_141_229 1_142_228 1_143_227 1_144_226 1_145_225 set community 0:370 route-map calculator permit 13636 match community 1_146_224 1_147_223 1_148_222 1_149_221 1_150_220 set community 0:370 route-map calculator permit 13637 match community 1_151_219 1_152_218 1_153_217 1_154_216 1_155_215 set community 0:370 route-map calculator permit 13638 match community 1_156_214 1_157_213 1_158_212 1_159_211 1_160_210 set community 0:370 route-map calculator permit 13639 match community 1_161_209 1_162_208 1_163_207 1_164_206 1_165_205 set community 0:370 route-map calculator permit 13640 match community 1_166_204 1_167_203 1_168_202 1_169_201 1_170_200 set community 0:370 route-map calculator permit 13641 match community 1_171_199 1_172_198 1_173_197 1_174_196 1_175_195 set community 0:370 route-map calculator permit 13642 match community 1_176_194 1_177_193 1_178_192 1_179_191 1_180_190 set community 0:370 route-map calculator permit 13643 match community 1_181_189 1_182_188 1_183_187 1_184_186 1_185_185 set community 0:370 ip community-list standard 2_182_193 permit 65000:2 0:182 0:193 route-map calculator permit 13644 match community 2_182_193 set community 0:35126 ip community-list standard 2_41_235 permit 65000:2 0:41 0:235 ip community-list standard 2_47_205 permit 65000:2 0:47 0:205 route-map calculator permit 13645 match community 2_41_235 2_47_205 set community 0:9635 ip community-list standard 2_53_163 permit 65000:2 0:53 0:163 route-map calculator permit 13646 match community 2_53_163 set community 0:8639 ip community-list standard 2_134_163 permit 65000:2 0:134 0:163 route-map calculator permit 13647 match community 2_134_163 set community 0:21842 ip community-list standard 2_106_248 permit 65000:2 0:106 0:248 ip community-list standard 2_124_212 permit 65000:2 0:124 0:212 route-map calculator permit 13648 match community 2_106_248 2_124_212 set community 0:26288 ip community-list standard 2_144_250 permit 65000:2 0:144 0:250 ip community-list standard 2_150_240 permit 65000:2 0:150 0:240 ip community-list standard 2_160_225 permit 65000:2 0:160 0:225 ip community-list standard 2_180_200 permit 65000:2 0:180 0:200 route-map calculator permit 13649 match community 2_144_250 2_150_240 2_160_225 2_180_200 set community 0:36000 ip community-list standard 2_56_233 permit 65000:2 0:56 0:233 route-map calculator permit 13650 match community 2_56_233 set community 0:13048 ip community-list standard 2_185_203 permit 65000:2 0:185 0:203 route-map calculator permit 13651 match community 2_185_203 set community 0:37555 ip community-list standard 2_9_171 permit 65000:2 0:9 0:171 ip community-list standard 2_19_81 permit 65000:2 0:19 0:81 ip community-list standard 2_27_57 permit 65000:2 0:27 0:57 route-map calculator permit 13652 match community 2_9_171 2_19_81 2_27_57 set community 0:1539 ip community-list standard 2_4_145 permit 65000:2 0:4 0:145 ip community-list standard 2_5_116 permit 65000:2 0:5 0:116 ip community-list standard 2_10_58 permit 65000:2 0:10 0:58 ip community-list standard 2_20_29 permit 65000:2 0:20 0:29 route-map calculator permit 13653 match community 2_4_145 2_5_116 2_10_58 2_20_29 set community 0:580 ip community-list standard 2_27_214 permit 65000:2 0:27 0:214 ip community-list standard 2_54_107 permit 65000:2 0:54 0:107 route-map calculator permit 13654 match community 2_27_214 2_54_107 set community 0:5778 ip community-list standard 2_7_134 permit 65000:2 0:7 0:134 ip community-list standard 2_14_67 permit 65000:2 0:14 0:67 route-map calculator permit 13655 match community 2_7_134 2_14_67 set community 0:938 ip community-list standard 2_50_242 permit 65000:2 0:50 0:242 ip community-list standard 2_55_220 permit 65000:2 0:55 0:220 ip community-list standard 2_100_121 permit 65000:2 0:100 0:121 ip community-list standard 2_110_110 permit 65000:2 0:110 0:110 route-map calculator permit 13656 match community 2_50_242 2_55_220 2_100_121 2_110_110 set community 0:12100 ip community-list standard 2_136_137 permit 65000:2 0:136 0:137 route-map calculator permit 13657 match community 2_136_137 set community 0:18632 ip community-list standard 2_32_227 permit 65000:2 0:32 0:227 route-map calculator permit 13658 match community 2_32_227 set community 0:7264 ip community-list standard 2_138_157 permit 65000:2 0:138 0:157 route-map calculator permit 13659 match community 2_138_157 set community 0:21666 ip community-list standard 2_54_220 permit 65000:2 0:54 0:220 ip community-list standard 2_55_216 permit 65000:2 0:55 0:216 ip community-list standard 2_60_198 permit 65000:2 0:60 0:198 ip community-list standard 2_66_180 permit 65000:2 0:66 0:180 ip community-list standard 2_72_165 permit 65000:2 0:72 0:165 ip community-list standard 2_88_135 permit 65000:2 0:88 0:135 ip community-list standard 2_90_132 permit 65000:2 0:90 0:132 ip community-list standard 2_99_120 permit 65000:2 0:99 0:120 ip community-list standard 2_108_110 permit 65000:2 0:108 0:110 route-map calculator permit 13660 match community 2_54_220 2_55_216 2_60_198 2_66_180 2_72_165 set community 0:11880 route-map calculator permit 13661 match community 2_88_135 2_90_132 2_99_120 2_108_110 set community 0:11880 ip community-list standard 2_83_245 permit 65000:2 0:83 0:245 route-map calculator permit 13662 match community 2_83_245 set community 0:20335 ip community-list standard 2_121_243 permit 65000:2 0:121 0:243 route-map calculator permit 13663 match community 2_121_243 set community 0:29403 ip community-list standard 2_21_250 permit 65000:2 0:21 0:250 ip community-list standard 2_25_210 permit 65000:2 0:25 0:210 ip community-list standard 2_30_175 permit 65000:2 0:30 0:175 ip community-list standard 2_35_150 permit 65000:2 0:35 0:150 ip community-list standard 2_42_125 permit 65000:2 0:42 0:125 ip community-list standard 2_50_105 permit 65000:2 0:50 0:105 ip community-list standard 2_70_75 permit 65000:2 0:70 0:75 route-map calculator permit 13664 match community 2_21_250 2_25_210 2_30_175 2_35_150 2_42_125 set community 0:5250 route-map calculator permit 13665 match community 2_50_105 2_70_75 set community 0:5250 ip community-list standard 2_179_186 permit 65000:2 0:179 0:186 route-map calculator permit 13666 match community 2_179_186 set community 0:33294 ip community-list standard 2_3_135 permit 65000:2 0:3 0:135 ip community-list standard 2_5_81 permit 65000:2 0:5 0:81 ip community-list standard 2_9_45 permit 65000:2 0:9 0:45 ip community-list standard 2_15_27 permit 65000:2 0:15 0:27 ip community-list standard 1_149_256 permit 65000:1 0:149 0:256 ip community-list standard 1_150_255 permit 65000:1 0:150 0:255 ip community-list standard 1_151_254 permit 65000:1 0:151 0:254 ip community-list standard 1_152_253 permit 65000:1 0:152 0:253 ip community-list standard 1_153_252 permit 65000:1 0:153 0:252 ip community-list standard 1_154_251 permit 65000:1 0:154 0:251 ip community-list standard 1_155_250 permit 65000:1 0:155 0:250 ip community-list standard 1_156_249 permit 65000:1 0:156 0:249 ip community-list standard 1_157_248 permit 65000:1 0:157 0:248 ip community-list standard 1_158_247 permit 65000:1 0:158 0:247 ip community-list standard 1_159_246 permit 65000:1 0:159 0:246 ip community-list standard 1_160_245 permit 65000:1 0:160 0:245 ip community-list standard 1_161_244 permit 65000:1 0:161 0:244 ip community-list standard 1_162_243 permit 65000:1 0:162 0:243 ip community-list standard 1_163_242 permit 65000:1 0:163 0:242 ip community-list standard 1_164_241 permit 65000:1 0:164 0:241 ip community-list standard 1_165_240 permit 65000:1 0:165 0:240 ip community-list standard 1_166_239 permit 65000:1 0:166 0:239 ip community-list standard 1_167_238 permit 65000:1 0:167 0:238 ip community-list standard 1_168_237 permit 65000:1 0:168 0:237 ip community-list standard 1_169_236 permit 65000:1 0:169 0:236 ip community-list standard 1_170_235 permit 65000:1 0:170 0:235 ip community-list standard 1_171_234 permit 65000:1 0:171 0:234 ip community-list standard 1_172_233 permit 65000:1 0:172 0:233 ip community-list standard 1_173_232 permit 65000:1 0:173 0:232 ip community-list standard 1_174_231 permit 65000:1 0:174 0:231 ip community-list standard 1_175_230 permit 65000:1 0:175 0:230 ip community-list standard 1_176_229 permit 65000:1 0:176 0:229 ip community-list standard 1_177_228 permit 65000:1 0:177 0:228 ip community-list standard 1_178_227 permit 65000:1 0:178 0:227 ip community-list standard 1_179_226 permit 65000:1 0:179 0:226 ip community-list standard 1_180_225 permit 65000:1 0:180 0:225 ip community-list standard 1_181_224 permit 65000:1 0:181 0:224 ip community-list standard 1_182_223 permit 65000:1 0:182 0:223 ip community-list standard 1_183_222 permit 65000:1 0:183 0:222 ip community-list standard 1_184_221 permit 65000:1 0:184 0:221 ip community-list standard 1_185_220 permit 65000:1 0:185 0:220 ip community-list standard 1_186_219 permit 65000:1 0:186 0:219 ip community-list standard 1_187_218 permit 65000:1 0:187 0:218 ip community-list standard 1_188_217 permit 65000:1 0:188 0:217 ip community-list standard 1_189_216 permit 65000:1 0:189 0:216 ip community-list standard 1_190_215 permit 65000:1 0:190 0:215 ip community-list standard 1_191_214 permit 65000:1 0:191 0:214 ip community-list standard 1_192_213 permit 65000:1 0:192 0:213 ip community-list standard 1_193_212 permit 65000:1 0:193 0:212 ip community-list standard 1_194_211 permit 65000:1 0:194 0:211 ip community-list standard 1_195_210 permit 65000:1 0:195 0:210 ip community-list standard 1_196_209 permit 65000:1 0:196 0:209 ip community-list standard 1_197_208 permit 65000:1 0:197 0:208 ip community-list standard 1_198_207 permit 65000:1 0:198 0:207 ip community-list standard 1_199_206 permit 65000:1 0:199 0:206 ip community-list standard 1_200_205 permit 65000:1 0:200 0:205 ip community-list standard 1_201_204 permit 65000:1 0:201 0:204 ip community-list standard 1_202_203 permit 65000:1 0:202 0:203 route-map calculator permit 13667 match community 2_3_135 2_5_81 2_9_45 2_15_27 1_149_256 set community 0:405 route-map calculator permit 13668 match community 1_150_255 1_151_254 1_152_253 1_153_252 1_154_251 set community 0:405 route-map calculator permit 13669 match community 1_155_250 1_156_249 1_157_248 1_158_247 1_159_246 set community 0:405 route-map calculator permit 13670 match community 1_160_245 1_161_244 1_162_243 1_163_242 1_164_241 set community 0:405 route-map calculator permit 13671 match community 1_165_240 1_166_239 1_167_238 1_168_237 1_169_236 set community 0:405 route-map calculator permit 13672 match community 1_170_235 1_171_234 1_172_233 1_173_232 1_174_231 set community 0:405 route-map calculator permit 13673 match community 1_175_230 1_176_229 1_177_228 1_178_227 1_179_226 set community 0:405 route-map calculator permit 13674 match community 1_180_225 1_181_224 1_182_223 1_183_222 1_184_221 set community 0:405 route-map calculator permit 13675 match community 1_185_220 1_186_219 1_187_218 1_188_217 1_189_216 set community 0:405 route-map calculator permit 13676 match community 1_190_215 1_191_214 1_192_213 1_193_212 1_194_211 set community 0:405 route-map calculator permit 13677 match community 1_195_210 1_196_209 1_197_208 1_198_207 1_199_206 set community 0:405 route-map calculator permit 13678 match community 1_200_205 1_201_204 1_202_203 set community 0:405 ip community-list standard 2_237_237 permit 65000:2 0:237 0:237 route-map calculator permit 13679 match community 2_237_237 set community 0:56169 ip community-list standard 2_139_141 permit 65000:2 0:139 0:141 route-map calculator permit 13680 match community 2_139_141 set community 0:19599 ip community-list standard 1_1_226 permit 65000:1 0:1 0:226 ip community-list standard 2_1_227 permit 65000:2 0:1 0:227 ip community-list standard 1_2_225 permit 65000:1 0:2 0:225 ip community-list standard 1_3_224 permit 65000:1 0:3 0:224 ip community-list standard 1_4_223 permit 65000:1 0:4 0:223 ip community-list standard 1_5_222 permit 65000:1 0:5 0:222 ip community-list standard 1_6_221 permit 65000:1 0:6 0:221 ip community-list standard 1_7_220 permit 65000:1 0:7 0:220 ip community-list standard 1_8_219 permit 65000:1 0:8 0:219 ip community-list standard 1_9_218 permit 65000:1 0:9 0:218 ip community-list standard 1_10_217 permit 65000:1 0:10 0:217 ip community-list standard 1_11_216 permit 65000:1 0:11 0:216 ip community-list standard 1_12_215 permit 65000:1 0:12 0:215 ip community-list standard 1_13_214 permit 65000:1 0:13 0:214 ip community-list standard 1_14_213 permit 65000:1 0:14 0:213 ip community-list standard 1_15_212 permit 65000:1 0:15 0:212 ip community-list standard 1_16_211 permit 65000:1 0:16 0:211 ip community-list standard 1_17_210 permit 65000:1 0:17 0:210 ip community-list standard 1_18_209 permit 65000:1 0:18 0:209 ip community-list standard 1_19_208 permit 65000:1 0:19 0:208 ip community-list standard 1_20_207 permit 65000:1 0:20 0:207 ip community-list standard 1_21_206 permit 65000:1 0:21 0:206 ip community-list standard 1_22_205 permit 65000:1 0:22 0:205 ip community-list standard 1_23_204 permit 65000:1 0:23 0:204 ip community-list standard 1_24_203 permit 65000:1 0:24 0:203 ip community-list standard 1_25_202 permit 65000:1 0:25 0:202 ip community-list standard 1_26_201 permit 65000:1 0:26 0:201 ip community-list standard 1_27_200 permit 65000:1 0:27 0:200 ip community-list standard 1_28_199 permit 65000:1 0:28 0:199 ip community-list standard 1_29_198 permit 65000:1 0:29 0:198 ip community-list standard 1_30_197 permit 65000:1 0:30 0:197 ip community-list standard 1_31_196 permit 65000:1 0:31 0:196 ip community-list standard 1_32_195 permit 65000:1 0:32 0:195 ip community-list standard 1_33_194 permit 65000:1 0:33 0:194 ip community-list standard 1_34_193 permit 65000:1 0:34 0:193 ip community-list standard 1_35_192 permit 65000:1 0:35 0:192 ip community-list standard 1_36_191 permit 65000:1 0:36 0:191 ip community-list standard 1_37_190 permit 65000:1 0:37 0:190 ip community-list standard 1_38_189 permit 65000:1 0:38 0:189 ip community-list standard 1_39_188 permit 65000:1 0:39 0:188 ip community-list standard 1_40_187 permit 65000:1 0:40 0:187 ip community-list standard 1_41_186 permit 65000:1 0:41 0:186 ip community-list standard 1_42_185 permit 65000:1 0:42 0:185 ip community-list standard 1_43_184 permit 65000:1 0:43 0:184 ip community-list standard 1_44_183 permit 65000:1 0:44 0:183 ip community-list standard 1_45_182 permit 65000:1 0:45 0:182 ip community-list standard 1_46_181 permit 65000:1 0:46 0:181 ip community-list standard 1_47_180 permit 65000:1 0:47 0:180 ip community-list standard 1_48_179 permit 65000:1 0:48 0:179 ip community-list standard 1_49_178 permit 65000:1 0:49 0:178 ip community-list standard 1_50_177 permit 65000:1 0:50 0:177 ip community-list standard 1_51_176 permit 65000:1 0:51 0:176 ip community-list standard 1_52_175 permit 65000:1 0:52 0:175 ip community-list standard 1_53_174 permit 65000:1 0:53 0:174 ip community-list standard 1_54_173 permit 65000:1 0:54 0:173 ip community-list standard 1_55_172 permit 65000:1 0:55 0:172 ip community-list standard 1_56_171 permit 65000:1 0:56 0:171 ip community-list standard 1_57_170 permit 65000:1 0:57 0:170 ip community-list standard 1_58_169 permit 65000:1 0:58 0:169 ip community-list standard 1_59_168 permit 65000:1 0:59 0:168 ip community-list standard 1_60_167 permit 65000:1 0:60 0:167 ip community-list standard 1_61_166 permit 65000:1 0:61 0:166 ip community-list standard 1_62_165 permit 65000:1 0:62 0:165 ip community-list standard 1_63_164 permit 65000:1 0:63 0:164 ip community-list standard 1_64_163 permit 65000:1 0:64 0:163 ip community-list standard 1_65_162 permit 65000:1 0:65 0:162 ip community-list standard 1_66_161 permit 65000:1 0:66 0:161 ip community-list standard 1_67_160 permit 65000:1 0:67 0:160 ip community-list standard 1_68_159 permit 65000:1 0:68 0:159 ip community-list standard 1_69_158 permit 65000:1 0:69 0:158 ip community-list standard 1_70_157 permit 65000:1 0:70 0:157 ip community-list standard 1_71_156 permit 65000:1 0:71 0:156 ip community-list standard 1_72_155 permit 65000:1 0:72 0:155 ip community-list standard 1_73_154 permit 65000:1 0:73 0:154 ip community-list standard 1_74_153 permit 65000:1 0:74 0:153 ip community-list standard 1_75_152 permit 65000:1 0:75 0:152 ip community-list standard 1_76_151 permit 65000:1 0:76 0:151 ip community-list standard 1_77_150 permit 65000:1 0:77 0:150 ip community-list standard 1_78_149 permit 65000:1 0:78 0:149 ip community-list standard 1_79_148 permit 65000:1 0:79 0:148 ip community-list standard 1_80_147 permit 65000:1 0:80 0:147 ip community-list standard 1_81_146 permit 65000:1 0:81 0:146 ip community-list standard 1_82_145 permit 65000:1 0:82 0:145 ip community-list standard 1_83_144 permit 65000:1 0:83 0:144 ip community-list standard 1_84_143 permit 65000:1 0:84 0:143 ip community-list standard 1_85_142 permit 65000:1 0:85 0:142 ip community-list standard 1_86_141 permit 65000:1 0:86 0:141 ip community-list standard 1_87_140 permit 65000:1 0:87 0:140 ip community-list standard 1_88_139 permit 65000:1 0:88 0:139 ip community-list standard 1_89_138 permit 65000:1 0:89 0:138 ip community-list standard 1_90_137 permit 65000:1 0:90 0:137 ip community-list standard 1_91_136 permit 65000:1 0:91 0:136 ip community-list standard 1_92_135 permit 65000:1 0:92 0:135 ip community-list standard 1_93_134 permit 65000:1 0:93 0:134 ip community-list standard 1_94_133 permit 65000:1 0:94 0:133 ip community-list standard 1_95_132 permit 65000:1 0:95 0:132 ip community-list standard 1_96_131 permit 65000:1 0:96 0:131 ip community-list standard 1_97_130 permit 65000:1 0:97 0:130 ip community-list standard 1_98_129 permit 65000:1 0:98 0:129 ip community-list standard 1_99_128 permit 65000:1 0:99 0:128 ip community-list standard 1_100_127 permit 65000:1 0:100 0:127 ip community-list standard 1_101_126 permit 65000:1 0:101 0:126 ip community-list standard 1_102_125 permit 65000:1 0:102 0:125 ip community-list standard 1_103_124 permit 65000:1 0:103 0:124 ip community-list standard 1_104_123 permit 65000:1 0:104 0:123 ip community-list standard 1_105_122 permit 65000:1 0:105 0:122 ip community-list standard 1_106_121 permit 65000:1 0:106 0:121 ip community-list standard 1_107_120 permit 65000:1 0:107 0:120 ip community-list standard 1_108_119 permit 65000:1 0:108 0:119 ip community-list standard 1_109_118 permit 65000:1 0:109 0:118 ip community-list standard 1_110_117 permit 65000:1 0:110 0:117 ip community-list standard 1_111_116 permit 65000:1 0:111 0:116 ip community-list standard 1_112_115 permit 65000:1 0:112 0:115 ip community-list standard 1_113_114 permit 65000:1 0:113 0:114 ip community-list expanded c227 permit 1 ^65000:4_0:227_0:1$ ip community-list expanded c227 permit 2 ^65000:3_0:228_0:1$ ip community-list expanded c227 permit 3 ^65000:3_0:229_0:2$ ip community-list expanded c227 permit 4 ^65000:3_0:230_0:3$ ip community-list expanded c227 permit 5 ^65000:3_0:231_0:4$ ip community-list expanded c227 permit 6 ^65000:3_0:232_0:5$ ip community-list expanded c227 permit 7 ^65000:3_0:233_0:6$ ip community-list expanded c227 permit 8 ^65000:3_0:234_0:7$ ip community-list expanded c227 permit 9 ^65000:3_0:235_0:8$ ip community-list expanded c227 permit 10 ^65000:3_0:236_0:9$ ip community-list expanded c227 permit 11 ^65000:3_0:237_0:10$ ip community-list expanded c227 permit 12 ^65000:3_0:238_0:11$ ip community-list expanded c227 permit 13 ^65000:3_0:239_0:12$ ip community-list expanded c227 permit 14 ^65000:3_0:240_0:13$ ip community-list expanded c227 permit 15 ^65000:3_0:241_0:14$ ip community-list expanded c227 permit 16 ^65000:3_0:242_0:15$ ip community-list expanded c227 permit 17 ^65000:3_0:243_0:16$ ip community-list expanded c227 permit 18 ^65000:3_0:244_0:17$ ip community-list expanded c227 permit 19 ^65000:3_0:245_0:18$ ip community-list expanded c227 permit 20 ^65000:3_0:246_0:19$ ip community-list expanded c227 permit 21 ^65000:3_0:247_0:20$ ip community-list expanded c227 permit 22 ^65000:3_0:248_0:21$ ip community-list expanded c227 permit 23 ^65000:3_0:249_0:22$ ip community-list expanded c227 permit 24 ^65000:3_0:250_0:23$ ip community-list expanded c227 permit 25 ^65000:3_0:251_0:24$ ip community-list expanded c227 permit 26 ^65000:3_0:252_0:25$ ip community-list expanded c227 permit 27 ^65000:3_0:253_0:26$ ip community-list expanded c227 permit 28 ^65000:3_0:254_0:27$ ip community-list expanded c227 permit 29 ^65000:3_0:255_0:28$ ip community-list expanded c227 permit 30 ^65000:3_0:256_0:29$ route-map calculator permit 13681 match community 1_1_226 2_1_227 1_2_225 1_3_224 1_4_223 set community 0:227 route-map calculator permit 13682 match community 1_5_222 1_6_221 1_7_220 1_8_219 1_9_218 set community 0:227 route-map calculator permit 13683 match community 1_10_217 1_11_216 1_12_215 1_13_214 1_14_213 set community 0:227 route-map calculator permit 13684 match community 1_15_212 1_16_211 1_17_210 1_18_209 1_19_208 set community 0:227 route-map calculator permit 13685 match community 1_20_207 1_21_206 1_22_205 1_23_204 1_24_203 set community 0:227 route-map calculator permit 13686 match community 1_25_202 1_26_201 1_27_200 1_28_199 1_29_198 set community 0:227 route-map calculator permit 13687 match community 1_30_197 1_31_196 1_32_195 1_33_194 1_34_193 set community 0:227 route-map calculator permit 13688 match community 1_35_192 1_36_191 1_37_190 1_38_189 1_39_188 set community 0:227 route-map calculator permit 13689 match community 1_40_187 1_41_186 1_42_185 1_43_184 1_44_183 set community 0:227 route-map calculator permit 13690 match community 1_45_182 1_46_181 1_47_180 1_48_179 1_49_178 set community 0:227 route-map calculator permit 13691 match community 1_50_177 1_51_176 1_52_175 1_53_174 1_54_173 set community 0:227 route-map calculator permit 13692 match community 1_55_172 1_56_171 1_57_170 1_58_169 1_59_168 set community 0:227 route-map calculator permit 13693 match community 1_60_167 1_61_166 1_62_165 1_63_164 1_64_163 set community 0:227 route-map calculator permit 13694 match community 1_65_162 1_66_161 1_67_160 1_68_159 1_69_158 set community 0:227 route-map calculator permit 13695 match community 1_70_157 1_71_156 1_72_155 1_73_154 1_74_153 set community 0:227 route-map calculator permit 13696 match community 1_75_152 1_76_151 1_77_150 1_78_149 1_79_148 set community 0:227 route-map calculator permit 13697 match community 1_80_147 1_81_146 1_82_145 1_83_144 1_84_143 set community 0:227 route-map calculator permit 13698 match community 1_85_142 1_86_141 1_87_140 1_88_139 1_89_138 set community 0:227 route-map calculator permit 13699 match community 1_90_137 1_91_136 1_92_135 1_93_134 1_94_133 set community 0:227 route-map calculator permit 13700 match community 1_95_132 1_96_131 1_97_130 1_98_129 1_99_128 set community 0:227 route-map calculator permit 13701 match community 1_100_127 1_101_126 1_102_125 1_103_124 1_104_123 set community 0:227 route-map calculator permit 13702 match community 1_105_122 1_106_121 1_107_120 1_108_119 1_109_118 set community 0:227 route-map calculator permit 13703 match community 1_110_117 1_111_116 1_112_115 1_113_114 c4_227_1 set community 0:227 route-map calculator permit 13704 match community c3_228_1 c3_229_2 c3_230_3 c3_231_4 c3_232_5 set community 0:227 route-map calculator permit 13705 match community c3_233_6 c3_234_7 c3_235_8 c3_236_9 c3_237_10 set community 0:227 route-map calculator permit 13706 match community c3_238_11 c3_239_12 c3_240_13 c3_241_14 c3_242_15 set community 0:227 route-map calculator permit 13707 match community c3_243_16 c3_244_17 c3_245_18 c3_246_19 c3_247_20 set community 0:227 route-map calculator permit 13708 match community c3_248_21 c3_249_22 c3_250_23 c3_251_24 c3_252_25 set community 0:227 route-map calculator permit 13709 match community c3_253_26 c3_254_27 c3_255_28 c3_256_29 set community 0:227 ip community-list standard 2_149_176 permit 65000:2 0:149 0:176 route-map calculator permit 13710 match community 2_149_176 set community 0:26224 ip community-list standard 2_59_252 permit 65000:2 0:59 0:252 ip community-list standard 2_63_236 permit 65000:2 0:63 0:236 ip community-list standard 2_84_177 permit 65000:2 0:84 0:177 ip community-list standard 2_118_126 permit 65000:2 0:118 0:126 route-map calculator permit 13711 match community 2_59_252 2_63_236 2_84_177 2_118_126 set community 0:14868 ip community-list standard 2_31_248 permit 65000:2 0:31 0:248 ip community-list standard 2_62_124 permit 65000:2 0:62 0:124 route-map calculator permit 13712 match community 2_31_248 2_62_124 set community 0:7688 ip community-list standard 2_5_181 permit 65000:2 0:5 0:181 route-map calculator permit 13713 match community 2_5_181 set community 0:905 ip community-list standard 2_129_212 permit 65000:2 0:129 0:212 ip community-list standard 2_159_172 permit 65000:2 0:159 0:172 route-map calculator permit 13714 match community 2_129_212 2_159_172 set community 0:27348 ip community-list standard 2_109_215 permit 65000:2 0:109 0:215 route-map calculator permit 13715 match community 2_109_215 set community 0:23435 ip community-list standard 2_134_221 permit 65000:2 0:134 0:221 route-map calculator permit 13716 match community 2_134_221 set community 0:29614 ip community-list standard 2_87_143 permit 65000:2 0:87 0:143 route-map calculator permit 13717 match community 2_87_143 set community 0:12441 ip community-list standard 2_47_59 permit 65000:2 0:47 0:59 route-map calculator permit 13718 match community 2_47_59 set community 0:2773 ip community-list standard 2_37_229 permit 65000:2 0:37 0:229 route-map calculator permit 13719 match community 2_37_229 set community 0:8473 ip community-list standard 2_151_234 permit 65000:2 0:151 0:234 route-map calculator permit 13720 match community 2_151_234 set community 0:35334 ip community-list standard 2_60_243 permit 65000:2 0:60 0:243 ip community-list standard 2_81_180 permit 65000:2 0:81 0:180 ip community-list standard 2_90_162 permit 65000:2 0:90 0:162 ip community-list standard 2_108_135 permit 65000:2 0:108 0:135 route-map calculator permit 13721 match community 2_60_243 2_81_180 2_90_162 2_108_135 set community 0:14580 ip community-list standard 2_33_107 permit 65000:2 0:33 0:107 route-map calculator permit 13722 match community 2_33_107 set community 0:3531 ip community-list standard 2_202_256 permit 65000:2 0:202 0:256 route-map calculator permit 13723 match community 2_202_256 set community 0:51712 ip community-list standard 2_103_215 permit 65000:2 0:103 0:215 route-map calculator permit 13724 match community 2_103_215 set community 0:22145 ip community-list standard 2_195_252 permit 65000:2 0:195 0:252 ip community-list standard 2_210_234 permit 65000:2 0:210 0:234 route-map calculator permit 13725 match community 2_195_252 2_210_234 set community 0:49140 ip community-list standard 2_75_199 permit 65000:2 0:75 0:199 route-map calculator permit 13726 match community 2_75_199 set community 0:14925 ip community-list standard 2_161_238 permit 65000:2 0:161 0:238 route-map calculator permit 13727 match community 2_161_238 set community 0:38318 ip community-list standard 2_179_203 permit 65000:2 0:179 0:203 route-map calculator permit 13728 match community 2_179_203 set community 0:36337 ip community-list standard 2_148_200 permit 65000:2 0:148 0:200 ip community-list standard 2_160_185 permit 65000:2 0:160 0:185 route-map calculator permit 13729 match community 2_148_200 2_160_185 set community 0:29600 ip community-list standard 2_211_230 permit 65000:2 0:211 0:230 route-map calculator permit 13730 match community 2_211_230 set community 0:48530 ip community-list standard 2_121_181 permit 65000:2 0:121 0:181 route-map calculator permit 13731 match community 2_121_181 set community 0:21901 ip community-list standard 2_7_163 permit 65000:2 0:7 0:163 route-map calculator permit 13732 match community 2_7_163 set community 0:1141 ip community-list standard 2_214_220 permit 65000:2 0:214 0:220 route-map calculator permit 13733 match community 2_214_220 set community 0:47080 ip community-list standard 2_94_143 permit 65000:2 0:94 0:143 route-map calculator permit 13734 match community 2_94_143 set community 0:13442 ip community-list standard 2_73_175 permit 65000:2 0:73 0:175 route-map calculator permit 13735 match community 2_73_175 set community 0:12775 ip community-list standard 2_83_199 permit 65000:2 0:83 0:199 route-map calculator permit 13736 match community 2_83_199 set community 0:16517 ip community-list standard 2_111_187 permit 65000:2 0:111 0:187 route-map calculator permit 13737 match community 2_111_187 set community 0:20757 ip community-list standard 2_7_224 permit 65000:2 0:7 0:224 ip community-list standard 2_8_196 permit 65000:2 0:8 0:196 ip community-list standard 2_14_112 permit 65000:2 0:14 0:112 ip community-list standard 2_16_98 permit 65000:2 0:16 0:98 ip community-list standard 2_28_56 permit 65000:2 0:28 0:56 ip community-list standard 2_32_49 permit 65000:2 0:32 0:49 route-map calculator permit 13738 match community 2_7_224 2_8_196 2_14_112 2_16_98 2_28_56 set community 0:1568 route-map calculator permit 13739 match community 2_32_49 set community 0:1568 ip community-list standard 2_71_237 permit 65000:2 0:71 0:237 ip community-list standard 2_79_213 permit 65000:2 0:79 0:213 route-map calculator permit 13740 match community 2_71_237 2_79_213 set community 0:16827 ip community-list standard 2_181_250 permit 65000:2 0:181 0:250 route-map calculator permit 13741 match community 2_181_250 set community 0:45250 ip community-list standard 2_81_220 permit 65000:2 0:81 0:220 ip community-list standard 2_90_198 permit 65000:2 0:90 0:198 ip community-list standard 2_99_180 permit 65000:2 0:99 0:180 ip community-list standard 2_108_165 permit 65000:2 0:108 0:165 ip community-list standard 2_110_162 permit 65000:2 0:110 0:162 ip community-list standard 2_132_135 permit 65000:2 0:132 0:135 route-map calculator permit 13742 match community 2_81_220 2_90_198 2_99_180 2_108_165 2_110_162 set community 0:17820 route-map calculator permit 13743 match community 2_132_135 set community 0:17820 ip community-list standard 2_203_219 permit 65000:2 0:203 0:219 route-map calculator permit 13744 match community 2_203_219 set community 0:44457 ip community-list standard 2_47_133 permit 65000:2 0:47 0:133 route-map calculator permit 13745 match community 2_47_133 set community 0:6251 ip community-list standard 1_1_213 permit 65000:1 0:1 0:213 ip community-list standard 2_1_214 permit 65000:2 0:1 0:214 ip community-list standard 2_2_107 permit 65000:2 0:2 0:107 ip community-list standard 1_2_212 permit 65000:1 0:2 0:212 ip community-list standard 1_3_211 permit 65000:1 0:3 0:211 ip community-list standard 1_4_210 permit 65000:1 0:4 0:210 ip community-list standard 1_5_209 permit 65000:1 0:5 0:209 ip community-list standard 1_6_208 permit 65000:1 0:6 0:208 ip community-list standard 1_7_207 permit 65000:1 0:7 0:207 ip community-list standard 1_8_206 permit 65000:1 0:8 0:206 ip community-list standard 1_9_205 permit 65000:1 0:9 0:205 ip community-list standard 1_10_204 permit 65000:1 0:10 0:204 ip community-list standard 1_11_203 permit 65000:1 0:11 0:203 ip community-list standard 1_12_202 permit 65000:1 0:12 0:202 ip community-list standard 1_13_201 permit 65000:1 0:13 0:201 ip community-list standard 1_14_200 permit 65000:1 0:14 0:200 ip community-list standard 1_15_199 permit 65000:1 0:15 0:199 ip community-list standard 1_16_198 permit 65000:1 0:16 0:198 ip community-list standard 1_17_197 permit 65000:1 0:17 0:197 ip community-list standard 1_18_196 permit 65000:1 0:18 0:196 ip community-list standard 1_19_195 permit 65000:1 0:19 0:195 ip community-list standard 1_20_194 permit 65000:1 0:20 0:194 ip community-list standard 1_21_193 permit 65000:1 0:21 0:193 ip community-list standard 1_22_192 permit 65000:1 0:22 0:192 ip community-list standard 1_23_191 permit 65000:1 0:23 0:191 ip community-list standard 1_24_190 permit 65000:1 0:24 0:190 ip community-list standard 1_25_189 permit 65000:1 0:25 0:189 ip community-list standard 1_26_188 permit 65000:1 0:26 0:188 ip community-list standard 1_27_187 permit 65000:1 0:27 0:187 ip community-list standard 1_28_186 permit 65000:1 0:28 0:186 ip community-list standard 1_29_185 permit 65000:1 0:29 0:185 ip community-list standard 1_30_184 permit 65000:1 0:30 0:184 ip community-list standard 1_31_183 permit 65000:1 0:31 0:183 ip community-list standard 1_32_182 permit 65000:1 0:32 0:182 ip community-list standard 1_33_181 permit 65000:1 0:33 0:181 ip community-list standard 1_34_180 permit 65000:1 0:34 0:180 ip community-list standard 1_35_179 permit 65000:1 0:35 0:179 ip community-list standard 1_36_178 permit 65000:1 0:36 0:178 ip community-list standard 1_37_177 permit 65000:1 0:37 0:177 ip community-list standard 1_38_176 permit 65000:1 0:38 0:176 ip community-list standard 1_39_175 permit 65000:1 0:39 0:175 ip community-list standard 1_40_174 permit 65000:1 0:40 0:174 ip community-list standard 1_41_173 permit 65000:1 0:41 0:173 ip community-list standard 1_42_172 permit 65000:1 0:42 0:172 ip community-list standard 1_43_171 permit 65000:1 0:43 0:171 ip community-list standard 1_44_170 permit 65000:1 0:44 0:170 ip community-list standard 1_45_169 permit 65000:1 0:45 0:169 ip community-list standard 1_46_168 permit 65000:1 0:46 0:168 ip community-list standard 1_47_167 permit 65000:1 0:47 0:167 ip community-list standard 1_48_166 permit 65000:1 0:48 0:166 ip community-list standard 1_49_165 permit 65000:1 0:49 0:165 ip community-list standard 1_50_164 permit 65000:1 0:50 0:164 ip community-list standard 1_51_163 permit 65000:1 0:51 0:163 ip community-list standard 1_52_162 permit 65000:1 0:52 0:162 ip community-list standard 1_53_161 permit 65000:1 0:53 0:161 ip community-list standard 1_54_160 permit 65000:1 0:54 0:160 ip community-list standard 1_55_159 permit 65000:1 0:55 0:159 ip community-list standard 1_56_158 permit 65000:1 0:56 0:158 ip community-list standard 1_57_157 permit 65000:1 0:57 0:157 ip community-list standard 1_58_156 permit 65000:1 0:58 0:156 ip community-list standard 1_59_155 permit 65000:1 0:59 0:155 ip community-list standard 1_60_154 permit 65000:1 0:60 0:154 ip community-list standard 1_61_153 permit 65000:1 0:61 0:153 ip community-list standard 1_62_152 permit 65000:1 0:62 0:152 ip community-list standard 1_63_151 permit 65000:1 0:63 0:151 ip community-list standard 1_64_150 permit 65000:1 0:64 0:150 ip community-list standard 1_65_149 permit 65000:1 0:65 0:149 ip community-list standard 1_66_148 permit 65000:1 0:66 0:148 ip community-list standard 1_67_147 permit 65000:1 0:67 0:147 ip community-list standard 1_68_146 permit 65000:1 0:68 0:146 ip community-list standard 1_69_145 permit 65000:1 0:69 0:145 ip community-list standard 1_70_144 permit 65000:1 0:70 0:144 ip community-list standard 1_71_143 permit 65000:1 0:71 0:143 ip community-list standard 1_72_142 permit 65000:1 0:72 0:142 ip community-list standard 1_73_141 permit 65000:1 0:73 0:141 ip community-list standard 1_74_140 permit 65000:1 0:74 0:140 ip community-list standard 1_75_139 permit 65000:1 0:75 0:139 ip community-list standard 1_76_138 permit 65000:1 0:76 0:138 ip community-list standard 1_77_137 permit 65000:1 0:77 0:137 ip community-list standard 1_78_136 permit 65000:1 0:78 0:136 ip community-list standard 1_79_135 permit 65000:1 0:79 0:135 ip community-list standard 1_80_134 permit 65000:1 0:80 0:134 ip community-list standard 1_81_133 permit 65000:1 0:81 0:133 ip community-list standard 1_82_132 permit 65000:1 0:82 0:132 ip community-list standard 1_83_131 permit 65000:1 0:83 0:131 ip community-list standard 1_84_130 permit 65000:1 0:84 0:130 ip community-list standard 1_85_129 permit 65000:1 0:85 0:129 ip community-list standard 1_86_128 permit 65000:1 0:86 0:128 ip community-list standard 1_87_127 permit 65000:1 0:87 0:127 ip community-list standard 1_88_126 permit 65000:1 0:88 0:126 ip community-list standard 1_89_125 permit 65000:1 0:89 0:125 ip community-list standard 1_90_124 permit 65000:1 0:90 0:124 ip community-list standard 1_91_123 permit 65000:1 0:91 0:123 ip community-list standard 1_92_122 permit 65000:1 0:92 0:122 ip community-list standard 1_93_121 permit 65000:1 0:93 0:121 ip community-list standard 1_94_120 permit 65000:1 0:94 0:120 ip community-list standard 1_95_119 permit 65000:1 0:95 0:119 ip community-list standard 1_96_118 permit 65000:1 0:96 0:118 ip community-list standard 1_97_117 permit 65000:1 0:97 0:117 ip community-list standard 1_98_116 permit 65000:1 0:98 0:116 ip community-list standard 1_99_115 permit 65000:1 0:99 0:115 ip community-list standard 1_100_114 permit 65000:1 0:100 0:114 ip community-list standard 1_101_113 permit 65000:1 0:101 0:113 ip community-list standard 1_102_112 permit 65000:1 0:102 0:112 ip community-list standard 1_103_111 permit 65000:1 0:103 0:111 ip community-list standard 1_104_110 permit 65000:1 0:104 0:110 ip community-list standard 1_105_109 permit 65000:1 0:105 0:109 ip community-list standard 1_106_108 permit 65000:1 0:106 0:108 ip community-list standard 1_107_107 permit 65000:1 0:107 0:107 ip community-list expanded c214 permit 1 ^65000:4_0:214_0:1$ ip community-list expanded c214 permit 2 ^65000:3_0:215_0:1$ ip community-list expanded c214 permit 3 ^65000:3_0:216_0:2$ ip community-list expanded c214 permit 4 ^65000:3_0:217_0:3$ ip community-list expanded c214 permit 5 ^65000:3_0:218_0:4$ ip community-list expanded c214 permit 6 ^65000:3_0:219_0:5$ ip community-list expanded c214 permit 7 ^65000:3_0:220_0:6$ ip community-list expanded c214 permit 8 ^65000:3_0:221_0:7$ ip community-list expanded c214 permit 9 ^65000:3_0:222_0:8$ ip community-list expanded c214 permit 10 ^65000:3_0:223_0:9$ ip community-list expanded c214 permit 11 ^65000:3_0:224_0:10$ ip community-list expanded c214 permit 12 ^65000:3_0:225_0:11$ ip community-list expanded c214 permit 13 ^65000:3_0:226_0:12$ ip community-list expanded c214 permit 14 ^65000:3_0:227_0:13$ ip community-list expanded c214 permit 15 ^65000:3_0:228_0:14$ ip community-list expanded c214 permit 16 ^65000:3_0:229_0:15$ ip community-list expanded c214 permit 17 ^65000:3_0:230_0:16$ ip community-list expanded c214 permit 18 ^65000:3_0:231_0:17$ ip community-list expanded c214 permit 19 ^65000:3_0:232_0:18$ ip community-list expanded c214 permit 20 ^65000:3_0:233_0:19$ ip community-list expanded c214 permit 21 ^65000:3_0:234_0:20$ ip community-list expanded c214 permit 22 ^65000:3_0:235_0:21$ ip community-list expanded c214 permit 23 ^65000:3_0:236_0:22$ ip community-list expanded c214 permit 24 ^65000:3_0:237_0:23$ ip community-list expanded c214 permit 25 ^65000:3_0:238_0:24$ ip community-list expanded c214 permit 26 ^65000:3_0:239_0:25$ ip community-list expanded c214 permit 27 ^65000:3_0:240_0:26$ ip community-list expanded c214 permit 28 ^65000:3_0:241_0:27$ ip community-list expanded c214 permit 29 ^65000:3_0:242_0:28$ ip community-list expanded c214 permit 30 ^65000:3_0:243_0:29$ ip community-list expanded c214 permit 31 ^65000:3_0:244_0:30$ ip community-list expanded c214 permit 32 ^65000:3_0:245_0:31$ ip community-list expanded c214 permit 33 ^65000:3_0:246_0:32$ ip community-list expanded c214 permit 34 ^65000:3_0:247_0:33$ ip community-list expanded c214 permit 35 ^65000:3_0:248_0:34$ ip community-list expanded c214 permit 36 ^65000:3_0:249_0:35$ ip community-list expanded c214 permit 37 ^65000:3_0:250_0:36$ ip community-list expanded c214 permit 38 ^65000:3_0:251_0:37$ ip community-list expanded c214 permit 39 ^65000:3_0:252_0:38$ ip community-list expanded c214 permit 40 ^65000:3_0:253_0:39$ ip community-list expanded c214 permit 41 ^65000:3_0:254_0:40$ ip community-list expanded c214 permit 42 ^65000:3_0:255_0:41$ ip community-list expanded c214 permit 43 ^65000:3_0:256_0:42$ route-map calculator permit 13746 match community 1_1_213 2_1_214 2_2_107 1_2_212 1_3_211 set community 0:214 route-map calculator permit 13747 match community 1_4_210 1_5_209 1_6_208 1_7_207 1_8_206 set community 0:214 route-map calculator permit 13748 match community 1_9_205 1_10_204 1_11_203 1_12_202 1_13_201 set community 0:214 route-map calculator permit 13749 match community 1_14_200 1_15_199 1_16_198 1_17_197 1_18_196 set community 0:214 route-map calculator permit 13750 match community 1_19_195 1_20_194 1_21_193 1_22_192 1_23_191 set community 0:214 route-map calculator permit 13751 match community 1_24_190 1_25_189 1_26_188 1_27_187 1_28_186 set community 0:214 route-map calculator permit 13752 match community 1_29_185 1_30_184 1_31_183 1_32_182 1_33_181 set community 0:214 route-map calculator permit 13753 match community 1_34_180 1_35_179 1_36_178 1_37_177 1_38_176 set community 0:214 route-map calculator permit 13754 match community 1_39_175 1_40_174 1_41_173 1_42_172 1_43_171 set community 0:214 route-map calculator permit 13755 match community 1_44_170 1_45_169 1_46_168 1_47_167 1_48_166 set community 0:214 route-map calculator permit 13756 match community 1_49_165 1_50_164 1_51_163 1_52_162 1_53_161 set community 0:214 route-map calculator permit 13757 match community 1_54_160 1_55_159 1_56_158 1_57_157 1_58_156 set community 0:214 route-map calculator permit 13758 match community 1_59_155 1_60_154 1_61_153 1_62_152 1_63_151 set community 0:214 route-map calculator permit 13759 match community 1_64_150 1_65_149 1_66_148 1_67_147 1_68_146 set community 0:214 route-map calculator permit 13760 match community 1_69_145 1_70_144 1_71_143 1_72_142 1_73_141 set community 0:214 route-map calculator permit 13761 match community 1_74_140 1_75_139 1_76_138 1_77_137 1_78_136 set community 0:214 route-map calculator permit 13762 match community 1_79_135 1_80_134 1_81_133 1_82_132 1_83_131 set community 0:214 route-map calculator permit 13763 match community 1_84_130 1_85_129 1_86_128 1_87_127 1_88_126 set community 0:214 route-map calculator permit 13764 match community 1_89_125 1_90_124 1_91_123 1_92_122 1_93_121 set community 0:214 route-map calculator permit 13765 match community 1_94_120 1_95_119 1_96_118 1_97_117 1_98_116 set community 0:214 route-map calculator permit 13766 match community 1_99_115 1_100_114 1_101_113 1_102_112 1_103_111 set community 0:214 route-map calculator permit 13767 match community 1_104_110 1_105_109 1_106_108 1_107_107 c4_214_1 set community 0:214 route-map calculator permit 13768 match community c3_215_1 c3_216_2 c3_217_3 c3_218_4 c3_219_5 set community 0:214 route-map calculator permit 13769 match community c3_220_6 c3_221_7 c3_222_8 c3_223_9 c3_224_10 set community 0:214 route-map calculator permit 13770 match community c3_225_11 c3_226_12 c3_227_13 c3_228_14 c3_229_15 set community 0:214 route-map calculator permit 13771 match community c3_230_16 c3_231_17 c3_232_18 c3_233_19 c3_234_20 set community 0:214 route-map calculator permit 13772 match community c3_235_21 c3_236_22 c3_237_23 c3_238_24 c3_239_25 set community 0:214 route-map calculator permit 13773 match community c3_240_26 c3_241_27 c3_242_28 c3_243_29 c3_244_30 set community 0:214 route-map calculator permit 13774 match community c3_245_31 c3_246_32 c3_247_33 c3_248_34 c3_249_35 set community 0:214 route-map calculator permit 13775 match community c3_250_36 c3_251_37 c3_252_38 c3_253_39 c3_254_40 set community 0:214 route-map calculator permit 13776 match community c3_255_41 c3_256_42 set community 0:214 ip community-list standard 2_171_199 permit 65000:2 0:171 0:199 route-map calculator permit 13777 match community 2_171_199 set community 0:34029 ip community-list standard 2_89_226 permit 65000:2 0:89 0:226 ip community-list standard 2_113_178 permit 65000:2 0:113 0:178 route-map calculator permit 13778 match community 2_89_226 2_113_178 set community 0:20114 ip community-list standard 2_37_86 permit 65000:2 0:37 0:86 ip community-list standard 2_43_74 permit 65000:2 0:43 0:74 route-map calculator permit 13779 match community 2_37_86 2_43_74 set community 0:3182 ip community-list standard 2_24_229 permit 65000:2 0:24 0:229 route-map calculator permit 13780 match community 2_24_229 set community 0:5496 ip community-list standard 2_130_151 permit 65000:2 0:130 0:151 route-map calculator permit 13781 match community 2_130_151 set community 0:19630 ip community-list standard 2_33_240 permit 65000:2 0:33 0:240 ip community-list standard 2_36_220 permit 65000:2 0:36 0:220 ip community-list standard 2_40_198 permit 65000:2 0:40 0:198 ip community-list standard 2_44_180 permit 65000:2 0:44 0:180 ip community-list standard 2_45_176 permit 65000:2 0:45 0:176 ip community-list standard 2_48_165 permit 65000:2 0:48 0:165 ip community-list standard 2_55_144 permit 65000:2 0:55 0:144 ip community-list standard 2_60_132 permit 65000:2 0:60 0:132 ip community-list standard 2_66_120 permit 65000:2 0:66 0:120 ip community-list standard 2_72_110 permit 65000:2 0:72 0:110 ip community-list standard 2_80_99 permit 65000:2 0:80 0:99 ip community-list standard 2_88_90 permit 65000:2 0:88 0:90 route-map calculator permit 13782 match community 2_33_240 2_36_220 2_40_198 2_44_180 2_45_176 set community 0:7920 route-map calculator permit 13783 match community 2_48_165 2_55_144 2_60_132 2_66_120 2_72_110 set community 0:7920 route-map calculator permit 13784 match community 2_80_99 2_88_90 set community 0:7920 ip community-list standard 2_148_193 permit 65000:2 0:148 0:193 route-map calculator permit 13785 match community 2_148_193 set community 0:28564 ip community-list standard 1_1_103 permit 65000:1 0:1 0:103 ip community-list standard 2_1_104 permit 65000:2 0:1 0:104 ip community-list standard 2_2_52 permit 65000:2 0:2 0:52 ip community-list standard 1_2_102 permit 65000:1 0:2 0:102 ip community-list standard 1_3_101 permit 65000:1 0:3 0:101 ip community-list standard 2_4_26 permit 65000:2 0:4 0:26 ip community-list standard 1_4_100 permit 65000:1 0:4 0:100 ip community-list standard 1_5_99 permit 65000:1 0:5 0:99 ip community-list standard 1_6_98 permit 65000:1 0:6 0:98 ip community-list standard 1_7_97 permit 65000:1 0:7 0:97 ip community-list standard 2_8_13 permit 65000:2 0:8 0:13 ip community-list standard 1_8_96 permit 65000:1 0:8 0:96 ip community-list standard 1_9_95 permit 65000:1 0:9 0:95 ip community-list standard 1_10_94 permit 65000:1 0:10 0:94 ip community-list standard 1_11_93 permit 65000:1 0:11 0:93 ip community-list standard 1_12_92 permit 65000:1 0:12 0:92 ip community-list standard 1_13_91 permit 65000:1 0:13 0:91 ip community-list standard 1_14_90 permit 65000:1 0:14 0:90 ip community-list standard 1_15_89 permit 65000:1 0:15 0:89 ip community-list standard 1_16_88 permit 65000:1 0:16 0:88 ip community-list standard 1_17_87 permit 65000:1 0:17 0:87 ip community-list standard 1_18_86 permit 65000:1 0:18 0:86 ip community-list standard 1_19_85 permit 65000:1 0:19 0:85 ip community-list standard 1_20_84 permit 65000:1 0:20 0:84 ip community-list standard 1_21_83 permit 65000:1 0:21 0:83 ip community-list standard 1_22_82 permit 65000:1 0:22 0:82 ip community-list standard 1_23_81 permit 65000:1 0:23 0:81 ip community-list standard 1_24_80 permit 65000:1 0:24 0:80 ip community-list standard 1_25_79 permit 65000:1 0:25 0:79 ip community-list standard 1_26_78 permit 65000:1 0:26 0:78 ip community-list standard 1_27_77 permit 65000:1 0:27 0:77 ip community-list standard 1_28_76 permit 65000:1 0:28 0:76 ip community-list standard 1_29_75 permit 65000:1 0:29 0:75 ip community-list standard 1_30_74 permit 65000:1 0:30 0:74 ip community-list standard 1_31_73 permit 65000:1 0:31 0:73 ip community-list standard 1_32_72 permit 65000:1 0:32 0:72 ip community-list standard 1_33_71 permit 65000:1 0:33 0:71 ip community-list standard 1_34_70 permit 65000:1 0:34 0:70 ip community-list standard 1_35_69 permit 65000:1 0:35 0:69 ip community-list standard 1_36_68 permit 65000:1 0:36 0:68 ip community-list standard 1_37_67 permit 65000:1 0:37 0:67 ip community-list standard 1_38_66 permit 65000:1 0:38 0:66 ip community-list standard 1_39_65 permit 65000:1 0:39 0:65 ip community-list standard 1_40_64 permit 65000:1 0:40 0:64 ip community-list standard 1_41_63 permit 65000:1 0:41 0:63 ip community-list standard 1_42_62 permit 65000:1 0:42 0:62 ip community-list standard 1_43_61 permit 65000:1 0:43 0:61 ip community-list standard 1_44_60 permit 65000:1 0:44 0:60 ip community-list standard 1_45_59 permit 65000:1 0:45 0:59 ip community-list standard 1_46_58 permit 65000:1 0:46 0:58 ip community-list standard 1_47_57 permit 65000:1 0:47 0:57 ip community-list standard 1_48_56 permit 65000:1 0:48 0:56 ip community-list standard 1_49_55 permit 65000:1 0:49 0:55 ip community-list standard 1_50_54 permit 65000:1 0:50 0:54 ip community-list standard 1_51_53 permit 65000:1 0:51 0:53 ip community-list standard 1_52_52 permit 65000:1 0:52 0:52 ip community-list expanded c104 permit 1 ^65000:4_0:104_0:1$ ip community-list expanded c104 permit 2 ^65000:3_0:105_0:1$ ip community-list expanded c104 permit 3 ^65000:3_0:106_0:2$ ip community-list expanded c104 permit 4 ^65000:3_0:107_0:3$ ip community-list expanded c104 permit 5 ^65000:3_0:108_0:4$ ip community-list expanded c104 permit 6 ^65000:3_0:109_0:5$ ip community-list expanded c104 permit 7 ^65000:3_0:110_0:6$ ip community-list expanded c104 permit 8 ^65000:3_0:111_0:7$ ip community-list expanded c104 permit 9 ^65000:3_0:112_0:8$ ip community-list expanded c104 permit 10 ^65000:3_0:113_0:9$ ip community-list expanded c104 permit 11 ^65000:3_0:114_0:10$ ip community-list expanded c104 permit 12 ^65000:3_0:115_0:11$ ip community-list expanded c104 permit 13 ^65000:3_0:116_0:12$ ip community-list expanded c104 permit 14 ^65000:3_0:117_0:13$ ip community-list expanded c104 permit 15 ^65000:3_0:118_0:14$ ip community-list expanded c104 permit 16 ^65000:3_0:119_0:15$ ip community-list expanded c104 permit 17 ^65000:3_0:120_0:16$ ip community-list expanded c104 permit 18 ^65000:3_0:121_0:17$ ip community-list expanded c104 permit 19 ^65000:3_0:122_0:18$ ip community-list expanded c104 permit 20 ^65000:3_0:123_0:19$ ip community-list expanded c104 permit 21 ^65000:3_0:124_0:20$ ip community-list expanded c104 permit 22 ^65000:3_0:125_0:21$ ip community-list expanded c104 permit 23 ^65000:3_0:126_0:22$ ip community-list expanded c104 permit 24 ^65000:3_0:127_0:23$ ip community-list expanded c104 permit 25 ^65000:3_0:128_0:24$ ip community-list expanded c104 permit 26 ^65000:3_0:129_0:25$ ip community-list expanded c104 permit 27 ^65000:3_0:130_0:26$ ip community-list expanded c104 permit 28 ^65000:3_0:131_0:27$ ip community-list expanded c104 permit 29 ^65000:3_0:132_0:28$ ip community-list expanded c104 permit 30 ^65000:3_0:133_0:29$ ip community-list expanded c104 permit 31 ^65000:3_0:134_0:30$ ip community-list expanded c104 permit 32 ^65000:3_0:135_0:31$ ip community-list expanded c104 permit 33 ^65000:3_0:136_0:32$ ip community-list expanded c104 permit 34 ^65000:3_0:137_0:33$ ip community-list expanded c104 permit 35 ^65000:3_0:138_0:34$ ip community-list expanded c104 permit 36 ^65000:3_0:139_0:35$ ip community-list expanded c104 permit 37 ^65000:3_0:140_0:36$ ip community-list expanded c104 permit 38 ^65000:3_0:141_0:37$ ip community-list expanded c104 permit 39 ^65000:3_0:142_0:38$ ip community-list expanded c104 permit 40 ^65000:3_0:143_0:39$ ip community-list expanded c104 permit 41 ^65000:3_0:144_0:40$ ip community-list expanded c104 permit 42 ^65000:3_0:145_0:41$ ip community-list expanded c104 permit 43 ^65000:3_0:146_0:42$ ip community-list expanded c104 permit 44 ^65000:3_0:147_0:43$ ip community-list expanded c104 permit 45 ^65000:3_0:148_0:44$ ip community-list expanded c104 permit 46 ^65000:3_0:149_0:45$ ip community-list expanded c104 permit 47 ^65000:3_0:150_0:46$ ip community-list expanded c104 permit 48 ^65000:3_0:151_0:47$ ip community-list expanded c104 permit 49 ^65000:3_0:152_0:48$ ip community-list expanded c104 permit 50 ^65000:3_0:153_0:49$ ip community-list expanded c104 permit 51 ^65000:3_0:154_0:50$ ip community-list expanded c104 permit 52 ^65000:3_0:155_0:51$ ip community-list expanded c104 permit 53 ^65000:3_0:156_0:52$ ip community-list expanded c104 permit 54 ^65000:3_0:157_0:53$ ip community-list expanded c104 permit 55 ^65000:3_0:158_0:54$ ip community-list expanded c104 permit 56 ^65000:3_0:159_0:55$ ip community-list expanded c104 permit 57 ^65000:3_0:160_0:56$ ip community-list expanded c104 permit 58 ^65000:3_0:161_0:57$ ip community-list expanded c104 permit 59 ^65000:3_0:162_0:58$ ip community-list expanded c104 permit 60 ^65000:3_0:163_0:59$ ip community-list expanded c104 permit 61 ^65000:3_0:164_0:60$ ip community-list expanded c104 permit 62 ^65000:3_0:165_0:61$ ip community-list expanded c104 permit 63 ^65000:3_0:166_0:62$ ip community-list expanded c104 permit 64 ^65000:3_0:167_0:63$ ip community-list expanded c104 permit 65 ^65000:3_0:168_0:64$ ip community-list expanded c104 permit 66 ^65000:3_0:169_0:65$ ip community-list expanded c104 permit 67 ^65000:3_0:170_0:66$ ip community-list expanded c104 permit 68 ^65000:3_0:171_0:67$ ip community-list expanded c104 permit 69 ^65000:3_0:172_0:68$ ip community-list expanded c104 permit 70 ^65000:3_0:173_0:69$ ip community-list expanded c104 permit 71 ^65000:3_0:174_0:70$ ip community-list expanded c104 permit 72 ^65000:3_0:175_0:71$ ip community-list expanded c104 permit 73 ^65000:3_0:176_0:72$ ip community-list expanded c104 permit 74 ^65000:3_0:177_0:73$ ip community-list expanded c104 permit 75 ^65000:3_0:178_0:74$ ip community-list expanded c104 permit 76 ^65000:3_0:179_0:75$ ip community-list expanded c104 permit 77 ^65000:3_0:180_0:76$ ip community-list expanded c104 permit 78 ^65000:3_0:181_0:77$ ip community-list expanded c104 permit 79 ^65000:3_0:182_0:78$ ip community-list expanded c104 permit 80 ^65000:3_0:183_0:79$ ip community-list expanded c104 permit 81 ^65000:3_0:184_0:80$ ip community-list expanded c104 permit 82 ^65000:3_0:185_0:81$ ip community-list expanded c104 permit 83 ^65000:3_0:186_0:82$ ip community-list expanded c104 permit 84 ^65000:3_0:187_0:83$ ip community-list expanded c104 permit 85 ^65000:3_0:188_0:84$ ip community-list expanded c104 permit 86 ^65000:3_0:189_0:85$ ip community-list expanded c104 permit 87 ^65000:3_0:190_0:86$ ip community-list expanded c104 permit 88 ^65000:3_0:191_0:87$ ip community-list expanded c104 permit 89 ^65000:3_0:192_0:88$ ip community-list expanded c104 permit 90 ^65000:3_0:193_0:89$ ip community-list expanded c104 permit 91 ^65000:3_0:194_0:90$ ip community-list expanded c104 permit 92 ^65000:3_0:195_0:91$ ip community-list expanded c104 permit 93 ^65000:3_0:196_0:92$ ip community-list expanded c104 permit 94 ^65000:3_0:197_0:93$ ip community-list expanded c104 permit 95 ^65000:3_0:198_0:94$ ip community-list expanded c104 permit 96 ^65000:3_0:199_0:95$ ip community-list expanded c104 permit 97 ^65000:3_0:200_0:96$ ip community-list expanded c104 permit 98 ^65000:3_0:201_0:97$ ip community-list expanded c104 permit 99 ^65000:3_0:202_0:98$ ip community-list expanded c104 permit 100 ^65000:3_0:203_0:99$ ip community-list expanded c104 permit 101 ^65000:3_0:204_0:100$ ip community-list expanded c104 permit 102 ^65000:3_0:205_0:101$ ip community-list expanded c104 permit 103 ^65000:3_0:206_0:102$ ip community-list expanded c104 permit 104 ^65000:3_0:207_0:103$ ip community-list expanded c104 permit 105 ^65000:4_0:208_0:2$ ip community-list expanded c104 permit 106 ^65000:3_0:208_0:104$ ip community-list expanded c104 permit 107 ^65000:4_0:209_0:2$ ip community-list expanded c104 permit 108 ^65000:3_0:209_0:105$ ip community-list expanded c104 permit 109 ^65000:3_0:210_0:106$ ip community-list expanded c104 permit 110 ^65000:3_0:211_0:107$ ip community-list expanded c104 permit 111 ^65000:3_0:212_0:108$ ip community-list expanded c104 permit 112 ^65000:3_0:213_0:109$ ip community-list expanded c104 permit 113 ^65000:3_0:214_0:110$ ip community-list expanded c104 permit 114 ^65000:3_0:215_0:111$ ip community-list expanded c104 permit 115 ^65000:3_0:216_0:112$ ip community-list expanded c104 permit 116 ^65000:3_0:217_0:113$ ip community-list expanded c104 permit 117 ^65000:3_0:218_0:114$ ip community-list expanded c104 permit 118 ^65000:3_0:219_0:115$ ip community-list expanded c104 permit 119 ^65000:3_0:220_0:116$ ip community-list expanded c104 permit 120 ^65000:3_0:221_0:117$ ip community-list expanded c104 permit 121 ^65000:3_0:222_0:118$ ip community-list expanded c104 permit 122 ^65000:3_0:223_0:119$ ip community-list expanded c104 permit 123 ^65000:3_0:224_0:120$ ip community-list expanded c104 permit 124 ^65000:3_0:225_0:121$ ip community-list expanded c104 permit 125 ^65000:3_0:226_0:122$ ip community-list expanded c104 permit 126 ^65000:3_0:227_0:123$ ip community-list expanded c104 permit 127 ^65000:3_0:228_0:124$ ip community-list expanded c104 permit 128 ^65000:3_0:229_0:125$ ip community-list expanded c104 permit 129 ^65000:3_0:230_0:126$ ip community-list expanded c104 permit 130 ^65000:3_0:231_0:127$ ip community-list expanded c104 permit 131 ^65000:3_0:232_0:128$ ip community-list expanded c104 permit 132 ^65000:3_0:233_0:129$ ip community-list expanded c104 permit 133 ^65000:3_0:234_0:130$ ip community-list expanded c104 permit 134 ^65000:3_0:235_0:131$ ip community-list expanded c104 permit 135 ^65000:3_0:236_0:132$ ip community-list expanded c104 permit 136 ^65000:3_0:237_0:133$ ip community-list expanded c104 permit 137 ^65000:3_0:238_0:134$ ip community-list expanded c104 permit 138 ^65000:3_0:239_0:135$ ip community-list expanded c104 permit 139 ^65000:3_0:240_0:136$ ip community-list expanded c104 permit 140 ^65000:3_0:241_0:137$ ip community-list expanded c104 permit 141 ^65000:3_0:242_0:138$ ip community-list expanded c104 permit 142 ^65000:3_0:243_0:139$ ip community-list expanded c104 permit 143 ^65000:3_0:244_0:140$ ip community-list expanded c104 permit 144 ^65000:3_0:245_0:141$ ip community-list expanded c104 permit 145 ^65000:3_0:246_0:142$ ip community-list expanded c104 permit 146 ^65000:3_0:247_0:143$ ip community-list expanded c104 permit 147 ^65000:3_0:248_0:144$ ip community-list expanded c104 permit 148 ^65000:3_0:249_0:145$ ip community-list expanded c104 permit 149 ^65000:3_0:250_0:146$ ip community-list expanded c104 permit 150 ^65000:3_0:251_0:147$ ip community-list expanded c104 permit 151 ^65000:3_0:252_0:148$ ip community-list expanded c104 permit 152 ^65000:3_0:253_0:149$ ip community-list expanded c104 permit 153 ^65000:3_0:254_0:150$ ip community-list expanded c104 permit 154 ^65000:3_0:255_0:151$ ip community-list expanded c104 permit 155 ^65000:3_0:256_0:152$ route-map calculator permit 13786 match community 1_1_103 2_1_104 2_2_52 1_2_102 1_3_101 set community 0:104 route-map calculator permit 13787 match community 2_4_26 1_4_100 1_5_99 1_6_98 1_7_97 set community 0:104 route-map calculator permit 13788 match community 2_8_13 1_8_96 1_9_95 1_10_94 1_11_93 set community 0:104 route-map calculator permit 13789 match community 1_12_92 1_13_91 1_14_90 1_15_89 1_16_88 set community 0:104 route-map calculator permit 13790 match community 1_17_87 1_18_86 1_19_85 1_20_84 1_21_83 set community 0:104 route-map calculator permit 13791 match community 1_22_82 1_23_81 1_24_80 1_25_79 1_26_78 set community 0:104 route-map calculator permit 13792 match community 1_27_77 1_28_76 1_29_75 1_30_74 1_31_73 set community 0:104 route-map calculator permit 13793 match community 1_32_72 1_33_71 1_34_70 1_35_69 1_36_68 set community 0:104 route-map calculator permit 13794 match community 1_37_67 1_38_66 1_39_65 1_40_64 1_41_63 set community 0:104 route-map calculator permit 13795 match community 1_42_62 1_43_61 1_44_60 1_45_59 1_46_58 set community 0:104 route-map calculator permit 13796 match community 1_47_57 1_48_56 1_49_55 1_50_54 1_51_53 set community 0:104 route-map calculator permit 13797 match community 1_52_52 c4_104_1 c3_105_1 c3_106_2 c3_107_3 set community 0:104 route-map calculator permit 13798 match community c3_108_4 c3_109_5 c3_110_6 c3_111_7 c3_112_8 set community 0:104 route-map calculator permit 13799 match community c3_113_9 c3_114_10 c3_115_11 c3_116_12 c3_117_13 set community 0:104 route-map calculator permit 13800 match community c3_118_14 c3_119_15 c3_120_16 c3_121_17 c3_122_18 set community 0:104 route-map calculator permit 13801 match community c3_123_19 c3_124_20 c3_125_21 c3_126_22 c3_127_23 set community 0:104 route-map calculator permit 13802 match community c3_128_24 c3_129_25 c3_130_26 c3_131_27 c3_132_28 set community 0:104 route-map calculator permit 13803 match community c3_133_29 c3_134_30 c3_135_31 c3_136_32 c3_137_33 set community 0:104 route-map calculator permit 13804 match community c3_138_34 c3_139_35 c3_140_36 c3_141_37 c3_142_38 set community 0:104 route-map calculator permit 13805 match community c3_143_39 c3_144_40 c3_145_41 c3_146_42 c3_147_43 set community 0:104 route-map calculator permit 13806 match community c3_148_44 c3_149_45 c3_150_46 c3_151_47 c3_152_48 set community 0:104 route-map calculator permit 13807 match community c3_153_49 c3_154_50 c3_155_51 c3_156_52 c3_157_53 set community 0:104 route-map calculator permit 13808 match community c3_158_54 c3_159_55 c3_160_56 c3_161_57 c3_162_58 set community 0:104 route-map calculator permit 13809 match community c3_163_59 c3_164_60 c3_165_61 c3_166_62 c3_167_63 set community 0:104 route-map calculator permit 13810 match community c3_168_64 c3_169_65 c3_170_66 c3_171_67 c3_172_68 set community 0:104 route-map calculator permit 13811 match community c3_173_69 c3_174_70 c3_175_71 c3_176_72 c3_177_73 set community 0:104 route-map calculator permit 13812 match community c3_178_74 c3_179_75 c3_180_76 c3_181_77 c3_182_78 set community 0:104 route-map calculator permit 13813 match community c3_183_79 c3_184_80 c3_185_81 c3_186_82 c3_187_83 set community 0:104 route-map calculator permit 13814 match community c3_188_84 c3_189_85 c3_190_86 c3_191_87 c3_192_88 set community 0:104 route-map calculator permit 13815 match community c3_193_89 c3_194_90 c3_195_91 c3_196_92 c3_197_93 set community 0:104 route-map calculator permit 13816 match community c3_198_94 c3_199_95 c3_200_96 c3_201_97 c3_202_98 set community 0:104 route-map calculator permit 13817 match community c3_203_99 c3_204_100 c3_205_101 c3_206_102 c3_207_103 set community 0:104 route-map calculator permit 13818 match community c4_208_2 c3_208_104 c4_209_2 c3_209_105 c3_210_106 set community 0:104 route-map calculator permit 13819 match community c3_211_107 c3_212_108 c3_213_109 c3_214_110 c3_215_111 set community 0:104 route-map calculator permit 13820 match community c3_216_112 c3_217_113 c3_218_114 c3_219_115 c3_220_116 set community 0:104 route-map calculator permit 13821 match community c3_221_117 c3_222_118 c3_223_119 c3_224_120 c3_225_121 set community 0:104 route-map calculator permit 13822 match community c3_226_122 c3_227_123 c3_228_124 c3_229_125 c3_230_126 set community 0:104 route-map calculator permit 13823 match community c3_231_127 c3_232_128 c3_233_129 c3_234_130 c3_235_131 set community 0:104 route-map calculator permit 13824 match community c3_236_132 c3_237_133 c3_238_134 c3_239_135 c3_240_136 set community 0:104 route-map calculator permit 13825 match community c3_241_137 c3_242_138 c3_243_139 c3_244_140 c3_245_141 set community 0:104 route-map calculator permit 13826 match community c3_246_142 c3_247_143 c3_248_144 c3_249_145 c3_250_146 set community 0:104 route-map calculator permit 13827 match community c3_251_147 c3_252_148 c3_253_149 c3_254_150 c3_255_151 set community 0:104 route-map calculator permit 13828 match community c3_256_152 set community 0:104 ip community-list standard 2_5_139 permit 65000:2 0:5 0:139 route-map calculator permit 13829 match community 2_5_139 set community 0:695 ip community-list standard 2_77_196 permit 65000:2 0:77 0:196 ip community-list standard 2_98_154 permit 65000:2 0:98 0:154 route-map calculator permit 13830 match community 2_77_196 2_98_154 set community 0:15092 ip community-list standard 2_52_206 permit 65000:2 0:52 0:206 ip community-list standard 2_103_104 permit 65000:2 0:103 0:104 route-map calculator permit 13831 match community 2_52_206 2_103_104 set community 0:10712 ip community-list standard 2_68_241 permit 65000:2 0:68 0:241 route-map calculator permit 13832 match community 2_68_241 set community 0:16388 ip community-list standard 2_178_202 permit 65000:2 0:178 0:202 route-map calculator permit 13833 match community 2_178_202 set community 0:35956 ip community-list standard 2_33_89 permit 65000:2 0:33 0:89 route-map calculator permit 13834 match community 2_33_89 set community 0:2937 ip community-list standard 2_139_157 permit 65000:2 0:139 0:157 route-map calculator permit 13835 match community 2_139_157 set community 0:21823 ip community-list standard 2_209_222 permit 65000:2 0:209 0:222 route-map calculator permit 13836 match community 2_209_222 set community 0:46398 ip community-list standard 2_108_250 permit 65000:2 0:108 0:250 ip community-list standard 2_120_225 permit 65000:2 0:120 0:225 ip community-list standard 2_125_216 permit 65000:2 0:125 0:216 ip community-list standard 2_135_200 permit 65000:2 0:135 0:200 ip community-list standard 2_150_180 permit 65000:2 0:150 0:180 route-map calculator permit 13837 match community 2_108_250 2_120_225 2_125_216 2_135_200 2_150_180 set community 0:27000 ip community-list standard 2_11_165 permit 65000:2 0:11 0:165 ip community-list standard 2_15_121 permit 65000:2 0:15 0:121 ip community-list standard 2_33_55 permit 65000:2 0:33 0:55 route-map calculator permit 13838 match community 2_11_165 2_15_121 2_33_55 set community 0:1815 ip community-list standard 2_76_244 permit 65000:2 0:76 0:244 ip community-list standard 2_122_152 permit 65000:2 0:122 0:152 route-map calculator permit 13839 match community 2_76_244 2_122_152 set community 0:18544 ip community-list standard 2_177_193 permit 65000:2 0:177 0:193 route-map calculator permit 13840 match community 2_177_193 set community 0:34161 ip community-list standard 2_43_204 permit 65000:2 0:43 0:204 ip community-list standard 2_51_172 permit 65000:2 0:51 0:172 ip community-list standard 2_68_129 permit 65000:2 0:68 0:129 ip community-list standard 2_86_102 permit 65000:2 0:86 0:102 route-map calculator permit 13841 match community 2_43_204 2_51_172 2_68_129 2_86_102 set community 0:8772 ip community-list standard 2_223_229 permit 65000:2 0:223 0:229 route-map calculator permit 13842 match community 2_223_229 set community 0:51067 ip community-list standard 2_133_199 permit 65000:2 0:133 0:199 route-map calculator permit 13843 match community 2_133_199 set community 0:26467 ip community-list standard 2_22_232 permit 65000:2 0:22 0:232 ip community-list standard 2_29_176 permit 65000:2 0:29 0:176 ip community-list standard 2_44_116 permit 65000:2 0:44 0:116 ip community-list standard 2_58_88 permit 65000:2 0:58 0:88 route-map calculator permit 13844 match community 2_22_232 2_29_176 2_44_116 2_58_88 set community 0:5104 ip community-list standard 2_71_166 permit 65000:2 0:71 0:166 ip community-list standard 2_83_142 permit 65000:2 0:83 0:142 route-map calculator permit 13845 match community 2_71_166 2_83_142 set community 0:11786 ip community-list standard 2_53_71 permit 65000:2 0:53 0:71 route-map calculator permit 13846 match community 2_53_71 set community 0:3763 ip community-list standard 2_3_256 permit 65000:2 0:3 0:256 ip community-list standard 2_4_192 permit 65000:2 0:4 0:192 ip community-list standard 2_6_128 permit 65000:2 0:6 0:128 ip community-list standard 2_8_96 permit 65000:2 0:8 0:96 ip community-list standard 2_12_64 permit 65000:2 0:12 0:64 ip community-list standard 2_16_48 permit 65000:2 0:16 0:48 ip community-list standard 2_24_32 permit 65000:2 0:24 0:32 route-map calculator permit 13847 match community 2_3_256 2_4_192 2_6_128 2_8_96 2_12_64 set community 0:768 route-map calculator permit 13848 match community 2_16_48 2_24_32 set community 0:768 ip community-list standard 2_70_226 permit 65000:2 0:70 0:226 ip community-list standard 2_113_140 permit 65000:2 0:113 0:140 route-map calculator permit 13849 match community 2_70_226 2_113_140 set community 0:15820 ip community-list standard 1_1_107 permit 65000:1 0:1 0:107 ip community-list standard 2_1_108 permit 65000:2 0:1 0:108 ip community-list standard 2_2_54 permit 65000:2 0:2 0:54 ip community-list standard 1_2_106 permit 65000:1 0:2 0:106 ip community-list standard 2_3_36 permit 65000:2 0:3 0:36 ip community-list standard 1_3_105 permit 65000:1 0:3 0:105 ip community-list standard 2_4_27 permit 65000:2 0:4 0:27 ip community-list standard 1_4_104 permit 65000:1 0:4 0:104 ip community-list standard 1_5_103 permit 65000:1 0:5 0:103 ip community-list standard 2_6_18 permit 65000:2 0:6 0:18 ip community-list standard 1_6_102 permit 65000:1 0:6 0:102 ip community-list standard 1_7_101 permit 65000:1 0:7 0:101 ip community-list standard 1_8_100 permit 65000:1 0:8 0:100 ip community-list standard 2_9_12 permit 65000:2 0:9 0:12 ip community-list standard 1_9_99 permit 65000:1 0:9 0:99 ip community-list standard 1_10_98 permit 65000:1 0:10 0:98 ip community-list standard 1_11_97 permit 65000:1 0:11 0:97 ip community-list standard 1_12_96 permit 65000:1 0:12 0:96 ip community-list standard 1_13_95 permit 65000:1 0:13 0:95 ip community-list standard 1_14_94 permit 65000:1 0:14 0:94 ip community-list standard 1_15_93 permit 65000:1 0:15 0:93 ip community-list standard 1_16_92 permit 65000:1 0:16 0:92 ip community-list standard 1_17_91 permit 65000:1 0:17 0:91 ip community-list standard 1_18_90 permit 65000:1 0:18 0:90 ip community-list standard 1_19_89 permit 65000:1 0:19 0:89 ip community-list standard 1_20_88 permit 65000:1 0:20 0:88 ip community-list standard 1_21_87 permit 65000:1 0:21 0:87 ip community-list standard 1_22_86 permit 65000:1 0:22 0:86 ip community-list standard 1_23_85 permit 65000:1 0:23 0:85 ip community-list standard 1_24_84 permit 65000:1 0:24 0:84 ip community-list standard 1_25_83 permit 65000:1 0:25 0:83 ip community-list standard 1_26_82 permit 65000:1 0:26 0:82 ip community-list standard 1_27_81 permit 65000:1 0:27 0:81 ip community-list standard 1_28_80 permit 65000:1 0:28 0:80 ip community-list standard 1_29_79 permit 65000:1 0:29 0:79 ip community-list standard 1_30_78 permit 65000:1 0:30 0:78 ip community-list standard 1_31_77 permit 65000:1 0:31 0:77 ip community-list standard 1_32_76 permit 65000:1 0:32 0:76 ip community-list standard 1_33_75 permit 65000:1 0:33 0:75 ip community-list standard 1_34_74 permit 65000:1 0:34 0:74 ip community-list standard 1_35_73 permit 65000:1 0:35 0:73 ip community-list standard 1_36_72 permit 65000:1 0:36 0:72 ip community-list standard 1_37_71 permit 65000:1 0:37 0:71 ip community-list standard 1_38_70 permit 65000:1 0:38 0:70 ip community-list standard 1_39_69 permit 65000:1 0:39 0:69 ip community-list standard 1_40_68 permit 65000:1 0:40 0:68 ip community-list standard 1_41_67 permit 65000:1 0:41 0:67 ip community-list standard 1_42_66 permit 65000:1 0:42 0:66 ip community-list standard 1_43_65 permit 65000:1 0:43 0:65 ip community-list standard 1_44_64 permit 65000:1 0:44 0:64 ip community-list standard 1_45_63 permit 65000:1 0:45 0:63 ip community-list standard 1_46_62 permit 65000:1 0:46 0:62 ip community-list standard 1_47_61 permit 65000:1 0:47 0:61 ip community-list standard 1_48_60 permit 65000:1 0:48 0:60 ip community-list standard 1_49_59 permit 65000:1 0:49 0:59 ip community-list standard 1_50_58 permit 65000:1 0:50 0:58 ip community-list standard 1_51_57 permit 65000:1 0:51 0:57 ip community-list standard 1_52_56 permit 65000:1 0:52 0:56 ip community-list standard 1_53_55 permit 65000:1 0:53 0:55 ip community-list standard 1_54_54 permit 65000:1 0:54 0:54 ip community-list expanded c108 permit 1 ^65000:4_0:108_0:1$ ip community-list expanded c108 permit 2 ^65000:3_0:109_0:1$ ip community-list expanded c108 permit 3 ^65000:3_0:110_0:2$ ip community-list expanded c108 permit 4 ^65000:3_0:111_0:3$ ip community-list expanded c108 permit 5 ^65000:3_0:112_0:4$ ip community-list expanded c108 permit 6 ^65000:3_0:113_0:5$ ip community-list expanded c108 permit 7 ^65000:3_0:114_0:6$ ip community-list expanded c108 permit 8 ^65000:3_0:115_0:7$ ip community-list expanded c108 permit 9 ^65000:3_0:116_0:8$ ip community-list expanded c108 permit 10 ^65000:3_0:117_0:9$ ip community-list expanded c108 permit 11 ^65000:3_0:118_0:10$ ip community-list expanded c108 permit 12 ^65000:3_0:119_0:11$ ip community-list expanded c108 permit 13 ^65000:3_0:120_0:12$ ip community-list expanded c108 permit 14 ^65000:3_0:121_0:13$ ip community-list expanded c108 permit 15 ^65000:3_0:122_0:14$ ip community-list expanded c108 permit 16 ^65000:3_0:123_0:15$ ip community-list expanded c108 permit 17 ^65000:3_0:124_0:16$ ip community-list expanded c108 permit 18 ^65000:3_0:125_0:17$ ip community-list expanded c108 permit 19 ^65000:3_0:126_0:18$ ip community-list expanded c108 permit 20 ^65000:3_0:127_0:19$ ip community-list expanded c108 permit 21 ^65000:3_0:128_0:20$ ip community-list expanded c108 permit 22 ^65000:3_0:129_0:21$ ip community-list expanded c108 permit 23 ^65000:3_0:130_0:22$ ip community-list expanded c108 permit 24 ^65000:3_0:131_0:23$ ip community-list expanded c108 permit 25 ^65000:3_0:132_0:24$ ip community-list expanded c108 permit 26 ^65000:3_0:133_0:25$ ip community-list expanded c108 permit 27 ^65000:3_0:134_0:26$ ip community-list expanded c108 permit 28 ^65000:3_0:135_0:27$ ip community-list expanded c108 permit 29 ^65000:3_0:136_0:28$ ip community-list expanded c108 permit 30 ^65000:3_0:137_0:29$ ip community-list expanded c108 permit 31 ^65000:3_0:138_0:30$ ip community-list expanded c108 permit 32 ^65000:3_0:139_0:31$ ip community-list expanded c108 permit 33 ^65000:3_0:140_0:32$ ip community-list expanded c108 permit 34 ^65000:3_0:141_0:33$ ip community-list expanded c108 permit 35 ^65000:3_0:142_0:34$ ip community-list expanded c108 permit 36 ^65000:3_0:143_0:35$ ip community-list expanded c108 permit 37 ^65000:3_0:144_0:36$ ip community-list expanded c108 permit 38 ^65000:3_0:145_0:37$ ip community-list expanded c108 permit 39 ^65000:3_0:146_0:38$ ip community-list expanded c108 permit 40 ^65000:3_0:147_0:39$ ip community-list expanded c108 permit 41 ^65000:3_0:148_0:40$ ip community-list expanded c108 permit 42 ^65000:3_0:149_0:41$ ip community-list expanded c108 permit 43 ^65000:3_0:150_0:42$ ip community-list expanded c108 permit 44 ^65000:3_0:151_0:43$ ip community-list expanded c108 permit 45 ^65000:3_0:152_0:44$ ip community-list expanded c108 permit 46 ^65000:3_0:153_0:45$ ip community-list expanded c108 permit 47 ^65000:3_0:154_0:46$ ip community-list expanded c108 permit 48 ^65000:3_0:155_0:47$ ip community-list expanded c108 permit 49 ^65000:3_0:156_0:48$ ip community-list expanded c108 permit 50 ^65000:3_0:157_0:49$ ip community-list expanded c108 permit 51 ^65000:3_0:158_0:50$ ip community-list expanded c108 permit 52 ^65000:3_0:159_0:51$ ip community-list expanded c108 permit 53 ^65000:3_0:160_0:52$ ip community-list expanded c108 permit 54 ^65000:3_0:161_0:53$ ip community-list expanded c108 permit 55 ^65000:3_0:162_0:54$ ip community-list expanded c108 permit 56 ^65000:3_0:163_0:55$ ip community-list expanded c108 permit 57 ^65000:3_0:164_0:56$ ip community-list expanded c108 permit 58 ^65000:3_0:165_0:57$ ip community-list expanded c108 permit 59 ^65000:3_0:166_0:58$ ip community-list expanded c108 permit 60 ^65000:3_0:167_0:59$ ip community-list expanded c108 permit 61 ^65000:3_0:168_0:60$ ip community-list expanded c108 permit 62 ^65000:3_0:169_0:61$ ip community-list expanded c108 permit 63 ^65000:3_0:170_0:62$ ip community-list expanded c108 permit 64 ^65000:3_0:171_0:63$ ip community-list expanded c108 permit 65 ^65000:3_0:172_0:64$ ip community-list expanded c108 permit 66 ^65000:3_0:173_0:65$ ip community-list expanded c108 permit 67 ^65000:3_0:174_0:66$ ip community-list expanded c108 permit 68 ^65000:3_0:175_0:67$ ip community-list expanded c108 permit 69 ^65000:3_0:176_0:68$ ip community-list expanded c108 permit 70 ^65000:3_0:177_0:69$ ip community-list expanded c108 permit 71 ^65000:3_0:178_0:70$ ip community-list expanded c108 permit 72 ^65000:3_0:179_0:71$ ip community-list expanded c108 permit 73 ^65000:3_0:180_0:72$ ip community-list expanded c108 permit 74 ^65000:3_0:181_0:73$ ip community-list expanded c108 permit 75 ^65000:3_0:182_0:74$ ip community-list expanded c108 permit 76 ^65000:3_0:183_0:75$ ip community-list expanded c108 permit 77 ^65000:3_0:184_0:76$ ip community-list expanded c108 permit 78 ^65000:3_0:185_0:77$ ip community-list expanded c108 permit 79 ^65000:3_0:186_0:78$ ip community-list expanded c108 permit 80 ^65000:3_0:187_0:79$ ip community-list expanded c108 permit 81 ^65000:3_0:188_0:80$ ip community-list expanded c108 permit 82 ^65000:3_0:189_0:81$ ip community-list expanded c108 permit 83 ^65000:3_0:190_0:82$ ip community-list expanded c108 permit 84 ^65000:3_0:191_0:83$ ip community-list expanded c108 permit 85 ^65000:3_0:192_0:84$ ip community-list expanded c108 permit 86 ^65000:3_0:193_0:85$ ip community-list expanded c108 permit 87 ^65000:3_0:194_0:86$ ip community-list expanded c108 permit 88 ^65000:3_0:195_0:87$ ip community-list expanded c108 permit 89 ^65000:3_0:196_0:88$ ip community-list expanded c108 permit 90 ^65000:3_0:197_0:89$ ip community-list expanded c108 permit 91 ^65000:3_0:198_0:90$ ip community-list expanded c108 permit 92 ^65000:3_0:199_0:91$ ip community-list expanded c108 permit 93 ^65000:3_0:200_0:92$ ip community-list expanded c108 permit 94 ^65000:3_0:201_0:93$ ip community-list expanded c108 permit 95 ^65000:3_0:202_0:94$ ip community-list expanded c108 permit 96 ^65000:3_0:203_0:95$ ip community-list expanded c108 permit 97 ^65000:3_0:204_0:96$ ip community-list expanded c108 permit 98 ^65000:3_0:205_0:97$ ip community-list expanded c108 permit 99 ^65000:3_0:206_0:98$ ip community-list expanded c108 permit 100 ^65000:3_0:207_0:99$ ip community-list expanded c108 permit 101 ^65000:3_0:208_0:100$ ip community-list expanded c108 permit 102 ^65000:3_0:209_0:101$ ip community-list expanded c108 permit 103 ^65000:3_0:210_0:102$ ip community-list expanded c108 permit 104 ^65000:3_0:211_0:103$ ip community-list expanded c108 permit 105 ^65000:3_0:212_0:104$ ip community-list expanded c108 permit 106 ^65000:3_0:213_0:105$ ip community-list expanded c108 permit 107 ^65000:3_0:214_0:106$ ip community-list expanded c108 permit 108 ^65000:3_0:215_0:107$ ip community-list expanded c108 permit 109 ^65000:4_0:216_0:2$ ip community-list expanded c108 permit 110 ^65000:3_0:216_0:108$ ip community-list expanded c108 permit 111 ^65000:4_0:217_0:2$ ip community-list expanded c108 permit 112 ^65000:3_0:217_0:109$ ip community-list expanded c108 permit 113 ^65000:3_0:218_0:110$ ip community-list expanded c108 permit 114 ^65000:3_0:219_0:111$ ip community-list expanded c108 permit 115 ^65000:3_0:220_0:112$ ip community-list expanded c108 permit 116 ^65000:3_0:221_0:113$ ip community-list expanded c108 permit 117 ^65000:3_0:222_0:114$ ip community-list expanded c108 permit 118 ^65000:3_0:223_0:115$ ip community-list expanded c108 permit 119 ^65000:3_0:224_0:116$ ip community-list expanded c108 permit 120 ^65000:3_0:225_0:117$ ip community-list expanded c108 permit 121 ^65000:3_0:226_0:118$ ip community-list expanded c108 permit 122 ^65000:3_0:227_0:119$ ip community-list expanded c108 permit 123 ^65000:3_0:228_0:120$ ip community-list expanded c108 permit 124 ^65000:3_0:229_0:121$ ip community-list expanded c108 permit 125 ^65000:3_0:230_0:122$ ip community-list expanded c108 permit 126 ^65000:3_0:231_0:123$ ip community-list expanded c108 permit 127 ^65000:3_0:232_0:124$ ip community-list expanded c108 permit 128 ^65000:3_0:233_0:125$ ip community-list expanded c108 permit 129 ^65000:3_0:234_0:126$ ip community-list expanded c108 permit 130 ^65000:3_0:235_0:127$ ip community-list expanded c108 permit 131 ^65000:3_0:236_0:128$ ip community-list expanded c108 permit 132 ^65000:3_0:237_0:129$ ip community-list expanded c108 permit 133 ^65000:3_0:238_0:130$ ip community-list expanded c108 permit 134 ^65000:3_0:239_0:131$ ip community-list expanded c108 permit 135 ^65000:3_0:240_0:132$ ip community-list expanded c108 permit 136 ^65000:3_0:241_0:133$ ip community-list expanded c108 permit 137 ^65000:3_0:242_0:134$ ip community-list expanded c108 permit 138 ^65000:3_0:243_0:135$ ip community-list expanded c108 permit 139 ^65000:3_0:244_0:136$ ip community-list expanded c108 permit 140 ^65000:3_0:245_0:137$ ip community-list expanded c108 permit 141 ^65000:3_0:246_0:138$ ip community-list expanded c108 permit 142 ^65000:3_0:247_0:139$ ip community-list expanded c108 permit 143 ^65000:3_0:248_0:140$ ip community-list expanded c108 permit 144 ^65000:3_0:249_0:141$ ip community-list expanded c108 permit 145 ^65000:3_0:250_0:142$ ip community-list expanded c108 permit 146 ^65000:3_0:251_0:143$ ip community-list expanded c108 permit 147 ^65000:3_0:252_0:144$ ip community-list expanded c108 permit 148 ^65000:3_0:253_0:145$ ip community-list expanded c108 permit 149 ^65000:3_0:254_0:146$ ip community-list expanded c108 permit 150 ^65000:3_0:255_0:147$ ip community-list expanded c108 permit 151 ^65000:3_0:256_0:148$ route-map calculator permit 13850 match community 1_1_107 2_1_108 2_2_54 1_2_106 2_3_36 set community 0:108 route-map calculator permit 13851 match community 1_3_105 2_4_27 1_4_104 1_5_103 2_6_18 set community 0:108 route-map calculator permit 13852 match community 1_6_102 1_7_101 1_8_100 2_9_12 1_9_99 set community 0:108 route-map calculator permit 13853 match community 1_10_98 1_11_97 1_12_96 1_13_95 1_14_94 set community 0:108 route-map calculator permit 13854 match community 1_15_93 1_16_92 1_17_91 1_18_90 1_19_89 set community 0:108 route-map calculator permit 13855 match community 1_20_88 1_21_87 1_22_86 1_23_85 1_24_84 set community 0:108 route-map calculator permit 13856 match community 1_25_83 1_26_82 1_27_81 1_28_80 1_29_79 set community 0:108 route-map calculator permit 13857 match community 1_30_78 1_31_77 1_32_76 1_33_75 1_34_74 set community 0:108 route-map calculator permit 13858 match community 1_35_73 1_36_72 1_37_71 1_38_70 1_39_69 set community 0:108 route-map calculator permit 13859 match community 1_40_68 1_41_67 1_42_66 1_43_65 1_44_64 set community 0:108 route-map calculator permit 13860 match community 1_45_63 1_46_62 1_47_61 1_48_60 1_49_59 set community 0:108 route-map calculator permit 13861 match community 1_50_58 1_51_57 1_52_56 1_53_55 1_54_54 set community 0:108 route-map calculator permit 13862 match community c4_108_1 c3_109_1 c3_110_2 c3_111_3 c3_112_4 set community 0:108 route-map calculator permit 13863 match community c3_113_5 c3_114_6 c3_115_7 c3_116_8 c3_117_9 set community 0:108 route-map calculator permit 13864 match community c3_118_10 c3_119_11 c3_120_12 c3_121_13 c3_122_14 set community 0:108 route-map calculator permit 13865 match community c3_123_15 c3_124_16 c3_125_17 c3_126_18 c3_127_19 set community 0:108 route-map calculator permit 13866 match community c3_128_20 c3_129_21 c3_130_22 c3_131_23 c3_132_24 set community 0:108 route-map calculator permit 13867 match community c3_133_25 c3_134_26 c3_135_27 c3_136_28 c3_137_29 set community 0:108 route-map calculator permit 13868 match community c3_138_30 c3_139_31 c3_140_32 c3_141_33 c3_142_34 set community 0:108 route-map calculator permit 13869 match community c3_143_35 c3_144_36 c3_145_37 c3_146_38 c3_147_39 set community 0:108 route-map calculator permit 13870 match community c3_148_40 c3_149_41 c3_150_42 c3_151_43 c3_152_44 set community 0:108 route-map calculator permit 13871 match community c3_153_45 c3_154_46 c3_155_47 c3_156_48 c3_157_49 set community 0:108 route-map calculator permit 13872 match community c3_158_50 c3_159_51 c3_160_52 c3_161_53 c3_162_54 set community 0:108 route-map calculator permit 13873 match community c3_163_55 c3_164_56 c3_165_57 c3_166_58 c3_167_59 set community 0:108 route-map calculator permit 13874 match community c3_168_60 c3_169_61 c3_170_62 c3_171_63 c3_172_64 set community 0:108 route-map calculator permit 13875 match community c3_173_65 c3_174_66 c3_175_67 c3_176_68 c3_177_69 set community 0:108 route-map calculator permit 13876 match community c3_178_70 c3_179_71 c3_180_72 c3_181_73 c3_182_74 set community 0:108 route-map calculator permit 13877 match community c3_183_75 c3_184_76 c3_185_77 c3_186_78 c3_187_79 set community 0:108 route-map calculator permit 13878 match community c3_188_80 c3_189_81 c3_190_82 c3_191_83 c3_192_84 set community 0:108 route-map calculator permit 13879 match community c3_193_85 c3_194_86 c3_195_87 c3_196_88 c3_197_89 set community 0:108 route-map calculator permit 13880 match community c3_198_90 c3_199_91 c3_200_92 c3_201_93 c3_202_94 set community 0:108 route-map calculator permit 13881 match community c3_203_95 c3_204_96 c3_205_97 c3_206_98 c3_207_99 set community 0:108 route-map calculator permit 13882 match community c3_208_100 c3_209_101 c3_210_102 c3_211_103 c3_212_104 set community 0:108 route-map calculator permit 13883 match community c3_213_105 c3_214_106 c3_215_107 c4_216_2 c3_216_108 set community 0:108 route-map calculator permit 13884 match community c4_217_2 c3_217_109 c3_218_110 c3_219_111 c3_220_112 set community 0:108 route-map calculator permit 13885 match community c3_221_113 c3_222_114 c3_223_115 c3_224_116 c3_225_117 set community 0:108 route-map calculator permit 13886 match community c3_226_118 c3_227_119 c3_228_120 c3_229_121 c3_230_122 set community 0:108 route-map calculator permit 13887 match community c3_231_123 c3_232_124 c3_233_125 c3_234_126 c3_235_127 set community 0:108 route-map calculator permit 13888 match community c3_236_128 c3_237_129 c3_238_130 c3_239_131 c3_240_132 set community 0:108 route-map calculator permit 13889 match community c3_241_133 c3_242_134 c3_243_135 c3_244_136 c3_245_137 set community 0:108 route-map calculator permit 13890 match community c3_246_138 c3_247_139 c3_248_140 c3_249_141 c3_250_142 set community 0:108 route-map calculator permit 13891 match community c3_251_143 c3_252_144 c3_253_145 c3_254_146 c3_255_147 set community 0:108 route-map calculator permit 13892 match community c3_256_148 set community 0:108 ip community-list standard 2_5_221 permit 65000:2 0:5 0:221 ip community-list standard 2_13_85 permit 65000:2 0:13 0:85 ip community-list standard 2_17_65 permit 65000:2 0:17 0:65 route-map calculator permit 13893 match community 2_5_221 2_13_85 2_17_65 set community 0:1105 ip community-list standard 2_59_227 permit 65000:2 0:59 0:227 route-map calculator permit 13894 match community 2_59_227 set community 0:13393 ip community-list standard 2_106_159 permit 65000:2 0:106 0:159 route-map calculator permit 13895 match community 2_106_159 set community 0:16854 ip community-list standard 2_33_228 permit 65000:2 0:33 0:228 ip community-list standard 2_36_209 permit 65000:2 0:36 0:209 ip community-list standard 2_38_198 permit 65000:2 0:38 0:198 ip community-list standard 2_44_171 permit 65000:2 0:44 0:171 ip community-list standard 2_57_132 permit 65000:2 0:57 0:132 ip community-list standard 2_66_114 permit 65000:2 0:66 0:114 ip community-list standard 2_76_99 permit 65000:2 0:76 0:99 route-map calculator permit 13896 match community 2_33_228 2_36_209 2_38_198 2_44_171 2_57_132 set community 0:7524 route-map calculator permit 13897 match community 2_66_114 2_76_99 set community 0:7524 ip community-list standard 2_156_240 permit 65000:2 0:156 0:240 ip community-list standard 2_160_234 permit 65000:2 0:160 0:234 ip community-list standard 2_180_208 permit 65000:2 0:180 0:208 ip community-list standard 2_192_195 permit 65000:2 0:192 0:195 route-map calculator permit 13898 match community 2_156_240 2_160_234 2_180_208 2_192_195 set community 0:37440 ip community-list standard 2_3_95 permit 65000:2 0:3 0:95 ip community-list standard 2_5_57 permit 65000:2 0:5 0:57 ip community-list standard 2_15_19 permit 65000:2 0:15 0:19 ip community-list standard 1_29_256 permit 65000:1 0:29 0:256 ip community-list standard 1_30_255 permit 65000:1 0:30 0:255 ip community-list standard 1_31_254 permit 65000:1 0:31 0:254 ip community-list standard 1_32_253 permit 65000:1 0:32 0:253 ip community-list standard 1_33_252 permit 65000:1 0:33 0:252 ip community-list standard 1_34_251 permit 65000:1 0:34 0:251 ip community-list standard 1_35_250 permit 65000:1 0:35 0:250 ip community-list standard 1_36_249 permit 65000:1 0:36 0:249 ip community-list standard 1_37_248 permit 65000:1 0:37 0:248 ip community-list standard 1_38_247 permit 65000:1 0:38 0:247 ip community-list standard 1_39_246 permit 65000:1 0:39 0:246 ip community-list standard 1_40_245 permit 65000:1 0:40 0:245 ip community-list standard 1_41_244 permit 65000:1 0:41 0:244 ip community-list standard 1_42_243 permit 65000:1 0:42 0:243 ip community-list standard 1_43_242 permit 65000:1 0:43 0:242 ip community-list standard 1_44_241 permit 65000:1 0:44 0:241 ip community-list standard 1_45_240 permit 65000:1 0:45 0:240 ip community-list standard 1_46_239 permit 65000:1 0:46 0:239 ip community-list standard 1_47_238 permit 65000:1 0:47 0:238 ip community-list standard 1_48_237 permit 65000:1 0:48 0:237 ip community-list standard 1_49_236 permit 65000:1 0:49 0:236 ip community-list standard 1_50_235 permit 65000:1 0:50 0:235 ip community-list standard 1_51_234 permit 65000:1 0:51 0:234 ip community-list standard 1_52_233 permit 65000:1 0:52 0:233 ip community-list standard 1_53_232 permit 65000:1 0:53 0:232 ip community-list standard 1_54_231 permit 65000:1 0:54 0:231 ip community-list standard 1_55_230 permit 65000:1 0:55 0:230 ip community-list standard 1_56_229 permit 65000:1 0:56 0:229 ip community-list standard 1_57_228 permit 65000:1 0:57 0:228 ip community-list standard 1_58_227 permit 65000:1 0:58 0:227 ip community-list standard 1_59_226 permit 65000:1 0:59 0:226 ip community-list standard 1_60_225 permit 65000:1 0:60 0:225 ip community-list standard 1_61_224 permit 65000:1 0:61 0:224 ip community-list standard 1_62_223 permit 65000:1 0:62 0:223 ip community-list standard 1_63_222 permit 65000:1 0:63 0:222 ip community-list standard 1_64_221 permit 65000:1 0:64 0:221 ip community-list standard 1_65_220 permit 65000:1 0:65 0:220 ip community-list standard 1_66_219 permit 65000:1 0:66 0:219 ip community-list standard 1_67_218 permit 65000:1 0:67 0:218 ip community-list standard 1_68_217 permit 65000:1 0:68 0:217 ip community-list standard 1_69_216 permit 65000:1 0:69 0:216 ip community-list standard 1_70_215 permit 65000:1 0:70 0:215 ip community-list standard 1_71_214 permit 65000:1 0:71 0:214 ip community-list standard 1_72_213 permit 65000:1 0:72 0:213 ip community-list standard 1_73_212 permit 65000:1 0:73 0:212 ip community-list standard 1_74_211 permit 65000:1 0:74 0:211 ip community-list standard 1_75_210 permit 65000:1 0:75 0:210 ip community-list standard 1_76_209 permit 65000:1 0:76 0:209 ip community-list standard 1_77_208 permit 65000:1 0:77 0:208 ip community-list standard 1_78_207 permit 65000:1 0:78 0:207 ip community-list standard 1_79_206 permit 65000:1 0:79 0:206 ip community-list standard 1_80_205 permit 65000:1 0:80 0:205 ip community-list standard 1_81_204 permit 65000:1 0:81 0:204 ip community-list standard 1_82_203 permit 65000:1 0:82 0:203 ip community-list standard 1_83_202 permit 65000:1 0:83 0:202 ip community-list standard 1_84_201 permit 65000:1 0:84 0:201 ip community-list standard 1_85_200 permit 65000:1 0:85 0:200 ip community-list standard 1_86_199 permit 65000:1 0:86 0:199 ip community-list standard 1_87_198 permit 65000:1 0:87 0:198 ip community-list standard 1_88_197 permit 65000:1 0:88 0:197 ip community-list standard 1_89_196 permit 65000:1 0:89 0:196 ip community-list standard 1_90_195 permit 65000:1 0:90 0:195 ip community-list standard 1_91_194 permit 65000:1 0:91 0:194 ip community-list standard 1_92_193 permit 65000:1 0:92 0:193 ip community-list standard 1_93_192 permit 65000:1 0:93 0:192 ip community-list standard 1_94_191 permit 65000:1 0:94 0:191 ip community-list standard 1_95_190 permit 65000:1 0:95 0:190 ip community-list standard 1_96_189 permit 65000:1 0:96 0:189 ip community-list standard 1_97_188 permit 65000:1 0:97 0:188 ip community-list standard 1_98_187 permit 65000:1 0:98 0:187 ip community-list standard 1_99_186 permit 65000:1 0:99 0:186 ip community-list standard 1_100_185 permit 65000:1 0:100 0:185 ip community-list standard 1_101_184 permit 65000:1 0:101 0:184 ip community-list standard 1_102_183 permit 65000:1 0:102 0:183 ip community-list standard 1_103_182 permit 65000:1 0:103 0:182 ip community-list standard 1_104_181 permit 65000:1 0:104 0:181 ip community-list standard 1_105_180 permit 65000:1 0:105 0:180 ip community-list standard 1_106_179 permit 65000:1 0:106 0:179 ip community-list standard 1_107_178 permit 65000:1 0:107 0:178 ip community-list standard 1_108_177 permit 65000:1 0:108 0:177 ip community-list standard 1_109_176 permit 65000:1 0:109 0:176 ip community-list standard 1_110_175 permit 65000:1 0:110 0:175 ip community-list standard 1_111_174 permit 65000:1 0:111 0:174 ip community-list standard 1_112_173 permit 65000:1 0:112 0:173 ip community-list standard 1_113_172 permit 65000:1 0:113 0:172 ip community-list standard 1_114_171 permit 65000:1 0:114 0:171 ip community-list standard 1_115_170 permit 65000:1 0:115 0:170 ip community-list standard 1_116_169 permit 65000:1 0:116 0:169 ip community-list standard 1_117_168 permit 65000:1 0:117 0:168 ip community-list standard 1_118_167 permit 65000:1 0:118 0:167 ip community-list standard 1_119_166 permit 65000:1 0:119 0:166 ip community-list standard 1_120_165 permit 65000:1 0:120 0:165 ip community-list standard 1_121_164 permit 65000:1 0:121 0:164 ip community-list standard 1_122_163 permit 65000:1 0:122 0:163 ip community-list standard 1_123_162 permit 65000:1 0:123 0:162 ip community-list standard 1_124_161 permit 65000:1 0:124 0:161 ip community-list standard 1_125_160 permit 65000:1 0:125 0:160 ip community-list standard 1_126_159 permit 65000:1 0:126 0:159 ip community-list standard 1_127_158 permit 65000:1 0:127 0:158 ip community-list standard 1_128_157 permit 65000:1 0:128 0:157 ip community-list standard 1_129_156 permit 65000:1 0:129 0:156 ip community-list standard 1_130_155 permit 65000:1 0:130 0:155 ip community-list standard 1_131_154 permit 65000:1 0:131 0:154 ip community-list standard 1_132_153 permit 65000:1 0:132 0:153 ip community-list standard 1_133_152 permit 65000:1 0:133 0:152 ip community-list standard 1_134_151 permit 65000:1 0:134 0:151 ip community-list standard 1_135_150 permit 65000:1 0:135 0:150 ip community-list standard 1_136_149 permit 65000:1 0:136 0:149 ip community-list standard 1_137_148 permit 65000:1 0:137 0:148 ip community-list standard 1_138_147 permit 65000:1 0:138 0:147 ip community-list standard 1_139_146 permit 65000:1 0:139 0:146 ip community-list standard 1_140_145 permit 65000:1 0:140 0:145 ip community-list standard 1_141_144 permit 65000:1 0:141 0:144 ip community-list standard 1_142_143 permit 65000:1 0:142 0:143 route-map calculator permit 13899 match community 2_3_95 2_5_57 2_15_19 1_29_256 1_30_255 set community 0:285 route-map calculator permit 13900 match community 1_31_254 1_32_253 1_33_252 1_34_251 1_35_250 set community 0:285 route-map calculator permit 13901 match community 1_36_249 1_37_248 1_38_247 1_39_246 1_40_245 set community 0:285 route-map calculator permit 13902 match community 1_41_244 1_42_243 1_43_242 1_44_241 1_45_240 set community 0:285 route-map calculator permit 13903 match community 1_46_239 1_47_238 1_48_237 1_49_236 1_50_235 set community 0:285 route-map calculator permit 13904 match community 1_51_234 1_52_233 1_53_232 1_54_231 1_55_230 set community 0:285 route-map calculator permit 13905 match community 1_56_229 1_57_228 1_58_227 1_59_226 1_60_225 set community 0:285 route-map calculator permit 13906 match community 1_61_224 1_62_223 1_63_222 1_64_221 1_65_220 set community 0:285 route-map calculator permit 13907 match community 1_66_219 1_67_218 1_68_217 1_69_216 1_70_215 set community 0:285 route-map calculator permit 13908 match community 1_71_214 1_72_213 1_73_212 1_74_211 1_75_210 set community 0:285 route-map calculator permit 13909 match community 1_76_209 1_77_208 1_78_207 1_79_206 1_80_205 set community 0:285 route-map calculator permit 13910 match community 1_81_204 1_82_203 1_83_202 1_84_201 1_85_200 set community 0:285 route-map calculator permit 13911 match community 1_86_199 1_87_198 1_88_197 1_89_196 1_90_195 set community 0:285 route-map calculator permit 13912 match community 1_91_194 1_92_193 1_93_192 1_94_191 1_95_190 set community 0:285 route-map calculator permit 13913 match community 1_96_189 1_97_188 1_98_187 1_99_186 1_100_185 set community 0:285 route-map calculator permit 13914 match community 1_101_184 1_102_183 1_103_182 1_104_181 1_105_180 set community 0:285 route-map calculator permit 13915 match community 1_106_179 1_107_178 1_108_177 1_109_176 1_110_175 set community 0:285 route-map calculator permit 13916 match community 1_111_174 1_112_173 1_113_172 1_114_171 1_115_170 set community 0:285 route-map calculator permit 13917 match community 1_116_169 1_117_168 1_118_167 1_119_166 1_120_165 set community 0:285 route-map calculator permit 13918 match community 1_121_164 1_122_163 1_123_162 1_124_161 1_125_160 set community 0:285 route-map calculator permit 13919 match community 1_126_159 1_127_158 1_128_157 1_129_156 1_130_155 set community 0:285 route-map calculator permit 13920 match community 1_131_154 1_132_153 1_133_152 1_134_151 1_135_150 set community 0:285 route-map calculator permit 13921 match community 1_136_149 1_137_148 1_138_147 1_139_146 1_140_145 set community 0:285 route-map calculator permit 13922 match community 1_141_144 1_142_143 set community 0:285 ip community-list standard 2_74_215 permit 65000:2 0:74 0:215 ip community-list standard 2_86_185 permit 65000:2 0:86 0:185 route-map calculator permit 13923 match community 2_74_215 2_86_185 set community 0:15910 ip community-list standard 2_35_195 permit 65000:2 0:35 0:195 ip community-list standard 2_39_175 permit 65000:2 0:39 0:175 ip community-list standard 2_65_105 permit 65000:2 0:65 0:105 ip community-list standard 2_75_91 permit 65000:2 0:75 0:91 route-map calculator permit 13924 match community 2_35_195 2_39_175 2_65_105 2_75_91 set community 0:6825 ip community-list standard 2_232_249 permit 65000:2 0:232 0:249 route-map calculator permit 13925 match community 2_232_249 set community 0:57768 ip community-list standard 2_173_175 permit 65000:2 0:173 0:175 route-map calculator permit 13926 match community 2_173_175 set community 0:30275 ip community-list standard 2_128_179 permit 65000:2 0:128 0:179 route-map calculator permit 13927 match community 2_128_179 set community 0:22912 ip community-list standard 2_228_245 permit 65000:2 0:228 0:245 route-map calculator permit 13928 match community 2_228_245 set community 0:55860 ip community-list standard 2_69_256 permit 65000:2 0:69 0:256 ip community-list standard 2_92_192 permit 65000:2 0:92 0:192 ip community-list standard 2_96_184 permit 65000:2 0:96 0:184 ip community-list standard 2_128_138 permit 65000:2 0:128 0:138 route-map calculator permit 13929 match community 2_69_256 2_92_192 2_96_184 2_128_138 set community 0:17664 ip community-list standard 2_163_165 permit 65000:2 0:163 0:165 route-map calculator permit 13930 match community 2_163_165 set community 0:26895 ip community-list standard 2_146_252 permit 65000:2 0:146 0:252 ip community-list standard 2_168_219 permit 65000:2 0:168 0:219 route-map calculator permit 13931 match community 2_146_252 2_168_219 set community 0:36792 ip community-list standard 2_13_101 permit 65000:2 0:13 0:101 route-map calculator permit 13932 match community 2_13_101 set community 0:1313 ip community-list standard 2_50_163 permit 65000:2 0:50 0:163 route-map calculator permit 13933 match community 2_50_163 set community 0:8150 ip community-list standard 2_131_173 permit 65000:2 0:131 0:173 route-map calculator permit 13934 match community 2_131_173 set community 0:22663 ip community-list standard 2_154_232 permit 65000:2 0:154 0:232 ip community-list standard 2_176_203 permit 65000:2 0:176 0:203 route-map calculator permit 13935 match community 2_154_232 2_176_203 set community 0:35728 ip community-list standard 2_123_141 permit 65000:2 0:123 0:141 route-map calculator permit 13936 match community 2_123_141 set community 0:17343 ip community-list standard 1_1_217 permit 65000:1 0:1 0:217 ip community-list standard 2_1_218 permit 65000:2 0:1 0:218 ip community-list standard 2_2_109 permit 65000:2 0:2 0:109 ip community-list standard 1_2_216 permit 65000:1 0:2 0:216 ip community-list standard 1_3_215 permit 65000:1 0:3 0:215 ip community-list standard 1_4_214 permit 65000:1 0:4 0:214 ip community-list standard 1_5_213 permit 65000:1 0:5 0:213 ip community-list standard 1_6_212 permit 65000:1 0:6 0:212 ip community-list standard 1_7_211 permit 65000:1 0:7 0:211 ip community-list standard 1_8_210 permit 65000:1 0:8 0:210 ip community-list standard 1_9_209 permit 65000:1 0:9 0:209 ip community-list standard 1_10_208 permit 65000:1 0:10 0:208 ip community-list standard 1_11_207 permit 65000:1 0:11 0:207 ip community-list standard 1_12_206 permit 65000:1 0:12 0:206 ip community-list standard 1_13_205 permit 65000:1 0:13 0:205 ip community-list standard 1_14_204 permit 65000:1 0:14 0:204 ip community-list standard 1_15_203 permit 65000:1 0:15 0:203 ip community-list standard 1_16_202 permit 65000:1 0:16 0:202 ip community-list standard 1_17_201 permit 65000:1 0:17 0:201 ip community-list standard 1_18_200 permit 65000:1 0:18 0:200 ip community-list standard 1_19_199 permit 65000:1 0:19 0:199 ip community-list standard 1_20_198 permit 65000:1 0:20 0:198 ip community-list standard 1_21_197 permit 65000:1 0:21 0:197 ip community-list standard 1_22_196 permit 65000:1 0:22 0:196 ip community-list standard 1_23_195 permit 65000:1 0:23 0:195 ip community-list standard 1_24_194 permit 65000:1 0:24 0:194 ip community-list standard 1_25_193 permit 65000:1 0:25 0:193 ip community-list standard 1_26_192 permit 65000:1 0:26 0:192 ip community-list standard 1_27_191 permit 65000:1 0:27 0:191 ip community-list standard 1_28_190 permit 65000:1 0:28 0:190 ip community-list standard 1_29_189 permit 65000:1 0:29 0:189 ip community-list standard 1_30_188 permit 65000:1 0:30 0:188 ip community-list standard 1_31_187 permit 65000:1 0:31 0:187 ip community-list standard 1_32_186 permit 65000:1 0:32 0:186 ip community-list standard 1_33_185 permit 65000:1 0:33 0:185 ip community-list standard 1_34_184 permit 65000:1 0:34 0:184 ip community-list standard 1_35_183 permit 65000:1 0:35 0:183 ip community-list standard 1_36_182 permit 65000:1 0:36 0:182 ip community-list standard 1_37_181 permit 65000:1 0:37 0:181 ip community-list standard 1_38_180 permit 65000:1 0:38 0:180 ip community-list standard 1_39_179 permit 65000:1 0:39 0:179 ip community-list standard 1_40_178 permit 65000:1 0:40 0:178 ip community-list standard 1_41_177 permit 65000:1 0:41 0:177 ip community-list standard 1_42_176 permit 65000:1 0:42 0:176 ip community-list standard 1_43_175 permit 65000:1 0:43 0:175 ip community-list standard 1_44_174 permit 65000:1 0:44 0:174 ip community-list standard 1_45_173 permit 65000:1 0:45 0:173 ip community-list standard 1_46_172 permit 65000:1 0:46 0:172 ip community-list standard 1_47_171 permit 65000:1 0:47 0:171 ip community-list standard 1_48_170 permit 65000:1 0:48 0:170 ip community-list standard 1_49_169 permit 65000:1 0:49 0:169 ip community-list standard 1_50_168 permit 65000:1 0:50 0:168 ip community-list standard 1_51_167 permit 65000:1 0:51 0:167 ip community-list standard 1_52_166 permit 65000:1 0:52 0:166 ip community-list standard 1_53_165 permit 65000:1 0:53 0:165 ip community-list standard 1_54_164 permit 65000:1 0:54 0:164 ip community-list standard 1_55_163 permit 65000:1 0:55 0:163 ip community-list standard 1_56_162 permit 65000:1 0:56 0:162 ip community-list standard 1_57_161 permit 65000:1 0:57 0:161 ip community-list standard 1_58_160 permit 65000:1 0:58 0:160 ip community-list standard 1_59_159 permit 65000:1 0:59 0:159 ip community-list standard 1_60_158 permit 65000:1 0:60 0:158 ip community-list standard 1_61_157 permit 65000:1 0:61 0:157 ip community-list standard 1_62_156 permit 65000:1 0:62 0:156 ip community-list standard 1_63_155 permit 65000:1 0:63 0:155 ip community-list standard 1_64_154 permit 65000:1 0:64 0:154 ip community-list standard 1_65_153 permit 65000:1 0:65 0:153 ip community-list standard 1_66_152 permit 65000:1 0:66 0:152 ip community-list standard 1_67_151 permit 65000:1 0:67 0:151 ip community-list standard 1_68_150 permit 65000:1 0:68 0:150 ip community-list standard 1_69_149 permit 65000:1 0:69 0:149 ip community-list standard 1_70_148 permit 65000:1 0:70 0:148 ip community-list standard 1_71_147 permit 65000:1 0:71 0:147 ip community-list standard 1_72_146 permit 65000:1 0:72 0:146 ip community-list standard 1_73_145 permit 65000:1 0:73 0:145 ip community-list standard 1_74_144 permit 65000:1 0:74 0:144 ip community-list standard 1_75_143 permit 65000:1 0:75 0:143 ip community-list standard 1_76_142 permit 65000:1 0:76 0:142 ip community-list standard 1_77_141 permit 65000:1 0:77 0:141 ip community-list standard 1_78_140 permit 65000:1 0:78 0:140 ip community-list standard 1_79_139 permit 65000:1 0:79 0:139 ip community-list standard 1_80_138 permit 65000:1 0:80 0:138 ip community-list standard 1_81_137 permit 65000:1 0:81 0:137 ip community-list standard 1_82_136 permit 65000:1 0:82 0:136 ip community-list standard 1_83_135 permit 65000:1 0:83 0:135 ip community-list standard 1_84_134 permit 65000:1 0:84 0:134 ip community-list standard 1_85_133 permit 65000:1 0:85 0:133 ip community-list standard 1_86_132 permit 65000:1 0:86 0:132 ip community-list standard 1_87_131 permit 65000:1 0:87 0:131 ip community-list standard 1_88_130 permit 65000:1 0:88 0:130 ip community-list standard 1_89_129 permit 65000:1 0:89 0:129 ip community-list standard 1_90_128 permit 65000:1 0:90 0:128 ip community-list standard 1_91_127 permit 65000:1 0:91 0:127 ip community-list standard 1_92_126 permit 65000:1 0:92 0:126 ip community-list standard 1_93_125 permit 65000:1 0:93 0:125 ip community-list standard 1_94_124 permit 65000:1 0:94 0:124 ip community-list standard 1_95_123 permit 65000:1 0:95 0:123 ip community-list standard 1_96_122 permit 65000:1 0:96 0:122 ip community-list standard 1_97_121 permit 65000:1 0:97 0:121 ip community-list standard 1_98_120 permit 65000:1 0:98 0:120 ip community-list standard 1_99_119 permit 65000:1 0:99 0:119 ip community-list standard 1_100_118 permit 65000:1 0:100 0:118 ip community-list standard 1_101_117 permit 65000:1 0:101 0:117 ip community-list standard 1_102_116 permit 65000:1 0:102 0:116 ip community-list standard 1_103_115 permit 65000:1 0:103 0:115 ip community-list standard 1_104_114 permit 65000:1 0:104 0:114 ip community-list standard 1_105_113 permit 65000:1 0:105 0:113 ip community-list standard 1_106_112 permit 65000:1 0:106 0:112 ip community-list standard 1_107_111 permit 65000:1 0:107 0:111 ip community-list standard 1_108_110 permit 65000:1 0:108 0:110 ip community-list standard 1_109_109 permit 65000:1 0:109 0:109 ip community-list expanded c218 permit 1 ^65000:4_0:218_0:1$ ip community-list expanded c218 permit 2 ^65000:3_0:219_0:1$ ip community-list expanded c218 permit 3 ^65000:3_0:220_0:2$ ip community-list expanded c218 permit 4 ^65000:3_0:221_0:3$ ip community-list expanded c218 permit 5 ^65000:3_0:222_0:4$ ip community-list expanded c218 permit 6 ^65000:3_0:223_0:5$ ip community-list expanded c218 permit 7 ^65000:3_0:224_0:6$ ip community-list expanded c218 permit 8 ^65000:3_0:225_0:7$ ip community-list expanded c218 permit 9 ^65000:3_0:226_0:8$ ip community-list expanded c218 permit 10 ^65000:3_0:227_0:9$ ip community-list expanded c218 permit 11 ^65000:3_0:228_0:10$ ip community-list expanded c218 permit 12 ^65000:3_0:229_0:11$ ip community-list expanded c218 permit 13 ^65000:3_0:230_0:12$ ip community-list expanded c218 permit 14 ^65000:3_0:231_0:13$ ip community-list expanded c218 permit 15 ^65000:3_0:232_0:14$ ip community-list expanded c218 permit 16 ^65000:3_0:233_0:15$ ip community-list expanded c218 permit 17 ^65000:3_0:234_0:16$ ip community-list expanded c218 permit 18 ^65000:3_0:235_0:17$ ip community-list expanded c218 permit 19 ^65000:3_0:236_0:18$ ip community-list expanded c218 permit 20 ^65000:3_0:237_0:19$ ip community-list expanded c218 permit 21 ^65000:3_0:238_0:20$ ip community-list expanded c218 permit 22 ^65000:3_0:239_0:21$ ip community-list expanded c218 permit 23 ^65000:3_0:240_0:22$ ip community-list expanded c218 permit 24 ^65000:3_0:241_0:23$ ip community-list expanded c218 permit 25 ^65000:3_0:242_0:24$ ip community-list expanded c218 permit 26 ^65000:3_0:243_0:25$ ip community-list expanded c218 permit 27 ^65000:3_0:244_0:26$ ip community-list expanded c218 permit 28 ^65000:3_0:245_0:27$ ip community-list expanded c218 permit 29 ^65000:3_0:246_0:28$ ip community-list expanded c218 permit 30 ^65000:3_0:247_0:29$ ip community-list expanded c218 permit 31 ^65000:3_0:248_0:30$ ip community-list expanded c218 permit 32 ^65000:3_0:249_0:31$ ip community-list expanded c218 permit 33 ^65000:3_0:250_0:32$ ip community-list expanded c218 permit 34 ^65000:3_0:251_0:33$ ip community-list expanded c218 permit 35 ^65000:3_0:252_0:34$ ip community-list expanded c218 permit 36 ^65000:3_0:253_0:35$ ip community-list expanded c218 permit 37 ^65000:3_0:254_0:36$ ip community-list expanded c218 permit 38 ^65000:3_0:255_0:37$ ip community-list expanded c218 permit 39 ^65000:3_0:256_0:38$ route-map calculator permit 13937 match community 1_1_217 2_1_218 2_2_109 1_2_216 1_3_215 set community 0:218 route-map calculator permit 13938 match community 1_4_214 1_5_213 1_6_212 1_7_211 1_8_210 set community 0:218 route-map calculator permit 13939 match community 1_9_209 1_10_208 1_11_207 1_12_206 1_13_205 set community 0:218 route-map calculator permit 13940 match community 1_14_204 1_15_203 1_16_202 1_17_201 1_18_200 set community 0:218 route-map calculator permit 13941 match community 1_19_199 1_20_198 1_21_197 1_22_196 1_23_195 set community 0:218 route-map calculator permit 13942 match community 1_24_194 1_25_193 1_26_192 1_27_191 1_28_190 set community 0:218 route-map calculator permit 13943 match community 1_29_189 1_30_188 1_31_187 1_32_186 1_33_185 set community 0:218 route-map calculator permit 13944 match community 1_34_184 1_35_183 1_36_182 1_37_181 1_38_180 set community 0:218 route-map calculator permit 13945 match community 1_39_179 1_40_178 1_41_177 1_42_176 1_43_175 set community 0:218 route-map calculator permit 13946 match community 1_44_174 1_45_173 1_46_172 1_47_171 1_48_170 set community 0:218 route-map calculator permit 13947 match community 1_49_169 1_50_168 1_51_167 1_52_166 1_53_165 set community 0:218 route-map calculator permit 13948 match community 1_54_164 1_55_163 1_56_162 1_57_161 1_58_160 set community 0:218 route-map calculator permit 13949 match community 1_59_159 1_60_158 1_61_157 1_62_156 1_63_155 set community 0:218 route-map calculator permit 13950 match community 1_64_154 1_65_153 1_66_152 1_67_151 1_68_150 set community 0:218 route-map calculator permit 13951 match community 1_69_149 1_70_148 1_71_147 1_72_146 1_73_145 set community 0:218 route-map calculator permit 13952 match community 1_74_144 1_75_143 1_76_142 1_77_141 1_78_140 set community 0:218 route-map calculator permit 13953 match community 1_79_139 1_80_138 1_81_137 1_82_136 1_83_135 set community 0:218 route-map calculator permit 13954 match community 1_84_134 1_85_133 1_86_132 1_87_131 1_88_130 set community 0:218 route-map calculator permit 13955 match community 1_89_129 1_90_128 1_91_127 1_92_126 1_93_125 set community 0:218 route-map calculator permit 13956 match community 1_94_124 1_95_123 1_96_122 1_97_121 1_98_120 set community 0:218 route-map calculator permit 13957 match community 1_99_119 1_100_118 1_101_117 1_102_116 1_103_115 set community 0:218 route-map calculator permit 13958 match community 1_104_114 1_105_113 1_106_112 1_107_111 1_108_110 set community 0:218 route-map calculator permit 13959 match community 1_109_109 c4_218_1 c3_219_1 c3_220_2 c3_221_3 set community 0:218 route-map calculator permit 13960 match community c3_222_4 c3_223_5 c3_224_6 c3_225_7 c3_226_8 set community 0:218 route-map calculator permit 13961 match community c3_227_9 c3_228_10 c3_229_11 c3_230_12 c3_231_13 set community 0:218 route-map calculator permit 13962 match community c3_232_14 c3_233_15 c3_234_16 c3_235_17 c3_236_18 set community 0:218 route-map calculator permit 13963 match community c3_237_19 c3_238_20 c3_239_21 c3_240_22 c3_241_23 set community 0:218 route-map calculator permit 13964 match community c3_242_24 c3_243_25 c3_244_26 c3_245_27 c3_246_28 set community 0:218 route-map calculator permit 13965 match community c3_247_29 c3_248_30 c3_249_31 c3_250_32 c3_251_33 set community 0:218 route-map calculator permit 13966 match community c3_252_34 c3_253_35 c3_254_36 c3_255_37 c3_256_38 set community 0:218 ip community-list standard 2_28_227 permit 65000:2 0:28 0:227 route-map calculator permit 13967 match community 2_28_227 set community 0:6356 ip community-list standard 2_155_187 permit 65000:2 0:155 0:187 route-map calculator permit 13968 match community 2_155_187 set community 0:28985 ip community-list standard 2_105_237 permit 65000:2 0:105 0:237 route-map calculator permit 13969 match community 2_105_237 set community 0:24885 ip community-list standard 2_155_214 permit 65000:2 0:155 0:214 route-map calculator permit 13970 match community 2_155_214 set community 0:33170 ip community-list standard 2_119_167 permit 65000:2 0:119 0:167 route-map calculator permit 13971 match community 2_119_167 set community 0:19873 ip community-list standard 2_84_197 permit 65000:2 0:84 0:197 route-map calculator permit 13972 match community 2_84_197 set community 0:16548 ip community-list standard 2_69_181 permit 65000:2 0:69 0:181 route-map calculator permit 13973 match community 2_69_181 set community 0:12489 ip community-list standard 2_65_137 permit 65000:2 0:65 0:137 route-map calculator permit 13974 match community 2_65_137 set community 0:8905 ip community-list standard 2_133_243 permit 65000:2 0:133 0:243 ip community-list standard 2_171_189 permit 65000:2 0:171 0:189 route-map calculator permit 13975 match community 2_133_243 2_171_189 set community 0:32319 ip community-list standard 2_167_242 permit 65000:2 0:167 0:242 route-map calculator permit 13976 match community 2_167_242 set community 0:40414 ip community-list standard 2_101_218 permit 65000:2 0:101 0:218 ip community-list standard 2_109_202 permit 65000:2 0:109 0:202 route-map calculator permit 13977 match community 2_101_218 2_109_202 set community 0:22018 ip community-list standard 2_97_244 permit 65000:2 0:97 0:244 ip community-list standard 2_122_194 permit 65000:2 0:122 0:194 route-map calculator permit 13978 match community 2_97_244 2_122_194 set community 0:23668 ip community-list standard 2_69_179 permit 65000:2 0:69 0:179 route-map calculator permit 13979 match community 2_69_179 set community 0:12351 ip community-list standard 2_153_201 permit 65000:2 0:153 0:201 route-map calculator permit 13980 match community 2_153_201 set community 0:30753 ip community-list standard 2_139_164 permit 65000:2 0:139 0:164 route-map calculator permit 13981 match community 2_139_164 set community 0:22796 ip community-list standard 2_139_211 permit 65000:2 0:139 0:211 route-map calculator permit 13982 match community 2_139_211 set community 0:29329 ip community-list standard 2_78_169 permit 65000:2 0:78 0:169 route-map calculator permit 13983 match community 2_78_169 set community 0:13182 ip community-list standard 2_43_184 permit 65000:2 0:43 0:184 ip community-list standard 2_46_172 permit 65000:2 0:46 0:172 ip community-list standard 2_86_92 permit 65000:2 0:86 0:92 route-map calculator permit 13984 match community 2_43_184 2_46_172 2_86_92 set community 0:7912 ip community-list standard 2_198_229 permit 65000:2 0:198 0:229 route-map calculator permit 13985 match community 2_198_229 set community 0:45342 ip community-list standard 2_132_214 permit 65000:2 0:132 0:214 route-map calculator permit 13986 match community 2_132_214 set community 0:28248 ip community-list standard 2_87_223 permit 65000:2 0:87 0:223 route-map calculator permit 13987 match community 2_87_223 set community 0:19401 ip community-list standard 2_119_235 permit 65000:2 0:119 0:235 route-map calculator permit 13988 match community 2_119_235 set community 0:27965 ip community-list standard 2_25_213 permit 65000:2 0:25 0:213 ip community-list standard 2_71_75 permit 65000:2 0:71 0:75 route-map calculator permit 13989 match community 2_25_213 2_71_75 set community 0:5325 ip community-list standard 2_148_217 permit 65000:2 0:148 0:217 route-map calculator permit 13990 match community 2_148_217 set community 0:32116 ip community-list standard 2_29_127 permit 65000:2 0:29 0:127 route-map calculator permit 13991 match community 2_29_127 set community 0:3683 ip community-list standard 2_54_191 permit 65000:2 0:54 0:191 route-map calculator permit 13992 match community 2_54_191 set community 0:10314 ip community-list standard 2_153_219 permit 65000:2 0:153 0:219 route-map calculator permit 13993 match community 2_153_219 set community 0:33507 ip community-list standard 2_167_219 permit 65000:2 0:167 0:219 route-map calculator permit 13994 match community 2_167_219 set community 0:36573 ip community-list standard 2_53_245 permit 65000:2 0:53 0:245 route-map calculator permit 13995 match community 2_53_245 set community 0:12985 ip community-list standard 2_127_211 permit 65000:2 0:127 0:211 route-map calculator permit 13996 match community 2_127_211 set community 0:26797 ip community-list standard 2_147_217 permit 65000:2 0:147 0:217 route-map calculator permit 13997 match community 2_147_217 set community 0:31899 ip community-list standard 2_48_250 permit 65000:2 0:48 0:250 ip community-list standard 2_50_240 permit 65000:2 0:50 0:240 ip community-list standard 2_60_200 permit 65000:2 0:60 0:200 ip community-list standard 2_75_160 permit 65000:2 0:75 0:160 ip community-list standard 2_80_150 permit 65000:2 0:80 0:150 ip community-list standard 2_96_125 permit 65000:2 0:96 0:125 ip community-list standard 2_100_120 permit 65000:2 0:100 0:120 route-map calculator permit 13998 match community 2_48_250 2_50_240 2_60_200 2_75_160 2_80_150 set community 0:12000 route-map calculator permit 13999 match community 2_96_125 2_100_120 set community 0:12000 ip community-list standard 2_116_252 permit 65000:2 0:116 0:252 ip community-list standard 2_126_232 permit 65000:2 0:126 0:232 ip community-list standard 2_144_203 permit 65000:2 0:144 0:203 ip community-list standard 2_168_174 permit 65000:2 0:168 0:174 route-map calculator permit 14000 match community 2_116_252 2_126_232 2_144_203 2_168_174 set community 0:29232 ip community-list standard 2_99_211 permit 65000:2 0:99 0:211 route-map calculator permit 14001 match community 2_99_211 set community 0:20889 ip community-list standard 2_20_197 permit 65000:2 0:20 0:197 route-map calculator permit 14002 match community 2_20_197 set community 0:3940 ip community-list standard 2_97_240 permit 65000:2 0:97 0:240 ip community-list standard 2_120_194 permit 65000:2 0:120 0:194 route-map calculator permit 14003 match community 2_97_240 2_120_194 set community 0:23280 ip community-list standard 2_61_178 permit 65000:2 0:61 0:178 ip community-list standard 2_89_122 permit 65000:2 0:89 0:122 route-map calculator permit 14004 match community 2_61_178 2_89_122 set community 0:10858 ip community-list standard 2_60_237 permit 65000:2 0:60 0:237 ip community-list standard 2_79_180 permit 65000:2 0:79 0:180 ip community-list standard 2_90_158 permit 65000:2 0:90 0:158 route-map calculator permit 14005 match community 2_60_237 2_79_180 2_90_158 set community 0:14220 ip community-list standard 2_24_202 permit 65000:2 0:24 0:202 ip community-list standard 2_48_101 permit 65000:2 0:48 0:101 route-map calculator permit 14006 match community 2_24_202 2_48_101 set community 0:4848 ip community-list standard 2_214_253 permit 65000:2 0:214 0:253 route-map calculator permit 14007 match community 2_214_253 set community 0:54142 ip community-list standard 2_50_177 permit 65000:2 0:50 0:177 ip community-list standard 2_59_150 permit 65000:2 0:59 0:150 ip community-list standard 2_75_118 permit 65000:2 0:75 0:118 route-map calculator permit 14008 match community 2_50_177 2_59_150 2_75_118 set community 0:8850 ip community-list standard 2_49_202 permit 65000:2 0:49 0:202 ip community-list standard 2_98_101 permit 65000:2 0:98 0:101 route-map calculator permit 14009 match community 2_49_202 2_98_101 set community 0:9898 ip community-list standard 2_78_173 permit 65000:2 0:78 0:173 route-map calculator permit 14010 match community 2_78_173 set community 0:13494 ip community-list standard 2_119_256 permit 65000:2 0:119 0:256 ip community-list standard 2_128_238 permit 65000:2 0:128 0:238 ip community-list standard 2_136_224 permit 65000:2 0:136 0:224 route-map calculator permit 14011 match community 2_119_256 2_128_238 2_136_224 set community 0:30464 ip community-list standard 2_103_137 permit 65000:2 0:103 0:137 route-map calculator permit 14012 match community 2_103_137 set community 0:14111 ip community-list standard 2_29_181 permit 65000:2 0:29 0:181 route-map calculator permit 14013 match community 2_29_181 set community 0:5249 ip community-list standard 2_139_208 permit 65000:2 0:139 0:208 route-map calculator permit 14014 match community 2_139_208 set community 0:28912 ip community-list standard 2_29_240 permit 65000:2 0:29 0:240 ip community-list standard 2_30_232 permit 65000:2 0:30 0:232 ip community-list standard 2_40_174 permit 65000:2 0:40 0:174 ip community-list standard 2_48_145 permit 65000:2 0:48 0:145 ip community-list standard 2_58_120 permit 65000:2 0:58 0:120 ip community-list standard 2_60_116 permit 65000:2 0:60 0:116 ip community-list standard 2_80_87 permit 65000:2 0:80 0:87 route-map calculator permit 14015 match community 2_29_240 2_30_232 2_40_174 2_48_145 2_58_120 set community 0:6960 route-map calculator permit 14016 match community 2_60_116 2_80_87 set community 0:6960 ip community-list standard 2_139_175 permit 65000:2 0:139 0:175 route-map calculator permit 14017 match community 2_139_175 set community 0:24325 ip community-list standard 2_59_254 permit 65000:2 0:59 0:254 ip community-list standard 2_118_127 permit 65000:2 0:118 0:127 route-map calculator permit 14018 match community 2_59_254 2_118_127 set community 0:14986 ip community-list standard 2_202_206 permit 65000:2 0:202 0:206 route-map calculator permit 14019 match community 2_202_206 set community 0:41612 ip community-list standard 2_146_242 permit 65000:2 0:146 0:242 route-map calculator permit 14020 match community 2_146_242 set community 0:35332 ip community-list standard 2_111_245 permit 65000:2 0:111 0:245 ip community-list standard 2_147_185 permit 65000:2 0:147 0:185 route-map calculator permit 14021 match community 2_111_245 2_147_185 set community 0:27195 ip community-list standard 2_126_167 permit 65000:2 0:126 0:167 route-map calculator permit 14022 match community 2_126_167 set community 0:21042 ip community-list standard 2_53_170 permit 65000:2 0:53 0:170 ip community-list standard 2_85_106 permit 65000:2 0:85 0:106 route-map calculator permit 14023 match community 2_53_170 2_85_106 set community 0:9010 ip community-list standard 2_127_217 permit 65000:2 0:127 0:217 route-map calculator permit 14024 match community 2_127_217 set community 0:27559 ip community-list standard 2_54_186 permit 65000:2 0:54 0:186 ip community-list standard 2_62_162 permit 65000:2 0:62 0:162 ip community-list standard 2_81_124 permit 65000:2 0:81 0:124 ip community-list standard 2_93_108 permit 65000:2 0:93 0:108 route-map calculator permit 14025 match community 2_54_186 2_62_162 2_81_124 2_93_108 set community 0:10044 ip community-list standard 2_157_237 permit 65000:2 0:157 0:237 route-map calculator permit 14026 match community 2_157_237 set community 0:37209 ip community-list standard 2_70_149 permit 65000:2 0:70 0:149 route-map calculator permit 14027 match community 2_70_149 set community 0:10430 ip community-list standard 2_4_179 permit 65000:2 0:4 0:179 route-map calculator permit 14028 match community 2_4_179 set community 0:716 ip community-list standard 2_5_239 permit 65000:2 0:5 0:239 route-map calculator permit 14029 match community 2_5_239 set community 0:1195 ip community-list standard 2_25_158 permit 65000:2 0:25 0:158 ip community-list standard 2_50_79 permit 65000:2 0:50 0:79 route-map calculator permit 14030 match community 2_25_158 2_50_79 set community 0:3950 ip community-list standard 2_11_186 permit 65000:2 0:11 0:186 ip community-list standard 2_22_93 permit 65000:2 0:22 0:93 ip community-list standard 2_31_66 permit 65000:2 0:31 0:66 ip community-list standard 2_33_62 permit 65000:2 0:33 0:62 route-map calculator permit 14031 match community 2_11_186 2_22_93 2_31_66 2_33_62 set community 0:2046 ip community-list standard 2_220_240 permit 65000:2 0:220 0:240 route-map calculator permit 14032 match community 2_220_240 set community 0:52800 ip community-list standard 2_93_242 permit 65000:2 0:93 0:242 ip community-list standard 2_121_186 permit 65000:2 0:121 0:186 route-map calculator permit 14033 match community 2_93_242 2_121_186 set community 0:22506 ip community-list standard 2_188_227 permit 65000:2 0:188 0:227 route-map calculator permit 14034 match community 2_188_227 set community 0:42676 ip community-list standard 2_6_187 permit 65000:2 0:6 0:187 ip community-list standard 2_11_102 permit 65000:2 0:11 0:102 ip community-list standard 2_17_66 permit 65000:2 0:17 0:66 ip community-list standard 2_22_51 permit 65000:2 0:22 0:51 ip community-list standard 2_33_34 permit 65000:2 0:33 0:34 route-map calculator permit 14035 match community 2_6_187 2_11_102 2_17_66 2_22_51 2_33_34 set community 0:1122 ip community-list standard 2_26_179 permit 65000:2 0:26 0:179 route-map calculator permit 14036 match community 2_26_179 set community 0:4654 ip community-list standard 2_29_173 permit 65000:2 0:29 0:173 route-map calculator permit 14037 match community 2_29_173 set community 0:5017 ip community-list standard 2_11_223 permit 65000:2 0:11 0:223 route-map calculator permit 14038 match community 2_11_223 set community 0:2453 ip community-list standard 2_61_97 permit 65000:2 0:61 0:97 route-map calculator permit 14039 match community 2_61_97 set community 0:5917 ip community-list standard 2_17_157 permit 65000:2 0:17 0:157 route-map calculator permit 14040 match community 2_17_157 set community 0:2669 ip community-list standard 2_130_245 permit 65000:2 0:130 0:245 ip community-list standard 2_175_182 permit 65000:2 0:175 0:182 route-map calculator permit 14041 match community 2_130_245 2_175_182 set community 0:31850 ip community-list standard 2_117_137 permit 65000:2 0:117 0:137 route-map calculator permit 14042 match community 2_117_137 set community 0:16029 ip community-list standard 2_3_222 permit 65000:2 0:3 0:222 ip community-list standard 2_6_111 permit 65000:2 0:6 0:111 ip community-list standard 2_9_74 permit 65000:2 0:9 0:74 ip community-list standard 2_18_37 permit 65000:2 0:18 0:37 route-map calculator permit 14043 match community 2_3_222 2_6_111 2_9_74 2_18_37 set community 0:666 ip community-list standard 2_128_251 permit 65000:2 0:128 0:251 route-map calculator permit 14044 match community 2_128_251 set community 0:32128 ip community-list standard 2_111_247 permit 65000:2 0:111 0:247 route-map calculator permit 14045 match community 2_111_247 set community 0:27417 ip community-list standard 2_104_215 permit 65000:2 0:104 0:215 ip community-list standard 2_130_172 permit 65000:2 0:130 0:172 route-map calculator permit 14046 match community 2_104_215 2_130_172 set community 0:22360 ip community-list standard 2_56_151 permit 65000:2 0:56 0:151 route-map calculator permit 14047 match community 2_56_151 set community 0:8456 ip community-list standard 2_130_253 permit 65000:2 0:130 0:253 ip community-list standard 2_143_230 permit 65000:2 0:143 0:230 route-map calculator permit 14048 match community 2_130_253 2_143_230 set community 0:32890 ip community-list standard 2_64_242 permit 65000:2 0:64 0:242 ip community-list standard 2_88_176 permit 65000:2 0:88 0:176 ip community-list standard 2_121_128 permit 65000:2 0:121 0:128 route-map calculator permit 14049 match community 2_64_242 2_88_176 2_121_128 set community 0:15488 ip community-list standard 2_15_155 permit 65000:2 0:15 0:155 ip community-list standard 2_25_93 permit 65000:2 0:25 0:93 ip community-list standard 2_31_75 permit 65000:2 0:31 0:75 route-map calculator permit 14050 match community 2_15_155 2_25_93 2_31_75 set community 0:2325 ip community-list standard 2_229_250 permit 65000:2 0:229 0:250 route-map calculator permit 14051 match community 2_229_250 set community 0:57250 ip community-list standard 2_83_247 permit 65000:2 0:83 0:247 route-map calculator permit 14052 match community 2_83_247 set community 0:20501 ip community-list standard 2_142_146 permit 65000:2 0:142 0:146 route-map calculator permit 14053 match community 2_142_146 set community 0:20732 ip community-list standard 2_18_159 permit 65000:2 0:18 0:159 ip community-list standard 2_27_106 permit 65000:2 0:27 0:106 ip community-list standard 2_53_54 permit 65000:2 0:53 0:54 route-map calculator permit 14054 match community 2_18_159 2_27_106 2_53_54 set community 0:2862 ip community-list standard 2_34_167 permit 65000:2 0:34 0:167 route-map calculator permit 14055 match community 2_34_167 set community 0:5678 ip community-list standard 2_4_172 permit 65000:2 0:4 0:172 ip community-list standard 2_8_86 permit 65000:2 0:8 0:86 ip community-list standard 2_16_43 permit 65000:2 0:16 0:43 route-map calculator permit 14056 match community 2_4_172 2_8_86 2_16_43 set community 0:688 ip community-list standard 2_107_189 permit 65000:2 0:107 0:189 route-map calculator permit 14057 match community 2_107_189 set community 0:20223 ip community-list standard 2_165_255 permit 65000:2 0:165 0:255 ip community-list standard 2_187_225 permit 65000:2 0:187 0:225 route-map calculator permit 14058 match community 2_165_255 2_187_225 set community 0:42075 ip community-list standard 2_68_151 permit 65000:2 0:68 0:151 route-map calculator permit 14059 match community 2_68_151 set community 0:10268 ip community-list standard 2_184_250 permit 65000:2 0:184 0:250 ip community-list standard 2_200_230 permit 65000:2 0:200 0:230 route-map calculator permit 14060 match community 2_184_250 2_200_230 set community 0:46000 ip community-list standard 2_147_247 permit 65000:2 0:147 0:247 route-map calculator permit 14061 match community 2_147_247 set community 0:36309 ip community-list standard 2_71_244 permit 65000:2 0:71 0:244 ip community-list standard 2_122_142 permit 65000:2 0:122 0:142 route-map calculator permit 14062 match community 2_71_244 2_122_142 set community 0:17324 ip community-list standard 2_45_241 permit 65000:2 0:45 0:241 route-map calculator permit 14063 match community 2_45_241 set community 0:10845 ip community-list standard 2_98_189 permit 65000:2 0:98 0:189 ip community-list standard 2_126_147 permit 65000:2 0:126 0:147 route-map calculator permit 14064 match community 2_98_189 2_126_147 set community 0:18522 ip community-list standard 2_131_140 permit 65000:2 0:131 0:140 route-map calculator permit 14065 match community 2_131_140 set community 0:18340 ip community-list standard 2_2_158 permit 65000:2 0:2 0:158 ip community-list standard 2_4_79 permit 65000:2 0:4 0:79 ip community-list standard 1_60_256 permit 65000:1 0:60 0:256 ip community-list standard 1_61_255 permit 65000:1 0:61 0:255 ip community-list standard 1_62_254 permit 65000:1 0:62 0:254 ip community-list standard 1_63_253 permit 65000:1 0:63 0:253 ip community-list standard 1_64_252 permit 65000:1 0:64 0:252 ip community-list standard 1_65_251 permit 65000:1 0:65 0:251 ip community-list standard 1_66_250 permit 65000:1 0:66 0:250 ip community-list standard 1_67_249 permit 65000:1 0:67 0:249 ip community-list standard 1_68_248 permit 65000:1 0:68 0:248 ip community-list standard 1_69_247 permit 65000:1 0:69 0:247 ip community-list standard 1_70_246 permit 65000:1 0:70 0:246 ip community-list standard 1_71_245 permit 65000:1 0:71 0:245 ip community-list standard 1_72_244 permit 65000:1 0:72 0:244 ip community-list standard 1_73_243 permit 65000:1 0:73 0:243 ip community-list standard 1_74_242 permit 65000:1 0:74 0:242 ip community-list standard 1_75_241 permit 65000:1 0:75 0:241 ip community-list standard 1_76_240 permit 65000:1 0:76 0:240 ip community-list standard 1_77_239 permit 65000:1 0:77 0:239 ip community-list standard 1_78_238 permit 65000:1 0:78 0:238 ip community-list standard 1_79_237 permit 65000:1 0:79 0:237 ip community-list standard 1_80_236 permit 65000:1 0:80 0:236 ip community-list standard 1_81_235 permit 65000:1 0:81 0:235 ip community-list standard 1_82_234 permit 65000:1 0:82 0:234 ip community-list standard 1_83_233 permit 65000:1 0:83 0:233 ip community-list standard 1_84_232 permit 65000:1 0:84 0:232 ip community-list standard 1_85_231 permit 65000:1 0:85 0:231 ip community-list standard 1_86_230 permit 65000:1 0:86 0:230 ip community-list standard 1_87_229 permit 65000:1 0:87 0:229 ip community-list standard 1_88_228 permit 65000:1 0:88 0:228 ip community-list standard 1_89_227 permit 65000:1 0:89 0:227 ip community-list standard 1_90_226 permit 65000:1 0:90 0:226 ip community-list standard 1_91_225 permit 65000:1 0:91 0:225 ip community-list standard 1_92_224 permit 65000:1 0:92 0:224 ip community-list standard 1_93_223 permit 65000:1 0:93 0:223 ip community-list standard 1_94_222 permit 65000:1 0:94 0:222 ip community-list standard 1_95_221 permit 65000:1 0:95 0:221 ip community-list standard 1_96_220 permit 65000:1 0:96 0:220 ip community-list standard 1_97_219 permit 65000:1 0:97 0:219 ip community-list standard 1_98_218 permit 65000:1 0:98 0:218 ip community-list standard 1_99_217 permit 65000:1 0:99 0:217 ip community-list standard 1_100_216 permit 65000:1 0:100 0:216 ip community-list standard 1_101_215 permit 65000:1 0:101 0:215 ip community-list standard 1_102_214 permit 65000:1 0:102 0:214 ip community-list standard 1_103_213 permit 65000:1 0:103 0:213 ip community-list standard 1_104_212 permit 65000:1 0:104 0:212 ip community-list standard 1_105_211 permit 65000:1 0:105 0:211 ip community-list standard 1_106_210 permit 65000:1 0:106 0:210 ip community-list standard 1_107_209 permit 65000:1 0:107 0:209 ip community-list standard 1_108_208 permit 65000:1 0:108 0:208 ip community-list standard 1_109_207 permit 65000:1 0:109 0:207 ip community-list standard 1_110_206 permit 65000:1 0:110 0:206 ip community-list standard 1_111_205 permit 65000:1 0:111 0:205 ip community-list standard 1_112_204 permit 65000:1 0:112 0:204 ip community-list standard 1_113_203 permit 65000:1 0:113 0:203 ip community-list standard 1_114_202 permit 65000:1 0:114 0:202 ip community-list standard 1_115_201 permit 65000:1 0:115 0:201 ip community-list standard 1_116_200 permit 65000:1 0:116 0:200 ip community-list standard 1_117_199 permit 65000:1 0:117 0:199 ip community-list standard 1_118_198 permit 65000:1 0:118 0:198 ip community-list standard 1_119_197 permit 65000:1 0:119 0:197 ip community-list standard 1_120_196 permit 65000:1 0:120 0:196 ip community-list standard 1_121_195 permit 65000:1 0:121 0:195 ip community-list standard 1_122_194 permit 65000:1 0:122 0:194 ip community-list standard 1_123_193 permit 65000:1 0:123 0:193 ip community-list standard 1_124_192 permit 65000:1 0:124 0:192 ip community-list standard 1_125_191 permit 65000:1 0:125 0:191 ip community-list standard 1_126_190 permit 65000:1 0:126 0:190 ip community-list standard 1_127_189 permit 65000:1 0:127 0:189 ip community-list standard 1_128_188 permit 65000:1 0:128 0:188 ip community-list standard 1_129_187 permit 65000:1 0:129 0:187 ip community-list standard 1_130_186 permit 65000:1 0:130 0:186 ip community-list standard 1_131_185 permit 65000:1 0:131 0:185 ip community-list standard 1_132_184 permit 65000:1 0:132 0:184 ip community-list standard 1_133_183 permit 65000:1 0:133 0:183 ip community-list standard 1_134_182 permit 65000:1 0:134 0:182 ip community-list standard 1_135_181 permit 65000:1 0:135 0:181 ip community-list standard 1_136_180 permit 65000:1 0:136 0:180 ip community-list standard 1_137_179 permit 65000:1 0:137 0:179 ip community-list standard 1_138_178 permit 65000:1 0:138 0:178 ip community-list standard 1_139_177 permit 65000:1 0:139 0:177 ip community-list standard 1_140_176 permit 65000:1 0:140 0:176 ip community-list standard 1_141_175 permit 65000:1 0:141 0:175 ip community-list standard 1_142_174 permit 65000:1 0:142 0:174 ip community-list standard 1_143_173 permit 65000:1 0:143 0:173 ip community-list standard 1_144_172 permit 65000:1 0:144 0:172 ip community-list standard 1_145_171 permit 65000:1 0:145 0:171 ip community-list standard 1_146_170 permit 65000:1 0:146 0:170 ip community-list standard 1_147_169 permit 65000:1 0:147 0:169 ip community-list standard 1_148_168 permit 65000:1 0:148 0:168 ip community-list standard 1_149_167 permit 65000:1 0:149 0:167 ip community-list standard 1_150_166 permit 65000:1 0:150 0:166 ip community-list standard 1_151_165 permit 65000:1 0:151 0:165 ip community-list standard 1_152_164 permit 65000:1 0:152 0:164 ip community-list standard 1_153_163 permit 65000:1 0:153 0:163 ip community-list standard 1_154_162 permit 65000:1 0:154 0:162 ip community-list standard 1_155_161 permit 65000:1 0:155 0:161 ip community-list standard 1_156_160 permit 65000:1 0:156 0:160 ip community-list standard 1_157_159 permit 65000:1 0:157 0:159 ip community-list standard 1_158_158 permit 65000:1 0:158 0:158 route-map calculator permit 14066 match community 2_2_158 2_4_79 1_60_256 1_61_255 1_62_254 set community 0:316 route-map calculator permit 14067 match community 1_63_253 1_64_252 1_65_251 1_66_250 1_67_249 set community 0:316 route-map calculator permit 14068 match community 1_68_248 1_69_247 1_70_246 1_71_245 1_72_244 set community 0:316 route-map calculator permit 14069 match community 1_73_243 1_74_242 1_75_241 1_76_240 1_77_239 set community 0:316 route-map calculator permit 14070 match community 1_78_238 1_79_237 1_80_236 1_81_235 1_82_234 set community 0:316 route-map calculator permit 14071 match community 1_83_233 1_84_232 1_85_231 1_86_230 1_87_229 set community 0:316 route-map calculator permit 14072 match community 1_88_228 1_89_227 1_90_226 1_91_225 1_92_224 set community 0:316 route-map calculator permit 14073 match community 1_93_223 1_94_222 1_95_221 1_96_220 1_97_219 set community 0:316 route-map calculator permit 14074 match community 1_98_218 1_99_217 1_100_216 1_101_215 1_102_214 set community 0:316 route-map calculator permit 14075 match community 1_103_213 1_104_212 1_105_211 1_106_210 1_107_209 set community 0:316 route-map calculator permit 14076 match community 1_108_208 1_109_207 1_110_206 1_111_205 1_112_204 set community 0:316 route-map calculator permit 14077 match community 1_113_203 1_114_202 1_115_201 1_116_200 1_117_199 set community 0:316 route-map calculator permit 14078 match community 1_118_198 1_119_197 1_120_196 1_121_195 1_122_194 set community 0:316 route-map calculator permit 14079 match community 1_123_193 1_124_192 1_125_191 1_126_190 1_127_189 set community 0:316 route-map calculator permit 14080 match community 1_128_188 1_129_187 1_130_186 1_131_185 1_132_184 set community 0:316 route-map calculator permit 14081 match community 1_133_183 1_134_182 1_135_181 1_136_180 1_137_179 set community 0:316 route-map calculator permit 14082 match community 1_138_178 1_139_177 1_140_176 1_141_175 1_142_174 set community 0:316 route-map calculator permit 14083 match community 1_143_173 1_144_172 1_145_171 1_146_170 1_147_169 set community 0:316 route-map calculator permit 14084 match community 1_148_168 1_149_167 1_150_166 1_151_165 1_152_164 set community 0:316 route-map calculator permit 14085 match community 1_153_163 1_154_162 1_155_161 1_156_160 1_157_159 set community 0:316 route-map calculator permit 14086 match community 1_158_158 set community 0:316 ip community-list standard 2_44_226 permit 65000:2 0:44 0:226 ip community-list standard 2_88_113 permit 65000:2 0:88 0:113 route-map calculator permit 14087 match community 2_44_226 2_88_113 set community 0:9944 ip community-list standard 2_126_191 permit 65000:2 0:126 0:191 route-map calculator permit 14088 match community 2_126_191 set community 0:24066 ip community-list standard 2_162_202 permit 65000:2 0:162 0:202 route-map calculator permit 14089 match community 2_162_202 set community 0:32724 ip community-list standard 2_77_97 permit 65000:2 0:77 0:97 route-map calculator permit 14090 match community 2_77_97 set community 0:7469 ip community-list standard 2_100_254 permit 65000:2 0:100 0:254 ip community-list standard 2_127_200 permit 65000:2 0:127 0:200 route-map calculator permit 14091 match community 2_100_254 2_127_200 set community 0:25400 ip community-list standard 2_119_247 permit 65000:2 0:119 0:247 ip community-list standard 2_133_221 permit 65000:2 0:133 0:221 route-map calculator permit 14092 match community 2_119_247 2_133_221 set community 0:29393 ip community-list standard 2_31_186 permit 65000:2 0:31 0:186 ip community-list standard 2_62_93 permit 65000:2 0:62 0:93 route-map calculator permit 14093 match community 2_31_186 2_62_93 set community 0:5766 ip community-list standard 2_173_188 permit 65000:2 0:173 0:188 route-map calculator permit 14094 match community 2_173_188 set community 0:32524 ip community-list standard 2_75_228 permit 65000:2 0:75 0:228 ip community-list standard 2_76_225 permit 65000:2 0:76 0:225 ip community-list standard 2_90_190 permit 65000:2 0:90 0:190 ip community-list standard 2_95_180 permit 65000:2 0:95 0:180 ip community-list standard 2_100_171 permit 65000:2 0:100 0:171 ip community-list standard 2_114_150 permit 65000:2 0:114 0:150 route-map calculator permit 14095 match community 2_75_228 2_76_225 2_90_190 2_95_180 2_100_171 set community 0:17100 route-map calculator permit 14096 match community 2_114_150 set community 0:17100 ip community-list standard 2_135_243 permit 65000:2 0:135 0:243 route-map calculator permit 14097 match community 2_135_243 set community 0:32805 ip community-list standard 2_17_38 permit 65000:2 0:17 0:38 ip community-list standard 2_19_34 permit 65000:2 0:19 0:34 route-map calculator permit 14098 match community 2_17_38 2_19_34 set community 0:646 ip community-list standard 2_161_251 permit 65000:2 0:161 0:251 route-map calculator permit 14099 match community 2_161_251 set community 0:40411 ip community-list standard 2_29_142 permit 65000:2 0:29 0:142 ip community-list standard 2_58_71 permit 65000:2 0:58 0:71 route-map calculator permit 14100 match community 2_29_142 2_58_71 set community 0:4118 ip community-list standard 2_120_245 permit 65000:2 0:120 0:245 ip community-list standard 2_140_210 permit 65000:2 0:140 0:210 ip community-list standard 2_147_200 permit 65000:2 0:147 0:200 ip community-list standard 2_150_196 permit 65000:2 0:150 0:196 ip community-list standard 2_168_175 permit 65000:2 0:168 0:175 route-map calculator permit 14101 match community 2_120_245 2_140_210 2_147_200 2_150_196 2_168_175 set community 0:29400 ip community-list standard 2_92_184 permit 65000:2 0:92 0:184 route-map calculator permit 14102 match community 2_92_184 set community 0:16928 ip community-list standard 2_222_243 permit 65000:2 0:222 0:243 route-map calculator permit 14103 match community 2_222_243 set community 0:53946 ip community-list standard 2_16_237 permit 65000:2 0:16 0:237 ip community-list standard 2_24_158 permit 65000:2 0:24 0:158 ip community-list standard 2_48_79 permit 65000:2 0:48 0:79 route-map calculator permit 14104 match community 2_16_237 2_24_158 2_48_79 set community 0:3792 ip community-list standard 2_101_235 permit 65000:2 0:101 0:235 route-map calculator permit 14105 match community 2_101_235 set community 0:23735 ip community-list standard 2_59_85 permit 65000:2 0:59 0:85 route-map calculator permit 14106 match community 2_59_85 set community 0:5015 ip community-list standard 2_119_159 permit 65000:2 0:119 0:159 route-map calculator permit 14107 match community 2_119_159 set community 0:18921 ip community-list standard 2_135_250 permit 65000:2 0:135 0:250 ip community-list standard 2_150_225 permit 65000:2 0:150 0:225 route-map calculator permit 14108 match community 2_135_250 2_150_225 set community 0:33750 ip community-list standard 2_6_219 permit 65000:2 0:6 0:219 ip community-list standard 2_9_146 permit 65000:2 0:9 0:146 ip community-list standard 2_18_73 permit 65000:2 0:18 0:73 route-map calculator permit 14109 match community 2_6_219 2_9_146 2_18_73 set community 0:1314 ip community-list standard 2_131_197 permit 65000:2 0:131 0:197 route-map calculator permit 14110 match community 2_131_197 set community 0:25807 ip community-list standard 1_1_210 permit 65000:1 0:1 0:210 ip community-list standard 2_1_211 permit 65000:2 0:1 0:211 ip community-list standard 1_2_209 permit 65000:1 0:2 0:209 ip community-list standard 1_3_208 permit 65000:1 0:3 0:208 ip community-list standard 1_4_207 permit 65000:1 0:4 0:207 ip community-list standard 1_5_206 permit 65000:1 0:5 0:206 ip community-list standard 1_6_205 permit 65000:1 0:6 0:205 ip community-list standard 1_7_204 permit 65000:1 0:7 0:204 ip community-list standard 1_8_203 permit 65000:1 0:8 0:203 ip community-list standard 1_9_202 permit 65000:1 0:9 0:202 ip community-list standard 1_10_201 permit 65000:1 0:10 0:201 ip community-list standard 1_11_200 permit 65000:1 0:11 0:200 ip community-list standard 1_12_199 permit 65000:1 0:12 0:199 ip community-list standard 1_13_198 permit 65000:1 0:13 0:198 ip community-list standard 1_14_197 permit 65000:1 0:14 0:197 ip community-list standard 1_15_196 permit 65000:1 0:15 0:196 ip community-list standard 1_16_195 permit 65000:1 0:16 0:195 ip community-list standard 1_17_194 permit 65000:1 0:17 0:194 ip community-list standard 1_18_193 permit 65000:1 0:18 0:193 ip community-list standard 1_19_192 permit 65000:1 0:19 0:192 ip community-list standard 1_20_191 permit 65000:1 0:20 0:191 ip community-list standard 1_21_190 permit 65000:1 0:21 0:190 ip community-list standard 1_22_189 permit 65000:1 0:22 0:189 ip community-list standard 1_23_188 permit 65000:1 0:23 0:188 ip community-list standard 1_24_187 permit 65000:1 0:24 0:187 ip community-list standard 1_25_186 permit 65000:1 0:25 0:186 ip community-list standard 1_26_185 permit 65000:1 0:26 0:185 ip community-list standard 1_27_184 permit 65000:1 0:27 0:184 ip community-list standard 1_28_183 permit 65000:1 0:28 0:183 ip community-list standard 1_29_182 permit 65000:1 0:29 0:182 ip community-list standard 1_30_181 permit 65000:1 0:30 0:181 ip community-list standard 1_31_180 permit 65000:1 0:31 0:180 ip community-list standard 1_32_179 permit 65000:1 0:32 0:179 ip community-list standard 1_33_178 permit 65000:1 0:33 0:178 ip community-list standard 1_34_177 permit 65000:1 0:34 0:177 ip community-list standard 1_35_176 permit 65000:1 0:35 0:176 ip community-list standard 1_36_175 permit 65000:1 0:36 0:175 ip community-list standard 1_37_174 permit 65000:1 0:37 0:174 ip community-list standard 1_38_173 permit 65000:1 0:38 0:173 ip community-list standard 1_39_172 permit 65000:1 0:39 0:172 ip community-list standard 1_40_171 permit 65000:1 0:40 0:171 ip community-list standard 1_41_170 permit 65000:1 0:41 0:170 ip community-list standard 1_42_169 permit 65000:1 0:42 0:169 ip community-list standard 1_43_168 permit 65000:1 0:43 0:168 ip community-list standard 1_44_167 permit 65000:1 0:44 0:167 ip community-list standard 1_45_166 permit 65000:1 0:45 0:166 ip community-list standard 1_46_165 permit 65000:1 0:46 0:165 ip community-list standard 1_47_164 permit 65000:1 0:47 0:164 ip community-list standard 1_48_163 permit 65000:1 0:48 0:163 ip community-list standard 1_49_162 permit 65000:1 0:49 0:162 ip community-list standard 1_50_161 permit 65000:1 0:50 0:161 ip community-list standard 1_51_160 permit 65000:1 0:51 0:160 ip community-list standard 1_52_159 permit 65000:1 0:52 0:159 ip community-list standard 1_53_158 permit 65000:1 0:53 0:158 ip community-list standard 1_54_157 permit 65000:1 0:54 0:157 ip community-list standard 1_55_156 permit 65000:1 0:55 0:156 ip community-list standard 1_56_155 permit 65000:1 0:56 0:155 ip community-list standard 1_57_154 permit 65000:1 0:57 0:154 ip community-list standard 1_58_153 permit 65000:1 0:58 0:153 ip community-list standard 1_59_152 permit 65000:1 0:59 0:152 ip community-list standard 1_60_151 permit 65000:1 0:60 0:151 ip community-list standard 1_61_150 permit 65000:1 0:61 0:150 ip community-list standard 1_62_149 permit 65000:1 0:62 0:149 ip community-list standard 1_63_148 permit 65000:1 0:63 0:148 ip community-list standard 1_64_147 permit 65000:1 0:64 0:147 ip community-list standard 1_65_146 permit 65000:1 0:65 0:146 ip community-list standard 1_66_145 permit 65000:1 0:66 0:145 ip community-list standard 1_67_144 permit 65000:1 0:67 0:144 ip community-list standard 1_68_143 permit 65000:1 0:68 0:143 ip community-list standard 1_69_142 permit 65000:1 0:69 0:142 ip community-list standard 1_70_141 permit 65000:1 0:70 0:141 ip community-list standard 1_71_140 permit 65000:1 0:71 0:140 ip community-list standard 1_72_139 permit 65000:1 0:72 0:139 ip community-list standard 1_73_138 permit 65000:1 0:73 0:138 ip community-list standard 1_74_137 permit 65000:1 0:74 0:137 ip community-list standard 1_75_136 permit 65000:1 0:75 0:136 ip community-list standard 1_76_135 permit 65000:1 0:76 0:135 ip community-list standard 1_77_134 permit 65000:1 0:77 0:134 ip community-list standard 1_78_133 permit 65000:1 0:78 0:133 ip community-list standard 1_79_132 permit 65000:1 0:79 0:132 ip community-list standard 1_80_131 permit 65000:1 0:80 0:131 ip community-list standard 1_81_130 permit 65000:1 0:81 0:130 ip community-list standard 1_82_129 permit 65000:1 0:82 0:129 ip community-list standard 1_83_128 permit 65000:1 0:83 0:128 ip community-list standard 1_84_127 permit 65000:1 0:84 0:127 ip community-list standard 1_85_126 permit 65000:1 0:85 0:126 ip community-list standard 1_86_125 permit 65000:1 0:86 0:125 ip community-list standard 1_87_124 permit 65000:1 0:87 0:124 ip community-list standard 1_88_123 permit 65000:1 0:88 0:123 ip community-list standard 1_89_122 permit 65000:1 0:89 0:122 ip community-list standard 1_90_121 permit 65000:1 0:90 0:121 ip community-list standard 1_91_120 permit 65000:1 0:91 0:120 ip community-list standard 1_92_119 permit 65000:1 0:92 0:119 ip community-list standard 1_93_118 permit 65000:1 0:93 0:118 ip community-list standard 1_94_117 permit 65000:1 0:94 0:117 ip community-list standard 1_95_116 permit 65000:1 0:95 0:116 ip community-list standard 1_96_115 permit 65000:1 0:96 0:115 ip community-list standard 1_97_114 permit 65000:1 0:97 0:114 ip community-list standard 1_98_113 permit 65000:1 0:98 0:113 ip community-list standard 1_99_112 permit 65000:1 0:99 0:112 ip community-list standard 1_100_111 permit 65000:1 0:100 0:111 ip community-list standard 1_101_110 permit 65000:1 0:101 0:110 ip community-list standard 1_102_109 permit 65000:1 0:102 0:109 ip community-list standard 1_103_108 permit 65000:1 0:103 0:108 ip community-list standard 1_104_107 permit 65000:1 0:104 0:107 ip community-list standard 1_105_106 permit 65000:1 0:105 0:106 ip community-list expanded c211 permit 1 ^65000:4_0:211_0:1$ ip community-list expanded c211 permit 2 ^65000:3_0:212_0:1$ ip community-list expanded c211 permit 3 ^65000:3_0:213_0:2$ ip community-list expanded c211 permit 4 ^65000:3_0:214_0:3$ ip community-list expanded c211 permit 5 ^65000:3_0:215_0:4$ ip community-list expanded c211 permit 6 ^65000:3_0:216_0:5$ ip community-list expanded c211 permit 7 ^65000:3_0:217_0:6$ ip community-list expanded c211 permit 8 ^65000:3_0:218_0:7$ ip community-list expanded c211 permit 9 ^65000:3_0:219_0:8$ ip community-list expanded c211 permit 10 ^65000:3_0:220_0:9$ ip community-list expanded c211 permit 11 ^65000:3_0:221_0:10$ ip community-list expanded c211 permit 12 ^65000:3_0:222_0:11$ ip community-list expanded c211 permit 13 ^65000:3_0:223_0:12$ ip community-list expanded c211 permit 14 ^65000:3_0:224_0:13$ ip community-list expanded c211 permit 15 ^65000:3_0:225_0:14$ ip community-list expanded c211 permit 16 ^65000:3_0:226_0:15$ ip community-list expanded c211 permit 17 ^65000:3_0:227_0:16$ ip community-list expanded c211 permit 18 ^65000:3_0:228_0:17$ ip community-list expanded c211 permit 19 ^65000:3_0:229_0:18$ ip community-list expanded c211 permit 20 ^65000:3_0:230_0:19$ ip community-list expanded c211 permit 21 ^65000:3_0:231_0:20$ ip community-list expanded c211 permit 22 ^65000:3_0:232_0:21$ ip community-list expanded c211 permit 23 ^65000:3_0:233_0:22$ ip community-list expanded c211 permit 24 ^65000:3_0:234_0:23$ ip community-list expanded c211 permit 25 ^65000:3_0:235_0:24$ ip community-list expanded c211 permit 26 ^65000:3_0:236_0:25$ ip community-list expanded c211 permit 27 ^65000:3_0:237_0:26$ ip community-list expanded c211 permit 28 ^65000:3_0:238_0:27$ ip community-list expanded c211 permit 29 ^65000:3_0:239_0:28$ ip community-list expanded c211 permit 30 ^65000:3_0:240_0:29$ ip community-list expanded c211 permit 31 ^65000:3_0:241_0:30$ ip community-list expanded c211 permit 32 ^65000:3_0:242_0:31$ ip community-list expanded c211 permit 33 ^65000:3_0:243_0:32$ ip community-list expanded c211 permit 34 ^65000:3_0:244_0:33$ ip community-list expanded c211 permit 35 ^65000:3_0:245_0:34$ ip community-list expanded c211 permit 36 ^65000:3_0:246_0:35$ ip community-list expanded c211 permit 37 ^65000:3_0:247_0:36$ ip community-list expanded c211 permit 38 ^65000:3_0:248_0:37$ ip community-list expanded c211 permit 39 ^65000:3_0:249_0:38$ ip community-list expanded c211 permit 40 ^65000:3_0:250_0:39$ ip community-list expanded c211 permit 41 ^65000:3_0:251_0:40$ ip community-list expanded c211 permit 42 ^65000:3_0:252_0:41$ ip community-list expanded c211 permit 43 ^65000:3_0:253_0:42$ ip community-list expanded c211 permit 44 ^65000:3_0:254_0:43$ ip community-list expanded c211 permit 45 ^65000:3_0:255_0:44$ ip community-list expanded c211 permit 46 ^65000:3_0:256_0:45$ route-map calculator permit 14111 match community 1_1_210 2_1_211 1_2_209 1_3_208 1_4_207 set community 0:211 route-map calculator permit 14112 match community 1_5_206 1_6_205 1_7_204 1_8_203 1_9_202 set community 0:211 route-map calculator permit 14113 match community 1_10_201 1_11_200 1_12_199 1_13_198 1_14_197 set community 0:211 route-map calculator permit 14114 match community 1_15_196 1_16_195 1_17_194 1_18_193 1_19_192 set community 0:211 route-map calculator permit 14115 match community 1_20_191 1_21_190 1_22_189 1_23_188 1_24_187 set community 0:211 route-map calculator permit 14116 match community 1_25_186 1_26_185 1_27_184 1_28_183 1_29_182 set community 0:211 route-map calculator permit 14117 match community 1_30_181 1_31_180 1_32_179 1_33_178 1_34_177 set community 0:211 route-map calculator permit 14118 match community 1_35_176 1_36_175 1_37_174 1_38_173 1_39_172 set community 0:211 route-map calculator permit 14119 match community 1_40_171 1_41_170 1_42_169 1_43_168 1_44_167 set community 0:211 route-map calculator permit 14120 match community 1_45_166 1_46_165 1_47_164 1_48_163 1_49_162 set community 0:211 route-map calculator permit 14121 match community 1_50_161 1_51_160 1_52_159 1_53_158 1_54_157 set community 0:211 route-map calculator permit 14122 match community 1_55_156 1_56_155 1_57_154 1_58_153 1_59_152 set community 0:211 route-map calculator permit 14123 match community 1_60_151 1_61_150 1_62_149 1_63_148 1_64_147 set community 0:211 route-map calculator permit 14124 match community 1_65_146 1_66_145 1_67_144 1_68_143 1_69_142 set community 0:211 route-map calculator permit 14125 match community 1_70_141 1_71_140 1_72_139 1_73_138 1_74_137 set community 0:211 route-map calculator permit 14126 match community 1_75_136 1_76_135 1_77_134 1_78_133 1_79_132 set community 0:211 route-map calculator permit 14127 match community 1_80_131 1_81_130 1_82_129 1_83_128 1_84_127 set community 0:211 route-map calculator permit 14128 match community 1_85_126 1_86_125 1_87_124 1_88_123 1_89_122 set community 0:211 route-map calculator permit 14129 match community 1_90_121 1_91_120 1_92_119 1_93_118 1_94_117 set community 0:211 route-map calculator permit 14130 match community 1_95_116 1_96_115 1_97_114 1_98_113 1_99_112 set community 0:211 route-map calculator permit 14131 match community 1_100_111 1_101_110 1_102_109 1_103_108 1_104_107 set community 0:211 route-map calculator permit 14132 match community 1_105_106 c4_211_1 c3_212_1 c3_213_2 c3_214_3 set community 0:211 route-map calculator permit 14133 match community c3_215_4 c3_216_5 c3_217_6 c3_218_7 c3_219_8 set community 0:211 route-map calculator permit 14134 match community c3_220_9 c3_221_10 c3_222_11 c3_223_12 c3_224_13 set community 0:211 route-map calculator permit 14135 match community c3_225_14 c3_226_15 c3_227_16 c3_228_17 c3_229_18 set community 0:211 route-map calculator permit 14136 match community c3_230_19 c3_231_20 c3_232_21 c3_233_22 c3_234_23 set community 0:211 route-map calculator permit 14137 match community c3_235_24 c3_236_25 c3_237_26 c3_238_27 c3_239_28 set community 0:211 route-map calculator permit 14138 match community c3_240_29 c3_241_30 c3_242_31 c3_243_32 c3_244_33 set community 0:211 route-map calculator permit 14139 match community c3_245_34 c3_246_35 c3_247_36 c3_248_37 c3_249_38 set community 0:211 route-map calculator permit 14140 match community c3_250_39 c3_251_40 c3_252_41 c3_253_42 c3_254_43 set community 0:211 route-map calculator permit 14141 match community c3_255_44 c3_256_45 set community 0:211 ip community-list standard 2_222_248 permit 65000:2 0:222 0:248 route-map calculator permit 14142 match community 2_222_248 set community 0:55056 ip community-list standard 2_5_110 permit 65000:2 0:5 0:110 ip community-list standard 2_10_55 permit 65000:2 0:10 0:55 ip community-list standard 2_11_50 permit 65000:2 0:11 0:50 ip community-list standard 2_22_25 permit 65000:2 0:22 0:25 route-map calculator permit 14143 match community 2_5_110 2_10_55 2_11_50 2_22_25 set community 0:550 ip community-list standard 2_34_246 permit 65000:2 0:34 0:246 ip community-list standard 2_41_204 permit 65000:2 0:41 0:204 ip community-list standard 2_51_164 permit 65000:2 0:51 0:164 ip community-list standard 2_68_123 permit 65000:2 0:68 0:123 ip community-list standard 2_82_102 permit 65000:2 0:82 0:102 route-map calculator permit 14144 match community 2_34_246 2_41_204 2_51_164 2_68_123 2_82_102 set community 0:8364 ip community-list standard 2_95_237 permit 65000:2 0:95 0:237 route-map calculator permit 14145 match community 2_95_237 set community 0:22515 ip community-list standard 2_71_226 permit 65000:2 0:71 0:226 ip community-list standard 2_113_142 permit 65000:2 0:113 0:142 route-map calculator permit 14146 match community 2_71_226 2_113_142 set community 0:16046 ip community-list standard 2_136_181 permit 65000:2 0:136 0:181 route-map calculator permit 14147 match community 2_136_181 set community 0:24616 ip community-list standard 2_37_246 permit 65000:2 0:37 0:246 ip community-list standard 2_41_222 permit 65000:2 0:41 0:222 ip community-list standard 2_74_123 permit 65000:2 0:74 0:123 ip community-list standard 2_82_111 permit 65000:2 0:82 0:111 route-map calculator permit 14148 match community 2_37_246 2_41_222 2_74_123 2_82_111 set community 0:9102 ip community-list standard 2_141_253 permit 65000:2 0:141 0:253 route-map calculator permit 14149 match community 2_141_253 set community 0:35673 ip community-list standard 2_17_57 permit 65000:2 0:17 0:57 ip community-list standard 2_19_51 permit 65000:2 0:19 0:51 route-map calculator permit 14150 match community 2_17_57 2_19_51 set community 0:969 ip community-list standard 2_89_236 permit 65000:2 0:89 0:236 ip community-list standard 2_118_178 permit 65000:2 0:118 0:178 route-map calculator permit 14151 match community 2_89_236 2_118_178 set community 0:21004 ip community-list standard 2_87_181 permit 65000:2 0:87 0:181 route-map calculator permit 14152 match community 2_87_181 set community 0:15747 ip community-list standard 2_142_213 permit 65000:2 0:142 0:213 route-map calculator permit 14153 match community 2_142_213 set community 0:30246 ip community-list standard 2_57_242 permit 65000:2 0:57 0:242 ip community-list standard 2_66_209 permit 65000:2 0:66 0:209 ip community-list standard 2_114_121 permit 65000:2 0:114 0:121 route-map calculator permit 14154 match community 2_57_242 2_66_209 2_114_121 set community 0:13794 ip community-list standard 2_29_41 permit 65000:2 0:29 0:41 route-map calculator permit 14155 match community 2_29_41 set community 0:1189 ip community-list standard 2_194_223 permit 65000:2 0:194 0:223 route-map calculator permit 14156 match community 2_194_223 set community 0:43262 ip community-list standard 2_202_239 permit 65000:2 0:202 0:239 route-map calculator permit 14157 match community 2_202_239 set community 0:48278 ip community-list standard 2_65_71 permit 65000:2 0:65 0:71 route-map calculator permit 14158 match community 2_65_71 set community 0:4615 ip community-list standard 2_26_235 permit 65000:2 0:26 0:235 ip community-list standard 2_47_130 permit 65000:2 0:47 0:130 ip community-list standard 2_65_94 permit 65000:2 0:65 0:94 route-map calculator permit 14159 match community 2_26_235 2_47_130 2_65_94 set community 0:6110 ip community-list standard 2_46_142 permit 65000:2 0:46 0:142 ip community-list standard 2_71_92 permit 65000:2 0:71 0:92 route-map calculator permit 14160 match community 2_46_142 2_71_92 set community 0:6532 ip community-list standard 2_226_237 permit 65000:2 0:226 0:237 route-map calculator permit 14161 match community 2_226_237 set community 0:53562 ip community-list standard 2_5_133 permit 65000:2 0:5 0:133 ip community-list standard 2_7_95 permit 65000:2 0:7 0:95 ip community-list standard 2_19_35 permit 65000:2 0:19 0:35 route-map calculator permit 14162 match community 2_5_133 2_7_95 2_19_35 set community 0:665 ip community-list standard 2_75_101 permit 65000:2 0:75 0:101 route-map calculator permit 14163 match community 2_75_101 set community 0:7575 ip community-list standard 2_200_201 permit 65000:2 0:200 0:201 route-map calculator permit 14164 match community 2_200_201 set community 0:40200 ip community-list standard 2_172_199 permit 65000:2 0:172 0:199 route-map calculator permit 14165 match community 2_172_199 set community 0:34228 ip community-list standard 2_93_103 permit 65000:2 0:93 0:103 route-map calculator permit 14166 match community 2_93_103 set community 0:9579 ip community-list standard 2_182_224 permit 65000:2 0:182 0:224 ip community-list standard 2_196_208 permit 65000:2 0:196 0:208 route-map calculator permit 14167 match community 2_182_224 2_196_208 set community 0:40768 ip community-list standard 2_68_185 permit 65000:2 0:68 0:185 ip community-list standard 2_74_170 permit 65000:2 0:74 0:170 ip community-list standard 2_85_148 permit 65000:2 0:85 0:148 route-map calculator permit 14168 match community 2_68_185 2_74_170 2_85_148 set community 0:12580 ip community-list standard 2_22_195 permit 65000:2 0:22 0:195 ip community-list standard 2_26_165 permit 65000:2 0:26 0:165 ip community-list standard 2_30_143 permit 65000:2 0:30 0:143 ip community-list standard 2_33_130 permit 65000:2 0:33 0:130 ip community-list standard 2_39_110 permit 65000:2 0:39 0:110 ip community-list standard 2_55_78 permit 65000:2 0:55 0:78 ip community-list standard 2_65_66 permit 65000:2 0:65 0:66 route-map calculator permit 14169 match community 2_22_195 2_26_165 2_30_143 2_33_130 2_39_110 set community 0:4290 route-map calculator permit 14170 match community 2_55_78 2_65_66 set community 0:4290 ip community-list standard 2_73_173 permit 65000:2 0:73 0:173 route-map calculator permit 14171 match community 2_73_173 set community 0:12629 ip community-list standard 2_214_251 permit 65000:2 0:214 0:251 route-map calculator permit 14172 match community 2_214_251 set community 0:53714 ip community-list standard 2_98_239 permit 65000:2 0:98 0:239 route-map calculator permit 14173 match community 2_98_239 set community 0:23422 ip community-list standard 2_154_172 permit 65000:2 0:154 0:172 route-map calculator permit 14174 match community 2_154_172 set community 0:26488 ip community-list standard 2_108_246 permit 65000:2 0:108 0:246 ip community-list standard 2_123_216 permit 65000:2 0:123 0:216 ip community-list standard 2_162_164 permit 65000:2 0:162 0:164 route-map calculator permit 14175 match community 2_108_246 2_123_216 2_162_164 set community 0:26568 ip community-list standard 2_67_190 permit 65000:2 0:67 0:190 ip community-list standard 2_95_134 permit 65000:2 0:95 0:134 route-map calculator permit 14176 match community 2_67_190 2_95_134 set community 0:12730 ip community-list standard 2_78_191 permit 65000:2 0:78 0:191 route-map calculator permit 14177 match community 2_78_191 set community 0:14898 ip community-list standard 2_110_247 permit 65000:2 0:110 0:247 ip community-list standard 2_130_209 permit 65000:2 0:130 0:209 ip community-list standard 2_143_190 permit 65000:2 0:143 0:190 route-map calculator permit 14178 match community 2_110_247 2_130_209 2_143_190 set community 0:27170 ip community-list standard 2_87_171 permit 65000:2 0:87 0:171 route-map calculator permit 14179 match community 2_87_171 set community 0:14877 ip community-list standard 2_28_249 permit 65000:2 0:28 0:249 ip community-list standard 2_42_166 permit 65000:2 0:42 0:166 ip community-list standard 2_83_84 permit 65000:2 0:83 0:84 route-map calculator permit 14180 match community 2_28_249 2_42_166 2_83_84 set community 0:6972 ip community-list standard 2_169_202 permit 65000:2 0:169 0:202 route-map calculator permit 14181 match community 2_169_202 set community 0:34138 ip community-list standard 2_82_218 permit 65000:2 0:82 0:218 ip community-list standard 2_109_164 permit 65000:2 0:109 0:164 route-map calculator permit 14182 match community 2_82_218 2_109_164 set community 0:17876 ip community-list standard 2_15_97 permit 65000:2 0:15 0:97 route-map calculator permit 14183 match community 2_15_97 set community 0:1455 ip community-list standard 2_39_172 permit 65000:2 0:39 0:172 ip community-list standard 2_43_156 permit 65000:2 0:43 0:156 ip community-list standard 2_52_129 permit 65000:2 0:52 0:129 ip community-list standard 2_78_86 permit 65000:2 0:78 0:86 route-map calculator permit 14184 match community 2_39_172 2_43_156 2_52_129 2_78_86 set community 0:6708 ip community-list standard 2_56_209 permit 65000:2 0:56 0:209 ip community-list standard 2_76_154 permit 65000:2 0:76 0:154 ip community-list standard 2_77_152 permit 65000:2 0:77 0:152 ip community-list standard 2_88_133 permit 65000:2 0:88 0:133 route-map calculator permit 14185 match community 2_56_209 2_76_154 2_77_152 2_88_133 set community 0:11704 ip community-list standard 2_60_226 permit 65000:2 0:60 0:226 ip community-list standard 2_113_120 permit 65000:2 0:113 0:120 route-map calculator permit 14186 match community 2_60_226 2_113_120 set community 0:13560 ip community-list standard 2_37_196 permit 65000:2 0:37 0:196 ip community-list standard 2_49_148 permit 65000:2 0:49 0:148 ip community-list standard 2_74_98 permit 65000:2 0:74 0:98 route-map calculator permit 14187 match community 2_37_196 2_49_148 2_74_98 set community 0:7252 ip community-list standard 2_116_247 permit 65000:2 0:116 0:247 route-map calculator permit 14188 match community 2_116_247 set community 0:28652 ip community-list standard 2_12_221 permit 65000:2 0:12 0:221 ip community-list standard 2_13_204 permit 65000:2 0:13 0:204 ip community-list standard 2_17_156 permit 65000:2 0:17 0:156 ip community-list standard 2_26_102 permit 65000:2 0:26 0:102 ip community-list standard 2_34_78 permit 65000:2 0:34 0:78 ip community-list standard 2_39_68 permit 65000:2 0:39 0:68 ip community-list standard 2_51_52 permit 65000:2 0:51 0:52 route-map calculator permit 14189 match community 2_12_221 2_13_204 2_17_156 2_26_102 2_34_78 set community 0:2652 route-map calculator permit 14190 match community 2_39_68 2_51_52 set community 0:2652 ip community-list standard 2_15_185 permit 65000:2 0:15 0:185 ip community-list standard 2_25_111 permit 65000:2 0:25 0:111 ip community-list standard 2_37_75 permit 65000:2 0:37 0:75 route-map calculator permit 14191 match community 2_15_185 2_25_111 2_37_75 set community 0:2775 ip community-list standard 2_197_199 permit 65000:2 0:197 0:199 route-map calculator permit 14192 match community 2_197_199 set community 0:39203 ip community-list standard 2_108_241 permit 65000:2 0:108 0:241 route-map calculator permit 14193 match community 2_108_241 set community 0:26028 ip community-list standard 2_217_244 permit 65000:2 0:217 0:244 route-map calculator permit 14194 match community 2_217_244 set community 0:52948 ip community-list standard 2_178_235 permit 65000:2 0:178 0:235 route-map calculator permit 14195 match community 2_178_235 set community 0:41830 ip community-list standard 2_212_242 permit 65000:2 0:212 0:242 route-map calculator permit 14196 match community 2_212_242 set community 0:51304 ip community-list standard 2_11_212 permit 65000:2 0:11 0:212 ip community-list standard 2_22_106 permit 65000:2 0:22 0:106 ip community-list standard 2_44_53 permit 65000:2 0:44 0:53 route-map calculator permit 14197 match community 2_11_212 2_22_106 2_44_53 set community 0:2332 ip community-list standard 2_197_250 permit 65000:2 0:197 0:250 route-map calculator permit 14198 match community 2_197_250 set community 0:49250 ip community-list standard 2_185_228 permit 65000:2 0:185 0:228 ip community-list standard 2_190_222 permit 65000:2 0:190 0:222 route-map calculator permit 14199 match community 2_185_228 2_190_222 set community 0:42180 ip community-list standard 2_16_197 permit 65000:2 0:16 0:197 route-map calculator permit 14200 match community 2_16_197 set community 0:3152 ip community-list standard 2_131_158 permit 65000:2 0:131 0:158 route-map calculator permit 14201 match community 2_131_158 set community 0:20698 ip community-list standard 2_62_157 permit 65000:2 0:62 0:157 route-map calculator permit 14202 match community 2_62_157 set community 0:9734 ip community-list standard 2_19_235 permit 65000:2 0:19 0:235 ip community-list standard 2_47_95 permit 65000:2 0:47 0:95 route-map calculator permit 14203 match community 2_19_235 2_47_95 set community 0:4465 ip community-list standard 2_202_219 permit 65000:2 0:202 0:219 route-map calculator permit 14204 match community 2_202_219 set community 0:44238 ip community-list standard 2_213_242 permit 65000:2 0:213 0:242 route-map calculator permit 14205 match community 2_213_242 set community 0:51546 ip community-list standard 2_59_121 permit 65000:2 0:59 0:121 route-map calculator permit 14206 match community 2_59_121 set community 0:7139 ip community-list standard 2_202_232 permit 65000:2 0:202 0:232 route-map calculator permit 14207 match community 2_202_232 set community 0:46864 ip community-list standard 2_131_169 permit 65000:2 0:131 0:169 route-map calculator permit 14208 match community 2_131_169 set community 0:22139 ip community-list standard 2_22_216 permit 65000:2 0:22 0:216 ip community-list standard 2_24_198 permit 65000:2 0:24 0:198 ip community-list standard 2_27_176 permit 65000:2 0:27 0:176 ip community-list standard 2_33_144 permit 65000:2 0:33 0:144 ip community-list standard 2_36_132 permit 65000:2 0:36 0:132 ip community-list standard 2_44_108 permit 65000:2 0:44 0:108 ip community-list standard 2_48_99 permit 65000:2 0:48 0:99 ip community-list standard 2_54_88 permit 65000:2 0:54 0:88 ip community-list standard 2_66_72 permit 65000:2 0:66 0:72 route-map calculator permit 14209 match community 2_22_216 2_24_198 2_27_176 2_33_144 2_36_132 set community 0:4752 route-map calculator permit 14210 match community 2_44_108 2_48_99 2_54_88 2_66_72 set community 0:4752 ip community-list standard 2_126_201 permit 65000:2 0:126 0:201 ip community-list standard 2_134_189 permit 65000:2 0:134 0:189 route-map calculator permit 14211 match community 2_126_201 2_134_189 set community 0:25326 ip community-list standard 2_110_131 permit 65000:2 0:110 0:131 route-map calculator permit 14212 match community 2_110_131 set community 0:14410 ip community-list standard 2_29_148 permit 65000:2 0:29 0:148 ip community-list standard 2_37_116 permit 65000:2 0:37 0:116 ip community-list standard 2_58_74 permit 65000:2 0:58 0:74 route-map calculator permit 14213 match community 2_29_148 2_37_116 2_58_74 set community 0:4292 ip community-list standard 2_75_185 permit 65000:2 0:75 0:185 ip community-list standard 2_111_125 permit 65000:2 0:111 0:125 route-map calculator permit 14214 match community 2_75_185 2_111_125 set community 0:13875 ip community-list standard 2_17_134 permit 65000:2 0:17 0:134 ip community-list standard 2_34_67 permit 65000:2 0:34 0:67 route-map calculator permit 14215 match community 2_17_134 2_34_67 set community 0:2278 ip community-list standard 2_87_232 permit 65000:2 0:87 0:232 ip community-list standard 2_116_174 permit 65000:2 0:116 0:174 route-map calculator permit 14216 match community 2_87_232 2_116_174 set community 0:20184 ip community-list standard 2_139_161 permit 65000:2 0:139 0:161 route-map calculator permit 14217 match community 2_139_161 set community 0:22379 ip community-list standard 2_48_201 permit 65000:2 0:48 0:201 ip community-list standard 2_67_144 permit 65000:2 0:67 0:144 ip community-list standard 2_72_134 permit 65000:2 0:72 0:134 route-map calculator permit 14218 match community 2_48_201 2_67_144 2_72_134 set community 0:9648 ip community-list standard 2_37_67 permit 65000:2 0:37 0:67 route-map calculator permit 14219 match community 2_37_67 set community 0:2479 ip community-list standard 2_48_248 permit 65000:2 0:48 0:248 ip community-list standard 2_62_192 permit 65000:2 0:62 0:192 ip community-list standard 2_64_186 permit 65000:2 0:64 0:186 ip community-list standard 2_93_128 permit 65000:2 0:93 0:128 ip community-list standard 2_96_124 permit 65000:2 0:96 0:124 route-map calculator permit 14220 match community 2_48_248 2_62_192 2_64_186 2_93_128 2_96_124 set community 0:11904 ip community-list standard 2_57_186 permit 65000:2 0:57 0:186 ip community-list standard 2_62_171 permit 65000:2 0:62 0:171 ip community-list standard 2_93_114 permit 65000:2 0:93 0:114 route-map calculator permit 14221 match community 2_57_186 2_62_171 2_93_114 set community 0:10602 ip community-list standard 2_221_243 permit 65000:2 0:221 0:243 route-map calculator permit 14222 match community 2_221_243 set community 0:53703 ip community-list standard 2_139_225 permit 65000:2 0:139 0:225 route-map calculator permit 14223 match community 2_139_225 set community 0:31275 ip community-list standard 2_23_249 permit 65000:2 0:23 0:249 ip community-list standard 2_69_83 permit 65000:2 0:69 0:83 route-map calculator permit 14224 match community 2_23_249 2_69_83 set community 0:5727 ip community-list standard 2_254_254 permit 65000:2 0:254 0:254 route-map calculator permit 14225 match community 2_254_254 set community 0:64516 ip community-list standard 2_41_215 permit 65000:2 0:41 0:215 ip community-list standard 2_43_205 permit 65000:2 0:43 0:205 route-map calculator permit 14226 match community 2_41_215 2_43_205 set community 0:8815 ip community-list standard 2_94_250 permit 65000:2 0:94 0:250 ip community-list standard 2_100_235 permit 65000:2 0:100 0:235 ip community-list standard 2_125_188 permit 65000:2 0:125 0:188 route-map calculator permit 14227 match community 2_94_250 2_100_235 2_125_188 set community 0:23500 ip community-list standard 2_54_246 permit 65000:2 0:54 0:246 ip community-list standard 2_81_164 permit 65000:2 0:81 0:164 ip community-list standard 2_82_162 permit 65000:2 0:82 0:162 ip community-list standard 2_108_123 permit 65000:2 0:108 0:123 route-map calculator permit 14228 match community 2_54_246 2_81_164 2_82_162 2_108_123 set community 0:13284 ip community-list standard 2_191_193 permit 65000:2 0:191 0:193 route-map calculator permit 14229 match community 2_191_193 set community 0:36863 ip community-list standard 2_93_217 permit 65000:2 0:93 0:217 route-map calculator permit 14230 match community 2_93_217 set community 0:20181 ip community-list standard 2_141_174 permit 65000:2 0:141 0:174 route-map calculator permit 14231 match community 2_141_174 set community 0:24534 ip community-list standard 2_212_243 permit 65000:2 0:212 0:243 route-map calculator permit 14232 match community 2_212_243 set community 0:51516 ip community-list standard 2_20_242 permit 65000:2 0:20 0:242 ip community-list standard 2_22_220 permit 65000:2 0:22 0:220 ip community-list standard 2_40_121 permit 65000:2 0:40 0:121 ip community-list standard 2_44_110 permit 65000:2 0:44 0:110 ip community-list standard 2_55_88 permit 65000:2 0:55 0:88 route-map calculator permit 14233 match community 2_20_242 2_22_220 2_40_121 2_44_110 2_55_88 set community 0:4840 ip community-list standard 2_167_170 permit 65000:2 0:167 0:170 route-map calculator permit 14234 match community 2_167_170 set community 0:28390 ip community-list standard 2_228_256 permit 65000:2 0:228 0:256 route-map calculator permit 14235 match community 2_228_256 set community 0:58368 ip community-list standard 2_195_245 permit 65000:2 0:195 0:245 route-map calculator permit 14236 match community 2_195_245 set community 0:47775 ip community-list standard 2_107_137 permit 65000:2 0:107 0:137 route-map calculator permit 14237 match community 2_107_137 set community 0:14659 ip community-list standard 2_203_217 permit 65000:2 0:203 0:217 route-map calculator permit 14238 match community 2_203_217 set community 0:44051 ip community-list standard 2_94_247 permit 65000:2 0:94 0:247 route-map calculator permit 14239 match community 2_94_247 set community 0:23218 ip community-list standard 2_107_207 permit 65000:2 0:107 0:207 route-map calculator permit 14240 match community 2_107_207 set community 0:22149 ip community-list standard 2_43_216 permit 65000:2 0:43 0:216 ip community-list standard 2_54_172 permit 65000:2 0:54 0:172 ip community-list standard 2_72_129 permit 65000:2 0:72 0:129 ip community-list standard 2_86_108 permit 65000:2 0:86 0:108 route-map calculator permit 14241 match community 2_43_216 2_54_172 2_72_129 2_86_108 set community 0:9288 ip community-list standard 2_47_61 permit 65000:2 0:47 0:61 route-map calculator permit 14242 match community 2_47_61 set community 0:2867 ip community-list standard 2_39_200 permit 65000:2 0:39 0:200 ip community-list standard 2_40_195 permit 65000:2 0:40 0:195 ip community-list standard 2_50_156 permit 65000:2 0:50 0:156 ip community-list standard 2_52_150 permit 65000:2 0:52 0:150 ip community-list standard 2_60_130 permit 65000:2 0:60 0:130 ip community-list standard 2_65_120 permit 65000:2 0:65 0:120 ip community-list standard 2_75_104 permit 65000:2 0:75 0:104 ip community-list standard 2_78_100 permit 65000:2 0:78 0:100 route-map calculator permit 14243 match community 2_39_200 2_40_195 2_50_156 2_52_150 2_60_130 set community 0:7800 route-map calculator permit 14244 match community 2_65_120 2_75_104 2_78_100 set community 0:7800 ip community-list standard 2_143_201 permit 65000:2 0:143 0:201 route-map calculator permit 14245 match community 2_143_201 set community 0:28743 ip community-list standard 2_34_177 permit 65000:2 0:34 0:177 ip community-list standard 2_51_118 permit 65000:2 0:51 0:118 ip community-list standard 2_59_102 permit 65000:2 0:59 0:102 route-map calculator permit 14246 match community 2_34_177 2_51_118 2_59_102 set community 0:6018 ip community-list standard 2_109_207 permit 65000:2 0:109 0:207 route-map calculator permit 14247 match community 2_109_207 set community 0:22563 ip community-list standard 2_23_181 permit 65000:2 0:23 0:181 route-map calculator permit 14248 match community 2_23_181 set community 0:4163 ip community-list standard 2_150_246 permit 65000:2 0:150 0:246 ip community-list standard 2_164_225 permit 65000:2 0:164 0:225 ip community-list standard 2_180_205 permit 65000:2 0:180 0:205 route-map calculator permit 14249 match community 2_150_246 2_164_225 2_180_205 set community 0:36900 ip community-list standard 2_231_244 permit 65000:2 0:231 0:244 route-map calculator permit 14250 match community 2_231_244 set community 0:56364 ip community-list standard 2_52_151 permit 65000:2 0:52 0:151 route-map calculator permit 14251 match community 2_52_151 set community 0:7852 ip community-list standard 2_127_131 permit 65000:2 0:127 0:131 route-map calculator permit 14252 match community 2_127_131 set community 0:16637 ip community-list standard 2_216_248 permit 65000:2 0:216 0:248 route-map calculator permit 14253 match community 2_216_248 set community 0:53568 ip community-list standard 2_196_245 permit 65000:2 0:196 0:245 route-map calculator permit 14254 match community 2_196_245 set community 0:48020 ip community-list standard 2_142_149 permit 65000:2 0:142 0:149 route-map calculator permit 14255 match community 2_142_149 set community 0:21158 ip community-list standard 2_223_231 permit 65000:2 0:223 0:231 route-map calculator permit 14256 match community 2_223_231 set community 0:51513 ip community-list standard 2_81_181 permit 65000:2 0:81 0:181 route-map calculator permit 14257 match community 2_81_181 set community 0:14661 ip community-list standard 2_27_255 permit 65000:2 0:27 0:255 ip community-list standard 2_45_153 permit 65000:2 0:45 0:153 ip community-list standard 2_51_135 permit 65000:2 0:51 0:135 ip community-list standard 2_81_85 permit 65000:2 0:81 0:85 route-map calculator permit 14258 match community 2_27_255 2_45_153 2_51_135 2_81_85 set community 0:6885 ip community-list standard 2_213_220 permit 65000:2 0:213 0:220 route-map calculator permit 14259 match community 2_213_220 set community 0:46860 ip community-list standard 2_6_247 permit 65000:2 0:6 0:247 ip community-list standard 2_13_114 permit 65000:2 0:13 0:114 ip community-list standard 2_19_78 permit 65000:2 0:19 0:78 ip community-list standard 2_26_57 permit 65000:2 0:26 0:57 ip community-list standard 2_38_39 permit 65000:2 0:38 0:39 route-map calculator permit 14260 match community 2_6_247 2_13_114 2_19_78 2_26_57 2_38_39 set community 0:1482 ip community-list standard 2_75_103 permit 65000:2 0:75 0:103 route-map calculator permit 14261 match community 2_75_103 set community 0:7725 ip community-list standard 2_11_113 permit 65000:2 0:11 0:113 route-map calculator permit 14262 match community 2_11_113 set community 0:1243 ip community-list standard 2_239_243 permit 65000:2 0:239 0:243 route-map calculator permit 14263 match community 2_239_243 set community 0:58077 ip community-list standard 2_191_205 permit 65000:2 0:191 0:205 route-map calculator permit 14264 match community 2_191_205 set community 0:39155 ip community-list standard 2_8_197 permit 65000:2 0:8 0:197 route-map calculator permit 14265 match community 2_8_197 set community 0:1576 ip community-list standard 2_212_225 permit 65000:2 0:212 0:225 route-map calculator permit 14266 match community 2_212_225 set community 0:47700 ip community-list standard 2_168_223 permit 65000:2 0:168 0:223 route-map calculator permit 14267 match community 2_168_223 set community 0:37464 ip community-list standard 2_167_231 permit 65000:2 0:167 0:231 route-map calculator permit 14268 match community 2_167_231 set community 0:38577 ip community-list standard 2_243_243 permit 65000:2 0:243 0:243 route-map calculator permit 14269 match community 2_243_243 set community 0:59049 ip community-list standard 2_224_228 permit 65000:2 0:224 0:228 route-map calculator permit 14270 match community 2_224_228 set community 0:51072 ip community-list standard 2_75_149 permit 65000:2 0:75 0:149 route-map calculator permit 14271 match community 2_75_149 set community 0:11175 ip community-list standard 2_75_145 permit 65000:2 0:75 0:145 ip community-list standard 2_87_125 permit 65000:2 0:87 0:125 route-map calculator permit 14272 match community 2_75_145 2_87_125 set community 0:10875 ip community-list standard 2_43_113 permit 65000:2 0:43 0:113 route-map calculator permit 14273 match community 2_43_113 set community 0:4859 ip community-list standard 2_18_212 permit 65000:2 0:18 0:212 ip community-list standard 2_24_159 permit 65000:2 0:24 0:159 ip community-list standard 2_36_106 permit 65000:2 0:36 0:106 ip community-list standard 2_53_72 permit 65000:2 0:53 0:72 route-map calculator permit 14274 match community 2_18_212 2_24_159 2_36_106 2_53_72 set community 0:3816 ip community-list standard 2_185_218 permit 65000:2 0:185 0:218 route-map calculator permit 14275 match community 2_185_218 set community 0:40330 ip community-list standard 2_123_229 permit 65000:2 0:123 0:229 route-map calculator permit 14276 match community 2_123_229 set community 0:28167 ip community-list standard 2_165_185 permit 65000:2 0:165 0:185 route-map calculator permit 14277 match community 2_165_185 set community 0:30525 ip community-list standard 2_32_251 permit 65000:2 0:32 0:251 route-map calculator permit 14278 match community 2_32_251 set community 0:8032 ip community-list standard 2_153_213 permit 65000:2 0:153 0:213 route-map calculator permit 14279 match community 2_153_213 set community 0:32589 ip community-list standard 2_26_214 permit 65000:2 0:26 0:214 ip community-list standard 2_52_107 permit 65000:2 0:52 0:107 route-map calculator permit 14280 match community 2_26_214 2_52_107 set community 0:5564 ip community-list standard 2_193_223 permit 65000:2 0:193 0:223 route-map calculator permit 14281 match community 2_193_223 set community 0:43039 ip community-list standard 2_12_214 permit 65000:2 0:12 0:214 ip community-list standard 2_24_107 permit 65000:2 0:24 0:107 route-map calculator permit 14282 match community 2_12_214 2_24_107 set community 0:2568 ip community-list standard 2_5_225 permit 65000:2 0:5 0:225 ip community-list standard 2_9_125 permit 65000:2 0:9 0:125 ip community-list standard 2_15_75 permit 65000:2 0:15 0:75 ip community-list standard 2_25_45 permit 65000:2 0:25 0:45 route-map calculator permit 14283 match community 2_5_225 2_9_125 2_15_75 2_25_45 set community 0:1125 ip community-list standard 2_83_125 permit 65000:2 0:83 0:125 route-map calculator permit 14284 match community 2_83_125 set community 0:10375 ip community-list standard 2_251_254 permit 65000:2 0:251 0:254 route-map calculator permit 14285 match community 2_251_254 set community 0:63754 ip community-list standard 2_252_254 permit 65000:2 0:252 0:254 route-map calculator permit 14286 match community 2_252_254 set community 0:64008 ip community-list standard 2_226_242 permit 65000:2 0:226 0:242 route-map calculator permit 14287 match community 2_226_242 set community 0:54692 ip community-list standard 2_114_213 permit 65000:2 0:114 0:213 ip community-list standard 2_142_171 permit 65000:2 0:142 0:171 route-map calculator permit 14288 match community 2_114_213 2_142_171 set community 0:24282 ip community-list standard 2_117_183 permit 65000:2 0:117 0:183 route-map calculator permit 14289 match community 2_117_183 set community 0:21411 ip community-list standard 2_46_202 permit 65000:2 0:46 0:202 ip community-list standard 2_92_101 permit 65000:2 0:92 0:101 route-map calculator permit 14290 match community 2_46_202 2_92_101 set community 0:9292 ip community-list standard 2_31_59 permit 65000:2 0:31 0:59 route-map calculator permit 14291 match community 2_31_59 set community 0:1829 ip community-list standard 2_174_179 permit 65000:2 0:174 0:179 route-map calculator permit 14292 match community 2_174_179 set community 0:31146 ip community-list standard 2_20_166 permit 65000:2 0:20 0:166 ip community-list standard 2_40_83 permit 65000:2 0:40 0:83 route-map calculator permit 14293 match community 2_20_166 2_40_83 set community 0:3320 ip community-list standard 2_42_252 permit 65000:2 0:42 0:252 ip community-list standard 2_49_216 permit 65000:2 0:49 0:216 ip community-list standard 2_54_196 permit 65000:2 0:54 0:196 ip community-list standard 2_56_189 permit 65000:2 0:56 0:189 ip community-list standard 2_63_168 permit 65000:2 0:63 0:168 ip community-list standard 2_72_147 permit 65000:2 0:72 0:147 ip community-list standard 2_84_126 permit 65000:2 0:84 0:126 ip community-list standard 2_98_108 permit 65000:2 0:98 0:108 route-map calculator permit 14294 match community 2_42_252 2_49_216 2_54_196 2_56_189 2_63_168 set community 0:10584 route-map calculator permit 14295 match community 2_72_147 2_84_126 2_98_108 set community 0:10584 ip community-list standard 2_9_241 permit 65000:2 0:9 0:241 route-map calculator permit 14296 match community 2_9_241 set community 0:2169 ip community-list standard 2_67_209 permit 65000:2 0:67 0:209 route-map calculator permit 14297 match community 2_67_209 set community 0:14003 ip community-list standard 2_2_190 permit 65000:2 0:2 0:190 ip community-list standard 2_4_95 permit 65000:2 0:4 0:95 ip community-list standard 2_5_76 permit 65000:2 0:5 0:76 ip community-list standard 2_10_38 permit 65000:2 0:10 0:38 ip community-list standard 2_19_20 permit 65000:2 0:19 0:20 ip community-list standard 1_124_256 permit 65000:1 0:124 0:256 ip community-list standard 1_125_255 permit 65000:1 0:125 0:255 ip community-list standard 1_126_254 permit 65000:1 0:126 0:254 ip community-list standard 1_127_253 permit 65000:1 0:127 0:253 ip community-list standard 1_128_252 permit 65000:1 0:128 0:252 ip community-list standard 1_129_251 permit 65000:1 0:129 0:251 ip community-list standard 1_130_250 permit 65000:1 0:130 0:250 ip community-list standard 1_131_249 permit 65000:1 0:131 0:249 ip community-list standard 1_132_248 permit 65000:1 0:132 0:248 ip community-list standard 1_133_247 permit 65000:1 0:133 0:247 ip community-list standard 1_134_246 permit 65000:1 0:134 0:246 ip community-list standard 1_135_245 permit 65000:1 0:135 0:245 ip community-list standard 1_136_244 permit 65000:1 0:136 0:244 ip community-list standard 1_137_243 permit 65000:1 0:137 0:243 ip community-list standard 1_138_242 permit 65000:1 0:138 0:242 ip community-list standard 1_139_241 permit 65000:1 0:139 0:241 ip community-list standard 1_140_240 permit 65000:1 0:140 0:240 ip community-list standard 1_141_239 permit 65000:1 0:141 0:239 ip community-list standard 1_142_238 permit 65000:1 0:142 0:238 ip community-list standard 1_143_237 permit 65000:1 0:143 0:237 ip community-list standard 1_144_236 permit 65000:1 0:144 0:236 ip community-list standard 1_145_235 permit 65000:1 0:145 0:235 ip community-list standard 1_146_234 permit 65000:1 0:146 0:234 ip community-list standard 1_147_233 permit 65000:1 0:147 0:233 ip community-list standard 1_148_232 permit 65000:1 0:148 0:232 ip community-list standard 1_149_231 permit 65000:1 0:149 0:231 ip community-list standard 1_150_230 permit 65000:1 0:150 0:230 ip community-list standard 1_151_229 permit 65000:1 0:151 0:229 ip community-list standard 1_152_228 permit 65000:1 0:152 0:228 ip community-list standard 1_153_227 permit 65000:1 0:153 0:227 ip community-list standard 1_154_226 permit 65000:1 0:154 0:226 ip community-list standard 1_155_225 permit 65000:1 0:155 0:225 ip community-list standard 1_156_224 permit 65000:1 0:156 0:224 ip community-list standard 1_157_223 permit 65000:1 0:157 0:223 ip community-list standard 1_158_222 permit 65000:1 0:158 0:222 ip community-list standard 1_159_221 permit 65000:1 0:159 0:221 ip community-list standard 1_160_220 permit 65000:1 0:160 0:220 ip community-list standard 1_161_219 permit 65000:1 0:161 0:219 ip community-list standard 1_162_218 permit 65000:1 0:162 0:218 ip community-list standard 1_163_217 permit 65000:1 0:163 0:217 ip community-list standard 1_164_216 permit 65000:1 0:164 0:216 ip community-list standard 1_165_215 permit 65000:1 0:165 0:215 ip community-list standard 1_166_214 permit 65000:1 0:166 0:214 ip community-list standard 1_167_213 permit 65000:1 0:167 0:213 ip community-list standard 1_168_212 permit 65000:1 0:168 0:212 ip community-list standard 1_169_211 permit 65000:1 0:169 0:211 ip community-list standard 1_170_210 permit 65000:1 0:170 0:210 ip community-list standard 1_171_209 permit 65000:1 0:171 0:209 ip community-list standard 1_172_208 permit 65000:1 0:172 0:208 ip community-list standard 1_173_207 permit 65000:1 0:173 0:207 ip community-list standard 1_174_206 permit 65000:1 0:174 0:206 ip community-list standard 1_175_205 permit 65000:1 0:175 0:205 ip community-list standard 1_176_204 permit 65000:1 0:176 0:204 ip community-list standard 1_177_203 permit 65000:1 0:177 0:203 ip community-list standard 1_178_202 permit 65000:1 0:178 0:202 ip community-list standard 1_179_201 permit 65000:1 0:179 0:201 ip community-list standard 1_180_200 permit 65000:1 0:180 0:200 ip community-list standard 1_181_199 permit 65000:1 0:181 0:199 ip community-list standard 1_182_198 permit 65000:1 0:182 0:198 ip community-list standard 1_183_197 permit 65000:1 0:183 0:197 ip community-list standard 1_184_196 permit 65000:1 0:184 0:196 ip community-list standard 1_185_195 permit 65000:1 0:185 0:195 ip community-list standard 1_186_194 permit 65000:1 0:186 0:194 ip community-list standard 1_187_193 permit 65000:1 0:187 0:193 ip community-list standard 1_188_192 permit 65000:1 0:188 0:192 ip community-list standard 1_189_191 permit 65000:1 0:189 0:191 ip community-list standard 1_190_190 permit 65000:1 0:190 0:190 route-map calculator permit 14298 match community 2_2_190 2_4_95 2_5_76 2_10_38 2_19_20 set community 0:380 route-map calculator permit 14299 match community 1_124_256 1_125_255 1_126_254 1_127_253 1_128_252 set community 0:380 route-map calculator permit 14300 match community 1_129_251 1_130_250 1_131_249 1_132_248 1_133_247 set community 0:380 route-map calculator permit 14301 match community 1_134_246 1_135_245 1_136_244 1_137_243 1_138_242 set community 0:380 route-map calculator permit 14302 match community 1_139_241 1_140_240 1_141_239 1_142_238 1_143_237 set community 0:380 route-map calculator permit 14303 match community 1_144_236 1_145_235 1_146_234 1_147_233 1_148_232 set community 0:380 route-map calculator permit 14304 match community 1_149_231 1_150_230 1_151_229 1_152_228 1_153_227 set community 0:380 route-map calculator permit 14305 match community 1_154_226 1_155_225 1_156_224 1_157_223 1_158_222 set community 0:380 route-map calculator permit 14306 match community 1_159_221 1_160_220 1_161_219 1_162_218 1_163_217 set community 0:380 route-map calculator permit 14307 match community 1_164_216 1_165_215 1_166_214 1_167_213 1_168_212 set community 0:380 route-map calculator permit 14308 match community 1_169_211 1_170_210 1_171_209 1_172_208 1_173_207 set community 0:380 route-map calculator permit 14309 match community 1_174_206 1_175_205 1_176_204 1_177_203 1_178_202 set community 0:380 route-map calculator permit 14310 match community 1_179_201 1_180_200 1_181_199 1_182_198 1_183_197 set community 0:380 route-map calculator permit 14311 match community 1_184_196 1_185_195 1_186_194 1_187_193 1_188_192 set community 0:380 route-map calculator permit 14312 match community 1_189_191 1_190_190 set community 0:380 ip community-list standard 2_30_131 permit 65000:2 0:30 0:131 route-map calculator permit 14313 match community 2_30_131 set community 0:3930 ip community-list standard 2_163_163 permit 65000:2 0:163 0:163 route-map calculator permit 14314 match community 2_163_163 set community 0:26569 ip community-list standard 2_101_105 permit 65000:2 0:101 0:105 route-map calculator permit 14315 match community 2_101_105 set community 0:10605 ip community-list standard 2_125_233 permit 65000:2 0:125 0:233 route-map calculator permit 14316 match community 2_125_233 set community 0:29125 ip community-list standard 2_73_121 permit 65000:2 0:73 0:121 route-map calculator permit 14317 match community 2_73_121 set community 0:8833 ip community-list standard 2_164_169 permit 65000:2 0:164 0:169 route-map calculator permit 14318 match community 2_164_169 set community 0:27716 ip community-list standard 2_10_249 permit 65000:2 0:10 0:249 ip community-list standard 2_15_166 permit 65000:2 0:15 0:166 ip community-list standard 2_30_83 permit 65000:2 0:30 0:83 route-map calculator permit 14319 match community 2_10_249 2_15_166 2_30_83 set community 0:2490 ip community-list standard 2_105_232 permit 65000:2 0:105 0:232 ip community-list standard 2_116_210 permit 65000:2 0:116 0:210 ip community-list standard 2_120_203 permit 65000:2 0:120 0:203 ip community-list standard 2_140_174 permit 65000:2 0:140 0:174 ip community-list standard 2_145_168 permit 65000:2 0:145 0:168 route-map calculator permit 14320 match community 2_105_232 2_116_210 2_120_203 2_140_174 2_145_168 set community 0:24360 ip community-list standard 2_157_247 permit 65000:2 0:157 0:247 route-map calculator permit 14321 match community 2_157_247 set community 0:38779 ip community-list standard 2_3_107 permit 65000:2 0:3 0:107 ip community-list standard 1_65_256 permit 65000:1 0:65 0:256 ip community-list standard 1_66_255 permit 65000:1 0:66 0:255 ip community-list standard 1_67_254 permit 65000:1 0:67 0:254 ip community-list standard 1_68_253 permit 65000:1 0:68 0:253 ip community-list standard 1_69_252 permit 65000:1 0:69 0:252 ip community-list standard 1_70_251 permit 65000:1 0:70 0:251 ip community-list standard 1_71_250 permit 65000:1 0:71 0:250 ip community-list standard 1_72_249 permit 65000:1 0:72 0:249 ip community-list standard 1_73_248 permit 65000:1 0:73 0:248 ip community-list standard 1_74_247 permit 65000:1 0:74 0:247 ip community-list standard 1_75_246 permit 65000:1 0:75 0:246 ip community-list standard 1_76_245 permit 65000:1 0:76 0:245 ip community-list standard 1_77_244 permit 65000:1 0:77 0:244 ip community-list standard 1_78_243 permit 65000:1 0:78 0:243 ip community-list standard 1_79_242 permit 65000:1 0:79 0:242 ip community-list standard 1_80_241 permit 65000:1 0:80 0:241 ip community-list standard 1_81_240 permit 65000:1 0:81 0:240 ip community-list standard 1_82_239 permit 65000:1 0:82 0:239 ip community-list standard 1_83_238 permit 65000:1 0:83 0:238 ip community-list standard 1_84_237 permit 65000:1 0:84 0:237 ip community-list standard 1_85_236 permit 65000:1 0:85 0:236 ip community-list standard 1_86_235 permit 65000:1 0:86 0:235 ip community-list standard 1_87_234 permit 65000:1 0:87 0:234 ip community-list standard 1_88_233 permit 65000:1 0:88 0:233 ip community-list standard 1_89_232 permit 65000:1 0:89 0:232 ip community-list standard 1_90_231 permit 65000:1 0:90 0:231 ip community-list standard 1_91_230 permit 65000:1 0:91 0:230 ip community-list standard 1_92_229 permit 65000:1 0:92 0:229 ip community-list standard 1_93_228 permit 65000:1 0:93 0:228 ip community-list standard 1_94_227 permit 65000:1 0:94 0:227 ip community-list standard 1_95_226 permit 65000:1 0:95 0:226 ip community-list standard 1_96_225 permit 65000:1 0:96 0:225 ip community-list standard 1_97_224 permit 65000:1 0:97 0:224 ip community-list standard 1_98_223 permit 65000:1 0:98 0:223 ip community-list standard 1_99_222 permit 65000:1 0:99 0:222 ip community-list standard 1_100_221 permit 65000:1 0:100 0:221 ip community-list standard 1_101_220 permit 65000:1 0:101 0:220 ip community-list standard 1_102_219 permit 65000:1 0:102 0:219 ip community-list standard 1_103_218 permit 65000:1 0:103 0:218 ip community-list standard 1_104_217 permit 65000:1 0:104 0:217 ip community-list standard 1_105_216 permit 65000:1 0:105 0:216 ip community-list standard 1_106_215 permit 65000:1 0:106 0:215 ip community-list standard 1_107_214 permit 65000:1 0:107 0:214 ip community-list standard 1_108_213 permit 65000:1 0:108 0:213 ip community-list standard 1_109_212 permit 65000:1 0:109 0:212 ip community-list standard 1_110_211 permit 65000:1 0:110 0:211 ip community-list standard 1_111_210 permit 65000:1 0:111 0:210 ip community-list standard 1_112_209 permit 65000:1 0:112 0:209 ip community-list standard 1_113_208 permit 65000:1 0:113 0:208 ip community-list standard 1_114_207 permit 65000:1 0:114 0:207 ip community-list standard 1_115_206 permit 65000:1 0:115 0:206 ip community-list standard 1_116_205 permit 65000:1 0:116 0:205 ip community-list standard 1_117_204 permit 65000:1 0:117 0:204 ip community-list standard 1_118_203 permit 65000:1 0:118 0:203 ip community-list standard 1_119_202 permit 65000:1 0:119 0:202 ip community-list standard 1_120_201 permit 65000:1 0:120 0:201 ip community-list standard 1_121_200 permit 65000:1 0:121 0:200 ip community-list standard 1_122_199 permit 65000:1 0:122 0:199 ip community-list standard 1_123_198 permit 65000:1 0:123 0:198 ip community-list standard 1_124_197 permit 65000:1 0:124 0:197 ip community-list standard 1_125_196 permit 65000:1 0:125 0:196 ip community-list standard 1_126_195 permit 65000:1 0:126 0:195 ip community-list standard 1_127_194 permit 65000:1 0:127 0:194 ip community-list standard 1_128_193 permit 65000:1 0:128 0:193 ip community-list standard 1_129_192 permit 65000:1 0:129 0:192 ip community-list standard 1_130_191 permit 65000:1 0:130 0:191 ip community-list standard 1_131_190 permit 65000:1 0:131 0:190 ip community-list standard 1_132_189 permit 65000:1 0:132 0:189 ip community-list standard 1_133_188 permit 65000:1 0:133 0:188 ip community-list standard 1_134_187 permit 65000:1 0:134 0:187 ip community-list standard 1_135_186 permit 65000:1 0:135 0:186 ip community-list standard 1_136_185 permit 65000:1 0:136 0:185 ip community-list standard 1_137_184 permit 65000:1 0:137 0:184 ip community-list standard 1_138_183 permit 65000:1 0:138 0:183 ip community-list standard 1_139_182 permit 65000:1 0:139 0:182 ip community-list standard 1_140_181 permit 65000:1 0:140 0:181 ip community-list standard 1_141_180 permit 65000:1 0:141 0:180 ip community-list standard 1_142_179 permit 65000:1 0:142 0:179 ip community-list standard 1_143_178 permit 65000:1 0:143 0:178 ip community-list standard 1_144_177 permit 65000:1 0:144 0:177 ip community-list standard 1_145_176 permit 65000:1 0:145 0:176 ip community-list standard 1_146_175 permit 65000:1 0:146 0:175 ip community-list standard 1_147_174 permit 65000:1 0:147 0:174 ip community-list standard 1_148_173 permit 65000:1 0:148 0:173 ip community-list standard 1_149_172 permit 65000:1 0:149 0:172 ip community-list standard 1_150_171 permit 65000:1 0:150 0:171 ip community-list standard 1_151_170 permit 65000:1 0:151 0:170 ip community-list standard 1_152_169 permit 65000:1 0:152 0:169 ip community-list standard 1_153_168 permit 65000:1 0:153 0:168 ip community-list standard 1_154_167 permit 65000:1 0:154 0:167 ip community-list standard 1_155_166 permit 65000:1 0:155 0:166 ip community-list standard 1_156_165 permit 65000:1 0:156 0:165 ip community-list standard 1_157_164 permit 65000:1 0:157 0:164 ip community-list standard 1_158_163 permit 65000:1 0:158 0:163 ip community-list standard 1_159_162 permit 65000:1 0:159 0:162 ip community-list standard 1_160_161 permit 65000:1 0:160 0:161 route-map calculator permit 14322 match community 2_3_107 1_65_256 1_66_255 1_67_254 1_68_253 set community 0:321 route-map calculator permit 14323 match community 1_69_252 1_70_251 1_71_250 1_72_249 1_73_248 set community 0:321 route-map calculator permit 14324 match community 1_74_247 1_75_246 1_76_245 1_77_244 1_78_243 set community 0:321 route-map calculator permit 14325 match community 1_79_242 1_80_241 1_81_240 1_82_239 1_83_238 set community 0:321 route-map calculator permit 14326 match community 1_84_237 1_85_236 1_86_235 1_87_234 1_88_233 set community 0:321 route-map calculator permit 14327 match community 1_89_232 1_90_231 1_91_230 1_92_229 1_93_228 set community 0:321 route-map calculator permit 14328 match community 1_94_227 1_95_226 1_96_225 1_97_224 1_98_223 set community 0:321 route-map calculator permit 14329 match community 1_99_222 1_100_221 1_101_220 1_102_219 1_103_218 set community 0:321 route-map calculator permit 14330 match community 1_104_217 1_105_216 1_106_215 1_107_214 1_108_213 set community 0:321 route-map calculator permit 14331 match community 1_109_212 1_110_211 1_111_210 1_112_209 1_113_208 set community 0:321 route-map calculator permit 14332 match community 1_114_207 1_115_206 1_116_205 1_117_204 1_118_203 set community 0:321 route-map calculator permit 14333 match community 1_119_202 1_120_201 1_121_200 1_122_199 1_123_198 set community 0:321 route-map calculator permit 14334 match community 1_124_197 1_125_196 1_126_195 1_127_194 1_128_193 set community 0:321 route-map calculator permit 14335 match community 1_129_192 1_130_191 1_131_190 1_132_189 1_133_188 set community 0:321 route-map calculator permit 14336 match community 1_134_187 1_135_186 1_136_185 1_137_184 1_138_183 set community 0:321 route-map calculator permit 14337 match community 1_139_182 1_140_181 1_141_180 1_142_179 1_143_178 set community 0:321 route-map calculator permit 14338 match community 1_144_177 1_145_176 1_146_175 1_147_174 1_148_173 set community 0:321 route-map calculator permit 14339 match community 1_149_172 1_150_171 1_151_170 1_152_169 1_153_168 set community 0:321 route-map calculator permit 14340 match community 1_154_167 1_155_166 1_156_165 1_157_164 1_158_163 set community 0:321 route-map calculator permit 14341 match community 1_159_162 1_160_161 set community 0:321 ip community-list standard 2_193_240 permit 65000:2 0:193 0:240 route-map calculator permit 14342 match community 2_193_240 set community 0:46320 ip community-list standard 2_10_159 permit 65000:2 0:10 0:159 ip community-list standard 2_15_106 permit 65000:2 0:15 0:106 ip community-list standard 2_30_53 permit 65000:2 0:30 0:53 route-map calculator permit 14343 match community 2_10_159 2_15_106 2_30_53 set community 0:1590 ip community-list standard 2_73_91 permit 65000:2 0:73 0:91 route-map calculator permit 14344 match community 2_73_91 set community 0:6643 ip community-list standard 2_143_229 permit 65000:2 0:143 0:229 route-map calculator permit 14345 match community 2_143_229 set community 0:32747 ip community-list standard 2_139_193 permit 65000:2 0:139 0:193 route-map calculator permit 14346 match community 2_139_193 set community 0:26827 ip community-list standard 2_19_191 permit 65000:2 0:19 0:191 route-map calculator permit 14347 match community 2_19_191 set community 0:3629 ip community-list standard 2_58_146 permit 65000:2 0:58 0:146 ip community-list standard 2_73_116 permit 65000:2 0:73 0:116 route-map calculator permit 14348 match community 2_58_146 2_73_116 set community 0:8468 ip community-list standard 2_76_214 permit 65000:2 0:76 0:214 ip community-list standard 2_107_152 permit 65000:2 0:107 0:152 route-map calculator permit 14349 match community 2_76_214 2_107_152 set community 0:16264 ip community-list standard 2_64_251 permit 65000:2 0:64 0:251 route-map calculator permit 14350 match community 2_64_251 set community 0:16064 ip community-list standard 2_138_199 permit 65000:2 0:138 0:199 route-map calculator permit 14351 match community 2_138_199 set community 0:27462 ip community-list standard 2_77_203 permit 65000:2 0:77 0:203 route-map calculator permit 14352 match community 2_77_203 set community 0:15631 ip community-list standard 2_221_238 permit 65000:2 0:221 0:238 route-map calculator permit 14353 match community 2_221_238 set community 0:52598 ip community-list standard 2_55_165 permit 65000:2 0:55 0:165 ip community-list standard 2_75_121 permit 65000:2 0:75 0:121 route-map calculator permit 14354 match community 2_55_165 2_75_121 set community 0:9075 ip community-list standard 2_137_195 permit 65000:2 0:137 0:195 route-map calculator permit 14355 match community 2_137_195 set community 0:26715 ip community-list standard 2_5_238 permit 65000:2 0:5 0:238 ip community-list standard 2_7_170 permit 65000:2 0:7 0:170 ip community-list standard 2_10_119 permit 65000:2 0:10 0:119 ip community-list standard 2_14_85 permit 65000:2 0:14 0:85 ip community-list standard 2_17_70 permit 65000:2 0:17 0:70 ip community-list standard 2_34_35 permit 65000:2 0:34 0:35 route-map calculator permit 14356 match community 2_5_238 2_7_170 2_10_119 2_14_85 2_17_70 set community 0:1190 route-map calculator permit 14357 match community 2_34_35 set community 0:1190 ip community-list standard 2_101_243 permit 65000:2 0:101 0:243 route-map calculator permit 14358 match community 2_101_243 set community 0:24543 ip community-list standard 2_191_209 permit 65000:2 0:191 0:209 route-map calculator permit 14359 match community 2_191_209 set community 0:39919 ip community-list standard 2_243_247 permit 65000:2 0:243 0:247 route-map calculator permit 14360 match community 2_243_247 set community 0:60021 ip community-list standard 2_22_241 permit 65000:2 0:22 0:241 route-map calculator permit 14361 match community 2_22_241 set community 0:5302 ip community-list standard 2_115_225 permit 65000:2 0:115 0:225 ip community-list standard 2_125_207 permit 65000:2 0:125 0:207 route-map calculator permit 14362 match community 2_115_225 2_125_207 set community 0:25875 ip community-list standard 2_206_209 permit 65000:2 0:206 0:209 route-map calculator permit 14363 match community 2_206_209 set community 0:43054 ip community-list standard 2_142_178 permit 65000:2 0:142 0:178 route-map calculator permit 14364 match community 2_142_178 set community 0:25276 ip community-list standard 2_176_254 permit 65000:2 0:176 0:254 route-map calculator permit 14365 match community 2_176_254 set community 0:44704 ip community-list standard 2_139_220 permit 65000:2 0:139 0:220 route-map calculator permit 14366 match community 2_139_220 set community 0:30580 ip community-list standard 2_89_153 permit 65000:2 0:89 0:153 route-map calculator permit 14367 match community 2_89_153 set community 0:13617 ip community-list standard 2_138_235 permit 65000:2 0:138 0:235 ip community-list standard 2_141_230 permit 65000:2 0:141 0:230 route-map calculator permit 14368 match community 2_138_235 2_141_230 set community 0:32430 ip community-list standard 2_44_193 permit 65000:2 0:44 0:193 route-map calculator permit 14369 match community 2_44_193 set community 0:8492 ip community-list standard 2_63_246 permit 65000:2 0:63 0:246 ip community-list standard 2_82_189 permit 65000:2 0:82 0:189 ip community-list standard 2_123_126 permit 65000:2 0:123 0:126 route-map calculator permit 14370 match community 2_63_246 2_82_189 2_123_126 set community 0:15498 ip community-list standard 2_82_250 permit 65000:2 0:82 0:250 ip community-list standard 2_100_205 permit 65000:2 0:100 0:205 ip community-list standard 2_125_164 permit 65000:2 0:125 0:164 route-map calculator permit 14371 match community 2_82_250 2_100_205 2_125_164 set community 0:20500 ip community-list standard 2_103_249 permit 65000:2 0:103 0:249 route-map calculator permit 14372 match community 2_103_249 set community 0:25647 ip community-list standard 2_147_234 permit 65000:2 0:147 0:234 ip community-list standard 2_182_189 permit 65000:2 0:182 0:189 route-map calculator permit 14373 match community 2_147_234 2_182_189 set community 0:34398 ip community-list standard 2_220_238 permit 65000:2 0:220 0:238 route-map calculator permit 14374 match community 2_220_238 set community 0:52360 ip community-list standard 2_30_191 permit 65000:2 0:30 0:191 route-map calculator permit 14375 match community 2_30_191 set community 0:5730 ip community-list standard 2_61_245 permit 65000:2 0:61 0:245 route-map calculator permit 14376 match community 2_61_245 set community 0:14945 ip community-list standard 2_157_206 permit 65000:2 0:157 0:206 route-map calculator permit 14377 match community 2_157_206 set community 0:32342 ip community-list standard 2_59_251 permit 65000:2 0:59 0:251 route-map calculator permit 14378 match community 2_59_251 set community 0:14809 ip community-list standard 2_215_235 permit 65000:2 0:215 0:235 route-map calculator permit 14379 match community 2_215_235 set community 0:50525 ip community-list standard 2_178_222 permit 65000:2 0:178 0:222 route-map calculator permit 14380 match community 2_178_222 set community 0:39516 ip community-list standard 2_37_248 permit 65000:2 0:37 0:248 ip community-list standard 2_62_148 permit 65000:2 0:62 0:148 ip community-list standard 2_74_124 permit 65000:2 0:74 0:124 route-map calculator permit 14381 match community 2_37_248 2_62_148 2_74_124 set community 0:9176 ip community-list standard 2_119_223 permit 65000:2 0:119 0:223 route-map calculator permit 14382 match community 2_119_223 set community 0:26537 ip community-list standard 2_178_220 permit 65000:2 0:178 0:220 route-map calculator permit 14383 match community 2_178_220 set community 0:39160 ip community-list standard 2_59_199 permit 65000:2 0:59 0:199 route-map calculator permit 14384 match community 2_59_199 set community 0:11741 ip community-list standard 2_116_223 permit 65000:2 0:116 0:223 route-map calculator permit 14385 match community 2_116_223 set community 0:25868 ip community-list standard 2_121_165 permit 65000:2 0:121 0:165 route-map calculator permit 14386 match community 2_121_165 set community 0:19965 ip community-list standard 2_9_215 permit 65000:2 0:9 0:215 ip community-list standard 2_15_129 permit 65000:2 0:15 0:129 ip community-list standard 2_43_45 permit 65000:2 0:43 0:45 route-map calculator permit 14387 match community 2_9_215 2_15_129 2_43_45 set community 0:1935 ip community-list standard 2_121_145 permit 65000:2 0:121 0:145 route-map calculator permit 14388 match community 2_121_145 set community 0:17545 ip community-list standard 2_146_225 permit 65000:2 0:146 0:225 ip community-list standard 2_150_219 permit 65000:2 0:150 0:219 route-map calculator permit 14389 match community 2_146_225 2_150_219 set community 0:32850 ip community-list standard 1_1_216 permit 65000:1 0:1 0:216 ip community-list standard 2_1_217 permit 65000:2 0:1 0:217 ip community-list standard 1_2_215 permit 65000:1 0:2 0:215 ip community-list standard 1_3_214 permit 65000:1 0:3 0:214 ip community-list standard 1_4_213 permit 65000:1 0:4 0:213 ip community-list standard 1_5_212 permit 65000:1 0:5 0:212 ip community-list standard 1_6_211 permit 65000:1 0:6 0:211 ip community-list standard 2_7_31 permit 65000:2 0:7 0:31 ip community-list standard 1_7_210 permit 65000:1 0:7 0:210 ip community-list standard 1_8_209 permit 65000:1 0:8 0:209 ip community-list standard 1_9_208 permit 65000:1 0:9 0:208 ip community-list standard 1_10_207 permit 65000:1 0:10 0:207 ip community-list standard 1_11_206 permit 65000:1 0:11 0:206 ip community-list standard 1_12_205 permit 65000:1 0:12 0:205 ip community-list standard 1_13_204 permit 65000:1 0:13 0:204 ip community-list standard 1_14_203 permit 65000:1 0:14 0:203 ip community-list standard 1_15_202 permit 65000:1 0:15 0:202 ip community-list standard 1_16_201 permit 65000:1 0:16 0:201 ip community-list standard 1_17_200 permit 65000:1 0:17 0:200 ip community-list standard 1_18_199 permit 65000:1 0:18 0:199 ip community-list standard 1_19_198 permit 65000:1 0:19 0:198 ip community-list standard 1_20_197 permit 65000:1 0:20 0:197 ip community-list standard 1_21_196 permit 65000:1 0:21 0:196 ip community-list standard 1_22_195 permit 65000:1 0:22 0:195 ip community-list standard 1_23_194 permit 65000:1 0:23 0:194 ip community-list standard 1_24_193 permit 65000:1 0:24 0:193 ip community-list standard 1_25_192 permit 65000:1 0:25 0:192 ip community-list standard 1_26_191 permit 65000:1 0:26 0:191 ip community-list standard 1_27_190 permit 65000:1 0:27 0:190 ip community-list standard 1_28_189 permit 65000:1 0:28 0:189 ip community-list standard 1_29_188 permit 65000:1 0:29 0:188 ip community-list standard 1_30_187 permit 65000:1 0:30 0:187 ip community-list standard 1_31_186 permit 65000:1 0:31 0:186 ip community-list standard 1_32_185 permit 65000:1 0:32 0:185 ip community-list standard 1_33_184 permit 65000:1 0:33 0:184 ip community-list standard 1_34_183 permit 65000:1 0:34 0:183 ip community-list standard 1_35_182 permit 65000:1 0:35 0:182 ip community-list standard 1_36_181 permit 65000:1 0:36 0:181 ip community-list standard 1_37_180 permit 65000:1 0:37 0:180 ip community-list standard 1_38_179 permit 65000:1 0:38 0:179 ip community-list standard 1_39_178 permit 65000:1 0:39 0:178 ip community-list standard 1_40_177 permit 65000:1 0:40 0:177 ip community-list standard 1_41_176 permit 65000:1 0:41 0:176 ip community-list standard 1_42_175 permit 65000:1 0:42 0:175 ip community-list standard 1_43_174 permit 65000:1 0:43 0:174 ip community-list standard 1_44_173 permit 65000:1 0:44 0:173 ip community-list standard 1_45_172 permit 65000:1 0:45 0:172 ip community-list standard 1_46_171 permit 65000:1 0:46 0:171 ip community-list standard 1_47_170 permit 65000:1 0:47 0:170 ip community-list standard 1_48_169 permit 65000:1 0:48 0:169 ip community-list standard 1_49_168 permit 65000:1 0:49 0:168 ip community-list standard 1_50_167 permit 65000:1 0:50 0:167 ip community-list standard 1_51_166 permit 65000:1 0:51 0:166 ip community-list standard 1_52_165 permit 65000:1 0:52 0:165 ip community-list standard 1_53_164 permit 65000:1 0:53 0:164 ip community-list standard 1_54_163 permit 65000:1 0:54 0:163 ip community-list standard 1_55_162 permit 65000:1 0:55 0:162 ip community-list standard 1_56_161 permit 65000:1 0:56 0:161 ip community-list standard 1_57_160 permit 65000:1 0:57 0:160 ip community-list standard 1_58_159 permit 65000:1 0:58 0:159 ip community-list standard 1_59_158 permit 65000:1 0:59 0:158 ip community-list standard 1_60_157 permit 65000:1 0:60 0:157 ip community-list standard 1_61_156 permit 65000:1 0:61 0:156 ip community-list standard 1_62_155 permit 65000:1 0:62 0:155 ip community-list standard 1_63_154 permit 65000:1 0:63 0:154 ip community-list standard 1_64_153 permit 65000:1 0:64 0:153 ip community-list standard 1_65_152 permit 65000:1 0:65 0:152 ip community-list standard 1_66_151 permit 65000:1 0:66 0:151 ip community-list standard 1_67_150 permit 65000:1 0:67 0:150 ip community-list standard 1_68_149 permit 65000:1 0:68 0:149 ip community-list standard 1_69_148 permit 65000:1 0:69 0:148 ip community-list standard 1_70_147 permit 65000:1 0:70 0:147 ip community-list standard 1_71_146 permit 65000:1 0:71 0:146 ip community-list standard 1_72_145 permit 65000:1 0:72 0:145 ip community-list standard 1_73_144 permit 65000:1 0:73 0:144 ip community-list standard 1_74_143 permit 65000:1 0:74 0:143 ip community-list standard 1_75_142 permit 65000:1 0:75 0:142 ip community-list standard 1_76_141 permit 65000:1 0:76 0:141 ip community-list standard 1_77_140 permit 65000:1 0:77 0:140 ip community-list standard 1_78_139 permit 65000:1 0:78 0:139 ip community-list standard 1_79_138 permit 65000:1 0:79 0:138 ip community-list standard 1_80_137 permit 65000:1 0:80 0:137 ip community-list standard 1_81_136 permit 65000:1 0:81 0:136 ip community-list standard 1_82_135 permit 65000:1 0:82 0:135 ip community-list standard 1_83_134 permit 65000:1 0:83 0:134 ip community-list standard 1_84_133 permit 65000:1 0:84 0:133 ip community-list standard 1_85_132 permit 65000:1 0:85 0:132 ip community-list standard 1_86_131 permit 65000:1 0:86 0:131 ip community-list standard 1_87_130 permit 65000:1 0:87 0:130 ip community-list standard 1_88_129 permit 65000:1 0:88 0:129 ip community-list standard 1_89_128 permit 65000:1 0:89 0:128 ip community-list standard 1_90_127 permit 65000:1 0:90 0:127 ip community-list standard 1_91_126 permit 65000:1 0:91 0:126 ip community-list standard 1_92_125 permit 65000:1 0:92 0:125 ip community-list standard 1_93_124 permit 65000:1 0:93 0:124 ip community-list standard 1_94_123 permit 65000:1 0:94 0:123 ip community-list standard 1_95_122 permit 65000:1 0:95 0:122 ip community-list standard 1_96_121 permit 65000:1 0:96 0:121 ip community-list standard 1_97_120 permit 65000:1 0:97 0:120 ip community-list standard 1_98_119 permit 65000:1 0:98 0:119 ip community-list standard 1_99_118 permit 65000:1 0:99 0:118 ip community-list standard 1_100_117 permit 65000:1 0:100 0:117 ip community-list standard 1_101_116 permit 65000:1 0:101 0:116 ip community-list standard 1_102_115 permit 65000:1 0:102 0:115 ip community-list standard 1_103_114 permit 65000:1 0:103 0:114 ip community-list standard 1_104_113 permit 65000:1 0:104 0:113 ip community-list standard 1_105_112 permit 65000:1 0:105 0:112 ip community-list standard 1_106_111 permit 65000:1 0:106 0:111 ip community-list standard 1_107_110 permit 65000:1 0:107 0:110 ip community-list standard 1_108_109 permit 65000:1 0:108 0:109 ip community-list expanded c217 permit 1 ^65000:4_0:217_0:1$ ip community-list expanded c217 permit 2 ^65000:3_0:218_0:1$ ip community-list expanded c217 permit 3 ^65000:3_0:219_0:2$ ip community-list expanded c217 permit 4 ^65000:3_0:220_0:3$ ip community-list expanded c217 permit 5 ^65000:3_0:221_0:4$ ip community-list expanded c217 permit 6 ^65000:3_0:222_0:5$ ip community-list expanded c217 permit 7 ^65000:3_0:223_0:6$ ip community-list expanded c217 permit 8 ^65000:3_0:224_0:7$ ip community-list expanded c217 permit 9 ^65000:3_0:225_0:8$ ip community-list expanded c217 permit 10 ^65000:3_0:226_0:9$ ip community-list expanded c217 permit 11 ^65000:3_0:227_0:10$ ip community-list expanded c217 permit 12 ^65000:3_0:228_0:11$ ip community-list expanded c217 permit 13 ^65000:3_0:229_0:12$ ip community-list expanded c217 permit 14 ^65000:3_0:230_0:13$ ip community-list expanded c217 permit 15 ^65000:3_0:231_0:14$ ip community-list expanded c217 permit 16 ^65000:3_0:232_0:15$ ip community-list expanded c217 permit 17 ^65000:3_0:233_0:16$ ip community-list expanded c217 permit 18 ^65000:3_0:234_0:17$ ip community-list expanded c217 permit 19 ^65000:3_0:235_0:18$ ip community-list expanded c217 permit 20 ^65000:3_0:236_0:19$ ip community-list expanded c217 permit 21 ^65000:3_0:237_0:20$ ip community-list expanded c217 permit 22 ^65000:3_0:238_0:21$ ip community-list expanded c217 permit 23 ^65000:3_0:239_0:22$ ip community-list expanded c217 permit 24 ^65000:3_0:240_0:23$ ip community-list expanded c217 permit 25 ^65000:3_0:241_0:24$ ip community-list expanded c217 permit 26 ^65000:3_0:242_0:25$ ip community-list expanded c217 permit 27 ^65000:3_0:243_0:26$ ip community-list expanded c217 permit 28 ^65000:3_0:244_0:27$ ip community-list expanded c217 permit 29 ^65000:3_0:245_0:28$ ip community-list expanded c217 permit 30 ^65000:3_0:246_0:29$ ip community-list expanded c217 permit 31 ^65000:3_0:247_0:30$ ip community-list expanded c217 permit 32 ^65000:3_0:248_0:31$ ip community-list expanded c217 permit 33 ^65000:3_0:249_0:32$ ip community-list expanded c217 permit 34 ^65000:3_0:250_0:33$ ip community-list expanded c217 permit 35 ^65000:3_0:251_0:34$ ip community-list expanded c217 permit 36 ^65000:3_0:252_0:35$ ip community-list expanded c217 permit 37 ^65000:3_0:253_0:36$ ip community-list expanded c217 permit 38 ^65000:3_0:254_0:37$ ip community-list expanded c217 permit 39 ^65000:3_0:255_0:38$ ip community-list expanded c217 permit 40 ^65000:3_0:256_0:39$ route-map calculator permit 14390 match community 1_1_216 2_1_217 1_2_215 1_3_214 1_4_213 set community 0:217 route-map calculator permit 14391 match community 1_5_212 1_6_211 2_7_31 1_7_210 1_8_209 set community 0:217 route-map calculator permit 14392 match community 1_9_208 1_10_207 1_11_206 1_12_205 1_13_204 set community 0:217 route-map calculator permit 14393 match community 1_14_203 1_15_202 1_16_201 1_17_200 1_18_199 set community 0:217 route-map calculator permit 14394 match community 1_19_198 1_20_197 1_21_196 1_22_195 1_23_194 set community 0:217 route-map calculator permit 14395 match community 1_24_193 1_25_192 1_26_191 1_27_190 1_28_189 set community 0:217 route-map calculator permit 14396 match community 1_29_188 1_30_187 1_31_186 1_32_185 1_33_184 set community 0:217 route-map calculator permit 14397 match community 1_34_183 1_35_182 1_36_181 1_37_180 1_38_179 set community 0:217 route-map calculator permit 14398 match community 1_39_178 1_40_177 1_41_176 1_42_175 1_43_174 set community 0:217 route-map calculator permit 14399 match community 1_44_173 1_45_172 1_46_171 1_47_170 1_48_169 set community 0:217 route-map calculator permit 14400 match community 1_49_168 1_50_167 1_51_166 1_52_165 1_53_164 set community 0:217 route-map calculator permit 14401 match community 1_54_163 1_55_162 1_56_161 1_57_160 1_58_159 set community 0:217 route-map calculator permit 14402 match community 1_59_158 1_60_157 1_61_156 1_62_155 1_63_154 set community 0:217 route-map calculator permit 14403 match community 1_64_153 1_65_152 1_66_151 1_67_150 1_68_149 set community 0:217 route-map calculator permit 14404 match community 1_69_148 1_70_147 1_71_146 1_72_145 1_73_144 set community 0:217 route-map calculator permit 14405 match community 1_74_143 1_75_142 1_76_141 1_77_140 1_78_139 set community 0:217 route-map calculator permit 14406 match community 1_79_138 1_80_137 1_81_136 1_82_135 1_83_134 set community 0:217 route-map calculator permit 14407 match community 1_84_133 1_85_132 1_86_131 1_87_130 1_88_129 set community 0:217 route-map calculator permit 14408 match community 1_89_128 1_90_127 1_91_126 1_92_125 1_93_124 set community 0:217 route-map calculator permit 14409 match community 1_94_123 1_95_122 1_96_121 1_97_120 1_98_119 set community 0:217 route-map calculator permit 14410 match community 1_99_118 1_100_117 1_101_116 1_102_115 1_103_114 set community 0:217 route-map calculator permit 14411 match community 1_104_113 1_105_112 1_106_111 1_107_110 1_108_109 set community 0:217 route-map calculator permit 14412 match community c4_217_1 c3_218_1 c3_219_2 c3_220_3 c3_221_4 set community 0:217 route-map calculator permit 14413 match community c3_222_5 c3_223_6 c3_224_7 c3_225_8 c3_226_9 set community 0:217 route-map calculator permit 14414 match community c3_227_10 c3_228_11 c3_229_12 c3_230_13 c3_231_14 set community 0:217 route-map calculator permit 14415 match community c3_232_15 c3_233_16 c3_234_17 c3_235_18 c3_236_19 set community 0:217 route-map calculator permit 14416 match community c3_237_20 c3_238_21 c3_239_22 c3_240_23 c3_241_24 set community 0:217 route-map calculator permit 14417 match community c3_242_25 c3_243_26 c3_244_27 c3_245_28 c3_246_29 set community 0:217 route-map calculator permit 14418 match community c3_247_30 c3_248_31 c3_249_32 c3_250_33 c3_251_34 set community 0:217 route-map calculator permit 14419 match community c3_252_35 c3_253_36 c3_254_37 c3_255_38 c3_256_39 set community 0:217 ip community-list standard 2_3_121 permit 65000:2 0:3 0:121 ip community-list standard 2_11_33 permit 65000:2 0:11 0:33 ip community-list standard 1_107_256 permit 65000:1 0:107 0:256 ip community-list standard 1_108_255 permit 65000:1 0:108 0:255 ip community-list standard 1_109_254 permit 65000:1 0:109 0:254 ip community-list standard 1_110_253 permit 65000:1 0:110 0:253 ip community-list standard 1_111_252 permit 65000:1 0:111 0:252 ip community-list standard 1_112_251 permit 65000:1 0:112 0:251 ip community-list standard 1_113_250 permit 65000:1 0:113 0:250 ip community-list standard 1_114_249 permit 65000:1 0:114 0:249 ip community-list standard 1_115_248 permit 65000:1 0:115 0:248 ip community-list standard 1_116_247 permit 65000:1 0:116 0:247 ip community-list standard 1_117_246 permit 65000:1 0:117 0:246 ip community-list standard 1_118_245 permit 65000:1 0:118 0:245 ip community-list standard 1_119_244 permit 65000:1 0:119 0:244 ip community-list standard 1_120_243 permit 65000:1 0:120 0:243 ip community-list standard 1_121_242 permit 65000:1 0:121 0:242 ip community-list standard 1_122_241 permit 65000:1 0:122 0:241 ip community-list standard 1_123_240 permit 65000:1 0:123 0:240 ip community-list standard 1_124_239 permit 65000:1 0:124 0:239 ip community-list standard 1_125_238 permit 65000:1 0:125 0:238 ip community-list standard 1_126_237 permit 65000:1 0:126 0:237 ip community-list standard 1_127_236 permit 65000:1 0:127 0:236 ip community-list standard 1_128_235 permit 65000:1 0:128 0:235 ip community-list standard 1_129_234 permit 65000:1 0:129 0:234 ip community-list standard 1_130_233 permit 65000:1 0:130 0:233 ip community-list standard 1_131_232 permit 65000:1 0:131 0:232 ip community-list standard 1_132_231 permit 65000:1 0:132 0:231 ip community-list standard 1_133_230 permit 65000:1 0:133 0:230 ip community-list standard 1_134_229 permit 65000:1 0:134 0:229 ip community-list standard 1_135_228 permit 65000:1 0:135 0:228 ip community-list standard 1_136_227 permit 65000:1 0:136 0:227 ip community-list standard 1_137_226 permit 65000:1 0:137 0:226 ip community-list standard 1_138_225 permit 65000:1 0:138 0:225 ip community-list standard 1_139_224 permit 65000:1 0:139 0:224 ip community-list standard 1_140_223 permit 65000:1 0:140 0:223 ip community-list standard 1_141_222 permit 65000:1 0:141 0:222 ip community-list standard 1_142_221 permit 65000:1 0:142 0:221 ip community-list standard 1_143_220 permit 65000:1 0:143 0:220 ip community-list standard 1_144_219 permit 65000:1 0:144 0:219 ip community-list standard 1_145_218 permit 65000:1 0:145 0:218 ip community-list standard 1_146_217 permit 65000:1 0:146 0:217 ip community-list standard 1_147_216 permit 65000:1 0:147 0:216 ip community-list standard 1_148_215 permit 65000:1 0:148 0:215 ip community-list standard 1_149_214 permit 65000:1 0:149 0:214 ip community-list standard 1_150_213 permit 65000:1 0:150 0:213 ip community-list standard 1_151_212 permit 65000:1 0:151 0:212 ip community-list standard 1_152_211 permit 65000:1 0:152 0:211 ip community-list standard 1_153_210 permit 65000:1 0:153 0:210 ip community-list standard 1_154_209 permit 65000:1 0:154 0:209 ip community-list standard 1_155_208 permit 65000:1 0:155 0:208 ip community-list standard 1_156_207 permit 65000:1 0:156 0:207 ip community-list standard 1_157_206 permit 65000:1 0:157 0:206 ip community-list standard 1_158_205 permit 65000:1 0:158 0:205 ip community-list standard 1_159_204 permit 65000:1 0:159 0:204 ip community-list standard 1_160_203 permit 65000:1 0:160 0:203 ip community-list standard 1_161_202 permit 65000:1 0:161 0:202 ip community-list standard 1_162_201 permit 65000:1 0:162 0:201 ip community-list standard 1_163_200 permit 65000:1 0:163 0:200 ip community-list standard 1_164_199 permit 65000:1 0:164 0:199 ip community-list standard 1_165_198 permit 65000:1 0:165 0:198 ip community-list standard 1_166_197 permit 65000:1 0:166 0:197 ip community-list standard 1_167_196 permit 65000:1 0:167 0:196 ip community-list standard 1_168_195 permit 65000:1 0:168 0:195 ip community-list standard 1_169_194 permit 65000:1 0:169 0:194 ip community-list standard 1_170_193 permit 65000:1 0:170 0:193 ip community-list standard 1_171_192 permit 65000:1 0:171 0:192 ip community-list standard 1_172_191 permit 65000:1 0:172 0:191 ip community-list standard 1_173_190 permit 65000:1 0:173 0:190 ip community-list standard 1_174_189 permit 65000:1 0:174 0:189 ip community-list standard 1_175_188 permit 65000:1 0:175 0:188 ip community-list standard 1_176_187 permit 65000:1 0:176 0:187 ip community-list standard 1_177_186 permit 65000:1 0:177 0:186 ip community-list standard 1_178_185 permit 65000:1 0:178 0:185 ip community-list standard 1_179_184 permit 65000:1 0:179 0:184 ip community-list standard 1_180_183 permit 65000:1 0:180 0:183 ip community-list standard 1_181_182 permit 65000:1 0:181 0:182 route-map calculator permit 14420 match community 2_3_121 2_11_33 1_107_256 1_108_255 1_109_254 set community 0:363 route-map calculator permit 14421 match community 1_110_253 1_111_252 1_112_251 1_113_250 1_114_249 set community 0:363 route-map calculator permit 14422 match community 1_115_248 1_116_247 1_117_246 1_118_245 1_119_244 set community 0:363 route-map calculator permit 14423 match community 1_120_243 1_121_242 1_122_241 1_123_240 1_124_239 set community 0:363 route-map calculator permit 14424 match community 1_125_238 1_126_237 1_127_236 1_128_235 1_129_234 set community 0:363 route-map calculator permit 14425 match community 1_130_233 1_131_232 1_132_231 1_133_230 1_134_229 set community 0:363 route-map calculator permit 14426 match community 1_135_228 1_136_227 1_137_226 1_138_225 1_139_224 set community 0:363 route-map calculator permit 14427 match community 1_140_223 1_141_222 1_142_221 1_143_220 1_144_219 set community 0:363 route-map calculator permit 14428 match community 1_145_218 1_146_217 1_147_216 1_148_215 1_149_214 set community 0:363 route-map calculator permit 14429 match community 1_150_213 1_151_212 1_152_211 1_153_210 1_154_209 set community 0:363 route-map calculator permit 14430 match community 1_155_208 1_156_207 1_157_206 1_158_205 1_159_204 set community 0:363 route-map calculator permit 14431 match community 1_160_203 1_161_202 1_162_201 1_163_200 1_164_199 set community 0:363 route-map calculator permit 14432 match community 1_165_198 1_166_197 1_167_196 1_168_195 1_169_194 set community 0:363 route-map calculator permit 14433 match community 1_170_193 1_171_192 1_172_191 1_173_190 1_174_189 set community 0:363 route-map calculator permit 14434 match community 1_175_188 1_176_187 1_177_186 1_178_185 1_179_184 set community 0:363 route-map calculator permit 14435 match community 1_180_183 1_181_182 set community 0:363 ip community-list standard 2_11_183 permit 65000:2 0:11 0:183 ip community-list standard 2_33_61 permit 65000:2 0:33 0:61 route-map calculator permit 14436 match community 2_11_183 2_33_61 set community 0:2013 ip community-list standard 2_238_245 permit 65000:2 0:238 0:245 route-map calculator permit 14437 match community 2_238_245 set community 0:58310 ip community-list standard 2_160_254 permit 65000:2 0:160 0:254 route-map calculator permit 14438 match community 2_160_254 set community 0:40640 ip community-list standard 2_195_246 permit 65000:2 0:195 0:246 ip community-list standard 2_205_234 permit 65000:2 0:205 0:234 route-map calculator permit 14439 match community 2_195_246 2_205_234 set community 0:47970 ip community-list standard 2_31_101 permit 65000:2 0:31 0:101 route-map calculator permit 14440 match community 2_31_101 set community 0:3131 ip community-list standard 2_188_241 permit 65000:2 0:188 0:241 route-map calculator permit 14441 match community 2_188_241 set community 0:45308 ip community-list standard 2_178_232 permit 65000:2 0:178 0:232 route-map calculator permit 14442 match community 2_178_232 set community 0:41296 ip community-list standard 2_33_254 permit 65000:2 0:33 0:254 ip community-list standard 2_66_127 permit 65000:2 0:66 0:127 route-map calculator permit 14443 match community 2_33_254 2_66_127 set community 0:8382 ip community-list standard 2_113_253 permit 65000:2 0:113 0:253 route-map calculator permit 14444 match community 2_113_253 set community 0:28589 ip community-list standard 2_10_251 permit 65000:2 0:10 0:251 route-map calculator permit 14445 match community 2_10_251 set community 0:2510 ip community-list standard 2_136_218 permit 65000:2 0:136 0:218 route-map calculator permit 14446 match community 2_136_218 set community 0:29648 ip community-list standard 2_110_239 permit 65000:2 0:110 0:239 route-map calculator permit 14447 match community 2_110_239 set community 0:26290 ip community-list standard 2_172_221 permit 65000:2 0:172 0:221 route-map calculator permit 14448 match community 2_172_221 set community 0:38012 ip community-list standard 2_244_252 permit 65000:2 0:244 0:252 route-map calculator permit 14449 match community 2_244_252 set community 0:61488 ip community-list standard 2_92_217 permit 65000:2 0:92 0:217 ip community-list standard 2_124_161 permit 65000:2 0:124 0:161 route-map calculator permit 14450 match community 2_92_217 2_124_161 set community 0:19964 ip community-list standard 2_2_167 permit 65000:2 0:2 0:167 ip community-list standard 1_78_256 permit 65000:1 0:78 0:256 ip community-list standard 1_79_255 permit 65000:1 0:79 0:255 ip community-list standard 1_80_254 permit 65000:1 0:80 0:254 ip community-list standard 1_81_253 permit 65000:1 0:81 0:253 ip community-list standard 1_82_252 permit 65000:1 0:82 0:252 ip community-list standard 1_83_251 permit 65000:1 0:83 0:251 ip community-list standard 1_84_250 permit 65000:1 0:84 0:250 ip community-list standard 1_85_249 permit 65000:1 0:85 0:249 ip community-list standard 1_86_248 permit 65000:1 0:86 0:248 ip community-list standard 1_87_247 permit 65000:1 0:87 0:247 ip community-list standard 1_88_246 permit 65000:1 0:88 0:246 ip community-list standard 1_89_245 permit 65000:1 0:89 0:245 ip community-list standard 1_90_244 permit 65000:1 0:90 0:244 ip community-list standard 1_91_243 permit 65000:1 0:91 0:243 ip community-list standard 1_92_242 permit 65000:1 0:92 0:242 ip community-list standard 1_93_241 permit 65000:1 0:93 0:241 ip community-list standard 1_94_240 permit 65000:1 0:94 0:240 ip community-list standard 1_95_239 permit 65000:1 0:95 0:239 ip community-list standard 1_96_238 permit 65000:1 0:96 0:238 ip community-list standard 1_97_237 permit 65000:1 0:97 0:237 ip community-list standard 1_98_236 permit 65000:1 0:98 0:236 ip community-list standard 1_99_235 permit 65000:1 0:99 0:235 ip community-list standard 1_100_234 permit 65000:1 0:100 0:234 ip community-list standard 1_101_233 permit 65000:1 0:101 0:233 ip community-list standard 1_102_232 permit 65000:1 0:102 0:232 ip community-list standard 1_103_231 permit 65000:1 0:103 0:231 ip community-list standard 1_104_230 permit 65000:1 0:104 0:230 ip community-list standard 1_105_229 permit 65000:1 0:105 0:229 ip community-list standard 1_106_228 permit 65000:1 0:106 0:228 ip community-list standard 1_107_227 permit 65000:1 0:107 0:227 ip community-list standard 1_108_226 permit 65000:1 0:108 0:226 ip community-list standard 1_109_225 permit 65000:1 0:109 0:225 ip community-list standard 1_110_224 permit 65000:1 0:110 0:224 ip community-list standard 1_111_223 permit 65000:1 0:111 0:223 ip community-list standard 1_112_222 permit 65000:1 0:112 0:222 ip community-list standard 1_113_221 permit 65000:1 0:113 0:221 ip community-list standard 1_114_220 permit 65000:1 0:114 0:220 ip community-list standard 1_115_219 permit 65000:1 0:115 0:219 ip community-list standard 1_116_218 permit 65000:1 0:116 0:218 ip community-list standard 1_117_217 permit 65000:1 0:117 0:217 ip community-list standard 1_118_216 permit 65000:1 0:118 0:216 ip community-list standard 1_119_215 permit 65000:1 0:119 0:215 ip community-list standard 1_120_214 permit 65000:1 0:120 0:214 ip community-list standard 1_121_213 permit 65000:1 0:121 0:213 ip community-list standard 1_122_212 permit 65000:1 0:122 0:212 ip community-list standard 1_123_211 permit 65000:1 0:123 0:211 ip community-list standard 1_124_210 permit 65000:1 0:124 0:210 ip community-list standard 1_125_209 permit 65000:1 0:125 0:209 ip community-list standard 1_126_208 permit 65000:1 0:126 0:208 ip community-list standard 1_127_207 permit 65000:1 0:127 0:207 ip community-list standard 1_128_206 permit 65000:1 0:128 0:206 ip community-list standard 1_129_205 permit 65000:1 0:129 0:205 ip community-list standard 1_130_204 permit 65000:1 0:130 0:204 ip community-list standard 1_131_203 permit 65000:1 0:131 0:203 ip community-list standard 1_132_202 permit 65000:1 0:132 0:202 ip community-list standard 1_133_201 permit 65000:1 0:133 0:201 ip community-list standard 1_134_200 permit 65000:1 0:134 0:200 ip community-list standard 1_135_199 permit 65000:1 0:135 0:199 ip community-list standard 1_136_198 permit 65000:1 0:136 0:198 ip community-list standard 1_137_197 permit 65000:1 0:137 0:197 ip community-list standard 1_138_196 permit 65000:1 0:138 0:196 ip community-list standard 1_139_195 permit 65000:1 0:139 0:195 ip community-list standard 1_140_194 permit 65000:1 0:140 0:194 ip community-list standard 1_141_193 permit 65000:1 0:141 0:193 ip community-list standard 1_142_192 permit 65000:1 0:142 0:192 ip community-list standard 1_143_191 permit 65000:1 0:143 0:191 ip community-list standard 1_144_190 permit 65000:1 0:144 0:190 ip community-list standard 1_145_189 permit 65000:1 0:145 0:189 ip community-list standard 1_146_188 permit 65000:1 0:146 0:188 ip community-list standard 1_147_187 permit 65000:1 0:147 0:187 ip community-list standard 1_148_186 permit 65000:1 0:148 0:186 ip community-list standard 1_149_185 permit 65000:1 0:149 0:185 ip community-list standard 1_150_184 permit 65000:1 0:150 0:184 ip community-list standard 1_151_183 permit 65000:1 0:151 0:183 ip community-list standard 1_152_182 permit 65000:1 0:152 0:182 ip community-list standard 1_153_181 permit 65000:1 0:153 0:181 ip community-list standard 1_154_180 permit 65000:1 0:154 0:180 ip community-list standard 1_155_179 permit 65000:1 0:155 0:179 ip community-list standard 1_156_178 permit 65000:1 0:156 0:178 ip community-list standard 1_157_177 permit 65000:1 0:157 0:177 ip community-list standard 1_158_176 permit 65000:1 0:158 0:176 ip community-list standard 1_159_175 permit 65000:1 0:159 0:175 ip community-list standard 1_160_174 permit 65000:1 0:160 0:174 ip community-list standard 1_161_173 permit 65000:1 0:161 0:173 ip community-list standard 1_162_172 permit 65000:1 0:162 0:172 ip community-list standard 1_163_171 permit 65000:1 0:163 0:171 ip community-list standard 1_164_170 permit 65000:1 0:164 0:170 ip community-list standard 1_165_169 permit 65000:1 0:165 0:169 ip community-list standard 1_166_168 permit 65000:1 0:166 0:168 ip community-list standard 1_167_167 permit 65000:1 0:167 0:167 route-map calculator permit 14451 match community 2_2_167 1_78_256 1_79_255 1_80_254 1_81_253 set community 0:334 route-map calculator permit 14452 match community 1_82_252 1_83_251 1_84_250 1_85_249 1_86_248 set community 0:334 route-map calculator permit 14453 match community 1_87_247 1_88_246 1_89_245 1_90_244 1_91_243 set community 0:334 route-map calculator permit 14454 match community 1_92_242 1_93_241 1_94_240 1_95_239 1_96_238 set community 0:334 route-map calculator permit 14455 match community 1_97_237 1_98_236 1_99_235 1_100_234 1_101_233 set community 0:334 route-map calculator permit 14456 match community 1_102_232 1_103_231 1_104_230 1_105_229 1_106_228 set community 0:334 route-map calculator permit 14457 match community 1_107_227 1_108_226 1_109_225 1_110_224 1_111_223 set community 0:334 route-map calculator permit 14458 match community 1_112_222 1_113_221 1_114_220 1_115_219 1_116_218 set community 0:334 route-map calculator permit 14459 match community 1_117_217 1_118_216 1_119_215 1_120_214 1_121_213 set community 0:334 route-map calculator permit 14460 match community 1_122_212 1_123_211 1_124_210 1_125_209 1_126_208 set community 0:334 route-map calculator permit 14461 match community 1_127_207 1_128_206 1_129_205 1_130_204 1_131_203 set community 0:334 route-map calculator permit 14462 match community 1_132_202 1_133_201 1_134_200 1_135_199 1_136_198 set community 0:334 route-map calculator permit 14463 match community 1_137_197 1_138_196 1_139_195 1_140_194 1_141_193 set community 0:334 route-map calculator permit 14464 match community 1_142_192 1_143_191 1_144_190 1_145_189 1_146_188 set community 0:334 route-map calculator permit 14465 match community 1_147_187 1_148_186 1_149_185 1_150_184 1_151_183 set community 0:334 route-map calculator permit 14466 match community 1_152_182 1_153_181 1_154_180 1_155_179 1_156_178 set community 0:334 route-map calculator permit 14467 match community 1_157_177 1_158_176 1_159_175 1_160_174 1_161_173 set community 0:334 route-map calculator permit 14468 match community 1_162_172 1_163_171 1_164_170 1_165_169 1_166_168 set community 0:334 route-map calculator permit 14469 match community 1_167_167 set community 0:334 ip community-list standard 2_161_173 permit 65000:2 0:161 0:173 route-map calculator permit 14470 match community 2_161_173 set community 0:27853 ip community-list standard 2_109_229 permit 65000:2 0:109 0:229 route-map calculator permit 14471 match community 2_109_229 set community 0:24961 ip community-list standard 2_29_94 permit 65000:2 0:29 0:94 ip community-list standard 2_47_58 permit 65000:2 0:47 0:58 route-map calculator permit 14472 match community 2_29_94 2_47_58 set community 0:2726 ip community-list standard 2_159_239 permit 65000:2 0:159 0:239 route-map calculator permit 14473 match community 2_159_239 set community 0:38001 ip community-list standard 2_69_199 permit 65000:2 0:69 0:199 route-map calculator permit 14474 match community 2_69_199 set community 0:13731 ip community-list standard 2_176_191 permit 65000:2 0:176 0:191 route-map calculator permit 14475 match community 2_176_191 set community 0:33616 ip community-list standard 2_91_197 permit 65000:2 0:91 0:197 route-map calculator permit 14476 match community 2_91_197 set community 0:17927 ip community-list standard 2_162_235 permit 65000:2 0:162 0:235 route-map calculator permit 14477 match community 2_162_235 set community 0:38070 ip community-list standard 2_19_233 permit 65000:2 0:19 0:233 route-map calculator permit 14478 match community 2_19_233 set community 0:4427 ip community-list standard 2_51_189 permit 65000:2 0:51 0:189 ip community-list standard 2_63_153 permit 65000:2 0:63 0:153 ip community-list standard 2_81_119 permit 65000:2 0:81 0:119 route-map calculator permit 14479 match community 2_51_189 2_63_153 2_81_119 set community 0:9639 ip community-list standard 2_55_241 permit 65000:2 0:55 0:241 route-map calculator permit 14480 match community 2_55_241 set community 0:13255 ip community-list standard 2_19_76 permit 65000:2 0:19 0:76 ip community-list standard 2_38_38 permit 65000:2 0:38 0:38 route-map calculator permit 14481 match community 2_19_76 2_38_38 set community 0:1444 ip community-list standard 2_71_197 permit 65000:2 0:71 0:197 route-map calculator permit 14482 match community 2_71_197 set community 0:13987 ip community-list standard 2_2_203 permit 65000:2 0:2 0:203 ip community-list standard 2_7_58 permit 65000:2 0:7 0:58 ip community-list standard 2_14_29 permit 65000:2 0:14 0:29 ip community-list standard 1_150_256 permit 65000:1 0:150 0:256 ip community-list standard 1_151_255 permit 65000:1 0:151 0:255 ip community-list standard 1_152_254 permit 65000:1 0:152 0:254 ip community-list standard 1_153_253 permit 65000:1 0:153 0:253 ip community-list standard 1_154_252 permit 65000:1 0:154 0:252 ip community-list standard 1_155_251 permit 65000:1 0:155 0:251 ip community-list standard 1_156_250 permit 65000:1 0:156 0:250 ip community-list standard 1_157_249 permit 65000:1 0:157 0:249 ip community-list standard 1_158_248 permit 65000:1 0:158 0:248 ip community-list standard 1_159_247 permit 65000:1 0:159 0:247 ip community-list standard 1_160_246 permit 65000:1 0:160 0:246 ip community-list standard 1_161_245 permit 65000:1 0:161 0:245 ip community-list standard 1_162_244 permit 65000:1 0:162 0:244 ip community-list standard 1_163_243 permit 65000:1 0:163 0:243 ip community-list standard 1_164_242 permit 65000:1 0:164 0:242 ip community-list standard 1_165_241 permit 65000:1 0:165 0:241 ip community-list standard 1_166_240 permit 65000:1 0:166 0:240 ip community-list standard 1_167_239 permit 65000:1 0:167 0:239 ip community-list standard 1_168_238 permit 65000:1 0:168 0:238 ip community-list standard 1_169_237 permit 65000:1 0:169 0:237 ip community-list standard 1_170_236 permit 65000:1 0:170 0:236 ip community-list standard 1_171_235 permit 65000:1 0:171 0:235 ip community-list standard 1_172_234 permit 65000:1 0:172 0:234 ip community-list standard 1_173_233 permit 65000:1 0:173 0:233 ip community-list standard 1_174_232 permit 65000:1 0:174 0:232 ip community-list standard 1_175_231 permit 65000:1 0:175 0:231 ip community-list standard 1_176_230 permit 65000:1 0:176 0:230 ip community-list standard 1_177_229 permit 65000:1 0:177 0:229 ip community-list standard 1_178_228 permit 65000:1 0:178 0:228 ip community-list standard 1_179_227 permit 65000:1 0:179 0:227 ip community-list standard 1_180_226 permit 65000:1 0:180 0:226 ip community-list standard 1_181_225 permit 65000:1 0:181 0:225 ip community-list standard 1_182_224 permit 65000:1 0:182 0:224 ip community-list standard 1_183_223 permit 65000:1 0:183 0:223 ip community-list standard 1_184_222 permit 65000:1 0:184 0:222 ip community-list standard 1_185_221 permit 65000:1 0:185 0:221 ip community-list standard 1_186_220 permit 65000:1 0:186 0:220 ip community-list standard 1_187_219 permit 65000:1 0:187 0:219 ip community-list standard 1_188_218 permit 65000:1 0:188 0:218 ip community-list standard 1_189_217 permit 65000:1 0:189 0:217 ip community-list standard 1_190_216 permit 65000:1 0:190 0:216 ip community-list standard 1_191_215 permit 65000:1 0:191 0:215 ip community-list standard 1_192_214 permit 65000:1 0:192 0:214 ip community-list standard 1_193_213 permit 65000:1 0:193 0:213 ip community-list standard 1_194_212 permit 65000:1 0:194 0:212 ip community-list standard 1_195_211 permit 65000:1 0:195 0:211 ip community-list standard 1_196_210 permit 65000:1 0:196 0:210 ip community-list standard 1_197_209 permit 65000:1 0:197 0:209 ip community-list standard 1_198_208 permit 65000:1 0:198 0:208 ip community-list standard 1_199_207 permit 65000:1 0:199 0:207 ip community-list standard 1_200_206 permit 65000:1 0:200 0:206 ip community-list standard 1_201_205 permit 65000:1 0:201 0:205 ip community-list standard 1_202_204 permit 65000:1 0:202 0:204 ip community-list standard 1_203_203 permit 65000:1 0:203 0:203 route-map calculator permit 14483 match community 2_2_203 2_7_58 2_14_29 1_150_256 1_151_255 set community 0:406 route-map calculator permit 14484 match community 1_152_254 1_153_253 1_154_252 1_155_251 1_156_250 set community 0:406 route-map calculator permit 14485 match community 1_157_249 1_158_248 1_159_247 1_160_246 1_161_245 set community 0:406 route-map calculator permit 14486 match community 1_162_244 1_163_243 1_164_242 1_165_241 1_166_240 set community 0:406 route-map calculator permit 14487 match community 1_167_239 1_168_238 1_169_237 1_170_236 1_171_235 set community 0:406 route-map calculator permit 14488 match community 1_172_234 1_173_233 1_174_232 1_175_231 1_176_230 set community 0:406 route-map calculator permit 14489 match community 1_177_229 1_178_228 1_179_227 1_180_226 1_181_225 set community 0:406 route-map calculator permit 14490 match community 1_182_224 1_183_223 1_184_222 1_185_221 1_186_220 set community 0:406 route-map calculator permit 14491 match community 1_187_219 1_188_218 1_189_217 1_190_216 1_191_215 set community 0:406 route-map calculator permit 14492 match community 1_192_214 1_193_213 1_194_212 1_195_211 1_196_210 set community 0:406 route-map calculator permit 14493 match community 1_197_209 1_198_208 1_199_207 1_200_206 1_201_205 set community 0:406 route-map calculator permit 14494 match community 1_202_204 1_203_203 set community 0:406 ip community-list standard 2_112_231 permit 65000:2 0:112 0:231 ip community-list standard 2_132_196 permit 65000:2 0:132 0:196 ip community-list standard 2_147_176 permit 65000:2 0:147 0:176 ip community-list standard 2_154_168 permit 65000:2 0:154 0:168 route-map calculator permit 14495 match community 2_112_231 2_132_196 2_147_176 2_154_168 set community 0:25872 ip community-list standard 2_125_247 permit 65000:2 0:125 0:247 route-map calculator permit 14496 match community 2_125_247 set community 0:30875 ip community-list standard 2_61_209 permit 65000:2 0:61 0:209 route-map calculator permit 14497 match community 2_61_209 set community 0:12749 ip community-list standard 2_216_240 permit 65000:2 0:216 0:240 route-map calculator permit 14498 match community 2_216_240 set community 0:51840 ip community-list standard 2_91_191 permit 65000:2 0:91 0:191 route-map calculator permit 14499 match community 2_91_191 set community 0:17381 ip community-list standard 2_92_213 permit 65000:2 0:92 0:213 ip community-list standard 2_138_142 permit 65000:2 0:138 0:142 route-map calculator permit 14500 match community 2_92_213 2_138_142 set community 0:19596 ip community-list standard 2_87_93 permit 65000:2 0:87 0:93 route-map calculator permit 14501 match community 2_87_93 set community 0:8091 ip community-list standard 2_137_188 permit 65000:2 0:137 0:188 route-map calculator permit 14502 match community 2_137_188 set community 0:25756 ip community-list standard 2_205_241 permit 65000:2 0:205 0:241 route-map calculator permit 14503 match community 2_205_241 set community 0:49405 ip community-list standard 2_159_181 permit 65000:2 0:159 0:181 route-map calculator permit 14504 match community 2_159_181 set community 0:28779 ip community-list standard 2_89_178 permit 65000:2 0:89 0:178 route-map calculator permit 14505 match community 2_89_178 set community 0:15842 ip community-list standard 2_175_241 permit 65000:2 0:175 0:241 route-map calculator permit 14506 match community 2_175_241 set community 0:42175 ip community-list standard 2_34_232 permit 65000:2 0:34 0:232 ip community-list standard 2_58_136 permit 65000:2 0:58 0:136 ip community-list standard 2_68_116 permit 65000:2 0:68 0:116 route-map calculator permit 14507 match community 2_34_232 2_58_136 2_68_116 set community 0:7888 ip community-list standard 2_138_218 permit 65000:2 0:138 0:218 route-map calculator permit 14508 match community 2_138_218 set community 0:30084 ip community-list standard 2_74_202 permit 65000:2 0:74 0:202 ip community-list standard 2_101_148 permit 65000:2 0:101 0:148 route-map calculator permit 14509 match community 2_74_202 2_101_148 set community 0:14948 ip community-list standard 2_172_194 permit 65000:2 0:172 0:194 route-map calculator permit 14510 match community 2_172_194 set community 0:33368 ip community-list standard 2_22_233 permit 65000:2 0:22 0:233 route-map calculator permit 14511 match community 2_22_233 set community 0:5126 ip community-list standard 2_28_166 permit 65000:2 0:28 0:166 ip community-list standard 2_56_83 permit 65000:2 0:56 0:83 route-map calculator permit 14512 match community 2_28_166 2_56_83 set community 0:4648 ip community-list standard 2_119_217 permit 65000:2 0:119 0:217 route-map calculator permit 14513 match community 2_119_217 set community 0:25823 ip community-list standard 2_45_137 permit 65000:2 0:45 0:137 route-map calculator permit 14514 match community 2_45_137 set community 0:6165 ip community-list standard 2_51_159 permit 65000:2 0:51 0:159 ip community-list standard 2_53_153 permit 65000:2 0:53 0:153 route-map calculator permit 14515 match community 2_51_159 2_53_153 set community 0:8109 ip community-list standard 2_11_181 permit 65000:2 0:11 0:181 route-map calculator permit 14516 match community 2_11_181 set community 0:1991 ip community-list standard 2_64_193 permit 65000:2 0:64 0:193 route-map calculator permit 14517 match community 2_64_193 set community 0:12352 ip community-list standard 2_202_241 permit 65000:2 0:202 0:241 route-map calculator permit 14518 match community 2_202_241 set community 0:48682 ip community-list standard 2_65_175 permit 65000:2 0:65 0:175 ip community-list standard 2_91_125 permit 65000:2 0:91 0:125 route-map calculator permit 14519 match community 2_65_175 2_91_125 set community 0:11375 ip community-list standard 2_37_239 permit 65000:2 0:37 0:239 route-map calculator permit 14520 match community 2_37_239 set community 0:8843 ip community-list standard 2_201_248 permit 65000:2 0:201 0:248 route-map calculator permit 14521 match community 2_201_248 set community 0:49848 ip community-list standard 2_46_184 permit 65000:2 0:46 0:184 ip community-list standard 2_92_92 permit 65000:2 0:92 0:92 route-map calculator permit 14522 match community 2_46_184 2_92_92 set community 0:8464 ip community-list standard 2_149_226 permit 65000:2 0:149 0:226 route-map calculator permit 14523 match community 2_149_226 set community 0:33674 ip community-list standard 2_8_188 permit 65000:2 0:8 0:188 ip community-list standard 2_16_94 permit 65000:2 0:16 0:94 ip community-list standard 2_32_47 permit 65000:2 0:32 0:47 route-map calculator permit 14524 match community 2_8_188 2_16_94 2_32_47 set community 0:1504 ip community-list standard 2_37_215 permit 65000:2 0:37 0:215 ip community-list standard 2_43_185 permit 65000:2 0:43 0:185 route-map calculator permit 14525 match community 2_37_215 2_43_185 set community 0:7955 ip community-list standard 2_27_199 permit 65000:2 0:27 0:199 route-map calculator permit 14526 match community 2_27_199 set community 0:5373 ip community-list standard 2_188_248 permit 65000:2 0:188 0:248 route-map calculator permit 14527 match community 2_188_248 set community 0:46624 ip community-list standard 2_177_247 permit 65000:2 0:177 0:247 route-map calculator permit 14528 match community 2_177_247 set community 0:43719 ip community-list standard 2_59_217 permit 65000:2 0:59 0:217 route-map calculator permit 14529 match community 2_59_217 set community 0:12803 ip community-list standard 2_182_188 permit 65000:2 0:182 0:188 route-map calculator permit 14530 match community 2_182_188 set community 0:34216 ip community-list standard 2_64_185 permit 65000:2 0:64 0:185 ip community-list standard 2_74_160 permit 65000:2 0:74 0:160 ip community-list standard 2_80_148 permit 65000:2 0:80 0:148 route-map calculator permit 14531 match community 2_64_185 2_74_160 2_80_148 set community 0:11840 ip community-list standard 2_2_181 permit 65000:2 0:2 0:181 ip community-list standard 1_106_256 permit 65000:1 0:106 0:256 ip community-list standard 1_107_255 permit 65000:1 0:107 0:255 ip community-list standard 1_108_254 permit 65000:1 0:108 0:254 ip community-list standard 1_109_253 permit 65000:1 0:109 0:253 ip community-list standard 1_110_252 permit 65000:1 0:110 0:252 ip community-list standard 1_111_251 permit 65000:1 0:111 0:251 ip community-list standard 1_112_250 permit 65000:1 0:112 0:250 ip community-list standard 1_113_249 permit 65000:1 0:113 0:249 ip community-list standard 1_114_248 permit 65000:1 0:114 0:248 ip community-list standard 1_115_247 permit 65000:1 0:115 0:247 ip community-list standard 1_116_246 permit 65000:1 0:116 0:246 ip community-list standard 1_117_245 permit 65000:1 0:117 0:245 ip community-list standard 1_118_244 permit 65000:1 0:118 0:244 ip community-list standard 1_119_243 permit 65000:1 0:119 0:243 ip community-list standard 1_120_242 permit 65000:1 0:120 0:242 ip community-list standard 1_121_241 permit 65000:1 0:121 0:241 ip community-list standard 1_122_240 permit 65000:1 0:122 0:240 ip community-list standard 1_123_239 permit 65000:1 0:123 0:239 ip community-list standard 1_124_238 permit 65000:1 0:124 0:238 ip community-list standard 1_125_237 permit 65000:1 0:125 0:237 ip community-list standard 1_126_236 permit 65000:1 0:126 0:236 ip community-list standard 1_127_235 permit 65000:1 0:127 0:235 ip community-list standard 1_128_234 permit 65000:1 0:128 0:234 ip community-list standard 1_129_233 permit 65000:1 0:129 0:233 ip community-list standard 1_130_232 permit 65000:1 0:130 0:232 ip community-list standard 1_131_231 permit 65000:1 0:131 0:231 ip community-list standard 1_132_230 permit 65000:1 0:132 0:230 ip community-list standard 1_133_229 permit 65000:1 0:133 0:229 ip community-list standard 1_134_228 permit 65000:1 0:134 0:228 ip community-list standard 1_135_227 permit 65000:1 0:135 0:227 ip community-list standard 1_136_226 permit 65000:1 0:136 0:226 ip community-list standard 1_137_225 permit 65000:1 0:137 0:225 ip community-list standard 1_138_224 permit 65000:1 0:138 0:224 ip community-list standard 1_139_223 permit 65000:1 0:139 0:223 ip community-list standard 1_140_222 permit 65000:1 0:140 0:222 ip community-list standard 1_141_221 permit 65000:1 0:141 0:221 ip community-list standard 1_142_220 permit 65000:1 0:142 0:220 ip community-list standard 1_143_219 permit 65000:1 0:143 0:219 ip community-list standard 1_144_218 permit 65000:1 0:144 0:218 ip community-list standard 1_145_217 permit 65000:1 0:145 0:217 ip community-list standard 1_146_216 permit 65000:1 0:146 0:216 ip community-list standard 1_147_215 permit 65000:1 0:147 0:215 ip community-list standard 1_148_214 permit 65000:1 0:148 0:214 ip community-list standard 1_149_213 permit 65000:1 0:149 0:213 ip community-list standard 1_150_212 permit 65000:1 0:150 0:212 ip community-list standard 1_151_211 permit 65000:1 0:151 0:211 ip community-list standard 1_152_210 permit 65000:1 0:152 0:210 ip community-list standard 1_153_209 permit 65000:1 0:153 0:209 ip community-list standard 1_154_208 permit 65000:1 0:154 0:208 ip community-list standard 1_155_207 permit 65000:1 0:155 0:207 ip community-list standard 1_156_206 permit 65000:1 0:156 0:206 ip community-list standard 1_157_205 permit 65000:1 0:157 0:205 ip community-list standard 1_158_204 permit 65000:1 0:158 0:204 ip community-list standard 1_159_203 permit 65000:1 0:159 0:203 ip community-list standard 1_160_202 permit 65000:1 0:160 0:202 ip community-list standard 1_161_201 permit 65000:1 0:161 0:201 ip community-list standard 1_162_200 permit 65000:1 0:162 0:200 ip community-list standard 1_163_199 permit 65000:1 0:163 0:199 ip community-list standard 1_164_198 permit 65000:1 0:164 0:198 ip community-list standard 1_165_197 permit 65000:1 0:165 0:197 ip community-list standard 1_166_196 permit 65000:1 0:166 0:196 ip community-list standard 1_167_195 permit 65000:1 0:167 0:195 ip community-list standard 1_168_194 permit 65000:1 0:168 0:194 ip community-list standard 1_169_193 permit 65000:1 0:169 0:193 ip community-list standard 1_170_192 permit 65000:1 0:170 0:192 ip community-list standard 1_171_191 permit 65000:1 0:171 0:191 ip community-list standard 1_172_190 permit 65000:1 0:172 0:190 ip community-list standard 1_173_189 permit 65000:1 0:173 0:189 ip community-list standard 1_174_188 permit 65000:1 0:174 0:188 ip community-list standard 1_175_187 permit 65000:1 0:175 0:187 ip community-list standard 1_176_186 permit 65000:1 0:176 0:186 ip community-list standard 1_177_185 permit 65000:1 0:177 0:185 ip community-list standard 1_178_184 permit 65000:1 0:178 0:184 ip community-list standard 1_179_183 permit 65000:1 0:179 0:183 ip community-list standard 1_180_182 permit 65000:1 0:180 0:182 ip community-list standard 1_181_181 permit 65000:1 0:181 0:181 route-map calculator permit 14532 match community 2_2_181 1_106_256 1_107_255 1_108_254 1_109_253 set community 0:362 route-map calculator permit 14533 match community 1_110_252 1_111_251 1_112_250 1_113_249 1_114_248 set community 0:362 route-map calculator permit 14534 match community 1_115_247 1_116_246 1_117_245 1_118_244 1_119_243 set community 0:362 route-map calculator permit 14535 match community 1_120_242 1_121_241 1_122_240 1_123_239 1_124_238 set community 0:362 route-map calculator permit 14536 match community 1_125_237 1_126_236 1_127_235 1_128_234 1_129_233 set community 0:362 route-map calculator permit 14537 match community 1_130_232 1_131_231 1_132_230 1_133_229 1_134_228 set community 0:362 route-map calculator permit 14538 match community 1_135_227 1_136_226 1_137_225 1_138_224 1_139_223 set community 0:362 route-map calculator permit 14539 match community 1_140_222 1_141_221 1_142_220 1_143_219 1_144_218 set community 0:362 route-map calculator permit 14540 match community 1_145_217 1_146_216 1_147_215 1_148_214 1_149_213 set community 0:362 route-map calculator permit 14541 match community 1_150_212 1_151_211 1_152_210 1_153_209 1_154_208 set community 0:362 route-map calculator permit 14542 match community 1_155_207 1_156_206 1_157_205 1_158_204 1_159_203 set community 0:362 route-map calculator permit 14543 match community 1_160_202 1_161_201 1_162_200 1_163_199 1_164_198 set community 0:362 route-map calculator permit 14544 match community 1_165_197 1_166_196 1_167_195 1_168_194 1_169_193 set community 0:362 route-map calculator permit 14545 match community 1_170_192 1_171_191 1_172_190 1_173_189 1_174_188 set community 0:362 route-map calculator permit 14546 match community 1_175_187 1_176_186 1_177_185 1_178_184 1_179_183 set community 0:362 route-map calculator permit 14547 match community 1_180_182 1_181_181 set community 0:362 ip community-list standard 2_93_201 permit 65000:2 0:93 0:201 route-map calculator permit 14548 match community 2_93_201 set community 0:18693 ip community-list standard 2_182_251 permit 65000:2 0:182 0:251 route-map calculator permit 14549 match community 2_182_251 set community 0:45682 ip community-list standard 2_31_197 permit 65000:2 0:31 0:197 route-map calculator permit 14550 match community 2_31_197 set community 0:6107 ip community-list standard 2_8_206 permit 65000:2 0:8 0:206 ip community-list standard 2_16_103 permit 65000:2 0:16 0:103 route-map calculator permit 14551 match community 2_8_206 2_16_103 set community 0:1648 ip community-list standard 2_105_191 permit 65000:2 0:105 0:191 route-map calculator permit 14552 match community 2_105_191 set community 0:20055 ip community-list standard 2_119_179 permit 65000:2 0:119 0:179 route-map calculator permit 14553 match community 2_119_179 set community 0:21301 ip community-list standard 2_61_252 permit 65000:2 0:61 0:252 ip community-list standard 2_63_244 permit 65000:2 0:63 0:244 ip community-list standard 2_84_183 permit 65000:2 0:84 0:183 ip community-list standard 2_122_126 permit 65000:2 0:122 0:126 route-map calculator permit 14554 match community 2_61_252 2_63_244 2_84_183 2_122_126 set community 0:15372 ip community-list standard 2_103_175 permit 65000:2 0:103 0:175 route-map calculator permit 14555 match community 2_103_175 set community 0:18025 ip community-list standard 2_241_252 permit 65000:2 0:241 0:252 route-map calculator permit 14556 match community 2_241_252 set community 0:60732 ip community-list standard 2_115_169 permit 65000:2 0:115 0:169 route-map calculator permit 14557 match community 2_115_169 set community 0:19435 ip community-list standard 2_191_194 permit 65000:2 0:191 0:194 route-map calculator permit 14558 match community 2_191_194 set community 0:37054 ip community-list standard 2_157_191 permit 65000:2 0:157 0:191 route-map calculator permit 14559 match community 2_157_191 set community 0:29987 ip community-list standard 2_106_143 permit 65000:2 0:106 0:143 route-map calculator permit 14560 match community 2_106_143 set community 0:15158 ip community-list standard 2_138_245 permit 65000:2 0:138 0:245 ip community-list standard 2_147_230 permit 65000:2 0:147 0:230 ip community-list standard 2_161_210 permit 65000:2 0:161 0:210 route-map calculator permit 14561 match community 2_138_245 2_147_230 2_161_210 set community 0:33810 ip community-list standard 2_79_178 permit 65000:2 0:79 0:178 ip community-list standard 2_89_158 permit 65000:2 0:89 0:158 route-map calculator permit 14562 match community 2_79_178 2_89_158 set community 0:14062 ip community-list standard 2_17_17 permit 65000:2 0:17 0:17 ip community-list standard 1_33_256 permit 65000:1 0:33 0:256 ip community-list standard 1_34_255 permit 65000:1 0:34 0:255 ip community-list standard 1_35_254 permit 65000:1 0:35 0:254 ip community-list standard 1_36_253 permit 65000:1 0:36 0:253 ip community-list standard 1_37_252 permit 65000:1 0:37 0:252 ip community-list standard 1_38_251 permit 65000:1 0:38 0:251 ip community-list standard 1_39_250 permit 65000:1 0:39 0:250 ip community-list standard 1_40_249 permit 65000:1 0:40 0:249 ip community-list standard 1_41_248 permit 65000:1 0:41 0:248 ip community-list standard 1_42_247 permit 65000:1 0:42 0:247 ip community-list standard 1_43_246 permit 65000:1 0:43 0:246 ip community-list standard 1_44_245 permit 65000:1 0:44 0:245 ip community-list standard 1_45_244 permit 65000:1 0:45 0:244 ip community-list standard 1_46_243 permit 65000:1 0:46 0:243 ip community-list standard 1_47_242 permit 65000:1 0:47 0:242 ip community-list standard 1_48_241 permit 65000:1 0:48 0:241 ip community-list standard 1_49_240 permit 65000:1 0:49 0:240 ip community-list standard 1_50_239 permit 65000:1 0:50 0:239 ip community-list standard 1_51_238 permit 65000:1 0:51 0:238 ip community-list standard 1_52_237 permit 65000:1 0:52 0:237 ip community-list standard 1_53_236 permit 65000:1 0:53 0:236 ip community-list standard 1_54_235 permit 65000:1 0:54 0:235 ip community-list standard 1_55_234 permit 65000:1 0:55 0:234 ip community-list standard 1_56_233 permit 65000:1 0:56 0:233 ip community-list standard 1_57_232 permit 65000:1 0:57 0:232 ip community-list standard 1_58_231 permit 65000:1 0:58 0:231 ip community-list standard 1_59_230 permit 65000:1 0:59 0:230 ip community-list standard 1_60_229 permit 65000:1 0:60 0:229 ip community-list standard 1_61_228 permit 65000:1 0:61 0:228 ip community-list standard 1_62_227 permit 65000:1 0:62 0:227 ip community-list standard 1_63_226 permit 65000:1 0:63 0:226 ip community-list standard 1_64_225 permit 65000:1 0:64 0:225 ip community-list standard 1_65_224 permit 65000:1 0:65 0:224 ip community-list standard 1_66_223 permit 65000:1 0:66 0:223 ip community-list standard 1_67_222 permit 65000:1 0:67 0:222 ip community-list standard 1_68_221 permit 65000:1 0:68 0:221 ip community-list standard 1_69_220 permit 65000:1 0:69 0:220 ip community-list standard 1_70_219 permit 65000:1 0:70 0:219 ip community-list standard 1_71_218 permit 65000:1 0:71 0:218 ip community-list standard 1_72_217 permit 65000:1 0:72 0:217 ip community-list standard 1_73_216 permit 65000:1 0:73 0:216 ip community-list standard 1_74_215 permit 65000:1 0:74 0:215 ip community-list standard 1_75_214 permit 65000:1 0:75 0:214 ip community-list standard 1_76_213 permit 65000:1 0:76 0:213 ip community-list standard 1_77_212 permit 65000:1 0:77 0:212 ip community-list standard 1_78_211 permit 65000:1 0:78 0:211 ip community-list standard 1_79_210 permit 65000:1 0:79 0:210 ip community-list standard 1_80_209 permit 65000:1 0:80 0:209 ip community-list standard 1_81_208 permit 65000:1 0:81 0:208 ip community-list standard 1_82_207 permit 65000:1 0:82 0:207 ip community-list standard 1_83_206 permit 65000:1 0:83 0:206 ip community-list standard 1_84_205 permit 65000:1 0:84 0:205 ip community-list standard 1_85_204 permit 65000:1 0:85 0:204 ip community-list standard 1_86_203 permit 65000:1 0:86 0:203 ip community-list standard 1_87_202 permit 65000:1 0:87 0:202 ip community-list standard 1_88_201 permit 65000:1 0:88 0:201 ip community-list standard 1_89_200 permit 65000:1 0:89 0:200 ip community-list standard 1_90_199 permit 65000:1 0:90 0:199 ip community-list standard 1_91_198 permit 65000:1 0:91 0:198 ip community-list standard 1_92_197 permit 65000:1 0:92 0:197 ip community-list standard 1_93_196 permit 65000:1 0:93 0:196 ip community-list standard 1_94_195 permit 65000:1 0:94 0:195 ip community-list standard 1_95_194 permit 65000:1 0:95 0:194 ip community-list standard 1_96_193 permit 65000:1 0:96 0:193 ip community-list standard 1_97_192 permit 65000:1 0:97 0:192 ip community-list standard 1_98_191 permit 65000:1 0:98 0:191 ip community-list standard 1_99_190 permit 65000:1 0:99 0:190 ip community-list standard 1_100_189 permit 65000:1 0:100 0:189 ip community-list standard 1_101_188 permit 65000:1 0:101 0:188 ip community-list standard 1_102_187 permit 65000:1 0:102 0:187 ip community-list standard 1_103_186 permit 65000:1 0:103 0:186 ip community-list standard 1_104_185 permit 65000:1 0:104 0:185 ip community-list standard 1_105_184 permit 65000:1 0:105 0:184 ip community-list standard 1_106_183 permit 65000:1 0:106 0:183 ip community-list standard 1_107_182 permit 65000:1 0:107 0:182 ip community-list standard 1_108_181 permit 65000:1 0:108 0:181 ip community-list standard 1_109_180 permit 65000:1 0:109 0:180 ip community-list standard 1_110_179 permit 65000:1 0:110 0:179 ip community-list standard 1_111_178 permit 65000:1 0:111 0:178 ip community-list standard 1_112_177 permit 65000:1 0:112 0:177 ip community-list standard 1_113_176 permit 65000:1 0:113 0:176 ip community-list standard 1_114_175 permit 65000:1 0:114 0:175 ip community-list standard 1_115_174 permit 65000:1 0:115 0:174 ip community-list standard 1_116_173 permit 65000:1 0:116 0:173 ip community-list standard 1_117_172 permit 65000:1 0:117 0:172 ip community-list standard 1_118_171 permit 65000:1 0:118 0:171 ip community-list standard 1_119_170 permit 65000:1 0:119 0:170 ip community-list standard 1_120_169 permit 65000:1 0:120 0:169 ip community-list standard 1_121_168 permit 65000:1 0:121 0:168 ip community-list standard 1_122_167 permit 65000:1 0:122 0:167 ip community-list standard 1_123_166 permit 65000:1 0:123 0:166 ip community-list standard 1_124_165 permit 65000:1 0:124 0:165 ip community-list standard 1_125_164 permit 65000:1 0:125 0:164 ip community-list standard 1_126_163 permit 65000:1 0:126 0:163 ip community-list standard 1_127_162 permit 65000:1 0:127 0:162 ip community-list standard 1_128_161 permit 65000:1 0:128 0:161 ip community-list standard 1_129_160 permit 65000:1 0:129 0:160 ip community-list standard 1_130_159 permit 65000:1 0:130 0:159 ip community-list standard 1_131_158 permit 65000:1 0:131 0:158 ip community-list standard 1_132_157 permit 65000:1 0:132 0:157 ip community-list standard 1_133_156 permit 65000:1 0:133 0:156 ip community-list standard 1_134_155 permit 65000:1 0:134 0:155 ip community-list standard 1_135_154 permit 65000:1 0:135 0:154 ip community-list standard 1_136_153 permit 65000:1 0:136 0:153 ip community-list standard 1_137_152 permit 65000:1 0:137 0:152 ip community-list standard 1_138_151 permit 65000:1 0:138 0:151 ip community-list standard 1_139_150 permit 65000:1 0:139 0:150 ip community-list standard 1_140_149 permit 65000:1 0:140 0:149 ip community-list standard 1_141_148 permit 65000:1 0:141 0:148 ip community-list standard 1_142_147 permit 65000:1 0:142 0:147 ip community-list standard 1_143_146 permit 65000:1 0:143 0:146 ip community-list standard 1_144_145 permit 65000:1 0:144 0:145 route-map calculator permit 14563 match community 2_17_17 1_33_256 1_34_255 1_35_254 1_36_253 set community 0:289 route-map calculator permit 14564 match community 1_37_252 1_38_251 1_39_250 1_40_249 1_41_248 set community 0:289 route-map calculator permit 14565 match community 1_42_247 1_43_246 1_44_245 1_45_244 1_46_243 set community 0:289 route-map calculator permit 14566 match community 1_47_242 1_48_241 1_49_240 1_50_239 1_51_238 set community 0:289 route-map calculator permit 14567 match community 1_52_237 1_53_236 1_54_235 1_55_234 1_56_233 set community 0:289 route-map calculator permit 14568 match community 1_57_232 1_58_231 1_59_230 1_60_229 1_61_228 set community 0:289 route-map calculator permit 14569 match community 1_62_227 1_63_226 1_64_225 1_65_224 1_66_223 set community 0:289 route-map calculator permit 14570 match community 1_67_222 1_68_221 1_69_220 1_70_219 1_71_218 set community 0:289 route-map calculator permit 14571 match community 1_72_217 1_73_216 1_74_215 1_75_214 1_76_213 set community 0:289 route-map calculator permit 14572 match community 1_77_212 1_78_211 1_79_210 1_80_209 1_81_208 set community 0:289 route-map calculator permit 14573 match community 1_82_207 1_83_206 1_84_205 1_85_204 1_86_203 set community 0:289 route-map calculator permit 14574 match community 1_87_202 1_88_201 1_89_200 1_90_199 1_91_198 set community 0:289 route-map calculator permit 14575 match community 1_92_197 1_93_196 1_94_195 1_95_194 1_96_193 set community 0:289 route-map calculator permit 14576 match community 1_97_192 1_98_191 1_99_190 1_100_189 1_101_188 set community 0:289 route-map calculator permit 14577 match community 1_102_187 1_103_186 1_104_185 1_105_184 1_106_183 set community 0:289 route-map calculator permit 14578 match community 1_107_182 1_108_181 1_109_180 1_110_179 1_111_178 set community 0:289 route-map calculator permit 14579 match community 1_112_177 1_113_176 1_114_175 1_115_174 1_116_173 set community 0:289 route-map calculator permit 14580 match community 1_117_172 1_118_171 1_119_170 1_120_169 1_121_168 set community 0:289 route-map calculator permit 14581 match community 1_122_167 1_123_166 1_124_165 1_125_164 1_126_163 set community 0:289 route-map calculator permit 14582 match community 1_127_162 1_128_161 1_129_160 1_130_159 1_131_158 set community 0:289 route-map calculator permit 14583 match community 1_132_157 1_133_156 1_134_155 1_135_154 1_136_153 set community 0:289 route-map calculator permit 14584 match community 1_137_152 1_138_151 1_139_150 1_140_149 1_141_148 set community 0:289 route-map calculator permit 14585 match community 1_142_147 1_143_146 1_144_145 set community 0:289 ip community-list standard 2_64_137 permit 65000:2 0:64 0:137 route-map calculator permit 14586 match community 2_64_137 set community 0:8768 ip community-list standard 2_31_43 permit 65000:2 0:31 0:43 route-map calculator permit 14587 match community 2_31_43 set community 0:1333 ip community-list standard 2_81_151 permit 65000:2 0:81 0:151 route-map calculator permit 14588 match community 2_81_151 set community 0:12231 ip community-list standard 2_200_237 permit 65000:2 0:200 0:237 route-map calculator permit 14589 match community 2_200_237 set community 0:47400 ip community-list standard 2_81_246 permit 65000:2 0:81 0:246 ip community-list standard 2_82_243 permit 65000:2 0:82 0:243 ip community-list standard 2_123_162 permit 65000:2 0:123 0:162 route-map calculator permit 14590 match community 2_81_246 2_82_243 2_123_162 set community 0:19926 ip community-list standard 2_72_240 permit 65000:2 0:72 0:240 ip community-list standard 2_80_216 permit 65000:2 0:80 0:216 ip community-list standard 2_90_192 permit 65000:2 0:90 0:192 ip community-list standard 2_96_180 permit 65000:2 0:96 0:180 ip community-list standard 2_108_160 permit 65000:2 0:108 0:160 ip community-list standard 2_120_144 permit 65000:2 0:120 0:144 ip community-list standard 2_128_135 permit 65000:2 0:128 0:135 route-map calculator permit 14591 match community 2_72_240 2_80_216 2_90_192 2_96_180 2_108_160 set community 0:17280 route-map calculator permit 14592 match community 2_120_144 2_128_135 set community 0:17280 ip community-list standard 2_89_235 permit 65000:2 0:89 0:235 route-map calculator permit 14593 match community 2_89_235 set community 0:20915 ip community-list standard 2_217_228 permit 65000:2 0:217 0:228 route-map calculator permit 14594 match community 2_217_228 set community 0:49476 ip community-list standard 2_149_180 permit 65000:2 0:149 0:180 route-map calculator permit 14595 match community 2_149_180 set community 0:26820 ip community-list standard 2_31_251 permit 65000:2 0:31 0:251 route-map calculator permit 14596 match community 2_31_251 set community 0:7781 ip community-list standard 2_138_194 permit 65000:2 0:138 0:194 route-map calculator permit 14597 match community 2_138_194 set community 0:26772 ip community-list standard 2_200_213 permit 65000:2 0:200 0:213 route-map calculator permit 14598 match community 2_200_213 set community 0:42600 ip community-list standard 2_47_246 permit 65000:2 0:47 0:246 ip community-list standard 2_82_141 permit 65000:2 0:82 0:141 ip community-list standard 2_94_123 permit 65000:2 0:94 0:123 route-map calculator permit 14599 match community 2_47_246 2_82_141 2_94_123 set community 0:11562 ip community-list standard 2_115_244 permit 65000:2 0:115 0:244 ip community-list standard 2_122_230 permit 65000:2 0:122 0:230 route-map calculator permit 14600 match community 2_115_244 2_122_230 set community 0:28060 ip community-list standard 2_47_211 permit 65000:2 0:47 0:211 route-map calculator permit 14601 match community 2_47_211 set community 0:9917 ip community-list standard 2_181_235 permit 65000:2 0:181 0:235 route-map calculator permit 14602 match community 2_181_235 set community 0:42535 ip community-list standard 1_1_204 permit 65000:1 0:1 0:204 ip community-list standard 2_1_205 permit 65000:2 0:1 0:205 ip community-list standard 1_2_203 permit 65000:1 0:2 0:203 ip community-list standard 1_3_202 permit 65000:1 0:3 0:202 ip community-list standard 1_4_201 permit 65000:1 0:4 0:201 ip community-list standard 2_5_41 permit 65000:2 0:5 0:41 ip community-list standard 1_5_200 permit 65000:1 0:5 0:200 ip community-list standard 1_6_199 permit 65000:1 0:6 0:199 ip community-list standard 1_7_198 permit 65000:1 0:7 0:198 ip community-list standard 1_8_197 permit 65000:1 0:8 0:197 ip community-list standard 1_9_196 permit 65000:1 0:9 0:196 ip community-list standard 1_10_195 permit 65000:1 0:10 0:195 ip community-list standard 1_11_194 permit 65000:1 0:11 0:194 ip community-list standard 1_12_193 permit 65000:1 0:12 0:193 ip community-list standard 1_13_192 permit 65000:1 0:13 0:192 ip community-list standard 1_14_191 permit 65000:1 0:14 0:191 ip community-list standard 1_15_190 permit 65000:1 0:15 0:190 ip community-list standard 1_16_189 permit 65000:1 0:16 0:189 ip community-list standard 1_17_188 permit 65000:1 0:17 0:188 ip community-list standard 1_18_187 permit 65000:1 0:18 0:187 ip community-list standard 1_19_186 permit 65000:1 0:19 0:186 ip community-list standard 1_20_185 permit 65000:1 0:20 0:185 ip community-list standard 1_21_184 permit 65000:1 0:21 0:184 ip community-list standard 1_22_183 permit 65000:1 0:22 0:183 ip community-list standard 1_23_182 permit 65000:1 0:23 0:182 ip community-list standard 1_24_181 permit 65000:1 0:24 0:181 ip community-list standard 1_25_180 permit 65000:1 0:25 0:180 ip community-list standard 1_26_179 permit 65000:1 0:26 0:179 ip community-list standard 1_27_178 permit 65000:1 0:27 0:178 ip community-list standard 1_28_177 permit 65000:1 0:28 0:177 ip community-list standard 1_29_176 permit 65000:1 0:29 0:176 ip community-list standard 1_30_175 permit 65000:1 0:30 0:175 ip community-list standard 1_31_174 permit 65000:1 0:31 0:174 ip community-list standard 1_32_173 permit 65000:1 0:32 0:173 ip community-list standard 1_33_172 permit 65000:1 0:33 0:172 ip community-list standard 1_34_171 permit 65000:1 0:34 0:171 ip community-list standard 1_35_170 permit 65000:1 0:35 0:170 ip community-list standard 1_36_169 permit 65000:1 0:36 0:169 ip community-list standard 1_37_168 permit 65000:1 0:37 0:168 ip community-list standard 1_38_167 permit 65000:1 0:38 0:167 ip community-list standard 1_39_166 permit 65000:1 0:39 0:166 ip community-list standard 1_40_165 permit 65000:1 0:40 0:165 ip community-list standard 1_41_164 permit 65000:1 0:41 0:164 ip community-list standard 1_42_163 permit 65000:1 0:42 0:163 ip community-list standard 1_43_162 permit 65000:1 0:43 0:162 ip community-list standard 1_44_161 permit 65000:1 0:44 0:161 ip community-list standard 1_45_160 permit 65000:1 0:45 0:160 ip community-list standard 1_46_159 permit 65000:1 0:46 0:159 ip community-list standard 1_47_158 permit 65000:1 0:47 0:158 ip community-list standard 1_48_157 permit 65000:1 0:48 0:157 ip community-list standard 1_49_156 permit 65000:1 0:49 0:156 ip community-list standard 1_50_155 permit 65000:1 0:50 0:155 ip community-list standard 1_51_154 permit 65000:1 0:51 0:154 ip community-list standard 1_52_153 permit 65000:1 0:52 0:153 ip community-list standard 1_53_152 permit 65000:1 0:53 0:152 ip community-list standard 1_54_151 permit 65000:1 0:54 0:151 ip community-list standard 1_55_150 permit 65000:1 0:55 0:150 ip community-list standard 1_56_149 permit 65000:1 0:56 0:149 ip community-list standard 1_57_148 permit 65000:1 0:57 0:148 ip community-list standard 1_58_147 permit 65000:1 0:58 0:147 ip community-list standard 1_59_146 permit 65000:1 0:59 0:146 ip community-list standard 1_60_145 permit 65000:1 0:60 0:145 ip community-list standard 1_61_144 permit 65000:1 0:61 0:144 ip community-list standard 1_62_143 permit 65000:1 0:62 0:143 ip community-list standard 1_63_142 permit 65000:1 0:63 0:142 ip community-list standard 1_64_141 permit 65000:1 0:64 0:141 ip community-list standard 1_65_140 permit 65000:1 0:65 0:140 ip community-list standard 1_66_139 permit 65000:1 0:66 0:139 ip community-list standard 1_67_138 permit 65000:1 0:67 0:138 ip community-list standard 1_68_137 permit 65000:1 0:68 0:137 ip community-list standard 1_69_136 permit 65000:1 0:69 0:136 ip community-list standard 1_70_135 permit 65000:1 0:70 0:135 ip community-list standard 1_71_134 permit 65000:1 0:71 0:134 ip community-list standard 1_72_133 permit 65000:1 0:72 0:133 ip community-list standard 1_73_132 permit 65000:1 0:73 0:132 ip community-list standard 1_74_131 permit 65000:1 0:74 0:131 ip community-list standard 1_75_130 permit 65000:1 0:75 0:130 ip community-list standard 1_76_129 permit 65000:1 0:76 0:129 ip community-list standard 1_77_128 permit 65000:1 0:77 0:128 ip community-list standard 1_78_127 permit 65000:1 0:78 0:127 ip community-list standard 1_79_126 permit 65000:1 0:79 0:126 ip community-list standard 1_80_125 permit 65000:1 0:80 0:125 ip community-list standard 1_81_124 permit 65000:1 0:81 0:124 ip community-list standard 1_82_123 permit 65000:1 0:82 0:123 ip community-list standard 1_83_122 permit 65000:1 0:83 0:122 ip community-list standard 1_84_121 permit 65000:1 0:84 0:121 ip community-list standard 1_85_120 permit 65000:1 0:85 0:120 ip community-list standard 1_86_119 permit 65000:1 0:86 0:119 ip community-list standard 1_87_118 permit 65000:1 0:87 0:118 ip community-list standard 1_88_117 permit 65000:1 0:88 0:117 ip community-list standard 1_89_116 permit 65000:1 0:89 0:116 ip community-list standard 1_90_115 permit 65000:1 0:90 0:115 ip community-list standard 1_91_114 permit 65000:1 0:91 0:114 ip community-list standard 1_92_113 permit 65000:1 0:92 0:113 ip community-list standard 1_93_112 permit 65000:1 0:93 0:112 ip community-list standard 1_94_111 permit 65000:1 0:94 0:111 ip community-list standard 1_95_110 permit 65000:1 0:95 0:110 ip community-list standard 1_96_109 permit 65000:1 0:96 0:109 ip community-list standard 1_97_108 permit 65000:1 0:97 0:108 ip community-list standard 1_98_107 permit 65000:1 0:98 0:107 ip community-list standard 1_99_106 permit 65000:1 0:99 0:106 ip community-list standard 1_100_105 permit 65000:1 0:100 0:105 ip community-list standard 1_101_104 permit 65000:1 0:101 0:104 ip community-list standard 1_102_103 permit 65000:1 0:102 0:103 ip community-list expanded c205 permit 1 ^65000:4_0:205_0:1$ ip community-list expanded c205 permit 2 ^65000:3_0:206_0:1$ ip community-list expanded c205 permit 3 ^65000:3_0:207_0:2$ ip community-list expanded c205 permit 4 ^65000:3_0:208_0:3$ ip community-list expanded c205 permit 5 ^65000:3_0:209_0:4$ ip community-list expanded c205 permit 6 ^65000:3_0:210_0:5$ ip community-list expanded c205 permit 7 ^65000:3_0:211_0:6$ ip community-list expanded c205 permit 8 ^65000:3_0:212_0:7$ ip community-list expanded c205 permit 9 ^65000:3_0:213_0:8$ ip community-list expanded c205 permit 10 ^65000:3_0:214_0:9$ ip community-list expanded c205 permit 11 ^65000:3_0:215_0:10$ ip community-list expanded c205 permit 12 ^65000:3_0:216_0:11$ ip community-list expanded c205 permit 13 ^65000:3_0:217_0:12$ ip community-list expanded c205 permit 14 ^65000:3_0:218_0:13$ ip community-list expanded c205 permit 15 ^65000:3_0:219_0:14$ ip community-list expanded c205 permit 16 ^65000:3_0:220_0:15$ ip community-list expanded c205 permit 17 ^65000:3_0:221_0:16$ ip community-list expanded c205 permit 18 ^65000:3_0:222_0:17$ ip community-list expanded c205 permit 19 ^65000:3_0:223_0:18$ ip community-list expanded c205 permit 20 ^65000:3_0:224_0:19$ ip community-list expanded c205 permit 21 ^65000:3_0:225_0:20$ ip community-list expanded c205 permit 22 ^65000:3_0:226_0:21$ ip community-list expanded c205 permit 23 ^65000:3_0:227_0:22$ ip community-list expanded c205 permit 24 ^65000:3_0:228_0:23$ ip community-list expanded c205 permit 25 ^65000:3_0:229_0:24$ ip community-list expanded c205 permit 26 ^65000:3_0:230_0:25$ ip community-list expanded c205 permit 27 ^65000:3_0:231_0:26$ ip community-list expanded c205 permit 28 ^65000:3_0:232_0:27$ ip community-list expanded c205 permit 29 ^65000:3_0:233_0:28$ ip community-list expanded c205 permit 30 ^65000:3_0:234_0:29$ ip community-list expanded c205 permit 31 ^65000:3_0:235_0:30$ ip community-list expanded c205 permit 32 ^65000:3_0:236_0:31$ ip community-list expanded c205 permit 33 ^65000:3_0:237_0:32$ ip community-list expanded c205 permit 34 ^65000:3_0:238_0:33$ ip community-list expanded c205 permit 35 ^65000:3_0:239_0:34$ ip community-list expanded c205 permit 36 ^65000:3_0:240_0:35$ ip community-list expanded c205 permit 37 ^65000:3_0:241_0:36$ ip community-list expanded c205 permit 38 ^65000:3_0:242_0:37$ ip community-list expanded c205 permit 39 ^65000:3_0:243_0:38$ ip community-list expanded c205 permit 40 ^65000:3_0:244_0:39$ ip community-list expanded c205 permit 41 ^65000:3_0:245_0:40$ ip community-list expanded c205 permit 42 ^65000:3_0:246_0:41$ ip community-list expanded c205 permit 43 ^65000:3_0:247_0:42$ ip community-list expanded c205 permit 44 ^65000:3_0:248_0:43$ ip community-list expanded c205 permit 45 ^65000:3_0:249_0:44$ ip community-list expanded c205 permit 46 ^65000:3_0:250_0:45$ ip community-list expanded c205 permit 47 ^65000:3_0:251_0:46$ ip community-list expanded c205 permit 48 ^65000:3_0:252_0:47$ ip community-list expanded c205 permit 49 ^65000:3_0:253_0:48$ ip community-list expanded c205 permit 50 ^65000:3_0:254_0:49$ ip community-list expanded c205 permit 51 ^65000:3_0:255_0:50$ ip community-list expanded c205 permit 52 ^65000:3_0:256_0:51$ route-map calculator permit 14603 match community 1_1_204 2_1_205 1_2_203 1_3_202 1_4_201 set community 0:205 route-map calculator permit 14604 match community 2_5_41 1_5_200 1_6_199 1_7_198 1_8_197 set community 0:205 route-map calculator permit 14605 match community 1_9_196 1_10_195 1_11_194 1_12_193 1_13_192 set community 0:205 route-map calculator permit 14606 match community 1_14_191 1_15_190 1_16_189 1_17_188 1_18_187 set community 0:205 route-map calculator permit 14607 match community 1_19_186 1_20_185 1_21_184 1_22_183 1_23_182 set community 0:205 route-map calculator permit 14608 match community 1_24_181 1_25_180 1_26_179 1_27_178 1_28_177 set community 0:205 route-map calculator permit 14609 match community 1_29_176 1_30_175 1_31_174 1_32_173 1_33_172 set community 0:205 route-map calculator permit 14610 match community 1_34_171 1_35_170 1_36_169 1_37_168 1_38_167 set community 0:205 route-map calculator permit 14611 match community 1_39_166 1_40_165 1_41_164 1_42_163 1_43_162 set community 0:205 route-map calculator permit 14612 match community 1_44_161 1_45_160 1_46_159 1_47_158 1_48_157 set community 0:205 route-map calculator permit 14613 match community 1_49_156 1_50_155 1_51_154 1_52_153 1_53_152 set community 0:205 route-map calculator permit 14614 match community 1_54_151 1_55_150 1_56_149 1_57_148 1_58_147 set community 0:205 route-map calculator permit 14615 match community 1_59_146 1_60_145 1_61_144 1_62_143 1_63_142 set community 0:205 route-map calculator permit 14616 match community 1_64_141 1_65_140 1_66_139 1_67_138 1_68_137 set community 0:205 route-map calculator permit 14617 match community 1_69_136 1_70_135 1_71_134 1_72_133 1_73_132 set community 0:205 route-map calculator permit 14618 match community 1_74_131 1_75_130 1_76_129 1_77_128 1_78_127 set community 0:205 route-map calculator permit 14619 match community 1_79_126 1_80_125 1_81_124 1_82_123 1_83_122 set community 0:205 route-map calculator permit 14620 match community 1_84_121 1_85_120 1_86_119 1_87_118 1_88_117 set community 0:205 route-map calculator permit 14621 match community 1_89_116 1_90_115 1_91_114 1_92_113 1_93_112 set community 0:205 route-map calculator permit 14622 match community 1_94_111 1_95_110 1_96_109 1_97_108 1_98_107 set community 0:205 route-map calculator permit 14623 match community 1_99_106 1_100_105 1_101_104 1_102_103 c4_205_1 set community 0:205 route-map calculator permit 14624 match community c3_206_1 c3_207_2 c3_208_3 c3_209_4 c3_210_5 set community 0:205 route-map calculator permit 14625 match community c3_211_6 c3_212_7 c3_213_8 c3_214_9 c3_215_10 set community 0:205 route-map calculator permit 14626 match community c3_216_11 c3_217_12 c3_218_13 c3_219_14 c3_220_15 set community 0:205 route-map calculator permit 14627 match community c3_221_16 c3_222_17 c3_223_18 c3_224_19 c3_225_20 set community 0:205 route-map calculator permit 14628 match community c3_226_21 c3_227_22 c3_228_23 c3_229_24 c3_230_25 set community 0:205 route-map calculator permit 14629 match community c3_231_26 c3_232_27 c3_233_28 c3_234_29 c3_235_30 set community 0:205 route-map calculator permit 14630 match community c3_236_31 c3_237_32 c3_238_33 c3_239_34 c3_240_35 set community 0:205 route-map calculator permit 14631 match community c3_241_36 c3_242_37 c3_243_38 c3_244_39 c3_245_40 set community 0:205 route-map calculator permit 14632 match community c3_246_41 c3_247_42 c3_248_43 c3_249_44 c3_250_45 set community 0:205 route-map calculator permit 14633 match community c3_251_46 c3_252_47 c3_253_48 c3_254_49 c3_255_50 set community 0:205 route-map calculator permit 14634 match community c3_256_51 set community 0:205 ip community-list standard 2_14_220 permit 65000:2 0:14 0:220 ip community-list standard 2_20_154 permit 65000:2 0:20 0:154 ip community-list standard 2_22_140 permit 65000:2 0:22 0:140 ip community-list standard 2_28_110 permit 65000:2 0:28 0:110 ip community-list standard 2_35_88 permit 65000:2 0:35 0:88 ip community-list standard 2_40_77 permit 65000:2 0:40 0:77 ip community-list standard 2_44_70 permit 65000:2 0:44 0:70 ip community-list standard 2_55_56 permit 65000:2 0:55 0:56 route-map calculator permit 14635 match community 2_14_220 2_20_154 2_22_140 2_28_110 2_35_88 set community 0:3080 route-map calculator permit 14636 match community 2_40_77 2_44_70 2_55_56 set community 0:3080 ip community-list standard 2_227_231 permit 65000:2 0:227 0:231 route-map calculator permit 14637 match community 2_227_231 set community 0:52437 ip community-list standard 2_19_232 permit 65000:2 0:19 0:232 ip community-list standard 2_29_152 permit 65000:2 0:29 0:152 ip community-list standard 2_38_116 permit 65000:2 0:38 0:116 ip community-list standard 2_58_76 permit 65000:2 0:58 0:76 route-map calculator permit 14638 match community 2_19_232 2_29_152 2_38_116 2_58_76 set community 0:4408 ip community-list standard 2_86_172 permit 65000:2 0:86 0:172 route-map calculator permit 14639 match community 2_86_172 set community 0:14792 ip community-list standard 2_43_234 permit 65000:2 0:43 0:234 ip community-list standard 2_78_129 permit 65000:2 0:78 0:129 ip community-list standard 2_86_117 permit 65000:2 0:86 0:117 route-map calculator permit 14640 match community 2_43_234 2_78_129 2_86_117 set community 0:10062 ip community-list standard 2_31_238 permit 65000:2 0:31 0:238 ip community-list standard 2_34_217 permit 65000:2 0:34 0:217 ip community-list standard 2_62_119 permit 65000:2 0:62 0:119 route-map calculator permit 14641 match community 2_31_238 2_34_217 2_62_119 set community 0:7378 ip community-list standard 2_26_169 permit 65000:2 0:26 0:169 route-map calculator permit 14642 match community 2_26_169 set community 0:4394 ip community-list standard 2_199_226 permit 65000:2 0:199 0:226 route-map calculator permit 14643 match community 2_199_226 set community 0:44974 ip community-list standard 2_5_187 permit 65000:2 0:5 0:187 ip community-list standard 2_11_85 permit 65000:2 0:11 0:85 ip community-list standard 2_17_55 permit 65000:2 0:17 0:55 route-map calculator permit 14644 match community 2_5_187 2_11_85 2_17_55 set community 0:935 ip community-list standard 2_53_242 permit 65000:2 0:53 0:242 ip community-list standard 2_106_121 permit 65000:2 0:106 0:121 route-map calculator permit 14645 match community 2_53_242 2_106_121 set community 0:12826 ip community-list standard 2_246_249 permit 65000:2 0:246 0:249 route-map calculator permit 14646 match community 2_246_249 set community 0:61254 ip community-list standard 2_151_241 permit 65000:2 0:151 0:241 route-map calculator permit 14647 match community 2_151_241 set community 0:36391 ip community-list standard 2_28_181 permit 65000:2 0:28 0:181 route-map calculator permit 14648 match community 2_28_181 set community 0:5068 ip community-list standard 2_112_211 permit 65000:2 0:112 0:211 route-map calculator permit 14649 match community 2_112_211 set community 0:23632 ip community-list standard 2_73_127 permit 65000:2 0:73 0:127 route-map calculator permit 14650 match community 2_73_127 set community 0:9271 ip community-list standard 2_239_244 permit 65000:2 0:239 0:244 route-map calculator permit 14651 match community 2_239_244 set community 0:58316 ip community-list standard 2_152_238 permit 65000:2 0:152 0:238 route-map calculator permit 14652 match community 2_152_238 set community 0:36176 ip community-list standard 2_110_151 permit 65000:2 0:110 0:151 route-map calculator permit 14653 match community 2_110_151 set community 0:16610 ip community-list standard 2_57_230 permit 65000:2 0:57 0:230 ip community-list standard 2_69_190 permit 65000:2 0:69 0:190 ip community-list standard 2_95_138 permit 65000:2 0:95 0:138 ip community-list standard 2_114_115 permit 65000:2 0:114 0:115 route-map calculator permit 14654 match community 2_57_230 2_69_190 2_95_138 2_114_115 set community 0:13110 ip community-list standard 2_129_245 permit 65000:2 0:129 0:245 ip community-list standard 2_147_215 permit 65000:2 0:147 0:215 route-map calculator permit 14655 match community 2_129_245 2_147_215 set community 0:31605 ip community-list standard 2_59_187 permit 65000:2 0:59 0:187 route-map calculator permit 14656 match community 2_59_187 set community 0:11033 ip community-list standard 2_158_240 permit 65000:2 0:158 0:240 ip community-list standard 2_160_237 permit 65000:2 0:160 0:237 route-map calculator permit 14657 match community 2_158_240 2_160_237 set community 0:37920 ip community-list standard 2_4_243 permit 65000:2 0:4 0:243 ip community-list standard 2_6_162 permit 65000:2 0:6 0:162 ip community-list standard 2_9_108 permit 65000:2 0:9 0:108 ip community-list standard 2_12_81 permit 65000:2 0:12 0:81 ip community-list standard 2_18_54 permit 65000:2 0:18 0:54 ip community-list standard 2_27_36 permit 65000:2 0:27 0:36 route-map calculator permit 14658 match community 2_4_243 2_6_162 2_9_108 2_12_81 2_18_54 set community 0:972 route-map calculator permit 14659 match community 2_27_36 set community 0:972 ip community-list standard 2_43_119 permit 65000:2 0:43 0:119 route-map calculator permit 14660 match community 2_43_119 set community 0:5117 ip community-list standard 2_16_236 permit 65000:2 0:16 0:236 ip community-list standard 2_32_118 permit 65000:2 0:32 0:118 ip community-list standard 2_59_64 permit 65000:2 0:59 0:64 route-map calculator permit 14661 match community 2_16_236 2_32_118 2_59_64 set community 0:3776 ip community-list standard 2_192_233 permit 65000:2 0:192 0:233 route-map calculator permit 14662 match community 2_192_233 set community 0:44736 ip community-list standard 2_115_217 permit 65000:2 0:115 0:217 ip community-list standard 2_155_161 permit 65000:2 0:155 0:161 route-map calculator permit 14663 match community 2_115_217 2_155_161 set community 0:24955 ip community-list standard 2_156_239 permit 65000:2 0:156 0:239 route-map calculator permit 14664 match community 2_156_239 set community 0:37284 ip community-list standard 2_126_241 permit 65000:2 0:126 0:241 route-map calculator permit 14665 match community 2_126_241 set community 0:30366 ip community-list standard 2_43_59 permit 65000:2 0:43 0:59 route-map calculator permit 14666 match community 2_43_59 set community 0:2537 ip community-list standard 2_47_252 permit 65000:2 0:47 0:252 ip community-list standard 2_63_188 permit 65000:2 0:63 0:188 ip community-list standard 2_84_141 permit 65000:2 0:84 0:141 ip community-list standard 2_94_126 permit 65000:2 0:94 0:126 route-map calculator permit 14667 match community 2_47_252 2_63_188 2_84_141 2_94_126 set community 0:11844 ip community-list standard 2_45_223 permit 65000:2 0:45 0:223 route-map calculator permit 14668 match community 2_45_223 set community 0:10035 ip community-list standard 2_131_151 permit 65000:2 0:131 0:151 route-map calculator permit 14669 match community 2_131_151 set community 0:19781 ip community-list standard 2_29_141 permit 65000:2 0:29 0:141 ip community-list standard 2_47_87 permit 65000:2 0:47 0:87 route-map calculator permit 14670 match community 2_29_141 2_47_87 set community 0:4089 ip community-list standard 2_219_246 permit 65000:2 0:219 0:246 route-map calculator permit 14671 match community 2_219_246 set community 0:53874 ip community-list standard 2_185_193 permit 65000:2 0:185 0:193 route-map calculator permit 14672 match community 2_185_193 set community 0:35705 ip community-list standard 2_10_173 permit 65000:2 0:10 0:173 route-map calculator permit 14673 match community 2_10_173 set community 0:1730 ip community-list standard 2_29_191 permit 65000:2 0:29 0:191 route-map calculator permit 14674 match community 2_29_191 set community 0:5539 ip community-list standard 2_79_115 permit 65000:2 0:79 0:115 route-map calculator permit 14675 match community 2_79_115 set community 0:9085 ip community-list standard 2_130_235 permit 65000:2 0:130 0:235 route-map calculator permit 14676 match community 2_130_235 set community 0:30550 ip community-list standard 2_140_232 permit 65000:2 0:140 0:232 ip community-list standard 2_145_224 permit 65000:2 0:145 0:224 ip community-list standard 2_160_203 permit 65000:2 0:160 0:203 route-map calculator permit 14677 match community 2_140_232 2_145_224 2_160_203 set community 0:32480 ip community-list standard 2_41_193 permit 65000:2 0:41 0:193 route-map calculator permit 14678 match community 2_41_193 set community 0:7913 ip community-list standard 2_128_197 permit 65000:2 0:128 0:197 route-map calculator permit 14679 match community 2_128_197 set community 0:25216 ip community-list standard 2_62_252 permit 65000:2 0:62 0:252 ip community-list standard 2_63_248 permit 65000:2 0:63 0:248 ip community-list standard 2_72_217 permit 65000:2 0:72 0:217 ip community-list standard 2_84_186 permit 65000:2 0:84 0:186 ip community-list standard 2_93_168 permit 65000:2 0:93 0:168 ip community-list standard 2_124_126 permit 65000:2 0:124 0:126 route-map calculator permit 14680 match community 2_62_252 2_63_248 2_72_217 2_84_186 2_93_168 set community 0:15624 route-map calculator permit 14681 match community 2_124_126 set community 0:15624 ip community-list standard 2_165_225 permit 65000:2 0:165 0:225 route-map calculator permit 14682 match community 2_165_225 set community 0:37125 ip community-list standard 2_202_251 permit 65000:2 0:202 0:251 route-map calculator permit 14683 match community 2_202_251 set community 0:50702 ip community-list standard 2_176_249 permit 65000:2 0:176 0:249 route-map calculator permit 14684 match community 2_176_249 set community 0:43824 ip community-list standard 2_9_186 permit 65000:2 0:9 0:186 ip community-list standard 2_18_93 permit 65000:2 0:18 0:93 ip community-list standard 2_27_62 permit 65000:2 0:27 0:62 ip community-list standard 2_31_54 permit 65000:2 0:31 0:54 route-map calculator permit 14685 match community 2_9_186 2_18_93 2_27_62 2_31_54 set community 0:1674 ip community-list standard 2_72_193 permit 65000:2 0:72 0:193 route-map calculator permit 14686 match community 2_72_193 set community 0:13896 ip community-list standard 2_113_203 permit 65000:2 0:113 0:203 route-map calculator permit 14687 match community 2_113_203 set community 0:22939 ip community-list standard 1_163_256 permit 65000:1 0:163 0:256 ip community-list standard 1_164_255 permit 65000:1 0:164 0:255 ip community-list standard 1_165_254 permit 65000:1 0:165 0:254 ip community-list standard 1_166_253 permit 65000:1 0:166 0:253 ip community-list standard 1_167_252 permit 65000:1 0:167 0:252 ip community-list standard 1_168_251 permit 65000:1 0:168 0:251 ip community-list standard 1_169_250 permit 65000:1 0:169 0:250 ip community-list standard 1_170_249 permit 65000:1 0:170 0:249 ip community-list standard 1_171_248 permit 65000:1 0:171 0:248 ip community-list standard 1_172_247 permit 65000:1 0:172 0:247 ip community-list standard 1_173_246 permit 65000:1 0:173 0:246 ip community-list standard 1_174_245 permit 65000:1 0:174 0:245 ip community-list standard 1_175_244 permit 65000:1 0:175 0:244 ip community-list standard 1_176_243 permit 65000:1 0:176 0:243 ip community-list standard 1_177_242 permit 65000:1 0:177 0:242 ip community-list standard 1_178_241 permit 65000:1 0:178 0:241 ip community-list standard 1_179_240 permit 65000:1 0:179 0:240 ip community-list standard 1_180_239 permit 65000:1 0:180 0:239 ip community-list standard 1_181_238 permit 65000:1 0:181 0:238 ip community-list standard 1_182_237 permit 65000:1 0:182 0:237 ip community-list standard 1_183_236 permit 65000:1 0:183 0:236 ip community-list standard 1_184_235 permit 65000:1 0:184 0:235 ip community-list standard 1_185_234 permit 65000:1 0:185 0:234 ip community-list standard 1_186_233 permit 65000:1 0:186 0:233 ip community-list standard 1_187_232 permit 65000:1 0:187 0:232 ip community-list standard 1_188_231 permit 65000:1 0:188 0:231 ip community-list standard 1_189_230 permit 65000:1 0:189 0:230 ip community-list standard 1_190_229 permit 65000:1 0:190 0:229 ip community-list standard 1_191_228 permit 65000:1 0:191 0:228 ip community-list standard 1_192_227 permit 65000:1 0:192 0:227 ip community-list standard 1_193_226 permit 65000:1 0:193 0:226 ip community-list standard 1_194_225 permit 65000:1 0:194 0:225 ip community-list standard 1_195_224 permit 65000:1 0:195 0:224 ip community-list standard 1_196_223 permit 65000:1 0:196 0:223 ip community-list standard 1_197_222 permit 65000:1 0:197 0:222 ip community-list standard 1_198_221 permit 65000:1 0:198 0:221 ip community-list standard 1_199_220 permit 65000:1 0:199 0:220 ip community-list standard 1_200_219 permit 65000:1 0:200 0:219 ip community-list standard 1_201_218 permit 65000:1 0:201 0:218 ip community-list standard 1_202_217 permit 65000:1 0:202 0:217 ip community-list standard 1_203_216 permit 65000:1 0:203 0:216 ip community-list standard 1_204_215 permit 65000:1 0:204 0:215 ip community-list standard 1_205_214 permit 65000:1 0:205 0:214 ip community-list standard 1_206_213 permit 65000:1 0:206 0:213 ip community-list standard 1_207_212 permit 65000:1 0:207 0:212 ip community-list standard 1_208_211 permit 65000:1 0:208 0:211 ip community-list standard 1_209_210 permit 65000:1 0:209 0:210 route-map calculator permit 14688 match community 1_163_256 1_164_255 1_165_254 1_166_253 1_167_252 set community 0:419 route-map calculator permit 14689 match community 1_168_251 1_169_250 1_170_249 1_171_248 1_172_247 set community 0:419 route-map calculator permit 14690 match community 1_173_246 1_174_245 1_175_244 1_176_243 1_177_242 set community 0:419 route-map calculator permit 14691 match community 1_178_241 1_179_240 1_180_239 1_181_238 1_182_237 set community 0:419 route-map calculator permit 14692 match community 1_183_236 1_184_235 1_185_234 1_186_233 1_187_232 set community 0:419 route-map calculator permit 14693 match community 1_188_231 1_189_230 1_190_229 1_191_228 1_192_227 set community 0:419 route-map calculator permit 14694 match community 1_193_226 1_194_225 1_195_224 1_196_223 1_197_222 set community 0:419 route-map calculator permit 14695 match community 1_198_221 1_199_220 1_200_219 1_201_218 1_202_217 set community 0:419 route-map calculator permit 14696 match community 1_203_216 1_204_215 1_205_214 1_206_213 1_207_212 set community 0:419 route-map calculator permit 14697 match community 1_208_211 1_209_210 set community 0:419 ip community-list standard 2_99_101 permit 65000:2 0:99 0:101 route-map calculator permit 14698 match community 2_99_101 set community 0:9999 ip community-list standard 2_18_129 permit 65000:2 0:18 0:129 ip community-list standard 2_27_86 permit 65000:2 0:27 0:86 ip community-list standard 2_43_54 permit 65000:2 0:43 0:54 route-map calculator permit 14699 match community 2_18_129 2_27_86 2_43_54 set community 0:2322 ip community-list standard 1_1_48 permit 65000:1 0:1 0:48 ip community-list standard 2_1_49 permit 65000:2 0:1 0:49 ip community-list standard 1_2_47 permit 65000:1 0:2 0:47 ip community-list standard 1_3_46 permit 65000:1 0:3 0:46 ip community-list standard 1_4_45 permit 65000:1 0:4 0:45 ip community-list standard 1_5_44 permit 65000:1 0:5 0:44 ip community-list standard 1_6_43 permit 65000:1 0:6 0:43 ip community-list standard 2_7_7 permit 65000:2 0:7 0:7 ip community-list standard 1_7_42 permit 65000:1 0:7 0:42 ip community-list standard 1_8_41 permit 65000:1 0:8 0:41 ip community-list standard 1_9_40 permit 65000:1 0:9 0:40 ip community-list standard 1_10_39 permit 65000:1 0:10 0:39 ip community-list standard 1_11_38 permit 65000:1 0:11 0:38 ip community-list standard 1_12_37 permit 65000:1 0:12 0:37 ip community-list standard 1_13_36 permit 65000:1 0:13 0:36 ip community-list standard 1_14_35 permit 65000:1 0:14 0:35 ip community-list standard 1_15_34 permit 65000:1 0:15 0:34 ip community-list standard 1_16_33 permit 65000:1 0:16 0:33 ip community-list standard 1_17_32 permit 65000:1 0:17 0:32 ip community-list standard 1_18_31 permit 65000:1 0:18 0:31 ip community-list standard 1_19_30 permit 65000:1 0:19 0:30 ip community-list standard 1_20_29 permit 65000:1 0:20 0:29 ip community-list standard 1_21_28 permit 65000:1 0:21 0:28 ip community-list standard 1_22_27 permit 65000:1 0:22 0:27 ip community-list standard 1_23_26 permit 65000:1 0:23 0:26 ip community-list standard 1_24_25 permit 65000:1 0:24 0:25 ip community-list expanded c49 permit 1 ^65000:4_0:49_0:1$ ip community-list expanded c49 permit 2 ^65000:3_0:50_0:1$ ip community-list expanded c49 permit 3 ^65000:3_0:51_0:2$ ip community-list expanded c49 permit 4 ^65000:3_0:52_0:3$ ip community-list expanded c49 permit 5 ^65000:3_0:53_0:4$ ip community-list expanded c49 permit 6 ^65000:3_0:54_0:5$ ip community-list expanded c49 permit 7 ^65000:3_0:55_0:6$ ip community-list expanded c49 permit 8 ^65000:3_0:56_0:7$ ip community-list expanded c49 permit 9 ^65000:3_0:57_0:8$ ip community-list expanded c49 permit 10 ^65000:3_0:58_0:9$ ip community-list expanded c49 permit 11 ^65000:3_0:59_0:10$ ip community-list expanded c49 permit 12 ^65000:3_0:60_0:11$ ip community-list expanded c49 permit 13 ^65000:3_0:61_0:12$ ip community-list expanded c49 permit 14 ^65000:3_0:62_0:13$ ip community-list expanded c49 permit 15 ^65000:3_0:63_0:14$ ip community-list expanded c49 permit 16 ^65000:3_0:64_0:15$ ip community-list expanded c49 permit 17 ^65000:3_0:65_0:16$ ip community-list expanded c49 permit 18 ^65000:3_0:66_0:17$ ip community-list expanded c49 permit 19 ^65000:3_0:67_0:18$ ip community-list expanded c49 permit 20 ^65000:3_0:68_0:19$ ip community-list expanded c49 permit 21 ^65000:3_0:69_0:20$ ip community-list expanded c49 permit 22 ^65000:3_0:70_0:21$ ip community-list expanded c49 permit 23 ^65000:3_0:71_0:22$ ip community-list expanded c49 permit 24 ^65000:3_0:72_0:23$ ip community-list expanded c49 permit 25 ^65000:3_0:73_0:24$ ip community-list expanded c49 permit 26 ^65000:3_0:74_0:25$ ip community-list expanded c49 permit 27 ^65000:3_0:75_0:26$ ip community-list expanded c49 permit 28 ^65000:3_0:76_0:27$ ip community-list expanded c49 permit 29 ^65000:3_0:77_0:28$ ip community-list expanded c49 permit 30 ^65000:3_0:78_0:29$ ip community-list expanded c49 permit 31 ^65000:3_0:79_0:30$ ip community-list expanded c49 permit 32 ^65000:3_0:80_0:31$ ip community-list expanded c49 permit 33 ^65000:3_0:81_0:32$ ip community-list expanded c49 permit 34 ^65000:3_0:82_0:33$ ip community-list expanded c49 permit 35 ^65000:3_0:83_0:34$ ip community-list expanded c49 permit 36 ^65000:3_0:84_0:35$ ip community-list expanded c49 permit 37 ^65000:3_0:85_0:36$ ip community-list expanded c49 permit 38 ^65000:3_0:86_0:37$ ip community-list expanded c49 permit 39 ^65000:3_0:87_0:38$ ip community-list expanded c49 permit 40 ^65000:3_0:88_0:39$ ip community-list expanded c49 permit 41 ^65000:3_0:89_0:40$ ip community-list expanded c49 permit 42 ^65000:3_0:90_0:41$ ip community-list expanded c49 permit 43 ^65000:3_0:91_0:42$ ip community-list expanded c49 permit 44 ^65000:3_0:92_0:43$ ip community-list expanded c49 permit 45 ^65000:3_0:93_0:44$ ip community-list expanded c49 permit 46 ^65000:3_0:94_0:45$ ip community-list expanded c49 permit 47 ^65000:3_0:95_0:46$ ip community-list expanded c49 permit 48 ^65000:3_0:96_0:47$ ip community-list expanded c49 permit 49 ^65000:3_0:97_0:48$ ip community-list expanded c49 permit 50 ^65000:4_0:98_0:2$ ip community-list expanded c49 permit 51 ^65000:3_0:98_0:49$ ip community-list expanded c49 permit 52 ^65000:4_0:99_0:2$ ip community-list expanded c49 permit 53 ^65000:3_0:99_0:50$ ip community-list expanded c49 permit 54 ^65000:3_0:100_0:51$ ip community-list expanded c49 permit 55 ^65000:3_0:101_0:52$ ip community-list expanded c49 permit 56 ^65000:3_0:102_0:53$ ip community-list expanded c49 permit 57 ^65000:3_0:103_0:54$ ip community-list expanded c49 permit 58 ^65000:3_0:104_0:55$ ip community-list expanded c49 permit 59 ^65000:3_0:105_0:56$ ip community-list expanded c49 permit 60 ^65000:3_0:106_0:57$ ip community-list expanded c49 permit 61 ^65000:3_0:107_0:58$ ip community-list expanded c49 permit 62 ^65000:3_0:108_0:59$ ip community-list expanded c49 permit 63 ^65000:3_0:109_0:60$ ip community-list expanded c49 permit 64 ^65000:3_0:110_0:61$ ip community-list expanded c49 permit 65 ^65000:3_0:111_0:62$ ip community-list expanded c49 permit 66 ^65000:3_0:112_0:63$ ip community-list expanded c49 permit 67 ^65000:3_0:113_0:64$ ip community-list expanded c49 permit 68 ^65000:3_0:114_0:65$ ip community-list expanded c49 permit 69 ^65000:3_0:115_0:66$ ip community-list expanded c49 permit 70 ^65000:3_0:116_0:67$ ip community-list expanded c49 permit 71 ^65000:3_0:117_0:68$ ip community-list expanded c49 permit 72 ^65000:3_0:118_0:69$ ip community-list expanded c49 permit 73 ^65000:3_0:119_0:70$ ip community-list expanded c49 permit 74 ^65000:3_0:120_0:71$ ip community-list expanded c49 permit 75 ^65000:3_0:121_0:72$ ip community-list expanded c49 permit 76 ^65000:3_0:122_0:73$ ip community-list expanded c49 permit 77 ^65000:3_0:123_0:74$ ip community-list expanded c49 permit 78 ^65000:3_0:124_0:75$ ip community-list expanded c49 permit 79 ^65000:3_0:125_0:76$ ip community-list expanded c49 permit 80 ^65000:3_0:126_0:77$ ip community-list expanded c49 permit 81 ^65000:3_0:127_0:78$ ip community-list expanded c49 permit 82 ^65000:3_0:128_0:79$ ip community-list expanded c49 permit 83 ^65000:3_0:129_0:80$ ip community-list expanded c49 permit 84 ^65000:3_0:130_0:81$ ip community-list expanded c49 permit 85 ^65000:3_0:131_0:82$ ip community-list expanded c49 permit 86 ^65000:3_0:132_0:83$ ip community-list expanded c49 permit 87 ^65000:3_0:133_0:84$ ip community-list expanded c49 permit 88 ^65000:3_0:134_0:85$ ip community-list expanded c49 permit 89 ^65000:3_0:135_0:86$ ip community-list expanded c49 permit 90 ^65000:3_0:136_0:87$ ip community-list expanded c49 permit 91 ^65000:3_0:137_0:88$ ip community-list expanded c49 permit 92 ^65000:3_0:138_0:89$ ip community-list expanded c49 permit 93 ^65000:3_0:139_0:90$ ip community-list expanded c49 permit 94 ^65000:3_0:140_0:91$ ip community-list expanded c49 permit 95 ^65000:3_0:141_0:92$ ip community-list expanded c49 permit 96 ^65000:3_0:142_0:93$ ip community-list expanded c49 permit 97 ^65000:3_0:143_0:94$ ip community-list expanded c49 permit 98 ^65000:3_0:144_0:95$ ip community-list expanded c49 permit 99 ^65000:3_0:145_0:96$ ip community-list expanded c49 permit 100 ^65000:3_0:146_0:97$ ip community-list expanded c49 permit 101 ^65000:4_0:147_0:3$ ip community-list expanded c49 permit 102 ^65000:3_0:147_0:98$ ip community-list expanded c49 permit 103 ^65000:4_0:148_0:3$ ip community-list expanded c49 permit 104 ^65000:3_0:148_0:99$ ip community-list expanded c49 permit 105 ^65000:4_0:149_0:3$ ip community-list expanded c49 permit 106 ^65000:3_0:149_0:100$ ip community-list expanded c49 permit 107 ^65000:3_0:150_0:101$ ip community-list expanded c49 permit 108 ^65000:3_0:151_0:102$ ip community-list expanded c49 permit 109 ^65000:3_0:152_0:103$ ip community-list expanded c49 permit 110 ^65000:3_0:153_0:104$ ip community-list expanded c49 permit 111 ^65000:3_0:154_0:105$ ip community-list expanded c49 permit 112 ^65000:3_0:155_0:106$ ip community-list expanded c49 permit 113 ^65000:3_0:156_0:107$ ip community-list expanded c49 permit 114 ^65000:3_0:157_0:108$ ip community-list expanded c49 permit 115 ^65000:3_0:158_0:109$ ip community-list expanded c49 permit 116 ^65000:3_0:159_0:110$ ip community-list expanded c49 permit 117 ^65000:3_0:160_0:111$ ip community-list expanded c49 permit 118 ^65000:3_0:161_0:112$ ip community-list expanded c49 permit 119 ^65000:3_0:162_0:113$ ip community-list expanded c49 permit 120 ^65000:3_0:163_0:114$ ip community-list expanded c49 permit 121 ^65000:3_0:164_0:115$ ip community-list expanded c49 permit 122 ^65000:3_0:165_0:116$ ip community-list expanded c49 permit 123 ^65000:3_0:166_0:117$ ip community-list expanded c49 permit 124 ^65000:3_0:167_0:118$ ip community-list expanded c49 permit 125 ^65000:3_0:168_0:119$ ip community-list expanded c49 permit 126 ^65000:3_0:169_0:120$ ip community-list expanded c49 permit 127 ^65000:3_0:170_0:121$ ip community-list expanded c49 permit 128 ^65000:3_0:171_0:122$ ip community-list expanded c49 permit 129 ^65000:3_0:172_0:123$ ip community-list expanded c49 permit 130 ^65000:3_0:173_0:124$ ip community-list expanded c49 permit 131 ^65000:3_0:174_0:125$ ip community-list expanded c49 permit 132 ^65000:3_0:175_0:126$ ip community-list expanded c49 permit 133 ^65000:3_0:176_0:127$ ip community-list expanded c49 permit 134 ^65000:3_0:177_0:128$ ip community-list expanded c49 permit 135 ^65000:3_0:178_0:129$ ip community-list expanded c49 permit 136 ^65000:3_0:179_0:130$ ip community-list expanded c49 permit 137 ^65000:3_0:180_0:131$ ip community-list expanded c49 permit 138 ^65000:3_0:181_0:132$ ip community-list expanded c49 permit 139 ^65000:3_0:182_0:133$ ip community-list expanded c49 permit 140 ^65000:3_0:183_0:134$ ip community-list expanded c49 permit 141 ^65000:3_0:184_0:135$ ip community-list expanded c49 permit 142 ^65000:3_0:185_0:136$ ip community-list expanded c49 permit 143 ^65000:3_0:186_0:137$ ip community-list expanded c49 permit 144 ^65000:3_0:187_0:138$ ip community-list expanded c49 permit 145 ^65000:3_0:188_0:139$ ip community-list expanded c49 permit 146 ^65000:3_0:189_0:140$ ip community-list expanded c49 permit 147 ^65000:3_0:190_0:141$ ip community-list expanded c49 permit 148 ^65000:3_0:191_0:142$ ip community-list expanded c49 permit 149 ^65000:3_0:192_0:143$ ip community-list expanded c49 permit 150 ^65000:3_0:193_0:144$ ip community-list expanded c49 permit 151 ^65000:3_0:194_0:145$ ip community-list expanded c49 permit 152 ^65000:3_0:195_0:146$ ip community-list expanded c49 permit 153 ^65000:4_0:196_0:4$ ip community-list expanded c49 permit 154 ^65000:3_0:196_0:147$ ip community-list expanded c49 permit 155 ^65000:4_0:197_0:4$ ip community-list expanded c49 permit 156 ^65000:3_0:197_0:148$ ip community-list expanded c49 permit 157 ^65000:4_0:198_0:4$ ip community-list expanded c49 permit 158 ^65000:3_0:198_0:149$ ip community-list expanded c49 permit 159 ^65000:4_0:199_0:4$ ip community-list expanded c49 permit 160 ^65000:3_0:199_0:150$ ip community-list expanded c49 permit 161 ^65000:3_0:200_0:151$ ip community-list expanded c49 permit 162 ^65000:3_0:201_0:152$ ip community-list expanded c49 permit 163 ^65000:3_0:202_0:153$ ip community-list expanded c49 permit 164 ^65000:3_0:203_0:154$ ip community-list expanded c49 permit 165 ^65000:3_0:204_0:155$ ip community-list expanded c49 permit 166 ^65000:3_0:205_0:156$ ip community-list expanded c49 permit 167 ^65000:3_0:206_0:157$ ip community-list expanded c49 permit 168 ^65000:3_0:207_0:158$ ip community-list expanded c49 permit 169 ^65000:3_0:208_0:159$ ip community-list expanded c49 permit 170 ^65000:3_0:209_0:160$ ip community-list expanded c49 permit 171 ^65000:3_0:210_0:161$ ip community-list expanded c49 permit 172 ^65000:3_0:211_0:162$ ip community-list expanded c49 permit 173 ^65000:3_0:212_0:163$ ip community-list expanded c49 permit 174 ^65000:3_0:213_0:164$ ip community-list expanded c49 permit 175 ^65000:3_0:214_0:165$ ip community-list expanded c49 permit 176 ^65000:3_0:215_0:166$ ip community-list expanded c49 permit 177 ^65000:3_0:216_0:167$ ip community-list expanded c49 permit 178 ^65000:3_0:217_0:168$ ip community-list expanded c49 permit 179 ^65000:3_0:218_0:169$ ip community-list expanded c49 permit 180 ^65000:3_0:219_0:170$ ip community-list expanded c49 permit 181 ^65000:3_0:220_0:171$ ip community-list expanded c49 permit 182 ^65000:3_0:221_0:172$ ip community-list expanded c49 permit 183 ^65000:3_0:222_0:173$ ip community-list expanded c49 permit 184 ^65000:3_0:223_0:174$ ip community-list expanded c49 permit 185 ^65000:3_0:224_0:175$ ip community-list expanded c49 permit 186 ^65000:3_0:225_0:176$ ip community-list expanded c49 permit 187 ^65000:3_0:226_0:177$ ip community-list expanded c49 permit 188 ^65000:3_0:227_0:178$ ip community-list expanded c49 permit 189 ^65000:3_0:228_0:179$ ip community-list expanded c49 permit 190 ^65000:3_0:229_0:180$ ip community-list expanded c49 permit 191 ^65000:3_0:230_0:181$ ip community-list expanded c49 permit 192 ^65000:3_0:231_0:182$ ip community-list expanded c49 permit 193 ^65000:3_0:232_0:183$ ip community-list expanded c49 permit 194 ^65000:3_0:233_0:184$ ip community-list expanded c49 permit 195 ^65000:3_0:234_0:185$ ip community-list expanded c49 permit 196 ^65000:3_0:235_0:186$ ip community-list expanded c49 permit 197 ^65000:3_0:236_0:187$ ip community-list expanded c49 permit 198 ^65000:3_0:237_0:188$ ip community-list expanded c49 permit 199 ^65000:3_0:238_0:189$ ip community-list expanded c49 permit 200 ^65000:3_0:239_0:190$ ip community-list expanded c49 permit 201 ^65000:3_0:240_0:191$ ip community-list expanded c49 permit 202 ^65000:3_0:241_0:192$ ip community-list expanded c49 permit 203 ^65000:3_0:242_0:193$ ip community-list expanded c49 permit 204 ^65000:3_0:243_0:194$ ip community-list expanded c49 permit 205 ^65000:3_0:244_0:195$ ip community-list expanded c49 permit 206 ^65000:4_0:245_0:5$ ip community-list expanded c49 permit 207 ^65000:3_0:245_0:196$ ip community-list expanded c49 permit 208 ^65000:4_0:246_0:5$ ip community-list expanded c49 permit 209 ^65000:3_0:246_0:197$ ip community-list expanded c49 permit 210 ^65000:4_0:247_0:5$ ip community-list expanded c49 permit 211 ^65000:3_0:247_0:198$ ip community-list expanded c49 permit 212 ^65000:4_0:248_0:5$ ip community-list expanded c49 permit 213 ^65000:3_0:248_0:199$ ip community-list expanded c49 permit 214 ^65000:4_0:249_0:5$ ip community-list expanded c49 permit 215 ^65000:3_0:249_0:200$ ip community-list expanded c49 permit 216 ^65000:3_0:250_0:201$ ip community-list expanded c49 permit 217 ^65000:3_0:251_0:202$ ip community-list expanded c49 permit 218 ^65000:3_0:252_0:203$ ip community-list expanded c49 permit 219 ^65000:3_0:253_0:204$ ip community-list expanded c49 permit 220 ^65000:3_0:254_0:205$ ip community-list expanded c49 permit 221 ^65000:3_0:255_0:206$ ip community-list expanded c49 permit 222 ^65000:3_0:256_0:207$ route-map calculator permit 14700 match community 1_1_48 2_1_49 1_2_47 1_3_46 1_4_45 set community 0:49 route-map calculator permit 14701 match community 1_5_44 1_6_43 2_7_7 1_7_42 1_8_41 set community 0:49 route-map calculator permit 14702 match community 1_9_40 1_10_39 1_11_38 1_12_37 1_13_36 set community 0:49 route-map calculator permit 14703 match community 1_14_35 1_15_34 1_16_33 1_17_32 1_18_31 set community 0:49 route-map calculator permit 14704 match community 1_19_30 1_20_29 1_21_28 1_22_27 1_23_26 set community 0:49 route-map calculator permit 14705 match community 1_24_25 c4_49_1 c3_50_1 c3_51_2 c3_52_3 set community 0:49 route-map calculator permit 14706 match community c3_53_4 c3_54_5 c3_55_6 c3_56_7 c3_57_8 set community 0:49 route-map calculator permit 14707 match community c3_58_9 c3_59_10 c3_60_11 c3_61_12 c3_62_13 set community 0:49 route-map calculator permit 14708 match community c3_63_14 c3_64_15 c3_65_16 c3_66_17 c3_67_18 set community 0:49 route-map calculator permit 14709 match community c3_68_19 c3_69_20 c3_70_21 c3_71_22 c3_72_23 set community 0:49 route-map calculator permit 14710 match community c3_73_24 c3_74_25 c3_75_26 c3_76_27 c3_77_28 set community 0:49 route-map calculator permit 14711 match community c3_78_29 c3_79_30 c3_80_31 c3_81_32 c3_82_33 set community 0:49 route-map calculator permit 14712 match community c3_83_34 c3_84_35 c3_85_36 c3_86_37 c3_87_38 set community 0:49 route-map calculator permit 14713 match community c3_88_39 c3_89_40 c3_90_41 c3_91_42 c3_92_43 set community 0:49 route-map calculator permit 14714 match community c3_93_44 c3_94_45 c3_95_46 c3_96_47 c3_97_48 set community 0:49 route-map calculator permit 14715 match community c4_98_2 c3_98_49 c4_99_2 c3_99_50 c3_100_51 set community 0:49 route-map calculator permit 14716 match community c3_101_52 c3_102_53 c3_103_54 c3_104_55 c3_105_56 set community 0:49 route-map calculator permit 14717 match community c3_106_57 c3_107_58 c3_108_59 c3_109_60 c3_110_61 set community 0:49 route-map calculator permit 14718 match community c3_111_62 c3_112_63 c3_113_64 c3_114_65 c3_115_66 set community 0:49 route-map calculator permit 14719 match community c3_116_67 c3_117_68 c3_118_69 c3_119_70 c3_120_71 set community 0:49 route-map calculator permit 14720 match community c3_121_72 c3_122_73 c3_123_74 c3_124_75 c3_125_76 set community 0:49 route-map calculator permit 14721 match community c3_126_77 c3_127_78 c3_128_79 c3_129_80 c3_130_81 set community 0:49 route-map calculator permit 14722 match community c3_131_82 c3_132_83 c3_133_84 c3_134_85 c3_135_86 set community 0:49 route-map calculator permit 14723 match community c3_136_87 c3_137_88 c3_138_89 c3_139_90 c3_140_91 set community 0:49 route-map calculator permit 14724 match community c3_141_92 c3_142_93 c3_143_94 c3_144_95 c3_145_96 set community 0:49 route-map calculator permit 14725 match community c3_146_97 c4_147_3 c3_147_98 c4_148_3 c3_148_99 set community 0:49 route-map calculator permit 14726 match community c4_149_3 c3_149_100 c3_150_101 c3_151_102 c3_152_103 set community 0:49 route-map calculator permit 14727 match community c3_153_104 c3_154_105 c3_155_106 c3_156_107 c3_157_108 set community 0:49 route-map calculator permit 14728 match community c3_158_109 c3_159_110 c3_160_111 c3_161_112 c3_162_113 set community 0:49 route-map calculator permit 14729 match community c3_163_114 c3_164_115 c3_165_116 c3_166_117 c3_167_118 set community 0:49 route-map calculator permit 14730 match community c3_168_119 c3_169_120 c3_170_121 c3_171_122 c3_172_123 set community 0:49 route-map calculator permit 14731 match community c3_173_124 c3_174_125 c3_175_126 c3_176_127 c3_177_128 set community 0:49 route-map calculator permit 14732 match community c3_178_129 c3_179_130 c3_180_131 c3_181_132 c3_182_133 set community 0:49 route-map calculator permit 14733 match community c3_183_134 c3_184_135 c3_185_136 c3_186_137 c3_187_138 set community 0:49 route-map calculator permit 14734 match community c3_188_139 c3_189_140 c3_190_141 c3_191_142 c3_192_143 set community 0:49 route-map calculator permit 14735 match community c3_193_144 c3_194_145 c3_195_146 c4_196_4 c3_196_147 set community 0:49 route-map calculator permit 14736 match community c4_197_4 c3_197_148 c4_198_4 c3_198_149 c4_199_4 set community 0:49 route-map calculator permit 14737 match community c3_199_150 c3_200_151 c3_201_152 c3_202_153 c3_203_154 set community 0:49 route-map calculator permit 14738 match community c3_204_155 c3_205_156 c3_206_157 c3_207_158 c3_208_159 set community 0:49 route-map calculator permit 14739 match community c3_209_160 c3_210_161 c3_211_162 c3_212_163 c3_213_164 set community 0:49 route-map calculator permit 14740 match community c3_214_165 c3_215_166 c3_216_167 c3_217_168 c3_218_169 set community 0:49 route-map calculator permit 14741 match community c3_219_170 c3_220_171 c3_221_172 c3_222_173 c3_223_174 set community 0:49 route-map calculator permit 14742 match community c3_224_175 c3_225_176 c3_226_177 c3_227_178 c3_228_179 set community 0:49 route-map calculator permit 14743 match community c3_229_180 c3_230_181 c3_231_182 c3_232_183 c3_233_184 set community 0:49 route-map calculator permit 14744 match community c3_234_185 c3_235_186 c3_236_187 c3_237_188 c3_238_189 set community 0:49 route-map calculator permit 14745 match community c3_239_190 c3_240_191 c3_241_192 c3_242_193 c3_243_194 set community 0:49 route-map calculator permit 14746 match community c3_244_195 c4_245_5 c3_245_196 c4_246_5 c3_246_197 set community 0:49 route-map calculator permit 14747 match community c4_247_5 c3_247_198 c4_248_5 c3_248_199 c4_249_5 set community 0:49 route-map calculator permit 14748 match community c3_249_200 c3_250_201 c3_251_202 c3_252_203 c3_253_204 set community 0:49 route-map calculator permit 14749 match community c3_254_205 c3_255_206 c3_256_207 set community 0:49 ip community-list standard 2_95_229 permit 65000:2 0:95 0:229 route-map calculator permit 14750 match community 2_95_229 set community 0:21755 ip community-list standard 2_118_169 permit 65000:2 0:118 0:169 route-map calculator permit 14751 match community 2_118_169 set community 0:19942 ip community-list standard 2_150_157 permit 65000:2 0:150 0:157 route-map calculator permit 14752 match community 2_150_157 set community 0:23550 ip community-list standard 2_13_167 permit 65000:2 0:13 0:167 route-map calculator permit 14753 match community 2_13_167 set community 0:2171 ip community-list standard 2_202_202 permit 65000:2 0:202 0:202 route-map calculator permit 14754 match community 2_202_202 set community 0:40804 ip community-list standard 2_53_251 permit 65000:2 0:53 0:251 route-map calculator permit 14755 match community 2_53_251 set community 0:13303 ip community-list standard 2_133_215 permit 65000:2 0:133 0:215 route-map calculator permit 14756 match community 2_133_215 set community 0:28595 ip community-list standard 2_71_127 permit 65000:2 0:71 0:127 route-map calculator permit 14757 match community 2_71_127 set community 0:9017 ip community-list standard 2_69_115 permit 65000:2 0:69 0:115 route-map calculator permit 14758 match community 2_69_115 set community 0:7935 ip community-list standard 2_53_73 permit 65000:2 0:53 0:73 route-map calculator permit 14759 match community 2_53_73 set community 0:3869 ip community-list standard 2_221_230 permit 65000:2 0:221 0:230 route-map calculator permit 14760 match community 2_221_230 set community 0:50830 ip community-list standard 2_104_139 permit 65000:2 0:104 0:139 route-map calculator permit 14761 match community 2_104_139 set community 0:14456 ip community-list standard 2_213_214 permit 65000:2 0:213 0:214 route-map calculator permit 14762 match community 2_213_214 set community 0:45582 ip community-list standard 2_95_211 permit 65000:2 0:95 0:211 route-map calculator permit 14763 match community 2_95_211 set community 0:20045 ip community-list standard 2_130_236 permit 65000:2 0:130 0:236 route-map calculator permit 14764 match community 2_130_236 set community 0:30680 ip community-list standard 2_112_247 permit 65000:2 0:112 0:247 ip community-list standard 2_133_208 permit 65000:2 0:133 0:208 ip community-list standard 2_152_182 permit 65000:2 0:152 0:182 route-map calculator permit 14765 match community 2_112_247 2_133_208 2_152_182 set community 0:27664 ip community-list standard 2_13_79 permit 65000:2 0:13 0:79 route-map calculator permit 14766 match community 2_13_79 set community 0:1027 ip community-list standard 2_46_239 permit 65000:2 0:46 0:239 route-map calculator permit 14767 match community 2_46_239 set community 0:10994 ip community-list standard 2_29_93 permit 65000:2 0:29 0:93 ip community-list standard 2_31_87 permit 65000:2 0:31 0:87 route-map calculator permit 14768 match community 2_29_93 2_31_87 set community 0:2697 ip community-list standard 2_63_217 permit 65000:2 0:63 0:217 ip community-list standard 2_93_147 permit 65000:2 0:93 0:147 route-map calculator permit 14769 match community 2_63_217 2_93_147 set community 0:13671 ip community-list standard 2_22_167 permit 65000:2 0:22 0:167 route-map calculator permit 14770 match community 2_22_167 set community 0:3674 ip community-list standard 2_48_204 permit 65000:2 0:48 0:204 ip community-list standard 2_51_192 permit 65000:2 0:51 0:192 ip community-list standard 2_64_153 permit 65000:2 0:64 0:153 ip community-list standard 2_68_144 permit 65000:2 0:68 0:144 ip community-list standard 2_72_136 permit 65000:2 0:72 0:136 ip community-list standard 2_96_102 permit 65000:2 0:96 0:102 route-map calculator permit 14771 match community 2_48_204 2_51_192 2_64_153 2_68_144 2_72_136 set community 0:9792 route-map calculator permit 14772 match community 2_96_102 set community 0:9792 ip community-list standard 2_65_146 permit 65000:2 0:65 0:146 ip community-list standard 2_73_130 permit 65000:2 0:73 0:130 route-map calculator permit 14773 match community 2_65_146 2_73_130 set community 0:9490 ip community-list standard 2_254_255 permit 65000:2 0:254 0:255 route-map calculator permit 14774 match community 2_254_255 set community 0:64770 ip community-list standard 2_116_145 permit 65000:2 0:116 0:145 route-map calculator permit 14775 match community 2_116_145 set community 0:16820 ip community-list standard 2_56_253 permit 65000:2 0:56 0:253 ip community-list standard 2_77_184 permit 65000:2 0:77 0:184 ip community-list standard 2_88_161 permit 65000:2 0:88 0:161 ip community-list standard 2_92_154 permit 65000:2 0:92 0:154 route-map calculator permit 14776 match community 2_56_253 2_77_184 2_88_161 2_92_154 set community 0:14168 ip community-list standard 2_87_159 permit 65000:2 0:87 0:159 route-map calculator permit 14777 match community 2_87_159 set community 0:13833 ip community-list standard 2_23_62 permit 65000:2 0:23 0:62 ip community-list standard 2_31_46 permit 65000:2 0:31 0:46 route-map calculator permit 14778 match community 2_23_62 2_31_46 set community 0:1426 ip community-list standard 2_173_183 permit 65000:2 0:173 0:183 route-map calculator permit 14779 match community 2_173_183 set community 0:31659 ip community-list standard 2_21_225 permit 65000:2 0:21 0:225 ip community-list standard 2_25_189 permit 65000:2 0:25 0:189 ip community-list standard 2_27_175 permit 65000:2 0:27 0:175 ip community-list standard 2_35_135 permit 65000:2 0:35 0:135 ip community-list standard 2_45_105 permit 65000:2 0:45 0:105 ip community-list standard 2_63_75 permit 65000:2 0:63 0:75 route-map calculator permit 14780 match community 2_21_225 2_25_189 2_27_175 2_35_135 2_45_105 set community 0:4725 route-map calculator permit 14781 match community 2_63_75 set community 0:4725 ip community-list standard 2_23_134 permit 65000:2 0:23 0:134 ip community-list standard 2_46_67 permit 65000:2 0:46 0:67 route-map calculator permit 14782 match community 2_23_134 2_46_67 set community 0:3082 ip community-list standard 2_208_229 permit 65000:2 0:208 0:229 route-map calculator permit 14783 match community 2_208_229 set community 0:47632 ip community-list standard 2_128_235 permit 65000:2 0:128 0:235 ip community-list standard 2_160_188 permit 65000:2 0:160 0:188 route-map calculator permit 14784 match community 2_128_235 2_160_188 set community 0:30080 ip community-list standard 2_31_226 permit 65000:2 0:31 0:226 ip community-list standard 2_62_113 permit 65000:2 0:62 0:113 route-map calculator permit 14785 match community 2_31_226 2_62_113 set community 0:7006 ip community-list standard 2_101_137 permit 65000:2 0:101 0:137 route-map calculator permit 14786 match community 2_101_137 set community 0:13837 ip community-list standard 2_55_235 permit 65000:2 0:55 0:235 route-map calculator permit 14787 match community 2_55_235 set community 0:12925 ip community-list standard 2_186_231 permit 65000:2 0:186 0:231 ip community-list standard 2_198_217 permit 65000:2 0:198 0:217 route-map calculator permit 14788 match community 2_186_231 2_198_217 set community 0:42966 ip community-list standard 2_197_240 permit 65000:2 0:197 0:240 route-map calculator permit 14789 match community 2_197_240 set community 0:47280 ip community-list standard 2_78_247 permit 65000:2 0:78 0:247 ip community-list standard 2_114_169 permit 65000:2 0:114 0:169 route-map calculator permit 14790 match community 2_78_247 2_114_169 set community 0:19266 ip community-list standard 2_162_215 permit 65000:2 0:162 0:215 route-map calculator permit 14791 match community 2_162_215 set community 0:34830 ip community-list standard 2_124_256 permit 65000:2 0:124 0:256 ip community-list standard 2_128_248 permit 65000:2 0:128 0:248 route-map calculator permit 14792 match community 2_124_256 2_128_248 set community 0:31744 ip community-list standard 2_161_244 permit 65000:2 0:161 0:244 route-map calculator permit 14793 match community 2_161_244 set community 0:39284 ip community-list standard 2_161_254 permit 65000:2 0:161 0:254 route-map calculator permit 14794 match community 2_161_254 set community 0:40894 ip community-list standard 2_67_164 permit 65000:2 0:67 0:164 ip community-list standard 2_82_134 permit 65000:2 0:82 0:134 route-map calculator permit 14795 match community 2_67_164 2_82_134 set community 0:10988 ip community-list standard 2_181_254 permit 65000:2 0:181 0:254 route-map calculator permit 14796 match community 2_181_254 set community 0:45974 ip community-list standard 2_133_200 permit 65000:2 0:133 0:200 ip community-list standard 2_140_190 permit 65000:2 0:140 0:190 ip community-list standard 2_152_175 permit 65000:2 0:152 0:175 route-map calculator permit 14797 match community 2_133_200 2_140_190 2_152_175 set community 0:26600 ip community-list standard 2_26_215 permit 65000:2 0:26 0:215 ip community-list standard 2_43_130 permit 65000:2 0:43 0:130 ip community-list standard 2_65_86 permit 65000:2 0:65 0:86 route-map calculator permit 14798 match community 2_26_215 2_43_130 2_65_86 set community 0:5590 ip community-list standard 2_19_212 permit 65000:2 0:19 0:212 ip community-list standard 2_38_106 permit 65000:2 0:38 0:106 ip community-list standard 2_53_76 permit 65000:2 0:53 0:76 route-map calculator permit 14799 match community 2_19_212 2_38_106 2_53_76 set community 0:4028 ip community-list standard 2_151_152 permit 65000:2 0:151 0:152 route-map calculator permit 14800 match community 2_151_152 set community 0:22952 ip community-list standard 2_127_179 permit 65000:2 0:127 0:179 route-map calculator permit 14801 match community 2_127_179 set community 0:22733 ip community-list standard 2_153_206 permit 65000:2 0:153 0:206 route-map calculator permit 14802 match community 2_153_206 set community 0:31518 ip community-list standard 2_134_154 permit 65000:2 0:134 0:154 route-map calculator permit 14803 match community 2_134_154 set community 0:20636 ip community-list standard 2_208_244 permit 65000:2 0:208 0:244 route-map calculator permit 14804 match community 2_208_244 set community 0:50752 ip community-list standard 2_33_231 permit 65000:2 0:33 0:231 ip community-list standard 2_63_121 permit 65000:2 0:63 0:121 ip community-list standard 2_77_99 permit 65000:2 0:77 0:99 route-map calculator permit 14805 match community 2_33_231 2_63_121 2_77_99 set community 0:7623 ip community-list standard 2_178_249 permit 65000:2 0:178 0:249 route-map calculator permit 14806 match community 2_178_249 set community 0:44322 ip community-list standard 2_130_210 permit 65000:2 0:130 0:210 ip community-list standard 2_140_195 permit 65000:2 0:140 0:195 ip community-list standard 2_150_182 permit 65000:2 0:150 0:182 ip community-list standard 2_156_175 permit 65000:2 0:156 0:175 route-map calculator permit 14807 match community 2_130_210 2_140_195 2_150_182 2_156_175 set community 0:27300 ip community-list standard 2_141_254 permit 65000:2 0:141 0:254 route-map calculator permit 14808 match community 2_141_254 set community 0:35814 ip community-list standard 2_28_211 permit 65000:2 0:28 0:211 route-map calculator permit 14809 match community 2_28_211 set community 0:5908 ip community-list standard 2_61_89 permit 65000:2 0:61 0:89 route-map calculator permit 14810 match community 2_61_89 set community 0:5429 ip community-list standard 2_147_221 permit 65000:2 0:147 0:221 route-map calculator permit 14811 match community 2_147_221 set community 0:32487 ip community-list standard 2_143_243 permit 65000:2 0:143 0:243 route-map calculator permit 14812 match community 2_143_243 set community 0:34749 ip community-list standard 2_41_244 permit 65000:2 0:41 0:244 ip community-list standard 2_61_164 permit 65000:2 0:61 0:164 ip community-list standard 2_82_122 permit 65000:2 0:82 0:122 route-map calculator permit 14813 match community 2_41_244 2_61_164 2_82_122 set community 0:10004 ip community-list standard 2_86_211 permit 65000:2 0:86 0:211 route-map calculator permit 14814 match community 2_86_211 set community 0:18146 ip community-list standard 2_167_169 permit 65000:2 0:167 0:169 route-map calculator permit 14815 match community 2_167_169 set community 0:28223 ip community-list standard 2_127_195 permit 65000:2 0:127 0:195 route-map calculator permit 14816 match community 2_127_195 set community 0:24765 ip community-list standard 2_115_237 permit 65000:2 0:115 0:237 route-map calculator permit 14817 match community 2_115_237 set community 0:27255 ip community-list standard 2_24_241 permit 65000:2 0:24 0:241 route-map calculator permit 14818 match community 2_24_241 set community 0:5784 ip community-list standard 2_146_148 permit 65000:2 0:146 0:148 route-map calculator permit 14819 match community 2_146_148 set community 0:21608 ip community-list standard 2_136_173 permit 65000:2 0:136 0:173 route-map calculator permit 14820 match community 2_136_173 set community 0:23528 ip community-list standard 2_134_137 permit 65000:2 0:134 0:137 route-map calculator permit 14821 match community 2_134_137 set community 0:18358 ip community-list standard 2_96_252 permit 65000:2 0:96 0:252 ip community-list standard 2_108_224 permit 65000:2 0:108 0:224 ip community-list standard 2_112_216 permit 65000:2 0:112 0:216 ip community-list standard 2_126_192 permit 65000:2 0:126 0:192 ip community-list standard 2_128_189 permit 65000:2 0:128 0:189 ip community-list standard 2_144_168 permit 65000:2 0:144 0:168 route-map calculator permit 14822 match community 2_96_252 2_108_224 2_112_216 2_126_192 2_128_189 set community 0:24192 route-map calculator permit 14823 match community 2_144_168 set community 0:24192 ip community-list standard 2_79_206 permit 65000:2 0:79 0:206 ip community-list standard 2_103_158 permit 65000:2 0:103 0:158 route-map calculator permit 14824 match community 2_79_206 2_103_158 set community 0:16274 ip community-list standard 2_12_193 permit 65000:2 0:12 0:193 route-map calculator permit 14825 match community 2_12_193 set community 0:2316 ip community-list standard 2_173_222 permit 65000:2 0:173 0:222 route-map calculator permit 14826 match community 2_173_222 set community 0:38406 ip community-list standard 2_129_188 permit 65000:2 0:129 0:188 ip community-list standard 2_141_172 permit 65000:2 0:141 0:172 route-map calculator permit 14827 match community 2_129_188 2_141_172 set community 0:24252 ip community-list standard 2_42_131 permit 65000:2 0:42 0:131 route-map calculator permit 14828 match community 2_42_131 set community 0:5502 ip community-list standard 2_181_208 permit 65000:2 0:181 0:208 route-map calculator permit 14829 match community 2_181_208 set community 0:37648 ip community-list standard 2_178_196 permit 65000:2 0:178 0:196 route-map calculator permit 14830 match community 2_178_196 set community 0:34888 ip community-list standard 2_54_239 permit 65000:2 0:54 0:239 route-map calculator permit 14831 match community 2_54_239 set community 0:12906 ip community-list standard 2_184_199 permit 65000:2 0:184 0:199 route-map calculator permit 14832 match community 2_184_199 set community 0:36616 ip community-list standard 2_37_213 permit 65000:2 0:37 0:213 ip community-list standard 2_71_111 permit 65000:2 0:71 0:111 route-map calculator permit 14833 match community 2_37_213 2_71_111 set community 0:7881 ip community-list standard 2_202_226 permit 65000:2 0:202 0:226 route-map calculator permit 14834 match community 2_202_226 set community 0:45652 ip community-list standard 2_59_182 permit 65000:2 0:59 0:182 ip community-list standard 2_91_118 permit 65000:2 0:91 0:118 route-map calculator permit 14835 match community 2_59_182 2_91_118 set community 0:10738 ip community-list standard 2_97_155 permit 65000:2 0:97 0:155 route-map calculator permit 14836 match community 2_97_155 set community 0:15035 ip community-list standard 2_2_165 permit 65000:2 0:2 0:165 ip community-list standard 2_3_110 permit 65000:2 0:3 0:110 ip community-list standard 2_5_66 permit 65000:2 0:5 0:66 ip community-list standard 2_6_55 permit 65000:2 0:6 0:55 ip community-list standard 2_10_33 permit 65000:2 0:10 0:33 ip community-list standard 2_11_30 permit 65000:2 0:11 0:30 ip community-list standard 2_15_22 permit 65000:2 0:15 0:22 ip community-list standard 1_74_256 permit 65000:1 0:74 0:256 ip community-list standard 1_75_255 permit 65000:1 0:75 0:255 ip community-list standard 1_76_254 permit 65000:1 0:76 0:254 ip community-list standard 1_77_253 permit 65000:1 0:77 0:253 ip community-list standard 1_78_252 permit 65000:1 0:78 0:252 ip community-list standard 1_79_251 permit 65000:1 0:79 0:251 ip community-list standard 1_80_250 permit 65000:1 0:80 0:250 ip community-list standard 1_81_249 permit 65000:1 0:81 0:249 ip community-list standard 1_82_248 permit 65000:1 0:82 0:248 ip community-list standard 1_83_247 permit 65000:1 0:83 0:247 ip community-list standard 1_84_246 permit 65000:1 0:84 0:246 ip community-list standard 1_85_245 permit 65000:1 0:85 0:245 ip community-list standard 1_86_244 permit 65000:1 0:86 0:244 ip community-list standard 1_87_243 permit 65000:1 0:87 0:243 ip community-list standard 1_88_242 permit 65000:1 0:88 0:242 ip community-list standard 1_89_241 permit 65000:1 0:89 0:241 ip community-list standard 1_90_240 permit 65000:1 0:90 0:240 ip community-list standard 1_91_239 permit 65000:1 0:91 0:239 ip community-list standard 1_92_238 permit 65000:1 0:92 0:238 ip community-list standard 1_93_237 permit 65000:1 0:93 0:237 ip community-list standard 1_94_236 permit 65000:1 0:94 0:236 ip community-list standard 1_95_235 permit 65000:1 0:95 0:235 ip community-list standard 1_96_234 permit 65000:1 0:96 0:234 ip community-list standard 1_97_233 permit 65000:1 0:97 0:233 ip community-list standard 1_98_232 permit 65000:1 0:98 0:232 ip community-list standard 1_99_231 permit 65000:1 0:99 0:231 ip community-list standard 1_100_230 permit 65000:1 0:100 0:230 ip community-list standard 1_101_229 permit 65000:1 0:101 0:229 ip community-list standard 1_102_228 permit 65000:1 0:102 0:228 ip community-list standard 1_103_227 permit 65000:1 0:103 0:227 ip community-list standard 1_104_226 permit 65000:1 0:104 0:226 ip community-list standard 1_105_225 permit 65000:1 0:105 0:225 ip community-list standard 1_106_224 permit 65000:1 0:106 0:224 ip community-list standard 1_107_223 permit 65000:1 0:107 0:223 ip community-list standard 1_108_222 permit 65000:1 0:108 0:222 ip community-list standard 1_109_221 permit 65000:1 0:109 0:221 ip community-list standard 1_110_220 permit 65000:1 0:110 0:220 ip community-list standard 1_111_219 permit 65000:1 0:111 0:219 ip community-list standard 1_112_218 permit 65000:1 0:112 0:218 ip community-list standard 1_113_217 permit 65000:1 0:113 0:217 ip community-list standard 1_114_216 permit 65000:1 0:114 0:216 ip community-list standard 1_115_215 permit 65000:1 0:115 0:215 ip community-list standard 1_116_214 permit 65000:1 0:116 0:214 ip community-list standard 1_117_213 permit 65000:1 0:117 0:213 ip community-list standard 1_118_212 permit 65000:1 0:118 0:212 ip community-list standard 1_119_211 permit 65000:1 0:119 0:211 ip community-list standard 1_120_210 permit 65000:1 0:120 0:210 ip community-list standard 1_121_209 permit 65000:1 0:121 0:209 ip community-list standard 1_122_208 permit 65000:1 0:122 0:208 ip community-list standard 1_123_207 permit 65000:1 0:123 0:207 ip community-list standard 1_124_206 permit 65000:1 0:124 0:206 ip community-list standard 1_125_205 permit 65000:1 0:125 0:205 ip community-list standard 1_126_204 permit 65000:1 0:126 0:204 ip community-list standard 1_127_203 permit 65000:1 0:127 0:203 ip community-list standard 1_128_202 permit 65000:1 0:128 0:202 ip community-list standard 1_129_201 permit 65000:1 0:129 0:201 ip community-list standard 1_130_200 permit 65000:1 0:130 0:200 ip community-list standard 1_131_199 permit 65000:1 0:131 0:199 ip community-list standard 1_132_198 permit 65000:1 0:132 0:198 ip community-list standard 1_133_197 permit 65000:1 0:133 0:197 ip community-list standard 1_134_196 permit 65000:1 0:134 0:196 ip community-list standard 1_135_195 permit 65000:1 0:135 0:195 ip community-list standard 1_136_194 permit 65000:1 0:136 0:194 ip community-list standard 1_137_193 permit 65000:1 0:137 0:193 ip community-list standard 1_138_192 permit 65000:1 0:138 0:192 ip community-list standard 1_139_191 permit 65000:1 0:139 0:191 ip community-list standard 1_140_190 permit 65000:1 0:140 0:190 ip community-list standard 1_141_189 permit 65000:1 0:141 0:189 ip community-list standard 1_142_188 permit 65000:1 0:142 0:188 ip community-list standard 1_143_187 permit 65000:1 0:143 0:187 ip community-list standard 1_144_186 permit 65000:1 0:144 0:186 ip community-list standard 1_145_185 permit 65000:1 0:145 0:185 ip community-list standard 1_146_184 permit 65000:1 0:146 0:184 ip community-list standard 1_147_183 permit 65000:1 0:147 0:183 ip community-list standard 1_148_182 permit 65000:1 0:148 0:182 ip community-list standard 1_149_181 permit 65000:1 0:149 0:181 ip community-list standard 1_150_180 permit 65000:1 0:150 0:180 ip community-list standard 1_151_179 permit 65000:1 0:151 0:179 ip community-list standard 1_152_178 permit 65000:1 0:152 0:178 ip community-list standard 1_153_177 permit 65000:1 0:153 0:177 ip community-list standard 1_154_176 permit 65000:1 0:154 0:176 ip community-list standard 1_155_175 permit 65000:1 0:155 0:175 ip community-list standard 1_156_174 permit 65000:1 0:156 0:174 ip community-list standard 1_157_173 permit 65000:1 0:157 0:173 ip community-list standard 1_158_172 permit 65000:1 0:158 0:172 ip community-list standard 1_159_171 permit 65000:1 0:159 0:171 ip community-list standard 1_160_170 permit 65000:1 0:160 0:170 ip community-list standard 1_161_169 permit 65000:1 0:161 0:169 ip community-list standard 1_162_168 permit 65000:1 0:162 0:168 ip community-list standard 1_163_167 permit 65000:1 0:163 0:167 ip community-list standard 1_164_166 permit 65000:1 0:164 0:166 ip community-list standard 1_165_165 permit 65000:1 0:165 0:165 route-map calculator permit 14837 match community 2_2_165 2_3_110 2_5_66 2_6_55 2_10_33 set community 0:330 route-map calculator permit 14838 match community 2_11_30 2_15_22 1_74_256 1_75_255 1_76_254 set community 0:330 route-map calculator permit 14839 match community 1_77_253 1_78_252 1_79_251 1_80_250 1_81_249 set community 0:330 route-map calculator permit 14840 match community 1_82_248 1_83_247 1_84_246 1_85_245 1_86_244 set community 0:330 route-map calculator permit 14841 match community 1_87_243 1_88_242 1_89_241 1_90_240 1_91_239 set community 0:330 route-map calculator permit 14842 match community 1_92_238 1_93_237 1_94_236 1_95_235 1_96_234 set community 0:330 route-map calculator permit 14843 match community 1_97_233 1_98_232 1_99_231 1_100_230 1_101_229 set community 0:330 route-map calculator permit 14844 match community 1_102_228 1_103_227 1_104_226 1_105_225 1_106_224 set community 0:330 route-map calculator permit 14845 match community 1_107_223 1_108_222 1_109_221 1_110_220 1_111_219 set community 0:330 route-map calculator permit 14846 match community 1_112_218 1_113_217 1_114_216 1_115_215 1_116_214 set community 0:330 route-map calculator permit 14847 match community 1_117_213 1_118_212 1_119_211 1_120_210 1_121_209 set community 0:330 route-map calculator permit 14848 match community 1_122_208 1_123_207 1_124_206 1_125_205 1_126_204 set community 0:330 route-map calculator permit 14849 match community 1_127_203 1_128_202 1_129_201 1_130_200 1_131_199 set community 0:330 route-map calculator permit 14850 match community 1_132_198 1_133_197 1_134_196 1_135_195 1_136_194 set community 0:330 route-map calculator permit 14851 match community 1_137_193 1_138_192 1_139_191 1_140_190 1_141_189 set community 0:330 route-map calculator permit 14852 match community 1_142_188 1_143_187 1_144_186 1_145_185 1_146_184 set community 0:330 route-map calculator permit 14853 match community 1_147_183 1_148_182 1_149_181 1_150_180 1_151_179 set community 0:330 route-map calculator permit 14854 match community 1_152_178 1_153_177 1_154_176 1_155_175 1_156_174 set community 0:330 route-map calculator permit 14855 match community 1_157_173 1_158_172 1_159_171 1_160_170 1_161_169 set community 0:330 route-map calculator permit 14856 match community 1_162_168 1_163_167 1_164_166 1_165_165 set community 0:330 ip community-list standard 2_75_231 permit 65000:2 0:75 0:231 ip community-list standard 2_77_225 permit 65000:2 0:77 0:225 ip community-list standard 2_99_175 permit 65000:2 0:99 0:175 ip community-list standard 2_105_165 permit 65000:2 0:105 0:165 route-map calculator permit 14857 match community 2_75_231 2_77_225 2_99_175 2_105_165 set community 0:17325 ip community-list standard 2_225_226 permit 65000:2 0:225 0:226 route-map calculator permit 14858 match community 2_225_226 set community 0:50850 ip community-list standard 2_90_250 permit 65000:2 0:90 0:250 ip community-list standard 2_100_225 permit 65000:2 0:100 0:225 ip community-list standard 2_125_180 permit 65000:2 0:125 0:180 ip community-list standard 2_150_150 permit 65000:2 0:150 0:150 route-map calculator permit 14859 match community 2_90_250 2_100_225 2_125_180 2_150_150 set community 0:22500 ip community-list standard 2_21_111 permit 65000:2 0:21 0:111 ip community-list standard 2_37_63 permit 65000:2 0:37 0:63 route-map calculator permit 14860 match community 2_21_111 2_37_63 set community 0:2331 ip community-list standard 2_216_222 permit 65000:2 0:216 0:222 route-map calculator permit 14861 match community 2_216_222 set community 0:47952 ip community-list standard 2_9_121 permit 65000:2 0:9 0:121 ip community-list standard 2_11_99 permit 65000:2 0:11 0:99 ip community-list standard 2_33_33 permit 65000:2 0:33 0:33 route-map calculator permit 14862 match community 2_9_121 2_11_99 2_33_33 set community 0:1089 ip community-list standard 2_135_219 permit 65000:2 0:135 0:219 route-map calculator permit 14863 match community 2_135_219 set community 0:29565 ip community-list standard 2_187_227 permit 65000:2 0:187 0:227 route-map calculator permit 14864 match community 2_187_227 set community 0:42449 ip community-list standard 2_16_229 permit 65000:2 0:16 0:229 route-map calculator permit 14865 match community 2_16_229 set community 0:3664 ip community-list standard 2_29_67 permit 65000:2 0:29 0:67 route-map calculator permit 14866 match community 2_29_67 set community 0:1943 ip community-list standard 2_29_242 permit 65000:2 0:29 0:242 ip community-list standard 2_58_121 permit 65000:2 0:58 0:121 route-map calculator permit 14867 match community 2_29_242 2_58_121 set community 0:7018 ip community-list standard 2_98_253 permit 65000:2 0:98 0:253 ip community-list standard 2_154_161 permit 65000:2 0:154 0:161 route-map calculator permit 14868 match community 2_98_253 2_154_161 set community 0:24794 ip community-list standard 2_191_206 permit 65000:2 0:191 0:206 route-map calculator permit 14869 match community 2_191_206 set community 0:39346 ip community-list standard 2_51_216 permit 65000:2 0:51 0:216 ip community-list standard 2_54_204 permit 65000:2 0:54 0:204 ip community-list standard 2_68_162 permit 65000:2 0:68 0:162 ip community-list standard 2_72_153 permit 65000:2 0:72 0:153 ip community-list standard 2_81_136 permit 65000:2 0:81 0:136 ip community-list standard 2_102_108 permit 65000:2 0:102 0:108 route-map calculator permit 14870 match community 2_51_216 2_54_204 2_68_162 2_72_153 2_81_136 set community 0:11016 route-map calculator permit 14871 match community 2_102_108 set community 0:11016 ip community-list standard 2_14_184 permit 65000:2 0:14 0:184 ip community-list standard 2_16_161 permit 65000:2 0:16 0:161 ip community-list standard 2_23_112 permit 65000:2 0:23 0:112 ip community-list standard 2_28_92 permit 65000:2 0:28 0:92 ip community-list standard 2_46_56 permit 65000:2 0:46 0:56 route-map calculator permit 14872 match community 2_14_184 2_16_161 2_23_112 2_28_92 2_46_56 set community 0:2576 ip community-list standard 2_119_249 permit 65000:2 0:119 0:249 route-map calculator permit 14873 match community 2_119_249 set community 0:29631 ip community-list standard 2_29_245 permit 65000:2 0:29 0:245 ip community-list standard 2_35_203 permit 65000:2 0:35 0:203 ip community-list standard 2_49_145 permit 65000:2 0:49 0:145 route-map calculator permit 14874 match community 2_29_245 2_35_203 2_49_145 set community 0:7105 ip community-list standard 2_51_234 permit 65000:2 0:51 0:234 ip community-list standard 2_54_221 permit 65000:2 0:54 0:221 ip community-list standard 2_78_153 permit 65000:2 0:78 0:153 ip community-list standard 2_102_117 permit 65000:2 0:102 0:117 route-map calculator permit 14875 match community 2_51_234 2_54_221 2_78_153 2_102_117 set community 0:11934 ip community-list standard 2_12_202 permit 65000:2 0:12 0:202 ip community-list standard 2_24_101 permit 65000:2 0:24 0:101 route-map calculator permit 14876 match community 2_12_202 2_24_101 set community 0:2424 ip community-list standard 2_68_205 permit 65000:2 0:68 0:205 ip community-list standard 2_82_170 permit 65000:2 0:82 0:170 ip community-list standard 2_85_164 permit 65000:2 0:85 0:164 route-map calculator permit 14877 match community 2_68_205 2_82_170 2_85_164 set community 0:13940 ip community-list standard 2_164_164 permit 65000:2 0:164 0:164 route-map calculator permit 14878 match community 2_164_164 set community 0:26896 ip community-list standard 2_116_143 permit 65000:2 0:116 0:143 route-map calculator permit 14879 match community 2_116_143 set community 0:16588 ip community-list standard 2_181_210 permit 65000:2 0:181 0:210 route-map calculator permit 14880 match community 2_181_210 set community 0:38010 ip community-list standard 2_63_185 permit 65000:2 0:63 0:185 ip community-list standard 2_105_111 permit 65000:2 0:105 0:111 route-map calculator permit 14881 match community 2_63_185 2_105_111 set community 0:11655 ip community-list standard 2_155_163 permit 65000:2 0:155 0:163 route-map calculator permit 14882 match community 2_155_163 set community 0:25265 ip community-list standard 2_39_101 permit 65000:2 0:39 0:101 route-map calculator permit 14883 match community 2_39_101 set community 0:3939 ip community-list standard 2_14_185 permit 65000:2 0:14 0:185 ip community-list standard 2_35_74 permit 65000:2 0:35 0:74 ip community-list standard 2_37_70 permit 65000:2 0:37 0:70 route-map calculator permit 14884 match community 2_14_185 2_35_74 2_37_70 set community 0:2590 ip community-list standard 2_16_164 permit 65000:2 0:16 0:164 ip community-list standard 2_32_82 permit 65000:2 0:32 0:82 ip community-list standard 2_41_64 permit 65000:2 0:41 0:64 route-map calculator permit 14885 match community 2_16_164 2_32_82 2_41_64 set community 0:2624 ip community-list standard 2_27_177 permit 65000:2 0:27 0:177 ip community-list standard 2_59_81 permit 65000:2 0:59 0:81 route-map calculator permit 14886 match community 2_27_177 2_59_81 set community 0:4779 ip community-list standard 2_154_255 permit 65000:2 0:154 0:255 ip community-list standard 2_165_238 permit 65000:2 0:165 0:238 ip community-list standard 2_170_231 permit 65000:2 0:170 0:231 ip community-list standard 2_187_210 permit 65000:2 0:187 0:210 route-map calculator permit 14887 match community 2_154_255 2_165_238 2_170_231 2_187_210 set community 0:39270 ip community-list standard 2_33_233 permit 65000:2 0:33 0:233 route-map calculator permit 14888 match community 2_33_233 set community 0:7689 ip community-list standard 2_98_223 permit 65000:2 0:98 0:223 route-map calculator permit 14889 match community 2_98_223 set community 0:21854 ip community-list standard 2_170_202 permit 65000:2 0:170 0:202 route-map calculator permit 14890 match community 2_170_202 set community 0:34340 ip community-list standard 2_22_249 permit 65000:2 0:22 0:249 ip community-list standard 2_33_166 permit 65000:2 0:33 0:166 ip community-list standard 2_66_83 permit 65000:2 0:66 0:83 route-map calculator permit 14891 match community 2_22_249 2_33_166 2_66_83 set community 0:5478 ip community-list standard 2_7_101 permit 65000:2 0:7 0:101 route-map calculator permit 14892 match community 2_7_101 set community 0:707 ip community-list standard 2_131_186 permit 65000:2 0:131 0:186 route-map calculator permit 14893 match community 2_131_186 set community 0:24366 ip community-list standard 2_84_215 permit 65000:2 0:84 0:215 ip community-list standard 2_86_210 permit 65000:2 0:86 0:210 ip community-list standard 2_105_172 permit 65000:2 0:105 0:172 ip community-list standard 2_129_140 permit 65000:2 0:129 0:140 route-map calculator permit 14894 match community 2_84_215 2_86_210 2_105_172 2_129_140 set community 0:18060 ip community-list standard 2_137_171 permit 65000:2 0:137 0:171 route-map calculator permit 14895 match community 2_137_171 set community 0:23427 ip community-list standard 2_182_202 permit 65000:2 0:182 0:202 route-map calculator permit 14896 match community 2_182_202 set community 0:36764 ip community-list standard 2_29_248 permit 65000:2 0:29 0:248 ip community-list standard 2_31_232 permit 65000:2 0:31 0:232 ip community-list standard 2_58_124 permit 65000:2 0:58 0:124 ip community-list standard 2_62_116 permit 65000:2 0:62 0:116 route-map calculator permit 14897 match community 2_29_248 2_31_232 2_58_124 2_62_116 set community 0:7192 ip community-list standard 2_113_245 permit 65000:2 0:113 0:245 route-map calculator permit 14898 match community 2_113_245 set community 0:27685 ip community-list standard 2_37_131 permit 65000:2 0:37 0:131 route-map calculator permit 14899 match community 2_37_131 set community 0:4847 ip community-list standard 2_103_163 permit 65000:2 0:103 0:163 route-map calculator permit 14900 match community 2_103_163 set community 0:16789 ip community-list standard 2_158_181 permit 65000:2 0:158 0:181 route-map calculator permit 14901 match community 2_158_181 set community 0:28598 ip community-list standard 2_218_219 permit 65000:2 0:218 0:219 route-map calculator permit 14902 match community 2_218_219 set community 0:47742 ip community-list standard 2_34_188 permit 65000:2 0:34 0:188 ip community-list standard 2_47_136 permit 65000:2 0:47 0:136 ip community-list standard 2_68_94 permit 65000:2 0:68 0:94 route-map calculator permit 14903 match community 2_34_188 2_47_136 2_68_94 set community 0:6392 ip community-list standard 2_248_254 permit 65000:2 0:248 0:254 route-map calculator permit 14904 match community 2_248_254 set community 0:62992 ip community-list standard 2_154_247 permit 65000:2 0:154 0:247 ip community-list standard 2_182_209 permit 65000:2 0:182 0:209 route-map calculator permit 14905 match community 2_154_247 2_182_209 set community 0:38038 ip community-list standard 2_252_252 permit 65000:2 0:252 0:252 route-map calculator permit 14906 match community 2_252_252 set community 0:63504 ip community-list standard 2_31_141 permit 65000:2 0:31 0:141 ip community-list standard 2_47_93 permit 65000:2 0:47 0:93 route-map calculator permit 14907 match community 2_31_141 2_47_93 set community 0:4371 ip community-list standard 2_80_179 permit 65000:2 0:80 0:179 route-map calculator permit 14908 match community 2_80_179 set community 0:14320 ip community-list standard 2_87_214 permit 65000:2 0:87 0:214 ip community-list standard 2_107_174 permit 65000:2 0:107 0:174 route-map calculator permit 14909 match community 2_87_214 2_107_174 set community 0:18618 ip community-list standard 2_193_255 permit 65000:2 0:193 0:255 route-map calculator permit 14910 match community 2_193_255 set community 0:49215 ip community-list standard 2_211_238 permit 65000:2 0:211 0:238 route-map calculator permit 14911 match community 2_211_238 set community 0:50218 ip community-list standard 2_38_172 permit 65000:2 0:38 0:172 ip community-list standard 2_43_152 permit 65000:2 0:43 0:152 ip community-list standard 2_76_86 permit 65000:2 0:76 0:86 route-map calculator permit 14912 match community 2_38_172 2_43_152 2_76_86 set community 0:6536 ip community-list standard 2_93_187 permit 65000:2 0:93 0:187 route-map calculator permit 14913 match community 2_93_187 set community 0:17391 ip community-list standard 2_207_212 permit 65000:2 0:207 0:212 route-map calculator permit 14914 match community 2_207_212 set community 0:43884 ip community-list standard 2_58_248 permit 65000:2 0:58 0:248 ip community-list standard 2_62_232 permit 65000:2 0:62 0:232 ip community-list standard 2_116_124 permit 65000:2 0:116 0:124 route-map calculator permit 14915 match community 2_58_248 2_62_232 2_116_124 set community 0:14384 ip community-list standard 2_201_252 permit 65000:2 0:201 0:252 route-map calculator permit 14916 match community 2_201_252 set community 0:50652 ip community-list standard 2_201_214 permit 65000:2 0:201 0:214 route-map calculator permit 14917 match community 2_201_214 set community 0:43014 ip community-list standard 2_143_191 permit 65000:2 0:143 0:191 route-map calculator permit 14918 match community 2_143_191 set community 0:27313 ip community-list standard 2_85_199 permit 65000:2 0:85 0:199 route-map calculator permit 14919 match community 2_85_199 set community 0:16915 ip community-list standard 2_74_244 permit 65000:2 0:74 0:244 ip community-list standard 2_122_148 permit 65000:2 0:122 0:148 route-map calculator permit 14920 match community 2_74_244 2_122_148 set community 0:18056 ip community-list standard 2_30_215 permit 65000:2 0:30 0:215 ip community-list standard 2_43_150 permit 65000:2 0:43 0:150 ip community-list standard 2_50_129 permit 65000:2 0:50 0:129 ip community-list standard 2_75_86 permit 65000:2 0:75 0:86 route-map calculator permit 14921 match community 2_30_215 2_43_150 2_50_129 2_75_86 set community 0:6450 ip community-list standard 2_222_237 permit 65000:2 0:222 0:237 route-map calculator permit 14922 match community 2_222_237 set community 0:52614 ip community-list standard 2_9_205 permit 65000:2 0:9 0:205 ip community-list standard 2_15_123 permit 65000:2 0:15 0:123 ip community-list standard 2_41_45 permit 65000:2 0:41 0:45 route-map calculator permit 14923 match community 2_9_205 2_15_123 2_41_45 set community 0:1845 ip community-list standard 2_173_241 permit 65000:2 0:173 0:241 route-map calculator permit 14924 match community 2_173_241 set community 0:41693 ip community-list standard 2_149_182 permit 65000:2 0:149 0:182 route-map calculator permit 14925 match community 2_149_182 set community 0:27118 ip community-list standard 1_1_102 permit 65000:1 0:1 0:102 ip community-list standard 2_1_103 permit 65000:2 0:1 0:103 ip community-list standard 1_2_101 permit 65000:1 0:2 0:101 ip community-list standard 1_3_100 permit 65000:1 0:3 0:100 ip community-list standard 1_4_99 permit 65000:1 0:4 0:99 ip community-list standard 1_5_98 permit 65000:1 0:5 0:98 ip community-list standard 1_6_97 permit 65000:1 0:6 0:97 ip community-list standard 1_7_96 permit 65000:1 0:7 0:96 ip community-list standard 1_8_95 permit 65000:1 0:8 0:95 ip community-list standard 1_9_94 permit 65000:1 0:9 0:94 ip community-list standard 1_10_93 permit 65000:1 0:10 0:93 ip community-list standard 1_11_92 permit 65000:1 0:11 0:92 ip community-list standard 1_12_91 permit 65000:1 0:12 0:91 ip community-list standard 1_13_90 permit 65000:1 0:13 0:90 ip community-list standard 1_14_89 permit 65000:1 0:14 0:89 ip community-list standard 1_15_88 permit 65000:1 0:15 0:88 ip community-list standard 1_16_87 permit 65000:1 0:16 0:87 ip community-list standard 1_17_86 permit 65000:1 0:17 0:86 ip community-list standard 1_18_85 permit 65000:1 0:18 0:85 ip community-list standard 1_19_84 permit 65000:1 0:19 0:84 ip community-list standard 1_20_83 permit 65000:1 0:20 0:83 ip community-list standard 1_21_82 permit 65000:1 0:21 0:82 ip community-list standard 1_22_81 permit 65000:1 0:22 0:81 ip community-list standard 1_23_80 permit 65000:1 0:23 0:80 ip community-list standard 1_24_79 permit 65000:1 0:24 0:79 ip community-list standard 1_25_78 permit 65000:1 0:25 0:78 ip community-list standard 1_26_77 permit 65000:1 0:26 0:77 ip community-list standard 1_27_76 permit 65000:1 0:27 0:76 ip community-list standard 1_28_75 permit 65000:1 0:28 0:75 ip community-list standard 1_29_74 permit 65000:1 0:29 0:74 ip community-list standard 1_30_73 permit 65000:1 0:30 0:73 ip community-list standard 1_31_72 permit 65000:1 0:31 0:72 ip community-list standard 1_32_71 permit 65000:1 0:32 0:71 ip community-list standard 1_33_70 permit 65000:1 0:33 0:70 ip community-list standard 1_34_69 permit 65000:1 0:34 0:69 ip community-list standard 1_35_68 permit 65000:1 0:35 0:68 ip community-list standard 1_36_67 permit 65000:1 0:36 0:67 ip community-list standard 1_37_66 permit 65000:1 0:37 0:66 ip community-list standard 1_38_65 permit 65000:1 0:38 0:65 ip community-list standard 1_39_64 permit 65000:1 0:39 0:64 ip community-list standard 1_40_63 permit 65000:1 0:40 0:63 ip community-list standard 1_41_62 permit 65000:1 0:41 0:62 ip community-list standard 1_42_61 permit 65000:1 0:42 0:61 ip community-list standard 1_43_60 permit 65000:1 0:43 0:60 ip community-list standard 1_44_59 permit 65000:1 0:44 0:59 ip community-list standard 1_45_58 permit 65000:1 0:45 0:58 ip community-list standard 1_46_57 permit 65000:1 0:46 0:57 ip community-list standard 1_47_56 permit 65000:1 0:47 0:56 ip community-list standard 1_48_55 permit 65000:1 0:48 0:55 ip community-list standard 1_49_54 permit 65000:1 0:49 0:54 ip community-list standard 1_50_53 permit 65000:1 0:50 0:53 ip community-list standard 1_51_52 permit 65000:1 0:51 0:52 ip community-list expanded c103 permit 1 ^65000:4_0:103_0:1$ ip community-list expanded c103 permit 2 ^65000:3_0:104_0:1$ ip community-list expanded c103 permit 3 ^65000:3_0:105_0:2$ ip community-list expanded c103 permit 4 ^65000:3_0:106_0:3$ ip community-list expanded c103 permit 5 ^65000:3_0:107_0:4$ ip community-list expanded c103 permit 6 ^65000:3_0:108_0:5$ ip community-list expanded c103 permit 7 ^65000:3_0:109_0:6$ ip community-list expanded c103 permit 8 ^65000:3_0:110_0:7$ ip community-list expanded c103 permit 9 ^65000:3_0:111_0:8$ ip community-list expanded c103 permit 10 ^65000:3_0:112_0:9$ ip community-list expanded c103 permit 11 ^65000:3_0:113_0:10$ ip community-list expanded c103 permit 12 ^65000:3_0:114_0:11$ ip community-list expanded c103 permit 13 ^65000:3_0:115_0:12$ ip community-list expanded c103 permit 14 ^65000:3_0:116_0:13$ ip community-list expanded c103 permit 15 ^65000:3_0:117_0:14$ ip community-list expanded c103 permit 16 ^65000:3_0:118_0:15$ ip community-list expanded c103 permit 17 ^65000:3_0:119_0:16$ ip community-list expanded c103 permit 18 ^65000:3_0:120_0:17$ ip community-list expanded c103 permit 19 ^65000:3_0:121_0:18$ ip community-list expanded c103 permit 20 ^65000:3_0:122_0:19$ ip community-list expanded c103 permit 21 ^65000:3_0:123_0:20$ ip community-list expanded c103 permit 22 ^65000:3_0:124_0:21$ ip community-list expanded c103 permit 23 ^65000:3_0:125_0:22$ ip community-list expanded c103 permit 24 ^65000:3_0:126_0:23$ ip community-list expanded c103 permit 25 ^65000:3_0:127_0:24$ ip community-list expanded c103 permit 26 ^65000:3_0:128_0:25$ ip community-list expanded c103 permit 27 ^65000:3_0:129_0:26$ ip community-list expanded c103 permit 28 ^65000:3_0:130_0:27$ ip community-list expanded c103 permit 29 ^65000:3_0:131_0:28$ ip community-list expanded c103 permit 30 ^65000:3_0:132_0:29$ ip community-list expanded c103 permit 31 ^65000:3_0:133_0:30$ ip community-list expanded c103 permit 32 ^65000:3_0:134_0:31$ ip community-list expanded c103 permit 33 ^65000:3_0:135_0:32$ ip community-list expanded c103 permit 34 ^65000:3_0:136_0:33$ ip community-list expanded c103 permit 35 ^65000:3_0:137_0:34$ ip community-list expanded c103 permit 36 ^65000:3_0:138_0:35$ ip community-list expanded c103 permit 37 ^65000:3_0:139_0:36$ ip community-list expanded c103 permit 38 ^65000:3_0:140_0:37$ ip community-list expanded c103 permit 39 ^65000:3_0:141_0:38$ ip community-list expanded c103 permit 40 ^65000:3_0:142_0:39$ ip community-list expanded c103 permit 41 ^65000:3_0:143_0:40$ ip community-list expanded c103 permit 42 ^65000:3_0:144_0:41$ ip community-list expanded c103 permit 43 ^65000:3_0:145_0:42$ ip community-list expanded c103 permit 44 ^65000:3_0:146_0:43$ ip community-list expanded c103 permit 45 ^65000:3_0:147_0:44$ ip community-list expanded c103 permit 46 ^65000:3_0:148_0:45$ ip community-list expanded c103 permit 47 ^65000:3_0:149_0:46$ ip community-list expanded c103 permit 48 ^65000:3_0:150_0:47$ ip community-list expanded c103 permit 49 ^65000:3_0:151_0:48$ ip community-list expanded c103 permit 50 ^65000:3_0:152_0:49$ ip community-list expanded c103 permit 51 ^65000:3_0:153_0:50$ ip community-list expanded c103 permit 52 ^65000:3_0:154_0:51$ ip community-list expanded c103 permit 53 ^65000:3_0:155_0:52$ ip community-list expanded c103 permit 54 ^65000:3_0:156_0:53$ ip community-list expanded c103 permit 55 ^65000:3_0:157_0:54$ ip community-list expanded c103 permit 56 ^65000:3_0:158_0:55$ ip community-list expanded c103 permit 57 ^65000:3_0:159_0:56$ ip community-list expanded c103 permit 58 ^65000:3_0:160_0:57$ ip community-list expanded c103 permit 59 ^65000:3_0:161_0:58$ ip community-list expanded c103 permit 60 ^65000:3_0:162_0:59$ ip community-list expanded c103 permit 61 ^65000:3_0:163_0:60$ ip community-list expanded c103 permit 62 ^65000:3_0:164_0:61$ ip community-list expanded c103 permit 63 ^65000:3_0:165_0:62$ ip community-list expanded c103 permit 64 ^65000:3_0:166_0:63$ ip community-list expanded c103 permit 65 ^65000:3_0:167_0:64$ ip community-list expanded c103 permit 66 ^65000:3_0:168_0:65$ ip community-list expanded c103 permit 67 ^65000:3_0:169_0:66$ ip community-list expanded c103 permit 68 ^65000:3_0:170_0:67$ ip community-list expanded c103 permit 69 ^65000:3_0:171_0:68$ ip community-list expanded c103 permit 70 ^65000:3_0:172_0:69$ ip community-list expanded c103 permit 71 ^65000:3_0:173_0:70$ ip community-list expanded c103 permit 72 ^65000:3_0:174_0:71$ ip community-list expanded c103 permit 73 ^65000:3_0:175_0:72$ ip community-list expanded c103 permit 74 ^65000:3_0:176_0:73$ ip community-list expanded c103 permit 75 ^65000:3_0:177_0:74$ ip community-list expanded c103 permit 76 ^65000:3_0:178_0:75$ ip community-list expanded c103 permit 77 ^65000:3_0:179_0:76$ ip community-list expanded c103 permit 78 ^65000:3_0:180_0:77$ ip community-list expanded c103 permit 79 ^65000:3_0:181_0:78$ ip community-list expanded c103 permit 80 ^65000:3_0:182_0:79$ ip community-list expanded c103 permit 81 ^65000:3_0:183_0:80$ ip community-list expanded c103 permit 82 ^65000:3_0:184_0:81$ ip community-list expanded c103 permit 83 ^65000:3_0:185_0:82$ ip community-list expanded c103 permit 84 ^65000:3_0:186_0:83$ ip community-list expanded c103 permit 85 ^65000:3_0:187_0:84$ ip community-list expanded c103 permit 86 ^65000:3_0:188_0:85$ ip community-list expanded c103 permit 87 ^65000:3_0:189_0:86$ ip community-list expanded c103 permit 88 ^65000:3_0:190_0:87$ ip community-list expanded c103 permit 89 ^65000:3_0:191_0:88$ ip community-list expanded c103 permit 90 ^65000:3_0:192_0:89$ ip community-list expanded c103 permit 91 ^65000:3_0:193_0:90$ ip community-list expanded c103 permit 92 ^65000:3_0:194_0:91$ ip community-list expanded c103 permit 93 ^65000:3_0:195_0:92$ ip community-list expanded c103 permit 94 ^65000:3_0:196_0:93$ ip community-list expanded c103 permit 95 ^65000:3_0:197_0:94$ ip community-list expanded c103 permit 96 ^65000:3_0:198_0:95$ ip community-list expanded c103 permit 97 ^65000:3_0:199_0:96$ ip community-list expanded c103 permit 98 ^65000:3_0:200_0:97$ ip community-list expanded c103 permit 99 ^65000:3_0:201_0:98$ ip community-list expanded c103 permit 100 ^65000:3_0:202_0:99$ ip community-list expanded c103 permit 101 ^65000:3_0:203_0:100$ ip community-list expanded c103 permit 102 ^65000:3_0:204_0:101$ ip community-list expanded c103 permit 103 ^65000:3_0:205_0:102$ ip community-list expanded c103 permit 104 ^65000:4_0:206_0:2$ ip community-list expanded c103 permit 105 ^65000:3_0:206_0:103$ ip community-list expanded c103 permit 106 ^65000:4_0:207_0:2$ ip community-list expanded c103 permit 107 ^65000:3_0:207_0:104$ ip community-list expanded c103 permit 108 ^65000:3_0:208_0:105$ ip community-list expanded c103 permit 109 ^65000:3_0:209_0:106$ ip community-list expanded c103 permit 110 ^65000:3_0:210_0:107$ ip community-list expanded c103 permit 111 ^65000:3_0:211_0:108$ ip community-list expanded c103 permit 112 ^65000:3_0:212_0:109$ ip community-list expanded c103 permit 113 ^65000:3_0:213_0:110$ ip community-list expanded c103 permit 114 ^65000:3_0:214_0:111$ ip community-list expanded c103 permit 115 ^65000:3_0:215_0:112$ ip community-list expanded c103 permit 116 ^65000:3_0:216_0:113$ ip community-list expanded c103 permit 117 ^65000:3_0:217_0:114$ ip community-list expanded c103 permit 118 ^65000:3_0:218_0:115$ ip community-list expanded c103 permit 119 ^65000:3_0:219_0:116$ ip community-list expanded c103 permit 120 ^65000:3_0:220_0:117$ ip community-list expanded c103 permit 121 ^65000:3_0:221_0:118$ ip community-list expanded c103 permit 122 ^65000:3_0:222_0:119$ ip community-list expanded c103 permit 123 ^65000:3_0:223_0:120$ ip community-list expanded c103 permit 124 ^65000:3_0:224_0:121$ ip community-list expanded c103 permit 125 ^65000:3_0:225_0:122$ ip community-list expanded c103 permit 126 ^65000:3_0:226_0:123$ ip community-list expanded c103 permit 127 ^65000:3_0:227_0:124$ ip community-list expanded c103 permit 128 ^65000:3_0:228_0:125$ ip community-list expanded c103 permit 129 ^65000:3_0:229_0:126$ ip community-list expanded c103 permit 130 ^65000:3_0:230_0:127$ ip community-list expanded c103 permit 131 ^65000:3_0:231_0:128$ ip community-list expanded c103 permit 132 ^65000:3_0:232_0:129$ ip community-list expanded c103 permit 133 ^65000:3_0:233_0:130$ ip community-list expanded c103 permit 134 ^65000:3_0:234_0:131$ ip community-list expanded c103 permit 135 ^65000:3_0:235_0:132$ ip community-list expanded c103 permit 136 ^65000:3_0:236_0:133$ ip community-list expanded c103 permit 137 ^65000:3_0:237_0:134$ ip community-list expanded c103 permit 138 ^65000:3_0:238_0:135$ ip community-list expanded c103 permit 139 ^65000:3_0:239_0:136$ ip community-list expanded c103 permit 140 ^65000:3_0:240_0:137$ ip community-list expanded c103 permit 141 ^65000:3_0:241_0:138$ ip community-list expanded c103 permit 142 ^65000:3_0:242_0:139$ ip community-list expanded c103 permit 143 ^65000:3_0:243_0:140$ ip community-list expanded c103 permit 144 ^65000:3_0:244_0:141$ ip community-list expanded c103 permit 145 ^65000:3_0:245_0:142$ ip community-list expanded c103 permit 146 ^65000:3_0:246_0:143$ ip community-list expanded c103 permit 147 ^65000:3_0:247_0:144$ ip community-list expanded c103 permit 148 ^65000:3_0:248_0:145$ ip community-list expanded c103 permit 149 ^65000:3_0:249_0:146$ ip community-list expanded c103 permit 150 ^65000:3_0:250_0:147$ ip community-list expanded c103 permit 151 ^65000:3_0:251_0:148$ ip community-list expanded c103 permit 152 ^65000:3_0:252_0:149$ ip community-list expanded c103 permit 153 ^65000:3_0:253_0:150$ ip community-list expanded c103 permit 154 ^65000:3_0:254_0:151$ ip community-list expanded c103 permit 155 ^65000:3_0:255_0:152$ ip community-list expanded c103 permit 156 ^65000:3_0:256_0:153$ route-map calculator permit 14926 match community 1_1_102 2_1_103 1_2_101 1_3_100 1_4_99 set community 0:103 route-map calculator permit 14927 match community 1_5_98 1_6_97 1_7_96 1_8_95 1_9_94 set community 0:103 route-map calculator permit 14928 match community 1_10_93 1_11_92 1_12_91 1_13_90 1_14_89 set community 0:103 route-map calculator permit 14929 match community 1_15_88 1_16_87 1_17_86 1_18_85 1_19_84 set community 0:103 route-map calculator permit 14930 match community 1_20_83 1_21_82 1_22_81 1_23_80 1_24_79 set community 0:103 route-map calculator permit 14931 match community 1_25_78 1_26_77 1_27_76 1_28_75 1_29_74 set community 0:103 route-map calculator permit 14932 match community 1_30_73 1_31_72 1_32_71 1_33_70 1_34_69 set community 0:103 route-map calculator permit 14933 match community 1_35_68 1_36_67 1_37_66 1_38_65 1_39_64 set community 0:103 route-map calculator permit 14934 match community 1_40_63 1_41_62 1_42_61 1_43_60 1_44_59 set community 0:103 route-map calculator permit 14935 match community 1_45_58 1_46_57 1_47_56 1_48_55 1_49_54 set community 0:103 route-map calculator permit 14936 match community 1_50_53 1_51_52 c4_103_1 c3_104_1 c3_105_2 set community 0:103 route-map calculator permit 14937 match community c3_106_3 c3_107_4 c3_108_5 c3_109_6 c3_110_7 set community 0:103 route-map calculator permit 14938 match community c3_111_8 c3_112_9 c3_113_10 c3_114_11 c3_115_12 set community 0:103 route-map calculator permit 14939 match community c3_116_13 c3_117_14 c3_118_15 c3_119_16 c3_120_17 set community 0:103 route-map calculator permit 14940 match community c3_121_18 c3_122_19 c3_123_20 c3_124_21 c3_125_22 set community 0:103 route-map calculator permit 14941 match community c3_126_23 c3_127_24 c3_128_25 c3_129_26 c3_130_27 set community 0:103 route-map calculator permit 14942 match community c3_131_28 c3_132_29 c3_133_30 c3_134_31 c3_135_32 set community 0:103 route-map calculator permit 14943 match community c3_136_33 c3_137_34 c3_138_35 c3_139_36 c3_140_37 set community 0:103 route-map calculator permit 14944 match community c3_141_38 c3_142_39 c3_143_40 c3_144_41 c3_145_42 set community 0:103 route-map calculator permit 14945 match community c3_146_43 c3_147_44 c3_148_45 c3_149_46 c3_150_47 set community 0:103 route-map calculator permit 14946 match community c3_151_48 c3_152_49 c3_153_50 c3_154_51 c3_155_52 set community 0:103 route-map calculator permit 14947 match community c3_156_53 c3_157_54 c3_158_55 c3_159_56 c3_160_57 set community 0:103 route-map calculator permit 14948 match community c3_161_58 c3_162_59 c3_163_60 c3_164_61 c3_165_62 set community 0:103 route-map calculator permit 14949 match community c3_166_63 c3_167_64 c3_168_65 c3_169_66 c3_170_67 set community 0:103 route-map calculator permit 14950 match community c3_171_68 c3_172_69 c3_173_70 c3_174_71 c3_175_72 set community 0:103 route-map calculator permit 14951 match community c3_176_73 c3_177_74 c3_178_75 c3_179_76 c3_180_77 set community 0:103 route-map calculator permit 14952 match community c3_181_78 c3_182_79 c3_183_80 c3_184_81 c3_185_82 set community 0:103 route-map calculator permit 14953 match community c3_186_83 c3_187_84 c3_188_85 c3_189_86 c3_190_87 set community 0:103 route-map calculator permit 14954 match community c3_191_88 c3_192_89 c3_193_90 c3_194_91 c3_195_92 set community 0:103 route-map calculator permit 14955 match community c3_196_93 c3_197_94 c3_198_95 c3_199_96 c3_200_97 set community 0:103 route-map calculator permit 14956 match community c3_201_98 c3_202_99 c3_203_100 c3_204_101 c3_205_102 set community 0:103 route-map calculator permit 14957 match community c4_206_2 c3_206_103 c4_207_2 c3_207_104 c3_208_105 set community 0:103 route-map calculator permit 14958 match community c3_209_106 c3_210_107 c3_211_108 c3_212_109 c3_213_110 set community 0:103 route-map calculator permit 14959 match community c3_214_111 c3_215_112 c3_216_113 c3_217_114 c3_218_115 set community 0:103 route-map calculator permit 14960 match community c3_219_116 c3_220_117 c3_221_118 c3_222_119 c3_223_120 set community 0:103 route-map calculator permit 14961 match community c3_224_121 c3_225_122 c3_226_123 c3_227_124 c3_228_125 set community 0:103 route-map calculator permit 14962 match community c3_229_126 c3_230_127 c3_231_128 c3_232_129 c3_233_130 set community 0:103 route-map calculator permit 14963 match community c3_234_131 c3_235_132 c3_236_133 c3_237_134 c3_238_135 set community 0:103 route-map calculator permit 14964 match community c3_239_136 c3_240_137 c3_241_138 c3_242_139 c3_243_140 set community 0:103 route-map calculator permit 14965 match community c3_244_141 c3_245_142 c3_246_143 c3_247_144 c3_248_145 set community 0:103 route-map calculator permit 14966 match community c3_249_146 c3_250_147 c3_251_148 c3_252_149 c3_253_150 set community 0:103 route-map calculator permit 14967 match community c3_254_151 c3_255_152 c3_256_153 set community 0:103 ip community-list standard 2_5_252 permit 65000:2 0:5 0:252 ip community-list standard 2_6_210 permit 65000:2 0:6 0:210 ip community-list standard 2_7_180 permit 65000:2 0:7 0:180 ip community-list standard 2_9_140 permit 65000:2 0:9 0:140 ip community-list standard 2_10_126 permit 65000:2 0:10 0:126 ip community-list standard 2_12_105 permit 65000:2 0:12 0:105 ip community-list standard 2_14_90 permit 65000:2 0:14 0:90 ip community-list standard 2_15_84 permit 65000:2 0:15 0:84 ip community-list standard 2_18_70 permit 65000:2 0:18 0:70 ip community-list standard 2_20_63 permit 65000:2 0:20 0:63 ip community-list standard 2_21_60 permit 65000:2 0:21 0:60 ip community-list standard 2_28_45 permit 65000:2 0:28 0:45 ip community-list standard 2_30_42 permit 65000:2 0:30 0:42 ip community-list standard 2_35_36 permit 65000:2 0:35 0:36 route-map calculator permit 14968 match community 2_5_252 2_6_210 2_7_180 2_9_140 2_10_126 set community 0:1260 route-map calculator permit 14969 match community 2_12_105 2_14_90 2_15_84 2_18_70 2_20_63 set community 0:1260 route-map calculator permit 14970 match community 2_21_60 2_28_45 2_30_42 2_35_36 set community 0:1260 ip community-list standard 2_22_155 permit 65000:2 0:22 0:155 ip community-list standard 2_31_110 permit 65000:2 0:31 0:110 ip community-list standard 2_55_62 permit 65000:2 0:55 0:62 route-map calculator permit 14971 match community 2_22_155 2_31_110 2_55_62 set community 0:3410 ip community-list standard 2_31_111 permit 65000:2 0:31 0:111 ip community-list standard 2_37_93 permit 65000:2 0:37 0:93 route-map calculator permit 14972 match community 2_31_111 2_37_93 set community 0:3441 ip community-list standard 2_3_252 permit 65000:2 0:3 0:252 ip community-list standard 2_4_189 permit 65000:2 0:4 0:189 ip community-list standard 2_6_126 permit 65000:2 0:6 0:126 ip community-list standard 2_7_108 permit 65000:2 0:7 0:108 ip community-list standard 2_9_84 permit 65000:2 0:9 0:84 ip community-list standard 2_12_63 permit 65000:2 0:12 0:63 ip community-list standard 2_14_54 permit 65000:2 0:14 0:54 ip community-list standard 2_18_42 permit 65000:2 0:18 0:42 ip community-list standard 2_21_36 permit 65000:2 0:21 0:36 ip community-list standard 2_27_28 permit 65000:2 0:27 0:28 route-map calculator permit 14973 match community 2_3_252 2_4_189 2_6_126 2_7_108 2_9_84 set community 0:756 route-map calculator permit 14974 match community 2_12_63 2_14_54 2_18_42 2_21_36 2_27_28 set community 0:756 ip community-list standard 2_13_182 permit 65000:2 0:13 0:182 ip community-list standard 2_14_169 permit 65000:2 0:14 0:169 ip community-list standard 2_26_91 permit 65000:2 0:26 0:91 route-map calculator permit 14975 match community 2_13_182 2_14_169 2_26_91 set community 0:2366 ip community-list standard 2_54_177 permit 65000:2 0:54 0:177 ip community-list standard 2_59_162 permit 65000:2 0:59 0:162 ip community-list standard 2_81_118 permit 65000:2 0:81 0:118 route-map calculator permit 14976 match community 2_54_177 2_59_162 2_81_118 set community 0:9558 ip community-list standard 2_95_246 permit 65000:2 0:95 0:246 ip community-list standard 2_114_205 permit 65000:2 0:114 0:205 ip community-list standard 2_123_190 permit 65000:2 0:123 0:190 route-map calculator permit 14977 match community 2_95_246 2_114_205 2_123_190 set community 0:23370 ip community-list standard 2_210_250 permit 65000:2 0:210 0:250 route-map calculator permit 14978 match community 2_210_250 set community 0:52500 ip community-list standard 1_1_251 permit 65000:1 0:1 0:251 ip community-list standard 2_1_252 permit 65000:2 0:1 0:252 ip community-list standard 2_2_126 permit 65000:2 0:2 0:126 ip community-list standard 1_2_250 permit 65000:1 0:2 0:250 ip community-list standard 2_3_84 permit 65000:2 0:3 0:84 ip community-list standard 1_3_249 permit 65000:1 0:3 0:249 ip community-list standard 2_4_63 permit 65000:2 0:4 0:63 ip community-list standard 1_4_248 permit 65000:1 0:4 0:248 ip community-list standard 1_5_247 permit 65000:1 0:5 0:247 ip community-list standard 2_6_42 permit 65000:2 0:6 0:42 ip community-list standard 1_6_246 permit 65000:1 0:6 0:246 ip community-list standard 2_7_36 permit 65000:2 0:7 0:36 ip community-list standard 1_7_245 permit 65000:1 0:7 0:245 ip community-list standard 1_8_244 permit 65000:1 0:8 0:244 ip community-list standard 2_9_28 permit 65000:2 0:9 0:28 ip community-list standard 1_9_243 permit 65000:1 0:9 0:243 ip community-list standard 1_10_242 permit 65000:1 0:10 0:242 ip community-list standard 1_11_241 permit 65000:1 0:11 0:241 ip community-list standard 2_12_21 permit 65000:2 0:12 0:21 ip community-list standard 1_12_240 permit 65000:1 0:12 0:240 ip community-list standard 1_13_239 permit 65000:1 0:13 0:239 ip community-list standard 2_14_18 permit 65000:2 0:14 0:18 ip community-list standard 1_14_238 permit 65000:1 0:14 0:238 ip community-list standard 1_15_237 permit 65000:1 0:15 0:237 ip community-list standard 1_16_236 permit 65000:1 0:16 0:236 ip community-list standard 1_17_235 permit 65000:1 0:17 0:235 ip community-list standard 1_18_234 permit 65000:1 0:18 0:234 ip community-list standard 1_19_233 permit 65000:1 0:19 0:233 ip community-list standard 1_20_232 permit 65000:1 0:20 0:232 ip community-list standard 1_21_231 permit 65000:1 0:21 0:231 ip community-list standard 1_22_230 permit 65000:1 0:22 0:230 ip community-list standard 1_23_229 permit 65000:1 0:23 0:229 ip community-list standard 1_24_228 permit 65000:1 0:24 0:228 ip community-list standard 1_25_227 permit 65000:1 0:25 0:227 ip community-list standard 1_26_226 permit 65000:1 0:26 0:226 ip community-list standard 1_27_225 permit 65000:1 0:27 0:225 ip community-list standard 1_28_224 permit 65000:1 0:28 0:224 ip community-list standard 1_29_223 permit 65000:1 0:29 0:223 ip community-list standard 1_30_222 permit 65000:1 0:30 0:222 ip community-list standard 1_31_221 permit 65000:1 0:31 0:221 ip community-list standard 1_32_220 permit 65000:1 0:32 0:220 ip community-list standard 1_33_219 permit 65000:1 0:33 0:219 ip community-list standard 1_34_218 permit 65000:1 0:34 0:218 ip community-list standard 1_35_217 permit 65000:1 0:35 0:217 ip community-list standard 1_36_216 permit 65000:1 0:36 0:216 ip community-list standard 1_37_215 permit 65000:1 0:37 0:215 ip community-list standard 1_38_214 permit 65000:1 0:38 0:214 ip community-list standard 1_39_213 permit 65000:1 0:39 0:213 ip community-list standard 1_40_212 permit 65000:1 0:40 0:212 ip community-list standard 1_41_211 permit 65000:1 0:41 0:211 ip community-list standard 1_42_210 permit 65000:1 0:42 0:210 ip community-list standard 1_43_209 permit 65000:1 0:43 0:209 ip community-list standard 1_44_208 permit 65000:1 0:44 0:208 ip community-list standard 1_45_207 permit 65000:1 0:45 0:207 ip community-list standard 1_46_206 permit 65000:1 0:46 0:206 ip community-list standard 1_47_205 permit 65000:1 0:47 0:205 ip community-list standard 1_48_204 permit 65000:1 0:48 0:204 ip community-list standard 1_49_203 permit 65000:1 0:49 0:203 ip community-list standard 1_50_202 permit 65000:1 0:50 0:202 ip community-list standard 1_51_201 permit 65000:1 0:51 0:201 ip community-list standard 1_52_200 permit 65000:1 0:52 0:200 ip community-list standard 1_53_199 permit 65000:1 0:53 0:199 ip community-list standard 1_54_198 permit 65000:1 0:54 0:198 ip community-list standard 1_55_197 permit 65000:1 0:55 0:197 ip community-list standard 1_56_196 permit 65000:1 0:56 0:196 ip community-list standard 1_57_195 permit 65000:1 0:57 0:195 ip community-list standard 1_58_194 permit 65000:1 0:58 0:194 ip community-list standard 1_59_193 permit 65000:1 0:59 0:193 ip community-list standard 1_60_192 permit 65000:1 0:60 0:192 ip community-list standard 1_61_191 permit 65000:1 0:61 0:191 ip community-list standard 1_62_190 permit 65000:1 0:62 0:190 ip community-list standard 1_63_189 permit 65000:1 0:63 0:189 ip community-list standard 1_64_188 permit 65000:1 0:64 0:188 ip community-list standard 1_65_187 permit 65000:1 0:65 0:187 ip community-list standard 1_66_186 permit 65000:1 0:66 0:186 ip community-list standard 1_67_185 permit 65000:1 0:67 0:185 ip community-list standard 1_68_184 permit 65000:1 0:68 0:184 ip community-list standard 1_69_183 permit 65000:1 0:69 0:183 ip community-list standard 1_70_182 permit 65000:1 0:70 0:182 ip community-list standard 1_71_181 permit 65000:1 0:71 0:181 ip community-list standard 1_72_180 permit 65000:1 0:72 0:180 ip community-list standard 1_73_179 permit 65000:1 0:73 0:179 ip community-list standard 1_74_178 permit 65000:1 0:74 0:178 ip community-list standard 1_75_177 permit 65000:1 0:75 0:177 ip community-list standard 1_76_176 permit 65000:1 0:76 0:176 ip community-list standard 1_77_175 permit 65000:1 0:77 0:175 ip community-list standard 1_78_174 permit 65000:1 0:78 0:174 ip community-list standard 1_79_173 permit 65000:1 0:79 0:173 ip community-list standard 1_80_172 permit 65000:1 0:80 0:172 ip community-list standard 1_81_171 permit 65000:1 0:81 0:171 ip community-list standard 1_82_170 permit 65000:1 0:82 0:170 ip community-list standard 1_83_169 permit 65000:1 0:83 0:169 ip community-list standard 1_84_168 permit 65000:1 0:84 0:168 ip community-list standard 1_85_167 permit 65000:1 0:85 0:167 ip community-list standard 1_86_166 permit 65000:1 0:86 0:166 ip community-list standard 1_87_165 permit 65000:1 0:87 0:165 ip community-list standard 1_88_164 permit 65000:1 0:88 0:164 ip community-list standard 1_89_163 permit 65000:1 0:89 0:163 ip community-list standard 1_90_162 permit 65000:1 0:90 0:162 ip community-list standard 1_91_161 permit 65000:1 0:91 0:161 ip community-list standard 1_92_160 permit 65000:1 0:92 0:160 ip community-list standard 1_93_159 permit 65000:1 0:93 0:159 ip community-list standard 1_94_158 permit 65000:1 0:94 0:158 ip community-list standard 1_95_157 permit 65000:1 0:95 0:157 ip community-list standard 1_96_156 permit 65000:1 0:96 0:156 ip community-list standard 1_97_155 permit 65000:1 0:97 0:155 ip community-list standard 1_98_154 permit 65000:1 0:98 0:154 ip community-list standard 1_99_153 permit 65000:1 0:99 0:153 ip community-list standard 1_100_152 permit 65000:1 0:100 0:152 ip community-list standard 1_101_151 permit 65000:1 0:101 0:151 ip community-list standard 1_102_150 permit 65000:1 0:102 0:150 ip community-list standard 1_103_149 permit 65000:1 0:103 0:149 ip community-list standard 1_104_148 permit 65000:1 0:104 0:148 ip community-list standard 1_105_147 permit 65000:1 0:105 0:147 ip community-list standard 1_106_146 permit 65000:1 0:106 0:146 ip community-list standard 1_107_145 permit 65000:1 0:107 0:145 ip community-list standard 1_108_144 permit 65000:1 0:108 0:144 ip community-list standard 1_109_143 permit 65000:1 0:109 0:143 ip community-list standard 1_110_142 permit 65000:1 0:110 0:142 ip community-list standard 1_111_141 permit 65000:1 0:111 0:141 ip community-list standard 1_112_140 permit 65000:1 0:112 0:140 ip community-list standard 1_113_139 permit 65000:1 0:113 0:139 ip community-list standard 1_114_138 permit 65000:1 0:114 0:138 ip community-list standard 1_115_137 permit 65000:1 0:115 0:137 ip community-list standard 1_116_136 permit 65000:1 0:116 0:136 ip community-list standard 1_117_135 permit 65000:1 0:117 0:135 ip community-list standard 1_118_134 permit 65000:1 0:118 0:134 ip community-list standard 1_119_133 permit 65000:1 0:119 0:133 ip community-list standard 1_120_132 permit 65000:1 0:120 0:132 ip community-list standard 1_121_131 permit 65000:1 0:121 0:131 ip community-list standard 1_122_130 permit 65000:1 0:122 0:130 ip community-list standard 1_123_129 permit 65000:1 0:123 0:129 ip community-list standard 1_124_128 permit 65000:1 0:124 0:128 ip community-list standard 1_125_127 permit 65000:1 0:125 0:127 ip community-list standard 1_126_126 permit 65000:1 0:126 0:126 ip community-list expanded c252 permit 1 ^65000:4_0:252_0:1$ ip community-list expanded c252 permit 2 ^65000:3_0:253_0:1$ ip community-list expanded c252 permit 3 ^65000:3_0:254_0:2$ ip community-list expanded c252 permit 4 ^65000:3_0:255_0:3$ ip community-list expanded c252 permit 5 ^65000:3_0:256_0:4$ route-map calculator permit 14979 match community 1_1_251 2_1_252 2_2_126 1_2_250 2_3_84 set community 0:252 route-map calculator permit 14980 match community 1_3_249 2_4_63 1_4_248 1_5_247 2_6_42 set community 0:252 route-map calculator permit 14981 match community 1_6_246 2_7_36 1_7_245 1_8_244 2_9_28 set community 0:252 route-map calculator permit 14982 match community 1_9_243 1_10_242 1_11_241 2_12_21 1_12_240 set community 0:252 route-map calculator permit 14983 match community 1_13_239 2_14_18 1_14_238 1_15_237 1_16_236 set community 0:252 route-map calculator permit 14984 match community 1_17_235 1_18_234 1_19_233 1_20_232 1_21_231 set community 0:252 route-map calculator permit 14985 match community 1_22_230 1_23_229 1_24_228 1_25_227 1_26_226 set community 0:252 route-map calculator permit 14986 match community 1_27_225 1_28_224 1_29_223 1_30_222 1_31_221 set community 0:252 route-map calculator permit 14987 match community 1_32_220 1_33_219 1_34_218 1_35_217 1_36_216 set community 0:252 route-map calculator permit 14988 match community 1_37_215 1_38_214 1_39_213 1_40_212 1_41_211 set community 0:252 route-map calculator permit 14989 match community 1_42_210 1_43_209 1_44_208 1_45_207 1_46_206 set community 0:252 route-map calculator permit 14990 match community 1_47_205 1_48_204 1_49_203 1_50_202 1_51_201 set community 0:252 route-map calculator permit 14991 match community 1_52_200 1_53_199 1_54_198 1_55_197 1_56_196 set community 0:252 route-map calculator permit 14992 match community 1_57_195 1_58_194 1_59_193 1_60_192 1_61_191 set community 0:252 route-map calculator permit 14993 match community 1_62_190 1_63_189 1_64_188 1_65_187 1_66_186 set community 0:252 route-map calculator permit 14994 match community 1_67_185 1_68_184 1_69_183 1_70_182 1_71_181 set community 0:252 route-map calculator permit 14995 match community 1_72_180 1_73_179 1_74_178 1_75_177 1_76_176 set community 0:252 route-map calculator permit 14996 match community 1_77_175 1_78_174 1_79_173 1_80_172 1_81_171 set community 0:252 route-map calculator permit 14997 match community 1_82_170 1_83_169 1_84_168 1_85_167 1_86_166 set community 0:252 route-map calculator permit 14998 match community 1_87_165 1_88_164 1_89_163 1_90_162 1_91_161 set community 0:252 route-map calculator permit 14999 match community 1_92_160 1_93_159 1_94_158 1_95_157 1_96_156 set community 0:252 route-map calculator permit 15000 match community 1_97_155 1_98_154 1_99_153 1_100_152 1_101_151 set community 0:252 route-map calculator permit 15001 match community 1_102_150 1_103_149 1_104_148 1_105_147 1_106_146 set community 0:252 route-map calculator permit 15002 match community 1_107_145 1_108_144 1_109_143 1_110_142 1_111_141 set community 0:252 route-map calculator permit 15003 match community 1_112_140 1_113_139 1_114_138 1_115_137 1_116_136 set community 0:252 route-map calculator permit 15004 match community 1_117_135 1_118_134 1_119_133 1_120_132 1_121_131 set community 0:252 route-map calculator permit 15005 match community 1_122_130 1_123_129 1_124_128 1_125_127 1_126_126 set community 0:252 route-map calculator permit 15006 match community c4_252_1 c3_253_1 c3_254_2 c3_255_3 c3_256_4 set community 0:252 ip community-list standard 2_42_227 permit 65000:2 0:42 0:227 route-map calculator permit 15007 match community 2_42_227 set community 0:9534 ip community-list standard 2_61_205 permit 65000:2 0:61 0:205 route-map calculator permit 15008 match community 2_61_205 set community 0:12505 ip community-list standard 2_121_137 permit 65000:2 0:121 0:137 route-map calculator permit 15009 match community 2_121_137 set community 0:16577 ip community-list standard 2_226_228 permit 65000:2 0:226 0:228 route-map calculator permit 15010 match community 2_226_228 set community 0:51528 ip community-list standard 2_137_215 permit 65000:2 0:137 0:215 route-map calculator permit 15011 match community 2_137_215 set community 0:29455 ip community-list standard 2_91_109 permit 65000:2 0:91 0:109 route-map calculator permit 15012 match community 2_91_109 set community 0:9919 ip community-list standard 2_124_250 permit 65000:2 0:124 0:250 ip community-list standard 2_125_248 permit 65000:2 0:125 0:248 ip community-list standard 2_155_200 permit 65000:2 0:155 0:200 route-map calculator permit 15013 match community 2_124_250 2_125_248 2_155_200 set community 0:31000 ip community-list standard 2_13_217 permit 65000:2 0:13 0:217 ip community-list standard 2_31_91 permit 65000:2 0:31 0:91 route-map calculator permit 15014 match community 2_13_217 2_31_91 set community 0:2821 ip community-list standard 2_10_134 permit 65000:2 0:10 0:134 ip community-list standard 2_20_67 permit 65000:2 0:20 0:67 route-map calculator permit 15015 match community 2_10_134 2_20_67 set community 0:1340 ip community-list standard 2_111_226 permit 65000:2 0:111 0:226 ip community-list standard 2_113_222 permit 65000:2 0:113 0:222 route-map calculator permit 15016 match community 2_111_226 2_113_222 set community 0:25086 ip community-list standard 2_38_129 permit 65000:2 0:38 0:129 ip community-list standard 2_43_114 permit 65000:2 0:43 0:114 ip community-list standard 2_57_86 permit 65000:2 0:57 0:86 route-map calculator permit 15017 match community 2_38_129 2_43_114 2_57_86 set community 0:4902 ip community-list standard 2_86_254 permit 65000:2 0:86 0:254 ip community-list standard 2_127_172 permit 65000:2 0:127 0:172 route-map calculator permit 15018 match community 2_86_254 2_127_172 set community 0:21844 ip community-list standard 2_50_226 permit 65000:2 0:50 0:226 ip community-list standard 2_100_113 permit 65000:2 0:100 0:113 route-map calculator permit 15019 match community 2_50_226 2_100_113 set community 0:11300 ip community-list standard 2_73_95 permit 65000:2 0:73 0:95 route-map calculator permit 15020 match community 2_73_95 set community 0:6935 ip community-list standard 2_191_213 permit 65000:2 0:191 0:213 route-map calculator permit 15021 match community 2_191_213 set community 0:40683 ip community-list standard 2_175_194 permit 65000:2 0:175 0:194 route-map calculator permit 15022 match community 2_175_194 set community 0:33950 ip community-list standard 2_97_256 permit 65000:2 0:97 0:256 ip community-list standard 2_128_194 permit 65000:2 0:128 0:194 route-map calculator permit 15023 match community 2_97_256 2_128_194 set community 0:24832 ip community-list standard 2_77_131 permit 65000:2 0:77 0:131 route-map calculator permit 15024 match community 2_77_131 set community 0:10087 ip community-list standard 2_77_250 permit 65000:2 0:77 0:250 ip community-list standard 2_110_175 permit 65000:2 0:110 0:175 ip community-list standard 2_125_154 permit 65000:2 0:125 0:154 route-map calculator permit 15025 match community 2_77_250 2_110_175 2_125_154 set community 0:19250 ip community-list standard 1_1_256 permit 65000:1 0:1 0:256 ip community-list standard 1_2_255 permit 65000:1 0:2 0:255 ip community-list standard 1_3_254 permit 65000:1 0:3 0:254 ip community-list standard 1_4_253 permit 65000:1 0:4 0:253 ip community-list standard 1_5_252 permit 65000:1 0:5 0:252 ip community-list standard 1_6_251 permit 65000:1 0:6 0:251 ip community-list standard 1_7_250 permit 65000:1 0:7 0:250 ip community-list standard 1_8_249 permit 65000:1 0:8 0:249 ip community-list standard 1_9_248 permit 65000:1 0:9 0:248 ip community-list standard 1_10_247 permit 65000:1 0:10 0:247 ip community-list standard 1_11_246 permit 65000:1 0:11 0:246 ip community-list standard 1_12_245 permit 65000:1 0:12 0:245 ip community-list standard 1_13_244 permit 65000:1 0:13 0:244 ip community-list standard 1_14_243 permit 65000:1 0:14 0:243 ip community-list standard 1_15_242 permit 65000:1 0:15 0:242 ip community-list standard 1_16_241 permit 65000:1 0:16 0:241 ip community-list standard 1_17_240 permit 65000:1 0:17 0:240 ip community-list standard 1_18_239 permit 65000:1 0:18 0:239 ip community-list standard 1_19_238 permit 65000:1 0:19 0:238 ip community-list standard 1_20_237 permit 65000:1 0:20 0:237 ip community-list standard 1_21_236 permit 65000:1 0:21 0:236 ip community-list standard 1_22_235 permit 65000:1 0:22 0:235 ip community-list standard 1_23_234 permit 65000:1 0:23 0:234 ip community-list standard 1_24_233 permit 65000:1 0:24 0:233 ip community-list standard 1_25_232 permit 65000:1 0:25 0:232 ip community-list standard 1_26_231 permit 65000:1 0:26 0:231 ip community-list standard 1_27_230 permit 65000:1 0:27 0:230 ip community-list standard 1_28_229 permit 65000:1 0:28 0:229 ip community-list standard 1_29_228 permit 65000:1 0:29 0:228 ip community-list standard 1_30_227 permit 65000:1 0:30 0:227 ip community-list standard 1_31_226 permit 65000:1 0:31 0:226 ip community-list standard 1_32_225 permit 65000:1 0:32 0:225 ip community-list standard 1_33_224 permit 65000:1 0:33 0:224 ip community-list standard 1_34_223 permit 65000:1 0:34 0:223 ip community-list standard 1_35_222 permit 65000:1 0:35 0:222 ip community-list standard 1_36_221 permit 65000:1 0:36 0:221 ip community-list standard 1_37_220 permit 65000:1 0:37 0:220 ip community-list standard 1_38_219 permit 65000:1 0:38 0:219 ip community-list standard 1_39_218 permit 65000:1 0:39 0:218 ip community-list standard 1_40_217 permit 65000:1 0:40 0:217 ip community-list standard 1_41_216 permit 65000:1 0:41 0:216 ip community-list standard 1_42_215 permit 65000:1 0:42 0:215 ip community-list standard 1_43_214 permit 65000:1 0:43 0:214 ip community-list standard 1_44_213 permit 65000:1 0:44 0:213 ip community-list standard 1_45_212 permit 65000:1 0:45 0:212 ip community-list standard 1_46_211 permit 65000:1 0:46 0:211 ip community-list standard 1_47_210 permit 65000:1 0:47 0:210 ip community-list standard 1_48_209 permit 65000:1 0:48 0:209 ip community-list standard 1_49_208 permit 65000:1 0:49 0:208 ip community-list standard 1_50_207 permit 65000:1 0:50 0:207 ip community-list standard 1_51_206 permit 65000:1 0:51 0:206 ip community-list standard 1_52_205 permit 65000:1 0:52 0:205 ip community-list standard 1_53_204 permit 65000:1 0:53 0:204 ip community-list standard 1_54_203 permit 65000:1 0:54 0:203 ip community-list standard 1_55_202 permit 65000:1 0:55 0:202 ip community-list standard 1_56_201 permit 65000:1 0:56 0:201 ip community-list standard 1_57_200 permit 65000:1 0:57 0:200 ip community-list standard 1_58_199 permit 65000:1 0:58 0:199 ip community-list standard 1_59_198 permit 65000:1 0:59 0:198 ip community-list standard 1_60_197 permit 65000:1 0:60 0:197 ip community-list standard 1_61_196 permit 65000:1 0:61 0:196 ip community-list standard 1_62_195 permit 65000:1 0:62 0:195 ip community-list standard 1_63_194 permit 65000:1 0:63 0:194 ip community-list standard 1_64_193 permit 65000:1 0:64 0:193 ip community-list standard 1_65_192 permit 65000:1 0:65 0:192 ip community-list standard 1_66_191 permit 65000:1 0:66 0:191 ip community-list standard 1_67_190 permit 65000:1 0:67 0:190 ip community-list standard 1_68_189 permit 65000:1 0:68 0:189 ip community-list standard 1_69_188 permit 65000:1 0:69 0:188 ip community-list standard 1_70_187 permit 65000:1 0:70 0:187 ip community-list standard 1_71_186 permit 65000:1 0:71 0:186 ip community-list standard 1_72_185 permit 65000:1 0:72 0:185 ip community-list standard 1_73_184 permit 65000:1 0:73 0:184 ip community-list standard 1_74_183 permit 65000:1 0:74 0:183 ip community-list standard 1_75_182 permit 65000:1 0:75 0:182 ip community-list standard 1_76_181 permit 65000:1 0:76 0:181 ip community-list standard 1_77_180 permit 65000:1 0:77 0:180 ip community-list standard 1_78_179 permit 65000:1 0:78 0:179 ip community-list standard 1_79_178 permit 65000:1 0:79 0:178 ip community-list standard 1_80_177 permit 65000:1 0:80 0:177 ip community-list standard 1_81_176 permit 65000:1 0:81 0:176 ip community-list standard 1_82_175 permit 65000:1 0:82 0:175 ip community-list standard 1_83_174 permit 65000:1 0:83 0:174 ip community-list standard 1_84_173 permit 65000:1 0:84 0:173 ip community-list standard 1_85_172 permit 65000:1 0:85 0:172 ip community-list standard 1_86_171 permit 65000:1 0:86 0:171 ip community-list standard 1_87_170 permit 65000:1 0:87 0:170 ip community-list standard 1_88_169 permit 65000:1 0:88 0:169 ip community-list standard 1_89_168 permit 65000:1 0:89 0:168 ip community-list standard 1_90_167 permit 65000:1 0:90 0:167 ip community-list standard 1_91_166 permit 65000:1 0:91 0:166 ip community-list standard 1_92_165 permit 65000:1 0:92 0:165 ip community-list standard 1_93_164 permit 65000:1 0:93 0:164 ip community-list standard 1_94_163 permit 65000:1 0:94 0:163 ip community-list standard 1_95_162 permit 65000:1 0:95 0:162 ip community-list standard 1_96_161 permit 65000:1 0:96 0:161 ip community-list standard 1_97_160 permit 65000:1 0:97 0:160 ip community-list standard 1_98_159 permit 65000:1 0:98 0:159 ip community-list standard 1_99_158 permit 65000:1 0:99 0:158 ip community-list standard 1_100_157 permit 65000:1 0:100 0:157 ip community-list standard 1_101_156 permit 65000:1 0:101 0:156 ip community-list standard 1_102_155 permit 65000:1 0:102 0:155 ip community-list standard 1_103_154 permit 65000:1 0:103 0:154 ip community-list standard 1_104_153 permit 65000:1 0:104 0:153 ip community-list standard 1_105_152 permit 65000:1 0:105 0:152 ip community-list standard 1_106_151 permit 65000:1 0:106 0:151 ip community-list standard 1_107_150 permit 65000:1 0:107 0:150 ip community-list standard 1_108_149 permit 65000:1 0:108 0:149 ip community-list standard 1_109_148 permit 65000:1 0:109 0:148 ip community-list standard 1_110_147 permit 65000:1 0:110 0:147 ip community-list standard 1_111_146 permit 65000:1 0:111 0:146 ip community-list standard 1_112_145 permit 65000:1 0:112 0:145 ip community-list standard 1_113_144 permit 65000:1 0:113 0:144 ip community-list standard 1_114_143 permit 65000:1 0:114 0:143 ip community-list standard 1_115_142 permit 65000:1 0:115 0:142 ip community-list standard 1_116_141 permit 65000:1 0:116 0:141 ip community-list standard 1_117_140 permit 65000:1 0:117 0:140 ip community-list standard 1_118_139 permit 65000:1 0:118 0:139 ip community-list standard 1_119_138 permit 65000:1 0:119 0:138 ip community-list standard 1_120_137 permit 65000:1 0:120 0:137 ip community-list standard 1_121_136 permit 65000:1 0:121 0:136 ip community-list standard 1_122_135 permit 65000:1 0:122 0:135 ip community-list standard 1_123_134 permit 65000:1 0:123 0:134 ip community-list standard 1_124_133 permit 65000:1 0:124 0:133 ip community-list standard 1_125_132 permit 65000:1 0:125 0:132 ip community-list standard 1_126_131 permit 65000:1 0:126 0:131 ip community-list standard 1_127_130 permit 65000:1 0:127 0:130 ip community-list standard 1_128_129 permit 65000:1 0:128 0:129 route-map calculator permit 15026 match community 1_1_256 1_2_255 1_3_254 1_4_253 1_5_252 set community 0:257 route-map calculator permit 15027 match community 1_6_251 1_7_250 1_8_249 1_9_248 1_10_247 set community 0:257 route-map calculator permit 15028 match community 1_11_246 1_12_245 1_13_244 1_14_243 1_15_242 set community 0:257 route-map calculator permit 15029 match community 1_16_241 1_17_240 1_18_239 1_19_238 1_20_237 set community 0:257 route-map calculator permit 15030 match community 1_21_236 1_22_235 1_23_234 1_24_233 1_25_232 set community 0:257 route-map calculator permit 15031 match community 1_26_231 1_27_230 1_28_229 1_29_228 1_30_227 set community 0:257 route-map calculator permit 15032 match community 1_31_226 1_32_225 1_33_224 1_34_223 1_35_222 set community 0:257 route-map calculator permit 15033 match community 1_36_221 1_37_220 1_38_219 1_39_218 1_40_217 set community 0:257 route-map calculator permit 15034 match community 1_41_216 1_42_215 1_43_214 1_44_213 1_45_212 set community 0:257 route-map calculator permit 15035 match community 1_46_211 1_47_210 1_48_209 1_49_208 1_50_207 set community 0:257 route-map calculator permit 15036 match community 1_51_206 1_52_205 1_53_204 1_54_203 1_55_202 set community 0:257 route-map calculator permit 15037 match community 1_56_201 1_57_200 1_58_199 1_59_198 1_60_197 set community 0:257 route-map calculator permit 15038 match community 1_61_196 1_62_195 1_63_194 1_64_193 1_65_192 set community 0:257 route-map calculator permit 15039 match community 1_66_191 1_67_190 1_68_189 1_69_188 1_70_187 set community 0:257 route-map calculator permit 15040 match community 1_71_186 1_72_185 1_73_184 1_74_183 1_75_182 set community 0:257 route-map calculator permit 15041 match community 1_76_181 1_77_180 1_78_179 1_79_178 1_80_177 set community 0:257 route-map calculator permit 15042 match community 1_81_176 1_82_175 1_83_174 1_84_173 1_85_172 set community 0:257 route-map calculator permit 15043 match community 1_86_171 1_87_170 1_88_169 1_89_168 1_90_167 set community 0:257 route-map calculator permit 15044 match community 1_91_166 1_92_165 1_93_164 1_94_163 1_95_162 set community 0:257 route-map calculator permit 15045 match community 1_96_161 1_97_160 1_98_159 1_99_158 1_100_157 set community 0:257 route-map calculator permit 15046 match community 1_101_156 1_102_155 1_103_154 1_104_153 1_105_152 set community 0:257 route-map calculator permit 15047 match community 1_106_151 1_107_150 1_108_149 1_109_148 1_110_147 set community 0:257 route-map calculator permit 15048 match community 1_111_146 1_112_145 1_113_144 1_114_143 1_115_142 set community 0:257 route-map calculator permit 15049 match community 1_116_141 1_117_140 1_118_139 1_119_138 1_120_137 set community 0:257 route-map calculator permit 15050 match community 1_121_136 1_122_135 1_123_134 1_124_133 1_125_132 set community 0:257 route-map calculator permit 15051 match community 1_126_131 1_127_130 1_128_129 set community 0:257 ip community-list standard 2_177_198 permit 65000:2 0:177 0:198 route-map calculator permit 15052 match community 2_177_198 set community 0:35046 ip community-list standard 2_8_164 permit 65000:2 0:8 0:164 ip community-list standard 2_16_82 permit 65000:2 0:16 0:82 ip community-list standard 2_32_41 permit 65000:2 0:32 0:41 route-map calculator permit 15053 match community 2_8_164 2_16_82 2_32_41 set community 0:1312 ip community-list standard 1_1_202 permit 65000:1 0:1 0:202 ip community-list standard 2_1_203 permit 65000:2 0:1 0:203 ip community-list standard 1_2_201 permit 65000:1 0:2 0:201 ip community-list standard 1_3_200 permit 65000:1 0:3 0:200 ip community-list standard 1_4_199 permit 65000:1 0:4 0:199 ip community-list standard 1_5_198 permit 65000:1 0:5 0:198 ip community-list standard 1_6_197 permit 65000:1 0:6 0:197 ip community-list standard 2_7_29 permit 65000:2 0:7 0:29 ip community-list standard 1_7_196 permit 65000:1 0:7 0:196 ip community-list standard 1_8_195 permit 65000:1 0:8 0:195 ip community-list standard 1_9_194 permit 65000:1 0:9 0:194 ip community-list standard 1_10_193 permit 65000:1 0:10 0:193 ip community-list standard 1_11_192 permit 65000:1 0:11 0:192 ip community-list standard 1_12_191 permit 65000:1 0:12 0:191 ip community-list standard 1_13_190 permit 65000:1 0:13 0:190 ip community-list standard 1_14_189 permit 65000:1 0:14 0:189 ip community-list standard 1_15_188 permit 65000:1 0:15 0:188 ip community-list standard 1_16_187 permit 65000:1 0:16 0:187 ip community-list standard 1_17_186 permit 65000:1 0:17 0:186 ip community-list standard 1_18_185 permit 65000:1 0:18 0:185 ip community-list standard 1_19_184 permit 65000:1 0:19 0:184 ip community-list standard 1_20_183 permit 65000:1 0:20 0:183 ip community-list standard 1_21_182 permit 65000:1 0:21 0:182 ip community-list standard 1_22_181 permit 65000:1 0:22 0:181 ip community-list standard 1_23_180 permit 65000:1 0:23 0:180 ip community-list standard 1_24_179 permit 65000:1 0:24 0:179 ip community-list standard 1_25_178 permit 65000:1 0:25 0:178 ip community-list standard 1_26_177 permit 65000:1 0:26 0:177 ip community-list standard 1_27_176 permit 65000:1 0:27 0:176 ip community-list standard 1_28_175 permit 65000:1 0:28 0:175 ip community-list standard 1_29_174 permit 65000:1 0:29 0:174 ip community-list standard 1_30_173 permit 65000:1 0:30 0:173 ip community-list standard 1_31_172 permit 65000:1 0:31 0:172 ip community-list standard 1_32_171 permit 65000:1 0:32 0:171 ip community-list standard 1_33_170 permit 65000:1 0:33 0:170 ip community-list standard 1_34_169 permit 65000:1 0:34 0:169 ip community-list standard 1_35_168 permit 65000:1 0:35 0:168 ip community-list standard 1_36_167 permit 65000:1 0:36 0:167 ip community-list standard 1_37_166 permit 65000:1 0:37 0:166 ip community-list standard 1_38_165 permit 65000:1 0:38 0:165 ip community-list standard 1_39_164 permit 65000:1 0:39 0:164 ip community-list standard 1_40_163 permit 65000:1 0:40 0:163 ip community-list standard 1_41_162 permit 65000:1 0:41 0:162 ip community-list standard 1_42_161 permit 65000:1 0:42 0:161 ip community-list standard 1_43_160 permit 65000:1 0:43 0:160 ip community-list standard 1_44_159 permit 65000:1 0:44 0:159 ip community-list standard 1_45_158 permit 65000:1 0:45 0:158 ip community-list standard 1_46_157 permit 65000:1 0:46 0:157 ip community-list standard 1_47_156 permit 65000:1 0:47 0:156 ip community-list standard 1_48_155 permit 65000:1 0:48 0:155 ip community-list standard 1_49_154 permit 65000:1 0:49 0:154 ip community-list standard 1_50_153 permit 65000:1 0:50 0:153 ip community-list standard 1_51_152 permit 65000:1 0:51 0:152 ip community-list standard 1_52_151 permit 65000:1 0:52 0:151 ip community-list standard 1_53_150 permit 65000:1 0:53 0:150 ip community-list standard 1_54_149 permit 65000:1 0:54 0:149 ip community-list standard 1_55_148 permit 65000:1 0:55 0:148 ip community-list standard 1_56_147 permit 65000:1 0:56 0:147 ip community-list standard 1_57_146 permit 65000:1 0:57 0:146 ip community-list standard 1_58_145 permit 65000:1 0:58 0:145 ip community-list standard 1_59_144 permit 65000:1 0:59 0:144 ip community-list standard 1_60_143 permit 65000:1 0:60 0:143 ip community-list standard 1_61_142 permit 65000:1 0:61 0:142 ip community-list standard 1_62_141 permit 65000:1 0:62 0:141 ip community-list standard 1_63_140 permit 65000:1 0:63 0:140 ip community-list standard 1_64_139 permit 65000:1 0:64 0:139 ip community-list standard 1_65_138 permit 65000:1 0:65 0:138 ip community-list standard 1_66_137 permit 65000:1 0:66 0:137 ip community-list standard 1_67_136 permit 65000:1 0:67 0:136 ip community-list standard 1_68_135 permit 65000:1 0:68 0:135 ip community-list standard 1_69_134 permit 65000:1 0:69 0:134 ip community-list standard 1_70_133 permit 65000:1 0:70 0:133 ip community-list standard 1_71_132 permit 65000:1 0:71 0:132 ip community-list standard 1_72_131 permit 65000:1 0:72 0:131 ip community-list standard 1_73_130 permit 65000:1 0:73 0:130 ip community-list standard 1_74_129 permit 65000:1 0:74 0:129 ip community-list standard 1_75_128 permit 65000:1 0:75 0:128 ip community-list standard 1_76_127 permit 65000:1 0:76 0:127 ip community-list standard 1_77_126 permit 65000:1 0:77 0:126 ip community-list standard 1_78_125 permit 65000:1 0:78 0:125 ip community-list standard 1_79_124 permit 65000:1 0:79 0:124 ip community-list standard 1_80_123 permit 65000:1 0:80 0:123 ip community-list standard 1_81_122 permit 65000:1 0:81 0:122 ip community-list standard 1_82_121 permit 65000:1 0:82 0:121 ip community-list standard 1_83_120 permit 65000:1 0:83 0:120 ip community-list standard 1_84_119 permit 65000:1 0:84 0:119 ip community-list standard 1_85_118 permit 65000:1 0:85 0:118 ip community-list standard 1_86_117 permit 65000:1 0:86 0:117 ip community-list standard 1_87_116 permit 65000:1 0:87 0:116 ip community-list standard 1_88_115 permit 65000:1 0:88 0:115 ip community-list standard 1_89_114 permit 65000:1 0:89 0:114 ip community-list standard 1_90_113 permit 65000:1 0:90 0:113 ip community-list standard 1_91_112 permit 65000:1 0:91 0:112 ip community-list standard 1_92_111 permit 65000:1 0:92 0:111 ip community-list standard 1_93_110 permit 65000:1 0:93 0:110 ip community-list standard 1_94_109 permit 65000:1 0:94 0:109 ip community-list standard 1_95_108 permit 65000:1 0:95 0:108 ip community-list standard 1_96_107 permit 65000:1 0:96 0:107 ip community-list standard 1_97_106 permit 65000:1 0:97 0:106 ip community-list standard 1_98_105 permit 65000:1 0:98 0:105 ip community-list standard 1_99_104 permit 65000:1 0:99 0:104 ip community-list standard 1_100_103 permit 65000:1 0:100 0:103 ip community-list standard 1_101_102 permit 65000:1 0:101 0:102 ip community-list expanded c203 permit 1 ^65000:4_0:203_0:1$ ip community-list expanded c203 permit 2 ^65000:3_0:204_0:1$ ip community-list expanded c203 permit 3 ^65000:3_0:205_0:2$ ip community-list expanded c203 permit 4 ^65000:3_0:206_0:3$ ip community-list expanded c203 permit 5 ^65000:3_0:207_0:4$ ip community-list expanded c203 permit 6 ^65000:3_0:208_0:5$ ip community-list expanded c203 permit 7 ^65000:3_0:209_0:6$ ip community-list expanded c203 permit 8 ^65000:3_0:210_0:7$ ip community-list expanded c203 permit 9 ^65000:3_0:211_0:8$ ip community-list expanded c203 permit 10 ^65000:3_0:212_0:9$ ip community-list expanded c203 permit 11 ^65000:3_0:213_0:10$ ip community-list expanded c203 permit 12 ^65000:3_0:214_0:11$ ip community-list expanded c203 permit 13 ^65000:3_0:215_0:12$ ip community-list expanded c203 permit 14 ^65000:3_0:216_0:13$ ip community-list expanded c203 permit 15 ^65000:3_0:217_0:14$ ip community-list expanded c203 permit 16 ^65000:3_0:218_0:15$ ip community-list expanded c203 permit 17 ^65000:3_0:219_0:16$ ip community-list expanded c203 permit 18 ^65000:3_0:220_0:17$ ip community-list expanded c203 permit 19 ^65000:3_0:221_0:18$ ip community-list expanded c203 permit 20 ^65000:3_0:222_0:19$ ip community-list expanded c203 permit 21 ^65000:3_0:223_0:20$ ip community-list expanded c203 permit 22 ^65000:3_0:224_0:21$ ip community-list expanded c203 permit 23 ^65000:3_0:225_0:22$ ip community-list expanded c203 permit 24 ^65000:3_0:226_0:23$ ip community-list expanded c203 permit 25 ^65000:3_0:227_0:24$ ip community-list expanded c203 permit 26 ^65000:3_0:228_0:25$ ip community-list expanded c203 permit 27 ^65000:3_0:229_0:26$ ip community-list expanded c203 permit 28 ^65000:3_0:230_0:27$ ip community-list expanded c203 permit 29 ^65000:3_0:231_0:28$ ip community-list expanded c203 permit 30 ^65000:3_0:232_0:29$ ip community-list expanded c203 permit 31 ^65000:3_0:233_0:30$ ip community-list expanded c203 permit 32 ^65000:3_0:234_0:31$ ip community-list expanded c203 permit 33 ^65000:3_0:235_0:32$ ip community-list expanded c203 permit 34 ^65000:3_0:236_0:33$ ip community-list expanded c203 permit 35 ^65000:3_0:237_0:34$ ip community-list expanded c203 permit 36 ^65000:3_0:238_0:35$ ip community-list expanded c203 permit 37 ^65000:3_0:239_0:36$ ip community-list expanded c203 permit 38 ^65000:3_0:240_0:37$ ip community-list expanded c203 permit 39 ^65000:3_0:241_0:38$ ip community-list expanded c203 permit 40 ^65000:3_0:242_0:39$ ip community-list expanded c203 permit 41 ^65000:3_0:243_0:40$ ip community-list expanded c203 permit 42 ^65000:3_0:244_0:41$ ip community-list expanded c203 permit 43 ^65000:3_0:245_0:42$ ip community-list expanded c203 permit 44 ^65000:3_0:246_0:43$ ip community-list expanded c203 permit 45 ^65000:3_0:247_0:44$ ip community-list expanded c203 permit 46 ^65000:3_0:248_0:45$ ip community-list expanded c203 permit 47 ^65000:3_0:249_0:46$ ip community-list expanded c203 permit 48 ^65000:3_0:250_0:47$ ip community-list expanded c203 permit 49 ^65000:3_0:251_0:48$ ip community-list expanded c203 permit 50 ^65000:3_0:252_0:49$ ip community-list expanded c203 permit 51 ^65000:3_0:253_0:50$ ip community-list expanded c203 permit 52 ^65000:3_0:254_0:51$ ip community-list expanded c203 permit 53 ^65000:3_0:255_0:52$ ip community-list expanded c203 permit 54 ^65000:3_0:256_0:53$ route-map calculator permit 15054 match community 1_1_202 2_1_203 1_2_201 1_3_200 1_4_199 set community 0:203 route-map calculator permit 15055 match community 1_5_198 1_6_197 2_7_29 1_7_196 1_8_195 set community 0:203 route-map calculator permit 15056 match community 1_9_194 1_10_193 1_11_192 1_12_191 1_13_190 set community 0:203 route-map calculator permit 15057 match community 1_14_189 1_15_188 1_16_187 1_17_186 1_18_185 set community 0:203 route-map calculator permit 15058 match community 1_19_184 1_20_183 1_21_182 1_22_181 1_23_180 set community 0:203 route-map calculator permit 15059 match community 1_24_179 1_25_178 1_26_177 1_27_176 1_28_175 set community 0:203 route-map calculator permit 15060 match community 1_29_174 1_30_173 1_31_172 1_32_171 1_33_170 set community 0:203 route-map calculator permit 15061 match community 1_34_169 1_35_168 1_36_167 1_37_166 1_38_165 set community 0:203 route-map calculator permit 15062 match community 1_39_164 1_40_163 1_41_162 1_42_161 1_43_160 set community 0:203 route-map calculator permit 15063 match community 1_44_159 1_45_158 1_46_157 1_47_156 1_48_155 set community 0:203 route-map calculator permit 15064 match community 1_49_154 1_50_153 1_51_152 1_52_151 1_53_150 set community 0:203 route-map calculator permit 15065 match community 1_54_149 1_55_148 1_56_147 1_57_146 1_58_145 set community 0:203 route-map calculator permit 15066 match community 1_59_144 1_60_143 1_61_142 1_62_141 1_63_140 set community 0:203 route-map calculator permit 15067 match community 1_64_139 1_65_138 1_66_137 1_67_136 1_68_135 set community 0:203 route-map calculator permit 15068 match community 1_69_134 1_70_133 1_71_132 1_72_131 1_73_130 set community 0:203 route-map calculator permit 15069 match community 1_74_129 1_75_128 1_76_127 1_77_126 1_78_125 set community 0:203 route-map calculator permit 15070 match community 1_79_124 1_80_123 1_81_122 1_82_121 1_83_120 set community 0:203 route-map calculator permit 15071 match community 1_84_119 1_85_118 1_86_117 1_87_116 1_88_115 set community 0:203 route-map calculator permit 15072 match community 1_89_114 1_90_113 1_91_112 1_92_111 1_93_110 set community 0:203 route-map calculator permit 15073 match community 1_94_109 1_95_108 1_96_107 1_97_106 1_98_105 set community 0:203 route-map calculator permit 15074 match community 1_99_104 1_100_103 1_101_102 c4_203_1 c3_204_1 set community 0:203 route-map calculator permit 15075 match community c3_205_2 c3_206_3 c3_207_4 c3_208_5 c3_209_6 set community 0:203 route-map calculator permit 15076 match community c3_210_7 c3_211_8 c3_212_9 c3_213_10 c3_214_11 set community 0:203 route-map calculator permit 15077 match community c3_215_12 c3_216_13 c3_217_14 c3_218_15 c3_219_16 set community 0:203 route-map calculator permit 15078 match community c3_220_17 c3_221_18 c3_222_19 c3_223_20 c3_224_21 set community 0:203 route-map calculator permit 15079 match community c3_225_22 c3_226_23 c3_227_24 c3_228_25 c3_229_26 set community 0:203 route-map calculator permit 15080 match community c3_230_27 c3_231_28 c3_232_29 c3_233_30 c3_234_31 set community 0:203 route-map calculator permit 15081 match community c3_235_32 c3_236_33 c3_237_34 c3_238_35 c3_239_36 set community 0:203 route-map calculator permit 15082 match community c3_240_37 c3_241_38 c3_242_39 c3_243_40 c3_244_41 set community 0:203 route-map calculator permit 15083 match community c3_245_42 c3_246_43 c3_247_44 c3_248_45 c3_249_46 set community 0:203 route-map calculator permit 15084 match community c3_250_47 c3_251_48 c3_252_49 c3_253_50 c3_254_51 set community 0:203 route-map calculator permit 15085 match community c3_255_52 c3_256_53 set community 0:203 ip community-list standard 2_97_191 permit 65000:2 0:97 0:191 route-map calculator permit 15086 match community 2_97_191 set community 0:18527 ip community-list standard 2_83_214 permit 65000:2 0:83 0:214 ip community-list standard 2_107_166 permit 65000:2 0:107 0:166 route-map calculator permit 15087 match community 2_83_214 2_107_166 set community 0:17762 ip community-list standard 2_44_240 permit 65000:2 0:44 0:240 ip community-list standard 2_48_220 permit 65000:2 0:48 0:220 ip community-list standard 2_55_192 permit 65000:2 0:55 0:192 ip community-list standard 2_60_176 permit 65000:2 0:60 0:176 ip community-list standard 2_64_165 permit 65000:2 0:64 0:165 ip community-list standard 2_66_160 permit 65000:2 0:66 0:160 ip community-list standard 2_80_132 permit 65000:2 0:80 0:132 ip community-list standard 2_88_120 permit 65000:2 0:88 0:120 ip community-list standard 2_96_110 permit 65000:2 0:96 0:110 route-map calculator permit 15088 match community 2_44_240 2_48_220 2_55_192 2_60_176 2_64_165 set community 0:10560 route-map calculator permit 15089 match community 2_66_160 2_80_132 2_88_120 2_96_110 set community 0:10560 ip community-list standard 2_123_239 permit 65000:2 0:123 0:239 route-map calculator permit 15090 match community 2_123_239 set community 0:29397 ip community-list standard 2_108_251 permit 65000:2 0:108 0:251 route-map calculator permit 15091 match community 2_108_251 set community 0:27108 ip community-list standard 2_3_127 permit 65000:2 0:3 0:127 ip community-list standard 1_125_256 permit 65000:1 0:125 0:256 ip community-list standard 1_126_255 permit 65000:1 0:126 0:255 ip community-list standard 1_127_254 permit 65000:1 0:127 0:254 ip community-list standard 1_128_253 permit 65000:1 0:128 0:253 ip community-list standard 1_129_252 permit 65000:1 0:129 0:252 ip community-list standard 1_130_251 permit 65000:1 0:130 0:251 ip community-list standard 1_131_250 permit 65000:1 0:131 0:250 ip community-list standard 1_132_249 permit 65000:1 0:132 0:249 ip community-list standard 1_133_248 permit 65000:1 0:133 0:248 ip community-list standard 1_134_247 permit 65000:1 0:134 0:247 ip community-list standard 1_135_246 permit 65000:1 0:135 0:246 ip community-list standard 1_136_245 permit 65000:1 0:136 0:245 ip community-list standard 1_137_244 permit 65000:1 0:137 0:244 ip community-list standard 1_138_243 permit 65000:1 0:138 0:243 ip community-list standard 1_139_242 permit 65000:1 0:139 0:242 ip community-list standard 1_140_241 permit 65000:1 0:140 0:241 ip community-list standard 1_141_240 permit 65000:1 0:141 0:240 ip community-list standard 1_142_239 permit 65000:1 0:142 0:239 ip community-list standard 1_143_238 permit 65000:1 0:143 0:238 ip community-list standard 1_144_237 permit 65000:1 0:144 0:237 ip community-list standard 1_145_236 permit 65000:1 0:145 0:236 ip community-list standard 1_146_235 permit 65000:1 0:146 0:235 ip community-list standard 1_147_234 permit 65000:1 0:147 0:234 ip community-list standard 1_148_233 permit 65000:1 0:148 0:233 ip community-list standard 1_149_232 permit 65000:1 0:149 0:232 ip community-list standard 1_150_231 permit 65000:1 0:150 0:231 ip community-list standard 1_151_230 permit 65000:1 0:151 0:230 ip community-list standard 1_152_229 permit 65000:1 0:152 0:229 ip community-list standard 1_153_228 permit 65000:1 0:153 0:228 ip community-list standard 1_154_227 permit 65000:1 0:154 0:227 ip community-list standard 1_155_226 permit 65000:1 0:155 0:226 ip community-list standard 1_156_225 permit 65000:1 0:156 0:225 ip community-list standard 1_157_224 permit 65000:1 0:157 0:224 ip community-list standard 1_158_223 permit 65000:1 0:158 0:223 ip community-list standard 1_159_222 permit 65000:1 0:159 0:222 ip community-list standard 1_160_221 permit 65000:1 0:160 0:221 ip community-list standard 1_161_220 permit 65000:1 0:161 0:220 ip community-list standard 1_162_219 permit 65000:1 0:162 0:219 ip community-list standard 1_163_218 permit 65000:1 0:163 0:218 ip community-list standard 1_164_217 permit 65000:1 0:164 0:217 ip community-list standard 1_165_216 permit 65000:1 0:165 0:216 ip community-list standard 1_166_215 permit 65000:1 0:166 0:215 ip community-list standard 1_167_214 permit 65000:1 0:167 0:214 ip community-list standard 1_168_213 permit 65000:1 0:168 0:213 ip community-list standard 1_169_212 permit 65000:1 0:169 0:212 ip community-list standard 1_170_211 permit 65000:1 0:170 0:211 ip community-list standard 1_171_210 permit 65000:1 0:171 0:210 ip community-list standard 1_172_209 permit 65000:1 0:172 0:209 ip community-list standard 1_173_208 permit 65000:1 0:173 0:208 ip community-list standard 1_174_207 permit 65000:1 0:174 0:207 ip community-list standard 1_175_206 permit 65000:1 0:175 0:206 ip community-list standard 1_176_205 permit 65000:1 0:176 0:205 ip community-list standard 1_177_204 permit 65000:1 0:177 0:204 ip community-list standard 1_178_203 permit 65000:1 0:178 0:203 ip community-list standard 1_179_202 permit 65000:1 0:179 0:202 ip community-list standard 1_180_201 permit 65000:1 0:180 0:201 ip community-list standard 1_181_200 permit 65000:1 0:181 0:200 ip community-list standard 1_182_199 permit 65000:1 0:182 0:199 ip community-list standard 1_183_198 permit 65000:1 0:183 0:198 ip community-list standard 1_184_197 permit 65000:1 0:184 0:197 ip community-list standard 1_185_196 permit 65000:1 0:185 0:196 ip community-list standard 1_186_195 permit 65000:1 0:186 0:195 ip community-list standard 1_187_194 permit 65000:1 0:187 0:194 ip community-list standard 1_188_193 permit 65000:1 0:188 0:193 ip community-list standard 1_189_192 permit 65000:1 0:189 0:192 ip community-list standard 1_190_191 permit 65000:1 0:190 0:191 route-map calculator permit 15092 match community 2_3_127 1_125_256 1_126_255 1_127_254 1_128_253 set community 0:381 route-map calculator permit 15093 match community 1_129_252 1_130_251 1_131_250 1_132_249 1_133_248 set community 0:381 route-map calculator permit 15094 match community 1_134_247 1_135_246 1_136_245 1_137_244 1_138_243 set community 0:381 route-map calculator permit 15095 match community 1_139_242 1_140_241 1_141_240 1_142_239 1_143_238 set community 0:381 route-map calculator permit 15096 match community 1_144_237 1_145_236 1_146_235 1_147_234 1_148_233 set community 0:381 route-map calculator permit 15097 match community 1_149_232 1_150_231 1_151_230 1_152_229 1_153_228 set community 0:381 route-map calculator permit 15098 match community 1_154_227 1_155_226 1_156_225 1_157_224 1_158_223 set community 0:381 route-map calculator permit 15099 match community 1_159_222 1_160_221 1_161_220 1_162_219 1_163_218 set community 0:381 route-map calculator permit 15100 match community 1_164_217 1_165_216 1_166_215 1_167_214 1_168_213 set community 0:381 route-map calculator permit 15101 match community 1_169_212 1_170_211 1_171_210 1_172_209 1_173_208 set community 0:381 route-map calculator permit 15102 match community 1_174_207 1_175_206 1_176_205 1_177_204 1_178_203 set community 0:381 route-map calculator permit 15103 match community 1_179_202 1_180_201 1_181_200 1_182_199 1_183_198 set community 0:381 route-map calculator permit 15104 match community 1_184_197 1_185_196 1_186_195 1_187_194 1_188_193 set community 0:381 route-map calculator permit 15105 match community 1_189_192 1_190_191 set community 0:381 ip community-list standard 2_47_226 permit 65000:2 0:47 0:226 ip community-list standard 2_94_113 permit 65000:2 0:94 0:113 route-map calculator permit 15106 match community 2_47_226 2_94_113 set community 0:10622 ip community-list standard 2_98_226 permit 65000:2 0:98 0:226 ip community-list standard 2_113_196 permit 65000:2 0:113 0:196 route-map calculator permit 15107 match community 2_98_226 2_113_196 set community 0:22148 ip community-list standard 2_246_246 permit 65000:2 0:246 0:246 route-map calculator permit 15108 match community 2_246_246 set community 0:60516 ip community-list standard 2_102_153 permit 65000:2 0:102 0:153 route-map calculator permit 15109 match community 2_102_153 set community 0:15606 ip community-list standard 2_59_177 permit 65000:2 0:59 0:177 route-map calculator permit 15110 match community 2_59_177 set community 0:10443 ip community-list standard 2_67_191 permit 65000:2 0:67 0:191 route-map calculator permit 15111 match community 2_67_191 set community 0:12797 ip community-list standard 2_9_237 permit 65000:2 0:9 0:237 ip community-list standard 2_27_79 permit 65000:2 0:27 0:79 route-map calculator permit 15112 match community 2_9_237 2_27_79 set community 0:2133 ip community-list standard 2_196_199 permit 65000:2 0:196 0:199 route-map calculator permit 15113 match community 2_196_199 set community 0:39004 ip community-list standard 2_143_235 permit 65000:2 0:143 0:235 route-map calculator permit 15114 match community 2_143_235 set community 0:33605 ip community-list standard 2_138_243 permit 65000:2 0:138 0:243 ip community-list standard 2_162_207 permit 65000:2 0:162 0:207 route-map calculator permit 15115 match community 2_138_243 2_162_207 set community 0:33534 ip community-list standard 2_111_157 permit 65000:2 0:111 0:157 route-map calculator permit 15116 match community 2_111_157 set community 0:17427 ip community-list standard 2_6_184 permit 65000:2 0:6 0:184 ip community-list standard 2_8_138 permit 65000:2 0:8 0:138 ip community-list standard 2_12_92 permit 65000:2 0:12 0:92 ip community-list standard 2_16_69 permit 65000:2 0:16 0:69 ip community-list standard 2_23_48 permit 65000:2 0:23 0:48 ip community-list standard 2_24_46 permit 65000:2 0:24 0:46 route-map calculator permit 15117 match community 2_6_184 2_8_138 2_12_92 2_16_69 2_23_48 set community 0:1104 route-map calculator permit 15118 match community 2_24_46 set community 0:1104 ip community-list standard 2_149_190 permit 65000:2 0:149 0:190 route-map calculator permit 15119 match community 2_149_190 set community 0:28310 ip community-list standard 2_213_233 permit 65000:2 0:213 0:233 route-map calculator permit 15120 match community 2_213_233 set community 0:49629 ip community-list standard 2_124_179 permit 65000:2 0:124 0:179 route-map calculator permit 15121 match community 2_124_179 set community 0:22196 ip community-list standard 2_70_131 permit 65000:2 0:70 0:131 route-map calculator permit 15122 match community 2_70_131 set community 0:9170 ip community-list standard 2_59_137 permit 65000:2 0:59 0:137 route-map calculator permit 15123 match community 2_59_137 set community 0:8083 ip community-list standard 2_79_230 permit 65000:2 0:79 0:230 ip community-list standard 2_115_158 permit 65000:2 0:115 0:158 route-map calculator permit 15124 match community 2_79_230 2_115_158 set community 0:18170 ip community-list standard 2_49_101 permit 65000:2 0:49 0:101 route-map calculator permit 15125 match community 2_49_101 set community 0:4949 ip community-list standard 2_23_164 permit 65000:2 0:23 0:164 ip community-list standard 2_41_92 permit 65000:2 0:41 0:92 ip community-list standard 2_46_82 permit 65000:2 0:46 0:82 route-map calculator permit 15126 match community 2_23_164 2_41_92 2_46_82 set community 0:3772 ip community-list standard 2_35_227 permit 65000:2 0:35 0:227 route-map calculator permit 15127 match community 2_35_227 set community 0:7945 ip community-list standard 2_151_162 permit 65000:2 0:151 0:162 route-map calculator permit 15128 match community 2_151_162 set community 0:24462 ip community-list standard 2_93_254 permit 65000:2 0:93 0:254 ip community-list standard 2_127_186 permit 65000:2 0:127 0:186 route-map calculator permit 15129 match community 2_93_254 2_127_186 set community 0:23622 ip community-list standard 2_4_140 permit 65000:2 0:4 0:140 ip community-list standard 2_5_112 permit 65000:2 0:5 0:112 ip community-list standard 2_7_80 permit 65000:2 0:7 0:80 ip community-list standard 2_8_70 permit 65000:2 0:8 0:70 ip community-list standard 2_10_56 permit 65000:2 0:10 0:56 ip community-list standard 2_14_40 permit 65000:2 0:14 0:40 ip community-list standard 2_16_35 permit 65000:2 0:16 0:35 ip community-list standard 2_20_28 permit 65000:2 0:20 0:28 route-map calculator permit 15130 match community 2_4_140 2_5_112 2_7_80 2_8_70 2_10_56 set community 0:560 route-map calculator permit 15131 match community 2_14_40 2_16_35 2_20_28 set community 0:560 ip community-list standard 2_23_116 permit 65000:2 0:23 0:116 ip community-list standard 2_29_92 permit 65000:2 0:29 0:92 ip community-list standard 2_46_58 permit 65000:2 0:46 0:58 route-map calculator permit 15132 match community 2_23_116 2_29_92 2_46_58 set community 0:2668 ip community-list standard 2_157_162 permit 65000:2 0:157 0:162 route-map calculator permit 15133 match community 2_157_162 set community 0:25434 ip community-list standard 2_166_194 permit 65000:2 0:166 0:194 route-map calculator permit 15134 match community 2_166_194 set community 0:32204 ip community-list standard 2_21_213 permit 65000:2 0:21 0:213 ip community-list standard 2_63_71 permit 65000:2 0:63 0:71 route-map calculator permit 15135 match community 2_21_213 2_63_71 set community 0:4473 ip community-list standard 2_10_146 permit 65000:2 0:10 0:146 ip community-list standard 2_20_73 permit 65000:2 0:20 0:73 route-map calculator permit 15136 match community 2_10_146 2_20_73 set community 0:1460 ip community-list standard 2_212_250 permit 65000:2 0:212 0:250 route-map calculator permit 15137 match community 2_212_250 set community 0:53000 ip community-list standard 2_174_253 permit 65000:2 0:174 0:253 route-map calculator permit 15138 match community 2_174_253 set community 0:44022 ip community-list standard 2_95_224 permit 65000:2 0:95 0:224 ip community-list standard 2_112_190 permit 65000:2 0:112 0:190 ip community-list standard 2_133_160 permit 65000:2 0:133 0:160 ip community-list standard 2_140_152 permit 65000:2 0:140 0:152 route-map calculator permit 15139 match community 2_95_224 2_112_190 2_133_160 2_140_152 set community 0:21280 ip community-list standard 2_39_173 permit 65000:2 0:39 0:173 route-map calculator permit 15140 match community 2_39_173 set community 0:6747 ip community-list standard 2_84_235 permit 65000:2 0:84 0:235 ip community-list standard 2_94_210 permit 65000:2 0:94 0:210 ip community-list standard 2_105_188 permit 65000:2 0:105 0:188 ip community-list standard 2_140_141 permit 65000:2 0:140 0:141 route-map calculator permit 15141 match community 2_84_235 2_94_210 2_105_188 2_140_141 set community 0:19740 ip community-list standard 2_147_208 permit 65000:2 0:147 0:208 ip community-list standard 2_156_196 permit 65000:2 0:156 0:196 ip community-list standard 2_168_182 permit 65000:2 0:168 0:182 route-map calculator permit 15142 match community 2_147_208 2_156_196 2_168_182 set community 0:30576 ip community-list standard 2_38_209 permit 65000:2 0:38 0:209 route-map calculator permit 15143 match community 2_38_209 set community 0:7942 ip community-list standard 2_206_220 permit 65000:2 0:206 0:220 route-map calculator permit 15144 match community 2_206_220 set community 0:45320 ip community-list standard 2_177_252 permit 65000:2 0:177 0:252 ip community-list standard 2_189_236 permit 65000:2 0:189 0:236 route-map calculator permit 15145 match community 2_177_252 2_189_236 set community 0:44604 ip community-list standard 2_58_230 permit 65000:2 0:58 0:230 ip community-list standard 2_92_145 permit 65000:2 0:92 0:145 ip community-list standard 2_115_116 permit 65000:2 0:115 0:116 route-map calculator permit 15146 match community 2_58_230 2_92_145 2_115_116 set community 0:13340 ip community-list standard 2_198_212 permit 65000:2 0:198 0:212 route-map calculator permit 15147 match community 2_198_212 set community 0:41976 ip community-list standard 2_24_234 permit 65000:2 0:24 0:234 ip community-list standard 2_26_216 permit 65000:2 0:26 0:216 ip community-list standard 2_27_208 permit 65000:2 0:27 0:208 ip community-list standard 2_36_156 permit 65000:2 0:36 0:156 ip community-list standard 2_39_144 permit 65000:2 0:39 0:144 ip community-list standard 2_48_117 permit 65000:2 0:48 0:117 ip community-list standard 2_52_108 permit 65000:2 0:52 0:108 ip community-list standard 2_54_104 permit 65000:2 0:54 0:104 ip community-list standard 2_72_78 permit 65000:2 0:72 0:78 route-map calculator permit 15148 match community 2_24_234 2_26_216 2_27_208 2_36_156 2_39_144 set community 0:5616 route-map calculator permit 15149 match community 2_48_117 2_52_108 2_54_104 2_72_78 set community 0:5616 ip community-list standard 2_103_169 permit 65000:2 0:103 0:169 route-map calculator permit 15150 match community 2_103_169 set community 0:17407 ip community-list standard 2_195_230 permit 65000:2 0:195 0:230 route-map calculator permit 15151 match community 2_195_230 set community 0:44850 ip community-list standard 2_108_218 permit 65000:2 0:108 0:218 ip community-list standard 2_109_216 permit 65000:2 0:109 0:216 route-map calculator permit 15152 match community 2_108_218 2_109_216 set community 0:23544 ip community-list standard 2_84_252 permit 65000:2 0:84 0:252 ip community-list standard 2_98_216 permit 65000:2 0:98 0:216 ip community-list standard 2_108_196 permit 65000:2 0:108 0:196 ip community-list standard 2_112_189 permit 65000:2 0:112 0:189 ip community-list standard 2_126_168 permit 65000:2 0:126 0:168 ip community-list standard 2_144_147 permit 65000:2 0:144 0:147 route-map calculator permit 15153 match community 2_84_252 2_98_216 2_108_196 2_112_189 2_126_168 set community 0:21168 route-map calculator permit 15154 match community 2_144_147 set community 0:21168 ip community-list standard 2_39_217 permit 65000:2 0:39 0:217 ip community-list standard 2_91_93 permit 65000:2 0:91 0:93 route-map calculator permit 15155 match community 2_39_217 2_91_93 set community 0:8463 ip community-list standard 2_74_194 permit 65000:2 0:74 0:194 ip community-list standard 2_97_148 permit 65000:2 0:97 0:148 route-map calculator permit 15156 match community 2_74_194 2_97_148 set community 0:14356 ip community-list standard 2_124_217 permit 65000:2 0:124 0:217 route-map calculator permit 15157 match community 2_124_217 set community 0:26908 ip community-list standard 2_146_239 permit 65000:2 0:146 0:239 route-map calculator permit 15158 match community 2_146_239 set community 0:34894 ip community-list standard 2_64_181 permit 65000:2 0:64 0:181 route-map calculator permit 15159 match community 2_64_181 set community 0:11584 ip community-list standard 2_97_234 permit 65000:2 0:97 0:234 ip community-list standard 2_117_194 permit 65000:2 0:117 0:194 route-map calculator permit 15160 match community 2_97_234 2_117_194 set community 0:22698 ip community-list standard 2_82_224 permit 65000:2 0:82 0:224 ip community-list standard 2_112_164 permit 65000:2 0:112 0:164 route-map calculator permit 15161 match community 2_82_224 2_112_164 set community 0:18368 ip community-list standard 2_51_252 permit 65000:2 0:51 0:252 ip community-list standard 2_54_238 permit 65000:2 0:54 0:238 ip community-list standard 2_63_204 permit 65000:2 0:63 0:204 ip community-list standard 2_68_189 permit 65000:2 0:68 0:189 ip community-list standard 2_84_153 permit 65000:2 0:84 0:153 ip community-list standard 2_102_126 permit 65000:2 0:102 0:126 ip community-list standard 2_108_119 permit 65000:2 0:108 0:119 route-map calculator permit 15162 match community 2_51_252 2_54_238 2_63_204 2_68_189 2_84_153 set community 0:12852 route-map calculator permit 15163 match community 2_102_126 2_108_119 set community 0:12852 ip community-list standard 2_16_234 permit 65000:2 0:16 0:234 ip community-list standard 2_18_208 permit 65000:2 0:18 0:208 ip community-list standard 2_24_156 permit 65000:2 0:24 0:156 ip community-list standard 2_26_144 permit 65000:2 0:26 0:144 ip community-list standard 2_32_117 permit 65000:2 0:32 0:117 ip community-list standard 2_36_104 permit 65000:2 0:36 0:104 ip community-list standard 2_39_96 permit 65000:2 0:39 0:96 ip community-list standard 2_48_78 permit 65000:2 0:48 0:78 ip community-list standard 2_52_72 permit 65000:2 0:52 0:72 route-map calculator permit 15164 match community 2_16_234 2_18_208 2_24_156 2_26_144 2_32_117 set community 0:3744 route-map calculator permit 15165 match community 2_36_104 2_39_96 2_48_78 2_52_72 set community 0:3744 ip community-list standard 2_85_127 permit 65000:2 0:85 0:127 route-map calculator permit 15166 match community 2_85_127 set community 0:10795 ip community-list standard 2_90_251 permit 65000:2 0:90 0:251 route-map calculator permit 15167 match community 2_90_251 set community 0:22590 ip community-list standard 2_113_247 permit 65000:2 0:113 0:247 route-map calculator permit 15168 match community 2_113_247 set community 0:27911 ip community-list standard 2_31_214 permit 65000:2 0:31 0:214 ip community-list standard 2_62_107 permit 65000:2 0:62 0:107 route-map calculator permit 15169 match community 2_31_214 2_62_107 set community 0:6634 ip community-list standard 2_159_244 permit 65000:2 0:159 0:244 ip community-list standard 2_183_212 permit 65000:2 0:183 0:212 route-map calculator permit 15170 match community 2_159_244 2_183_212 set community 0:38796 ip community-list standard 2_137_140 permit 65000:2 0:137 0:140 route-map calculator permit 15171 match community 2_137_140 set community 0:19180 ip community-list standard 2_107_232 permit 65000:2 0:107 0:232 ip community-list standard 2_116_214 permit 65000:2 0:116 0:214 route-map calculator permit 15172 match community 2_107_232 2_116_214 set community 0:24824 ip community-list standard 2_191_242 permit 65000:2 0:191 0:242 route-map calculator permit 15173 match community 2_191_242 set community 0:46222 ip community-list standard 2_152_250 permit 65000:2 0:152 0:250 ip community-list standard 2_190_200 permit 65000:2 0:190 0:200 route-map calculator permit 15174 match community 2_152_250 2_190_200 set community 0:38000 ip community-list standard 2_35_149 permit 65000:2 0:35 0:149 route-map calculator permit 15175 match community 2_35_149 set community 0:5215 ip community-list standard 2_63_256 permit 65000:2 0:63 0:256 ip community-list standard 2_64_252 permit 65000:2 0:64 0:252 ip community-list standard 2_72_224 permit 65000:2 0:72 0:224 ip community-list standard 2_84_192 permit 65000:2 0:84 0:192 ip community-list standard 2_96_168 permit 65000:2 0:96 0:168 ip community-list standard 2_112_144 permit 65000:2 0:112 0:144 ip community-list standard 2_126_128 permit 65000:2 0:126 0:128 route-map calculator permit 15176 match community 2_63_256 2_64_252 2_72_224 2_84_192 2_96_168 set community 0:16128 route-map calculator permit 15177 match community 2_112_144 2_126_128 set community 0:16128 ip community-list standard 2_189_235 permit 65000:2 0:189 0:235 route-map calculator permit 15178 match community 2_189_235 set community 0:44415 ip community-list standard 2_121_187 permit 65000:2 0:121 0:187 route-map calculator permit 15179 match community 2_121_187 set community 0:22627 ip community-list standard 2_7_146 permit 65000:2 0:7 0:146 ip community-list standard 2_14_73 permit 65000:2 0:14 0:73 route-map calculator permit 15180 match community 2_7_146 2_14_73 set community 0:1022 ip community-list standard 2_224_226 permit 65000:2 0:224 0:226 route-map calculator permit 15181 match community 2_224_226 set community 0:50624 ip community-list standard 2_229_253 permit 65000:2 0:229 0:253 route-map calculator permit 15182 match community 2_229_253 set community 0:57937 ip community-list standard 2_171_228 permit 65000:2 0:171 0:228 route-map calculator permit 15183 match community 2_171_228 set community 0:38988 ip community-list standard 2_134_227 permit 65000:2 0:134 0:227 route-map calculator permit 15184 match community 2_134_227 set community 0:30418 ip community-list standard 2_10_149 permit 65000:2 0:10 0:149 route-map calculator permit 15185 match community 2_10_149 set community 0:1490 ip community-list standard 2_21_233 permit 65000:2 0:21 0:233 route-map calculator permit 15186 match community 2_21_233 set community 0:4893 ip community-list standard 2_53_225 permit 65000:2 0:53 0:225 ip community-list standard 2_75_159 permit 65000:2 0:75 0:159 route-map calculator permit 15187 match community 2_53_225 2_75_159 set community 0:11925 ip community-list standard 1_1_206 permit 65000:1 0:1 0:206 ip community-list standard 2_1_207 permit 65000:2 0:1 0:207 ip community-list standard 1_2_205 permit 65000:1 0:2 0:205 ip community-list standard 2_3_69 permit 65000:2 0:3 0:69 ip community-list standard 1_3_204 permit 65000:1 0:3 0:204 ip community-list standard 1_4_203 permit 65000:1 0:4 0:203 ip community-list standard 1_5_202 permit 65000:1 0:5 0:202 ip community-list standard 1_6_201 permit 65000:1 0:6 0:201 ip community-list standard 1_7_200 permit 65000:1 0:7 0:200 ip community-list standard 1_8_199 permit 65000:1 0:8 0:199 ip community-list standard 2_9_23 permit 65000:2 0:9 0:23 ip community-list standard 1_9_198 permit 65000:1 0:9 0:198 ip community-list standard 1_10_197 permit 65000:1 0:10 0:197 ip community-list standard 1_11_196 permit 65000:1 0:11 0:196 ip community-list standard 1_12_195 permit 65000:1 0:12 0:195 ip community-list standard 1_13_194 permit 65000:1 0:13 0:194 ip community-list standard 1_14_193 permit 65000:1 0:14 0:193 ip community-list standard 1_15_192 permit 65000:1 0:15 0:192 ip community-list standard 1_16_191 permit 65000:1 0:16 0:191 ip community-list standard 1_17_190 permit 65000:1 0:17 0:190 ip community-list standard 1_18_189 permit 65000:1 0:18 0:189 ip community-list standard 1_19_188 permit 65000:1 0:19 0:188 ip community-list standard 1_20_187 permit 65000:1 0:20 0:187 ip community-list standard 1_21_186 permit 65000:1 0:21 0:186 ip community-list standard 1_22_185 permit 65000:1 0:22 0:185 ip community-list standard 1_23_184 permit 65000:1 0:23 0:184 ip community-list standard 1_24_183 permit 65000:1 0:24 0:183 ip community-list standard 1_25_182 permit 65000:1 0:25 0:182 ip community-list standard 1_26_181 permit 65000:1 0:26 0:181 ip community-list standard 1_27_180 permit 65000:1 0:27 0:180 ip community-list standard 1_28_179 permit 65000:1 0:28 0:179 ip community-list standard 1_29_178 permit 65000:1 0:29 0:178 ip community-list standard 1_30_177 permit 65000:1 0:30 0:177 ip community-list standard 1_31_176 permit 65000:1 0:31 0:176 ip community-list standard 1_32_175 permit 65000:1 0:32 0:175 ip community-list standard 1_33_174 permit 65000:1 0:33 0:174 ip community-list standard 1_34_173 permit 65000:1 0:34 0:173 ip community-list standard 1_35_172 permit 65000:1 0:35 0:172 ip community-list standard 1_36_171 permit 65000:1 0:36 0:171 ip community-list standard 1_37_170 permit 65000:1 0:37 0:170 ip community-list standard 1_38_169 permit 65000:1 0:38 0:169 ip community-list standard 1_39_168 permit 65000:1 0:39 0:168 ip community-list standard 1_40_167 permit 65000:1 0:40 0:167 ip community-list standard 1_41_166 permit 65000:1 0:41 0:166 ip community-list standard 1_42_165 permit 65000:1 0:42 0:165 ip community-list standard 1_43_164 permit 65000:1 0:43 0:164 ip community-list standard 1_44_163 permit 65000:1 0:44 0:163 ip community-list standard 1_45_162 permit 65000:1 0:45 0:162 ip community-list standard 1_46_161 permit 65000:1 0:46 0:161 ip community-list standard 1_47_160 permit 65000:1 0:47 0:160 ip community-list standard 1_48_159 permit 65000:1 0:48 0:159 ip community-list standard 1_49_158 permit 65000:1 0:49 0:158 ip community-list standard 1_50_157 permit 65000:1 0:50 0:157 ip community-list standard 1_51_156 permit 65000:1 0:51 0:156 ip community-list standard 1_52_155 permit 65000:1 0:52 0:155 ip community-list standard 1_53_154 permit 65000:1 0:53 0:154 ip community-list standard 1_54_153 permit 65000:1 0:54 0:153 ip community-list standard 1_55_152 permit 65000:1 0:55 0:152 ip community-list standard 1_56_151 permit 65000:1 0:56 0:151 ip community-list standard 1_57_150 permit 65000:1 0:57 0:150 ip community-list standard 1_58_149 permit 65000:1 0:58 0:149 ip community-list standard 1_59_148 permit 65000:1 0:59 0:148 ip community-list standard 1_60_147 permit 65000:1 0:60 0:147 ip community-list standard 1_61_146 permit 65000:1 0:61 0:146 ip community-list standard 1_62_145 permit 65000:1 0:62 0:145 ip community-list standard 1_63_144 permit 65000:1 0:63 0:144 ip community-list standard 1_64_143 permit 65000:1 0:64 0:143 ip community-list standard 1_65_142 permit 65000:1 0:65 0:142 ip community-list standard 1_66_141 permit 65000:1 0:66 0:141 ip community-list standard 1_67_140 permit 65000:1 0:67 0:140 ip community-list standard 1_68_139 permit 65000:1 0:68 0:139 ip community-list standard 1_69_138 permit 65000:1 0:69 0:138 ip community-list standard 1_70_137 permit 65000:1 0:70 0:137 ip community-list standard 1_71_136 permit 65000:1 0:71 0:136 ip community-list standard 1_72_135 permit 65000:1 0:72 0:135 ip community-list standard 1_73_134 permit 65000:1 0:73 0:134 ip community-list standard 1_74_133 permit 65000:1 0:74 0:133 ip community-list standard 1_75_132 permit 65000:1 0:75 0:132 ip community-list standard 1_76_131 permit 65000:1 0:76 0:131 ip community-list standard 1_77_130 permit 65000:1 0:77 0:130 ip community-list standard 1_78_129 permit 65000:1 0:78 0:129 ip community-list standard 1_79_128 permit 65000:1 0:79 0:128 ip community-list standard 1_80_127 permit 65000:1 0:80 0:127 ip community-list standard 1_81_126 permit 65000:1 0:81 0:126 ip community-list standard 1_82_125 permit 65000:1 0:82 0:125 ip community-list standard 1_83_124 permit 65000:1 0:83 0:124 ip community-list standard 1_84_123 permit 65000:1 0:84 0:123 ip community-list standard 1_85_122 permit 65000:1 0:85 0:122 ip community-list standard 1_86_121 permit 65000:1 0:86 0:121 ip community-list standard 1_87_120 permit 65000:1 0:87 0:120 ip community-list standard 1_88_119 permit 65000:1 0:88 0:119 ip community-list standard 1_89_118 permit 65000:1 0:89 0:118 ip community-list standard 1_90_117 permit 65000:1 0:90 0:117 ip community-list standard 1_91_116 permit 65000:1 0:91 0:116 ip community-list standard 1_92_115 permit 65000:1 0:92 0:115 ip community-list standard 1_93_114 permit 65000:1 0:93 0:114 ip community-list standard 1_94_113 permit 65000:1 0:94 0:113 ip community-list standard 1_95_112 permit 65000:1 0:95 0:112 ip community-list standard 1_96_111 permit 65000:1 0:96 0:111 ip community-list standard 1_97_110 permit 65000:1 0:97 0:110 ip community-list standard 1_98_109 permit 65000:1 0:98 0:109 ip community-list standard 1_99_108 permit 65000:1 0:99 0:108 ip community-list standard 1_100_107 permit 65000:1 0:100 0:107 ip community-list standard 1_101_106 permit 65000:1 0:101 0:106 ip community-list standard 1_102_105 permit 65000:1 0:102 0:105 ip community-list standard 1_103_104 permit 65000:1 0:103 0:104 ip community-list expanded c207 permit 1 ^65000:4_0:207_0:1$ ip community-list expanded c207 permit 2 ^65000:3_0:208_0:1$ ip community-list expanded c207 permit 3 ^65000:3_0:209_0:2$ ip community-list expanded c207 permit 4 ^65000:3_0:210_0:3$ ip community-list expanded c207 permit 5 ^65000:3_0:211_0:4$ ip community-list expanded c207 permit 6 ^65000:3_0:212_0:5$ ip community-list expanded c207 permit 7 ^65000:3_0:213_0:6$ ip community-list expanded c207 permit 8 ^65000:3_0:214_0:7$ ip community-list expanded c207 permit 9 ^65000:3_0:215_0:8$ ip community-list expanded c207 permit 10 ^65000:3_0:216_0:9$ ip community-list expanded c207 permit 11 ^65000:3_0:217_0:10$ ip community-list expanded c207 permit 12 ^65000:3_0:218_0:11$ ip community-list expanded c207 permit 13 ^65000:3_0:219_0:12$ ip community-list expanded c207 permit 14 ^65000:3_0:220_0:13$ ip community-list expanded c207 permit 15 ^65000:3_0:221_0:14$ ip community-list expanded c207 permit 16 ^65000:3_0:222_0:15$ ip community-list expanded c207 permit 17 ^65000:3_0:223_0:16$ ip community-list expanded c207 permit 18 ^65000:3_0:224_0:17$ ip community-list expanded c207 permit 19 ^65000:3_0:225_0:18$ ip community-list expanded c207 permit 20 ^65000:3_0:226_0:19$ ip community-list expanded c207 permit 21 ^65000:3_0:227_0:20$ ip community-list expanded c207 permit 22 ^65000:3_0:228_0:21$ ip community-list expanded c207 permit 23 ^65000:3_0:229_0:22$ ip community-list expanded c207 permit 24 ^65000:3_0:230_0:23$ ip community-list expanded c207 permit 25 ^65000:3_0:231_0:24$ ip community-list expanded c207 permit 26 ^65000:3_0:232_0:25$ ip community-list expanded c207 permit 27 ^65000:3_0:233_0:26$ ip community-list expanded c207 permit 28 ^65000:3_0:234_0:27$ ip community-list expanded c207 permit 29 ^65000:3_0:235_0:28$ ip community-list expanded c207 permit 30 ^65000:3_0:236_0:29$ ip community-list expanded c207 permit 31 ^65000:3_0:237_0:30$ ip community-list expanded c207 permit 32 ^65000:3_0:238_0:31$ ip community-list expanded c207 permit 33 ^65000:3_0:239_0:32$ ip community-list expanded c207 permit 34 ^65000:3_0:240_0:33$ ip community-list expanded c207 permit 35 ^65000:3_0:241_0:34$ ip community-list expanded c207 permit 36 ^65000:3_0:242_0:35$ ip community-list expanded c207 permit 37 ^65000:3_0:243_0:36$ ip community-list expanded c207 permit 38 ^65000:3_0:244_0:37$ ip community-list expanded c207 permit 39 ^65000:3_0:245_0:38$ ip community-list expanded c207 permit 40 ^65000:3_0:246_0:39$ ip community-list expanded c207 permit 41 ^65000:3_0:247_0:40$ ip community-list expanded c207 permit 42 ^65000:3_0:248_0:41$ ip community-list expanded c207 permit 43 ^65000:3_0:249_0:42$ ip community-list expanded c207 permit 44 ^65000:3_0:250_0:43$ ip community-list expanded c207 permit 45 ^65000:3_0:251_0:44$ ip community-list expanded c207 permit 46 ^65000:3_0:252_0:45$ ip community-list expanded c207 permit 47 ^65000:3_0:253_0:46$ ip community-list expanded c207 permit 48 ^65000:3_0:254_0:47$ ip community-list expanded c207 permit 49 ^65000:3_0:255_0:48$ ip community-list expanded c207 permit 50 ^65000:3_0:256_0:49$ route-map calculator permit 15188 match community 1_1_206 2_1_207 1_2_205 2_3_69 1_3_204 set community 0:207 route-map calculator permit 15189 match community 1_4_203 1_5_202 1_6_201 1_7_200 1_8_199 set community 0:207 route-map calculator permit 15190 match community 2_9_23 1_9_198 1_10_197 1_11_196 1_12_195 set community 0:207 route-map calculator permit 15191 match community 1_13_194 1_14_193 1_15_192 1_16_191 1_17_190 set community 0:207 route-map calculator permit 15192 match community 1_18_189 1_19_188 1_20_187 1_21_186 1_22_185 set community 0:207 route-map calculator permit 15193 match community 1_23_184 1_24_183 1_25_182 1_26_181 1_27_180 set community 0:207 route-map calculator permit 15194 match community 1_28_179 1_29_178 1_30_177 1_31_176 1_32_175 set community 0:207 route-map calculator permit 15195 match community 1_33_174 1_34_173 1_35_172 1_36_171 1_37_170 set community 0:207 route-map calculator permit 15196 match community 1_38_169 1_39_168 1_40_167 1_41_166 1_42_165 set community 0:207 route-map calculator permit 15197 match community 1_43_164 1_44_163 1_45_162 1_46_161 1_47_160 set community 0:207 route-map calculator permit 15198 match community 1_48_159 1_49_158 1_50_157 1_51_156 1_52_155 set community 0:207 route-map calculator permit 15199 match community 1_53_154 1_54_153 1_55_152 1_56_151 1_57_150 set community 0:207 route-map calculator permit 15200 match community 1_58_149 1_59_148 1_60_147 1_61_146 1_62_145 set community 0:207 route-map calculator permit 15201 match community 1_63_144 1_64_143 1_65_142 1_66_141 1_67_140 set community 0:207 route-map calculator permit 15202 match community 1_68_139 1_69_138 1_70_137 1_71_136 1_72_135 set community 0:207 route-map calculator permit 15203 match community 1_73_134 1_74_133 1_75_132 1_76_131 1_77_130 set community 0:207 route-map calculator permit 15204 match community 1_78_129 1_79_128 1_80_127 1_81_126 1_82_125 set community 0:207 route-map calculator permit 15205 match community 1_83_124 1_84_123 1_85_122 1_86_121 1_87_120 set community 0:207 route-map calculator permit 15206 match community 1_88_119 1_89_118 1_90_117 1_91_116 1_92_115 set community 0:207 route-map calculator permit 15207 match community 1_93_114 1_94_113 1_95_112 1_96_111 1_97_110 set community 0:207 route-map calculator permit 15208 match community 1_98_109 1_99_108 1_100_107 1_101_106 1_102_105 set community 0:207 route-map calculator permit 15209 match community 1_103_104 c4_207_1 c3_208_1 c3_209_2 c3_210_3 set community 0:207 route-map calculator permit 15210 match community c3_211_4 c3_212_5 c3_213_6 c3_214_7 c3_215_8 set community 0:207 route-map calculator permit 15211 match community c3_216_9 c3_217_10 c3_218_11 c3_219_12 c3_220_13 set community 0:207 route-map calculator permit 15212 match community c3_221_14 c3_222_15 c3_223_16 c3_224_17 c3_225_18 set community 0:207 route-map calculator permit 15213 match community c3_226_19 c3_227_20 c3_228_21 c3_229_22 c3_230_23 set community 0:207 route-map calculator permit 15214 match community c3_231_24 c3_232_25 c3_233_26 c3_234_27 c3_235_28 set community 0:207 route-map calculator permit 15215 match community c3_236_29 c3_237_30 c3_238_31 c3_239_32 c3_240_33 set community 0:207 route-map calculator permit 15216 match community c3_241_34 c3_242_35 c3_243_36 c3_244_37 c3_245_38 set community 0:207 route-map calculator permit 15217 match community c3_246_39 c3_247_40 c3_248_41 c3_249_42 c3_250_43 set community 0:207 route-map calculator permit 15218 match community c3_251_44 c3_252_45 c3_253_46 c3_254_47 c3_255_48 set community 0:207 route-map calculator permit 15219 match community c3_256_49 set community 0:207 ip community-list standard 2_82_244 permit 65000:2 0:82 0:244 ip community-list standard 2_122_164 permit 65000:2 0:122 0:164 route-map calculator permit 15220 match community 2_82_244 2_122_164 set community 0:20008 ip community-list standard 2_15_157 permit 65000:2 0:15 0:157 route-map calculator permit 15221 match community 2_15_157 set community 0:2355 ip community-list standard 2_101_246 permit 65000:2 0:101 0:246 ip community-list standard 2_123_202 permit 65000:2 0:123 0:202 route-map calculator permit 15222 match community 2_101_246 2_123_202 set community 0:24846 ip community-list standard 2_198_256 permit 65000:2 0:198 0:256 route-map calculator permit 15223 match community 2_198_256 set community 0:50688 ip community-list standard 2_55_149 permit 65000:2 0:55 0:149 route-map calculator permit 15224 match community 2_55_149 set community 0:8195 ip community-list standard 2_109_147 permit 65000:2 0:109 0:147 route-map calculator permit 15225 match community 2_109_147 set community 0:16023 ip community-list standard 2_98_197 permit 65000:2 0:98 0:197 route-map calculator permit 15226 match community 2_98_197 set community 0:19306 ip community-list standard 2_142_145 permit 65000:2 0:142 0:145 route-map calculator permit 15227 match community 2_142_145 set community 0:20590 ip community-list standard 2_22_247 permit 65000:2 0:22 0:247 ip community-list standard 2_26_209 permit 65000:2 0:26 0:209 ip community-list standard 2_38_143 permit 65000:2 0:38 0:143 route-map calculator permit 15228 match community 2_22_247 2_26_209 2_38_143 set community 0:5434 ip community-list standard 2_17_127 permit 65000:2 0:17 0:127 route-map calculator permit 15229 match community 2_17_127 set community 0:2159 ip community-list standard 2_42_206 permit 65000:2 0:42 0:206 ip community-list standard 2_84_103 permit 65000:2 0:84 0:103 route-map calculator permit 15230 match community 2_42_206 2_84_103 set community 0:8652 ip community-list standard 2_234_247 permit 65000:2 0:234 0:247 route-map calculator permit 15231 match community 2_234_247 set community 0:57798 ip community-list standard 2_206_238 permit 65000:2 0:206 0:238 route-map calculator permit 15232 match community 2_206_238 set community 0:49028 ip community-list standard 2_151_187 permit 65000:2 0:151 0:187 route-map calculator permit 15233 match community 2_151_187 set community 0:28237 ip community-list standard 2_87_209 permit 65000:2 0:87 0:209 route-map calculator permit 15234 match community 2_87_209 set community 0:18183 ip community-list standard 2_155_245 permit 65000:2 0:155 0:245 ip community-list standard 2_175_217 permit 65000:2 0:175 0:217 route-map calculator permit 15235 match community 2_155_245 2_175_217 set community 0:37975 ip community-list standard 2_238_254 permit 65000:2 0:238 0:254 route-map calculator permit 15236 match community 2_238_254 set community 0:60452 ip community-list standard 1_1_168 permit 65000:1 0:1 0:168 ip community-list standard 2_1_169 permit 65000:2 0:1 0:169 ip community-list standard 1_2_167 permit 65000:1 0:2 0:167 ip community-list standard 1_3_166 permit 65000:1 0:3 0:166 ip community-list standard 1_4_165 permit 65000:1 0:4 0:165 ip community-list standard 1_5_164 permit 65000:1 0:5 0:164 ip community-list standard 1_6_163 permit 65000:1 0:6 0:163 ip community-list standard 1_7_162 permit 65000:1 0:7 0:162 ip community-list standard 1_8_161 permit 65000:1 0:8 0:161 ip community-list standard 1_9_160 permit 65000:1 0:9 0:160 ip community-list standard 1_10_159 permit 65000:1 0:10 0:159 ip community-list standard 1_11_158 permit 65000:1 0:11 0:158 ip community-list standard 1_12_157 permit 65000:1 0:12 0:157 ip community-list standard 2_13_13 permit 65000:2 0:13 0:13 ip community-list standard 1_13_156 permit 65000:1 0:13 0:156 ip community-list standard 1_14_155 permit 65000:1 0:14 0:155 ip community-list standard 1_15_154 permit 65000:1 0:15 0:154 ip community-list standard 1_16_153 permit 65000:1 0:16 0:153 ip community-list standard 1_17_152 permit 65000:1 0:17 0:152 ip community-list standard 1_18_151 permit 65000:1 0:18 0:151 ip community-list standard 1_19_150 permit 65000:1 0:19 0:150 ip community-list standard 1_20_149 permit 65000:1 0:20 0:149 ip community-list standard 1_21_148 permit 65000:1 0:21 0:148 ip community-list standard 1_22_147 permit 65000:1 0:22 0:147 ip community-list standard 1_23_146 permit 65000:1 0:23 0:146 ip community-list standard 1_24_145 permit 65000:1 0:24 0:145 ip community-list standard 1_25_144 permit 65000:1 0:25 0:144 ip community-list standard 1_26_143 permit 65000:1 0:26 0:143 ip community-list standard 1_27_142 permit 65000:1 0:27 0:142 ip community-list standard 1_28_141 permit 65000:1 0:28 0:141 ip community-list standard 1_29_140 permit 65000:1 0:29 0:140 ip community-list standard 1_30_139 permit 65000:1 0:30 0:139 ip community-list standard 1_31_138 permit 65000:1 0:31 0:138 ip community-list standard 1_32_137 permit 65000:1 0:32 0:137 ip community-list standard 1_33_136 permit 65000:1 0:33 0:136 ip community-list standard 1_34_135 permit 65000:1 0:34 0:135 ip community-list standard 1_35_134 permit 65000:1 0:35 0:134 ip community-list standard 1_36_133 permit 65000:1 0:36 0:133 ip community-list standard 1_37_132 permit 65000:1 0:37 0:132 ip community-list standard 1_38_131 permit 65000:1 0:38 0:131 ip community-list standard 1_39_130 permit 65000:1 0:39 0:130 ip community-list standard 1_40_129 permit 65000:1 0:40 0:129 ip community-list standard 1_41_128 permit 65000:1 0:41 0:128 ip community-list standard 1_42_127 permit 65000:1 0:42 0:127 ip community-list standard 1_43_126 permit 65000:1 0:43 0:126 ip community-list standard 1_44_125 permit 65000:1 0:44 0:125 ip community-list standard 1_45_124 permit 65000:1 0:45 0:124 ip community-list standard 1_46_123 permit 65000:1 0:46 0:123 ip community-list standard 1_47_122 permit 65000:1 0:47 0:122 ip community-list standard 1_48_121 permit 65000:1 0:48 0:121 ip community-list standard 1_49_120 permit 65000:1 0:49 0:120 ip community-list standard 1_50_119 permit 65000:1 0:50 0:119 ip community-list standard 1_51_118 permit 65000:1 0:51 0:118 ip community-list standard 1_52_117 permit 65000:1 0:52 0:117 ip community-list standard 1_53_116 permit 65000:1 0:53 0:116 ip community-list standard 1_54_115 permit 65000:1 0:54 0:115 ip community-list standard 1_55_114 permit 65000:1 0:55 0:114 ip community-list standard 1_56_113 permit 65000:1 0:56 0:113 ip community-list standard 1_57_112 permit 65000:1 0:57 0:112 ip community-list standard 1_58_111 permit 65000:1 0:58 0:111 ip community-list standard 1_59_110 permit 65000:1 0:59 0:110 ip community-list standard 1_60_109 permit 65000:1 0:60 0:109 ip community-list standard 1_61_108 permit 65000:1 0:61 0:108 ip community-list standard 1_62_107 permit 65000:1 0:62 0:107 ip community-list standard 1_63_106 permit 65000:1 0:63 0:106 ip community-list standard 1_64_105 permit 65000:1 0:64 0:105 ip community-list standard 1_65_104 permit 65000:1 0:65 0:104 ip community-list standard 1_66_103 permit 65000:1 0:66 0:103 ip community-list standard 1_67_102 permit 65000:1 0:67 0:102 ip community-list standard 1_68_101 permit 65000:1 0:68 0:101 ip community-list standard 1_69_100 permit 65000:1 0:69 0:100 ip community-list standard 1_70_99 permit 65000:1 0:70 0:99 ip community-list standard 1_71_98 permit 65000:1 0:71 0:98 ip community-list standard 1_72_97 permit 65000:1 0:72 0:97 ip community-list standard 1_73_96 permit 65000:1 0:73 0:96 ip community-list standard 1_74_95 permit 65000:1 0:74 0:95 ip community-list standard 1_75_94 permit 65000:1 0:75 0:94 ip community-list standard 1_76_93 permit 65000:1 0:76 0:93 ip community-list standard 1_77_92 permit 65000:1 0:77 0:92 ip community-list standard 1_78_91 permit 65000:1 0:78 0:91 ip community-list standard 1_79_90 permit 65000:1 0:79 0:90 ip community-list standard 1_80_89 permit 65000:1 0:80 0:89 ip community-list standard 1_81_88 permit 65000:1 0:81 0:88 ip community-list standard 1_82_87 permit 65000:1 0:82 0:87 ip community-list standard 1_83_86 permit 65000:1 0:83 0:86 ip community-list standard 1_84_85 permit 65000:1 0:84 0:85 ip community-list expanded c169 permit 1 ^65000:4_0:169_0:1$ ip community-list expanded c169 permit 2 ^65000:3_0:170_0:1$ ip community-list expanded c169 permit 3 ^65000:3_0:171_0:2$ ip community-list expanded c169 permit 4 ^65000:3_0:172_0:3$ ip community-list expanded c169 permit 5 ^65000:3_0:173_0:4$ ip community-list expanded c169 permit 6 ^65000:3_0:174_0:5$ ip community-list expanded c169 permit 7 ^65000:3_0:175_0:6$ ip community-list expanded c169 permit 8 ^65000:3_0:176_0:7$ ip community-list expanded c169 permit 9 ^65000:3_0:177_0:8$ ip community-list expanded c169 permit 10 ^65000:3_0:178_0:9$ ip community-list expanded c169 permit 11 ^65000:3_0:179_0:10$ ip community-list expanded c169 permit 12 ^65000:3_0:180_0:11$ ip community-list expanded c169 permit 13 ^65000:3_0:181_0:12$ ip community-list expanded c169 permit 14 ^65000:3_0:182_0:13$ ip community-list expanded c169 permit 15 ^65000:3_0:183_0:14$ ip community-list expanded c169 permit 16 ^65000:3_0:184_0:15$ ip community-list expanded c169 permit 17 ^65000:3_0:185_0:16$ ip community-list expanded c169 permit 18 ^65000:3_0:186_0:17$ ip community-list expanded c169 permit 19 ^65000:3_0:187_0:18$ ip community-list expanded c169 permit 20 ^65000:3_0:188_0:19$ ip community-list expanded c169 permit 21 ^65000:3_0:189_0:20$ ip community-list expanded c169 permit 22 ^65000:3_0:190_0:21$ ip community-list expanded c169 permit 23 ^65000:3_0:191_0:22$ ip community-list expanded c169 permit 24 ^65000:3_0:192_0:23$ ip community-list expanded c169 permit 25 ^65000:3_0:193_0:24$ ip community-list expanded c169 permit 26 ^65000:3_0:194_0:25$ ip community-list expanded c169 permit 27 ^65000:3_0:195_0:26$ ip community-list expanded c169 permit 28 ^65000:3_0:196_0:27$ ip community-list expanded c169 permit 29 ^65000:3_0:197_0:28$ ip community-list expanded c169 permit 30 ^65000:3_0:198_0:29$ ip community-list expanded c169 permit 31 ^65000:3_0:199_0:30$ ip community-list expanded c169 permit 32 ^65000:3_0:200_0:31$ ip community-list expanded c169 permit 33 ^65000:3_0:201_0:32$ ip community-list expanded c169 permit 34 ^65000:3_0:202_0:33$ ip community-list expanded c169 permit 35 ^65000:3_0:203_0:34$ ip community-list expanded c169 permit 36 ^65000:3_0:204_0:35$ ip community-list expanded c169 permit 37 ^65000:3_0:205_0:36$ ip community-list expanded c169 permit 38 ^65000:3_0:206_0:37$ ip community-list expanded c169 permit 39 ^65000:3_0:207_0:38$ ip community-list expanded c169 permit 40 ^65000:3_0:208_0:39$ ip community-list expanded c169 permit 41 ^65000:3_0:209_0:40$ ip community-list expanded c169 permit 42 ^65000:3_0:210_0:41$ ip community-list expanded c169 permit 43 ^65000:3_0:211_0:42$ ip community-list expanded c169 permit 44 ^65000:3_0:212_0:43$ ip community-list expanded c169 permit 45 ^65000:3_0:213_0:44$ ip community-list expanded c169 permit 46 ^65000:3_0:214_0:45$ ip community-list expanded c169 permit 47 ^65000:3_0:215_0:46$ ip community-list expanded c169 permit 48 ^65000:3_0:216_0:47$ ip community-list expanded c169 permit 49 ^65000:3_0:217_0:48$ ip community-list expanded c169 permit 50 ^65000:3_0:218_0:49$ ip community-list expanded c169 permit 51 ^65000:3_0:219_0:50$ ip community-list expanded c169 permit 52 ^65000:3_0:220_0:51$ ip community-list expanded c169 permit 53 ^65000:3_0:221_0:52$ ip community-list expanded c169 permit 54 ^65000:3_0:222_0:53$ ip community-list expanded c169 permit 55 ^65000:3_0:223_0:54$ ip community-list expanded c169 permit 56 ^65000:3_0:224_0:55$ ip community-list expanded c169 permit 57 ^65000:3_0:225_0:56$ ip community-list expanded c169 permit 58 ^65000:3_0:226_0:57$ ip community-list expanded c169 permit 59 ^65000:3_0:227_0:58$ ip community-list expanded c169 permit 60 ^65000:3_0:228_0:59$ ip community-list expanded c169 permit 61 ^65000:3_0:229_0:60$ ip community-list expanded c169 permit 62 ^65000:3_0:230_0:61$ ip community-list expanded c169 permit 63 ^65000:3_0:231_0:62$ ip community-list expanded c169 permit 64 ^65000:3_0:232_0:63$ ip community-list expanded c169 permit 65 ^65000:3_0:233_0:64$ ip community-list expanded c169 permit 66 ^65000:3_0:234_0:65$ ip community-list expanded c169 permit 67 ^65000:3_0:235_0:66$ ip community-list expanded c169 permit 68 ^65000:3_0:236_0:67$ ip community-list expanded c169 permit 69 ^65000:3_0:237_0:68$ ip community-list expanded c169 permit 70 ^65000:3_0:238_0:69$ ip community-list expanded c169 permit 71 ^65000:3_0:239_0:70$ ip community-list expanded c169 permit 72 ^65000:3_0:240_0:71$ ip community-list expanded c169 permit 73 ^65000:3_0:241_0:72$ ip community-list expanded c169 permit 74 ^65000:3_0:242_0:73$ ip community-list expanded c169 permit 75 ^65000:3_0:243_0:74$ ip community-list expanded c169 permit 76 ^65000:3_0:244_0:75$ ip community-list expanded c169 permit 77 ^65000:3_0:245_0:76$ ip community-list expanded c169 permit 78 ^65000:3_0:246_0:77$ ip community-list expanded c169 permit 79 ^65000:3_0:247_0:78$ ip community-list expanded c169 permit 80 ^65000:3_0:248_0:79$ ip community-list expanded c169 permit 81 ^65000:3_0:249_0:80$ ip community-list expanded c169 permit 82 ^65000:3_0:250_0:81$ ip community-list expanded c169 permit 83 ^65000:3_0:251_0:82$ ip community-list expanded c169 permit 84 ^65000:3_0:252_0:83$ ip community-list expanded c169 permit 85 ^65000:3_0:253_0:84$ ip community-list expanded c169 permit 86 ^65000:3_0:254_0:85$ ip community-list expanded c169 permit 87 ^65000:3_0:255_0:86$ ip community-list expanded c169 permit 88 ^65000:3_0:256_0:87$ route-map calculator permit 15237 match community 1_1_168 2_1_169 1_2_167 1_3_166 1_4_165 set community 0:169 route-map calculator permit 15238 match community 1_5_164 1_6_163 1_7_162 1_8_161 1_9_160 set community 0:169 route-map calculator permit 15239 match community 1_10_159 1_11_158 1_12_157 2_13_13 1_13_156 set community 0:169 route-map calculator permit 15240 match community 1_14_155 1_15_154 1_16_153 1_17_152 1_18_151 set community 0:169 route-map calculator permit 15241 match community 1_19_150 1_20_149 1_21_148 1_22_147 1_23_146 set community 0:169 route-map calculator permit 15242 match community 1_24_145 1_25_144 1_26_143 1_27_142 1_28_141 set community 0:169 route-map calculator permit 15243 match community 1_29_140 1_30_139 1_31_138 1_32_137 1_33_136 set community 0:169 route-map calculator permit 15244 match community 1_34_135 1_35_134 1_36_133 1_37_132 1_38_131 set community 0:169 route-map calculator permit 15245 match community 1_39_130 1_40_129 1_41_128 1_42_127 1_43_126 set community 0:169 route-map calculator permit 15246 match community 1_44_125 1_45_124 1_46_123 1_47_122 1_48_121 set community 0:169 route-map calculator permit 15247 match community 1_49_120 1_50_119 1_51_118 1_52_117 1_53_116 set community 0:169 route-map calculator permit 15248 match community 1_54_115 1_55_114 1_56_113 1_57_112 1_58_111 set community 0:169 route-map calculator permit 15249 match community 1_59_110 1_60_109 1_61_108 1_62_107 1_63_106 set community 0:169 route-map calculator permit 15250 match community 1_64_105 1_65_104 1_66_103 1_67_102 1_68_101 set community 0:169 route-map calculator permit 15251 match community 1_69_100 1_70_99 1_71_98 1_72_97 1_73_96 set community 0:169 route-map calculator permit 15252 match community 1_74_95 1_75_94 1_76_93 1_77_92 1_78_91 set community 0:169 route-map calculator permit 15253 match community 1_79_90 1_80_89 1_81_88 1_82_87 1_83_86 set community 0:169 route-map calculator permit 15254 match community 1_84_85 c4_169_1 c3_170_1 c3_171_2 c3_172_3 set community 0:169 route-map calculator permit 15255 match community c3_173_4 c3_174_5 c3_175_6 c3_176_7 c3_177_8 set community 0:169 route-map calculator permit 15256 match community c3_178_9 c3_179_10 c3_180_11 c3_181_12 c3_182_13 set community 0:169 route-map calculator permit 15257 match community c3_183_14 c3_184_15 c3_185_16 c3_186_17 c3_187_18 set community 0:169 route-map calculator permit 15258 match community c3_188_19 c3_189_20 c3_190_21 c3_191_22 c3_192_23 set community 0:169 route-map calculator permit 15259 match community c3_193_24 c3_194_25 c3_195_26 c3_196_27 c3_197_28 set community 0:169 route-map calculator permit 15260 match community c3_198_29 c3_199_30 c3_200_31 c3_201_32 c3_202_33 set community 0:169 route-map calculator permit 15261 match community c3_203_34 c3_204_35 c3_205_36 c3_206_37 c3_207_38 set community 0:169 route-map calculator permit 15262 match community c3_208_39 c3_209_40 c3_210_41 c3_211_42 c3_212_43 set community 0:169 route-map calculator permit 15263 match community c3_213_44 c3_214_45 c3_215_46 c3_216_47 c3_217_48 set community 0:169 route-map calculator permit 15264 match community c3_218_49 c3_219_50 c3_220_51 c3_221_52 c3_222_53 set community 0:169 route-map calculator permit 15265 match community c3_223_54 c3_224_55 c3_225_56 c3_226_57 c3_227_58 set community 0:169 route-map calculator permit 15266 match community c3_228_59 c3_229_60 c3_230_61 c3_231_62 c3_232_63 set community 0:169 route-map calculator permit 15267 match community c3_233_64 c3_234_65 c3_235_66 c3_236_67 c3_237_68 set community 0:169 route-map calculator permit 15268 match community c3_238_69 c3_239_70 c3_240_71 c3_241_72 c3_242_73 set community 0:169 route-map calculator permit 15269 match community c3_243_74 c3_244_75 c3_245_76 c3_246_77 c3_247_78 set community 0:169 route-map calculator permit 15270 match community c3_248_79 c3_249_80 c3_250_81 c3_251_82 c3_252_83 set community 0:169 route-map calculator permit 15271 match community c3_253_84 c3_254_85 c3_255_86 c3_256_87 set community 0:169 ip community-list standard 2_19_59 permit 65000:2 0:19 0:59 route-map calculator permit 15272 match community 2_19_59 set community 0:1121 ip community-list standard 2_51_183 permit 65000:2 0:51 0:183 ip community-list standard 2_61_153 permit 65000:2 0:61 0:153 route-map calculator permit 15273 match community 2_51_183 2_61_153 set community 0:9333 ip community-list standard 2_149_211 permit 65000:2 0:149 0:211 route-map calculator permit 15274 match community 2_149_211 set community 0:31439 ip community-list standard 2_36_215 permit 65000:2 0:36 0:215 ip community-list standard 2_43_180 permit 65000:2 0:43 0:180 ip community-list standard 2_45_172 permit 65000:2 0:45 0:172 ip community-list standard 2_60_129 permit 65000:2 0:60 0:129 ip community-list standard 2_86_90 permit 65000:2 0:86 0:90 route-map calculator permit 15275 match community 2_36_215 2_43_180 2_45_172 2_60_129 2_86_90 set community 0:7740 ip community-list standard 2_73_184 permit 65000:2 0:73 0:184 ip community-list standard 2_92_146 permit 65000:2 0:92 0:146 route-map calculator permit 15276 match community 2_73_184 2_92_146 set community 0:13432 ip community-list standard 2_36_194 permit 65000:2 0:36 0:194 ip community-list standard 2_72_97 permit 65000:2 0:72 0:97 route-map calculator permit 15277 match community 2_36_194 2_72_97 set community 0:6984 ip community-list standard 2_105_248 permit 65000:2 0:105 0:248 ip community-list standard 2_120_217 permit 65000:2 0:120 0:217 ip community-list standard 2_124_210 permit 65000:2 0:124 0:210 ip community-list standard 2_140_186 permit 65000:2 0:140 0:186 ip community-list standard 2_155_168 permit 65000:2 0:155 0:168 route-map calculator permit 15278 match community 2_105_248 2_120_217 2_124_210 2_140_186 2_155_168 set community 0:26040 ip community-list standard 2_171_217 permit 65000:2 0:171 0:217 route-map calculator permit 15279 match community 2_171_217 set community 0:37107 ip community-list standard 2_174_234 permit 65000:2 0:174 0:234 route-map calculator permit 15280 match community 2_174_234 set community 0:40716 ip community-list standard 2_115_139 permit 65000:2 0:115 0:139 route-map calculator permit 15281 match community 2_115_139 set community 0:15985 ip community-list standard 2_86_225 permit 65000:2 0:86 0:225 ip community-list standard 2_90_215 permit 65000:2 0:90 0:215 ip community-list standard 2_129_150 permit 65000:2 0:129 0:150 route-map calculator permit 15282 match community 2_86_225 2_90_215 2_129_150 set community 0:19350 ip community-list standard 2_248_252 permit 65000:2 0:248 0:252 route-map calculator permit 15283 match community 2_248_252 set community 0:62496 ip community-list standard 2_26_186 permit 65000:2 0:26 0:186 ip community-list standard 2_31_156 permit 65000:2 0:31 0:156 ip community-list standard 2_39_124 permit 65000:2 0:39 0:124 ip community-list standard 2_52_93 permit 65000:2 0:52 0:93 ip community-list standard 2_62_78 permit 65000:2 0:62 0:78 route-map calculator permit 15284 match community 2_26_186 2_31_156 2_39_124 2_52_93 2_62_78 set community 0:4836 ip community-list standard 2_45_186 permit 65000:2 0:45 0:186 ip community-list standard 2_54_155 permit 65000:2 0:54 0:155 ip community-list standard 2_62_135 permit 65000:2 0:62 0:135 ip community-list standard 2_90_93 permit 65000:2 0:90 0:93 route-map calculator permit 15285 match community 2_45_186 2_54_155 2_62_135 2_90_93 set community 0:8370 ip community-list standard 2_117_215 permit 65000:2 0:117 0:215 ip community-list standard 2_129_195 permit 65000:2 0:129 0:195 route-map calculator permit 15286 match community 2_117_215 2_129_195 set community 0:25155 ip community-list standard 2_212_230 permit 65000:2 0:212 0:230 route-map calculator permit 15287 match community 2_212_230 set community 0:48760 ip community-list standard 2_85_235 permit 65000:2 0:85 0:235 route-map calculator permit 15288 match community 2_85_235 set community 0:19975 ip community-list standard 2_43_189 permit 65000:2 0:43 0:189 ip community-list standard 2_63_129 permit 65000:2 0:63 0:129 route-map calculator permit 15289 match community 2_43_189 2_63_129 set community 0:8127 ip community-list standard 2_75_202 permit 65000:2 0:75 0:202 ip community-list standard 2_101_150 permit 65000:2 0:101 0:150 route-map calculator permit 15290 match community 2_75_202 2_101_150 set community 0:15150 ip community-list standard 2_172_202 permit 65000:2 0:172 0:202 route-map calculator permit 15291 match community 2_172_202 set community 0:34744 ip community-list standard 2_7_137 permit 65000:2 0:7 0:137 route-map calculator permit 15292 match community 2_7_137 set community 0:959 ip community-list standard 2_109_143 permit 65000:2 0:109 0:143 route-map calculator permit 15293 match community 2_109_143 set community 0:15587 ip community-list standard 2_112_226 permit 65000:2 0:112 0:226 ip community-list standard 2_113_224 permit 65000:2 0:113 0:224 route-map calculator permit 15294 match community 2_112_226 2_113_224 set community 0:25312 ip community-list standard 2_117_129 permit 65000:2 0:117 0:129 route-map calculator permit 15295 match community 2_117_129 set community 0:15093 ip community-list standard 2_227_241 permit 65000:2 0:227 0:241 route-map calculator permit 15296 match community 2_227_241 set community 0:54707 ip community-list standard 2_46_224 permit 65000:2 0:46 0:224 ip community-list standard 2_56_184 permit 65000:2 0:56 0:184 ip community-list standard 2_64_161 permit 65000:2 0:64 0:161 ip community-list standard 2_92_112 permit 65000:2 0:92 0:112 route-map calculator permit 15297 match community 2_46_224 2_56_184 2_64_161 2_92_112 set community 0:10304 ip community-list standard 2_73_209 permit 65000:2 0:73 0:209 route-map calculator permit 15298 match community 2_73_209 set community 0:15257 ip community-list standard 2_31_149 permit 65000:2 0:31 0:149 route-map calculator permit 15299 match community 2_31_149 set community 0:4619 ip community-list standard 2_15_246 permit 65000:2 0:15 0:246 ip community-list standard 2_18_205 permit 65000:2 0:18 0:205 ip community-list standard 2_30_123 permit 65000:2 0:30 0:123 ip community-list standard 2_41_90 permit 65000:2 0:41 0:90 ip community-list standard 2_45_82 permit 65000:2 0:45 0:82 route-map calculator permit 15300 match community 2_15_246 2_18_205 2_30_123 2_41_90 2_45_82 set community 0:3690 ip community-list standard 2_214_232 permit 65000:2 0:214 0:232 route-map calculator permit 15301 match community 2_214_232 set community 0:49648 ip community-list standard 2_153_227 permit 65000:2 0:153 0:227 route-map calculator permit 15302 match community 2_153_227 set community 0:34731 ip community-list standard 2_148_232 permit 65000:2 0:148 0:232 route-map calculator permit 15303 match community 2_148_232 set community 0:34336 ip community-list standard 2_98_179 permit 65000:2 0:98 0:179 route-map calculator permit 15304 match community 2_98_179 set community 0:17542 ip community-list standard 2_79_251 permit 65000:2 0:79 0:251 route-map calculator permit 15305 match community 2_79_251 set community 0:19829 ip community-list standard 2_33_201 permit 65000:2 0:33 0:201 ip community-list standard 2_67_99 permit 65000:2 0:67 0:99 route-map calculator permit 15306 match community 2_33_201 2_67_99 set community 0:6633 ip community-list standard 2_139_252 permit 65000:2 0:139 0:252 route-map calculator permit 15307 match community 2_139_252 set community 0:35028 ip community-list standard 2_47_153 permit 65000:2 0:47 0:153 ip community-list standard 2_51_141 permit 65000:2 0:51 0:141 route-map calculator permit 15308 match community 2_47_153 2_51_141 set community 0:7191 ip community-list standard 2_57_249 permit 65000:2 0:57 0:249 ip community-list standard 2_83_171 permit 65000:2 0:83 0:171 route-map calculator permit 15309 match community 2_57_249 2_83_171 set community 0:14193 ip community-list standard 2_101_185 permit 65000:2 0:101 0:185 route-map calculator permit 15310 match community 2_101_185 set community 0:18685 ip community-list standard 2_36_252 permit 65000:2 0:36 0:252 ip community-list standard 2_42_216 permit 65000:2 0:42 0:216 ip community-list standard 2_48_189 permit 65000:2 0:48 0:189 ip community-list standard 2_54_168 permit 65000:2 0:54 0:168 ip community-list standard 2_56_162 permit 65000:2 0:56 0:162 ip community-list standard 2_63_144 permit 65000:2 0:63 0:144 ip community-list standard 2_72_126 permit 65000:2 0:72 0:126 ip community-list standard 2_81_112 permit 65000:2 0:81 0:112 ip community-list standard 2_84_108 permit 65000:2 0:84 0:108 route-map calculator permit 15311 match community 2_36_252 2_42_216 2_48_189 2_54_168 2_56_162 set community 0:9072 route-map calculator permit 15312 match community 2_63_144 2_72_126 2_81_112 2_84_108 set community 0:9072 ip community-list standard 2_14_253 permit 65000:2 0:14 0:253 ip community-list standard 2_22_161 permit 65000:2 0:22 0:161 ip community-list standard 2_23_154 permit 65000:2 0:23 0:154 ip community-list standard 2_46_77 permit 65000:2 0:46 0:77 route-map calculator permit 15313 match community 2_14_253 2_22_161 2_23_154 2_46_77 set community 0:3542 ip community-list standard 2_109_191 permit 65000:2 0:109 0:191 route-map calculator permit 15314 match community 2_109_191 set community 0:20819 ip community-list standard 2_73_253 permit 65000:2 0:73 0:253 route-map calculator permit 15315 match community 2_73_253 set community 0:18469 ip community-list standard 2_73_242 permit 65000:2 0:73 0:242 ip community-list standard 2_121_146 permit 65000:2 0:121 0:146 route-map calculator permit 15316 match community 2_73_242 2_121_146 set community 0:17666 ip community-list standard 2_74_242 permit 65000:2 0:74 0:242 ip community-list standard 2_121_148 permit 65000:2 0:121 0:148 route-map calculator permit 15317 match community 2_74_242 2_121_148 set community 0:17908 ip community-list standard 2_92_207 permit 65000:2 0:92 0:207 ip community-list standard 2_138_138 permit 65000:2 0:138 0:138 route-map calculator permit 15318 match community 2_92_207 2_138_138 set community 0:19044 ip community-list standard 2_37_214 permit 65000:2 0:37 0:214 ip community-list standard 2_74_107 permit 65000:2 0:74 0:107 route-map calculator permit 15319 match community 2_37_214 2_74_107 set community 0:7918 ip community-list standard 2_59_249 permit 65000:2 0:59 0:249 ip community-list standard 2_83_177 permit 65000:2 0:83 0:177 route-map calculator permit 15320 match community 2_59_249 2_83_177 set community 0:14691 ip community-list standard 2_54_201 permit 65000:2 0:54 0:201 ip community-list standard 2_67_162 permit 65000:2 0:67 0:162 ip community-list standard 2_81_134 permit 65000:2 0:81 0:134 route-map calculator permit 15321 match community 2_54_201 2_67_162 2_81_134 set community 0:10854 ip community-list standard 2_152_248 permit 65000:2 0:152 0:248 route-map calculator permit 15322 match community 2_152_248 set community 0:37696 ip community-list standard 2_93_198 permit 65000:2 0:93 0:198 ip community-list standard 2_99_186 permit 65000:2 0:99 0:186 route-map calculator permit 15323 match community 2_93_198 2_99_186 set community 0:18414 ip community-list standard 2_106_221 permit 65000:2 0:106 0:221 route-map calculator permit 15324 match community 2_106_221 set community 0:23426 ip community-list standard 2_167_226 permit 65000:2 0:167 0:226 route-map calculator permit 15325 match community 2_167_226 set community 0:37742 ip community-list standard 2_212_237 permit 65000:2 0:212 0:237 route-map calculator permit 15326 match community 2_212_237 set community 0:50244 ip community-list standard 2_94_204 permit 65000:2 0:94 0:204 ip community-list standard 2_102_188 permit 65000:2 0:102 0:188 ip community-list standard 2_136_141 permit 65000:2 0:136 0:141 route-map calculator permit 15327 match community 2_94_204 2_102_188 2_136_141 set community 0:19176 ip community-list standard 2_186_215 permit 65000:2 0:186 0:215 route-map calculator permit 15328 match community 2_186_215 set community 0:39990 ip community-list standard 2_160_227 permit 65000:2 0:160 0:227 route-map calculator permit 15329 match community 2_160_227 set community 0:36320 ip community-list standard 2_108_248 permit 65000:2 0:108 0:248 ip community-list standard 2_124_216 permit 65000:2 0:124 0:216 ip community-list standard 2_144_186 permit 65000:2 0:144 0:186 route-map calculator permit 15330 match community 2_108_248 2_124_216 2_144_186 set community 0:26784 ip community-list standard 1_1_234 permit 65000:1 0:1 0:234 ip community-list standard 2_1_235 permit 65000:2 0:1 0:235 ip community-list standard 1_2_233 permit 65000:1 0:2 0:233 ip community-list standard 1_3_232 permit 65000:1 0:3 0:232 ip community-list standard 1_4_231 permit 65000:1 0:4 0:231 ip community-list standard 2_5_47 permit 65000:2 0:5 0:47 ip community-list standard 1_5_230 permit 65000:1 0:5 0:230 ip community-list standard 1_6_229 permit 65000:1 0:6 0:229 ip community-list standard 1_7_228 permit 65000:1 0:7 0:228 ip community-list standard 1_8_227 permit 65000:1 0:8 0:227 ip community-list standard 1_9_226 permit 65000:1 0:9 0:226 ip community-list standard 1_10_225 permit 65000:1 0:10 0:225 ip community-list standard 1_11_224 permit 65000:1 0:11 0:224 ip community-list standard 1_12_223 permit 65000:1 0:12 0:223 ip community-list standard 1_13_222 permit 65000:1 0:13 0:222 ip community-list standard 1_14_221 permit 65000:1 0:14 0:221 ip community-list standard 1_15_220 permit 65000:1 0:15 0:220 ip community-list standard 1_16_219 permit 65000:1 0:16 0:219 ip community-list standard 1_17_218 permit 65000:1 0:17 0:218 ip community-list standard 1_18_217 permit 65000:1 0:18 0:217 ip community-list standard 1_19_216 permit 65000:1 0:19 0:216 ip community-list standard 1_20_215 permit 65000:1 0:20 0:215 ip community-list standard 1_21_214 permit 65000:1 0:21 0:214 ip community-list standard 1_22_213 permit 65000:1 0:22 0:213 ip community-list standard 1_23_212 permit 65000:1 0:23 0:212 ip community-list standard 1_24_211 permit 65000:1 0:24 0:211 ip community-list standard 1_25_210 permit 65000:1 0:25 0:210 ip community-list standard 1_26_209 permit 65000:1 0:26 0:209 ip community-list standard 1_27_208 permit 65000:1 0:27 0:208 ip community-list standard 1_28_207 permit 65000:1 0:28 0:207 ip community-list standard 1_29_206 permit 65000:1 0:29 0:206 ip community-list standard 1_30_205 permit 65000:1 0:30 0:205 ip community-list standard 1_31_204 permit 65000:1 0:31 0:204 ip community-list standard 1_32_203 permit 65000:1 0:32 0:203 ip community-list standard 1_33_202 permit 65000:1 0:33 0:202 ip community-list standard 1_34_201 permit 65000:1 0:34 0:201 ip community-list standard 1_35_200 permit 65000:1 0:35 0:200 ip community-list standard 1_36_199 permit 65000:1 0:36 0:199 ip community-list standard 1_37_198 permit 65000:1 0:37 0:198 ip community-list standard 1_38_197 permit 65000:1 0:38 0:197 ip community-list standard 1_39_196 permit 65000:1 0:39 0:196 ip community-list standard 1_40_195 permit 65000:1 0:40 0:195 ip community-list standard 1_41_194 permit 65000:1 0:41 0:194 ip community-list standard 1_42_193 permit 65000:1 0:42 0:193 ip community-list standard 1_43_192 permit 65000:1 0:43 0:192 ip community-list standard 1_44_191 permit 65000:1 0:44 0:191 ip community-list standard 1_45_190 permit 65000:1 0:45 0:190 ip community-list standard 1_46_189 permit 65000:1 0:46 0:189 ip community-list standard 1_47_188 permit 65000:1 0:47 0:188 ip community-list standard 1_48_187 permit 65000:1 0:48 0:187 ip community-list standard 1_49_186 permit 65000:1 0:49 0:186 ip community-list standard 1_50_185 permit 65000:1 0:50 0:185 ip community-list standard 1_51_184 permit 65000:1 0:51 0:184 ip community-list standard 1_52_183 permit 65000:1 0:52 0:183 ip community-list standard 1_53_182 permit 65000:1 0:53 0:182 ip community-list standard 1_54_181 permit 65000:1 0:54 0:181 ip community-list standard 1_55_180 permit 65000:1 0:55 0:180 ip community-list standard 1_56_179 permit 65000:1 0:56 0:179 ip community-list standard 1_57_178 permit 65000:1 0:57 0:178 ip community-list standard 1_58_177 permit 65000:1 0:58 0:177 ip community-list standard 1_59_176 permit 65000:1 0:59 0:176 ip community-list standard 1_60_175 permit 65000:1 0:60 0:175 ip community-list standard 1_61_174 permit 65000:1 0:61 0:174 ip community-list standard 1_62_173 permit 65000:1 0:62 0:173 ip community-list standard 1_63_172 permit 65000:1 0:63 0:172 ip community-list standard 1_64_171 permit 65000:1 0:64 0:171 ip community-list standard 1_65_170 permit 65000:1 0:65 0:170 ip community-list standard 1_66_169 permit 65000:1 0:66 0:169 ip community-list standard 1_67_168 permit 65000:1 0:67 0:168 ip community-list standard 1_68_167 permit 65000:1 0:68 0:167 ip community-list standard 1_69_166 permit 65000:1 0:69 0:166 ip community-list standard 1_70_165 permit 65000:1 0:70 0:165 ip community-list standard 1_71_164 permit 65000:1 0:71 0:164 ip community-list standard 1_72_163 permit 65000:1 0:72 0:163 ip community-list standard 1_73_162 permit 65000:1 0:73 0:162 ip community-list standard 1_74_161 permit 65000:1 0:74 0:161 ip community-list standard 1_75_160 permit 65000:1 0:75 0:160 ip community-list standard 1_76_159 permit 65000:1 0:76 0:159 ip community-list standard 1_77_158 permit 65000:1 0:77 0:158 ip community-list standard 1_78_157 permit 65000:1 0:78 0:157 ip community-list standard 1_79_156 permit 65000:1 0:79 0:156 ip community-list standard 1_80_155 permit 65000:1 0:80 0:155 ip community-list standard 1_81_154 permit 65000:1 0:81 0:154 ip community-list standard 1_82_153 permit 65000:1 0:82 0:153 ip community-list standard 1_83_152 permit 65000:1 0:83 0:152 ip community-list standard 1_84_151 permit 65000:1 0:84 0:151 ip community-list standard 1_85_150 permit 65000:1 0:85 0:150 ip community-list standard 1_86_149 permit 65000:1 0:86 0:149 ip community-list standard 1_87_148 permit 65000:1 0:87 0:148 ip community-list standard 1_88_147 permit 65000:1 0:88 0:147 ip community-list standard 1_89_146 permit 65000:1 0:89 0:146 ip community-list standard 1_90_145 permit 65000:1 0:90 0:145 ip community-list standard 1_91_144 permit 65000:1 0:91 0:144 ip community-list standard 1_92_143 permit 65000:1 0:92 0:143 ip community-list standard 1_93_142 permit 65000:1 0:93 0:142 ip community-list standard 1_94_141 permit 65000:1 0:94 0:141 ip community-list standard 1_95_140 permit 65000:1 0:95 0:140 ip community-list standard 1_96_139 permit 65000:1 0:96 0:139 ip community-list standard 1_97_138 permit 65000:1 0:97 0:138 ip community-list standard 1_98_137 permit 65000:1 0:98 0:137 ip community-list standard 1_99_136 permit 65000:1 0:99 0:136 ip community-list standard 1_100_135 permit 65000:1 0:100 0:135 ip community-list standard 1_101_134 permit 65000:1 0:101 0:134 ip community-list standard 1_102_133 permit 65000:1 0:102 0:133 ip community-list standard 1_103_132 permit 65000:1 0:103 0:132 ip community-list standard 1_104_131 permit 65000:1 0:104 0:131 ip community-list standard 1_105_130 permit 65000:1 0:105 0:130 ip community-list standard 1_106_129 permit 65000:1 0:106 0:129 ip community-list standard 1_107_128 permit 65000:1 0:107 0:128 ip community-list standard 1_108_127 permit 65000:1 0:108 0:127 ip community-list standard 1_109_126 permit 65000:1 0:109 0:126 ip community-list standard 1_110_125 permit 65000:1 0:110 0:125 ip community-list standard 1_111_124 permit 65000:1 0:111 0:124 ip community-list standard 1_112_123 permit 65000:1 0:112 0:123 ip community-list standard 1_113_122 permit 65000:1 0:113 0:122 ip community-list standard 1_114_121 permit 65000:1 0:114 0:121 ip community-list standard 1_115_120 permit 65000:1 0:115 0:120 ip community-list standard 1_116_119 permit 65000:1 0:116 0:119 ip community-list standard 1_117_118 permit 65000:1 0:117 0:118 ip community-list expanded c235 permit 1 ^65000:4_0:235_0:1$ ip community-list expanded c235 permit 2 ^65000:3_0:236_0:1$ ip community-list expanded c235 permit 3 ^65000:3_0:237_0:2$ ip community-list expanded c235 permit 4 ^65000:3_0:238_0:3$ ip community-list expanded c235 permit 5 ^65000:3_0:239_0:4$ ip community-list expanded c235 permit 6 ^65000:3_0:240_0:5$ ip community-list expanded c235 permit 7 ^65000:3_0:241_0:6$ ip community-list expanded c235 permit 8 ^65000:3_0:242_0:7$ ip community-list expanded c235 permit 9 ^65000:3_0:243_0:8$ ip community-list expanded c235 permit 10 ^65000:3_0:244_0:9$ ip community-list expanded c235 permit 11 ^65000:3_0:245_0:10$ ip community-list expanded c235 permit 12 ^65000:3_0:246_0:11$ ip community-list expanded c235 permit 13 ^65000:3_0:247_0:12$ ip community-list expanded c235 permit 14 ^65000:3_0:248_0:13$ ip community-list expanded c235 permit 15 ^65000:3_0:249_0:14$ ip community-list expanded c235 permit 16 ^65000:3_0:250_0:15$ ip community-list expanded c235 permit 17 ^65000:3_0:251_0:16$ ip community-list expanded c235 permit 18 ^65000:3_0:252_0:17$ ip community-list expanded c235 permit 19 ^65000:3_0:253_0:18$ ip community-list expanded c235 permit 20 ^65000:3_0:254_0:19$ ip community-list expanded c235 permit 21 ^65000:3_0:255_0:20$ ip community-list expanded c235 permit 22 ^65000:3_0:256_0:21$ route-map calculator permit 15331 match community 1_1_234 2_1_235 1_2_233 1_3_232 1_4_231 set community 0:235 route-map calculator permit 15332 match community 2_5_47 1_5_230 1_6_229 1_7_228 1_8_227 set community 0:235 route-map calculator permit 15333 match community 1_9_226 1_10_225 1_11_224 1_12_223 1_13_222 set community 0:235 route-map calculator permit 15334 match community 1_14_221 1_15_220 1_16_219 1_17_218 1_18_217 set community 0:235 route-map calculator permit 15335 match community 1_19_216 1_20_215 1_21_214 1_22_213 1_23_212 set community 0:235 route-map calculator permit 15336 match community 1_24_211 1_25_210 1_26_209 1_27_208 1_28_207 set community 0:235 route-map calculator permit 15337 match community 1_29_206 1_30_205 1_31_204 1_32_203 1_33_202 set community 0:235 route-map calculator permit 15338 match community 1_34_201 1_35_200 1_36_199 1_37_198 1_38_197 set community 0:235 route-map calculator permit 15339 match community 1_39_196 1_40_195 1_41_194 1_42_193 1_43_192 set community 0:235 route-map calculator permit 15340 match community 1_44_191 1_45_190 1_46_189 1_47_188 1_48_187 set community 0:235 route-map calculator permit 15341 match community 1_49_186 1_50_185 1_51_184 1_52_183 1_53_182 set community 0:235 route-map calculator permit 15342 match community 1_54_181 1_55_180 1_56_179 1_57_178 1_58_177 set community 0:235 route-map calculator permit 15343 match community 1_59_176 1_60_175 1_61_174 1_62_173 1_63_172 set community 0:235 route-map calculator permit 15344 match community 1_64_171 1_65_170 1_66_169 1_67_168 1_68_167 set community 0:235 route-map calculator permit 15345 match community 1_69_166 1_70_165 1_71_164 1_72_163 1_73_162 set community 0:235 route-map calculator permit 15346 match community 1_74_161 1_75_160 1_76_159 1_77_158 1_78_157 set community 0:235 route-map calculator permit 15347 match community 1_79_156 1_80_155 1_81_154 1_82_153 1_83_152 set community 0:235 route-map calculator permit 15348 match community 1_84_151 1_85_150 1_86_149 1_87_148 1_88_147 set community 0:235 route-map calculator permit 15349 match community 1_89_146 1_90_145 1_91_144 1_92_143 1_93_142 set community 0:235 route-map calculator permit 15350 match community 1_94_141 1_95_140 1_96_139 1_97_138 1_98_137 set community 0:235 route-map calculator permit 15351 match community 1_99_136 1_100_135 1_101_134 1_102_133 1_103_132 set community 0:235 route-map calculator permit 15352 match community 1_104_131 1_105_130 1_106_129 1_107_128 1_108_127 set community 0:235 route-map calculator permit 15353 match community 1_109_126 1_110_125 1_111_124 1_112_123 1_113_122 set community 0:235 route-map calculator permit 15354 match community 1_114_121 1_115_120 1_116_119 1_117_118 c4_235_1 set community 0:235 route-map calculator permit 15355 match community c3_236_1 c3_237_2 c3_238_3 c3_239_4 c3_240_5 set community 0:235 route-map calculator permit 15356 match community c3_241_6 c3_242_7 c3_243_8 c3_244_9 c3_245_10 set community 0:235 route-map calculator permit 15357 match community c3_246_11 c3_247_12 c3_248_13 c3_249_14 c3_250_15 set community 0:235 route-map calculator permit 15358 match community c3_251_16 c3_252_17 c3_253_18 c3_254_19 c3_255_20 set community 0:235 route-map calculator permit 15359 match community c3_256_21 set community 0:235 ip community-list standard 2_74_164 permit 65000:2 0:74 0:164 ip community-list standard 2_82_148 permit 65000:2 0:82 0:148 route-map calculator permit 15360 match community 2_74_164 2_82_148 set community 0:12136 ip community-list standard 2_155_255 permit 65000:2 0:155 0:255 route-map calculator permit 15361 match community 2_155_255 set community 0:39525 ip community-list standard 2_26_203 permit 65000:2 0:26 0:203 ip community-list standard 2_29_182 permit 65000:2 0:29 0:182 ip community-list standard 2_58_91 permit 65000:2 0:58 0:91 route-map calculator permit 15362 match community 2_26_203 2_29_182 2_58_91 set community 0:5278 ip community-list standard 2_131_209 permit 65000:2 0:131 0:209 route-map calculator permit 15363 match community 2_131_209 set community 0:27379 ip community-list standard 2_196_249 permit 65000:2 0:196 0:249 route-map calculator permit 15364 match community 2_196_249 set community 0:48804 ip community-list standard 2_163_189 permit 65000:2 0:163 0:189 route-map calculator permit 15365 match community 2_163_189 set community 0:30807 ip community-list standard 2_129_141 permit 65000:2 0:129 0:141 route-map calculator permit 15366 match community 2_129_141 set community 0:18189 ip community-list standard 2_9_234 permit 65000:2 0:9 0:234 ip community-list standard 2_13_162 permit 65000:2 0:13 0:162 ip community-list standard 2_18_117 permit 65000:2 0:18 0:117 ip community-list standard 2_26_81 permit 65000:2 0:26 0:81 ip community-list standard 2_27_78 permit 65000:2 0:27 0:78 ip community-list standard 2_39_54 permit 65000:2 0:39 0:54 route-map calculator permit 15367 match community 2_9_234 2_13_162 2_18_117 2_26_81 2_27_78 set community 0:2106 route-map calculator permit 15368 match community 2_39_54 set community 0:2106 ip community-list standard 2_54_233 permit 65000:2 0:54 0:233 route-map calculator permit 15369 match community 2_54_233 set community 0:12582 ip community-list standard 2_121_245 permit 65000:2 0:121 0:245 route-map calculator permit 15370 match community 2_121_245 set community 0:29645 ip community-list standard 2_9_137 permit 65000:2 0:9 0:137 route-map calculator permit 15371 match community 2_9_137 set community 0:1233 ip community-list standard 2_169_230 permit 65000:2 0:169 0:230 route-map calculator permit 15372 match community 2_169_230 set community 0:38870 ip community-list standard 2_161_179 permit 65000:2 0:161 0:179 route-map calculator permit 15373 match community 2_161_179 set community 0:28819 ip community-list standard 2_173_253 permit 65000:2 0:173 0:253 route-map calculator permit 15374 match community 2_173_253 set community 0:43769 ip community-list standard 2_54_199 permit 65000:2 0:54 0:199 route-map calculator permit 15375 match community 2_54_199 set community 0:10746 ip community-list standard 2_135_252 permit 65000:2 0:135 0:252 ip community-list standard 2_140_243 permit 65000:2 0:140 0:243 ip community-list standard 2_162_210 permit 65000:2 0:162 0:210 ip community-list standard 2_180_189 permit 65000:2 0:180 0:189 route-map calculator permit 15376 match community 2_135_252 2_140_243 2_162_210 2_180_189 set community 0:34020 ip community-list standard 2_145_205 permit 65000:2 0:145 0:205 route-map calculator permit 15377 match community 2_145_205 set community 0:29725 ip community-list standard 2_77_164 permit 65000:2 0:77 0:164 ip community-list standard 2_82_154 permit 65000:2 0:82 0:154 route-map calculator permit 15378 match community 2_77_164 2_82_154 set community 0:12628 ip community-list standard 2_137_236 permit 65000:2 0:137 0:236 route-map calculator permit 15379 match community 2_137_236 set community 0:32332 ip community-list standard 2_196_247 permit 65000:2 0:196 0:247 route-map calculator permit 15380 match community 2_196_247 set community 0:48412 ip community-list standard 2_92_169 permit 65000:2 0:92 0:169 route-map calculator permit 15381 match community 2_92_169 set community 0:15548 ip community-list standard 2_131_210 permit 65000:2 0:131 0:210 route-map calculator permit 15382 match community 2_131_210 set community 0:27510 ip community-list standard 2_163_255 permit 65000:2 0:163 0:255 route-map calculator permit 15383 match community 2_163_255 set community 0:41565 ip community-list standard 2_117_199 permit 65000:2 0:117 0:199 route-map calculator permit 15384 match community 2_117_199 set community 0:23283 ip community-list standard 2_27_254 permit 65000:2 0:27 0:254 ip community-list standard 2_54_127 permit 65000:2 0:54 0:127 route-map calculator permit 15385 match community 2_27_254 2_54_127 set community 0:6858 ip community-list standard 2_131_184 permit 65000:2 0:131 0:184 route-map calculator permit 15386 match community 2_131_184 set community 0:24104 ip community-list standard 2_4_246 permit 65000:2 0:4 0:246 ip community-list standard 2_6_164 permit 65000:2 0:6 0:164 ip community-list standard 2_8_123 permit 65000:2 0:8 0:123 ip community-list standard 2_12_82 permit 65000:2 0:12 0:82 ip community-list standard 2_24_41 permit 65000:2 0:24 0:41 route-map calculator permit 15387 match community 2_4_246 2_6_164 2_8_123 2_12_82 2_24_41 set community 0:984 ip community-list standard 2_86_221 permit 65000:2 0:86 0:221 route-map calculator permit 15388 match community 2_86_221 set community 0:19006 ip community-list standard 2_156_232 permit 65000:2 0:156 0:232 ip community-list standard 2_174_208 permit 65000:2 0:174 0:208 route-map calculator permit 15389 match community 2_156_232 2_174_208 set community 0:36192 ip community-list standard 2_213_247 permit 65000:2 0:213 0:247 route-map calculator permit 15390 match community 2_213_247 set community 0:52611 ip community-list standard 2_14_237 permit 65000:2 0:14 0:237 ip community-list standard 2_21_158 permit 65000:2 0:21 0:158 ip community-list standard 2_42_79 permit 65000:2 0:42 0:79 route-map calculator permit 15391 match community 2_14_237 2_21_158 2_42_79 set community 0:3318 ip community-list standard 2_198_255 permit 65000:2 0:198 0:255 route-map calculator permit 15392 match community 2_198_255 set community 0:50490 ip community-list standard 2_83_221 permit 65000:2 0:83 0:221 route-map calculator permit 15393 match community 2_83_221 set community 0:18343 ip community-list standard 2_138_208 permit 65000:2 0:138 0:208 ip community-list standard 2_156_184 permit 65000:2 0:156 0:184 route-map calculator permit 15394 match community 2_138_208 2_156_184 set community 0:28704 ip community-list standard 2_4_182 permit 65000:2 0:4 0:182 ip community-list standard 2_7_104 permit 65000:2 0:7 0:104 ip community-list standard 2_8_91 permit 65000:2 0:8 0:91 ip community-list standard 2_13_56 permit 65000:2 0:13 0:56 ip community-list standard 2_14_52 permit 65000:2 0:14 0:52 ip community-list standard 2_26_28 permit 65000:2 0:26 0:28 route-map calculator permit 15395 match community 2_4_182 2_7_104 2_8_91 2_13_56 2_14_52 set community 0:728 route-map calculator permit 15396 match community 2_26_28 set community 0:728 ip community-list standard 2_48_219 permit 65000:2 0:48 0:219 ip community-list standard 2_72_146 permit 65000:2 0:72 0:146 ip community-list standard 2_73_144 permit 65000:2 0:73 0:144 route-map calculator permit 15397 match community 2_48_219 2_72_146 2_73_144 set community 0:10512 ip community-list standard 2_118_245 permit 65000:2 0:118 0:245 route-map calculator permit 15398 match community 2_118_245 set community 0:28910 ip community-list standard 2_198_239 permit 65000:2 0:198 0:239 route-map calculator permit 15399 match community 2_198_239 set community 0:47322 ip community-list standard 2_53_234 permit 65000:2 0:53 0:234 ip community-list standard 2_78_159 permit 65000:2 0:78 0:159 ip community-list standard 2_106_117 permit 65000:2 0:106 0:117 route-map calculator permit 15400 match community 2_53_234 2_78_159 2_106_117 set community 0:12402 ip community-list standard 2_151_225 permit 65000:2 0:151 0:225 route-map calculator permit 15401 match community 2_151_225 set community 0:33975 ip community-list standard 2_197_216 permit 65000:2 0:197 0:216 route-map calculator permit 15402 match community 2_197_216 set community 0:42552 ip community-list standard 2_19_183 permit 65000:2 0:19 0:183 ip community-list standard 2_57_61 permit 65000:2 0:57 0:61 route-map calculator permit 15403 match community 2_19_183 2_57_61 set community 0:3477 ip community-list standard 2_165_226 permit 65000:2 0:165 0:226 route-map calculator permit 15404 match community 2_165_226 set community 0:37290 ip community-list standard 2_56_134 permit 65000:2 0:56 0:134 ip community-list standard 2_67_112 permit 65000:2 0:67 0:112 route-map calculator permit 15405 match community 2_56_134 2_67_112 set community 0:7504 ip community-list standard 2_5_53 permit 65000:2 0:5 0:53 ip community-list standard 1_9_256 permit 65000:1 0:9 0:256 ip community-list standard 1_10_255 permit 65000:1 0:10 0:255 ip community-list standard 1_11_254 permit 65000:1 0:11 0:254 ip community-list standard 1_12_253 permit 65000:1 0:12 0:253 ip community-list standard 1_13_252 permit 65000:1 0:13 0:252 ip community-list standard 1_14_251 permit 65000:1 0:14 0:251 ip community-list standard 1_15_250 permit 65000:1 0:15 0:250 ip community-list standard 1_16_249 permit 65000:1 0:16 0:249 ip community-list standard 1_17_248 permit 65000:1 0:17 0:248 ip community-list standard 1_18_247 permit 65000:1 0:18 0:247 ip community-list standard 1_19_246 permit 65000:1 0:19 0:246 ip community-list standard 1_20_245 permit 65000:1 0:20 0:245 ip community-list standard 1_21_244 permit 65000:1 0:21 0:244 ip community-list standard 1_22_243 permit 65000:1 0:22 0:243 ip community-list standard 1_23_242 permit 65000:1 0:23 0:242 ip community-list standard 1_24_241 permit 65000:1 0:24 0:241 ip community-list standard 1_25_240 permit 65000:1 0:25 0:240 ip community-list standard 1_26_239 permit 65000:1 0:26 0:239 ip community-list standard 1_27_238 permit 65000:1 0:27 0:238 ip community-list standard 1_28_237 permit 65000:1 0:28 0:237 ip community-list standard 1_29_236 permit 65000:1 0:29 0:236 ip community-list standard 1_30_235 permit 65000:1 0:30 0:235 ip community-list standard 1_31_234 permit 65000:1 0:31 0:234 ip community-list standard 1_32_233 permit 65000:1 0:32 0:233 ip community-list standard 1_33_232 permit 65000:1 0:33 0:232 ip community-list standard 1_34_231 permit 65000:1 0:34 0:231 ip community-list standard 1_35_230 permit 65000:1 0:35 0:230 ip community-list standard 1_36_229 permit 65000:1 0:36 0:229 ip community-list standard 1_37_228 permit 65000:1 0:37 0:228 ip community-list standard 1_38_227 permit 65000:1 0:38 0:227 ip community-list standard 1_39_226 permit 65000:1 0:39 0:226 ip community-list standard 1_40_225 permit 65000:1 0:40 0:225 ip community-list standard 1_41_224 permit 65000:1 0:41 0:224 ip community-list standard 1_42_223 permit 65000:1 0:42 0:223 ip community-list standard 1_43_222 permit 65000:1 0:43 0:222 ip community-list standard 1_44_221 permit 65000:1 0:44 0:221 ip community-list standard 1_45_220 permit 65000:1 0:45 0:220 ip community-list standard 1_46_219 permit 65000:1 0:46 0:219 ip community-list standard 1_47_218 permit 65000:1 0:47 0:218 ip community-list standard 1_48_217 permit 65000:1 0:48 0:217 ip community-list standard 1_49_216 permit 65000:1 0:49 0:216 ip community-list standard 1_50_215 permit 65000:1 0:50 0:215 ip community-list standard 1_51_214 permit 65000:1 0:51 0:214 ip community-list standard 1_52_213 permit 65000:1 0:52 0:213 ip community-list standard 1_53_212 permit 65000:1 0:53 0:212 ip community-list standard 1_54_211 permit 65000:1 0:54 0:211 ip community-list standard 1_55_210 permit 65000:1 0:55 0:210 ip community-list standard 1_56_209 permit 65000:1 0:56 0:209 ip community-list standard 1_57_208 permit 65000:1 0:57 0:208 ip community-list standard 1_58_207 permit 65000:1 0:58 0:207 ip community-list standard 1_59_206 permit 65000:1 0:59 0:206 ip community-list standard 1_60_205 permit 65000:1 0:60 0:205 ip community-list standard 1_61_204 permit 65000:1 0:61 0:204 ip community-list standard 1_62_203 permit 65000:1 0:62 0:203 ip community-list standard 1_63_202 permit 65000:1 0:63 0:202 ip community-list standard 1_64_201 permit 65000:1 0:64 0:201 ip community-list standard 1_65_200 permit 65000:1 0:65 0:200 ip community-list standard 1_66_199 permit 65000:1 0:66 0:199 ip community-list standard 1_67_198 permit 65000:1 0:67 0:198 ip community-list standard 1_68_197 permit 65000:1 0:68 0:197 ip community-list standard 1_69_196 permit 65000:1 0:69 0:196 ip community-list standard 1_70_195 permit 65000:1 0:70 0:195 ip community-list standard 1_71_194 permit 65000:1 0:71 0:194 ip community-list standard 1_72_193 permit 65000:1 0:72 0:193 ip community-list standard 1_73_192 permit 65000:1 0:73 0:192 ip community-list standard 1_74_191 permit 65000:1 0:74 0:191 ip community-list standard 1_75_190 permit 65000:1 0:75 0:190 ip community-list standard 1_76_189 permit 65000:1 0:76 0:189 ip community-list standard 1_77_188 permit 65000:1 0:77 0:188 ip community-list standard 1_78_187 permit 65000:1 0:78 0:187 ip community-list standard 1_79_186 permit 65000:1 0:79 0:186 ip community-list standard 1_80_185 permit 65000:1 0:80 0:185 ip community-list standard 1_81_184 permit 65000:1 0:81 0:184 ip community-list standard 1_82_183 permit 65000:1 0:82 0:183 ip community-list standard 1_83_182 permit 65000:1 0:83 0:182 ip community-list standard 1_84_181 permit 65000:1 0:84 0:181 ip community-list standard 1_85_180 permit 65000:1 0:85 0:180 ip community-list standard 1_86_179 permit 65000:1 0:86 0:179 ip community-list standard 1_87_178 permit 65000:1 0:87 0:178 ip community-list standard 1_88_177 permit 65000:1 0:88 0:177 ip community-list standard 1_89_176 permit 65000:1 0:89 0:176 ip community-list standard 1_90_175 permit 65000:1 0:90 0:175 ip community-list standard 1_91_174 permit 65000:1 0:91 0:174 ip community-list standard 1_92_173 permit 65000:1 0:92 0:173 ip community-list standard 1_93_172 permit 65000:1 0:93 0:172 ip community-list standard 1_94_171 permit 65000:1 0:94 0:171 ip community-list standard 1_95_170 permit 65000:1 0:95 0:170 ip community-list standard 1_96_169 permit 65000:1 0:96 0:169 ip community-list standard 1_97_168 permit 65000:1 0:97 0:168 ip community-list standard 1_98_167 permit 65000:1 0:98 0:167 ip community-list standard 1_99_166 permit 65000:1 0:99 0:166 ip community-list standard 1_100_165 permit 65000:1 0:100 0:165 ip community-list standard 1_101_164 permit 65000:1 0:101 0:164 ip community-list standard 1_102_163 permit 65000:1 0:102 0:163 ip community-list standard 1_103_162 permit 65000:1 0:103 0:162 ip community-list standard 1_104_161 permit 65000:1 0:104 0:161 ip community-list standard 1_105_160 permit 65000:1 0:105 0:160 ip community-list standard 1_106_159 permit 65000:1 0:106 0:159 ip community-list standard 1_107_158 permit 65000:1 0:107 0:158 ip community-list standard 1_108_157 permit 65000:1 0:108 0:157 ip community-list standard 1_109_156 permit 65000:1 0:109 0:156 ip community-list standard 1_110_155 permit 65000:1 0:110 0:155 ip community-list standard 1_111_154 permit 65000:1 0:111 0:154 ip community-list standard 1_112_153 permit 65000:1 0:112 0:153 ip community-list standard 1_113_152 permit 65000:1 0:113 0:152 ip community-list standard 1_114_151 permit 65000:1 0:114 0:151 ip community-list standard 1_115_150 permit 65000:1 0:115 0:150 ip community-list standard 1_116_149 permit 65000:1 0:116 0:149 ip community-list standard 1_117_148 permit 65000:1 0:117 0:148 ip community-list standard 1_118_147 permit 65000:1 0:118 0:147 ip community-list standard 1_119_146 permit 65000:1 0:119 0:146 ip community-list standard 1_120_145 permit 65000:1 0:120 0:145 ip community-list standard 1_121_144 permit 65000:1 0:121 0:144 ip community-list standard 1_122_143 permit 65000:1 0:122 0:143 ip community-list standard 1_123_142 permit 65000:1 0:123 0:142 ip community-list standard 1_124_141 permit 65000:1 0:124 0:141 ip community-list standard 1_125_140 permit 65000:1 0:125 0:140 ip community-list standard 1_126_139 permit 65000:1 0:126 0:139 ip community-list standard 1_127_138 permit 65000:1 0:127 0:138 ip community-list standard 1_128_137 permit 65000:1 0:128 0:137 ip community-list standard 1_129_136 permit 65000:1 0:129 0:136 ip community-list standard 1_130_135 permit 65000:1 0:130 0:135 ip community-list standard 1_131_134 permit 65000:1 0:131 0:134 ip community-list standard 1_132_133 permit 65000:1 0:132 0:133 route-map calculator permit 15406 match community 2_5_53 1_9_256 1_10_255 1_11_254 1_12_253 set community 0:265 route-map calculator permit 15407 match community 1_13_252 1_14_251 1_15_250 1_16_249 1_17_248 set community 0:265 route-map calculator permit 15408 match community 1_18_247 1_19_246 1_20_245 1_21_244 1_22_243 set community 0:265 route-map calculator permit 15409 match community 1_23_242 1_24_241 1_25_240 1_26_239 1_27_238 set community 0:265 route-map calculator permit 15410 match community 1_28_237 1_29_236 1_30_235 1_31_234 1_32_233 set community 0:265 route-map calculator permit 15411 match community 1_33_232 1_34_231 1_35_230 1_36_229 1_37_228 set community 0:265 route-map calculator permit 15412 match community 1_38_227 1_39_226 1_40_225 1_41_224 1_42_223 set community 0:265 route-map calculator permit 15413 match community 1_43_222 1_44_221 1_45_220 1_46_219 1_47_218 set community 0:265 route-map calculator permit 15414 match community 1_48_217 1_49_216 1_50_215 1_51_214 1_52_213 set community 0:265 route-map calculator permit 15415 match community 1_53_212 1_54_211 1_55_210 1_56_209 1_57_208 set community 0:265 route-map calculator permit 15416 match community 1_58_207 1_59_206 1_60_205 1_61_204 1_62_203 set community 0:265 route-map calculator permit 15417 match community 1_63_202 1_64_201 1_65_200 1_66_199 1_67_198 set community 0:265 route-map calculator permit 15418 match community 1_68_197 1_69_196 1_70_195 1_71_194 1_72_193 set community 0:265 route-map calculator permit 15419 match community 1_73_192 1_74_191 1_75_190 1_76_189 1_77_188 set community 0:265 route-map calculator permit 15420 match community 1_78_187 1_79_186 1_80_185 1_81_184 1_82_183 set community 0:265 route-map calculator permit 15421 match community 1_83_182 1_84_181 1_85_180 1_86_179 1_87_178 set community 0:265 route-map calculator permit 15422 match community 1_88_177 1_89_176 1_90_175 1_91_174 1_92_173 set community 0:265 route-map calculator permit 15423 match community 1_93_172 1_94_171 1_95_170 1_96_169 1_97_168 set community 0:265 route-map calculator permit 15424 match community 1_98_167 1_99_166 1_100_165 1_101_164 1_102_163 set community 0:265 route-map calculator permit 15425 match community 1_103_162 1_104_161 1_105_160 1_106_159 1_107_158 set community 0:265 route-map calculator permit 15426 match community 1_108_157 1_109_156 1_110_155 1_111_154 1_112_153 set community 0:265 route-map calculator permit 15427 match community 1_113_152 1_114_151 1_115_150 1_116_149 1_117_148 set community 0:265 route-map calculator permit 15428 match community 1_118_147 1_119_146 1_120_145 1_121_144 1_122_143 set community 0:265 route-map calculator permit 15429 match community 1_123_142 1_124_141 1_125_140 1_126_139 1_127_138 set community 0:265 route-map calculator permit 15430 match community 1_128_137 1_129_136 1_130_135 1_131_134 1_132_133 set community 0:265 ip community-list standard 2_139_145 permit 65000:2 0:139 0:145 route-map calculator permit 15431 match community 2_139_145 set community 0:20155 ip community-list standard 2_205_212 permit 65000:2 0:205 0:212 route-map calculator permit 15432 match community 2_205_212 set community 0:43460 ip community-list standard 2_225_227 permit 65000:2 0:225 0:227 route-map calculator permit 15433 match community 2_225_227 set community 0:51075 ip community-list standard 2_42_256 permit 65000:2 0:42 0:256 ip community-list standard 2_48_224 permit 65000:2 0:48 0:224 ip community-list standard 2_56_192 permit 65000:2 0:56 0:192 ip community-list standard 2_64_168 permit 65000:2 0:64 0:168 ip community-list standard 2_84_128 permit 65000:2 0:84 0:128 ip community-list standard 2_96_112 permit 65000:2 0:96 0:112 route-map calculator permit 15434 match community 2_42_256 2_48_224 2_56_192 2_64_168 2_84_128 set community 0:10752 route-map calculator permit 15435 match community 2_96_112 set community 0:10752 ip community-list standard 2_19_200 permit 65000:2 0:19 0:200 ip community-list standard 2_20_190 permit 65000:2 0:20 0:190 ip community-list standard 2_25_152 permit 65000:2 0:25 0:152 ip community-list standard 2_38_100 permit 65000:2 0:38 0:100 ip community-list standard 2_40_95 permit 65000:2 0:40 0:95 ip community-list standard 2_50_76 permit 65000:2 0:50 0:76 route-map calculator permit 15436 match community 2_19_200 2_20_190 2_25_152 2_38_100 2_40_95 set community 0:3800 route-map calculator permit 15437 match community 2_50_76 set community 0:3800 ip community-list standard 2_69_157 permit 65000:2 0:69 0:157 route-map calculator permit 15438 match community 2_69_157 set community 0:10833 ip community-list standard 2_74_149 permit 65000:2 0:74 0:149 route-map calculator permit 15439 match community 2_74_149 set community 0:11026 ip community-list standard 2_8_204 permit 65000:2 0:8 0:204 ip community-list standard 2_12_136 permit 65000:2 0:12 0:136 ip community-list standard 2_16_102 permit 65000:2 0:16 0:102 ip community-list standard 2_17_96 permit 65000:2 0:17 0:96 ip community-list standard 2_24_68 permit 65000:2 0:24 0:68 ip community-list standard 2_32_51 permit 65000:2 0:32 0:51 ip community-list standard 2_34_48 permit 65000:2 0:34 0:48 route-map calculator permit 15440 match community 2_8_204 2_12_136 2_16_102 2_17_96 2_24_68 set community 0:1632 route-map calculator permit 15441 match community 2_32_51 2_34_48 set community 0:1632 ip community-list standard 2_156_199 permit 65000:2 0:156 0:199 route-map calculator permit 15442 match community 2_156_199 set community 0:31044 ip community-list standard 2_55_234 permit 65000:2 0:55 0:234 ip community-list standard 2_65_198 permit 65000:2 0:65 0:198 ip community-list standard 2_66_195 permit 65000:2 0:66 0:195 ip community-list standard 2_78_165 permit 65000:2 0:78 0:165 ip community-list standard 2_90_143 permit 65000:2 0:90 0:143 ip community-list standard 2_99_130 permit 65000:2 0:99 0:130 ip community-list standard 2_110_117 permit 65000:2 0:110 0:117 route-map calculator permit 15443 match community 2_55_234 2_65_198 2_66_195 2_78_165 2_90_143 set community 0:12870 route-map calculator permit 15444 match community 2_99_130 2_110_117 set community 0:12870 ip community-list standard 2_107_107 permit 65000:2 0:107 0:107 route-map calculator permit 15445 match community 2_107_107 set community 0:11449 ip community-list standard 2_199_232 permit 65000:2 0:199 0:232 route-map calculator permit 15446 match community 2_199_232 set community 0:46168 ip community-list standard 2_102_244 permit 65000:2 0:102 0:244 ip community-list standard 2_122_204 permit 65000:2 0:122 0:204 ip community-list standard 2_136_183 permit 65000:2 0:136 0:183 route-map calculator permit 15447 match community 2_102_244 2_122_204 2_136_183 set community 0:24888 ip community-list standard 2_105_159 permit 65000:2 0:105 0:159 route-map calculator permit 15448 match community 2_105_159 set community 0:16695 ip community-list standard 2_104_131 permit 65000:2 0:104 0:131 route-map calculator permit 15449 match community 2_104_131 set community 0:13624 ip community-list standard 2_5_240 permit 65000:2 0:5 0:240 ip community-list standard 2_6_200 permit 65000:2 0:6 0:200 ip community-list standard 2_8_150 permit 65000:2 0:8 0:150 ip community-list standard 2_10_120 permit 65000:2 0:10 0:120 ip community-list standard 2_12_100 permit 65000:2 0:12 0:100 ip community-list standard 2_15_80 permit 65000:2 0:15 0:80 ip community-list standard 2_16_75 permit 65000:2 0:16 0:75 ip community-list standard 2_20_60 permit 65000:2 0:20 0:60 ip community-list standard 2_24_50 permit 65000:2 0:24 0:50 ip community-list standard 2_25_48 permit 65000:2 0:25 0:48 ip community-list standard 2_30_40 permit 65000:2 0:30 0:40 route-map calculator permit 15450 match community 2_5_240 2_6_200 2_8_150 2_10_120 2_12_100 set community 0:1200 route-map calculator permit 15451 match community 2_15_80 2_16_75 2_20_60 2_24_50 2_25_48 set community 0:1200 route-map calculator permit 15452 match community 2_30_40 set community 0:1200 ip community-list standard 2_165_240 permit 65000:2 0:165 0:240 ip community-list standard 2_176_225 permit 65000:2 0:176 0:225 ip community-list standard 2_180_220 permit 65000:2 0:180 0:220 ip community-list standard 2_198_200 permit 65000:2 0:198 0:200 route-map calculator permit 15453 match community 2_165_240 2_176_225 2_180_220 2_198_200 set community 0:39600 ip community-list standard 2_191_229 permit 65000:2 0:191 0:229 route-map calculator permit 15454 match community 2_191_229 set community 0:43739 ip community-list standard 2_127_175 permit 65000:2 0:127 0:175 route-map calculator permit 15455 match community 2_127_175 set community 0:22225 ip community-list standard 2_239_241 permit 65000:2 0:239 0:241 route-map calculator permit 15456 match community 2_239_241 set community 0:57599 ip community-list standard 2_158_246 permit 65000:2 0:158 0:246 ip community-list standard 2_164_237 permit 65000:2 0:164 0:237 route-map calculator permit 15457 match community 2_158_246 2_164_237 set community 0:38868 ip community-list standard 2_141_151 permit 65000:2 0:141 0:151 route-map calculator permit 15458 match community 2_141_151 set community 0:21291 ip community-list standard 2_7_148 permit 65000:2 0:7 0:148 ip community-list standard 2_14_74 permit 65000:2 0:14 0:74 ip community-list standard 2_28_37 permit 65000:2 0:28 0:37 route-map calculator permit 15459 match community 2_7_148 2_14_74 2_28_37 set community 0:1036 ip community-list standard 2_31_127 permit 65000:2 0:31 0:127 route-map calculator permit 15460 match community 2_31_127 set community 0:3937 ip community-list standard 2_114_151 permit 65000:2 0:114 0:151 route-map calculator permit 15461 match community 2_114_151 set community 0:17214 ip community-list standard 2_242_251 permit 65000:2 0:242 0:251 route-map calculator permit 15462 match community 2_242_251 set community 0:60742 ip community-list standard 2_150_251 permit 65000:2 0:150 0:251 route-map calculator permit 15463 match community 2_150_251 set community 0:37650 ip community-list standard 2_227_242 permit 65000:2 0:227 0:242 route-map calculator permit 15464 match community 2_227_242 set community 0:54934 ip community-list standard 2_132_248 permit 65000:2 0:132 0:248 ip community-list standard 2_176_186 permit 65000:2 0:176 0:186 route-map calculator permit 15465 match community 2_132_248 2_176_186 set community 0:32736 ip community-list standard 2_223_247 permit 65000:2 0:223 0:247 route-map calculator permit 15466 match community 2_223_247 set community 0:55081 ip community-list standard 2_3_244 permit 65000:2 0:3 0:244 ip community-list standard 2_4_183 permit 65000:2 0:4 0:183 ip community-list standard 2_6_122 permit 65000:2 0:6 0:122 ip community-list standard 2_12_61 permit 65000:2 0:12 0:61 route-map calculator permit 15467 match community 2_3_244 2_4_183 2_6_122 2_12_61 set community 0:732 ip community-list standard 2_218_231 permit 65000:2 0:218 0:231 route-map calculator permit 15468 match community 2_218_231 set community 0:50358 ip community-list standard 2_29_194 permit 65000:2 0:29 0:194 ip community-list standard 2_58_97 permit 65000:2 0:58 0:97 route-map calculator permit 15469 match community 2_29_194 2_58_97 set community 0:5626 ip community-list standard 2_78_246 permit 65000:2 0:78 0:246 ip community-list standard 2_82_234 permit 65000:2 0:82 0:234 ip community-list standard 2_117_164 permit 65000:2 0:117 0:164 ip community-list standard 2_123_156 permit 65000:2 0:123 0:156 route-map calculator permit 15470 match community 2_78_246 2_82_234 2_117_164 2_123_156 set community 0:19188 ip community-list standard 2_28_224 permit 65000:2 0:28 0:224 ip community-list standard 2_32_196 permit 65000:2 0:32 0:196 ip community-list standard 2_49_128 permit 65000:2 0:49 0:128 ip community-list standard 2_56_112 permit 65000:2 0:56 0:112 ip community-list standard 2_64_98 permit 65000:2 0:64 0:98 route-map calculator permit 15471 match community 2_28_224 2_32_196 2_49_128 2_56_112 2_64_98 set community 0:6272 ip community-list standard 2_71_214 permit 65000:2 0:71 0:214 ip community-list standard 2_107_142 permit 65000:2 0:107 0:142 route-map calculator permit 15472 match community 2_71_214 2_107_142 set community 0:15194 ip community-list standard 2_94_137 permit 65000:2 0:94 0:137 route-map calculator permit 15473 match community 2_94_137 set community 0:12878 ip community-list standard 2_227_246 permit 65000:2 0:227 0:246 route-map calculator permit 15474 match community 2_227_246 set community 0:55842 ip community-list standard 2_200_211 permit 65000:2 0:200 0:211 route-map calculator permit 15475 match community 2_200_211 set community 0:42200 ip community-list standard 2_65_125 permit 65000:2 0:65 0:125 route-map calculator permit 15476 match community 2_65_125 set community 0:8125 ip community-list standard 2_163_239 permit 65000:2 0:163 0:239 route-map calculator permit 15477 match community 2_163_239 set community 0:38957 ip community-list standard 2_193_241 permit 65000:2 0:193 0:241 route-map calculator permit 15478 match community 2_193_241 set community 0:46513 ip community-list standard 2_41_252 permit 65000:2 0:41 0:252 ip community-list standard 2_42_246 permit 65000:2 0:42 0:246 ip community-list standard 2_63_164 permit 65000:2 0:63 0:164 ip community-list standard 2_82_126 permit 65000:2 0:82 0:126 ip community-list standard 2_84_123 permit 65000:2 0:84 0:123 route-map calculator permit 15479 match community 2_41_252 2_42_246 2_63_164 2_82_126 2_84_123 set community 0:10332 ip community-list standard 2_37_147 permit 65000:2 0:37 0:147 ip community-list standard 2_49_111 permit 65000:2 0:49 0:111 route-map calculator permit 15480 match community 2_37_147 2_49_111 set community 0:5439 ip community-list standard 2_79_242 permit 65000:2 0:79 0:242 ip community-list standard 2_121_158 permit 65000:2 0:121 0:158 route-map calculator permit 15481 match community 2_79_242 2_121_158 set community 0:19118 ip community-list standard 2_197_235 permit 65000:2 0:197 0:235 route-map calculator permit 15482 match community 2_197_235 set community 0:46295 ip community-list standard 2_111_153 permit 65000:2 0:111 0:153 route-map calculator permit 15483 match community 2_111_153 set community 0:16983 ip community-list standard 2_114_255 permit 65000:2 0:114 0:255 ip community-list standard 2_153_190 permit 65000:2 0:153 0:190 ip community-list standard 2_170_171 permit 65000:2 0:170 0:171 route-map calculator permit 15484 match community 2_114_255 2_153_190 2_170_171 set community 0:29070 ip community-list standard 2_97_239 permit 65000:2 0:97 0:239 route-map calculator permit 15485 match community 2_97_239 set community 0:23183 ip community-list standard 2_134_214 permit 65000:2 0:134 0:214 route-map calculator permit 15486 match community 2_134_214 set community 0:28676 ip community-list standard 2_37_159 permit 65000:2 0:37 0:159 ip community-list standard 2_53_111 permit 65000:2 0:53 0:111 route-map calculator permit 15487 match community 2_37_159 2_53_111 set community 0:5883 ip community-list standard 2_206_230 permit 65000:2 0:206 0:230 route-map calculator permit 15488 match community 2_206_230 set community 0:47380 ip community-list standard 2_83_83 permit 65000:2 0:83 0:83 route-map calculator permit 15489 match community 2_83_83 set community 0:6889 ip community-list standard 2_134_244 permit 65000:2 0:134 0:244 route-map calculator permit 15490 match community 2_134_244 set community 0:32696 ip community-list standard 2_167_218 permit 65000:2 0:167 0:218 route-map calculator permit 15491 match community 2_167_218 set community 0:36406 ip community-list standard 2_13_243 permit 65000:2 0:13 0:243 ip community-list standard 2_27_117 permit 65000:2 0:27 0:117 ip community-list standard 2_39_81 permit 65000:2 0:39 0:81 route-map calculator permit 15492 match community 2_13_243 2_27_117 2_39_81 set community 0:3159 ip community-list standard 2_242_249 permit 65000:2 0:242 0:249 route-map calculator permit 15493 match community 2_242_249 set community 0:60258 ip community-list standard 2_7_172 permit 65000:2 0:7 0:172 ip community-list standard 2_14_86 permit 65000:2 0:14 0:86 ip community-list standard 2_28_43 permit 65000:2 0:28 0:43 route-map calculator permit 15494 match community 2_7_172 2_14_86 2_28_43 set community 0:1204 ip community-list standard 2_78_237 permit 65000:2 0:78 0:237 ip community-list standard 2_79_234 permit 65000:2 0:79 0:234 ip community-list standard 2_117_158 permit 65000:2 0:117 0:158 route-map calculator permit 15495 match community 2_78_237 2_79_234 2_117_158 set community 0:18486 ip community-list standard 2_197_255 permit 65000:2 0:197 0:255 route-map calculator permit 15496 match community 2_197_255 set community 0:50235 ip community-list standard 2_106_228 permit 65000:2 0:106 0:228 ip community-list standard 2_114_212 permit 65000:2 0:114 0:212 ip community-list standard 2_152_159 permit 65000:2 0:152 0:159 route-map calculator permit 15497 match community 2_106_228 2_114_212 2_152_159 set community 0:24168 ip community-list standard 2_24_222 permit 65000:2 0:24 0:222 ip community-list standard 2_36_148 permit 65000:2 0:36 0:148 ip community-list standard 2_37_144 permit 65000:2 0:37 0:144 ip community-list standard 2_48_111 permit 65000:2 0:48 0:111 ip community-list standard 2_72_74 permit 65000:2 0:72 0:74 route-map calculator permit 15498 match community 2_24_222 2_36_148 2_37_144 2_48_111 2_72_74 set community 0:5328 ip community-list standard 2_43_186 permit 65000:2 0:43 0:186 ip community-list standard 2_62_129 permit 65000:2 0:62 0:129 ip community-list standard 2_86_93 permit 65000:2 0:86 0:93 route-map calculator permit 15499 match community 2_43_186 2_62_129 2_86_93 set community 0:7998 ip community-list standard 2_56_242 permit 65000:2 0:56 0:242 ip community-list standard 2_77_176 permit 65000:2 0:77 0:176 ip community-list standard 2_88_154 permit 65000:2 0:88 0:154 ip community-list standard 2_112_121 permit 65000:2 0:112 0:121 route-map calculator permit 15500 match community 2_56_242 2_77_176 2_88_154 2_112_121 set community 0:13552 ip community-list standard 2_20_212 permit 65000:2 0:20 0:212 ip community-list standard 2_40_106 permit 65000:2 0:40 0:106 ip community-list standard 2_53_80 permit 65000:2 0:53 0:80 route-map calculator permit 15501 match community 2_20_212 2_40_106 2_53_80 set community 0:4240 ip community-list standard 2_4_152 permit 65000:2 0:4 0:152 ip community-list standard 2_8_76 permit 65000:2 0:8 0:76 ip community-list standard 2_16_38 permit 65000:2 0:16 0:38 ip community-list standard 2_19_32 permit 65000:2 0:19 0:32 route-map calculator permit 15502 match community 2_4_152 2_8_76 2_16_38 2_19_32 set community 0:608 ip community-list standard 2_10_215 permit 65000:2 0:10 0:215 ip community-list standard 2_25_86 permit 65000:2 0:25 0:86 ip community-list standard 2_43_50 permit 65000:2 0:43 0:50 route-map calculator permit 15503 match community 2_10_215 2_25_86 2_43_50 set community 0:2150 ip community-list standard 2_195_241 permit 65000:2 0:195 0:241 route-map calculator permit 15504 match community 2_195_241 set community 0:46995 ip community-list standard 2_130_205 permit 65000:2 0:130 0:205 route-map calculator permit 15505 match community 2_130_205 set community 0:26650 ip community-list standard 2_173_246 permit 65000:2 0:173 0:246 route-map calculator permit 15506 match community 2_173_246 set community 0:42558 ip community-list standard 2_138_213 permit 65000:2 0:138 0:213 ip community-list standard 2_142_207 permit 65000:2 0:142 0:207 route-map calculator permit 15507 match community 2_138_213 2_142_207 set community 0:29394 ip community-list standard 2_53_250 permit 65000:2 0:53 0:250 ip community-list standard 2_106_125 permit 65000:2 0:106 0:125 route-map calculator permit 15508 match community 2_53_250 2_106_125 set community 0:13250 ip community-list standard 2_134_191 permit 65000:2 0:134 0:191 route-map calculator permit 15509 match community 2_134_191 set community 0:25594 ip community-list standard 2_40_146 permit 65000:2 0:40 0:146 ip community-list standard 2_73_80 permit 65000:2 0:73 0:80 route-map calculator permit 15510 match community 2_40_146 2_73_80 set community 0:5840 ip community-list standard 2_73_185 permit 65000:2 0:73 0:185 route-map calculator permit 15511 match community 2_73_185 set community 0:13505 ip community-list standard 2_92_236 permit 65000:2 0:92 0:236 ip community-list standard 2_118_184 permit 65000:2 0:118 0:184 route-map calculator permit 15512 match community 2_92_236 2_118_184 set community 0:21712 ip community-list standard 2_93_233 permit 65000:2 0:93 0:233 route-map calculator permit 15513 match community 2_93_233 set community 0:21669 ip community-list standard 1_1_253 permit 65000:1 0:1 0:253 ip community-list standard 2_1_254 permit 65000:2 0:1 0:254 ip community-list standard 2_2_127 permit 65000:2 0:2 0:127 ip community-list standard 1_2_252 permit 65000:1 0:2 0:252 ip community-list standard 1_3_251 permit 65000:1 0:3 0:251 ip community-list standard 1_4_250 permit 65000:1 0:4 0:250 ip community-list standard 1_5_249 permit 65000:1 0:5 0:249 ip community-list standard 1_6_248 permit 65000:1 0:6 0:248 ip community-list standard 1_7_247 permit 65000:1 0:7 0:247 ip community-list standard 1_8_246 permit 65000:1 0:8 0:246 ip community-list standard 1_9_245 permit 65000:1 0:9 0:245 ip community-list standard 1_10_244 permit 65000:1 0:10 0:244 ip community-list standard 1_11_243 permit 65000:1 0:11 0:243 ip community-list standard 1_12_242 permit 65000:1 0:12 0:242 ip community-list standard 1_13_241 permit 65000:1 0:13 0:241 ip community-list standard 1_14_240 permit 65000:1 0:14 0:240 ip community-list standard 1_15_239 permit 65000:1 0:15 0:239 ip community-list standard 1_16_238 permit 65000:1 0:16 0:238 ip community-list standard 1_17_237 permit 65000:1 0:17 0:237 ip community-list standard 1_18_236 permit 65000:1 0:18 0:236 ip community-list standard 1_19_235 permit 65000:1 0:19 0:235 ip community-list standard 1_20_234 permit 65000:1 0:20 0:234 ip community-list standard 1_21_233 permit 65000:1 0:21 0:233 ip community-list standard 1_22_232 permit 65000:1 0:22 0:232 ip community-list standard 1_23_231 permit 65000:1 0:23 0:231 ip community-list standard 1_24_230 permit 65000:1 0:24 0:230 ip community-list standard 1_25_229 permit 65000:1 0:25 0:229 ip community-list standard 1_26_228 permit 65000:1 0:26 0:228 ip community-list standard 1_27_227 permit 65000:1 0:27 0:227 ip community-list standard 1_28_226 permit 65000:1 0:28 0:226 ip community-list standard 1_29_225 permit 65000:1 0:29 0:225 ip community-list standard 1_30_224 permit 65000:1 0:30 0:224 ip community-list standard 1_31_223 permit 65000:1 0:31 0:223 ip community-list standard 1_32_222 permit 65000:1 0:32 0:222 ip community-list standard 1_33_221 permit 65000:1 0:33 0:221 ip community-list standard 1_34_220 permit 65000:1 0:34 0:220 ip community-list standard 1_35_219 permit 65000:1 0:35 0:219 ip community-list standard 1_36_218 permit 65000:1 0:36 0:218 ip community-list standard 1_37_217 permit 65000:1 0:37 0:217 ip community-list standard 1_38_216 permit 65000:1 0:38 0:216 ip community-list standard 1_39_215 permit 65000:1 0:39 0:215 ip community-list standard 1_40_214 permit 65000:1 0:40 0:214 ip community-list standard 1_41_213 permit 65000:1 0:41 0:213 ip community-list standard 1_42_212 permit 65000:1 0:42 0:212 ip community-list standard 1_43_211 permit 65000:1 0:43 0:211 ip community-list standard 1_44_210 permit 65000:1 0:44 0:210 ip community-list standard 1_45_209 permit 65000:1 0:45 0:209 ip community-list standard 1_46_208 permit 65000:1 0:46 0:208 ip community-list standard 1_47_207 permit 65000:1 0:47 0:207 ip community-list standard 1_48_206 permit 65000:1 0:48 0:206 ip community-list standard 1_49_205 permit 65000:1 0:49 0:205 ip community-list standard 1_50_204 permit 65000:1 0:50 0:204 ip community-list standard 1_51_203 permit 65000:1 0:51 0:203 ip community-list standard 1_52_202 permit 65000:1 0:52 0:202 ip community-list standard 1_53_201 permit 65000:1 0:53 0:201 ip community-list standard 1_54_200 permit 65000:1 0:54 0:200 ip community-list standard 1_55_199 permit 65000:1 0:55 0:199 ip community-list standard 1_56_198 permit 65000:1 0:56 0:198 ip community-list standard 1_57_197 permit 65000:1 0:57 0:197 ip community-list standard 1_58_196 permit 65000:1 0:58 0:196 ip community-list standard 1_59_195 permit 65000:1 0:59 0:195 ip community-list standard 1_60_194 permit 65000:1 0:60 0:194 ip community-list standard 1_61_193 permit 65000:1 0:61 0:193 ip community-list standard 1_62_192 permit 65000:1 0:62 0:192 ip community-list standard 1_63_191 permit 65000:1 0:63 0:191 ip community-list standard 1_64_190 permit 65000:1 0:64 0:190 ip community-list standard 1_65_189 permit 65000:1 0:65 0:189 ip community-list standard 1_66_188 permit 65000:1 0:66 0:188 ip community-list standard 1_67_187 permit 65000:1 0:67 0:187 ip community-list standard 1_68_186 permit 65000:1 0:68 0:186 ip community-list standard 1_69_185 permit 65000:1 0:69 0:185 ip community-list standard 1_70_184 permit 65000:1 0:70 0:184 ip community-list standard 1_71_183 permit 65000:1 0:71 0:183 ip community-list standard 1_72_182 permit 65000:1 0:72 0:182 ip community-list standard 1_73_181 permit 65000:1 0:73 0:181 ip community-list standard 1_74_180 permit 65000:1 0:74 0:180 ip community-list standard 1_75_179 permit 65000:1 0:75 0:179 ip community-list standard 1_76_178 permit 65000:1 0:76 0:178 ip community-list standard 1_77_177 permit 65000:1 0:77 0:177 ip community-list standard 1_78_176 permit 65000:1 0:78 0:176 ip community-list standard 1_79_175 permit 65000:1 0:79 0:175 ip community-list standard 1_80_174 permit 65000:1 0:80 0:174 ip community-list standard 1_81_173 permit 65000:1 0:81 0:173 ip community-list standard 1_82_172 permit 65000:1 0:82 0:172 ip community-list standard 1_83_171 permit 65000:1 0:83 0:171 ip community-list standard 1_84_170 permit 65000:1 0:84 0:170 ip community-list standard 1_85_169 permit 65000:1 0:85 0:169 ip community-list standard 1_86_168 permit 65000:1 0:86 0:168 ip community-list standard 1_87_167 permit 65000:1 0:87 0:167 ip community-list standard 1_88_166 permit 65000:1 0:88 0:166 ip community-list standard 1_89_165 permit 65000:1 0:89 0:165 ip community-list standard 1_90_164 permit 65000:1 0:90 0:164 ip community-list standard 1_91_163 permit 65000:1 0:91 0:163 ip community-list standard 1_92_162 permit 65000:1 0:92 0:162 ip community-list standard 1_93_161 permit 65000:1 0:93 0:161 ip community-list standard 1_94_160 permit 65000:1 0:94 0:160 ip community-list standard 1_95_159 permit 65000:1 0:95 0:159 ip community-list standard 1_96_158 permit 65000:1 0:96 0:158 ip community-list standard 1_97_157 permit 65000:1 0:97 0:157 ip community-list standard 1_98_156 permit 65000:1 0:98 0:156 ip community-list standard 1_99_155 permit 65000:1 0:99 0:155 ip community-list standard 1_100_154 permit 65000:1 0:100 0:154 ip community-list standard 1_101_153 permit 65000:1 0:101 0:153 ip community-list standard 1_102_152 permit 65000:1 0:102 0:152 ip community-list standard 1_103_151 permit 65000:1 0:103 0:151 ip community-list standard 1_104_150 permit 65000:1 0:104 0:150 ip community-list standard 1_105_149 permit 65000:1 0:105 0:149 ip community-list standard 1_106_148 permit 65000:1 0:106 0:148 ip community-list standard 1_107_147 permit 65000:1 0:107 0:147 ip community-list standard 1_108_146 permit 65000:1 0:108 0:146 ip community-list standard 1_109_145 permit 65000:1 0:109 0:145 ip community-list standard 1_110_144 permit 65000:1 0:110 0:144 ip community-list standard 1_111_143 permit 65000:1 0:111 0:143 ip community-list standard 1_112_142 permit 65000:1 0:112 0:142 ip community-list standard 1_113_141 permit 65000:1 0:113 0:141 ip community-list standard 1_114_140 permit 65000:1 0:114 0:140 ip community-list standard 1_115_139 permit 65000:1 0:115 0:139 ip community-list standard 1_116_138 permit 65000:1 0:116 0:138 ip community-list standard 1_117_137 permit 65000:1 0:117 0:137 ip community-list standard 1_118_136 permit 65000:1 0:118 0:136 ip community-list standard 1_119_135 permit 65000:1 0:119 0:135 ip community-list standard 1_120_134 permit 65000:1 0:120 0:134 ip community-list standard 1_121_133 permit 65000:1 0:121 0:133 ip community-list standard 1_122_132 permit 65000:1 0:122 0:132 ip community-list standard 1_123_131 permit 65000:1 0:123 0:131 ip community-list standard 1_124_130 permit 65000:1 0:124 0:130 ip community-list standard 1_125_129 permit 65000:1 0:125 0:129 ip community-list standard 1_126_128 permit 65000:1 0:126 0:128 ip community-list standard 1_127_127 permit 65000:1 0:127 0:127 ip community-list expanded c254 permit 1 ^65000:4_0:254_0:1$ ip community-list expanded c254 permit 2 ^65000:3_0:255_0:1$ ip community-list expanded c254 permit 3 ^65000:3_0:256_0:2$ route-map calculator permit 15514 match community 1_1_253 2_1_254 2_2_127 1_2_252 1_3_251 set community 0:254 route-map calculator permit 15515 match community 1_4_250 1_5_249 1_6_248 1_7_247 1_8_246 set community 0:254 route-map calculator permit 15516 match community 1_9_245 1_10_244 1_11_243 1_12_242 1_13_241 set community 0:254 route-map calculator permit 15517 match community 1_14_240 1_15_239 1_16_238 1_17_237 1_18_236 set community 0:254 route-map calculator permit 15518 match community 1_19_235 1_20_234 1_21_233 1_22_232 1_23_231 set community 0:254 route-map calculator permit 15519 match community 1_24_230 1_25_229 1_26_228 1_27_227 1_28_226 set community 0:254 route-map calculator permit 15520 match community 1_29_225 1_30_224 1_31_223 1_32_222 1_33_221 set community 0:254 route-map calculator permit 15521 match community 1_34_220 1_35_219 1_36_218 1_37_217 1_38_216 set community 0:254 route-map calculator permit 15522 match community 1_39_215 1_40_214 1_41_213 1_42_212 1_43_211 set community 0:254 route-map calculator permit 15523 match community 1_44_210 1_45_209 1_46_208 1_47_207 1_48_206 set community 0:254 route-map calculator permit 15524 match community 1_49_205 1_50_204 1_51_203 1_52_202 1_53_201 set community 0:254 route-map calculator permit 15525 match community 1_54_200 1_55_199 1_56_198 1_57_197 1_58_196 set community 0:254 route-map calculator permit 15526 match community 1_59_195 1_60_194 1_61_193 1_62_192 1_63_191 set community 0:254 route-map calculator permit 15527 match community 1_64_190 1_65_189 1_66_188 1_67_187 1_68_186 set community 0:254 route-map calculator permit 15528 match community 1_69_185 1_70_184 1_71_183 1_72_182 1_73_181 set community 0:254 route-map calculator permit 15529 match community 1_74_180 1_75_179 1_76_178 1_77_177 1_78_176 set community 0:254 route-map calculator permit 15530 match community 1_79_175 1_80_174 1_81_173 1_82_172 1_83_171 set community 0:254 route-map calculator permit 15531 match community 1_84_170 1_85_169 1_86_168 1_87_167 1_88_166 set community 0:254 route-map calculator permit 15532 match community 1_89_165 1_90_164 1_91_163 1_92_162 1_93_161 set community 0:254 route-map calculator permit 15533 match community 1_94_160 1_95_159 1_96_158 1_97_157 1_98_156 set community 0:254 route-map calculator permit 15534 match community 1_99_155 1_100_154 1_101_153 1_102_152 1_103_151 set community 0:254 route-map calculator permit 15535 match community 1_104_150 1_105_149 1_106_148 1_107_147 1_108_146 set community 0:254 route-map calculator permit 15536 match community 1_109_145 1_110_144 1_111_143 1_112_142 1_113_141 set community 0:254 route-map calculator permit 15537 match community 1_114_140 1_115_139 1_116_138 1_117_137 1_118_136 set community 0:254 route-map calculator permit 15538 match community 1_119_135 1_120_134 1_121_133 1_122_132 1_123_131 set community 0:254 route-map calculator permit 15539 match community 1_124_130 1_125_129 1_126_128 1_127_127 c4_254_1 set community 0:254 route-map calculator permit 15540 match community c3_255_1 c3_256_2 set community 0:254 ip community-list standard 2_72_255 permit 65000:2 0:72 0:255 ip community-list standard 2_85_216 permit 65000:2 0:85 0:216 ip community-list standard 2_90_204 permit 65000:2 0:90 0:204 ip community-list standard 2_102_180 permit 65000:2 0:102 0:180 ip community-list standard 2_108_170 permit 65000:2 0:108 0:170 ip community-list standard 2_120_153 permit 65000:2 0:120 0:153 ip community-list standard 2_135_136 permit 65000:2 0:135 0:136 route-map calculator permit 15541 match community 2_72_255 2_85_216 2_90_204 2_102_180 2_108_170 set community 0:18360 route-map calculator permit 15542 match community 2_120_153 2_135_136 set community 0:18360 ip community-list standard 2_83_217 permit 65000:2 0:83 0:217 route-map calculator permit 15543 match community 2_83_217 set community 0:18011 ip community-list standard 2_89_238 permit 65000:2 0:89 0:238 ip community-list standard 2_119_178 permit 65000:2 0:119 0:178 route-map calculator permit 15544 match community 2_89_238 2_119_178 set community 0:21182 ip community-list standard 2_154_203 permit 65000:2 0:154 0:203 route-map calculator permit 15545 match community 2_154_203 set community 0:31262 ip community-list standard 2_33_236 permit 65000:2 0:33 0:236 ip community-list standard 2_44_177 permit 65000:2 0:44 0:177 ip community-list standard 2_59_132 permit 65000:2 0:59 0:132 ip community-list standard 2_66_118 permit 65000:2 0:66 0:118 route-map calculator permit 15546 match community 2_33_236 2_44_177 2_59_132 2_66_118 set community 0:7788 ip community-list standard 2_6_248 permit 65000:2 0:6 0:248 ip community-list standard 2_8_186 permit 65000:2 0:8 0:186 ip community-list standard 2_12_124 permit 65000:2 0:12 0:124 ip community-list standard 2_16_93 permit 65000:2 0:16 0:93 ip community-list standard 2_24_62 permit 65000:2 0:24 0:62 ip community-list standard 2_31_48 permit 65000:2 0:31 0:48 route-map calculator permit 15547 match community 2_6_248 2_8_186 2_12_124 2_16_93 2_24_62 set community 0:1488 route-map calculator permit 15548 match community 2_31_48 set community 0:1488 ip community-list standard 2_3_131 permit 65000:2 0:3 0:131 ip community-list standard 1_137_256 permit 65000:1 0:137 0:256 ip community-list standard 1_138_255 permit 65000:1 0:138 0:255 ip community-list standard 1_139_254 permit 65000:1 0:139 0:254 ip community-list standard 1_140_253 permit 65000:1 0:140 0:253 ip community-list standard 1_141_252 permit 65000:1 0:141 0:252 ip community-list standard 1_142_251 permit 65000:1 0:142 0:251 ip community-list standard 1_143_250 permit 65000:1 0:143 0:250 ip community-list standard 1_144_249 permit 65000:1 0:144 0:249 ip community-list standard 1_145_248 permit 65000:1 0:145 0:248 ip community-list standard 1_146_247 permit 65000:1 0:146 0:247 ip community-list standard 1_147_246 permit 65000:1 0:147 0:246 ip community-list standard 1_148_245 permit 65000:1 0:148 0:245 ip community-list standard 1_149_244 permit 65000:1 0:149 0:244 ip community-list standard 1_150_243 permit 65000:1 0:150 0:243 ip community-list standard 1_151_242 permit 65000:1 0:151 0:242 ip community-list standard 1_152_241 permit 65000:1 0:152 0:241 ip community-list standard 1_153_240 permit 65000:1 0:153 0:240 ip community-list standard 1_154_239 permit 65000:1 0:154 0:239 ip community-list standard 1_155_238 permit 65000:1 0:155 0:238 ip community-list standard 1_156_237 permit 65000:1 0:156 0:237 ip community-list standard 1_157_236 permit 65000:1 0:157 0:236 ip community-list standard 1_158_235 permit 65000:1 0:158 0:235 ip community-list standard 1_159_234 permit 65000:1 0:159 0:234 ip community-list standard 1_160_233 permit 65000:1 0:160 0:233 ip community-list standard 1_161_232 permit 65000:1 0:161 0:232 ip community-list standard 1_162_231 permit 65000:1 0:162 0:231 ip community-list standard 1_163_230 permit 65000:1 0:163 0:230 ip community-list standard 1_164_229 permit 65000:1 0:164 0:229 ip community-list standard 1_165_228 permit 65000:1 0:165 0:228 ip community-list standard 1_166_227 permit 65000:1 0:166 0:227 ip community-list standard 1_167_226 permit 65000:1 0:167 0:226 ip community-list standard 1_168_225 permit 65000:1 0:168 0:225 ip community-list standard 1_169_224 permit 65000:1 0:169 0:224 ip community-list standard 1_170_223 permit 65000:1 0:170 0:223 ip community-list standard 1_171_222 permit 65000:1 0:171 0:222 ip community-list standard 1_172_221 permit 65000:1 0:172 0:221 ip community-list standard 1_173_220 permit 65000:1 0:173 0:220 ip community-list standard 1_174_219 permit 65000:1 0:174 0:219 ip community-list standard 1_175_218 permit 65000:1 0:175 0:218 ip community-list standard 1_176_217 permit 65000:1 0:176 0:217 ip community-list standard 1_177_216 permit 65000:1 0:177 0:216 ip community-list standard 1_178_215 permit 65000:1 0:178 0:215 ip community-list standard 1_179_214 permit 65000:1 0:179 0:214 ip community-list standard 1_180_213 permit 65000:1 0:180 0:213 ip community-list standard 1_181_212 permit 65000:1 0:181 0:212 ip community-list standard 1_182_211 permit 65000:1 0:182 0:211 ip community-list standard 1_183_210 permit 65000:1 0:183 0:210 ip community-list standard 1_184_209 permit 65000:1 0:184 0:209 ip community-list standard 1_185_208 permit 65000:1 0:185 0:208 ip community-list standard 1_186_207 permit 65000:1 0:186 0:207 ip community-list standard 1_187_206 permit 65000:1 0:187 0:206 ip community-list standard 1_188_205 permit 65000:1 0:188 0:205 ip community-list standard 1_189_204 permit 65000:1 0:189 0:204 ip community-list standard 1_190_203 permit 65000:1 0:190 0:203 ip community-list standard 1_191_202 permit 65000:1 0:191 0:202 ip community-list standard 1_192_201 permit 65000:1 0:192 0:201 ip community-list standard 1_193_200 permit 65000:1 0:193 0:200 ip community-list standard 1_194_199 permit 65000:1 0:194 0:199 ip community-list standard 1_195_198 permit 65000:1 0:195 0:198 ip community-list standard 1_196_197 permit 65000:1 0:196 0:197 route-map calculator permit 15549 match community 2_3_131 1_137_256 1_138_255 1_139_254 1_140_253 set community 0:393 route-map calculator permit 15550 match community 1_141_252 1_142_251 1_143_250 1_144_249 1_145_248 set community 0:393 route-map calculator permit 15551 match community 1_146_247 1_147_246 1_148_245 1_149_244 1_150_243 set community 0:393 route-map calculator permit 15552 match community 1_151_242 1_152_241 1_153_240 1_154_239 1_155_238 set community 0:393 route-map calculator permit 15553 match community 1_156_237 1_157_236 1_158_235 1_159_234 1_160_233 set community 0:393 route-map calculator permit 15554 match community 1_161_232 1_162_231 1_163_230 1_164_229 1_165_228 set community 0:393 route-map calculator permit 15555 match community 1_166_227 1_167_226 1_168_225 1_169_224 1_170_223 set community 0:393 route-map calculator permit 15556 match community 1_171_222 1_172_221 1_173_220 1_174_219 1_175_218 set community 0:393 route-map calculator permit 15557 match community 1_176_217 1_177_216 1_178_215 1_179_214 1_180_213 set community 0:393 route-map calculator permit 15558 match community 1_181_212 1_182_211 1_183_210 1_184_209 1_185_208 set community 0:393 route-map calculator permit 15559 match community 1_186_207 1_187_206 1_188_205 1_189_204 1_190_203 set community 0:393 route-map calculator permit 15560 match community 1_191_202 1_192_201 1_193_200 1_194_199 1_195_198 set community 0:393 route-map calculator permit 15561 match community 1_196_197 set community 0:393 ip community-list standard 2_142_166 permit 65000:2 0:142 0:166 route-map calculator permit 15562 match community 2_142_166 set community 0:23572 ip community-list standard 2_38_163 permit 65000:2 0:38 0:163 route-map calculator permit 15563 match community 2_38_163 set community 0:6194 ip community-list standard 2_75_215 permit 65000:2 0:75 0:215 ip community-list standard 2_125_129 permit 65000:2 0:125 0:129 route-map calculator permit 15564 match community 2_75_215 2_125_129 set community 0:16125 ip community-list standard 2_164_227 permit 65000:2 0:164 0:227 route-map calculator permit 15565 match community 2_164_227 set community 0:37228 ip community-list standard 2_72_228 permit 65000:2 0:72 0:228 ip community-list standard 2_76_216 permit 65000:2 0:76 0:216 ip community-list standard 2_96_171 permit 65000:2 0:96 0:171 ip community-list standard 2_108_152 permit 65000:2 0:108 0:152 ip community-list standard 2_114_144 permit 65000:2 0:114 0:144 route-map calculator permit 15566 match community 2_72_228 2_76_216 2_96_171 2_108_152 2_114_144 set community 0:16416 ip community-list standard 2_78_240 permit 65000:2 0:78 0:240 ip community-list standard 2_80_234 permit 65000:2 0:80 0:234 ip community-list standard 2_90_208 permit 65000:2 0:90 0:208 ip community-list standard 2_96_195 permit 65000:2 0:96 0:195 ip community-list standard 2_104_180 permit 65000:2 0:104 0:180 ip community-list standard 2_117_160 permit 65000:2 0:117 0:160 ip community-list standard 2_120_156 permit 65000:2 0:120 0:156 ip community-list standard 2_130_144 permit 65000:2 0:130 0:144 route-map calculator permit 15567 match community 2_78_240 2_80_234 2_90_208 2_96_195 2_104_180 set community 0:18720 route-map calculator permit 15568 match community 2_117_160 2_120_156 2_130_144 set community 0:18720 ip community-list standard 2_45_151 permit 65000:2 0:45 0:151 route-map calculator permit 15569 match community 2_45_151 set community 0:6795 ip community-list standard 2_202_247 permit 65000:2 0:202 0:247 route-map calculator permit 15570 match community 2_202_247 set community 0:49894 ip community-list standard 2_85_149 permit 65000:2 0:85 0:149 route-map calculator permit 15571 match community 2_85_149 set community 0:12665 ip community-list standard 2_151_189 permit 65000:2 0:151 0:189 route-map calculator permit 15572 match community 2_151_189 set community 0:28539 ip community-list standard 2_15_145 permit 65000:2 0:15 0:145 ip community-list standard 2_25_87 permit 65000:2 0:25 0:87 ip community-list standard 2_29_75 permit 65000:2 0:29 0:75 route-map calculator permit 15573 match community 2_15_145 2_25_87 2_29_75 set community 0:2175 ip community-list standard 2_41_245 permit 65000:2 0:41 0:245 ip community-list standard 2_49_205 permit 65000:2 0:49 0:205 route-map calculator permit 15574 match community 2_41_245 2_49_205 set community 0:10045 ip community-list standard 2_15_243 permit 65000:2 0:15 0:243 ip community-list standard 2_27_135 permit 65000:2 0:27 0:135 ip community-list standard 2_45_81 permit 65000:2 0:45 0:81 route-map calculator permit 15575 match community 2_15_243 2_27_135 2_45_81 set community 0:3645 ip community-list standard 2_139_232 permit 65000:2 0:139 0:232 route-map calculator permit 15576 match community 2_139_232 set community 0:32248 ip community-list standard 2_93_167 permit 65000:2 0:93 0:167 route-map calculator permit 15577 match community 2_93_167 set community 0:15531 ip community-list standard 2_95_101 permit 65000:2 0:95 0:101 route-map calculator permit 15578 match community 2_95_101 set community 0:9595 ip community-list standard 2_185_249 permit 65000:2 0:185 0:249 route-map calculator permit 15579 match community 2_185_249 set community 0:46065 ip community-list standard 2_175_251 permit 65000:2 0:175 0:251 route-map calculator permit 15580 match community 2_175_251 set community 0:43925 ip community-list standard 2_13_138 permit 65000:2 0:13 0:138 ip community-list standard 2_23_78 permit 65000:2 0:23 0:78 ip community-list standard 2_26_69 permit 65000:2 0:26 0:69 ip community-list standard 2_39_46 permit 65000:2 0:39 0:46 route-map calculator permit 15581 match community 2_13_138 2_23_78 2_26_69 2_39_46 set community 0:1794 ip community-list standard 2_93_209 permit 65000:2 0:93 0:209 route-map calculator permit 15582 match community 2_93_209 set community 0:19437 ip community-list standard 2_23_244 permit 65000:2 0:23 0:244 ip community-list standard 2_46_122 permit 65000:2 0:46 0:122 ip community-list standard 2_61_92 permit 65000:2 0:61 0:92 route-map calculator permit 15583 match community 2_23_244 2_46_122 2_61_92 set community 0:5612 ip community-list standard 2_139_222 permit 65000:2 0:139 0:222 route-map calculator permit 15584 match community 2_139_222 set community 0:30858 ip community-list standard 2_3_169 permit 65000:2 0:3 0:169 ip community-list standard 2_13_39 permit 65000:2 0:13 0:39 ip community-list standard 1_251_256 permit 65000:1 0:251 0:256 ip community-list standard 1_252_255 permit 65000:1 0:252 0:255 ip community-list standard 1_253_254 permit 65000:1 0:253 0:254 route-map calculator permit 15585 match community 2_3_169 2_13_39 1_251_256 1_252_255 1_253_254 set community 0:507 ip community-list standard 2_196_202 permit 65000:2 0:196 0:202 route-map calculator permit 15586 match community 2_196_202 set community 0:39592 ip community-list standard 2_201_220 permit 65000:2 0:201 0:220 route-map calculator permit 15587 match community 2_201_220 set community 0:44220 ip community-list standard 2_221_235 permit 65000:2 0:221 0:235 route-map calculator permit 15588 match community 2_221_235 set community 0:51935 ip community-list standard 2_2_198 permit 65000:2 0:2 0:198 ip community-list standard 2_3_132 permit 65000:2 0:3 0:132 ip community-list standard 2_4_99 permit 65000:2 0:4 0:99 ip community-list standard 2_6_66 permit 65000:2 0:6 0:66 ip community-list standard 2_9_44 permit 65000:2 0:9 0:44 ip community-list standard 2_11_36 permit 65000:2 0:11 0:36 ip community-list standard 2_12_33 permit 65000:2 0:12 0:33 ip community-list standard 2_18_22 permit 65000:2 0:18 0:22 ip community-list standard 1_140_256 permit 65000:1 0:140 0:256 ip community-list standard 1_141_255 permit 65000:1 0:141 0:255 ip community-list standard 1_142_254 permit 65000:1 0:142 0:254 ip community-list standard 1_143_253 permit 65000:1 0:143 0:253 ip community-list standard 1_144_252 permit 65000:1 0:144 0:252 ip community-list standard 1_145_251 permit 65000:1 0:145 0:251 ip community-list standard 1_146_250 permit 65000:1 0:146 0:250 ip community-list standard 1_147_249 permit 65000:1 0:147 0:249 ip community-list standard 1_148_248 permit 65000:1 0:148 0:248 ip community-list standard 1_149_247 permit 65000:1 0:149 0:247 ip community-list standard 1_150_246 permit 65000:1 0:150 0:246 ip community-list standard 1_151_245 permit 65000:1 0:151 0:245 ip community-list standard 1_152_244 permit 65000:1 0:152 0:244 ip community-list standard 1_153_243 permit 65000:1 0:153 0:243 ip community-list standard 1_154_242 permit 65000:1 0:154 0:242 ip community-list standard 1_155_241 permit 65000:1 0:155 0:241 ip community-list standard 1_156_240 permit 65000:1 0:156 0:240 ip community-list standard 1_157_239 permit 65000:1 0:157 0:239 ip community-list standard 1_158_238 permit 65000:1 0:158 0:238 ip community-list standard 1_159_237 permit 65000:1 0:159 0:237 ip community-list standard 1_160_236 permit 65000:1 0:160 0:236 ip community-list standard 1_161_235 permit 65000:1 0:161 0:235 ip community-list standard 1_162_234 permit 65000:1 0:162 0:234 ip community-list standard 1_163_233 permit 65000:1 0:163 0:233 ip community-list standard 1_164_232 permit 65000:1 0:164 0:232 ip community-list standard 1_165_231 permit 65000:1 0:165 0:231 ip community-list standard 1_166_230 permit 65000:1 0:166 0:230 ip community-list standard 1_167_229 permit 65000:1 0:167 0:229 ip community-list standard 1_168_228 permit 65000:1 0:168 0:228 ip community-list standard 1_169_227 permit 65000:1 0:169 0:227 ip community-list standard 1_170_226 permit 65000:1 0:170 0:226 ip community-list standard 1_171_225 permit 65000:1 0:171 0:225 ip community-list standard 1_172_224 permit 65000:1 0:172 0:224 ip community-list standard 1_173_223 permit 65000:1 0:173 0:223 ip community-list standard 1_174_222 permit 65000:1 0:174 0:222 ip community-list standard 1_175_221 permit 65000:1 0:175 0:221 ip community-list standard 1_176_220 permit 65000:1 0:176 0:220 ip community-list standard 1_177_219 permit 65000:1 0:177 0:219 ip community-list standard 1_178_218 permit 65000:1 0:178 0:218 ip community-list standard 1_179_217 permit 65000:1 0:179 0:217 ip community-list standard 1_180_216 permit 65000:1 0:180 0:216 ip community-list standard 1_181_215 permit 65000:1 0:181 0:215 ip community-list standard 1_182_214 permit 65000:1 0:182 0:214 ip community-list standard 1_183_213 permit 65000:1 0:183 0:213 ip community-list standard 1_184_212 permit 65000:1 0:184 0:212 ip community-list standard 1_185_211 permit 65000:1 0:185 0:211 ip community-list standard 1_186_210 permit 65000:1 0:186 0:210 ip community-list standard 1_187_209 permit 65000:1 0:187 0:209 ip community-list standard 1_188_208 permit 65000:1 0:188 0:208 ip community-list standard 1_189_207 permit 65000:1 0:189 0:207 ip community-list standard 1_190_206 permit 65000:1 0:190 0:206 ip community-list standard 1_191_205 permit 65000:1 0:191 0:205 ip community-list standard 1_192_204 permit 65000:1 0:192 0:204 ip community-list standard 1_193_203 permit 65000:1 0:193 0:203 ip community-list standard 1_194_202 permit 65000:1 0:194 0:202 ip community-list standard 1_195_201 permit 65000:1 0:195 0:201 ip community-list standard 1_196_200 permit 65000:1 0:196 0:200 ip community-list standard 1_197_199 permit 65000:1 0:197 0:199 ip community-list standard 1_198_198 permit 65000:1 0:198 0:198 route-map calculator permit 15589 match community 2_2_198 2_3_132 2_4_99 2_6_66 2_9_44 set community 0:396 route-map calculator permit 15590 match community 2_11_36 2_12_33 2_18_22 1_140_256 1_141_255 set community 0:396 route-map calculator permit 15591 match community 1_142_254 1_143_253 1_144_252 1_145_251 1_146_250 set community 0:396 route-map calculator permit 15592 match community 1_147_249 1_148_248 1_149_247 1_150_246 1_151_245 set community 0:396 route-map calculator permit 15593 match community 1_152_244 1_153_243 1_154_242 1_155_241 1_156_240 set community 0:396 route-map calculator permit 15594 match community 1_157_239 1_158_238 1_159_237 1_160_236 1_161_235 set community 0:396 route-map calculator permit 15595 match community 1_162_234 1_163_233 1_164_232 1_165_231 1_166_230 set community 0:396 route-map calculator permit 15596 match community 1_167_229 1_168_228 1_169_227 1_170_226 1_171_225 set community 0:396 route-map calculator permit 15597 match community 1_172_224 1_173_223 1_174_222 1_175_221 1_176_220 set community 0:396 route-map calculator permit 15598 match community 1_177_219 1_178_218 1_179_217 1_180_216 1_181_215 set community 0:396 route-map calculator permit 15599 match community 1_182_214 1_183_213 1_184_212 1_185_211 1_186_210 set community 0:396 route-map calculator permit 15600 match community 1_187_209 1_188_208 1_189_207 1_190_206 1_191_205 set community 0:396 route-map calculator permit 15601 match community 1_192_204 1_193_203 1_194_202 1_195_201 1_196_200 set community 0:396 route-map calculator permit 15602 match community 1_197_199 1_198_198 set community 0:396 ip community-list standard 2_129_233 permit 65000:2 0:129 0:233 route-map calculator permit 15603 match community 2_129_233 set community 0:30057 ip community-list standard 2_179_218 permit 65000:2 0:179 0:218 route-map calculator permit 15604 match community 2_179_218 set community 0:39022 ip community-list standard 2_212_256 permit 65000:2 0:212 0:256 route-map calculator permit 15605 match community 2_212_256 set community 0:54272 ip community-list standard 2_151_204 permit 65000:2 0:151 0:204 route-map calculator permit 15606 match community 2_151_204 set community 0:30804 ip community-list standard 2_237_241 permit 65000:2 0:237 0:241 route-map calculator permit 15607 match community 2_237_241 set community 0:57117 ip community-list standard 1_1_37 permit 65000:1 0:1 0:37 ip community-list standard 2_1_38 permit 65000:2 0:1 0:38 ip community-list standard 2_2_19 permit 65000:2 0:2 0:19 ip community-list standard 1_2_36 permit 65000:1 0:2 0:36 ip community-list standard 1_3_35 permit 65000:1 0:3 0:35 ip community-list standard 1_4_34 permit 65000:1 0:4 0:34 ip community-list standard 1_5_33 permit 65000:1 0:5 0:33 ip community-list standard 1_6_32 permit 65000:1 0:6 0:32 ip community-list standard 1_7_31 permit 65000:1 0:7 0:31 ip community-list standard 1_8_30 permit 65000:1 0:8 0:30 ip community-list standard 1_9_29 permit 65000:1 0:9 0:29 ip community-list standard 1_10_28 permit 65000:1 0:10 0:28 ip community-list standard 1_11_27 permit 65000:1 0:11 0:27 ip community-list standard 1_12_26 permit 65000:1 0:12 0:26 ip community-list standard 1_13_25 permit 65000:1 0:13 0:25 ip community-list standard 1_14_24 permit 65000:1 0:14 0:24 ip community-list standard 1_15_23 permit 65000:1 0:15 0:23 ip community-list standard 1_16_22 permit 65000:1 0:16 0:22 ip community-list standard 1_17_21 permit 65000:1 0:17 0:21 ip community-list standard 1_18_20 permit 65000:1 0:18 0:20 ip community-list standard 1_19_19 permit 65000:1 0:19 0:19 ip community-list expanded c38 permit 1 ^65000:4_0:38_0:1$ ip community-list expanded c38 permit 2 ^65000:3_0:39_0:1$ ip community-list expanded c38 permit 3 ^65000:3_0:40_0:2$ ip community-list expanded c38 permit 4 ^65000:3_0:41_0:3$ ip community-list expanded c38 permit 5 ^65000:3_0:42_0:4$ ip community-list expanded c38 permit 6 ^65000:3_0:43_0:5$ ip community-list expanded c38 permit 7 ^65000:3_0:44_0:6$ ip community-list expanded c38 permit 8 ^65000:3_0:45_0:7$ ip community-list expanded c38 permit 9 ^65000:3_0:46_0:8$ ip community-list expanded c38 permit 10 ^65000:3_0:47_0:9$ ip community-list expanded c38 permit 11 ^65000:3_0:48_0:10$ ip community-list expanded c38 permit 12 ^65000:3_0:49_0:11$ ip community-list expanded c38 permit 13 ^65000:3_0:50_0:12$ ip community-list expanded c38 permit 14 ^65000:3_0:51_0:13$ ip community-list expanded c38 permit 15 ^65000:3_0:52_0:14$ ip community-list expanded c38 permit 16 ^65000:3_0:53_0:15$ ip community-list expanded c38 permit 17 ^65000:3_0:54_0:16$ ip community-list expanded c38 permit 18 ^65000:3_0:55_0:17$ ip community-list expanded c38 permit 19 ^65000:3_0:56_0:18$ ip community-list expanded c38 permit 20 ^65000:3_0:57_0:19$ ip community-list expanded c38 permit 21 ^65000:3_0:58_0:20$ ip community-list expanded c38 permit 22 ^65000:3_0:59_0:21$ ip community-list expanded c38 permit 23 ^65000:3_0:60_0:22$ ip community-list expanded c38 permit 24 ^65000:3_0:61_0:23$ ip community-list expanded c38 permit 25 ^65000:3_0:62_0:24$ ip community-list expanded c38 permit 26 ^65000:3_0:63_0:25$ ip community-list expanded c38 permit 27 ^65000:3_0:64_0:26$ ip community-list expanded c38 permit 28 ^65000:3_0:65_0:27$ ip community-list expanded c38 permit 29 ^65000:3_0:66_0:28$ ip community-list expanded c38 permit 30 ^65000:3_0:67_0:29$ ip community-list expanded c38 permit 31 ^65000:3_0:68_0:30$ ip community-list expanded c38 permit 32 ^65000:3_0:69_0:31$ ip community-list expanded c38 permit 33 ^65000:3_0:70_0:32$ ip community-list expanded c38 permit 34 ^65000:3_0:71_0:33$ ip community-list expanded c38 permit 35 ^65000:3_0:72_0:34$ ip community-list expanded c38 permit 36 ^65000:3_0:73_0:35$ ip community-list expanded c38 permit 37 ^65000:3_0:74_0:36$ ip community-list expanded c38 permit 38 ^65000:3_0:75_0:37$ ip community-list expanded c38 permit 39 ^65000:4_0:76_0:2$ ip community-list expanded c38 permit 40 ^65000:3_0:76_0:38$ ip community-list expanded c38 permit 41 ^65000:4_0:77_0:2$ ip community-list expanded c38 permit 42 ^65000:3_0:77_0:39$ ip community-list expanded c38 permit 43 ^65000:3_0:78_0:40$ ip community-list expanded c38 permit 44 ^65000:3_0:79_0:41$ ip community-list expanded c38 permit 45 ^65000:3_0:80_0:42$ ip community-list expanded c38 permit 46 ^65000:3_0:81_0:43$ ip community-list expanded c38 permit 47 ^65000:3_0:82_0:44$ ip community-list expanded c38 permit 48 ^65000:3_0:83_0:45$ ip community-list expanded c38 permit 49 ^65000:3_0:84_0:46$ ip community-list expanded c38 permit 50 ^65000:3_0:85_0:47$ ip community-list expanded c38 permit 51 ^65000:3_0:86_0:48$ ip community-list expanded c38 permit 52 ^65000:3_0:87_0:49$ ip community-list expanded c38 permit 53 ^65000:3_0:88_0:50$ ip community-list expanded c38 permit 54 ^65000:3_0:89_0:51$ ip community-list expanded c38 permit 55 ^65000:3_0:90_0:52$ ip community-list expanded c38 permit 56 ^65000:3_0:91_0:53$ ip community-list expanded c38 permit 57 ^65000:3_0:92_0:54$ ip community-list expanded c38 permit 58 ^65000:3_0:93_0:55$ ip community-list expanded c38 permit 59 ^65000:3_0:94_0:56$ ip community-list expanded c38 permit 60 ^65000:3_0:95_0:57$ ip community-list expanded c38 permit 61 ^65000:3_0:96_0:58$ ip community-list expanded c38 permit 62 ^65000:3_0:97_0:59$ ip community-list expanded c38 permit 63 ^65000:3_0:98_0:60$ ip community-list expanded c38 permit 64 ^65000:3_0:99_0:61$ ip community-list expanded c38 permit 65 ^65000:3_0:100_0:62$ ip community-list expanded c38 permit 66 ^65000:3_0:101_0:63$ ip community-list expanded c38 permit 67 ^65000:3_0:102_0:64$ ip community-list expanded c38 permit 68 ^65000:3_0:103_0:65$ ip community-list expanded c38 permit 69 ^65000:3_0:104_0:66$ ip community-list expanded c38 permit 70 ^65000:3_0:105_0:67$ ip community-list expanded c38 permit 71 ^65000:3_0:106_0:68$ ip community-list expanded c38 permit 72 ^65000:3_0:107_0:69$ ip community-list expanded c38 permit 73 ^65000:3_0:108_0:70$ ip community-list expanded c38 permit 74 ^65000:3_0:109_0:71$ ip community-list expanded c38 permit 75 ^65000:3_0:110_0:72$ ip community-list expanded c38 permit 76 ^65000:3_0:111_0:73$ ip community-list expanded c38 permit 77 ^65000:3_0:112_0:74$ ip community-list expanded c38 permit 78 ^65000:3_0:113_0:75$ ip community-list expanded c38 permit 79 ^65000:4_0:114_0:3$ ip community-list expanded c38 permit 80 ^65000:3_0:114_0:76$ ip community-list expanded c38 permit 81 ^65000:4_0:115_0:3$ ip community-list expanded c38 permit 82 ^65000:3_0:115_0:77$ ip community-list expanded c38 permit 83 ^65000:4_0:116_0:3$ ip community-list expanded c38 permit 84 ^65000:3_0:116_0:78$ ip community-list expanded c38 permit 85 ^65000:3_0:117_0:79$ ip community-list expanded c38 permit 86 ^65000:3_0:118_0:80$ ip community-list expanded c38 permit 87 ^65000:3_0:119_0:81$ ip community-list expanded c38 permit 88 ^65000:3_0:120_0:82$ ip community-list expanded c38 permit 89 ^65000:3_0:121_0:83$ ip community-list expanded c38 permit 90 ^65000:3_0:122_0:84$ ip community-list expanded c38 permit 91 ^65000:3_0:123_0:85$ ip community-list expanded c38 permit 92 ^65000:3_0:124_0:86$ ip community-list expanded c38 permit 93 ^65000:3_0:125_0:87$ ip community-list expanded c38 permit 94 ^65000:3_0:126_0:88$ ip community-list expanded c38 permit 95 ^65000:3_0:127_0:89$ ip community-list expanded c38 permit 96 ^65000:3_0:128_0:90$ ip community-list expanded c38 permit 97 ^65000:3_0:129_0:91$ ip community-list expanded c38 permit 98 ^65000:3_0:130_0:92$ ip community-list expanded c38 permit 99 ^65000:3_0:131_0:93$ ip community-list expanded c38 permit 100 ^65000:3_0:132_0:94$ ip community-list expanded c38 permit 101 ^65000:3_0:133_0:95$ ip community-list expanded c38 permit 102 ^65000:3_0:134_0:96$ ip community-list expanded c38 permit 103 ^65000:3_0:135_0:97$ ip community-list expanded c38 permit 104 ^65000:3_0:136_0:98$ ip community-list expanded c38 permit 105 ^65000:3_0:137_0:99$ ip community-list expanded c38 permit 106 ^65000:3_0:138_0:100$ ip community-list expanded c38 permit 107 ^65000:3_0:139_0:101$ ip community-list expanded c38 permit 108 ^65000:3_0:140_0:102$ ip community-list expanded c38 permit 109 ^65000:3_0:141_0:103$ ip community-list expanded c38 permit 110 ^65000:3_0:142_0:104$ ip community-list expanded c38 permit 111 ^65000:3_0:143_0:105$ ip community-list expanded c38 permit 112 ^65000:3_0:144_0:106$ ip community-list expanded c38 permit 113 ^65000:3_0:145_0:107$ ip community-list expanded c38 permit 114 ^65000:3_0:146_0:108$ ip community-list expanded c38 permit 115 ^65000:3_0:147_0:109$ ip community-list expanded c38 permit 116 ^65000:3_0:148_0:110$ ip community-list expanded c38 permit 117 ^65000:3_0:149_0:111$ ip community-list expanded c38 permit 118 ^65000:3_0:150_0:112$ ip community-list expanded c38 permit 119 ^65000:3_0:151_0:113$ ip community-list expanded c38 permit 120 ^65000:4_0:152_0:4$ ip community-list expanded c38 permit 121 ^65000:3_0:152_0:114$ ip community-list expanded c38 permit 122 ^65000:4_0:153_0:4$ ip community-list expanded c38 permit 123 ^65000:3_0:153_0:115$ ip community-list expanded c38 permit 124 ^65000:4_0:154_0:4$ ip community-list expanded c38 permit 125 ^65000:3_0:154_0:116$ ip community-list expanded c38 permit 126 ^65000:4_0:155_0:4$ ip community-list expanded c38 permit 127 ^65000:3_0:155_0:117$ ip community-list expanded c38 permit 128 ^65000:3_0:156_0:118$ ip community-list expanded c38 permit 129 ^65000:3_0:157_0:119$ ip community-list expanded c38 permit 130 ^65000:3_0:158_0:120$ ip community-list expanded c38 permit 131 ^65000:3_0:159_0:121$ ip community-list expanded c38 permit 132 ^65000:3_0:160_0:122$ ip community-list expanded c38 permit 133 ^65000:3_0:161_0:123$ ip community-list expanded c38 permit 134 ^65000:3_0:162_0:124$ ip community-list expanded c38 permit 135 ^65000:3_0:163_0:125$ ip community-list expanded c38 permit 136 ^65000:3_0:164_0:126$ ip community-list expanded c38 permit 137 ^65000:3_0:165_0:127$ ip community-list expanded c38 permit 138 ^65000:3_0:166_0:128$ ip community-list expanded c38 permit 139 ^65000:3_0:167_0:129$ ip community-list expanded c38 permit 140 ^65000:3_0:168_0:130$ ip community-list expanded c38 permit 141 ^65000:3_0:169_0:131$ ip community-list expanded c38 permit 142 ^65000:3_0:170_0:132$ ip community-list expanded c38 permit 143 ^65000:3_0:171_0:133$ ip community-list expanded c38 permit 144 ^65000:3_0:172_0:134$ ip community-list expanded c38 permit 145 ^65000:3_0:173_0:135$ ip community-list expanded c38 permit 146 ^65000:3_0:174_0:136$ ip community-list expanded c38 permit 147 ^65000:3_0:175_0:137$ ip community-list expanded c38 permit 148 ^65000:3_0:176_0:138$ ip community-list expanded c38 permit 149 ^65000:3_0:177_0:139$ ip community-list expanded c38 permit 150 ^65000:3_0:178_0:140$ ip community-list expanded c38 permit 151 ^65000:3_0:179_0:141$ ip community-list expanded c38 permit 152 ^65000:3_0:180_0:142$ ip community-list expanded c38 permit 153 ^65000:3_0:181_0:143$ ip community-list expanded c38 permit 154 ^65000:3_0:182_0:144$ ip community-list expanded c38 permit 155 ^65000:3_0:183_0:145$ ip community-list expanded c38 permit 156 ^65000:3_0:184_0:146$ ip community-list expanded c38 permit 157 ^65000:3_0:185_0:147$ ip community-list expanded c38 permit 158 ^65000:3_0:186_0:148$ ip community-list expanded c38 permit 159 ^65000:3_0:187_0:149$ ip community-list expanded c38 permit 160 ^65000:3_0:188_0:150$ ip community-list expanded c38 permit 161 ^65000:3_0:189_0:151$ ip community-list expanded c38 permit 162 ^65000:4_0:190_0:5$ ip community-list expanded c38 permit 163 ^65000:3_0:190_0:152$ ip community-list expanded c38 permit 164 ^65000:4_0:191_0:5$ ip community-list expanded c38 permit 165 ^65000:3_0:191_0:153$ ip community-list expanded c38 permit 166 ^65000:4_0:192_0:5$ ip community-list expanded c38 permit 167 ^65000:3_0:192_0:154$ ip community-list expanded c38 permit 168 ^65000:4_0:193_0:5$ ip community-list expanded c38 permit 169 ^65000:3_0:193_0:155$ ip community-list expanded c38 permit 170 ^65000:4_0:194_0:5$ ip community-list expanded c38 permit 171 ^65000:3_0:194_0:156$ ip community-list expanded c38 permit 172 ^65000:3_0:195_0:157$ ip community-list expanded c38 permit 173 ^65000:3_0:196_0:158$ ip community-list expanded c38 permit 174 ^65000:3_0:197_0:159$ ip community-list expanded c38 permit 175 ^65000:3_0:198_0:160$ ip community-list expanded c38 permit 176 ^65000:3_0:199_0:161$ ip community-list expanded c38 permit 177 ^65000:3_0:200_0:162$ ip community-list expanded c38 permit 178 ^65000:3_0:201_0:163$ ip community-list expanded c38 permit 179 ^65000:3_0:202_0:164$ ip community-list expanded c38 permit 180 ^65000:3_0:203_0:165$ ip community-list expanded c38 permit 181 ^65000:3_0:204_0:166$ ip community-list expanded c38 permit 182 ^65000:3_0:205_0:167$ ip community-list expanded c38 permit 183 ^65000:3_0:206_0:168$ ip community-list expanded c38 permit 184 ^65000:3_0:207_0:169$ ip community-list expanded c38 permit 185 ^65000:3_0:208_0:170$ ip community-list expanded c38 permit 186 ^65000:3_0:209_0:171$ ip community-list expanded c38 permit 187 ^65000:3_0:210_0:172$ ip community-list expanded c38 permit 188 ^65000:3_0:211_0:173$ ip community-list expanded c38 permit 189 ^65000:3_0:212_0:174$ ip community-list expanded c38 permit 190 ^65000:3_0:213_0:175$ ip community-list expanded c38 permit 191 ^65000:3_0:214_0:176$ ip community-list expanded c38 permit 192 ^65000:3_0:215_0:177$ ip community-list expanded c38 permit 193 ^65000:3_0:216_0:178$ ip community-list expanded c38 permit 194 ^65000:3_0:217_0:179$ ip community-list expanded c38 permit 195 ^65000:3_0:218_0:180$ ip community-list expanded c38 permit 196 ^65000:3_0:219_0:181$ ip community-list expanded c38 permit 197 ^65000:3_0:220_0:182$ ip community-list expanded c38 permit 198 ^65000:3_0:221_0:183$ ip community-list expanded c38 permit 199 ^65000:3_0:222_0:184$ ip community-list expanded c38 permit 200 ^65000:3_0:223_0:185$ ip community-list expanded c38 permit 201 ^65000:3_0:224_0:186$ ip community-list expanded c38 permit 202 ^65000:3_0:225_0:187$ ip community-list expanded c38 permit 203 ^65000:3_0:226_0:188$ ip community-list expanded c38 permit 204 ^65000:3_0:227_0:189$ ip community-list expanded c38 permit 205 ^65000:4_0:228_0:6$ ip community-list expanded c38 permit 206 ^65000:3_0:228_0:190$ ip community-list expanded c38 permit 207 ^65000:4_0:229_0:6$ ip community-list expanded c38 permit 208 ^65000:3_0:229_0:191$ ip community-list expanded c38 permit 209 ^65000:4_0:230_0:6$ ip community-list expanded c38 permit 210 ^65000:3_0:230_0:192$ ip community-list expanded c38 permit 211 ^65000:4_0:231_0:6$ ip community-list expanded c38 permit 212 ^65000:3_0:231_0:193$ ip community-list expanded c38 permit 213 ^65000:4_0:232_0:6$ ip community-list expanded c38 permit 214 ^65000:3_0:232_0:194$ ip community-list expanded c38 permit 215 ^65000:4_0:233_0:6$ ip community-list expanded c38 permit 216 ^65000:3_0:233_0:195$ ip community-list expanded c38 permit 217 ^65000:3_0:234_0:196$ ip community-list expanded c38 permit 218 ^65000:3_0:235_0:197$ ip community-list expanded c38 permit 219 ^65000:3_0:236_0:198$ ip community-list expanded c38 permit 220 ^65000:3_0:237_0:199$ ip community-list expanded c38 permit 221 ^65000:3_0:238_0:200$ ip community-list expanded c38 permit 222 ^65000:3_0:239_0:201$ ip community-list expanded c38 permit 223 ^65000:3_0:240_0:202$ ip community-list expanded c38 permit 224 ^65000:3_0:241_0:203$ ip community-list expanded c38 permit 225 ^65000:3_0:242_0:204$ ip community-list expanded c38 permit 226 ^65000:3_0:243_0:205$ ip community-list expanded c38 permit 227 ^65000:3_0:244_0:206$ ip community-list expanded c38 permit 228 ^65000:3_0:245_0:207$ ip community-list expanded c38 permit 229 ^65000:3_0:246_0:208$ ip community-list expanded c38 permit 230 ^65000:3_0:247_0:209$ ip community-list expanded c38 permit 231 ^65000:3_0:248_0:210$ ip community-list expanded c38 permit 232 ^65000:3_0:249_0:211$ ip community-list expanded c38 permit 233 ^65000:3_0:250_0:212$ ip community-list expanded c38 permit 234 ^65000:3_0:251_0:213$ ip community-list expanded c38 permit 235 ^65000:3_0:252_0:214$ ip community-list expanded c38 permit 236 ^65000:3_0:253_0:215$ ip community-list expanded c38 permit 237 ^65000:3_0:254_0:216$ ip community-list expanded c38 permit 238 ^65000:3_0:255_0:217$ ip community-list expanded c38 permit 239 ^65000:3_0:256_0:218$ route-map calculator permit 15608 match community 1_1_37 2_1_38 2_2_19 1_2_36 1_3_35 set community 0:38 route-map calculator permit 15609 match community 1_4_34 1_5_33 1_6_32 1_7_31 1_8_30 set community 0:38 route-map calculator permit 15610 match community 1_9_29 1_10_28 1_11_27 1_12_26 1_13_25 set community 0:38 route-map calculator permit 15611 match community 1_14_24 1_15_23 1_16_22 1_17_21 1_18_20 set community 0:38 route-map calculator permit 15612 match community 1_19_19 c4_38_1 c3_39_1 c3_40_2 c3_41_3 set community 0:38 route-map calculator permit 15613 match community c3_42_4 c3_43_5 c3_44_6 c3_45_7 c3_46_8 set community 0:38 route-map calculator permit 15614 match community c3_47_9 c3_48_10 c3_49_11 c3_50_12 c3_51_13 set community 0:38 route-map calculator permit 15615 match community c3_52_14 c3_53_15 c3_54_16 c3_55_17 c3_56_18 set community 0:38 route-map calculator permit 15616 match community c3_57_19 c3_58_20 c3_59_21 c3_60_22 c3_61_23 set community 0:38 route-map calculator permit 15617 match community c3_62_24 c3_63_25 c3_64_26 c3_65_27 c3_66_28 set community 0:38 route-map calculator permit 15618 match community c3_67_29 c3_68_30 c3_69_31 c3_70_32 c3_71_33 set community 0:38 route-map calculator permit 15619 match community c3_72_34 c3_73_35 c3_74_36 c3_75_37 c4_76_2 set community 0:38 route-map calculator permit 15620 match community c3_76_38 c4_77_2 c3_77_39 c3_78_40 c3_79_41 set community 0:38 route-map calculator permit 15621 match community c3_80_42 c3_81_43 c3_82_44 c3_83_45 c3_84_46 set community 0:38 route-map calculator permit 15622 match community c3_85_47 c3_86_48 c3_87_49 c3_88_50 c3_89_51 set community 0:38 route-map calculator permit 15623 match community c3_90_52 c3_91_53 c3_92_54 c3_93_55 c3_94_56 set community 0:38 route-map calculator permit 15624 match community c3_95_57 c3_96_58 c3_97_59 c3_98_60 c3_99_61 set community 0:38 route-map calculator permit 15625 match community c3_100_62 c3_101_63 c3_102_64 c3_103_65 c3_104_66 set community 0:38 route-map calculator permit 15626 match community c3_105_67 c3_106_68 c3_107_69 c3_108_70 c3_109_71 set community 0:38 route-map calculator permit 15627 match community c3_110_72 c3_111_73 c3_112_74 c3_113_75 c4_114_3 set community 0:38 route-map calculator permit 15628 match community c3_114_76 c4_115_3 c3_115_77 c4_116_3 c3_116_78 set community 0:38 route-map calculator permit 15629 match community c3_117_79 c3_118_80 c3_119_81 c3_120_82 c3_121_83 set community 0:38 route-map calculator permit 15630 match community c3_122_84 c3_123_85 c3_124_86 c3_125_87 c3_126_88 set community 0:38 route-map calculator permit 15631 match community c3_127_89 c3_128_90 c3_129_91 c3_130_92 c3_131_93 set community 0:38 route-map calculator permit 15632 match community c3_132_94 c3_133_95 c3_134_96 c3_135_97 c3_136_98 set community 0:38 route-map calculator permit 15633 match community c3_137_99 c3_138_100 c3_139_101 c3_140_102 c3_141_103 set community 0:38 route-map calculator permit 15634 match community c3_142_104 c3_143_105 c3_144_106 c3_145_107 c3_146_108 set community 0:38 route-map calculator permit 15635 match community c3_147_109 c3_148_110 c3_149_111 c3_150_112 c3_151_113 set community 0:38 route-map calculator permit 15636 match community c4_152_4 c3_152_114 c4_153_4 c3_153_115 c4_154_4 set community 0:38 route-map calculator permit 15637 match community c3_154_116 c4_155_4 c3_155_117 c3_156_118 c3_157_119 set community 0:38 route-map calculator permit 15638 match community c3_158_120 c3_159_121 c3_160_122 c3_161_123 c3_162_124 set community 0:38 route-map calculator permit 15639 match community c3_163_125 c3_164_126 c3_165_127 c3_166_128 c3_167_129 set community 0:38 route-map calculator permit 15640 match community c3_168_130 c3_169_131 c3_170_132 c3_171_133 c3_172_134 set community 0:38 route-map calculator permit 15641 match community c3_173_135 c3_174_136 c3_175_137 c3_176_138 c3_177_139 set community 0:38 route-map calculator permit 15642 match community c3_178_140 c3_179_141 c3_180_142 c3_181_143 c3_182_144 set community 0:38 route-map calculator permit 15643 match community c3_183_145 c3_184_146 c3_185_147 c3_186_148 c3_187_149 set community 0:38 route-map calculator permit 15644 match community c3_188_150 c3_189_151 c4_190_5 c3_190_152 c4_191_5 set community 0:38 route-map calculator permit 15645 match community c3_191_153 c4_192_5 c3_192_154 c4_193_5 c3_193_155 set community 0:38 route-map calculator permit 15646 match community c4_194_5 c3_194_156 c3_195_157 c3_196_158 c3_197_159 set community 0:38 route-map calculator permit 15647 match community c3_198_160 c3_199_161 c3_200_162 c3_201_163 c3_202_164 set community 0:38 route-map calculator permit 15648 match community c3_203_165 c3_204_166 c3_205_167 c3_206_168 c3_207_169 set community 0:38 route-map calculator permit 15649 match community c3_208_170 c3_209_171 c3_210_172 c3_211_173 c3_212_174 set community 0:38 route-map calculator permit 15650 match community c3_213_175 c3_214_176 c3_215_177 c3_216_178 c3_217_179 set community 0:38 route-map calculator permit 15651 match community c3_218_180 c3_219_181 c3_220_182 c3_221_183 c3_222_184 set community 0:38 route-map calculator permit 15652 match community c3_223_185 c3_224_186 c3_225_187 c3_226_188 c3_227_189 set community 0:38 route-map calculator permit 15653 match community c4_228_6 c3_228_190 c4_229_6 c3_229_191 c4_230_6 set community 0:38 route-map calculator permit 15654 match community c3_230_192 c4_231_6 c3_231_193 c4_232_6 c3_232_194 set community 0:38 route-map calculator permit 15655 match community c4_233_6 c3_233_195 c3_234_196 c3_235_197 c3_236_198 set community 0:38 route-map calculator permit 15656 match community c3_237_199 c3_238_200 c3_239_201 c3_240_202 c3_241_203 set community 0:38 route-map calculator permit 15657 match community c3_242_204 c3_243_205 c3_244_206 c3_245_207 c3_246_208 set community 0:38 route-map calculator permit 15658 match community c3_247_209 c3_248_210 c3_249_211 c3_250_212 c3_251_213 set community 0:38 route-map calculator permit 15659 match community c3_252_214 c3_253_215 c3_254_216 c3_255_217 c3_256_218 set community 0:38 ip community-list standard 2_66_206 permit 65000:2 0:66 0:206 ip community-list standard 2_103_132 permit 65000:2 0:103 0:132 route-map calculator permit 15660 match community 2_66_206 2_103_132 set community 0:13596 ip community-list standard 2_20_223 permit 65000:2 0:20 0:223 route-map calculator permit 15661 match community 2_20_223 set community 0:4460 ip community-list standard 2_110_173 permit 65000:2 0:110 0:173 route-map calculator permit 15662 match community 2_110_173 set community 0:19030 ip community-list standard 2_208_232 permit 65000:2 0:208 0:232 route-map calculator permit 15663 match community 2_208_232 set community 0:48256 ip community-list standard 2_61_169 permit 65000:2 0:61 0:169 route-map calculator permit 15664 match community 2_61_169 set community 0:10309 ip community-list standard 2_66_178 permit 65000:2 0:66 0:178 ip community-list standard 2_89_132 permit 65000:2 0:89 0:132 route-map calculator permit 15665 match community 2_66_178 2_89_132 set community 0:11748 ip community-list standard 2_53_205 permit 65000:2 0:53 0:205 route-map calculator permit 15666 match community 2_53_205 set community 0:10865 ip community-list standard 2_151_185 permit 65000:2 0:151 0:185 route-map calculator permit 15667 match community 2_151_185 set community 0:27935 ip community-list standard 2_37_153 permit 65000:2 0:37 0:153 ip community-list standard 2_51_111 permit 65000:2 0:51 0:111 route-map calculator permit 15668 match community 2_37_153 2_51_111 set community 0:5661 ip community-list standard 2_93_199 permit 65000:2 0:93 0:199 route-map calculator permit 15669 match community 2_93_199 set community 0:18507 ip community-list standard 2_5_131 permit 65000:2 0:5 0:131 route-map calculator permit 15670 match community 2_5_131 set community 0:655 ip community-list standard 2_10_228 permit 65000:2 0:10 0:228 ip community-list standard 2_12_190 permit 65000:2 0:12 0:190 ip community-list standard 2_15_152 permit 65000:2 0:15 0:152 ip community-list standard 2_19_120 permit 65000:2 0:19 0:120 ip community-list standard 2_20_114 permit 65000:2 0:20 0:114 ip community-list standard 2_24_95 permit 65000:2 0:24 0:95 ip community-list standard 2_30_76 permit 65000:2 0:30 0:76 ip community-list standard 2_38_60 permit 65000:2 0:38 0:60 ip community-list standard 2_40_57 permit 65000:2 0:40 0:57 route-map calculator permit 15671 match community 2_10_228 2_12_190 2_15_152 2_19_120 2_20_114 set community 0:2280 route-map calculator permit 15672 match community 2_24_95 2_30_76 2_38_60 2_40_57 set community 0:2280 ip community-list standard 2_71_219 permit 65000:2 0:71 0:219 ip community-list standard 2_73_213 permit 65000:2 0:73 0:213 route-map calculator permit 15673 match community 2_71_219 2_73_213 set community 0:15549 ip community-list standard 2_29_124 permit 65000:2 0:29 0:124 ip community-list standard 2_31_116 permit 65000:2 0:31 0:116 ip community-list standard 2_58_62 permit 65000:2 0:58 0:62 route-map calculator permit 15674 match community 2_29_124 2_31_116 2_58_62 set community 0:3596 ip community-list standard 2_77_79 permit 65000:2 0:77 0:79 route-map calculator permit 15675 match community 2_77_79 set community 0:6083 ip community-list standard 2_136_222 permit 65000:2 0:136 0:222 ip community-list standard 2_148_204 permit 65000:2 0:148 0:204 route-map calculator permit 15676 match community 2_136_222 2_148_204 set community 0:30192 ip community-list standard 2_244_244 permit 65000:2 0:244 0:244 route-map calculator permit 15677 match community 2_244_244 set community 0:59536 ip community-list standard 2_52_252 permit 65000:2 0:52 0:252 ip community-list standard 2_56_234 permit 65000:2 0:56 0:234 ip community-list standard 2_63_208 permit 65000:2 0:63 0:208 ip community-list standard 2_72_182 permit 65000:2 0:72 0:182 ip community-list standard 2_78_168 permit 65000:2 0:78 0:168 ip community-list standard 2_84_156 permit 65000:2 0:84 0:156 ip community-list standard 2_91_144 permit 65000:2 0:91 0:144 ip community-list standard 2_104_126 permit 65000:2 0:104 0:126 ip community-list standard 2_112_117 permit 65000:2 0:112 0:117 route-map calculator permit 15678 match community 2_52_252 2_56_234 2_63_208 2_72_182 2_78_168 set community 0:13104 route-map calculator permit 15679 match community 2_84_156 2_91_144 2_104_126 2_112_117 set community 0:13104 ip community-list standard 2_43_224 permit 65000:2 0:43 0:224 ip community-list standard 2_56_172 permit 65000:2 0:56 0:172 ip community-list standard 2_86_112 permit 65000:2 0:86 0:112 route-map calculator permit 15680 match community 2_43_224 2_56_172 2_86_112 set community 0:9632 ip community-list standard 2_26_253 permit 65000:2 0:26 0:253 ip community-list standard 2_46_143 permit 65000:2 0:46 0:143 route-map calculator permit 15681 match community 2_26_253 2_46_143 set community 0:6578 ip community-list standard 2_186_223 permit 65000:2 0:186 0:223 route-map calculator permit 15682 match community 2_186_223 set community 0:41478 ip community-list standard 2_85_251 permit 65000:2 0:85 0:251 route-map calculator permit 15683 match community 2_85_251 set community 0:21335 ip community-list standard 2_103_153 permit 65000:2 0:103 0:153 route-map calculator permit 15684 match community 2_103_153 set community 0:15759 ip community-list standard 2_142_250 permit 65000:2 0:142 0:250 route-map calculator permit 15685 match community 2_142_250 set community 0:35500 ip community-list standard 2_45_253 permit 65000:2 0:45 0:253 ip community-list standard 2_55_207 permit 65000:2 0:55 0:207 ip community-list standard 2_69_165 permit 65000:2 0:69 0:165 ip community-list standard 2_99_115 permit 65000:2 0:99 0:115 route-map calculator permit 15686 match community 2_45_253 2_55_207 2_69_165 2_99_115 set community 0:11385 ip community-list standard 2_76_238 permit 65000:2 0:76 0:238 ip community-list standard 2_119_152 permit 65000:2 0:119 0:152 ip community-list standard 2_133_136 permit 65000:2 0:133 0:136 route-map calculator permit 15687 match community 2_76_238 2_119_152 2_133_136 set community 0:18088 ip community-list standard 2_54_243 permit 65000:2 0:54 0:243 ip community-list standard 2_81_162 permit 65000:2 0:81 0:162 route-map calculator permit 15688 match community 2_54_243 2_81_162 set community 0:13122 ip community-list standard 2_16_248 permit 65000:2 0:16 0:248 ip community-list standard 2_31_128 permit 65000:2 0:31 0:128 ip community-list standard 2_32_124 permit 65000:2 0:32 0:124 ip community-list standard 2_62_64 permit 65000:2 0:62 0:64 route-map calculator permit 15689 match community 2_16_248 2_31_128 2_32_124 2_62_64 set community 0:3968 ip community-list standard 2_110_252 permit 65000:2 0:110 0:252 ip community-list standard 2_120_231 permit 65000:2 0:120 0:231 ip community-list standard 2_126_220 permit 65000:2 0:126 0:220 ip community-list standard 2_132_210 permit 65000:2 0:132 0:210 ip community-list standard 2_140_198 permit 65000:2 0:140 0:198 ip community-list standard 2_154_180 permit 65000:2 0:154 0:180 ip community-list standard 2_165_168 permit 65000:2 0:165 0:168 route-map calculator permit 15690 match community 2_110_252 2_120_231 2_126_220 2_132_210 2_140_198 set community 0:27720 route-map calculator permit 15691 match community 2_154_180 2_165_168 set community 0:27720 ip community-list standard 2_123_223 permit 65000:2 0:123 0:223 route-map calculator permit 15692 match community 2_123_223 set community 0:27429 ip community-list standard 2_119_244 permit 65000:2 0:119 0:244 ip community-list standard 2_122_238 permit 65000:2 0:122 0:238 route-map calculator permit 15693 match community 2_119_244 2_122_238 set community 0:29036 ip community-list standard 2_80_246 permit 65000:2 0:80 0:246 ip community-list standard 2_82_240 permit 65000:2 0:82 0:240 ip community-list standard 2_96_205 permit 65000:2 0:96 0:205 ip community-list standard 2_120_164 permit 65000:2 0:120 0:164 ip community-list standard 2_123_160 permit 65000:2 0:123 0:160 route-map calculator permit 15694 match community 2_80_246 2_82_240 2_96_205 2_120_164 2_123_160 set community 0:19680 ip community-list standard 2_58_247 permit 65000:2 0:58 0:247 route-map calculator permit 15695 match community 2_58_247 set community 0:14326 ip community-list standard 2_9_151 permit 65000:2 0:9 0:151 route-map calculator permit 15696 match community 2_9_151 set community 0:1359 ip community-list standard 2_87_206 permit 65000:2 0:87 0:206 ip community-list standard 2_103_174 permit 65000:2 0:103 0:174 route-map calculator permit 15697 match community 2_87_206 2_103_174 set community 0:17922 ip community-list standard 2_89_137 permit 65000:2 0:89 0:137 route-map calculator permit 15698 match community 2_89_137 set community 0:12193 ip community-list standard 2_164_214 permit 65000:2 0:164 0:214 route-map calculator permit 15699 match community 2_164_214 set community 0:35096 ip community-list standard 2_55_169 permit 65000:2 0:55 0:169 ip community-list standard 2_65_143 permit 65000:2 0:65 0:143 route-map calculator permit 15700 match community 2_55_169 2_65_143 set community 0:9295 ip community-list standard 2_22_172 permit 65000:2 0:22 0:172 ip community-list standard 2_43_88 permit 65000:2 0:43 0:88 ip community-list standard 2_44_86 permit 65000:2 0:44 0:86 route-map calculator permit 15701 match community 2_22_172 2_43_88 2_44_86 set community 0:3784 ip community-list standard 2_176_233 permit 65000:2 0:176 0:233 route-map calculator permit 15702 match community 2_176_233 set community 0:41008 ip community-list standard 2_83_143 permit 65000:2 0:83 0:143 route-map calculator permit 15703 match community 2_83_143 set community 0:11869 ip community-list standard 2_84_233 permit 65000:2 0:84 0:233 route-map calculator permit 15704 match community 2_84_233 set community 0:19572 ip community-list standard 2_194_225 permit 65000:2 0:194 0:225 route-map calculator permit 15705 match community 2_194_225 set community 0:43650 ip community-list standard 2_248_248 permit 65000:2 0:248 0:248 route-map calculator permit 15706 match community 2_248_248 set community 0:61504 ip community-list standard 2_149_240 permit 65000:2 0:149 0:240 route-map calculator permit 15707 match community 2_149_240 set community 0:35760 ip community-list standard 2_83_253 permit 65000:2 0:83 0:253 route-map calculator permit 15708 match community 2_83_253 set community 0:20999 ip community-list standard 2_63_230 permit 65000:2 0:63 0:230 ip community-list standard 2_69_210 permit 65000:2 0:69 0:210 ip community-list standard 2_70_207 permit 65000:2 0:70 0:207 ip community-list standard 2_90_161 permit 65000:2 0:90 0:161 ip community-list standard 2_105_138 permit 65000:2 0:105 0:138 ip community-list standard 2_115_126 permit 65000:2 0:115 0:126 route-map calculator permit 15709 match community 2_63_230 2_69_210 2_70_207 2_90_161 2_105_138 set community 0:14490 route-map calculator permit 15710 match community 2_115_126 set community 0:14490 ip community-list standard 2_146_160 permit 65000:2 0:146 0:160 route-map calculator permit 15711 match community 2_146_160 set community 0:23360 ip community-list standard 2_90_249 permit 65000:2 0:90 0:249 ip community-list standard 2_135_166 permit 65000:2 0:135 0:166 route-map calculator permit 15712 match community 2_90_249 2_135_166 set community 0:22410 ip community-list standard 2_27_215 permit 65000:2 0:27 0:215 ip community-list standard 2_43_135 permit 65000:2 0:43 0:135 ip community-list standard 2_45_129 permit 65000:2 0:45 0:129 route-map calculator permit 15713 match community 2_27_215 2_43_135 2_45_129 set community 0:5805 ip community-list standard 2_7_223 permit 65000:2 0:7 0:223 route-map calculator permit 15714 match community 2_7_223 set community 0:1561 ip community-list standard 2_89_220 permit 65000:2 0:89 0:220 ip community-list standard 2_110_178 permit 65000:2 0:110 0:178 route-map calculator permit 15715 match community 2_89_220 2_110_178 set community 0:19580 ip community-list standard 2_117_235 permit 65000:2 0:117 0:235 ip community-list standard 2_141_195 permit 65000:2 0:141 0:195 route-map calculator permit 15716 match community 2_117_235 2_141_195 set community 0:27495 ip community-list standard 2_31_99 permit 65000:2 0:31 0:99 ip community-list standard 2_33_93 permit 65000:2 0:33 0:93 route-map calculator permit 15717 match community 2_31_99 2_33_93 set community 0:3069 ip community-list standard 2_57_175 permit 65000:2 0:57 0:175 ip community-list standard 2_75_133 permit 65000:2 0:75 0:133 ip community-list standard 2_95_105 permit 65000:2 0:95 0:105 route-map calculator permit 15718 match community 2_57_175 2_75_133 2_95_105 set community 0:9975 ip community-list standard 2_67_85 permit 65000:2 0:67 0:85 route-map calculator permit 15719 match community 2_67_85 set community 0:5695 ip community-list standard 2_4_239 permit 65000:2 0:4 0:239 route-map calculator permit 15720 match community 2_4_239 set community 0:956 ip community-list standard 2_48_227 permit 65000:2 0:48 0:227 route-map calculator permit 15721 match community 2_48_227 set community 0:10896 ip community-list standard 2_161_240 permit 65000:2 0:161 0:240 ip community-list standard 2_168_230 permit 65000:2 0:168 0:230 ip community-list standard 2_184_210 permit 65000:2 0:184 0:210 route-map calculator permit 15722 match community 2_161_240 2_168_230 2_184_210 set community 0:38640 ip community-list standard 2_48_212 permit 65000:2 0:48 0:212 ip community-list standard 2_53_192 permit 65000:2 0:53 0:192 ip community-list standard 2_64_159 permit 65000:2 0:64 0:159 ip community-list standard 2_96_106 permit 65000:2 0:96 0:106 route-map calculator permit 15723 match community 2_48_212 2_53_192 2_64_159 2_96_106 set community 0:10176 ip community-list standard 2_10_166 permit 65000:2 0:10 0:166 ip community-list standard 2_20_83 permit 65000:2 0:20 0:83 route-map calculator permit 15724 match community 2_10_166 2_20_83 set community 0:1660 ip community-list standard 2_3_217 permit 65000:2 0:3 0:217 ip community-list standard 2_7_93 permit 65000:2 0:7 0:93 ip community-list standard 2_21_31 permit 65000:2 0:21 0:31 route-map calculator permit 15725 match community 2_3_217 2_7_93 2_21_31 set community 0:651 ip community-list standard 2_72_246 permit 65000:2 0:72 0:246 ip community-list standard 2_82_216 permit 65000:2 0:82 0:216 ip community-list standard 2_108_164 permit 65000:2 0:108 0:164 ip community-list standard 2_123_144 permit 65000:2 0:123 0:144 route-map calculator permit 15726 match community 2_72_246 2_82_216 2_108_164 2_123_144 set community 0:17712 ip community-list standard 2_96_219 permit 65000:2 0:96 0:219 ip community-list standard 2_144_146 permit 65000:2 0:144 0:146 route-map calculator permit 15727 match community 2_96_219 2_144_146 set community 0:21024 ip community-list standard 2_114_243 permit 65000:2 0:114 0:243 ip community-list standard 2_162_171 permit 65000:2 0:162 0:171 route-map calculator permit 15728 match community 2_114_243 2_162_171 set community 0:27702 ip community-list standard 2_81_190 permit 65000:2 0:81 0:190 ip community-list standard 2_90_171 permit 65000:2 0:90 0:171 ip community-list standard 2_95_162 permit 65000:2 0:95 0:162 ip community-list standard 2_114_135 permit 65000:2 0:114 0:135 route-map calculator permit 15729 match community 2_81_190 2_90_171 2_95_162 2_114_135 set community 0:15390 ip community-list standard 2_119_231 permit 65000:2 0:119 0:231 ip community-list standard 2_147_187 permit 65000:2 0:147 0:187 route-map calculator permit 15730 match community 2_119_231 2_147_187 set community 0:27489 ip community-list standard 2_166_212 permit 65000:2 0:166 0:212 route-map calculator permit 15731 match community 2_166_212 set community 0:35192 ip community-list standard 2_64_158 permit 65000:2 0:64 0:158 ip community-list standard 2_79_128 permit 65000:2 0:79 0:128 route-map calculator permit 15732 match community 2_64_158 2_79_128 set community 0:10112 ip community-list standard 2_81_139 permit 65000:2 0:81 0:139 route-map calculator permit 15733 match community 2_81_139 set community 0:11259 ip community-list standard 2_23_225 permit 65000:2 0:23 0:225 ip community-list standard 2_25_207 permit 65000:2 0:25 0:207 ip community-list standard 2_45_115 permit 65000:2 0:45 0:115 ip community-list standard 2_69_75 permit 65000:2 0:69 0:75 route-map calculator permit 15734 match community 2_23_225 2_25_207 2_45_115 2_69_75 set community 0:5175 ip community-list standard 2_147_243 permit 65000:2 0:147 0:243 ip community-list standard 2_189_189 permit 65000:2 0:189 0:189 route-map calculator permit 15735 match community 2_147_243 2_189_189 set community 0:35721 ip community-list standard 2_163_205 permit 65000:2 0:163 0:205 route-map calculator permit 15736 match community 2_163_205 set community 0:33415 ip community-list standard 2_114_189 permit 65000:2 0:114 0:189 ip community-list standard 2_126_171 permit 65000:2 0:126 0:171 ip community-list standard 2_133_162 permit 65000:2 0:133 0:162 route-map calculator permit 15737 match community 2_114_189 2_126_171 2_133_162 set community 0:21546 ip community-list standard 2_162_233 permit 65000:2 0:162 0:233 route-map calculator permit 15738 match community 2_162_233 set community 0:37746 ip community-list standard 2_94_133 permit 65000:2 0:94 0:133 route-map calculator permit 15739 match community 2_94_133 set community 0:12502 ip community-list standard 2_12_226 permit 65000:2 0:12 0:226 ip community-list standard 2_24_113 permit 65000:2 0:24 0:113 route-map calculator permit 15740 match community 2_12_226 2_24_113 set community 0:2712 ip community-list standard 2_121_231 permit 65000:2 0:121 0:231 route-map calculator permit 15741 match community 2_121_231 set community 0:27951 ip community-list standard 2_95_161 permit 65000:2 0:95 0:161 ip community-list standard 2_115_133 permit 65000:2 0:115 0:133 route-map calculator permit 15742 match community 2_95_161 2_115_133 set community 0:15295 ip community-list standard 2_179_209 permit 65000:2 0:179 0:209 route-map calculator permit 15743 match community 2_179_209 set community 0:37411 ip community-list standard 2_14_254 permit 65000:2 0:14 0:254 ip community-list standard 2_28_127 permit 65000:2 0:28 0:127 route-map calculator permit 15744 match community 2_14_254 2_28_127 set community 0:3556 ip community-list standard 2_29_199 permit 65000:2 0:29 0:199 route-map calculator permit 15745 match community 2_29_199 set community 0:5771 ip community-list standard 2_119_187 permit 65000:2 0:119 0:187 route-map calculator permit 15746 match community 2_119_187 set community 0:22253 ip community-list standard 2_45_227 permit 65000:2 0:45 0:227 route-map calculator permit 15747 match community 2_45_227 set community 0:10215 ip community-list standard 2_97_133 permit 65000:2 0:97 0:133 route-map calculator permit 15748 match community 2_97_133 set community 0:12901 ip community-list standard 2_104_212 permit 65000:2 0:104 0:212 ip community-list standard 2_106_208 permit 65000:2 0:106 0:208 route-map calculator permit 15749 match community 2_104_212 2_106_208 set community 0:22048 ip community-list standard 2_171_177 permit 65000:2 0:171 0:177 route-map calculator permit 15750 match community 2_171_177 set community 0:30267 ip community-list standard 2_5_219 permit 65000:2 0:5 0:219 ip community-list standard 2_15_73 permit 65000:2 0:15 0:73 route-map calculator permit 15751 match community 2_5_219 2_15_73 set community 0:1095 ip community-list standard 2_4_200 permit 65000:2 0:4 0:200 ip community-list standard 2_5_160 permit 65000:2 0:5 0:160 ip community-list standard 2_8_100 permit 65000:2 0:8 0:100 ip community-list standard 2_10_80 permit 65000:2 0:10 0:80 ip community-list standard 2_16_50 permit 65000:2 0:16 0:50 ip community-list standard 2_20_40 permit 65000:2 0:20 0:40 ip community-list standard 2_25_32 permit 65000:2 0:25 0:32 route-map calculator permit 15752 match community 2_4_200 2_5_160 2_8_100 2_10_80 2_16_50 set community 0:800 route-map calculator permit 15753 match community 2_20_40 2_25_32 set community 0:800 ip community-list standard 2_141_212 permit 65000:2 0:141 0:212 ip community-list standard 2_159_188 permit 65000:2 0:159 0:188 route-map calculator permit 15754 match community 2_141_212 2_159_188 set community 0:29892 ip community-list standard 2_8_212 permit 65000:2 0:8 0:212 ip community-list standard 2_16_106 permit 65000:2 0:16 0:106 ip community-list standard 2_32_53 permit 65000:2 0:32 0:53 route-map calculator permit 15755 match community 2_8_212 2_16_106 2_32_53 set community 0:1696 ip community-list standard 2_7_169 permit 65000:2 0:7 0:169 ip community-list standard 2_13_91 permit 65000:2 0:13 0:91 route-map calculator permit 15756 match community 2_7_169 2_13_91 set community 0:1183 ip community-list standard 2_213_216 permit 65000:2 0:213 0:216 route-map calculator permit 15757 match community 2_213_216 set community 0:46008 ip community-list standard 2_122_231 permit 65000:2 0:122 0:231 ip community-list standard 2_154_183 permit 65000:2 0:154 0:183 route-map calculator permit 15758 match community 2_122_231 2_154_183 set community 0:28182 ip community-list standard 2_132_181 permit 65000:2 0:132 0:181 route-map calculator permit 15759 match community 2_132_181 set community 0:23892 ip community-list standard 2_38_255 permit 65000:2 0:38 0:255 ip community-list standard 2_51_190 permit 65000:2 0:51 0:190 ip community-list standard 2_57_170 permit 65000:2 0:57 0:170 ip community-list standard 2_85_114 permit 65000:2 0:85 0:114 ip community-list standard 2_95_102 permit 65000:2 0:95 0:102 route-map calculator permit 15760 match community 2_38_255 2_51_190 2_57_170 2_85_114 2_95_102 set community 0:9690 ip community-list standard 2_91_127 permit 65000:2 0:91 0:127 route-map calculator permit 15761 match community 2_91_127 set community 0:11557 ip community-list standard 2_57_173 permit 65000:2 0:57 0:173 route-map calculator permit 15762 match community 2_57_173 set community 0:9861 ip community-list standard 2_137_255 permit 65000:2 0:137 0:255 route-map calculator permit 15763 match community 2_137_255 set community 0:34935 ip community-list standard 2_66_163 permit 65000:2 0:66 0:163 route-map calculator permit 15764 match community 2_66_163 set community 0:10758 ip community-list standard 2_34_193 permit 65000:2 0:34 0:193 route-map calculator permit 15765 match community 2_34_193 set community 0:6562 ip community-list standard 2_64_245 permit 65000:2 0:64 0:245 ip community-list standard 2_70_224 permit 65000:2 0:70 0:224 ip community-list standard 2_80_196 permit 65000:2 0:80 0:196 ip community-list standard 2_98_160 permit 65000:2 0:98 0:160 ip community-list standard 2_112_140 permit 65000:2 0:112 0:140 route-map calculator permit 15766 match community 2_64_245 2_70_224 2_80_196 2_98_160 2_112_140 set community 0:15680 ip community-list standard 2_226_251 permit 65000:2 0:226 0:251 route-map calculator permit 15767 match community 2_226_251 set community 0:56726 ip community-list standard 2_184_188 permit 65000:2 0:184 0:188 route-map calculator permit 15768 match community 2_184_188 set community 0:34592 ip community-list standard 2_56_146 permit 65000:2 0:56 0:146 ip community-list standard 2_73_112 permit 65000:2 0:73 0:112 route-map calculator permit 15769 match community 2_56_146 2_73_112 set community 0:8176 ip community-list standard 2_157_226 permit 65000:2 0:157 0:226 route-map calculator permit 15770 match community 2_157_226 set community 0:35482 ip community-list standard 2_28_240 permit 65000:2 0:28 0:240 ip community-list standard 2_30_224 permit 65000:2 0:30 0:224 ip community-list standard 2_32_210 permit 65000:2 0:32 0:210 ip community-list standard 2_35_192 permit 65000:2 0:35 0:192 ip community-list standard 2_40_168 permit 65000:2 0:40 0:168 ip community-list standard 2_42_160 permit 65000:2 0:42 0:160 ip community-list standard 2_48_140 permit 65000:2 0:48 0:140 ip community-list standard 2_56_120 permit 65000:2 0:56 0:120 ip community-list standard 2_60_112 permit 65000:2 0:60 0:112 ip community-list standard 2_64_105 permit 65000:2 0:64 0:105 ip community-list standard 2_70_96 permit 65000:2 0:70 0:96 ip community-list standard 2_80_84 permit 65000:2 0:80 0:84 route-map calculator permit 15771 match community 2_28_240 2_30_224 2_32_210 2_35_192 2_40_168 set community 0:6720 route-map calculator permit 15772 match community 2_42_160 2_48_140 2_56_120 2_60_112 2_64_105 set community 0:6720 route-map calculator permit 15773 match community 2_70_96 2_80_84 set community 0:6720 ip community-list standard 2_206_251 permit 65000:2 0:206 0:251 route-map calculator permit 15774 match community 2_206_251 set community 0:51706 ip community-list standard 2_109_228 permit 65000:2 0:109 0:228 ip community-list standard 2_114_218 permit 65000:2 0:114 0:218 route-map calculator permit 15775 match community 2_109_228 2_114_218 set community 0:24852 ip community-list standard 2_232_253 permit 65000:2 0:232 0:253 route-map calculator permit 15776 match community 2_232_253 set community 0:58696 ip community-list standard 2_6_186 permit 65000:2 0:6 0:186 ip community-list standard 2_9_124 permit 65000:2 0:9 0:124 ip community-list standard 2_12_93 permit 65000:2 0:12 0:93 ip community-list standard 2_18_62 permit 65000:2 0:18 0:62 ip community-list standard 2_31_36 permit 65000:2 0:31 0:36 route-map calculator permit 15777 match community 2_6_186 2_9_124 2_12_93 2_18_62 2_31_36 set community 0:1116 ip community-list standard 2_215_251 permit 65000:2 0:215 0:251 route-map calculator permit 15778 match community 2_215_251 set community 0:53965 ip community-list standard 2_70_223 permit 65000:2 0:70 0:223 route-map calculator permit 15779 match community 2_70_223 set community 0:15610 ip community-list standard 2_25_163 permit 65000:2 0:25 0:163 route-map calculator permit 15780 match community 2_25_163 set community 0:4075 ip community-list standard 2_120_215 permit 65000:2 0:120 0:215 ip community-list standard 2_129_200 permit 65000:2 0:129 0:200 ip community-list standard 2_150_172 permit 65000:2 0:150 0:172 route-map calculator permit 15781 match community 2_120_215 2_129_200 2_150_172 set community 0:25800 ip community-list standard 2_228_230 permit 65000:2 0:228 0:230 route-map calculator permit 15782 match community 2_228_230 set community 0:52440 ip community-list standard 2_148_230 permit 65000:2 0:148 0:230 ip community-list standard 2_184_185 permit 65000:2 0:184 0:185 route-map calculator permit 15783 match community 2_148_230 2_184_185 set community 0:34040 ip community-list standard 2_105_230 permit 65000:2 0:105 0:230 ip community-list standard 2_115_210 permit 65000:2 0:115 0:210 ip community-list standard 2_138_175 permit 65000:2 0:138 0:175 ip community-list standard 2_150_161 permit 65000:2 0:150 0:161 route-map calculator permit 15784 match community 2_105_230 2_115_210 2_138_175 2_150_161 set community 0:24150 ip community-list standard 2_138_228 permit 65000:2 0:138 0:228 ip community-list standard 2_152_207 permit 65000:2 0:152 0:207 ip community-list standard 2_171_184 permit 65000:2 0:171 0:184 route-map calculator permit 15785 match community 2_138_228 2_152_207 2_171_184 set community 0:31464 ip community-list standard 2_181_190 permit 65000:2 0:181 0:190 route-map calculator permit 15786 match community 2_181_190 set community 0:34390 ip community-list standard 2_26_221 permit 65000:2 0:26 0:221 ip community-list standard 2_34_169 permit 65000:2 0:34 0:169 route-map calculator permit 15787 match community 2_26_221 2_34_169 set community 0:5746 ip community-list standard 2_79_187 permit 65000:2 0:79 0:187 route-map calculator permit 15788 match community 2_79_187 set community 0:14773 ip community-list standard 2_43_178 permit 65000:2 0:43 0:178 ip community-list standard 2_86_89 permit 65000:2 0:86 0:89 route-map calculator permit 15789 match community 2_43_178 2_86_89 set community 0:7654 ip community-list standard 2_64_246 permit 65000:2 0:64 0:246 ip community-list standard 2_82_192 permit 65000:2 0:82 0:192 ip community-list standard 2_96_164 permit 65000:2 0:96 0:164 ip community-list standard 2_123_128 permit 65000:2 0:123 0:128 route-map calculator permit 15790 match community 2_64_246 2_82_192 2_96_164 2_123_128 set community 0:15744 ip community-list standard 2_41_131 permit 65000:2 0:41 0:131 route-map calculator permit 15791 match community 2_41_131 set community 0:5371 ip community-list standard 2_89_167 permit 65000:2 0:89 0:167 route-map calculator permit 15792 match community 2_89_167 set community 0:14863 ip community-list standard 2_70_239 permit 65000:2 0:70 0:239 route-map calculator permit 15793 match community 2_70_239 set community 0:16730 ip community-list standard 2_63_245 permit 65000:2 0:63 0:245 ip community-list standard 2_105_147 permit 65000:2 0:105 0:147 route-map calculator permit 15794 match community 2_63_245 2_105_147 set community 0:15435 ip community-list standard 2_224_241 permit 65000:2 0:224 0:241 route-map calculator permit 15795 match community 2_224_241 set community 0:53984 ip community-list standard 2_218_220 permit 65000:2 0:218 0:220 route-map calculator permit 15796 match community 2_218_220 set community 0:47960 ip community-list standard 2_205_221 permit 65000:2 0:205 0:221 route-map calculator permit 15797 match community 2_205_221 set community 0:45305 ip community-list standard 2_23_241 permit 65000:2 0:23 0:241 route-map calculator permit 15798 match community 2_23_241 set community 0:5543 ip community-list standard 2_10_187 permit 65000:2 0:10 0:187 ip community-list standard 2_11_170 permit 65000:2 0:11 0:170 ip community-list standard 2_17_110 permit 65000:2 0:17 0:110 ip community-list standard 2_22_85 permit 65000:2 0:22 0:85 ip community-list standard 2_34_55 permit 65000:2 0:34 0:55 route-map calculator permit 15799 match community 2_10_187 2_11_170 2_17_110 2_22_85 2_34_55 set community 0:1870 ip community-list standard 2_65_179 permit 65000:2 0:65 0:179 route-map calculator permit 15800 match community 2_65_179 set community 0:11635 ip community-list standard 2_66_222 permit 65000:2 0:66 0:222 ip community-list standard 2_74_198 permit 65000:2 0:74 0:198 ip community-list standard 2_99_148 permit 65000:2 0:99 0:148 ip community-list standard 2_111_132 permit 65000:2 0:111 0:132 route-map calculator permit 15801 match community 2_66_222 2_74_198 2_99_148 2_111_132 set community 0:14652 ip community-list standard 2_47_256 permit 65000:2 0:47 0:256 ip community-list standard 2_64_188 permit 65000:2 0:64 0:188 ip community-list standard 2_94_128 permit 65000:2 0:94 0:128 route-map calculator permit 15802 match community 2_47_256 2_64_188 2_94_128 set community 0:12032 ip community-list standard 2_191_211 permit 65000:2 0:191 0:211 route-map calculator permit 15803 match community 2_191_211 set community 0:40301 ip community-list standard 2_148_166 permit 65000:2 0:148 0:166 route-map calculator permit 15804 match community 2_148_166 set community 0:24568 ip community-list standard 2_27_242 permit 65000:2 0:27 0:242 ip community-list standard 2_33_198 permit 65000:2 0:33 0:198 ip community-list standard 2_54_121 permit 65000:2 0:54 0:121 ip community-list standard 2_66_99 permit 65000:2 0:66 0:99 route-map calculator permit 15805 match community 2_27_242 2_33_198 2_54_121 2_66_99 set community 0:6534 ip community-list standard 2_38_212 permit 65000:2 0:38 0:212 ip community-list standard 2_53_152 permit 65000:2 0:53 0:152 ip community-list standard 2_76_106 permit 65000:2 0:76 0:106 route-map calculator permit 15806 match community 2_38_212 2_53_152 2_76_106 set community 0:8056 ip community-list standard 2_161_243 permit 65000:2 0:161 0:243 ip community-list standard 2_189_207 permit 65000:2 0:189 0:207 route-map calculator permit 15807 match community 2_161_243 2_189_207 set community 0:39123 ip community-list standard 2_118_161 permit 65000:2 0:118 0:161 route-map calculator permit 15808 match community 2_118_161 set community 0:18998 ip community-list standard 2_25_223 permit 65000:2 0:25 0:223 route-map calculator permit 15809 match community 2_25_223 set community 0:5575 ip community-list standard 2_56_255 permit 65000:2 0:56 0:255 ip community-list standard 2_60_238 permit 65000:2 0:60 0:238 ip community-list standard 2_68_210 permit 65000:2 0:68 0:210 ip community-list standard 2_70_204 permit 65000:2 0:70 0:204 ip community-list standard 2_84_170 permit 65000:2 0:84 0:170 ip community-list standard 2_85_168 permit 65000:2 0:85 0:168 ip community-list standard 2_102_140 permit 65000:2 0:102 0:140 ip community-list standard 2_105_136 permit 65000:2 0:105 0:136 ip community-list standard 2_119_120 permit 65000:2 0:119 0:120 route-map calculator permit 15810 match community 2_56_255 2_60_238 2_68_210 2_70_204 2_84_170 set community 0:14280 route-map calculator permit 15811 match community 2_85_168 2_102_140 2_105_136 2_119_120 set community 0:14280 ip community-list standard 2_11_204 permit 65000:2 0:11 0:204 ip community-list standard 2_12_187 permit 65000:2 0:12 0:187 ip community-list standard 2_17_132 permit 65000:2 0:17 0:132 ip community-list standard 2_22_102 permit 65000:2 0:22 0:102 ip community-list standard 2_33_68 permit 65000:2 0:33 0:68 ip community-list standard 2_34_66 permit 65000:2 0:34 0:66 ip community-list standard 2_44_51 permit 65000:2 0:44 0:51 route-map calculator permit 15812 match community 2_11_204 2_12_187 2_17_132 2_22_102 2_33_68 set community 0:2244 route-map calculator permit 15813 match community 2_34_66 2_44_51 set community 0:2244 ip community-list standard 2_172_208 permit 65000:2 0:172 0:208 route-map calculator permit 15814 match community 2_172_208 set community 0:35776 ip community-list standard 2_112_232 permit 65000:2 0:112 0:232 ip community-list standard 2_116_224 permit 65000:2 0:116 0:224 ip community-list standard 2_128_203 permit 65000:2 0:128 0:203 route-map calculator permit 15815 match community 2_112_232 2_116_224 2_128_203 set community 0:25984 ip community-list standard 2_9_89 permit 65000:2 0:9 0:89 route-map calculator permit 15816 match community 2_9_89 set community 0:801 ip community-list standard 2_18_226 permit 65000:2 0:18 0:226 ip community-list standard 2_36_113 permit 65000:2 0:36 0:113 route-map calculator permit 15817 match community 2_18_226 2_36_113 set community 0:4068 ip community-list standard 2_11_74 permit 65000:2 0:11 0:74 ip community-list standard 2_22_37 permit 65000:2 0:22 0:37 route-map calculator permit 15818 match community 2_11_74 2_22_37 set community 0:814 ip community-list standard 2_203_231 permit 65000:2 0:203 0:231 route-map calculator permit 15819 match community 2_203_231 set community 0:46893 ip community-list standard 2_164_249 permit 65000:2 0:164 0:249 ip community-list standard 2_166_246 permit 65000:2 0:166 0:246 route-map calculator permit 15820 match community 2_164_249 2_166_246 set community 0:40836 ip community-list standard 2_115_127 permit 65000:2 0:115 0:127 route-map calculator permit 15821 match community 2_115_127 set community 0:14605 ip community-list standard 2_50_251 permit 65000:2 0:50 0:251 route-map calculator permit 15822 match community 2_50_251 set community 0:12550 ip community-list standard 2_113_251 permit 65000:2 0:113 0:251 route-map calculator permit 15823 match community 2_113_251 set community 0:28363 ip community-list standard 2_183_203 permit 65000:2 0:183 0:203 route-map calculator permit 15824 match community 2_183_203 set community 0:37149 ip community-list standard 2_83_254 permit 65000:2 0:83 0:254 ip community-list standard 2_127_166 permit 65000:2 0:127 0:166 route-map calculator permit 15825 match community 2_83_254 2_127_166 set community 0:21082 ip community-list standard 2_23_175 permit 65000:2 0:23 0:175 ip community-list standard 2_25_161 permit 65000:2 0:25 0:161 ip community-list standard 2_35_115 permit 65000:2 0:35 0:115 route-map calculator permit 15826 match community 2_23_175 2_25_161 2_35_115 set community 0:4025 ip community-list standard 2_2_223 permit 65000:2 0:2 0:223 ip community-list standard 1_190_256 permit 65000:1 0:190 0:256 ip community-list standard 1_191_255 permit 65000:1 0:191 0:255 ip community-list standard 1_192_254 permit 65000:1 0:192 0:254 ip community-list standard 1_193_253 permit 65000:1 0:193 0:253 ip community-list standard 1_194_252 permit 65000:1 0:194 0:252 ip community-list standard 1_195_251 permit 65000:1 0:195 0:251 ip community-list standard 1_196_250 permit 65000:1 0:196 0:250 ip community-list standard 1_197_249 permit 65000:1 0:197 0:249 ip community-list standard 1_198_248 permit 65000:1 0:198 0:248 ip community-list standard 1_199_247 permit 65000:1 0:199 0:247 ip community-list standard 1_200_246 permit 65000:1 0:200 0:246 ip community-list standard 1_201_245 permit 65000:1 0:201 0:245 ip community-list standard 1_202_244 permit 65000:1 0:202 0:244 ip community-list standard 1_203_243 permit 65000:1 0:203 0:243 ip community-list standard 1_204_242 permit 65000:1 0:204 0:242 ip community-list standard 1_205_241 permit 65000:1 0:205 0:241 ip community-list standard 1_206_240 permit 65000:1 0:206 0:240 ip community-list standard 1_207_239 permit 65000:1 0:207 0:239 ip community-list standard 1_208_238 permit 65000:1 0:208 0:238 ip community-list standard 1_209_237 permit 65000:1 0:209 0:237 ip community-list standard 1_210_236 permit 65000:1 0:210 0:236 ip community-list standard 1_211_235 permit 65000:1 0:211 0:235 ip community-list standard 1_212_234 permit 65000:1 0:212 0:234 ip community-list standard 1_213_233 permit 65000:1 0:213 0:233 ip community-list standard 1_214_232 permit 65000:1 0:214 0:232 ip community-list standard 1_215_231 permit 65000:1 0:215 0:231 ip community-list standard 1_216_230 permit 65000:1 0:216 0:230 ip community-list standard 1_217_229 permit 65000:1 0:217 0:229 ip community-list standard 1_218_228 permit 65000:1 0:218 0:228 ip community-list standard 1_219_227 permit 65000:1 0:219 0:227 ip community-list standard 1_220_226 permit 65000:1 0:220 0:226 ip community-list standard 1_221_225 permit 65000:1 0:221 0:225 ip community-list standard 1_222_224 permit 65000:1 0:222 0:224 ip community-list standard 1_223_223 permit 65000:1 0:223 0:223 route-map calculator permit 15827 match community 2_2_223 1_190_256 1_191_255 1_192_254 1_193_253 set community 0:446 route-map calculator permit 15828 match community 1_194_252 1_195_251 1_196_250 1_197_249 1_198_248 set community 0:446 route-map calculator permit 15829 match community 1_199_247 1_200_246 1_201_245 1_202_244 1_203_243 set community 0:446 route-map calculator permit 15830 match community 1_204_242 1_205_241 1_206_240 1_207_239 1_208_238 set community 0:446 route-map calculator permit 15831 match community 1_209_237 1_210_236 1_211_235 1_212_234 1_213_233 set community 0:446 route-map calculator permit 15832 match community 1_214_232 1_215_231 1_216_230 1_217_229 1_218_228 set community 0:446 route-map calculator permit 15833 match community 1_219_227 1_220_226 1_221_225 1_222_224 1_223_223 set community 0:446 ip community-list standard 2_159_249 permit 65000:2 0:159 0:249 route-map calculator permit 15834 match community 2_159_249 set community 0:39591 ip community-list standard 2_27_250 permit 65000:2 0:27 0:250 ip community-list standard 2_30_225 permit 65000:2 0:30 0:225 ip community-list standard 2_45_150 permit 65000:2 0:45 0:150 ip community-list standard 2_50_135 permit 65000:2 0:50 0:135 ip community-list standard 2_54_125 permit 65000:2 0:54 0:125 ip community-list standard 2_75_90 permit 65000:2 0:75 0:90 route-map calculator permit 15835 match community 2_27_250 2_30_225 2_45_150 2_50_135 2_54_125 set community 0:6750 route-map calculator permit 15836 match community 2_75_90 set community 0:6750 ip community-list standard 2_85_95 permit 65000:2 0:85 0:95 route-map calculator permit 15837 match community 2_85_95 set community 0:8075 ip community-list standard 2_49_166 permit 65000:2 0:49 0:166 ip community-list standard 2_83_98 permit 65000:2 0:83 0:98 route-map calculator permit 15838 match community 2_49_166 2_83_98 set community 0:8134 ip community-list standard 2_64_229 permit 65000:2 0:64 0:229 route-map calculator permit 15839 match community 2_64_229 set community 0:14656 ip community-list standard 2_61_183 permit 65000:2 0:61 0:183 route-map calculator permit 15840 match community 2_61_183 set community 0:11163 ip community-list standard 2_20_149 permit 65000:2 0:20 0:149 route-map calculator permit 15841 match community 2_20_149 set community 0:2980 ip community-list standard 2_223_238 permit 65000:2 0:223 0:238 route-map calculator permit 15842 match community 2_223_238 set community 0:53074 ip community-list standard 2_19_215 permit 65000:2 0:19 0:215 ip community-list standard 2_43_95 permit 65000:2 0:43 0:95 route-map calculator permit 15843 match community 2_19_215 2_43_95 set community 0:4085 ip community-list standard 2_146_146 permit 65000:2 0:146 0:146 route-map calculator permit 15844 match community 2_146_146 set community 0:21316 ip community-list standard 2_241_255 permit 65000:2 0:241 0:255 route-map calculator permit 15845 match community 2_241_255 set community 0:61455 ip community-list standard 2_189_215 permit 65000:2 0:189 0:215 route-map calculator permit 15846 match community 2_189_215 set community 0:40635 ip community-list standard 2_17_67 permit 65000:2 0:17 0:67 route-map calculator permit 15847 match community 2_17_67 set community 0:1139 ip community-list standard 2_28_146 permit 65000:2 0:28 0:146 ip community-list standard 2_56_73 permit 65000:2 0:56 0:73 route-map calculator permit 15848 match community 2_28_146 2_56_73 set community 0:4088 ip community-list standard 2_121_252 permit 65000:2 0:121 0:252 ip community-list standard 2_126_242 permit 65000:2 0:126 0:242 ip community-list standard 2_132_231 permit 65000:2 0:132 0:231 ip community-list standard 2_154_198 permit 65000:2 0:154 0:198 route-map calculator permit 15849 match community 2_121_252 2_126_242 2_132_231 2_154_198 set community 0:30492 ip community-list standard 2_47_222 permit 65000:2 0:47 0:222 ip community-list standard 2_74_141 permit 65000:2 0:74 0:141 ip community-list standard 2_94_111 permit 65000:2 0:94 0:111 route-map calculator permit 15850 match community 2_47_222 2_74_141 2_94_111 set community 0:10434 ip community-list standard 2_16_211 permit 65000:2 0:16 0:211 route-map calculator permit 15851 match community 2_16_211 set community 0:3376 ip community-list standard 2_47_244 permit 65000:2 0:47 0:244 ip community-list standard 2_61_188 permit 65000:2 0:61 0:188 ip community-list standard 2_94_122 permit 65000:2 0:94 0:122 route-map calculator permit 15852 match community 2_47_244 2_61_188 2_94_122 set community 0:11468 ip community-list standard 2_187_244 permit 65000:2 0:187 0:244 route-map calculator permit 15853 match community 2_187_244 set community 0:45628 ip community-list standard 2_9_97 permit 65000:2 0:9 0:97 route-map calculator permit 15854 match community 2_9_97 set community 0:873 ip community-list standard 2_42_218 permit 65000:2 0:42 0:218 ip community-list standard 2_84_109 permit 65000:2 0:84 0:109 route-map calculator permit 15855 match community 2_42_218 2_84_109 set community 0:9156 ip community-list standard 2_17_116 permit 65000:2 0:17 0:116 ip community-list standard 2_29_68 permit 65000:2 0:29 0:68 ip community-list standard 2_34_58 permit 65000:2 0:34 0:58 route-map calculator permit 15856 match community 2_17_116 2_29_68 2_34_58 set community 0:1972 ip community-list standard 2_29_203 permit 65000:2 0:29 0:203 route-map calculator permit 15857 match community 2_29_203 set community 0:5887 ip community-list standard 2_52_167 permit 65000:2 0:52 0:167 route-map calculator permit 15858 match community 2_52_167 set community 0:8684 ip community-list standard 2_29_145 permit 65000:2 0:29 0:145 route-map calculator permit 15859 match community 2_29_145 set community 0:4205 ip community-list standard 2_196_242 permit 65000:2 0:196 0:242 route-map calculator permit 15860 match community 2_196_242 set community 0:47432 ip community-list standard 2_93_218 permit 65000:2 0:93 0:218 ip community-list standard 2_109_186 permit 65000:2 0:109 0:186 route-map calculator permit 15861 match community 2_93_218 2_109_186 set community 0:20274 ip community-list standard 2_125_163 permit 65000:2 0:125 0:163 route-map calculator permit 15862 match community 2_125_163 set community 0:20375 ip community-list standard 2_39_103 permit 65000:2 0:39 0:103 route-map calculator permit 15863 match community 2_39_103 set community 0:4017 ip community-list standard 2_242_250 permit 65000:2 0:242 0:250 route-map calculator permit 15864 match community 2_242_250 set community 0:60500 ip community-list standard 2_127_169 permit 65000:2 0:127 0:169 route-map calculator permit 15865 match community 2_127_169 set community 0:21463 ip community-list standard 2_205_223 permit 65000:2 0:205 0:223 route-map calculator permit 15866 match community 2_205_223 set community 0:45715 ip community-list standard 2_153_248 permit 65000:2 0:153 0:248 ip community-list standard 2_186_204 permit 65000:2 0:186 0:204 route-map calculator permit 15867 match community 2_153_248 2_186_204 set community 0:37944 ip community-list standard 1_1_184 permit 65000:1 0:1 0:184 ip community-list standard 2_1_185 permit 65000:2 0:1 0:185 ip community-list standard 1_2_183 permit 65000:1 0:2 0:183 ip community-list standard 1_3_182 permit 65000:1 0:3 0:182 ip community-list standard 1_4_181 permit 65000:1 0:4 0:181 ip community-list standard 2_5_37 permit 65000:2 0:5 0:37 ip community-list standard 1_5_180 permit 65000:1 0:5 0:180 ip community-list standard 1_6_179 permit 65000:1 0:6 0:179 ip community-list standard 1_7_178 permit 65000:1 0:7 0:178 ip community-list standard 1_8_177 permit 65000:1 0:8 0:177 ip community-list standard 1_9_176 permit 65000:1 0:9 0:176 ip community-list standard 1_10_175 permit 65000:1 0:10 0:175 ip community-list standard 1_11_174 permit 65000:1 0:11 0:174 ip community-list standard 1_12_173 permit 65000:1 0:12 0:173 ip community-list standard 1_13_172 permit 65000:1 0:13 0:172 ip community-list standard 1_14_171 permit 65000:1 0:14 0:171 ip community-list standard 1_15_170 permit 65000:1 0:15 0:170 ip community-list standard 1_16_169 permit 65000:1 0:16 0:169 ip community-list standard 1_17_168 permit 65000:1 0:17 0:168 ip community-list standard 1_18_167 permit 65000:1 0:18 0:167 ip community-list standard 1_19_166 permit 65000:1 0:19 0:166 ip community-list standard 1_20_165 permit 65000:1 0:20 0:165 ip community-list standard 1_21_164 permit 65000:1 0:21 0:164 ip community-list standard 1_22_163 permit 65000:1 0:22 0:163 ip community-list standard 1_23_162 permit 65000:1 0:23 0:162 ip community-list standard 1_24_161 permit 65000:1 0:24 0:161 ip community-list standard 1_25_160 permit 65000:1 0:25 0:160 ip community-list standard 1_26_159 permit 65000:1 0:26 0:159 ip community-list standard 1_27_158 permit 65000:1 0:27 0:158 ip community-list standard 1_28_157 permit 65000:1 0:28 0:157 ip community-list standard 1_29_156 permit 65000:1 0:29 0:156 ip community-list standard 1_30_155 permit 65000:1 0:30 0:155 ip community-list standard 1_31_154 permit 65000:1 0:31 0:154 ip community-list standard 1_32_153 permit 65000:1 0:32 0:153 ip community-list standard 1_33_152 permit 65000:1 0:33 0:152 ip community-list standard 1_34_151 permit 65000:1 0:34 0:151 ip community-list standard 1_35_150 permit 65000:1 0:35 0:150 ip community-list standard 1_36_149 permit 65000:1 0:36 0:149 ip community-list standard 1_37_148 permit 65000:1 0:37 0:148 ip community-list standard 1_38_147 permit 65000:1 0:38 0:147 ip community-list standard 1_39_146 permit 65000:1 0:39 0:146 ip community-list standard 1_40_145 permit 65000:1 0:40 0:145 ip community-list standard 1_41_144 permit 65000:1 0:41 0:144 ip community-list standard 1_42_143 permit 65000:1 0:42 0:143 ip community-list standard 1_43_142 permit 65000:1 0:43 0:142 ip community-list standard 1_44_141 permit 65000:1 0:44 0:141 ip community-list standard 1_45_140 permit 65000:1 0:45 0:140 ip community-list standard 1_46_139 permit 65000:1 0:46 0:139 ip community-list standard 1_47_138 permit 65000:1 0:47 0:138 ip community-list standard 1_48_137 permit 65000:1 0:48 0:137 ip community-list standard 1_49_136 permit 65000:1 0:49 0:136 ip community-list standard 1_50_135 permit 65000:1 0:50 0:135 ip community-list standard 1_51_134 permit 65000:1 0:51 0:134 ip community-list standard 1_52_133 permit 65000:1 0:52 0:133 ip community-list standard 1_53_132 permit 65000:1 0:53 0:132 ip community-list standard 1_54_131 permit 65000:1 0:54 0:131 ip community-list standard 1_55_130 permit 65000:1 0:55 0:130 ip community-list standard 1_56_129 permit 65000:1 0:56 0:129 ip community-list standard 1_57_128 permit 65000:1 0:57 0:128 ip community-list standard 1_58_127 permit 65000:1 0:58 0:127 ip community-list standard 1_59_126 permit 65000:1 0:59 0:126 ip community-list standard 1_60_125 permit 65000:1 0:60 0:125 ip community-list standard 1_61_124 permit 65000:1 0:61 0:124 ip community-list standard 1_62_123 permit 65000:1 0:62 0:123 ip community-list standard 1_63_122 permit 65000:1 0:63 0:122 ip community-list standard 1_64_121 permit 65000:1 0:64 0:121 ip community-list standard 1_65_120 permit 65000:1 0:65 0:120 ip community-list standard 1_66_119 permit 65000:1 0:66 0:119 ip community-list standard 1_67_118 permit 65000:1 0:67 0:118 ip community-list standard 1_68_117 permit 65000:1 0:68 0:117 ip community-list standard 1_69_116 permit 65000:1 0:69 0:116 ip community-list standard 1_70_115 permit 65000:1 0:70 0:115 ip community-list standard 1_71_114 permit 65000:1 0:71 0:114 ip community-list standard 1_72_113 permit 65000:1 0:72 0:113 ip community-list standard 1_73_112 permit 65000:1 0:73 0:112 ip community-list standard 1_74_111 permit 65000:1 0:74 0:111 ip community-list standard 1_75_110 permit 65000:1 0:75 0:110 ip community-list standard 1_76_109 permit 65000:1 0:76 0:109 ip community-list standard 1_77_108 permit 65000:1 0:77 0:108 ip community-list standard 1_78_107 permit 65000:1 0:78 0:107 ip community-list standard 1_79_106 permit 65000:1 0:79 0:106 ip community-list standard 1_80_105 permit 65000:1 0:80 0:105 ip community-list standard 1_81_104 permit 65000:1 0:81 0:104 ip community-list standard 1_82_103 permit 65000:1 0:82 0:103 ip community-list standard 1_83_102 permit 65000:1 0:83 0:102 ip community-list standard 1_84_101 permit 65000:1 0:84 0:101 ip community-list standard 1_85_100 permit 65000:1 0:85 0:100 ip community-list standard 1_86_99 permit 65000:1 0:86 0:99 ip community-list standard 1_87_98 permit 65000:1 0:87 0:98 ip community-list standard 1_88_97 permit 65000:1 0:88 0:97 ip community-list standard 1_89_96 permit 65000:1 0:89 0:96 ip community-list standard 1_90_95 permit 65000:1 0:90 0:95 ip community-list standard 1_91_94 permit 65000:1 0:91 0:94 ip community-list standard 1_92_93 permit 65000:1 0:92 0:93 ip community-list expanded c185 permit 1 ^65000:4_0:185_0:1$ ip community-list expanded c185 permit 2 ^65000:3_0:186_0:1$ ip community-list expanded c185 permit 3 ^65000:3_0:187_0:2$ ip community-list expanded c185 permit 4 ^65000:3_0:188_0:3$ ip community-list expanded c185 permit 5 ^65000:3_0:189_0:4$ ip community-list expanded c185 permit 6 ^65000:3_0:190_0:5$ ip community-list expanded c185 permit 7 ^65000:3_0:191_0:6$ ip community-list expanded c185 permit 8 ^65000:3_0:192_0:7$ ip community-list expanded c185 permit 9 ^65000:3_0:193_0:8$ ip community-list expanded c185 permit 10 ^65000:3_0:194_0:9$ ip community-list expanded c185 permit 11 ^65000:3_0:195_0:10$ ip community-list expanded c185 permit 12 ^65000:3_0:196_0:11$ ip community-list expanded c185 permit 13 ^65000:3_0:197_0:12$ ip community-list expanded c185 permit 14 ^65000:3_0:198_0:13$ ip community-list expanded c185 permit 15 ^65000:3_0:199_0:14$ ip community-list expanded c185 permit 16 ^65000:3_0:200_0:15$ ip community-list expanded c185 permit 17 ^65000:3_0:201_0:16$ ip community-list expanded c185 permit 18 ^65000:3_0:202_0:17$ ip community-list expanded c185 permit 19 ^65000:3_0:203_0:18$ ip community-list expanded c185 permit 20 ^65000:3_0:204_0:19$ ip community-list expanded c185 permit 21 ^65000:3_0:205_0:20$ ip community-list expanded c185 permit 22 ^65000:3_0:206_0:21$ ip community-list expanded c185 permit 23 ^65000:3_0:207_0:22$ ip community-list expanded c185 permit 24 ^65000:3_0:208_0:23$ ip community-list expanded c185 permit 25 ^65000:3_0:209_0:24$ ip community-list expanded c185 permit 26 ^65000:3_0:210_0:25$ ip community-list expanded c185 permit 27 ^65000:3_0:211_0:26$ ip community-list expanded c185 permit 28 ^65000:3_0:212_0:27$ ip community-list expanded c185 permit 29 ^65000:3_0:213_0:28$ ip community-list expanded c185 permit 30 ^65000:3_0:214_0:29$ ip community-list expanded c185 permit 31 ^65000:3_0:215_0:30$ ip community-list expanded c185 permit 32 ^65000:3_0:216_0:31$ ip community-list expanded c185 permit 33 ^65000:3_0:217_0:32$ ip community-list expanded c185 permit 34 ^65000:3_0:218_0:33$ ip community-list expanded c185 permit 35 ^65000:3_0:219_0:34$ ip community-list expanded c185 permit 36 ^65000:3_0:220_0:35$ ip community-list expanded c185 permit 37 ^65000:3_0:221_0:36$ ip community-list expanded c185 permit 38 ^65000:3_0:222_0:37$ ip community-list expanded c185 permit 39 ^65000:3_0:223_0:38$ ip community-list expanded c185 permit 40 ^65000:3_0:224_0:39$ ip community-list expanded c185 permit 41 ^65000:3_0:225_0:40$ ip community-list expanded c185 permit 42 ^65000:3_0:226_0:41$ ip community-list expanded c185 permit 43 ^65000:3_0:227_0:42$ ip community-list expanded c185 permit 44 ^65000:3_0:228_0:43$ ip community-list expanded c185 permit 45 ^65000:3_0:229_0:44$ ip community-list expanded c185 permit 46 ^65000:3_0:230_0:45$ ip community-list expanded c185 permit 47 ^65000:3_0:231_0:46$ ip community-list expanded c185 permit 48 ^65000:3_0:232_0:47$ ip community-list expanded c185 permit 49 ^65000:3_0:233_0:48$ ip community-list expanded c185 permit 50 ^65000:3_0:234_0:49$ ip community-list expanded c185 permit 51 ^65000:3_0:235_0:50$ ip community-list expanded c185 permit 52 ^65000:3_0:236_0:51$ ip community-list expanded c185 permit 53 ^65000:3_0:237_0:52$ ip community-list expanded c185 permit 54 ^65000:3_0:238_0:53$ ip community-list expanded c185 permit 55 ^65000:3_0:239_0:54$ ip community-list expanded c185 permit 56 ^65000:3_0:240_0:55$ ip community-list expanded c185 permit 57 ^65000:3_0:241_0:56$ ip community-list expanded c185 permit 58 ^65000:3_0:242_0:57$ ip community-list expanded c185 permit 59 ^65000:3_0:243_0:58$ ip community-list expanded c185 permit 60 ^65000:3_0:244_0:59$ ip community-list expanded c185 permit 61 ^65000:3_0:245_0:60$ ip community-list expanded c185 permit 62 ^65000:3_0:246_0:61$ ip community-list expanded c185 permit 63 ^65000:3_0:247_0:62$ ip community-list expanded c185 permit 64 ^65000:3_0:248_0:63$ ip community-list expanded c185 permit 65 ^65000:3_0:249_0:64$ ip community-list expanded c185 permit 66 ^65000:3_0:250_0:65$ ip community-list expanded c185 permit 67 ^65000:3_0:251_0:66$ ip community-list expanded c185 permit 68 ^65000:3_0:252_0:67$ ip community-list expanded c185 permit 69 ^65000:3_0:253_0:68$ ip community-list expanded c185 permit 70 ^65000:3_0:254_0:69$ ip community-list expanded c185 permit 71 ^65000:3_0:255_0:70$ ip community-list expanded c185 permit 72 ^65000:3_0:256_0:71$ route-map calculator permit 15868 match community 1_1_184 2_1_185 1_2_183 1_3_182 1_4_181 set community 0:185 route-map calculator permit 15869 match community 2_5_37 1_5_180 1_6_179 1_7_178 1_8_177 set community 0:185 route-map calculator permit 15870 match community 1_9_176 1_10_175 1_11_174 1_12_173 1_13_172 set community 0:185 route-map calculator permit 15871 match community 1_14_171 1_15_170 1_16_169 1_17_168 1_18_167 set community 0:185 route-map calculator permit 15872 match community 1_19_166 1_20_165 1_21_164 1_22_163 1_23_162 set community 0:185 route-map calculator permit 15873 match community 1_24_161 1_25_160 1_26_159 1_27_158 1_28_157 set community 0:185 route-map calculator permit 15874 match community 1_29_156 1_30_155 1_31_154 1_32_153 1_33_152 set community 0:185 route-map calculator permit 15875 match community 1_34_151 1_35_150 1_36_149 1_37_148 1_38_147 set community 0:185 route-map calculator permit 15876 match community 1_39_146 1_40_145 1_41_144 1_42_143 1_43_142 set community 0:185 route-map calculator permit 15877 match community 1_44_141 1_45_140 1_46_139 1_47_138 1_48_137 set community 0:185 route-map calculator permit 15878 match community 1_49_136 1_50_135 1_51_134 1_52_133 1_53_132 set community 0:185 route-map calculator permit 15879 match community 1_54_131 1_55_130 1_56_129 1_57_128 1_58_127 set community 0:185 route-map calculator permit 15880 match community 1_59_126 1_60_125 1_61_124 1_62_123 1_63_122 set community 0:185 route-map calculator permit 15881 match community 1_64_121 1_65_120 1_66_119 1_67_118 1_68_117 set community 0:185 route-map calculator permit 15882 match community 1_69_116 1_70_115 1_71_114 1_72_113 1_73_112 set community 0:185 route-map calculator permit 15883 match community 1_74_111 1_75_110 1_76_109 1_77_108 1_78_107 set community 0:185 route-map calculator permit 15884 match community 1_79_106 1_80_105 1_81_104 1_82_103 1_83_102 set community 0:185 route-map calculator permit 15885 match community 1_84_101 1_85_100 1_86_99 1_87_98 1_88_97 set community 0:185 route-map calculator permit 15886 match community 1_89_96 1_90_95 1_91_94 1_92_93 c4_185_1 set community 0:185 route-map calculator permit 15887 match community c3_186_1 c3_187_2 c3_188_3 c3_189_4 c3_190_5 set community 0:185 route-map calculator permit 15888 match community c3_191_6 c3_192_7 c3_193_8 c3_194_9 c3_195_10 set community 0:185 route-map calculator permit 15889 match community c3_196_11 c3_197_12 c3_198_13 c3_199_14 c3_200_15 set community 0:185 route-map calculator permit 15890 match community c3_201_16 c3_202_17 c3_203_18 c3_204_19 c3_205_20 set community 0:185 route-map calculator permit 15891 match community c3_206_21 c3_207_22 c3_208_23 c3_209_24 c3_210_25 set community 0:185 route-map calculator permit 15892 match community c3_211_26 c3_212_27 c3_213_28 c3_214_29 c3_215_30 set community 0:185 route-map calculator permit 15893 match community c3_216_31 c3_217_32 c3_218_33 c3_219_34 c3_220_35 set community 0:185 route-map calculator permit 15894 match community c3_221_36 c3_222_37 c3_223_38 c3_224_39 c3_225_40 set community 0:185 route-map calculator permit 15895 match community c3_226_41 c3_227_42 c3_228_43 c3_229_44 c3_230_45 set community 0:185 route-map calculator permit 15896 match community c3_231_46 c3_232_47 c3_233_48 c3_234_49 c3_235_50 set community 0:185 route-map calculator permit 15897 match community c3_236_51 c3_237_52 c3_238_53 c3_239_54 c3_240_55 set community 0:185 route-map calculator permit 15898 match community c3_241_56 c3_242_57 c3_243_58 c3_244_59 c3_245_60 set community 0:185 route-map calculator permit 15899 match community c3_246_61 c3_247_62 c3_248_63 c3_249_64 c3_250_65 set community 0:185 route-map calculator permit 15900 match community c3_251_66 c3_252_67 c3_253_68 c3_254_69 c3_255_70 set community 0:185 route-map calculator permit 15901 match community c3_256_71 set community 0:185 ip community-list standard 2_107_123 permit 65000:2 0:107 0:123 route-map calculator permit 15902 match community 2_107_123 set community 0:13161 ip community-list standard 2_87_188 permit 65000:2 0:87 0:188 ip community-list standard 2_94_174 permit 65000:2 0:94 0:174 ip community-list standard 2_116_141 permit 65000:2 0:116 0:141 route-map calculator permit 15903 match community 2_87_188 2_94_174 2_116_141 set community 0:16356 ip community-list standard 2_226_255 permit 65000:2 0:226 0:255 route-map calculator permit 15904 match community 2_226_255 set community 0:57630 ip community-list standard 2_39_251 permit 65000:2 0:39 0:251 route-map calculator permit 15905 match community 2_39_251 set community 0:9789 ip community-list standard 2_70_212 permit 65000:2 0:70 0:212 ip community-list standard 2_106_140 permit 65000:2 0:106 0:140 route-map calculator permit 15906 match community 2_70_212 2_106_140 set community 0:14840 ip community-list standard 2_188_198 permit 65000:2 0:188 0:198 route-map calculator permit 15907 match community 2_188_198 set community 0:37224 ip community-list standard 2_130_201 permit 65000:2 0:130 0:201 ip community-list standard 2_134_195 permit 65000:2 0:134 0:195 route-map calculator permit 15908 match community 2_130_201 2_134_195 set community 0:26130 ip community-list standard 2_150_199 permit 65000:2 0:150 0:199 route-map calculator permit 15909 match community 2_150_199 set community 0:29850 ip community-list standard 2_115_234 permit 65000:2 0:115 0:234 ip community-list standard 2_117_230 permit 65000:2 0:117 0:230 ip community-list standard 2_130_207 permit 65000:2 0:130 0:207 ip community-list standard 2_138_195 permit 65000:2 0:138 0:195 route-map calculator permit 15910 match community 2_115_234 2_117_230 2_130_207 2_138_195 set community 0:26910 ip community-list standard 2_144_228 permit 65000:2 0:144 0:228 ip community-list standard 2_152_216 permit 65000:2 0:152 0:216 ip community-list standard 2_171_192 permit 65000:2 0:171 0:192 route-map calculator permit 15911 match community 2_144_228 2_152_216 2_171_192 set community 0:32832 ip community-list standard 2_47_147 permit 65000:2 0:47 0:147 ip community-list standard 2_49_141 permit 65000:2 0:49 0:141 route-map calculator permit 15912 match community 2_47_147 2_49_141 set community 0:6909 ip community-list standard 2_77_193 permit 65000:2 0:77 0:193 route-map calculator permit 15913 match community 2_77_193 set community 0:14861 ip community-list standard 2_96_243 permit 65000:2 0:96 0:243 ip community-list standard 2_108_216 permit 65000:2 0:108 0:216 ip community-list standard 2_144_162 permit 65000:2 0:144 0:162 route-map calculator permit 15914 match community 2_96_243 2_108_216 2_144_162 set community 0:23328 ip community-list standard 2_29_254 permit 65000:2 0:29 0:254 ip community-list standard 2_58_127 permit 65000:2 0:58 0:127 route-map calculator permit 15915 match community 2_29_254 2_58_127 set community 0:7366 ip community-list standard 2_215_249 permit 65000:2 0:215 0:249 route-map calculator permit 15916 match community 2_215_249 set community 0:53535 ip community-list standard 2_95_243 permit 65000:2 0:95 0:243 ip community-list standard 2_135_171 permit 65000:2 0:135 0:171 route-map calculator permit 15917 match community 2_95_243 2_135_171 set community 0:23085 ip community-list standard 2_151_243 permit 65000:2 0:151 0:243 route-map calculator permit 15918 match community 2_151_243 set community 0:36693 ip community-list standard 2_174_214 permit 65000:2 0:174 0:214 route-map calculator permit 15919 match community 2_174_214 set community 0:37236 ip community-list standard 2_201_222 permit 65000:2 0:201 0:222 route-map calculator permit 15920 match community 2_201_222 set community 0:44622 ip community-list standard 2_169_182 permit 65000:2 0:169 0:182 route-map calculator permit 15921 match community 2_169_182 set community 0:30758 ip community-list standard 2_2_149 permit 65000:2 0:2 0:149 ip community-list standard 1_42_256 permit 65000:1 0:42 0:256 ip community-list standard 1_43_255 permit 65000:1 0:43 0:255 ip community-list standard 1_44_254 permit 65000:1 0:44 0:254 ip community-list standard 1_45_253 permit 65000:1 0:45 0:253 ip community-list standard 1_46_252 permit 65000:1 0:46 0:252 ip community-list standard 1_47_251 permit 65000:1 0:47 0:251 ip community-list standard 1_48_250 permit 65000:1 0:48 0:250 ip community-list standard 1_49_249 permit 65000:1 0:49 0:249 ip community-list standard 1_50_248 permit 65000:1 0:50 0:248 ip community-list standard 1_51_247 permit 65000:1 0:51 0:247 ip community-list standard 1_52_246 permit 65000:1 0:52 0:246 ip community-list standard 1_53_245 permit 65000:1 0:53 0:245 ip community-list standard 1_54_244 permit 65000:1 0:54 0:244 ip community-list standard 1_55_243 permit 65000:1 0:55 0:243 ip community-list standard 1_56_242 permit 65000:1 0:56 0:242 ip community-list standard 1_57_241 permit 65000:1 0:57 0:241 ip community-list standard 1_58_240 permit 65000:1 0:58 0:240 ip community-list standard 1_59_239 permit 65000:1 0:59 0:239 ip community-list standard 1_60_238 permit 65000:1 0:60 0:238 ip community-list standard 1_61_237 permit 65000:1 0:61 0:237 ip community-list standard 1_62_236 permit 65000:1 0:62 0:236 ip community-list standard 1_63_235 permit 65000:1 0:63 0:235 ip community-list standard 1_64_234 permit 65000:1 0:64 0:234 ip community-list standard 1_65_233 permit 65000:1 0:65 0:233 ip community-list standard 1_66_232 permit 65000:1 0:66 0:232 ip community-list standard 1_67_231 permit 65000:1 0:67 0:231 ip community-list standard 1_68_230 permit 65000:1 0:68 0:230 ip community-list standard 1_69_229 permit 65000:1 0:69 0:229 ip community-list standard 1_70_228 permit 65000:1 0:70 0:228 ip community-list standard 1_71_227 permit 65000:1 0:71 0:227 ip community-list standard 1_72_226 permit 65000:1 0:72 0:226 ip community-list standard 1_73_225 permit 65000:1 0:73 0:225 ip community-list standard 1_74_224 permit 65000:1 0:74 0:224 ip community-list standard 1_75_223 permit 65000:1 0:75 0:223 ip community-list standard 1_76_222 permit 65000:1 0:76 0:222 ip community-list standard 1_77_221 permit 65000:1 0:77 0:221 ip community-list standard 1_78_220 permit 65000:1 0:78 0:220 ip community-list standard 1_79_219 permit 65000:1 0:79 0:219 ip community-list standard 1_80_218 permit 65000:1 0:80 0:218 ip community-list standard 1_81_217 permit 65000:1 0:81 0:217 ip community-list standard 1_82_216 permit 65000:1 0:82 0:216 ip community-list standard 1_83_215 permit 65000:1 0:83 0:215 ip community-list standard 1_84_214 permit 65000:1 0:84 0:214 ip community-list standard 1_85_213 permit 65000:1 0:85 0:213 ip community-list standard 1_86_212 permit 65000:1 0:86 0:212 ip community-list standard 1_87_211 permit 65000:1 0:87 0:211 ip community-list standard 1_88_210 permit 65000:1 0:88 0:210 ip community-list standard 1_89_209 permit 65000:1 0:89 0:209 ip community-list standard 1_90_208 permit 65000:1 0:90 0:208 ip community-list standard 1_91_207 permit 65000:1 0:91 0:207 ip community-list standard 1_92_206 permit 65000:1 0:92 0:206 ip community-list standard 1_93_205 permit 65000:1 0:93 0:205 ip community-list standard 1_94_204 permit 65000:1 0:94 0:204 ip community-list standard 1_95_203 permit 65000:1 0:95 0:203 ip community-list standard 1_96_202 permit 65000:1 0:96 0:202 ip community-list standard 1_97_201 permit 65000:1 0:97 0:201 ip community-list standard 1_98_200 permit 65000:1 0:98 0:200 ip community-list standard 1_99_199 permit 65000:1 0:99 0:199 ip community-list standard 1_100_198 permit 65000:1 0:100 0:198 ip community-list standard 1_101_197 permit 65000:1 0:101 0:197 ip community-list standard 1_102_196 permit 65000:1 0:102 0:196 ip community-list standard 1_103_195 permit 65000:1 0:103 0:195 ip community-list standard 1_104_194 permit 65000:1 0:104 0:194 ip community-list standard 1_105_193 permit 65000:1 0:105 0:193 ip community-list standard 1_106_192 permit 65000:1 0:106 0:192 ip community-list standard 1_107_191 permit 65000:1 0:107 0:191 ip community-list standard 1_108_190 permit 65000:1 0:108 0:190 ip community-list standard 1_109_189 permit 65000:1 0:109 0:189 ip community-list standard 1_110_188 permit 65000:1 0:110 0:188 ip community-list standard 1_111_187 permit 65000:1 0:111 0:187 ip community-list standard 1_112_186 permit 65000:1 0:112 0:186 ip community-list standard 1_113_185 permit 65000:1 0:113 0:185 ip community-list standard 1_114_184 permit 65000:1 0:114 0:184 ip community-list standard 1_115_183 permit 65000:1 0:115 0:183 ip community-list standard 1_116_182 permit 65000:1 0:116 0:182 ip community-list standard 1_117_181 permit 65000:1 0:117 0:181 ip community-list standard 1_118_180 permit 65000:1 0:118 0:180 ip community-list standard 1_119_179 permit 65000:1 0:119 0:179 ip community-list standard 1_120_178 permit 65000:1 0:120 0:178 ip community-list standard 1_121_177 permit 65000:1 0:121 0:177 ip community-list standard 1_122_176 permit 65000:1 0:122 0:176 ip community-list standard 1_123_175 permit 65000:1 0:123 0:175 ip community-list standard 1_124_174 permit 65000:1 0:124 0:174 ip community-list standard 1_125_173 permit 65000:1 0:125 0:173 ip community-list standard 1_126_172 permit 65000:1 0:126 0:172 ip community-list standard 1_127_171 permit 65000:1 0:127 0:171 ip community-list standard 1_128_170 permit 65000:1 0:128 0:170 ip community-list standard 1_129_169 permit 65000:1 0:129 0:169 ip community-list standard 1_130_168 permit 65000:1 0:130 0:168 ip community-list standard 1_131_167 permit 65000:1 0:131 0:167 ip community-list standard 1_132_166 permit 65000:1 0:132 0:166 ip community-list standard 1_133_165 permit 65000:1 0:133 0:165 ip community-list standard 1_134_164 permit 65000:1 0:134 0:164 ip community-list standard 1_135_163 permit 65000:1 0:135 0:163 ip community-list standard 1_136_162 permit 65000:1 0:136 0:162 ip community-list standard 1_137_161 permit 65000:1 0:137 0:161 ip community-list standard 1_138_160 permit 65000:1 0:138 0:160 ip community-list standard 1_139_159 permit 65000:1 0:139 0:159 ip community-list standard 1_140_158 permit 65000:1 0:140 0:158 ip community-list standard 1_141_157 permit 65000:1 0:141 0:157 ip community-list standard 1_142_156 permit 65000:1 0:142 0:156 ip community-list standard 1_143_155 permit 65000:1 0:143 0:155 ip community-list standard 1_144_154 permit 65000:1 0:144 0:154 ip community-list standard 1_145_153 permit 65000:1 0:145 0:153 ip community-list standard 1_146_152 permit 65000:1 0:146 0:152 ip community-list standard 1_147_151 permit 65000:1 0:147 0:151 ip community-list standard 1_148_150 permit 65000:1 0:148 0:150 ip community-list standard 1_149_149 permit 65000:1 0:149 0:149 route-map calculator permit 15922 match community 2_2_149 1_42_256 1_43_255 1_44_254 1_45_253 set community 0:298 route-map calculator permit 15923 match community 1_46_252 1_47_251 1_48_250 1_49_249 1_50_248 set community 0:298 route-map calculator permit 15924 match community 1_51_247 1_52_246 1_53_245 1_54_244 1_55_243 set community 0:298 route-map calculator permit 15925 match community 1_56_242 1_57_241 1_58_240 1_59_239 1_60_238 set community 0:298 route-map calculator permit 15926 match community 1_61_237 1_62_236 1_63_235 1_64_234 1_65_233 set community 0:298 route-map calculator permit 15927 match community 1_66_232 1_67_231 1_68_230 1_69_229 1_70_228 set community 0:298 route-map calculator permit 15928 match community 1_71_227 1_72_226 1_73_225 1_74_224 1_75_223 set community 0:298 route-map calculator permit 15929 match community 1_76_222 1_77_221 1_78_220 1_79_219 1_80_218 set community 0:298 route-map calculator permit 15930 match community 1_81_217 1_82_216 1_83_215 1_84_214 1_85_213 set community 0:298 route-map calculator permit 15931 match community 1_86_212 1_87_211 1_88_210 1_89_209 1_90_208 set community 0:298 route-map calculator permit 15932 match community 1_91_207 1_92_206 1_93_205 1_94_204 1_95_203 set community 0:298 route-map calculator permit 15933 match community 1_96_202 1_97_201 1_98_200 1_99_199 1_100_198 set community 0:298 route-map calculator permit 15934 match community 1_101_197 1_102_196 1_103_195 1_104_194 1_105_193 set community 0:298 route-map calculator permit 15935 match community 1_106_192 1_107_191 1_108_190 1_109_189 1_110_188 set community 0:298 route-map calculator permit 15936 match community 1_111_187 1_112_186 1_113_185 1_114_184 1_115_183 set community 0:298 route-map calculator permit 15937 match community 1_116_182 1_117_181 1_118_180 1_119_179 1_120_178 set community 0:298 route-map calculator permit 15938 match community 1_121_177 1_122_176 1_123_175 1_124_174 1_125_173 set community 0:298 route-map calculator permit 15939 match community 1_126_172 1_127_171 1_128_170 1_129_169 1_130_168 set community 0:298 route-map calculator permit 15940 match community 1_131_167 1_132_166 1_133_165 1_134_164 1_135_163 set community 0:298 route-map calculator permit 15941 match community 1_136_162 1_137_161 1_138_160 1_139_159 1_140_158 set community 0:298 route-map calculator permit 15942 match community 1_141_157 1_142_156 1_143_155 1_144_154 1_145_153 set community 0:298 route-map calculator permit 15943 match community 1_146_152 1_147_151 1_148_150 1_149_149 set community 0:298 ip community-list standard 2_43_254 permit 65000:2 0:43 0:254 ip community-list standard 2_86_127 permit 65000:2 0:86 0:127 route-map calculator permit 15944 match community 2_43_254 2_86_127 set community 0:10922 ip community-list standard 2_73_115 permit 65000:2 0:73 0:115 route-map calculator permit 15945 match community 2_73_115 set community 0:8395 ip community-list standard 2_99_225 permit 65000:2 0:99 0:225 ip community-list standard 2_135_165 permit 65000:2 0:135 0:165 route-map calculator permit 15946 match community 2_99_225 2_135_165 set community 0:22275 ip community-list standard 2_99_143 permit 65000:2 0:99 0:143 ip community-list standard 2_117_121 permit 65000:2 0:117 0:121 route-map calculator permit 15947 match community 2_99_143 2_117_121 set community 0:14157 ip community-list standard 2_173_252 permit 65000:2 0:173 0:252 route-map calculator permit 15948 match community 2_173_252 set community 0:43596 ip community-list standard 2_26_131 permit 65000:2 0:26 0:131 route-map calculator permit 15949 match community 2_26_131 set community 0:3406 ip community-list standard 2_43_138 permit 65000:2 0:43 0:138 ip community-list standard 2_46_129 permit 65000:2 0:46 0:129 ip community-list standard 2_69_86 permit 65000:2 0:69 0:86 route-map calculator permit 15950 match community 2_43_138 2_46_129 2_69_86 set community 0:5934 ip community-list standard 2_25_165 permit 65000:2 0:25 0:165 ip community-list standard 2_33_125 permit 65000:2 0:33 0:125 ip community-list standard 2_55_75 permit 65000:2 0:55 0:75 route-map calculator permit 15951 match community 2_25_165 2_33_125 2_55_75 set community 0:4125 ip community-list standard 2_22_183 permit 65000:2 0:22 0:183 ip community-list standard 2_33_122 permit 65000:2 0:33 0:122 ip community-list standard 2_61_66 permit 65000:2 0:61 0:66 route-map calculator permit 15952 match community 2_22_183 2_33_122 2_61_66 set community 0:4026 ip community-list standard 2_173_226 permit 65000:2 0:173 0:226 route-map calculator permit 15953 match community 2_173_226 set community 0:39098 ip community-list standard 2_12_238 permit 65000:2 0:12 0:238 ip community-list standard 2_14_204 permit 65000:2 0:14 0:204 ip community-list standard 2_17_168 permit 65000:2 0:17 0:168 ip community-list standard 2_21_136 permit 65000:2 0:21 0:136 ip community-list standard 2_24_119 permit 65000:2 0:24 0:119 ip community-list standard 2_28_102 permit 65000:2 0:28 0:102 ip community-list standard 2_34_84 permit 65000:2 0:34 0:84 ip community-list standard 2_42_68 permit 65000:2 0:42 0:68 ip community-list standard 2_51_56 permit 65000:2 0:51 0:56 route-map calculator permit 15954 match community 2_12_238 2_14_204 2_17_168 2_21_136 2_24_119 set community 0:2856 route-map calculator permit 15955 match community 2_28_102 2_34_84 2_42_68 2_51_56 set community 0:2856 ip community-list standard 2_200_248 permit 65000:2 0:200 0:248 route-map calculator permit 15956 match community 2_200_248 set community 0:49600 ip community-list standard 2_19_83 permit 65000:2 0:19 0:83 route-map calculator permit 15957 match community 2_19_83 set community 0:1577 ip community-list standard 2_78_193 permit 65000:2 0:78 0:193 route-map calculator permit 15958 match community 2_78_193 set community 0:15054 ip community-list standard 2_91_173 permit 65000:2 0:91 0:173 route-map calculator permit 15959 match community 2_91_173 set community 0:15743 ip community-list standard 2_107_224 permit 65000:2 0:107 0:224 ip community-list standard 2_112_214 permit 65000:2 0:112 0:214 route-map calculator permit 15960 match community 2_107_224 2_112_214 set community 0:23968 ip community-list standard 2_156_236 permit 65000:2 0:156 0:236 ip community-list standard 2_177_208 permit 65000:2 0:177 0:208 route-map calculator permit 15961 match community 2_156_236 2_177_208 set community 0:36816 ip community-list standard 2_70_245 permit 65000:2 0:70 0:245 ip community-list standard 2_98_175 permit 65000:2 0:98 0:175 route-map calculator permit 15962 match community 2_70_245 2_98_175 set community 0:17150 ip community-list standard 2_144_167 permit 65000:2 0:144 0:167 route-map calculator permit 15963 match community 2_144_167 set community 0:24048 ip community-list standard 2_100_256 permit 65000:2 0:100 0:256 ip community-list standard 2_128_200 permit 65000:2 0:128 0:200 ip community-list standard 2_160_160 permit 65000:2 0:160 0:160 route-map calculator permit 15964 match community 2_100_256 2_128_200 2_160_160 set community 0:25600 ip community-list standard 2_116_199 permit 65000:2 0:116 0:199 route-map calculator permit 15965 match community 2_116_199 set community 0:23084 ip community-list standard 2_145_253 permit 65000:2 0:145 0:253 route-map calculator permit 15966 match community 2_145_253 set community 0:36685 ip community-list standard 2_58_203 permit 65000:2 0:58 0:203 route-map calculator permit 15967 match community 2_58_203 set community 0:11774 ip community-list standard 2_86_245 permit 65000:2 0:86 0:245 ip community-list standard 2_98_215 permit 65000:2 0:98 0:215 route-map calculator permit 15968 match community 2_86_245 2_98_215 set community 0:21070 ip community-list standard 2_154_205 permit 65000:2 0:154 0:205 route-map calculator permit 15969 match community 2_154_205 set community 0:31570 ip community-list standard 2_133_240 permit 65000:2 0:133 0:240 ip community-list standard 2_140_228 permit 65000:2 0:140 0:228 ip community-list standard 2_152_210 permit 65000:2 0:152 0:210 ip community-list standard 2_168_190 permit 65000:2 0:168 0:190 route-map calculator permit 15970 match community 2_133_240 2_140_228 2_152_210 2_168_190 set community 0:31920 ip community-list standard 2_133_219 permit 65000:2 0:133 0:219 route-map calculator permit 15971 match community 2_133_219 set community 0:29127 ip community-list standard 2_148_242 permit 65000:2 0:148 0:242 route-map calculator permit 15972 match community 2_148_242 set community 0:35816 ip community-list standard 2_165_178 permit 65000:2 0:165 0:178 route-map calculator permit 15973 match community 2_165_178 set community 0:29370 ip community-list standard 2_143_199 permit 65000:2 0:143 0:199 route-map calculator permit 15974 match community 2_143_199 set community 0:28457 ip community-list standard 2_29_31 permit 65000:2 0:29 0:31 route-map calculator permit 15975 match community 2_29_31 set community 0:899 ip community-list standard 2_28_256 permit 65000:2 0:28 0:256 ip community-list standard 2_32_224 permit 65000:2 0:32 0:224 ip community-list standard 2_56_128 permit 65000:2 0:56 0:128 ip community-list standard 2_64_112 permit 65000:2 0:64 0:112 route-map calculator permit 15976 match community 2_28_256 2_32_224 2_56_128 2_64_112 set community 0:7168 ip community-list standard 2_156_227 permit 65000:2 0:156 0:227 route-map calculator permit 15977 match community 2_156_227 set community 0:35412 ip community-list standard 2_115_195 permit 65000:2 0:115 0:195 route-map calculator permit 15978 match community 2_115_195 set community 0:22425 ip community-list standard 2_196_255 permit 65000:2 0:196 0:255 ip community-list standard 2_204_245 permit 65000:2 0:204 0:245 ip community-list standard 2_210_238 permit 65000:2 0:210 0:238 route-map calculator permit 15979 match community 2_196_255 2_204_245 2_210_238 set community 0:49980 ip community-list standard 2_137_163 permit 65000:2 0:137 0:163 route-map calculator permit 15980 match community 2_137_163 set community 0:22331 ip community-list standard 2_101_141 permit 65000:2 0:101 0:141 route-map calculator permit 15981 match community 2_101_141 set community 0:14241 ip community-list standard 2_132_202 permit 65000:2 0:132 0:202 route-map calculator permit 15982 match community 2_132_202 set community 0:26664 ip community-list standard 2_107_201 permit 65000:2 0:107 0:201 route-map calculator permit 15983 match community 2_107_201 set community 0:21507 ip community-list standard 2_8_207 permit 65000:2 0:8 0:207 ip community-list standard 2_9_184 permit 65000:2 0:9 0:184 ip community-list standard 2_12_138 permit 65000:2 0:12 0:138 ip community-list standard 2_18_92 permit 65000:2 0:18 0:92 ip community-list standard 2_23_72 permit 65000:2 0:23 0:72 ip community-list standard 2_24_69 permit 65000:2 0:24 0:69 ip community-list standard 2_36_46 permit 65000:2 0:36 0:46 route-map calculator permit 15984 match community 2_8_207 2_9_184 2_12_138 2_18_92 2_23_72 set community 0:1656 route-map calculator permit 15985 match community 2_24_69 2_36_46 set community 0:1656 ip community-list standard 2_87_195 permit 65000:2 0:87 0:195 ip community-list standard 2_117_145 permit 65000:2 0:117 0:145 route-map calculator permit 15986 match community 2_87_195 2_117_145 set community 0:16965 ip community-list standard 2_75_157 permit 65000:2 0:75 0:157 route-map calculator permit 15987 match community 2_75_157 set community 0:11775 ip community-list standard 2_172_178 permit 65000:2 0:172 0:178 route-map calculator permit 15988 match community 2_172_178 set community 0:30616 ip community-list standard 2_148_246 permit 65000:2 0:148 0:246 ip community-list standard 2_164_222 permit 65000:2 0:164 0:222 route-map calculator permit 15989 match community 2_148_246 2_164_222 set community 0:36408 ip community-list standard 2_104_237 permit 65000:2 0:104 0:237 ip community-list standard 2_156_158 permit 65000:2 0:156 0:158 route-map calculator permit 15990 match community 2_104_237 2_156_158 set community 0:24648 ip community-list standard 2_122_235 permit 65000:2 0:122 0:235 route-map calculator permit 15991 match community 2_122_235 set community 0:28670 ip community-list standard 2_58_222 permit 65000:2 0:58 0:222 ip community-list standard 2_74_174 permit 65000:2 0:74 0:174 ip community-list standard 2_87_148 permit 65000:2 0:87 0:148 ip community-list standard 2_111_116 permit 65000:2 0:111 0:116 route-map calculator permit 15992 match community 2_58_222 2_74_174 2_87_148 2_111_116 set community 0:12876 ip community-list standard 2_137_175 permit 65000:2 0:137 0:175 route-map calculator permit 15993 match community 2_137_175 set community 0:23975 ip community-list standard 2_113_215 permit 65000:2 0:113 0:215 route-map calculator permit 15994 match community 2_113_215 set community 0:24295 ip community-list standard 2_141_228 permit 65000:2 0:141 0:228 ip community-list standard 2_171_188 permit 65000:2 0:171 0:188 route-map calculator permit 15995 match community 2_141_228 2_171_188 set community 0:32148 ip community-list standard 2_179_199 permit 65000:2 0:179 0:199 route-map calculator permit 15996 match community 2_179_199 set community 0:35621 ip community-list standard 2_125_209 permit 65000:2 0:125 0:209 route-map calculator permit 15997 match community 2_125_209 set community 0:26125 ip community-list standard 2_118_241 permit 65000:2 0:118 0:241 route-map calculator permit 15998 match community 2_118_241 set community 0:28438 ip community-list standard 2_228_243 permit 65000:2 0:228 0:243 route-map calculator permit 15999 match community 2_228_243 set community 0:55404 ip community-list standard 2_88_234 permit 65000:2 0:88 0:234 ip community-list standard 2_99_208 permit 65000:2 0:99 0:208 ip community-list standard 2_104_198 permit 65000:2 0:104 0:198 ip community-list standard 2_117_176 permit 65000:2 0:117 0:176 ip community-list standard 2_132_156 permit 65000:2 0:132 0:156 ip community-list standard 2_143_144 permit 65000:2 0:143 0:144 route-map calculator permit 16000 match community 2_88_234 2_99_208 2_104_198 2_117_176 2_132_156 set community 0:20592 route-map calculator permit 16001 match community 2_143_144 set community 0:20592 ip community-list standard 2_67_146 permit 65000:2 0:67 0:146 ip community-list standard 2_73_134 permit 65000:2 0:73 0:134 route-map calculator permit 16002 match community 2_67_146 2_73_134 set community 0:9782 ip community-list standard 2_165_249 permit 65000:2 0:165 0:249 route-map calculator permit 16003 match community 2_165_249 set community 0:41085 ip community-list standard 2_169_205 permit 65000:2 0:169 0:205 route-map calculator permit 16004 match community 2_169_205 set community 0:34645 ip community-list standard 2_30_202 permit 65000:2 0:30 0:202 ip community-list standard 2_60_101 permit 65000:2 0:60 0:101 route-map calculator permit 16005 match community 2_30_202 2_60_101 set community 0:6060 ip community-list standard 2_110_242 permit 65000:2 0:110 0:242 ip community-list standard 2_121_220 permit 65000:2 0:121 0:220 route-map calculator permit 16006 match community 2_110_242 2_121_220 set community 0:26620 ip community-list standard 2_199_204 permit 65000:2 0:199 0:204 route-map calculator permit 16007 match community 2_199_204 set community 0:40596 ip community-list standard 2_79_239 permit 65000:2 0:79 0:239 route-map calculator permit 16008 match community 2_79_239 set community 0:18881 ip community-list standard 2_41_236 permit 65000:2 0:41 0:236 ip community-list standard 2_59_164 permit 65000:2 0:59 0:164 ip community-list standard 2_82_118 permit 65000:2 0:82 0:118 route-map calculator permit 16009 match community 2_41_236 2_59_164 2_82_118 set community 0:9676 ip community-list standard 2_145_149 permit 65000:2 0:145 0:149 route-map calculator permit 16010 match community 2_145_149 set community 0:21605 ip community-list standard 2_227_236 permit 65000:2 0:227 0:236 route-map calculator permit 16011 match community 2_227_236 set community 0:53572 ip community-list standard 2_17_188 permit 65000:2 0:17 0:188 ip community-list standard 2_34_94 permit 65000:2 0:34 0:94 ip community-list standard 2_47_68 permit 65000:2 0:47 0:68 route-map calculator permit 16012 match community 2_17_188 2_34_94 2_47_68 set community 0:3196 ip community-list standard 2_189_213 permit 65000:2 0:189 0:213 route-map calculator permit 16013 match community 2_189_213 set community 0:40257 ip community-list standard 2_106_241 permit 65000:2 0:106 0:241 route-map calculator permit 16014 match community 2_106_241 set community 0:25546 ip community-list standard 2_84_139 permit 65000:2 0:84 0:139 route-map calculator permit 16015 match community 2_84_139 set community 0:11676 ip community-list standard 2_17_248 permit 65000:2 0:17 0:248 ip community-list standard 2_31_136 permit 65000:2 0:31 0:136 ip community-list standard 2_34_124 permit 65000:2 0:34 0:124 ip community-list standard 2_62_68 permit 65000:2 0:62 0:68 route-map calculator permit 16016 match community 2_17_248 2_31_136 2_34_124 2_62_68 set community 0:4216 ip community-list standard 2_68_139 permit 65000:2 0:68 0:139 route-map calculator permit 16017 match community 2_68_139 set community 0:9452 ip community-list standard 2_73_202 permit 65000:2 0:73 0:202 ip community-list standard 2_101_146 permit 65000:2 0:101 0:146 route-map calculator permit 16018 match community 2_73_202 2_101_146 set community 0:14746 ip community-list standard 2_135_239 permit 65000:2 0:135 0:239 route-map calculator permit 16019 match community 2_135_239 set community 0:32265 ip community-list standard 2_27_87 permit 65000:2 0:27 0:87 ip community-list standard 2_29_81 permit 65000:2 0:29 0:81 route-map calculator permit 16020 match community 2_27_87 2_29_81 set community 0:2349 ip community-list standard 2_203_256 permit 65000:2 0:203 0:256 ip community-list standard 2_224_232 permit 65000:2 0:224 0:232 route-map calculator permit 16021 match community 2_203_256 2_224_232 set community 0:51968 ip community-list standard 2_112_149 permit 65000:2 0:112 0:149 route-map calculator permit 16022 match community 2_112_149 set community 0:16688 ip community-list standard 2_237_248 permit 65000:2 0:237 0:248 route-map calculator permit 16023 match community 2_237_248 set community 0:58776 ip community-list standard 2_184_241 permit 65000:2 0:184 0:241 route-map calculator permit 16024 match community 2_184_241 set community 0:44344 ip community-list standard 2_167_176 permit 65000:2 0:167 0:176 route-map calculator permit 16025 match community 2_167_176 set community 0:29392 ip community-list standard 2_64_142 permit 65000:2 0:64 0:142 ip community-list standard 2_71_128 permit 65000:2 0:71 0:128 route-map calculator permit 16026 match community 2_64_142 2_71_128 set community 0:9088 ip community-list standard 2_166_253 permit 65000:2 0:166 0:253 route-map calculator permit 16027 match community 2_166_253 set community 0:41998 ip community-list standard 2_225_229 permit 65000:2 0:225 0:229 route-map calculator permit 16028 match community 2_225_229 set community 0:51525 ip community-list standard 2_178_240 permit 65000:2 0:178 0:240 route-map calculator permit 16029 match community 2_178_240 set community 0:42720 ip community-list standard 2_146_232 permit 65000:2 0:146 0:232 route-map calculator permit 16030 match community 2_146_232 set community 0:33872 ip community-list standard 2_13_37 permit 65000:2 0:13 0:37 ip community-list standard 1_225_256 permit 65000:1 0:225 0:256 ip community-list standard 1_226_255 permit 65000:1 0:226 0:255 ip community-list standard 1_227_254 permit 65000:1 0:227 0:254 ip community-list standard 1_228_253 permit 65000:1 0:228 0:253 ip community-list standard 1_229_252 permit 65000:1 0:229 0:252 ip community-list standard 1_230_251 permit 65000:1 0:230 0:251 ip community-list standard 1_231_250 permit 65000:1 0:231 0:250 ip community-list standard 1_232_249 permit 65000:1 0:232 0:249 ip community-list standard 1_233_248 permit 65000:1 0:233 0:248 ip community-list standard 1_234_247 permit 65000:1 0:234 0:247 ip community-list standard 1_235_246 permit 65000:1 0:235 0:246 ip community-list standard 1_236_245 permit 65000:1 0:236 0:245 ip community-list standard 1_237_244 permit 65000:1 0:237 0:244 ip community-list standard 1_238_243 permit 65000:1 0:238 0:243 ip community-list standard 1_239_242 permit 65000:1 0:239 0:242 ip community-list standard 1_240_241 permit 65000:1 0:240 0:241 route-map calculator permit 16031 match community 2_13_37 1_225_256 1_226_255 1_227_254 1_228_253 set community 0:481 route-map calculator permit 16032 match community 1_229_252 1_230_251 1_231_250 1_232_249 1_233_248 set community 0:481 route-map calculator permit 16033 match community 1_234_247 1_235_246 1_236_245 1_237_244 1_238_243 set community 0:481 route-map calculator permit 16034 match community 1_239_242 1_240_241 set community 0:481 ip community-list standard 2_89_216 permit 65000:2 0:89 0:216 ip community-list standard 2_108_178 permit 65000:2 0:108 0:178 route-map calculator permit 16035 match community 2_89_216 2_108_178 set community 0:19224 ip community-list standard 2_145_227 permit 65000:2 0:145 0:227 route-map calculator permit 16036 match community 2_145_227 set community 0:32915 ip community-list standard 2_61_182 permit 65000:2 0:61 0:182 ip community-list standard 2_91_122 permit 65000:2 0:91 0:122 route-map calculator permit 16037 match community 2_61_182 2_91_122 set community 0:11102 ip community-list standard 2_66_251 permit 65000:2 0:66 0:251 route-map calculator permit 16038 match community 2_66_251 set community 0:16566 ip community-list standard 2_187_231 permit 65000:2 0:187 0:231 route-map calculator permit 16039 match community 2_187_231 set community 0:43197 ip community-list standard 2_74_151 permit 65000:2 0:74 0:151 route-map calculator permit 16040 match community 2_74_151 set community 0:11174 ip community-list standard 2_211_219 permit 65000:2 0:211 0:219 route-map calculator permit 16041 match community 2_211_219 set community 0:46209 ip community-list standard 2_33_151 permit 65000:2 0:33 0:151 route-map calculator permit 16042 match community 2_33_151 set community 0:4983 ip community-list standard 2_38_201 permit 65000:2 0:38 0:201 ip community-list standard 2_57_134 permit 65000:2 0:57 0:134 ip community-list standard 2_67_114 permit 65000:2 0:67 0:114 route-map calculator permit 16043 match community 2_38_201 2_57_134 2_67_114 set community 0:7638 ip community-list standard 2_43_143 permit 65000:2 0:43 0:143 route-map calculator permit 16044 match community 2_43_143 set community 0:6149 ip community-list standard 2_204_248 permit 65000:2 0:204 0:248 route-map calculator permit 16045 match community 2_204_248 set community 0:50592 ip community-list standard 2_76_137 permit 65000:2 0:76 0:137 route-map calculator permit 16046 match community 2_76_137 set community 0:10412 ip community-list standard 2_47_250 permit 65000:2 0:47 0:250 ip community-list standard 2_50_235 permit 65000:2 0:50 0:235 ip community-list standard 2_94_125 permit 65000:2 0:94 0:125 route-map calculator permit 16047 match community 2_47_250 2_50_235 2_94_125 set community 0:11750 ip community-list standard 2_163_193 permit 65000:2 0:163 0:193 route-map calculator permit 16048 match community 2_163_193 set community 0:31459 ip community-list standard 2_102_213 permit 65000:2 0:102 0:213 ip community-list standard 2_142_153 permit 65000:2 0:142 0:153 route-map calculator permit 16049 match community 2_102_213 2_142_153 set community 0:21726 ip community-list standard 2_185_213 permit 65000:2 0:185 0:213 route-map calculator permit 16050 match community 2_185_213 set community 0:39405 ip community-list standard 2_156_251 permit 65000:2 0:156 0:251 route-map calculator permit 16051 match community 2_156_251 set community 0:39156 ip community-list standard 2_61_202 permit 65000:2 0:61 0:202 ip community-list standard 2_101_122 permit 65000:2 0:101 0:122 route-map calculator permit 16052 match community 2_61_202 2_101_122 set community 0:12322 ip community-list standard 2_6_217 permit 65000:2 0:6 0:217 ip community-list standard 2_7_186 permit 65000:2 0:7 0:186 ip community-list standard 2_14_93 permit 65000:2 0:14 0:93 ip community-list standard 2_21_62 permit 65000:2 0:21 0:62 ip community-list standard 2_31_42 permit 65000:2 0:31 0:42 route-map calculator permit 16053 match community 2_6_217 2_7_186 2_14_93 2_21_62 2_31_42 set community 0:1302 ip community-list standard 2_102_236 permit 65000:2 0:102 0:236 ip community-list standard 2_118_204 permit 65000:2 0:118 0:204 ip community-list standard 2_136_177 permit 65000:2 0:136 0:177 route-map calculator permit 16054 match community 2_102_236 2_118_204 2_136_177 set community 0:24072 ip community-list standard 2_129_206 permit 65000:2 0:129 0:206 route-map calculator permit 16055 match community 2_129_206 set community 0:26574 ip community-list standard 2_9_213 permit 65000:2 0:9 0:213 ip community-list standard 2_27_71 permit 65000:2 0:27 0:71 route-map calculator permit 16056 match community 2_9_213 2_27_71 set community 0:1917 ip community-list standard 2_8_220 permit 65000:2 0:8 0:220 ip community-list standard 2_10_176 permit 65000:2 0:10 0:176 ip community-list standard 2_11_160 permit 65000:2 0:11 0:160 ip community-list standard 2_16_110 permit 65000:2 0:16 0:110 ip community-list standard 2_20_88 permit 65000:2 0:20 0:88 ip community-list standard 2_22_80 permit 65000:2 0:22 0:80 ip community-list standard 2_32_55 permit 65000:2 0:32 0:55 ip community-list standard 2_40_44 permit 65000:2 0:40 0:44 route-map calculator permit 16057 match community 2_8_220 2_10_176 2_11_160 2_16_110 2_20_88 set community 0:1760 route-map calculator permit 16058 match community 2_22_80 2_32_55 2_40_44 set community 0:1760 ip community-list standard 2_213_245 permit 65000:2 0:213 0:245 route-map calculator permit 16059 match community 2_213_245 set community 0:52185 ip community-list standard 2_79_233 permit 65000:2 0:79 0:233 route-map calculator permit 16060 match community 2_79_233 set community 0:18407 ip community-list standard 2_91_212 permit 65000:2 0:91 0:212 ip community-list standard 2_106_182 permit 65000:2 0:106 0:182 route-map calculator permit 16061 match community 2_91_212 2_106_182 set community 0:19292 ip community-list standard 2_218_241 permit 65000:2 0:218 0:241 route-map calculator permit 16062 match community 2_218_241 set community 0:52538 ip community-list standard 2_7_199 permit 65000:2 0:7 0:199 route-map calculator permit 16063 match community 2_7_199 set community 0:1393 ip community-list standard 2_174_186 permit 65000:2 0:174 0:186 route-map calculator permit 16064 match community 2_174_186 set community 0:32364 ip community-list standard 2_70_137 permit 65000:2 0:70 0:137 route-map calculator permit 16065 match community 2_70_137 set community 0:9590 ip community-list standard 2_34_211 permit 65000:2 0:34 0:211 route-map calculator permit 16066 match community 2_34_211 set community 0:7174 ip community-list standard 2_230_237 permit 65000:2 0:230 0:237 route-map calculator permit 16067 match community 2_230_237 set community 0:54510 ip community-list standard 2_4_232 permit 65000:2 0:4 0:232 ip community-list standard 2_8_116 permit 65000:2 0:8 0:116 ip community-list standard 2_16_58 permit 65000:2 0:16 0:58 ip community-list standard 2_29_32 permit 65000:2 0:29 0:32 route-map calculator permit 16068 match community 2_4_232 2_8_116 2_16_58 2_29_32 set community 0:928 ip community-list standard 2_221_253 permit 65000:2 0:221 0:253 route-map calculator permit 16069 match community 2_221_253 set community 0:55913 ip community-list standard 2_135_256 permit 65000:2 0:135 0:256 ip community-list standard 2_144_240 permit 65000:2 0:144 0:240 ip community-list standard 2_160_216 permit 65000:2 0:160 0:216 ip community-list standard 2_180_192 permit 65000:2 0:180 0:192 route-map calculator permit 16070 match community 2_135_256 2_144_240 2_160_216 2_180_192 set community 0:34560 ip community-list standard 2_87_187 permit 65000:2 0:87 0:187 route-map calculator permit 16071 match community 2_87_187 set community 0:16269 ip community-list standard 2_124_209 permit 65000:2 0:124 0:209 route-map calculator permit 16072 match community 2_124_209 set community 0:25916 ip community-list standard 2_166_236 permit 65000:2 0:166 0:236 route-map calculator permit 16073 match community 2_166_236 set community 0:39176 ip community-list standard 2_32_256 permit 65000:2 0:32 0:256 ip community-list standard 2_64_128 permit 65000:2 0:64 0:128 route-map calculator permit 16074 match community 2_32_256 2_64_128 set community 0:8192 ip community-list standard 2_89_210 permit 65000:2 0:89 0:210 ip community-list standard 2_105_178 permit 65000:2 0:105 0:178 route-map calculator permit 16075 match community 2_89_210 2_105_178 set community 0:18690 ip community-list standard 2_24_216 permit 65000:2 0:24 0:216 ip community-list standard 2_27_192 permit 65000:2 0:27 0:192 ip community-list standard 2_32_162 permit 65000:2 0:32 0:162 ip community-list standard 2_36_144 permit 65000:2 0:36 0:144 ip community-list standard 2_48_108 permit 65000:2 0:48 0:108 ip community-list standard 2_54_96 permit 65000:2 0:54 0:96 ip community-list standard 2_64_81 permit 65000:2 0:64 0:81 ip community-list standard 2_72_72 permit 65000:2 0:72 0:72 route-map calculator permit 16076 match community 2_24_216 2_27_192 2_32_162 2_36_144 2_48_108 set community 0:5184 route-map calculator permit 16077 match community 2_54_96 2_64_81 2_72_72 set community 0:5184 ip community-list standard 2_27_194 permit 65000:2 0:27 0:194 ip community-list standard 2_54_97 permit 65000:2 0:54 0:97 route-map calculator permit 16078 match community 2_27_194 2_54_97 set community 0:5238 ip community-list standard 2_214_242 permit 65000:2 0:214 0:242 route-map calculator permit 16079 match community 2_214_242 set community 0:51788 ip community-list standard 2_87_221 permit 65000:2 0:87 0:221 route-map calculator permit 16080 match community 2_87_221 set community 0:19227 ip community-list standard 2_32_151 permit 65000:2 0:32 0:151 route-map calculator permit 16081 match community 2_32_151 set community 0:4832 ip community-list standard 2_237_254 permit 65000:2 0:237 0:254 route-map calculator permit 16082 match community 2_237_254 set community 0:60198 ip community-list standard 2_147_231 permit 65000:2 0:147 0:231 route-map calculator permit 16083 match community 2_147_231 set community 0:33957 ip community-list standard 2_9_242 permit 65000:2 0:9 0:242 ip community-list standard 2_11_198 permit 65000:2 0:11 0:198 ip community-list standard 2_18_121 permit 65000:2 0:18 0:121 ip community-list standard 2_22_99 permit 65000:2 0:22 0:99 ip community-list standard 2_33_66 permit 65000:2 0:33 0:66 route-map calculator permit 16084 match community 2_9_242 2_11_198 2_18_121 2_22_99 2_33_66 set community 0:2178 ip community-list standard 2_23_192 permit 65000:2 0:23 0:192 ip community-list standard 2_24_184 permit 65000:2 0:24 0:184 ip community-list standard 2_32_138 permit 65000:2 0:32 0:138 ip community-list standard 2_46_96 permit 65000:2 0:46 0:96 ip community-list standard 2_48_92 permit 65000:2 0:48 0:92 ip community-list standard 2_64_69 permit 65000:2 0:64 0:69 route-map calculator permit 16085 match community 2_23_192 2_24_184 2_32_138 2_46_96 2_48_92 set community 0:4416 route-map calculator permit 16086 match community 2_64_69 set community 0:4416 ip community-list standard 2_44_228 permit 65000:2 0:44 0:228 ip community-list standard 2_48_209 permit 65000:2 0:48 0:209 ip community-list standard 2_57_176 permit 65000:2 0:57 0:176 ip community-list standard 2_66_152 permit 65000:2 0:66 0:152 ip community-list standard 2_76_132 permit 65000:2 0:76 0:132 ip community-list standard 2_88_114 permit 65000:2 0:88 0:114 route-map calculator permit 16087 match community 2_44_228 2_48_209 2_57_176 2_66_152 2_76_132 set community 0:10032 route-map calculator permit 16088 match community 2_88_114 set community 0:10032 ip community-list standard 2_137_213 permit 65000:2 0:137 0:213 route-map calculator permit 16089 match community 2_137_213 set community 0:29181 ip community-list standard 2_26_218 permit 65000:2 0:26 0:218 ip community-list standard 2_52_109 permit 65000:2 0:52 0:109 route-map calculator permit 16090 match community 2_26_218 2_52_109 set community 0:5668 ip community-list standard 2_221_222 permit 65000:2 0:221 0:222 route-map calculator permit 16091 match community 2_221_222 set community 0:49062 ip community-list standard 2_131_250 permit 65000:2 0:131 0:250 route-map calculator permit 16092 match community 2_131_250 set community 0:32750 ip community-list standard 2_23_173 permit 65000:2 0:23 0:173 route-map calculator permit 16093 match community 2_23_173 set community 0:3979 ip community-list standard 2_93_197 permit 65000:2 0:93 0:197 route-map calculator permit 16094 match community 2_93_197 set community 0:18321 ip community-list standard 2_139_170 permit 65000:2 0:139 0:170 route-map calculator permit 16095 match community 2_139_170 set community 0:23630 ip community-list standard 2_92_197 permit 65000:2 0:92 0:197 route-map calculator permit 16096 match community 2_92_197 set community 0:18124 ip community-list standard 2_34_237 permit 65000:2 0:34 0:237 ip community-list standard 2_51_158 permit 65000:2 0:51 0:158 ip community-list standard 2_79_102 permit 65000:2 0:79 0:102 route-map calculator permit 16097 match community 2_34_237 2_51_158 2_79_102 set community 0:8058 ip community-list standard 2_69_243 permit 65000:2 0:69 0:243 ip community-list standard 2_81_207 permit 65000:2 0:81 0:207 route-map calculator permit 16098 match community 2_69_243 2_81_207 set community 0:16767 ip community-list standard 2_3_87 permit 65000:2 0:3 0:87 ip community-list standard 1_5_256 permit 65000:1 0:5 0:256 ip community-list standard 1_6_255 permit 65000:1 0:6 0:255 ip community-list standard 1_7_254 permit 65000:1 0:7 0:254 ip community-list standard 1_8_253 permit 65000:1 0:8 0:253 ip community-list standard 2_9_29 permit 65000:2 0:9 0:29 ip community-list standard 1_9_252 permit 65000:1 0:9 0:252 ip community-list standard 1_10_251 permit 65000:1 0:10 0:251 ip community-list standard 1_11_250 permit 65000:1 0:11 0:250 ip community-list standard 1_12_249 permit 65000:1 0:12 0:249 ip community-list standard 1_13_248 permit 65000:1 0:13 0:248 ip community-list standard 1_14_247 permit 65000:1 0:14 0:247 ip community-list standard 1_15_246 permit 65000:1 0:15 0:246 ip community-list standard 1_16_245 permit 65000:1 0:16 0:245 ip community-list standard 1_17_244 permit 65000:1 0:17 0:244 ip community-list standard 1_18_243 permit 65000:1 0:18 0:243 ip community-list standard 1_19_242 permit 65000:1 0:19 0:242 ip community-list standard 1_20_241 permit 65000:1 0:20 0:241 ip community-list standard 1_21_240 permit 65000:1 0:21 0:240 ip community-list standard 1_22_239 permit 65000:1 0:22 0:239 ip community-list standard 1_23_238 permit 65000:1 0:23 0:238 ip community-list standard 1_24_237 permit 65000:1 0:24 0:237 ip community-list standard 1_25_236 permit 65000:1 0:25 0:236 ip community-list standard 1_26_235 permit 65000:1 0:26 0:235 ip community-list standard 1_27_234 permit 65000:1 0:27 0:234 ip community-list standard 1_28_233 permit 65000:1 0:28 0:233 ip community-list standard 1_29_232 permit 65000:1 0:29 0:232 ip community-list standard 1_30_231 permit 65000:1 0:30 0:231 ip community-list standard 1_31_230 permit 65000:1 0:31 0:230 ip community-list standard 1_32_229 permit 65000:1 0:32 0:229 ip community-list standard 1_33_228 permit 65000:1 0:33 0:228 ip community-list standard 1_34_227 permit 65000:1 0:34 0:227 ip community-list standard 1_35_226 permit 65000:1 0:35 0:226 ip community-list standard 1_36_225 permit 65000:1 0:36 0:225 ip community-list standard 1_37_224 permit 65000:1 0:37 0:224 ip community-list standard 1_38_223 permit 65000:1 0:38 0:223 ip community-list standard 1_39_222 permit 65000:1 0:39 0:222 ip community-list standard 1_40_221 permit 65000:1 0:40 0:221 ip community-list standard 1_41_220 permit 65000:1 0:41 0:220 ip community-list standard 1_42_219 permit 65000:1 0:42 0:219 ip community-list standard 1_43_218 permit 65000:1 0:43 0:218 ip community-list standard 1_44_217 permit 65000:1 0:44 0:217 ip community-list standard 1_45_216 permit 65000:1 0:45 0:216 ip community-list standard 1_46_215 permit 65000:1 0:46 0:215 ip community-list standard 1_47_214 permit 65000:1 0:47 0:214 ip community-list standard 1_48_213 permit 65000:1 0:48 0:213 ip community-list standard 1_49_212 permit 65000:1 0:49 0:212 ip community-list standard 1_50_211 permit 65000:1 0:50 0:211 ip community-list standard 1_51_210 permit 65000:1 0:51 0:210 ip community-list standard 1_52_209 permit 65000:1 0:52 0:209 ip community-list standard 1_53_208 permit 65000:1 0:53 0:208 ip community-list standard 1_54_207 permit 65000:1 0:54 0:207 ip community-list standard 1_55_206 permit 65000:1 0:55 0:206 ip community-list standard 1_56_205 permit 65000:1 0:56 0:205 ip community-list standard 1_57_204 permit 65000:1 0:57 0:204 ip community-list standard 1_58_203 permit 65000:1 0:58 0:203 ip community-list standard 1_59_202 permit 65000:1 0:59 0:202 ip community-list standard 1_60_201 permit 65000:1 0:60 0:201 ip community-list standard 1_61_200 permit 65000:1 0:61 0:200 ip community-list standard 1_62_199 permit 65000:1 0:62 0:199 ip community-list standard 1_63_198 permit 65000:1 0:63 0:198 ip community-list standard 1_64_197 permit 65000:1 0:64 0:197 ip community-list standard 1_65_196 permit 65000:1 0:65 0:196 ip community-list standard 1_66_195 permit 65000:1 0:66 0:195 ip community-list standard 1_67_194 permit 65000:1 0:67 0:194 ip community-list standard 1_68_193 permit 65000:1 0:68 0:193 ip community-list standard 1_69_192 permit 65000:1 0:69 0:192 ip community-list standard 1_70_191 permit 65000:1 0:70 0:191 ip community-list standard 1_71_190 permit 65000:1 0:71 0:190 ip community-list standard 1_72_189 permit 65000:1 0:72 0:189 ip community-list standard 1_73_188 permit 65000:1 0:73 0:188 ip community-list standard 1_74_187 permit 65000:1 0:74 0:187 ip community-list standard 1_75_186 permit 65000:1 0:75 0:186 ip community-list standard 1_76_185 permit 65000:1 0:76 0:185 ip community-list standard 1_77_184 permit 65000:1 0:77 0:184 ip community-list standard 1_78_183 permit 65000:1 0:78 0:183 ip community-list standard 1_79_182 permit 65000:1 0:79 0:182 ip community-list standard 1_80_181 permit 65000:1 0:80 0:181 ip community-list standard 1_81_180 permit 65000:1 0:81 0:180 ip community-list standard 1_82_179 permit 65000:1 0:82 0:179 ip community-list standard 1_83_178 permit 65000:1 0:83 0:178 ip community-list standard 1_84_177 permit 65000:1 0:84 0:177 ip community-list standard 1_85_176 permit 65000:1 0:85 0:176 ip community-list standard 1_86_175 permit 65000:1 0:86 0:175 ip community-list standard 1_87_174 permit 65000:1 0:87 0:174 ip community-list standard 1_88_173 permit 65000:1 0:88 0:173 ip community-list standard 1_89_172 permit 65000:1 0:89 0:172 ip community-list standard 1_90_171 permit 65000:1 0:90 0:171 ip community-list standard 1_91_170 permit 65000:1 0:91 0:170 ip community-list standard 1_92_169 permit 65000:1 0:92 0:169 ip community-list standard 1_93_168 permit 65000:1 0:93 0:168 ip community-list standard 1_94_167 permit 65000:1 0:94 0:167 ip community-list standard 1_95_166 permit 65000:1 0:95 0:166 ip community-list standard 1_96_165 permit 65000:1 0:96 0:165 ip community-list standard 1_97_164 permit 65000:1 0:97 0:164 ip community-list standard 1_98_163 permit 65000:1 0:98 0:163 ip community-list standard 1_99_162 permit 65000:1 0:99 0:162 ip community-list standard 1_100_161 permit 65000:1 0:100 0:161 ip community-list standard 1_101_160 permit 65000:1 0:101 0:160 ip community-list standard 1_102_159 permit 65000:1 0:102 0:159 ip community-list standard 1_103_158 permit 65000:1 0:103 0:158 ip community-list standard 1_104_157 permit 65000:1 0:104 0:157 ip community-list standard 1_105_156 permit 65000:1 0:105 0:156 ip community-list standard 1_106_155 permit 65000:1 0:106 0:155 ip community-list standard 1_107_154 permit 65000:1 0:107 0:154 ip community-list standard 1_108_153 permit 65000:1 0:108 0:153 ip community-list standard 1_109_152 permit 65000:1 0:109 0:152 ip community-list standard 1_110_151 permit 65000:1 0:110 0:151 ip community-list standard 1_111_150 permit 65000:1 0:111 0:150 ip community-list standard 1_112_149 permit 65000:1 0:112 0:149 ip community-list standard 1_113_148 permit 65000:1 0:113 0:148 ip community-list standard 1_114_147 permit 65000:1 0:114 0:147 ip community-list standard 1_115_146 permit 65000:1 0:115 0:146 ip community-list standard 1_116_145 permit 65000:1 0:116 0:145 ip community-list standard 1_117_144 permit 65000:1 0:117 0:144 ip community-list standard 1_118_143 permit 65000:1 0:118 0:143 ip community-list standard 1_119_142 permit 65000:1 0:119 0:142 ip community-list standard 1_120_141 permit 65000:1 0:120 0:141 ip community-list standard 1_121_140 permit 65000:1 0:121 0:140 ip community-list standard 1_122_139 permit 65000:1 0:122 0:139 ip community-list standard 1_123_138 permit 65000:1 0:123 0:138 ip community-list standard 1_124_137 permit 65000:1 0:124 0:137 ip community-list standard 1_125_136 permit 65000:1 0:125 0:136 ip community-list standard 1_126_135 permit 65000:1 0:126 0:135 ip community-list standard 1_127_134 permit 65000:1 0:127 0:134 ip community-list standard 1_128_133 permit 65000:1 0:128 0:133 ip community-list standard 1_129_132 permit 65000:1 0:129 0:132 ip community-list standard 1_130_131 permit 65000:1 0:130 0:131 route-map calculator permit 16099 match community 2_3_87 1_5_256 1_6_255 1_7_254 1_8_253 set community 0:261 route-map calculator permit 16100 match community 2_9_29 1_9_252 1_10_251 1_11_250 1_12_249 set community 0:261 route-map calculator permit 16101 match community 1_13_248 1_14_247 1_15_246 1_16_245 1_17_244 set community 0:261 route-map calculator permit 16102 match community 1_18_243 1_19_242 1_20_241 1_21_240 1_22_239 set community 0:261 route-map calculator permit 16103 match community 1_23_238 1_24_237 1_25_236 1_26_235 1_27_234 set community 0:261 route-map calculator permit 16104 match community 1_28_233 1_29_232 1_30_231 1_31_230 1_32_229 set community 0:261 route-map calculator permit 16105 match community 1_33_228 1_34_227 1_35_226 1_36_225 1_37_224 set community 0:261 route-map calculator permit 16106 match community 1_38_223 1_39_222 1_40_221 1_41_220 1_42_219 set community 0:261 route-map calculator permit 16107 match community 1_43_218 1_44_217 1_45_216 1_46_215 1_47_214 set community 0:261 route-map calculator permit 16108 match community 1_48_213 1_49_212 1_50_211 1_51_210 1_52_209 set community 0:261 route-map calculator permit 16109 match community 1_53_208 1_54_207 1_55_206 1_56_205 1_57_204 set community 0:261 route-map calculator permit 16110 match community 1_58_203 1_59_202 1_60_201 1_61_200 1_62_199 set community 0:261 route-map calculator permit 16111 match community 1_63_198 1_64_197 1_65_196 1_66_195 1_67_194 set community 0:261 route-map calculator permit 16112 match community 1_68_193 1_69_192 1_70_191 1_71_190 1_72_189 set community 0:261 route-map calculator permit 16113 match community 1_73_188 1_74_187 1_75_186 1_76_185 1_77_184 set community 0:261 route-map calculator permit 16114 match community 1_78_183 1_79_182 1_80_181 1_81_180 1_82_179 set community 0:261 route-map calculator permit 16115 match community 1_83_178 1_84_177 1_85_176 1_86_175 1_87_174 set community 0:261 route-map calculator permit 16116 match community 1_88_173 1_89_172 1_90_171 1_91_170 1_92_169 set community 0:261 route-map calculator permit 16117 match community 1_93_168 1_94_167 1_95_166 1_96_165 1_97_164 set community 0:261 route-map calculator permit 16118 match community 1_98_163 1_99_162 1_100_161 1_101_160 1_102_159 set community 0:261 route-map calculator permit 16119 match community 1_103_158 1_104_157 1_105_156 1_106_155 1_107_154 set community 0:261 route-map calculator permit 16120 match community 1_108_153 1_109_152 1_110_151 1_111_150 1_112_149 set community 0:261 route-map calculator permit 16121 match community 1_113_148 1_114_147 1_115_146 1_116_145 1_117_144 set community 0:261 route-map calculator permit 16122 match community 1_118_143 1_119_142 1_120_141 1_121_140 1_122_139 set community 0:261 route-map calculator permit 16123 match community 1_123_138 1_124_137 1_125_136 1_126_135 1_127_134 set community 0:261 route-map calculator permit 16124 match community 1_128_133 1_129_132 1_130_131 set community 0:261 ip community-list standard 2_56_252 permit 65000:2 0:56 0:252 ip community-list standard 2_63_224 permit 65000:2 0:63 0:224 ip community-list standard 2_72_196 permit 65000:2 0:72 0:196 ip community-list standard 2_84_168 permit 65000:2 0:84 0:168 ip community-list standard 2_96_147 permit 65000:2 0:96 0:147 ip community-list standard 2_98_144 permit 65000:2 0:98 0:144 ip community-list standard 2_112_126 permit 65000:2 0:112 0:126 route-map calculator permit 16125 match community 2_56_252 2_63_224 2_72_196 2_84_168 2_96_147 set community 0:14112 route-map calculator permit 16126 match community 2_98_144 2_112_126 set community 0:14112 ip community-list standard 2_115_183 permit 65000:2 0:115 0:183 route-map calculator permit 16127 match community 2_115_183 set community 0:21045 ip community-list standard 2_183_193 permit 65000:2 0:183 0:193 route-map calculator permit 16128 match community 2_183_193 set community 0:35319 ip community-list standard 2_77_217 permit 65000:2 0:77 0:217 route-map calculator permit 16129 match community 2_77_217 set community 0:16709 ip community-list standard 2_2_197 permit 65000:2 0:2 0:197 ip community-list standard 1_138_256 permit 65000:1 0:138 0:256 ip community-list standard 1_139_255 permit 65000:1 0:139 0:255 ip community-list standard 1_140_254 permit 65000:1 0:140 0:254 ip community-list standard 1_141_253 permit 65000:1 0:141 0:253 ip community-list standard 1_142_252 permit 65000:1 0:142 0:252 ip community-list standard 1_143_251 permit 65000:1 0:143 0:251 ip community-list standard 1_144_250 permit 65000:1 0:144 0:250 ip community-list standard 1_145_249 permit 65000:1 0:145 0:249 ip community-list standard 1_146_248 permit 65000:1 0:146 0:248 ip community-list standard 1_147_247 permit 65000:1 0:147 0:247 ip community-list standard 1_148_246 permit 65000:1 0:148 0:246 ip community-list standard 1_149_245 permit 65000:1 0:149 0:245 ip community-list standard 1_150_244 permit 65000:1 0:150 0:244 ip community-list standard 1_151_243 permit 65000:1 0:151 0:243 ip community-list standard 1_152_242 permit 65000:1 0:152 0:242 ip community-list standard 1_153_241 permit 65000:1 0:153 0:241 ip community-list standard 1_154_240 permit 65000:1 0:154 0:240 ip community-list standard 1_155_239 permit 65000:1 0:155 0:239 ip community-list standard 1_156_238 permit 65000:1 0:156 0:238 ip community-list standard 1_157_237 permit 65000:1 0:157 0:237 ip community-list standard 1_158_236 permit 65000:1 0:158 0:236 ip community-list standard 1_159_235 permit 65000:1 0:159 0:235 ip community-list standard 1_160_234 permit 65000:1 0:160 0:234 ip community-list standard 1_161_233 permit 65000:1 0:161 0:233 ip community-list standard 1_162_232 permit 65000:1 0:162 0:232 ip community-list standard 1_163_231 permit 65000:1 0:163 0:231 ip community-list standard 1_164_230 permit 65000:1 0:164 0:230 ip community-list standard 1_165_229 permit 65000:1 0:165 0:229 ip community-list standard 1_166_228 permit 65000:1 0:166 0:228 ip community-list standard 1_167_227 permit 65000:1 0:167 0:227 ip community-list standard 1_168_226 permit 65000:1 0:168 0:226 ip community-list standard 1_169_225 permit 65000:1 0:169 0:225 ip community-list standard 1_170_224 permit 65000:1 0:170 0:224 ip community-list standard 1_171_223 permit 65000:1 0:171 0:223 ip community-list standard 1_172_222 permit 65000:1 0:172 0:222 ip community-list standard 1_173_221 permit 65000:1 0:173 0:221 ip community-list standard 1_174_220 permit 65000:1 0:174 0:220 ip community-list standard 1_175_219 permit 65000:1 0:175 0:219 ip community-list standard 1_176_218 permit 65000:1 0:176 0:218 ip community-list standard 1_177_217 permit 65000:1 0:177 0:217 ip community-list standard 1_178_216 permit 65000:1 0:178 0:216 ip community-list standard 1_179_215 permit 65000:1 0:179 0:215 ip community-list standard 1_180_214 permit 65000:1 0:180 0:214 ip community-list standard 1_181_213 permit 65000:1 0:181 0:213 ip community-list standard 1_182_212 permit 65000:1 0:182 0:212 ip community-list standard 1_183_211 permit 65000:1 0:183 0:211 ip community-list standard 1_184_210 permit 65000:1 0:184 0:210 ip community-list standard 1_185_209 permit 65000:1 0:185 0:209 ip community-list standard 1_186_208 permit 65000:1 0:186 0:208 ip community-list standard 1_187_207 permit 65000:1 0:187 0:207 ip community-list standard 1_188_206 permit 65000:1 0:188 0:206 ip community-list standard 1_189_205 permit 65000:1 0:189 0:205 ip community-list standard 1_190_204 permit 65000:1 0:190 0:204 ip community-list standard 1_191_203 permit 65000:1 0:191 0:203 ip community-list standard 1_192_202 permit 65000:1 0:192 0:202 ip community-list standard 1_193_201 permit 65000:1 0:193 0:201 ip community-list standard 1_194_200 permit 65000:1 0:194 0:200 ip community-list standard 1_195_199 permit 65000:1 0:195 0:199 ip community-list standard 1_196_198 permit 65000:1 0:196 0:198 ip community-list standard 1_197_197 permit 65000:1 0:197 0:197 route-map calculator permit 16130 match community 2_2_197 1_138_256 1_139_255 1_140_254 1_141_253 set community 0:394 route-map calculator permit 16131 match community 1_142_252 1_143_251 1_144_250 1_145_249 1_146_248 set community 0:394 route-map calculator permit 16132 match community 1_147_247 1_148_246 1_149_245 1_150_244 1_151_243 set community 0:394 route-map calculator permit 16133 match community 1_152_242 1_153_241 1_154_240 1_155_239 1_156_238 set community 0:394 route-map calculator permit 16134 match community 1_157_237 1_158_236 1_159_235 1_160_234 1_161_233 set community 0:394 route-map calculator permit 16135 match community 1_162_232 1_163_231 1_164_230 1_165_229 1_166_228 set community 0:394 route-map calculator permit 16136 match community 1_167_227 1_168_226 1_169_225 1_170_224 1_171_223 set community 0:394 route-map calculator permit 16137 match community 1_172_222 1_173_221 1_174_220 1_175_219 1_176_218 set community 0:394 route-map calculator permit 16138 match community 1_177_217 1_178_216 1_179_215 1_180_214 1_181_213 set community 0:394 route-map calculator permit 16139 match community 1_182_212 1_183_211 1_184_210 1_185_209 1_186_208 set community 0:394 route-map calculator permit 16140 match community 1_187_207 1_188_206 1_189_205 1_190_204 1_191_203 set community 0:394 route-map calculator permit 16141 match community 1_192_202 1_193_201 1_194_200 1_195_199 1_196_198 set community 0:394 route-map calculator permit 16142 match community 1_197_197 set community 0:394 ip community-list standard 2_119_253 permit 65000:2 0:119 0:253 ip community-list standard 2_161_187 permit 65000:2 0:161 0:187 route-map calculator permit 16143 match community 2_119_253 2_161_187 set community 0:30107 ip community-list standard 2_25_191 permit 65000:2 0:25 0:191 route-map calculator permit 16144 match community 2_25_191 set community 0:4775 ip community-list standard 2_155_228 permit 65000:2 0:155 0:228 ip community-list standard 2_186_190 permit 65000:2 0:186 0:190 route-map calculator permit 16145 match community 2_155_228 2_186_190 set community 0:35340 ip community-list standard 2_203_252 permit 65000:2 0:203 0:252 route-map calculator permit 16146 match community 2_203_252 set community 0:51156 ip community-list standard 2_43_179 permit 65000:2 0:43 0:179 route-map calculator permit 16147 match community 2_43_179 set community 0:7697 ip community-list standard 2_2_153 permit 65000:2 0:2 0:153 ip community-list standard 2_3_102 permit 65000:2 0:3 0:102 ip community-list standard 2_6_51 permit 65000:2 0:6 0:51 ip community-list standard 2_9_34 permit 65000:2 0:9 0:34 ip community-list standard 2_17_18 permit 65000:2 0:17 0:18 ip community-list standard 1_50_256 permit 65000:1 0:50 0:256 ip community-list standard 1_51_255 permit 65000:1 0:51 0:255 ip community-list standard 1_52_254 permit 65000:1 0:52 0:254 ip community-list standard 1_53_253 permit 65000:1 0:53 0:253 ip community-list standard 1_54_252 permit 65000:1 0:54 0:252 ip community-list standard 1_55_251 permit 65000:1 0:55 0:251 ip community-list standard 1_56_250 permit 65000:1 0:56 0:250 ip community-list standard 1_57_249 permit 65000:1 0:57 0:249 ip community-list standard 1_58_248 permit 65000:1 0:58 0:248 ip community-list standard 1_59_247 permit 65000:1 0:59 0:247 ip community-list standard 1_60_246 permit 65000:1 0:60 0:246 ip community-list standard 1_61_245 permit 65000:1 0:61 0:245 ip community-list standard 1_62_244 permit 65000:1 0:62 0:244 ip community-list standard 1_63_243 permit 65000:1 0:63 0:243 ip community-list standard 1_64_242 permit 65000:1 0:64 0:242 ip community-list standard 1_65_241 permit 65000:1 0:65 0:241 ip community-list standard 1_66_240 permit 65000:1 0:66 0:240 ip community-list standard 1_67_239 permit 65000:1 0:67 0:239 ip community-list standard 1_68_238 permit 65000:1 0:68 0:238 ip community-list standard 1_69_237 permit 65000:1 0:69 0:237 ip community-list standard 1_70_236 permit 65000:1 0:70 0:236 ip community-list standard 1_71_235 permit 65000:1 0:71 0:235 ip community-list standard 1_72_234 permit 65000:1 0:72 0:234 ip community-list standard 1_73_233 permit 65000:1 0:73 0:233 ip community-list standard 1_74_232 permit 65000:1 0:74 0:232 ip community-list standard 1_75_231 permit 65000:1 0:75 0:231 ip community-list standard 1_76_230 permit 65000:1 0:76 0:230 ip community-list standard 1_77_229 permit 65000:1 0:77 0:229 ip community-list standard 1_78_228 permit 65000:1 0:78 0:228 ip community-list standard 1_79_227 permit 65000:1 0:79 0:227 ip community-list standard 1_80_226 permit 65000:1 0:80 0:226 ip community-list standard 1_81_225 permit 65000:1 0:81 0:225 ip community-list standard 1_82_224 permit 65000:1 0:82 0:224 ip community-list standard 1_83_223 permit 65000:1 0:83 0:223 ip community-list standard 1_84_222 permit 65000:1 0:84 0:222 ip community-list standard 1_85_221 permit 65000:1 0:85 0:221 ip community-list standard 1_86_220 permit 65000:1 0:86 0:220 ip community-list standard 1_87_219 permit 65000:1 0:87 0:219 ip community-list standard 1_88_218 permit 65000:1 0:88 0:218 ip community-list standard 1_89_217 permit 65000:1 0:89 0:217 ip community-list standard 1_90_216 permit 65000:1 0:90 0:216 ip community-list standard 1_91_215 permit 65000:1 0:91 0:215 ip community-list standard 1_92_214 permit 65000:1 0:92 0:214 ip community-list standard 1_93_213 permit 65000:1 0:93 0:213 ip community-list standard 1_94_212 permit 65000:1 0:94 0:212 ip community-list standard 1_95_211 permit 65000:1 0:95 0:211 ip community-list standard 1_96_210 permit 65000:1 0:96 0:210 ip community-list standard 1_97_209 permit 65000:1 0:97 0:209 ip community-list standard 1_98_208 permit 65000:1 0:98 0:208 ip community-list standard 1_99_207 permit 65000:1 0:99 0:207 ip community-list standard 1_100_206 permit 65000:1 0:100 0:206 ip community-list standard 1_101_205 permit 65000:1 0:101 0:205 ip community-list standard 1_102_204 permit 65000:1 0:102 0:204 ip community-list standard 1_103_203 permit 65000:1 0:103 0:203 ip community-list standard 1_104_202 permit 65000:1 0:104 0:202 ip community-list standard 1_105_201 permit 65000:1 0:105 0:201 ip community-list standard 1_106_200 permit 65000:1 0:106 0:200 ip community-list standard 1_107_199 permit 65000:1 0:107 0:199 ip community-list standard 1_108_198 permit 65000:1 0:108 0:198 ip community-list standard 1_109_197 permit 65000:1 0:109 0:197 ip community-list standard 1_110_196 permit 65000:1 0:110 0:196 ip community-list standard 1_111_195 permit 65000:1 0:111 0:195 ip community-list standard 1_112_194 permit 65000:1 0:112 0:194 ip community-list standard 1_113_193 permit 65000:1 0:113 0:193 ip community-list standard 1_114_192 permit 65000:1 0:114 0:192 ip community-list standard 1_115_191 permit 65000:1 0:115 0:191 ip community-list standard 1_116_190 permit 65000:1 0:116 0:190 ip community-list standard 1_117_189 permit 65000:1 0:117 0:189 ip community-list standard 1_118_188 permit 65000:1 0:118 0:188 ip community-list standard 1_119_187 permit 65000:1 0:119 0:187 ip community-list standard 1_120_186 permit 65000:1 0:120 0:186 ip community-list standard 1_121_185 permit 65000:1 0:121 0:185 ip community-list standard 1_122_184 permit 65000:1 0:122 0:184 ip community-list standard 1_123_183 permit 65000:1 0:123 0:183 ip community-list standard 1_124_182 permit 65000:1 0:124 0:182 ip community-list standard 1_125_181 permit 65000:1 0:125 0:181 ip community-list standard 1_126_180 permit 65000:1 0:126 0:180 ip community-list standard 1_127_179 permit 65000:1 0:127 0:179 ip community-list standard 1_128_178 permit 65000:1 0:128 0:178 ip community-list standard 1_129_177 permit 65000:1 0:129 0:177 ip community-list standard 1_130_176 permit 65000:1 0:130 0:176 ip community-list standard 1_131_175 permit 65000:1 0:131 0:175 ip community-list standard 1_132_174 permit 65000:1 0:132 0:174 ip community-list standard 1_133_173 permit 65000:1 0:133 0:173 ip community-list standard 1_134_172 permit 65000:1 0:134 0:172 ip community-list standard 1_135_171 permit 65000:1 0:135 0:171 ip community-list standard 1_136_170 permit 65000:1 0:136 0:170 ip community-list standard 1_137_169 permit 65000:1 0:137 0:169 ip community-list standard 1_138_168 permit 65000:1 0:138 0:168 ip community-list standard 1_139_167 permit 65000:1 0:139 0:167 ip community-list standard 1_140_166 permit 65000:1 0:140 0:166 ip community-list standard 1_141_165 permit 65000:1 0:141 0:165 ip community-list standard 1_142_164 permit 65000:1 0:142 0:164 ip community-list standard 1_143_163 permit 65000:1 0:143 0:163 ip community-list standard 1_144_162 permit 65000:1 0:144 0:162 ip community-list standard 1_145_161 permit 65000:1 0:145 0:161 ip community-list standard 1_146_160 permit 65000:1 0:146 0:160 ip community-list standard 1_147_159 permit 65000:1 0:147 0:159 ip community-list standard 1_148_158 permit 65000:1 0:148 0:158 ip community-list standard 1_149_157 permit 65000:1 0:149 0:157 ip community-list standard 1_150_156 permit 65000:1 0:150 0:156 ip community-list standard 1_151_155 permit 65000:1 0:151 0:155 ip community-list standard 1_152_154 permit 65000:1 0:152 0:154 ip community-list standard 1_153_153 permit 65000:1 0:153 0:153 route-map calculator permit 16148 match community 2_2_153 2_3_102 2_6_51 2_9_34 2_17_18 set community 0:306 route-map calculator permit 16149 match community 1_50_256 1_51_255 1_52_254 1_53_253 1_54_252 set community 0:306 route-map calculator permit 16150 match community 1_55_251 1_56_250 1_57_249 1_58_248 1_59_247 set community 0:306 route-map calculator permit 16151 match community 1_60_246 1_61_245 1_62_244 1_63_243 1_64_242 set community 0:306 route-map calculator permit 16152 match community 1_65_241 1_66_240 1_67_239 1_68_238 1_69_237 set community 0:306 route-map calculator permit 16153 match community 1_70_236 1_71_235 1_72_234 1_73_233 1_74_232 set community 0:306 route-map calculator permit 16154 match community 1_75_231 1_76_230 1_77_229 1_78_228 1_79_227 set community 0:306 route-map calculator permit 16155 match community 1_80_226 1_81_225 1_82_224 1_83_223 1_84_222 set community 0:306 route-map calculator permit 16156 match community 1_85_221 1_86_220 1_87_219 1_88_218 1_89_217 set community 0:306 route-map calculator permit 16157 match community 1_90_216 1_91_215 1_92_214 1_93_213 1_94_212 set community 0:306 route-map calculator permit 16158 match community 1_95_211 1_96_210 1_97_209 1_98_208 1_99_207 set community 0:306 route-map calculator permit 16159 match community 1_100_206 1_101_205 1_102_204 1_103_203 1_104_202 set community 0:306 route-map calculator permit 16160 match community 1_105_201 1_106_200 1_107_199 1_108_198 1_109_197 set community 0:306 route-map calculator permit 16161 match community 1_110_196 1_111_195 1_112_194 1_113_193 1_114_192 set community 0:306 route-map calculator permit 16162 match community 1_115_191 1_116_190 1_117_189 1_118_188 1_119_187 set community 0:306 route-map calculator permit 16163 match community 1_120_186 1_121_185 1_122_184 1_123_183 1_124_182 set community 0:306 route-map calculator permit 16164 match community 1_125_181 1_126_180 1_127_179 1_128_178 1_129_177 set community 0:306 route-map calculator permit 16165 match community 1_130_176 1_131_175 1_132_174 1_133_173 1_134_172 set community 0:306 route-map calculator permit 16166 match community 1_135_171 1_136_170 1_137_169 1_138_168 1_139_167 set community 0:306 route-map calculator permit 16167 match community 1_140_166 1_141_165 1_142_164 1_143_163 1_144_162 set community 0:306 route-map calculator permit 16168 match community 1_145_161 1_146_160 1_147_159 1_148_158 1_149_157 set community 0:306 route-map calculator permit 16169 match community 1_150_156 1_151_155 1_152_154 1_153_153 set community 0:306 ip community-list standard 2_123_149 permit 65000:2 0:123 0:149 route-map calculator permit 16170 match community 2_123_149 set community 0:18327 ip community-list standard 2_240_254 permit 65000:2 0:240 0:254 route-map calculator permit 16171 match community 2_240_254 set community 0:60960 ip community-list standard 2_83_121 permit 65000:2 0:83 0:121 route-map calculator permit 16172 match community 2_83_121 set community 0:10043 ip community-list standard 2_7_245 permit 65000:2 0:7 0:245 ip community-list standard 2_35_49 permit 65000:2 0:35 0:49 route-map calculator permit 16173 match community 2_7_245 2_35_49 set community 0:1715 ip community-list standard 2_62_256 permit 65000:2 0:62 0:256 ip community-list standard 2_64_248 permit 65000:2 0:64 0:248 ip community-list standard 2_124_128 permit 65000:2 0:124 0:128 route-map calculator permit 16174 match community 2_62_256 2_64_248 2_124_128 set community 0:15872 ip community-list standard 2_142_241 permit 65000:2 0:142 0:241 route-map calculator permit 16175 match community 2_142_241 set community 0:34222 ip community-list standard 2_58_195 permit 65000:2 0:58 0:195 ip community-list standard 2_65_174 permit 65000:2 0:65 0:174 ip community-list standard 2_78_145 permit 65000:2 0:78 0:145 ip community-list standard 2_87_130 permit 65000:2 0:87 0:130 route-map calculator permit 16176 match community 2_58_195 2_65_174 2_78_145 2_87_130 set community 0:11310 ip community-list standard 2_56_173 permit 65000:2 0:56 0:173 route-map calculator permit 16177 match community 2_56_173 set community 0:9688 ip community-list standard 2_76_230 permit 65000:2 0:76 0:230 ip community-list standard 2_92_190 permit 65000:2 0:92 0:190 ip community-list standard 2_95_184 permit 65000:2 0:95 0:184 ip community-list standard 2_115_152 permit 65000:2 0:115 0:152 route-map calculator permit 16178 match community 2_76_230 2_92_190 2_95_184 2_115_152 set community 0:17480 ip community-list standard 1_1_255 permit 65000:1 0:1 0:255 ip community-list standard 2_1_256 permit 65000:2 0:1 0:256 ip community-list standard 2_2_128 permit 65000:2 0:2 0:128 ip community-list standard 1_2_254 permit 65000:1 0:2 0:254 ip community-list standard 1_3_253 permit 65000:1 0:3 0:253 ip community-list standard 2_4_64 permit 65000:2 0:4 0:64 ip community-list standard 1_4_252 permit 65000:1 0:4 0:252 ip community-list standard 1_5_251 permit 65000:1 0:5 0:251 ip community-list standard 1_6_250 permit 65000:1 0:6 0:250 ip community-list standard 1_7_249 permit 65000:1 0:7 0:249 ip community-list standard 2_8_32 permit 65000:2 0:8 0:32 ip community-list standard 1_8_248 permit 65000:1 0:8 0:248 ip community-list standard 1_9_247 permit 65000:1 0:9 0:247 ip community-list standard 1_10_246 permit 65000:1 0:10 0:246 ip community-list standard 1_11_245 permit 65000:1 0:11 0:245 ip community-list standard 1_12_244 permit 65000:1 0:12 0:244 ip community-list standard 1_13_243 permit 65000:1 0:13 0:243 ip community-list standard 1_14_242 permit 65000:1 0:14 0:242 ip community-list standard 1_15_241 permit 65000:1 0:15 0:241 ip community-list standard 2_16_16 permit 65000:2 0:16 0:16 ip community-list standard 1_16_240 permit 65000:1 0:16 0:240 ip community-list standard 1_17_239 permit 65000:1 0:17 0:239 ip community-list standard 1_18_238 permit 65000:1 0:18 0:238 ip community-list standard 1_19_237 permit 65000:1 0:19 0:237 ip community-list standard 1_20_236 permit 65000:1 0:20 0:236 ip community-list standard 1_21_235 permit 65000:1 0:21 0:235 ip community-list standard 1_22_234 permit 65000:1 0:22 0:234 ip community-list standard 1_23_233 permit 65000:1 0:23 0:233 ip community-list standard 1_24_232 permit 65000:1 0:24 0:232 ip community-list standard 1_25_231 permit 65000:1 0:25 0:231 ip community-list standard 1_26_230 permit 65000:1 0:26 0:230 ip community-list standard 1_27_229 permit 65000:1 0:27 0:229 ip community-list standard 1_28_228 permit 65000:1 0:28 0:228 ip community-list standard 1_29_227 permit 65000:1 0:29 0:227 ip community-list standard 1_30_226 permit 65000:1 0:30 0:226 ip community-list standard 1_31_225 permit 65000:1 0:31 0:225 ip community-list standard 1_32_224 permit 65000:1 0:32 0:224 ip community-list standard 1_33_223 permit 65000:1 0:33 0:223 ip community-list standard 1_34_222 permit 65000:1 0:34 0:222 ip community-list standard 1_35_221 permit 65000:1 0:35 0:221 ip community-list standard 1_36_220 permit 65000:1 0:36 0:220 ip community-list standard 1_37_219 permit 65000:1 0:37 0:219 ip community-list standard 1_38_218 permit 65000:1 0:38 0:218 ip community-list standard 1_39_217 permit 65000:1 0:39 0:217 ip community-list standard 1_40_216 permit 65000:1 0:40 0:216 ip community-list standard 1_41_215 permit 65000:1 0:41 0:215 ip community-list standard 1_42_214 permit 65000:1 0:42 0:214 ip community-list standard 1_43_213 permit 65000:1 0:43 0:213 ip community-list standard 1_44_212 permit 65000:1 0:44 0:212 ip community-list standard 1_45_211 permit 65000:1 0:45 0:211 ip community-list standard 1_46_210 permit 65000:1 0:46 0:210 ip community-list standard 1_47_209 permit 65000:1 0:47 0:209 ip community-list standard 1_48_208 permit 65000:1 0:48 0:208 ip community-list standard 1_49_207 permit 65000:1 0:49 0:207 ip community-list standard 1_50_206 permit 65000:1 0:50 0:206 ip community-list standard 1_51_205 permit 65000:1 0:51 0:205 ip community-list standard 1_52_204 permit 65000:1 0:52 0:204 ip community-list standard 1_53_203 permit 65000:1 0:53 0:203 ip community-list standard 1_54_202 permit 65000:1 0:54 0:202 ip community-list standard 1_55_201 permit 65000:1 0:55 0:201 ip community-list standard 1_56_200 permit 65000:1 0:56 0:200 ip community-list standard 1_57_199 permit 65000:1 0:57 0:199 ip community-list standard 1_58_198 permit 65000:1 0:58 0:198 ip community-list standard 1_59_197 permit 65000:1 0:59 0:197 ip community-list standard 1_60_196 permit 65000:1 0:60 0:196 ip community-list standard 1_61_195 permit 65000:1 0:61 0:195 ip community-list standard 1_62_194 permit 65000:1 0:62 0:194 ip community-list standard 1_63_193 permit 65000:1 0:63 0:193 ip community-list standard 1_64_192 permit 65000:1 0:64 0:192 ip community-list standard 1_65_191 permit 65000:1 0:65 0:191 ip community-list standard 1_66_190 permit 65000:1 0:66 0:190 ip community-list standard 1_67_189 permit 65000:1 0:67 0:189 ip community-list standard 1_68_188 permit 65000:1 0:68 0:188 ip community-list standard 1_69_187 permit 65000:1 0:69 0:187 ip community-list standard 1_70_186 permit 65000:1 0:70 0:186 ip community-list standard 1_71_185 permit 65000:1 0:71 0:185 ip community-list standard 1_72_184 permit 65000:1 0:72 0:184 ip community-list standard 1_73_183 permit 65000:1 0:73 0:183 ip community-list standard 1_74_182 permit 65000:1 0:74 0:182 ip community-list standard 1_75_181 permit 65000:1 0:75 0:181 ip community-list standard 1_76_180 permit 65000:1 0:76 0:180 ip community-list standard 1_77_179 permit 65000:1 0:77 0:179 ip community-list standard 1_78_178 permit 65000:1 0:78 0:178 ip community-list standard 1_79_177 permit 65000:1 0:79 0:177 ip community-list standard 1_80_176 permit 65000:1 0:80 0:176 ip community-list standard 1_81_175 permit 65000:1 0:81 0:175 ip community-list standard 1_82_174 permit 65000:1 0:82 0:174 ip community-list standard 1_83_173 permit 65000:1 0:83 0:173 ip community-list standard 1_84_172 permit 65000:1 0:84 0:172 ip community-list standard 1_85_171 permit 65000:1 0:85 0:171 ip community-list standard 1_86_170 permit 65000:1 0:86 0:170 ip community-list standard 1_87_169 permit 65000:1 0:87 0:169 ip community-list standard 1_88_168 permit 65000:1 0:88 0:168 ip community-list standard 1_89_167 permit 65000:1 0:89 0:167 ip community-list standard 1_90_166 permit 65000:1 0:90 0:166 ip community-list standard 1_91_165 permit 65000:1 0:91 0:165 ip community-list standard 1_92_164 permit 65000:1 0:92 0:164 ip community-list standard 1_93_163 permit 65000:1 0:93 0:163 ip community-list standard 1_94_162 permit 65000:1 0:94 0:162 ip community-list standard 1_95_161 permit 65000:1 0:95 0:161 ip community-list standard 1_96_160 permit 65000:1 0:96 0:160 ip community-list standard 1_97_159 permit 65000:1 0:97 0:159 ip community-list standard 1_98_158 permit 65000:1 0:98 0:158 ip community-list standard 1_99_157 permit 65000:1 0:99 0:157 ip community-list standard 1_100_156 permit 65000:1 0:100 0:156 ip community-list standard 1_101_155 permit 65000:1 0:101 0:155 ip community-list standard 1_102_154 permit 65000:1 0:102 0:154 ip community-list standard 1_103_153 permit 65000:1 0:103 0:153 ip community-list standard 1_104_152 permit 65000:1 0:104 0:152 ip community-list standard 1_105_151 permit 65000:1 0:105 0:151 ip community-list standard 1_106_150 permit 65000:1 0:106 0:150 ip community-list standard 1_107_149 permit 65000:1 0:107 0:149 ip community-list standard 1_108_148 permit 65000:1 0:108 0:148 ip community-list standard 1_109_147 permit 65000:1 0:109 0:147 ip community-list standard 1_110_146 permit 65000:1 0:110 0:146 ip community-list standard 1_111_145 permit 65000:1 0:111 0:145 ip community-list standard 1_112_144 permit 65000:1 0:112 0:144 ip community-list standard 1_113_143 permit 65000:1 0:113 0:143 ip community-list standard 1_114_142 permit 65000:1 0:114 0:142 ip community-list standard 1_115_141 permit 65000:1 0:115 0:141 ip community-list standard 1_116_140 permit 65000:1 0:116 0:140 ip community-list standard 1_117_139 permit 65000:1 0:117 0:139 ip community-list standard 1_118_138 permit 65000:1 0:118 0:138 ip community-list standard 1_119_137 permit 65000:1 0:119 0:137 ip community-list standard 1_120_136 permit 65000:1 0:120 0:136 ip community-list standard 1_121_135 permit 65000:1 0:121 0:135 ip community-list standard 1_122_134 permit 65000:1 0:122 0:134 ip community-list standard 1_123_133 permit 65000:1 0:123 0:133 ip community-list standard 1_124_132 permit 65000:1 0:124 0:132 ip community-list standard 1_125_131 permit 65000:1 0:125 0:131 ip community-list standard 1_126_130 permit 65000:1 0:126 0:130 ip community-list standard 1_127_129 permit 65000:1 0:127 0:129 ip community-list standard 1_128_128 permit 65000:1 0:128 0:128 ip community-list expanded c256 permit 1 ^65000:4_0:256_0:1$ route-map calculator permit 16179 match community 1_1_255 2_1_256 2_2_128 1_2_254 1_3_253 set community 0:256 route-map calculator permit 16180 match community 2_4_64 1_4_252 1_5_251 1_6_250 1_7_249 set community 0:256 route-map calculator permit 16181 match community 2_8_32 1_8_248 1_9_247 1_10_246 1_11_245 set community 0:256 route-map calculator permit 16182 match community 1_12_244 1_13_243 1_14_242 1_15_241 2_16_16 set community 0:256 route-map calculator permit 16183 match community 1_16_240 1_17_239 1_18_238 1_19_237 1_20_236 set community 0:256 route-map calculator permit 16184 match community 1_21_235 1_22_234 1_23_233 1_24_232 1_25_231 set community 0:256 route-map calculator permit 16185 match community 1_26_230 1_27_229 1_28_228 1_29_227 1_30_226 set community 0:256 route-map calculator permit 16186 match community 1_31_225 1_32_224 1_33_223 1_34_222 1_35_221 set community 0:256 route-map calculator permit 16187 match community 1_36_220 1_37_219 1_38_218 1_39_217 1_40_216 set community 0:256 route-map calculator permit 16188 match community 1_41_215 1_42_214 1_43_213 1_44_212 1_45_211 set community 0:256 route-map calculator permit 16189 match community 1_46_210 1_47_209 1_48_208 1_49_207 1_50_206 set community 0:256 route-map calculator permit 16190 match community 1_51_205 1_52_204 1_53_203 1_54_202 1_55_201 set community 0:256 route-map calculator permit 16191 match community 1_56_200 1_57_199 1_58_198 1_59_197 1_60_196 set community 0:256 route-map calculator permit 16192 match community 1_61_195 1_62_194 1_63_193 1_64_192 1_65_191 set community 0:256 route-map calculator permit 16193 match community 1_66_190 1_67_189 1_68_188 1_69_187 1_70_186 set community 0:256 route-map calculator permit 16194 match community 1_71_185 1_72_184 1_73_183 1_74_182 1_75_181 set community 0:256 route-map calculator permit 16195 match community 1_76_180 1_77_179 1_78_178 1_79_177 1_80_176 set community 0:256 route-map calculator permit 16196 match community 1_81_175 1_82_174 1_83_173 1_84_172 1_85_171 set community 0:256 route-map calculator permit 16197 match community 1_86_170 1_87_169 1_88_168 1_89_167 1_90_166 set community 0:256 route-map calculator permit 16198 match community 1_91_165 1_92_164 1_93_163 1_94_162 1_95_161 set community 0:256 route-map calculator permit 16199 match community 1_96_160 1_97_159 1_98_158 1_99_157 1_100_156 set community 0:256 route-map calculator permit 16200 match community 1_101_155 1_102_154 1_103_153 1_104_152 1_105_151 set community 0:256 route-map calculator permit 16201 match community 1_106_150 1_107_149 1_108_148 1_109_147 1_110_146 set community 0:256 route-map calculator permit 16202 match community 1_111_145 1_112_144 1_113_143 1_114_142 1_115_141 set community 0:256 route-map calculator permit 16203 match community 1_116_140 1_117_139 1_118_138 1_119_137 1_120_136 set community 0:256 route-map calculator permit 16204 match community 1_121_135 1_122_134 1_123_133 1_124_132 1_125_131 set community 0:256 route-map calculator permit 16205 match community 1_126_130 1_127_129 1_128_128 c4_256_1 set community 0:256 ip community-list standard 2_84_157 permit 65000:2 0:84 0:157 route-map calculator permit 16206 match community 2_84_157 set community 0:13188 ip community-list standard 2_10_227 permit 65000:2 0:10 0:227 route-map calculator permit 16207 match community 2_10_227 set community 0:2270 ip community-list standard 2_72_167 permit 65000:2 0:72 0:167 route-map calculator permit 16208 match community 2_72_167 set community 0:12024 ip community-list standard 2_59_97 permit 65000:2 0:59 0:97 route-map calculator permit 16209 match community 2_59_97 set community 0:5723 ip community-list standard 2_61_198 permit 65000:2 0:61 0:198 ip community-list standard 2_66_183 permit 65000:2 0:66 0:183 ip community-list standard 2_99_122 permit 65000:2 0:99 0:122 route-map calculator permit 16210 match community 2_61_198 2_66_183 2_99_122 set community 0:12078 ip community-list standard 2_125_235 permit 65000:2 0:125 0:235 route-map calculator permit 16211 match community 2_125_235 set community 0:29375 ip community-list standard 2_197_229 permit 65000:2 0:197 0:229 route-map calculator permit 16212 match community 2_197_229 set community 0:45113 ip community-list standard 2_119_197 permit 65000:2 0:119 0:197 route-map calculator permit 16213 match community 2_119_197 set community 0:23443 ip community-list standard 2_237_238 permit 65000:2 0:237 0:238 route-map calculator permit 16214 match community 2_237_238 set community 0:56406 ip community-list standard 2_72_172 permit 65000:2 0:72 0:172 ip community-list standard 2_86_144 permit 65000:2 0:86 0:144 ip community-list standard 2_96_129 permit 65000:2 0:96 0:129 route-map calculator permit 16215 match community 2_72_172 2_86_144 2_96_129 set community 0:12384 ip community-list standard 2_22_251 permit 65000:2 0:22 0:251 route-map calculator permit 16216 match community 2_22_251 set community 0:5522 ip community-list standard 2_168_199 permit 65000:2 0:168 0:199 route-map calculator permit 16217 match community 2_168_199 set community 0:33432 ip community-list standard 2_41_243 permit 65000:2 0:41 0:243 ip community-list standard 2_81_123 permit 65000:2 0:81 0:123 route-map calculator permit 16218 match community 2_41_243 2_81_123 set community 0:9963 ip community-list standard 2_29_214 permit 65000:2 0:29 0:214 ip community-list standard 2_58_107 permit 65000:2 0:58 0:107 route-map calculator permit 16219 match community 2_29_214 2_58_107 set community 0:6206 ip community-list standard 2_147_233 permit 65000:2 0:147 0:233 route-map calculator permit 16220 match community 2_147_233 set community 0:34251 ip community-list standard 2_119_189 permit 65000:2 0:119 0:189 ip community-list standard 2_147_153 permit 65000:2 0:147 0:153 route-map calculator permit 16221 match community 2_119_189 2_147_153 set community 0:22491 ip community-list standard 2_36_253 permit 65000:2 0:36 0:253 ip community-list standard 2_44_207 permit 65000:2 0:44 0:207 ip community-list standard 2_46_198 permit 65000:2 0:46 0:198 ip community-list standard 2_66_138 permit 65000:2 0:66 0:138 ip community-list standard 2_69_132 permit 65000:2 0:69 0:132 ip community-list standard 2_92_99 permit 65000:2 0:92 0:99 route-map calculator permit 16222 match community 2_36_253 2_44_207 2_46_198 2_66_138 2_69_132 set community 0:9108 route-map calculator permit 16223 match community 2_92_99 set community 0:9108 ip community-list standard 2_108_236 permit 65000:2 0:108 0:236 ip community-list standard 2_118_216 permit 65000:2 0:118 0:216 ip community-list standard 2_144_177 permit 65000:2 0:144 0:177 route-map calculator permit 16224 match community 2_108_236 2_118_216 2_144_177 set community 0:25488 ip community-list standard 2_76_196 permit 65000:2 0:76 0:196 ip community-list standard 2_98_152 permit 65000:2 0:98 0:152 ip community-list standard 2_112_133 permit 65000:2 0:112 0:133 route-map calculator permit 16225 match community 2_76_196 2_98_152 2_112_133 set community 0:14896 ip community-list standard 2_125_245 permit 65000:2 0:125 0:245 ip community-list standard 2_175_175 permit 65000:2 0:175 0:175 route-map calculator permit 16226 match community 2_125_245 2_175_175 set community 0:30625 ip community-list standard 2_204_211 permit 65000:2 0:204 0:211 route-map calculator permit 16227 match community 2_204_211 set community 0:43044 ip community-list standard 2_80_253 permit 65000:2 0:80 0:253 ip community-list standard 2_88_230 permit 65000:2 0:88 0:230 ip community-list standard 2_92_220 permit 65000:2 0:92 0:220 ip community-list standard 2_110_184 permit 65000:2 0:110 0:184 ip community-list standard 2_115_176 permit 65000:2 0:115 0:176 route-map calculator permit 16228 match community 2_80_253 2_88_230 2_92_220 2_110_184 2_115_176 set community 0:20240 ip community-list standard 2_5_173 permit 65000:2 0:5 0:173 route-map calculator permit 16229 match community 2_5_173 set community 0:865 ip community-list standard 2_240_246 permit 65000:2 0:240 0:246 route-map calculator permit 16230 match community 2_240_246 set community 0:59040 ip community-list standard 2_84_217 permit 65000:2 0:84 0:217 ip community-list standard 2_93_196 permit 65000:2 0:93 0:196 ip community-list standard 2_98_186 permit 65000:2 0:98 0:186 ip community-list standard 2_124_147 permit 65000:2 0:124 0:147 route-map calculator permit 16231 match community 2_84_217 2_93_196 2_98_186 2_124_147 set community 0:18228 ip community-list standard 2_85_253 permit 65000:2 0:85 0:253 ip community-list standard 2_115_187 permit 65000:2 0:115 0:187 route-map calculator permit 16232 match community 2_85_253 2_115_187 set community 0:21505 ip community-list standard 2_25_121 permit 65000:2 0:25 0:121 ip community-list standard 2_55_55 permit 65000:2 0:55 0:55 route-map calculator permit 16233 match community 2_25_121 2_55_55 set community 0:3025 ip community-list standard 2_28_219 permit 65000:2 0:28 0:219 ip community-list standard 2_42_146 permit 65000:2 0:42 0:146 ip community-list standard 2_73_84 permit 65000:2 0:73 0:84 route-map calculator permit 16234 match community 2_28_219 2_42_146 2_73_84 set community 0:6132 ip community-list standard 2_120_211 permit 65000:2 0:120 0:211 route-map calculator permit 16235 match community 2_120_211 set community 0:25320 ip community-list standard 2_99_238 permit 65000:2 0:99 0:238 ip community-list standard 2_102_231 permit 65000:2 0:102 0:231 ip community-list standard 2_119_198 permit 65000:2 0:119 0:198 ip community-list standard 2_126_187 permit 65000:2 0:126 0:187 ip community-list standard 2_153_154 permit 65000:2 0:153 0:154 route-map calculator permit 16236 match community 2_99_238 2_102_231 2_119_198 2_126_187 2_153_154 set community 0:23562 ip community-list standard 2_40_245 permit 65000:2 0:40 0:245 ip community-list standard 2_49_200 permit 65000:2 0:49 0:200 ip community-list standard 2_50_196 permit 65000:2 0:50 0:196 ip community-list standard 2_56_175 permit 65000:2 0:56 0:175 ip community-list standard 2_70_140 permit 65000:2 0:70 0:140 ip community-list standard 2_98_100 permit 65000:2 0:98 0:100 route-map calculator permit 16237 match community 2_40_245 2_49_200 2_50_196 2_56_175 2_70_140 set community 0:9800 route-map calculator permit 16238 match community 2_98_100 set community 0:9800 ip community-list standard 2_188_244 permit 65000:2 0:188 0:244 route-map calculator permit 16239 match community 2_188_244 set community 0:45872 ip community-list standard 2_168_211 permit 65000:2 0:168 0:211 route-map calculator permit 16240 match community 2_168_211 set community 0:35448 ip community-list standard 2_149_194 permit 65000:2 0:149 0:194 route-map calculator permit 16241 match community 2_149_194 set community 0:28906 ip community-list standard 2_76_227 permit 65000:2 0:76 0:227 route-map calculator permit 16242 match community 2_76_227 set community 0:17252 ip community-list standard 2_70_243 permit 65000:2 0:70 0:243 ip community-list standard 2_81_210 permit 65000:2 0:81 0:210 ip community-list standard 2_90_189 permit 65000:2 0:90 0:189 ip community-list standard 2_105_162 permit 65000:2 0:105 0:162 ip community-list standard 2_126_135 permit 65000:2 0:126 0:135 route-map calculator permit 16243 match community 2_70_243 2_81_210 2_90_189 2_105_162 2_126_135 set community 0:17010 ip community-list standard 2_23_252 permit 65000:2 0:23 0:252 ip community-list standard 2_28_207 permit 65000:2 0:28 0:207 ip community-list standard 2_36_161 permit 65000:2 0:36 0:161 ip community-list standard 2_42_138 permit 65000:2 0:42 0:138 ip community-list standard 2_46_126 permit 65000:2 0:46 0:126 ip community-list standard 2_63_92 permit 65000:2 0:63 0:92 ip community-list standard 2_69_84 permit 65000:2 0:69 0:84 route-map calculator permit 16244 match community 2_23_252 2_28_207 2_36_161 2_42_138 2_46_126 set community 0:5796 route-map calculator permit 16245 match community 2_63_92 2_69_84 set community 0:5796 ip community-list standard 2_39_250 permit 65000:2 0:39 0:250 ip community-list standard 2_50_195 permit 65000:2 0:50 0:195 ip community-list standard 2_65_150 permit 65000:2 0:65 0:150 ip community-list standard 2_75_130 permit 65000:2 0:75 0:130 ip community-list standard 2_78_125 permit 65000:2 0:78 0:125 route-map calculator permit 16246 match community 2_39_250 2_50_195 2_65_150 2_75_130 2_78_125 set community 0:9750 ip community-list standard 2_95_197 permit 65000:2 0:95 0:197 route-map calculator permit 16247 match community 2_95_197 set community 0:18715 ip community-list standard 2_101_241 permit 65000:2 0:101 0:241 route-map calculator permit 16248 match community 2_101_241 set community 0:24341 ip community-list standard 2_41_194 permit 65000:2 0:41 0:194 ip community-list standard 2_82_97 permit 65000:2 0:82 0:97 route-map calculator permit 16249 match community 2_41_194 2_82_97 set community 0:7954 ip community-list standard 2_137_204 permit 65000:2 0:137 0:204 route-map calculator permit 16250 match community 2_137_204 set community 0:27948 ip community-list standard 2_42_163 permit 65000:2 0:42 0:163 route-map calculator permit 16251 match community 2_42_163 set community 0:6846 ip community-list standard 2_13_225 permit 65000:2 0:13 0:225 ip community-list standard 2_15_195 permit 65000:2 0:15 0:195 ip community-list standard 2_25_117 permit 65000:2 0:25 0:117 ip community-list standard 2_39_75 permit 65000:2 0:39 0:75 ip community-list standard 2_45_65 permit 65000:2 0:45 0:65 route-map calculator permit 16252 match community 2_13_225 2_15_195 2_25_117 2_39_75 2_45_65 set community 0:2925 ip community-list standard 2_42_215 permit 65000:2 0:42 0:215 ip community-list standard 2_43_210 permit 65000:2 0:43 0:210 ip community-list standard 2_70_129 permit 65000:2 0:70 0:129 ip community-list standard 2_86_105 permit 65000:2 0:86 0:105 route-map calculator permit 16253 match community 2_42_215 2_43_210 2_70_129 2_86_105 set community 0:9030 ip community-list standard 2_136_199 permit 65000:2 0:136 0:199 route-map calculator permit 16254 match community 2_136_199 set community 0:27064 ip community-list standard 2_7_251 permit 65000:2 0:7 0:251 route-map calculator permit 16255 match community 2_7_251 set community 0:1757 ip community-list standard 2_36_254 permit 65000:2 0:36 0:254 ip community-list standard 2_72_127 permit 65000:2 0:72 0:127 route-map calculator permit 16256 match community 2_36_254 2_72_127 set community 0:9144 ip community-list standard 2_139_142 permit 65000:2 0:139 0:142 route-map calculator permit 16257 match community 2_139_142 set community 0:19738 ip community-list standard 2_151_249 permit 65000:2 0:151 0:249 route-map calculator permit 16258 match community 2_151_249 set community 0:37599 ip community-list standard 2_189_231 permit 65000:2 0:189 0:231 route-map calculator permit 16259 match community 2_189_231 set community 0:43659 ip community-list standard 2_65_235 permit 65000:2 0:65 0:235 route-map calculator permit 16260 match community 2_65_235 set community 0:15275 ip community-list standard 2_162_247 permit 65000:2 0:162 0:247 ip community-list standard 2_171_234 permit 65000:2 0:171 0:234 route-map calculator permit 16261 match community 2_162_247 2_171_234 set community 0:40014 ip community-list standard 2_137_237 permit 65000:2 0:137 0:237 route-map calculator permit 16262 match community 2_137_237 set community 0:32469 ip community-list standard 2_79_252 permit 65000:2 0:79 0:252 ip community-list standard 2_84_237 permit 65000:2 0:84 0:237 ip community-list standard 2_126_158 permit 65000:2 0:126 0:158 route-map calculator permit 16263 match community 2_79_252 2_84_237 2_126_158 set community 0:19908 ip community-list standard 2_86_253 permit 65000:2 0:86 0:253 route-map calculator permit 16264 match community 2_86_253 set community 0:21758 ip community-list standard 2_147_161 permit 65000:2 0:147 0:161 route-map calculator permit 16265 match community 2_147_161 set community 0:23667 ip community-list standard 2_153_167 permit 65000:2 0:153 0:167 route-map calculator permit 16266 match community 2_153_167 set community 0:25551 ip community-list standard 2_45_237 permit 65000:2 0:45 0:237 ip community-list standard 2_79_135 permit 65000:2 0:79 0:135 route-map calculator permit 16267 match community 2_45_237 2_79_135 set community 0:10665 ip community-list standard 2_29_155 permit 65000:2 0:29 0:155 ip community-list standard 2_31_145 permit 65000:2 0:31 0:145 route-map calculator permit 16268 match community 2_29_155 2_31_145 set community 0:4495 ip community-list standard 2_221_247 permit 65000:2 0:221 0:247 route-map calculator permit 16269 match community 2_221_247 set community 0:54587 ip community-list standard 2_11_215 permit 65000:2 0:11 0:215 ip community-list standard 2_43_55 permit 65000:2 0:43 0:55 route-map calculator permit 16270 match community 2_11_215 2_43_55 set community 0:2365 ip community-list standard 2_175_242 permit 65000:2 0:175 0:242 route-map calculator permit 16271 match community 2_175_242 set community 0:42350 ip community-list standard 2_188_245 permit 65000:2 0:188 0:245 ip community-list standard 2_196_235 permit 65000:2 0:196 0:235 route-map calculator permit 16272 match community 2_188_245 2_196_235 set community 0:46060 ip community-list standard 2_148_249 permit 65000:2 0:148 0:249 ip community-list standard 2_166_222 permit 65000:2 0:166 0:222 route-map calculator permit 16273 match community 2_148_249 2_166_222 set community 0:36852 ip community-list standard 2_106_227 permit 65000:2 0:106 0:227 route-map calculator permit 16274 match community 2_106_227 set community 0:24062 ip community-list standard 2_51_153 permit 65000:2 0:51 0:153 route-map calculator permit 16275 match community 2_51_153 set community 0:7803 ip community-list standard 2_6_171 permit 65000:2 0:6 0:171 ip community-list standard 2_9_114 permit 65000:2 0:9 0:114 ip community-list standard 2_18_57 permit 65000:2 0:18 0:57 ip community-list standard 2_19_54 permit 65000:2 0:19 0:54 ip community-list standard 2_27_38 permit 65000:2 0:27 0:38 route-map calculator permit 16276 match community 2_6_171 2_9_114 2_18_57 2_19_54 2_27_38 set community 0:1026 ip community-list standard 2_228_229 permit 65000:2 0:228 0:229 route-map calculator permit 16277 match community 2_228_229 set community 0:52212 ip community-list standard 2_128_211 permit 65000:2 0:128 0:211 route-map calculator permit 16278 match community 2_128_211 set community 0:27008 ip community-list standard 2_109_224 permit 65000:2 0:109 0:224 ip community-list standard 2_112_218 permit 65000:2 0:112 0:218 route-map calculator permit 16279 match community 2_109_224 2_112_218 set community 0:24416 ip community-list standard 2_143_208 permit 65000:2 0:143 0:208 ip community-list standard 2_169_176 permit 65000:2 0:169 0:176 route-map calculator permit 16280 match community 2_143_208 2_169_176 set community 0:29744 ip community-list standard 2_69_240 permit 65000:2 0:69 0:240 ip community-list standard 2_72_230 permit 65000:2 0:72 0:230 ip community-list standard 2_80_207 permit 65000:2 0:80 0:207 ip community-list standard 2_90_184 permit 65000:2 0:90 0:184 ip community-list standard 2_92_180 permit 65000:2 0:92 0:180 ip community-list standard 2_115_144 permit 65000:2 0:115 0:144 ip community-list standard 2_120_138 permit 65000:2 0:120 0:138 route-map calculator permit 16281 match community 2_69_240 2_72_230 2_80_207 2_90_184 2_92_180 set community 0:16560 route-map calculator permit 16282 match community 2_115_144 2_120_138 set community 0:16560 ip community-list standard 2_79_221 permit 65000:2 0:79 0:221 route-map calculator permit 16283 match community 2_79_221 set community 0:17459 ip community-list standard 2_92_228 permit 65000:2 0:92 0:228 ip community-list standard 2_114_184 permit 65000:2 0:114 0:184 ip community-list standard 2_138_152 permit 65000:2 0:138 0:152 route-map calculator permit 16284 match community 2_92_228 2_114_184 2_138_152 set community 0:20976 ip community-list standard 2_142_237 permit 65000:2 0:142 0:237 ip community-list standard 2_158_213 permit 65000:2 0:158 0:213 route-map calculator permit 16285 match community 2_142_237 2_158_213 set community 0:33654 ip community-list standard 2_50_134 permit 65000:2 0:50 0:134 ip community-list standard 2_67_100 permit 65000:2 0:67 0:100 route-map calculator permit 16286 match community 2_50_134 2_67_100 set community 0:6700 ip community-list standard 2_50_239 permit 65000:2 0:50 0:239 route-map calculator permit 16287 match community 2_50_239 set community 0:11950 ip community-list standard 2_151_184 permit 65000:2 0:151 0:184 route-map calculator permit 16288 match community 2_151_184 set community 0:27784 ip community-list standard 2_194_231 permit 65000:2 0:194 0:231 route-map calculator permit 16289 match community 2_194_231 set community 0:44814 ip community-list standard 2_49_206 permit 65000:2 0:49 0:206 ip community-list standard 2_98_103 permit 65000:2 0:98 0:103 route-map calculator permit 16290 match community 2_49_206 2_98_103 set community 0:10094 ip community-list standard 1_1_117 permit 65000:1 0:1 0:117 ip community-list standard 2_1_118 permit 65000:2 0:1 0:118 ip community-list standard 2_2_59 permit 65000:2 0:2 0:59 ip community-list standard 1_2_116 permit 65000:1 0:2 0:116 ip community-list standard 1_3_115 permit 65000:1 0:3 0:115 ip community-list standard 1_4_114 permit 65000:1 0:4 0:114 ip community-list standard 1_5_113 permit 65000:1 0:5 0:113 ip community-list standard 1_6_112 permit 65000:1 0:6 0:112 ip community-list standard 1_7_111 permit 65000:1 0:7 0:111 ip community-list standard 1_8_110 permit 65000:1 0:8 0:110 ip community-list standard 1_9_109 permit 65000:1 0:9 0:109 ip community-list standard 1_10_108 permit 65000:1 0:10 0:108 ip community-list standard 1_11_107 permit 65000:1 0:11 0:107 ip community-list standard 1_12_106 permit 65000:1 0:12 0:106 ip community-list standard 1_13_105 permit 65000:1 0:13 0:105 ip community-list standard 1_14_104 permit 65000:1 0:14 0:104 ip community-list standard 1_15_103 permit 65000:1 0:15 0:103 ip community-list standard 1_16_102 permit 65000:1 0:16 0:102 ip community-list standard 1_17_101 permit 65000:1 0:17 0:101 ip community-list standard 1_18_100 permit 65000:1 0:18 0:100 ip community-list standard 1_19_99 permit 65000:1 0:19 0:99 ip community-list standard 1_20_98 permit 65000:1 0:20 0:98 ip community-list standard 1_21_97 permit 65000:1 0:21 0:97 ip community-list standard 1_22_96 permit 65000:1 0:22 0:96 ip community-list standard 1_23_95 permit 65000:1 0:23 0:95 ip community-list standard 1_24_94 permit 65000:1 0:24 0:94 ip community-list standard 1_25_93 permit 65000:1 0:25 0:93 ip community-list standard 1_26_92 permit 65000:1 0:26 0:92 ip community-list standard 1_27_91 permit 65000:1 0:27 0:91 ip community-list standard 1_28_90 permit 65000:1 0:28 0:90 ip community-list standard 1_29_89 permit 65000:1 0:29 0:89 ip community-list standard 1_30_88 permit 65000:1 0:30 0:88 ip community-list standard 1_31_87 permit 65000:1 0:31 0:87 ip community-list standard 1_32_86 permit 65000:1 0:32 0:86 ip community-list standard 1_33_85 permit 65000:1 0:33 0:85 ip community-list standard 1_34_84 permit 65000:1 0:34 0:84 ip community-list standard 1_35_83 permit 65000:1 0:35 0:83 ip community-list standard 1_36_82 permit 65000:1 0:36 0:82 ip community-list standard 1_37_81 permit 65000:1 0:37 0:81 ip community-list standard 1_38_80 permit 65000:1 0:38 0:80 ip community-list standard 1_39_79 permit 65000:1 0:39 0:79 ip community-list standard 1_40_78 permit 65000:1 0:40 0:78 ip community-list standard 1_41_77 permit 65000:1 0:41 0:77 ip community-list standard 1_42_76 permit 65000:1 0:42 0:76 ip community-list standard 1_43_75 permit 65000:1 0:43 0:75 ip community-list standard 1_44_74 permit 65000:1 0:44 0:74 ip community-list standard 1_45_73 permit 65000:1 0:45 0:73 ip community-list standard 1_46_72 permit 65000:1 0:46 0:72 ip community-list standard 1_47_71 permit 65000:1 0:47 0:71 ip community-list standard 1_48_70 permit 65000:1 0:48 0:70 ip community-list standard 1_49_69 permit 65000:1 0:49 0:69 ip community-list standard 1_50_68 permit 65000:1 0:50 0:68 ip community-list standard 1_51_67 permit 65000:1 0:51 0:67 ip community-list standard 1_52_66 permit 65000:1 0:52 0:66 ip community-list standard 1_53_65 permit 65000:1 0:53 0:65 ip community-list standard 1_54_64 permit 65000:1 0:54 0:64 ip community-list standard 1_55_63 permit 65000:1 0:55 0:63 ip community-list standard 1_56_62 permit 65000:1 0:56 0:62 ip community-list standard 1_57_61 permit 65000:1 0:57 0:61 ip community-list standard 1_58_60 permit 65000:1 0:58 0:60 ip community-list standard 1_59_59 permit 65000:1 0:59 0:59 ip community-list expanded c118 permit 1 ^65000:4_0:118_0:1$ ip community-list expanded c118 permit 2 ^65000:3_0:119_0:1$ ip community-list expanded c118 permit 3 ^65000:3_0:120_0:2$ ip community-list expanded c118 permit 4 ^65000:3_0:121_0:3$ ip community-list expanded c118 permit 5 ^65000:3_0:122_0:4$ ip community-list expanded c118 permit 6 ^65000:3_0:123_0:5$ ip community-list expanded c118 permit 7 ^65000:3_0:124_0:6$ ip community-list expanded c118 permit 8 ^65000:3_0:125_0:7$ ip community-list expanded c118 permit 9 ^65000:3_0:126_0:8$ ip community-list expanded c118 permit 10 ^65000:3_0:127_0:9$ ip community-list expanded c118 permit 11 ^65000:3_0:128_0:10$ ip community-list expanded c118 permit 12 ^65000:3_0:129_0:11$ ip community-list expanded c118 permit 13 ^65000:3_0:130_0:12$ ip community-list expanded c118 permit 14 ^65000:3_0:131_0:13$ ip community-list expanded c118 permit 15 ^65000:3_0:132_0:14$ ip community-list expanded c118 permit 16 ^65000:3_0:133_0:15$ ip community-list expanded c118 permit 17 ^65000:3_0:134_0:16$ ip community-list expanded c118 permit 18 ^65000:3_0:135_0:17$ ip community-list expanded c118 permit 19 ^65000:3_0:136_0:18$ ip community-list expanded c118 permit 20 ^65000:3_0:137_0:19$ ip community-list expanded c118 permit 21 ^65000:3_0:138_0:20$ ip community-list expanded c118 permit 22 ^65000:3_0:139_0:21$ ip community-list expanded c118 permit 23 ^65000:3_0:140_0:22$ ip community-list expanded c118 permit 24 ^65000:3_0:141_0:23$ ip community-list expanded c118 permit 25 ^65000:3_0:142_0:24$ ip community-list expanded c118 permit 26 ^65000:3_0:143_0:25$ ip community-list expanded c118 permit 27 ^65000:3_0:144_0:26$ ip community-list expanded c118 permit 28 ^65000:3_0:145_0:27$ ip community-list expanded c118 permit 29 ^65000:3_0:146_0:28$ ip community-list expanded c118 permit 30 ^65000:3_0:147_0:29$ ip community-list expanded c118 permit 31 ^65000:3_0:148_0:30$ ip community-list expanded c118 permit 32 ^65000:3_0:149_0:31$ ip community-list expanded c118 permit 33 ^65000:3_0:150_0:32$ ip community-list expanded c118 permit 34 ^65000:3_0:151_0:33$ ip community-list expanded c118 permit 35 ^65000:3_0:152_0:34$ ip community-list expanded c118 permit 36 ^65000:3_0:153_0:35$ ip community-list expanded c118 permit 37 ^65000:3_0:154_0:36$ ip community-list expanded c118 permit 38 ^65000:3_0:155_0:37$ ip community-list expanded c118 permit 39 ^65000:3_0:156_0:38$ ip community-list expanded c118 permit 40 ^65000:3_0:157_0:39$ ip community-list expanded c118 permit 41 ^65000:3_0:158_0:40$ ip community-list expanded c118 permit 42 ^65000:3_0:159_0:41$ ip community-list expanded c118 permit 43 ^65000:3_0:160_0:42$ ip community-list expanded c118 permit 44 ^65000:3_0:161_0:43$ ip community-list expanded c118 permit 45 ^65000:3_0:162_0:44$ ip community-list expanded c118 permit 46 ^65000:3_0:163_0:45$ ip community-list expanded c118 permit 47 ^65000:3_0:164_0:46$ ip community-list expanded c118 permit 48 ^65000:3_0:165_0:47$ ip community-list expanded c118 permit 49 ^65000:3_0:166_0:48$ ip community-list expanded c118 permit 50 ^65000:3_0:167_0:49$ ip community-list expanded c118 permit 51 ^65000:3_0:168_0:50$ ip community-list expanded c118 permit 52 ^65000:3_0:169_0:51$ ip community-list expanded c118 permit 53 ^65000:3_0:170_0:52$ ip community-list expanded c118 permit 54 ^65000:3_0:171_0:53$ ip community-list expanded c118 permit 55 ^65000:3_0:172_0:54$ ip community-list expanded c118 permit 56 ^65000:3_0:173_0:55$ ip community-list expanded c118 permit 57 ^65000:3_0:174_0:56$ ip community-list expanded c118 permit 58 ^65000:3_0:175_0:57$ ip community-list expanded c118 permit 59 ^65000:3_0:176_0:58$ ip community-list expanded c118 permit 60 ^65000:3_0:177_0:59$ ip community-list expanded c118 permit 61 ^65000:3_0:178_0:60$ ip community-list expanded c118 permit 62 ^65000:3_0:179_0:61$ ip community-list expanded c118 permit 63 ^65000:3_0:180_0:62$ ip community-list expanded c118 permit 64 ^65000:3_0:181_0:63$ ip community-list expanded c118 permit 65 ^65000:3_0:182_0:64$ ip community-list expanded c118 permit 66 ^65000:3_0:183_0:65$ ip community-list expanded c118 permit 67 ^65000:3_0:184_0:66$ ip community-list expanded c118 permit 68 ^65000:3_0:185_0:67$ ip community-list expanded c118 permit 69 ^65000:3_0:186_0:68$ ip community-list expanded c118 permit 70 ^65000:3_0:187_0:69$ ip community-list expanded c118 permit 71 ^65000:3_0:188_0:70$ ip community-list expanded c118 permit 72 ^65000:3_0:189_0:71$ ip community-list expanded c118 permit 73 ^65000:3_0:190_0:72$ ip community-list expanded c118 permit 74 ^65000:3_0:191_0:73$ ip community-list expanded c118 permit 75 ^65000:3_0:192_0:74$ ip community-list expanded c118 permit 76 ^65000:3_0:193_0:75$ ip community-list expanded c118 permit 77 ^65000:3_0:194_0:76$ ip community-list expanded c118 permit 78 ^65000:3_0:195_0:77$ ip community-list expanded c118 permit 79 ^65000:3_0:196_0:78$ ip community-list expanded c118 permit 80 ^65000:3_0:197_0:79$ ip community-list expanded c118 permit 81 ^65000:3_0:198_0:80$ ip community-list expanded c118 permit 82 ^65000:3_0:199_0:81$ ip community-list expanded c118 permit 83 ^65000:3_0:200_0:82$ ip community-list expanded c118 permit 84 ^65000:3_0:201_0:83$ ip community-list expanded c118 permit 85 ^65000:3_0:202_0:84$ ip community-list expanded c118 permit 86 ^65000:3_0:203_0:85$ ip community-list expanded c118 permit 87 ^65000:3_0:204_0:86$ ip community-list expanded c118 permit 88 ^65000:3_0:205_0:87$ ip community-list expanded c118 permit 89 ^65000:3_0:206_0:88$ ip community-list expanded c118 permit 90 ^65000:3_0:207_0:89$ ip community-list expanded c118 permit 91 ^65000:3_0:208_0:90$ ip community-list expanded c118 permit 92 ^65000:3_0:209_0:91$ ip community-list expanded c118 permit 93 ^65000:3_0:210_0:92$ ip community-list expanded c118 permit 94 ^65000:3_0:211_0:93$ ip community-list expanded c118 permit 95 ^65000:3_0:212_0:94$ ip community-list expanded c118 permit 96 ^65000:3_0:213_0:95$ ip community-list expanded c118 permit 97 ^65000:3_0:214_0:96$ ip community-list expanded c118 permit 98 ^65000:3_0:215_0:97$ ip community-list expanded c118 permit 99 ^65000:3_0:216_0:98$ ip community-list expanded c118 permit 100 ^65000:3_0:217_0:99$ ip community-list expanded c118 permit 101 ^65000:3_0:218_0:100$ ip community-list expanded c118 permit 102 ^65000:3_0:219_0:101$ ip community-list expanded c118 permit 103 ^65000:3_0:220_0:102$ ip community-list expanded c118 permit 104 ^65000:3_0:221_0:103$ ip community-list expanded c118 permit 105 ^65000:3_0:222_0:104$ ip community-list expanded c118 permit 106 ^65000:3_0:223_0:105$ ip community-list expanded c118 permit 107 ^65000:3_0:224_0:106$ ip community-list expanded c118 permit 108 ^65000:3_0:225_0:107$ ip community-list expanded c118 permit 109 ^65000:3_0:226_0:108$ ip community-list expanded c118 permit 110 ^65000:3_0:227_0:109$ ip community-list expanded c118 permit 111 ^65000:3_0:228_0:110$ ip community-list expanded c118 permit 112 ^65000:3_0:229_0:111$ ip community-list expanded c118 permit 113 ^65000:3_0:230_0:112$ ip community-list expanded c118 permit 114 ^65000:3_0:231_0:113$ ip community-list expanded c118 permit 115 ^65000:3_0:232_0:114$ ip community-list expanded c118 permit 116 ^65000:3_0:233_0:115$ ip community-list expanded c118 permit 117 ^65000:3_0:234_0:116$ ip community-list expanded c118 permit 118 ^65000:3_0:235_0:117$ ip community-list expanded c118 permit 119 ^65000:4_0:236_0:2$ ip community-list expanded c118 permit 120 ^65000:3_0:236_0:118$ ip community-list expanded c118 permit 121 ^65000:4_0:237_0:2$ ip community-list expanded c118 permit 122 ^65000:3_0:237_0:119$ ip community-list expanded c118 permit 123 ^65000:3_0:238_0:120$ ip community-list expanded c118 permit 124 ^65000:3_0:239_0:121$ ip community-list expanded c118 permit 125 ^65000:3_0:240_0:122$ ip community-list expanded c118 permit 126 ^65000:3_0:241_0:123$ ip community-list expanded c118 permit 127 ^65000:3_0:242_0:124$ ip community-list expanded c118 permit 128 ^65000:3_0:243_0:125$ ip community-list expanded c118 permit 129 ^65000:3_0:244_0:126$ ip community-list expanded c118 permit 130 ^65000:3_0:245_0:127$ ip community-list expanded c118 permit 131 ^65000:3_0:246_0:128$ ip community-list expanded c118 permit 132 ^65000:3_0:247_0:129$ ip community-list expanded c118 permit 133 ^65000:3_0:248_0:130$ ip community-list expanded c118 permit 134 ^65000:3_0:249_0:131$ ip community-list expanded c118 permit 135 ^65000:3_0:250_0:132$ ip community-list expanded c118 permit 136 ^65000:3_0:251_0:133$ ip community-list expanded c118 permit 137 ^65000:3_0:252_0:134$ ip community-list expanded c118 permit 138 ^65000:3_0:253_0:135$ ip community-list expanded c118 permit 139 ^65000:3_0:254_0:136$ ip community-list expanded c118 permit 140 ^65000:3_0:255_0:137$ ip community-list expanded c118 permit 141 ^65000:3_0:256_0:138$ route-map calculator permit 16291 match community 1_1_117 2_1_118 2_2_59 1_2_116 1_3_115 set community 0:118 route-map calculator permit 16292 match community 1_4_114 1_5_113 1_6_112 1_7_111 1_8_110 set community 0:118 route-map calculator permit 16293 match community 1_9_109 1_10_108 1_11_107 1_12_106 1_13_105 set community 0:118 route-map calculator permit 16294 match community 1_14_104 1_15_103 1_16_102 1_17_101 1_18_100 set community 0:118 route-map calculator permit 16295 match community 1_19_99 1_20_98 1_21_97 1_22_96 1_23_95 set community 0:118 route-map calculator permit 16296 match community 1_24_94 1_25_93 1_26_92 1_27_91 1_28_90 set community 0:118 route-map calculator permit 16297 match community 1_29_89 1_30_88 1_31_87 1_32_86 1_33_85 set community 0:118 route-map calculator permit 16298 match community 1_34_84 1_35_83 1_36_82 1_37_81 1_38_80 set community 0:118 route-map calculator permit 16299 match community 1_39_79 1_40_78 1_41_77 1_42_76 1_43_75 set community 0:118 route-map calculator permit 16300 match community 1_44_74 1_45_73 1_46_72 1_47_71 1_48_70 set community 0:118 route-map calculator permit 16301 match community 1_49_69 1_50_68 1_51_67 1_52_66 1_53_65 set community 0:118 route-map calculator permit 16302 match community 1_54_64 1_55_63 1_56_62 1_57_61 1_58_60 set community 0:118 route-map calculator permit 16303 match community 1_59_59 c4_118_1 c3_119_1 c3_120_2 c3_121_3 set community 0:118 route-map calculator permit 16304 match community c3_122_4 c3_123_5 c3_124_6 c3_125_7 c3_126_8 set community 0:118 route-map calculator permit 16305 match community c3_127_9 c3_128_10 c3_129_11 c3_130_12 c3_131_13 set community 0:118 route-map calculator permit 16306 match community c3_132_14 c3_133_15 c3_134_16 c3_135_17 c3_136_18 set community 0:118 route-map calculator permit 16307 match community c3_137_19 c3_138_20 c3_139_21 c3_140_22 c3_141_23 set community 0:118 route-map calculator permit 16308 match community c3_142_24 c3_143_25 c3_144_26 c3_145_27 c3_146_28 set community 0:118 route-map calculator permit 16309 match community c3_147_29 c3_148_30 c3_149_31 c3_150_32 c3_151_33 set community 0:118 route-map calculator permit 16310 match community c3_152_34 c3_153_35 c3_154_36 c3_155_37 c3_156_38 set community 0:118 route-map calculator permit 16311 match community c3_157_39 c3_158_40 c3_159_41 c3_160_42 c3_161_43 set community 0:118 route-map calculator permit 16312 match community c3_162_44 c3_163_45 c3_164_46 c3_165_47 c3_166_48 set community 0:118 route-map calculator permit 16313 match community c3_167_49 c3_168_50 c3_169_51 c3_170_52 c3_171_53 set community 0:118 route-map calculator permit 16314 match community c3_172_54 c3_173_55 c3_174_56 c3_175_57 c3_176_58 set community 0:118 route-map calculator permit 16315 match community c3_177_59 c3_178_60 c3_179_61 c3_180_62 c3_181_63 set community 0:118 route-map calculator permit 16316 match community c3_182_64 c3_183_65 c3_184_66 c3_185_67 c3_186_68 set community 0:118 route-map calculator permit 16317 match community c3_187_69 c3_188_70 c3_189_71 c3_190_72 c3_191_73 set community 0:118 route-map calculator permit 16318 match community c3_192_74 c3_193_75 c3_194_76 c3_195_77 c3_196_78 set community 0:118 route-map calculator permit 16319 match community c3_197_79 c3_198_80 c3_199_81 c3_200_82 c3_201_83 set community 0:118 route-map calculator permit 16320 match community c3_202_84 c3_203_85 c3_204_86 c3_205_87 c3_206_88 set community 0:118 route-map calculator permit 16321 match community c3_207_89 c3_208_90 c3_209_91 c3_210_92 c3_211_93 set community 0:118 route-map calculator permit 16322 match community c3_212_94 c3_213_95 c3_214_96 c3_215_97 c3_216_98 set community 0:118 route-map calculator permit 16323 match community c3_217_99 c3_218_100 c3_219_101 c3_220_102 c3_221_103 set community 0:118 route-map calculator permit 16324 match community c3_222_104 c3_223_105 c3_224_106 c3_225_107 c3_226_108 set community 0:118 route-map calculator permit 16325 match community c3_227_109 c3_228_110 c3_229_111 c3_230_112 c3_231_113 set community 0:118 route-map calculator permit 16326 match community c3_232_114 c3_233_115 c3_234_116 c3_235_117 c4_236_2 set community 0:118 route-map calculator permit 16327 match community c3_236_118 c4_237_2 c3_237_119 c3_238_120 c3_239_121 set community 0:118 route-map calculator permit 16328 match community c3_240_122 c3_241_123 c3_242_124 c3_243_125 c3_244_126 set community 0:118 route-map calculator permit 16329 match community c3_245_127 c3_246_128 c3_247_129 c3_248_130 c3_249_131 set community 0:118 route-map calculator permit 16330 match community c3_250_132 c3_251_133 c3_252_134 c3_253_135 c3_254_136 set community 0:118 route-map calculator permit 16331 match community c3_255_137 c3_256_138 set community 0:118 ip community-list standard 2_168_250 permit 65000:2 0:168 0:250 ip community-list standard 2_175_240 permit 65000:2 0:175 0:240 ip community-list standard 2_200_210 permit 65000:2 0:200 0:210 route-map calculator permit 16332 match community 2_168_250 2_175_240 2_200_210 set community 0:42000 ip community-list standard 2_83_208 permit 65000:2 0:83 0:208 ip community-list standard 2_104_166 permit 65000:2 0:104 0:166 route-map calculator permit 16333 match community 2_83_208 2_104_166 set community 0:17264 ip community-list standard 2_82_212 permit 65000:2 0:82 0:212 ip community-list standard 2_106_164 permit 65000:2 0:106 0:164 route-map calculator permit 16334 match community 2_82_212 2_106_164 set community 0:17384 ip community-list standard 2_51_151 permit 65000:2 0:51 0:151 route-map calculator permit 16335 match community 2_51_151 set community 0:7701 ip community-list standard 2_145_238 permit 65000:2 0:145 0:238 ip community-list standard 2_170_203 permit 65000:2 0:170 0:203 route-map calculator permit 16336 match community 2_145_238 2_170_203 set community 0:34510 ip community-list standard 2_238_251 permit 65000:2 0:238 0:251 route-map calculator permit 16337 match community 2_238_251 set community 0:59738 ip community-list standard 2_88_222 permit 65000:2 0:88 0:222 ip community-list standard 2_111_176 permit 65000:2 0:111 0:176 ip community-list standard 2_132_148 permit 65000:2 0:132 0:148 route-map calculator permit 16338 match community 2_88_222 2_111_176 2_132_148 set community 0:19536 ip community-list standard 2_10_190 permit 65000:2 0:10 0:190 ip community-list standard 2_19_100 permit 65000:2 0:19 0:100 ip community-list standard 2_20_95 permit 65000:2 0:20 0:95 ip community-list standard 2_25_76 permit 65000:2 0:25 0:76 ip community-list standard 2_38_50 permit 65000:2 0:38 0:50 route-map calculator permit 16339 match community 2_10_190 2_19_100 2_20_95 2_25_76 2_38_50 set community 0:1900 ip community-list standard 2_3_190 permit 65000:2 0:3 0:190 ip community-list standard 2_5_114 permit 65000:2 0:5 0:114 ip community-list standard 2_6_95 permit 65000:2 0:6 0:95 ip community-list standard 2_10_57 permit 65000:2 0:10 0:57 ip community-list standard 2_15_38 permit 65000:2 0:15 0:38 ip community-list standard 2_19_30 permit 65000:2 0:19 0:30 route-map calculator permit 16340 match community 2_3_190 2_5_114 2_6_95 2_10_57 2_15_38 set community 0:570 route-map calculator permit 16341 match community 2_19_30 set community 0:570 ip community-list standard 2_81_203 permit 65000:2 0:81 0:203 ip community-list standard 2_87_189 permit 65000:2 0:87 0:189 route-map calculator permit 16342 match community 2_81_203 2_87_189 set community 0:16443 ip community-list standard 2_237_252 permit 65000:2 0:237 0:252 route-map calculator permit 16343 match community 2_237_252 set community 0:59724 ip community-list standard 2_34_141 permit 65000:2 0:34 0:141 ip community-list standard 2_47_102 permit 65000:2 0:47 0:102 ip community-list standard 2_51_94 permit 65000:2 0:51 0:94 route-map calculator permit 16344 match community 2_34_141 2_47_102 2_51_94 set community 0:4794 ip community-list standard 2_209_241 permit 65000:2 0:209 0:241 route-map calculator permit 16345 match community 2_209_241 set community 0:50369 ip community-list standard 2_41_221 permit 65000:2 0:41 0:221 route-map calculator permit 16346 match community 2_41_221 set community 0:9061 ip community-list standard 2_137_222 permit 65000:2 0:137 0:222 route-map calculator permit 16347 match community 2_137_222 set community 0:30414 ip community-list standard 2_108_223 permit 65000:2 0:108 0:223 route-map calculator permit 16348 match community 2_108_223 set community 0:24084 ip community-list standard 2_30_256 permit 65000:2 0:30 0:256 ip community-list standard 2_32_240 permit 65000:2 0:32 0:240 ip community-list standard 2_40_192 permit 65000:2 0:40 0:192 ip community-list standard 2_48_160 permit 65000:2 0:48 0:160 ip community-list standard 2_60_128 permit 65000:2 0:60 0:128 ip community-list standard 2_64_120 permit 65000:2 0:64 0:120 ip community-list standard 2_80_96 permit 65000:2 0:80 0:96 route-map calculator permit 16349 match community 2_30_256 2_32_240 2_40_192 2_48_160 2_60_128 set community 0:7680 route-map calculator permit 16350 match community 2_64_120 2_80_96 set community 0:7680 ip community-list standard 2_73_197 permit 65000:2 0:73 0:197 route-map calculator permit 16351 match community 2_73_197 set community 0:14381 ip community-list standard 2_98_149 permit 65000:2 0:98 0:149 route-map calculator permit 16352 match community 2_98_149 set community 0:14602 ip community-list standard 2_57_199 permit 65000:2 0:57 0:199 route-map calculator permit 16353 match community 2_57_199 set community 0:11343 ip community-list standard 2_4_253 permit 65000:2 0:4 0:253 ip community-list standard 2_11_92 permit 65000:2 0:11 0:92 ip community-list standard 2_22_46 permit 65000:2 0:22 0:46 ip community-list standard 2_23_44 permit 65000:2 0:23 0:44 route-map calculator permit 16354 match community 2_4_253 2_11_92 2_22_46 2_23_44 set community 0:1012 ip community-list standard 2_56_179 permit 65000:2 0:56 0:179 route-map calculator permit 16355 match community 2_56_179 set community 0:10024 ip community-list standard 2_32_252 permit 65000:2 0:32 0:252 ip community-list standard 2_36_224 permit 65000:2 0:36 0:224 ip community-list standard 2_42_192 permit 65000:2 0:42 0:192 ip community-list standard 2_48_168 permit 65000:2 0:48 0:168 ip community-list standard 2_56_144 permit 65000:2 0:56 0:144 ip community-list standard 2_63_128 permit 65000:2 0:63 0:128 ip community-list standard 2_64_126 permit 65000:2 0:64 0:126 ip community-list standard 2_72_112 permit 65000:2 0:72 0:112 ip community-list standard 2_84_96 permit 65000:2 0:84 0:96 route-map calculator permit 16356 match community 2_32_252 2_36_224 2_42_192 2_48_168 2_56_144 set community 0:8064 route-map calculator permit 16357 match community 2_63_128 2_64_126 2_72_112 2_84_96 set community 0:8064 ip community-list standard 2_136_151 permit 65000:2 0:136 0:151 route-map calculator permit 16358 match community 2_136_151 set community 0:20536 ip community-list standard 2_186_191 permit 65000:2 0:186 0:191 route-map calculator permit 16359 match community 2_186_191 set community 0:35526 ip community-list standard 2_189_242 permit 65000:2 0:189 0:242 ip community-list standard 2_198_231 permit 65000:2 0:198 0:231 route-map calculator permit 16360 match community 2_189_242 2_198_231 set community 0:45738 ip community-list standard 2_5_179 permit 65000:2 0:5 0:179 route-map calculator permit 16361 match community 2_5_179 set community 0:895 ip community-list standard 2_174_202 permit 65000:2 0:174 0:202 route-map calculator permit 16362 match community 2_174_202 set community 0:35148 ip community-list standard 2_187_256 permit 65000:2 0:187 0:256 route-map calculator permit 16363 match community 2_187_256 set community 0:47872 ip community-list standard 2_65_218 permit 65000:2 0:65 0:218 ip community-list standard 2_109_130 permit 65000:2 0:109 0:130 route-map calculator permit 16364 match community 2_65_218 2_109_130 set community 0:14170 ip community-list standard 2_184_249 permit 65000:2 0:184 0:249 route-map calculator permit 16365 match community 2_184_249 set community 0:45816 ip community-list standard 2_25_181 permit 65000:2 0:25 0:181 route-map calculator permit 16366 match community 2_25_181 set community 0:4525 ip community-list standard 2_31_117 permit 65000:2 0:31 0:117 ip community-list standard 2_39_93 permit 65000:2 0:39 0:93 route-map calculator permit 16367 match community 2_31_117 2_39_93 set community 0:3627 ip community-list standard 1_223_256 permit 65000:1 0:223 0:256 ip community-list standard 1_224_255 permit 65000:1 0:224 0:255 ip community-list standard 1_225_254 permit 65000:1 0:225 0:254 ip community-list standard 1_226_253 permit 65000:1 0:226 0:253 ip community-list standard 1_227_252 permit 65000:1 0:227 0:252 ip community-list standard 1_228_251 permit 65000:1 0:228 0:251 ip community-list standard 1_229_250 permit 65000:1 0:229 0:250 ip community-list standard 1_230_249 permit 65000:1 0:230 0:249 ip community-list standard 1_231_248 permit 65000:1 0:231 0:248 ip community-list standard 1_232_247 permit 65000:1 0:232 0:247 ip community-list standard 1_233_246 permit 65000:1 0:233 0:246 ip community-list standard 1_234_245 permit 65000:1 0:234 0:245 ip community-list standard 1_235_244 permit 65000:1 0:235 0:244 ip community-list standard 1_236_243 permit 65000:1 0:236 0:243 ip community-list standard 1_237_242 permit 65000:1 0:237 0:242 ip community-list standard 1_238_241 permit 65000:1 0:238 0:241 ip community-list standard 1_239_240 permit 65000:1 0:239 0:240 route-map calculator permit 16368 match community 1_223_256 1_224_255 1_225_254 1_226_253 1_227_252 set community 0:479 route-map calculator permit 16369 match community 1_228_251 1_229_250 1_230_249 1_231_248 1_232_247 set community 0:479 route-map calculator permit 16370 match community 1_233_246 1_234_245 1_235_244 1_236_243 1_237_242 set community 0:479 route-map calculator permit 16371 match community 1_238_241 1_239_240 set community 0:479 ip community-list standard 2_21_157 permit 65000:2 0:21 0:157 route-map calculator permit 16372 match community 2_21_157 set community 0:3297 ip community-list standard 2_149_221 permit 65000:2 0:149 0:221 route-map calculator permit 16373 match community 2_149_221 set community 0:32929 ip community-list standard 2_3_157 permit 65000:2 0:3 0:157 ip community-list standard 1_215_256 permit 65000:1 0:215 0:256 ip community-list standard 1_216_255 permit 65000:1 0:216 0:255 ip community-list standard 1_217_254 permit 65000:1 0:217 0:254 ip community-list standard 1_218_253 permit 65000:1 0:218 0:253 ip community-list standard 1_219_252 permit 65000:1 0:219 0:252 ip community-list standard 1_220_251 permit 65000:1 0:220 0:251 ip community-list standard 1_221_250 permit 65000:1 0:221 0:250 ip community-list standard 1_222_249 permit 65000:1 0:222 0:249 ip community-list standard 1_223_248 permit 65000:1 0:223 0:248 ip community-list standard 1_224_247 permit 65000:1 0:224 0:247 ip community-list standard 1_225_246 permit 65000:1 0:225 0:246 ip community-list standard 1_226_245 permit 65000:1 0:226 0:245 ip community-list standard 1_227_244 permit 65000:1 0:227 0:244 ip community-list standard 1_228_243 permit 65000:1 0:228 0:243 ip community-list standard 1_229_242 permit 65000:1 0:229 0:242 ip community-list standard 1_230_241 permit 65000:1 0:230 0:241 ip community-list standard 1_231_240 permit 65000:1 0:231 0:240 ip community-list standard 1_232_239 permit 65000:1 0:232 0:239 ip community-list standard 1_233_238 permit 65000:1 0:233 0:238 ip community-list standard 1_234_237 permit 65000:1 0:234 0:237 ip community-list standard 1_235_236 permit 65000:1 0:235 0:236 route-map calculator permit 16374 match community 2_3_157 1_215_256 1_216_255 1_217_254 1_218_253 set community 0:471 route-map calculator permit 16375 match community 1_219_252 1_220_251 1_221_250 1_222_249 1_223_248 set community 0:471 route-map calculator permit 16376 match community 1_224_247 1_225_246 1_226_245 1_227_244 1_228_243 set community 0:471 route-map calculator permit 16377 match community 1_229_242 1_230_241 1_231_240 1_232_239 1_233_238 set community 0:471 route-map calculator permit 16378 match community 1_234_237 1_235_236 set community 0:471 ip community-list standard 2_104_201 permit 65000:2 0:104 0:201 ip community-list standard 2_134_156 permit 65000:2 0:134 0:156 route-map calculator permit 16379 match community 2_104_201 2_134_156 set community 0:20904 ip community-list standard 2_152_236 permit 65000:2 0:152 0:236 route-map calculator permit 16380 match community 2_152_236 set community 0:35872 ip community-list standard 2_105_177 permit 65000:2 0:105 0:177 route-map calculator permit 16381 match community 2_105_177 set community 0:18585 ip community-list standard 2_37_206 permit 65000:2 0:37 0:206 ip community-list standard 2_74_103 permit 65000:2 0:74 0:103 route-map calculator permit 16382 match community 2_37_206 2_74_103 set community 0:7622 ip community-list standard 2_17_175 permit 65000:2 0:17 0:175 ip community-list standard 2_25_119 permit 65000:2 0:25 0:119 ip community-list standard 2_35_85 permit 65000:2 0:35 0:85 route-map calculator permit 16383 match community 2_17_175 2_25_119 2_35_85 set community 0:2975 ip community-list standard 2_122_175 permit 65000:2 0:122 0:175 route-map calculator permit 16384 match community 2_122_175 set community 0:21350 ip community-list standard 2_29_53 permit 65000:2 0:29 0:53 route-map calculator permit 16385 match community 2_29_53 set community 0:1537 ip community-list standard 2_138_203 permit 65000:2 0:138 0:203 ip community-list standard 2_161_174 permit 65000:2 0:161 0:174 route-map calculator permit 16386 match community 2_138_203 2_161_174 set community 0:28014 ip community-list standard 2_24_250 permit 65000:2 0:24 0:250 ip community-list standard 2_25_240 permit 65000:2 0:25 0:240 ip community-list standard 2_30_200 permit 65000:2 0:30 0:200 ip community-list standard 2_40_150 permit 65000:2 0:40 0:150 ip community-list standard 2_48_125 permit 65000:2 0:48 0:125 ip community-list standard 2_50_120 permit 65000:2 0:50 0:120 ip community-list standard 2_60_100 permit 65000:2 0:60 0:100 ip community-list standard 2_75_80 permit 65000:2 0:75 0:80 route-map calculator permit 16387 match community 2_24_250 2_25_240 2_30_200 2_40_150 2_48_125 set community 0:6000 route-map calculator permit 16388 match community 2_50_120 2_60_100 2_75_80 set community 0:6000 ip community-list standard 2_215_254 permit 65000:2 0:215 0:254 route-map calculator permit 16389 match community 2_215_254 set community 0:54610 ip community-list standard 2_65_73 permit 65000:2 0:65 0:73 route-map calculator permit 16390 match community 2_65_73 set community 0:4745 ip community-list standard 2_139_221 permit 65000:2 0:139 0:221 route-map calculator permit 16391 match community 2_139_221 set community 0:30719 ip community-list standard 2_41_106 permit 65000:2 0:41 0:106 ip community-list standard 2_53_82 permit 65000:2 0:53 0:82 route-map calculator permit 16392 match community 2_41_106 2_53_82 set community 0:4346 ip community-list standard 1_1_23 permit 65000:1 0:1 0:23 ip community-list standard 2_1_24 permit 65000:2 0:1 0:24 ip community-list standard 2_2_12 permit 65000:2 0:2 0:12 ip community-list standard 1_2_22 permit 65000:1 0:2 0:22 ip community-list standard 2_3_8 permit 65000:2 0:3 0:8 ip community-list standard 1_3_21 permit 65000:1 0:3 0:21 ip community-list standard 2_4_6 permit 65000:2 0:4 0:6 ip community-list standard 1_4_20 permit 65000:1 0:4 0:20 ip community-list standard 1_5_19 permit 65000:1 0:5 0:19 ip community-list standard 1_6_18 permit 65000:1 0:6 0:18 ip community-list standard 1_7_17 permit 65000:1 0:7 0:17 ip community-list standard 1_8_16 permit 65000:1 0:8 0:16 ip community-list standard 1_9_15 permit 65000:1 0:9 0:15 ip community-list standard 1_10_14 permit 65000:1 0:10 0:14 ip community-list standard 1_11_13 permit 65000:1 0:11 0:13 ip community-list standard 1_12_12 permit 65000:1 0:12 0:12 ip community-list expanded c24 permit 1 ^65000:4_0:24_0:1$ ip community-list expanded c24 permit 2 ^65000:3_0:25_0:1$ ip community-list expanded c24 permit 3 ^65000:3_0:26_0:2$ ip community-list expanded c24 permit 4 ^65000:3_0:27_0:3$ ip community-list expanded c24 permit 5 ^65000:3_0:28_0:4$ ip community-list expanded c24 permit 6 ^65000:3_0:29_0:5$ ip community-list expanded c24 permit 7 ^65000:3_0:30_0:6$ ip community-list expanded c24 permit 8 ^65000:3_0:31_0:7$ ip community-list expanded c24 permit 9 ^65000:3_0:32_0:8$ ip community-list expanded c24 permit 10 ^65000:3_0:33_0:9$ ip community-list expanded c24 permit 11 ^65000:3_0:34_0:10$ ip community-list expanded c24 permit 12 ^65000:3_0:35_0:11$ ip community-list expanded c24 permit 13 ^65000:3_0:36_0:12$ ip community-list expanded c24 permit 14 ^65000:3_0:37_0:13$ ip community-list expanded c24 permit 15 ^65000:3_0:38_0:14$ ip community-list expanded c24 permit 16 ^65000:3_0:39_0:15$ ip community-list expanded c24 permit 17 ^65000:3_0:40_0:16$ ip community-list expanded c24 permit 18 ^65000:3_0:41_0:17$ ip community-list expanded c24 permit 19 ^65000:3_0:42_0:18$ ip community-list expanded c24 permit 20 ^65000:3_0:43_0:19$ ip community-list expanded c24 permit 21 ^65000:3_0:44_0:20$ ip community-list expanded c24 permit 22 ^65000:3_0:45_0:21$ ip community-list expanded c24 permit 23 ^65000:3_0:46_0:22$ ip community-list expanded c24 permit 24 ^65000:3_0:47_0:23$ ip community-list expanded c24 permit 25 ^65000:4_0:48_0:2$ ip community-list expanded c24 permit 26 ^65000:3_0:48_0:24$ ip community-list expanded c24 permit 27 ^65000:4_0:49_0:2$ ip community-list expanded c24 permit 28 ^65000:3_0:49_0:25$ ip community-list expanded c24 permit 29 ^65000:3_0:50_0:26$ ip community-list expanded c24 permit 30 ^65000:3_0:51_0:27$ ip community-list expanded c24 permit 31 ^65000:3_0:52_0:28$ ip community-list expanded c24 permit 32 ^65000:3_0:53_0:29$ ip community-list expanded c24 permit 33 ^65000:3_0:54_0:30$ ip community-list expanded c24 permit 34 ^65000:3_0:55_0:31$ ip community-list expanded c24 permit 35 ^65000:3_0:56_0:32$ ip community-list expanded c24 permit 36 ^65000:3_0:57_0:33$ ip community-list expanded c24 permit 37 ^65000:3_0:58_0:34$ ip community-list expanded c24 permit 38 ^65000:3_0:59_0:35$ ip community-list expanded c24 permit 39 ^65000:3_0:60_0:36$ ip community-list expanded c24 permit 40 ^65000:3_0:61_0:37$ ip community-list expanded c24 permit 41 ^65000:3_0:62_0:38$ ip community-list expanded c24 permit 42 ^65000:3_0:63_0:39$ ip community-list expanded c24 permit 43 ^65000:3_0:64_0:40$ ip community-list expanded c24 permit 44 ^65000:3_0:65_0:41$ ip community-list expanded c24 permit 45 ^65000:3_0:66_0:42$ ip community-list expanded c24 permit 46 ^65000:3_0:67_0:43$ ip community-list expanded c24 permit 47 ^65000:3_0:68_0:44$ ip community-list expanded c24 permit 48 ^65000:3_0:69_0:45$ ip community-list expanded c24 permit 49 ^65000:3_0:70_0:46$ ip community-list expanded c24 permit 50 ^65000:3_0:71_0:47$ ip community-list expanded c24 permit 51 ^65000:4_0:72_0:3$ ip community-list expanded c24 permit 52 ^65000:3_0:72_0:48$ ip community-list expanded c24 permit 53 ^65000:4_0:73_0:3$ ip community-list expanded c24 permit 54 ^65000:3_0:73_0:49$ ip community-list expanded c24 permit 55 ^65000:4_0:74_0:3$ ip community-list expanded c24 permit 56 ^65000:3_0:74_0:50$ ip community-list expanded c24 permit 57 ^65000:3_0:75_0:51$ ip community-list expanded c24 permit 58 ^65000:3_0:76_0:52$ ip community-list expanded c24 permit 59 ^65000:3_0:77_0:53$ ip community-list expanded c24 permit 60 ^65000:3_0:78_0:54$ ip community-list expanded c24 permit 61 ^65000:3_0:79_0:55$ ip community-list expanded c24 permit 62 ^65000:3_0:80_0:56$ ip community-list expanded c24 permit 63 ^65000:3_0:81_0:57$ ip community-list expanded c24 permit 64 ^65000:3_0:82_0:58$ ip community-list expanded c24 permit 65 ^65000:3_0:83_0:59$ ip community-list expanded c24 permit 66 ^65000:3_0:84_0:60$ ip community-list expanded c24 permit 67 ^65000:3_0:85_0:61$ ip community-list expanded c24 permit 68 ^65000:3_0:86_0:62$ ip community-list expanded c24 permit 69 ^65000:3_0:87_0:63$ ip community-list expanded c24 permit 70 ^65000:3_0:88_0:64$ ip community-list expanded c24 permit 71 ^65000:3_0:89_0:65$ ip community-list expanded c24 permit 72 ^65000:3_0:90_0:66$ ip community-list expanded c24 permit 73 ^65000:3_0:91_0:67$ ip community-list expanded c24 permit 74 ^65000:3_0:92_0:68$ ip community-list expanded c24 permit 75 ^65000:3_0:93_0:69$ ip community-list expanded c24 permit 76 ^65000:3_0:94_0:70$ ip community-list expanded c24 permit 77 ^65000:3_0:95_0:71$ ip community-list expanded c24 permit 78 ^65000:4_0:96_0:4$ ip community-list expanded c24 permit 79 ^65000:3_0:96_0:72$ ip community-list expanded c24 permit 80 ^65000:4_0:97_0:4$ ip community-list expanded c24 permit 81 ^65000:3_0:97_0:73$ ip community-list expanded c24 permit 82 ^65000:4_0:98_0:4$ ip community-list expanded c24 permit 83 ^65000:3_0:98_0:74$ ip community-list expanded c24 permit 84 ^65000:4_0:99_0:4$ ip community-list expanded c24 permit 85 ^65000:3_0:99_0:75$ ip community-list expanded c24 permit 86 ^65000:3_0:100_0:76$ ip community-list expanded c24 permit 87 ^65000:3_0:101_0:77$ ip community-list expanded c24 permit 88 ^65000:3_0:102_0:78$ ip community-list expanded c24 permit 89 ^65000:3_0:103_0:79$ ip community-list expanded c24 permit 90 ^65000:3_0:104_0:80$ ip community-list expanded c24 permit 91 ^65000:3_0:105_0:81$ ip community-list expanded c24 permit 92 ^65000:3_0:106_0:82$ ip community-list expanded c24 permit 93 ^65000:3_0:107_0:83$ ip community-list expanded c24 permit 94 ^65000:3_0:108_0:84$ ip community-list expanded c24 permit 95 ^65000:3_0:109_0:85$ ip community-list expanded c24 permit 96 ^65000:3_0:110_0:86$ ip community-list expanded c24 permit 97 ^65000:3_0:111_0:87$ ip community-list expanded c24 permit 98 ^65000:3_0:112_0:88$ ip community-list expanded c24 permit 99 ^65000:3_0:113_0:89$ ip community-list expanded c24 permit 100 ^65000:3_0:114_0:90$ ip community-list expanded c24 permit 101 ^65000:3_0:115_0:91$ ip community-list expanded c24 permit 102 ^65000:3_0:116_0:92$ ip community-list expanded c24 permit 103 ^65000:3_0:117_0:93$ ip community-list expanded c24 permit 104 ^65000:3_0:118_0:94$ ip community-list expanded c24 permit 105 ^65000:3_0:119_0:95$ ip community-list expanded c24 permit 106 ^65000:4_0:120_0:5$ ip community-list expanded c24 permit 107 ^65000:3_0:120_0:96$ ip community-list expanded c24 permit 108 ^65000:4_0:121_0:5$ ip community-list expanded c24 permit 109 ^65000:3_0:121_0:97$ ip community-list expanded c24 permit 110 ^65000:4_0:122_0:5$ ip community-list expanded c24 permit 111 ^65000:3_0:122_0:98$ ip community-list expanded c24 permit 112 ^65000:4_0:123_0:5$ ip community-list expanded c24 permit 113 ^65000:3_0:123_0:99$ ip community-list expanded c24 permit 114 ^65000:4_0:124_0:5$ ip community-list expanded c24 permit 115 ^65000:3_0:124_0:100$ ip community-list expanded c24 permit 116 ^65000:3_0:125_0:101$ ip community-list expanded c24 permit 117 ^65000:3_0:126_0:102$ ip community-list expanded c24 permit 118 ^65000:3_0:127_0:103$ ip community-list expanded c24 permit 119 ^65000:3_0:128_0:104$ ip community-list expanded c24 permit 120 ^65000:3_0:129_0:105$ ip community-list expanded c24 permit 121 ^65000:3_0:130_0:106$ ip community-list expanded c24 permit 122 ^65000:3_0:131_0:107$ ip community-list expanded c24 permit 123 ^65000:3_0:132_0:108$ ip community-list expanded c24 permit 124 ^65000:3_0:133_0:109$ ip community-list expanded c24 permit 125 ^65000:3_0:134_0:110$ ip community-list expanded c24 permit 126 ^65000:3_0:135_0:111$ ip community-list expanded c24 permit 127 ^65000:3_0:136_0:112$ ip community-list expanded c24 permit 128 ^65000:3_0:137_0:113$ ip community-list expanded c24 permit 129 ^65000:3_0:138_0:114$ ip community-list expanded c24 permit 130 ^65000:3_0:139_0:115$ ip community-list expanded c24 permit 131 ^65000:3_0:140_0:116$ ip community-list expanded c24 permit 132 ^65000:3_0:141_0:117$ ip community-list expanded c24 permit 133 ^65000:3_0:142_0:118$ ip community-list expanded c24 permit 134 ^65000:3_0:143_0:119$ ip community-list expanded c24 permit 135 ^65000:4_0:144_0:6$ ip community-list expanded c24 permit 136 ^65000:3_0:144_0:120$ ip community-list expanded c24 permit 137 ^65000:4_0:145_0:6$ ip community-list expanded c24 permit 138 ^65000:3_0:145_0:121$ ip community-list expanded c24 permit 139 ^65000:4_0:146_0:6$ ip community-list expanded c24 permit 140 ^65000:3_0:146_0:122$ ip community-list expanded c24 permit 141 ^65000:4_0:147_0:6$ ip community-list expanded c24 permit 142 ^65000:3_0:147_0:123$ ip community-list expanded c24 permit 143 ^65000:4_0:148_0:6$ ip community-list expanded c24 permit 144 ^65000:3_0:148_0:124$ ip community-list expanded c24 permit 145 ^65000:4_0:149_0:6$ ip community-list expanded c24 permit 146 ^65000:3_0:149_0:125$ ip community-list expanded c24 permit 147 ^65000:3_0:150_0:126$ ip community-list expanded c24 permit 148 ^65000:3_0:151_0:127$ ip community-list expanded c24 permit 149 ^65000:3_0:152_0:128$ ip community-list expanded c24 permit 150 ^65000:3_0:153_0:129$ ip community-list expanded c24 permit 151 ^65000:3_0:154_0:130$ ip community-list expanded c24 permit 152 ^65000:3_0:155_0:131$ ip community-list expanded c24 permit 153 ^65000:3_0:156_0:132$ ip community-list expanded c24 permit 154 ^65000:3_0:157_0:133$ ip community-list expanded c24 permit 155 ^65000:3_0:158_0:134$ ip community-list expanded c24 permit 156 ^65000:3_0:159_0:135$ ip community-list expanded c24 permit 157 ^65000:3_0:160_0:136$ ip community-list expanded c24 permit 158 ^65000:3_0:161_0:137$ ip community-list expanded c24 permit 159 ^65000:3_0:162_0:138$ ip community-list expanded c24 permit 160 ^65000:3_0:163_0:139$ ip community-list expanded c24 permit 161 ^65000:3_0:164_0:140$ ip community-list expanded c24 permit 162 ^65000:3_0:165_0:141$ ip community-list expanded c24 permit 163 ^65000:3_0:166_0:142$ ip community-list expanded c24 permit 164 ^65000:3_0:167_0:143$ ip community-list expanded c24 permit 165 ^65000:4_0:168_0:7$ ip community-list expanded c24 permit 166 ^65000:3_0:168_0:144$ ip community-list expanded c24 permit 167 ^65000:4_0:169_0:7$ ip community-list expanded c24 permit 168 ^65000:3_0:169_0:145$ ip community-list expanded c24 permit 169 ^65000:4_0:170_0:7$ ip community-list expanded c24 permit 170 ^65000:3_0:170_0:146$ ip community-list expanded c24 permit 171 ^65000:4_0:171_0:7$ ip community-list expanded c24 permit 172 ^65000:3_0:171_0:147$ ip community-list expanded c24 permit 173 ^65000:4_0:172_0:7$ ip community-list expanded c24 permit 174 ^65000:3_0:172_0:148$ ip community-list expanded c24 permit 175 ^65000:4_0:173_0:7$ ip community-list expanded c24 permit 176 ^65000:3_0:173_0:149$ ip community-list expanded c24 permit 177 ^65000:4_0:174_0:7$ ip community-list expanded c24 permit 178 ^65000:3_0:174_0:150$ ip community-list expanded c24 permit 179 ^65000:3_0:175_0:151$ ip community-list expanded c24 permit 180 ^65000:3_0:176_0:152$ ip community-list expanded c24 permit 181 ^65000:3_0:177_0:153$ ip community-list expanded c24 permit 182 ^65000:3_0:178_0:154$ ip community-list expanded c24 permit 183 ^65000:3_0:179_0:155$ ip community-list expanded c24 permit 184 ^65000:3_0:180_0:156$ ip community-list expanded c24 permit 185 ^65000:3_0:181_0:157$ ip community-list expanded c24 permit 186 ^65000:3_0:182_0:158$ ip community-list expanded c24 permit 187 ^65000:3_0:183_0:159$ ip community-list expanded c24 permit 188 ^65000:3_0:184_0:160$ ip community-list expanded c24 permit 189 ^65000:3_0:185_0:161$ ip community-list expanded c24 permit 190 ^65000:3_0:186_0:162$ ip community-list expanded c24 permit 191 ^65000:3_0:187_0:163$ ip community-list expanded c24 permit 192 ^65000:3_0:188_0:164$ ip community-list expanded c24 permit 193 ^65000:3_0:189_0:165$ ip community-list expanded c24 permit 194 ^65000:3_0:190_0:166$ ip community-list expanded c24 permit 195 ^65000:3_0:191_0:167$ ip community-list expanded c24 permit 196 ^65000:4_0:192_0:8$ ip community-list expanded c24 permit 197 ^65000:3_0:192_0:168$ ip community-list expanded c24 permit 198 ^65000:4_0:193_0:8$ ip community-list expanded c24 permit 199 ^65000:3_0:193_0:169$ ip community-list expanded c24 permit 200 ^65000:4_0:194_0:8$ ip community-list expanded c24 permit 201 ^65000:3_0:194_0:170$ ip community-list expanded c24 permit 202 ^65000:4_0:195_0:8$ ip community-list expanded c24 permit 203 ^65000:3_0:195_0:171$ ip community-list expanded c24 permit 204 ^65000:4_0:196_0:8$ ip community-list expanded c24 permit 205 ^65000:3_0:196_0:172$ ip community-list expanded c24 permit 206 ^65000:4_0:197_0:8$ ip community-list expanded c24 permit 207 ^65000:3_0:197_0:173$ ip community-list expanded c24 permit 208 ^65000:4_0:198_0:8$ ip community-list expanded c24 permit 209 ^65000:3_0:198_0:174$ ip community-list expanded c24 permit 210 ^65000:4_0:199_0:8$ ip community-list expanded c24 permit 211 ^65000:3_0:199_0:175$ ip community-list expanded c24 permit 212 ^65000:3_0:200_0:176$ ip community-list expanded c24 permit 213 ^65000:3_0:201_0:177$ ip community-list expanded c24 permit 214 ^65000:3_0:202_0:178$ ip community-list expanded c24 permit 215 ^65000:3_0:203_0:179$ ip community-list expanded c24 permit 216 ^65000:3_0:204_0:180$ ip community-list expanded c24 permit 217 ^65000:3_0:205_0:181$ ip community-list expanded c24 permit 218 ^65000:3_0:206_0:182$ ip community-list expanded c24 permit 219 ^65000:3_0:207_0:183$ ip community-list expanded c24 permit 220 ^65000:3_0:208_0:184$ ip community-list expanded c24 permit 221 ^65000:3_0:209_0:185$ ip community-list expanded c24 permit 222 ^65000:3_0:210_0:186$ ip community-list expanded c24 permit 223 ^65000:3_0:211_0:187$ ip community-list expanded c24 permit 224 ^65000:3_0:212_0:188$ ip community-list expanded c24 permit 225 ^65000:3_0:213_0:189$ ip community-list expanded c24 permit 226 ^65000:3_0:214_0:190$ ip community-list expanded c24 permit 227 ^65000:3_0:215_0:191$ ip community-list expanded c24 permit 228 ^65000:4_0:216_0:9$ ip community-list expanded c24 permit 229 ^65000:3_0:216_0:192$ ip community-list expanded c24 permit 230 ^65000:4_0:217_0:9$ ip community-list expanded c24 permit 231 ^65000:3_0:217_0:193$ ip community-list expanded c24 permit 232 ^65000:4_0:218_0:9$ ip community-list expanded c24 permit 233 ^65000:3_0:218_0:194$ ip community-list expanded c24 permit 234 ^65000:4_0:219_0:9$ ip community-list expanded c24 permit 235 ^65000:3_0:219_0:195$ ip community-list expanded c24 permit 236 ^65000:4_0:220_0:9$ ip community-list expanded c24 permit 237 ^65000:3_0:220_0:196$ ip community-list expanded c24 permit 238 ^65000:4_0:221_0:9$ ip community-list expanded c24 permit 239 ^65000:3_0:221_0:197$ ip community-list expanded c24 permit 240 ^65000:4_0:222_0:9$ ip community-list expanded c24 permit 241 ^65000:3_0:222_0:198$ ip community-list expanded c24 permit 242 ^65000:4_0:223_0:9$ ip community-list expanded c24 permit 243 ^65000:3_0:223_0:199$ ip community-list expanded c24 permit 244 ^65000:4_0:224_0:9$ ip community-list expanded c24 permit 245 ^65000:3_0:224_0:200$ ip community-list expanded c24 permit 246 ^65000:3_0:225_0:201$ ip community-list expanded c24 permit 247 ^65000:3_0:226_0:202$ ip community-list expanded c24 permit 248 ^65000:3_0:227_0:203$ ip community-list expanded c24 permit 249 ^65000:3_0:228_0:204$ ip community-list expanded c24 permit 250 ^65000:3_0:229_0:205$ ip community-list expanded c24 permit 251 ^65000:3_0:230_0:206$ ip community-list expanded c24 permit 252 ^65000:3_0:231_0:207$ ip community-list expanded c24 permit 253 ^65000:3_0:232_0:208$ ip community-list expanded c24 permit 254 ^65000:3_0:233_0:209$ ip community-list expanded c24 permit 255 ^65000:3_0:234_0:210$ ip community-list expanded c24 permit 256 ^65000:3_0:235_0:211$ ip community-list expanded c24 permit 257 ^65000:3_0:236_0:212$ ip community-list expanded c24 permit 258 ^65000:3_0:237_0:213$ ip community-list expanded c24 permit 259 ^65000:3_0:238_0:214$ ip community-list expanded c24 permit 260 ^65000:3_0:239_0:215$ ip community-list expanded c24 permit 261 ^65000:4_0:240_0:10$ ip community-list expanded c24 permit 262 ^65000:3_0:240_0:216$ ip community-list expanded c24 permit 263 ^65000:4_0:241_0:10$ ip community-list expanded c24 permit 264 ^65000:3_0:241_0:217$ ip community-list expanded c24 permit 265 ^65000:4_0:242_0:10$ ip community-list expanded c24 permit 266 ^65000:3_0:242_0:218$ ip community-list expanded c24 permit 267 ^65000:4_0:243_0:10$ ip community-list expanded c24 permit 268 ^65000:3_0:243_0:219$ ip community-list expanded c24 permit 269 ^65000:4_0:244_0:10$ ip community-list expanded c24 permit 270 ^65000:3_0:244_0:220$ ip community-list expanded c24 permit 271 ^65000:4_0:245_0:10$ ip community-list expanded c24 permit 272 ^65000:3_0:245_0:221$ ip community-list expanded c24 permit 273 ^65000:4_0:246_0:10$ ip community-list expanded c24 permit 274 ^65000:3_0:246_0:222$ ip community-list expanded c24 permit 275 ^65000:4_0:247_0:10$ ip community-list expanded c24 permit 276 ^65000:3_0:247_0:223$ ip community-list expanded c24 permit 277 ^65000:4_0:248_0:10$ ip community-list expanded c24 permit 278 ^65000:3_0:248_0:224$ ip community-list expanded c24 permit 279 ^65000:4_0:249_0:10$ ip community-list expanded c24 permit 280 ^65000:3_0:249_0:225$ ip community-list expanded c24 permit 281 ^65000:3_0:250_0:226$ ip community-list expanded c24 permit 282 ^65000:3_0:251_0:227$ ip community-list expanded c24 permit 283 ^65000:3_0:252_0:228$ ip community-list expanded c24 permit 284 ^65000:3_0:253_0:229$ ip community-list expanded c24 permit 285 ^65000:3_0:254_0:230$ ip community-list expanded c24 permit 286 ^65000:3_0:255_0:231$ ip community-list expanded c24 permit 287 ^65000:3_0:256_0:232$ route-map calculator permit 16393 match community 1_1_23 2_1_24 2_2_12 1_2_22 2_3_8 set community 0:24 route-map calculator permit 16394 match community 1_3_21 2_4_6 1_4_20 1_5_19 1_6_18 set community 0:24 route-map calculator permit 16395 match community 1_7_17 1_8_16 1_9_15 1_10_14 1_11_13 set community 0:24 route-map calculator permit 16396 match community 1_12_12 c4_24_1 c3_25_1 c3_26_2 c3_27_3 set community 0:24 route-map calculator permit 16397 match community c3_28_4 c3_29_5 c3_30_6 c3_31_7 c3_32_8 set community 0:24 route-map calculator permit 16398 match community c3_33_9 c3_34_10 c3_35_11 c3_36_12 c3_37_13 set community 0:24 route-map calculator permit 16399 match community c3_38_14 c3_39_15 c3_40_16 c3_41_17 c3_42_18 set community 0:24 route-map calculator permit 16400 match community c3_43_19 c3_44_20 c3_45_21 c3_46_22 c3_47_23 set community 0:24 route-map calculator permit 16401 match community c4_48_2 c3_48_24 c4_49_2 c3_49_25 c3_50_26 set community 0:24 route-map calculator permit 16402 match community c3_51_27 c3_52_28 c3_53_29 c3_54_30 c3_55_31 set community 0:24 route-map calculator permit 16403 match community c3_56_32 c3_57_33 c3_58_34 c3_59_35 c3_60_36 set community 0:24 route-map calculator permit 16404 match community c3_61_37 c3_62_38 c3_63_39 c3_64_40 c3_65_41 set community 0:24 route-map calculator permit 16405 match community c3_66_42 c3_67_43 c3_68_44 c3_69_45 c3_70_46 set community 0:24 route-map calculator permit 16406 match community c3_71_47 c4_72_3 c3_72_48 c4_73_3 c3_73_49 set community 0:24 route-map calculator permit 16407 match community c4_74_3 c3_74_50 c3_75_51 c3_76_52 c3_77_53 set community 0:24 route-map calculator permit 16408 match community c3_78_54 c3_79_55 c3_80_56 c3_81_57 c3_82_58 set community 0:24 route-map calculator permit 16409 match community c3_83_59 c3_84_60 c3_85_61 c3_86_62 c3_87_63 set community 0:24 route-map calculator permit 16410 match community c3_88_64 c3_89_65 c3_90_66 c3_91_67 c3_92_68 set community 0:24 route-map calculator permit 16411 match community c3_93_69 c3_94_70 c3_95_71 c4_96_4 c3_96_72 set community 0:24 route-map calculator permit 16412 match community c4_97_4 c3_97_73 c4_98_4 c3_98_74 c4_99_4 set community 0:24 route-map calculator permit 16413 match community c3_99_75 c3_100_76 c3_101_77 c3_102_78 c3_103_79 set community 0:24 route-map calculator permit 16414 match community c3_104_80 c3_105_81 c3_106_82 c3_107_83 c3_108_84 set community 0:24 route-map calculator permit 16415 match community c3_109_85 c3_110_86 c3_111_87 c3_112_88 c3_113_89 set community 0:24 route-map calculator permit 16416 match community c3_114_90 c3_115_91 c3_116_92 c3_117_93 c3_118_94 set community 0:24 route-map calculator permit 16417 match community c3_119_95 c4_120_5 c3_120_96 c4_121_5 c3_121_97 set community 0:24 route-map calculator permit 16418 match community c4_122_5 c3_122_98 c4_123_5 c3_123_99 c4_124_5 set community 0:24 route-map calculator permit 16419 match community c3_124_100 c3_125_101 c3_126_102 c3_127_103 c3_128_104 set community 0:24 route-map calculator permit 16420 match community c3_129_105 c3_130_106 c3_131_107 c3_132_108 c3_133_109 set community 0:24 route-map calculator permit 16421 match community c3_134_110 c3_135_111 c3_136_112 c3_137_113 c3_138_114 set community 0:24 route-map calculator permit 16422 match community c3_139_115 c3_140_116 c3_141_117 c3_142_118 c3_143_119 set community 0:24 route-map calculator permit 16423 match community c4_144_6 c3_144_120 c4_145_6 c3_145_121 c4_146_6 set community 0:24 route-map calculator permit 16424 match community c3_146_122 c4_147_6 c3_147_123 c4_148_6 c3_148_124 set community 0:24 route-map calculator permit 16425 match community c4_149_6 c3_149_125 c3_150_126 c3_151_127 c3_152_128 set community 0:24 route-map calculator permit 16426 match community c3_153_129 c3_154_130 c3_155_131 c3_156_132 c3_157_133 set community 0:24 route-map calculator permit 16427 match community c3_158_134 c3_159_135 c3_160_136 c3_161_137 c3_162_138 set community 0:24 route-map calculator permit 16428 match community c3_163_139 c3_164_140 c3_165_141 c3_166_142 c3_167_143 set community 0:24 route-map calculator permit 16429 match community c4_168_7 c3_168_144 c4_169_7 c3_169_145 c4_170_7 set community 0:24 route-map calculator permit 16430 match community c3_170_146 c4_171_7 c3_171_147 c4_172_7 c3_172_148 set community 0:24 route-map calculator permit 16431 match community c4_173_7 c3_173_149 c4_174_7 c3_174_150 c3_175_151 set community 0:24 route-map calculator permit 16432 match community c3_176_152 c3_177_153 c3_178_154 c3_179_155 c3_180_156 set community 0:24 route-map calculator permit 16433 match community c3_181_157 c3_182_158 c3_183_159 c3_184_160 c3_185_161 set community 0:24 route-map calculator permit 16434 match community c3_186_162 c3_187_163 c3_188_164 c3_189_165 c3_190_166 set community 0:24 route-map calculator permit 16435 match community c3_191_167 c4_192_8 c3_192_168 c4_193_8 c3_193_169 set community 0:24 route-map calculator permit 16436 match community c4_194_8 c3_194_170 c4_195_8 c3_195_171 c4_196_8 set community 0:24 route-map calculator permit 16437 match community c3_196_172 c4_197_8 c3_197_173 c4_198_8 c3_198_174 set community 0:24 route-map calculator permit 16438 match community c4_199_8 c3_199_175 c3_200_176 c3_201_177 c3_202_178 set community 0:24 route-map calculator permit 16439 match community c3_203_179 c3_204_180 c3_205_181 c3_206_182 c3_207_183 set community 0:24 route-map calculator permit 16440 match community c3_208_184 c3_209_185 c3_210_186 c3_211_187 c3_212_188 set community 0:24 route-map calculator permit 16441 match community c3_213_189 c3_214_190 c3_215_191 c4_216_9 c3_216_192 set community 0:24 route-map calculator permit 16442 match community c4_217_9 c3_217_193 c4_218_9 c3_218_194 c4_219_9 set community 0:24 route-map calculator permit 16443 match community c3_219_195 c4_220_9 c3_220_196 c4_221_9 c3_221_197 set community 0:24 route-map calculator permit 16444 match community c4_222_9 c3_222_198 c4_223_9 c3_223_199 c4_224_9 set community 0:24 route-map calculator permit 16445 match community c3_224_200 c3_225_201 c3_226_202 c3_227_203 c3_228_204 set community 0:24 route-map calculator permit 16446 match community c3_229_205 c3_230_206 c3_231_207 c3_232_208 c3_233_209 set community 0:24 route-map calculator permit 16447 match community c3_234_210 c3_235_211 c3_236_212 c3_237_213 c3_238_214 set community 0:24 route-map calculator permit 16448 match community c3_239_215 c4_240_10 c3_240_216 c4_241_10 c3_241_217 set community 0:24 route-map calculator permit 16449 match community c4_242_10 c3_242_218 c4_243_10 c3_243_219 c4_244_10 set community 0:24 route-map calculator permit 16450 match community c3_244_220 c4_245_10 c3_245_221 c4_246_10 c3_246_222 set community 0:24 route-map calculator permit 16451 match community c4_247_10 c3_247_223 c4_248_10 c3_248_224 c4_249_10 set community 0:24 route-map calculator permit 16452 match community c3_249_225 c3_250_226 c3_251_227 c3_252_228 c3_253_229 set community 0:24 route-map calculator permit 16453 match community c3_254_230 c3_255_231 c3_256_232 set community 0:24 ip community-list standard 2_147_236 permit 65000:2 0:147 0:236 ip community-list standard 2_177_196 permit 65000:2 0:177 0:196 route-map calculator permit 16454 match community 2_147_236 2_177_196 set community 0:34692 ip community-list standard 2_28_178 permit 65000:2 0:28 0:178 ip community-list standard 2_56_89 permit 65000:2 0:56 0:89 route-map calculator permit 16455 match community 2_28_178 2_56_89 set community 0:4984 ip community-list standard 2_133_209 permit 65000:2 0:133 0:209 route-map calculator permit 16456 match community 2_133_209 set community 0:27797 ip community-list standard 2_94_208 permit 65000:2 0:94 0:208 ip community-list standard 2_104_188 permit 65000:2 0:104 0:188 route-map calculator permit 16457 match community 2_94_208 2_104_188 set community 0:19552 ip community-list standard 2_26_208 permit 65000:2 0:26 0:208 ip community-list standard 2_32_169 permit 65000:2 0:32 0:169 ip community-list standard 2_52_104 permit 65000:2 0:52 0:104 route-map calculator permit 16458 match community 2_26_208 2_32_169 2_52_104 set community 0:5408 ip community-list standard 2_180_227 permit 65000:2 0:180 0:227 route-map calculator permit 16459 match community 2_180_227 set community 0:40860 ip community-list standard 2_44_149 permit 65000:2 0:44 0:149 route-map calculator permit 16460 match community 2_44_149 set community 0:6556 ip community-list standard 2_67_207 permit 65000:2 0:67 0:207 ip community-list standard 2_69_201 permit 65000:2 0:69 0:201 route-map calculator permit 16461 match community 2_67_207 2_69_201 set community 0:13869 ip community-list standard 2_198_251 permit 65000:2 0:198 0:251 route-map calculator permit 16462 match community 2_198_251 set community 0:49698 ip community-list standard 2_219_222 permit 65000:2 0:219 0:222 route-map calculator permit 16463 match community 2_219_222 set community 0:48618 ip community-list standard 2_132_237 permit 65000:2 0:132 0:237 ip community-list standard 2_158_198 permit 65000:2 0:158 0:198 route-map calculator permit 16464 match community 2_132_237 2_158_198 set community 0:31284 ip community-list standard 2_44_178 permit 65000:2 0:44 0:178 ip community-list standard 2_88_89 permit 65000:2 0:88 0:89 route-map calculator permit 16465 match community 2_44_178 2_88_89 set community 0:7832 ip community-list standard 2_101_181 permit 65000:2 0:101 0:181 route-map calculator permit 16466 match community 2_101_181 set community 0:18281 ip community-list standard 2_54_183 permit 65000:2 0:54 0:183 ip community-list standard 2_61_162 permit 65000:2 0:61 0:162 ip community-list standard 2_81_122 permit 65000:2 0:81 0:122 route-map calculator permit 16467 match community 2_54_183 2_61_162 2_81_122 set community 0:9882 ip community-list standard 2_187_191 permit 65000:2 0:187 0:191 route-map calculator permit 16468 match community 2_187_191 set community 0:35717 ip community-list standard 2_38_197 permit 65000:2 0:38 0:197 route-map calculator permit 16469 match community 2_38_197 set community 0:7486 ip community-list standard 2_129_234 permit 65000:2 0:129 0:234 route-map calculator permit 16470 match community 2_129_234 set community 0:30186 ip community-list standard 2_182_235 permit 65000:2 0:182 0:235 route-map calculator permit 16471 match community 2_182_235 set community 0:42770 ip community-list standard 2_178_180 permit 65000:2 0:178 0:180 route-map calculator permit 16472 match community 2_178_180 set community 0:32040 ip community-list standard 2_69_253 permit 65000:2 0:69 0:253 route-map calculator permit 16473 match community 2_69_253 set community 0:17457 ip community-list standard 2_181_217 permit 65000:2 0:181 0:217 route-map calculator permit 16474 match community 2_181_217 set community 0:39277 ip community-list standard 2_84_179 permit 65000:2 0:84 0:179 route-map calculator permit 16475 match community 2_84_179 set community 0:15036 ip community-list standard 2_41_254 permit 65000:2 0:41 0:254 ip community-list standard 2_82_127 permit 65000:2 0:82 0:127 route-map calculator permit 16476 match community 2_41_254 2_82_127 set community 0:10414 ip community-list standard 2_178_221 permit 65000:2 0:178 0:221 route-map calculator permit 16477 match community 2_178_221 set community 0:39338 ip community-list standard 2_105_213 permit 65000:2 0:105 0:213 route-map calculator permit 16478 match community 2_105_213 set community 0:22365 ip community-list standard 2_21_189 permit 65000:2 0:21 0:189 ip community-list standard 2_27_147 permit 65000:2 0:27 0:147 ip community-list standard 2_49_81 permit 65000:2 0:49 0:81 ip community-list standard 2_63_63 permit 65000:2 0:63 0:63 route-map calculator permit 16479 match community 2_21_189 2_27_147 2_49_81 2_63_63 set community 0:3969 ip community-list standard 2_13_125 permit 65000:2 0:13 0:125 ip community-list standard 2_25_65 permit 65000:2 0:25 0:65 route-map calculator permit 16480 match community 2_13_125 2_25_65 set community 0:1625 ip community-list standard 2_133_166 permit 65000:2 0:133 0:166 route-map calculator permit 16481 match community 2_133_166 set community 0:22078 ip community-list standard 2_98_151 permit 65000:2 0:98 0:151 route-map calculator permit 16482 match community 2_98_151 set community 0:14798 ip community-list standard 2_44_254 permit 65000:2 0:44 0:254 ip community-list standard 2_88_127 permit 65000:2 0:88 0:127 route-map calculator permit 16483 match community 2_44_254 2_88_127 set community 0:11176 ip community-list standard 2_37_218 permit 65000:2 0:37 0:218 ip community-list standard 2_74_109 permit 65000:2 0:74 0:109 route-map calculator permit 16484 match community 2_37_218 2_74_109 set community 0:8066 ip community-list standard 2_181_213 permit 65000:2 0:181 0:213 route-map calculator permit 16485 match community 2_181_213 set community 0:38553 ip community-list standard 2_225_225 permit 65000:2 0:225 0:225 route-map calculator permit 16486 match community 2_225_225 set community 0:50625 ip community-list standard 2_10_210 permit 65000:2 0:10 0:210 ip community-list standard 2_12_175 permit 65000:2 0:12 0:175 ip community-list standard 2_14_150 permit 65000:2 0:14 0:150 ip community-list standard 2_15_140 permit 65000:2 0:15 0:140 ip community-list standard 2_20_105 permit 65000:2 0:20 0:105 ip community-list standard 2_21_100 permit 65000:2 0:21 0:100 ip community-list standard 2_25_84 permit 65000:2 0:25 0:84 ip community-list standard 2_28_75 permit 65000:2 0:28 0:75 ip community-list standard 2_30_70 permit 65000:2 0:30 0:70 ip community-list standard 2_35_60 permit 65000:2 0:35 0:60 ip community-list standard 2_42_50 permit 65000:2 0:42 0:50 route-map calculator permit 16487 match community 2_10_210 2_12_175 2_14_150 2_15_140 2_20_105 set community 0:2100 route-map calculator permit 16488 match community 2_21_100 2_25_84 2_28_75 2_30_70 2_35_60 set community 0:2100 route-map calculator permit 16489 match community 2_42_50 set community 0:2100 ip community-list standard 2_241_251 permit 65000:2 0:241 0:251 route-map calculator permit 16490 match community 2_241_251 set community 0:60491 ip community-list standard 2_152_226 permit 65000:2 0:152 0:226 route-map calculator permit 16491 match community 2_152_226 set community 0:34352 ip community-list standard 2_28_218 permit 65000:2 0:28 0:218 ip community-list standard 2_56_109 permit 65000:2 0:56 0:109 route-map calculator permit 16492 match community 2_28_218 2_56_109 set community 0:6104 ip community-list standard 2_138_139 permit 65000:2 0:138 0:139 route-map calculator permit 16493 match community 2_138_139 set community 0:19182 ip community-list standard 2_100_243 permit 65000:2 0:100 0:243 ip community-list standard 2_108_225 permit 65000:2 0:108 0:225 ip community-list standard 2_135_180 permit 65000:2 0:135 0:180 ip community-list standard 2_150_162 permit 65000:2 0:150 0:162 route-map calculator permit 16494 match community 2_100_243 2_108_225 2_135_180 2_150_162 set community 0:24300 ip community-list standard 2_55_182 permit 65000:2 0:55 0:182 ip community-list standard 2_65_154 permit 65000:2 0:65 0:154 ip community-list standard 2_70_143 permit 65000:2 0:70 0:143 ip community-list standard 2_77_130 permit 65000:2 0:77 0:130 ip community-list standard 2_91_110 permit 65000:2 0:91 0:110 route-map calculator permit 16495 match community 2_55_182 2_65_154 2_70_143 2_77_130 2_91_110 set community 0:10010 ip community-list standard 2_31_252 permit 65000:2 0:31 0:252 ip community-list standard 2_36_217 permit 65000:2 0:36 0:217 ip community-list standard 2_42_186 permit 65000:2 0:42 0:186 ip community-list standard 2_62_126 permit 65000:2 0:62 0:126 ip community-list standard 2_63_124 permit 65000:2 0:63 0:124 ip community-list standard 2_84_93 permit 65000:2 0:84 0:93 route-map calculator permit 16496 match community 2_31_252 2_36_217 2_42_186 2_62_126 2_63_124 set community 0:7812 route-map calculator permit 16497 match community 2_84_93 set community 0:7812 ip community-list standard 2_57_89 permit 65000:2 0:57 0:89 route-map calculator permit 16498 match community 2_57_89 set community 0:5073 ip community-list standard 2_194_233 permit 65000:2 0:194 0:233 route-map calculator permit 16499 match community 2_194_233 set community 0:45202 ip community-list standard 2_125_175 permit 65000:2 0:125 0:175 route-map calculator permit 16500 match community 2_125_175 set community 0:21875 ip community-list standard 2_130_251 permit 65000:2 0:130 0:251 route-map calculator permit 16501 match community 2_130_251 set community 0:32630 ip community-list standard 2_57_151 permit 65000:2 0:57 0:151 route-map calculator permit 16502 match community 2_57_151 set community 0:8607 ip community-list standard 2_176_212 permit 65000:2 0:176 0:212 route-map calculator permit 16503 match community 2_176_212 set community 0:37312 ip community-list standard 2_136_178 permit 65000:2 0:136 0:178 route-map calculator permit 16504 match community 2_136_178 set community 0:24208 ip community-list standard 2_154_191 permit 65000:2 0:154 0:191 route-map calculator permit 16505 match community 2_154_191 set community 0:29414 ip community-list standard 2_92_238 permit 65000:2 0:92 0:238 ip community-list standard 2_119_184 permit 65000:2 0:119 0:184 ip community-list standard 2_136_161 permit 65000:2 0:136 0:161 route-map calculator permit 16506 match community 2_92_238 2_119_184 2_136_161 set community 0:21896 ip community-list standard 2_199_205 permit 65000:2 0:199 0:205 route-map calculator permit 16507 match community 2_199_205 set community 0:40795 ip community-list standard 2_116_242 permit 65000:2 0:116 0:242 ip community-list standard 2_121_232 permit 65000:2 0:121 0:232 route-map calculator permit 16508 match community 2_116_242 2_121_232 set community 0:28072 ip community-list standard 2_94_214 permit 65000:2 0:94 0:214 ip community-list standard 2_107_188 permit 65000:2 0:107 0:188 route-map calculator permit 16509 match community 2_94_214 2_107_188 set community 0:20116 ip community-list standard 2_102_249 permit 65000:2 0:102 0:249 ip community-list standard 2_153_166 permit 65000:2 0:153 0:166 route-map calculator permit 16510 match community 2_102_249 2_153_166 set community 0:25398 ip community-list standard 2_37_211 permit 65000:2 0:37 0:211 route-map calculator permit 16511 match community 2_37_211 set community 0:7807 ip community-list standard 2_14_164 permit 65000:2 0:14 0:164 ip community-list standard 2_28_82 permit 65000:2 0:28 0:82 ip community-list standard 2_41_56 permit 65000:2 0:41 0:56 route-map calculator permit 16512 match community 2_14_164 2_28_82 2_41_56 set community 0:2296 ip community-list standard 2_167_179 permit 65000:2 0:167 0:179 route-map calculator permit 16513 match community 2_167_179 set community 0:29893 ip community-list standard 2_162_230 permit 65000:2 0:162 0:230 ip community-list standard 2_180_207 permit 65000:2 0:180 0:207 route-map calculator permit 16514 match community 2_162_230 2_180_207 set community 0:37260 ip community-list standard 2_65_142 permit 65000:2 0:65 0:142 ip community-list standard 2_71_130 permit 65000:2 0:71 0:130 route-map calculator permit 16515 match community 2_65_142 2_71_130 set community 0:9230 ip community-list standard 2_229_255 permit 65000:2 0:229 0:255 route-map calculator permit 16516 match community 2_229_255 set community 0:58395 ip community-list standard 2_129_219 permit 65000:2 0:129 0:219 route-map calculator permit 16517 match community 2_129_219 set community 0:28251 ip community-list standard 2_83_230 permit 65000:2 0:83 0:230 ip community-list standard 2_115_166 permit 65000:2 0:115 0:166 route-map calculator permit 16518 match community 2_83_230 2_115_166 set community 0:19090 ip community-list standard 2_146_230 permit 65000:2 0:146 0:230 route-map calculator permit 16519 match community 2_146_230 set community 0:33580 ip community-list standard 2_49_255 permit 65000:2 0:49 0:255 ip community-list standard 2_51_245 permit 65000:2 0:51 0:245 ip community-list standard 2_85_147 permit 65000:2 0:85 0:147 ip community-list standard 2_105_119 permit 65000:2 0:105 0:119 route-map calculator permit 16520 match community 2_49_255 2_51_245 2_85_147 2_105_119 set community 0:12495 ip community-list standard 2_100_212 permit 65000:2 0:100 0:212 ip community-list standard 2_106_200 permit 65000:2 0:106 0:200 route-map calculator permit 16521 match community 2_100_212 2_106_200 set community 0:21200 ip community-list standard 2_41_184 permit 65000:2 0:41 0:184 ip community-list standard 2_46_164 permit 65000:2 0:46 0:164 ip community-list standard 2_82_92 permit 65000:2 0:82 0:92 route-map calculator permit 16522 match community 2_41_184 2_46_164 2_82_92 set community 0:7544 ip community-list standard 2_135_231 permit 65000:2 0:135 0:231 ip community-list standard 2_165_189 permit 65000:2 0:165 0:189 route-map calculator permit 16523 match community 2_135_231 2_165_189 set community 0:31185 ip community-list standard 2_172_243 permit 65000:2 0:172 0:243 route-map calculator permit 16524 match community 2_172_243 set community 0:41796 ip community-list standard 2_142_220 permit 65000:2 0:142 0:220 route-map calculator permit 16525 match community 2_142_220 set community 0:31240 ip community-list standard 2_23_149 permit 65000:2 0:23 0:149 route-map calculator permit 16526 match community 2_23_149 set community 0:3427 ip community-list standard 2_127_127 permit 65000:2 0:127 0:127 route-map calculator permit 16527 match community 2_127_127 set community 0:16129 ip community-list standard 2_13_199 permit 65000:2 0:13 0:199 route-map calculator permit 16528 match community 2_13_199 set community 0:2587 ip community-list standard 2_23_221 permit 65000:2 0:23 0:221 route-map calculator permit 16529 match community 2_23_221 set community 0:5083 ip community-list standard 2_21_252 permit 65000:2 0:21 0:252 ip community-list standard 2_27_196 permit 65000:2 0:27 0:196 ip community-list standard 2_28_189 permit 65000:2 0:28 0:189 ip community-list standard 2_36_147 permit 65000:2 0:36 0:147 ip community-list standard 2_42_126 permit 65000:2 0:42 0:126 ip community-list standard 2_49_108 permit 65000:2 0:49 0:108 ip community-list standard 2_54_98 permit 65000:2 0:54 0:98 ip community-list standard 2_63_84 permit 65000:2 0:63 0:84 route-map calculator permit 16530 match community 2_21_252 2_27_196 2_28_189 2_36_147 2_42_126 set community 0:5292 route-map calculator permit 16531 match community 2_49_108 2_54_98 2_63_84 set community 0:5292 ip community-list standard 2_131_167 permit 65000:2 0:131 0:167 route-map calculator permit 16532 match community 2_131_167 set community 0:21877 ip community-list standard 2_40_237 permit 65000:2 0:40 0:237 ip community-list standard 2_60_158 permit 65000:2 0:60 0:158 ip community-list standard 2_79_120 permit 65000:2 0:79 0:120 route-map calculator permit 16533 match community 2_40_237 2_60_158 2_79_120 set community 0:9480 ip community-list standard 2_36_172 permit 65000:2 0:36 0:172 ip community-list standard 2_43_144 permit 65000:2 0:43 0:144 ip community-list standard 2_48_129 permit 65000:2 0:48 0:129 ip community-list standard 2_72_86 permit 65000:2 0:72 0:86 route-map calculator permit 16534 match community 2_36_172 2_43_144 2_48_129 2_72_86 set community 0:6192 ip community-list standard 2_142_169 permit 65000:2 0:142 0:169 route-map calculator permit 16535 match community 2_142_169 set community 0:23998 ip community-list standard 2_97_228 permit 65000:2 0:97 0:228 ip community-list standard 2_114_194 permit 65000:2 0:114 0:194 route-map calculator permit 16536 match community 2_97_228 2_114_194 set community 0:22116 ip community-list standard 2_174_249 permit 65000:2 0:174 0:249 route-map calculator permit 16537 match community 2_174_249 set community 0:43326 ip community-list standard 2_15_174 permit 65000:2 0:15 0:174 ip community-list standard 2_18_145 permit 65000:2 0:18 0:145 ip community-list standard 2_29_90 permit 65000:2 0:29 0:90 ip community-list standard 2_30_87 permit 65000:2 0:30 0:87 ip community-list standard 2_45_58 permit 65000:2 0:45 0:58 route-map calculator permit 16538 match community 2_15_174 2_18_145 2_29_90 2_30_87 2_45_58 set community 0:2610 ip community-list standard 2_45_242 permit 65000:2 0:45 0:242 ip community-list standard 2_55_198 permit 65000:2 0:55 0:198 ip community-list standard 2_66_165 permit 65000:2 0:66 0:165 ip community-list standard 2_90_121 permit 65000:2 0:90 0:121 ip community-list standard 2_99_110 permit 65000:2 0:99 0:110 route-map calculator permit 16539 match community 2_45_242 2_55_198 2_66_165 2_90_121 2_99_110 set community 0:10890 ip community-list standard 2_19_211 permit 65000:2 0:19 0:211 route-map calculator permit 16540 match community 2_19_211 set community 0:4009 ip community-list standard 2_55_175 permit 65000:2 0:55 0:175 ip community-list standard 2_77_125 permit 65000:2 0:77 0:125 route-map calculator permit 16541 match community 2_55_175 2_77_125 set community 0:9625 ip community-list standard 2_32_255 permit 65000:2 0:32 0:255 ip community-list standard 2_34_240 permit 65000:2 0:34 0:240 ip community-list standard 2_40_204 permit 65000:2 0:40 0:204 ip community-list standard 2_48_170 permit 65000:2 0:48 0:170 ip community-list standard 2_51_160 permit 65000:2 0:51 0:160 ip community-list standard 2_60_136 permit 65000:2 0:60 0:136 ip community-list standard 2_68_120 permit 65000:2 0:68 0:120 ip community-list standard 2_80_102 permit 65000:2 0:80 0:102 ip community-list standard 2_85_96 permit 65000:2 0:85 0:96 route-map calculator permit 16542 match community 2_32_255 2_34_240 2_40_204 2_48_170 2_51_160 set community 0:8160 route-map calculator permit 16543 match community 2_60_136 2_68_120 2_80_102 2_85_96 set community 0:8160 ip community-list standard 2_11_149 permit 65000:2 0:11 0:149 route-map calculator permit 16544 match community 2_11_149 set community 0:1639 ip community-list standard 2_76_240 permit 65000:2 0:76 0:240 ip community-list standard 2_80_228 permit 65000:2 0:80 0:228 ip community-list standard 2_95_192 permit 65000:2 0:95 0:192 ip community-list standard 2_96_190 permit 65000:2 0:96 0:190 ip community-list standard 2_114_160 permit 65000:2 0:114 0:160 ip community-list standard 2_120_152 permit 65000:2 0:120 0:152 route-map calculator permit 16545 match community 2_76_240 2_80_228 2_95_192 2_96_190 2_114_160 set community 0:18240 route-map calculator permit 16546 match community 2_120_152 set community 0:18240 ip community-list standard 2_70_167 permit 65000:2 0:70 0:167 route-map calculator permit 16547 match community 2_70_167 set community 0:11690 ip community-list standard 2_65_134 permit 65000:2 0:65 0:134 ip community-list standard 2_67_130 permit 65000:2 0:67 0:130 route-map calculator permit 16548 match community 2_65_134 2_67_130 set community 0:8710 ip community-list standard 2_182_220 permit 65000:2 0:182 0:220 route-map calculator permit 16549 match community 2_182_220 set community 0:40040 ip community-list standard 1_1_43 permit 65000:1 0:1 0:43 ip community-list standard 2_1_44 permit 65000:2 0:1 0:44 ip community-list standard 2_2_22 permit 65000:2 0:2 0:22 ip community-list standard 1_2_42 permit 65000:1 0:2 0:42 ip community-list standard 1_3_41 permit 65000:1 0:3 0:41 ip community-list standard 2_4_11 permit 65000:2 0:4 0:11 ip community-list standard 1_4_40 permit 65000:1 0:4 0:40 ip community-list standard 1_5_39 permit 65000:1 0:5 0:39 ip community-list standard 1_6_38 permit 65000:1 0:6 0:38 ip community-list standard 1_7_37 permit 65000:1 0:7 0:37 ip community-list standard 1_8_36 permit 65000:1 0:8 0:36 ip community-list standard 1_9_35 permit 65000:1 0:9 0:35 ip community-list standard 1_10_34 permit 65000:1 0:10 0:34 ip community-list standard 1_11_33 permit 65000:1 0:11 0:33 ip community-list standard 1_12_32 permit 65000:1 0:12 0:32 ip community-list standard 1_13_31 permit 65000:1 0:13 0:31 ip community-list standard 1_14_30 permit 65000:1 0:14 0:30 ip community-list standard 1_15_29 permit 65000:1 0:15 0:29 ip community-list standard 1_16_28 permit 65000:1 0:16 0:28 ip community-list standard 1_17_27 permit 65000:1 0:17 0:27 ip community-list standard 1_18_26 permit 65000:1 0:18 0:26 ip community-list standard 1_19_25 permit 65000:1 0:19 0:25 ip community-list standard 1_20_24 permit 65000:1 0:20 0:24 ip community-list standard 1_21_23 permit 65000:1 0:21 0:23 ip community-list standard 1_22_22 permit 65000:1 0:22 0:22 ip community-list expanded c44 permit 1 ^65000:4_0:44_0:1$ ip community-list expanded c44 permit 2 ^65000:3_0:45_0:1$ ip community-list expanded c44 permit 3 ^65000:3_0:46_0:2$ ip community-list expanded c44 permit 4 ^65000:3_0:47_0:3$ ip community-list expanded c44 permit 5 ^65000:3_0:48_0:4$ ip community-list expanded c44 permit 6 ^65000:3_0:49_0:5$ ip community-list expanded c44 permit 7 ^65000:3_0:50_0:6$ ip community-list expanded c44 permit 8 ^65000:3_0:51_0:7$ ip community-list expanded c44 permit 9 ^65000:3_0:52_0:8$ ip community-list expanded c44 permit 10 ^65000:3_0:53_0:9$ ip community-list expanded c44 permit 11 ^65000:3_0:54_0:10$ ip community-list expanded c44 permit 12 ^65000:3_0:55_0:11$ ip community-list expanded c44 permit 13 ^65000:3_0:56_0:12$ ip community-list expanded c44 permit 14 ^65000:3_0:57_0:13$ ip community-list expanded c44 permit 15 ^65000:3_0:58_0:14$ ip community-list expanded c44 permit 16 ^65000:3_0:59_0:15$ ip community-list expanded c44 permit 17 ^65000:3_0:60_0:16$ ip community-list expanded c44 permit 18 ^65000:3_0:61_0:17$ ip community-list expanded c44 permit 19 ^65000:3_0:62_0:18$ ip community-list expanded c44 permit 20 ^65000:3_0:63_0:19$ ip community-list expanded c44 permit 21 ^65000:3_0:64_0:20$ ip community-list expanded c44 permit 22 ^65000:3_0:65_0:21$ ip community-list expanded c44 permit 23 ^65000:3_0:66_0:22$ ip community-list expanded c44 permit 24 ^65000:3_0:67_0:23$ ip community-list expanded c44 permit 25 ^65000:3_0:68_0:24$ ip community-list expanded c44 permit 26 ^65000:3_0:69_0:25$ ip community-list expanded c44 permit 27 ^65000:3_0:70_0:26$ ip community-list expanded c44 permit 28 ^65000:3_0:71_0:27$ ip community-list expanded c44 permit 29 ^65000:3_0:72_0:28$ ip community-list expanded c44 permit 30 ^65000:3_0:73_0:29$ ip community-list expanded c44 permit 31 ^65000:3_0:74_0:30$ ip community-list expanded c44 permit 32 ^65000:3_0:75_0:31$ ip community-list expanded c44 permit 33 ^65000:3_0:76_0:32$ ip community-list expanded c44 permit 34 ^65000:3_0:77_0:33$ ip community-list expanded c44 permit 35 ^65000:3_0:78_0:34$ ip community-list expanded c44 permit 36 ^65000:3_0:79_0:35$ ip community-list expanded c44 permit 37 ^65000:3_0:80_0:36$ ip community-list expanded c44 permit 38 ^65000:3_0:81_0:37$ ip community-list expanded c44 permit 39 ^65000:3_0:82_0:38$ ip community-list expanded c44 permit 40 ^65000:3_0:83_0:39$ ip community-list expanded c44 permit 41 ^65000:3_0:84_0:40$ ip community-list expanded c44 permit 42 ^65000:3_0:85_0:41$ ip community-list expanded c44 permit 43 ^65000:3_0:86_0:42$ ip community-list expanded c44 permit 44 ^65000:3_0:87_0:43$ ip community-list expanded c44 permit 45 ^65000:4_0:88_0:2$ ip community-list expanded c44 permit 46 ^65000:3_0:88_0:44$ ip community-list expanded c44 permit 47 ^65000:4_0:89_0:2$ ip community-list expanded c44 permit 48 ^65000:3_0:89_0:45$ ip community-list expanded c44 permit 49 ^65000:3_0:90_0:46$ ip community-list expanded c44 permit 50 ^65000:3_0:91_0:47$ ip community-list expanded c44 permit 51 ^65000:3_0:92_0:48$ ip community-list expanded c44 permit 52 ^65000:3_0:93_0:49$ ip community-list expanded c44 permit 53 ^65000:3_0:94_0:50$ ip community-list expanded c44 permit 54 ^65000:3_0:95_0:51$ ip community-list expanded c44 permit 55 ^65000:3_0:96_0:52$ ip community-list expanded c44 permit 56 ^65000:3_0:97_0:53$ ip community-list expanded c44 permit 57 ^65000:3_0:98_0:54$ ip community-list expanded c44 permit 58 ^65000:3_0:99_0:55$ ip community-list expanded c44 permit 59 ^65000:3_0:100_0:56$ ip community-list expanded c44 permit 60 ^65000:3_0:101_0:57$ ip community-list expanded c44 permit 61 ^65000:3_0:102_0:58$ ip community-list expanded c44 permit 62 ^65000:3_0:103_0:59$ ip community-list expanded c44 permit 63 ^65000:3_0:104_0:60$ ip community-list expanded c44 permit 64 ^65000:3_0:105_0:61$ ip community-list expanded c44 permit 65 ^65000:3_0:106_0:62$ ip community-list expanded c44 permit 66 ^65000:3_0:107_0:63$ ip community-list expanded c44 permit 67 ^65000:3_0:108_0:64$ ip community-list expanded c44 permit 68 ^65000:3_0:109_0:65$ ip community-list expanded c44 permit 69 ^65000:3_0:110_0:66$ ip community-list expanded c44 permit 70 ^65000:3_0:111_0:67$ ip community-list expanded c44 permit 71 ^65000:3_0:112_0:68$ ip community-list expanded c44 permit 72 ^65000:3_0:113_0:69$ ip community-list expanded c44 permit 73 ^65000:3_0:114_0:70$ ip community-list expanded c44 permit 74 ^65000:3_0:115_0:71$ ip community-list expanded c44 permit 75 ^65000:3_0:116_0:72$ ip community-list expanded c44 permit 76 ^65000:3_0:117_0:73$ ip community-list expanded c44 permit 77 ^65000:3_0:118_0:74$ ip community-list expanded c44 permit 78 ^65000:3_0:119_0:75$ ip community-list expanded c44 permit 79 ^65000:3_0:120_0:76$ ip community-list expanded c44 permit 80 ^65000:3_0:121_0:77$ ip community-list expanded c44 permit 81 ^65000:3_0:122_0:78$ ip community-list expanded c44 permit 82 ^65000:3_0:123_0:79$ ip community-list expanded c44 permit 83 ^65000:3_0:124_0:80$ ip community-list expanded c44 permit 84 ^65000:3_0:125_0:81$ ip community-list expanded c44 permit 85 ^65000:3_0:126_0:82$ ip community-list expanded c44 permit 86 ^65000:3_0:127_0:83$ ip community-list expanded c44 permit 87 ^65000:3_0:128_0:84$ ip community-list expanded c44 permit 88 ^65000:3_0:129_0:85$ ip community-list expanded c44 permit 89 ^65000:3_0:130_0:86$ ip community-list expanded c44 permit 90 ^65000:3_0:131_0:87$ ip community-list expanded c44 permit 91 ^65000:4_0:132_0:3$ ip community-list expanded c44 permit 92 ^65000:3_0:132_0:88$ ip community-list expanded c44 permit 93 ^65000:4_0:133_0:3$ ip community-list expanded c44 permit 94 ^65000:3_0:133_0:89$ ip community-list expanded c44 permit 95 ^65000:4_0:134_0:3$ ip community-list expanded c44 permit 96 ^65000:3_0:134_0:90$ ip community-list expanded c44 permit 97 ^65000:3_0:135_0:91$ ip community-list expanded c44 permit 98 ^65000:3_0:136_0:92$ ip community-list expanded c44 permit 99 ^65000:3_0:137_0:93$ ip community-list expanded c44 permit 100 ^65000:3_0:138_0:94$ ip community-list expanded c44 permit 101 ^65000:3_0:139_0:95$ ip community-list expanded c44 permit 102 ^65000:3_0:140_0:96$ ip community-list expanded c44 permit 103 ^65000:3_0:141_0:97$ ip community-list expanded c44 permit 104 ^65000:3_0:142_0:98$ ip community-list expanded c44 permit 105 ^65000:3_0:143_0:99$ ip community-list expanded c44 permit 106 ^65000:3_0:144_0:100$ ip community-list expanded c44 permit 107 ^65000:3_0:145_0:101$ ip community-list expanded c44 permit 108 ^65000:3_0:146_0:102$ ip community-list expanded c44 permit 109 ^65000:3_0:147_0:103$ ip community-list expanded c44 permit 110 ^65000:3_0:148_0:104$ ip community-list expanded c44 permit 111 ^65000:3_0:149_0:105$ ip community-list expanded c44 permit 112 ^65000:3_0:150_0:106$ ip community-list expanded c44 permit 113 ^65000:3_0:151_0:107$ ip community-list expanded c44 permit 114 ^65000:3_0:152_0:108$ ip community-list expanded c44 permit 115 ^65000:3_0:153_0:109$ ip community-list expanded c44 permit 116 ^65000:3_0:154_0:110$ ip community-list expanded c44 permit 117 ^65000:3_0:155_0:111$ ip community-list expanded c44 permit 118 ^65000:3_0:156_0:112$ ip community-list expanded c44 permit 119 ^65000:3_0:157_0:113$ ip community-list expanded c44 permit 120 ^65000:3_0:158_0:114$ ip community-list expanded c44 permit 121 ^65000:3_0:159_0:115$ ip community-list expanded c44 permit 122 ^65000:3_0:160_0:116$ ip community-list expanded c44 permit 123 ^65000:3_0:161_0:117$ ip community-list expanded c44 permit 124 ^65000:3_0:162_0:118$ ip community-list expanded c44 permit 125 ^65000:3_0:163_0:119$ ip community-list expanded c44 permit 126 ^65000:3_0:164_0:120$ ip community-list expanded c44 permit 127 ^65000:3_0:165_0:121$ ip community-list expanded c44 permit 128 ^65000:3_0:166_0:122$ ip community-list expanded c44 permit 129 ^65000:3_0:167_0:123$ ip community-list expanded c44 permit 130 ^65000:3_0:168_0:124$ ip community-list expanded c44 permit 131 ^65000:3_0:169_0:125$ ip community-list expanded c44 permit 132 ^65000:3_0:170_0:126$ ip community-list expanded c44 permit 133 ^65000:3_0:171_0:127$ ip community-list expanded c44 permit 134 ^65000:3_0:172_0:128$ ip community-list expanded c44 permit 135 ^65000:3_0:173_0:129$ ip community-list expanded c44 permit 136 ^65000:3_0:174_0:130$ ip community-list expanded c44 permit 137 ^65000:3_0:175_0:131$ ip community-list expanded c44 permit 138 ^65000:4_0:176_0:4$ ip community-list expanded c44 permit 139 ^65000:3_0:176_0:132$ ip community-list expanded c44 permit 140 ^65000:4_0:177_0:4$ ip community-list expanded c44 permit 141 ^65000:3_0:177_0:133$ ip community-list expanded c44 permit 142 ^65000:4_0:178_0:4$ ip community-list expanded c44 permit 143 ^65000:3_0:178_0:134$ ip community-list expanded c44 permit 144 ^65000:4_0:179_0:4$ ip community-list expanded c44 permit 145 ^65000:3_0:179_0:135$ ip community-list expanded c44 permit 146 ^65000:3_0:180_0:136$ ip community-list expanded c44 permit 147 ^65000:3_0:181_0:137$ ip community-list expanded c44 permit 148 ^65000:3_0:182_0:138$ ip community-list expanded c44 permit 149 ^65000:3_0:183_0:139$ ip community-list expanded c44 permit 150 ^65000:3_0:184_0:140$ ip community-list expanded c44 permit 151 ^65000:3_0:185_0:141$ ip community-list expanded c44 permit 152 ^65000:3_0:186_0:142$ ip community-list expanded c44 permit 153 ^65000:3_0:187_0:143$ ip community-list expanded c44 permit 154 ^65000:3_0:188_0:144$ ip community-list expanded c44 permit 155 ^65000:3_0:189_0:145$ ip community-list expanded c44 permit 156 ^65000:3_0:190_0:146$ ip community-list expanded c44 permit 157 ^65000:3_0:191_0:147$ ip community-list expanded c44 permit 158 ^65000:3_0:192_0:148$ ip community-list expanded c44 permit 159 ^65000:3_0:193_0:149$ ip community-list expanded c44 permit 160 ^65000:3_0:194_0:150$ ip community-list expanded c44 permit 161 ^65000:3_0:195_0:151$ ip community-list expanded c44 permit 162 ^65000:3_0:196_0:152$ ip community-list expanded c44 permit 163 ^65000:3_0:197_0:153$ ip community-list expanded c44 permit 164 ^65000:3_0:198_0:154$ ip community-list expanded c44 permit 165 ^65000:3_0:199_0:155$ ip community-list expanded c44 permit 166 ^65000:3_0:200_0:156$ ip community-list expanded c44 permit 167 ^65000:3_0:201_0:157$ ip community-list expanded c44 permit 168 ^65000:3_0:202_0:158$ ip community-list expanded c44 permit 169 ^65000:3_0:203_0:159$ ip community-list expanded c44 permit 170 ^65000:3_0:204_0:160$ ip community-list expanded c44 permit 171 ^65000:3_0:205_0:161$ ip community-list expanded c44 permit 172 ^65000:3_0:206_0:162$ ip community-list expanded c44 permit 173 ^65000:3_0:207_0:163$ ip community-list expanded c44 permit 174 ^65000:3_0:208_0:164$ ip community-list expanded c44 permit 175 ^65000:3_0:209_0:165$ ip community-list expanded c44 permit 176 ^65000:3_0:210_0:166$ ip community-list expanded c44 permit 177 ^65000:3_0:211_0:167$ ip community-list expanded c44 permit 178 ^65000:3_0:212_0:168$ ip community-list expanded c44 permit 179 ^65000:3_0:213_0:169$ ip community-list expanded c44 permit 180 ^65000:3_0:214_0:170$ ip community-list expanded c44 permit 181 ^65000:3_0:215_0:171$ ip community-list expanded c44 permit 182 ^65000:3_0:216_0:172$ ip community-list expanded c44 permit 183 ^65000:3_0:217_0:173$ ip community-list expanded c44 permit 184 ^65000:3_0:218_0:174$ ip community-list expanded c44 permit 185 ^65000:3_0:219_0:175$ ip community-list expanded c44 permit 186 ^65000:4_0:220_0:5$ ip community-list expanded c44 permit 187 ^65000:3_0:220_0:176$ ip community-list expanded c44 permit 188 ^65000:4_0:221_0:5$ ip community-list expanded c44 permit 189 ^65000:3_0:221_0:177$ ip community-list expanded c44 permit 190 ^65000:4_0:222_0:5$ ip community-list expanded c44 permit 191 ^65000:3_0:222_0:178$ ip community-list expanded c44 permit 192 ^65000:4_0:223_0:5$ ip community-list expanded c44 permit 193 ^65000:3_0:223_0:179$ ip community-list expanded c44 permit 194 ^65000:4_0:224_0:5$ ip community-list expanded c44 permit 195 ^65000:3_0:224_0:180$ ip community-list expanded c44 permit 196 ^65000:3_0:225_0:181$ ip community-list expanded c44 permit 197 ^65000:3_0:226_0:182$ ip community-list expanded c44 permit 198 ^65000:3_0:227_0:183$ ip community-list expanded c44 permit 199 ^65000:3_0:228_0:184$ ip community-list expanded c44 permit 200 ^65000:3_0:229_0:185$ ip community-list expanded c44 permit 201 ^65000:3_0:230_0:186$ ip community-list expanded c44 permit 202 ^65000:3_0:231_0:187$ ip community-list expanded c44 permit 203 ^65000:3_0:232_0:188$ ip community-list expanded c44 permit 204 ^65000:3_0:233_0:189$ ip community-list expanded c44 permit 205 ^65000:3_0:234_0:190$ ip community-list expanded c44 permit 206 ^65000:3_0:235_0:191$ ip community-list expanded c44 permit 207 ^65000:3_0:236_0:192$ ip community-list expanded c44 permit 208 ^65000:3_0:237_0:193$ ip community-list expanded c44 permit 209 ^65000:3_0:238_0:194$ ip community-list expanded c44 permit 210 ^65000:3_0:239_0:195$ ip community-list expanded c44 permit 211 ^65000:3_0:240_0:196$ ip community-list expanded c44 permit 212 ^65000:3_0:241_0:197$ ip community-list expanded c44 permit 213 ^65000:3_0:242_0:198$ ip community-list expanded c44 permit 214 ^65000:3_0:243_0:199$ ip community-list expanded c44 permit 215 ^65000:3_0:244_0:200$ ip community-list expanded c44 permit 216 ^65000:3_0:245_0:201$ ip community-list expanded c44 permit 217 ^65000:3_0:246_0:202$ ip community-list expanded c44 permit 218 ^65000:3_0:247_0:203$ ip community-list expanded c44 permit 219 ^65000:3_0:248_0:204$ ip community-list expanded c44 permit 220 ^65000:3_0:249_0:205$ ip community-list expanded c44 permit 221 ^65000:3_0:250_0:206$ ip community-list expanded c44 permit 222 ^65000:3_0:251_0:207$ ip community-list expanded c44 permit 223 ^65000:3_0:252_0:208$ ip community-list expanded c44 permit 224 ^65000:3_0:253_0:209$ ip community-list expanded c44 permit 225 ^65000:3_0:254_0:210$ ip community-list expanded c44 permit 226 ^65000:3_0:255_0:211$ ip community-list expanded c44 permit 227 ^65000:3_0:256_0:212$ route-map calculator permit 16550 match community 1_1_43 2_1_44 2_2_22 1_2_42 1_3_41 set community 0:44 route-map calculator permit 16551 match community 2_4_11 1_4_40 1_5_39 1_6_38 1_7_37 set community 0:44 route-map calculator permit 16552 match community 1_8_36 1_9_35 1_10_34 1_11_33 1_12_32 set community 0:44 route-map calculator permit 16553 match community 1_13_31 1_14_30 1_15_29 1_16_28 1_17_27 set community 0:44 route-map calculator permit 16554 match community 1_18_26 1_19_25 1_20_24 1_21_23 1_22_22 set community 0:44 route-map calculator permit 16555 match community c4_44_1 c3_45_1 c3_46_2 c3_47_3 c3_48_4 set community 0:44 route-map calculator permit 16556 match community c3_49_5 c3_50_6 c3_51_7 c3_52_8 c3_53_9 set community 0:44 route-map calculator permit 16557 match community c3_54_10 c3_55_11 c3_56_12 c3_57_13 c3_58_14 set community 0:44 route-map calculator permit 16558 match community c3_59_15 c3_60_16 c3_61_17 c3_62_18 c3_63_19 set community 0:44 route-map calculator permit 16559 match community c3_64_20 c3_65_21 c3_66_22 c3_67_23 c3_68_24 set community 0:44 route-map calculator permit 16560 match community c3_69_25 c3_70_26 c3_71_27 c3_72_28 c3_73_29 set community 0:44 route-map calculator permit 16561 match community c3_74_30 c3_75_31 c3_76_32 c3_77_33 c3_78_34 set community 0:44 route-map calculator permit 16562 match community c3_79_35 c3_80_36 c3_81_37 c3_82_38 c3_83_39 set community 0:44 route-map calculator permit 16563 match community c3_84_40 c3_85_41 c3_86_42 c3_87_43 c4_88_2 set community 0:44 route-map calculator permit 16564 match community c3_88_44 c4_89_2 c3_89_45 c3_90_46 c3_91_47 set community 0:44 route-map calculator permit 16565 match community c3_92_48 c3_93_49 c3_94_50 c3_95_51 c3_96_52 set community 0:44 route-map calculator permit 16566 match community c3_97_53 c3_98_54 c3_99_55 c3_100_56 c3_101_57 set community 0:44 route-map calculator permit 16567 match community c3_102_58 c3_103_59 c3_104_60 c3_105_61 c3_106_62 set community 0:44 route-map calculator permit 16568 match community c3_107_63 c3_108_64 c3_109_65 c3_110_66 c3_111_67 set community 0:44 route-map calculator permit 16569 match community c3_112_68 c3_113_69 c3_114_70 c3_115_71 c3_116_72 set community 0:44 route-map calculator permit 16570 match community c3_117_73 c3_118_74 c3_119_75 c3_120_76 c3_121_77 set community 0:44 route-map calculator permit 16571 match community c3_122_78 c3_123_79 c3_124_80 c3_125_81 c3_126_82 set community 0:44 route-map calculator permit 16572 match community c3_127_83 c3_128_84 c3_129_85 c3_130_86 c3_131_87 set community 0:44 route-map calculator permit 16573 match community c4_132_3 c3_132_88 c4_133_3 c3_133_89 c4_134_3 set community 0:44 route-map calculator permit 16574 match community c3_134_90 c3_135_91 c3_136_92 c3_137_93 c3_138_94 set community 0:44 route-map calculator permit 16575 match community c3_139_95 c3_140_96 c3_141_97 c3_142_98 c3_143_99 set community 0:44 route-map calculator permit 16576 match community c3_144_100 c3_145_101 c3_146_102 c3_147_103 c3_148_104 set community 0:44 route-map calculator permit 16577 match community c3_149_105 c3_150_106 c3_151_107 c3_152_108 c3_153_109 set community 0:44 route-map calculator permit 16578 match community c3_154_110 c3_155_111 c3_156_112 c3_157_113 c3_158_114 set community 0:44 route-map calculator permit 16579 match community c3_159_115 c3_160_116 c3_161_117 c3_162_118 c3_163_119 set community 0:44 route-map calculator permit 16580 match community c3_164_120 c3_165_121 c3_166_122 c3_167_123 c3_168_124 set community 0:44 route-map calculator permit 16581 match community c3_169_125 c3_170_126 c3_171_127 c3_172_128 c3_173_129 set community 0:44 route-map calculator permit 16582 match community c3_174_130 c3_175_131 c4_176_4 c3_176_132 c4_177_4 set community 0:44 route-map calculator permit 16583 match community c3_177_133 c4_178_4 c3_178_134 c4_179_4 c3_179_135 set community 0:44 route-map calculator permit 16584 match community c3_180_136 c3_181_137 c3_182_138 c3_183_139 c3_184_140 set community 0:44 route-map calculator permit 16585 match community c3_185_141 c3_186_142 c3_187_143 c3_188_144 c3_189_145 set community 0:44 route-map calculator permit 16586 match community c3_190_146 c3_191_147 c3_192_148 c3_193_149 c3_194_150 set community 0:44 route-map calculator permit 16587 match community c3_195_151 c3_196_152 c3_197_153 c3_198_154 c3_199_155 set community 0:44 route-map calculator permit 16588 match community c3_200_156 c3_201_157 c3_202_158 c3_203_159 c3_204_160 set community 0:44 route-map calculator permit 16589 match community c3_205_161 c3_206_162 c3_207_163 c3_208_164 c3_209_165 set community 0:44 route-map calculator permit 16590 match community c3_210_166 c3_211_167 c3_212_168 c3_213_169 c3_214_170 set community 0:44 route-map calculator permit 16591 match community c3_215_171 c3_216_172 c3_217_173 c3_218_174 c3_219_175 set community 0:44 route-map calculator permit 16592 match community c4_220_5 c3_220_176 c4_221_5 c3_221_177 c4_222_5 set community 0:44 route-map calculator permit 16593 match community c3_222_178 c4_223_5 c3_223_179 c4_224_5 c3_224_180 set community 0:44 route-map calculator permit 16594 match community c3_225_181 c3_226_182 c3_227_183 c3_228_184 c3_229_185 set community 0:44 route-map calculator permit 16595 match community c3_230_186 c3_231_187 c3_232_188 c3_233_189 c3_234_190 set community 0:44 route-map calculator permit 16596 match community c3_235_191 c3_236_192 c3_237_193 c3_238_194 c3_239_195 set community 0:44 route-map calculator permit 16597 match community c3_240_196 c3_241_197 c3_242_198 c3_243_199 c3_244_200 set community 0:44 route-map calculator permit 16598 match community c3_245_201 c3_246_202 c3_247_203 c3_248_204 c3_249_205 set community 0:44 route-map calculator permit 16599 match community c3_250_206 c3_251_207 c3_252_208 c3_253_209 c3_254_210 set community 0:44 route-map calculator permit 16600 match community c3_255_211 c3_256_212 set community 0:44 ip community-list standard 2_71_225 permit 65000:2 0:71 0:225 ip community-list standard 2_75_213 permit 65000:2 0:75 0:213 route-map calculator permit 16601 match community 2_71_225 2_75_213 set community 0:15975 ip community-list standard 2_90_193 permit 65000:2 0:90 0:193 route-map calculator permit 16602 match community 2_90_193 set community 0:17370 ip community-list standard 2_14_203 permit 65000:2 0:14 0:203 ip community-list standard 2_29_98 permit 65000:2 0:29 0:98 ip community-list standard 2_49_58 permit 65000:2 0:49 0:58 route-map calculator permit 16603 match community 2_14_203 2_29_98 2_49_58 set community 0:2842 ip community-list standard 1_25_256 permit 65000:1 0:25 0:256 ip community-list standard 1_26_255 permit 65000:1 0:26 0:255 ip community-list standard 1_27_254 permit 65000:1 0:27 0:254 ip community-list standard 1_28_253 permit 65000:1 0:28 0:253 ip community-list standard 1_29_252 permit 65000:1 0:29 0:252 ip community-list standard 1_30_251 permit 65000:1 0:30 0:251 ip community-list standard 1_31_250 permit 65000:1 0:31 0:250 ip community-list standard 1_32_249 permit 65000:1 0:32 0:249 ip community-list standard 1_33_248 permit 65000:1 0:33 0:248 ip community-list standard 1_34_247 permit 65000:1 0:34 0:247 ip community-list standard 1_35_246 permit 65000:1 0:35 0:246 ip community-list standard 1_36_245 permit 65000:1 0:36 0:245 ip community-list standard 1_37_244 permit 65000:1 0:37 0:244 ip community-list standard 1_38_243 permit 65000:1 0:38 0:243 ip community-list standard 1_39_242 permit 65000:1 0:39 0:242 ip community-list standard 1_40_241 permit 65000:1 0:40 0:241 ip community-list standard 1_41_240 permit 65000:1 0:41 0:240 ip community-list standard 1_42_239 permit 65000:1 0:42 0:239 ip community-list standard 1_43_238 permit 65000:1 0:43 0:238 ip community-list standard 1_44_237 permit 65000:1 0:44 0:237 ip community-list standard 1_45_236 permit 65000:1 0:45 0:236 ip community-list standard 1_46_235 permit 65000:1 0:46 0:235 ip community-list standard 1_47_234 permit 65000:1 0:47 0:234 ip community-list standard 1_48_233 permit 65000:1 0:48 0:233 ip community-list standard 1_49_232 permit 65000:1 0:49 0:232 ip community-list standard 1_50_231 permit 65000:1 0:50 0:231 ip community-list standard 1_51_230 permit 65000:1 0:51 0:230 ip community-list standard 1_52_229 permit 65000:1 0:52 0:229 ip community-list standard 1_53_228 permit 65000:1 0:53 0:228 ip community-list standard 1_54_227 permit 65000:1 0:54 0:227 ip community-list standard 1_55_226 permit 65000:1 0:55 0:226 ip community-list standard 1_56_225 permit 65000:1 0:56 0:225 ip community-list standard 1_57_224 permit 65000:1 0:57 0:224 ip community-list standard 1_58_223 permit 65000:1 0:58 0:223 ip community-list standard 1_59_222 permit 65000:1 0:59 0:222 ip community-list standard 1_60_221 permit 65000:1 0:60 0:221 ip community-list standard 1_61_220 permit 65000:1 0:61 0:220 ip community-list standard 1_62_219 permit 65000:1 0:62 0:219 ip community-list standard 1_63_218 permit 65000:1 0:63 0:218 ip community-list standard 1_64_217 permit 65000:1 0:64 0:217 ip community-list standard 1_65_216 permit 65000:1 0:65 0:216 ip community-list standard 1_66_215 permit 65000:1 0:66 0:215 ip community-list standard 1_67_214 permit 65000:1 0:67 0:214 ip community-list standard 1_68_213 permit 65000:1 0:68 0:213 ip community-list standard 1_69_212 permit 65000:1 0:69 0:212 ip community-list standard 1_70_211 permit 65000:1 0:70 0:211 ip community-list standard 1_71_210 permit 65000:1 0:71 0:210 ip community-list standard 1_72_209 permit 65000:1 0:72 0:209 ip community-list standard 1_73_208 permit 65000:1 0:73 0:208 ip community-list standard 1_74_207 permit 65000:1 0:74 0:207 ip community-list standard 1_75_206 permit 65000:1 0:75 0:206 ip community-list standard 1_76_205 permit 65000:1 0:76 0:205 ip community-list standard 1_77_204 permit 65000:1 0:77 0:204 ip community-list standard 1_78_203 permit 65000:1 0:78 0:203 ip community-list standard 1_79_202 permit 65000:1 0:79 0:202 ip community-list standard 1_80_201 permit 65000:1 0:80 0:201 ip community-list standard 1_81_200 permit 65000:1 0:81 0:200 ip community-list standard 1_82_199 permit 65000:1 0:82 0:199 ip community-list standard 1_83_198 permit 65000:1 0:83 0:198 ip community-list standard 1_84_197 permit 65000:1 0:84 0:197 ip community-list standard 1_85_196 permit 65000:1 0:85 0:196 ip community-list standard 1_86_195 permit 65000:1 0:86 0:195 ip community-list standard 1_87_194 permit 65000:1 0:87 0:194 ip community-list standard 1_88_193 permit 65000:1 0:88 0:193 ip community-list standard 1_89_192 permit 65000:1 0:89 0:192 ip community-list standard 1_90_191 permit 65000:1 0:90 0:191 ip community-list standard 1_91_190 permit 65000:1 0:91 0:190 ip community-list standard 1_92_189 permit 65000:1 0:92 0:189 ip community-list standard 1_93_188 permit 65000:1 0:93 0:188 ip community-list standard 1_94_187 permit 65000:1 0:94 0:187 ip community-list standard 1_95_186 permit 65000:1 0:95 0:186 ip community-list standard 1_96_185 permit 65000:1 0:96 0:185 ip community-list standard 1_97_184 permit 65000:1 0:97 0:184 ip community-list standard 1_98_183 permit 65000:1 0:98 0:183 ip community-list standard 1_99_182 permit 65000:1 0:99 0:182 ip community-list standard 1_100_181 permit 65000:1 0:100 0:181 ip community-list standard 1_101_180 permit 65000:1 0:101 0:180 ip community-list standard 1_102_179 permit 65000:1 0:102 0:179 ip community-list standard 1_103_178 permit 65000:1 0:103 0:178 ip community-list standard 1_104_177 permit 65000:1 0:104 0:177 ip community-list standard 1_105_176 permit 65000:1 0:105 0:176 ip community-list standard 1_106_175 permit 65000:1 0:106 0:175 ip community-list standard 1_107_174 permit 65000:1 0:107 0:174 ip community-list standard 1_108_173 permit 65000:1 0:108 0:173 ip community-list standard 1_109_172 permit 65000:1 0:109 0:172 ip community-list standard 1_110_171 permit 65000:1 0:110 0:171 ip community-list standard 1_111_170 permit 65000:1 0:111 0:170 ip community-list standard 1_112_169 permit 65000:1 0:112 0:169 ip community-list standard 1_113_168 permit 65000:1 0:113 0:168 ip community-list standard 1_114_167 permit 65000:1 0:114 0:167 ip community-list standard 1_115_166 permit 65000:1 0:115 0:166 ip community-list standard 1_116_165 permit 65000:1 0:116 0:165 ip community-list standard 1_117_164 permit 65000:1 0:117 0:164 ip community-list standard 1_118_163 permit 65000:1 0:118 0:163 ip community-list standard 1_119_162 permit 65000:1 0:119 0:162 ip community-list standard 1_120_161 permit 65000:1 0:120 0:161 ip community-list standard 1_121_160 permit 65000:1 0:121 0:160 ip community-list standard 1_122_159 permit 65000:1 0:122 0:159 ip community-list standard 1_123_158 permit 65000:1 0:123 0:158 ip community-list standard 1_124_157 permit 65000:1 0:124 0:157 ip community-list standard 1_125_156 permit 65000:1 0:125 0:156 ip community-list standard 1_126_155 permit 65000:1 0:126 0:155 ip community-list standard 1_127_154 permit 65000:1 0:127 0:154 ip community-list standard 1_128_153 permit 65000:1 0:128 0:153 ip community-list standard 1_129_152 permit 65000:1 0:129 0:152 ip community-list standard 1_130_151 permit 65000:1 0:130 0:151 ip community-list standard 1_131_150 permit 65000:1 0:131 0:150 ip community-list standard 1_132_149 permit 65000:1 0:132 0:149 ip community-list standard 1_133_148 permit 65000:1 0:133 0:148 ip community-list standard 1_134_147 permit 65000:1 0:134 0:147 ip community-list standard 1_135_146 permit 65000:1 0:135 0:146 ip community-list standard 1_136_145 permit 65000:1 0:136 0:145 ip community-list standard 1_137_144 permit 65000:1 0:137 0:144 ip community-list standard 1_138_143 permit 65000:1 0:138 0:143 ip community-list standard 1_139_142 permit 65000:1 0:139 0:142 ip community-list standard 1_140_141 permit 65000:1 0:140 0:141 route-map calculator permit 16604 match community 1_25_256 1_26_255 1_27_254 1_28_253 1_29_252 set community 0:281 route-map calculator permit 16605 match community 1_30_251 1_31_250 1_32_249 1_33_248 1_34_247 set community 0:281 route-map calculator permit 16606 match community 1_35_246 1_36_245 1_37_244 1_38_243 1_39_242 set community 0:281 route-map calculator permit 16607 match community 1_40_241 1_41_240 1_42_239 1_43_238 1_44_237 set community 0:281 route-map calculator permit 16608 match community 1_45_236 1_46_235 1_47_234 1_48_233 1_49_232 set community 0:281 route-map calculator permit 16609 match community 1_50_231 1_51_230 1_52_229 1_53_228 1_54_227 set community 0:281 route-map calculator permit 16610 match community 1_55_226 1_56_225 1_57_224 1_58_223 1_59_222 set community 0:281 route-map calculator permit 16611 match community 1_60_221 1_61_220 1_62_219 1_63_218 1_64_217 set community 0:281 route-map calculator permit 16612 match community 1_65_216 1_66_215 1_67_214 1_68_213 1_69_212 set community 0:281 route-map calculator permit 16613 match community 1_70_211 1_71_210 1_72_209 1_73_208 1_74_207 set community 0:281 route-map calculator permit 16614 match community 1_75_206 1_76_205 1_77_204 1_78_203 1_79_202 set community 0:281 route-map calculator permit 16615 match community 1_80_201 1_81_200 1_82_199 1_83_198 1_84_197 set community 0:281 route-map calculator permit 16616 match community 1_85_196 1_86_195 1_87_194 1_88_193 1_89_192 set community 0:281 route-map calculator permit 16617 match community 1_90_191 1_91_190 1_92_189 1_93_188 1_94_187 set community 0:281 route-map calculator permit 16618 match community 1_95_186 1_96_185 1_97_184 1_98_183 1_99_182 set community 0:281 route-map calculator permit 16619 match community 1_100_181 1_101_180 1_102_179 1_103_178 1_104_177 set community 0:281 route-map calculator permit 16620 match community 1_105_176 1_106_175 1_107_174 1_108_173 1_109_172 set community 0:281 route-map calculator permit 16621 match community 1_110_171 1_111_170 1_112_169 1_113_168 1_114_167 set community 0:281 route-map calculator permit 16622 match community 1_115_166 1_116_165 1_117_164 1_118_163 1_119_162 set community 0:281 route-map calculator permit 16623 match community 1_120_161 1_121_160 1_122_159 1_123_158 1_124_157 set community 0:281 route-map calculator permit 16624 match community 1_125_156 1_126_155 1_127_154 1_128_153 1_129_152 set community 0:281 route-map calculator permit 16625 match community 1_130_151 1_131_150 1_132_149 1_133_148 1_134_147 set community 0:281 route-map calculator permit 16626 match community 1_135_146 1_136_145 1_137_144 1_138_143 1_139_142 set community 0:281 route-map calculator permit 16627 match community 1_140_141 set community 0:281 ip community-list standard 2_46_213 permit 65000:2 0:46 0:213 ip community-list standard 2_69_142 permit 65000:2 0:69 0:142 ip community-list standard 2_71_138 permit 65000:2 0:71 0:138 route-map calculator permit 16628 match community 2_46_213 2_69_142 2_71_138 set community 0:9798 ip community-list standard 2_90_233 permit 65000:2 0:90 0:233 route-map calculator permit 16629 match community 2_90_233 set community 0:20970 ip community-list standard 2_156_253 permit 65000:2 0:156 0:253 route-map calculator permit 16630 match community 2_156_253 set community 0:39468 ip community-list standard 2_55_214 permit 65000:2 0:55 0:214 ip community-list standard 2_107_110 permit 65000:2 0:107 0:110 route-map calculator permit 16631 match community 2_55_214 2_107_110 set community 0:11770 ip community-list standard 2_211_241 permit 65000:2 0:211 0:241 route-map calculator permit 16632 match community 2_211_241 set community 0:50851 ip community-list standard 2_180_194 permit 65000:2 0:180 0:194 route-map calculator permit 16633 match community 2_180_194 set community 0:34920 ip community-list standard 2_13_232 permit 65000:2 0:13 0:232 ip community-list standard 2_26_116 permit 65000:2 0:26 0:116 ip community-list standard 2_29_104 permit 65000:2 0:29 0:104 ip community-list standard 2_52_58 permit 65000:2 0:52 0:58 route-map calculator permit 16634 match community 2_13_232 2_26_116 2_29_104 2_52_58 set community 0:3016 ip community-list standard 2_79_256 permit 65000:2 0:79 0:256 ip community-list standard 2_128_158 permit 65000:2 0:128 0:158 route-map calculator permit 16635 match community 2_79_256 2_128_158 set community 0:20224 ip community-list standard 2_195_235 permit 65000:2 0:195 0:235 route-map calculator permit 16636 match community 2_195_235 set community 0:45825 ip community-list standard 2_211_250 permit 65000:2 0:211 0:250 route-map calculator permit 16637 match community 2_211_250 set community 0:52750 ip community-list standard 2_170_194 permit 65000:2 0:170 0:194 route-map calculator permit 16638 match community 2_170_194 set community 0:32980 ip community-list standard 2_93_230 permit 65000:2 0:93 0:230 ip community-list standard 2_115_186 permit 65000:2 0:115 0:186 ip community-list standard 2_138_155 permit 65000:2 0:138 0:155 route-map calculator permit 16639 match community 2_93_230 2_115_186 2_138_155 set community 0:21390 ip community-list standard 2_17_252 permit 65000:2 0:17 0:252 ip community-list standard 2_18_238 permit 65000:2 0:18 0:238 ip community-list standard 2_21_204 permit 65000:2 0:21 0:204 ip community-list standard 2_28_153 permit 65000:2 0:28 0:153 ip community-list standard 2_34_126 permit 65000:2 0:34 0:126 ip community-list standard 2_36_119 permit 65000:2 0:36 0:119 ip community-list standard 2_42_102 permit 65000:2 0:42 0:102 ip community-list standard 2_51_84 permit 65000:2 0:51 0:84 ip community-list standard 2_63_68 permit 65000:2 0:63 0:68 route-map calculator permit 16640 match community 2_17_252 2_18_238 2_21_204 2_28_153 2_34_126 set community 0:4284 route-map calculator permit 16641 match community 2_36_119 2_42_102 2_51_84 2_63_68 set community 0:4284 ip community-list standard 2_7_244 permit 65000:2 0:7 0:244 ip community-list standard 2_14_122 permit 65000:2 0:14 0:122 ip community-list standard 2_28_61 permit 65000:2 0:28 0:61 route-map calculator permit 16642 match community 2_7_244 2_14_122 2_28_61 set community 0:1708 ip community-list standard 2_49_146 permit 65000:2 0:49 0:146 ip community-list standard 2_73_98 permit 65000:2 0:73 0:98 route-map calculator permit 16643 match community 2_49_146 2_73_98 set community 0:7154 ip community-list standard 2_113_199 permit 65000:2 0:113 0:199 route-map calculator permit 16644 match community 2_113_199 set community 0:22487 ip community-list standard 2_150_202 permit 65000:2 0:150 0:202 route-map calculator permit 16645 match community 2_150_202 set community 0:30300 ip community-list standard 2_197_210 permit 65000:2 0:197 0:210 route-map calculator permit 16646 match community 2_197_210 set community 0:41370 ip community-list standard 2_127_249 permit 65000:2 0:127 0:249 route-map calculator permit 16647 match community 2_127_249 set community 0:31623 ip community-list standard 1_1_232 permit 65000:1 0:1 0:232 ip community-list standard 2_1_233 permit 65000:2 0:1 0:233 ip community-list standard 1_2_231 permit 65000:1 0:2 0:231 ip community-list standard 1_3_230 permit 65000:1 0:3 0:230 ip community-list standard 1_4_229 permit 65000:1 0:4 0:229 ip community-list standard 1_5_228 permit 65000:1 0:5 0:228 ip community-list standard 1_6_227 permit 65000:1 0:6 0:227 ip community-list standard 1_7_226 permit 65000:1 0:7 0:226 ip community-list standard 1_8_225 permit 65000:1 0:8 0:225 ip community-list standard 1_9_224 permit 65000:1 0:9 0:224 ip community-list standard 1_10_223 permit 65000:1 0:10 0:223 ip community-list standard 1_11_222 permit 65000:1 0:11 0:222 ip community-list standard 1_12_221 permit 65000:1 0:12 0:221 ip community-list standard 1_13_220 permit 65000:1 0:13 0:220 ip community-list standard 1_14_219 permit 65000:1 0:14 0:219 ip community-list standard 1_15_218 permit 65000:1 0:15 0:218 ip community-list standard 1_16_217 permit 65000:1 0:16 0:217 ip community-list standard 1_17_216 permit 65000:1 0:17 0:216 ip community-list standard 1_18_215 permit 65000:1 0:18 0:215 ip community-list standard 1_19_214 permit 65000:1 0:19 0:214 ip community-list standard 1_20_213 permit 65000:1 0:20 0:213 ip community-list standard 1_21_212 permit 65000:1 0:21 0:212 ip community-list standard 1_22_211 permit 65000:1 0:22 0:211 ip community-list standard 1_23_210 permit 65000:1 0:23 0:210 ip community-list standard 1_24_209 permit 65000:1 0:24 0:209 ip community-list standard 1_25_208 permit 65000:1 0:25 0:208 ip community-list standard 1_26_207 permit 65000:1 0:26 0:207 ip community-list standard 1_27_206 permit 65000:1 0:27 0:206 ip community-list standard 1_28_205 permit 65000:1 0:28 0:205 ip community-list standard 1_29_204 permit 65000:1 0:29 0:204 ip community-list standard 1_30_203 permit 65000:1 0:30 0:203 ip community-list standard 1_31_202 permit 65000:1 0:31 0:202 ip community-list standard 1_32_201 permit 65000:1 0:32 0:201 ip community-list standard 1_33_200 permit 65000:1 0:33 0:200 ip community-list standard 1_34_199 permit 65000:1 0:34 0:199 ip community-list standard 1_35_198 permit 65000:1 0:35 0:198 ip community-list standard 1_36_197 permit 65000:1 0:36 0:197 ip community-list standard 1_37_196 permit 65000:1 0:37 0:196 ip community-list standard 1_38_195 permit 65000:1 0:38 0:195 ip community-list standard 1_39_194 permit 65000:1 0:39 0:194 ip community-list standard 1_40_193 permit 65000:1 0:40 0:193 ip community-list standard 1_41_192 permit 65000:1 0:41 0:192 ip community-list standard 1_42_191 permit 65000:1 0:42 0:191 ip community-list standard 1_43_190 permit 65000:1 0:43 0:190 ip community-list standard 1_44_189 permit 65000:1 0:44 0:189 ip community-list standard 1_45_188 permit 65000:1 0:45 0:188 ip community-list standard 1_46_187 permit 65000:1 0:46 0:187 ip community-list standard 1_47_186 permit 65000:1 0:47 0:186 ip community-list standard 1_48_185 permit 65000:1 0:48 0:185 ip community-list standard 1_49_184 permit 65000:1 0:49 0:184 ip community-list standard 1_50_183 permit 65000:1 0:50 0:183 ip community-list standard 1_51_182 permit 65000:1 0:51 0:182 ip community-list standard 1_52_181 permit 65000:1 0:52 0:181 ip community-list standard 1_53_180 permit 65000:1 0:53 0:180 ip community-list standard 1_54_179 permit 65000:1 0:54 0:179 ip community-list standard 1_55_178 permit 65000:1 0:55 0:178 ip community-list standard 1_56_177 permit 65000:1 0:56 0:177 ip community-list standard 1_57_176 permit 65000:1 0:57 0:176 ip community-list standard 1_58_175 permit 65000:1 0:58 0:175 ip community-list standard 1_59_174 permit 65000:1 0:59 0:174 ip community-list standard 1_60_173 permit 65000:1 0:60 0:173 ip community-list standard 1_61_172 permit 65000:1 0:61 0:172 ip community-list standard 1_62_171 permit 65000:1 0:62 0:171 ip community-list standard 1_63_170 permit 65000:1 0:63 0:170 ip community-list standard 1_64_169 permit 65000:1 0:64 0:169 ip community-list standard 1_65_168 permit 65000:1 0:65 0:168 ip community-list standard 1_66_167 permit 65000:1 0:66 0:167 ip community-list standard 1_67_166 permit 65000:1 0:67 0:166 ip community-list standard 1_68_165 permit 65000:1 0:68 0:165 ip community-list standard 1_69_164 permit 65000:1 0:69 0:164 ip community-list standard 1_70_163 permit 65000:1 0:70 0:163 ip community-list standard 1_71_162 permit 65000:1 0:71 0:162 ip community-list standard 1_72_161 permit 65000:1 0:72 0:161 ip community-list standard 1_73_160 permit 65000:1 0:73 0:160 ip community-list standard 1_74_159 permit 65000:1 0:74 0:159 ip community-list standard 1_75_158 permit 65000:1 0:75 0:158 ip community-list standard 1_76_157 permit 65000:1 0:76 0:157 ip community-list standard 1_77_156 permit 65000:1 0:77 0:156 ip community-list standard 1_78_155 permit 65000:1 0:78 0:155 ip community-list standard 1_79_154 permit 65000:1 0:79 0:154 ip community-list standard 1_80_153 permit 65000:1 0:80 0:153 ip community-list standard 1_81_152 permit 65000:1 0:81 0:152 ip community-list standard 1_82_151 permit 65000:1 0:82 0:151 ip community-list standard 1_83_150 permit 65000:1 0:83 0:150 ip community-list standard 1_84_149 permit 65000:1 0:84 0:149 ip community-list standard 1_85_148 permit 65000:1 0:85 0:148 ip community-list standard 1_86_147 permit 65000:1 0:86 0:147 ip community-list standard 1_87_146 permit 65000:1 0:87 0:146 ip community-list standard 1_88_145 permit 65000:1 0:88 0:145 ip community-list standard 1_89_144 permit 65000:1 0:89 0:144 ip community-list standard 1_90_143 permit 65000:1 0:90 0:143 ip community-list standard 1_91_142 permit 65000:1 0:91 0:142 ip community-list standard 1_92_141 permit 65000:1 0:92 0:141 ip community-list standard 1_93_140 permit 65000:1 0:93 0:140 ip community-list standard 1_94_139 permit 65000:1 0:94 0:139 ip community-list standard 1_95_138 permit 65000:1 0:95 0:138 ip community-list standard 1_96_137 permit 65000:1 0:96 0:137 ip community-list standard 1_97_136 permit 65000:1 0:97 0:136 ip community-list standard 1_98_135 permit 65000:1 0:98 0:135 ip community-list standard 1_99_134 permit 65000:1 0:99 0:134 ip community-list standard 1_100_133 permit 65000:1 0:100 0:133 ip community-list standard 1_101_132 permit 65000:1 0:101 0:132 ip community-list standard 1_102_131 permit 65000:1 0:102 0:131 ip community-list standard 1_103_130 permit 65000:1 0:103 0:130 ip community-list standard 1_104_129 permit 65000:1 0:104 0:129 ip community-list standard 1_105_128 permit 65000:1 0:105 0:128 ip community-list standard 1_106_127 permit 65000:1 0:106 0:127 ip community-list standard 1_107_126 permit 65000:1 0:107 0:126 ip community-list standard 1_108_125 permit 65000:1 0:108 0:125 ip community-list standard 1_109_124 permit 65000:1 0:109 0:124 ip community-list standard 1_110_123 permit 65000:1 0:110 0:123 ip community-list standard 1_111_122 permit 65000:1 0:111 0:122 ip community-list standard 1_112_121 permit 65000:1 0:112 0:121 ip community-list standard 1_113_120 permit 65000:1 0:113 0:120 ip community-list standard 1_114_119 permit 65000:1 0:114 0:119 ip community-list standard 1_115_118 permit 65000:1 0:115 0:118 ip community-list standard 1_116_117 permit 65000:1 0:116 0:117 ip community-list expanded c233 permit 1 ^65000:4_0:233_0:1$ ip community-list expanded c233 permit 2 ^65000:3_0:234_0:1$ ip community-list expanded c233 permit 3 ^65000:3_0:235_0:2$ ip community-list expanded c233 permit 4 ^65000:3_0:236_0:3$ ip community-list expanded c233 permit 5 ^65000:3_0:237_0:4$ ip community-list expanded c233 permit 6 ^65000:3_0:238_0:5$ ip community-list expanded c233 permit 7 ^65000:3_0:239_0:6$ ip community-list expanded c233 permit 8 ^65000:3_0:240_0:7$ ip community-list expanded c233 permit 9 ^65000:3_0:241_0:8$ ip community-list expanded c233 permit 10 ^65000:3_0:242_0:9$ ip community-list expanded c233 permit 11 ^65000:3_0:243_0:10$ ip community-list expanded c233 permit 12 ^65000:3_0:244_0:11$ ip community-list expanded c233 permit 13 ^65000:3_0:245_0:12$ ip community-list expanded c233 permit 14 ^65000:3_0:246_0:13$ ip community-list expanded c233 permit 15 ^65000:3_0:247_0:14$ ip community-list expanded c233 permit 16 ^65000:3_0:248_0:15$ ip community-list expanded c233 permit 17 ^65000:3_0:249_0:16$ ip community-list expanded c233 permit 18 ^65000:3_0:250_0:17$ ip community-list expanded c233 permit 19 ^65000:3_0:251_0:18$ ip community-list expanded c233 permit 20 ^65000:3_0:252_0:19$ ip community-list expanded c233 permit 21 ^65000:3_0:253_0:20$ ip community-list expanded c233 permit 22 ^65000:3_0:254_0:21$ ip community-list expanded c233 permit 23 ^65000:3_0:255_0:22$ ip community-list expanded c233 permit 24 ^65000:3_0:256_0:23$ route-map calculator permit 16648 match community 1_1_232 2_1_233 1_2_231 1_3_230 1_4_229 set community 0:233 route-map calculator permit 16649 match community 1_5_228 1_6_227 1_7_226 1_8_225 1_9_224 set community 0:233 route-map calculator permit 16650 match community 1_10_223 1_11_222 1_12_221 1_13_220 1_14_219 set community 0:233 route-map calculator permit 16651 match community 1_15_218 1_16_217 1_17_216 1_18_215 1_19_214 set community 0:233 route-map calculator permit 16652 match community 1_20_213 1_21_212 1_22_211 1_23_210 1_24_209 set community 0:233 route-map calculator permit 16653 match community 1_25_208 1_26_207 1_27_206 1_28_205 1_29_204 set community 0:233 route-map calculator permit 16654 match community 1_30_203 1_31_202 1_32_201 1_33_200 1_34_199 set community 0:233 route-map calculator permit 16655 match community 1_35_198 1_36_197 1_37_196 1_38_195 1_39_194 set community 0:233 route-map calculator permit 16656 match community 1_40_193 1_41_192 1_42_191 1_43_190 1_44_189 set community 0:233 route-map calculator permit 16657 match community 1_45_188 1_46_187 1_47_186 1_48_185 1_49_184 set community 0:233 route-map calculator permit 16658 match community 1_50_183 1_51_182 1_52_181 1_53_180 1_54_179 set community 0:233 route-map calculator permit 16659 match community 1_55_178 1_56_177 1_57_176 1_58_175 1_59_174 set community 0:233 route-map calculator permit 16660 match community 1_60_173 1_61_172 1_62_171 1_63_170 1_64_169 set community 0:233 route-map calculator permit 16661 match community 1_65_168 1_66_167 1_67_166 1_68_165 1_69_164 set community 0:233 route-map calculator permit 16662 match community 1_70_163 1_71_162 1_72_161 1_73_160 1_74_159 set community 0:233 route-map calculator permit 16663 match community 1_75_158 1_76_157 1_77_156 1_78_155 1_79_154 set community 0:233 route-map calculator permit 16664 match community 1_80_153 1_81_152 1_82_151 1_83_150 1_84_149 set community 0:233 route-map calculator permit 16665 match community 1_85_148 1_86_147 1_87_146 1_88_145 1_89_144 set community 0:233 route-map calculator permit 16666 match community 1_90_143 1_91_142 1_92_141 1_93_140 1_94_139 set community 0:233 route-map calculator permit 16667 match community 1_95_138 1_96_137 1_97_136 1_98_135 1_99_134 set community 0:233 route-map calculator permit 16668 match community 1_100_133 1_101_132 1_102_131 1_103_130 1_104_129 set community 0:233 route-map calculator permit 16669 match community 1_105_128 1_106_127 1_107_126 1_108_125 1_109_124 set community 0:233 route-map calculator permit 16670 match community 1_110_123 1_111_122 1_112_121 1_113_120 1_114_119 set community 0:233 route-map calculator permit 16671 match community 1_115_118 1_116_117 c4_233_1 c3_234_1 c3_235_2 set community 0:233 route-map calculator permit 16672 match community c3_236_3 c3_237_4 c3_238_5 c3_239_6 c3_240_7 set community 0:233 route-map calculator permit 16673 match community c3_241_8 c3_242_9 c3_243_10 c3_244_11 c3_245_12 set community 0:233 route-map calculator permit 16674 match community c3_246_13 c3_247_14 c3_248_15 c3_249_16 c3_250_17 set community 0:233 route-map calculator permit 16675 match community c3_251_18 c3_252_19 c3_253_20 c3_254_21 c3_255_22 set community 0:233 route-map calculator permit 16676 match community c3_256_23 set community 0:233 ip community-list standard 2_104_208 permit 65000:2 0:104 0:208 ip community-list standard 2_128_169 permit 65000:2 0:128 0:169 route-map calculator permit 16677 match community 2_104_208 2_128_169 set community 0:21632 ip community-list standard 2_62_207 permit 65000:2 0:62 0:207 ip community-list standard 2_69_186 permit 65000:2 0:69 0:186 ip community-list standard 2_93_138 permit 65000:2 0:93 0:138 route-map calculator permit 16678 match community 2_62_207 2_69_186 2_93_138 set community 0:12834 ip community-list standard 2_80_202 permit 65000:2 0:80 0:202 ip community-list standard 2_101_160 permit 65000:2 0:101 0:160 route-map calculator permit 16679 match community 2_80_202 2_101_160 set community 0:16160 ip community-list standard 2_82_235 permit 65000:2 0:82 0:235 ip community-list standard 2_94_205 permit 65000:2 0:94 0:205 route-map calculator permit 16680 match community 2_82_235 2_94_205 set community 0:19270 ip community-list standard 2_11_225 permit 65000:2 0:11 0:225 ip community-list standard 2_15_165 permit 65000:2 0:15 0:165 ip community-list standard 2_25_99 permit 65000:2 0:25 0:99 ip community-list standard 2_33_75 permit 65000:2 0:33 0:75 ip community-list standard 2_45_55 permit 65000:2 0:45 0:55 route-map calculator permit 16681 match community 2_11_225 2_15_165 2_25_99 2_33_75 2_45_55 set community 0:2475 ip community-list standard 2_24_197 permit 65000:2 0:24 0:197 route-map calculator permit 16682 match community 2_24_197 set community 0:4728 ip community-list standard 2_121_125 permit 65000:2 0:121 0:125 route-map calculator permit 16683 match community 2_121_125 set community 0:15125 ip community-list standard 2_11_232 permit 65000:2 0:11 0:232 ip community-list standard 2_22_116 permit 65000:2 0:22 0:116 ip community-list standard 2_29_88 permit 65000:2 0:29 0:88 ip community-list standard 2_44_58 permit 65000:2 0:44 0:58 route-map calculator permit 16684 match community 2_11_232 2_22_116 2_29_88 2_44_58 set community 0:2552 ip community-list standard 2_87_197 permit 65000:2 0:87 0:197 route-map calculator permit 16685 match community 2_87_197 set community 0:17139 ip community-list standard 2_93_215 permit 65000:2 0:93 0:215 ip community-list standard 2_129_155 permit 65000:2 0:129 0:155 route-map calculator permit 16686 match community 2_93_215 2_129_155 set community 0:19995 ip community-list standard 2_226_229 permit 65000:2 0:226 0:229 route-map calculator permit 16687 match community 2_226_229 set community 0:51754 ip community-list standard 2_67_226 permit 65000:2 0:67 0:226 ip community-list standard 2_113_134 permit 65000:2 0:113 0:134 route-map calculator permit 16688 match community 2_67_226 2_113_134 set community 0:15142 ip community-list standard 2_67_247 permit 65000:2 0:67 0:247 route-map calculator permit 16689 match community 2_67_247 set community 0:16549 ip community-list standard 2_157_201 permit 65000:2 0:157 0:201 route-map calculator permit 16690 match community 2_157_201 set community 0:31557 ip community-list standard 2_4_160 permit 65000:2 0:4 0:160 ip community-list standard 2_5_128 permit 65000:2 0:5 0:128 ip community-list standard 2_8_80 permit 65000:2 0:8 0:80 ip community-list standard 2_10_64 permit 65000:2 0:10 0:64 ip community-list standard 2_16_40 permit 65000:2 0:16 0:40 ip community-list standard 2_20_32 permit 65000:2 0:20 0:32 route-map calculator permit 16691 match community 2_4_160 2_5_128 2_8_80 2_10_64 2_16_40 set community 0:640 route-map calculator permit 16692 match community 2_20_32 set community 0:640 ip community-list standard 2_165_201 permit 65000:2 0:165 0:201 route-map calculator permit 16693 match community 2_165_201 set community 0:33165 ip community-list standard 2_130_237 permit 65000:2 0:130 0:237 ip community-list standard 2_158_195 permit 65000:2 0:158 0:195 route-map calculator permit 16694 match community 2_130_237 2_158_195 set community 0:30810 ip community-list standard 2_107_217 permit 65000:2 0:107 0:217 route-map calculator permit 16695 match community 2_107_217 set community 0:23219 ip community-list standard 2_106_165 permit 65000:2 0:106 0:165 ip community-list standard 2_110_159 permit 65000:2 0:110 0:159 route-map calculator permit 16696 match community 2_106_165 2_110_159 set community 0:17490 ip community-list standard 2_209_217 permit 65000:2 0:209 0:217 route-map calculator permit 16697 match community 2_209_217 set community 0:45353 ip community-list standard 2_5_224 permit 65000:2 0:5 0:224 ip community-list standard 2_7_160 permit 65000:2 0:7 0:160 ip community-list standard 2_8_140 permit 65000:2 0:8 0:140 ip community-list standard 2_10_112 permit 65000:2 0:10 0:112 ip community-list standard 2_14_80 permit 65000:2 0:14 0:80 ip community-list standard 2_16_70 permit 65000:2 0:16 0:70 ip community-list standard 2_20_56 permit 65000:2 0:20 0:56 ip community-list standard 2_28_40 permit 65000:2 0:28 0:40 ip community-list standard 2_32_35 permit 65000:2 0:32 0:35 route-map calculator permit 16698 match community 2_5_224 2_7_160 2_8_140 2_10_112 2_14_80 set community 0:1120 route-map calculator permit 16699 match community 2_16_70 2_20_56 2_28_40 2_32_35 set community 0:1120 ip community-list standard 2_188_231 permit 65000:2 0:188 0:231 route-map calculator permit 16700 match community 2_188_231 set community 0:43428 ip community-list standard 2_177_209 permit 65000:2 0:177 0:209 route-map calculator permit 16701 match community 2_177_209 set community 0:36993 ip community-list standard 2_101_121 permit 65000:2 0:101 0:121 route-map calculator permit 16702 match community 2_101_121 set community 0:12221 ip community-list standard 2_142_252 permit 65000:2 0:142 0:252 ip community-list standard 2_168_213 permit 65000:2 0:168 0:213 route-map calculator permit 16703 match community 2_142_252 2_168_213 set community 0:35784 ip community-list standard 2_118_199 permit 65000:2 0:118 0:199 route-map calculator permit 16704 match community 2_118_199 set community 0:23482 ip community-list standard 2_106_226 permit 65000:2 0:106 0:226 ip community-list standard 2_113_212 permit 65000:2 0:113 0:212 route-map calculator permit 16705 match community 2_106_226 2_113_212 set community 0:23956 ip community-list standard 2_136_200 permit 65000:2 0:136 0:200 ip community-list standard 2_160_170 permit 65000:2 0:160 0:170 route-map calculator permit 16706 match community 2_136_200 2_160_170 set community 0:27200 ip community-list standard 2_220_233 permit 65000:2 0:220 0:233 route-map calculator permit 16707 match community 2_220_233 set community 0:51260 ip community-list standard 2_159_167 permit 65000:2 0:159 0:167 route-map calculator permit 16708 match community 2_159_167 set community 0:26553 ip community-list standard 2_41_77 permit 65000:2 0:41 0:77 route-map calculator permit 16709 match community 2_41_77 set community 0:3157 ip community-list standard 2_102_131 permit 65000:2 0:102 0:131 route-map calculator permit 16710 match community 2_102_131 set community 0:13362 ip community-list standard 2_122_187 permit 65000:2 0:122 0:187 route-map calculator permit 16711 match community 2_122_187 set community 0:22814 ip community-list standard 2_90_222 permit 65000:2 0:90 0:222 ip community-list standard 2_108_185 permit 65000:2 0:108 0:185 ip community-list standard 2_111_180 permit 65000:2 0:111 0:180 ip community-list standard 2_135_148 permit 65000:2 0:135 0:148 route-map calculator permit 16712 match community 2_90_222 2_108_185 2_111_180 2_135_148 set community 0:19980 ip community-list standard 2_67_250 permit 65000:2 0:67 0:250 ip community-list standard 2_125_134 permit 65000:2 0:125 0:134 route-map calculator permit 16713 match community 2_67_250 2_125_134 set community 0:16750 ip community-list standard 2_197_232 permit 65000:2 0:197 0:232 route-map calculator permit 16714 match community 2_197_232 set community 0:45704 ip community-list standard 2_171_209 permit 65000:2 0:171 0:209 route-map calculator permit 16715 match community 2_171_209 set community 0:35739 ip community-list standard 2_82_188 permit 65000:2 0:82 0:188 ip community-list standard 2_94_164 permit 65000:2 0:94 0:164 route-map calculator permit 16716 match community 2_82_188 2_94_164 set community 0:15416 ip community-list standard 2_115_193 permit 65000:2 0:115 0:193 route-map calculator permit 16717 match community 2_115_193 set community 0:22195 ip community-list standard 2_169_191 permit 65000:2 0:169 0:191 route-map calculator permit 16718 match community 2_169_191 set community 0:32279 ip community-list standard 2_20_248 permit 65000:2 0:20 0:248 ip community-list standard 2_31_160 permit 65000:2 0:31 0:160 ip community-list standard 2_32_155 permit 65000:2 0:32 0:155 ip community-list standard 2_40_124 permit 65000:2 0:40 0:124 ip community-list standard 2_62_80 permit 65000:2 0:62 0:80 route-map calculator permit 16719 match community 2_20_248 2_31_160 2_32_155 2_40_124 2_62_80 set community 0:4960 ip community-list standard 2_37_250 permit 65000:2 0:37 0:250 ip community-list standard 2_50_185 permit 65000:2 0:50 0:185 ip community-list standard 2_74_125 permit 65000:2 0:74 0:125 route-map calculator permit 16720 match community 2_37_250 2_50_185 2_74_125 set community 0:9250 ip community-list standard 2_33_111 permit 65000:2 0:33 0:111 ip community-list standard 2_37_99 permit 65000:2 0:37 0:99 route-map calculator permit 16721 match community 2_33_111 2_37_99 set community 0:3663 ip community-list standard 2_143_183 permit 65000:2 0:143 0:183 route-map calculator permit 16722 match community 2_143_183 set community 0:26169 ip community-list standard 2_156_252 permit 65000:2 0:156 0:252 ip community-list standard 2_168_234 permit 65000:2 0:168 0:234 ip community-list standard 2_182_216 permit 65000:2 0:182 0:216 ip community-list standard 2_189_208 permit 65000:2 0:189 0:208 route-map calculator permit 16723 match community 2_156_252 2_168_234 2_182_216 2_189_208 set community 0:39312 ip community-list standard 2_194_212 permit 65000:2 0:194 0:212 route-map calculator permit 16724 match community 2_194_212 set community 0:41128 ip community-list standard 2_113_123 permit 65000:2 0:113 0:123 route-map calculator permit 16725 match community 2_113_123 set community 0:13899 ip community-list standard 2_45_197 permit 65000:2 0:45 0:197 route-map calculator permit 16726 match community 2_45_197 set community 0:8865 ip community-list standard 2_106_235 permit 65000:2 0:106 0:235 route-map calculator permit 16727 match community 2_106_235 set community 0:24910 ip community-list standard 2_5_113 permit 65000:2 0:5 0:113 route-map calculator permit 16728 match community 2_5_113 set community 0:565 ip community-list standard 2_205_239 permit 65000:2 0:205 0:239 route-map calculator permit 16729 match community 2_205_239 set community 0:48995 ip community-list standard 2_137_226 permit 65000:2 0:137 0:226 route-map calculator permit 16730 match community 2_137_226 set community 0:30962 ip community-list standard 2_12_203 permit 65000:2 0:12 0:203 ip community-list standard 2_14_174 permit 65000:2 0:14 0:174 ip community-list standard 2_21_116 permit 65000:2 0:21 0:116 ip community-list standard 2_28_87 permit 65000:2 0:28 0:87 ip community-list standard 2_29_84 permit 65000:2 0:29 0:84 ip community-list standard 2_42_58 permit 65000:2 0:42 0:58 route-map calculator permit 16731 match community 2_12_203 2_14_174 2_21_116 2_28_87 2_29_84 set community 0:2436 route-map calculator permit 16732 match community 2_42_58 set community 0:2436 ip community-list standard 2_85_125 permit 65000:2 0:85 0:125 route-map calculator permit 16733 match community 2_85_125 set community 0:10625 ip community-list standard 2_83_223 permit 65000:2 0:83 0:223 route-map calculator permit 16734 match community 2_83_223 set community 0:18509 ip community-list standard 2_91_103 permit 65000:2 0:91 0:103 route-map calculator permit 16735 match community 2_91_103 set community 0:9373 ip community-list standard 2_84_232 permit 65000:2 0:84 0:232 ip community-list standard 2_87_224 permit 65000:2 0:87 0:224 ip community-list standard 2_96_203 permit 65000:2 0:96 0:203 ip community-list standard 2_112_174 permit 65000:2 0:112 0:174 ip community-list standard 2_116_168 permit 65000:2 0:116 0:168 route-map calculator permit 16736 match community 2_84_232 2_87_224 2_96_203 2_112_174 2_116_168 set community 0:19488 ip community-list standard 2_74_243 permit 65000:2 0:74 0:243 ip community-list standard 2_81_222 permit 65000:2 0:81 0:222 ip community-list standard 2_111_162 permit 65000:2 0:111 0:162 route-map calculator permit 16737 match community 2_74_243 2_81_222 2_111_162 set community 0:17982 ip community-list standard 2_66_242 permit 65000:2 0:66 0:242 ip community-list standard 2_121_132 permit 65000:2 0:121 0:132 route-map calculator permit 16738 match community 2_66_242 2_121_132 set community 0:15972 ip community-list standard 2_79_212 permit 65000:2 0:79 0:212 ip community-list standard 2_106_158 permit 65000:2 0:106 0:158 route-map calculator permit 16739 match community 2_79_212 2_106_158 set community 0:16748 ip community-list standard 2_33_237 permit 65000:2 0:33 0:237 ip community-list standard 2_79_99 permit 65000:2 0:79 0:99 route-map calculator permit 16740 match community 2_33_237 2_79_99 set community 0:7821 ip community-list standard 2_130_243 permit 65000:2 0:130 0:243 ip community-list standard 2_135_234 permit 65000:2 0:135 0:234 ip community-list standard 2_162_195 permit 65000:2 0:162 0:195 route-map calculator permit 16741 match community 2_130_243 2_135_234 2_162_195 set community 0:31590 ip community-list standard 2_84_202 permit 65000:2 0:84 0:202 ip community-list standard 2_101_168 permit 65000:2 0:101 0:168 route-map calculator permit 16742 match community 2_84_202 2_101_168 set community 0:16968 ip community-list standard 2_19_46 permit 65000:2 0:19 0:46 ip community-list standard 2_23_38 permit 65000:2 0:23 0:38 route-map calculator permit 16743 match community 2_19_46 2_23_38 set community 0:874 ip community-list standard 2_119_221 permit 65000:2 0:119 0:221 route-map calculator permit 16744 match community 2_119_221 set community 0:26299 ip community-list standard 2_25_186 permit 65000:2 0:25 0:186 ip community-list standard 2_30_155 permit 65000:2 0:30 0:155 ip community-list standard 2_31_150 permit 65000:2 0:31 0:150 ip community-list standard 2_50_93 permit 65000:2 0:50 0:93 ip community-list standard 2_62_75 permit 65000:2 0:62 0:75 route-map calculator permit 16745 match community 2_25_186 2_30_155 2_31_150 2_50_93 2_62_75 set community 0:4650 ip community-list standard 2_49_179 permit 65000:2 0:49 0:179 route-map calculator permit 16746 match community 2_49_179 set community 0:8771 ip community-list standard 2_191_210 permit 65000:2 0:191 0:210 route-map calculator permit 16747 match community 2_191_210 set community 0:40110 ip community-list standard 2_241_248 permit 65000:2 0:241 0:248 route-map calculator permit 16748 match community 2_241_248 set community 0:59768 ip community-list standard 2_149_173 permit 65000:2 0:149 0:173 route-map calculator permit 16749 match community 2_149_173 set community 0:25777 ip community-list standard 2_143_166 permit 65000:2 0:143 0:166 route-map calculator permit 16750 match community 2_143_166 set community 0:23738 ip community-list standard 2_107_235 permit 65000:2 0:107 0:235 route-map calculator permit 16751 match community 2_107_235 set community 0:25145 ip community-list standard 2_101_173 permit 65000:2 0:101 0:173 route-map calculator permit 16752 match community 2_101_173 set community 0:17473 ip community-list standard 2_76_194 permit 65000:2 0:76 0:194 ip community-list standard 2_97_152 permit 65000:2 0:97 0:152 route-map calculator permit 16753 match community 2_76_194 2_97_152 set community 0:14744 ip community-list standard 2_22_158 permit 65000:2 0:22 0:158 ip community-list standard 2_44_79 permit 65000:2 0:44 0:79 route-map calculator permit 16754 match community 2_22_158 2_44_79 set community 0:3476 ip community-list standard 2_108_157 permit 65000:2 0:108 0:157 route-map calculator permit 16755 match community 2_108_157 set community 0:16956 ip community-list standard 2_30_244 permit 65000:2 0:30 0:244 ip community-list standard 2_40_183 permit 65000:2 0:40 0:183 ip community-list standard 2_60_122 permit 65000:2 0:60 0:122 ip community-list standard 2_61_120 permit 65000:2 0:61 0:120 route-map calculator permit 16756 match community 2_30_244 2_40_183 2_60_122 2_61_120 set community 0:7320 ip community-list standard 2_38_251 permit 65000:2 0:38 0:251 route-map calculator permit 16757 match community 2_38_251 set community 0:9538 ip community-list standard 2_139_177 permit 65000:2 0:139 0:177 route-map calculator permit 16758 match community 2_139_177 set community 0:24603 ip community-list standard 2_10_194 permit 65000:2 0:10 0:194 ip community-list standard 2_20_97 permit 65000:2 0:20 0:97 route-map calculator permit 16759 match community 2_10_194 2_20_97 set community 0:1940 ip community-list standard 2_177_234 permit 65000:2 0:177 0:234 route-map calculator permit 16760 match community 2_177_234 set community 0:41418 ip community-list standard 2_62_231 permit 65000:2 0:62 0:231 ip community-list standard 2_66_217 permit 65000:2 0:66 0:217 ip community-list standard 2_77_186 permit 65000:2 0:77 0:186 ip community-list standard 2_93_154 permit 65000:2 0:93 0:154 route-map calculator permit 16761 match community 2_62_231 2_66_217 2_77_186 2_93_154 set community 0:14322 ip community-list standard 2_163_182 permit 65000:2 0:163 0:182 route-map calculator permit 16762 match community 2_163_182 set community 0:29666 ip community-list standard 2_8_225 permit 65000:2 0:8 0:225 ip community-list standard 2_9_200 permit 65000:2 0:9 0:200 ip community-list standard 2_10_180 permit 65000:2 0:10 0:180 ip community-list standard 2_12_150 permit 65000:2 0:12 0:150 ip community-list standard 2_15_120 permit 65000:2 0:15 0:120 ip community-list standard 2_18_100 permit 65000:2 0:18 0:100 ip community-list standard 2_20_90 permit 65000:2 0:20 0:90 ip community-list standard 2_24_75 permit 65000:2 0:24 0:75 ip community-list standard 2_25_72 permit 65000:2 0:25 0:72 ip community-list standard 2_30_60 permit 65000:2 0:30 0:60 ip community-list standard 2_36_50 permit 65000:2 0:36 0:50 ip community-list standard 2_40_45 permit 65000:2 0:40 0:45 route-map calculator permit 16763 match community 2_8_225 2_9_200 2_10_180 2_12_150 2_15_120 set community 0:1800 route-map calculator permit 16764 match community 2_18_100 2_20_90 2_24_75 2_25_72 2_30_60 set community 0:1800 route-map calculator permit 16765 match community 2_36_50 2_40_45 set community 0:1800 ip community-list standard 2_2_194 permit 65000:2 0:2 0:194 ip community-list standard 2_4_97 permit 65000:2 0:4 0:97 ip community-list standard 1_132_256 permit 65000:1 0:132 0:256 ip community-list standard 1_133_255 permit 65000:1 0:133 0:255 ip community-list standard 1_134_254 permit 65000:1 0:134 0:254 ip community-list standard 1_135_253 permit 65000:1 0:135 0:253 ip community-list standard 1_136_252 permit 65000:1 0:136 0:252 ip community-list standard 1_137_251 permit 65000:1 0:137 0:251 ip community-list standard 1_138_250 permit 65000:1 0:138 0:250 ip community-list standard 1_139_249 permit 65000:1 0:139 0:249 ip community-list standard 1_140_248 permit 65000:1 0:140 0:248 ip community-list standard 1_141_247 permit 65000:1 0:141 0:247 ip community-list standard 1_142_246 permit 65000:1 0:142 0:246 ip community-list standard 1_143_245 permit 65000:1 0:143 0:245 ip community-list standard 1_144_244 permit 65000:1 0:144 0:244 ip community-list standard 1_145_243 permit 65000:1 0:145 0:243 ip community-list standard 1_146_242 permit 65000:1 0:146 0:242 ip community-list standard 1_147_241 permit 65000:1 0:147 0:241 ip community-list standard 1_148_240 permit 65000:1 0:148 0:240 ip community-list standard 1_149_239 permit 65000:1 0:149 0:239 ip community-list standard 1_150_238 permit 65000:1 0:150 0:238 ip community-list standard 1_151_237 permit 65000:1 0:151 0:237 ip community-list standard 1_152_236 permit 65000:1 0:152 0:236 ip community-list standard 1_153_235 permit 65000:1 0:153 0:235 ip community-list standard 1_154_234 permit 65000:1 0:154 0:234 ip community-list standard 1_155_233 permit 65000:1 0:155 0:233 ip community-list standard 1_156_232 permit 65000:1 0:156 0:232 ip community-list standard 1_157_231 permit 65000:1 0:157 0:231 ip community-list standard 1_158_230 permit 65000:1 0:158 0:230 ip community-list standard 1_159_229 permit 65000:1 0:159 0:229 ip community-list standard 1_160_228 permit 65000:1 0:160 0:228 ip community-list standard 1_161_227 permit 65000:1 0:161 0:227 ip community-list standard 1_162_226 permit 65000:1 0:162 0:226 ip community-list standard 1_163_225 permit 65000:1 0:163 0:225 ip community-list standard 1_164_224 permit 65000:1 0:164 0:224 ip community-list standard 1_165_223 permit 65000:1 0:165 0:223 ip community-list standard 1_166_222 permit 65000:1 0:166 0:222 ip community-list standard 1_167_221 permit 65000:1 0:167 0:221 ip community-list standard 1_168_220 permit 65000:1 0:168 0:220 ip community-list standard 1_169_219 permit 65000:1 0:169 0:219 ip community-list standard 1_170_218 permit 65000:1 0:170 0:218 ip community-list standard 1_171_217 permit 65000:1 0:171 0:217 ip community-list standard 1_172_216 permit 65000:1 0:172 0:216 ip community-list standard 1_173_215 permit 65000:1 0:173 0:215 ip community-list standard 1_174_214 permit 65000:1 0:174 0:214 ip community-list standard 1_175_213 permit 65000:1 0:175 0:213 ip community-list standard 1_176_212 permit 65000:1 0:176 0:212 ip community-list standard 1_177_211 permit 65000:1 0:177 0:211 ip community-list standard 1_178_210 permit 65000:1 0:178 0:210 ip community-list standard 1_179_209 permit 65000:1 0:179 0:209 ip community-list standard 1_180_208 permit 65000:1 0:180 0:208 ip community-list standard 1_181_207 permit 65000:1 0:181 0:207 ip community-list standard 1_182_206 permit 65000:1 0:182 0:206 ip community-list standard 1_183_205 permit 65000:1 0:183 0:205 ip community-list standard 1_184_204 permit 65000:1 0:184 0:204 ip community-list standard 1_185_203 permit 65000:1 0:185 0:203 ip community-list standard 1_186_202 permit 65000:1 0:186 0:202 ip community-list standard 1_187_201 permit 65000:1 0:187 0:201 ip community-list standard 1_188_200 permit 65000:1 0:188 0:200 ip community-list standard 1_189_199 permit 65000:1 0:189 0:199 ip community-list standard 1_190_198 permit 65000:1 0:190 0:198 ip community-list standard 1_191_197 permit 65000:1 0:191 0:197 ip community-list standard 1_192_196 permit 65000:1 0:192 0:196 ip community-list standard 1_193_195 permit 65000:1 0:193 0:195 ip community-list standard 1_194_194 permit 65000:1 0:194 0:194 route-map calculator permit 16766 match community 2_2_194 2_4_97 1_132_256 1_133_255 1_134_254 set community 0:388 route-map calculator permit 16767 match community 1_135_253 1_136_252 1_137_251 1_138_250 1_139_249 set community 0:388 route-map calculator permit 16768 match community 1_140_248 1_141_247 1_142_246 1_143_245 1_144_244 set community 0:388 route-map calculator permit 16769 match community 1_145_243 1_146_242 1_147_241 1_148_240 1_149_239 set community 0:388 route-map calculator permit 16770 match community 1_150_238 1_151_237 1_152_236 1_153_235 1_154_234 set community 0:388 route-map calculator permit 16771 match community 1_155_233 1_156_232 1_157_231 1_158_230 1_159_229 set community 0:388 route-map calculator permit 16772 match community 1_160_228 1_161_227 1_162_226 1_163_225 1_164_224 set community 0:388 route-map calculator permit 16773 match community 1_165_223 1_166_222 1_167_221 1_168_220 1_169_219 set community 0:388 route-map calculator permit 16774 match community 1_170_218 1_171_217 1_172_216 1_173_215 1_174_214 set community 0:388 route-map calculator permit 16775 match community 1_175_213 1_176_212 1_177_211 1_178_210 1_179_209 set community 0:388 route-map calculator permit 16776 match community 1_180_208 1_181_207 1_182_206 1_183_205 1_184_204 set community 0:388 route-map calculator permit 16777 match community 1_185_203 1_186_202 1_187_201 1_188_200 1_189_199 set community 0:388 route-map calculator permit 16778 match community 1_190_198 1_191_197 1_192_196 1_193_195 1_194_194 set community 0:388 ip community-list standard 2_57_174 permit 65000:2 0:57 0:174 ip community-list standard 2_58_171 permit 65000:2 0:58 0:171 ip community-list standard 2_87_114 permit 65000:2 0:87 0:114 route-map calculator permit 16779 match community 2_57_174 2_58_171 2_87_114 set community 0:9918 ip community-list standard 2_169_225 permit 65000:2 0:169 0:225 ip community-list standard 2_195_195 permit 65000:2 0:195 0:195 route-map calculator permit 16780 match community 2_169_225 2_195_195 set community 0:38025 ip community-list standard 2_138_202 permit 65000:2 0:138 0:202 route-map calculator permit 16781 match community 2_138_202 set community 0:27876 ip community-list standard 2_54_248 permit 65000:2 0:54 0:248 ip community-list standard 2_62_216 permit 65000:2 0:62 0:216 ip community-list standard 2_72_186 permit 65000:2 0:72 0:186 ip community-list standard 2_93_144 permit 65000:2 0:93 0:144 ip community-list standard 2_108_124 permit 65000:2 0:108 0:124 route-map calculator permit 16782 match community 2_54_248 2_62_216 2_72_186 2_93_144 2_108_124 set community 0:13392 ip community-list standard 2_17_189 permit 65000:2 0:17 0:189 ip community-list standard 2_21_153 permit 65000:2 0:21 0:153 ip community-list standard 2_27_119 permit 65000:2 0:27 0:119 ip community-list standard 2_51_63 permit 65000:2 0:51 0:63 route-map calculator permit 16783 match community 2_17_189 2_21_153 2_27_119 2_51_63 set community 0:3213 ip community-list standard 2_13_62 permit 65000:2 0:13 0:62 ip community-list standard 2_26_31 permit 65000:2 0:26 0:31 route-map calculator permit 16784 match community 2_13_62 2_26_31 set community 0:806 ip community-list standard 2_172_204 permit 65000:2 0:172 0:204 route-map calculator permit 16785 match community 2_172_204 set community 0:35088 ip community-list standard 2_142_247 permit 65000:2 0:142 0:247 route-map calculator permit 16786 match community 2_142_247 set community 0:35074 ip community-list standard 2_56_190 permit 65000:2 0:56 0:190 ip community-list standard 2_70_152 permit 65000:2 0:70 0:152 ip community-list standard 2_76_140 permit 65000:2 0:76 0:140 ip community-list standard 2_80_133 permit 65000:2 0:80 0:133 ip community-list standard 2_95_112 permit 65000:2 0:95 0:112 route-map calculator permit 16787 match community 2_56_190 2_70_152 2_76_140 2_80_133 2_95_112 set community 0:10640 ip community-list standard 2_21_184 permit 65000:2 0:21 0:184 ip community-list standard 2_23_168 permit 65000:2 0:23 0:168 ip community-list standard 2_24_161 permit 65000:2 0:24 0:161 ip community-list standard 2_28_138 permit 65000:2 0:28 0:138 ip community-list standard 2_42_92 permit 65000:2 0:42 0:92 ip community-list standard 2_46_84 permit 65000:2 0:46 0:84 ip community-list standard 2_56_69 permit 65000:2 0:56 0:69 route-map calculator permit 16788 match community 2_21_184 2_23_168 2_24_161 2_28_138 2_42_92 set community 0:3864 route-map calculator permit 16789 match community 2_46_84 2_56_69 set community 0:3864 ip community-list standard 2_207_248 permit 65000:2 0:207 0:248 route-map calculator permit 16790 match community 2_207_248 set community 0:51336 ip community-list standard 2_117_253 permit 65000:2 0:117 0:253 ip community-list standard 2_143_207 permit 65000:2 0:143 0:207 route-map calculator permit 16791 match community 2_117_253 2_143_207 set community 0:29601 ip community-list standard 2_13_47 permit 65000:2 0:13 0:47 route-map calculator permit 16792 match community 2_13_47 set community 0:611 ip community-list standard 2_15_171 permit 65000:2 0:15 0:171 ip community-list standard 2_19_135 permit 65000:2 0:19 0:135 ip community-list standard 2_27_95 permit 65000:2 0:27 0:95 ip community-list standard 2_45_57 permit 65000:2 0:45 0:57 route-map calculator permit 16793 match community 2_15_171 2_19_135 2_27_95 2_45_57 set community 0:2565 ip community-list standard 2_112_131 permit 65000:2 0:112 0:131 route-map calculator permit 16794 match community 2_112_131 set community 0:14672 ip community-list standard 2_59_194 permit 65000:2 0:59 0:194 ip community-list standard 2_97_118 permit 65000:2 0:97 0:118 route-map calculator permit 16795 match community 2_59_194 2_97_118 set community 0:11446 ip community-list standard 2_50_236 permit 65000:2 0:50 0:236 ip community-list standard 2_59_200 permit 65000:2 0:59 0:200 ip community-list standard 2_100_118 permit 65000:2 0:100 0:118 route-map calculator permit 16796 match community 2_50_236 2_59_200 2_100_118 set community 0:11800 ip community-list standard 2_244_249 permit 65000:2 0:244 0:249 route-map calculator permit 16797 match community 2_244_249 set community 0:60756 ip community-list standard 2_206_239 permit 65000:2 0:206 0:239 route-map calculator permit 16798 match community 2_206_239 set community 0:49234 ip community-list standard 2_36_173 permit 65000:2 0:36 0:173 route-map calculator permit 16799 match community 2_36_173 set community 0:6228 ip community-list standard 2_42_196 permit 65000:2 0:42 0:196 ip community-list standard 2_49_168 permit 65000:2 0:49 0:168 ip community-list standard 2_56_147 permit 65000:2 0:56 0:147 ip community-list standard 2_84_98 permit 65000:2 0:84 0:98 route-map calculator permit 16800 match community 2_42_196 2_49_168 2_56_147 2_84_98 set community 0:8232 ip community-list standard 2_61_139 permit 65000:2 0:61 0:139 route-map calculator permit 16801 match community 2_61_139 set community 0:8479 ip community-list standard 2_167_186 permit 65000:2 0:167 0:186 route-map calculator permit 16802 match community 2_167_186 set community 0:31062 ip community-list standard 2_240_244 permit 65000:2 0:240 0:244 route-map calculator permit 16803 match community 2_240_244 set community 0:58560 ip community-list standard 2_208_236 permit 65000:2 0:208 0:236 route-map calculator permit 16804 match community 2_208_236 set community 0:49088 ip community-list standard 2_17_194 permit 65000:2 0:17 0:194 ip community-list standard 2_34_97 permit 65000:2 0:34 0:97 route-map calculator permit 16805 match community 2_17_194 2_34_97 set community 0:3298 ip community-list standard 2_144_254 permit 65000:2 0:144 0:254 route-map calculator permit 16806 match community 2_144_254 set community 0:36576 ip community-list standard 2_219_247 permit 65000:2 0:219 0:247 route-map calculator permit 16807 match community 2_219_247 set community 0:54093 ip community-list standard 2_24_219 permit 65000:2 0:24 0:219 ip community-list standard 2_36_146 permit 65000:2 0:36 0:146 ip community-list standard 2_72_73 permit 65000:2 0:72 0:73 route-map calculator permit 16808 match community 2_24_219 2_36_146 2_72_73 set community 0:5256 ip community-list standard 1_27_256 permit 65000:1 0:27 0:256 ip community-list standard 1_28_255 permit 65000:1 0:28 0:255 ip community-list standard 1_29_254 permit 65000:1 0:29 0:254 ip community-list standard 1_30_253 permit 65000:1 0:30 0:253 ip community-list standard 1_31_252 permit 65000:1 0:31 0:252 ip community-list standard 1_32_251 permit 65000:1 0:32 0:251 ip community-list standard 1_33_250 permit 65000:1 0:33 0:250 ip community-list standard 1_34_249 permit 65000:1 0:34 0:249 ip community-list standard 1_35_248 permit 65000:1 0:35 0:248 ip community-list standard 1_36_247 permit 65000:1 0:36 0:247 ip community-list standard 1_37_246 permit 65000:1 0:37 0:246 ip community-list standard 1_38_245 permit 65000:1 0:38 0:245 ip community-list standard 1_39_244 permit 65000:1 0:39 0:244 ip community-list standard 1_40_243 permit 65000:1 0:40 0:243 ip community-list standard 1_41_242 permit 65000:1 0:41 0:242 ip community-list standard 1_42_241 permit 65000:1 0:42 0:241 ip community-list standard 1_43_240 permit 65000:1 0:43 0:240 ip community-list standard 1_44_239 permit 65000:1 0:44 0:239 ip community-list standard 1_45_238 permit 65000:1 0:45 0:238 ip community-list standard 1_46_237 permit 65000:1 0:46 0:237 ip community-list standard 1_47_236 permit 65000:1 0:47 0:236 ip community-list standard 1_48_235 permit 65000:1 0:48 0:235 ip community-list standard 1_49_234 permit 65000:1 0:49 0:234 ip community-list standard 1_50_233 permit 65000:1 0:50 0:233 ip community-list standard 1_51_232 permit 65000:1 0:51 0:232 ip community-list standard 1_52_231 permit 65000:1 0:52 0:231 ip community-list standard 1_53_230 permit 65000:1 0:53 0:230 ip community-list standard 1_54_229 permit 65000:1 0:54 0:229 ip community-list standard 1_55_228 permit 65000:1 0:55 0:228 ip community-list standard 1_56_227 permit 65000:1 0:56 0:227 ip community-list standard 1_57_226 permit 65000:1 0:57 0:226 ip community-list standard 1_58_225 permit 65000:1 0:58 0:225 ip community-list standard 1_59_224 permit 65000:1 0:59 0:224 ip community-list standard 1_60_223 permit 65000:1 0:60 0:223 ip community-list standard 1_61_222 permit 65000:1 0:61 0:222 ip community-list standard 1_62_221 permit 65000:1 0:62 0:221 ip community-list standard 1_63_220 permit 65000:1 0:63 0:220 ip community-list standard 1_64_219 permit 65000:1 0:64 0:219 ip community-list standard 1_65_218 permit 65000:1 0:65 0:218 ip community-list standard 1_66_217 permit 65000:1 0:66 0:217 ip community-list standard 1_67_216 permit 65000:1 0:67 0:216 ip community-list standard 1_68_215 permit 65000:1 0:68 0:215 ip community-list standard 1_69_214 permit 65000:1 0:69 0:214 ip community-list standard 1_70_213 permit 65000:1 0:70 0:213 ip community-list standard 1_71_212 permit 65000:1 0:71 0:212 ip community-list standard 1_72_211 permit 65000:1 0:72 0:211 ip community-list standard 1_73_210 permit 65000:1 0:73 0:210 ip community-list standard 1_74_209 permit 65000:1 0:74 0:209 ip community-list standard 1_75_208 permit 65000:1 0:75 0:208 ip community-list standard 1_76_207 permit 65000:1 0:76 0:207 ip community-list standard 1_77_206 permit 65000:1 0:77 0:206 ip community-list standard 1_78_205 permit 65000:1 0:78 0:205 ip community-list standard 1_79_204 permit 65000:1 0:79 0:204 ip community-list standard 1_80_203 permit 65000:1 0:80 0:203 ip community-list standard 1_81_202 permit 65000:1 0:81 0:202 ip community-list standard 1_82_201 permit 65000:1 0:82 0:201 ip community-list standard 1_83_200 permit 65000:1 0:83 0:200 ip community-list standard 1_84_199 permit 65000:1 0:84 0:199 ip community-list standard 1_85_198 permit 65000:1 0:85 0:198 ip community-list standard 1_86_197 permit 65000:1 0:86 0:197 ip community-list standard 1_87_196 permit 65000:1 0:87 0:196 ip community-list standard 1_88_195 permit 65000:1 0:88 0:195 ip community-list standard 1_89_194 permit 65000:1 0:89 0:194 ip community-list standard 1_90_193 permit 65000:1 0:90 0:193 ip community-list standard 1_91_192 permit 65000:1 0:91 0:192 ip community-list standard 1_92_191 permit 65000:1 0:92 0:191 ip community-list standard 1_93_190 permit 65000:1 0:93 0:190 ip community-list standard 1_94_189 permit 65000:1 0:94 0:189 ip community-list standard 1_95_188 permit 65000:1 0:95 0:188 ip community-list standard 1_96_187 permit 65000:1 0:96 0:187 ip community-list standard 1_97_186 permit 65000:1 0:97 0:186 ip community-list standard 1_98_185 permit 65000:1 0:98 0:185 ip community-list standard 1_99_184 permit 65000:1 0:99 0:184 ip community-list standard 1_100_183 permit 65000:1 0:100 0:183 ip community-list standard 1_101_182 permit 65000:1 0:101 0:182 ip community-list standard 1_102_181 permit 65000:1 0:102 0:181 ip community-list standard 1_103_180 permit 65000:1 0:103 0:180 ip community-list standard 1_104_179 permit 65000:1 0:104 0:179 ip community-list standard 1_105_178 permit 65000:1 0:105 0:178 ip community-list standard 1_106_177 permit 65000:1 0:106 0:177 ip community-list standard 1_107_176 permit 65000:1 0:107 0:176 ip community-list standard 1_108_175 permit 65000:1 0:108 0:175 ip community-list standard 1_109_174 permit 65000:1 0:109 0:174 ip community-list standard 1_110_173 permit 65000:1 0:110 0:173 ip community-list standard 1_111_172 permit 65000:1 0:111 0:172 ip community-list standard 1_112_171 permit 65000:1 0:112 0:171 ip community-list standard 1_113_170 permit 65000:1 0:113 0:170 ip community-list standard 1_114_169 permit 65000:1 0:114 0:169 ip community-list standard 1_115_168 permit 65000:1 0:115 0:168 ip community-list standard 1_116_167 permit 65000:1 0:116 0:167 ip community-list standard 1_117_166 permit 65000:1 0:117 0:166 ip community-list standard 1_118_165 permit 65000:1 0:118 0:165 ip community-list standard 1_119_164 permit 65000:1 0:119 0:164 ip community-list standard 1_120_163 permit 65000:1 0:120 0:163 ip community-list standard 1_121_162 permit 65000:1 0:121 0:162 ip community-list standard 1_122_161 permit 65000:1 0:122 0:161 ip community-list standard 1_123_160 permit 65000:1 0:123 0:160 ip community-list standard 1_124_159 permit 65000:1 0:124 0:159 ip community-list standard 1_125_158 permit 65000:1 0:125 0:158 ip community-list standard 1_126_157 permit 65000:1 0:126 0:157 ip community-list standard 1_127_156 permit 65000:1 0:127 0:156 ip community-list standard 1_128_155 permit 65000:1 0:128 0:155 ip community-list standard 1_129_154 permit 65000:1 0:129 0:154 ip community-list standard 1_130_153 permit 65000:1 0:130 0:153 ip community-list standard 1_131_152 permit 65000:1 0:131 0:152 ip community-list standard 1_132_151 permit 65000:1 0:132 0:151 ip community-list standard 1_133_150 permit 65000:1 0:133 0:150 ip community-list standard 1_134_149 permit 65000:1 0:134 0:149 ip community-list standard 1_135_148 permit 65000:1 0:135 0:148 ip community-list standard 1_136_147 permit 65000:1 0:136 0:147 ip community-list standard 1_137_146 permit 65000:1 0:137 0:146 ip community-list standard 1_138_145 permit 65000:1 0:138 0:145 ip community-list standard 1_139_144 permit 65000:1 0:139 0:144 ip community-list standard 1_140_143 permit 65000:1 0:140 0:143 ip community-list standard 1_141_142 permit 65000:1 0:141 0:142 route-map calculator permit 16809 match community 1_27_256 1_28_255 1_29_254 1_30_253 1_31_252 set community 0:283 route-map calculator permit 16810 match community 1_32_251 1_33_250 1_34_249 1_35_248 1_36_247 set community 0:283 route-map calculator permit 16811 match community 1_37_246 1_38_245 1_39_244 1_40_243 1_41_242 set community 0:283 route-map calculator permit 16812 match community 1_42_241 1_43_240 1_44_239 1_45_238 1_46_237 set community 0:283 route-map calculator permit 16813 match community 1_47_236 1_48_235 1_49_234 1_50_233 1_51_232 set community 0:283 route-map calculator permit 16814 match community 1_52_231 1_53_230 1_54_229 1_55_228 1_56_227 set community 0:283 route-map calculator permit 16815 match community 1_57_226 1_58_225 1_59_224 1_60_223 1_61_222 set community 0:283 route-map calculator permit 16816 match community 1_62_221 1_63_220 1_64_219 1_65_218 1_66_217 set community 0:283 route-map calculator permit 16817 match community 1_67_216 1_68_215 1_69_214 1_70_213 1_71_212 set community 0:283 route-map calculator permit 16818 match community 1_72_211 1_73_210 1_74_209 1_75_208 1_76_207 set community 0:283 route-map calculator permit 16819 match community 1_77_206 1_78_205 1_79_204 1_80_203 1_81_202 set community 0:283 route-map calculator permit 16820 match community 1_82_201 1_83_200 1_84_199 1_85_198 1_86_197 set community 0:283 route-map calculator permit 16821 match community 1_87_196 1_88_195 1_89_194 1_90_193 1_91_192 set community 0:283 route-map calculator permit 16822 match community 1_92_191 1_93_190 1_94_189 1_95_188 1_96_187 set community 0:283 route-map calculator permit 16823 match community 1_97_186 1_98_185 1_99_184 1_100_183 1_101_182 set community 0:283 route-map calculator permit 16824 match community 1_102_181 1_103_180 1_104_179 1_105_178 1_106_177 set community 0:283 route-map calculator permit 16825 match community 1_107_176 1_108_175 1_109_174 1_110_173 1_111_172 set community 0:283 route-map calculator permit 16826 match community 1_112_171 1_113_170 1_114_169 1_115_168 1_116_167 set community 0:283 route-map calculator permit 16827 match community 1_117_166 1_118_165 1_119_164 1_120_163 1_121_162 set community 0:283 route-map calculator permit 16828 match community 1_122_161 1_123_160 1_124_159 1_125_158 1_126_157 set community 0:283 route-map calculator permit 16829 match community 1_127_156 1_128_155 1_129_154 1_130_153 1_131_152 set community 0:283 route-map calculator permit 16830 match community 1_132_151 1_133_150 1_134_149 1_135_148 1_136_147 set community 0:283 route-map calculator permit 16831 match community 1_137_146 1_138_145 1_139_144 1_140_143 1_141_142 set community 0:283 ip community-list standard 2_69_250 permit 65000:2 0:69 0:250 ip community-list standard 2_75_230 permit 65000:2 0:75 0:230 ip community-list standard 2_115_150 permit 65000:2 0:115 0:150 ip community-list standard 2_125_138 permit 65000:2 0:125 0:138 route-map calculator permit 16832 match community 2_69_250 2_75_230 2_115_150 2_125_138 set community 0:17250 ip community-list standard 2_26_256 permit 65000:2 0:26 0:256 ip community-list standard 2_32_208 permit 65000:2 0:32 0:208 ip community-list standard 2_52_128 permit 65000:2 0:52 0:128 ip community-list standard 2_64_104 permit 65000:2 0:64 0:104 route-map calculator permit 16833 match community 2_26_256 2_32_208 2_52_128 2_64_104 set community 0:6656 ip community-list standard 2_63_137 permit 65000:2 0:63 0:137 route-map calculator permit 16834 match community 2_63_137 set community 0:8631 ip community-list standard 2_232_251 permit 65000:2 0:232 0:251 route-map calculator permit 16835 match community 2_232_251 set community 0:58232 ip community-list standard 2_10_167 permit 65000:2 0:10 0:167 route-map calculator permit 16836 match community 2_10_167 set community 0:1670 ip community-list standard 2_177_237 permit 65000:2 0:177 0:237 route-map calculator permit 16837 match community 2_177_237 set community 0:41949 ip community-list standard 2_34_202 permit 65000:2 0:34 0:202 ip community-list standard 2_68_101 permit 65000:2 0:68 0:101 route-map calculator permit 16838 match community 2_34_202 2_68_101 set community 0:6868 ip community-list standard 2_73_194 permit 65000:2 0:73 0:194 ip community-list standard 2_97_146 permit 65000:2 0:97 0:146 route-map calculator permit 16839 match community 2_73_194 2_97_146 set community 0:14162 ip community-list standard 2_83_115 permit 65000:2 0:83 0:115 route-map calculator permit 16840 match community 2_83_115 set community 0:9545 ip community-list standard 2_71_103 permit 65000:2 0:71 0:103 route-map calculator permit 16841 match community 2_71_103 set community 0:7313 ip community-list standard 1_1_80 permit 65000:1 0:1 0:80 ip community-list standard 2_1_81 permit 65000:2 0:1 0:81 ip community-list standard 1_2_79 permit 65000:1 0:2 0:79 ip community-list standard 2_3_27 permit 65000:2 0:3 0:27 ip community-list standard 1_3_78 permit 65000:1 0:3 0:78 ip community-list standard 1_4_77 permit 65000:1 0:4 0:77 ip community-list standard 1_5_76 permit 65000:1 0:5 0:76 ip community-list standard 1_6_75 permit 65000:1 0:6 0:75 ip community-list standard 1_7_74 permit 65000:1 0:7 0:74 ip community-list standard 1_8_73 permit 65000:1 0:8 0:73 ip community-list standard 2_9_9 permit 65000:2 0:9 0:9 ip community-list standard 1_9_72 permit 65000:1 0:9 0:72 ip community-list standard 1_10_71 permit 65000:1 0:10 0:71 ip community-list standard 1_11_70 permit 65000:1 0:11 0:70 ip community-list standard 1_12_69 permit 65000:1 0:12 0:69 ip community-list standard 1_13_68 permit 65000:1 0:13 0:68 ip community-list standard 1_14_67 permit 65000:1 0:14 0:67 ip community-list standard 1_15_66 permit 65000:1 0:15 0:66 ip community-list standard 1_16_65 permit 65000:1 0:16 0:65 ip community-list standard 1_17_64 permit 65000:1 0:17 0:64 ip community-list standard 1_18_63 permit 65000:1 0:18 0:63 ip community-list standard 1_19_62 permit 65000:1 0:19 0:62 ip community-list standard 1_20_61 permit 65000:1 0:20 0:61 ip community-list standard 1_21_60 permit 65000:1 0:21 0:60 ip community-list standard 1_22_59 permit 65000:1 0:22 0:59 ip community-list standard 1_23_58 permit 65000:1 0:23 0:58 ip community-list standard 1_24_57 permit 65000:1 0:24 0:57 ip community-list standard 1_25_56 permit 65000:1 0:25 0:56 ip community-list standard 1_26_55 permit 65000:1 0:26 0:55 ip community-list standard 1_27_54 permit 65000:1 0:27 0:54 ip community-list standard 1_28_53 permit 65000:1 0:28 0:53 ip community-list standard 1_29_52 permit 65000:1 0:29 0:52 ip community-list standard 1_30_51 permit 65000:1 0:30 0:51 ip community-list standard 1_31_50 permit 65000:1 0:31 0:50 ip community-list standard 1_32_49 permit 65000:1 0:32 0:49 ip community-list standard 1_33_48 permit 65000:1 0:33 0:48 ip community-list standard 1_34_47 permit 65000:1 0:34 0:47 ip community-list standard 1_35_46 permit 65000:1 0:35 0:46 ip community-list standard 1_36_45 permit 65000:1 0:36 0:45 ip community-list standard 1_37_44 permit 65000:1 0:37 0:44 ip community-list standard 1_38_43 permit 65000:1 0:38 0:43 ip community-list standard 1_39_42 permit 65000:1 0:39 0:42 ip community-list standard 1_40_41 permit 65000:1 0:40 0:41 ip community-list expanded c81 permit 1 ^65000:4_0:81_0:1$ ip community-list expanded c81 permit 2 ^65000:3_0:82_0:1$ ip community-list expanded c81 permit 3 ^65000:3_0:83_0:2$ ip community-list expanded c81 permit 4 ^65000:3_0:84_0:3$ ip community-list expanded c81 permit 5 ^65000:3_0:85_0:4$ ip community-list expanded c81 permit 6 ^65000:3_0:86_0:5$ ip community-list expanded c81 permit 7 ^65000:3_0:87_0:6$ ip community-list expanded c81 permit 8 ^65000:3_0:88_0:7$ ip community-list expanded c81 permit 9 ^65000:3_0:89_0:8$ ip community-list expanded c81 permit 10 ^65000:3_0:90_0:9$ ip community-list expanded c81 permit 11 ^65000:3_0:91_0:10$ ip community-list expanded c81 permit 12 ^65000:3_0:92_0:11$ ip community-list expanded c81 permit 13 ^65000:3_0:93_0:12$ ip community-list expanded c81 permit 14 ^65000:3_0:94_0:13$ ip community-list expanded c81 permit 15 ^65000:3_0:95_0:14$ ip community-list expanded c81 permit 16 ^65000:3_0:96_0:15$ ip community-list expanded c81 permit 17 ^65000:3_0:97_0:16$ ip community-list expanded c81 permit 18 ^65000:3_0:98_0:17$ ip community-list expanded c81 permit 19 ^65000:3_0:99_0:18$ ip community-list expanded c81 permit 20 ^65000:3_0:100_0:19$ ip community-list expanded c81 permit 21 ^65000:3_0:101_0:20$ ip community-list expanded c81 permit 22 ^65000:3_0:102_0:21$ ip community-list expanded c81 permit 23 ^65000:3_0:103_0:22$ ip community-list expanded c81 permit 24 ^65000:3_0:104_0:23$ ip community-list expanded c81 permit 25 ^65000:3_0:105_0:24$ ip community-list expanded c81 permit 26 ^65000:3_0:106_0:25$ ip community-list expanded c81 permit 27 ^65000:3_0:107_0:26$ ip community-list expanded c81 permit 28 ^65000:3_0:108_0:27$ ip community-list expanded c81 permit 29 ^65000:3_0:109_0:28$ ip community-list expanded c81 permit 30 ^65000:3_0:110_0:29$ ip community-list expanded c81 permit 31 ^65000:3_0:111_0:30$ ip community-list expanded c81 permit 32 ^65000:3_0:112_0:31$ ip community-list expanded c81 permit 33 ^65000:3_0:113_0:32$ ip community-list expanded c81 permit 34 ^65000:3_0:114_0:33$ ip community-list expanded c81 permit 35 ^65000:3_0:115_0:34$ ip community-list expanded c81 permit 36 ^65000:3_0:116_0:35$ ip community-list expanded c81 permit 37 ^65000:3_0:117_0:36$ ip community-list expanded c81 permit 38 ^65000:3_0:118_0:37$ ip community-list expanded c81 permit 39 ^65000:3_0:119_0:38$ ip community-list expanded c81 permit 40 ^65000:3_0:120_0:39$ ip community-list expanded c81 permit 41 ^65000:3_0:121_0:40$ ip community-list expanded c81 permit 42 ^65000:3_0:122_0:41$ ip community-list expanded c81 permit 43 ^65000:3_0:123_0:42$ ip community-list expanded c81 permit 44 ^65000:3_0:124_0:43$ ip community-list expanded c81 permit 45 ^65000:3_0:125_0:44$ ip community-list expanded c81 permit 46 ^65000:3_0:126_0:45$ ip community-list expanded c81 permit 47 ^65000:3_0:127_0:46$ ip community-list expanded c81 permit 48 ^65000:3_0:128_0:47$ ip community-list expanded c81 permit 49 ^65000:3_0:129_0:48$ ip community-list expanded c81 permit 50 ^65000:3_0:130_0:49$ ip community-list expanded c81 permit 51 ^65000:3_0:131_0:50$ ip community-list expanded c81 permit 52 ^65000:3_0:132_0:51$ ip community-list expanded c81 permit 53 ^65000:3_0:133_0:52$ ip community-list expanded c81 permit 54 ^65000:3_0:134_0:53$ ip community-list expanded c81 permit 55 ^65000:3_0:135_0:54$ ip community-list expanded c81 permit 56 ^65000:3_0:136_0:55$ ip community-list expanded c81 permit 57 ^65000:3_0:137_0:56$ ip community-list expanded c81 permit 58 ^65000:3_0:138_0:57$ ip community-list expanded c81 permit 59 ^65000:3_0:139_0:58$ ip community-list expanded c81 permit 60 ^65000:3_0:140_0:59$ ip community-list expanded c81 permit 61 ^65000:3_0:141_0:60$ ip community-list expanded c81 permit 62 ^65000:3_0:142_0:61$ ip community-list expanded c81 permit 63 ^65000:3_0:143_0:62$ ip community-list expanded c81 permit 64 ^65000:3_0:144_0:63$ ip community-list expanded c81 permit 65 ^65000:3_0:145_0:64$ ip community-list expanded c81 permit 66 ^65000:3_0:146_0:65$ ip community-list expanded c81 permit 67 ^65000:3_0:147_0:66$ ip community-list expanded c81 permit 68 ^65000:3_0:148_0:67$ ip community-list expanded c81 permit 69 ^65000:3_0:149_0:68$ ip community-list expanded c81 permit 70 ^65000:3_0:150_0:69$ ip community-list expanded c81 permit 71 ^65000:3_0:151_0:70$ ip community-list expanded c81 permit 72 ^65000:3_0:152_0:71$ ip community-list expanded c81 permit 73 ^65000:3_0:153_0:72$ ip community-list expanded c81 permit 74 ^65000:3_0:154_0:73$ ip community-list expanded c81 permit 75 ^65000:3_0:155_0:74$ ip community-list expanded c81 permit 76 ^65000:3_0:156_0:75$ ip community-list expanded c81 permit 77 ^65000:3_0:157_0:76$ ip community-list expanded c81 permit 78 ^65000:3_0:158_0:77$ ip community-list expanded c81 permit 79 ^65000:3_0:159_0:78$ ip community-list expanded c81 permit 80 ^65000:3_0:160_0:79$ ip community-list expanded c81 permit 81 ^65000:3_0:161_0:80$ ip community-list expanded c81 permit 82 ^65000:4_0:162_0:2$ ip community-list expanded c81 permit 83 ^65000:3_0:162_0:81$ ip community-list expanded c81 permit 84 ^65000:4_0:163_0:2$ ip community-list expanded c81 permit 85 ^65000:3_0:163_0:82$ ip community-list expanded c81 permit 86 ^65000:3_0:164_0:83$ ip community-list expanded c81 permit 87 ^65000:3_0:165_0:84$ ip community-list expanded c81 permit 88 ^65000:3_0:166_0:85$ ip community-list expanded c81 permit 89 ^65000:3_0:167_0:86$ ip community-list expanded c81 permit 90 ^65000:3_0:168_0:87$ ip community-list expanded c81 permit 91 ^65000:3_0:169_0:88$ ip community-list expanded c81 permit 92 ^65000:3_0:170_0:89$ ip community-list expanded c81 permit 93 ^65000:3_0:171_0:90$ ip community-list expanded c81 permit 94 ^65000:3_0:172_0:91$ ip community-list expanded c81 permit 95 ^65000:3_0:173_0:92$ ip community-list expanded c81 permit 96 ^65000:3_0:174_0:93$ ip community-list expanded c81 permit 97 ^65000:3_0:175_0:94$ ip community-list expanded c81 permit 98 ^65000:3_0:176_0:95$ ip community-list expanded c81 permit 99 ^65000:3_0:177_0:96$ ip community-list expanded c81 permit 100 ^65000:3_0:178_0:97$ ip community-list expanded c81 permit 101 ^65000:3_0:179_0:98$ ip community-list expanded c81 permit 102 ^65000:3_0:180_0:99$ ip community-list expanded c81 permit 103 ^65000:3_0:181_0:100$ ip community-list expanded c81 permit 104 ^65000:3_0:182_0:101$ ip community-list expanded c81 permit 105 ^65000:3_0:183_0:102$ ip community-list expanded c81 permit 106 ^65000:3_0:184_0:103$ ip community-list expanded c81 permit 107 ^65000:3_0:185_0:104$ ip community-list expanded c81 permit 108 ^65000:3_0:186_0:105$ ip community-list expanded c81 permit 109 ^65000:3_0:187_0:106$ ip community-list expanded c81 permit 110 ^65000:3_0:188_0:107$ ip community-list expanded c81 permit 111 ^65000:3_0:189_0:108$ ip community-list expanded c81 permit 112 ^65000:3_0:190_0:109$ ip community-list expanded c81 permit 113 ^65000:3_0:191_0:110$ ip community-list expanded c81 permit 114 ^65000:3_0:192_0:111$ ip community-list expanded c81 permit 115 ^65000:3_0:193_0:112$ ip community-list expanded c81 permit 116 ^65000:3_0:194_0:113$ ip community-list expanded c81 permit 117 ^65000:3_0:195_0:114$ ip community-list expanded c81 permit 118 ^65000:3_0:196_0:115$ ip community-list expanded c81 permit 119 ^65000:3_0:197_0:116$ ip community-list expanded c81 permit 120 ^65000:3_0:198_0:117$ ip community-list expanded c81 permit 121 ^65000:3_0:199_0:118$ ip community-list expanded c81 permit 122 ^65000:3_0:200_0:119$ ip community-list expanded c81 permit 123 ^65000:3_0:201_0:120$ ip community-list expanded c81 permit 124 ^65000:3_0:202_0:121$ ip community-list expanded c81 permit 125 ^65000:3_0:203_0:122$ ip community-list expanded c81 permit 126 ^65000:3_0:204_0:123$ ip community-list expanded c81 permit 127 ^65000:3_0:205_0:124$ ip community-list expanded c81 permit 128 ^65000:3_0:206_0:125$ ip community-list expanded c81 permit 129 ^65000:3_0:207_0:126$ ip community-list expanded c81 permit 130 ^65000:3_0:208_0:127$ ip community-list expanded c81 permit 131 ^65000:3_0:209_0:128$ ip community-list expanded c81 permit 132 ^65000:3_0:210_0:129$ ip community-list expanded c81 permit 133 ^65000:3_0:211_0:130$ ip community-list expanded c81 permit 134 ^65000:3_0:212_0:131$ ip community-list expanded c81 permit 135 ^65000:3_0:213_0:132$ ip community-list expanded c81 permit 136 ^65000:3_0:214_0:133$ ip community-list expanded c81 permit 137 ^65000:3_0:215_0:134$ ip community-list expanded c81 permit 138 ^65000:3_0:216_0:135$ ip community-list expanded c81 permit 139 ^65000:3_0:217_0:136$ ip community-list expanded c81 permit 140 ^65000:3_0:218_0:137$ ip community-list expanded c81 permit 141 ^65000:3_0:219_0:138$ ip community-list expanded c81 permit 142 ^65000:3_0:220_0:139$ ip community-list expanded c81 permit 143 ^65000:3_0:221_0:140$ ip community-list expanded c81 permit 144 ^65000:3_0:222_0:141$ ip community-list expanded c81 permit 145 ^65000:3_0:223_0:142$ ip community-list expanded c81 permit 146 ^65000:3_0:224_0:143$ ip community-list expanded c81 permit 147 ^65000:3_0:225_0:144$ ip community-list expanded c81 permit 148 ^65000:3_0:226_0:145$ ip community-list expanded c81 permit 149 ^65000:3_0:227_0:146$ ip community-list expanded c81 permit 150 ^65000:3_0:228_0:147$ ip community-list expanded c81 permit 151 ^65000:3_0:229_0:148$ ip community-list expanded c81 permit 152 ^65000:3_0:230_0:149$ ip community-list expanded c81 permit 153 ^65000:3_0:231_0:150$ ip community-list expanded c81 permit 154 ^65000:3_0:232_0:151$ ip community-list expanded c81 permit 155 ^65000:3_0:233_0:152$ ip community-list expanded c81 permit 156 ^65000:3_0:234_0:153$ ip community-list expanded c81 permit 157 ^65000:3_0:235_0:154$ ip community-list expanded c81 permit 158 ^65000:3_0:236_0:155$ ip community-list expanded c81 permit 159 ^65000:3_0:237_0:156$ ip community-list expanded c81 permit 160 ^65000:3_0:238_0:157$ ip community-list expanded c81 permit 161 ^65000:3_0:239_0:158$ ip community-list expanded c81 permit 162 ^65000:3_0:240_0:159$ ip community-list expanded c81 permit 163 ^65000:3_0:241_0:160$ ip community-list expanded c81 permit 164 ^65000:3_0:242_0:161$ ip community-list expanded c81 permit 165 ^65000:4_0:243_0:3$ ip community-list expanded c81 permit 166 ^65000:3_0:243_0:162$ ip community-list expanded c81 permit 167 ^65000:4_0:244_0:3$ ip community-list expanded c81 permit 168 ^65000:3_0:244_0:163$ ip community-list expanded c81 permit 169 ^65000:4_0:245_0:3$ ip community-list expanded c81 permit 170 ^65000:3_0:245_0:164$ ip community-list expanded c81 permit 171 ^65000:3_0:246_0:165$ ip community-list expanded c81 permit 172 ^65000:3_0:247_0:166$ ip community-list expanded c81 permit 173 ^65000:3_0:248_0:167$ ip community-list expanded c81 permit 174 ^65000:3_0:249_0:168$ ip community-list expanded c81 permit 175 ^65000:3_0:250_0:169$ ip community-list expanded c81 permit 176 ^65000:3_0:251_0:170$ ip community-list expanded c81 permit 177 ^65000:3_0:252_0:171$ ip community-list expanded c81 permit 178 ^65000:3_0:253_0:172$ ip community-list expanded c81 permit 179 ^65000:3_0:254_0:173$ ip community-list expanded c81 permit 180 ^65000:3_0:255_0:174$ ip community-list expanded c81 permit 181 ^65000:3_0:256_0:175$ route-map calculator permit 16842 match community 1_1_80 2_1_81 1_2_79 2_3_27 1_3_78 set community 0:81 route-map calculator permit 16843 match community 1_4_77 1_5_76 1_6_75 1_7_74 1_8_73 set community 0:81 route-map calculator permit 16844 match community 2_9_9 1_9_72 1_10_71 1_11_70 1_12_69 set community 0:81 route-map calculator permit 16845 match community 1_13_68 1_14_67 1_15_66 1_16_65 1_17_64 set community 0:81 route-map calculator permit 16846 match community 1_18_63 1_19_62 1_20_61 1_21_60 1_22_59 set community 0:81 route-map calculator permit 16847 match community 1_23_58 1_24_57 1_25_56 1_26_55 1_27_54 set community 0:81 route-map calculator permit 16848 match community 1_28_53 1_29_52 1_30_51 1_31_50 1_32_49 set community 0:81 route-map calculator permit 16849 match community 1_33_48 1_34_47 1_35_46 1_36_45 1_37_44 set community 0:81 route-map calculator permit 16850 match community 1_38_43 1_39_42 1_40_41 c4_81_1 c3_82_1 set community 0:81 route-map calculator permit 16851 match community c3_83_2 c3_84_3 c3_85_4 c3_86_5 c3_87_6 set community 0:81 route-map calculator permit 16852 match community c3_88_7 c3_89_8 c3_90_9 c3_91_10 c3_92_11 set community 0:81 route-map calculator permit 16853 match community c3_93_12 c3_94_13 c3_95_14 c3_96_15 c3_97_16 set community 0:81 route-map calculator permit 16854 match community c3_98_17 c3_99_18 c3_100_19 c3_101_20 c3_102_21 set community 0:81 route-map calculator permit 16855 match community c3_103_22 c3_104_23 c3_105_24 c3_106_25 c3_107_26 set community 0:81 route-map calculator permit 16856 match community c3_108_27 c3_109_28 c3_110_29 c3_111_30 c3_112_31 set community 0:81 route-map calculator permit 16857 match community c3_113_32 c3_114_33 c3_115_34 c3_116_35 c3_117_36 set community 0:81 route-map calculator permit 16858 match community c3_118_37 c3_119_38 c3_120_39 c3_121_40 c3_122_41 set community 0:81 route-map calculator permit 16859 match community c3_123_42 c3_124_43 c3_125_44 c3_126_45 c3_127_46 set community 0:81 route-map calculator permit 16860 match community c3_128_47 c3_129_48 c3_130_49 c3_131_50 c3_132_51 set community 0:81 route-map calculator permit 16861 match community c3_133_52 c3_134_53 c3_135_54 c3_136_55 c3_137_56 set community 0:81 route-map calculator permit 16862 match community c3_138_57 c3_139_58 c3_140_59 c3_141_60 c3_142_61 set community 0:81 route-map calculator permit 16863 match community c3_143_62 c3_144_63 c3_145_64 c3_146_65 c3_147_66 set community 0:81 route-map calculator permit 16864 match community c3_148_67 c3_149_68 c3_150_69 c3_151_70 c3_152_71 set community 0:81 route-map calculator permit 16865 match community c3_153_72 c3_154_73 c3_155_74 c3_156_75 c3_157_76 set community 0:81 route-map calculator permit 16866 match community c3_158_77 c3_159_78 c3_160_79 c3_161_80 c4_162_2 set community 0:81 route-map calculator permit 16867 match community c3_162_81 c4_163_2 c3_163_82 c3_164_83 c3_165_84 set community 0:81 route-map calculator permit 16868 match community c3_166_85 c3_167_86 c3_168_87 c3_169_88 c3_170_89 set community 0:81 route-map calculator permit 16869 match community c3_171_90 c3_172_91 c3_173_92 c3_174_93 c3_175_94 set community 0:81 route-map calculator permit 16870 match community c3_176_95 c3_177_96 c3_178_97 c3_179_98 c3_180_99 set community 0:81 route-map calculator permit 16871 match community c3_181_100 c3_182_101 c3_183_102 c3_184_103 c3_185_104 set community 0:81 route-map calculator permit 16872 match community c3_186_105 c3_187_106 c3_188_107 c3_189_108 c3_190_109 set community 0:81 route-map calculator permit 16873 match community c3_191_110 c3_192_111 c3_193_112 c3_194_113 c3_195_114 set community 0:81 route-map calculator permit 16874 match community c3_196_115 c3_197_116 c3_198_117 c3_199_118 c3_200_119 set community 0:81 route-map calculator permit 16875 match community c3_201_120 c3_202_121 c3_203_122 c3_204_123 c3_205_124 set community 0:81 route-map calculator permit 16876 match community c3_206_125 c3_207_126 c3_208_127 c3_209_128 c3_210_129 set community 0:81 route-map calculator permit 16877 match community c3_211_130 c3_212_131 c3_213_132 c3_214_133 c3_215_134 set community 0:81 route-map calculator permit 16878 match community c3_216_135 c3_217_136 c3_218_137 c3_219_138 c3_220_139 set community 0:81 route-map calculator permit 16879 match community c3_221_140 c3_222_141 c3_223_142 c3_224_143 c3_225_144 set community 0:81 route-map calculator permit 16880 match community c3_226_145 c3_227_146 c3_228_147 c3_229_148 c3_230_149 set community 0:81 route-map calculator permit 16881 match community c3_231_150 c3_232_151 c3_233_152 c3_234_153 c3_235_154 set community 0:81 route-map calculator permit 16882 match community c3_236_155 c3_237_156 c3_238_157 c3_239_158 c3_240_159 set community 0:81 route-map calculator permit 16883 match community c3_241_160 c3_242_161 c4_243_3 c3_243_162 c4_244_3 set community 0:81 route-map calculator permit 16884 match community c3_244_163 c4_245_3 c3_245_164 c3_246_165 c3_247_166 set community 0:81 route-map calculator permit 16885 match community c3_248_167 c3_249_168 c3_250_169 c3_251_170 c3_252_171 set community 0:81 route-map calculator permit 16886 match community c3_253_172 c3_254_173 c3_255_174 c3_256_175 set community 0:81 ip community-list standard 2_143_217 permit 65000:2 0:143 0:217 route-map calculator permit 16887 match community 2_143_217 set community 0:31031 ip community-list standard 2_98_181 permit 65000:2 0:98 0:181 route-map calculator permit 16888 match community 2_98_181 set community 0:17738 ip community-list standard 2_79_255 permit 65000:2 0:79 0:255 ip community-list standard 2_85_237 permit 65000:2 0:85 0:237 route-map calculator permit 16889 match community 2_79_255 2_85_237 set community 0:20145 ip community-list standard 2_4_166 permit 65000:2 0:4 0:166 ip community-list standard 2_8_83 permit 65000:2 0:8 0:83 route-map calculator permit 16890 match community 2_4_166 2_8_83 set community 0:664 ip community-list standard 2_83_187 permit 65000:2 0:83 0:187 route-map calculator permit 16891 match community 2_83_187 set community 0:15521 ip community-list standard 2_113_234 permit 65000:2 0:113 0:234 ip community-list standard 2_117_226 permit 65000:2 0:117 0:226 route-map calculator permit 16892 match community 2_113_234 2_117_226 set community 0:26442 ip community-list standard 2_110_249 permit 65000:2 0:110 0:249 ip community-list standard 2_165_166 permit 65000:2 0:165 0:166 route-map calculator permit 16893 match community 2_110_249 2_165_166 set community 0:27390 ip community-list standard 2_75_244 permit 65000:2 0:75 0:244 ip community-list standard 2_100_183 permit 65000:2 0:100 0:183 ip community-list standard 2_122_150 permit 65000:2 0:122 0:150 route-map calculator permit 16894 match community 2_75_244 2_100_183 2_122_150 set community 0:18300 ip community-list standard 2_198_244 permit 65000:2 0:198 0:244 route-map calculator permit 16895 match community 2_198_244 set community 0:48312 ip community-list standard 2_57_244 permit 65000:2 0:57 0:244 ip community-list standard 2_61_228 permit 65000:2 0:61 0:228 ip community-list standard 2_76_183 permit 65000:2 0:76 0:183 ip community-list standard 2_114_122 permit 65000:2 0:114 0:122 route-map calculator permit 16896 match community 2_57_244 2_61_228 2_76_183 2_114_122 set community 0:13908 ip community-list standard 2_64_235 permit 65000:2 0:64 0:235 ip community-list standard 2_80_188 permit 65000:2 0:80 0:188 ip community-list standard 2_94_160 permit 65000:2 0:94 0:160 route-map calculator permit 16897 match community 2_64_235 2_80_188 2_94_160 set community 0:15040 ip community-list standard 2_96_214 permit 65000:2 0:96 0:214 ip community-list standard 2_107_192 permit 65000:2 0:107 0:192 route-map calculator permit 16898 match community 2_96_214 2_107_192 set community 0:20544 ip community-list standard 2_43_243 permit 65000:2 0:43 0:243 ip community-list standard 2_81_129 permit 65000:2 0:81 0:129 route-map calculator permit 16899 match community 2_43_243 2_81_129 set community 0:10449 ip community-list standard 2_122_189 permit 65000:2 0:122 0:189 ip community-list standard 2_126_183 permit 65000:2 0:126 0:183 route-map calculator permit 16900 match community 2_122_189 2_126_183 set community 0:23058 ip community-list standard 2_7_181 permit 65000:2 0:7 0:181 route-map calculator permit 16901 match community 2_7_181 set community 0:1267 ip community-list standard 2_227_253 permit 65000:2 0:227 0:253 route-map calculator permit 16902 match community 2_227_253 set community 0:57431 ip community-list standard 2_16_201 permit 65000:2 0:16 0:201 ip community-list standard 2_24_134 permit 65000:2 0:24 0:134 ip community-list standard 2_48_67 permit 65000:2 0:48 0:67 route-map calculator permit 16903 match community 2_16_201 2_24_134 2_48_67 set community 0:3216 ip community-list standard 2_85_115 permit 65000:2 0:85 0:115 route-map calculator permit 16904 match community 2_85_115 set community 0:9775 ip community-list standard 2_55_166 permit 65000:2 0:55 0:166 ip community-list standard 2_83_110 permit 65000:2 0:83 0:110 route-map calculator permit 16905 match community 2_55_166 2_83_110 set community 0:9130 ip community-list standard 2_7_141 permit 65000:2 0:7 0:141 ip community-list standard 2_21_47 permit 65000:2 0:21 0:47 route-map calculator permit 16906 match community 2_7_141 2_21_47 set community 0:987 ip community-list standard 2_58_163 permit 65000:2 0:58 0:163 route-map calculator permit 16907 match community 2_58_163 set community 0:9454 ip community-list standard 2_167_172 permit 65000:2 0:167 0:172 route-map calculator permit 16908 match community 2_167_172 set community 0:28724 ip community-list standard 2_164_232 permit 65000:2 0:164 0:232 route-map calculator permit 16909 match community 2_164_232 set community 0:38048 ip community-list standard 2_5_115 permit 65000:2 0:5 0:115 ip community-list standard 2_23_25 permit 65000:2 0:23 0:25 route-map calculator permit 16910 match community 2_5_115 2_23_25 set community 0:575 ip community-list standard 2_167_235 permit 65000:2 0:167 0:235 route-map calculator permit 16911 match community 2_167_235 set community 0:39245 ip community-list standard 2_187_213 permit 65000:2 0:187 0:213 route-map calculator permit 16912 match community 2_187_213 set community 0:39831 ip community-list standard 2_188_196 permit 65000:2 0:188 0:196 route-map calculator permit 16913 match community 2_188_196 set community 0:36848 ip community-list standard 2_34_190 permit 65000:2 0:34 0:190 ip community-list standard 2_38_170 permit 65000:2 0:38 0:170 ip community-list standard 2_68_95 permit 65000:2 0:68 0:95 ip community-list standard 2_76_85 permit 65000:2 0:76 0:85 route-map calculator permit 16914 match community 2_34_190 2_38_170 2_68_95 2_76_85 set community 0:6460 ip community-list standard 2_45_214 permit 65000:2 0:45 0:214 ip community-list standard 2_90_107 permit 65000:2 0:90 0:107 route-map calculator permit 16915 match community 2_45_214 2_90_107 set community 0:9630 ip community-list standard 2_154_196 permit 65000:2 0:154 0:196 route-map calculator permit 16916 match community 2_154_196 set community 0:30184 ip community-list standard 2_146_243 permit 65000:2 0:146 0:243 ip community-list standard 2_162_219 permit 65000:2 0:162 0:219 route-map calculator permit 16917 match community 2_146_243 2_162_219 set community 0:35478 ip community-list standard 2_53_199 permit 65000:2 0:53 0:199 route-map calculator permit 16918 match community 2_53_199 set community 0:10547 ip community-list standard 2_113_131 permit 65000:2 0:113 0:131 route-map calculator permit 16919 match community 2_113_131 set community 0:14803 ip community-list standard 2_150_249 permit 65000:2 0:150 0:249 ip community-list standard 2_166_225 permit 65000:2 0:166 0:225 route-map calculator permit 16920 match community 2_150_249 2_166_225 set community 0:37350 ip community-list standard 2_80_131 permit 65000:2 0:80 0:131 route-map calculator permit 16921 match community 2_80_131 set community 0:10480 ip community-list standard 2_77_252 permit 65000:2 0:77 0:252 ip community-list standard 2_84_231 permit 65000:2 0:84 0:231 ip community-list standard 2_98_198 permit 65000:2 0:98 0:198 ip community-list standard 2_99_196 permit 65000:2 0:99 0:196 ip community-list standard 2_126_154 permit 65000:2 0:126 0:154 ip community-list standard 2_132_147 permit 65000:2 0:132 0:147 route-map calculator permit 16922 match community 2_77_252 2_84_231 2_98_198 2_99_196 2_126_154 set community 0:19404 route-map calculator permit 16923 match community 2_132_147 set community 0:19404 ip community-list standard 2_135_149 permit 65000:2 0:135 0:149 route-map calculator permit 16924 match community 2_135_149 set community 0:20115 ip community-list standard 2_147_224 permit 65000:2 0:147 0:224 ip community-list standard 2_168_196 permit 65000:2 0:168 0:196 route-map calculator permit 16925 match community 2_147_224 2_168_196 set community 0:32928 ip community-list standard 2_137_243 permit 65000:2 0:137 0:243 route-map calculator permit 16926 match community 2_137_243 set community 0:33291 ip community-list standard 2_59_179 permit 65000:2 0:59 0:179 route-map calculator permit 16927 match community 2_59_179 set community 0:10561 ip community-list standard 2_173_198 permit 65000:2 0:173 0:198 route-map calculator permit 16928 match community 2_173_198 set community 0:34254 ip community-list standard 2_41_82 permit 65000:2 0:41 0:82 route-map calculator permit 16929 match community 2_41_82 set community 0:3362 ip community-list standard 2_196_226 permit 65000:2 0:196 0:226 route-map calculator permit 16930 match community 2_196_226 set community 0:44296 ip community-list standard 2_117_177 permit 65000:2 0:117 0:177 route-map calculator permit 16931 match community 2_117_177 set community 0:20709 ip community-list standard 2_17_228 permit 65000:2 0:17 0:228 ip community-list standard 2_19_204 permit 65000:2 0:19 0:204 ip community-list standard 2_34_114 permit 65000:2 0:34 0:114 ip community-list standard 2_38_102 permit 65000:2 0:38 0:102 ip community-list standard 2_51_76 permit 65000:2 0:51 0:76 ip community-list standard 2_57_68 permit 65000:2 0:57 0:68 route-map calculator permit 16932 match community 2_17_228 2_19_204 2_34_114 2_38_102 2_51_76 set community 0:3876 route-map calculator permit 16933 match community 2_57_68 set community 0:3876 ip community-list standard 2_99_231 permit 65000:2 0:99 0:231 ip community-list standard 2_121_189 permit 65000:2 0:121 0:189 route-map calculator permit 16934 match community 2_99_231 2_121_189 set community 0:22869 ip community-list standard 2_73_190 permit 65000:2 0:73 0:190 ip community-list standard 2_95_146 permit 65000:2 0:95 0:146 route-map calculator permit 16935 match community 2_73_190 2_95_146 set community 0:13870 ip community-list standard 2_126_233 permit 65000:2 0:126 0:233 route-map calculator permit 16936 match community 2_126_233 set community 0:29358 ip community-list standard 2_40_244 permit 65000:2 0:40 0:244 ip community-list standard 2_61_160 permit 65000:2 0:61 0:160 ip community-list standard 2_80_122 permit 65000:2 0:80 0:122 route-map calculator permit 16937 match community 2_40_244 2_61_160 2_80_122 set community 0:9760 ip community-list standard 2_149_247 permit 65000:2 0:149 0:247 route-map calculator permit 16938 match community 2_149_247 set community 0:36803 ip community-list standard 2_193_213 permit 65000:2 0:193 0:213 route-map calculator permit 16939 match community 2_193_213 set community 0:41109 ip community-list standard 2_24_226 permit 65000:2 0:24 0:226 ip community-list standard 2_48_113 permit 65000:2 0:48 0:113 route-map calculator permit 16940 match community 2_24_226 2_48_113 set community 0:5424 ip community-list standard 2_68_179 permit 65000:2 0:68 0:179 route-map calculator permit 16941 match community 2_68_179 set community 0:12172 ip community-list standard 2_3_113 permit 65000:2 0:3 0:113 ip community-list standard 1_83_256 permit 65000:1 0:83 0:256 ip community-list standard 1_84_255 permit 65000:1 0:84 0:255 ip community-list standard 1_85_254 permit 65000:1 0:85 0:254 ip community-list standard 1_86_253 permit 65000:1 0:86 0:253 ip community-list standard 1_87_252 permit 65000:1 0:87 0:252 ip community-list standard 1_88_251 permit 65000:1 0:88 0:251 ip community-list standard 1_89_250 permit 65000:1 0:89 0:250 ip community-list standard 1_90_249 permit 65000:1 0:90 0:249 ip community-list standard 1_91_248 permit 65000:1 0:91 0:248 ip community-list standard 1_92_247 permit 65000:1 0:92 0:247 ip community-list standard 1_93_246 permit 65000:1 0:93 0:246 ip community-list standard 1_94_245 permit 65000:1 0:94 0:245 ip community-list standard 1_95_244 permit 65000:1 0:95 0:244 ip community-list standard 1_96_243 permit 65000:1 0:96 0:243 ip community-list standard 1_97_242 permit 65000:1 0:97 0:242 ip community-list standard 1_98_241 permit 65000:1 0:98 0:241 ip community-list standard 1_99_240 permit 65000:1 0:99 0:240 ip community-list standard 1_100_239 permit 65000:1 0:100 0:239 ip community-list standard 1_101_238 permit 65000:1 0:101 0:238 ip community-list standard 1_102_237 permit 65000:1 0:102 0:237 ip community-list standard 1_103_236 permit 65000:1 0:103 0:236 ip community-list standard 1_104_235 permit 65000:1 0:104 0:235 ip community-list standard 1_105_234 permit 65000:1 0:105 0:234 ip community-list standard 1_106_233 permit 65000:1 0:106 0:233 ip community-list standard 1_107_232 permit 65000:1 0:107 0:232 ip community-list standard 1_108_231 permit 65000:1 0:108 0:231 ip community-list standard 1_109_230 permit 65000:1 0:109 0:230 ip community-list standard 1_110_229 permit 65000:1 0:110 0:229 ip community-list standard 1_111_228 permit 65000:1 0:111 0:228 ip community-list standard 1_112_227 permit 65000:1 0:112 0:227 ip community-list standard 1_113_226 permit 65000:1 0:113 0:226 ip community-list standard 1_114_225 permit 65000:1 0:114 0:225 ip community-list standard 1_115_224 permit 65000:1 0:115 0:224 ip community-list standard 1_116_223 permit 65000:1 0:116 0:223 ip community-list standard 1_117_222 permit 65000:1 0:117 0:222 ip community-list standard 1_118_221 permit 65000:1 0:118 0:221 ip community-list standard 1_119_220 permit 65000:1 0:119 0:220 ip community-list standard 1_120_219 permit 65000:1 0:120 0:219 ip community-list standard 1_121_218 permit 65000:1 0:121 0:218 ip community-list standard 1_122_217 permit 65000:1 0:122 0:217 ip community-list standard 1_123_216 permit 65000:1 0:123 0:216 ip community-list standard 1_124_215 permit 65000:1 0:124 0:215 ip community-list standard 1_125_214 permit 65000:1 0:125 0:214 ip community-list standard 1_126_213 permit 65000:1 0:126 0:213 ip community-list standard 1_127_212 permit 65000:1 0:127 0:212 ip community-list standard 1_128_211 permit 65000:1 0:128 0:211 ip community-list standard 1_129_210 permit 65000:1 0:129 0:210 ip community-list standard 1_130_209 permit 65000:1 0:130 0:209 ip community-list standard 1_131_208 permit 65000:1 0:131 0:208 ip community-list standard 1_132_207 permit 65000:1 0:132 0:207 ip community-list standard 1_133_206 permit 65000:1 0:133 0:206 ip community-list standard 1_134_205 permit 65000:1 0:134 0:205 ip community-list standard 1_135_204 permit 65000:1 0:135 0:204 ip community-list standard 1_136_203 permit 65000:1 0:136 0:203 ip community-list standard 1_137_202 permit 65000:1 0:137 0:202 ip community-list standard 1_138_201 permit 65000:1 0:138 0:201 ip community-list standard 1_139_200 permit 65000:1 0:139 0:200 ip community-list standard 1_140_199 permit 65000:1 0:140 0:199 ip community-list standard 1_141_198 permit 65000:1 0:141 0:198 ip community-list standard 1_142_197 permit 65000:1 0:142 0:197 ip community-list standard 1_143_196 permit 65000:1 0:143 0:196 ip community-list standard 1_144_195 permit 65000:1 0:144 0:195 ip community-list standard 1_145_194 permit 65000:1 0:145 0:194 ip community-list standard 1_146_193 permit 65000:1 0:146 0:193 ip community-list standard 1_147_192 permit 65000:1 0:147 0:192 ip community-list standard 1_148_191 permit 65000:1 0:148 0:191 ip community-list standard 1_149_190 permit 65000:1 0:149 0:190 ip community-list standard 1_150_189 permit 65000:1 0:150 0:189 ip community-list standard 1_151_188 permit 65000:1 0:151 0:188 ip community-list standard 1_152_187 permit 65000:1 0:152 0:187 ip community-list standard 1_153_186 permit 65000:1 0:153 0:186 ip community-list standard 1_154_185 permit 65000:1 0:154 0:185 ip community-list standard 1_155_184 permit 65000:1 0:155 0:184 ip community-list standard 1_156_183 permit 65000:1 0:156 0:183 ip community-list standard 1_157_182 permit 65000:1 0:157 0:182 ip community-list standard 1_158_181 permit 65000:1 0:158 0:181 ip community-list standard 1_159_180 permit 65000:1 0:159 0:180 ip community-list standard 1_160_179 permit 65000:1 0:160 0:179 ip community-list standard 1_161_178 permit 65000:1 0:161 0:178 ip community-list standard 1_162_177 permit 65000:1 0:162 0:177 ip community-list standard 1_163_176 permit 65000:1 0:163 0:176 ip community-list standard 1_164_175 permit 65000:1 0:164 0:175 ip community-list standard 1_165_174 permit 65000:1 0:165 0:174 ip community-list standard 1_166_173 permit 65000:1 0:166 0:173 ip community-list standard 1_167_172 permit 65000:1 0:167 0:172 ip community-list standard 1_168_171 permit 65000:1 0:168 0:171 ip community-list standard 1_169_170 permit 65000:1 0:169 0:170 route-map calculator permit 16942 match community 2_3_113 1_83_256 1_84_255 1_85_254 1_86_253 set community 0:339 route-map calculator permit 16943 match community 1_87_252 1_88_251 1_89_250 1_90_249 1_91_248 set community 0:339 route-map calculator permit 16944 match community 1_92_247 1_93_246 1_94_245 1_95_244 1_96_243 set community 0:339 route-map calculator permit 16945 match community 1_97_242 1_98_241 1_99_240 1_100_239 1_101_238 set community 0:339 route-map calculator permit 16946 match community 1_102_237 1_103_236 1_104_235 1_105_234 1_106_233 set community 0:339 route-map calculator permit 16947 match community 1_107_232 1_108_231 1_109_230 1_110_229 1_111_228 set community 0:339 route-map calculator permit 16948 match community 1_112_227 1_113_226 1_114_225 1_115_224 1_116_223 set community 0:339 route-map calculator permit 16949 match community 1_117_222 1_118_221 1_119_220 1_120_219 1_121_218 set community 0:339 route-map calculator permit 16950 match community 1_122_217 1_123_216 1_124_215 1_125_214 1_126_213 set community 0:339 route-map calculator permit 16951 match community 1_127_212 1_128_211 1_129_210 1_130_209 1_131_208 set community 0:339 route-map calculator permit 16952 match community 1_132_207 1_133_206 1_134_205 1_135_204 1_136_203 set community 0:339 route-map calculator permit 16953 match community 1_137_202 1_138_201 1_139_200 1_140_199 1_141_198 set community 0:339 route-map calculator permit 16954 match community 1_142_197 1_143_196 1_144_195 1_145_194 1_146_193 set community 0:339 route-map calculator permit 16955 match community 1_147_192 1_148_191 1_149_190 1_150_189 1_151_188 set community 0:339 route-map calculator permit 16956 match community 1_152_187 1_153_186 1_154_185 1_155_184 1_156_183 set community 0:339 route-map calculator permit 16957 match community 1_157_182 1_158_181 1_159_180 1_160_179 1_161_178 set community 0:339 route-map calculator permit 16958 match community 1_162_177 1_163_176 1_164_175 1_165_174 1_166_173 set community 0:339 route-map calculator permit 16959 match community 1_167_172 1_168_171 1_169_170 set community 0:339 ip community-list standard 2_68_167 permit 65000:2 0:68 0:167 route-map calculator permit 16960 match community 2_68_167 set community 0:11356 ip community-list standard 2_147_226 permit 65000:2 0:147 0:226 route-map calculator permit 16961 match community 2_147_226 set community 0:33222 ip community-list standard 2_159_242 permit 65000:2 0:159 0:242 route-map calculator permit 16962 match community 2_159_242 set community 0:38478 ip community-list standard 2_174_217 permit 65000:2 0:174 0:217 ip community-list standard 2_186_203 permit 65000:2 0:186 0:203 route-map calculator permit 16963 match community 2_174_217 2_186_203 set community 0:37758 ip community-list standard 2_73_236 permit 65000:2 0:73 0:236 ip community-list standard 2_118_146 permit 65000:2 0:118 0:146 route-map calculator permit 16964 match community 2_73_236 2_118_146 set community 0:17228 ip community-list standard 2_133_225 permit 65000:2 0:133 0:225 ip community-list standard 2_171_175 permit 65000:2 0:171 0:175 route-map calculator permit 16965 match community 2_133_225 2_171_175 set community 0:29925 ip community-list standard 2_163_218 permit 65000:2 0:163 0:218 route-map calculator permit 16966 match community 2_163_218 set community 0:35534 ip community-list standard 2_4_225 permit 65000:2 0:4 0:225 ip community-list standard 2_5_180 permit 65000:2 0:5 0:180 ip community-list standard 2_6_150 permit 65000:2 0:6 0:150 ip community-list standard 2_9_100 permit 65000:2 0:9 0:100 ip community-list standard 2_10_90 permit 65000:2 0:10 0:90 ip community-list standard 2_12_75 permit 65000:2 0:12 0:75 ip community-list standard 2_15_60 permit 65000:2 0:15 0:60 ip community-list standard 2_18_50 permit 65000:2 0:18 0:50 ip community-list standard 2_20_45 permit 65000:2 0:20 0:45 ip community-list standard 2_25_36 permit 65000:2 0:25 0:36 ip community-list standard 2_30_30 permit 65000:2 0:30 0:30 route-map calculator permit 16967 match community 2_4_225 2_5_180 2_6_150 2_9_100 2_10_90 set community 0:900 route-map calculator permit 16968 match community 2_12_75 2_15_60 2_18_50 2_20_45 2_25_36 set community 0:900 route-map calculator permit 16969 match community 2_30_30 set community 0:900 ip community-list standard 2_126_254 permit 65000:2 0:126 0:254 ip community-list standard 2_127_252 permit 65000:2 0:127 0:252 route-map calculator permit 16970 match community 2_126_254 2_127_252 set community 0:32004 ip community-list standard 2_134_238 permit 65000:2 0:134 0:238 route-map calculator permit 16971 match community 2_134_238 set community 0:31892 ip community-list standard 2_167_240 permit 65000:2 0:167 0:240 route-map calculator permit 16972 match community 2_167_240 set community 0:40080 ip community-list standard 2_75_214 permit 65000:2 0:75 0:214 ip community-list standard 2_107_150 permit 65000:2 0:107 0:150 route-map calculator permit 16973 match community 2_75_214 2_107_150 set community 0:16050 ip community-list standard 2_186_214 permit 65000:2 0:186 0:214 route-map calculator permit 16974 match community 2_186_214 set community 0:39804 ip community-list standard 2_206_250 permit 65000:2 0:206 0:250 route-map calculator permit 16975 match community 2_206_250 set community 0:51500 ip community-list standard 2_130_211 permit 65000:2 0:130 0:211 route-map calculator permit 16976 match community 2_130_211 set community 0:27430 ip community-list standard 2_95_227 permit 65000:2 0:95 0:227 route-map calculator permit 16977 match community 2_95_227 set community 0:21565 ip community-list standard 2_45_167 permit 65000:2 0:45 0:167 route-map calculator permit 16978 match community 2_45_167 set community 0:7515 ip community-list standard 2_41_164 permit 65000:2 0:41 0:164 ip community-list standard 2_82_82 permit 65000:2 0:82 0:82 route-map calculator permit 16979 match community 2_41_164 2_82_82 set community 0:6724 ip community-list standard 2_9_129 permit 65000:2 0:9 0:129 ip community-list standard 2_27_43 permit 65000:2 0:27 0:43 route-map calculator permit 16980 match community 2_9_129 2_27_43 set community 0:1161 ip community-list standard 2_145_167 permit 65000:2 0:145 0:167 route-map calculator permit 16981 match community 2_145_167 set community 0:24215 ip community-list standard 2_142_256 permit 65000:2 0:142 0:256 route-map calculator permit 16982 match community 2_142_256 set community 0:36352 ip community-list standard 2_68_248 permit 65000:2 0:68 0:248 ip community-list standard 2_124_136 permit 65000:2 0:124 0:136 route-map calculator permit 16983 match community 2_68_248 2_124_136 set community 0:16864 ip community-list standard 2_58_242 permit 65000:2 0:58 0:242 ip community-list standard 2_116_121 permit 65000:2 0:116 0:121 route-map calculator permit 16984 match community 2_58_242 2_116_121 set community 0:14036 ip community-list standard 2_92_254 permit 65000:2 0:92 0:254 ip community-list standard 2_127_184 permit 65000:2 0:127 0:184 route-map calculator permit 16985 match community 2_92_254 2_127_184 set community 0:23368 ip community-list standard 2_203_233 permit 65000:2 0:203 0:233 route-map calculator permit 16986 match community 2_203_233 set community 0:47299 ip community-list standard 2_15_216 permit 65000:2 0:15 0:216 ip community-list standard 2_18_180 permit 65000:2 0:18 0:180 ip community-list standard 2_20_162 permit 65000:2 0:20 0:162 ip community-list standard 2_24_135 permit 65000:2 0:24 0:135 ip community-list standard 2_27_120 permit 65000:2 0:27 0:120 ip community-list standard 2_30_108 permit 65000:2 0:30 0:108 ip community-list standard 2_36_90 permit 65000:2 0:36 0:90 ip community-list standard 2_40_81 permit 65000:2 0:40 0:81 ip community-list standard 2_45_72 permit 65000:2 0:45 0:72 ip community-list standard 2_54_60 permit 65000:2 0:54 0:60 route-map calculator permit 16987 match community 2_15_216 2_18_180 2_20_162 2_24_135 2_27_120 set community 0:3240 route-map calculator permit 16988 match community 2_30_108 2_36_90 2_40_81 2_45_72 2_54_60 set community 0:3240 ip community-list standard 2_94_211 permit 65000:2 0:94 0:211 route-map calculator permit 16989 match community 2_94_211 set community 0:19834 ip community-list standard 2_87_203 permit 65000:2 0:87 0:203 route-map calculator permit 16990 match community 2_87_203 set community 0:17661 ip community-list standard 2_249_249 permit 65000:2 0:249 0:249 route-map calculator permit 16991 match community 2_249_249 set community 0:62001 ip community-list standard 2_105_249 permit 65000:2 0:105 0:249 route-map calculator permit 16992 match community 2_105_249 set community 0:26145 ip community-list standard 2_88_249 permit 65000:2 0:88 0:249 ip community-list standard 2_132_166 permit 65000:2 0:132 0:166 route-map calculator permit 16993 match community 2_88_249 2_132_166 set community 0:21912 ip community-list standard 2_12_191 permit 65000:2 0:12 0:191 route-map calculator permit 16994 match community 2_12_191 set community 0:2292 ip community-list standard 2_158_245 permit 65000:2 0:158 0:245 route-map calculator permit 16995 match community 2_158_245 set community 0:38710 ip community-list standard 2_52_202 permit 65000:2 0:52 0:202 ip community-list standard 2_101_104 permit 65000:2 0:101 0:104 route-map calculator permit 16996 match community 2_52_202 2_101_104 set community 0:10504 ip community-list standard 2_104_242 permit 65000:2 0:104 0:242 ip community-list standard 2_121_208 permit 65000:2 0:121 0:208 ip community-list standard 2_143_176 permit 65000:2 0:143 0:176 route-map calculator permit 16997 match community 2_104_242 2_121_208 2_143_176 set community 0:25168 ip community-list standard 2_232_241 permit 65000:2 0:232 0:241 route-map calculator permit 16998 match community 2_232_241 set community 0:55912 ip community-list standard 2_158_199 permit 65000:2 0:158 0:199 route-map calculator permit 16999 match community 2_158_199 set community 0:31442 ip community-list standard 2_39_137 permit 65000:2 0:39 0:137 route-map calculator permit 17000 match community 2_39_137 set community 0:5343 ip community-list standard 2_8_244 permit 65000:2 0:8 0:244 ip community-list standard 2_16_122 permit 65000:2 0:16 0:122 ip community-list standard 2_32_61 permit 65000:2 0:32 0:61 route-map calculator permit 17001 match community 2_8_244 2_16_122 2_32_61 set community 0:1952 ip community-list standard 2_107_256 permit 65000:2 0:107 0:256 ip community-list standard 2_128_214 permit 65000:2 0:128 0:214 route-map calculator permit 17002 match community 2_107_256 2_128_214 set community 0:27392 ip community-list standard 2_212_233 permit 65000:2 0:212 0:233 route-map calculator permit 17003 match community 2_212_233 set community 0:49396 ip community-list standard 2_16_213 permit 65000:2 0:16 0:213 ip community-list standard 2_24_142 permit 65000:2 0:24 0:142 ip community-list standard 2_48_71 permit 65000:2 0:48 0:71 route-map calculator permit 17004 match community 2_16_213 2_24_142 2_48_71 set community 0:3408 ip community-list standard 2_124_241 permit 65000:2 0:124 0:241 route-map calculator permit 17005 match community 2_124_241 set community 0:29884 ip community-list standard 2_129_253 permit 65000:2 0:129 0:253 route-map calculator permit 17006 match community 2_129_253 set community 0:32637 ip community-list standard 2_7_218 permit 65000:2 0:7 0:218 ip community-list standard 2_14_109 permit 65000:2 0:14 0:109 route-map calculator permit 17007 match community 2_7_218 2_14_109 set community 0:1526 ip community-list standard 2_191_225 permit 65000:2 0:191 0:225 route-map calculator permit 17008 match community 2_191_225 set community 0:42975 ip community-list standard 2_98_161 permit 65000:2 0:98 0:161 route-map calculator permit 17009 match community 2_98_161 set community 0:15778 ip community-list standard 2_109_241 permit 65000:2 0:109 0:241 route-map calculator permit 17010 match community 2_109_241 set community 0:26269 ip community-list standard 2_29_253 permit 65000:2 0:29 0:253 route-map calculator permit 17011 match community 2_29_253 set community 0:7337 ip community-list standard 2_198_233 permit 65000:2 0:198 0:233 route-map calculator permit 17012 match community 2_198_233 set community 0:46134 ip community-list standard 1_1_8 permit 65000:1 0:1 0:8 ip community-list standard 2_1_9 permit 65000:2 0:1 0:9 ip community-list standard 1_2_7 permit 65000:1 0:2 0:7 ip community-list standard 2_3_3 permit 65000:2 0:3 0:3 ip community-list standard 1_3_6 permit 65000:1 0:3 0:6 ip community-list standard 1_4_5 permit 65000:1 0:4 0:5 ip community-list expanded c9 permit 1 ^65000:4_0:9_0:1$ ip community-list expanded c9 permit 2 ^65000:3_0:10_0:1$ ip community-list expanded c9 permit 3 ^65000:3_0:11_0:2$ ip community-list expanded c9 permit 4 ^65000:3_0:12_0:3$ ip community-list expanded c9 permit 5 ^65000:3_0:13_0:4$ ip community-list expanded c9 permit 6 ^65000:3_0:14_0:5$ ip community-list expanded c9 permit 7 ^65000:3_0:15_0:6$ ip community-list expanded c9 permit 8 ^65000:3_0:16_0:7$ ip community-list expanded c9 permit 9 ^65000:3_0:17_0:8$ ip community-list expanded c9 permit 10 ^65000:4_0:18_0:2$ ip community-list expanded c9 permit 11 ^65000:3_0:18_0:9$ ip community-list expanded c9 permit 12 ^65000:4_0:19_0:2$ ip community-list expanded c9 permit 13 ^65000:3_0:19_0:10$ ip community-list expanded c9 permit 14 ^65000:3_0:20_0:11$ ip community-list expanded c9 permit 15 ^65000:3_0:21_0:12$ ip community-list expanded c9 permit 16 ^65000:3_0:22_0:13$ ip community-list expanded c9 permit 17 ^65000:3_0:23_0:14$ ip community-list expanded c9 permit 18 ^65000:3_0:24_0:15$ ip community-list expanded c9 permit 19 ^65000:3_0:25_0:16$ ip community-list expanded c9 permit 20 ^65000:3_0:26_0:17$ ip community-list expanded c9 permit 21 ^65000:4_0:27_0:3$ ip community-list expanded c9 permit 22 ^65000:3_0:27_0:18$ ip community-list expanded c9 permit 23 ^65000:4_0:28_0:3$ ip community-list expanded c9 permit 24 ^65000:3_0:28_0:19$ ip community-list expanded c9 permit 25 ^65000:4_0:29_0:3$ ip community-list expanded c9 permit 26 ^65000:3_0:29_0:20$ ip community-list expanded c9 permit 27 ^65000:3_0:30_0:21$ ip community-list expanded c9 permit 28 ^65000:3_0:31_0:22$ ip community-list expanded c9 permit 29 ^65000:3_0:32_0:23$ ip community-list expanded c9 permit 30 ^65000:3_0:33_0:24$ ip community-list expanded c9 permit 31 ^65000:3_0:34_0:25$ ip community-list expanded c9 permit 32 ^65000:3_0:35_0:26$ ip community-list expanded c9 permit 33 ^65000:4_0:36_0:4$ ip community-list expanded c9 permit 34 ^65000:3_0:36_0:27$ ip community-list expanded c9 permit 35 ^65000:4_0:37_0:4$ ip community-list expanded c9 permit 36 ^65000:3_0:37_0:28$ ip community-list expanded c9 permit 37 ^65000:4_0:38_0:4$ ip community-list expanded c9 permit 38 ^65000:3_0:38_0:29$ ip community-list expanded c9 permit 39 ^65000:4_0:39_0:4$ ip community-list expanded c9 permit 40 ^65000:3_0:39_0:30$ ip community-list expanded c9 permit 41 ^65000:3_0:40_0:31$ ip community-list expanded c9 permit 42 ^65000:3_0:41_0:32$ ip community-list expanded c9 permit 43 ^65000:3_0:42_0:33$ ip community-list expanded c9 permit 44 ^65000:3_0:43_0:34$ ip community-list expanded c9 permit 45 ^65000:3_0:44_0:35$ ip community-list expanded c9 permit 46 ^65000:4_0:45_0:5$ ip community-list expanded c9 permit 47 ^65000:3_0:45_0:36$ ip community-list expanded c9 permit 48 ^65000:4_0:46_0:5$ ip community-list expanded c9 permit 49 ^65000:3_0:46_0:37$ ip community-list expanded c9 permit 50 ^65000:4_0:47_0:5$ ip community-list expanded c9 permit 51 ^65000:3_0:47_0:38$ ip community-list expanded c9 permit 52 ^65000:4_0:48_0:5$ ip community-list expanded c9 permit 53 ^65000:3_0:48_0:39$ ip community-list expanded c9 permit 54 ^65000:4_0:49_0:5$ ip community-list expanded c9 permit 55 ^65000:3_0:49_0:40$ ip community-list expanded c9 permit 56 ^65000:3_0:50_0:41$ ip community-list expanded c9 permit 57 ^65000:3_0:51_0:42$ ip community-list expanded c9 permit 58 ^65000:3_0:52_0:43$ ip community-list expanded c9 permit 59 ^65000:3_0:53_0:44$ ip community-list expanded c9 permit 60 ^65000:4_0:54_0:6$ ip community-list expanded c9 permit 61 ^65000:3_0:54_0:45$ ip community-list expanded c9 permit 62 ^65000:4_0:55_0:6$ ip community-list expanded c9 permit 63 ^65000:3_0:55_0:46$ ip community-list expanded c9 permit 64 ^65000:4_0:56_0:6$ ip community-list expanded c9 permit 65 ^65000:3_0:56_0:47$ ip community-list expanded c9 permit 66 ^65000:4_0:57_0:6$ ip community-list expanded c9 permit 67 ^65000:3_0:57_0:48$ ip community-list expanded c9 permit 68 ^65000:4_0:58_0:6$ ip community-list expanded c9 permit 69 ^65000:3_0:58_0:49$ ip community-list expanded c9 permit 70 ^65000:4_0:59_0:6$ ip community-list expanded c9 permit 71 ^65000:3_0:59_0:50$ ip community-list expanded c9 permit 72 ^65000:3_0:60_0:51$ ip community-list expanded c9 permit 73 ^65000:3_0:61_0:52$ ip community-list expanded c9 permit 74 ^65000:3_0:62_0:53$ ip community-list expanded c9 permit 75 ^65000:4_0:63_0:7$ ip community-list expanded c9 permit 76 ^65000:3_0:63_0:54$ ip community-list expanded c9 permit 77 ^65000:4_0:64_0:7$ ip community-list expanded c9 permit 78 ^65000:3_0:64_0:55$ ip community-list expanded c9 permit 79 ^65000:4_0:65_0:7$ ip community-list expanded c9 permit 80 ^65000:3_0:65_0:56$ ip community-list expanded c9 permit 81 ^65000:4_0:66_0:7$ ip community-list expanded c9 permit 82 ^65000:3_0:66_0:57$ ip community-list expanded c9 permit 83 ^65000:4_0:67_0:7$ ip community-list expanded c9 permit 84 ^65000:3_0:67_0:58$ ip community-list expanded c9 permit 85 ^65000:4_0:68_0:7$ ip community-list expanded c9 permit 86 ^65000:3_0:68_0:59$ ip community-list expanded c9 permit 87 ^65000:4_0:69_0:7$ ip community-list expanded c9 permit 88 ^65000:3_0:69_0:60$ ip community-list expanded c9 permit 89 ^65000:3_0:70_0:61$ ip community-list expanded c9 permit 90 ^65000:3_0:71_0:62$ ip community-list expanded c9 permit 91 ^65000:4_0:72_0:8$ ip community-list expanded c9 permit 92 ^65000:3_0:72_0:63$ ip community-list expanded c9 permit 93 ^65000:4_0:73_0:8$ ip community-list expanded c9 permit 94 ^65000:3_0:73_0:64$ ip community-list expanded c9 permit 95 ^65000:4_0:74_0:8$ ip community-list expanded c9 permit 96 ^65000:3_0:74_0:65$ ip community-list expanded c9 permit 97 ^65000:4_0:75_0:8$ ip community-list expanded c9 permit 98 ^65000:3_0:75_0:66$ ip community-list expanded c9 permit 99 ^65000:4_0:76_0:8$ ip community-list expanded c9 permit 100 ^65000:3_0:76_0:67$ ip community-list expanded c9 permit 101 ^65000:4_0:77_0:8$ ip community-list expanded c9 permit 102 ^65000:3_0:77_0:68$ ip community-list expanded c9 permit 103 ^65000:4_0:78_0:8$ ip community-list expanded c9 permit 104 ^65000:3_0:78_0:69$ ip community-list expanded c9 permit 105 ^65000:4_0:79_0:8$ ip community-list expanded c9 permit 106 ^65000:3_0:79_0:70$ ip community-list expanded c9 permit 107 ^65000:3_0:80_0:71$ ip community-list expanded c9 permit 108 ^65000:4_0:81_0:9$ ip community-list expanded c9 permit 109 ^65000:3_0:81_0:72$ ip community-list expanded c9 permit 110 ^65000:4_0:82_0:9$ ip community-list expanded c9 permit 111 ^65000:3_0:82_0:73$ ip community-list expanded c9 permit 112 ^65000:4_0:83_0:9$ ip community-list expanded c9 permit 113 ^65000:3_0:83_0:74$ ip community-list expanded c9 permit 114 ^65000:4_0:84_0:9$ ip community-list expanded c9 permit 115 ^65000:3_0:84_0:75$ ip community-list expanded c9 permit 116 ^65000:4_0:85_0:9$ ip community-list expanded c9 permit 117 ^65000:3_0:85_0:76$ ip community-list expanded c9 permit 118 ^65000:4_0:86_0:9$ ip community-list expanded c9 permit 119 ^65000:3_0:86_0:77$ ip community-list expanded c9 permit 120 ^65000:4_0:87_0:9$ ip community-list expanded c9 permit 121 ^65000:3_0:87_0:78$ ip community-list expanded c9 permit 122 ^65000:4_0:88_0:9$ ip community-list expanded c9 permit 123 ^65000:3_0:88_0:79$ ip community-list expanded c9 permit 124 ^65000:4_0:89_0:9$ ip community-list expanded c9 permit 125 ^65000:3_0:89_0:80$ ip community-list expanded c9 permit 126 ^65000:4_0:90_0:10$ ip community-list expanded c9 permit 127 ^65000:3_0:90_0:81$ ip community-list expanded c9 permit 128 ^65000:4_0:91_0:10$ ip community-list expanded c9 permit 129 ^65000:3_0:91_0:82$ ip community-list expanded c9 permit 130 ^65000:4_0:92_0:10$ ip community-list expanded c9 permit 131 ^65000:3_0:92_0:83$ ip community-list expanded c9 permit 132 ^65000:4_0:93_0:10$ ip community-list expanded c9 permit 133 ^65000:3_0:93_0:84$ ip community-list expanded c9 permit 134 ^65000:4_0:94_0:10$ ip community-list expanded c9 permit 135 ^65000:3_0:94_0:85$ ip community-list expanded c9 permit 136 ^65000:4_0:95_0:10$ ip community-list expanded c9 permit 137 ^65000:3_0:95_0:86$ ip community-list expanded c9 permit 138 ^65000:4_0:96_0:10$ ip community-list expanded c9 permit 139 ^65000:3_0:96_0:87$ ip community-list expanded c9 permit 140 ^65000:4_0:97_0:10$ ip community-list expanded c9 permit 141 ^65000:3_0:97_0:88$ ip community-list expanded c9 permit 142 ^65000:4_0:98_0:10$ ip community-list expanded c9 permit 143 ^65000:3_0:98_0:89$ ip community-list expanded c9 permit 144 ^65000:4_0:99_0:10$ ip community-list expanded c9 permit 145 ^65000:4_0:99_0:11$ ip community-list expanded c9 permit 146 ^65000:3_0:99_0:90$ ip community-list expanded c9 permit 147 ^65000:4_0:100_0:11$ ip community-list expanded c9 permit 148 ^65000:3_0:100_0:91$ ip community-list expanded c9 permit 149 ^65000:4_0:101_0:11$ ip community-list expanded c9 permit 150 ^65000:3_0:101_0:92$ ip community-list expanded c9 permit 151 ^65000:4_0:102_0:11$ ip community-list expanded c9 permit 152 ^65000:3_0:102_0:93$ ip community-list expanded c9 permit 153 ^65000:4_0:103_0:11$ ip community-list expanded c9 permit 154 ^65000:3_0:103_0:94$ ip community-list expanded c9 permit 155 ^65000:4_0:104_0:11$ ip community-list expanded c9 permit 156 ^65000:3_0:104_0:95$ ip community-list expanded c9 permit 157 ^65000:4_0:105_0:11$ ip community-list expanded c9 permit 158 ^65000:3_0:105_0:96$ ip community-list expanded c9 permit 159 ^65000:4_0:106_0:11$ ip community-list expanded c9 permit 160 ^65000:3_0:106_0:97$ ip community-list expanded c9 permit 161 ^65000:4_0:107_0:11$ ip community-list expanded c9 permit 162 ^65000:3_0:107_0:98$ ip community-list expanded c9 permit 163 ^65000:4_0:108_0:11$ ip community-list expanded c9 permit 164 ^65000:4_0:108_0:12$ ip community-list expanded c9 permit 165 ^65000:3_0:108_0:99$ ip community-list expanded c9 permit 166 ^65000:4_0:109_0:11$ ip community-list expanded c9 permit 167 ^65000:4_0:109_0:12$ ip community-list expanded c9 permit 168 ^65000:3_0:109_0:100$ ip community-list expanded c9 permit 169 ^65000:4_0:110_0:12$ ip community-list expanded c9 permit 170 ^65000:3_0:110_0:101$ ip community-list expanded c9 permit 171 ^65000:4_0:111_0:12$ ip community-list expanded c9 permit 172 ^65000:3_0:111_0:102$ ip community-list expanded c9 permit 173 ^65000:4_0:112_0:12$ ip community-list expanded c9 permit 174 ^65000:3_0:112_0:103$ ip community-list expanded c9 permit 175 ^65000:4_0:113_0:12$ ip community-list expanded c9 permit 176 ^65000:3_0:113_0:104$ ip community-list expanded c9 permit 177 ^65000:4_0:114_0:12$ ip community-list expanded c9 permit 178 ^65000:3_0:114_0:105$ ip community-list expanded c9 permit 179 ^65000:4_0:115_0:12$ ip community-list expanded c9 permit 180 ^65000:3_0:115_0:106$ ip community-list expanded c9 permit 181 ^65000:4_0:116_0:12$ ip community-list expanded c9 permit 182 ^65000:3_0:116_0:107$ ip community-list expanded c9 permit 183 ^65000:4_0:117_0:12$ ip community-list expanded c9 permit 184 ^65000:4_0:117_0:13$ ip community-list expanded c9 permit 185 ^65000:3_0:117_0:108$ ip community-list expanded c9 permit 186 ^65000:4_0:118_0:12$ ip community-list expanded c9 permit 187 ^65000:4_0:118_0:13$ ip community-list expanded c9 permit 188 ^65000:3_0:118_0:109$ ip community-list expanded c9 permit 189 ^65000:4_0:119_0:12$ ip community-list expanded c9 permit 190 ^65000:4_0:119_0:13$ ip community-list expanded c9 permit 191 ^65000:3_0:119_0:110$ ip community-list expanded c9 permit 192 ^65000:4_0:120_0:13$ ip community-list expanded c9 permit 193 ^65000:3_0:120_0:111$ ip community-list expanded c9 permit 194 ^65000:4_0:121_0:13$ ip community-list expanded c9 permit 195 ^65000:3_0:121_0:112$ ip community-list expanded c9 permit 196 ^65000:4_0:122_0:13$ ip community-list expanded c9 permit 197 ^65000:3_0:122_0:113$ ip community-list expanded c9 permit 198 ^65000:4_0:123_0:13$ ip community-list expanded c9 permit 199 ^65000:3_0:123_0:114$ ip community-list expanded c9 permit 200 ^65000:4_0:124_0:13$ ip community-list expanded c9 permit 201 ^65000:3_0:124_0:115$ ip community-list expanded c9 permit 202 ^65000:4_0:125_0:13$ ip community-list expanded c9 permit 203 ^65000:3_0:125_0:116$ ip community-list expanded c9 permit 204 ^65000:4_0:126_0:13$ ip community-list expanded c9 permit 205 ^65000:4_0:126_0:14$ ip community-list expanded c9 permit 206 ^65000:3_0:126_0:117$ ip community-list expanded c9 permit 207 ^65000:4_0:127_0:13$ ip community-list expanded c9 permit 208 ^65000:4_0:127_0:14$ ip community-list expanded c9 permit 209 ^65000:3_0:127_0:118$ ip community-list expanded c9 permit 210 ^65000:4_0:128_0:13$ ip community-list expanded c9 permit 211 ^65000:4_0:128_0:14$ ip community-list expanded c9 permit 212 ^65000:3_0:128_0:119$ ip community-list expanded c9 permit 213 ^65000:4_0:129_0:13$ ip community-list expanded c9 permit 214 ^65000:4_0:129_0:14$ ip community-list expanded c9 permit 215 ^65000:3_0:129_0:120$ ip community-list expanded c9 permit 216 ^65000:4_0:130_0:14$ ip community-list expanded c9 permit 217 ^65000:3_0:130_0:121$ ip community-list expanded c9 permit 218 ^65000:4_0:131_0:14$ ip community-list expanded c9 permit 219 ^65000:3_0:131_0:122$ ip community-list expanded c9 permit 220 ^65000:4_0:132_0:14$ ip community-list expanded c9 permit 221 ^65000:3_0:132_0:123$ ip community-list expanded c9 permit 222 ^65000:4_0:133_0:14$ ip community-list expanded c9 permit 223 ^65000:3_0:133_0:124$ ip community-list expanded c9 permit 224 ^65000:4_0:134_0:14$ ip community-list expanded c9 permit 225 ^65000:3_0:134_0:125$ ip community-list expanded c9 permit 226 ^65000:4_0:135_0:14$ ip community-list expanded c9 permit 227 ^65000:4_0:135_0:15$ ip community-list expanded c9 permit 228 ^65000:3_0:135_0:126$ ip community-list expanded c9 permit 229 ^65000:4_0:136_0:14$ ip community-list expanded c9 permit 230 ^65000:4_0:136_0:15$ ip community-list expanded c9 permit 231 ^65000:3_0:136_0:127$ ip community-list expanded c9 permit 232 ^65000:4_0:137_0:14$ ip community-list expanded c9 permit 233 ^65000:4_0:137_0:15$ ip community-list expanded c9 permit 234 ^65000:3_0:137_0:128$ ip community-list expanded c9 permit 235 ^65000:4_0:138_0:14$ ip community-list expanded c9 permit 236 ^65000:4_0:138_0:15$ ip community-list expanded c9 permit 237 ^65000:3_0:138_0:129$ ip community-list expanded c9 permit 238 ^65000:4_0:139_0:14$ ip community-list expanded c9 permit 239 ^65000:4_0:139_0:15$ ip community-list expanded c9 permit 240 ^65000:3_0:139_0:130$ ip community-list expanded c9 permit 241 ^65000:4_0:140_0:15$ ip community-list expanded c9 permit 242 ^65000:3_0:140_0:131$ ip community-list expanded c9 permit 243 ^65000:4_0:141_0:15$ ip community-list expanded c9 permit 244 ^65000:3_0:141_0:132$ ip community-list expanded c9 permit 245 ^65000:4_0:142_0:15$ ip community-list expanded c9 permit 246 ^65000:3_0:142_0:133$ ip community-list expanded c9 permit 247 ^65000:4_0:143_0:15$ ip community-list expanded c9 permit 248 ^65000:3_0:143_0:134$ ip community-list expanded c9 permit 249 ^65000:4_0:144_0:15$ ip community-list expanded c9 permit 250 ^65000:4_0:144_0:16$ ip community-list expanded c9 permit 251 ^65000:3_0:144_0:135$ ip community-list expanded c9 permit 252 ^65000:4_0:145_0:15$ ip community-list expanded c9 permit 253 ^65000:4_0:145_0:16$ ip community-list expanded c9 permit 254 ^65000:3_0:145_0:136$ ip community-list expanded c9 permit 255 ^65000:4_0:146_0:15$ ip community-list expanded c9 permit 256 ^65000:4_0:146_0:16$ ip community-list expanded c9 permit 257 ^65000:3_0:146_0:137$ ip community-list expanded c9 permit 258 ^65000:4_0:147_0:15$ ip community-list expanded c9 permit 259 ^65000:4_0:147_0:16$ ip community-list expanded c9 permit 260 ^65000:3_0:147_0:138$ ip community-list expanded c9 permit 261 ^65000:4_0:148_0:15$ ip community-list expanded c9 permit 262 ^65000:4_0:148_0:16$ ip community-list expanded c9 permit 263 ^65000:3_0:148_0:139$ ip community-list expanded c9 permit 264 ^65000:4_0:149_0:15$ ip community-list expanded c9 permit 265 ^65000:4_0:149_0:16$ ip community-list expanded c9 permit 266 ^65000:3_0:149_0:140$ ip community-list expanded c9 permit 267 ^65000:4_0:150_0:16$ ip community-list expanded c9 permit 268 ^65000:3_0:150_0:141$ ip community-list expanded c9 permit 269 ^65000:4_0:151_0:16$ ip community-list expanded c9 permit 270 ^65000:3_0:151_0:142$ ip community-list expanded c9 permit 271 ^65000:4_0:152_0:16$ ip community-list expanded c9 permit 272 ^65000:3_0:152_0:143$ ip community-list expanded c9 permit 273 ^65000:4_0:153_0:16$ ip community-list expanded c9 permit 274 ^65000:4_0:153_0:17$ ip community-list expanded c9 permit 275 ^65000:3_0:153_0:144$ ip community-list expanded c9 permit 276 ^65000:4_0:154_0:16$ ip community-list expanded c9 permit 277 ^65000:4_0:154_0:17$ ip community-list expanded c9 permit 278 ^65000:3_0:154_0:145$ ip community-list expanded c9 permit 279 ^65000:4_0:155_0:16$ ip community-list expanded c9 permit 280 ^65000:4_0:155_0:17$ ip community-list expanded c9 permit 281 ^65000:3_0:155_0:146$ ip community-list expanded c9 permit 282 ^65000:4_0:156_0:16$ ip community-list expanded c9 permit 283 ^65000:4_0:156_0:17$ ip community-list expanded c9 permit 284 ^65000:3_0:156_0:147$ ip community-list expanded c9 permit 285 ^65000:4_0:157_0:16$ ip community-list expanded c9 permit 286 ^65000:4_0:157_0:17$ ip community-list expanded c9 permit 287 ^65000:3_0:157_0:148$ ip community-list expanded c9 permit 288 ^65000:4_0:158_0:16$ ip community-list expanded c9 permit 289 ^65000:4_0:158_0:17$ ip community-list expanded c9 permit 290 ^65000:3_0:158_0:149$ ip community-list expanded c9 permit 291 ^65000:4_0:159_0:16$ ip community-list expanded c9 permit 292 ^65000:4_0:159_0:17$ ip community-list expanded c9 permit 293 ^65000:3_0:159_0:150$ ip community-list expanded c9 permit 294 ^65000:4_0:160_0:17$ ip community-list expanded c9 permit 295 ^65000:3_0:160_0:151$ ip community-list expanded c9 permit 296 ^65000:4_0:161_0:17$ ip community-list expanded c9 permit 297 ^65000:3_0:161_0:152$ ip community-list expanded c9 permit 298 ^65000:4_0:162_0:17$ ip community-list expanded c9 permit 299 ^65000:4_0:162_0:18$ ip community-list expanded c9 permit 300 ^65000:3_0:162_0:153$ ip community-list expanded c9 permit 301 ^65000:4_0:163_0:17$ ip community-list expanded c9 permit 302 ^65000:4_0:163_0:18$ ip community-list expanded c9 permit 303 ^65000:3_0:163_0:154$ ip community-list expanded c9 permit 304 ^65000:4_0:164_0:17$ ip community-list expanded c9 permit 305 ^65000:4_0:164_0:18$ ip community-list expanded c9 permit 306 ^65000:3_0:164_0:155$ ip community-list expanded c9 permit 307 ^65000:4_0:165_0:17$ ip community-list expanded c9 permit 308 ^65000:4_0:165_0:18$ ip community-list expanded c9 permit 309 ^65000:3_0:165_0:156$ ip community-list expanded c9 permit 310 ^65000:4_0:166_0:17$ ip community-list expanded c9 permit 311 ^65000:4_0:166_0:18$ ip community-list expanded c9 permit 312 ^65000:3_0:166_0:157$ ip community-list expanded c9 permit 313 ^65000:4_0:167_0:17$ ip community-list expanded c9 permit 314 ^65000:4_0:167_0:18$ ip community-list expanded c9 permit 315 ^65000:3_0:167_0:158$ ip community-list expanded c9 permit 316 ^65000:4_0:168_0:17$ ip community-list expanded c9 permit 317 ^65000:4_0:168_0:18$ ip community-list expanded c9 permit 318 ^65000:3_0:168_0:159$ ip community-list expanded c9 permit 319 ^65000:4_0:169_0:17$ ip community-list expanded c9 permit 320 ^65000:4_0:169_0:18$ ip community-list expanded c9 permit 321 ^65000:3_0:169_0:160$ ip community-list expanded c9 permit 322 ^65000:4_0:170_0:18$ ip community-list expanded c9 permit 323 ^65000:3_0:170_0:161$ ip community-list expanded c9 permit 324 ^65000:4_0:171_0:18$ ip community-list expanded c9 permit 325 ^65000:4_0:171_0:19$ ip community-list expanded c9 permit 326 ^65000:3_0:171_0:162$ ip community-list expanded c9 permit 327 ^65000:4_0:172_0:18$ ip community-list expanded c9 permit 328 ^65000:4_0:172_0:19$ ip community-list expanded c9 permit 329 ^65000:3_0:172_0:163$ ip community-list expanded c9 permit 330 ^65000:4_0:173_0:18$ ip community-list expanded c9 permit 331 ^65000:4_0:173_0:19$ ip community-list expanded c9 permit 332 ^65000:3_0:173_0:164$ ip community-list expanded c9 permit 333 ^65000:4_0:174_0:18$ ip community-list expanded c9 permit 334 ^65000:4_0:174_0:19$ ip community-list expanded c9 permit 335 ^65000:3_0:174_0:165$ ip community-list expanded c9 permit 336 ^65000:4_0:175_0:18$ ip community-list expanded c9 permit 337 ^65000:4_0:175_0:19$ ip community-list expanded c9 permit 338 ^65000:3_0:175_0:166$ ip community-list expanded c9 permit 339 ^65000:4_0:176_0:18$ ip community-list expanded c9 permit 340 ^65000:4_0:176_0:19$ ip community-list expanded c9 permit 341 ^65000:3_0:176_0:167$ ip community-list expanded c9 permit 342 ^65000:4_0:177_0:18$ ip community-list expanded c9 permit 343 ^65000:4_0:177_0:19$ ip community-list expanded c9 permit 344 ^65000:3_0:177_0:168$ ip community-list expanded c9 permit 345 ^65000:4_0:178_0:18$ ip community-list expanded c9 permit 346 ^65000:4_0:178_0:19$ ip community-list expanded c9 permit 347 ^65000:3_0:178_0:169$ ip community-list expanded c9 permit 348 ^65000:4_0:179_0:18$ ip community-list expanded c9 permit 349 ^65000:4_0:179_0:19$ ip community-list expanded c9 permit 350 ^65000:3_0:179_0:170$ ip community-list expanded c9 permit 351 ^65000:4_0:180_0:19$ ip community-list expanded c9 permit 352 ^65000:4_0:180_0:20$ ip community-list expanded c9 permit 353 ^65000:3_0:180_0:171$ ip community-list expanded c9 permit 354 ^65000:4_0:181_0:19$ ip community-list expanded c9 permit 355 ^65000:4_0:181_0:20$ ip community-list expanded c9 permit 356 ^65000:3_0:181_0:172$ ip community-list expanded c9 permit 357 ^65000:4_0:182_0:19$ ip community-list expanded c9 permit 358 ^65000:4_0:182_0:20$ ip community-list expanded c9 permit 359 ^65000:3_0:182_0:173$ ip community-list expanded c9 permit 360 ^65000:4_0:183_0:19$ ip community-list expanded c9 permit 361 ^65000:4_0:183_0:20$ ip community-list expanded c9 permit 362 ^65000:3_0:183_0:174$ ip community-list expanded c9 permit 363 ^65000:4_0:184_0:19$ ip community-list expanded c9 permit 364 ^65000:4_0:184_0:20$ ip community-list expanded c9 permit 365 ^65000:3_0:184_0:175$ ip community-list expanded c9 permit 366 ^65000:4_0:185_0:19$ ip community-list expanded c9 permit 367 ^65000:4_0:185_0:20$ ip community-list expanded c9 permit 368 ^65000:3_0:185_0:176$ ip community-list expanded c9 permit 369 ^65000:4_0:186_0:19$ ip community-list expanded c9 permit 370 ^65000:4_0:186_0:20$ ip community-list expanded c9 permit 371 ^65000:3_0:186_0:177$ ip community-list expanded c9 permit 372 ^65000:4_0:187_0:19$ ip community-list expanded c9 permit 373 ^65000:4_0:187_0:20$ ip community-list expanded c9 permit 374 ^65000:3_0:187_0:178$ ip community-list expanded c9 permit 375 ^65000:4_0:188_0:19$ ip community-list expanded c9 permit 376 ^65000:4_0:188_0:20$ ip community-list expanded c9 permit 377 ^65000:3_0:188_0:179$ ip community-list expanded c9 permit 378 ^65000:4_0:189_0:19$ ip community-list expanded c9 permit 379 ^65000:4_0:189_0:20$ ip community-list expanded c9 permit 380 ^65000:4_0:189_0:21$ ip community-list expanded c9 permit 381 ^65000:3_0:189_0:180$ ip community-list expanded c9 permit 382 ^65000:4_0:190_0:20$ ip community-list expanded c9 permit 383 ^65000:4_0:190_0:21$ ip community-list expanded c9 permit 384 ^65000:3_0:190_0:181$ ip community-list expanded c9 permit 385 ^65000:4_0:191_0:20$ ip community-list expanded c9 permit 386 ^65000:4_0:191_0:21$ ip community-list expanded c9 permit 387 ^65000:3_0:191_0:182$ ip community-list expanded c9 permit 388 ^65000:4_0:192_0:20$ ip community-list expanded c9 permit 389 ^65000:4_0:192_0:21$ ip community-list expanded c9 permit 390 ^65000:3_0:192_0:183$ ip community-list expanded c9 permit 391 ^65000:4_0:193_0:20$ ip community-list expanded c9 permit 392 ^65000:4_0:193_0:21$ ip community-list expanded c9 permit 393 ^65000:3_0:193_0:184$ ip community-list expanded c9 permit 394 ^65000:4_0:194_0:20$ ip community-list expanded c9 permit 395 ^65000:4_0:194_0:21$ ip community-list expanded c9 permit 396 ^65000:3_0:194_0:185$ ip community-list expanded c9 permit 397 ^65000:4_0:195_0:20$ ip community-list expanded c9 permit 398 ^65000:4_0:195_0:21$ ip community-list expanded c9 permit 399 ^65000:3_0:195_0:186$ ip community-list expanded c9 permit 400 ^65000:4_0:196_0:20$ ip community-list expanded c9 permit 401 ^65000:4_0:196_0:21$ ip community-list expanded c9 permit 402 ^65000:3_0:196_0:187$ ip community-list expanded c9 permit 403 ^65000:4_0:197_0:20$ ip community-list expanded c9 permit 404 ^65000:4_0:197_0:21$ ip community-list expanded c9 permit 405 ^65000:3_0:197_0:188$ ip community-list expanded c9 permit 406 ^65000:4_0:198_0:20$ ip community-list expanded c9 permit 407 ^65000:4_0:198_0:21$ ip community-list expanded c9 permit 408 ^65000:4_0:198_0:22$ ip community-list expanded c9 permit 409 ^65000:3_0:198_0:189$ ip community-list expanded c9 permit 410 ^65000:4_0:199_0:20$ ip community-list expanded c9 permit 411 ^65000:4_0:199_0:21$ ip community-list expanded c9 permit 412 ^65000:4_0:199_0:22$ ip community-list expanded c9 permit 413 ^65000:3_0:199_0:190$ ip community-list expanded c9 permit 414 ^65000:4_0:200_0:21$ ip community-list expanded c9 permit 415 ^65000:4_0:200_0:22$ ip community-list expanded c9 permit 416 ^65000:3_0:200_0:191$ ip community-list expanded c9 permit 417 ^65000:4_0:201_0:21$ ip community-list expanded c9 permit 418 ^65000:4_0:201_0:22$ ip community-list expanded c9 permit 419 ^65000:3_0:201_0:192$ ip community-list expanded c9 permit 420 ^65000:4_0:202_0:21$ ip community-list expanded c9 permit 421 ^65000:4_0:202_0:22$ ip community-list expanded c9 permit 422 ^65000:3_0:202_0:193$ ip community-list expanded c9 permit 423 ^65000:4_0:203_0:21$ ip community-list expanded c9 permit 424 ^65000:4_0:203_0:22$ ip community-list expanded c9 permit 425 ^65000:3_0:203_0:194$ ip community-list expanded c9 permit 426 ^65000:4_0:204_0:21$ ip community-list expanded c9 permit 427 ^65000:4_0:204_0:22$ ip community-list expanded c9 permit 428 ^65000:3_0:204_0:195$ ip community-list expanded c9 permit 429 ^65000:4_0:205_0:21$ ip community-list expanded c9 permit 430 ^65000:4_0:205_0:22$ ip community-list expanded c9 permit 431 ^65000:3_0:205_0:196$ ip community-list expanded c9 permit 432 ^65000:4_0:206_0:21$ ip community-list expanded c9 permit 433 ^65000:4_0:206_0:22$ ip community-list expanded c9 permit 434 ^65000:3_0:206_0:197$ ip community-list expanded c9 permit 435 ^65000:4_0:207_0:21$ ip community-list expanded c9 permit 436 ^65000:4_0:207_0:22$ ip community-list expanded c9 permit 437 ^65000:4_0:207_0:23$ ip community-list expanded c9 permit 438 ^65000:3_0:207_0:198$ ip community-list expanded c9 permit 439 ^65000:4_0:208_0:21$ ip community-list expanded c9 permit 440 ^65000:4_0:208_0:22$ ip community-list expanded c9 permit 441 ^65000:4_0:208_0:23$ ip community-list expanded c9 permit 442 ^65000:3_0:208_0:199$ ip community-list expanded c9 permit 443 ^65000:4_0:209_0:21$ ip community-list expanded c9 permit 444 ^65000:4_0:209_0:22$ ip community-list expanded c9 permit 445 ^65000:4_0:209_0:23$ ip community-list expanded c9 permit 446 ^65000:3_0:209_0:200$ ip community-list expanded c9 permit 447 ^65000:4_0:210_0:22$ ip community-list expanded c9 permit 448 ^65000:4_0:210_0:23$ ip community-list expanded c9 permit 449 ^65000:3_0:210_0:201$ ip community-list expanded c9 permit 450 ^65000:4_0:211_0:22$ ip community-list expanded c9 permit 451 ^65000:4_0:211_0:23$ ip community-list expanded c9 permit 452 ^65000:3_0:211_0:202$ ip community-list expanded c9 permit 453 ^65000:4_0:212_0:22$ ip community-list expanded c9 permit 454 ^65000:4_0:212_0:23$ ip community-list expanded c9 permit 455 ^65000:3_0:212_0:203$ ip community-list expanded c9 permit 456 ^65000:4_0:213_0:22$ ip community-list expanded c9 permit 457 ^65000:4_0:213_0:23$ ip community-list expanded c9 permit 458 ^65000:3_0:213_0:204$ ip community-list expanded c9 permit 459 ^65000:4_0:214_0:22$ ip community-list expanded c9 permit 460 ^65000:4_0:214_0:23$ ip community-list expanded c9 permit 461 ^65000:3_0:214_0:205$ ip community-list expanded c9 permit 462 ^65000:4_0:215_0:22$ ip community-list expanded c9 permit 463 ^65000:4_0:215_0:23$ ip community-list expanded c9 permit 464 ^65000:3_0:215_0:206$ ip community-list expanded c9 permit 465 ^65000:4_0:216_0:22$ ip community-list expanded c9 permit 466 ^65000:4_0:216_0:23$ ip community-list expanded c9 permit 467 ^65000:4_0:216_0:24$ ip community-list expanded c9 permit 468 ^65000:3_0:216_0:207$ ip community-list expanded c9 permit 469 ^65000:4_0:217_0:22$ ip community-list expanded c9 permit 470 ^65000:4_0:217_0:23$ ip community-list expanded c9 permit 471 ^65000:4_0:217_0:24$ ip community-list expanded c9 permit 472 ^65000:3_0:217_0:208$ ip community-list expanded c9 permit 473 ^65000:4_0:218_0:22$ ip community-list expanded c9 permit 474 ^65000:4_0:218_0:23$ ip community-list expanded c9 permit 475 ^65000:4_0:218_0:24$ ip community-list expanded c9 permit 476 ^65000:3_0:218_0:209$ ip community-list expanded c9 permit 477 ^65000:4_0:219_0:22$ ip community-list expanded c9 permit 478 ^65000:4_0:219_0:23$ ip community-list expanded c9 permit 479 ^65000:4_0:219_0:24$ ip community-list expanded c9 permit 480 ^65000:3_0:219_0:210$ ip community-list expanded c9 permit 481 ^65000:4_0:220_0:23$ ip community-list expanded c9 permit 482 ^65000:4_0:220_0:24$ ip community-list expanded c9 permit 483 ^65000:3_0:220_0:211$ ip community-list expanded c9 permit 484 ^65000:4_0:221_0:23$ ip community-list expanded c9 permit 485 ^65000:4_0:221_0:24$ ip community-list expanded c9 permit 486 ^65000:3_0:221_0:212$ ip community-list expanded c9 permit 487 ^65000:4_0:222_0:23$ ip community-list expanded c9 permit 488 ^65000:4_0:222_0:24$ ip community-list expanded c9 permit 489 ^65000:3_0:222_0:213$ ip community-list expanded c9 permit 490 ^65000:4_0:223_0:23$ ip community-list expanded c9 permit 491 ^65000:4_0:223_0:24$ ip community-list expanded c9 permit 492 ^65000:3_0:223_0:214$ ip community-list expanded c9 permit 493 ^65000:4_0:224_0:23$ ip community-list expanded c9 permit 494 ^65000:4_0:224_0:24$ ip community-list expanded c9 permit 495 ^65000:3_0:224_0:215$ ip community-list expanded c9 permit 496 ^65000:4_0:225_0:23$ ip community-list expanded c9 permit 497 ^65000:4_0:225_0:24$ ip community-list expanded c9 permit 498 ^65000:4_0:225_0:25$ ip community-list expanded c9 permit 499 ^65000:3_0:225_0:216$ ip community-list expanded c9 permit 500 ^65000:4_0:226_0:23$ ip community-list expanded c9 permit 501 ^65000:4_0:226_0:24$ ip community-list expanded c9 permit 502 ^65000:4_0:226_0:25$ ip community-list expanded c9 permit 503 ^65000:3_0:226_0:217$ ip community-list expanded c9 permit 504 ^65000:4_0:227_0:23$ ip community-list expanded c9 permit 505 ^65000:4_0:227_0:24$ ip community-list expanded c9 permit 506 ^65000:4_0:227_0:25$ ip community-list expanded c9 permit 507 ^65000:3_0:227_0:218$ ip community-list expanded c9 permit 508 ^65000:4_0:228_0:23$ ip community-list expanded c9 permit 509 ^65000:4_0:228_0:24$ ip community-list expanded c9 permit 510 ^65000:4_0:228_0:25$ ip community-list expanded c9 permit 511 ^65000:3_0:228_0:219$ ip community-list expanded c9 permit 512 ^65000:4_0:229_0:23$ ip community-list expanded c9 permit 513 ^65000:4_0:229_0:24$ ip community-list expanded c9 permit 514 ^65000:4_0:229_0:25$ ip community-list expanded c9 permit 515 ^65000:3_0:229_0:220$ ip community-list expanded c9 permit 516 ^65000:4_0:230_0:24$ ip community-list expanded c9 permit 517 ^65000:4_0:230_0:25$ ip community-list expanded c9 permit 518 ^65000:3_0:230_0:221$ ip community-list expanded c9 permit 519 ^65000:4_0:231_0:24$ ip community-list expanded c9 permit 520 ^65000:4_0:231_0:25$ ip community-list expanded c9 permit 521 ^65000:3_0:231_0:222$ ip community-list expanded c9 permit 522 ^65000:4_0:232_0:24$ ip community-list expanded c9 permit 523 ^65000:4_0:232_0:25$ ip community-list expanded c9 permit 524 ^65000:3_0:232_0:223$ ip community-list expanded c9 permit 525 ^65000:4_0:233_0:24$ ip community-list expanded c9 permit 526 ^65000:4_0:233_0:25$ ip community-list expanded c9 permit 527 ^65000:3_0:233_0:224$ ip community-list expanded c9 permit 528 ^65000:4_0:234_0:24$ ip community-list expanded c9 permit 529 ^65000:4_0:234_0:25$ ip community-list expanded c9 permit 530 ^65000:4_0:234_0:26$ ip community-list expanded c9 permit 531 ^65000:3_0:234_0:225$ ip community-list expanded c9 permit 532 ^65000:4_0:235_0:24$ ip community-list expanded c9 permit 533 ^65000:4_0:235_0:25$ ip community-list expanded c9 permit 534 ^65000:4_0:235_0:26$ ip community-list expanded c9 permit 535 ^65000:3_0:235_0:226$ ip community-list expanded c9 permit 536 ^65000:4_0:236_0:24$ ip community-list expanded c9 permit 537 ^65000:4_0:236_0:25$ ip community-list expanded c9 permit 538 ^65000:4_0:236_0:26$ ip community-list expanded c9 permit 539 ^65000:3_0:236_0:227$ ip community-list expanded c9 permit 540 ^65000:4_0:237_0:24$ ip community-list expanded c9 permit 541 ^65000:4_0:237_0:25$ ip community-list expanded c9 permit 542 ^65000:4_0:237_0:26$ ip community-list expanded c9 permit 543 ^65000:3_0:237_0:228$ ip community-list expanded c9 permit 544 ^65000:4_0:238_0:24$ ip community-list expanded c9 permit 545 ^65000:4_0:238_0:25$ ip community-list expanded c9 permit 546 ^65000:4_0:238_0:26$ ip community-list expanded c9 permit 547 ^65000:3_0:238_0:229$ ip community-list expanded c9 permit 548 ^65000:4_0:239_0:24$ ip community-list expanded c9 permit 549 ^65000:4_0:239_0:25$ ip community-list expanded c9 permit 550 ^65000:4_0:239_0:26$ ip community-list expanded c9 permit 551 ^65000:3_0:239_0:230$ ip community-list expanded c9 permit 552 ^65000:4_0:240_0:25$ ip community-list expanded c9 permit 553 ^65000:4_0:240_0:26$ ip community-list expanded c9 permit 554 ^65000:3_0:240_0:231$ ip community-list expanded c9 permit 555 ^65000:4_0:241_0:25$ ip community-list expanded c9 permit 556 ^65000:4_0:241_0:26$ ip community-list expanded c9 permit 557 ^65000:3_0:241_0:232$ ip community-list expanded c9 permit 558 ^65000:4_0:242_0:25$ ip community-list expanded c9 permit 559 ^65000:4_0:242_0:26$ ip community-list expanded c9 permit 560 ^65000:3_0:242_0:233$ ip community-list expanded c9 permit 561 ^65000:4_0:243_0:25$ ip community-list expanded c9 permit 562 ^65000:4_0:243_0:26$ ip community-list expanded c9 permit 563 ^65000:4_0:243_0:27$ ip community-list expanded c9 permit 564 ^65000:3_0:243_0:234$ ip community-list expanded c9 permit 565 ^65000:4_0:244_0:25$ ip community-list expanded c9 permit 566 ^65000:4_0:244_0:26$ ip community-list expanded c9 permit 567 ^65000:4_0:244_0:27$ ip community-list expanded c9 permit 568 ^65000:3_0:244_0:235$ ip community-list expanded c9 permit 569 ^65000:4_0:245_0:25$ ip community-list expanded c9 permit 570 ^65000:4_0:245_0:26$ ip community-list expanded c9 permit 571 ^65000:4_0:245_0:27$ ip community-list expanded c9 permit 572 ^65000:3_0:245_0:236$ ip community-list expanded c9 permit 573 ^65000:4_0:246_0:25$ ip community-list expanded c9 permit 574 ^65000:4_0:246_0:26$ ip community-list expanded c9 permit 575 ^65000:4_0:246_0:27$ ip community-list expanded c9 permit 576 ^65000:3_0:246_0:237$ ip community-list expanded c9 permit 577 ^65000:4_0:247_0:25$ ip community-list expanded c9 permit 578 ^65000:4_0:247_0:26$ ip community-list expanded c9 permit 579 ^65000:4_0:247_0:27$ ip community-list expanded c9 permit 580 ^65000:3_0:247_0:238$ ip community-list expanded c9 permit 581 ^65000:4_0:248_0:25$ ip community-list expanded c9 permit 582 ^65000:4_0:248_0:26$ ip community-list expanded c9 permit 583 ^65000:4_0:248_0:27$ ip community-list expanded c9 permit 584 ^65000:3_0:248_0:239$ ip community-list expanded c9 permit 585 ^65000:4_0:249_0:25$ ip community-list expanded c9 permit 586 ^65000:4_0:249_0:26$ ip community-list expanded c9 permit 587 ^65000:4_0:249_0:27$ ip community-list expanded c9 permit 588 ^65000:3_0:249_0:240$ ip community-list expanded c9 permit 589 ^65000:4_0:250_0:26$ ip community-list expanded c9 permit 590 ^65000:4_0:250_0:27$ ip community-list expanded c9 permit 591 ^65000:3_0:250_0:241$ ip community-list expanded c9 permit 592 ^65000:4_0:251_0:26$ ip community-list expanded c9 permit 593 ^65000:4_0:251_0:27$ ip community-list expanded c9 permit 594 ^65000:3_0:251_0:242$ ip community-list expanded c9 permit 595 ^65000:4_0:252_0:26$ ip community-list expanded c9 permit 596 ^65000:4_0:252_0:27$ ip community-list expanded c9 permit 597 ^65000:4_0:252_0:28$ ip community-list expanded c9 permit 598 ^65000:3_0:252_0:243$ ip community-list expanded c9 permit 599 ^65000:4_0:253_0:26$ ip community-list expanded c9 permit 600 ^65000:4_0:253_0:27$ ip community-list expanded c9 permit 601 ^65000:4_0:253_0:28$ ip community-list expanded c9 permit 602 ^65000:3_0:253_0:244$ ip community-list expanded c9 permit 603 ^65000:4_0:254_0:26$ ip community-list expanded c9 permit 604 ^65000:4_0:254_0:27$ ip community-list expanded c9 permit 605 ^65000:4_0:254_0:28$ ip community-list expanded c9 permit 606 ^65000:3_0:254_0:245$ ip community-list expanded c9 permit 607 ^65000:4_0:255_0:26$ ip community-list expanded c9 permit 608 ^65000:4_0:255_0:27$ ip community-list expanded c9 permit 609 ^65000:4_0:255_0:28$ ip community-list expanded c9 permit 610 ^65000:3_0:255_0:246$ ip community-list expanded c9 permit 611 ^65000:4_0:256_0:26$ ip community-list expanded c9 permit 612 ^65000:4_0:256_0:27$ ip community-list expanded c9 permit 613 ^65000:4_0:256_0:28$ ip community-list expanded c9 permit 614 ^65000:3_0:256_0:247$ route-map calculator permit 17013 match community 1_1_8 2_1_9 1_2_7 2_3_3 1_3_6 set community 0:9 route-map calculator permit 17014 match community 1_4_5 c4_9_1 c3_10_1 c3_11_2 c3_12_3 set community 0:9 route-map calculator permit 17015 match community c3_13_4 c3_14_5 c3_15_6 c3_16_7 c3_17_8 set community 0:9 route-map calculator permit 17016 match community c4_18_2 c3_18_9 c4_19_2 c3_19_10 c3_20_11 set community 0:9 route-map calculator permit 17017 match community c3_21_12 c3_22_13 c3_23_14 c3_24_15 c3_25_16 set community 0:9 route-map calculator permit 17018 match community c3_26_17 c4_27_3 c3_27_18 c4_28_3 c3_28_19 set community 0:9 route-map calculator permit 17019 match community c4_29_3 c3_29_20 c3_30_21 c3_31_22 c3_32_23 set community 0:9 route-map calculator permit 17020 match community c3_33_24 c3_34_25 c3_35_26 c4_36_4 c3_36_27 set community 0:9 route-map calculator permit 17021 match community c4_37_4 c3_37_28 c4_38_4 c3_38_29 c4_39_4 set community 0:9 route-map calculator permit 17022 match community c3_39_30 c3_40_31 c3_41_32 c3_42_33 c3_43_34 set community 0:9 route-map calculator permit 17023 match community c3_44_35 c4_45_5 c3_45_36 c4_46_5 c3_46_37 set community 0:9 route-map calculator permit 17024 match community c4_47_5 c3_47_38 c4_48_5 c3_48_39 c4_49_5 set community 0:9 route-map calculator permit 17025 match community c3_49_40 c3_50_41 c3_51_42 c3_52_43 c3_53_44 set community 0:9 route-map calculator permit 17026 match community c4_54_6 c3_54_45 c4_55_6 c3_55_46 c4_56_6 set community 0:9 route-map calculator permit 17027 match community c3_56_47 c4_57_6 c3_57_48 c4_58_6 c3_58_49 set community 0:9 route-map calculator permit 17028 match community c4_59_6 c3_59_50 c3_60_51 c3_61_52 c3_62_53 set community 0:9 route-map calculator permit 17029 match community c4_63_7 c3_63_54 c4_64_7 c3_64_55 c4_65_7 set community 0:9 route-map calculator permit 17030 match community c3_65_56 c4_66_7 c3_66_57 c4_67_7 c3_67_58 set community 0:9 route-map calculator permit 17031 match community c4_68_7 c3_68_59 c4_69_7 c3_69_60 c3_70_61 set community 0:9 route-map calculator permit 17032 match community c3_71_62 c4_72_8 c3_72_63 c4_73_8 c3_73_64 set community 0:9 route-map calculator permit 17033 match community c4_74_8 c3_74_65 c4_75_8 c3_75_66 c4_76_8 set community 0:9 route-map calculator permit 17034 match community c3_76_67 c4_77_8 c3_77_68 c4_78_8 c3_78_69 set community 0:9 route-map calculator permit 17035 match community c4_79_8 c3_79_70 c3_80_71 c4_81_9 c3_81_72 set community 0:9 route-map calculator permit 17036 match community c4_82_9 c3_82_73 c4_83_9 c3_83_74 c4_84_9 set community 0:9 route-map calculator permit 17037 match community c3_84_75 c4_85_9 c3_85_76 c4_86_9 c3_86_77 set community 0:9 route-map calculator permit 17038 match community c4_87_9 c3_87_78 c4_88_9 c3_88_79 c4_89_9 set community 0:9 route-map calculator permit 17039 match community c3_89_80 c4_90_10 c3_90_81 c4_91_10 c3_91_82 set community 0:9 route-map calculator permit 17040 match community c4_92_10 c3_92_83 c4_93_10 c3_93_84 c4_94_10 set community 0:9 route-map calculator permit 17041 match community c3_94_85 c4_95_10 c3_95_86 c4_96_10 c3_96_87 set community 0:9 route-map calculator permit 17042 match community c4_97_10 c3_97_88 c4_98_10 c3_98_89 c4_99_10 set community 0:9 route-map calculator permit 17043 match community c4_99_11 c3_99_90 c4_100_11 c3_100_91 c4_101_11 set community 0:9 route-map calculator permit 17044 match community c3_101_92 c4_102_11 c3_102_93 c4_103_11 c3_103_94 set community 0:9 route-map calculator permit 17045 match community c4_104_11 c3_104_95 c4_105_11 c3_105_96 c4_106_11 set community 0:9 route-map calculator permit 17046 match community c3_106_97 c4_107_11 c3_107_98 c4_108_11 c4_108_12 set community 0:9 route-map calculator permit 17047 match community c3_108_99 c4_109_11 c4_109_12 c3_109_100 c4_110_12 set community 0:9 route-map calculator permit 17048 match community c3_110_101 c4_111_12 c3_111_102 c4_112_12 c3_112_103 set community 0:9 route-map calculator permit 17049 match community c4_113_12 c3_113_104 c4_114_12 c3_114_105 c4_115_12 set community 0:9 route-map calculator permit 17050 match community c3_115_106 c4_116_12 c3_116_107 c4_117_12 c4_117_13 set community 0:9 route-map calculator permit 17051 match community c3_117_108 c4_118_12 c4_118_13 c3_118_109 c4_119_12 set community 0:9 route-map calculator permit 17052 match community c4_119_13 c3_119_110 c4_120_13 c3_120_111 c4_121_13 set community 0:9 route-map calculator permit 17053 match community c3_121_112 c4_122_13 c3_122_113 c4_123_13 c3_123_114 set community 0:9 route-map calculator permit 17054 match community c4_124_13 c3_124_115 c4_125_13 c3_125_116 c4_126_13 set community 0:9 route-map calculator permit 17055 match community c4_126_14 c3_126_117 c4_127_13 c4_127_14 c3_127_118 set community 0:9 route-map calculator permit 17056 match community c4_128_13 c4_128_14 c3_128_119 c4_129_13 c4_129_14 set community 0:9 route-map calculator permit 17057 match community c3_129_120 c4_130_14 c3_130_121 c4_131_14 c3_131_122 set community 0:9 route-map calculator permit 17058 match community c4_132_14 c3_132_123 c4_133_14 c3_133_124 c4_134_14 set community 0:9 route-map calculator permit 17059 match community c3_134_125 c4_135_14 c4_135_15 c3_135_126 c4_136_14 set community 0:9 route-map calculator permit 17060 match community c4_136_15 c3_136_127 c4_137_14 c4_137_15 c3_137_128 set community 0:9 route-map calculator permit 17061 match community c4_138_14 c4_138_15 c3_138_129 c4_139_14 c4_139_15 set community 0:9 route-map calculator permit 17062 match community c3_139_130 c4_140_15 c3_140_131 c4_141_15 c3_141_132 set community 0:9 route-map calculator permit 17063 match community c4_142_15 c3_142_133 c4_143_15 c3_143_134 c4_144_15 set community 0:9 route-map calculator permit 17064 match community c4_144_16 c3_144_135 c4_145_15 c4_145_16 c3_145_136 set community 0:9 route-map calculator permit 17065 match community c4_146_15 c4_146_16 c3_146_137 c4_147_15 c4_147_16 set community 0:9 route-map calculator permit 17066 match community c3_147_138 c4_148_15 c4_148_16 c3_148_139 c4_149_15 set community 0:9 route-map calculator permit 17067 match community c4_149_16 c3_149_140 c4_150_16 c3_150_141 c4_151_16 set community 0:9 route-map calculator permit 17068 match community c3_151_142 c4_152_16 c3_152_143 c4_153_16 c4_153_17 set community 0:9 route-map calculator permit 17069 match community c3_153_144 c4_154_16 c4_154_17 c3_154_145 c4_155_16 set community 0:9 route-map calculator permit 17070 match community c4_155_17 c3_155_146 c4_156_16 c4_156_17 c3_156_147 set community 0:9 route-map calculator permit 17071 match community c4_157_16 c4_157_17 c3_157_148 c4_158_16 c4_158_17 set community 0:9 route-map calculator permit 17072 match community c3_158_149 c4_159_16 c4_159_17 c3_159_150 c4_160_17 set community 0:9 route-map calculator permit 17073 match community c3_160_151 c4_161_17 c3_161_152 c4_162_17 c4_162_18 set community 0:9 route-map calculator permit 17074 match community c3_162_153 c4_163_17 c4_163_18 c3_163_154 c4_164_17 set community 0:9 route-map calculator permit 17075 match community c4_164_18 c3_164_155 c4_165_17 c4_165_18 c3_165_156 set community 0:9 route-map calculator permit 17076 match community c4_166_17 c4_166_18 c3_166_157 c4_167_17 c4_167_18 set community 0:9 route-map calculator permit 17077 match community c3_167_158 c4_168_17 c4_168_18 c3_168_159 c4_169_17 set community 0:9 route-map calculator permit 17078 match community c4_169_18 c3_169_160 c4_170_18 c3_170_161 c4_171_18 set community 0:9 route-map calculator permit 17079 match community c4_171_19 c3_171_162 c4_172_18 c4_172_19 c3_172_163 set community 0:9 route-map calculator permit 17080 match community c4_173_18 c4_173_19 c3_173_164 c4_174_18 c4_174_19 set community 0:9 route-map calculator permit 17081 match community c3_174_165 c4_175_18 c4_175_19 c3_175_166 c4_176_18 set community 0:9 route-map calculator permit 17082 match community c4_176_19 c3_176_167 c4_177_18 c4_177_19 c3_177_168 set community 0:9 route-map calculator permit 17083 match community c4_178_18 c4_178_19 c3_178_169 c4_179_18 c4_179_19 set community 0:9 route-map calculator permit 17084 match community c3_179_170 c4_180_19 c4_180_20 c3_180_171 c4_181_19 set community 0:9 route-map calculator permit 17085 match community c4_181_20 c3_181_172 c4_182_19 c4_182_20 c3_182_173 set community 0:9 route-map calculator permit 17086 match community c4_183_19 c4_183_20 c3_183_174 c4_184_19 c4_184_20 set community 0:9 route-map calculator permit 17087 match community c3_184_175 c4_185_19 c4_185_20 c3_185_176 c4_186_19 set community 0:9 route-map calculator permit 17088 match community c4_186_20 c3_186_177 c4_187_19 c4_187_20 c3_187_178 set community 0:9 route-map calculator permit 17089 match community c4_188_19 c4_188_20 c3_188_179 c4_189_19 c4_189_20 set community 0:9 route-map calculator permit 17090 match community c4_189_21 c3_189_180 c4_190_20 c4_190_21 c3_190_181 set community 0:9 route-map calculator permit 17091 match community c4_191_20 c4_191_21 c3_191_182 c4_192_20 c4_192_21 set community 0:9 route-map calculator permit 17092 match community c3_192_183 c4_193_20 c4_193_21 c3_193_184 c4_194_20 set community 0:9 route-map calculator permit 17093 match community c4_194_21 c3_194_185 c4_195_20 c4_195_21 c3_195_186 set community 0:9 route-map calculator permit 17094 match community c4_196_20 c4_196_21 c3_196_187 c4_197_20 c4_197_21 set community 0:9 route-map calculator permit 17095 match community c3_197_188 c4_198_20 c4_198_21 c4_198_22 c3_198_189 set community 0:9 route-map calculator permit 17096 match community c4_199_20 c4_199_21 c4_199_22 c3_199_190 c4_200_21 set community 0:9 route-map calculator permit 17097 match community c4_200_22 c3_200_191 c4_201_21 c4_201_22 c3_201_192 set community 0:9 route-map calculator permit 17098 match community c4_202_21 c4_202_22 c3_202_193 c4_203_21 c4_203_22 set community 0:9 route-map calculator permit 17099 match community c3_203_194 c4_204_21 c4_204_22 c3_204_195 c4_205_21 set community 0:9 route-map calculator permit 17100 match community c4_205_22 c3_205_196 c4_206_21 c4_206_22 c3_206_197 set community 0:9 route-map calculator permit 17101 match community c4_207_21 c4_207_22 c4_207_23 c3_207_198 c4_208_21 set community 0:9 route-map calculator permit 17102 match community c4_208_22 c4_208_23 c3_208_199 c4_209_21 c4_209_22 set community 0:9 route-map calculator permit 17103 match community c4_209_23 c3_209_200 c4_210_22 c4_210_23 c3_210_201 set community 0:9 route-map calculator permit 17104 match community c4_211_22 c4_211_23 c3_211_202 c4_212_22 c4_212_23 set community 0:9 route-map calculator permit 17105 match community c3_212_203 c4_213_22 c4_213_23 c3_213_204 c4_214_22 set community 0:9 route-map calculator permit 17106 match community c4_214_23 c3_214_205 c4_215_22 c4_215_23 c3_215_206 set community 0:9 route-map calculator permit 17107 match community c4_216_22 c4_216_23 c4_216_24 c3_216_207 c4_217_22 set community 0:9 route-map calculator permit 17108 match community c4_217_23 c4_217_24 c3_217_208 c4_218_22 c4_218_23 set community 0:9 route-map calculator permit 17109 match community c4_218_24 c3_218_209 c4_219_22 c4_219_23 c4_219_24 set community 0:9 route-map calculator permit 17110 match community c3_219_210 c4_220_23 c4_220_24 c3_220_211 c4_221_23 set community 0:9 route-map calculator permit 17111 match community c4_221_24 c3_221_212 c4_222_23 c4_222_24 c3_222_213 set community 0:9 route-map calculator permit 17112 match community c4_223_23 c4_223_24 c3_223_214 c4_224_23 c4_224_24 set community 0:9 route-map calculator permit 17113 match community c3_224_215 c4_225_23 c4_225_24 c4_225_25 c3_225_216 set community 0:9 route-map calculator permit 17114 match community c4_226_23 c4_226_24 c4_226_25 c3_226_217 c4_227_23 set community 0:9 route-map calculator permit 17115 match community c4_227_24 c4_227_25 c3_227_218 c4_228_23 c4_228_24 set community 0:9 route-map calculator permit 17116 match community c4_228_25 c3_228_219 c4_229_23 c4_229_24 c4_229_25 set community 0:9 route-map calculator permit 17117 match community c3_229_220 c4_230_24 c4_230_25 c3_230_221 c4_231_24 set community 0:9 route-map calculator permit 17118 match community c4_231_25 c3_231_222 c4_232_24 c4_232_25 c3_232_223 set community 0:9 route-map calculator permit 17119 match community c4_233_24 c4_233_25 c3_233_224 c4_234_24 c4_234_25 set community 0:9 route-map calculator permit 17120 match community c4_234_26 c3_234_225 c4_235_24 c4_235_25 c4_235_26 set community 0:9 route-map calculator permit 17121 match community c3_235_226 c4_236_24 c4_236_25 c4_236_26 c3_236_227 set community 0:9 route-map calculator permit 17122 match community c4_237_24 c4_237_25 c4_237_26 c3_237_228 c4_238_24 set community 0:9 route-map calculator permit 17123 match community c4_238_25 c4_238_26 c3_238_229 c4_239_24 c4_239_25 set community 0:9 route-map calculator permit 17124 match community c4_239_26 c3_239_230 c4_240_25 c4_240_26 c3_240_231 set community 0:9 route-map calculator permit 17125 match community c4_241_25 c4_241_26 c3_241_232 c4_242_25 c4_242_26 set community 0:9 route-map calculator permit 17126 match community c3_242_233 c4_243_25 c4_243_26 c4_243_27 c3_243_234 set community 0:9 route-map calculator permit 17127 match community c4_244_25 c4_244_26 c4_244_27 c3_244_235 c4_245_25 set community 0:9 route-map calculator permit 17128 match community c4_245_26 c4_245_27 c3_245_236 c4_246_25 c4_246_26 set community 0:9 route-map calculator permit 17129 match community c4_246_27 c3_246_237 c4_247_25 c4_247_26 c4_247_27 set community 0:9 route-map calculator permit 17130 match community c3_247_238 c4_248_25 c4_248_26 c4_248_27 c3_248_239 set community 0:9 route-map calculator permit 17131 match community c4_249_25 c4_249_26 c4_249_27 c3_249_240 c4_250_26 set community 0:9 route-map calculator permit 17132 match community c4_250_27 c3_250_241 c4_251_26 c4_251_27 c3_251_242 set community 0:9 route-map calculator permit 17133 match community c4_252_26 c4_252_27 c4_252_28 c3_252_243 c4_253_26 set community 0:9 route-map calculator permit 17134 match community c4_253_27 c4_253_28 c3_253_244 c4_254_26 c4_254_27 set community 0:9 route-map calculator permit 17135 match community c4_254_28 c3_254_245 c4_255_26 c4_255_27 c4_255_28 set community 0:9 route-map calculator permit 17136 match community c3_255_246 c4_256_26 c4_256_27 c4_256_28 c3_256_247 set community 0:9 ip community-list standard 2_49_232 permit 65000:2 0:49 0:232 ip community-list standard 2_56_203 permit 65000:2 0:56 0:203 ip community-list standard 2_58_196 permit 65000:2 0:58 0:196 ip community-list standard 2_98_116 permit 65000:2 0:98 0:116 route-map calculator permit 17137 match community 2_49_232 2_56_203 2_58_196 2_98_116 set community 0:11368 ip community-list standard 2_91_252 permit 65000:2 0:91 0:252 ip community-list standard 2_98_234 permit 65000:2 0:98 0:234 ip community-list standard 2_117_196 permit 65000:2 0:117 0:196 ip community-list standard 2_126_182 permit 65000:2 0:126 0:182 ip community-list standard 2_147_156 permit 65000:2 0:147 0:156 route-map calculator permit 17138 match community 2_91_252 2_98_234 2_117_196 2_126_182 2_147_156 set community 0:22932 ip community-list standard 2_175_205 permit 65000:2 0:175 0:205 route-map calculator permit 17139 match community 2_175_205 set community 0:35875 ip community-list standard 2_74_249 permit 65000:2 0:74 0:249 ip community-list standard 2_83_222 permit 65000:2 0:83 0:222 ip community-list standard 2_111_166 permit 65000:2 0:111 0:166 route-map calculator permit 17140 match community 2_74_249 2_83_222 2_111_166 set community 0:18426 ip community-list standard 2_57_236 permit 65000:2 0:57 0:236 ip community-list standard 2_59_228 permit 65000:2 0:59 0:228 ip community-list standard 2_76_177 permit 65000:2 0:76 0:177 ip community-list standard 2_114_118 permit 65000:2 0:114 0:118 route-map calculator permit 17141 match community 2_57_236 2_59_228 2_76_177 2_114_118 set community 0:13452 ip community-list standard 2_51_232 permit 65000:2 0:51 0:232 ip community-list standard 2_58_204 permit 65000:2 0:58 0:204 ip community-list standard 2_68_174 permit 65000:2 0:68 0:174 ip community-list standard 2_87_136 permit 65000:2 0:87 0:136 ip community-list standard 2_102_116 permit 65000:2 0:102 0:116 route-map calculator permit 17142 match community 2_51_232 2_58_204 2_68_174 2_87_136 2_102_116 set community 0:11832 ip community-list standard 2_2_173 permit 65000:2 0:2 0:173 ip community-list standard 1_90_256 permit 65000:1 0:90 0:256 ip community-list standard 1_91_255 permit 65000:1 0:91 0:255 ip community-list standard 1_92_254 permit 65000:1 0:92 0:254 ip community-list standard 1_93_253 permit 65000:1 0:93 0:253 ip community-list standard 1_94_252 permit 65000:1 0:94 0:252 ip community-list standard 1_95_251 permit 65000:1 0:95 0:251 ip community-list standard 1_96_250 permit 65000:1 0:96 0:250 ip community-list standard 1_97_249 permit 65000:1 0:97 0:249 ip community-list standard 1_98_248 permit 65000:1 0:98 0:248 ip community-list standard 1_99_247 permit 65000:1 0:99 0:247 ip community-list standard 1_100_246 permit 65000:1 0:100 0:246 ip community-list standard 1_101_245 permit 65000:1 0:101 0:245 ip community-list standard 1_102_244 permit 65000:1 0:102 0:244 ip community-list standard 1_103_243 permit 65000:1 0:103 0:243 ip community-list standard 1_104_242 permit 65000:1 0:104 0:242 ip community-list standard 1_105_241 permit 65000:1 0:105 0:241 ip community-list standard 1_106_240 permit 65000:1 0:106 0:240 ip community-list standard 1_107_239 permit 65000:1 0:107 0:239 ip community-list standard 1_108_238 permit 65000:1 0:108 0:238 ip community-list standard 1_109_237 permit 65000:1 0:109 0:237 ip community-list standard 1_110_236 permit 65000:1 0:110 0:236 ip community-list standard 1_111_235 permit 65000:1 0:111 0:235 ip community-list standard 1_112_234 permit 65000:1 0:112 0:234 ip community-list standard 1_113_233 permit 65000:1 0:113 0:233 ip community-list standard 1_114_232 permit 65000:1 0:114 0:232 ip community-list standard 1_115_231 permit 65000:1 0:115 0:231 ip community-list standard 1_116_230 permit 65000:1 0:116 0:230 ip community-list standard 1_117_229 permit 65000:1 0:117 0:229 ip community-list standard 1_118_228 permit 65000:1 0:118 0:228 ip community-list standard 1_119_227 permit 65000:1 0:119 0:227 ip community-list standard 1_120_226 permit 65000:1 0:120 0:226 ip community-list standard 1_121_225 permit 65000:1 0:121 0:225 ip community-list standard 1_122_224 permit 65000:1 0:122 0:224 ip community-list standard 1_123_223 permit 65000:1 0:123 0:223 ip community-list standard 1_124_222 permit 65000:1 0:124 0:222 ip community-list standard 1_125_221 permit 65000:1 0:125 0:221 ip community-list standard 1_126_220 permit 65000:1 0:126 0:220 ip community-list standard 1_127_219 permit 65000:1 0:127 0:219 ip community-list standard 1_128_218 permit 65000:1 0:128 0:218 ip community-list standard 1_129_217 permit 65000:1 0:129 0:217 ip community-list standard 1_130_216 permit 65000:1 0:130 0:216 ip community-list standard 1_131_215 permit 65000:1 0:131 0:215 ip community-list standard 1_132_214 permit 65000:1 0:132 0:214 ip community-list standard 1_133_213 permit 65000:1 0:133 0:213 ip community-list standard 1_134_212 permit 65000:1 0:134 0:212 ip community-list standard 1_135_211 permit 65000:1 0:135 0:211 ip community-list standard 1_136_210 permit 65000:1 0:136 0:210 ip community-list standard 1_137_209 permit 65000:1 0:137 0:209 ip community-list standard 1_138_208 permit 65000:1 0:138 0:208 ip community-list standard 1_139_207 permit 65000:1 0:139 0:207 ip community-list standard 1_140_206 permit 65000:1 0:140 0:206 ip community-list standard 1_141_205 permit 65000:1 0:141 0:205 ip community-list standard 1_142_204 permit 65000:1 0:142 0:204 ip community-list standard 1_143_203 permit 65000:1 0:143 0:203 ip community-list standard 1_144_202 permit 65000:1 0:144 0:202 ip community-list standard 1_145_201 permit 65000:1 0:145 0:201 ip community-list standard 1_146_200 permit 65000:1 0:146 0:200 ip community-list standard 1_147_199 permit 65000:1 0:147 0:199 ip community-list standard 1_148_198 permit 65000:1 0:148 0:198 ip community-list standard 1_149_197 permit 65000:1 0:149 0:197 ip community-list standard 1_150_196 permit 65000:1 0:150 0:196 ip community-list standard 1_151_195 permit 65000:1 0:151 0:195 ip community-list standard 1_152_194 permit 65000:1 0:152 0:194 ip community-list standard 1_153_193 permit 65000:1 0:153 0:193 ip community-list standard 1_154_192 permit 65000:1 0:154 0:192 ip community-list standard 1_155_191 permit 65000:1 0:155 0:191 ip community-list standard 1_156_190 permit 65000:1 0:156 0:190 ip community-list standard 1_157_189 permit 65000:1 0:157 0:189 ip community-list standard 1_158_188 permit 65000:1 0:158 0:188 ip community-list standard 1_159_187 permit 65000:1 0:159 0:187 ip community-list standard 1_160_186 permit 65000:1 0:160 0:186 ip community-list standard 1_161_185 permit 65000:1 0:161 0:185 ip community-list standard 1_162_184 permit 65000:1 0:162 0:184 ip community-list standard 1_163_183 permit 65000:1 0:163 0:183 ip community-list standard 1_164_182 permit 65000:1 0:164 0:182 ip community-list standard 1_165_181 permit 65000:1 0:165 0:181 ip community-list standard 1_166_180 permit 65000:1 0:166 0:180 ip community-list standard 1_167_179 permit 65000:1 0:167 0:179 ip community-list standard 1_168_178 permit 65000:1 0:168 0:178 ip community-list standard 1_169_177 permit 65000:1 0:169 0:177 ip community-list standard 1_170_176 permit 65000:1 0:170 0:176 ip community-list standard 1_171_175 permit 65000:1 0:171 0:175 ip community-list standard 1_172_174 permit 65000:1 0:172 0:174 ip community-list standard 1_173_173 permit 65000:1 0:173 0:173 route-map calculator permit 17143 match community 2_2_173 1_90_256 1_91_255 1_92_254 1_93_253 set community 0:346 route-map calculator permit 17144 match community 1_94_252 1_95_251 1_96_250 1_97_249 1_98_248 set community 0:346 route-map calculator permit 17145 match community 1_99_247 1_100_246 1_101_245 1_102_244 1_103_243 set community 0:346 route-map calculator permit 17146 match community 1_104_242 1_105_241 1_106_240 1_107_239 1_108_238 set community 0:346 route-map calculator permit 17147 match community 1_109_237 1_110_236 1_111_235 1_112_234 1_113_233 set community 0:346 route-map calculator permit 17148 match community 1_114_232 1_115_231 1_116_230 1_117_229 1_118_228 set community 0:346 route-map calculator permit 17149 match community 1_119_227 1_120_226 1_121_225 1_122_224 1_123_223 set community 0:346 route-map calculator permit 17150 match community 1_124_222 1_125_221 1_126_220 1_127_219 1_128_218 set community 0:346 route-map calculator permit 17151 match community 1_129_217 1_130_216 1_131_215 1_132_214 1_133_213 set community 0:346 route-map calculator permit 17152 match community 1_134_212 1_135_211 1_136_210 1_137_209 1_138_208 set community 0:346 route-map calculator permit 17153 match community 1_139_207 1_140_206 1_141_205 1_142_204 1_143_203 set community 0:346 route-map calculator permit 17154 match community 1_144_202 1_145_201 1_146_200 1_147_199 1_148_198 set community 0:346 route-map calculator permit 17155 match community 1_149_197 1_150_196 1_151_195 1_152_194 1_153_193 set community 0:346 route-map calculator permit 17156 match community 1_154_192 1_155_191 1_156_190 1_157_189 1_158_188 set community 0:346 route-map calculator permit 17157 match community 1_159_187 1_160_186 1_161_185 1_162_184 1_163_183 set community 0:346 route-map calculator permit 17158 match community 1_164_182 1_165_181 1_166_180 1_167_179 1_168_178 set community 0:346 route-map calculator permit 17159 match community 1_169_177 1_170_176 1_171_175 1_172_174 1_173_173 set community 0:346 ip community-list standard 2_51_89 permit 65000:2 0:51 0:89 route-map calculator permit 17160 match community 2_51_89 set community 0:4539 ip community-list standard 2_56_247 permit 65000:2 0:56 0:247 ip community-list standard 2_76_182 permit 65000:2 0:76 0:182 ip community-list standard 2_91_152 permit 65000:2 0:91 0:152 ip community-list standard 2_104_133 permit 65000:2 0:104 0:133 route-map calculator permit 17161 match community 2_56_247 2_76_182 2_91_152 2_104_133 set community 0:13832 ip community-list standard 2_65_233 permit 65000:2 0:65 0:233 route-map calculator permit 17162 match community 2_65_233 set community 0:15145 ip community-list standard 2_104_230 permit 65000:2 0:104 0:230 ip community-list standard 2_115_208 permit 65000:2 0:115 0:208 ip community-list standard 2_130_184 permit 65000:2 0:130 0:184 route-map calculator permit 17163 match community 2_104_230 2_115_208 2_130_184 set community 0:23920 ip community-list standard 2_146_255 permit 65000:2 0:146 0:255 ip community-list standard 2_170_219 permit 65000:2 0:170 0:219 route-map calculator permit 17164 match community 2_146_255 2_170_219 set community 0:37230 ip community-list standard 2_10_208 permit 65000:2 0:10 0:208 ip community-list standard 2_13_160 permit 65000:2 0:13 0:160 ip community-list standard 2_16_130 permit 65000:2 0:16 0:130 ip community-list standard 2_20_104 permit 65000:2 0:20 0:104 ip community-list standard 2_26_80 permit 65000:2 0:26 0:80 ip community-list standard 2_32_65 permit 65000:2 0:32 0:65 ip community-list standard 2_40_52 permit 65000:2 0:40 0:52 route-map calculator permit 17165 match community 2_10_208 2_13_160 2_16_130 2_20_104 2_26_80 set community 0:2080 route-map calculator permit 17166 match community 2_32_65 2_40_52 set community 0:2080 ip community-list standard 2_25_131 permit 65000:2 0:25 0:131 route-map calculator permit 17167 match community 2_25_131 set community 0:3275 ip community-list standard 2_79_133 permit 65000:2 0:79 0:133 route-map calculator permit 17168 match community 2_79_133 set community 0:10507 ip community-list standard 2_148_164 permit 65000:2 0:148 0:164 route-map calculator permit 17169 match community 2_148_164 set community 0:24272 ip community-list standard 2_167_204 permit 65000:2 0:167 0:204 route-map calculator permit 17170 match community 2_167_204 set community 0:34068 ip community-list standard 2_39_147 permit 65000:2 0:39 0:147 ip community-list standard 2_49_117 permit 65000:2 0:49 0:117 ip community-list standard 2_63_91 permit 65000:2 0:63 0:91 route-map calculator permit 17171 match community 2_39_147 2_49_117 2_63_91 set community 0:5733 ip community-list standard 2_63_231 permit 65000:2 0:63 0:231 ip community-list standard 2_77_189 permit 65000:2 0:77 0:189 ip community-list standard 2_99_147 permit 65000:2 0:99 0:147 route-map calculator permit 17172 match community 2_63_231 2_77_189 2_99_147 set community 0:14553 ip community-list standard 2_166_178 permit 65000:2 0:166 0:178 route-map calculator permit 17173 match community 2_166_178 set community 0:29548 ip community-list standard 2_44_217 permit 65000:2 0:44 0:217 ip community-list standard 2_62_154 permit 65000:2 0:62 0:154 ip community-list standard 2_77_124 permit 65000:2 0:77 0:124 route-map calculator permit 17174 match community 2_44_217 2_62_154 2_77_124 set community 0:9548 ip community-list standard 2_165_253 permit 65000:2 0:165 0:253 route-map calculator permit 17175 match community 2_165_253 set community 0:41745 ip community-list standard 2_62_134 permit 65000:2 0:62 0:134 ip community-list standard 2_67_124 permit 65000:2 0:67 0:124 route-map calculator permit 17176 match community 2_62_134 2_67_124 set community 0:8308 ip community-list standard 2_77_173 permit 65000:2 0:77 0:173 route-map calculator permit 17177 match community 2_77_173 set community 0:13321 ip community-list standard 2_133_157 permit 65000:2 0:133 0:157 route-map calculator permit 17178 match community 2_133_157 set community 0:20881 ip community-list standard 2_86_178 permit 65000:2 0:86 0:178 ip community-list standard 2_89_172 permit 65000:2 0:89 0:172 route-map calculator permit 17179 match community 2_86_178 2_89_172 set community 0:15308 ip community-list standard 2_39_252 permit 65000:2 0:39 0:252 ip community-list standard 2_42_234 permit 65000:2 0:42 0:234 ip community-list standard 2_52_189 permit 65000:2 0:52 0:189 ip community-list standard 2_54_182 permit 65000:2 0:54 0:182 ip community-list standard 2_63_156 permit 65000:2 0:63 0:156 ip community-list standard 2_78_126 permit 65000:2 0:78 0:126 ip community-list standard 2_84_117 permit 65000:2 0:84 0:117 ip community-list standard 2_91_108 permit 65000:2 0:91 0:108 route-map calculator permit 17180 match community 2_39_252 2_42_234 2_52_189 2_54_182 2_63_156 set community 0:9828 route-map calculator permit 17181 match community 2_78_126 2_84_117 2_91_108 set community 0:9828 ip community-list standard 2_94_256 permit 65000:2 0:94 0:256 ip community-list standard 2_128_188 permit 65000:2 0:128 0:188 route-map calculator permit 17182 match community 2_94_256 2_128_188 set community 0:24064 ip community-list standard 2_47_79 permit 65000:2 0:47 0:79 route-map calculator permit 17183 match community 2_47_79 set community 0:3713 ip community-list standard 2_26_142 permit 65000:2 0:26 0:142 ip community-list standard 2_52_71 permit 65000:2 0:52 0:71 route-map calculator permit 17184 match community 2_26_142 2_52_71 set community 0:3692 ip community-list standard 2_216_256 permit 65000:2 0:216 0:256 route-map calculator permit 17185 match community 2_216_256 set community 0:55296 ip community-list standard 2_171_193 permit 65000:2 0:171 0:193 route-map calculator permit 17186 match community 2_171_193 set community 0:33003 ip community-list standard 2_207_225 permit 65000:2 0:207 0:225 route-map calculator permit 17187 match community 2_207_225 set community 0:46575 ip community-list standard 2_53_89 permit 65000:2 0:53 0:89 route-map calculator permit 17188 match community 2_53_89 set community 0:4717 ip community-list standard 2_229_233 permit 65000:2 0:229 0:233 route-map calculator permit 17189 match community 2_229_233 set community 0:53357 ip community-list standard 2_33_157 permit 65000:2 0:33 0:157 route-map calculator permit 17190 match community 2_33_157 set community 0:5181 ip community-list standard 2_173_201 permit 65000:2 0:173 0:201 route-map calculator permit 17191 match community 2_173_201 set community 0:34773 ip community-list standard 2_14_146 permit 65000:2 0:14 0:146 ip community-list standard 2_28_73 permit 65000:2 0:28 0:73 route-map calculator permit 17192 match community 2_14_146 2_28_73 set community 0:2044 ip community-list standard 2_64_207 permit 65000:2 0:64 0:207 ip community-list standard 2_69_192 permit 65000:2 0:69 0:192 ip community-list standard 2_72_184 permit 65000:2 0:72 0:184 ip community-list standard 2_92_144 permit 65000:2 0:92 0:144 ip community-list standard 2_96_138 permit 65000:2 0:96 0:138 route-map calculator permit 17193 match community 2_64_207 2_69_192 2_72_184 2_92_144 2_96_138 set community 0:13248 ip community-list standard 2_105_225 permit 65000:2 0:105 0:225 ip community-list standard 2_125_189 permit 65000:2 0:125 0:189 ip community-list standard 2_135_175 permit 65000:2 0:135 0:175 route-map calculator permit 17194 match community 2_105_225 2_125_189 2_135_175 set community 0:23625 ip community-list standard 2_157_160 permit 65000:2 0:157 0:160 route-map calculator permit 17195 match community 2_157_160 set community 0:25120 ip community-list standard 2_159_177 permit 65000:2 0:159 0:177 route-map calculator permit 17196 match community 2_159_177 set community 0:28143 ip community-list standard 2_179_206 permit 65000:2 0:179 0:206 route-map calculator permit 17197 match community 2_179_206 set community 0:36874 ip community-list standard 2_105_212 permit 65000:2 0:105 0:212 ip community-list standard 2_106_210 permit 65000:2 0:106 0:210 ip community-list standard 2_140_159 permit 65000:2 0:140 0:159 route-map calculator permit 17198 match community 2_105_212 2_106_210 2_140_159 set community 0:22260 ip community-list standard 2_84_203 permit 65000:2 0:84 0:203 ip community-list standard 2_87_196 permit 65000:2 0:87 0:196 ip community-list standard 2_98_174 permit 65000:2 0:98 0:174 ip community-list standard 2_116_147 permit 65000:2 0:116 0:147 route-map calculator permit 17199 match community 2_84_203 2_87_196 2_98_174 2_116_147 set community 0:17052 ip community-list standard 2_29_256 permit 65000:2 0:29 0:256 ip community-list standard 2_32_232 permit 65000:2 0:32 0:232 ip community-list standard 2_58_128 permit 65000:2 0:58 0:128 ip community-list standard 2_64_116 permit 65000:2 0:64 0:116 route-map calculator permit 17200 match community 2_29_256 2_32_232 2_58_128 2_64_116 set community 0:7424 ip community-list standard 2_110_149 permit 65000:2 0:110 0:149 route-map calculator permit 17201 match community 2_110_149 set community 0:16390 ip community-list standard 2_149_175 permit 65000:2 0:149 0:175 route-map calculator permit 17202 match community 2_149_175 set community 0:26075 ip community-list standard 2_190_227 permit 65000:2 0:190 0:227 route-map calculator permit 17203 match community 2_190_227 set community 0:43130 ip community-list standard 2_201_230 permit 65000:2 0:201 0:230 route-map calculator permit 17204 match community 2_201_230 set community 0:46230 ip community-list standard 2_63_252 permit 65000:2 0:63 0:252 ip community-list standard 2_81_196 permit 65000:2 0:81 0:196 ip community-list standard 2_84_189 permit 65000:2 0:84 0:189 ip community-list standard 2_98_162 permit 65000:2 0:98 0:162 ip community-list standard 2_108_147 permit 65000:2 0:108 0:147 ip community-list standard 2_126_126 permit 65000:2 0:126 0:126 route-map calculator permit 17205 match community 2_63_252 2_81_196 2_84_189 2_98_162 2_108_147 set community 0:15876 route-map calculator permit 17206 match community 2_126_126 set community 0:15876 ip community-list standard 2_134_149 permit 65000:2 0:134 0:149 route-map calculator permit 17207 match community 2_134_149 set community 0:19966 ip community-list standard 2_13_189 permit 65000:2 0:13 0:189 ip community-list standard 2_21_117 permit 65000:2 0:21 0:117 ip community-list standard 2_27_91 permit 65000:2 0:27 0:91 ip community-list standard 2_39_63 permit 65000:2 0:39 0:63 route-map calculator permit 17208 match community 2_13_189 2_21_117 2_27_91 2_39_63 set community 0:2457 ip community-list standard 2_124_151 permit 65000:2 0:124 0:151 route-map calculator permit 17209 match community 2_124_151 set community 0:18724 ip community-list standard 2_170_245 permit 65000:2 0:170 0:245 ip community-list standard 2_175_238 permit 65000:2 0:175 0:238 route-map calculator permit 17210 match community 2_170_245 2_175_238 set community 0:41650 ip community-list standard 2_170_232 permit 65000:2 0:170 0:232 route-map calculator permit 17211 match community 2_170_232 set community 0:39440 ip community-list standard 2_55_223 permit 65000:2 0:55 0:223 route-map calculator permit 17212 match community 2_55_223 set community 0:12265 ip community-list standard 2_113_173 permit 65000:2 0:113 0:173 route-map calculator permit 17213 match community 2_113_173 set community 0:19549 ip community-list standard 2_183_253 permit 65000:2 0:183 0:253 route-map calculator permit 17214 match community 2_183_253 set community 0:46299 ip community-list standard 2_61_149 permit 65000:2 0:61 0:149 route-map calculator permit 17215 match community 2_61_149 set community 0:9089 ip community-list standard 2_91_221 permit 65000:2 0:91 0:221 ip community-list standard 2_119_169 permit 65000:2 0:119 0:169 route-map calculator permit 17216 match community 2_91_221 2_119_169 set community 0:20111 ip community-list standard 2_109_193 permit 65000:2 0:109 0:193 route-map calculator permit 17217 match community 2_109_193 set community 0:21037 ip community-list standard 2_135_236 permit 65000:2 0:135 0:236 ip community-list standard 2_177_180 permit 65000:2 0:177 0:180 route-map calculator permit 17218 match community 2_135_236 2_177_180 set community 0:31860 ip community-list standard 2_56_213 permit 65000:2 0:56 0:213 ip community-list standard 2_71_168 permit 65000:2 0:71 0:168 ip community-list standard 2_84_142 permit 65000:2 0:84 0:142 route-map calculator permit 17219 match community 2_56_213 2_71_168 2_84_142 set community 0:11928 ip community-list standard 2_227_238 permit 65000:2 0:227 0:238 route-map calculator permit 17220 match community 2_227_238 set community 0:54026 ip community-list standard 2_3_123 permit 65000:2 0:3 0:123 ip community-list standard 2_9_41 permit 65000:2 0:9 0:41 ip community-list standard 1_113_256 permit 65000:1 0:113 0:256 ip community-list standard 1_114_255 permit 65000:1 0:114 0:255 ip community-list standard 1_115_254 permit 65000:1 0:115 0:254 ip community-list standard 1_116_253 permit 65000:1 0:116 0:253 ip community-list standard 1_117_252 permit 65000:1 0:117 0:252 ip community-list standard 1_118_251 permit 65000:1 0:118 0:251 ip community-list standard 1_119_250 permit 65000:1 0:119 0:250 ip community-list standard 1_120_249 permit 65000:1 0:120 0:249 ip community-list standard 1_121_248 permit 65000:1 0:121 0:248 ip community-list standard 1_122_247 permit 65000:1 0:122 0:247 ip community-list standard 1_123_246 permit 65000:1 0:123 0:246 ip community-list standard 1_124_245 permit 65000:1 0:124 0:245 ip community-list standard 1_125_244 permit 65000:1 0:125 0:244 ip community-list standard 1_126_243 permit 65000:1 0:126 0:243 ip community-list standard 1_127_242 permit 65000:1 0:127 0:242 ip community-list standard 1_128_241 permit 65000:1 0:128 0:241 ip community-list standard 1_129_240 permit 65000:1 0:129 0:240 ip community-list standard 1_130_239 permit 65000:1 0:130 0:239 ip community-list standard 1_131_238 permit 65000:1 0:131 0:238 ip community-list standard 1_132_237 permit 65000:1 0:132 0:237 ip community-list standard 1_133_236 permit 65000:1 0:133 0:236 ip community-list standard 1_134_235 permit 65000:1 0:134 0:235 ip community-list standard 1_135_234 permit 65000:1 0:135 0:234 ip community-list standard 1_136_233 permit 65000:1 0:136 0:233 ip community-list standard 1_137_232 permit 65000:1 0:137 0:232 ip community-list standard 1_138_231 permit 65000:1 0:138 0:231 ip community-list standard 1_139_230 permit 65000:1 0:139 0:230 ip community-list standard 1_140_229 permit 65000:1 0:140 0:229 ip community-list standard 1_141_228 permit 65000:1 0:141 0:228 ip community-list standard 1_142_227 permit 65000:1 0:142 0:227 ip community-list standard 1_143_226 permit 65000:1 0:143 0:226 ip community-list standard 1_144_225 permit 65000:1 0:144 0:225 ip community-list standard 1_145_224 permit 65000:1 0:145 0:224 ip community-list standard 1_146_223 permit 65000:1 0:146 0:223 ip community-list standard 1_147_222 permit 65000:1 0:147 0:222 ip community-list standard 1_148_221 permit 65000:1 0:148 0:221 ip community-list standard 1_149_220 permit 65000:1 0:149 0:220 ip community-list standard 1_150_219 permit 65000:1 0:150 0:219 ip community-list standard 1_151_218 permit 65000:1 0:151 0:218 ip community-list standard 1_152_217 permit 65000:1 0:152 0:217 ip community-list standard 1_153_216 permit 65000:1 0:153 0:216 ip community-list standard 1_154_215 permit 65000:1 0:154 0:215 ip community-list standard 1_155_214 permit 65000:1 0:155 0:214 ip community-list standard 1_156_213 permit 65000:1 0:156 0:213 ip community-list standard 1_157_212 permit 65000:1 0:157 0:212 ip community-list standard 1_158_211 permit 65000:1 0:158 0:211 ip community-list standard 1_159_210 permit 65000:1 0:159 0:210 ip community-list standard 1_160_209 permit 65000:1 0:160 0:209 ip community-list standard 1_161_208 permit 65000:1 0:161 0:208 ip community-list standard 1_162_207 permit 65000:1 0:162 0:207 ip community-list standard 1_163_206 permit 65000:1 0:163 0:206 ip community-list standard 1_164_205 permit 65000:1 0:164 0:205 ip community-list standard 1_165_204 permit 65000:1 0:165 0:204 ip community-list standard 1_166_203 permit 65000:1 0:166 0:203 ip community-list standard 1_167_202 permit 65000:1 0:167 0:202 ip community-list standard 1_168_201 permit 65000:1 0:168 0:201 ip community-list standard 1_169_200 permit 65000:1 0:169 0:200 ip community-list standard 1_170_199 permit 65000:1 0:170 0:199 ip community-list standard 1_171_198 permit 65000:1 0:171 0:198 ip community-list standard 1_172_197 permit 65000:1 0:172 0:197 ip community-list standard 1_173_196 permit 65000:1 0:173 0:196 ip community-list standard 1_174_195 permit 65000:1 0:174 0:195 ip community-list standard 1_175_194 permit 65000:1 0:175 0:194 ip community-list standard 1_176_193 permit 65000:1 0:176 0:193 ip community-list standard 1_177_192 permit 65000:1 0:177 0:192 ip community-list standard 1_178_191 permit 65000:1 0:178 0:191 ip community-list standard 1_179_190 permit 65000:1 0:179 0:190 ip community-list standard 1_180_189 permit 65000:1 0:180 0:189 ip community-list standard 1_181_188 permit 65000:1 0:181 0:188 ip community-list standard 1_182_187 permit 65000:1 0:182 0:187 ip community-list standard 1_183_186 permit 65000:1 0:183 0:186 ip community-list standard 1_184_185 permit 65000:1 0:184 0:185 route-map calculator permit 17221 match community 2_3_123 2_9_41 1_113_256 1_114_255 1_115_254 set community 0:369 route-map calculator permit 17222 match community 1_116_253 1_117_252 1_118_251 1_119_250 1_120_249 set community 0:369 route-map calculator permit 17223 match community 1_121_248 1_122_247 1_123_246 1_124_245 1_125_244 set community 0:369 route-map calculator permit 17224 match community 1_126_243 1_127_242 1_128_241 1_129_240 1_130_239 set community 0:369 route-map calculator permit 17225 match community 1_131_238 1_132_237 1_133_236 1_134_235 1_135_234 set community 0:369 route-map calculator permit 17226 match community 1_136_233 1_137_232 1_138_231 1_139_230 1_140_229 set community 0:369 route-map calculator permit 17227 match community 1_141_228 1_142_227 1_143_226 1_144_225 1_145_224 set community 0:369 route-map calculator permit 17228 match community 1_146_223 1_147_222 1_148_221 1_149_220 1_150_219 set community 0:369 route-map calculator permit 17229 match community 1_151_218 1_152_217 1_153_216 1_154_215 1_155_214 set community 0:369 route-map calculator permit 17230 match community 1_156_213 1_157_212 1_158_211 1_159_210 1_160_209 set community 0:369 route-map calculator permit 17231 match community 1_161_208 1_162_207 1_163_206 1_164_205 1_165_204 set community 0:369 route-map calculator permit 17232 match community 1_166_203 1_167_202 1_168_201 1_169_200 1_170_199 set community 0:369 route-map calculator permit 17233 match community 1_171_198 1_172_197 1_173_196 1_174_195 1_175_194 set community 0:369 route-map calculator permit 17234 match community 1_176_193 1_177_192 1_178_191 1_179_190 1_180_189 set community 0:369 route-map calculator permit 17235 match community 1_181_188 1_182_187 1_183_186 1_184_185 set community 0:369 ip community-list standard 2_174_256 permit 65000:2 0:174 0:256 ip community-list standard 2_192_232 permit 65000:2 0:192 0:232 route-map calculator permit 17236 match community 2_174_256 2_192_232 set community 0:44544 ip community-list standard 2_8_149 permit 65000:2 0:8 0:149 route-map calculator permit 17237 match community 2_8_149 set community 0:1192 ip community-list standard 2_93_123 permit 65000:2 0:93 0:123 route-map calculator permit 17238 match community 2_93_123 set community 0:11439 ip community-list standard 2_87_242 permit 65000:2 0:87 0:242 ip community-list standard 2_121_174 permit 65000:2 0:121 0:174 route-map calculator permit 17239 match community 2_87_242 2_121_174 set community 0:21054 ip community-list standard 2_204_234 permit 65000:2 0:204 0:234 ip community-list standard 2_216_221 permit 65000:2 0:216 0:221 route-map calculator permit 17240 match community 2_204_234 2_216_221 set community 0:47736 ip community-list standard 2_168_232 permit 65000:2 0:168 0:232 ip community-list standard 2_174_224 permit 65000:2 0:174 0:224 ip community-list standard 2_192_203 permit 65000:2 0:192 0:203 route-map calculator permit 17241 match community 2_168_232 2_174_224 2_192_203 set community 0:38976 ip community-list standard 2_126_252 permit 65000:2 0:126 0:252 ip community-list standard 2_147_216 permit 65000:2 0:147 0:216 ip community-list standard 2_162_196 permit 65000:2 0:162 0:196 ip community-list standard 2_168_189 permit 65000:2 0:168 0:189 route-map calculator permit 17242 match community 2_126_252 2_147_216 2_162_196 2_168_189 set community 0:31752 ip community-list standard 2_95_107 permit 65000:2 0:95 0:107 route-map calculator permit 17243 match community 2_95_107 set community 0:10165 ip community-list standard 2_183_201 permit 65000:2 0:183 0:201 route-map calculator permit 17244 match community 2_183_201 set community 0:36783 ip community-list standard 2_89_179 permit 65000:2 0:89 0:179 route-map calculator permit 17245 match community 2_89_179 set community 0:15931 ip community-list standard 1_1_28 permit 65000:1 0:1 0:28 ip community-list standard 2_1_29 permit 65000:2 0:1 0:29 ip community-list standard 1_2_27 permit 65000:1 0:2 0:27 ip community-list standard 1_3_26 permit 65000:1 0:3 0:26 ip community-list standard 1_4_25 permit 65000:1 0:4 0:25 ip community-list standard 1_5_24 permit 65000:1 0:5 0:24 ip community-list standard 1_6_23 permit 65000:1 0:6 0:23 ip community-list standard 1_7_22 permit 65000:1 0:7 0:22 ip community-list standard 1_8_21 permit 65000:1 0:8 0:21 ip community-list standard 1_9_20 permit 65000:1 0:9 0:20 ip community-list standard 1_10_19 permit 65000:1 0:10 0:19 ip community-list standard 1_11_18 permit 65000:1 0:11 0:18 ip community-list standard 1_12_17 permit 65000:1 0:12 0:17 ip community-list standard 1_13_16 permit 65000:1 0:13 0:16 ip community-list standard 1_14_15 permit 65000:1 0:14 0:15 ip community-list expanded c29 permit 1 ^65000:4_0:29_0:1$ ip community-list expanded c29 permit 2 ^65000:3_0:30_0:1$ ip community-list expanded c29 permit 3 ^65000:3_0:31_0:2$ ip community-list expanded c29 permit 4 ^65000:3_0:32_0:3$ ip community-list expanded c29 permit 5 ^65000:3_0:33_0:4$ ip community-list expanded c29 permit 6 ^65000:3_0:34_0:5$ ip community-list expanded c29 permit 7 ^65000:3_0:35_0:6$ ip community-list expanded c29 permit 8 ^65000:3_0:36_0:7$ ip community-list expanded c29 permit 9 ^65000:3_0:37_0:8$ ip community-list expanded c29 permit 10 ^65000:3_0:38_0:9$ ip community-list expanded c29 permit 11 ^65000:3_0:39_0:10$ ip community-list expanded c29 permit 12 ^65000:3_0:40_0:11$ ip community-list expanded c29 permit 13 ^65000:3_0:41_0:12$ ip community-list expanded c29 permit 14 ^65000:3_0:42_0:13$ ip community-list expanded c29 permit 15 ^65000:3_0:43_0:14$ ip community-list expanded c29 permit 16 ^65000:3_0:44_0:15$ ip community-list expanded c29 permit 17 ^65000:3_0:45_0:16$ ip community-list expanded c29 permit 18 ^65000:3_0:46_0:17$ ip community-list expanded c29 permit 19 ^65000:3_0:47_0:18$ ip community-list expanded c29 permit 20 ^65000:3_0:48_0:19$ ip community-list expanded c29 permit 21 ^65000:3_0:49_0:20$ ip community-list expanded c29 permit 22 ^65000:3_0:50_0:21$ ip community-list expanded c29 permit 23 ^65000:3_0:51_0:22$ ip community-list expanded c29 permit 24 ^65000:3_0:52_0:23$ ip community-list expanded c29 permit 25 ^65000:3_0:53_0:24$ ip community-list expanded c29 permit 26 ^65000:3_0:54_0:25$ ip community-list expanded c29 permit 27 ^65000:3_0:55_0:26$ ip community-list expanded c29 permit 28 ^65000:3_0:56_0:27$ ip community-list expanded c29 permit 29 ^65000:3_0:57_0:28$ ip community-list expanded c29 permit 30 ^65000:4_0:58_0:2$ ip community-list expanded c29 permit 31 ^65000:3_0:58_0:29$ ip community-list expanded c29 permit 32 ^65000:4_0:59_0:2$ ip community-list expanded c29 permit 33 ^65000:3_0:59_0:30$ ip community-list expanded c29 permit 34 ^65000:3_0:60_0:31$ ip community-list expanded c29 permit 35 ^65000:3_0:61_0:32$ ip community-list expanded c29 permit 36 ^65000:3_0:62_0:33$ ip community-list expanded c29 permit 37 ^65000:3_0:63_0:34$ ip community-list expanded c29 permit 38 ^65000:3_0:64_0:35$ ip community-list expanded c29 permit 39 ^65000:3_0:65_0:36$ ip community-list expanded c29 permit 40 ^65000:3_0:66_0:37$ ip community-list expanded c29 permit 41 ^65000:3_0:67_0:38$ ip community-list expanded c29 permit 42 ^65000:3_0:68_0:39$ ip community-list expanded c29 permit 43 ^65000:3_0:69_0:40$ ip community-list expanded c29 permit 44 ^65000:3_0:70_0:41$ ip community-list expanded c29 permit 45 ^65000:3_0:71_0:42$ ip community-list expanded c29 permit 46 ^65000:3_0:72_0:43$ ip community-list expanded c29 permit 47 ^65000:3_0:73_0:44$ ip community-list expanded c29 permit 48 ^65000:3_0:74_0:45$ ip community-list expanded c29 permit 49 ^65000:3_0:75_0:46$ ip community-list expanded c29 permit 50 ^65000:3_0:76_0:47$ ip community-list expanded c29 permit 51 ^65000:3_0:77_0:48$ ip community-list expanded c29 permit 52 ^65000:3_0:78_0:49$ ip community-list expanded c29 permit 53 ^65000:3_0:79_0:50$ ip community-list expanded c29 permit 54 ^65000:3_0:80_0:51$ ip community-list expanded c29 permit 55 ^65000:3_0:81_0:52$ ip community-list expanded c29 permit 56 ^65000:3_0:82_0:53$ ip community-list expanded c29 permit 57 ^65000:3_0:83_0:54$ ip community-list expanded c29 permit 58 ^65000:3_0:84_0:55$ ip community-list expanded c29 permit 59 ^65000:3_0:85_0:56$ ip community-list expanded c29 permit 60 ^65000:3_0:86_0:57$ ip community-list expanded c29 permit 61 ^65000:4_0:87_0:3$ ip community-list expanded c29 permit 62 ^65000:3_0:87_0:58$ ip community-list expanded c29 permit 63 ^65000:4_0:88_0:3$ ip community-list expanded c29 permit 64 ^65000:3_0:88_0:59$ ip community-list expanded c29 permit 65 ^65000:4_0:89_0:3$ ip community-list expanded c29 permit 66 ^65000:3_0:89_0:60$ ip community-list expanded c29 permit 67 ^65000:3_0:90_0:61$ ip community-list expanded c29 permit 68 ^65000:3_0:91_0:62$ ip community-list expanded c29 permit 69 ^65000:3_0:92_0:63$ ip community-list expanded c29 permit 70 ^65000:3_0:93_0:64$ ip community-list expanded c29 permit 71 ^65000:3_0:94_0:65$ ip community-list expanded c29 permit 72 ^65000:3_0:95_0:66$ ip community-list expanded c29 permit 73 ^65000:3_0:96_0:67$ ip community-list expanded c29 permit 74 ^65000:3_0:97_0:68$ ip community-list expanded c29 permit 75 ^65000:3_0:98_0:69$ ip community-list expanded c29 permit 76 ^65000:3_0:99_0:70$ ip community-list expanded c29 permit 77 ^65000:3_0:100_0:71$ ip community-list expanded c29 permit 78 ^65000:3_0:101_0:72$ ip community-list expanded c29 permit 79 ^65000:3_0:102_0:73$ ip community-list expanded c29 permit 80 ^65000:3_0:103_0:74$ ip community-list expanded c29 permit 81 ^65000:3_0:104_0:75$ ip community-list expanded c29 permit 82 ^65000:3_0:105_0:76$ ip community-list expanded c29 permit 83 ^65000:3_0:106_0:77$ ip community-list expanded c29 permit 84 ^65000:3_0:107_0:78$ ip community-list expanded c29 permit 85 ^65000:3_0:108_0:79$ ip community-list expanded c29 permit 86 ^65000:3_0:109_0:80$ ip community-list expanded c29 permit 87 ^65000:3_0:110_0:81$ ip community-list expanded c29 permit 88 ^65000:3_0:111_0:82$ ip community-list expanded c29 permit 89 ^65000:3_0:112_0:83$ ip community-list expanded c29 permit 90 ^65000:3_0:113_0:84$ ip community-list expanded c29 permit 91 ^65000:3_0:114_0:85$ ip community-list expanded c29 permit 92 ^65000:3_0:115_0:86$ ip community-list expanded c29 permit 93 ^65000:4_0:116_0:4$ ip community-list expanded c29 permit 94 ^65000:3_0:116_0:87$ ip community-list expanded c29 permit 95 ^65000:4_0:117_0:4$ ip community-list expanded c29 permit 96 ^65000:3_0:117_0:88$ ip community-list expanded c29 permit 97 ^65000:4_0:118_0:4$ ip community-list expanded c29 permit 98 ^65000:3_0:118_0:89$ ip community-list expanded c29 permit 99 ^65000:4_0:119_0:4$ ip community-list expanded c29 permit 100 ^65000:3_0:119_0:90$ ip community-list expanded c29 permit 101 ^65000:3_0:120_0:91$ ip community-list expanded c29 permit 102 ^65000:3_0:121_0:92$ ip community-list expanded c29 permit 103 ^65000:3_0:122_0:93$ ip community-list expanded c29 permit 104 ^65000:3_0:123_0:94$ ip community-list expanded c29 permit 105 ^65000:3_0:124_0:95$ ip community-list expanded c29 permit 106 ^65000:3_0:125_0:96$ ip community-list expanded c29 permit 107 ^65000:3_0:126_0:97$ ip community-list expanded c29 permit 108 ^65000:3_0:127_0:98$ ip community-list expanded c29 permit 109 ^65000:3_0:128_0:99$ ip community-list expanded c29 permit 110 ^65000:3_0:129_0:100$ ip community-list expanded c29 permit 111 ^65000:3_0:130_0:101$ ip community-list expanded c29 permit 112 ^65000:3_0:131_0:102$ ip community-list expanded c29 permit 113 ^65000:3_0:132_0:103$ ip community-list expanded c29 permit 114 ^65000:3_0:133_0:104$ ip community-list expanded c29 permit 115 ^65000:3_0:134_0:105$ ip community-list expanded c29 permit 116 ^65000:3_0:135_0:106$ ip community-list expanded c29 permit 117 ^65000:3_0:136_0:107$ ip community-list expanded c29 permit 118 ^65000:3_0:137_0:108$ ip community-list expanded c29 permit 119 ^65000:3_0:138_0:109$ ip community-list expanded c29 permit 120 ^65000:3_0:139_0:110$ ip community-list expanded c29 permit 121 ^65000:3_0:140_0:111$ ip community-list expanded c29 permit 122 ^65000:3_0:141_0:112$ ip community-list expanded c29 permit 123 ^65000:3_0:142_0:113$ ip community-list expanded c29 permit 124 ^65000:3_0:143_0:114$ ip community-list expanded c29 permit 125 ^65000:3_0:144_0:115$ ip community-list expanded c29 permit 126 ^65000:4_0:145_0:5$ ip community-list expanded c29 permit 127 ^65000:3_0:145_0:116$ ip community-list expanded c29 permit 128 ^65000:4_0:146_0:5$ ip community-list expanded c29 permit 129 ^65000:3_0:146_0:117$ ip community-list expanded c29 permit 130 ^65000:4_0:147_0:5$ ip community-list expanded c29 permit 131 ^65000:3_0:147_0:118$ ip community-list expanded c29 permit 132 ^65000:4_0:148_0:5$ ip community-list expanded c29 permit 133 ^65000:3_0:148_0:119$ ip community-list expanded c29 permit 134 ^65000:4_0:149_0:5$ ip community-list expanded c29 permit 135 ^65000:3_0:149_0:120$ ip community-list expanded c29 permit 136 ^65000:3_0:150_0:121$ ip community-list expanded c29 permit 137 ^65000:3_0:151_0:122$ ip community-list expanded c29 permit 138 ^65000:3_0:152_0:123$ ip community-list expanded c29 permit 139 ^65000:3_0:153_0:124$ ip community-list expanded c29 permit 140 ^65000:3_0:154_0:125$ ip community-list expanded c29 permit 141 ^65000:3_0:155_0:126$ ip community-list expanded c29 permit 142 ^65000:3_0:156_0:127$ ip community-list expanded c29 permit 143 ^65000:3_0:157_0:128$ ip community-list expanded c29 permit 144 ^65000:3_0:158_0:129$ ip community-list expanded c29 permit 145 ^65000:3_0:159_0:130$ ip community-list expanded c29 permit 146 ^65000:3_0:160_0:131$ ip community-list expanded c29 permit 147 ^65000:3_0:161_0:132$ ip community-list expanded c29 permit 148 ^65000:3_0:162_0:133$ ip community-list expanded c29 permit 149 ^65000:3_0:163_0:134$ ip community-list expanded c29 permit 150 ^65000:3_0:164_0:135$ ip community-list expanded c29 permit 151 ^65000:3_0:165_0:136$ ip community-list expanded c29 permit 152 ^65000:3_0:166_0:137$ ip community-list expanded c29 permit 153 ^65000:3_0:167_0:138$ ip community-list expanded c29 permit 154 ^65000:3_0:168_0:139$ ip community-list expanded c29 permit 155 ^65000:3_0:169_0:140$ ip community-list expanded c29 permit 156 ^65000:3_0:170_0:141$ ip community-list expanded c29 permit 157 ^65000:3_0:171_0:142$ ip community-list expanded c29 permit 158 ^65000:3_0:172_0:143$ ip community-list expanded c29 permit 159 ^65000:3_0:173_0:144$ ip community-list expanded c29 permit 160 ^65000:4_0:174_0:6$ ip community-list expanded c29 permit 161 ^65000:3_0:174_0:145$ ip community-list expanded c29 permit 162 ^65000:4_0:175_0:6$ ip community-list expanded c29 permit 163 ^65000:3_0:175_0:146$ ip community-list expanded c29 permit 164 ^65000:4_0:176_0:6$ ip community-list expanded c29 permit 165 ^65000:3_0:176_0:147$ ip community-list expanded c29 permit 166 ^65000:4_0:177_0:6$ ip community-list expanded c29 permit 167 ^65000:3_0:177_0:148$ ip community-list expanded c29 permit 168 ^65000:4_0:178_0:6$ ip community-list expanded c29 permit 169 ^65000:3_0:178_0:149$ ip community-list expanded c29 permit 170 ^65000:4_0:179_0:6$ ip community-list expanded c29 permit 171 ^65000:3_0:179_0:150$ ip community-list expanded c29 permit 172 ^65000:3_0:180_0:151$ ip community-list expanded c29 permit 173 ^65000:3_0:181_0:152$ ip community-list expanded c29 permit 174 ^65000:3_0:182_0:153$ ip community-list expanded c29 permit 175 ^65000:3_0:183_0:154$ ip community-list expanded c29 permit 176 ^65000:3_0:184_0:155$ ip community-list expanded c29 permit 177 ^65000:3_0:185_0:156$ ip community-list expanded c29 permit 178 ^65000:3_0:186_0:157$ ip community-list expanded c29 permit 179 ^65000:3_0:187_0:158$ ip community-list expanded c29 permit 180 ^65000:3_0:188_0:159$ ip community-list expanded c29 permit 181 ^65000:3_0:189_0:160$ ip community-list expanded c29 permit 182 ^65000:3_0:190_0:161$ ip community-list expanded c29 permit 183 ^65000:3_0:191_0:162$ ip community-list expanded c29 permit 184 ^65000:3_0:192_0:163$ ip community-list expanded c29 permit 185 ^65000:3_0:193_0:164$ ip community-list expanded c29 permit 186 ^65000:3_0:194_0:165$ ip community-list expanded c29 permit 187 ^65000:3_0:195_0:166$ ip community-list expanded c29 permit 188 ^65000:3_0:196_0:167$ ip community-list expanded c29 permit 189 ^65000:3_0:197_0:168$ ip community-list expanded c29 permit 190 ^65000:3_0:198_0:169$ ip community-list expanded c29 permit 191 ^65000:3_0:199_0:170$ ip community-list expanded c29 permit 192 ^65000:3_0:200_0:171$ ip community-list expanded c29 permit 193 ^65000:3_0:201_0:172$ ip community-list expanded c29 permit 194 ^65000:3_0:202_0:173$ ip community-list expanded c29 permit 195 ^65000:4_0:203_0:7$ ip community-list expanded c29 permit 196 ^65000:3_0:203_0:174$ ip community-list expanded c29 permit 197 ^65000:4_0:204_0:7$ ip community-list expanded c29 permit 198 ^65000:3_0:204_0:175$ ip community-list expanded c29 permit 199 ^65000:4_0:205_0:7$ ip community-list expanded c29 permit 200 ^65000:3_0:205_0:176$ ip community-list expanded c29 permit 201 ^65000:4_0:206_0:7$ ip community-list expanded c29 permit 202 ^65000:3_0:206_0:177$ ip community-list expanded c29 permit 203 ^65000:4_0:207_0:7$ ip community-list expanded c29 permit 204 ^65000:3_0:207_0:178$ ip community-list expanded c29 permit 205 ^65000:4_0:208_0:7$ ip community-list expanded c29 permit 206 ^65000:3_0:208_0:179$ ip community-list expanded c29 permit 207 ^65000:4_0:209_0:7$ ip community-list expanded c29 permit 208 ^65000:3_0:209_0:180$ ip community-list expanded c29 permit 209 ^65000:3_0:210_0:181$ ip community-list expanded c29 permit 210 ^65000:3_0:211_0:182$ ip community-list expanded c29 permit 211 ^65000:3_0:212_0:183$ ip community-list expanded c29 permit 212 ^65000:3_0:213_0:184$ ip community-list expanded c29 permit 213 ^65000:3_0:214_0:185$ ip community-list expanded c29 permit 214 ^65000:3_0:215_0:186$ ip community-list expanded c29 permit 215 ^65000:3_0:216_0:187$ ip community-list expanded c29 permit 216 ^65000:3_0:217_0:188$ ip community-list expanded c29 permit 217 ^65000:3_0:218_0:189$ ip community-list expanded c29 permit 218 ^65000:3_0:219_0:190$ ip community-list expanded c29 permit 219 ^65000:3_0:220_0:191$ ip community-list expanded c29 permit 220 ^65000:3_0:221_0:192$ ip community-list expanded c29 permit 221 ^65000:3_0:222_0:193$ ip community-list expanded c29 permit 222 ^65000:3_0:223_0:194$ ip community-list expanded c29 permit 223 ^65000:3_0:224_0:195$ ip community-list expanded c29 permit 224 ^65000:3_0:225_0:196$ ip community-list expanded c29 permit 225 ^65000:3_0:226_0:197$ ip community-list expanded c29 permit 226 ^65000:3_0:227_0:198$ ip community-list expanded c29 permit 227 ^65000:3_0:228_0:199$ ip community-list expanded c29 permit 228 ^65000:3_0:229_0:200$ ip community-list expanded c29 permit 229 ^65000:3_0:230_0:201$ ip community-list expanded c29 permit 230 ^65000:3_0:231_0:202$ ip community-list expanded c29 permit 231 ^65000:4_0:232_0:8$ ip community-list expanded c29 permit 232 ^65000:3_0:232_0:203$ ip community-list expanded c29 permit 233 ^65000:4_0:233_0:8$ ip community-list expanded c29 permit 234 ^65000:3_0:233_0:204$ ip community-list expanded c29 permit 235 ^65000:4_0:234_0:8$ ip community-list expanded c29 permit 236 ^65000:3_0:234_0:205$ ip community-list expanded c29 permit 237 ^65000:4_0:235_0:8$ ip community-list expanded c29 permit 238 ^65000:3_0:235_0:206$ ip community-list expanded c29 permit 239 ^65000:4_0:236_0:8$ ip community-list expanded c29 permit 240 ^65000:3_0:236_0:207$ ip community-list expanded c29 permit 241 ^65000:4_0:237_0:8$ ip community-list expanded c29 permit 242 ^65000:3_0:237_0:208$ ip community-list expanded c29 permit 243 ^65000:4_0:238_0:8$ ip community-list expanded c29 permit 244 ^65000:3_0:238_0:209$ ip community-list expanded c29 permit 245 ^65000:4_0:239_0:8$ ip community-list expanded c29 permit 246 ^65000:3_0:239_0:210$ ip community-list expanded c29 permit 247 ^65000:3_0:240_0:211$ ip community-list expanded c29 permit 248 ^65000:3_0:241_0:212$ ip community-list expanded c29 permit 249 ^65000:3_0:242_0:213$ ip community-list expanded c29 permit 250 ^65000:3_0:243_0:214$ ip community-list expanded c29 permit 251 ^65000:3_0:244_0:215$ ip community-list expanded c29 permit 252 ^65000:3_0:245_0:216$ ip community-list expanded c29 permit 253 ^65000:3_0:246_0:217$ ip community-list expanded c29 permit 254 ^65000:3_0:247_0:218$ ip community-list expanded c29 permit 255 ^65000:3_0:248_0:219$ ip community-list expanded c29 permit 256 ^65000:3_0:249_0:220$ ip community-list expanded c29 permit 257 ^65000:3_0:250_0:221$ ip community-list expanded c29 permit 258 ^65000:3_0:251_0:222$ ip community-list expanded c29 permit 259 ^65000:3_0:252_0:223$ ip community-list expanded c29 permit 260 ^65000:3_0:253_0:224$ ip community-list expanded c29 permit 261 ^65000:3_0:254_0:225$ ip community-list expanded c29 permit 262 ^65000:3_0:255_0:226$ ip community-list expanded c29 permit 263 ^65000:3_0:256_0:227$ route-map calculator permit 17246 match community 1_1_28 2_1_29 1_2_27 1_3_26 1_4_25 set community 0:29 route-map calculator permit 17247 match community 1_5_24 1_6_23 1_7_22 1_8_21 1_9_20 set community 0:29 route-map calculator permit 17248 match community 1_10_19 1_11_18 1_12_17 1_13_16 1_14_15 set community 0:29 route-map calculator permit 17249 match community c4_29_1 c3_30_1 c3_31_2 c3_32_3 c3_33_4 set community 0:29 route-map calculator permit 17250 match community c3_34_5 c3_35_6 c3_36_7 c3_37_8 c3_38_9 set community 0:29 route-map calculator permit 17251 match community c3_39_10 c3_40_11 c3_41_12 c3_42_13 c3_43_14 set community 0:29 route-map calculator permit 17252 match community c3_44_15 c3_45_16 c3_46_17 c3_47_18 c3_48_19 set community 0:29 route-map calculator permit 17253 match community c3_49_20 c3_50_21 c3_51_22 c3_52_23 c3_53_24 set community 0:29 route-map calculator permit 17254 match community c3_54_25 c3_55_26 c3_56_27 c3_57_28 c4_58_2 set community 0:29 route-map calculator permit 17255 match community c3_58_29 c4_59_2 c3_59_30 c3_60_31 c3_61_32 set community 0:29 route-map calculator permit 17256 match community c3_62_33 c3_63_34 c3_64_35 c3_65_36 c3_66_37 set community 0:29 route-map calculator permit 17257 match community c3_67_38 c3_68_39 c3_69_40 c3_70_41 c3_71_42 set community 0:29 route-map calculator permit 17258 match community c3_72_43 c3_73_44 c3_74_45 c3_75_46 c3_76_47 set community 0:29 route-map calculator permit 17259 match community c3_77_48 c3_78_49 c3_79_50 c3_80_51 c3_81_52 set community 0:29 route-map calculator permit 17260 match community c3_82_53 c3_83_54 c3_84_55 c3_85_56 c3_86_57 set community 0:29 route-map calculator permit 17261 match community c4_87_3 c3_87_58 c4_88_3 c3_88_59 c4_89_3 set community 0:29 route-map calculator permit 17262 match community c3_89_60 c3_90_61 c3_91_62 c3_92_63 c3_93_64 set community 0:29 route-map calculator permit 17263 match community c3_94_65 c3_95_66 c3_96_67 c3_97_68 c3_98_69 set community 0:29 route-map calculator permit 17264 match community c3_99_70 c3_100_71 c3_101_72 c3_102_73 c3_103_74 set community 0:29 route-map calculator permit 17265 match community c3_104_75 c3_105_76 c3_106_77 c3_107_78 c3_108_79 set community 0:29 route-map calculator permit 17266 match community c3_109_80 c3_110_81 c3_111_82 c3_112_83 c3_113_84 set community 0:29 route-map calculator permit 17267 match community c3_114_85 c3_115_86 c4_116_4 c3_116_87 c4_117_4 set community 0:29 route-map calculator permit 17268 match community c3_117_88 c4_118_4 c3_118_89 c4_119_4 c3_119_90 set community 0:29 route-map calculator permit 17269 match community c3_120_91 c3_121_92 c3_122_93 c3_123_94 c3_124_95 set community 0:29 route-map calculator permit 17270 match community c3_125_96 c3_126_97 c3_127_98 c3_128_99 c3_129_100 set community 0:29 route-map calculator permit 17271 match community c3_130_101 c3_131_102 c3_132_103 c3_133_104 c3_134_105 set community 0:29 route-map calculator permit 17272 match community c3_135_106 c3_136_107 c3_137_108 c3_138_109 c3_139_110 set community 0:29 route-map calculator permit 17273 match community c3_140_111 c3_141_112 c3_142_113 c3_143_114 c3_144_115 set community 0:29 route-map calculator permit 17274 match community c4_145_5 c3_145_116 c4_146_5 c3_146_117 c4_147_5 set community 0:29 route-map calculator permit 17275 match community c3_147_118 c4_148_5 c3_148_119 c4_149_5 c3_149_120 set community 0:29 route-map calculator permit 17276 match community c3_150_121 c3_151_122 c3_152_123 c3_153_124 c3_154_125 set community 0:29 route-map calculator permit 17277 match community c3_155_126 c3_156_127 c3_157_128 c3_158_129 c3_159_130 set community 0:29 route-map calculator permit 17278 match community c3_160_131 c3_161_132 c3_162_133 c3_163_134 c3_164_135 set community 0:29 route-map calculator permit 17279 match community c3_165_136 c3_166_137 c3_167_138 c3_168_139 c3_169_140 set community 0:29 route-map calculator permit 17280 match community c3_170_141 c3_171_142 c3_172_143 c3_173_144 c4_174_6 set community 0:29 route-map calculator permit 17281 match community c3_174_145 c4_175_6 c3_175_146 c4_176_6 c3_176_147 set community 0:29 route-map calculator permit 17282 match community c4_177_6 c3_177_148 c4_178_6 c3_178_149 c4_179_6 set community 0:29 route-map calculator permit 17283 match community c3_179_150 c3_180_151 c3_181_152 c3_182_153 c3_183_154 set community 0:29 route-map calculator permit 17284 match community c3_184_155 c3_185_156 c3_186_157 c3_187_158 c3_188_159 set community 0:29 route-map calculator permit 17285 match community c3_189_160 c3_190_161 c3_191_162 c3_192_163 c3_193_164 set community 0:29 route-map calculator permit 17286 match community c3_194_165 c3_195_166 c3_196_167 c3_197_168 c3_198_169 set community 0:29 route-map calculator permit 17287 match community c3_199_170 c3_200_171 c3_201_172 c3_202_173 c4_203_7 set community 0:29 route-map calculator permit 17288 match community c3_203_174 c4_204_7 c3_204_175 c4_205_7 c3_205_176 set community 0:29 route-map calculator permit 17289 match community c4_206_7 c3_206_177 c4_207_7 c3_207_178 c4_208_7 set community 0:29 route-map calculator permit 17290 match community c3_208_179 c4_209_7 c3_209_180 c3_210_181 c3_211_182 set community 0:29 route-map calculator permit 17291 match community c3_212_183 c3_213_184 c3_214_185 c3_215_186 c3_216_187 set community 0:29 route-map calculator permit 17292 match community c3_217_188 c3_218_189 c3_219_190 c3_220_191 c3_221_192 set community 0:29 route-map calculator permit 17293 match community c3_222_193 c3_223_194 c3_224_195 c3_225_196 c3_226_197 set community 0:29 route-map calculator permit 17294 match community c3_227_198 c3_228_199 c3_229_200 c3_230_201 c3_231_202 set community 0:29 route-map calculator permit 17295 match community c4_232_8 c3_232_203 c4_233_8 c3_233_204 c4_234_8 set community 0:29 route-map calculator permit 17296 match community c3_234_205 c4_235_8 c3_235_206 c4_236_8 c3_236_207 set community 0:29 route-map calculator permit 17297 match community c4_237_8 c3_237_208 c4_238_8 c3_238_209 c4_239_8 set community 0:29 route-map calculator permit 17298 match community c3_239_210 c3_240_211 c3_241_212 c3_242_213 c3_243_214 set community 0:29 route-map calculator permit 17299 match community c3_244_215 c3_245_216 c3_246_217 c3_247_218 c3_248_219 set community 0:29 route-map calculator permit 17300 match community c3_249_220 c3_250_221 c3_251_222 c3_252_223 c3_253_224 set community 0:29 route-map calculator permit 17301 match community c3_254_225 c3_255_226 c3_256_227 set community 0:29 ip community-list standard 1_1_133 permit 65000:1 0:1 0:133 ip community-list standard 2_1_134 permit 65000:2 0:1 0:134 ip community-list standard 2_2_67 permit 65000:2 0:2 0:67 ip community-list standard 1_2_132 permit 65000:1 0:2 0:132 ip community-list standard 1_3_131 permit 65000:1 0:3 0:131 ip community-list standard 1_4_130 permit 65000:1 0:4 0:130 ip community-list standard 1_5_129 permit 65000:1 0:5 0:129 ip community-list standard 1_6_128 permit 65000:1 0:6 0:128 ip community-list standard 1_7_127 permit 65000:1 0:7 0:127 ip community-list standard 1_8_126 permit 65000:1 0:8 0:126 ip community-list standard 1_9_125 permit 65000:1 0:9 0:125 ip community-list standard 1_10_124 permit 65000:1 0:10 0:124 ip community-list standard 1_11_123 permit 65000:1 0:11 0:123 ip community-list standard 1_12_122 permit 65000:1 0:12 0:122 ip community-list standard 1_13_121 permit 65000:1 0:13 0:121 ip community-list standard 1_14_120 permit 65000:1 0:14 0:120 ip community-list standard 1_15_119 permit 65000:1 0:15 0:119 ip community-list standard 1_16_118 permit 65000:1 0:16 0:118 ip community-list standard 1_17_117 permit 65000:1 0:17 0:117 ip community-list standard 1_18_116 permit 65000:1 0:18 0:116 ip community-list standard 1_19_115 permit 65000:1 0:19 0:115 ip community-list standard 1_20_114 permit 65000:1 0:20 0:114 ip community-list standard 1_21_113 permit 65000:1 0:21 0:113 ip community-list standard 1_22_112 permit 65000:1 0:22 0:112 ip community-list standard 1_23_111 permit 65000:1 0:23 0:111 ip community-list standard 1_24_110 permit 65000:1 0:24 0:110 ip community-list standard 1_25_109 permit 65000:1 0:25 0:109 ip community-list standard 1_26_108 permit 65000:1 0:26 0:108 ip community-list standard 1_27_107 permit 65000:1 0:27 0:107 ip community-list standard 1_28_106 permit 65000:1 0:28 0:106 ip community-list standard 1_29_105 permit 65000:1 0:29 0:105 ip community-list standard 1_30_104 permit 65000:1 0:30 0:104 ip community-list standard 1_31_103 permit 65000:1 0:31 0:103 ip community-list standard 1_32_102 permit 65000:1 0:32 0:102 ip community-list standard 1_33_101 permit 65000:1 0:33 0:101 ip community-list standard 1_34_100 permit 65000:1 0:34 0:100 ip community-list standard 1_35_99 permit 65000:1 0:35 0:99 ip community-list standard 1_36_98 permit 65000:1 0:36 0:98 ip community-list standard 1_37_97 permit 65000:1 0:37 0:97 ip community-list standard 1_38_96 permit 65000:1 0:38 0:96 ip community-list standard 1_39_95 permit 65000:1 0:39 0:95 ip community-list standard 1_40_94 permit 65000:1 0:40 0:94 ip community-list standard 1_41_93 permit 65000:1 0:41 0:93 ip community-list standard 1_42_92 permit 65000:1 0:42 0:92 ip community-list standard 1_43_91 permit 65000:1 0:43 0:91 ip community-list standard 1_44_90 permit 65000:1 0:44 0:90 ip community-list standard 1_45_89 permit 65000:1 0:45 0:89 ip community-list standard 1_46_88 permit 65000:1 0:46 0:88 ip community-list standard 1_47_87 permit 65000:1 0:47 0:87 ip community-list standard 1_48_86 permit 65000:1 0:48 0:86 ip community-list standard 1_49_85 permit 65000:1 0:49 0:85 ip community-list standard 1_50_84 permit 65000:1 0:50 0:84 ip community-list standard 1_51_83 permit 65000:1 0:51 0:83 ip community-list standard 1_52_82 permit 65000:1 0:52 0:82 ip community-list standard 1_53_81 permit 65000:1 0:53 0:81 ip community-list standard 1_54_80 permit 65000:1 0:54 0:80 ip community-list standard 1_55_79 permit 65000:1 0:55 0:79 ip community-list standard 1_56_78 permit 65000:1 0:56 0:78 ip community-list standard 1_57_77 permit 65000:1 0:57 0:77 ip community-list standard 1_58_76 permit 65000:1 0:58 0:76 ip community-list standard 1_59_75 permit 65000:1 0:59 0:75 ip community-list standard 1_60_74 permit 65000:1 0:60 0:74 ip community-list standard 1_61_73 permit 65000:1 0:61 0:73 ip community-list standard 1_62_72 permit 65000:1 0:62 0:72 ip community-list standard 1_63_71 permit 65000:1 0:63 0:71 ip community-list standard 1_64_70 permit 65000:1 0:64 0:70 ip community-list standard 1_65_69 permit 65000:1 0:65 0:69 ip community-list standard 1_66_68 permit 65000:1 0:66 0:68 ip community-list standard 1_67_67 permit 65000:1 0:67 0:67 ip community-list expanded c134 permit 1 ^65000:4_0:134_0:1$ ip community-list expanded c134 permit 2 ^65000:3_0:135_0:1$ ip community-list expanded c134 permit 3 ^65000:3_0:136_0:2$ ip community-list expanded c134 permit 4 ^65000:3_0:137_0:3$ ip community-list expanded c134 permit 5 ^65000:3_0:138_0:4$ ip community-list expanded c134 permit 6 ^65000:3_0:139_0:5$ ip community-list expanded c134 permit 7 ^65000:3_0:140_0:6$ ip community-list expanded c134 permit 8 ^65000:3_0:141_0:7$ ip community-list expanded c134 permit 9 ^65000:3_0:142_0:8$ ip community-list expanded c134 permit 10 ^65000:3_0:143_0:9$ ip community-list expanded c134 permit 11 ^65000:3_0:144_0:10$ ip community-list expanded c134 permit 12 ^65000:3_0:145_0:11$ ip community-list expanded c134 permit 13 ^65000:3_0:146_0:12$ ip community-list expanded c134 permit 14 ^65000:3_0:147_0:13$ ip community-list expanded c134 permit 15 ^65000:3_0:148_0:14$ ip community-list expanded c134 permit 16 ^65000:3_0:149_0:15$ ip community-list expanded c134 permit 17 ^65000:3_0:150_0:16$ ip community-list expanded c134 permit 18 ^65000:3_0:151_0:17$ ip community-list expanded c134 permit 19 ^65000:3_0:152_0:18$ ip community-list expanded c134 permit 20 ^65000:3_0:153_0:19$ ip community-list expanded c134 permit 21 ^65000:3_0:154_0:20$ ip community-list expanded c134 permit 22 ^65000:3_0:155_0:21$ ip community-list expanded c134 permit 23 ^65000:3_0:156_0:22$ ip community-list expanded c134 permit 24 ^65000:3_0:157_0:23$ ip community-list expanded c134 permit 25 ^65000:3_0:158_0:24$ ip community-list expanded c134 permit 26 ^65000:3_0:159_0:25$ ip community-list expanded c134 permit 27 ^65000:3_0:160_0:26$ ip community-list expanded c134 permit 28 ^65000:3_0:161_0:27$ ip community-list expanded c134 permit 29 ^65000:3_0:162_0:28$ ip community-list expanded c134 permit 30 ^65000:3_0:163_0:29$ ip community-list expanded c134 permit 31 ^65000:3_0:164_0:30$ ip community-list expanded c134 permit 32 ^65000:3_0:165_0:31$ ip community-list expanded c134 permit 33 ^65000:3_0:166_0:32$ ip community-list expanded c134 permit 34 ^65000:3_0:167_0:33$ ip community-list expanded c134 permit 35 ^65000:3_0:168_0:34$ ip community-list expanded c134 permit 36 ^65000:3_0:169_0:35$ ip community-list expanded c134 permit 37 ^65000:3_0:170_0:36$ ip community-list expanded c134 permit 38 ^65000:3_0:171_0:37$ ip community-list expanded c134 permit 39 ^65000:3_0:172_0:38$ ip community-list expanded c134 permit 40 ^65000:3_0:173_0:39$ ip community-list expanded c134 permit 41 ^65000:3_0:174_0:40$ ip community-list expanded c134 permit 42 ^65000:3_0:175_0:41$ ip community-list expanded c134 permit 43 ^65000:3_0:176_0:42$ ip community-list expanded c134 permit 44 ^65000:3_0:177_0:43$ ip community-list expanded c134 permit 45 ^65000:3_0:178_0:44$ ip community-list expanded c134 permit 46 ^65000:3_0:179_0:45$ ip community-list expanded c134 permit 47 ^65000:3_0:180_0:46$ ip community-list expanded c134 permit 48 ^65000:3_0:181_0:47$ ip community-list expanded c134 permit 49 ^65000:3_0:182_0:48$ ip community-list expanded c134 permit 50 ^65000:3_0:183_0:49$ ip community-list expanded c134 permit 51 ^65000:3_0:184_0:50$ ip community-list expanded c134 permit 52 ^65000:3_0:185_0:51$ ip community-list expanded c134 permit 53 ^65000:3_0:186_0:52$ ip community-list expanded c134 permit 54 ^65000:3_0:187_0:53$ ip community-list expanded c134 permit 55 ^65000:3_0:188_0:54$ ip community-list expanded c134 permit 56 ^65000:3_0:189_0:55$ ip community-list expanded c134 permit 57 ^65000:3_0:190_0:56$ ip community-list expanded c134 permit 58 ^65000:3_0:191_0:57$ ip community-list expanded c134 permit 59 ^65000:3_0:192_0:58$ ip community-list expanded c134 permit 60 ^65000:3_0:193_0:59$ ip community-list expanded c134 permit 61 ^65000:3_0:194_0:60$ ip community-list expanded c134 permit 62 ^65000:3_0:195_0:61$ ip community-list expanded c134 permit 63 ^65000:3_0:196_0:62$ ip community-list expanded c134 permit 64 ^65000:3_0:197_0:63$ ip community-list expanded c134 permit 65 ^65000:3_0:198_0:64$ ip community-list expanded c134 permit 66 ^65000:3_0:199_0:65$ ip community-list expanded c134 permit 67 ^65000:3_0:200_0:66$ ip community-list expanded c134 permit 68 ^65000:3_0:201_0:67$ ip community-list expanded c134 permit 69 ^65000:3_0:202_0:68$ ip community-list expanded c134 permit 70 ^65000:3_0:203_0:69$ ip community-list expanded c134 permit 71 ^65000:3_0:204_0:70$ ip community-list expanded c134 permit 72 ^65000:3_0:205_0:71$ ip community-list expanded c134 permit 73 ^65000:3_0:206_0:72$ ip community-list expanded c134 permit 74 ^65000:3_0:207_0:73$ ip community-list expanded c134 permit 75 ^65000:3_0:208_0:74$ ip community-list expanded c134 permit 76 ^65000:3_0:209_0:75$ ip community-list expanded c134 permit 77 ^65000:3_0:210_0:76$ ip community-list expanded c134 permit 78 ^65000:3_0:211_0:77$ ip community-list expanded c134 permit 79 ^65000:3_0:212_0:78$ ip community-list expanded c134 permit 80 ^65000:3_0:213_0:79$ ip community-list expanded c134 permit 81 ^65000:3_0:214_0:80$ ip community-list expanded c134 permit 82 ^65000:3_0:215_0:81$ ip community-list expanded c134 permit 83 ^65000:3_0:216_0:82$ ip community-list expanded c134 permit 84 ^65000:3_0:217_0:83$ ip community-list expanded c134 permit 85 ^65000:3_0:218_0:84$ ip community-list expanded c134 permit 86 ^65000:3_0:219_0:85$ ip community-list expanded c134 permit 87 ^65000:3_0:220_0:86$ ip community-list expanded c134 permit 88 ^65000:3_0:221_0:87$ ip community-list expanded c134 permit 89 ^65000:3_0:222_0:88$ ip community-list expanded c134 permit 90 ^65000:3_0:223_0:89$ ip community-list expanded c134 permit 91 ^65000:3_0:224_0:90$ ip community-list expanded c134 permit 92 ^65000:3_0:225_0:91$ ip community-list expanded c134 permit 93 ^65000:3_0:226_0:92$ ip community-list expanded c134 permit 94 ^65000:3_0:227_0:93$ ip community-list expanded c134 permit 95 ^65000:3_0:228_0:94$ ip community-list expanded c134 permit 96 ^65000:3_0:229_0:95$ ip community-list expanded c134 permit 97 ^65000:3_0:230_0:96$ ip community-list expanded c134 permit 98 ^65000:3_0:231_0:97$ ip community-list expanded c134 permit 99 ^65000:3_0:232_0:98$ ip community-list expanded c134 permit 100 ^65000:3_0:233_0:99$ ip community-list expanded c134 permit 101 ^65000:3_0:234_0:100$ ip community-list expanded c134 permit 102 ^65000:3_0:235_0:101$ ip community-list expanded c134 permit 103 ^65000:3_0:236_0:102$ ip community-list expanded c134 permit 104 ^65000:3_0:237_0:103$ ip community-list expanded c134 permit 105 ^65000:3_0:238_0:104$ ip community-list expanded c134 permit 106 ^65000:3_0:239_0:105$ ip community-list expanded c134 permit 107 ^65000:3_0:240_0:106$ ip community-list expanded c134 permit 108 ^65000:3_0:241_0:107$ ip community-list expanded c134 permit 109 ^65000:3_0:242_0:108$ ip community-list expanded c134 permit 110 ^65000:3_0:243_0:109$ ip community-list expanded c134 permit 111 ^65000:3_0:244_0:110$ ip community-list expanded c134 permit 112 ^65000:3_0:245_0:111$ ip community-list expanded c134 permit 113 ^65000:3_0:246_0:112$ ip community-list expanded c134 permit 114 ^65000:3_0:247_0:113$ ip community-list expanded c134 permit 115 ^65000:3_0:248_0:114$ ip community-list expanded c134 permit 116 ^65000:3_0:249_0:115$ ip community-list expanded c134 permit 117 ^65000:3_0:250_0:116$ ip community-list expanded c134 permit 118 ^65000:3_0:251_0:117$ ip community-list expanded c134 permit 119 ^65000:3_0:252_0:118$ ip community-list expanded c134 permit 120 ^65000:3_0:253_0:119$ ip community-list expanded c134 permit 121 ^65000:3_0:254_0:120$ ip community-list expanded c134 permit 122 ^65000:3_0:255_0:121$ ip community-list expanded c134 permit 123 ^65000:3_0:256_0:122$ route-map calculator permit 17302 match community 1_1_133 2_1_134 2_2_67 1_2_132 1_3_131 set community 0:134 route-map calculator permit 17303 match community 1_4_130 1_5_129 1_6_128 1_7_127 1_8_126 set community 0:134 route-map calculator permit 17304 match community 1_9_125 1_10_124 1_11_123 1_12_122 1_13_121 set community 0:134 route-map calculator permit 17305 match community 1_14_120 1_15_119 1_16_118 1_17_117 1_18_116 set community 0:134 route-map calculator permit 17306 match community 1_19_115 1_20_114 1_21_113 1_22_112 1_23_111 set community 0:134 route-map calculator permit 17307 match community 1_24_110 1_25_109 1_26_108 1_27_107 1_28_106 set community 0:134 route-map calculator permit 17308 match community 1_29_105 1_30_104 1_31_103 1_32_102 1_33_101 set community 0:134 route-map calculator permit 17309 match community 1_34_100 1_35_99 1_36_98 1_37_97 1_38_96 set community 0:134 route-map calculator permit 17310 match community 1_39_95 1_40_94 1_41_93 1_42_92 1_43_91 set community 0:134 route-map calculator permit 17311 match community 1_44_90 1_45_89 1_46_88 1_47_87 1_48_86 set community 0:134 route-map calculator permit 17312 match community 1_49_85 1_50_84 1_51_83 1_52_82 1_53_81 set community 0:134 route-map calculator permit 17313 match community 1_54_80 1_55_79 1_56_78 1_57_77 1_58_76 set community 0:134 route-map calculator permit 17314 match community 1_59_75 1_60_74 1_61_73 1_62_72 1_63_71 set community 0:134 route-map calculator permit 17315 match community 1_64_70 1_65_69 1_66_68 1_67_67 c4_134_1 set community 0:134 route-map calculator permit 17316 match community c3_135_1 c3_136_2 c3_137_3 c3_138_4 c3_139_5 set community 0:134 route-map calculator permit 17317 match community c3_140_6 c3_141_7 c3_142_8 c3_143_9 c3_144_10 set community 0:134 route-map calculator permit 17318 match community c3_145_11 c3_146_12 c3_147_13 c3_148_14 c3_149_15 set community 0:134 route-map calculator permit 17319 match community c3_150_16 c3_151_17 c3_152_18 c3_153_19 c3_154_20 set community 0:134 route-map calculator permit 17320 match community c3_155_21 c3_156_22 c3_157_23 c3_158_24 c3_159_25 set community 0:134 route-map calculator permit 17321 match community c3_160_26 c3_161_27 c3_162_28 c3_163_29 c3_164_30 set community 0:134 route-map calculator permit 17322 match community c3_165_31 c3_166_32 c3_167_33 c3_168_34 c3_169_35 set community 0:134 route-map calculator permit 17323 match community c3_170_36 c3_171_37 c3_172_38 c3_173_39 c3_174_40 set community 0:134 route-map calculator permit 17324 match community c3_175_41 c3_176_42 c3_177_43 c3_178_44 c3_179_45 set community 0:134 route-map calculator permit 17325 match community c3_180_46 c3_181_47 c3_182_48 c3_183_49 c3_184_50 set community 0:134 route-map calculator permit 17326 match community c3_185_51 c3_186_52 c3_187_53 c3_188_54 c3_189_55 set community 0:134 route-map calculator permit 17327 match community c3_190_56 c3_191_57 c3_192_58 c3_193_59 c3_194_60 set community 0:134 route-map calculator permit 17328 match community c3_195_61 c3_196_62 c3_197_63 c3_198_64 c3_199_65 set community 0:134 route-map calculator permit 17329 match community c3_200_66 c3_201_67 c3_202_68 c3_203_69 c3_204_70 set community 0:134 route-map calculator permit 17330 match community c3_205_71 c3_206_72 c3_207_73 c3_208_74 c3_209_75 set community 0:134 route-map calculator permit 17331 match community c3_210_76 c3_211_77 c3_212_78 c3_213_79 c3_214_80 set community 0:134 route-map calculator permit 17332 match community c3_215_81 c3_216_82 c3_217_83 c3_218_84 c3_219_85 set community 0:134 route-map calculator permit 17333 match community c3_220_86 c3_221_87 c3_222_88 c3_223_89 c3_224_90 set community 0:134 route-map calculator permit 17334 match community c3_225_91 c3_226_92 c3_227_93 c3_228_94 c3_229_95 set community 0:134 route-map calculator permit 17335 match community c3_230_96 c3_231_97 c3_232_98 c3_233_99 c3_234_100 set community 0:134 route-map calculator permit 17336 match community c3_235_101 c3_236_102 c3_237_103 c3_238_104 c3_239_105 set community 0:134 route-map calculator permit 17337 match community c3_240_106 c3_241_107 c3_242_108 c3_243_109 c3_244_110 set community 0:134 route-map calculator permit 17338 match community c3_245_111 c3_246_112 c3_247_113 c3_248_114 c3_249_115 set community 0:134 route-map calculator permit 17339 match community c3_250_116 c3_251_117 c3_252_118 c3_253_119 c3_254_120 set community 0:134 route-map calculator permit 17340 match community c3_255_121 c3_256_122 set community 0:134 ip community-list standard 2_117_211 permit 65000:2 0:117 0:211 route-map calculator permit 17341 match community 2_117_211 set community 0:24687 ip community-list standard 2_159_223 permit 65000:2 0:159 0:223 route-map calculator permit 17342 match community 2_159_223 set community 0:35457 ip community-list standard 2_47_241 permit 65000:2 0:47 0:241 route-map calculator permit 17343 match community 2_47_241 set community 0:11327 ip community-list standard 2_142_182 permit 65000:2 0:142 0:182 route-map calculator permit 17344 match community 2_142_182 set community 0:25844 ip community-list standard 2_106_224 permit 65000:2 0:106 0:224 ip community-list standard 2_112_212 permit 65000:2 0:112 0:212 route-map calculator permit 17345 match community 2_106_224 2_112_212 set community 0:23744 ip community-list standard 2_59_202 permit 65000:2 0:59 0:202 ip community-list standard 2_101_118 permit 65000:2 0:101 0:118 route-map calculator permit 17346 match community 2_59_202 2_101_118 set community 0:11918 ip community-list standard 2_47_97 permit 65000:2 0:47 0:97 route-map calculator permit 17347 match community 2_47_97 set community 0:4559 ip community-list standard 2_134_178 permit 65000:2 0:134 0:178 route-map calculator permit 17348 match community 2_134_178 set community 0:23852 ip community-list standard 2_42_147 permit 65000:2 0:42 0:147 ip community-list standard 2_49_126 permit 65000:2 0:49 0:126 ip community-list standard 2_63_98 permit 65000:2 0:63 0:98 route-map calculator permit 17349 match community 2_42_147 2_49_126 2_63_98 set community 0:6174 ip community-list standard 2_9_179 permit 65000:2 0:9 0:179 route-map calculator permit 17350 match community 2_9_179 set community 0:1611 ip community-list standard 2_137_170 permit 65000:2 0:137 0:170 route-map calculator permit 17351 match community 2_137_170 set community 0:23290 ip community-list standard 2_76_188 permit 65000:2 0:76 0:188 ip community-list standard 2_94_152 permit 65000:2 0:94 0:152 route-map calculator permit 17352 match community 2_76_188 2_94_152 set community 0:14288 ip community-list standard 2_89_143 permit 65000:2 0:89 0:143 route-map calculator permit 17353 match community 2_89_143 set community 0:12727 ip community-list standard 2_98_177 permit 65000:2 0:98 0:177 ip community-list standard 2_118_147 permit 65000:2 0:118 0:147 route-map calculator permit 17354 match community 2_98_177 2_118_147 set community 0:17346 ip community-list standard 2_6_220 permit 65000:2 0:6 0:220 ip community-list standard 2_8_165 permit 65000:2 0:8 0:165 ip community-list standard 2_10_132 permit 65000:2 0:10 0:132 ip community-list standard 2_11_120 permit 65000:2 0:11 0:120 ip community-list standard 2_12_110 permit 65000:2 0:12 0:110 ip community-list standard 2_15_88 permit 65000:2 0:15 0:88 ip community-list standard 2_20_66 permit 65000:2 0:20 0:66 ip community-list standard 2_22_60 permit 65000:2 0:22 0:60 ip community-list standard 2_24_55 permit 65000:2 0:24 0:55 ip community-list standard 2_30_44 permit 65000:2 0:30 0:44 ip community-list standard 2_33_40 permit 65000:2 0:33 0:40 route-map calculator permit 17355 match community 2_6_220 2_8_165 2_10_132 2_11_120 2_12_110 set community 0:1320 route-map calculator permit 17356 match community 2_15_88 2_20_66 2_22_60 2_24_55 2_30_44 set community 0:1320 route-map calculator permit 17357 match community 2_33_40 set community 0:1320 ip community-list standard 2_17_246 permit 65000:2 0:17 0:246 ip community-list standard 2_34_123 permit 65000:2 0:34 0:123 ip community-list standard 2_41_102 permit 65000:2 0:41 0:102 ip community-list standard 2_51_82 permit 65000:2 0:51 0:82 route-map calculator permit 17358 match community 2_17_246 2_34_123 2_41_102 2_51_82 set community 0:4182 ip community-list standard 2_47_208 permit 65000:2 0:47 0:208 ip community-list standard 2_52_188 permit 65000:2 0:52 0:188 ip community-list standard 2_94_104 permit 65000:2 0:94 0:104 route-map calculator permit 17359 match community 2_47_208 2_52_188 2_94_104 set community 0:9776 ip community-list standard 2_40_193 permit 65000:2 0:40 0:193 route-map calculator permit 17360 match community 2_40_193 set community 0:7720 ip community-list standard 2_201_203 permit 65000:2 0:201 0:203 route-map calculator permit 17361 match community 2_201_203 set community 0:40803 ip community-list standard 2_218_224 permit 65000:2 0:218 0:224 route-map calculator permit 17362 match community 2_218_224 set community 0:48832 ip community-list standard 2_167_255 permit 65000:2 0:167 0:255 route-map calculator permit 17363 match community 2_167_255 set community 0:42585 ip community-list standard 2_19_175 permit 65000:2 0:19 0:175 ip community-list standard 2_25_133 permit 65000:2 0:25 0:133 ip community-list standard 2_35_95 permit 65000:2 0:35 0:95 route-map calculator permit 17364 match community 2_19_175 2_25_133 2_35_95 set community 0:3325 ip community-list standard 2_219_254 permit 65000:2 0:219 0:254 route-map calculator permit 17365 match community 2_219_254 set community 0:55626 ip community-list standard 2_181_238 permit 65000:2 0:181 0:238 route-map calculator permit 17366 match community 2_181_238 set community 0:43078 ip community-list standard 2_149_158 permit 65000:2 0:149 0:158 route-map calculator permit 17367 match community 2_149_158 set community 0:23542 ip community-list standard 2_17_23 permit 65000:2 0:17 0:23 ip community-list standard 1_135_256 permit 65000:1 0:135 0:256 ip community-list standard 1_136_255 permit 65000:1 0:136 0:255 ip community-list standard 1_137_254 permit 65000:1 0:137 0:254 ip community-list standard 1_138_253 permit 65000:1 0:138 0:253 ip community-list standard 1_139_252 permit 65000:1 0:139 0:252 ip community-list standard 1_140_251 permit 65000:1 0:140 0:251 ip community-list standard 1_141_250 permit 65000:1 0:141 0:250 ip community-list standard 1_142_249 permit 65000:1 0:142 0:249 ip community-list standard 1_143_248 permit 65000:1 0:143 0:248 ip community-list standard 1_144_247 permit 65000:1 0:144 0:247 ip community-list standard 1_145_246 permit 65000:1 0:145 0:246 ip community-list standard 1_146_245 permit 65000:1 0:146 0:245 ip community-list standard 1_147_244 permit 65000:1 0:147 0:244 ip community-list standard 1_148_243 permit 65000:1 0:148 0:243 ip community-list standard 1_149_242 permit 65000:1 0:149 0:242 ip community-list standard 1_150_241 permit 65000:1 0:150 0:241 ip community-list standard 1_151_240 permit 65000:1 0:151 0:240 ip community-list standard 1_152_239 permit 65000:1 0:152 0:239 ip community-list standard 1_153_238 permit 65000:1 0:153 0:238 ip community-list standard 1_154_237 permit 65000:1 0:154 0:237 ip community-list standard 1_155_236 permit 65000:1 0:155 0:236 ip community-list standard 1_156_235 permit 65000:1 0:156 0:235 ip community-list standard 1_157_234 permit 65000:1 0:157 0:234 ip community-list standard 1_158_233 permit 65000:1 0:158 0:233 ip community-list standard 1_159_232 permit 65000:1 0:159 0:232 ip community-list standard 1_160_231 permit 65000:1 0:160 0:231 ip community-list standard 1_161_230 permit 65000:1 0:161 0:230 ip community-list standard 1_162_229 permit 65000:1 0:162 0:229 ip community-list standard 1_163_228 permit 65000:1 0:163 0:228 ip community-list standard 1_164_227 permit 65000:1 0:164 0:227 ip community-list standard 1_165_226 permit 65000:1 0:165 0:226 ip community-list standard 1_166_225 permit 65000:1 0:166 0:225 ip community-list standard 1_167_224 permit 65000:1 0:167 0:224 ip community-list standard 1_168_223 permit 65000:1 0:168 0:223 ip community-list standard 1_169_222 permit 65000:1 0:169 0:222 ip community-list standard 1_170_221 permit 65000:1 0:170 0:221 ip community-list standard 1_171_220 permit 65000:1 0:171 0:220 ip community-list standard 1_172_219 permit 65000:1 0:172 0:219 ip community-list standard 1_173_218 permit 65000:1 0:173 0:218 ip community-list standard 1_174_217 permit 65000:1 0:174 0:217 ip community-list standard 1_175_216 permit 65000:1 0:175 0:216 ip community-list standard 1_176_215 permit 65000:1 0:176 0:215 ip community-list standard 1_177_214 permit 65000:1 0:177 0:214 ip community-list standard 1_178_213 permit 65000:1 0:178 0:213 ip community-list standard 1_179_212 permit 65000:1 0:179 0:212 ip community-list standard 1_180_211 permit 65000:1 0:180 0:211 ip community-list standard 1_181_210 permit 65000:1 0:181 0:210 ip community-list standard 1_182_209 permit 65000:1 0:182 0:209 ip community-list standard 1_183_208 permit 65000:1 0:183 0:208 ip community-list standard 1_184_207 permit 65000:1 0:184 0:207 ip community-list standard 1_185_206 permit 65000:1 0:185 0:206 ip community-list standard 1_186_205 permit 65000:1 0:186 0:205 ip community-list standard 1_187_204 permit 65000:1 0:187 0:204 ip community-list standard 1_188_203 permit 65000:1 0:188 0:203 ip community-list standard 1_189_202 permit 65000:1 0:189 0:202 ip community-list standard 1_190_201 permit 65000:1 0:190 0:201 ip community-list standard 1_191_200 permit 65000:1 0:191 0:200 ip community-list standard 1_192_199 permit 65000:1 0:192 0:199 ip community-list standard 1_193_198 permit 65000:1 0:193 0:198 ip community-list standard 1_194_197 permit 65000:1 0:194 0:197 ip community-list standard 1_195_196 permit 65000:1 0:195 0:196 route-map calculator permit 17368 match community 2_17_23 1_135_256 1_136_255 1_137_254 1_138_253 set community 0:391 route-map calculator permit 17369 match community 1_139_252 1_140_251 1_141_250 1_142_249 1_143_248 set community 0:391 route-map calculator permit 17370 match community 1_144_247 1_145_246 1_146_245 1_147_244 1_148_243 set community 0:391 route-map calculator permit 17371 match community 1_149_242 1_150_241 1_151_240 1_152_239 1_153_238 set community 0:391 route-map calculator permit 17372 match community 1_154_237 1_155_236 1_156_235 1_157_234 1_158_233 set community 0:391 route-map calculator permit 17373 match community 1_159_232 1_160_231 1_161_230 1_162_229 1_163_228 set community 0:391 route-map calculator permit 17374 match community 1_164_227 1_165_226 1_166_225 1_167_224 1_168_223 set community 0:391 route-map calculator permit 17375 match community 1_169_222 1_170_221 1_171_220 1_172_219 1_173_218 set community 0:391 route-map calculator permit 17376 match community 1_174_217 1_175_216 1_176_215 1_177_214 1_178_213 set community 0:391 route-map calculator permit 17377 match community 1_179_212 1_180_211 1_181_210 1_182_209 1_183_208 set community 0:391 route-map calculator permit 17378 match community 1_184_207 1_185_206 1_186_205 1_187_204 1_188_203 set community 0:391 route-map calculator permit 17379 match community 1_189_202 1_190_201 1_191_200 1_192_199 1_193_198 set community 0:391 route-map calculator permit 17380 match community 1_194_197 1_195_196 set community 0:391 ip community-list standard 2_120_240 permit 65000:2 0:120 0:240 ip community-list standard 2_128_225 permit 65000:2 0:128 0:225 ip community-list standard 2_144_200 permit 65000:2 0:144 0:200 ip community-list standard 2_150_192 permit 65000:2 0:150 0:192 ip community-list standard 2_160_180 permit 65000:2 0:160 0:180 route-map calculator permit 17381 match community 2_120_240 2_128_225 2_144_200 2_150_192 2_160_180 set community 0:28800 ip community-list standard 2_240_248 permit 65000:2 0:240 0:248 route-map calculator permit 17382 match community 2_240_248 set community 0:59520 ip community-list standard 2_36_197 permit 65000:2 0:36 0:197 route-map calculator permit 17383 match community 2_36_197 set community 0:7092 ip community-list standard 2_157_228 permit 65000:2 0:157 0:228 route-map calculator permit 17384 match community 2_157_228 set community 0:35796 ip community-list standard 2_183_250 permit 65000:2 0:183 0:250 route-map calculator permit 17385 match community 2_183_250 set community 0:45750 ip community-list standard 2_200_251 permit 65000:2 0:200 0:251 route-map calculator permit 17386 match community 2_200_251 set community 0:50200 ip community-list standard 2_118_213 permit 65000:2 0:118 0:213 ip community-list standard 2_142_177 permit 65000:2 0:142 0:177 route-map calculator permit 17387 match community 2_118_213 2_142_177 set community 0:25134 ip community-list standard 2_167_217 permit 65000:2 0:167 0:217 route-map calculator permit 17388 match community 2_167_217 set community 0:36239 ip community-list standard 2_83_203 permit 65000:2 0:83 0:203 route-map calculator permit 17389 match community 2_83_203 set community 0:16849 ip community-list standard 2_64_211 permit 65000:2 0:64 0:211 route-map calculator permit 17390 match community 2_64_211 set community 0:13504 ip community-list standard 2_223_236 permit 65000:2 0:223 0:236 route-map calculator permit 17391 match community 2_223_236 set community 0:52628 ip community-list standard 2_22_235 permit 65000:2 0:22 0:235 ip community-list standard 2_47_110 permit 65000:2 0:47 0:110 ip community-list standard 2_55_94 permit 65000:2 0:55 0:94 route-map calculator permit 17392 match community 2_22_235 2_47_110 2_55_94 set community 0:5170 ip community-list standard 2_168_244 permit 65000:2 0:168 0:244 ip community-list standard 2_183_224 permit 65000:2 0:183 0:224 route-map calculator permit 17393 match community 2_168_244 2_183_224 set community 0:40992 ip community-list standard 2_107_187 permit 65000:2 0:107 0:187 route-map calculator permit 17394 match community 2_107_187 set community 0:20009 ip community-list standard 1_1_175 permit 65000:1 0:1 0:175 ip community-list standard 2_1_176 permit 65000:2 0:1 0:176 ip community-list standard 2_2_88 permit 65000:2 0:2 0:88 ip community-list standard 1_2_174 permit 65000:1 0:2 0:174 ip community-list standard 1_3_173 permit 65000:1 0:3 0:173 ip community-list standard 2_4_44 permit 65000:2 0:4 0:44 ip community-list standard 1_4_172 permit 65000:1 0:4 0:172 ip community-list standard 1_5_171 permit 65000:1 0:5 0:171 ip community-list standard 1_6_170 permit 65000:1 0:6 0:170 ip community-list standard 1_7_169 permit 65000:1 0:7 0:169 ip community-list standard 2_8_22 permit 65000:2 0:8 0:22 ip community-list standard 1_8_168 permit 65000:1 0:8 0:168 ip community-list standard 1_9_167 permit 65000:1 0:9 0:167 ip community-list standard 1_10_166 permit 65000:1 0:10 0:166 ip community-list standard 2_11_16 permit 65000:2 0:11 0:16 ip community-list standard 1_11_165 permit 65000:1 0:11 0:165 ip community-list standard 1_12_164 permit 65000:1 0:12 0:164 ip community-list standard 1_13_163 permit 65000:1 0:13 0:163 ip community-list standard 1_14_162 permit 65000:1 0:14 0:162 ip community-list standard 1_15_161 permit 65000:1 0:15 0:161 ip community-list standard 1_16_160 permit 65000:1 0:16 0:160 ip community-list standard 1_17_159 permit 65000:1 0:17 0:159 ip community-list standard 1_18_158 permit 65000:1 0:18 0:158 ip community-list standard 1_19_157 permit 65000:1 0:19 0:157 ip community-list standard 1_20_156 permit 65000:1 0:20 0:156 ip community-list standard 1_21_155 permit 65000:1 0:21 0:155 ip community-list standard 1_22_154 permit 65000:1 0:22 0:154 ip community-list standard 1_23_153 permit 65000:1 0:23 0:153 ip community-list standard 1_24_152 permit 65000:1 0:24 0:152 ip community-list standard 1_25_151 permit 65000:1 0:25 0:151 ip community-list standard 1_26_150 permit 65000:1 0:26 0:150 ip community-list standard 1_27_149 permit 65000:1 0:27 0:149 ip community-list standard 1_28_148 permit 65000:1 0:28 0:148 ip community-list standard 1_29_147 permit 65000:1 0:29 0:147 ip community-list standard 1_30_146 permit 65000:1 0:30 0:146 ip community-list standard 1_31_145 permit 65000:1 0:31 0:145 ip community-list standard 1_32_144 permit 65000:1 0:32 0:144 ip community-list standard 1_33_143 permit 65000:1 0:33 0:143 ip community-list standard 1_34_142 permit 65000:1 0:34 0:142 ip community-list standard 1_35_141 permit 65000:1 0:35 0:141 ip community-list standard 1_36_140 permit 65000:1 0:36 0:140 ip community-list standard 1_37_139 permit 65000:1 0:37 0:139 ip community-list standard 1_38_138 permit 65000:1 0:38 0:138 ip community-list standard 1_39_137 permit 65000:1 0:39 0:137 ip community-list standard 1_40_136 permit 65000:1 0:40 0:136 ip community-list standard 1_41_135 permit 65000:1 0:41 0:135 ip community-list standard 1_42_134 permit 65000:1 0:42 0:134 ip community-list standard 1_43_133 permit 65000:1 0:43 0:133 ip community-list standard 1_44_132 permit 65000:1 0:44 0:132 ip community-list standard 1_45_131 permit 65000:1 0:45 0:131 ip community-list standard 1_46_130 permit 65000:1 0:46 0:130 ip community-list standard 1_47_129 permit 65000:1 0:47 0:129 ip community-list standard 1_48_128 permit 65000:1 0:48 0:128 ip community-list standard 1_49_127 permit 65000:1 0:49 0:127 ip community-list standard 1_50_126 permit 65000:1 0:50 0:126 ip community-list standard 1_51_125 permit 65000:1 0:51 0:125 ip community-list standard 1_52_124 permit 65000:1 0:52 0:124 ip community-list standard 1_53_123 permit 65000:1 0:53 0:123 ip community-list standard 1_54_122 permit 65000:1 0:54 0:122 ip community-list standard 1_55_121 permit 65000:1 0:55 0:121 ip community-list standard 1_56_120 permit 65000:1 0:56 0:120 ip community-list standard 1_57_119 permit 65000:1 0:57 0:119 ip community-list standard 1_58_118 permit 65000:1 0:58 0:118 ip community-list standard 1_59_117 permit 65000:1 0:59 0:117 ip community-list standard 1_60_116 permit 65000:1 0:60 0:116 ip community-list standard 1_61_115 permit 65000:1 0:61 0:115 ip community-list standard 1_62_114 permit 65000:1 0:62 0:114 ip community-list standard 1_63_113 permit 65000:1 0:63 0:113 ip community-list standard 1_64_112 permit 65000:1 0:64 0:112 ip community-list standard 1_65_111 permit 65000:1 0:65 0:111 ip community-list standard 1_66_110 permit 65000:1 0:66 0:110 ip community-list standard 1_67_109 permit 65000:1 0:67 0:109 ip community-list standard 1_68_108 permit 65000:1 0:68 0:108 ip community-list standard 1_69_107 permit 65000:1 0:69 0:107 ip community-list standard 1_70_106 permit 65000:1 0:70 0:106 ip community-list standard 1_71_105 permit 65000:1 0:71 0:105 ip community-list standard 1_72_104 permit 65000:1 0:72 0:104 ip community-list standard 1_73_103 permit 65000:1 0:73 0:103 ip community-list standard 1_74_102 permit 65000:1 0:74 0:102 ip community-list standard 1_75_101 permit 65000:1 0:75 0:101 ip community-list standard 1_76_100 permit 65000:1 0:76 0:100 ip community-list standard 1_77_99 permit 65000:1 0:77 0:99 ip community-list standard 1_78_98 permit 65000:1 0:78 0:98 ip community-list standard 1_79_97 permit 65000:1 0:79 0:97 ip community-list standard 1_80_96 permit 65000:1 0:80 0:96 ip community-list standard 1_81_95 permit 65000:1 0:81 0:95 ip community-list standard 1_82_94 permit 65000:1 0:82 0:94 ip community-list standard 1_83_93 permit 65000:1 0:83 0:93 ip community-list standard 1_84_92 permit 65000:1 0:84 0:92 ip community-list standard 1_85_91 permit 65000:1 0:85 0:91 ip community-list standard 1_86_90 permit 65000:1 0:86 0:90 ip community-list standard 1_87_89 permit 65000:1 0:87 0:89 ip community-list standard 1_88_88 permit 65000:1 0:88 0:88 ip community-list expanded c176 permit 1 ^65000:4_0:176_0:1$ ip community-list expanded c176 permit 2 ^65000:3_0:177_0:1$ ip community-list expanded c176 permit 3 ^65000:3_0:178_0:2$ ip community-list expanded c176 permit 4 ^65000:3_0:179_0:3$ ip community-list expanded c176 permit 5 ^65000:3_0:180_0:4$ ip community-list expanded c176 permit 6 ^65000:3_0:181_0:5$ ip community-list expanded c176 permit 7 ^65000:3_0:182_0:6$ ip community-list expanded c176 permit 8 ^65000:3_0:183_0:7$ ip community-list expanded c176 permit 9 ^65000:3_0:184_0:8$ ip community-list expanded c176 permit 10 ^65000:3_0:185_0:9$ ip community-list expanded c176 permit 11 ^65000:3_0:186_0:10$ ip community-list expanded c176 permit 12 ^65000:3_0:187_0:11$ ip community-list expanded c176 permit 13 ^65000:3_0:188_0:12$ ip community-list expanded c176 permit 14 ^65000:3_0:189_0:13$ ip community-list expanded c176 permit 15 ^65000:3_0:190_0:14$ ip community-list expanded c176 permit 16 ^65000:3_0:191_0:15$ ip community-list expanded c176 permit 17 ^65000:3_0:192_0:16$ ip community-list expanded c176 permit 18 ^65000:3_0:193_0:17$ ip community-list expanded c176 permit 19 ^65000:3_0:194_0:18$ ip community-list expanded c176 permit 20 ^65000:3_0:195_0:19$ ip community-list expanded c176 permit 21 ^65000:3_0:196_0:20$ ip community-list expanded c176 permit 22 ^65000:3_0:197_0:21$ ip community-list expanded c176 permit 23 ^65000:3_0:198_0:22$ ip community-list expanded c176 permit 24 ^65000:3_0:199_0:23$ ip community-list expanded c176 permit 25 ^65000:3_0:200_0:24$ ip community-list expanded c176 permit 26 ^65000:3_0:201_0:25$ ip community-list expanded c176 permit 27 ^65000:3_0:202_0:26$ ip community-list expanded c176 permit 28 ^65000:3_0:203_0:27$ ip community-list expanded c176 permit 29 ^65000:3_0:204_0:28$ ip community-list expanded c176 permit 30 ^65000:3_0:205_0:29$ ip community-list expanded c176 permit 31 ^65000:3_0:206_0:30$ ip community-list expanded c176 permit 32 ^65000:3_0:207_0:31$ ip community-list expanded c176 permit 33 ^65000:3_0:208_0:32$ ip community-list expanded c176 permit 34 ^65000:3_0:209_0:33$ ip community-list expanded c176 permit 35 ^65000:3_0:210_0:34$ ip community-list expanded c176 permit 36 ^65000:3_0:211_0:35$ ip community-list expanded c176 permit 37 ^65000:3_0:212_0:36$ ip community-list expanded c176 permit 38 ^65000:3_0:213_0:37$ ip community-list expanded c176 permit 39 ^65000:3_0:214_0:38$ ip community-list expanded c176 permit 40 ^65000:3_0:215_0:39$ ip community-list expanded c176 permit 41 ^65000:3_0:216_0:40$ ip community-list expanded c176 permit 42 ^65000:3_0:217_0:41$ ip community-list expanded c176 permit 43 ^65000:3_0:218_0:42$ ip community-list expanded c176 permit 44 ^65000:3_0:219_0:43$ ip community-list expanded c176 permit 45 ^65000:3_0:220_0:44$ ip community-list expanded c176 permit 46 ^65000:3_0:221_0:45$ ip community-list expanded c176 permit 47 ^65000:3_0:222_0:46$ ip community-list expanded c176 permit 48 ^65000:3_0:223_0:47$ ip community-list expanded c176 permit 49 ^65000:3_0:224_0:48$ ip community-list expanded c176 permit 50 ^65000:3_0:225_0:49$ ip community-list expanded c176 permit 51 ^65000:3_0:226_0:50$ ip community-list expanded c176 permit 52 ^65000:3_0:227_0:51$ ip community-list expanded c176 permit 53 ^65000:3_0:228_0:52$ ip community-list expanded c176 permit 54 ^65000:3_0:229_0:53$ ip community-list expanded c176 permit 55 ^65000:3_0:230_0:54$ ip community-list expanded c176 permit 56 ^65000:3_0:231_0:55$ ip community-list expanded c176 permit 57 ^65000:3_0:232_0:56$ ip community-list expanded c176 permit 58 ^65000:3_0:233_0:57$ ip community-list expanded c176 permit 59 ^65000:3_0:234_0:58$ ip community-list expanded c176 permit 60 ^65000:3_0:235_0:59$ ip community-list expanded c176 permit 61 ^65000:3_0:236_0:60$ ip community-list expanded c176 permit 62 ^65000:3_0:237_0:61$ ip community-list expanded c176 permit 63 ^65000:3_0:238_0:62$ ip community-list expanded c176 permit 64 ^65000:3_0:239_0:63$ ip community-list expanded c176 permit 65 ^65000:3_0:240_0:64$ ip community-list expanded c176 permit 66 ^65000:3_0:241_0:65$ ip community-list expanded c176 permit 67 ^65000:3_0:242_0:66$ ip community-list expanded c176 permit 68 ^65000:3_0:243_0:67$ ip community-list expanded c176 permit 69 ^65000:3_0:244_0:68$ ip community-list expanded c176 permit 70 ^65000:3_0:245_0:69$ ip community-list expanded c176 permit 71 ^65000:3_0:246_0:70$ ip community-list expanded c176 permit 72 ^65000:3_0:247_0:71$ ip community-list expanded c176 permit 73 ^65000:3_0:248_0:72$ ip community-list expanded c176 permit 74 ^65000:3_0:249_0:73$ ip community-list expanded c176 permit 75 ^65000:3_0:250_0:74$ ip community-list expanded c176 permit 76 ^65000:3_0:251_0:75$ ip community-list expanded c176 permit 77 ^65000:3_0:252_0:76$ ip community-list expanded c176 permit 78 ^65000:3_0:253_0:77$ ip community-list expanded c176 permit 79 ^65000:3_0:254_0:78$ ip community-list expanded c176 permit 80 ^65000:3_0:255_0:79$ ip community-list expanded c176 permit 81 ^65000:3_0:256_0:80$ route-map calculator permit 17395 match community 1_1_175 2_1_176 2_2_88 1_2_174 1_3_173 set community 0:176 route-map calculator permit 17396 match community 2_4_44 1_4_172 1_5_171 1_6_170 1_7_169 set community 0:176 route-map calculator permit 17397 match community 2_8_22 1_8_168 1_9_167 1_10_166 2_11_16 set community 0:176 route-map calculator permit 17398 match community 1_11_165 1_12_164 1_13_163 1_14_162 1_15_161 set community 0:176 route-map calculator permit 17399 match community 1_16_160 1_17_159 1_18_158 1_19_157 1_20_156 set community 0:176 route-map calculator permit 17400 match community 1_21_155 1_22_154 1_23_153 1_24_152 1_25_151 set community 0:176 route-map calculator permit 17401 match community 1_26_150 1_27_149 1_28_148 1_29_147 1_30_146 set community 0:176 route-map calculator permit 17402 match community 1_31_145 1_32_144 1_33_143 1_34_142 1_35_141 set community 0:176 route-map calculator permit 17403 match community 1_36_140 1_37_139 1_38_138 1_39_137 1_40_136 set community 0:176 route-map calculator permit 17404 match community 1_41_135 1_42_134 1_43_133 1_44_132 1_45_131 set community 0:176 route-map calculator permit 17405 match community 1_46_130 1_47_129 1_48_128 1_49_127 1_50_126 set community 0:176 route-map calculator permit 17406 match community 1_51_125 1_52_124 1_53_123 1_54_122 1_55_121 set community 0:176 route-map calculator permit 17407 match community 1_56_120 1_57_119 1_58_118 1_59_117 1_60_116 set community 0:176 route-map calculator permit 17408 match community 1_61_115 1_62_114 1_63_113 1_64_112 1_65_111 set community 0:176 route-map calculator permit 17409 match community 1_66_110 1_67_109 1_68_108 1_69_107 1_70_106 set community 0:176 route-map calculator permit 17410 match community 1_71_105 1_72_104 1_73_103 1_74_102 1_75_101 set community 0:176 route-map calculator permit 17411 match community 1_76_100 1_77_99 1_78_98 1_79_97 1_80_96 set community 0:176 route-map calculator permit 17412 match community 1_81_95 1_82_94 1_83_93 1_84_92 1_85_91 set community 0:176 route-map calculator permit 17413 match community 1_86_90 1_87_89 1_88_88 c4_176_1 c3_177_1 set community 0:176 route-map calculator permit 17414 match community c3_178_2 c3_179_3 c3_180_4 c3_181_5 c3_182_6 set community 0:176 route-map calculator permit 17415 match community c3_183_7 c3_184_8 c3_185_9 c3_186_10 c3_187_11 set community 0:176 route-map calculator permit 17416 match community c3_188_12 c3_189_13 c3_190_14 c3_191_15 c3_192_16 set community 0:176 route-map calculator permit 17417 match community c3_193_17 c3_194_18 c3_195_19 c3_196_20 c3_197_21 set community 0:176 route-map calculator permit 17418 match community c3_198_22 c3_199_23 c3_200_24 c3_201_25 c3_202_26 set community 0:176 route-map calculator permit 17419 match community c3_203_27 c3_204_28 c3_205_29 c3_206_30 c3_207_31 set community 0:176 route-map calculator permit 17420 match community c3_208_32 c3_209_33 c3_210_34 c3_211_35 c3_212_36 set community 0:176 route-map calculator permit 17421 match community c3_213_37 c3_214_38 c3_215_39 c3_216_40 c3_217_41 set community 0:176 route-map calculator permit 17422 match community c3_218_42 c3_219_43 c3_220_44 c3_221_45 c3_222_46 set community 0:176 route-map calculator permit 17423 match community c3_223_47 c3_224_48 c3_225_49 c3_226_50 c3_227_51 set community 0:176 route-map calculator permit 17424 match community c3_228_52 c3_229_53 c3_230_54 c3_231_55 c3_232_56 set community 0:176 route-map calculator permit 17425 match community c3_233_57 c3_234_58 c3_235_59 c3_236_60 c3_237_61 set community 0:176 route-map calculator permit 17426 match community c3_238_62 c3_239_63 c3_240_64 c3_241_65 c3_242_66 set community 0:176 route-map calculator permit 17427 match community c3_243_67 c3_244_68 c3_245_69 c3_246_70 c3_247_71 set community 0:176 route-map calculator permit 17428 match community c3_248_72 c3_249_73 c3_250_74 c3_251_75 c3_252_76 set community 0:176 route-map calculator permit 17429 match community c3_253_77 c3_254_78 c3_255_79 c3_256_80 set community 0:176 ip community-list standard 2_147_249 permit 65000:2 0:147 0:249 route-map calculator permit 17430 match community 2_147_249 set community 0:36603 ip community-list standard 1_1_132 permit 65000:1 0:1 0:132 ip community-list standard 2_1_133 permit 65000:2 0:1 0:133 ip community-list standard 1_2_131 permit 65000:1 0:2 0:131 ip community-list standard 1_3_130 permit 65000:1 0:3 0:130 ip community-list standard 1_4_129 permit 65000:1 0:4 0:129 ip community-list standard 1_5_128 permit 65000:1 0:5 0:128 ip community-list standard 1_6_127 permit 65000:1 0:6 0:127 ip community-list standard 2_7_19 permit 65000:2 0:7 0:19 ip community-list standard 1_7_126 permit 65000:1 0:7 0:126 ip community-list standard 1_8_125 permit 65000:1 0:8 0:125 ip community-list standard 1_9_124 permit 65000:1 0:9 0:124 ip community-list standard 1_10_123 permit 65000:1 0:10 0:123 ip community-list standard 1_11_122 permit 65000:1 0:11 0:122 ip community-list standard 1_12_121 permit 65000:1 0:12 0:121 ip community-list standard 1_13_120 permit 65000:1 0:13 0:120 ip community-list standard 1_14_119 permit 65000:1 0:14 0:119 ip community-list standard 1_15_118 permit 65000:1 0:15 0:118 ip community-list standard 1_16_117 permit 65000:1 0:16 0:117 ip community-list standard 1_17_116 permit 65000:1 0:17 0:116 ip community-list standard 1_18_115 permit 65000:1 0:18 0:115 ip community-list standard 1_19_114 permit 65000:1 0:19 0:114 ip community-list standard 1_20_113 permit 65000:1 0:20 0:113 ip community-list standard 1_21_112 permit 65000:1 0:21 0:112 ip community-list standard 1_22_111 permit 65000:1 0:22 0:111 ip community-list standard 1_23_110 permit 65000:1 0:23 0:110 ip community-list standard 1_24_109 permit 65000:1 0:24 0:109 ip community-list standard 1_25_108 permit 65000:1 0:25 0:108 ip community-list standard 1_26_107 permit 65000:1 0:26 0:107 ip community-list standard 1_27_106 permit 65000:1 0:27 0:106 ip community-list standard 1_28_105 permit 65000:1 0:28 0:105 ip community-list standard 1_29_104 permit 65000:1 0:29 0:104 ip community-list standard 1_30_103 permit 65000:1 0:30 0:103 ip community-list standard 1_31_102 permit 65000:1 0:31 0:102 ip community-list standard 1_32_101 permit 65000:1 0:32 0:101 ip community-list standard 1_33_100 permit 65000:1 0:33 0:100 ip community-list standard 1_34_99 permit 65000:1 0:34 0:99 ip community-list standard 1_35_98 permit 65000:1 0:35 0:98 ip community-list standard 1_36_97 permit 65000:1 0:36 0:97 ip community-list standard 1_37_96 permit 65000:1 0:37 0:96 ip community-list standard 1_38_95 permit 65000:1 0:38 0:95 ip community-list standard 1_39_94 permit 65000:1 0:39 0:94 ip community-list standard 1_40_93 permit 65000:1 0:40 0:93 ip community-list standard 1_41_92 permit 65000:1 0:41 0:92 ip community-list standard 1_42_91 permit 65000:1 0:42 0:91 ip community-list standard 1_43_90 permit 65000:1 0:43 0:90 ip community-list standard 1_44_89 permit 65000:1 0:44 0:89 ip community-list standard 1_45_88 permit 65000:1 0:45 0:88 ip community-list standard 1_46_87 permit 65000:1 0:46 0:87 ip community-list standard 1_47_86 permit 65000:1 0:47 0:86 ip community-list standard 1_48_85 permit 65000:1 0:48 0:85 ip community-list standard 1_49_84 permit 65000:1 0:49 0:84 ip community-list standard 1_50_83 permit 65000:1 0:50 0:83 ip community-list standard 1_51_82 permit 65000:1 0:51 0:82 ip community-list standard 1_52_81 permit 65000:1 0:52 0:81 ip community-list standard 1_53_80 permit 65000:1 0:53 0:80 ip community-list standard 1_54_79 permit 65000:1 0:54 0:79 ip community-list standard 1_55_78 permit 65000:1 0:55 0:78 ip community-list standard 1_56_77 permit 65000:1 0:56 0:77 ip community-list standard 1_57_76 permit 65000:1 0:57 0:76 ip community-list standard 1_58_75 permit 65000:1 0:58 0:75 ip community-list standard 1_59_74 permit 65000:1 0:59 0:74 ip community-list standard 1_60_73 permit 65000:1 0:60 0:73 ip community-list standard 1_61_72 permit 65000:1 0:61 0:72 ip community-list standard 1_62_71 permit 65000:1 0:62 0:71 ip community-list standard 1_63_70 permit 65000:1 0:63 0:70 ip community-list standard 1_64_69 permit 65000:1 0:64 0:69 ip community-list standard 1_65_68 permit 65000:1 0:65 0:68 ip community-list standard 1_66_67 permit 65000:1 0:66 0:67 ip community-list expanded c133 permit 1 ^65000:4_0:133_0:1$ ip community-list expanded c133 permit 2 ^65000:3_0:134_0:1$ ip community-list expanded c133 permit 3 ^65000:3_0:135_0:2$ ip community-list expanded c133 permit 4 ^65000:3_0:136_0:3$ ip community-list expanded c133 permit 5 ^65000:3_0:137_0:4$ ip community-list expanded c133 permit 6 ^65000:3_0:138_0:5$ ip community-list expanded c133 permit 7 ^65000:3_0:139_0:6$ ip community-list expanded c133 permit 8 ^65000:3_0:140_0:7$ ip community-list expanded c133 permit 9 ^65000:3_0:141_0:8$ ip community-list expanded c133 permit 10 ^65000:3_0:142_0:9$ ip community-list expanded c133 permit 11 ^65000:3_0:143_0:10$ ip community-list expanded c133 permit 12 ^65000:3_0:144_0:11$ ip community-list expanded c133 permit 13 ^65000:3_0:145_0:12$ ip community-list expanded c133 permit 14 ^65000:3_0:146_0:13$ ip community-list expanded c133 permit 15 ^65000:3_0:147_0:14$ ip community-list expanded c133 permit 16 ^65000:3_0:148_0:15$ ip community-list expanded c133 permit 17 ^65000:3_0:149_0:16$ ip community-list expanded c133 permit 18 ^65000:3_0:150_0:17$ ip community-list expanded c133 permit 19 ^65000:3_0:151_0:18$ ip community-list expanded c133 permit 20 ^65000:3_0:152_0:19$ ip community-list expanded c133 permit 21 ^65000:3_0:153_0:20$ ip community-list expanded c133 permit 22 ^65000:3_0:154_0:21$ ip community-list expanded c133 permit 23 ^65000:3_0:155_0:22$ ip community-list expanded c133 permit 24 ^65000:3_0:156_0:23$ ip community-list expanded c133 permit 25 ^65000:3_0:157_0:24$ ip community-list expanded c133 permit 26 ^65000:3_0:158_0:25$ ip community-list expanded c133 permit 27 ^65000:3_0:159_0:26$ ip community-list expanded c133 permit 28 ^65000:3_0:160_0:27$ ip community-list expanded c133 permit 29 ^65000:3_0:161_0:28$ ip community-list expanded c133 permit 30 ^65000:3_0:162_0:29$ ip community-list expanded c133 permit 31 ^65000:3_0:163_0:30$ ip community-list expanded c133 permit 32 ^65000:3_0:164_0:31$ ip community-list expanded c133 permit 33 ^65000:3_0:165_0:32$ ip community-list expanded c133 permit 34 ^65000:3_0:166_0:33$ ip community-list expanded c133 permit 35 ^65000:3_0:167_0:34$ ip community-list expanded c133 permit 36 ^65000:3_0:168_0:35$ ip community-list expanded c133 permit 37 ^65000:3_0:169_0:36$ ip community-list expanded c133 permit 38 ^65000:3_0:170_0:37$ ip community-list expanded c133 permit 39 ^65000:3_0:171_0:38$ ip community-list expanded c133 permit 40 ^65000:3_0:172_0:39$ ip community-list expanded c133 permit 41 ^65000:3_0:173_0:40$ ip community-list expanded c133 permit 42 ^65000:3_0:174_0:41$ ip community-list expanded c133 permit 43 ^65000:3_0:175_0:42$ ip community-list expanded c133 permit 44 ^65000:3_0:176_0:43$ ip community-list expanded c133 permit 45 ^65000:3_0:177_0:44$ ip community-list expanded c133 permit 46 ^65000:3_0:178_0:45$ ip community-list expanded c133 permit 47 ^65000:3_0:179_0:46$ ip community-list expanded c133 permit 48 ^65000:3_0:180_0:47$ ip community-list expanded c133 permit 49 ^65000:3_0:181_0:48$ ip community-list expanded c133 permit 50 ^65000:3_0:182_0:49$ ip community-list expanded c133 permit 51 ^65000:3_0:183_0:50$ ip community-list expanded c133 permit 52 ^65000:3_0:184_0:51$ ip community-list expanded c133 permit 53 ^65000:3_0:185_0:52$ ip community-list expanded c133 permit 54 ^65000:3_0:186_0:53$ ip community-list expanded c133 permit 55 ^65000:3_0:187_0:54$ ip community-list expanded c133 permit 56 ^65000:3_0:188_0:55$ ip community-list expanded c133 permit 57 ^65000:3_0:189_0:56$ ip community-list expanded c133 permit 58 ^65000:3_0:190_0:57$ ip community-list expanded c133 permit 59 ^65000:3_0:191_0:58$ ip community-list expanded c133 permit 60 ^65000:3_0:192_0:59$ ip community-list expanded c133 permit 61 ^65000:3_0:193_0:60$ ip community-list expanded c133 permit 62 ^65000:3_0:194_0:61$ ip community-list expanded c133 permit 63 ^65000:3_0:195_0:62$ ip community-list expanded c133 permit 64 ^65000:3_0:196_0:63$ ip community-list expanded c133 permit 65 ^65000:3_0:197_0:64$ ip community-list expanded c133 permit 66 ^65000:3_0:198_0:65$ ip community-list expanded c133 permit 67 ^65000:3_0:199_0:66$ ip community-list expanded c133 permit 68 ^65000:3_0:200_0:67$ ip community-list expanded c133 permit 69 ^65000:3_0:201_0:68$ ip community-list expanded c133 permit 70 ^65000:3_0:202_0:69$ ip community-list expanded c133 permit 71 ^65000:3_0:203_0:70$ ip community-list expanded c133 permit 72 ^65000:3_0:204_0:71$ ip community-list expanded c133 permit 73 ^65000:3_0:205_0:72$ ip community-list expanded c133 permit 74 ^65000:3_0:206_0:73$ ip community-list expanded c133 permit 75 ^65000:3_0:207_0:74$ ip community-list expanded c133 permit 76 ^65000:3_0:208_0:75$ ip community-list expanded c133 permit 77 ^65000:3_0:209_0:76$ ip community-list expanded c133 permit 78 ^65000:3_0:210_0:77$ ip community-list expanded c133 permit 79 ^65000:3_0:211_0:78$ ip community-list expanded c133 permit 80 ^65000:3_0:212_0:79$ ip community-list expanded c133 permit 81 ^65000:3_0:213_0:80$ ip community-list expanded c133 permit 82 ^65000:3_0:214_0:81$ ip community-list expanded c133 permit 83 ^65000:3_0:215_0:82$ ip community-list expanded c133 permit 84 ^65000:3_0:216_0:83$ ip community-list expanded c133 permit 85 ^65000:3_0:217_0:84$ ip community-list expanded c133 permit 86 ^65000:3_0:218_0:85$ ip community-list expanded c133 permit 87 ^65000:3_0:219_0:86$ ip community-list expanded c133 permit 88 ^65000:3_0:220_0:87$ ip community-list expanded c133 permit 89 ^65000:3_0:221_0:88$ ip community-list expanded c133 permit 90 ^65000:3_0:222_0:89$ ip community-list expanded c133 permit 91 ^65000:3_0:223_0:90$ ip community-list expanded c133 permit 92 ^65000:3_0:224_0:91$ ip community-list expanded c133 permit 93 ^65000:3_0:225_0:92$ ip community-list expanded c133 permit 94 ^65000:3_0:226_0:93$ ip community-list expanded c133 permit 95 ^65000:3_0:227_0:94$ ip community-list expanded c133 permit 96 ^65000:3_0:228_0:95$ ip community-list expanded c133 permit 97 ^65000:3_0:229_0:96$ ip community-list expanded c133 permit 98 ^65000:3_0:230_0:97$ ip community-list expanded c133 permit 99 ^65000:3_0:231_0:98$ ip community-list expanded c133 permit 100 ^65000:3_0:232_0:99$ ip community-list expanded c133 permit 101 ^65000:3_0:233_0:100$ ip community-list expanded c133 permit 102 ^65000:3_0:234_0:101$ ip community-list expanded c133 permit 103 ^65000:3_0:235_0:102$ ip community-list expanded c133 permit 104 ^65000:3_0:236_0:103$ ip community-list expanded c133 permit 105 ^65000:3_0:237_0:104$ ip community-list expanded c133 permit 106 ^65000:3_0:238_0:105$ ip community-list expanded c133 permit 107 ^65000:3_0:239_0:106$ ip community-list expanded c133 permit 108 ^65000:3_0:240_0:107$ ip community-list expanded c133 permit 109 ^65000:3_0:241_0:108$ ip community-list expanded c133 permit 110 ^65000:3_0:242_0:109$ ip community-list expanded c133 permit 111 ^65000:3_0:243_0:110$ ip community-list expanded c133 permit 112 ^65000:3_0:244_0:111$ ip community-list expanded c133 permit 113 ^65000:3_0:245_0:112$ ip community-list expanded c133 permit 114 ^65000:3_0:246_0:113$ ip community-list expanded c133 permit 115 ^65000:3_0:247_0:114$ ip community-list expanded c133 permit 116 ^65000:3_0:248_0:115$ ip community-list expanded c133 permit 117 ^65000:3_0:249_0:116$ ip community-list expanded c133 permit 118 ^65000:3_0:250_0:117$ ip community-list expanded c133 permit 119 ^65000:3_0:251_0:118$ ip community-list expanded c133 permit 120 ^65000:3_0:252_0:119$ ip community-list expanded c133 permit 121 ^65000:3_0:253_0:120$ ip community-list expanded c133 permit 122 ^65000:3_0:254_0:121$ ip community-list expanded c133 permit 123 ^65000:3_0:255_0:122$ ip community-list expanded c133 permit 124 ^65000:3_0:256_0:123$ route-map calculator permit 17431 match community 1_1_132 2_1_133 1_2_131 1_3_130 1_4_129 set community 0:133 route-map calculator permit 17432 match community 1_5_128 1_6_127 2_7_19 1_7_126 1_8_125 set community 0:133 route-map calculator permit 17433 match community 1_9_124 1_10_123 1_11_122 1_12_121 1_13_120 set community 0:133 route-map calculator permit 17434 match community 1_14_119 1_15_118 1_16_117 1_17_116 1_18_115 set community 0:133 route-map calculator permit 17435 match community 1_19_114 1_20_113 1_21_112 1_22_111 1_23_110 set community 0:133 route-map calculator permit 17436 match community 1_24_109 1_25_108 1_26_107 1_27_106 1_28_105 set community 0:133 route-map calculator permit 17437 match community 1_29_104 1_30_103 1_31_102 1_32_101 1_33_100 set community 0:133 route-map calculator permit 17438 match community 1_34_99 1_35_98 1_36_97 1_37_96 1_38_95 set community 0:133 route-map calculator permit 17439 match community 1_39_94 1_40_93 1_41_92 1_42_91 1_43_90 set community 0:133 route-map calculator permit 17440 match community 1_44_89 1_45_88 1_46_87 1_47_86 1_48_85 set community 0:133 route-map calculator permit 17441 match community 1_49_84 1_50_83 1_51_82 1_52_81 1_53_80 set community 0:133 route-map calculator permit 17442 match community 1_54_79 1_55_78 1_56_77 1_57_76 1_58_75 set community 0:133 route-map calculator permit 17443 match community 1_59_74 1_60_73 1_61_72 1_62_71 1_63_70 set community 0:133 route-map calculator permit 17444 match community 1_64_69 1_65_68 1_66_67 c4_133_1 c3_134_1 set community 0:133 route-map calculator permit 17445 match community c3_135_2 c3_136_3 c3_137_4 c3_138_5 c3_139_6 set community 0:133 route-map calculator permit 17446 match community c3_140_7 c3_141_8 c3_142_9 c3_143_10 c3_144_11 set community 0:133 route-map calculator permit 17447 match community c3_145_12 c3_146_13 c3_147_14 c3_148_15 c3_149_16 set community 0:133 route-map calculator permit 17448 match community c3_150_17 c3_151_18 c3_152_19 c3_153_20 c3_154_21 set community 0:133 route-map calculator permit 17449 match community c3_155_22 c3_156_23 c3_157_24 c3_158_25 c3_159_26 set community 0:133 route-map calculator permit 17450 match community c3_160_27 c3_161_28 c3_162_29 c3_163_30 c3_164_31 set community 0:133 route-map calculator permit 17451 match community c3_165_32 c3_166_33 c3_167_34 c3_168_35 c3_169_36 set community 0:133 route-map calculator permit 17452 match community c3_170_37 c3_171_38 c3_172_39 c3_173_40 c3_174_41 set community 0:133 route-map calculator permit 17453 match community c3_175_42 c3_176_43 c3_177_44 c3_178_45 c3_179_46 set community 0:133 route-map calculator permit 17454 match community c3_180_47 c3_181_48 c3_182_49 c3_183_50 c3_184_51 set community 0:133 route-map calculator permit 17455 match community c3_185_52 c3_186_53 c3_187_54 c3_188_55 c3_189_56 set community 0:133 route-map calculator permit 17456 match community c3_190_57 c3_191_58 c3_192_59 c3_193_60 c3_194_61 set community 0:133 route-map calculator permit 17457 match community c3_195_62 c3_196_63 c3_197_64 c3_198_65 c3_199_66 set community 0:133 route-map calculator permit 17458 match community c3_200_67 c3_201_68 c3_202_69 c3_203_70 c3_204_71 set community 0:133 route-map calculator permit 17459 match community c3_205_72 c3_206_73 c3_207_74 c3_208_75 c3_209_76 set community 0:133 route-map calculator permit 17460 match community c3_210_77 c3_211_78 c3_212_79 c3_213_80 c3_214_81 set community 0:133 route-map calculator permit 17461 match community c3_215_82 c3_216_83 c3_217_84 c3_218_85 c3_219_86 set community 0:133 route-map calculator permit 17462 match community c3_220_87 c3_221_88 c3_222_89 c3_223_90 c3_224_91 set community 0:133 route-map calculator permit 17463 match community c3_225_92 c3_226_93 c3_227_94 c3_228_95 c3_229_96 set community 0:133 route-map calculator permit 17464 match community c3_230_97 c3_231_98 c3_232_99 c3_233_100 c3_234_101 set community 0:133 route-map calculator permit 17465 match community c3_235_102 c3_236_103 c3_237_104 c3_238_105 c3_239_106 set community 0:133 route-map calculator permit 17466 match community c3_240_107 c3_241_108 c3_242_109 c3_243_110 c3_244_111 set community 0:133 route-map calculator permit 17467 match community c3_245_112 c3_246_113 c3_247_114 c3_248_115 c3_249_116 set community 0:133 route-map calculator permit 17468 match community c3_250_117 c3_251_118 c3_252_119 c3_253_120 c3_254_121 set community 0:133 route-map calculator permit 17469 match community c3_255_122 c3_256_123 set community 0:133 ip community-list standard 1_55_256 permit 65000:1 0:55 0:256 ip community-list standard 1_56_255 permit 65000:1 0:56 0:255 ip community-list standard 1_57_254 permit 65000:1 0:57 0:254 ip community-list standard 1_58_253 permit 65000:1 0:58 0:253 ip community-list standard 1_59_252 permit 65000:1 0:59 0:252 ip community-list standard 1_60_251 permit 65000:1 0:60 0:251 ip community-list standard 1_61_250 permit 65000:1 0:61 0:250 ip community-list standard 1_62_249 permit 65000:1 0:62 0:249 ip community-list standard 1_63_248 permit 65000:1 0:63 0:248 ip community-list standard 1_64_247 permit 65000:1 0:64 0:247 ip community-list standard 1_65_246 permit 65000:1 0:65 0:246 ip community-list standard 1_66_245 permit 65000:1 0:66 0:245 ip community-list standard 1_67_244 permit 65000:1 0:67 0:244 ip community-list standard 1_68_243 permit 65000:1 0:68 0:243 ip community-list standard 1_69_242 permit 65000:1 0:69 0:242 ip community-list standard 1_70_241 permit 65000:1 0:70 0:241 ip community-list standard 1_71_240 permit 65000:1 0:71 0:240 ip community-list standard 1_72_239 permit 65000:1 0:72 0:239 ip community-list standard 1_73_238 permit 65000:1 0:73 0:238 ip community-list standard 1_74_237 permit 65000:1 0:74 0:237 ip community-list standard 1_75_236 permit 65000:1 0:75 0:236 ip community-list standard 1_76_235 permit 65000:1 0:76 0:235 ip community-list standard 1_77_234 permit 65000:1 0:77 0:234 ip community-list standard 1_78_233 permit 65000:1 0:78 0:233 ip community-list standard 1_79_232 permit 65000:1 0:79 0:232 ip community-list standard 1_80_231 permit 65000:1 0:80 0:231 ip community-list standard 1_81_230 permit 65000:1 0:81 0:230 ip community-list standard 1_82_229 permit 65000:1 0:82 0:229 ip community-list standard 1_83_228 permit 65000:1 0:83 0:228 ip community-list standard 1_84_227 permit 65000:1 0:84 0:227 ip community-list standard 1_85_226 permit 65000:1 0:85 0:226 ip community-list standard 1_86_225 permit 65000:1 0:86 0:225 ip community-list standard 1_87_224 permit 65000:1 0:87 0:224 ip community-list standard 1_88_223 permit 65000:1 0:88 0:223 ip community-list standard 1_89_222 permit 65000:1 0:89 0:222 ip community-list standard 1_90_221 permit 65000:1 0:90 0:221 ip community-list standard 1_91_220 permit 65000:1 0:91 0:220 ip community-list standard 1_92_219 permit 65000:1 0:92 0:219 ip community-list standard 1_93_218 permit 65000:1 0:93 0:218 ip community-list standard 1_94_217 permit 65000:1 0:94 0:217 ip community-list standard 1_95_216 permit 65000:1 0:95 0:216 ip community-list standard 1_96_215 permit 65000:1 0:96 0:215 ip community-list standard 1_97_214 permit 65000:1 0:97 0:214 ip community-list standard 1_98_213 permit 65000:1 0:98 0:213 ip community-list standard 1_99_212 permit 65000:1 0:99 0:212 ip community-list standard 1_100_211 permit 65000:1 0:100 0:211 ip community-list standard 1_101_210 permit 65000:1 0:101 0:210 ip community-list standard 1_102_209 permit 65000:1 0:102 0:209 ip community-list standard 1_103_208 permit 65000:1 0:103 0:208 ip community-list standard 1_104_207 permit 65000:1 0:104 0:207 ip community-list standard 1_105_206 permit 65000:1 0:105 0:206 ip community-list standard 1_106_205 permit 65000:1 0:106 0:205 ip community-list standard 1_107_204 permit 65000:1 0:107 0:204 ip community-list standard 1_108_203 permit 65000:1 0:108 0:203 ip community-list standard 1_109_202 permit 65000:1 0:109 0:202 ip community-list standard 1_110_201 permit 65000:1 0:110 0:201 ip community-list standard 1_111_200 permit 65000:1 0:111 0:200 ip community-list standard 1_112_199 permit 65000:1 0:112 0:199 ip community-list standard 1_113_198 permit 65000:1 0:113 0:198 ip community-list standard 1_114_197 permit 65000:1 0:114 0:197 ip community-list standard 1_115_196 permit 65000:1 0:115 0:196 ip community-list standard 1_116_195 permit 65000:1 0:116 0:195 ip community-list standard 1_117_194 permit 65000:1 0:117 0:194 ip community-list standard 1_118_193 permit 65000:1 0:118 0:193 ip community-list standard 1_119_192 permit 65000:1 0:119 0:192 ip community-list standard 1_120_191 permit 65000:1 0:120 0:191 ip community-list standard 1_121_190 permit 65000:1 0:121 0:190 ip community-list standard 1_122_189 permit 65000:1 0:122 0:189 ip community-list standard 1_123_188 permit 65000:1 0:123 0:188 ip community-list standard 1_124_187 permit 65000:1 0:124 0:187 ip community-list standard 1_125_186 permit 65000:1 0:125 0:186 ip community-list standard 1_126_185 permit 65000:1 0:126 0:185 ip community-list standard 1_127_184 permit 65000:1 0:127 0:184 ip community-list standard 1_128_183 permit 65000:1 0:128 0:183 ip community-list standard 1_129_182 permit 65000:1 0:129 0:182 ip community-list standard 1_130_181 permit 65000:1 0:130 0:181 ip community-list standard 1_131_180 permit 65000:1 0:131 0:180 ip community-list standard 1_132_179 permit 65000:1 0:132 0:179 ip community-list standard 1_133_178 permit 65000:1 0:133 0:178 ip community-list standard 1_134_177 permit 65000:1 0:134 0:177 ip community-list standard 1_135_176 permit 65000:1 0:135 0:176 ip community-list standard 1_136_175 permit 65000:1 0:136 0:175 ip community-list standard 1_137_174 permit 65000:1 0:137 0:174 ip community-list standard 1_138_173 permit 65000:1 0:138 0:173 ip community-list standard 1_139_172 permit 65000:1 0:139 0:172 ip community-list standard 1_140_171 permit 65000:1 0:140 0:171 ip community-list standard 1_141_170 permit 65000:1 0:141 0:170 ip community-list standard 1_142_169 permit 65000:1 0:142 0:169 ip community-list standard 1_143_168 permit 65000:1 0:143 0:168 ip community-list standard 1_144_167 permit 65000:1 0:144 0:167 ip community-list standard 1_145_166 permit 65000:1 0:145 0:166 ip community-list standard 1_146_165 permit 65000:1 0:146 0:165 ip community-list standard 1_147_164 permit 65000:1 0:147 0:164 ip community-list standard 1_148_163 permit 65000:1 0:148 0:163 ip community-list standard 1_149_162 permit 65000:1 0:149 0:162 ip community-list standard 1_150_161 permit 65000:1 0:150 0:161 ip community-list standard 1_151_160 permit 65000:1 0:151 0:160 ip community-list standard 1_152_159 permit 65000:1 0:152 0:159 ip community-list standard 1_153_158 permit 65000:1 0:153 0:158 ip community-list standard 1_154_157 permit 65000:1 0:154 0:157 ip community-list standard 1_155_156 permit 65000:1 0:155 0:156 route-map calculator permit 17470 match community 1_55_256 1_56_255 1_57_254 1_58_253 1_59_252 set community 0:311 route-map calculator permit 17471 match community 1_60_251 1_61_250 1_62_249 1_63_248 1_64_247 set community 0:311 route-map calculator permit 17472 match community 1_65_246 1_66_245 1_67_244 1_68_243 1_69_242 set community 0:311 route-map calculator permit 17473 match community 1_70_241 1_71_240 1_72_239 1_73_238 1_74_237 set community 0:311 route-map calculator permit 17474 match community 1_75_236 1_76_235 1_77_234 1_78_233 1_79_232 set community 0:311 route-map calculator permit 17475 match community 1_80_231 1_81_230 1_82_229 1_83_228 1_84_227 set community 0:311 route-map calculator permit 17476 match community 1_85_226 1_86_225 1_87_224 1_88_223 1_89_222 set community 0:311 route-map calculator permit 17477 match community 1_90_221 1_91_220 1_92_219 1_93_218 1_94_217 set community 0:311 route-map calculator permit 17478 match community 1_95_216 1_96_215 1_97_214 1_98_213 1_99_212 set community 0:311 route-map calculator permit 17479 match community 1_100_211 1_101_210 1_102_209 1_103_208 1_104_207 set community 0:311 route-map calculator permit 17480 match community 1_105_206 1_106_205 1_107_204 1_108_203 1_109_202 set community 0:311 route-map calculator permit 17481 match community 1_110_201 1_111_200 1_112_199 1_113_198 1_114_197 set community 0:311 route-map calculator permit 17482 match community 1_115_196 1_116_195 1_117_194 1_118_193 1_119_192 set community 0:311 route-map calculator permit 17483 match community 1_120_191 1_121_190 1_122_189 1_123_188 1_124_187 set community 0:311 route-map calculator permit 17484 match community 1_125_186 1_126_185 1_127_184 1_128_183 1_129_182 set community 0:311 route-map calculator permit 17485 match community 1_130_181 1_131_180 1_132_179 1_133_178 1_134_177 set community 0:311 route-map calculator permit 17486 match community 1_135_176 1_136_175 1_137_174 1_138_173 1_139_172 set community 0:311 route-map calculator permit 17487 match community 1_140_171 1_141_170 1_142_169 1_143_168 1_144_167 set community 0:311 route-map calculator permit 17488 match community 1_145_166 1_146_165 1_147_164 1_148_163 1_149_162 set community 0:311 route-map calculator permit 17489 match community 1_150_161 1_151_160 1_152_159 1_153_158 1_154_157 set community 0:311 route-map calculator permit 17490 match community 1_155_156 set community 0:311 ip community-list standard 2_116_195 permit 65000:2 0:116 0:195 ip community-list standard 2_130_174 permit 65000:2 0:130 0:174 ip community-list standard 2_145_156 permit 65000:2 0:145 0:156 route-map calculator permit 17491 match community 2_116_195 2_130_174 2_145_156 set community 0:22620 ip community-list standard 2_36_248 permit 65000:2 0:36 0:248 ip community-list standard 2_48_186 permit 65000:2 0:48 0:186 ip community-list standard 2_62_144 permit 65000:2 0:62 0:144 ip community-list standard 2_72_124 permit 65000:2 0:72 0:124 ip community-list standard 2_93_96 permit 65000:2 0:93 0:96 route-map calculator permit 17492 match community 2_36_248 2_48_186 2_62_144 2_72_124 2_93_96 set community 0:8928 ip community-list standard 2_38_250 permit 65000:2 0:38 0:250 ip community-list standard 2_50_190 permit 65000:2 0:50 0:190 ip community-list standard 2_76_125 permit 65000:2 0:76 0:125 ip community-list standard 2_95_100 permit 65000:2 0:95 0:100 route-map calculator permit 17493 match community 2_38_250 2_50_190 2_76_125 2_95_100 set community 0:9500 ip community-list standard 2_80_248 permit 65000:2 0:80 0:248 ip community-list standard 2_124_160 permit 65000:2 0:124 0:160 ip community-list standard 2_128_155 permit 65000:2 0:128 0:155 route-map calculator permit 17494 match community 2_80_248 2_124_160 2_128_155 set community 0:19840 ip community-list standard 2_16_152 permit 65000:2 0:16 0:152 ip community-list standard 2_19_128 permit 65000:2 0:19 0:128 ip community-list standard 2_32_76 permit 65000:2 0:32 0:76 ip community-list standard 2_38_64 permit 65000:2 0:38 0:64 route-map calculator permit 17495 match community 2_16_152 2_19_128 2_32_76 2_38_64 set community 0:2432 ip community-list standard 2_53_254 permit 65000:2 0:53 0:254 ip community-list standard 2_106_127 permit 65000:2 0:106 0:127 route-map calculator permit 17496 match community 2_53_254 2_106_127 set community 0:13462 ip community-list standard 2_84_224 permit 65000:2 0:84 0:224 ip community-list standard 2_96_196 permit 65000:2 0:96 0:196 ip community-list standard 2_98_192 permit 65000:2 0:98 0:192 ip community-list standard 2_112_168 permit 65000:2 0:112 0:168 ip community-list standard 2_128_147 permit 65000:2 0:128 0:147 route-map calculator permit 17497 match community 2_84_224 2_96_196 2_98_192 2_112_168 2_128_147 set community 0:18816 ip community-list standard 2_67_232 permit 65000:2 0:67 0:232 ip community-list standard 2_116_134 permit 65000:2 0:116 0:134 route-map calculator permit 17498 match community 2_67_232 2_116_134 set community 0:15544 ip community-list standard 2_13_23 permit 65000:2 0:13 0:23 ip community-list standard 1_43_256 permit 65000:1 0:43 0:256 ip community-list standard 1_44_255 permit 65000:1 0:44 0:255 ip community-list standard 1_45_254 permit 65000:1 0:45 0:254 ip community-list standard 1_46_253 permit 65000:1 0:46 0:253 ip community-list standard 1_47_252 permit 65000:1 0:47 0:252 ip community-list standard 1_48_251 permit 65000:1 0:48 0:251 ip community-list standard 1_49_250 permit 65000:1 0:49 0:250 ip community-list standard 1_50_249 permit 65000:1 0:50 0:249 ip community-list standard 1_51_248 permit 65000:1 0:51 0:248 ip community-list standard 1_52_247 permit 65000:1 0:52 0:247 ip community-list standard 1_53_246 permit 65000:1 0:53 0:246 ip community-list standard 1_54_245 permit 65000:1 0:54 0:245 ip community-list standard 1_55_244 permit 65000:1 0:55 0:244 ip community-list standard 1_56_243 permit 65000:1 0:56 0:243 ip community-list standard 1_57_242 permit 65000:1 0:57 0:242 ip community-list standard 1_58_241 permit 65000:1 0:58 0:241 ip community-list standard 1_59_240 permit 65000:1 0:59 0:240 ip community-list standard 1_60_239 permit 65000:1 0:60 0:239 ip community-list standard 1_61_238 permit 65000:1 0:61 0:238 ip community-list standard 1_62_237 permit 65000:1 0:62 0:237 ip community-list standard 1_63_236 permit 65000:1 0:63 0:236 ip community-list standard 1_64_235 permit 65000:1 0:64 0:235 ip community-list standard 1_65_234 permit 65000:1 0:65 0:234 ip community-list standard 1_66_233 permit 65000:1 0:66 0:233 ip community-list standard 1_67_232 permit 65000:1 0:67 0:232 ip community-list standard 1_68_231 permit 65000:1 0:68 0:231 ip community-list standard 1_69_230 permit 65000:1 0:69 0:230 ip community-list standard 1_70_229 permit 65000:1 0:70 0:229 ip community-list standard 1_71_228 permit 65000:1 0:71 0:228 ip community-list standard 1_72_227 permit 65000:1 0:72 0:227 ip community-list standard 1_73_226 permit 65000:1 0:73 0:226 ip community-list standard 1_74_225 permit 65000:1 0:74 0:225 ip community-list standard 1_75_224 permit 65000:1 0:75 0:224 ip community-list standard 1_76_223 permit 65000:1 0:76 0:223 ip community-list standard 1_77_222 permit 65000:1 0:77 0:222 ip community-list standard 1_78_221 permit 65000:1 0:78 0:221 ip community-list standard 1_79_220 permit 65000:1 0:79 0:220 ip community-list standard 1_80_219 permit 65000:1 0:80 0:219 ip community-list standard 1_81_218 permit 65000:1 0:81 0:218 ip community-list standard 1_82_217 permit 65000:1 0:82 0:217 ip community-list standard 1_83_216 permit 65000:1 0:83 0:216 ip community-list standard 1_84_215 permit 65000:1 0:84 0:215 ip community-list standard 1_85_214 permit 65000:1 0:85 0:214 ip community-list standard 1_86_213 permit 65000:1 0:86 0:213 ip community-list standard 1_87_212 permit 65000:1 0:87 0:212 ip community-list standard 1_88_211 permit 65000:1 0:88 0:211 ip community-list standard 1_89_210 permit 65000:1 0:89 0:210 ip community-list standard 1_90_209 permit 65000:1 0:90 0:209 ip community-list standard 1_91_208 permit 65000:1 0:91 0:208 ip community-list standard 1_92_207 permit 65000:1 0:92 0:207 ip community-list standard 1_93_206 permit 65000:1 0:93 0:206 ip community-list standard 1_94_205 permit 65000:1 0:94 0:205 ip community-list standard 1_95_204 permit 65000:1 0:95 0:204 ip community-list standard 1_96_203 permit 65000:1 0:96 0:203 ip community-list standard 1_97_202 permit 65000:1 0:97 0:202 ip community-list standard 1_98_201 permit 65000:1 0:98 0:201 ip community-list standard 1_99_200 permit 65000:1 0:99 0:200 ip community-list standard 1_100_199 permit 65000:1 0:100 0:199 ip community-list standard 1_101_198 permit 65000:1 0:101 0:198 ip community-list standard 1_102_197 permit 65000:1 0:102 0:197 ip community-list standard 1_103_196 permit 65000:1 0:103 0:196 ip community-list standard 1_104_195 permit 65000:1 0:104 0:195 ip community-list standard 1_105_194 permit 65000:1 0:105 0:194 ip community-list standard 1_106_193 permit 65000:1 0:106 0:193 ip community-list standard 1_107_192 permit 65000:1 0:107 0:192 ip community-list standard 1_108_191 permit 65000:1 0:108 0:191 ip community-list standard 1_109_190 permit 65000:1 0:109 0:190 ip community-list standard 1_110_189 permit 65000:1 0:110 0:189 ip community-list standard 1_111_188 permit 65000:1 0:111 0:188 ip community-list standard 1_112_187 permit 65000:1 0:112 0:187 ip community-list standard 1_113_186 permit 65000:1 0:113 0:186 ip community-list standard 1_114_185 permit 65000:1 0:114 0:185 ip community-list standard 1_115_184 permit 65000:1 0:115 0:184 ip community-list standard 1_116_183 permit 65000:1 0:116 0:183 ip community-list standard 1_117_182 permit 65000:1 0:117 0:182 ip community-list standard 1_118_181 permit 65000:1 0:118 0:181 ip community-list standard 1_119_180 permit 65000:1 0:119 0:180 ip community-list standard 1_120_179 permit 65000:1 0:120 0:179 ip community-list standard 1_121_178 permit 65000:1 0:121 0:178 ip community-list standard 1_122_177 permit 65000:1 0:122 0:177 ip community-list standard 1_123_176 permit 65000:1 0:123 0:176 ip community-list standard 1_124_175 permit 65000:1 0:124 0:175 ip community-list standard 1_125_174 permit 65000:1 0:125 0:174 ip community-list standard 1_126_173 permit 65000:1 0:126 0:173 ip community-list standard 1_127_172 permit 65000:1 0:127 0:172 ip community-list standard 1_128_171 permit 65000:1 0:128 0:171 ip community-list standard 1_129_170 permit 65000:1 0:129 0:170 ip community-list standard 1_130_169 permit 65000:1 0:130 0:169 ip community-list standard 1_131_168 permit 65000:1 0:131 0:168 ip community-list standard 1_132_167 permit 65000:1 0:132 0:167 ip community-list standard 1_133_166 permit 65000:1 0:133 0:166 ip community-list standard 1_134_165 permit 65000:1 0:134 0:165 ip community-list standard 1_135_164 permit 65000:1 0:135 0:164 ip community-list standard 1_136_163 permit 65000:1 0:136 0:163 ip community-list standard 1_137_162 permit 65000:1 0:137 0:162 ip community-list standard 1_138_161 permit 65000:1 0:138 0:161 ip community-list standard 1_139_160 permit 65000:1 0:139 0:160 ip community-list standard 1_140_159 permit 65000:1 0:140 0:159 ip community-list standard 1_141_158 permit 65000:1 0:141 0:158 ip community-list standard 1_142_157 permit 65000:1 0:142 0:157 ip community-list standard 1_143_156 permit 65000:1 0:143 0:156 ip community-list standard 1_144_155 permit 65000:1 0:144 0:155 ip community-list standard 1_145_154 permit 65000:1 0:145 0:154 ip community-list standard 1_146_153 permit 65000:1 0:146 0:153 ip community-list standard 1_147_152 permit 65000:1 0:147 0:152 ip community-list standard 1_148_151 permit 65000:1 0:148 0:151 ip community-list standard 1_149_150 permit 65000:1 0:149 0:150 route-map calculator permit 17499 match community 2_13_23 1_43_256 1_44_255 1_45_254 1_46_253 set community 0:299 route-map calculator permit 17500 match community 1_47_252 1_48_251 1_49_250 1_50_249 1_51_248 set community 0:299 route-map calculator permit 17501 match community 1_52_247 1_53_246 1_54_245 1_55_244 1_56_243 set community 0:299 route-map calculator permit 17502 match community 1_57_242 1_58_241 1_59_240 1_60_239 1_61_238 set community 0:299 route-map calculator permit 17503 match community 1_62_237 1_63_236 1_64_235 1_65_234 1_66_233 set community 0:299 route-map calculator permit 17504 match community 1_67_232 1_68_231 1_69_230 1_70_229 1_71_228 set community 0:299 route-map calculator permit 17505 match community 1_72_227 1_73_226 1_74_225 1_75_224 1_76_223 set community 0:299 route-map calculator permit 17506 match community 1_77_222 1_78_221 1_79_220 1_80_219 1_81_218 set community 0:299 route-map calculator permit 17507 match community 1_82_217 1_83_216 1_84_215 1_85_214 1_86_213 set community 0:299 route-map calculator permit 17508 match community 1_87_212 1_88_211 1_89_210 1_90_209 1_91_208 set community 0:299 route-map calculator permit 17509 match community 1_92_207 1_93_206 1_94_205 1_95_204 1_96_203 set community 0:299 route-map calculator permit 17510 match community 1_97_202 1_98_201 1_99_200 1_100_199 1_101_198 set community 0:299 route-map calculator permit 17511 match community 1_102_197 1_103_196 1_104_195 1_105_194 1_106_193 set community 0:299 route-map calculator permit 17512 match community 1_107_192 1_108_191 1_109_190 1_110_189 1_111_188 set community 0:299 route-map calculator permit 17513 match community 1_112_187 1_113_186 1_114_185 1_115_184 1_116_183 set community 0:299 route-map calculator permit 17514 match community 1_117_182 1_118_181 1_119_180 1_120_179 1_121_178 set community 0:299 route-map calculator permit 17515 match community 1_122_177 1_123_176 1_124_175 1_125_174 1_126_173 set community 0:299 route-map calculator permit 17516 match community 1_127_172 1_128_171 1_129_170 1_130_169 1_131_168 set community 0:299 route-map calculator permit 17517 match community 1_132_167 1_133_166 1_134_165 1_135_164 1_136_163 set community 0:299 route-map calculator permit 17518 match community 1_137_162 1_138_161 1_139_160 1_140_159 1_141_158 set community 0:299 route-map calculator permit 17519 match community 1_142_157 1_143_156 1_144_155 1_145_154 1_146_153 set community 0:299 route-map calculator permit 17520 match community 1_147_152 1_148_151 1_149_150 set community 0:299 ip community-list standard 2_46_252 permit 65000:2 0:46 0:252 ip community-list standard 2_56_207 permit 65000:2 0:56 0:207 ip community-list standard 2_63_184 permit 65000:2 0:63 0:184 ip community-list standard 2_69_168 permit 65000:2 0:69 0:168 ip community-list standard 2_72_161 permit 65000:2 0:72 0:161 ip community-list standard 2_84_138 permit 65000:2 0:84 0:138 ip community-list standard 2_92_126 permit 65000:2 0:92 0:126 route-map calculator permit 17521 match community 2_46_252 2_56_207 2_63_184 2_69_168 2_72_161 set community 0:11592 route-map calculator permit 17522 match community 2_84_138 2_92_126 set community 0:11592 ip community-list standard 2_40_201 permit 65000:2 0:40 0:201 ip community-list standard 2_60_134 permit 65000:2 0:60 0:134 ip community-list standard 2_67_120 permit 65000:2 0:67 0:120 route-map calculator permit 17523 match community 2_40_201 2_60_134 2_67_120 set community 0:8040 ip community-list standard 2_42_173 permit 65000:2 0:42 0:173 route-map calculator permit 17524 match community 2_42_173 set community 0:7266 ip community-list standard 2_40_239 permit 65000:2 0:40 0:239 route-map calculator permit 17525 match community 2_40_239 set community 0:9560 ip community-list standard 2_111_201 permit 65000:2 0:111 0:201 route-map calculator permit 17526 match community 2_111_201 set community 0:22311 ip community-list standard 2_106_213 permit 65000:2 0:106 0:213 ip community-list standard 2_142_159 permit 65000:2 0:142 0:159 route-map calculator permit 17527 match community 2_106_213 2_142_159 set community 0:22578 ip community-list standard 2_52_214 permit 65000:2 0:52 0:214 ip community-list standard 2_104_107 permit 65000:2 0:104 0:107 route-map calculator permit 17528 match community 2_52_214 2_104_107 set community 0:11128 ip community-list standard 2_71_229 permit 65000:2 0:71 0:229 route-map calculator permit 17529 match community 2_71_229 set community 0:16259 ip community-list standard 2_91_183 permit 65000:2 0:91 0:183 route-map calculator permit 17530 match community 2_91_183 set community 0:16653 ip community-list standard 2_29_246 permit 65000:2 0:29 0:246 ip community-list standard 2_41_174 permit 65000:2 0:41 0:174 ip community-list standard 2_58_123 permit 65000:2 0:58 0:123 ip community-list standard 2_82_87 permit 65000:2 0:82 0:87 route-map calculator permit 17531 match community 2_29_246 2_41_174 2_58_123 2_82_87 set community 0:7134 ip community-list standard 2_34_170 permit 65000:2 0:34 0:170 ip community-list standard 2_68_85 permit 65000:2 0:68 0:85 route-map calculator permit 17532 match community 2_34_170 2_68_85 set community 0:5780 ip community-list standard 2_158_197 permit 65000:2 0:158 0:197 route-map calculator permit 17533 match community 2_158_197 set community 0:31126 ip community-list standard 2_198_227 permit 65000:2 0:198 0:227 route-map calculator permit 17534 match community 2_198_227 set community 0:44946 ip community-list standard 2_106_131 permit 65000:2 0:106 0:131 route-map calculator permit 17535 match community 2_106_131 set community 0:13886 ip community-list standard 2_139_217 permit 65000:2 0:139 0:217 route-map calculator permit 17536 match community 2_139_217 set community 0:30163 ip community-list standard 2_111_137 permit 65000:2 0:111 0:137 route-map calculator permit 17537 match community 2_111_137 set community 0:15207 ip community-list standard 2_47_235 permit 65000:2 0:47 0:235 route-map calculator permit 17538 match community 2_47_235 set community 0:11045 ip community-list standard 2_53_173 permit 65000:2 0:53 0:173 route-map calculator permit 17539 match community 2_53_173 set community 0:9169 ip community-list standard 2_112_236 permit 65000:2 0:112 0:236 ip community-list standard 2_118_224 permit 65000:2 0:118 0:224 route-map calculator permit 17540 match community 2_112_236 2_118_224 set community 0:26432 ip community-list standard 2_23_61 permit 65000:2 0:23 0:61 route-map calculator permit 17541 match community 2_23_61 set community 0:1403 ip community-list standard 2_88_241 permit 65000:2 0:88 0:241 route-map calculator permit 17542 match community 2_88_241 set community 0:21208 ip community-list standard 2_145_179 permit 65000:2 0:145 0:179 route-map calculator permit 17543 match community 2_145_179 set community 0:25955 ip community-list standard 2_158_214 permit 65000:2 0:158 0:214 route-map calculator permit 17544 match community 2_158_214 set community 0:33812 ip community-list standard 2_19_41 permit 65000:2 0:19 0:41 route-map calculator permit 17545 match community 2_19_41 set community 0:779 ip community-list standard 2_69_202 permit 65000:2 0:69 0:202 ip community-list standard 2_101_138 permit 65000:2 0:101 0:138 route-map calculator permit 17546 match community 2_69_202 2_101_138 set community 0:13938 ip community-list standard 2_27_223 permit 65000:2 0:27 0:223 route-map calculator permit 17547 match community 2_27_223 set community 0:6021 ip community-list standard 2_12_173 permit 65000:2 0:12 0:173 route-map calculator permit 17548 match community 2_12_173 set community 0:2076 ip community-list standard 2_11_116 permit 65000:2 0:11 0:116 ip community-list standard 2_22_58 permit 65000:2 0:22 0:58 ip community-list standard 2_29_44 permit 65000:2 0:29 0:44 route-map calculator permit 17549 match community 2_11_116 2_22_58 2_29_44 set community 0:1276 ip community-list standard 2_111_209 permit 65000:2 0:111 0:209 route-map calculator permit 17550 match community 2_111_209 set community 0:23199 ip community-list standard 2_113_157 permit 65000:2 0:113 0:157 route-map calculator permit 17551 match community 2_113_157 set community 0:17741 ip community-list standard 2_84_212 permit 65000:2 0:84 0:212 ip community-list standard 2_106_168 permit 65000:2 0:106 0:168 ip community-list standard 2_112_159 permit 65000:2 0:112 0:159 route-map calculator permit 17552 match community 2_84_212 2_106_168 2_112_159 set community 0:17808 ip community-list standard 2_28_229 permit 65000:2 0:28 0:229 route-map calculator permit 17553 match community 2_28_229 set community 0:6412 ip community-list standard 2_133_211 permit 65000:2 0:133 0:211 route-map calculator permit 17554 match community 2_133_211 set community 0:28063 ip community-list standard 2_60_239 permit 65000:2 0:60 0:239 route-map calculator permit 17555 match community 2_60_239 set community 0:14340 ip community-list standard 2_49_178 permit 65000:2 0:49 0:178 ip community-list standard 2_89_98 permit 65000:2 0:89 0:98 route-map calculator permit 17556 match community 2_49_178 2_89_98 set community 0:8722 ip community-list standard 2_176_194 permit 65000:2 0:176 0:194 route-map calculator permit 17557 match community 2_176_194 set community 0:34144 ip community-list standard 2_11_139 permit 65000:2 0:11 0:139 route-map calculator permit 17558 match community 2_11_139 set community 0:1529 ip community-list standard 2_48_211 permit 65000:2 0:48 0:211 route-map calculator permit 17559 match community 2_48_211 set community 0:10128 ip community-list standard 2_214_230 permit 65000:2 0:214 0:230 route-map calculator permit 17560 match community 2_214_230 set community 0:49220 ip community-list standard 2_45_198 permit 65000:2 0:45 0:198 ip community-list standard 2_54_165 permit 65000:2 0:54 0:165 ip community-list standard 2_55_162 permit 65000:2 0:55 0:162 ip community-list standard 2_66_135 permit 65000:2 0:66 0:135 ip community-list standard 2_81_110 permit 65000:2 0:81 0:110 ip community-list standard 2_90_99 permit 65000:2 0:90 0:99 route-map calculator permit 17561 match community 2_45_198 2_54_165 2_55_162 2_66_135 2_81_110 set community 0:8910 route-map calculator permit 17562 match community 2_90_99 set community 0:8910 ip community-list standard 2_13_215 permit 65000:2 0:13 0:215 ip community-list standard 2_43_65 permit 65000:2 0:43 0:65 route-map calculator permit 17563 match community 2_13_215 2_43_65 set community 0:2795 ip community-list standard 2_31_170 permit 65000:2 0:31 0:170 ip community-list standard 2_34_155 permit 65000:2 0:34 0:155 ip community-list standard 2_62_85 permit 65000:2 0:62 0:85 route-map calculator permit 17564 match community 2_31_170 2_34_155 2_62_85 set community 0:5270 ip community-list standard 2_137_199 permit 65000:2 0:137 0:199 route-map calculator permit 17565 match community 2_137_199 set community 0:27263 ip community-list standard 2_21_179 permit 65000:2 0:21 0:179 route-map calculator permit 17566 match community 2_21_179 set community 0:3759 ip community-list standard 2_50_202 permit 65000:2 0:50 0:202 ip community-list standard 2_100_101 permit 65000:2 0:100 0:101 route-map calculator permit 17567 match community 2_50_202 2_100_101 set community 0:10100 ip community-list standard 2_101_159 permit 65000:2 0:101 0:159 route-map calculator permit 17568 match community 2_101_159 set community 0:16059 ip community-list standard 2_201_237 permit 65000:2 0:201 0:237 route-map calculator permit 17569 match community 2_201_237 set community 0:47637 ip community-list standard 2_49_253 permit 65000:2 0:49 0:253 ip community-list standard 2_77_161 permit 65000:2 0:77 0:161 route-map calculator permit 17570 match community 2_49_253 2_77_161 set community 0:12397 ip community-list standard 2_101_147 permit 65000:2 0:101 0:147 route-map calculator permit 17571 match community 2_101_147 set community 0:14847 ip community-list standard 2_4_222 permit 65000:2 0:4 0:222 ip community-list standard 2_6_148 permit 65000:2 0:6 0:148 ip community-list standard 2_8_111 permit 65000:2 0:8 0:111 ip community-list standard 2_12_74 permit 65000:2 0:12 0:74 ip community-list standard 2_24_37 permit 65000:2 0:24 0:37 route-map calculator permit 17572 match community 2_4_222 2_6_148 2_8_111 2_12_74 2_24_37 set community 0:888 ip community-list standard 2_25_53 permit 65000:2 0:25 0:53 route-map calculator permit 17573 match community 2_25_53 set community 0:1325 ip community-list standard 2_114_217 permit 65000:2 0:114 0:217 ip community-list standard 2_133_186 permit 65000:2 0:133 0:186 route-map calculator permit 17574 match community 2_114_217 2_133_186 set community 0:24738 ip community-list standard 2_158_248 permit 65000:2 0:158 0:248 route-map calculator permit 17575 match community 2_158_248 set community 0:39184 ip community-list standard 2_96_149 permit 65000:2 0:96 0:149 route-map calculator permit 17576 match community 2_96_149 set community 0:14304 ip community-list standard 2_100_252 permit 65000:2 0:100 0:252 ip community-list standard 2_105_240 permit 65000:2 0:105 0:240 ip community-list standard 2_112_225 permit 65000:2 0:112 0:225 ip community-list standard 2_120_210 permit 65000:2 0:120 0:210 ip community-list standard 2_126_200 permit 65000:2 0:126 0:200 ip community-list standard 2_140_180 permit 65000:2 0:140 0:180 ip community-list standard 2_144_175 permit 65000:2 0:144 0:175 ip community-list standard 2_150_168 permit 65000:2 0:150 0:168 route-map calculator permit 17577 match community 2_100_252 2_105_240 2_112_225 2_120_210 2_126_200 set community 0:25200 route-map calculator permit 17578 match community 2_140_180 2_144_175 2_150_168 set community 0:25200 ip community-list standard 2_108_222 permit 65000:2 0:108 0:222 ip community-list standard 2_111_216 permit 65000:2 0:111 0:216 ip community-list standard 2_148_162 permit 65000:2 0:148 0:162 route-map calculator permit 17579 match community 2_108_222 2_111_216 2_148_162 set community 0:23976 ip community-list standard 2_30_223 permit 65000:2 0:30 0:223 route-map calculator permit 17580 match community 2_30_223 set community 0:6690 ip community-list standard 2_235_238 permit 65000:2 0:235 0:238 route-map calculator permit 17581 match community 2_235_238 set community 0:55930 ip community-list standard 2_65_256 permit 65000:2 0:65 0:256 ip community-list standard 2_80_208 permit 65000:2 0:80 0:208 ip community-list standard 2_104_160 permit 65000:2 0:104 0:160 ip community-list standard 2_128_130 permit 65000:2 0:128 0:130 route-map calculator permit 17582 match community 2_65_256 2_80_208 2_104_160 2_128_130 set community 0:16640 ip community-list standard 2_193_195 permit 65000:2 0:193 0:195 route-map calculator permit 17583 match community 2_193_195 set community 0:37635 ip community-list standard 2_19_23 permit 65000:2 0:19 0:23 ip community-list standard 1_181_256 permit 65000:1 0:181 0:256 ip community-list standard 1_182_255 permit 65000:1 0:182 0:255 ip community-list standard 1_183_254 permit 65000:1 0:183 0:254 ip community-list standard 1_184_253 permit 65000:1 0:184 0:253 ip community-list standard 1_185_252 permit 65000:1 0:185 0:252 ip community-list standard 1_186_251 permit 65000:1 0:186 0:251 ip community-list standard 1_187_250 permit 65000:1 0:187 0:250 ip community-list standard 1_188_249 permit 65000:1 0:188 0:249 ip community-list standard 1_189_248 permit 65000:1 0:189 0:248 ip community-list standard 1_190_247 permit 65000:1 0:190 0:247 ip community-list standard 1_191_246 permit 65000:1 0:191 0:246 ip community-list standard 1_192_245 permit 65000:1 0:192 0:245 ip community-list standard 1_193_244 permit 65000:1 0:193 0:244 ip community-list standard 1_194_243 permit 65000:1 0:194 0:243 ip community-list standard 1_195_242 permit 65000:1 0:195 0:242 ip community-list standard 1_196_241 permit 65000:1 0:196 0:241 ip community-list standard 1_197_240 permit 65000:1 0:197 0:240 ip community-list standard 1_198_239 permit 65000:1 0:198 0:239 ip community-list standard 1_199_238 permit 65000:1 0:199 0:238 ip community-list standard 1_200_237 permit 65000:1 0:200 0:237 ip community-list standard 1_201_236 permit 65000:1 0:201 0:236 ip community-list standard 1_202_235 permit 65000:1 0:202 0:235 ip community-list standard 1_203_234 permit 65000:1 0:203 0:234 ip community-list standard 1_204_233 permit 65000:1 0:204 0:233 ip community-list standard 1_205_232 permit 65000:1 0:205 0:232 ip community-list standard 1_206_231 permit 65000:1 0:206 0:231 ip community-list standard 1_207_230 permit 65000:1 0:207 0:230 ip community-list standard 1_208_229 permit 65000:1 0:208 0:229 ip community-list standard 1_209_228 permit 65000:1 0:209 0:228 ip community-list standard 1_210_227 permit 65000:1 0:210 0:227 ip community-list standard 1_211_226 permit 65000:1 0:211 0:226 ip community-list standard 1_212_225 permit 65000:1 0:212 0:225 ip community-list standard 1_213_224 permit 65000:1 0:213 0:224 ip community-list standard 1_214_223 permit 65000:1 0:214 0:223 ip community-list standard 1_215_222 permit 65000:1 0:215 0:222 ip community-list standard 1_216_221 permit 65000:1 0:216 0:221 ip community-list standard 1_217_220 permit 65000:1 0:217 0:220 ip community-list standard 1_218_219 permit 65000:1 0:218 0:219 route-map calculator permit 17584 match community 2_19_23 1_181_256 1_182_255 1_183_254 1_184_253 set community 0:437 route-map calculator permit 17585 match community 1_185_252 1_186_251 1_187_250 1_188_249 1_189_248 set community 0:437 route-map calculator permit 17586 match community 1_190_247 1_191_246 1_192_245 1_193_244 1_194_243 set community 0:437 route-map calculator permit 17587 match community 1_195_242 1_196_241 1_197_240 1_198_239 1_199_238 set community 0:437 route-map calculator permit 17588 match community 1_200_237 1_201_236 1_202_235 1_203_234 1_204_233 set community 0:437 route-map calculator permit 17589 match community 1_205_232 1_206_231 1_207_230 1_208_229 1_209_228 set community 0:437 route-map calculator permit 17590 match community 1_210_227 1_211_226 1_212_225 1_213_224 1_214_223 set community 0:437 route-map calculator permit 17591 match community 1_215_222 1_216_221 1_217_220 1_218_219 set community 0:437 ip community-list standard 2_203_247 permit 65000:2 0:203 0:247 route-map calculator permit 17592 match community 2_203_247 set community 0:50141 ip community-list standard 2_163_190 permit 65000:2 0:163 0:190 route-map calculator permit 17593 match community 2_163_190 set community 0:30970 ip community-list standard 2_31_218 permit 65000:2 0:31 0:218 ip community-list standard 2_62_109 permit 65000:2 0:62 0:109 route-map calculator permit 17594 match community 2_31_218 2_62_109 set community 0:6758 ip community-list standard 2_68_200 permit 65000:2 0:68 0:200 ip community-list standard 2_80_170 permit 65000:2 0:80 0:170 ip community-list standard 2_85_160 permit 65000:2 0:85 0:160 ip community-list standard 2_100_136 permit 65000:2 0:100 0:136 route-map calculator permit 17595 match community 2_68_200 2_80_170 2_85_160 2_100_136 set community 0:13600 ip community-list standard 2_158_255 permit 65000:2 0:158 0:255 ip community-list standard 2_170_237 permit 65000:2 0:170 0:237 route-map calculator permit 17596 match community 2_158_255 2_170_237 set community 0:40290 ip community-list standard 2_31_244 permit 65000:2 0:31 0:244 ip community-list standard 2_61_124 permit 65000:2 0:61 0:124 ip community-list standard 2_62_122 permit 65000:2 0:62 0:122 route-map calculator permit 17597 match community 2_31_244 2_61_124 2_62_122 set community 0:7564 ip community-list standard 2_46_240 permit 65000:2 0:46 0:240 ip community-list standard 2_48_230 permit 65000:2 0:48 0:230 ip community-list standard 2_60_184 permit 65000:2 0:60 0:184 ip community-list standard 2_69_160 permit 65000:2 0:69 0:160 ip community-list standard 2_80_138 permit 65000:2 0:80 0:138 ip community-list standard 2_92_120 permit 65000:2 0:92 0:120 ip community-list standard 2_96_115 permit 65000:2 0:96 0:115 route-map calculator permit 17598 match community 2_46_240 2_48_230 2_60_184 2_69_160 2_80_138 set community 0:11040 route-map calculator permit 17599 match community 2_92_120 2_96_115 set community 0:11040 ip community-list standard 2_17_253 permit 65000:2 0:17 0:253 ip community-list standard 2_23_187 permit 65000:2 0:23 0:187 route-map calculator permit 17600 match community 2_17_253 2_23_187 set community 0:4301 ip community-list standard 2_165_231 permit 65000:2 0:165 0:231 route-map calculator permit 17601 match community 2_165_231 set community 0:38115 ip community-list standard 2_152_255 permit 65000:2 0:152 0:255 ip community-list standard 2_170_228 permit 65000:2 0:170 0:228 ip community-list standard 2_190_204 permit 65000:2 0:190 0:204 route-map calculator permit 17602 match community 2_152_255 2_170_228 2_190_204 set community 0:38760 ip community-list standard 2_136_216 permit 65000:2 0:136 0:216 ip community-list standard 2_144_204 permit 65000:2 0:144 0:204 ip community-list standard 2_153_192 permit 65000:2 0:153 0:192 route-map calculator permit 17603 match community 2_136_216 2_144_204 2_153_192 set community 0:29376 ip community-list standard 2_37_228 permit 65000:2 0:37 0:228 ip community-list standard 2_38_222 permit 65000:2 0:38 0:222 ip community-list standard 2_57_148 permit 65000:2 0:57 0:148 ip community-list standard 2_74_114 permit 65000:2 0:74 0:114 ip community-list standard 2_76_111 permit 65000:2 0:76 0:111 route-map calculator permit 17604 match community 2_37_228 2_38_222 2_57_148 2_74_114 2_76_111 set community 0:8436 ip community-list standard 2_205_238 permit 65000:2 0:205 0:238 route-map calculator permit 17605 match community 2_205_238 set community 0:48790 ip community-list standard 2_192_218 permit 65000:2 0:192 0:218 route-map calculator permit 17606 match community 2_192_218 set community 0:41856 ip community-list standard 2_89_157 permit 65000:2 0:89 0:157 route-map calculator permit 17607 match community 2_89_157 set community 0:13973 ip community-list standard 2_151_215 permit 65000:2 0:151 0:215 route-map calculator permit 17608 match community 2_151_215 set community 0:32465 ip community-list standard 2_98_250 permit 65000:2 0:98 0:250 ip community-list standard 2_100_245 permit 65000:2 0:100 0:245 ip community-list standard 2_125_196 permit 65000:2 0:125 0:196 ip community-list standard 2_140_175 permit 65000:2 0:140 0:175 route-map calculator permit 17609 match community 2_98_250 2_100_245 2_125_196 2_140_175 set community 0:24500 ip community-list standard 2_248_250 permit 65000:2 0:248 0:250 route-map calculator permit 17610 match community 2_248_250 set community 0:62000 ip community-list standard 2_185_205 permit 65000:2 0:185 0:205 route-map calculator permit 17611 match community 2_185_205 set community 0:37925 ip community-list standard 2_90_229 permit 65000:2 0:90 0:229 route-map calculator permit 17612 match community 2_90_229 set community 0:20610 ip community-list standard 2_222_247 permit 65000:2 0:222 0:247 route-map calculator permit 17613 match community 2_222_247 set community 0:54834 ip community-list standard 2_222_231 permit 65000:2 0:222 0:231 route-map calculator permit 17614 match community 2_222_231 set community 0:51282 ip community-list standard 2_140_199 permit 65000:2 0:140 0:199 route-map calculator permit 17615 match community 2_140_199 set community 0:27860 ip community-list standard 2_19_172 permit 65000:2 0:19 0:172 ip community-list standard 2_38_86 permit 65000:2 0:38 0:86 ip community-list standard 2_43_76 permit 65000:2 0:43 0:76 route-map calculator permit 17616 match community 2_19_172 2_38_86 2_43_76 set community 0:3268 ip community-list standard 2_174_198 permit 65000:2 0:174 0:198 route-map calculator permit 17617 match community 2_174_198 set community 0:34452 ip community-list standard 2_153_249 permit 65000:2 0:153 0:249 route-map calculator permit 17618 match community 2_153_249 set community 0:38097 ip community-list standard 2_228_239 permit 65000:2 0:228 0:239 route-map calculator permit 17619 match community 2_228_239 set community 0:54492 ip community-list standard 2_17_137 permit 65000:2 0:17 0:137 route-map calculator permit 17620 match community 2_17_137 set community 0:2329 ip community-list standard 2_129_201 permit 65000:2 0:129 0:201 route-map calculator permit 17621 match community 2_129_201 set community 0:25929 ip community-list standard 2_225_252 permit 65000:2 0:225 0:252 route-map calculator permit 17622 match community 2_225_252 set community 0:56700 ip community-list standard 2_211_221 permit 65000:2 0:211 0:221 route-map calculator permit 17623 match community 2_211_221 set community 0:46631 ip community-list standard 2_159_229 permit 65000:2 0:159 0:229 route-map calculator permit 17624 match community 2_159_229 set community 0:36411 ip community-list standard 2_37_255 permit 65000:2 0:37 0:255 ip community-list standard 2_51_185 permit 65000:2 0:51 0:185 ip community-list standard 2_85_111 permit 65000:2 0:85 0:111 route-map calculator permit 17625 match community 2_37_255 2_51_185 2_85_111 set community 0:9435 ip community-list standard 2_140_239 permit 65000:2 0:140 0:239 route-map calculator permit 17626 match community 2_140_239 set community 0:33460 ip community-list standard 2_69_230 permit 65000:2 0:69 0:230 ip community-list standard 2_115_138 permit 65000:2 0:115 0:138 route-map calculator permit 17627 match community 2_69_230 2_115_138 set community 0:15870 ip community-list standard 2_148_199 permit 65000:2 0:148 0:199 route-map calculator permit 17628 match community 2_148_199 set community 0:29452 ip community-list standard 2_9_198 permit 65000:2 0:9 0:198 ip community-list standard 2_11_162 permit 65000:2 0:11 0:162 ip community-list standard 2_18_99 permit 65000:2 0:18 0:99 ip community-list standard 2_22_81 permit 65000:2 0:22 0:81 ip community-list standard 2_27_66 permit 65000:2 0:27 0:66 ip community-list standard 2_33_54 permit 65000:2 0:33 0:54 route-map calculator permit 17629 match community 2_9_198 2_11_162 2_18_99 2_22_81 2_27_66 set community 0:1782 route-map calculator permit 17630 match community 2_33_54 set community 0:1782 ip community-list standard 2_113_125 permit 65000:2 0:113 0:125 route-map calculator permit 17631 match community 2_113_125 set community 0:14125 ip community-list standard 2_187_197 permit 65000:2 0:187 0:197 route-map calculator permit 17632 match community 2_187_197 set community 0:36839 ip community-list standard 2_247_247 permit 65000:2 0:247 0:247 route-map calculator permit 17633 match community 2_247_247 set community 0:61009 ip community-list standard 2_208_222 permit 65000:2 0:208 0:222 route-map calculator permit 17634 match community 2_208_222 set community 0:46176 ip community-list standard 2_148_191 permit 65000:2 0:148 0:191 route-map calculator permit 17635 match community 2_148_191 set community 0:28268 ip community-list standard 2_87_218 permit 65000:2 0:87 0:218 ip community-list standard 2_109_174 permit 65000:2 0:109 0:174 route-map calculator permit 17636 match community 2_87_218 2_109_174 set community 0:18966 ip community-list standard 2_155_239 permit 65000:2 0:155 0:239 route-map calculator permit 17637 match community 2_155_239 set community 0:37045 ip community-list standard 2_24_243 permit 65000:2 0:24 0:243 ip community-list standard 2_27_216 permit 65000:2 0:27 0:216 ip community-list standard 2_36_162 permit 65000:2 0:36 0:162 ip community-list standard 2_54_108 permit 65000:2 0:54 0:108 ip community-list standard 2_72_81 permit 65000:2 0:72 0:81 route-map calculator permit 17638 match community 2_24_243 2_27_216 2_36_162 2_54_108 2_72_81 set community 0:5832 ip community-list standard 2_180_213 permit 65000:2 0:180 0:213 route-map calculator permit 17639 match community 2_180_213 set community 0:38340 ip community-list standard 2_80_235 permit 65000:2 0:80 0:235 ip community-list standard 2_94_200 permit 65000:2 0:94 0:200 ip community-list standard 2_100_188 permit 65000:2 0:100 0:188 route-map calculator permit 17640 match community 2_80_235 2_94_200 2_100_188 set community 0:18800 ip community-list standard 2_14_226 permit 65000:2 0:14 0:226 ip community-list standard 2_28_113 permit 65000:2 0:28 0:113 route-map calculator permit 17641 match community 2_14_226 2_28_113 set community 0:3164 ip community-list standard 2_168_238 permit 65000:2 0:168 0:238 ip community-list standard 2_196_204 permit 65000:2 0:196 0:204 route-map calculator permit 17642 match community 2_168_238 2_196_204 set community 0:39984 ip community-list standard 2_205_220 permit 65000:2 0:205 0:220 route-map calculator permit 17643 match community 2_205_220 set community 0:45100 ip community-list standard 2_216_251 permit 65000:2 0:216 0:251 route-map calculator permit 17644 match community 2_216_251 set community 0:54216 ip community-list standard 2_83_173 permit 65000:2 0:83 0:173 route-map calculator permit 17645 match community 2_83_173 set community 0:14359 ip community-list standard 2_55_215 permit 65000:2 0:55 0:215 route-map calculator permit 17646 match community 2_55_215 set community 0:11825 ip community-list standard 2_112_205 permit 65000:2 0:112 0:205 ip community-list standard 2_140_164 permit 65000:2 0:140 0:164 route-map calculator permit 17647 match community 2_112_205 2_140_164 set community 0:22960 ip community-list standard 2_33_131 permit 65000:2 0:33 0:131 route-map calculator permit 17648 match community 2_33_131 set community 0:4323 ip community-list standard 2_152_251 permit 65000:2 0:152 0:251 route-map calculator permit 17649 match community 2_152_251 set community 0:38152 ip community-list standard 2_15_193 permit 65000:2 0:15 0:193 route-map calculator permit 17650 match community 2_15_193 set community 0:2895 ip community-list standard 2_129_199 permit 65000:2 0:129 0:199 route-map calculator permit 17651 match community 2_129_199 set community 0:25671 ip community-list standard 2_112_227 permit 65000:2 0:112 0:227 route-map calculator permit 17652 match community 2_112_227 set community 0:25424 ip community-list standard 2_13_97 permit 65000:2 0:13 0:97 route-map calculator permit 17653 match community 2_13_97 set community 0:1261 ip community-list standard 2_139_151 permit 65000:2 0:139 0:151 route-map calculator permit 17654 match community 2_139_151 set community 0:20989 ip community-list standard 2_18_214 permit 65000:2 0:18 0:214 ip community-list standard 2_36_107 permit 65000:2 0:36 0:107 route-map calculator permit 17655 match community 2_18_214 2_36_107 set community 0:3852 ip community-list standard 2_33_208 permit 65000:2 0:33 0:208 ip community-list standard 2_39_176 permit 65000:2 0:39 0:176 ip community-list standard 2_44_156 permit 65000:2 0:44 0:156 ip community-list standard 2_48_143 permit 65000:2 0:48 0:143 ip community-list standard 2_52_132 permit 65000:2 0:52 0:132 ip community-list standard 2_66_104 permit 65000:2 0:66 0:104 ip community-list standard 2_78_88 permit 65000:2 0:78 0:88 route-map calculator permit 17656 match community 2_33_208 2_39_176 2_44_156 2_48_143 2_52_132 set community 0:6864 route-map calculator permit 17657 match community 2_66_104 2_78_88 set community 0:6864 ip community-list standard 2_160_229 permit 65000:2 0:160 0:229 route-map calculator permit 17658 match community 2_160_229 set community 0:36640 ip community-list standard 2_126_149 permit 65000:2 0:126 0:149 route-map calculator permit 17659 match community 2_126_149 set community 0:18774 ip community-list standard 2_157_203 permit 65000:2 0:157 0:203 route-map calculator permit 17660 match community 2_157_203 set community 0:31871 ip community-list standard 2_175_228 permit 65000:2 0:175 0:228 ip community-list standard 2_190_210 permit 65000:2 0:190 0:210 route-map calculator permit 17661 match community 2_175_228 2_190_210 set community 0:39900 ip community-list standard 2_170_212 permit 65000:2 0:170 0:212 route-map calculator permit 17662 match community 2_170_212 set community 0:36040 ip community-list standard 2_64_253 permit 65000:2 0:64 0:253 ip community-list standard 2_88_184 permit 65000:2 0:88 0:184 ip community-list standard 2_92_176 permit 65000:2 0:92 0:176 route-map calculator permit 17663 match community 2_64_253 2_88_184 2_92_176 set community 0:16192 ip community-list standard 2_30_236 permit 65000:2 0:30 0:236 ip community-list standard 2_40_177 permit 65000:2 0:40 0:177 ip community-list standard 2_59_120 permit 65000:2 0:59 0:120 ip community-list standard 2_60_118 permit 65000:2 0:60 0:118 route-map calculator permit 17664 match community 2_30_236 2_40_177 2_59_120 2_60_118 set community 0:7080 ip community-list standard 2_20_181 permit 65000:2 0:20 0:181 route-map calculator permit 17665 match community 2_20_181 set community 0:3620 ip community-list standard 2_48_244 permit 65000:2 0:48 0:244 ip community-list standard 2_61_192 permit 65000:2 0:61 0:192 ip community-list standard 2_64_183 permit 65000:2 0:64 0:183 ip community-list standard 2_96_122 permit 65000:2 0:96 0:122 route-map calculator permit 17666 match community 2_48_244 2_61_192 2_64_183 2_96_122 set community 0:11712 ip community-list standard 2_139_197 permit 65000:2 0:139 0:197 route-map calculator permit 17667 match community 2_139_197 set community 0:27383 ip community-list standard 2_53_139 permit 65000:2 0:53 0:139 route-map calculator permit 17668 match community 2_53_139 set community 0:7367 ip community-list standard 2_162_179 permit 65000:2 0:162 0:179 route-map calculator permit 17669 match community 2_162_179 set community 0:28998 ip community-list standard 2_128_181 permit 65000:2 0:128 0:181 route-map calculator permit 17670 match community 2_128_181 set community 0:23168 ip community-list standard 2_46_182 permit 65000:2 0:46 0:182 ip community-list standard 2_52_161 permit 65000:2 0:52 0:161 ip community-list standard 2_91_92 permit 65000:2 0:91 0:92 route-map calculator permit 17671 match community 2_46_182 2_52_161 2_91_92 set community 0:8372 ip community-list standard 2_97_139 permit 65000:2 0:97 0:139 route-map calculator permit 17672 match community 2_97_139 set community 0:13483 ip community-list standard 2_142_219 permit 65000:2 0:142 0:219 ip community-list standard 2_146_213 permit 65000:2 0:146 0:213 route-map calculator permit 17673 match community 2_142_219 2_146_213 set community 0:31098 ip community-list standard 2_138_250 permit 65000:2 0:138 0:250 ip community-list standard 2_150_230 permit 65000:2 0:150 0:230 route-map calculator permit 17674 match community 2_138_250 2_150_230 set community 0:34500 ip community-list standard 2_37_234 permit 65000:2 0:37 0:234 ip community-list standard 2_39_222 permit 65000:2 0:39 0:222 ip community-list standard 2_74_117 permit 65000:2 0:74 0:117 ip community-list standard 2_78_111 permit 65000:2 0:78 0:111 route-map calculator permit 17675 match community 2_37_234 2_39_222 2_74_117 2_78_111 set community 0:8658 ip community-list standard 2_130_167 permit 65000:2 0:130 0:167 route-map calculator permit 17676 match community 2_130_167 set community 0:21710 ip community-list standard 2_73_125 permit 65000:2 0:73 0:125 route-map calculator permit 17677 match community 2_73_125 set community 0:9125 ip community-list standard 2_52_234 permit 65000:2 0:52 0:234 ip community-list standard 2_72_169 permit 65000:2 0:72 0:169 ip community-list standard 2_78_156 permit 65000:2 0:78 0:156 ip community-list standard 2_104_117 permit 65000:2 0:104 0:117 route-map calculator permit 17678 match community 2_52_234 2_72_169 2_78_156 2_104_117 set community 0:12168 ip community-list standard 2_32_198 permit 65000:2 0:32 0:198 ip community-list standard 2_33_192 permit 65000:2 0:33 0:192 ip community-list standard 2_36_176 permit 65000:2 0:36 0:176 ip community-list standard 2_44_144 permit 65000:2 0:44 0:144 ip community-list standard 2_48_132 permit 65000:2 0:48 0:132 ip community-list standard 2_64_99 permit 65000:2 0:64 0:99 ip community-list standard 2_66_96 permit 65000:2 0:66 0:96 ip community-list standard 2_72_88 permit 65000:2 0:72 0:88 route-map calculator permit 17679 match community 2_32_198 2_33_192 2_36_176 2_44_144 2_48_132 set community 0:6336 route-map calculator permit 17680 match community 2_64_99 2_66_96 2_72_88 set community 0:6336 ip community-list standard 2_239_256 permit 65000:2 0:239 0:256 route-map calculator permit 17681 match community 2_239_256 set community 0:61184 ip community-list standard 2_56_240 permit 65000:2 0:56 0:240 ip community-list standard 2_60_224 permit 65000:2 0:60 0:224 ip community-list standard 2_64_210 permit 65000:2 0:64 0:210 ip community-list standard 2_70_192 permit 65000:2 0:70 0:192 ip community-list standard 2_80_168 permit 65000:2 0:80 0:168 ip community-list standard 2_84_160 permit 65000:2 0:84 0:160 ip community-list standard 2_96_140 permit 65000:2 0:96 0:140 ip community-list standard 2_105_128 permit 65000:2 0:105 0:128 ip community-list standard 2_112_120 permit 65000:2 0:112 0:120 route-map calculator permit 17682 match community 2_56_240 2_60_224 2_64_210 2_70_192 2_80_168 set community 0:13440 route-map calculator permit 17683 match community 2_84_160 2_96_140 2_105_128 2_112_120 set community 0:13440 ip community-list standard 2_75_249 permit 65000:2 0:75 0:249 ip community-list standard 2_83_225 permit 65000:2 0:83 0:225 route-map calculator permit 17684 match community 2_75_249 2_83_225 set community 0:18675 ip community-list standard 2_75_197 permit 65000:2 0:75 0:197 route-map calculator permit 17685 match community 2_75_197 set community 0:14775 ip community-list standard 2_87_219 permit 65000:2 0:87 0:219 route-map calculator permit 17686 match community 2_87_219 set community 0:19053 ip community-list standard 2_239_250 permit 65000:2 0:239 0:250 route-map calculator permit 17687 match community 2_239_250 set community 0:59750 ip community-list standard 2_89_117 permit 65000:2 0:89 0:117 route-map calculator permit 17688 match community 2_89_117 set community 0:10413 ip community-list standard 2_135_167 permit 65000:2 0:135 0:167 route-map calculator permit 17689 match community 2_135_167 set community 0:22545 ip community-list standard 2_39_238 permit 65000:2 0:39 0:238 ip community-list standard 2_42_221 permit 65000:2 0:42 0:221 ip community-list standard 2_51_182 permit 65000:2 0:51 0:182 ip community-list standard 2_78_119 permit 65000:2 0:78 0:119 ip community-list standard 2_91_102 permit 65000:2 0:91 0:102 route-map calculator permit 17690 match community 2_39_238 2_42_221 2_51_182 2_78_119 2_91_102 set community 0:9282 ip community-list standard 2_13_124 permit 65000:2 0:13 0:124 ip community-list standard 2_26_62 permit 65000:2 0:26 0:62 ip community-list standard 2_31_52 permit 65000:2 0:31 0:52 route-map calculator permit 17691 match community 2_13_124 2_26_62 2_31_52 set community 0:1612 ip community-list standard 2_176_246 permit 65000:2 0:176 0:246 route-map calculator permit 17692 match community 2_176_246 set community 0:43296 ip community-list standard 2_130_218 permit 65000:2 0:130 0:218 route-map calculator permit 17693 match community 2_130_218 set community 0:28340 ip community-list standard 2_18_223 permit 65000:2 0:18 0:223 route-map calculator permit 17694 match community 2_18_223 set community 0:4014 ip community-list standard 2_3_119 permit 65000:2 0:3 0:119 ip community-list standard 2_7_51 permit 65000:2 0:7 0:51 ip community-list standard 2_17_21 permit 65000:2 0:17 0:21 ip community-list standard 1_101_256 permit 65000:1 0:101 0:256 ip community-list standard 1_102_255 permit 65000:1 0:102 0:255 ip community-list standard 1_103_254 permit 65000:1 0:103 0:254 ip community-list standard 1_104_253 permit 65000:1 0:104 0:253 ip community-list standard 1_105_252 permit 65000:1 0:105 0:252 ip community-list standard 1_106_251 permit 65000:1 0:106 0:251 ip community-list standard 1_107_250 permit 65000:1 0:107 0:250 ip community-list standard 1_108_249 permit 65000:1 0:108 0:249 ip community-list standard 1_109_248 permit 65000:1 0:109 0:248 ip community-list standard 1_110_247 permit 65000:1 0:110 0:247 ip community-list standard 1_111_246 permit 65000:1 0:111 0:246 ip community-list standard 1_112_245 permit 65000:1 0:112 0:245 ip community-list standard 1_113_244 permit 65000:1 0:113 0:244 ip community-list standard 1_114_243 permit 65000:1 0:114 0:243 ip community-list standard 1_115_242 permit 65000:1 0:115 0:242 ip community-list standard 1_116_241 permit 65000:1 0:116 0:241 ip community-list standard 1_117_240 permit 65000:1 0:117 0:240 ip community-list standard 1_118_239 permit 65000:1 0:118 0:239 ip community-list standard 1_119_238 permit 65000:1 0:119 0:238 ip community-list standard 1_120_237 permit 65000:1 0:120 0:237 ip community-list standard 1_121_236 permit 65000:1 0:121 0:236 ip community-list standard 1_122_235 permit 65000:1 0:122 0:235 ip community-list standard 1_123_234 permit 65000:1 0:123 0:234 ip community-list standard 1_124_233 permit 65000:1 0:124 0:233 ip community-list standard 1_125_232 permit 65000:1 0:125 0:232 ip community-list standard 1_126_231 permit 65000:1 0:126 0:231 ip community-list standard 1_127_230 permit 65000:1 0:127 0:230 ip community-list standard 1_128_229 permit 65000:1 0:128 0:229 ip community-list standard 1_129_228 permit 65000:1 0:129 0:228 ip community-list standard 1_130_227 permit 65000:1 0:130 0:227 ip community-list standard 1_131_226 permit 65000:1 0:131 0:226 ip community-list standard 1_132_225 permit 65000:1 0:132 0:225 ip community-list standard 1_133_224 permit 65000:1 0:133 0:224 ip community-list standard 1_134_223 permit 65000:1 0:134 0:223 ip community-list standard 1_135_222 permit 65000:1 0:135 0:222 ip community-list standard 1_136_221 permit 65000:1 0:136 0:221 ip community-list standard 1_137_220 permit 65000:1 0:137 0:220 ip community-list standard 1_138_219 permit 65000:1 0:138 0:219 ip community-list standard 1_139_218 permit 65000:1 0:139 0:218 ip community-list standard 1_140_217 permit 65000:1 0:140 0:217 ip community-list standard 1_141_216 permit 65000:1 0:141 0:216 ip community-list standard 1_142_215 permit 65000:1 0:142 0:215 ip community-list standard 1_143_214 permit 65000:1 0:143 0:214 ip community-list standard 1_144_213 permit 65000:1 0:144 0:213 ip community-list standard 1_145_212 permit 65000:1 0:145 0:212 ip community-list standard 1_146_211 permit 65000:1 0:146 0:211 ip community-list standard 1_147_210 permit 65000:1 0:147 0:210 ip community-list standard 1_148_209 permit 65000:1 0:148 0:209 ip community-list standard 1_149_208 permit 65000:1 0:149 0:208 ip community-list standard 1_150_207 permit 65000:1 0:150 0:207 ip community-list standard 1_151_206 permit 65000:1 0:151 0:206 ip community-list standard 1_152_205 permit 65000:1 0:152 0:205 ip community-list standard 1_153_204 permit 65000:1 0:153 0:204 ip community-list standard 1_154_203 permit 65000:1 0:154 0:203 ip community-list standard 1_155_202 permit 65000:1 0:155 0:202 ip community-list standard 1_156_201 permit 65000:1 0:156 0:201 ip community-list standard 1_157_200 permit 65000:1 0:157 0:200 ip community-list standard 1_158_199 permit 65000:1 0:158 0:199 ip community-list standard 1_159_198 permit 65000:1 0:159 0:198 ip community-list standard 1_160_197 permit 65000:1 0:160 0:197 ip community-list standard 1_161_196 permit 65000:1 0:161 0:196 ip community-list standard 1_162_195 permit 65000:1 0:162 0:195 ip community-list standard 1_163_194 permit 65000:1 0:163 0:194 ip community-list standard 1_164_193 permit 65000:1 0:164 0:193 ip community-list standard 1_165_192 permit 65000:1 0:165 0:192 ip community-list standard 1_166_191 permit 65000:1 0:166 0:191 ip community-list standard 1_167_190 permit 65000:1 0:167 0:190 ip community-list standard 1_168_189 permit 65000:1 0:168 0:189 ip community-list standard 1_169_188 permit 65000:1 0:169 0:188 ip community-list standard 1_170_187 permit 65000:1 0:170 0:187 ip community-list standard 1_171_186 permit 65000:1 0:171 0:186 ip community-list standard 1_172_185 permit 65000:1 0:172 0:185 ip community-list standard 1_173_184 permit 65000:1 0:173 0:184 ip community-list standard 1_174_183 permit 65000:1 0:174 0:183 ip community-list standard 1_175_182 permit 65000:1 0:175 0:182 ip community-list standard 1_176_181 permit 65000:1 0:176 0:181 ip community-list standard 1_177_180 permit 65000:1 0:177 0:180 ip community-list standard 1_178_179 permit 65000:1 0:178 0:179 route-map calculator permit 17695 match community 2_3_119 2_7_51 2_17_21 1_101_256 1_102_255 set community 0:357 route-map calculator permit 17696 match community 1_103_254 1_104_253 1_105_252 1_106_251 1_107_250 set community 0:357 route-map calculator permit 17697 match community 1_108_249 1_109_248 1_110_247 1_111_246 1_112_245 set community 0:357 route-map calculator permit 17698 match community 1_113_244 1_114_243 1_115_242 1_116_241 1_117_240 set community 0:357 route-map calculator permit 17699 match community 1_118_239 1_119_238 1_120_237 1_121_236 1_122_235 set community 0:357 route-map calculator permit 17700 match community 1_123_234 1_124_233 1_125_232 1_126_231 1_127_230 set community 0:357 route-map calculator permit 17701 match community 1_128_229 1_129_228 1_130_227 1_131_226 1_132_225 set community 0:357 route-map calculator permit 17702 match community 1_133_224 1_134_223 1_135_222 1_136_221 1_137_220 set community 0:357 route-map calculator permit 17703 match community 1_138_219 1_139_218 1_140_217 1_141_216 1_142_215 set community 0:357 route-map calculator permit 17704 match community 1_143_214 1_144_213 1_145_212 1_146_211 1_147_210 set community 0:357 route-map calculator permit 17705 match community 1_148_209 1_149_208 1_150_207 1_151_206 1_152_205 set community 0:357 route-map calculator permit 17706 match community 1_153_204 1_154_203 1_155_202 1_156_201 1_157_200 set community 0:357 route-map calculator permit 17707 match community 1_158_199 1_159_198 1_160_197 1_161_196 1_162_195 set community 0:357 route-map calculator permit 17708 match community 1_163_194 1_164_193 1_165_192 1_166_191 1_167_190 set community 0:357 route-map calculator permit 17709 match community 1_168_189 1_169_188 1_170_187 1_171_186 1_172_185 set community 0:357 route-map calculator permit 17710 match community 1_173_184 1_174_183 1_175_182 1_176_181 1_177_180 set community 0:357 route-map calculator permit 17711 match community 1_178_179 set community 0:357 ip community-list standard 2_149_242 permit 65000:2 0:149 0:242 route-map calculator permit 17712 match community 2_149_242 set community 0:36058 ip community-list standard 2_151_222 permit 65000:2 0:151 0:222 route-map calculator permit 17713 match community 2_151_222 set community 0:33522 ip community-list standard 2_200_252 permit 65000:2 0:200 0:252 ip community-list standard 2_210_240 permit 65000:2 0:210 0:240 ip community-list standard 2_224_225 permit 65000:2 0:224 0:225 route-map calculator permit 17714 match community 2_200_252 2_210_240 2_224_225 set community 0:50400 ip community-list standard 2_174_222 permit 65000:2 0:174 0:222 route-map calculator permit 17715 match community 2_174_222 set community 0:38628 ip community-list standard 2_82_221 permit 65000:2 0:82 0:221 route-map calculator permit 17716 match community 2_82_221 set community 0:18122 ip community-list standard 2_167_178 permit 65000:2 0:167 0:178 route-map calculator permit 17717 match community 2_167_178 set community 0:29726 ip community-list standard 2_47_237 permit 65000:2 0:47 0:237 ip community-list standard 2_79_141 permit 65000:2 0:79 0:141 route-map calculator permit 17718 match community 2_47_237 2_79_141 set community 0:11139 ip community-list standard 2_123_249 permit 65000:2 0:123 0:249 route-map calculator permit 17719 match community 2_123_249 set community 0:30627 ip community-list standard 2_58_231 permit 65000:2 0:58 0:231 ip community-list standard 2_66_203 permit 65000:2 0:66 0:203 ip community-list standard 2_77_174 permit 65000:2 0:77 0:174 ip community-list standard 2_87_154 permit 65000:2 0:87 0:154 route-map calculator permit 17720 match community 2_58_231 2_66_203 2_77_174 2_87_154 set community 0:13398 ip community-list standard 2_137_143 permit 65000:2 0:137 0:143 route-map calculator permit 17721 match community 2_137_143 set community 0:19591 ip community-list standard 2_172_252 permit 65000:2 0:172 0:252 route-map calculator permit 17722 match community 2_172_252 set community 0:43344 ip community-list standard 2_26_205 permit 65000:2 0:26 0:205 ip community-list standard 2_41_130 permit 65000:2 0:41 0:130 ip community-list standard 2_65_82 permit 65000:2 0:65 0:82 route-map calculator permit 17723 match community 2_26_205 2_41_130 2_65_82 set community 0:5330 ip community-list standard 2_39_202 permit 65000:2 0:39 0:202 ip community-list standard 2_78_101 permit 65000:2 0:78 0:101 route-map calculator permit 17724 match community 2_39_202 2_78_101 set community 0:7878 ip community-list standard 2_73_109 permit 65000:2 0:73 0:109 route-map calculator permit 17725 match community 2_73_109 set community 0:7957 ip community-list standard 2_8_179 permit 65000:2 0:8 0:179 route-map calculator permit 17726 match community 2_8_179 set community 0:1432 ip community-list standard 2_160_167 permit 65000:2 0:160 0:167 route-map calculator permit 17727 match community 2_160_167 set community 0:26720 ip community-list standard 2_241_244 permit 65000:2 0:241 0:244 route-map calculator permit 17728 match community 2_241_244 set community 0:58804 ip community-list standard 2_225_249 permit 65000:2 0:225 0:249 route-map calculator permit 17729 match community 2_225_249 set community 0:56025 ip community-list standard 2_93_121 permit 65000:2 0:93 0:121 route-map calculator permit 17730 match community 2_93_121 set community 0:11253 ip community-list standard 2_161_212 permit 65000:2 0:161 0:212 route-map calculator permit 17731 match community 2_161_212 set community 0:34132 ip community-list standard 2_155_234 permit 65000:2 0:155 0:234 ip community-list standard 2_186_195 permit 65000:2 0:186 0:195 route-map calculator permit 17732 match community 2_155_234 2_186_195 set community 0:36270 ip community-list standard 2_154_254 permit 65000:2 0:154 0:254 route-map calculator permit 17733 match community 2_154_254 set community 0:39116 ip community-list standard 2_156_230 permit 65000:2 0:156 0:230 ip community-list standard 2_184_195 permit 65000:2 0:184 0:195 route-map calculator permit 17734 match community 2_156_230 2_184_195 set community 0:35880 ip community-list standard 2_163_235 permit 65000:2 0:163 0:235 route-map calculator permit 17735 match community 2_163_235 set community 0:38305 ip community-list standard 2_235_235 permit 65000:2 0:235 0:235 route-map calculator permit 17736 match community 2_235_235 set community 0:55225 ip community-list standard 2_140_246 permit 65000:2 0:140 0:246 ip community-list standard 2_164_210 permit 65000:2 0:164 0:210 ip community-list standard 2_168_205 permit 65000:2 0:168 0:205 route-map calculator permit 17737 match community 2_140_246 2_164_210 2_168_205 set community 0:34440 ip community-list standard 2_74_191 permit 65000:2 0:74 0:191 route-map calculator permit 17738 match community 2_74_191 set community 0:14134 ip community-list standard 2_55_121 permit 65000:2 0:55 0:121 route-map calculator permit 17739 match community 2_55_121 set community 0:6655 ip community-list standard 2_148_203 permit 65000:2 0:148 0:203 route-map calculator permit 17740 match community 2_148_203 set community 0:30044 ip community-list standard 2_160_230 permit 65000:2 0:160 0:230 ip community-list standard 2_184_200 permit 65000:2 0:184 0:200 route-map calculator permit 17741 match community 2_160_230 2_184_200 set community 0:36800 ip community-list standard 2_156_255 permit 65000:2 0:156 0:255 ip community-list standard 2_170_234 permit 65000:2 0:170 0:234 ip community-list standard 2_180_221 permit 65000:2 0:180 0:221 ip community-list standard 2_195_204 permit 65000:2 0:195 0:204 route-map calculator permit 17742 match community 2_156_255 2_170_234 2_180_221 2_195_204 set community 0:39780 ip community-list standard 2_88_256 permit 65000:2 0:88 0:256 ip community-list standard 2_128_176 permit 65000:2 0:128 0:176 route-map calculator permit 17743 match community 2_88_256 2_128_176 set community 0:22528 ip community-list standard 2_91_203 permit 65000:2 0:91 0:203 route-map calculator permit 17744 match community 2_91_203 set community 0:18473 ip community-list standard 2_166_202 permit 65000:2 0:166 0:202 route-map calculator permit 17745 match community 2_166_202 set community 0:33532 ip community-list standard 2_195_202 permit 65000:2 0:195 0:202 route-map calculator permit 17746 match community 2_195_202 set community 0:39390 ip community-list standard 2_109_157 permit 65000:2 0:109 0:157 route-map calculator permit 17747 match community 2_109_157 set community 0:17113 ip community-list standard 2_40_254 permit 65000:2 0:40 0:254 ip community-list standard 2_80_127 permit 65000:2 0:80 0:127 route-map calculator permit 17748 match community 2_40_254 2_80_127 set community 0:10160 ip community-list standard 2_202_203 permit 65000:2 0:202 0:203 route-map calculator permit 17749 match community 2_202_203 set community 0:41006 ip community-list standard 2_207_219 permit 65000:2 0:207 0:219 route-map calculator permit 17750 match community 2_207_219 set community 0:45333 ip community-list standard 1_1_212 permit 65000:1 0:1 0:212 ip community-list standard 2_1_213 permit 65000:2 0:1 0:213 ip community-list standard 1_2_211 permit 65000:1 0:2 0:211 ip community-list standard 2_3_71 permit 65000:2 0:3 0:71 ip community-list standard 1_3_210 permit 65000:1 0:3 0:210 ip community-list standard 1_4_209 permit 65000:1 0:4 0:209 ip community-list standard 1_5_208 permit 65000:1 0:5 0:208 ip community-list standard 1_6_207 permit 65000:1 0:6 0:207 ip community-list standard 1_7_206 permit 65000:1 0:7 0:206 ip community-list standard 1_8_205 permit 65000:1 0:8 0:205 ip community-list standard 1_9_204 permit 65000:1 0:9 0:204 ip community-list standard 1_10_203 permit 65000:1 0:10 0:203 ip community-list standard 1_11_202 permit 65000:1 0:11 0:202 ip community-list standard 1_12_201 permit 65000:1 0:12 0:201 ip community-list standard 1_13_200 permit 65000:1 0:13 0:200 ip community-list standard 1_14_199 permit 65000:1 0:14 0:199 ip community-list standard 1_15_198 permit 65000:1 0:15 0:198 ip community-list standard 1_16_197 permit 65000:1 0:16 0:197 ip community-list standard 1_17_196 permit 65000:1 0:17 0:196 ip community-list standard 1_18_195 permit 65000:1 0:18 0:195 ip community-list standard 1_19_194 permit 65000:1 0:19 0:194 ip community-list standard 1_20_193 permit 65000:1 0:20 0:193 ip community-list standard 1_21_192 permit 65000:1 0:21 0:192 ip community-list standard 1_22_191 permit 65000:1 0:22 0:191 ip community-list standard 1_23_190 permit 65000:1 0:23 0:190 ip community-list standard 1_24_189 permit 65000:1 0:24 0:189 ip community-list standard 1_25_188 permit 65000:1 0:25 0:188 ip community-list standard 1_26_187 permit 65000:1 0:26 0:187 ip community-list standard 1_27_186 permit 65000:1 0:27 0:186 ip community-list standard 1_28_185 permit 65000:1 0:28 0:185 ip community-list standard 1_29_184 permit 65000:1 0:29 0:184 ip community-list standard 1_30_183 permit 65000:1 0:30 0:183 ip community-list standard 1_31_182 permit 65000:1 0:31 0:182 ip community-list standard 1_32_181 permit 65000:1 0:32 0:181 ip community-list standard 1_33_180 permit 65000:1 0:33 0:180 ip community-list standard 1_34_179 permit 65000:1 0:34 0:179 ip community-list standard 1_35_178 permit 65000:1 0:35 0:178 ip community-list standard 1_36_177 permit 65000:1 0:36 0:177 ip community-list standard 1_37_176 permit 65000:1 0:37 0:176 ip community-list standard 1_38_175 permit 65000:1 0:38 0:175 ip community-list standard 1_39_174 permit 65000:1 0:39 0:174 ip community-list standard 1_40_173 permit 65000:1 0:40 0:173 ip community-list standard 1_41_172 permit 65000:1 0:41 0:172 ip community-list standard 1_42_171 permit 65000:1 0:42 0:171 ip community-list standard 1_43_170 permit 65000:1 0:43 0:170 ip community-list standard 1_44_169 permit 65000:1 0:44 0:169 ip community-list standard 1_45_168 permit 65000:1 0:45 0:168 ip community-list standard 1_46_167 permit 65000:1 0:46 0:167 ip community-list standard 1_47_166 permit 65000:1 0:47 0:166 ip community-list standard 1_48_165 permit 65000:1 0:48 0:165 ip community-list standard 1_49_164 permit 65000:1 0:49 0:164 ip community-list standard 1_50_163 permit 65000:1 0:50 0:163 ip community-list standard 1_51_162 permit 65000:1 0:51 0:162 ip community-list standard 1_52_161 permit 65000:1 0:52 0:161 ip community-list standard 1_53_160 permit 65000:1 0:53 0:160 ip community-list standard 1_54_159 permit 65000:1 0:54 0:159 ip community-list standard 1_55_158 permit 65000:1 0:55 0:158 ip community-list standard 1_56_157 permit 65000:1 0:56 0:157 ip community-list standard 1_57_156 permit 65000:1 0:57 0:156 ip community-list standard 1_58_155 permit 65000:1 0:58 0:155 ip community-list standard 1_59_154 permit 65000:1 0:59 0:154 ip community-list standard 1_60_153 permit 65000:1 0:60 0:153 ip community-list standard 1_61_152 permit 65000:1 0:61 0:152 ip community-list standard 1_62_151 permit 65000:1 0:62 0:151 ip community-list standard 1_63_150 permit 65000:1 0:63 0:150 ip community-list standard 1_64_149 permit 65000:1 0:64 0:149 ip community-list standard 1_65_148 permit 65000:1 0:65 0:148 ip community-list standard 1_66_147 permit 65000:1 0:66 0:147 ip community-list standard 1_67_146 permit 65000:1 0:67 0:146 ip community-list standard 1_68_145 permit 65000:1 0:68 0:145 ip community-list standard 1_69_144 permit 65000:1 0:69 0:144 ip community-list standard 1_70_143 permit 65000:1 0:70 0:143 ip community-list standard 1_71_142 permit 65000:1 0:71 0:142 ip community-list standard 1_72_141 permit 65000:1 0:72 0:141 ip community-list standard 1_73_140 permit 65000:1 0:73 0:140 ip community-list standard 1_74_139 permit 65000:1 0:74 0:139 ip community-list standard 1_75_138 permit 65000:1 0:75 0:138 ip community-list standard 1_76_137 permit 65000:1 0:76 0:137 ip community-list standard 1_77_136 permit 65000:1 0:77 0:136 ip community-list standard 1_78_135 permit 65000:1 0:78 0:135 ip community-list standard 1_79_134 permit 65000:1 0:79 0:134 ip community-list standard 1_80_133 permit 65000:1 0:80 0:133 ip community-list standard 1_81_132 permit 65000:1 0:81 0:132 ip community-list standard 1_82_131 permit 65000:1 0:82 0:131 ip community-list standard 1_83_130 permit 65000:1 0:83 0:130 ip community-list standard 1_84_129 permit 65000:1 0:84 0:129 ip community-list standard 1_85_128 permit 65000:1 0:85 0:128 ip community-list standard 1_86_127 permit 65000:1 0:86 0:127 ip community-list standard 1_87_126 permit 65000:1 0:87 0:126 ip community-list standard 1_88_125 permit 65000:1 0:88 0:125 ip community-list standard 1_89_124 permit 65000:1 0:89 0:124 ip community-list standard 1_90_123 permit 65000:1 0:90 0:123 ip community-list standard 1_91_122 permit 65000:1 0:91 0:122 ip community-list standard 1_92_121 permit 65000:1 0:92 0:121 ip community-list standard 1_93_120 permit 65000:1 0:93 0:120 ip community-list standard 1_94_119 permit 65000:1 0:94 0:119 ip community-list standard 1_95_118 permit 65000:1 0:95 0:118 ip community-list standard 1_96_117 permit 65000:1 0:96 0:117 ip community-list standard 1_97_116 permit 65000:1 0:97 0:116 ip community-list standard 1_98_115 permit 65000:1 0:98 0:115 ip community-list standard 1_99_114 permit 65000:1 0:99 0:114 ip community-list standard 1_100_113 permit 65000:1 0:100 0:113 ip community-list standard 1_101_112 permit 65000:1 0:101 0:112 ip community-list standard 1_102_111 permit 65000:1 0:102 0:111 ip community-list standard 1_103_110 permit 65000:1 0:103 0:110 ip community-list standard 1_104_109 permit 65000:1 0:104 0:109 ip community-list standard 1_105_108 permit 65000:1 0:105 0:108 ip community-list standard 1_106_107 permit 65000:1 0:106 0:107 ip community-list expanded c213 permit 1 ^65000:4_0:213_0:1$ ip community-list expanded c213 permit 2 ^65000:3_0:214_0:1$ ip community-list expanded c213 permit 3 ^65000:3_0:215_0:2$ ip community-list expanded c213 permit 4 ^65000:3_0:216_0:3$ ip community-list expanded c213 permit 5 ^65000:3_0:217_0:4$ ip community-list expanded c213 permit 6 ^65000:3_0:218_0:5$ ip community-list expanded c213 permit 7 ^65000:3_0:219_0:6$ ip community-list expanded c213 permit 8 ^65000:3_0:220_0:7$ ip community-list expanded c213 permit 9 ^65000:3_0:221_0:8$ ip community-list expanded c213 permit 10 ^65000:3_0:222_0:9$ ip community-list expanded c213 permit 11 ^65000:3_0:223_0:10$ ip community-list expanded c213 permit 12 ^65000:3_0:224_0:11$ ip community-list expanded c213 permit 13 ^65000:3_0:225_0:12$ ip community-list expanded c213 permit 14 ^65000:3_0:226_0:13$ ip community-list expanded c213 permit 15 ^65000:3_0:227_0:14$ ip community-list expanded c213 permit 16 ^65000:3_0:228_0:15$ ip community-list expanded c213 permit 17 ^65000:3_0:229_0:16$ ip community-list expanded c213 permit 18 ^65000:3_0:230_0:17$ ip community-list expanded c213 permit 19 ^65000:3_0:231_0:18$ ip community-list expanded c213 permit 20 ^65000:3_0:232_0:19$ ip community-list expanded c213 permit 21 ^65000:3_0:233_0:20$ ip community-list expanded c213 permit 22 ^65000:3_0:234_0:21$ ip community-list expanded c213 permit 23 ^65000:3_0:235_0:22$ ip community-list expanded c213 permit 24 ^65000:3_0:236_0:23$ ip community-list expanded c213 permit 25 ^65000:3_0:237_0:24$ ip community-list expanded c213 permit 26 ^65000:3_0:238_0:25$ ip community-list expanded c213 permit 27 ^65000:3_0:239_0:26$ ip community-list expanded c213 permit 28 ^65000:3_0:240_0:27$ ip community-list expanded c213 permit 29 ^65000:3_0:241_0:28$ ip community-list expanded c213 permit 30 ^65000:3_0:242_0:29$ ip community-list expanded c213 permit 31 ^65000:3_0:243_0:30$ ip community-list expanded c213 permit 32 ^65000:3_0:244_0:31$ ip community-list expanded c213 permit 33 ^65000:3_0:245_0:32$ ip community-list expanded c213 permit 34 ^65000:3_0:246_0:33$ ip community-list expanded c213 permit 35 ^65000:3_0:247_0:34$ ip community-list expanded c213 permit 36 ^65000:3_0:248_0:35$ ip community-list expanded c213 permit 37 ^65000:3_0:249_0:36$ ip community-list expanded c213 permit 38 ^65000:3_0:250_0:37$ ip community-list expanded c213 permit 39 ^65000:3_0:251_0:38$ ip community-list expanded c213 permit 40 ^65000:3_0:252_0:39$ ip community-list expanded c213 permit 41 ^65000:3_0:253_0:40$ ip community-list expanded c213 permit 42 ^65000:3_0:254_0:41$ ip community-list expanded c213 permit 43 ^65000:3_0:255_0:42$ ip community-list expanded c213 permit 44 ^65000:3_0:256_0:43$ route-map calculator permit 17751 match community 1_1_212 2_1_213 1_2_211 2_3_71 1_3_210 set community 0:213 route-map calculator permit 17752 match community 1_4_209 1_5_208 1_6_207 1_7_206 1_8_205 set community 0:213 route-map calculator permit 17753 match community 1_9_204 1_10_203 1_11_202 1_12_201 1_13_200 set community 0:213 route-map calculator permit 17754 match community 1_14_199 1_15_198 1_16_197 1_17_196 1_18_195 set community 0:213 route-map calculator permit 17755 match community 1_19_194 1_20_193 1_21_192 1_22_191 1_23_190 set community 0:213 route-map calculator permit 17756 match community 1_24_189 1_25_188 1_26_187 1_27_186 1_28_185 set community 0:213 route-map calculator permit 17757 match community 1_29_184 1_30_183 1_31_182 1_32_181 1_33_180 set community 0:213 route-map calculator permit 17758 match community 1_34_179 1_35_178 1_36_177 1_37_176 1_38_175 set community 0:213 route-map calculator permit 17759 match community 1_39_174 1_40_173 1_41_172 1_42_171 1_43_170 set community 0:213 route-map calculator permit 17760 match community 1_44_169 1_45_168 1_46_167 1_47_166 1_48_165 set community 0:213 route-map calculator permit 17761 match community 1_49_164 1_50_163 1_51_162 1_52_161 1_53_160 set community 0:213 route-map calculator permit 17762 match community 1_54_159 1_55_158 1_56_157 1_57_156 1_58_155 set community 0:213 route-map calculator permit 17763 match community 1_59_154 1_60_153 1_61_152 1_62_151 1_63_150 set community 0:213 route-map calculator permit 17764 match community 1_64_149 1_65_148 1_66_147 1_67_146 1_68_145 set community 0:213 route-map calculator permit 17765 match community 1_69_144 1_70_143 1_71_142 1_72_141 1_73_140 set community 0:213 route-map calculator permit 17766 match community 1_74_139 1_75_138 1_76_137 1_77_136 1_78_135 set community 0:213 route-map calculator permit 17767 match community 1_79_134 1_80_133 1_81_132 1_82_131 1_83_130 set community 0:213 route-map calculator permit 17768 match community 1_84_129 1_85_128 1_86_127 1_87_126 1_88_125 set community 0:213 route-map calculator permit 17769 match community 1_89_124 1_90_123 1_91_122 1_92_121 1_93_120 set community 0:213 route-map calculator permit 17770 match community 1_94_119 1_95_118 1_96_117 1_97_116 1_98_115 set community 0:213 route-map calculator permit 17771 match community 1_99_114 1_100_113 1_101_112 1_102_111 1_103_110 set community 0:213 route-map calculator permit 17772 match community 1_104_109 1_105_108 1_106_107 c4_213_1 c3_214_1 set community 0:213 route-map calculator permit 17773 match community c3_215_2 c3_216_3 c3_217_4 c3_218_5 c3_219_6 set community 0:213 route-map calculator permit 17774 match community c3_220_7 c3_221_8 c3_222_9 c3_223_10 c3_224_11 set community 0:213 route-map calculator permit 17775 match community c3_225_12 c3_226_13 c3_227_14 c3_228_15 c3_229_16 set community 0:213 route-map calculator permit 17776 match community c3_230_17 c3_231_18 c3_232_19 c3_233_20 c3_234_21 set community 0:213 route-map calculator permit 17777 match community c3_235_22 c3_236_23 c3_237_24 c3_238_25 c3_239_26 set community 0:213 route-map calculator permit 17778 match community c3_240_27 c3_241_28 c3_242_29 c3_243_30 c3_244_31 set community 0:213 route-map calculator permit 17779 match community c3_245_32 c3_246_33 c3_247_34 c3_248_35 c3_249_36 set community 0:213 route-map calculator permit 17780 match community c3_250_37 c3_251_38 c3_252_39 c3_253_40 c3_254_41 set community 0:213 route-map calculator permit 17781 match community c3_255_42 c3_256_43 set community 0:213 ip community-list standard 2_215_215 permit 65000:2 0:215 0:215 route-map calculator permit 17782 match community 2_215_215 set community 0:46225 ip community-list standard 2_5_61 permit 65000:2 0:5 0:61 ip community-list standard 1_49_256 permit 65000:1 0:49 0:256 ip community-list standard 1_50_255 permit 65000:1 0:50 0:255 ip community-list standard 1_51_254 permit 65000:1 0:51 0:254 ip community-list standard 1_52_253 permit 65000:1 0:52 0:253 ip community-list standard 1_53_252 permit 65000:1 0:53 0:252 ip community-list standard 1_54_251 permit 65000:1 0:54 0:251 ip community-list standard 1_55_250 permit 65000:1 0:55 0:250 ip community-list standard 1_56_249 permit 65000:1 0:56 0:249 ip community-list standard 1_57_248 permit 65000:1 0:57 0:248 ip community-list standard 1_58_247 permit 65000:1 0:58 0:247 ip community-list standard 1_59_246 permit 65000:1 0:59 0:246 ip community-list standard 1_60_245 permit 65000:1 0:60 0:245 ip community-list standard 1_61_244 permit 65000:1 0:61 0:244 ip community-list standard 1_62_243 permit 65000:1 0:62 0:243 ip community-list standard 1_63_242 permit 65000:1 0:63 0:242 ip community-list standard 1_64_241 permit 65000:1 0:64 0:241 ip community-list standard 1_65_240 permit 65000:1 0:65 0:240 ip community-list standard 1_66_239 permit 65000:1 0:66 0:239 ip community-list standard 1_67_238 permit 65000:1 0:67 0:238 ip community-list standard 1_68_237 permit 65000:1 0:68 0:237 ip community-list standard 1_69_236 permit 65000:1 0:69 0:236 ip community-list standard 1_70_235 permit 65000:1 0:70 0:235 ip community-list standard 1_71_234 permit 65000:1 0:71 0:234 ip community-list standard 1_72_233 permit 65000:1 0:72 0:233 ip community-list standard 1_73_232 permit 65000:1 0:73 0:232 ip community-list standard 1_74_231 permit 65000:1 0:74 0:231 ip community-list standard 1_75_230 permit 65000:1 0:75 0:230 ip community-list standard 1_76_229 permit 65000:1 0:76 0:229 ip community-list standard 1_77_228 permit 65000:1 0:77 0:228 ip community-list standard 1_78_227 permit 65000:1 0:78 0:227 ip community-list standard 1_79_226 permit 65000:1 0:79 0:226 ip community-list standard 1_80_225 permit 65000:1 0:80 0:225 ip community-list standard 1_81_224 permit 65000:1 0:81 0:224 ip community-list standard 1_82_223 permit 65000:1 0:82 0:223 ip community-list standard 1_83_222 permit 65000:1 0:83 0:222 ip community-list standard 1_84_221 permit 65000:1 0:84 0:221 ip community-list standard 1_85_220 permit 65000:1 0:85 0:220 ip community-list standard 1_86_219 permit 65000:1 0:86 0:219 ip community-list standard 1_87_218 permit 65000:1 0:87 0:218 ip community-list standard 1_88_217 permit 65000:1 0:88 0:217 ip community-list standard 1_89_216 permit 65000:1 0:89 0:216 ip community-list standard 1_90_215 permit 65000:1 0:90 0:215 ip community-list standard 1_91_214 permit 65000:1 0:91 0:214 ip community-list standard 1_92_213 permit 65000:1 0:92 0:213 ip community-list standard 1_93_212 permit 65000:1 0:93 0:212 ip community-list standard 1_94_211 permit 65000:1 0:94 0:211 ip community-list standard 1_95_210 permit 65000:1 0:95 0:210 ip community-list standard 1_96_209 permit 65000:1 0:96 0:209 ip community-list standard 1_97_208 permit 65000:1 0:97 0:208 ip community-list standard 1_98_207 permit 65000:1 0:98 0:207 ip community-list standard 1_99_206 permit 65000:1 0:99 0:206 ip community-list standard 1_100_205 permit 65000:1 0:100 0:205 ip community-list standard 1_101_204 permit 65000:1 0:101 0:204 ip community-list standard 1_102_203 permit 65000:1 0:102 0:203 ip community-list standard 1_103_202 permit 65000:1 0:103 0:202 ip community-list standard 1_104_201 permit 65000:1 0:104 0:201 ip community-list standard 1_105_200 permit 65000:1 0:105 0:200 ip community-list standard 1_106_199 permit 65000:1 0:106 0:199 ip community-list standard 1_107_198 permit 65000:1 0:107 0:198 ip community-list standard 1_108_197 permit 65000:1 0:108 0:197 ip community-list standard 1_109_196 permit 65000:1 0:109 0:196 ip community-list standard 1_110_195 permit 65000:1 0:110 0:195 ip community-list standard 1_111_194 permit 65000:1 0:111 0:194 ip community-list standard 1_112_193 permit 65000:1 0:112 0:193 ip community-list standard 1_113_192 permit 65000:1 0:113 0:192 ip community-list standard 1_114_191 permit 65000:1 0:114 0:191 ip community-list standard 1_115_190 permit 65000:1 0:115 0:190 ip community-list standard 1_116_189 permit 65000:1 0:116 0:189 ip community-list standard 1_117_188 permit 65000:1 0:117 0:188 ip community-list standard 1_118_187 permit 65000:1 0:118 0:187 ip community-list standard 1_119_186 permit 65000:1 0:119 0:186 ip community-list standard 1_120_185 permit 65000:1 0:120 0:185 ip community-list standard 1_121_184 permit 65000:1 0:121 0:184 ip community-list standard 1_122_183 permit 65000:1 0:122 0:183 ip community-list standard 1_123_182 permit 65000:1 0:123 0:182 ip community-list standard 1_124_181 permit 65000:1 0:124 0:181 ip community-list standard 1_125_180 permit 65000:1 0:125 0:180 ip community-list standard 1_126_179 permit 65000:1 0:126 0:179 ip community-list standard 1_127_178 permit 65000:1 0:127 0:178 ip community-list standard 1_128_177 permit 65000:1 0:128 0:177 ip community-list standard 1_129_176 permit 65000:1 0:129 0:176 ip community-list standard 1_130_175 permit 65000:1 0:130 0:175 ip community-list standard 1_131_174 permit 65000:1 0:131 0:174 ip community-list standard 1_132_173 permit 65000:1 0:132 0:173 ip community-list standard 1_133_172 permit 65000:1 0:133 0:172 ip community-list standard 1_134_171 permit 65000:1 0:134 0:171 ip community-list standard 1_135_170 permit 65000:1 0:135 0:170 ip community-list standard 1_136_169 permit 65000:1 0:136 0:169 ip community-list standard 1_137_168 permit 65000:1 0:137 0:168 ip community-list standard 1_138_167 permit 65000:1 0:138 0:167 ip community-list standard 1_139_166 permit 65000:1 0:139 0:166 ip community-list standard 1_140_165 permit 65000:1 0:140 0:165 ip community-list standard 1_141_164 permit 65000:1 0:141 0:164 ip community-list standard 1_142_163 permit 65000:1 0:142 0:163 ip community-list standard 1_143_162 permit 65000:1 0:143 0:162 ip community-list standard 1_144_161 permit 65000:1 0:144 0:161 ip community-list standard 1_145_160 permit 65000:1 0:145 0:160 ip community-list standard 1_146_159 permit 65000:1 0:146 0:159 ip community-list standard 1_147_158 permit 65000:1 0:147 0:158 ip community-list standard 1_148_157 permit 65000:1 0:148 0:157 ip community-list standard 1_149_156 permit 65000:1 0:149 0:156 ip community-list standard 1_150_155 permit 65000:1 0:150 0:155 ip community-list standard 1_151_154 permit 65000:1 0:151 0:154 ip community-list standard 1_152_153 permit 65000:1 0:152 0:153 route-map calculator permit 17783 match community 2_5_61 1_49_256 1_50_255 1_51_254 1_52_253 set community 0:305 route-map calculator permit 17784 match community 1_53_252 1_54_251 1_55_250 1_56_249 1_57_248 set community 0:305 route-map calculator permit 17785 match community 1_58_247 1_59_246 1_60_245 1_61_244 1_62_243 set community 0:305 route-map calculator permit 17786 match community 1_63_242 1_64_241 1_65_240 1_66_239 1_67_238 set community 0:305 route-map calculator permit 17787 match community 1_68_237 1_69_236 1_70_235 1_71_234 1_72_233 set community 0:305 route-map calculator permit 17788 match community 1_73_232 1_74_231 1_75_230 1_76_229 1_77_228 set community 0:305 route-map calculator permit 17789 match community 1_78_227 1_79_226 1_80_225 1_81_224 1_82_223 set community 0:305 route-map calculator permit 17790 match community 1_83_222 1_84_221 1_85_220 1_86_219 1_87_218 set community 0:305 route-map calculator permit 17791 match community 1_88_217 1_89_216 1_90_215 1_91_214 1_92_213 set community 0:305 route-map calculator permit 17792 match community 1_93_212 1_94_211 1_95_210 1_96_209 1_97_208 set community 0:305 route-map calculator permit 17793 match community 1_98_207 1_99_206 1_100_205 1_101_204 1_102_203 set community 0:305 route-map calculator permit 17794 match community 1_103_202 1_104_201 1_105_200 1_106_199 1_107_198 set community 0:305 route-map calculator permit 17795 match community 1_108_197 1_109_196 1_110_195 1_111_194 1_112_193 set community 0:305 route-map calculator permit 17796 match community 1_113_192 1_114_191 1_115_190 1_116_189 1_117_188 set community 0:305 route-map calculator permit 17797 match community 1_118_187 1_119_186 1_120_185 1_121_184 1_122_183 set community 0:305 route-map calculator permit 17798 match community 1_123_182 1_124_181 1_125_180 1_126_179 1_127_178 set community 0:305 route-map calculator permit 17799 match community 1_128_177 1_129_176 1_130_175 1_131_174 1_132_173 set community 0:305 route-map calculator permit 17800 match community 1_133_172 1_134_171 1_135_170 1_136_169 1_137_168 set community 0:305 route-map calculator permit 17801 match community 1_138_167 1_139_166 1_140_165 1_141_164 1_142_163 set community 0:305 route-map calculator permit 17802 match community 1_143_162 1_144_161 1_145_160 1_146_159 1_147_158 set community 0:305 route-map calculator permit 17803 match community 1_148_157 1_149_156 1_150_155 1_151_154 1_152_153 set community 0:305 ip community-list standard 2_197_246 permit 65000:2 0:197 0:246 route-map calculator permit 17804 match community 2_197_246 set community 0:48462 ip community-list standard 2_218_235 permit 65000:2 0:218 0:235 route-map calculator permit 17805 match community 2_218_235 set community 0:51230 ip community-list standard 2_69_254 permit 65000:2 0:69 0:254 ip community-list standard 2_127_138 permit 65000:2 0:127 0:138 route-map calculator permit 17806 match community 2_69_254 2_127_138 set community 0:17526 ip community-list standard 2_174_178 permit 65000:2 0:174 0:178 route-map calculator permit 17807 match community 2_174_178 set community 0:30972 ip community-list standard 2_88_218 permit 65000:2 0:88 0:218 ip community-list standard 2_109_176 permit 65000:2 0:109 0:176 route-map calculator permit 17808 match community 2_88_218 2_109_176 set community 0:19184 ip community-list standard 2_24_149 permit 65000:2 0:24 0:149 route-map calculator permit 17809 match community 2_24_149 set community 0:3576 ip community-list standard 2_199_225 permit 65000:2 0:199 0:225 route-map calculator permit 17810 match community 2_199_225 set community 0:44775 ip community-list standard 2_19_228 permit 65000:2 0:19 0:228 ip community-list standard 2_38_114 permit 65000:2 0:38 0:114 ip community-list standard 2_57_76 permit 65000:2 0:57 0:76 route-map calculator permit 17811 match community 2_19_228 2_38_114 2_57_76 set community 0:4332 ip community-list standard 2_97_200 permit 65000:2 0:97 0:200 ip community-list standard 2_100_194 permit 65000:2 0:100 0:194 route-map calculator permit 17812 match community 2_97_200 2_100_194 set community 0:19400 ip community-list standard 2_196_232 permit 65000:2 0:196 0:232 ip community-list standard 2_203_224 permit 65000:2 0:203 0:224 route-map calculator permit 17813 match community 2_196_232 2_203_224 set community 0:45472 ip community-list standard 2_178_183 permit 65000:2 0:178 0:183 route-map calculator permit 17814 match community 2_178_183 set community 0:32574 ip community-list standard 2_2_248 permit 65000:2 0:2 0:248 ip community-list standard 2_4_124 permit 65000:2 0:4 0:124 ip community-list standard 2_8_62 permit 65000:2 0:8 0:62 ip community-list standard 2_16_31 permit 65000:2 0:16 0:31 ip community-list standard 1_240_256 permit 65000:1 0:240 0:256 ip community-list standard 1_241_255 permit 65000:1 0:241 0:255 ip community-list standard 1_242_254 permit 65000:1 0:242 0:254 ip community-list standard 1_243_253 permit 65000:1 0:243 0:253 ip community-list standard 1_244_252 permit 65000:1 0:244 0:252 ip community-list standard 1_245_251 permit 65000:1 0:245 0:251 ip community-list standard 1_246_250 permit 65000:1 0:246 0:250 ip community-list standard 1_247_249 permit 65000:1 0:247 0:249 ip community-list standard 1_248_248 permit 65000:1 0:248 0:248 route-map calculator permit 17815 match community 2_2_248 2_4_124 2_8_62 2_16_31 1_240_256 set community 0:496 route-map calculator permit 17816 match community 1_241_255 1_242_254 1_243_253 1_244_252 1_245_251 set community 0:496 route-map calculator permit 17817 match community 1_246_250 1_247_249 1_248_248 set community 0:496 ip community-list standard 2_157_241 permit 65000:2 0:157 0:241 route-map calculator permit 17818 match community 2_157_241 set community 0:37837 ip community-list standard 2_4_249 permit 65000:2 0:4 0:249 ip community-list standard 2_6_166 permit 65000:2 0:6 0:166 ip community-list standard 2_12_83 permit 65000:2 0:12 0:83 route-map calculator permit 17819 match community 2_4_249 2_6_166 2_12_83 set community 0:996 ip community-list standard 2_62_230 permit 65000:2 0:62 0:230 ip community-list standard 2_92_155 permit 65000:2 0:92 0:155 ip community-list standard 2_115_124 permit 65000:2 0:115 0:124 route-map calculator permit 17820 match community 2_62_230 2_92_155 2_115_124 set community 0:14260 ip community-list standard 2_11_148 permit 65000:2 0:11 0:148 ip community-list standard 2_22_74 permit 65000:2 0:22 0:74 ip community-list standard 2_37_44 permit 65000:2 0:37 0:44 route-map calculator permit 17821 match community 2_11_148 2_22_74 2_37_44 set community 0:1628 ip community-list standard 2_99_139 permit 65000:2 0:99 0:139 route-map calculator permit 17822 match community 2_99_139 set community 0:13761 ip community-list standard 2_34_158 permit 65000:2 0:34 0:158 ip community-list standard 2_68_79 permit 65000:2 0:68 0:79 route-map calculator permit 17823 match community 2_34_158 2_68_79 set community 0:5372 ip community-list standard 2_223_237 permit 65000:2 0:223 0:237 route-map calculator permit 17824 match community 2_223_237 set community 0:52851 ip community-list standard 2_141_248 permit 65000:2 0:141 0:248 ip community-list standard 2_186_188 permit 65000:2 0:186 0:188 route-map calculator permit 17825 match community 2_141_248 2_186_188 set community 0:34968 ip community-list standard 2_153_209 permit 65000:2 0:153 0:209 ip community-list standard 2_171_187 permit 65000:2 0:171 0:187 route-map calculator permit 17826 match community 2_153_209 2_171_187 set community 0:31977 ip community-list standard 1_1_228 permit 65000:1 0:1 0:228 ip community-list standard 2_1_229 permit 65000:2 0:1 0:229 ip community-list standard 1_2_227 permit 65000:1 0:2 0:227 ip community-list standard 1_3_226 permit 65000:1 0:3 0:226 ip community-list standard 1_4_225 permit 65000:1 0:4 0:225 ip community-list standard 1_5_224 permit 65000:1 0:5 0:224 ip community-list standard 1_6_223 permit 65000:1 0:6 0:223 ip community-list standard 1_7_222 permit 65000:1 0:7 0:222 ip community-list standard 1_8_221 permit 65000:1 0:8 0:221 ip community-list standard 1_9_220 permit 65000:1 0:9 0:220 ip community-list standard 1_10_219 permit 65000:1 0:10 0:219 ip community-list standard 1_11_218 permit 65000:1 0:11 0:218 ip community-list standard 1_12_217 permit 65000:1 0:12 0:217 ip community-list standard 1_13_216 permit 65000:1 0:13 0:216 ip community-list standard 1_14_215 permit 65000:1 0:14 0:215 ip community-list standard 1_15_214 permit 65000:1 0:15 0:214 ip community-list standard 1_16_213 permit 65000:1 0:16 0:213 ip community-list standard 1_17_212 permit 65000:1 0:17 0:212 ip community-list standard 1_18_211 permit 65000:1 0:18 0:211 ip community-list standard 1_19_210 permit 65000:1 0:19 0:210 ip community-list standard 1_20_209 permit 65000:1 0:20 0:209 ip community-list standard 1_21_208 permit 65000:1 0:21 0:208 ip community-list standard 1_22_207 permit 65000:1 0:22 0:207 ip community-list standard 1_23_206 permit 65000:1 0:23 0:206 ip community-list standard 1_24_205 permit 65000:1 0:24 0:205 ip community-list standard 1_25_204 permit 65000:1 0:25 0:204 ip community-list standard 1_26_203 permit 65000:1 0:26 0:203 ip community-list standard 1_27_202 permit 65000:1 0:27 0:202 ip community-list standard 1_28_201 permit 65000:1 0:28 0:201 ip community-list standard 1_29_200 permit 65000:1 0:29 0:200 ip community-list standard 1_30_199 permit 65000:1 0:30 0:199 ip community-list standard 1_31_198 permit 65000:1 0:31 0:198 ip community-list standard 1_32_197 permit 65000:1 0:32 0:197 ip community-list standard 1_33_196 permit 65000:1 0:33 0:196 ip community-list standard 1_34_195 permit 65000:1 0:34 0:195 ip community-list standard 1_35_194 permit 65000:1 0:35 0:194 ip community-list standard 1_36_193 permit 65000:1 0:36 0:193 ip community-list standard 1_37_192 permit 65000:1 0:37 0:192 ip community-list standard 1_38_191 permit 65000:1 0:38 0:191 ip community-list standard 1_39_190 permit 65000:1 0:39 0:190 ip community-list standard 1_40_189 permit 65000:1 0:40 0:189 ip community-list standard 1_41_188 permit 65000:1 0:41 0:188 ip community-list standard 1_42_187 permit 65000:1 0:42 0:187 ip community-list standard 1_43_186 permit 65000:1 0:43 0:186 ip community-list standard 1_44_185 permit 65000:1 0:44 0:185 ip community-list standard 1_45_184 permit 65000:1 0:45 0:184 ip community-list standard 1_46_183 permit 65000:1 0:46 0:183 ip community-list standard 1_47_182 permit 65000:1 0:47 0:182 ip community-list standard 1_48_181 permit 65000:1 0:48 0:181 ip community-list standard 1_49_180 permit 65000:1 0:49 0:180 ip community-list standard 1_50_179 permit 65000:1 0:50 0:179 ip community-list standard 1_51_178 permit 65000:1 0:51 0:178 ip community-list standard 1_52_177 permit 65000:1 0:52 0:177 ip community-list standard 1_53_176 permit 65000:1 0:53 0:176 ip community-list standard 1_54_175 permit 65000:1 0:54 0:175 ip community-list standard 1_55_174 permit 65000:1 0:55 0:174 ip community-list standard 1_56_173 permit 65000:1 0:56 0:173 ip community-list standard 1_57_172 permit 65000:1 0:57 0:172 ip community-list standard 1_58_171 permit 65000:1 0:58 0:171 ip community-list standard 1_59_170 permit 65000:1 0:59 0:170 ip community-list standard 1_60_169 permit 65000:1 0:60 0:169 ip community-list standard 1_61_168 permit 65000:1 0:61 0:168 ip community-list standard 1_62_167 permit 65000:1 0:62 0:167 ip community-list standard 1_63_166 permit 65000:1 0:63 0:166 ip community-list standard 1_64_165 permit 65000:1 0:64 0:165 ip community-list standard 1_65_164 permit 65000:1 0:65 0:164 ip community-list standard 1_66_163 permit 65000:1 0:66 0:163 ip community-list standard 1_67_162 permit 65000:1 0:67 0:162 ip community-list standard 1_68_161 permit 65000:1 0:68 0:161 ip community-list standard 1_69_160 permit 65000:1 0:69 0:160 ip community-list standard 1_70_159 permit 65000:1 0:70 0:159 ip community-list standard 1_71_158 permit 65000:1 0:71 0:158 ip community-list standard 1_72_157 permit 65000:1 0:72 0:157 ip community-list standard 1_73_156 permit 65000:1 0:73 0:156 ip community-list standard 1_74_155 permit 65000:1 0:74 0:155 ip community-list standard 1_75_154 permit 65000:1 0:75 0:154 ip community-list standard 1_76_153 permit 65000:1 0:76 0:153 ip community-list standard 1_77_152 permit 65000:1 0:77 0:152 ip community-list standard 1_78_151 permit 65000:1 0:78 0:151 ip community-list standard 1_79_150 permit 65000:1 0:79 0:150 ip community-list standard 1_80_149 permit 65000:1 0:80 0:149 ip community-list standard 1_81_148 permit 65000:1 0:81 0:148 ip community-list standard 1_82_147 permit 65000:1 0:82 0:147 ip community-list standard 1_83_146 permit 65000:1 0:83 0:146 ip community-list standard 1_84_145 permit 65000:1 0:84 0:145 ip community-list standard 1_85_144 permit 65000:1 0:85 0:144 ip community-list standard 1_86_143 permit 65000:1 0:86 0:143 ip community-list standard 1_87_142 permit 65000:1 0:87 0:142 ip community-list standard 1_88_141 permit 65000:1 0:88 0:141 ip community-list standard 1_89_140 permit 65000:1 0:89 0:140 ip community-list standard 1_90_139 permit 65000:1 0:90 0:139 ip community-list standard 1_91_138 permit 65000:1 0:91 0:138 ip community-list standard 1_92_137 permit 65000:1 0:92 0:137 ip community-list standard 1_93_136 permit 65000:1 0:93 0:136 ip community-list standard 1_94_135 permit 65000:1 0:94 0:135 ip community-list standard 1_95_134 permit 65000:1 0:95 0:134 ip community-list standard 1_96_133 permit 65000:1 0:96 0:133 ip community-list standard 1_97_132 permit 65000:1 0:97 0:132 ip community-list standard 1_98_131 permit 65000:1 0:98 0:131 ip community-list standard 1_99_130 permit 65000:1 0:99 0:130 ip community-list standard 1_100_129 permit 65000:1 0:100 0:129 ip community-list standard 1_101_128 permit 65000:1 0:101 0:128 ip community-list standard 1_102_127 permit 65000:1 0:102 0:127 ip community-list standard 1_103_126 permit 65000:1 0:103 0:126 ip community-list standard 1_104_125 permit 65000:1 0:104 0:125 ip community-list standard 1_105_124 permit 65000:1 0:105 0:124 ip community-list standard 1_106_123 permit 65000:1 0:106 0:123 ip community-list standard 1_107_122 permit 65000:1 0:107 0:122 ip community-list standard 1_108_121 permit 65000:1 0:108 0:121 ip community-list standard 1_109_120 permit 65000:1 0:109 0:120 ip community-list standard 1_110_119 permit 65000:1 0:110 0:119 ip community-list standard 1_111_118 permit 65000:1 0:111 0:118 ip community-list standard 1_112_117 permit 65000:1 0:112 0:117 ip community-list standard 1_113_116 permit 65000:1 0:113 0:116 ip community-list standard 1_114_115 permit 65000:1 0:114 0:115 ip community-list expanded c229 permit 1 ^65000:4_0:229_0:1$ ip community-list expanded c229 permit 2 ^65000:3_0:230_0:1$ ip community-list expanded c229 permit 3 ^65000:3_0:231_0:2$ ip community-list expanded c229 permit 4 ^65000:3_0:232_0:3$ ip community-list expanded c229 permit 5 ^65000:3_0:233_0:4$ ip community-list expanded c229 permit 6 ^65000:3_0:234_0:5$ ip community-list expanded c229 permit 7 ^65000:3_0:235_0:6$ ip community-list expanded c229 permit 8 ^65000:3_0:236_0:7$ ip community-list expanded c229 permit 9 ^65000:3_0:237_0:8$ ip community-list expanded c229 permit 10 ^65000:3_0:238_0:9$ ip community-list expanded c229 permit 11 ^65000:3_0:239_0:10$ ip community-list expanded c229 permit 12 ^65000:3_0:240_0:11$ ip community-list expanded c229 permit 13 ^65000:3_0:241_0:12$ ip community-list expanded c229 permit 14 ^65000:3_0:242_0:13$ ip community-list expanded c229 permit 15 ^65000:3_0:243_0:14$ ip community-list expanded c229 permit 16 ^65000:3_0:244_0:15$ ip community-list expanded c229 permit 17 ^65000:3_0:245_0:16$ ip community-list expanded c229 permit 18 ^65000:3_0:246_0:17$ ip community-list expanded c229 permit 19 ^65000:3_0:247_0:18$ ip community-list expanded c229 permit 20 ^65000:3_0:248_0:19$ ip community-list expanded c229 permit 21 ^65000:3_0:249_0:20$ ip community-list expanded c229 permit 22 ^65000:3_0:250_0:21$ ip community-list expanded c229 permit 23 ^65000:3_0:251_0:22$ ip community-list expanded c229 permit 24 ^65000:3_0:252_0:23$ ip community-list expanded c229 permit 25 ^65000:3_0:253_0:24$ ip community-list expanded c229 permit 26 ^65000:3_0:254_0:25$ ip community-list expanded c229 permit 27 ^65000:3_0:255_0:26$ ip community-list expanded c229 permit 28 ^65000:3_0:256_0:27$ route-map calculator permit 17827 match community 1_1_228 2_1_229 1_2_227 1_3_226 1_4_225 set community 0:229 route-map calculator permit 17828 match community 1_5_224 1_6_223 1_7_222 1_8_221 1_9_220 set community 0:229 route-map calculator permit 17829 match community 1_10_219 1_11_218 1_12_217 1_13_216 1_14_215 set community 0:229 route-map calculator permit 17830 match community 1_15_214 1_16_213 1_17_212 1_18_211 1_19_210 set community 0:229 route-map calculator permit 17831 match community 1_20_209 1_21_208 1_22_207 1_23_206 1_24_205 set community 0:229 route-map calculator permit 17832 match community 1_25_204 1_26_203 1_27_202 1_28_201 1_29_200 set community 0:229 route-map calculator permit 17833 match community 1_30_199 1_31_198 1_32_197 1_33_196 1_34_195 set community 0:229 route-map calculator permit 17834 match community 1_35_194 1_36_193 1_37_192 1_38_191 1_39_190 set community 0:229 route-map calculator permit 17835 match community 1_40_189 1_41_188 1_42_187 1_43_186 1_44_185 set community 0:229 route-map calculator permit 17836 match community 1_45_184 1_46_183 1_47_182 1_48_181 1_49_180 set community 0:229 route-map calculator permit 17837 match community 1_50_179 1_51_178 1_52_177 1_53_176 1_54_175 set community 0:229 route-map calculator permit 17838 match community 1_55_174 1_56_173 1_57_172 1_58_171 1_59_170 set community 0:229 route-map calculator permit 17839 match community 1_60_169 1_61_168 1_62_167 1_63_166 1_64_165 set community 0:229 route-map calculator permit 17840 match community 1_65_164 1_66_163 1_67_162 1_68_161 1_69_160 set community 0:229 route-map calculator permit 17841 match community 1_70_159 1_71_158 1_72_157 1_73_156 1_74_155 set community 0:229 route-map calculator permit 17842 match community 1_75_154 1_76_153 1_77_152 1_78_151 1_79_150 set community 0:229 route-map calculator permit 17843 match community 1_80_149 1_81_148 1_82_147 1_83_146 1_84_145 set community 0:229 route-map calculator permit 17844 match community 1_85_144 1_86_143 1_87_142 1_88_141 1_89_140 set community 0:229 route-map calculator permit 17845 match community 1_90_139 1_91_138 1_92_137 1_93_136 1_94_135 set community 0:229 route-map calculator permit 17846 match community 1_95_134 1_96_133 1_97_132 1_98_131 1_99_130 set community 0:229 route-map calculator permit 17847 match community 1_100_129 1_101_128 1_102_127 1_103_126 1_104_125 set community 0:229 route-map calculator permit 17848 match community 1_105_124 1_106_123 1_107_122 1_108_121 1_109_120 set community 0:229 route-map calculator permit 17849 match community 1_110_119 1_111_118 1_112_117 1_113_116 1_114_115 set community 0:229 route-map calculator permit 17850 match community c4_229_1 c3_230_1 c3_231_2 c3_232_3 c3_233_4 set community 0:229 route-map calculator permit 17851 match community c3_234_5 c3_235_6 c3_236_7 c3_237_8 c3_238_9 set community 0:229 route-map calculator permit 17852 match community c3_239_10 c3_240_11 c3_241_12 c3_242_13 c3_243_14 set community 0:229 route-map calculator permit 17853 match community c3_244_15 c3_245_16 c3_246_17 c3_247_18 c3_248_19 set community 0:229 route-map calculator permit 17854 match community c3_249_20 c3_250_21 c3_251_22 c3_252_23 c3_253_24 set community 0:229 route-map calculator permit 17855 match community c3_254_25 c3_255_26 c3_256_27 set community 0:229 ip community-list standard 2_89_121 permit 65000:2 0:89 0:121 route-map calculator permit 17856 match community 2_89_121 set community 0:10769 ip community-list standard 2_138_212 permit 65000:2 0:138 0:212 ip community-list standard 2_159_184 permit 65000:2 0:159 0:184 route-map calculator permit 17857 match community 2_138_212 2_159_184 set community 0:29256 ip community-list standard 2_93_222 permit 65000:2 0:93 0:222 ip community-list standard 2_111_186 permit 65000:2 0:111 0:186 route-map calculator permit 17858 match community 2_93_222 2_111_186 set community 0:20646 ip community-list standard 2_17_85 permit 65000:2 0:17 0:85 route-map calculator permit 17859 match community 2_17_85 set community 0:1445 ip community-list standard 2_24_215 permit 65000:2 0:24 0:215 ip community-list standard 2_30_172 permit 65000:2 0:30 0:172 ip community-list standard 2_40_129 permit 65000:2 0:40 0:129 ip community-list standard 2_43_120 permit 65000:2 0:43 0:120 ip community-list standard 2_60_86 permit 65000:2 0:60 0:86 route-map calculator permit 17860 match community 2_24_215 2_30_172 2_40_129 2_43_120 2_60_86 set community 0:5160 ip community-list standard 2_86_227 permit 65000:2 0:86 0:227 route-map calculator permit 17861 match community 2_86_227 set community 0:19522 ip community-list standard 2_71_181 permit 65000:2 0:71 0:181 route-map calculator permit 17862 match community 2_71_181 set community 0:12851 ip community-list standard 2_108_139 permit 65000:2 0:108 0:139 route-map calculator permit 17863 match community 2_108_139 set community 0:15012 ip community-list standard 2_141_226 permit 65000:2 0:141 0:226 route-map calculator permit 17864 match community 2_141_226 set community 0:31866 ip community-list standard 2_151_227 permit 65000:2 0:151 0:227 route-map calculator permit 17865 match community 2_151_227 set community 0:34277 ip community-list standard 2_238_247 permit 65000:2 0:238 0:247 route-map calculator permit 17866 match community 2_238_247 set community 0:58786 ip community-list standard 2_111_231 permit 65000:2 0:111 0:231 route-map calculator permit 17867 match community 2_111_231 set community 0:25641 ip community-list standard 2_126_199 permit 65000:2 0:126 0:199 route-map calculator permit 17868 match community 2_126_199 set community 0:25074 ip community-list standard 2_148_229 permit 65000:2 0:148 0:229 route-map calculator permit 17869 match community 2_148_229 set community 0:33892 ip community-list standard 2_27_123 permit 65000:2 0:27 0:123 ip community-list standard 2_41_81 permit 65000:2 0:41 0:81 route-map calculator permit 17870 match community 2_27_123 2_41_81 set community 0:3321 ip community-list standard 2_73_83 permit 65000:2 0:73 0:83 route-map calculator permit 17871 match community 2_73_83 set community 0:6059 ip community-list standard 2_150_223 permit 65000:2 0:150 0:223 route-map calculator permit 17872 match community 2_150_223 set community 0:33450 ip community-list standard 2_37_219 permit 65000:2 0:37 0:219 ip community-list standard 2_73_111 permit 65000:2 0:73 0:111 route-map calculator permit 17873 match community 2_37_219 2_73_111 set community 0:8103 ip community-list standard 1_1_101 permit 65000:1 0:1 0:101 ip community-list standard 2_1_102 permit 65000:2 0:1 0:102 ip community-list standard 2_2_51 permit 65000:2 0:2 0:51 ip community-list standard 1_2_100 permit 65000:1 0:2 0:100 ip community-list standard 2_3_34 permit 65000:2 0:3 0:34 ip community-list standard 1_3_99 permit 65000:1 0:3 0:99 ip community-list standard 1_4_98 permit 65000:1 0:4 0:98 ip community-list standard 1_5_97 permit 65000:1 0:5 0:97 ip community-list standard 2_6_17 permit 65000:2 0:6 0:17 ip community-list standard 1_6_96 permit 65000:1 0:6 0:96 ip community-list standard 1_7_95 permit 65000:1 0:7 0:95 ip community-list standard 1_8_94 permit 65000:1 0:8 0:94 ip community-list standard 1_9_93 permit 65000:1 0:9 0:93 ip community-list standard 1_10_92 permit 65000:1 0:10 0:92 ip community-list standard 1_11_91 permit 65000:1 0:11 0:91 ip community-list standard 1_12_90 permit 65000:1 0:12 0:90 ip community-list standard 1_13_89 permit 65000:1 0:13 0:89 ip community-list standard 1_14_88 permit 65000:1 0:14 0:88 ip community-list standard 1_15_87 permit 65000:1 0:15 0:87 ip community-list standard 1_16_86 permit 65000:1 0:16 0:86 ip community-list standard 1_17_85 permit 65000:1 0:17 0:85 ip community-list standard 1_18_84 permit 65000:1 0:18 0:84 ip community-list standard 1_19_83 permit 65000:1 0:19 0:83 ip community-list standard 1_20_82 permit 65000:1 0:20 0:82 ip community-list standard 1_21_81 permit 65000:1 0:21 0:81 ip community-list standard 1_22_80 permit 65000:1 0:22 0:80 ip community-list standard 1_23_79 permit 65000:1 0:23 0:79 ip community-list standard 1_24_78 permit 65000:1 0:24 0:78 ip community-list standard 1_25_77 permit 65000:1 0:25 0:77 ip community-list standard 1_26_76 permit 65000:1 0:26 0:76 ip community-list standard 1_27_75 permit 65000:1 0:27 0:75 ip community-list standard 1_28_74 permit 65000:1 0:28 0:74 ip community-list standard 1_29_73 permit 65000:1 0:29 0:73 ip community-list standard 1_30_72 permit 65000:1 0:30 0:72 ip community-list standard 1_31_71 permit 65000:1 0:31 0:71 ip community-list standard 1_32_70 permit 65000:1 0:32 0:70 ip community-list standard 1_33_69 permit 65000:1 0:33 0:69 ip community-list standard 1_34_68 permit 65000:1 0:34 0:68 ip community-list standard 1_35_67 permit 65000:1 0:35 0:67 ip community-list standard 1_36_66 permit 65000:1 0:36 0:66 ip community-list standard 1_37_65 permit 65000:1 0:37 0:65 ip community-list standard 1_38_64 permit 65000:1 0:38 0:64 ip community-list standard 1_39_63 permit 65000:1 0:39 0:63 ip community-list standard 1_40_62 permit 65000:1 0:40 0:62 ip community-list standard 1_41_61 permit 65000:1 0:41 0:61 ip community-list standard 1_42_60 permit 65000:1 0:42 0:60 ip community-list standard 1_43_59 permit 65000:1 0:43 0:59 ip community-list standard 1_44_58 permit 65000:1 0:44 0:58 ip community-list standard 1_45_57 permit 65000:1 0:45 0:57 ip community-list standard 1_46_56 permit 65000:1 0:46 0:56 ip community-list standard 1_47_55 permit 65000:1 0:47 0:55 ip community-list standard 1_48_54 permit 65000:1 0:48 0:54 ip community-list standard 1_49_53 permit 65000:1 0:49 0:53 ip community-list standard 1_50_52 permit 65000:1 0:50 0:52 ip community-list standard 1_51_51 permit 65000:1 0:51 0:51 ip community-list expanded c102 permit 1 ^65000:4_0:102_0:1$ ip community-list expanded c102 permit 2 ^65000:3_0:103_0:1$ ip community-list expanded c102 permit 3 ^65000:3_0:104_0:2$ ip community-list expanded c102 permit 4 ^65000:3_0:105_0:3$ ip community-list expanded c102 permit 5 ^65000:3_0:106_0:4$ ip community-list expanded c102 permit 6 ^65000:3_0:107_0:5$ ip community-list expanded c102 permit 7 ^65000:3_0:108_0:6$ ip community-list expanded c102 permit 8 ^65000:3_0:109_0:7$ ip community-list expanded c102 permit 9 ^65000:3_0:110_0:8$ ip community-list expanded c102 permit 10 ^65000:3_0:111_0:9$ ip community-list expanded c102 permit 11 ^65000:3_0:112_0:10$ ip community-list expanded c102 permit 12 ^65000:3_0:113_0:11$ ip community-list expanded c102 permit 13 ^65000:3_0:114_0:12$ ip community-list expanded c102 permit 14 ^65000:3_0:115_0:13$ ip community-list expanded c102 permit 15 ^65000:3_0:116_0:14$ ip community-list expanded c102 permit 16 ^65000:3_0:117_0:15$ ip community-list expanded c102 permit 17 ^65000:3_0:118_0:16$ ip community-list expanded c102 permit 18 ^65000:3_0:119_0:17$ ip community-list expanded c102 permit 19 ^65000:3_0:120_0:18$ ip community-list expanded c102 permit 20 ^65000:3_0:121_0:19$ ip community-list expanded c102 permit 21 ^65000:3_0:122_0:20$ ip community-list expanded c102 permit 22 ^65000:3_0:123_0:21$ ip community-list expanded c102 permit 23 ^65000:3_0:124_0:22$ ip community-list expanded c102 permit 24 ^65000:3_0:125_0:23$ ip community-list expanded c102 permit 25 ^65000:3_0:126_0:24$ ip community-list expanded c102 permit 26 ^65000:3_0:127_0:25$ ip community-list expanded c102 permit 27 ^65000:3_0:128_0:26$ ip community-list expanded c102 permit 28 ^65000:3_0:129_0:27$ ip community-list expanded c102 permit 29 ^65000:3_0:130_0:28$ ip community-list expanded c102 permit 30 ^65000:3_0:131_0:29$ ip community-list expanded c102 permit 31 ^65000:3_0:132_0:30$ ip community-list expanded c102 permit 32 ^65000:3_0:133_0:31$ ip community-list expanded c102 permit 33 ^65000:3_0:134_0:32$ ip community-list expanded c102 permit 34 ^65000:3_0:135_0:33$ ip community-list expanded c102 permit 35 ^65000:3_0:136_0:34$ ip community-list expanded c102 permit 36 ^65000:3_0:137_0:35$ ip community-list expanded c102 permit 37 ^65000:3_0:138_0:36$ ip community-list expanded c102 permit 38 ^65000:3_0:139_0:37$ ip community-list expanded c102 permit 39 ^65000:3_0:140_0:38$ ip community-list expanded c102 permit 40 ^65000:3_0:141_0:39$ ip community-list expanded c102 permit 41 ^65000:3_0:142_0:40$ ip community-list expanded c102 permit 42 ^65000:3_0:143_0:41$ ip community-list expanded c102 permit 43 ^65000:3_0:144_0:42$ ip community-list expanded c102 permit 44 ^65000:3_0:145_0:43$ ip community-list expanded c102 permit 45 ^65000:3_0:146_0:44$ ip community-list expanded c102 permit 46 ^65000:3_0:147_0:45$ ip community-list expanded c102 permit 47 ^65000:3_0:148_0:46$ ip community-list expanded c102 permit 48 ^65000:3_0:149_0:47$ ip community-list expanded c102 permit 49 ^65000:3_0:150_0:48$ ip community-list expanded c102 permit 50 ^65000:3_0:151_0:49$ ip community-list expanded c102 permit 51 ^65000:3_0:152_0:50$ ip community-list expanded c102 permit 52 ^65000:3_0:153_0:51$ ip community-list expanded c102 permit 53 ^65000:3_0:154_0:52$ ip community-list expanded c102 permit 54 ^65000:3_0:155_0:53$ ip community-list expanded c102 permit 55 ^65000:3_0:156_0:54$ ip community-list expanded c102 permit 56 ^65000:3_0:157_0:55$ ip community-list expanded c102 permit 57 ^65000:3_0:158_0:56$ ip community-list expanded c102 permit 58 ^65000:3_0:159_0:57$ ip community-list expanded c102 permit 59 ^65000:3_0:160_0:58$ ip community-list expanded c102 permit 60 ^65000:3_0:161_0:59$ ip community-list expanded c102 permit 61 ^65000:3_0:162_0:60$ ip community-list expanded c102 permit 62 ^65000:3_0:163_0:61$ ip community-list expanded c102 permit 63 ^65000:3_0:164_0:62$ ip community-list expanded c102 permit 64 ^65000:3_0:165_0:63$ ip community-list expanded c102 permit 65 ^65000:3_0:166_0:64$ ip community-list expanded c102 permit 66 ^65000:3_0:167_0:65$ ip community-list expanded c102 permit 67 ^65000:3_0:168_0:66$ ip community-list expanded c102 permit 68 ^65000:3_0:169_0:67$ ip community-list expanded c102 permit 69 ^65000:3_0:170_0:68$ ip community-list expanded c102 permit 70 ^65000:3_0:171_0:69$ ip community-list expanded c102 permit 71 ^65000:3_0:172_0:70$ ip community-list expanded c102 permit 72 ^65000:3_0:173_0:71$ ip community-list expanded c102 permit 73 ^65000:3_0:174_0:72$ ip community-list expanded c102 permit 74 ^65000:3_0:175_0:73$ ip community-list expanded c102 permit 75 ^65000:3_0:176_0:74$ ip community-list expanded c102 permit 76 ^65000:3_0:177_0:75$ ip community-list expanded c102 permit 77 ^65000:3_0:178_0:76$ ip community-list expanded c102 permit 78 ^65000:3_0:179_0:77$ ip community-list expanded c102 permit 79 ^65000:3_0:180_0:78$ ip community-list expanded c102 permit 80 ^65000:3_0:181_0:79$ ip community-list expanded c102 permit 81 ^65000:3_0:182_0:80$ ip community-list expanded c102 permit 82 ^65000:3_0:183_0:81$ ip community-list expanded c102 permit 83 ^65000:3_0:184_0:82$ ip community-list expanded c102 permit 84 ^65000:3_0:185_0:83$ ip community-list expanded c102 permit 85 ^65000:3_0:186_0:84$ ip community-list expanded c102 permit 86 ^65000:3_0:187_0:85$ ip community-list expanded c102 permit 87 ^65000:3_0:188_0:86$ ip community-list expanded c102 permit 88 ^65000:3_0:189_0:87$ ip community-list expanded c102 permit 89 ^65000:3_0:190_0:88$ ip community-list expanded c102 permit 90 ^65000:3_0:191_0:89$ ip community-list expanded c102 permit 91 ^65000:3_0:192_0:90$ ip community-list expanded c102 permit 92 ^65000:3_0:193_0:91$ ip community-list expanded c102 permit 93 ^65000:3_0:194_0:92$ ip community-list expanded c102 permit 94 ^65000:3_0:195_0:93$ ip community-list expanded c102 permit 95 ^65000:3_0:196_0:94$ ip community-list expanded c102 permit 96 ^65000:3_0:197_0:95$ ip community-list expanded c102 permit 97 ^65000:3_0:198_0:96$ ip community-list expanded c102 permit 98 ^65000:3_0:199_0:97$ ip community-list expanded c102 permit 99 ^65000:3_0:200_0:98$ ip community-list expanded c102 permit 100 ^65000:3_0:201_0:99$ ip community-list expanded c102 permit 101 ^65000:3_0:202_0:100$ ip community-list expanded c102 permit 102 ^65000:3_0:203_0:101$ ip community-list expanded c102 permit 103 ^65000:4_0:204_0:2$ ip community-list expanded c102 permit 104 ^65000:3_0:204_0:102$ ip community-list expanded c102 permit 105 ^65000:4_0:205_0:2$ ip community-list expanded c102 permit 106 ^65000:3_0:205_0:103$ ip community-list expanded c102 permit 107 ^65000:3_0:206_0:104$ ip community-list expanded c102 permit 108 ^65000:3_0:207_0:105$ ip community-list expanded c102 permit 109 ^65000:3_0:208_0:106$ ip community-list expanded c102 permit 110 ^65000:3_0:209_0:107$ ip community-list expanded c102 permit 111 ^65000:3_0:210_0:108$ ip community-list expanded c102 permit 112 ^65000:3_0:211_0:109$ ip community-list expanded c102 permit 113 ^65000:3_0:212_0:110$ ip community-list expanded c102 permit 114 ^65000:3_0:213_0:111$ ip community-list expanded c102 permit 115 ^65000:3_0:214_0:112$ ip community-list expanded c102 permit 116 ^65000:3_0:215_0:113$ ip community-list expanded c102 permit 117 ^65000:3_0:216_0:114$ ip community-list expanded c102 permit 118 ^65000:3_0:217_0:115$ ip community-list expanded c102 permit 119 ^65000:3_0:218_0:116$ ip community-list expanded c102 permit 120 ^65000:3_0:219_0:117$ ip community-list expanded c102 permit 121 ^65000:3_0:220_0:118$ ip community-list expanded c102 permit 122 ^65000:3_0:221_0:119$ ip community-list expanded c102 permit 123 ^65000:3_0:222_0:120$ ip community-list expanded c102 permit 124 ^65000:3_0:223_0:121$ ip community-list expanded c102 permit 125 ^65000:3_0:224_0:122$ ip community-list expanded c102 permit 126 ^65000:3_0:225_0:123$ ip community-list expanded c102 permit 127 ^65000:3_0:226_0:124$ ip community-list expanded c102 permit 128 ^65000:3_0:227_0:125$ ip community-list expanded c102 permit 129 ^65000:3_0:228_0:126$ ip community-list expanded c102 permit 130 ^65000:3_0:229_0:127$ ip community-list expanded c102 permit 131 ^65000:3_0:230_0:128$ ip community-list expanded c102 permit 132 ^65000:3_0:231_0:129$ ip community-list expanded c102 permit 133 ^65000:3_0:232_0:130$ ip community-list expanded c102 permit 134 ^65000:3_0:233_0:131$ ip community-list expanded c102 permit 135 ^65000:3_0:234_0:132$ ip community-list expanded c102 permit 136 ^65000:3_0:235_0:133$ ip community-list expanded c102 permit 137 ^65000:3_0:236_0:134$ ip community-list expanded c102 permit 138 ^65000:3_0:237_0:135$ ip community-list expanded c102 permit 139 ^65000:3_0:238_0:136$ ip community-list expanded c102 permit 140 ^65000:3_0:239_0:137$ ip community-list expanded c102 permit 141 ^65000:3_0:240_0:138$ ip community-list expanded c102 permit 142 ^65000:3_0:241_0:139$ ip community-list expanded c102 permit 143 ^65000:3_0:242_0:140$ ip community-list expanded c102 permit 144 ^65000:3_0:243_0:141$ ip community-list expanded c102 permit 145 ^65000:3_0:244_0:142$ ip community-list expanded c102 permit 146 ^65000:3_0:245_0:143$ ip community-list expanded c102 permit 147 ^65000:3_0:246_0:144$ ip community-list expanded c102 permit 148 ^65000:3_0:247_0:145$ ip community-list expanded c102 permit 149 ^65000:3_0:248_0:146$ ip community-list expanded c102 permit 150 ^65000:3_0:249_0:147$ ip community-list expanded c102 permit 151 ^65000:3_0:250_0:148$ ip community-list expanded c102 permit 152 ^65000:3_0:251_0:149$ ip community-list expanded c102 permit 153 ^65000:3_0:252_0:150$ ip community-list expanded c102 permit 154 ^65000:3_0:253_0:151$ ip community-list expanded c102 permit 155 ^65000:3_0:254_0:152$ ip community-list expanded c102 permit 156 ^65000:3_0:255_0:153$ ip community-list expanded c102 permit 157 ^65000:3_0:256_0:154$ route-map calculator permit 17874 match community 1_1_101 2_1_102 2_2_51 1_2_100 2_3_34 set community 0:102 route-map calculator permit 17875 match community 1_3_99 1_4_98 1_5_97 2_6_17 1_6_96 set community 0:102 route-map calculator permit 17876 match community 1_7_95 1_8_94 1_9_93 1_10_92 1_11_91 set community 0:102 route-map calculator permit 17877 match community 1_12_90 1_13_89 1_14_88 1_15_87 1_16_86 set community 0:102 route-map calculator permit 17878 match community 1_17_85 1_18_84 1_19_83 1_20_82 1_21_81 set community 0:102 route-map calculator permit 17879 match community 1_22_80 1_23_79 1_24_78 1_25_77 1_26_76 set community 0:102 route-map calculator permit 17880 match community 1_27_75 1_28_74 1_29_73 1_30_72 1_31_71 set community 0:102 route-map calculator permit 17881 match community 1_32_70 1_33_69 1_34_68 1_35_67 1_36_66 set community 0:102 route-map calculator permit 17882 match community 1_37_65 1_38_64 1_39_63 1_40_62 1_41_61 set community 0:102 route-map calculator permit 17883 match community 1_42_60 1_43_59 1_44_58 1_45_57 1_46_56 set community 0:102 route-map calculator permit 17884 match community 1_47_55 1_48_54 1_49_53 1_50_52 1_51_51 set community 0:102 route-map calculator permit 17885 match community c4_102_1 c3_103_1 c3_104_2 c3_105_3 c3_106_4 set community 0:102 route-map calculator permit 17886 match community c3_107_5 c3_108_6 c3_109_7 c3_110_8 c3_111_9 set community 0:102 route-map calculator permit 17887 match community c3_112_10 c3_113_11 c3_114_12 c3_115_13 c3_116_14 set community 0:102 route-map calculator permit 17888 match community c3_117_15 c3_118_16 c3_119_17 c3_120_18 c3_121_19 set community 0:102 route-map calculator permit 17889 match community c3_122_20 c3_123_21 c3_124_22 c3_125_23 c3_126_24 set community 0:102 route-map calculator permit 17890 match community c3_127_25 c3_128_26 c3_129_27 c3_130_28 c3_131_29 set community 0:102 route-map calculator permit 17891 match community c3_132_30 c3_133_31 c3_134_32 c3_135_33 c3_136_34 set community 0:102 route-map calculator permit 17892 match community c3_137_35 c3_138_36 c3_139_37 c3_140_38 c3_141_39 set community 0:102 route-map calculator permit 17893 match community c3_142_40 c3_143_41 c3_144_42 c3_145_43 c3_146_44 set community 0:102 route-map calculator permit 17894 match community c3_147_45 c3_148_46 c3_149_47 c3_150_48 c3_151_49 set community 0:102 route-map calculator permit 17895 match community c3_152_50 c3_153_51 c3_154_52 c3_155_53 c3_156_54 set community 0:102 route-map calculator permit 17896 match community c3_157_55 c3_158_56 c3_159_57 c3_160_58 c3_161_59 set community 0:102 route-map calculator permit 17897 match community c3_162_60 c3_163_61 c3_164_62 c3_165_63 c3_166_64 set community 0:102 route-map calculator permit 17898 match community c3_167_65 c3_168_66 c3_169_67 c3_170_68 c3_171_69 set community 0:102 route-map calculator permit 17899 match community c3_172_70 c3_173_71 c3_174_72 c3_175_73 c3_176_74 set community 0:102 route-map calculator permit 17900 match community c3_177_75 c3_178_76 c3_179_77 c3_180_78 c3_181_79 set community 0:102 route-map calculator permit 17901 match community c3_182_80 c3_183_81 c3_184_82 c3_185_83 c3_186_84 set community 0:102 route-map calculator permit 17902 match community c3_187_85 c3_188_86 c3_189_87 c3_190_88 c3_191_89 set community 0:102 route-map calculator permit 17903 match community c3_192_90 c3_193_91 c3_194_92 c3_195_93 c3_196_94 set community 0:102 route-map calculator permit 17904 match community c3_197_95 c3_198_96 c3_199_97 c3_200_98 c3_201_99 set community 0:102 route-map calculator permit 17905 match community c3_202_100 c3_203_101 c4_204_2 c3_204_102 c4_205_2 set community 0:102 route-map calculator permit 17906 match community c3_205_103 c3_206_104 c3_207_105 c3_208_106 c3_209_107 set community 0:102 route-map calculator permit 17907 match community c3_210_108 c3_211_109 c3_212_110 c3_213_111 c3_214_112 set community 0:102 route-map calculator permit 17908 match community c3_215_113 c3_216_114 c3_217_115 c3_218_116 c3_219_117 set community 0:102 route-map calculator permit 17909 match community c3_220_118 c3_221_119 c3_222_120 c3_223_121 c3_224_122 set community 0:102 route-map calculator permit 17910 match community c3_225_123 c3_226_124 c3_227_125 c3_228_126 c3_229_127 set community 0:102 route-map calculator permit 17911 match community c3_230_128 c3_231_129 c3_232_130 c3_233_131 c3_234_132 set community 0:102 route-map calculator permit 17912 match community c3_235_133 c3_236_134 c3_237_135 c3_238_136 c3_239_137 set community 0:102 route-map calculator permit 17913 match community c3_240_138 c3_241_139 c3_242_140 c3_243_141 c3_244_142 set community 0:102 route-map calculator permit 17914 match community c3_245_143 c3_246_144 c3_247_145 c3_248_146 c3_249_147 set community 0:102 route-map calculator permit 17915 match community c3_250_148 c3_251_149 c3_252_150 c3_253_151 c3_254_152 set community 0:102 route-map calculator permit 17916 match community c3_255_153 c3_256_154 set community 0:102 ip community-list standard 2_47_173 permit 65000:2 0:47 0:173 route-map calculator permit 17917 match community 2_47_173 set community 0:8131 ip community-list standard 2_37_256 permit 65000:2 0:37 0:256 ip community-list standard 2_64_148 permit 65000:2 0:64 0:148 ip community-list standard 2_74_128 permit 65000:2 0:74 0:128 route-map calculator permit 17918 match community 2_37_256 2_64_148 2_74_128 set community 0:9472 ip community-list standard 2_79_155 permit 65000:2 0:79 0:155 route-map calculator permit 17919 match community 2_79_155 set community 0:12245 ip community-list standard 2_173_227 permit 65000:2 0:173 0:227 route-map calculator permit 17920 match community 2_173_227 set community 0:39271 ip community-list standard 2_27_129 permit 65000:2 0:27 0:129 ip community-list standard 2_43_81 permit 65000:2 0:43 0:81 route-map calculator permit 17921 match community 2_27_129 2_43_81 set community 0:3483 ip community-list standard 2_78_178 permit 65000:2 0:78 0:178 ip community-list standard 2_89_156 permit 65000:2 0:89 0:156 route-map calculator permit 17922 match community 2_78_178 2_89_156 set community 0:13884 ip community-list standard 2_196_250 permit 65000:2 0:196 0:250 ip community-list standard 2_200_245 permit 65000:2 0:200 0:245 route-map calculator permit 17923 match community 2_196_250 2_200_245 set community 0:49000 ip community-list standard 2_35_236 permit 65000:2 0:35 0:236 ip community-list standard 2_59_140 permit 65000:2 0:59 0:140 ip community-list standard 2_70_118 permit 65000:2 0:70 0:118 route-map calculator permit 17924 match community 2_35_236 2_59_140 2_70_118 set community 0:8260 ip community-list standard 2_3_221 permit 65000:2 0:3 0:221 ip community-list standard 2_13_51 permit 65000:2 0:13 0:51 ip community-list standard 2_17_39 permit 65000:2 0:17 0:39 route-map calculator permit 17925 match community 2_3_221 2_13_51 2_17_39 set community 0:663 ip community-list standard 2_142_231 permit 65000:2 0:142 0:231 ip community-list standard 2_154_213 permit 65000:2 0:154 0:213 route-map calculator permit 17926 match community 2_142_231 2_154_213 set community 0:32802 ip community-list standard 2_134_184 permit 65000:2 0:134 0:184 route-map calculator permit 17927 match community 2_134_184 set community 0:24656 ip community-list standard 2_21_244 permit 65000:2 0:21 0:244 ip community-list standard 2_28_183 permit 65000:2 0:28 0:183 ip community-list standard 2_42_122 permit 65000:2 0:42 0:122 ip community-list standard 2_61_84 permit 65000:2 0:61 0:84 route-map calculator permit 17928 match community 2_21_244 2_28_183 2_42_122 2_61_84 set community 0:5124 ip community-list standard 2_98_212 permit 65000:2 0:98 0:212 ip community-list standard 2_106_196 permit 65000:2 0:106 0:196 route-map calculator permit 17929 match community 2_98_212 2_106_196 set community 0:20776 ip community-list standard 2_58_151 permit 65000:2 0:58 0:151 route-map calculator permit 17930 match community 2_58_151 set community 0:8758 ip community-list standard 2_52_194 permit 65000:2 0:52 0:194 ip community-list standard 2_97_104 permit 65000:2 0:97 0:104 route-map calculator permit 17931 match community 2_52_194 2_97_104 set community 0:10088 ip community-list standard 2_19_237 permit 65000:2 0:19 0:237 ip community-list standard 2_57_79 permit 65000:2 0:57 0:79 route-map calculator permit 17932 match community 2_19_237 2_57_79 set community 0:4503 ip community-list standard 2_142_206 permit 65000:2 0:142 0:206 route-map calculator permit 17933 match community 2_142_206 set community 0:29252 ip community-list standard 2_141_183 permit 65000:2 0:141 0:183 route-map calculator permit 17934 match community 2_141_183 set community 0:25803 ip community-list standard 2_73_161 permit 65000:2 0:73 0:161 route-map calculator permit 17935 match community 2_73_161 set community 0:11753 ip community-list standard 2_27_179 permit 65000:2 0:27 0:179 route-map calculator permit 17936 match community 2_27_179 set community 0:4833 ip community-list standard 2_53_161 permit 65000:2 0:53 0:161 route-map calculator permit 17937 match community 2_53_161 set community 0:8533 ip community-list standard 2_48_167 permit 65000:2 0:48 0:167 route-map calculator permit 17938 match community 2_48_167 set community 0:8016 ip community-list standard 2_14_166 permit 65000:2 0:14 0:166 ip community-list standard 2_28_83 permit 65000:2 0:28 0:83 route-map calculator permit 17939 match community 2_14_166 2_28_83 set community 0:2324 ip community-list standard 2_38_131 permit 65000:2 0:38 0:131 route-map calculator permit 17940 match community 2_38_131 set community 0:4978 ip community-list standard 2_232_244 permit 65000:2 0:232 0:244 route-map calculator permit 17941 match community 2_232_244 set community 0:56608 ip community-list standard 2_13_149 permit 65000:2 0:13 0:149 route-map calculator permit 17942 match community 2_13_149 set community 0:1937 ip community-list standard 2_174_245 permit 65000:2 0:174 0:245 ip community-list standard 2_203_210 permit 65000:2 0:203 0:210 route-map calculator permit 17943 match community 2_174_245 2_203_210 set community 0:42630 ip community-list standard 2_13_173 permit 65000:2 0:13 0:173 route-map calculator permit 17944 match community 2_13_173 set community 0:2249 ip community-list standard 2_33_218 permit 65000:2 0:33 0:218 ip community-list standard 2_66_109 permit 65000:2 0:66 0:109 route-map calculator permit 17945 match community 2_33_218 2_66_109 set community 0:7194 ip community-list standard 2_101_127 permit 65000:2 0:101 0:127 route-map calculator permit 17946 match community 2_101_127 set community 0:12827 ip community-list standard 2_129_243 permit 65000:2 0:129 0:243 route-map calculator permit 17947 match community 2_129_243 set community 0:31347 ip community-list standard 2_136_179 permit 65000:2 0:136 0:179 route-map calculator permit 17948 match community 2_136_179 set community 0:24344 ip community-list standard 2_189_250 permit 65000:2 0:189 0:250 ip community-list standard 2_210_225 permit 65000:2 0:210 0:225 route-map calculator permit 17949 match community 2_189_250 2_210_225 set community 0:47250 ip community-list standard 2_88_238 permit 65000:2 0:88 0:238 ip community-list standard 2_112_187 permit 65000:2 0:112 0:187 ip community-list standard 2_119_176 permit 65000:2 0:119 0:176 ip community-list standard 2_136_154 permit 65000:2 0:136 0:154 route-map calculator permit 17950 match community 2_88_238 2_112_187 2_119_176 2_136_154 set community 0:20944 ip community-list standard 2_197_219 permit 65000:2 0:197 0:219 route-map calculator permit 17951 match community 2_197_219 set community 0:43143 ip community-list standard 2_92_237 permit 65000:2 0:92 0:237 ip community-list standard 2_138_158 permit 65000:2 0:138 0:158 route-map calculator permit 17952 match community 2_92_237 2_138_158 set community 0:21804 ip community-list standard 2_145_170 permit 65000:2 0:145 0:170 route-map calculator permit 17953 match community 2_145_170 set community 0:24650 ip community-list standard 2_33_241 permit 65000:2 0:33 0:241 route-map calculator permit 17954 match community 2_33_241 set community 0:7953 ip community-list standard 2_213_253 permit 65000:2 0:213 0:253 route-map calculator permit 17955 match community 2_213_253 set community 0:53889 ip community-list standard 2_131_233 permit 65000:2 0:131 0:233 route-map calculator permit 17956 match community 2_131_233 set community 0:30523 ip community-list standard 2_184_253 permit 65000:2 0:184 0:253 route-map calculator permit 17957 match community 2_184_253 set community 0:46552 ip community-list standard 2_223_234 permit 65000:2 0:223 0:234 route-map calculator permit 17958 match community 2_223_234 set community 0:52182 ip community-list standard 2_86_240 permit 65000:2 0:86 0:240 ip community-list standard 2_96_215 permit 65000:2 0:96 0:215 ip community-list standard 2_120_172 permit 65000:2 0:120 0:172 ip community-list standard 2_129_160 permit 65000:2 0:129 0:160 route-map calculator permit 17959 match community 2_86_240 2_96_215 2_120_172 2_129_160 set community 0:20640 ip community-list standard 2_54_244 permit 65000:2 0:54 0:244 ip community-list standard 2_61_216 permit 65000:2 0:61 0:216 ip community-list standard 2_72_183 permit 65000:2 0:72 0:183 ip community-list standard 2_108_122 permit 65000:2 0:108 0:122 route-map calculator permit 17960 match community 2_54_244 2_61_216 2_72_183 2_108_122 set community 0:13176 ip community-list standard 2_161_206 permit 65000:2 0:161 0:206 route-map calculator permit 17961 match community 2_161_206 set community 0:33166 ip community-list standard 2_51_127 permit 65000:2 0:51 0:127 route-map calculator permit 17962 match community 2_51_127 set community 0:6477 ip community-list standard 2_211_247 permit 65000:2 0:211 0:247 route-map calculator permit 17963 match community 2_211_247 set community 0:52117 ip community-list standard 2_47_203 permit 65000:2 0:47 0:203 route-map calculator permit 17964 match community 2_47_203 set community 0:9541 ip community-list standard 2_80_173 permit 65000:2 0:80 0:173 route-map calculator permit 17965 match community 2_80_173 set community 0:13840 ip community-list standard 2_65_202 permit 65000:2 0:65 0:202 ip community-list standard 2_101_130 permit 65000:2 0:101 0:130 route-map calculator permit 17966 match community 2_65_202 2_101_130 set community 0:13130 ip community-list standard 2_149_234 permit 65000:2 0:149 0:234 route-map calculator permit 17967 match community 2_149_234 set community 0:34866 ip community-list standard 2_57_240 permit 65000:2 0:57 0:240 ip community-list standard 2_60_228 permit 65000:2 0:60 0:228 ip community-list standard 2_72_190 permit 65000:2 0:72 0:190 ip community-list standard 2_76_180 permit 65000:2 0:76 0:180 ip community-list standard 2_80_171 permit 65000:2 0:80 0:171 ip community-list standard 2_90_152 permit 65000:2 0:90 0:152 ip community-list standard 2_95_144 permit 65000:2 0:95 0:144 ip community-list standard 2_114_120 permit 65000:2 0:114 0:120 route-map calculator permit 17968 match community 2_57_240 2_60_228 2_72_190 2_76_180 2_80_171 set community 0:13680 route-map calculator permit 17969 match community 2_90_152 2_95_144 2_114_120 set community 0:13680 ip community-list standard 2_70_253 permit 65000:2 0:70 0:253 ip community-list standard 2_77_230 permit 65000:2 0:77 0:230 ip community-list standard 2_110_161 permit 65000:2 0:110 0:161 ip community-list standard 2_115_154 permit 65000:2 0:115 0:154 route-map calculator permit 17970 match community 2_70_253 2_77_230 2_110_161 2_115_154 set community 0:17710 ip community-list standard 2_20_163 permit 65000:2 0:20 0:163 route-map calculator permit 17971 match community 2_20_163 set community 0:3260 ip community-list standard 2_75_179 permit 65000:2 0:75 0:179 route-map calculator permit 17972 match community 2_75_179 set community 0:13425 ip community-list standard 2_9_230 permit 65000:2 0:9 0:230 ip community-list standard 2_10_207 permit 65000:2 0:10 0:207 ip community-list standard 2_15_138 permit 65000:2 0:15 0:138 ip community-list standard 2_18_115 permit 65000:2 0:18 0:115 ip community-list standard 2_23_90 permit 65000:2 0:23 0:90 ip community-list standard 2_30_69 permit 65000:2 0:30 0:69 ip community-list standard 2_45_46 permit 65000:2 0:45 0:46 route-map calculator permit 17973 match community 2_9_230 2_10_207 2_15_138 2_18_115 2_23_90 set community 0:2070 route-map calculator permit 17974 match community 2_30_69 2_45_46 set community 0:2070 ip community-list standard 1_1_142 permit 65000:1 0:1 0:142 ip community-list standard 2_1_143 permit 65000:2 0:1 0:143 ip community-list standard 1_2_141 permit 65000:1 0:2 0:141 ip community-list standard 1_3_140 permit 65000:1 0:3 0:140 ip community-list standard 1_4_139 permit 65000:1 0:4 0:139 ip community-list standard 1_5_138 permit 65000:1 0:5 0:138 ip community-list standard 1_6_137 permit 65000:1 0:6 0:137 ip community-list standard 1_7_136 permit 65000:1 0:7 0:136 ip community-list standard 1_8_135 permit 65000:1 0:8 0:135 ip community-list standard 1_9_134 permit 65000:1 0:9 0:134 ip community-list standard 1_10_133 permit 65000:1 0:10 0:133 ip community-list standard 2_11_13 permit 65000:2 0:11 0:13 ip community-list standard 1_11_132 permit 65000:1 0:11 0:132 ip community-list standard 1_12_131 permit 65000:1 0:12 0:131 ip community-list standard 1_13_130 permit 65000:1 0:13 0:130 ip community-list standard 1_14_129 permit 65000:1 0:14 0:129 ip community-list standard 1_15_128 permit 65000:1 0:15 0:128 ip community-list standard 1_16_127 permit 65000:1 0:16 0:127 ip community-list standard 1_17_126 permit 65000:1 0:17 0:126 ip community-list standard 1_18_125 permit 65000:1 0:18 0:125 ip community-list standard 1_19_124 permit 65000:1 0:19 0:124 ip community-list standard 1_20_123 permit 65000:1 0:20 0:123 ip community-list standard 1_21_122 permit 65000:1 0:21 0:122 ip community-list standard 1_22_121 permit 65000:1 0:22 0:121 ip community-list standard 1_23_120 permit 65000:1 0:23 0:120 ip community-list standard 1_24_119 permit 65000:1 0:24 0:119 ip community-list standard 1_25_118 permit 65000:1 0:25 0:118 ip community-list standard 1_26_117 permit 65000:1 0:26 0:117 ip community-list standard 1_27_116 permit 65000:1 0:27 0:116 ip community-list standard 1_28_115 permit 65000:1 0:28 0:115 ip community-list standard 1_29_114 permit 65000:1 0:29 0:114 ip community-list standard 1_30_113 permit 65000:1 0:30 0:113 ip community-list standard 1_31_112 permit 65000:1 0:31 0:112 ip community-list standard 1_32_111 permit 65000:1 0:32 0:111 ip community-list standard 1_33_110 permit 65000:1 0:33 0:110 ip community-list standard 1_34_109 permit 65000:1 0:34 0:109 ip community-list standard 1_35_108 permit 65000:1 0:35 0:108 ip community-list standard 1_36_107 permit 65000:1 0:36 0:107 ip community-list standard 1_37_106 permit 65000:1 0:37 0:106 ip community-list standard 1_38_105 permit 65000:1 0:38 0:105 ip community-list standard 1_39_104 permit 65000:1 0:39 0:104 ip community-list standard 1_40_103 permit 65000:1 0:40 0:103 ip community-list standard 1_41_102 permit 65000:1 0:41 0:102 ip community-list standard 1_42_101 permit 65000:1 0:42 0:101 ip community-list standard 1_43_100 permit 65000:1 0:43 0:100 ip community-list standard 1_44_99 permit 65000:1 0:44 0:99 ip community-list standard 1_45_98 permit 65000:1 0:45 0:98 ip community-list standard 1_46_97 permit 65000:1 0:46 0:97 ip community-list standard 1_47_96 permit 65000:1 0:47 0:96 ip community-list standard 1_48_95 permit 65000:1 0:48 0:95 ip community-list standard 1_49_94 permit 65000:1 0:49 0:94 ip community-list standard 1_50_93 permit 65000:1 0:50 0:93 ip community-list standard 1_51_92 permit 65000:1 0:51 0:92 ip community-list standard 1_52_91 permit 65000:1 0:52 0:91 ip community-list standard 1_53_90 permit 65000:1 0:53 0:90 ip community-list standard 1_54_89 permit 65000:1 0:54 0:89 ip community-list standard 1_55_88 permit 65000:1 0:55 0:88 ip community-list standard 1_56_87 permit 65000:1 0:56 0:87 ip community-list standard 1_57_86 permit 65000:1 0:57 0:86 ip community-list standard 1_58_85 permit 65000:1 0:58 0:85 ip community-list standard 1_59_84 permit 65000:1 0:59 0:84 ip community-list standard 1_60_83 permit 65000:1 0:60 0:83 ip community-list standard 1_61_82 permit 65000:1 0:61 0:82 ip community-list standard 1_62_81 permit 65000:1 0:62 0:81 ip community-list standard 1_63_80 permit 65000:1 0:63 0:80 ip community-list standard 1_64_79 permit 65000:1 0:64 0:79 ip community-list standard 1_65_78 permit 65000:1 0:65 0:78 ip community-list standard 1_66_77 permit 65000:1 0:66 0:77 ip community-list standard 1_67_76 permit 65000:1 0:67 0:76 ip community-list standard 1_68_75 permit 65000:1 0:68 0:75 ip community-list standard 1_69_74 permit 65000:1 0:69 0:74 ip community-list standard 1_70_73 permit 65000:1 0:70 0:73 ip community-list standard 1_71_72 permit 65000:1 0:71 0:72 ip community-list expanded c143 permit 1 ^65000:4_0:143_0:1$ ip community-list expanded c143 permit 2 ^65000:3_0:144_0:1$ ip community-list expanded c143 permit 3 ^65000:3_0:145_0:2$ ip community-list expanded c143 permit 4 ^65000:3_0:146_0:3$ ip community-list expanded c143 permit 5 ^65000:3_0:147_0:4$ ip community-list expanded c143 permit 6 ^65000:3_0:148_0:5$ ip community-list expanded c143 permit 7 ^65000:3_0:149_0:6$ ip community-list expanded c143 permit 8 ^65000:3_0:150_0:7$ ip community-list expanded c143 permit 9 ^65000:3_0:151_0:8$ ip community-list expanded c143 permit 10 ^65000:3_0:152_0:9$ ip community-list expanded c143 permit 11 ^65000:3_0:153_0:10$ ip community-list expanded c143 permit 12 ^65000:3_0:154_0:11$ ip community-list expanded c143 permit 13 ^65000:3_0:155_0:12$ ip community-list expanded c143 permit 14 ^65000:3_0:156_0:13$ ip community-list expanded c143 permit 15 ^65000:3_0:157_0:14$ ip community-list expanded c143 permit 16 ^65000:3_0:158_0:15$ ip community-list expanded c143 permit 17 ^65000:3_0:159_0:16$ ip community-list expanded c143 permit 18 ^65000:3_0:160_0:17$ ip community-list expanded c143 permit 19 ^65000:3_0:161_0:18$ ip community-list expanded c143 permit 20 ^65000:3_0:162_0:19$ ip community-list expanded c143 permit 21 ^65000:3_0:163_0:20$ ip community-list expanded c143 permit 22 ^65000:3_0:164_0:21$ ip community-list expanded c143 permit 23 ^65000:3_0:165_0:22$ ip community-list expanded c143 permit 24 ^65000:3_0:166_0:23$ ip community-list expanded c143 permit 25 ^65000:3_0:167_0:24$ ip community-list expanded c143 permit 26 ^65000:3_0:168_0:25$ ip community-list expanded c143 permit 27 ^65000:3_0:169_0:26$ ip community-list expanded c143 permit 28 ^65000:3_0:170_0:27$ ip community-list expanded c143 permit 29 ^65000:3_0:171_0:28$ ip community-list expanded c143 permit 30 ^65000:3_0:172_0:29$ ip community-list expanded c143 permit 31 ^65000:3_0:173_0:30$ ip community-list expanded c143 permit 32 ^65000:3_0:174_0:31$ ip community-list expanded c143 permit 33 ^65000:3_0:175_0:32$ ip community-list expanded c143 permit 34 ^65000:3_0:176_0:33$ ip community-list expanded c143 permit 35 ^65000:3_0:177_0:34$ ip community-list expanded c143 permit 36 ^65000:3_0:178_0:35$ ip community-list expanded c143 permit 37 ^65000:3_0:179_0:36$ ip community-list expanded c143 permit 38 ^65000:3_0:180_0:37$ ip community-list expanded c143 permit 39 ^65000:3_0:181_0:38$ ip community-list expanded c143 permit 40 ^65000:3_0:182_0:39$ ip community-list expanded c143 permit 41 ^65000:3_0:183_0:40$ ip community-list expanded c143 permit 42 ^65000:3_0:184_0:41$ ip community-list expanded c143 permit 43 ^65000:3_0:185_0:42$ ip community-list expanded c143 permit 44 ^65000:3_0:186_0:43$ ip community-list expanded c143 permit 45 ^65000:3_0:187_0:44$ ip community-list expanded c143 permit 46 ^65000:3_0:188_0:45$ ip community-list expanded c143 permit 47 ^65000:3_0:189_0:46$ ip community-list expanded c143 permit 48 ^65000:3_0:190_0:47$ ip community-list expanded c143 permit 49 ^65000:3_0:191_0:48$ ip community-list expanded c143 permit 50 ^65000:3_0:192_0:49$ ip community-list expanded c143 permit 51 ^65000:3_0:193_0:50$ ip community-list expanded c143 permit 52 ^65000:3_0:194_0:51$ ip community-list expanded c143 permit 53 ^65000:3_0:195_0:52$ ip community-list expanded c143 permit 54 ^65000:3_0:196_0:53$ ip community-list expanded c143 permit 55 ^65000:3_0:197_0:54$ ip community-list expanded c143 permit 56 ^65000:3_0:198_0:55$ ip community-list expanded c143 permit 57 ^65000:3_0:199_0:56$ ip community-list expanded c143 permit 58 ^65000:3_0:200_0:57$ ip community-list expanded c143 permit 59 ^65000:3_0:201_0:58$ ip community-list expanded c143 permit 60 ^65000:3_0:202_0:59$ ip community-list expanded c143 permit 61 ^65000:3_0:203_0:60$ ip community-list expanded c143 permit 62 ^65000:3_0:204_0:61$ ip community-list expanded c143 permit 63 ^65000:3_0:205_0:62$ ip community-list expanded c143 permit 64 ^65000:3_0:206_0:63$ ip community-list expanded c143 permit 65 ^65000:3_0:207_0:64$ ip community-list expanded c143 permit 66 ^65000:3_0:208_0:65$ ip community-list expanded c143 permit 67 ^65000:3_0:209_0:66$ ip community-list expanded c143 permit 68 ^65000:3_0:210_0:67$ ip community-list expanded c143 permit 69 ^65000:3_0:211_0:68$ ip community-list expanded c143 permit 70 ^65000:3_0:212_0:69$ ip community-list expanded c143 permit 71 ^65000:3_0:213_0:70$ ip community-list expanded c143 permit 72 ^65000:3_0:214_0:71$ ip community-list expanded c143 permit 73 ^65000:3_0:215_0:72$ ip community-list expanded c143 permit 74 ^65000:3_0:216_0:73$ ip community-list expanded c143 permit 75 ^65000:3_0:217_0:74$ ip community-list expanded c143 permit 76 ^65000:3_0:218_0:75$ ip community-list expanded c143 permit 77 ^65000:3_0:219_0:76$ ip community-list expanded c143 permit 78 ^65000:3_0:220_0:77$ ip community-list expanded c143 permit 79 ^65000:3_0:221_0:78$ ip community-list expanded c143 permit 80 ^65000:3_0:222_0:79$ ip community-list expanded c143 permit 81 ^65000:3_0:223_0:80$ ip community-list expanded c143 permit 82 ^65000:3_0:224_0:81$ ip community-list expanded c143 permit 83 ^65000:3_0:225_0:82$ ip community-list expanded c143 permit 84 ^65000:3_0:226_0:83$ ip community-list expanded c143 permit 85 ^65000:3_0:227_0:84$ ip community-list expanded c143 permit 86 ^65000:3_0:228_0:85$ ip community-list expanded c143 permit 87 ^65000:3_0:229_0:86$ ip community-list expanded c143 permit 88 ^65000:3_0:230_0:87$ ip community-list expanded c143 permit 89 ^65000:3_0:231_0:88$ ip community-list expanded c143 permit 90 ^65000:3_0:232_0:89$ ip community-list expanded c143 permit 91 ^65000:3_0:233_0:90$ ip community-list expanded c143 permit 92 ^65000:3_0:234_0:91$ ip community-list expanded c143 permit 93 ^65000:3_0:235_0:92$ ip community-list expanded c143 permit 94 ^65000:3_0:236_0:93$ ip community-list expanded c143 permit 95 ^65000:3_0:237_0:94$ ip community-list expanded c143 permit 96 ^65000:3_0:238_0:95$ ip community-list expanded c143 permit 97 ^65000:3_0:239_0:96$ ip community-list expanded c143 permit 98 ^65000:3_0:240_0:97$ ip community-list expanded c143 permit 99 ^65000:3_0:241_0:98$ ip community-list expanded c143 permit 100 ^65000:3_0:242_0:99$ ip community-list expanded c143 permit 101 ^65000:3_0:243_0:100$ ip community-list expanded c143 permit 102 ^65000:3_0:244_0:101$ ip community-list expanded c143 permit 103 ^65000:3_0:245_0:102$ ip community-list expanded c143 permit 104 ^65000:3_0:246_0:103$ ip community-list expanded c143 permit 105 ^65000:3_0:247_0:104$ ip community-list expanded c143 permit 106 ^65000:3_0:248_0:105$ ip community-list expanded c143 permit 107 ^65000:3_0:249_0:106$ ip community-list expanded c143 permit 108 ^65000:3_0:250_0:107$ ip community-list expanded c143 permit 109 ^65000:3_0:251_0:108$ ip community-list expanded c143 permit 110 ^65000:3_0:252_0:109$ ip community-list expanded c143 permit 111 ^65000:3_0:253_0:110$ ip community-list expanded c143 permit 112 ^65000:3_0:254_0:111$ ip community-list expanded c143 permit 113 ^65000:3_0:255_0:112$ ip community-list expanded c143 permit 114 ^65000:3_0:256_0:113$ route-map calculator permit 17975 match community 1_1_142 2_1_143 1_2_141 1_3_140 1_4_139 set community 0:143 route-map calculator permit 17976 match community 1_5_138 1_6_137 1_7_136 1_8_135 1_9_134 set community 0:143 route-map calculator permit 17977 match community 1_10_133 2_11_13 1_11_132 1_12_131 1_13_130 set community 0:143 route-map calculator permit 17978 match community 1_14_129 1_15_128 1_16_127 1_17_126 1_18_125 set community 0:143 route-map calculator permit 17979 match community 1_19_124 1_20_123 1_21_122 1_22_121 1_23_120 set community 0:143 route-map calculator permit 17980 match community 1_24_119 1_25_118 1_26_117 1_27_116 1_28_115 set community 0:143 route-map calculator permit 17981 match community 1_29_114 1_30_113 1_31_112 1_32_111 1_33_110 set community 0:143 route-map calculator permit 17982 match community 1_34_109 1_35_108 1_36_107 1_37_106 1_38_105 set community 0:143 route-map calculator permit 17983 match community 1_39_104 1_40_103 1_41_102 1_42_101 1_43_100 set community 0:143 route-map calculator permit 17984 match community 1_44_99 1_45_98 1_46_97 1_47_96 1_48_95 set community 0:143 route-map calculator permit 17985 match community 1_49_94 1_50_93 1_51_92 1_52_91 1_53_90 set community 0:143 route-map calculator permit 17986 match community 1_54_89 1_55_88 1_56_87 1_57_86 1_58_85 set community 0:143 route-map calculator permit 17987 match community 1_59_84 1_60_83 1_61_82 1_62_81 1_63_80 set community 0:143 route-map calculator permit 17988 match community 1_64_79 1_65_78 1_66_77 1_67_76 1_68_75 set community 0:143 route-map calculator permit 17989 match community 1_69_74 1_70_73 1_71_72 c4_143_1 c3_144_1 set community 0:143 route-map calculator permit 17990 match community c3_145_2 c3_146_3 c3_147_4 c3_148_5 c3_149_6 set community 0:143 route-map calculator permit 17991 match community c3_150_7 c3_151_8 c3_152_9 c3_153_10 c3_154_11 set community 0:143 route-map calculator permit 17992 match community c3_155_12 c3_156_13 c3_157_14 c3_158_15 c3_159_16 set community 0:143 route-map calculator permit 17993 match community c3_160_17 c3_161_18 c3_162_19 c3_163_20 c3_164_21 set community 0:143 route-map calculator permit 17994 match community c3_165_22 c3_166_23 c3_167_24 c3_168_25 c3_169_26 set community 0:143 route-map calculator permit 17995 match community c3_170_27 c3_171_28 c3_172_29 c3_173_30 c3_174_31 set community 0:143 route-map calculator permit 17996 match community c3_175_32 c3_176_33 c3_177_34 c3_178_35 c3_179_36 set community 0:143 route-map calculator permit 17997 match community c3_180_37 c3_181_38 c3_182_39 c3_183_40 c3_184_41 set community 0:143 route-map calculator permit 17998 match community c3_185_42 c3_186_43 c3_187_44 c3_188_45 c3_189_46 set community 0:143 route-map calculator permit 17999 match community c3_190_47 c3_191_48 c3_192_49 c3_193_50 c3_194_51 set community 0:143 route-map calculator permit 18000 match community c3_195_52 c3_196_53 c3_197_54 c3_198_55 c3_199_56 set community 0:143 route-map calculator permit 18001 match community c3_200_57 c3_201_58 c3_202_59 c3_203_60 c3_204_61 set community 0:143 route-map calculator permit 18002 match community c3_205_62 c3_206_63 c3_207_64 c3_208_65 c3_209_66 set community 0:143 route-map calculator permit 18003 match community c3_210_67 c3_211_68 c3_212_69 c3_213_70 c3_214_71 set community 0:143 route-map calculator permit 18004 match community c3_215_72 c3_216_73 c3_217_74 c3_218_75 c3_219_76 set community 0:143 route-map calculator permit 18005 match community c3_220_77 c3_221_78 c3_222_79 c3_223_80 c3_224_81 set community 0:143 route-map calculator permit 18006 match community c3_225_82 c3_226_83 c3_227_84 c3_228_85 c3_229_86 set community 0:143 route-map calculator permit 18007 match community c3_230_87 c3_231_88 c3_232_89 c3_233_90 c3_234_91 set community 0:143 route-map calculator permit 18008 match community c3_235_92 c3_236_93 c3_237_94 c3_238_95 c3_239_96 set community 0:143 route-map calculator permit 18009 match community c3_240_97 c3_241_98 c3_242_99 c3_243_100 c3_244_101 set community 0:143 route-map calculator permit 18010 match community c3_245_102 c3_246_103 c3_247_104 c3_248_105 c3_249_106 set community 0:143 route-map calculator permit 18011 match community c3_250_107 c3_251_108 c3_252_109 c3_253_110 c3_254_111 set community 0:143 route-map calculator permit 18012 match community c3_255_112 c3_256_113 set community 0:143 ip community-list standard 2_212_227 permit 65000:2 0:212 0:227 route-map calculator permit 18013 match community 2_212_227 set community 0:48124 ip community-list standard 2_8_185 permit 65000:2 0:8 0:185 ip community-list standard 2_10_148 permit 65000:2 0:10 0:148 ip community-list standard 2_20_74 permit 65000:2 0:20 0:74 ip community-list standard 2_37_40 permit 65000:2 0:37 0:40 route-map calculator permit 18014 match community 2_8_185 2_10_148 2_20_74 2_37_40 set community 0:1480 ip community-list standard 2_184_234 permit 65000:2 0:184 0:234 ip community-list standard 2_207_208 permit 65000:2 0:207 0:208 route-map calculator permit 18015 match community 2_184_234 2_207_208 set community 0:43056 ip community-list standard 2_65_113 permit 65000:2 0:65 0:113 route-map calculator permit 18016 match community 2_65_113 set community 0:7345 ip community-list standard 2_158_191 permit 65000:2 0:158 0:191 route-map calculator permit 18017 match community 2_158_191 set community 0:30178 ip community-list standard 2_153_229 permit 65000:2 0:153 0:229 route-map calculator permit 18018 match community 2_153_229 set community 0:35037 ip community-list standard 2_60_219 permit 65000:2 0:60 0:219 ip community-list standard 2_73_180 permit 65000:2 0:73 0:180 ip community-list standard 2_90_146 permit 65000:2 0:90 0:146 route-map calculator permit 18019 match community 2_60_219 2_73_180 2_90_146 set community 0:13140 ip community-list standard 2_15_207 permit 65000:2 0:15 0:207 ip community-list standard 2_23_135 permit 65000:2 0:23 0:135 ip community-list standard 2_27_115 permit 65000:2 0:27 0:115 ip community-list standard 2_45_69 permit 65000:2 0:45 0:69 route-map calculator permit 18020 match community 2_15_207 2_23_135 2_27_115 2_45_69 set community 0:3105 ip community-list standard 2_243_255 permit 65000:2 0:243 0:255 route-map calculator permit 18021 match community 2_243_255 set community 0:61965 ip community-list standard 2_103_151 permit 65000:2 0:103 0:151 route-map calculator permit 18022 match community 2_103_151 set community 0:15553 ip community-list standard 2_208_220 permit 65000:2 0:208 0:220 route-map calculator permit 18023 match community 2_208_220 set community 0:45760 ip community-list standard 2_196_196 permit 65000:2 0:196 0:196 route-map calculator permit 18024 match community 2_196_196 set community 0:38416 ip community-list standard 2_97_209 permit 65000:2 0:97 0:209 route-map calculator permit 18025 match community 2_97_209 set community 0:20273 ip community-list standard 2_229_243 permit 65000:2 0:229 0:243 route-map calculator permit 18026 match community 2_229_243 set community 0:55647 ip community-list standard 2_71_247 permit 65000:2 0:71 0:247 route-map calculator permit 18027 match community 2_71_247 set community 0:17537 ip community-list standard 2_159_222 permit 65000:2 0:159 0:222 route-map calculator permit 18028 match community 2_159_222 set community 0:35298 ip community-list standard 2_107_233 permit 65000:2 0:107 0:233 route-map calculator permit 18029 match community 2_107_233 set community 0:24931 ip community-list standard 2_25_201 permit 65000:2 0:25 0:201 ip community-list standard 2_67_75 permit 65000:2 0:67 0:75 route-map calculator permit 18030 match community 2_25_201 2_67_75 set community 0:5025 ip community-list standard 2_225_239 permit 65000:2 0:225 0:239 route-map calculator permit 18031 match community 2_225_239 set community 0:53775 ip community-list standard 2_11_206 permit 65000:2 0:11 0:206 ip community-list standard 2_22_103 permit 65000:2 0:22 0:103 route-map calculator permit 18032 match community 2_11_206 2_22_103 set community 0:2266 ip community-list standard 2_11_43 permit 65000:2 0:11 0:43 ip community-list standard 1_217_256 permit 65000:1 0:217 0:256 ip community-list standard 1_218_255 permit 65000:1 0:218 0:255 ip community-list standard 1_219_254 permit 65000:1 0:219 0:254 ip community-list standard 1_220_253 permit 65000:1 0:220 0:253 ip community-list standard 1_221_252 permit 65000:1 0:221 0:252 ip community-list standard 1_222_251 permit 65000:1 0:222 0:251 ip community-list standard 1_223_250 permit 65000:1 0:223 0:250 ip community-list standard 1_224_249 permit 65000:1 0:224 0:249 ip community-list standard 1_225_248 permit 65000:1 0:225 0:248 ip community-list standard 1_226_247 permit 65000:1 0:226 0:247 ip community-list standard 1_227_246 permit 65000:1 0:227 0:246 ip community-list standard 1_228_245 permit 65000:1 0:228 0:245 ip community-list standard 1_229_244 permit 65000:1 0:229 0:244 ip community-list standard 1_230_243 permit 65000:1 0:230 0:243 ip community-list standard 1_231_242 permit 65000:1 0:231 0:242 ip community-list standard 1_232_241 permit 65000:1 0:232 0:241 ip community-list standard 1_233_240 permit 65000:1 0:233 0:240 ip community-list standard 1_234_239 permit 65000:1 0:234 0:239 ip community-list standard 1_235_238 permit 65000:1 0:235 0:238 ip community-list standard 1_236_237 permit 65000:1 0:236 0:237 route-map calculator permit 18033 match community 2_11_43 1_217_256 1_218_255 1_219_254 1_220_253 set community 0:473 route-map calculator permit 18034 match community 1_221_252 1_222_251 1_223_250 1_224_249 1_225_248 set community 0:473 route-map calculator permit 18035 match community 1_226_247 1_227_246 1_228_245 1_229_244 1_230_243 set community 0:473 route-map calculator permit 18036 match community 1_231_242 1_232_241 1_233_240 1_234_239 1_235_238 set community 0:473 route-map calculator permit 18037 match community 1_236_237 set community 0:473 ip community-list standard 2_88_167 permit 65000:2 0:88 0:167 route-map calculator permit 18038 match community 2_88_167 set community 0:14696 ip community-list standard 2_214_252 permit 65000:2 0:214 0:252 route-map calculator permit 18039 match community 2_214_252 set community 0:53928 ip community-list standard 2_43_101 permit 65000:2 0:43 0:101 route-map calculator permit 18040 match community 2_43_101 set community 0:4343 ip community-list standard 2_104_221 permit 65000:2 0:104 0:221 ip community-list standard 2_136_169 permit 65000:2 0:136 0:169 route-map calculator permit 18041 match community 2_104_221 2_136_169 set community 0:22984 ip community-list standard 2_49_250 permit 65000:2 0:49 0:250 ip community-list standard 2_50_245 permit 65000:2 0:50 0:245 ip community-list standard 2_70_175 permit 65000:2 0:70 0:175 ip community-list standard 2_98_125 permit 65000:2 0:98 0:125 route-map calculator permit 18042 match community 2_49_250 2_50_245 2_70_175 2_98_125 set community 0:12250 ip community-list standard 2_202_233 permit 65000:2 0:202 0:233 route-map calculator permit 18043 match community 2_202_233 set community 0:47066 ip community-list standard 2_33_179 permit 65000:2 0:33 0:179 route-map calculator permit 18044 match community 2_33_179 set community 0:5907 ip community-list standard 2_102_214 permit 65000:2 0:102 0:214 ip community-list standard 2_107_204 permit 65000:2 0:107 0:204 route-map calculator permit 18045 match community 2_102_214 2_107_204 set community 0:21828 ip community-list standard 2_129_137 permit 65000:2 0:129 0:137 route-map calculator permit 18046 match community 2_129_137 set community 0:17673 ip community-list standard 2_49_191 permit 65000:2 0:49 0:191 route-map calculator permit 18047 match community 2_49_191 set community 0:9359 ip community-list standard 2_13_196 permit 65000:2 0:13 0:196 ip community-list standard 2_14_182 permit 65000:2 0:14 0:182 ip community-list standard 2_26_98 permit 65000:2 0:26 0:98 ip community-list standard 2_28_91 permit 65000:2 0:28 0:91 ip community-list standard 2_49_52 permit 65000:2 0:49 0:52 route-map calculator permit 18048 match community 2_13_196 2_14_182 2_26_98 2_28_91 2_49_52 set community 0:2548 ip community-list standard 2_111_243 permit 65000:2 0:111 0:243 route-map calculator permit 18049 match community 2_111_243 set community 0:26973 ip community-list standard 2_191_249 permit 65000:2 0:191 0:249 route-map calculator permit 18050 match community 2_191_249 set community 0:47559 ip community-list standard 2_139_152 permit 65000:2 0:139 0:152 route-map calculator permit 18051 match community 2_139_152 set community 0:21128 ip community-list standard 2_127_201 permit 65000:2 0:127 0:201 route-map calculator permit 18052 match community 2_127_201 set community 0:25527 ip community-list standard 2_59_236 permit 65000:2 0:59 0:236 ip community-list standard 2_118_118 permit 65000:2 0:118 0:118 route-map calculator permit 18053 match community 2_59_236 2_118_118 set community 0:13924 ip community-list standard 2_155_225 permit 65000:2 0:155 0:225 route-map calculator permit 18054 match community 2_155_225 set community 0:34875 ip community-list standard 2_173_243 permit 65000:2 0:173 0:243 route-map calculator permit 18055 match community 2_173_243 set community 0:42039 ip community-list standard 2_94_244 permit 65000:2 0:94 0:244 ip community-list standard 2_122_188 permit 65000:2 0:122 0:188 route-map calculator permit 18056 match community 2_94_244 2_122_188 set community 0:22936 ip community-list standard 2_45_213 permit 65000:2 0:45 0:213 ip community-list standard 2_71_135 permit 65000:2 0:71 0:135 route-map calculator permit 18057 match community 2_45_213 2_71_135 set community 0:9585 ip community-list standard 2_138_151 permit 65000:2 0:138 0:151 route-map calculator permit 18058 match community 2_138_151 set community 0:20838 ip community-list standard 2_244_247 permit 65000:2 0:244 0:247 route-map calculator permit 18059 match community 2_244_247 set community 0:60268 ip community-list standard 2_194_200 permit 65000:2 0:194 0:200 route-map calculator permit 18060 match community 2_194_200 set community 0:38800 ip community-list standard 2_222_235 permit 65000:2 0:222 0:235 route-map calculator permit 18061 match community 2_222_235 set community 0:52170 ip community-list standard 2_141_159 permit 65000:2 0:141 0:159 route-map calculator permit 18062 match community 2_141_159 set community 0:22419 ip community-list standard 2_55_185 permit 65000:2 0:55 0:185 route-map calculator permit 18063 match community 2_55_185 set community 0:10175 ip community-list standard 2_154_229 permit 65000:2 0:154 0:229 route-map calculator permit 18064 match community 2_154_229 set community 0:35266 ip community-list standard 2_82_232 permit 65000:2 0:82 0:232 ip community-list standard 2_116_164 permit 65000:2 0:116 0:164 route-map calculator permit 18065 match community 2_82_232 2_116_164 set community 0:19024 ip community-list standard 2_104_213 permit 65000:2 0:104 0:213 ip community-list standard 2_142_156 permit 65000:2 0:142 0:156 route-map calculator permit 18066 match community 2_104_213 2_142_156 set community 0:22152 ip community-list standard 2_67_77 permit 65000:2 0:67 0:77 route-map calculator permit 18067 match community 2_67_77 set community 0:5159 ip community-list standard 2_87_190 permit 65000:2 0:87 0:190 ip community-list standard 2_95_174 permit 65000:2 0:95 0:174 ip community-list standard 2_114_145 permit 65000:2 0:114 0:145 route-map calculator permit 18068 match community 2_87_190 2_95_174 2_114_145 set community 0:16530 ip community-list standard 2_64_214 permit 65000:2 0:64 0:214 ip community-list standard 2_107_128 permit 65000:2 0:107 0:128 route-map calculator permit 18069 match community 2_64_214 2_107_128 set community 0:13696 ip community-list standard 2_159_250 permit 65000:2 0:159 0:250 route-map calculator permit 18070 match community 2_159_250 set community 0:39750 ip community-list standard 2_6_234 permit 65000:2 0:6 0:234 ip community-list standard 2_9_156 permit 65000:2 0:9 0:156 ip community-list standard 2_12_117 permit 65000:2 0:12 0:117 ip community-list standard 2_13_108 permit 65000:2 0:13 0:108 ip community-list standard 2_18_78 permit 65000:2 0:18 0:78 ip community-list standard 2_26_54 permit 65000:2 0:26 0:54 ip community-list standard 2_27_52 permit 65000:2 0:27 0:52 ip community-list standard 2_36_39 permit 65000:2 0:36 0:39 route-map calculator permit 18071 match community 2_6_234 2_9_156 2_12_117 2_13_108 2_18_78 set community 0:1404 route-map calculator permit 18072 match community 2_26_54 2_27_52 2_36_39 set community 0:1404 ip community-list standard 2_63_173 permit 65000:2 0:63 0:173 route-map calculator permit 18073 match community 2_63_173 set community 0:10899 ip community-list standard 2_89_169 permit 65000:2 0:89 0:169 route-map calculator permit 18074 match community 2_89_169 set community 0:15041 ip community-list standard 2_142_151 permit 65000:2 0:142 0:151 route-map calculator permit 18075 match community 2_142_151 set community 0:21442 ip community-list standard 2_115_232 permit 65000:2 0:115 0:232 ip community-list standard 2_116_230 permit 65000:2 0:116 0:230 ip community-list standard 2_145_184 permit 65000:2 0:145 0:184 route-map calculator permit 18076 match community 2_115_232 2_116_230 2_145_184 set community 0:26680 ip community-list standard 2_92_163 permit 65000:2 0:92 0:163 route-map calculator permit 18077 match community 2_92_163 set community 0:14996 ip community-list standard 2_222_255 permit 65000:2 0:222 0:255 route-map calculator permit 18078 match community 2_222_255 set community 0:56610 ip community-list standard 2_99_250 permit 65000:2 0:99 0:250 ip community-list standard 2_110_225 permit 65000:2 0:110 0:225 ip community-list standard 2_125_198 permit 65000:2 0:125 0:198 ip community-list standard 2_150_165 permit 65000:2 0:150 0:165 route-map calculator permit 18079 match community 2_99_250 2_110_225 2_125_198 2_150_165 set community 0:24750 ip community-list standard 2_149_244 permit 65000:2 0:149 0:244 route-map calculator permit 18080 match community 2_149_244 set community 0:36356 ip community-list standard 2_198_248 permit 65000:2 0:198 0:248 route-map calculator permit 18081 match community 2_198_248 set community 0:49104 ip community-list standard 2_113_151 permit 65000:2 0:113 0:151 route-map calculator permit 18082 match community 2_113_151 set community 0:17063 ip community-list standard 2_160_244 permit 65000:2 0:160 0:244 route-map calculator permit 18083 match community 2_160_244 set community 0:39040 ip community-list standard 2_93_188 permit 65000:2 0:93 0:188 ip community-list standard 2_94_186 permit 65000:2 0:94 0:186 ip community-list standard 2_124_141 permit 65000:2 0:124 0:141 route-map calculator permit 18084 match community 2_93_188 2_94_186 2_124_141 set community 0:17484 ip community-list standard 2_4_252 permit 65000:2 0:4 0:252 ip community-list standard 2_6_168 permit 65000:2 0:6 0:168 ip community-list standard 2_7_144 permit 65000:2 0:7 0:144 ip community-list standard 2_8_126 permit 65000:2 0:8 0:126 ip community-list standard 2_9_112 permit 65000:2 0:9 0:112 ip community-list standard 2_12_84 permit 65000:2 0:12 0:84 ip community-list standard 2_14_72 permit 65000:2 0:14 0:72 ip community-list standard 2_16_63 permit 65000:2 0:16 0:63 ip community-list standard 2_18_56 permit 65000:2 0:18 0:56 ip community-list standard 2_21_48 permit 65000:2 0:21 0:48 ip community-list standard 2_24_42 permit 65000:2 0:24 0:42 ip community-list standard 2_28_36 permit 65000:2 0:28 0:36 route-map calculator permit 18085 match community 2_4_252 2_6_168 2_7_144 2_8_126 2_9_112 set community 0:1008 route-map calculator permit 18086 match community 2_12_84 2_14_72 2_16_63 2_18_56 2_21_48 set community 0:1008 route-map calculator permit 18087 match community 2_24_42 2_28_36 set community 0:1008 ip community-list standard 2_172_182 permit 65000:2 0:172 0:182 route-map calculator permit 18088 match community 2_172_182 set community 0:31304 ip community-list standard 2_164_236 permit 65000:2 0:164 0:236 route-map calculator permit 18089 match community 2_164_236 set community 0:38704 ip community-list standard 2_145_185 permit 65000:2 0:145 0:185 route-map calculator permit 18090 match community 2_145_185 set community 0:26825 ip community-list standard 2_175_209 permit 65000:2 0:175 0:209 route-map calculator permit 18091 match community 2_175_209 set community 0:36575 ip community-list standard 2_137_216 permit 65000:2 0:137 0:216 route-map calculator permit 18092 match community 2_137_216 set community 0:29592 ip community-list standard 2_57_107 permit 65000:2 0:57 0:107 route-map calculator permit 18093 match community 2_57_107 set community 0:6099 ip community-list standard 2_9_113 permit 65000:2 0:9 0:113 route-map calculator permit 18094 match community 2_9_113 set community 0:1017 ip community-list standard 2_47_231 permit 65000:2 0:47 0:231 ip community-list standard 2_77_141 permit 65000:2 0:77 0:141 route-map calculator permit 18095 match community 2_47_231 2_77_141 set community 0:10857 ip community-list standard 2_11_229 permit 65000:2 0:11 0:229 route-map calculator permit 18096 match community 2_11_229 set community 0:2519 ip community-list standard 2_62_185 permit 65000:2 0:62 0:185 ip community-list standard 2_74_155 permit 65000:2 0:74 0:155 route-map calculator permit 18097 match community 2_62_185 2_74_155 set community 0:11470 ip community-list standard 2_196_256 permit 65000:2 0:196 0:256 ip community-list standard 2_224_224 permit 65000:2 0:224 0:224 route-map calculator permit 18098 match community 2_196_256 2_224_224 set community 0:50176 ip community-list standard 2_214_223 permit 65000:2 0:214 0:223 route-map calculator permit 18099 match community 2_214_223 set community 0:47722 ip community-list standard 2_106_195 permit 65000:2 0:106 0:195 ip community-list standard 2_130_159 permit 65000:2 0:130 0:159 route-map calculator permit 18100 match community 2_106_195 2_130_159 set community 0:20670 ip community-list standard 2_53_77 permit 65000:2 0:53 0:77 route-map calculator permit 18101 match community 2_53_77 set community 0:4081 ip community-list standard 2_7_190 permit 65000:2 0:7 0:190 ip community-list standard 2_10_133 permit 65000:2 0:10 0:133 ip community-list standard 2_14_95 permit 65000:2 0:14 0:95 ip community-list standard 2_19_70 permit 65000:2 0:19 0:70 ip community-list standard 2_35_38 permit 65000:2 0:35 0:38 route-map calculator permit 18102 match community 2_7_190 2_10_133 2_14_95 2_19_70 2_35_38 set community 0:1330 ip community-list standard 2_104_229 permit 65000:2 0:104 0:229 route-map calculator permit 18103 match community 2_104_229 set community 0:23816 ip community-list standard 2_4_130 permit 65000:2 0:4 0:130 ip community-list standard 2_5_104 permit 65000:2 0:5 0:104 ip community-list standard 2_8_65 permit 65000:2 0:8 0:65 ip community-list standard 2_10_52 permit 65000:2 0:10 0:52 ip community-list standard 2_13_40 permit 65000:2 0:13 0:40 ip community-list standard 2_20_26 permit 65000:2 0:20 0:26 route-map calculator permit 18104 match community 2_4_130 2_5_104 2_8_65 2_10_52 2_13_40 set community 0:520 route-map calculator permit 18105 match community 2_20_26 set community 0:520 ip community-list standard 2_54_179 permit 65000:2 0:54 0:179 route-map calculator permit 18106 match community 2_54_179 set community 0:9666 ip community-list standard 2_218_228 permit 65000:2 0:218 0:228 route-map calculator permit 18107 match community 2_218_228 set community 0:49704 ip community-list standard 2_77_235 permit 65000:2 0:77 0:235 route-map calculator permit 18108 match community 2_77_235 set community 0:18095 ip community-list standard 2_44_235 permit 65000:2 0:44 0:235 ip community-list standard 2_47_220 permit 65000:2 0:47 0:220 ip community-list standard 2_55_188 permit 65000:2 0:55 0:188 ip community-list standard 2_94_110 permit 65000:2 0:94 0:110 route-map calculator permit 18109 match community 2_44_235 2_47_220 2_55_188 2_94_110 set community 0:10340 ip community-list standard 2_39_253 permit 65000:2 0:39 0:253 ip community-list standard 2_69_143 permit 65000:2 0:69 0:143 route-map calculator permit 18110 match community 2_39_253 2_69_143 set community 0:9867 ip community-list standard 2_163_254 permit 65000:2 0:163 0:254 route-map calculator permit 18111 match community 2_163_254 set community 0:41402 ip community-list standard 2_92_202 permit 65000:2 0:92 0:202 ip community-list standard 2_101_184 permit 65000:2 0:101 0:184 route-map calculator permit 18112 match community 2_92_202 2_101_184 set community 0:18584 ip community-list standard 2_113_236 permit 65000:2 0:113 0:236 ip community-list standard 2_118_226 permit 65000:2 0:118 0:226 route-map calculator permit 18113 match community 2_113_236 2_118_226 set community 0:26668 ip community-list standard 2_206_208 permit 65000:2 0:206 0:208 route-map calculator permit 18114 match community 2_206_208 set community 0:42848 ip community-list standard 2_185_253 permit 65000:2 0:185 0:253 route-map calculator permit 18115 match community 2_185_253 set community 0:46805 ip community-list standard 2_53_110 permit 65000:2 0:53 0:110 ip community-list standard 2_55_106 permit 65000:2 0:55 0:106 route-map calculator permit 18116 match community 2_53_110 2_55_106 set community 0:5830 ip community-list standard 2_190_202 permit 65000:2 0:190 0:202 route-map calculator permit 18117 match community 2_190_202 set community 0:38380 ip community-list standard 2_214_256 permit 65000:2 0:214 0:256 route-map calculator permit 18118 match community 2_214_256 set community 0:54784 ip community-list standard 2_4_142 permit 65000:2 0:4 0:142 ip community-list standard 2_8_71 permit 65000:2 0:8 0:71 route-map calculator permit 18119 match community 2_4_142 2_8_71 set community 0:568 ip community-list standard 2_132_213 permit 65000:2 0:132 0:213 ip community-list standard 2_142_198 permit 65000:2 0:142 0:198 route-map calculator permit 18120 match community 2_132_213 2_142_198 set community 0:28116 ip community-list standard 2_122_215 permit 65000:2 0:122 0:215 route-map calculator permit 18121 match community 2_122_215 set community 0:26230 ip community-list standard 2_9_169 permit 65000:2 0:9 0:169 ip community-list standard 2_13_117 permit 65000:2 0:13 0:117 ip community-list standard 2_39_39 permit 65000:2 0:39 0:39 route-map calculator permit 18122 match community 2_9_169 2_13_117 2_39_39 set community 0:1521 ip community-list standard 2_147_177 permit 65000:2 0:147 0:177 route-map calculator permit 18123 match community 2_147_177 set community 0:26019 ip community-list standard 2_2_129 permit 65000:2 0:2 0:129 ip community-list standard 1_2_256 permit 65000:1 0:2 0:256 ip community-list standard 2_3_86 permit 65000:2 0:3 0:86 ip community-list standard 1_3_255 permit 65000:1 0:3 0:255 ip community-list standard 1_4_254 permit 65000:1 0:4 0:254 ip community-list standard 1_5_253 permit 65000:1 0:5 0:253 ip community-list standard 2_6_43 permit 65000:2 0:6 0:43 ip community-list standard 1_6_252 permit 65000:1 0:6 0:252 ip community-list standard 1_7_251 permit 65000:1 0:7 0:251 ip community-list standard 1_8_250 permit 65000:1 0:8 0:250 ip community-list standard 1_9_249 permit 65000:1 0:9 0:249 ip community-list standard 1_10_248 permit 65000:1 0:10 0:248 ip community-list standard 1_11_247 permit 65000:1 0:11 0:247 ip community-list standard 1_12_246 permit 65000:1 0:12 0:246 ip community-list standard 1_13_245 permit 65000:1 0:13 0:245 ip community-list standard 1_14_244 permit 65000:1 0:14 0:244 ip community-list standard 1_15_243 permit 65000:1 0:15 0:243 ip community-list standard 1_16_242 permit 65000:1 0:16 0:242 ip community-list standard 1_17_241 permit 65000:1 0:17 0:241 ip community-list standard 1_18_240 permit 65000:1 0:18 0:240 ip community-list standard 1_19_239 permit 65000:1 0:19 0:239 ip community-list standard 1_20_238 permit 65000:1 0:20 0:238 ip community-list standard 1_21_237 permit 65000:1 0:21 0:237 ip community-list standard 1_22_236 permit 65000:1 0:22 0:236 ip community-list standard 1_23_235 permit 65000:1 0:23 0:235 ip community-list standard 1_24_234 permit 65000:1 0:24 0:234 ip community-list standard 1_25_233 permit 65000:1 0:25 0:233 ip community-list standard 1_26_232 permit 65000:1 0:26 0:232 ip community-list standard 1_27_231 permit 65000:1 0:27 0:231 ip community-list standard 1_28_230 permit 65000:1 0:28 0:230 ip community-list standard 1_29_229 permit 65000:1 0:29 0:229 ip community-list standard 1_30_228 permit 65000:1 0:30 0:228 ip community-list standard 1_31_227 permit 65000:1 0:31 0:227 ip community-list standard 1_32_226 permit 65000:1 0:32 0:226 ip community-list standard 1_33_225 permit 65000:1 0:33 0:225 ip community-list standard 1_34_224 permit 65000:1 0:34 0:224 ip community-list standard 1_35_223 permit 65000:1 0:35 0:223 ip community-list standard 1_36_222 permit 65000:1 0:36 0:222 ip community-list standard 1_37_221 permit 65000:1 0:37 0:221 ip community-list standard 1_38_220 permit 65000:1 0:38 0:220 ip community-list standard 1_39_219 permit 65000:1 0:39 0:219 ip community-list standard 1_40_218 permit 65000:1 0:40 0:218 ip community-list standard 1_41_217 permit 65000:1 0:41 0:217 ip community-list standard 1_42_216 permit 65000:1 0:42 0:216 ip community-list standard 1_43_215 permit 65000:1 0:43 0:215 ip community-list standard 1_44_214 permit 65000:1 0:44 0:214 ip community-list standard 1_45_213 permit 65000:1 0:45 0:213 ip community-list standard 1_46_212 permit 65000:1 0:46 0:212 ip community-list standard 1_47_211 permit 65000:1 0:47 0:211 ip community-list standard 1_48_210 permit 65000:1 0:48 0:210 ip community-list standard 1_49_209 permit 65000:1 0:49 0:209 ip community-list standard 1_50_208 permit 65000:1 0:50 0:208 ip community-list standard 1_51_207 permit 65000:1 0:51 0:207 ip community-list standard 1_52_206 permit 65000:1 0:52 0:206 ip community-list standard 1_53_205 permit 65000:1 0:53 0:205 ip community-list standard 1_54_204 permit 65000:1 0:54 0:204 ip community-list standard 1_55_203 permit 65000:1 0:55 0:203 ip community-list standard 1_56_202 permit 65000:1 0:56 0:202 ip community-list standard 1_57_201 permit 65000:1 0:57 0:201 ip community-list standard 1_58_200 permit 65000:1 0:58 0:200 ip community-list standard 1_59_199 permit 65000:1 0:59 0:199 ip community-list standard 1_60_198 permit 65000:1 0:60 0:198 ip community-list standard 1_61_197 permit 65000:1 0:61 0:197 ip community-list standard 1_62_196 permit 65000:1 0:62 0:196 ip community-list standard 1_63_195 permit 65000:1 0:63 0:195 ip community-list standard 1_64_194 permit 65000:1 0:64 0:194 ip community-list standard 1_65_193 permit 65000:1 0:65 0:193 ip community-list standard 1_66_192 permit 65000:1 0:66 0:192 ip community-list standard 1_67_191 permit 65000:1 0:67 0:191 ip community-list standard 1_68_190 permit 65000:1 0:68 0:190 ip community-list standard 1_69_189 permit 65000:1 0:69 0:189 ip community-list standard 1_70_188 permit 65000:1 0:70 0:188 ip community-list standard 1_71_187 permit 65000:1 0:71 0:187 ip community-list standard 1_72_186 permit 65000:1 0:72 0:186 ip community-list standard 1_73_185 permit 65000:1 0:73 0:185 ip community-list standard 1_74_184 permit 65000:1 0:74 0:184 ip community-list standard 1_75_183 permit 65000:1 0:75 0:183 ip community-list standard 1_76_182 permit 65000:1 0:76 0:182 ip community-list standard 1_77_181 permit 65000:1 0:77 0:181 ip community-list standard 1_78_180 permit 65000:1 0:78 0:180 ip community-list standard 1_79_179 permit 65000:1 0:79 0:179 ip community-list standard 1_80_178 permit 65000:1 0:80 0:178 ip community-list standard 1_81_177 permit 65000:1 0:81 0:177 ip community-list standard 1_82_176 permit 65000:1 0:82 0:176 ip community-list standard 1_83_175 permit 65000:1 0:83 0:175 ip community-list standard 1_84_174 permit 65000:1 0:84 0:174 ip community-list standard 1_85_173 permit 65000:1 0:85 0:173 ip community-list standard 1_86_172 permit 65000:1 0:86 0:172 ip community-list standard 1_87_171 permit 65000:1 0:87 0:171 ip community-list standard 1_88_170 permit 65000:1 0:88 0:170 ip community-list standard 1_89_169 permit 65000:1 0:89 0:169 ip community-list standard 1_90_168 permit 65000:1 0:90 0:168 ip community-list standard 1_91_167 permit 65000:1 0:91 0:167 ip community-list standard 1_92_166 permit 65000:1 0:92 0:166 ip community-list standard 1_93_165 permit 65000:1 0:93 0:165 ip community-list standard 1_94_164 permit 65000:1 0:94 0:164 ip community-list standard 1_95_163 permit 65000:1 0:95 0:163 ip community-list standard 1_96_162 permit 65000:1 0:96 0:162 ip community-list standard 1_97_161 permit 65000:1 0:97 0:161 ip community-list standard 1_98_160 permit 65000:1 0:98 0:160 ip community-list standard 1_99_159 permit 65000:1 0:99 0:159 ip community-list standard 1_100_158 permit 65000:1 0:100 0:158 ip community-list standard 1_101_157 permit 65000:1 0:101 0:157 ip community-list standard 1_102_156 permit 65000:1 0:102 0:156 ip community-list standard 1_103_155 permit 65000:1 0:103 0:155 ip community-list standard 1_104_154 permit 65000:1 0:104 0:154 ip community-list standard 1_105_153 permit 65000:1 0:105 0:153 ip community-list standard 1_106_152 permit 65000:1 0:106 0:152 ip community-list standard 1_107_151 permit 65000:1 0:107 0:151 ip community-list standard 1_108_150 permit 65000:1 0:108 0:150 ip community-list standard 1_109_149 permit 65000:1 0:109 0:149 ip community-list standard 1_110_148 permit 65000:1 0:110 0:148 ip community-list standard 1_111_147 permit 65000:1 0:111 0:147 ip community-list standard 1_112_146 permit 65000:1 0:112 0:146 ip community-list standard 1_113_145 permit 65000:1 0:113 0:145 ip community-list standard 1_114_144 permit 65000:1 0:114 0:144 ip community-list standard 1_115_143 permit 65000:1 0:115 0:143 ip community-list standard 1_116_142 permit 65000:1 0:116 0:142 ip community-list standard 1_117_141 permit 65000:1 0:117 0:141 ip community-list standard 1_118_140 permit 65000:1 0:118 0:140 ip community-list standard 1_119_139 permit 65000:1 0:119 0:139 ip community-list standard 1_120_138 permit 65000:1 0:120 0:138 ip community-list standard 1_121_137 permit 65000:1 0:121 0:137 ip community-list standard 1_122_136 permit 65000:1 0:122 0:136 ip community-list standard 1_123_135 permit 65000:1 0:123 0:135 ip community-list standard 1_124_134 permit 65000:1 0:124 0:134 ip community-list standard 1_125_133 permit 65000:1 0:125 0:133 ip community-list standard 1_126_132 permit 65000:1 0:126 0:132 ip community-list standard 1_127_131 permit 65000:1 0:127 0:131 ip community-list standard 1_128_130 permit 65000:1 0:128 0:130 ip community-list standard 1_129_129 permit 65000:1 0:129 0:129 route-map calculator permit 18124 match community 2_2_129 1_2_256 2_3_86 1_3_255 1_4_254 set community 0:258 route-map calculator permit 18125 match community 1_5_253 2_6_43 1_6_252 1_7_251 1_8_250 set community 0:258 route-map calculator permit 18126 match community 1_9_249 1_10_248 1_11_247 1_12_246 1_13_245 set community 0:258 route-map calculator permit 18127 match community 1_14_244 1_15_243 1_16_242 1_17_241 1_18_240 set community 0:258 route-map calculator permit 18128 match community 1_19_239 1_20_238 1_21_237 1_22_236 1_23_235 set community 0:258 route-map calculator permit 18129 match community 1_24_234 1_25_233 1_26_232 1_27_231 1_28_230 set community 0:258 route-map calculator permit 18130 match community 1_29_229 1_30_228 1_31_227 1_32_226 1_33_225 set community 0:258 route-map calculator permit 18131 match community 1_34_224 1_35_223 1_36_222 1_37_221 1_38_220 set community 0:258 route-map calculator permit 18132 match community 1_39_219 1_40_218 1_41_217 1_42_216 1_43_215 set community 0:258 route-map calculator permit 18133 match community 1_44_214 1_45_213 1_46_212 1_47_211 1_48_210 set community 0:258 route-map calculator permit 18134 match community 1_49_209 1_50_208 1_51_207 1_52_206 1_53_205 set community 0:258 route-map calculator permit 18135 match community 1_54_204 1_55_203 1_56_202 1_57_201 1_58_200 set community 0:258 route-map calculator permit 18136 match community 1_59_199 1_60_198 1_61_197 1_62_196 1_63_195 set community 0:258 route-map calculator permit 18137 match community 1_64_194 1_65_193 1_66_192 1_67_191 1_68_190 set community 0:258 route-map calculator permit 18138 match community 1_69_189 1_70_188 1_71_187 1_72_186 1_73_185 set community 0:258 route-map calculator permit 18139 match community 1_74_184 1_75_183 1_76_182 1_77_181 1_78_180 set community 0:258 route-map calculator permit 18140 match community 1_79_179 1_80_178 1_81_177 1_82_176 1_83_175 set community 0:258 route-map calculator permit 18141 match community 1_84_174 1_85_173 1_86_172 1_87_171 1_88_170 set community 0:258 route-map calculator permit 18142 match community 1_89_169 1_90_168 1_91_167 1_92_166 1_93_165 set community 0:258 route-map calculator permit 18143 match community 1_94_164 1_95_163 1_96_162 1_97_161 1_98_160 set community 0:258 route-map calculator permit 18144 match community 1_99_159 1_100_158 1_101_157 1_102_156 1_103_155 set community 0:258 route-map calculator permit 18145 match community 1_104_154 1_105_153 1_106_152 1_107_151 1_108_150 set community 0:258 route-map calculator permit 18146 match community 1_109_149 1_110_148 1_111_147 1_112_146 1_113_145 set community 0:258 route-map calculator permit 18147 match community 1_114_144 1_115_143 1_116_142 1_117_141 1_118_140 set community 0:258 route-map calculator permit 18148 match community 1_119_139 1_120_138 1_121_137 1_122_136 1_123_135 set community 0:258 route-map calculator permit 18149 match community 1_124_134 1_125_133 1_126_132 1_127_131 1_128_130 set community 0:258 route-map calculator permit 18150 match community 1_129_129 set community 0:258 ip community-list standard 2_166_208 permit 65000:2 0:166 0:208 route-map calculator permit 18151 match community 2_166_208 set community 0:34528 ip community-list standard 2_109_171 permit 65000:2 0:109 0:171 route-map calculator permit 18152 match community 2_109_171 set community 0:18639 ip community-list standard 2_9_117 permit 65000:2 0:9 0:117 ip community-list standard 2_13_81 permit 65000:2 0:13 0:81 ip community-list standard 2_27_39 permit 65000:2 0:27 0:39 route-map calculator permit 18153 match community 2_9_117 2_13_81 2_27_39 set community 0:1053 ip community-list standard 2_52_243 permit 65000:2 0:52 0:243 ip community-list standard 2_54_234 permit 65000:2 0:54 0:234 ip community-list standard 2_78_162 permit 65000:2 0:78 0:162 ip community-list standard 2_81_156 permit 65000:2 0:81 0:156 ip community-list standard 2_108_117 permit 65000:2 0:108 0:117 route-map calculator permit 18154 match community 2_52_243 2_54_234 2_78_162 2_81_156 2_108_117 set community 0:12636 ip community-list standard 2_163_175 permit 65000:2 0:163 0:175 route-map calculator permit 18155 match community 2_163_175 set community 0:28525 ip community-list standard 2_28_167 permit 65000:2 0:28 0:167 route-map calculator permit 18156 match community 2_28_167 set community 0:4676 ip community-list standard 2_116_229 permit 65000:2 0:116 0:229 route-map calculator permit 18157 match community 2_116_229 set community 0:26564 ip community-list standard 2_57_137 permit 65000:2 0:57 0:137 route-map calculator permit 18158 match community 2_57_137 set community 0:7809 ip community-list standard 2_77_107 permit 65000:2 0:77 0:107 route-map calculator permit 18159 match community 2_77_107 set community 0:8239 ip community-list standard 2_59_163 permit 65000:2 0:59 0:163 route-map calculator permit 18160 match community 2_59_163 set community 0:9617 ip community-list standard 2_60_235 permit 65000:2 0:60 0:235 ip community-list standard 2_75_188 permit 65000:2 0:75 0:188 ip community-list standard 2_94_150 permit 65000:2 0:94 0:150 ip community-list standard 2_100_141 permit 65000:2 0:100 0:141 route-map calculator permit 18161 match community 2_60_235 2_75_188 2_94_150 2_100_141 set community 0:14100 ip community-list standard 2_174_230 permit 65000:2 0:174 0:230 route-map calculator permit 18162 match community 2_174_230 set community 0:40020 ip community-list standard 2_30_247 permit 65000:2 0:30 0:247 ip community-list standard 2_38_195 permit 65000:2 0:38 0:195 ip community-list standard 2_39_190 permit 65000:2 0:39 0:190 ip community-list standard 2_57_130 permit 65000:2 0:57 0:130 ip community-list standard 2_65_114 permit 65000:2 0:65 0:114 ip community-list standard 2_78_95 permit 65000:2 0:78 0:95 route-map calculator permit 18163 match community 2_30_247 2_38_195 2_39_190 2_57_130 2_65_114 set community 0:7410 route-map calculator permit 18164 match community 2_78_95 set community 0:7410 ip community-list standard 2_35_187 permit 65000:2 0:35 0:187 ip community-list standard 2_55_119 permit 65000:2 0:55 0:119 ip community-list standard 2_77_85 permit 65000:2 0:77 0:85 route-map calculator permit 18165 match community 2_35_187 2_55_119 2_77_85 set community 0:6545 ip community-list standard 2_129_218 permit 65000:2 0:129 0:218 route-map calculator permit 18166 match community 2_129_218 set community 0:28122 ip community-list standard 2_79_89 permit 65000:2 0:79 0:89 route-map calculator permit 18167 match community 2_79_89 set community 0:7031 ip community-list standard 2_115_157 permit 65000:2 0:115 0:157 route-map calculator permit 18168 match community 2_115_157 set community 0:18055 ip community-list standard 2_133_255 permit 65000:2 0:133 0:255 route-map calculator permit 18169 match community 2_133_255 set community 0:33915 ip community-list standard 2_177_182 permit 65000:2 0:177 0:182 route-map calculator permit 18170 match community 2_177_182 set community 0:32214 ip community-list standard 2_173_182 permit 65000:2 0:173 0:182 route-map calculator permit 18171 match community 2_173_182 set community 0:31486 ip community-list standard 2_29_211 permit 65000:2 0:29 0:211 route-map calculator permit 18172 match community 2_29_211 set community 0:6119 ip community-list standard 2_174_239 permit 65000:2 0:174 0:239 route-map calculator permit 18173 match community 2_174_239 set community 0:41586 ip community-list standard 2_79_175 permit 65000:2 0:79 0:175 route-map calculator permit 18174 match community 2_79_175 set community 0:13825 ip community-list standard 2_175_245 permit 65000:2 0:175 0:245 route-map calculator permit 18175 match community 2_175_245 set community 0:42875 ip community-list standard 2_175_208 permit 65000:2 0:175 0:208 ip community-list standard 2_182_200 permit 65000:2 0:182 0:200 route-map calculator permit 18176 match community 2_175_208 2_182_200 set community 0:36400 ip community-list standard 2_61_238 permit 65000:2 0:61 0:238 ip community-list standard 2_119_122 permit 65000:2 0:119 0:122 route-map calculator permit 18177 match community 2_61_238 2_119_122 set community 0:14518 ip community-list standard 2_47_53 permit 65000:2 0:47 0:53 route-map calculator permit 18178 match community 2_47_53 set community 0:2491 ip community-list standard 2_59_119 permit 65000:2 0:59 0:119 route-map calculator permit 18179 match community 2_59_119 set community 0:7021 ip community-list standard 2_98_137 permit 65000:2 0:98 0:137 route-map calculator permit 18180 match community 2_98_137 set community 0:13426 ip community-list standard 2_5_106 permit 65000:2 0:5 0:106 ip community-list standard 2_10_53 permit 65000:2 0:10 0:53 route-map calculator permit 18181 match community 2_5_106 2_10_53 set community 0:530 ip community-list standard 2_224_246 permit 65000:2 0:224 0:246 route-map calculator permit 18182 match community 2_224_246 set community 0:55104 ip community-list standard 2_190_231 permit 65000:2 0:190 0:231 ip community-list standard 2_209_210 permit 65000:2 0:209 0:210 route-map calculator permit 18183 match community 2_190_231 2_209_210 set community 0:43890 ip community-list standard 2_215_236 permit 65000:2 0:215 0:236 route-map calculator permit 18184 match community 2_215_236 set community 0:50740 ip community-list standard 2_136_184 permit 65000:2 0:136 0:184 route-map calculator permit 18185 match community 2_136_184 set community 0:25024 ip community-list standard 2_239_252 permit 65000:2 0:239 0:252 route-map calculator permit 18186 match community 2_239_252 set community 0:60228 ip community-list standard 2_129_220 permit 65000:2 0:129 0:220 ip community-list standard 2_132_215 permit 65000:2 0:132 0:215 ip community-list standard 2_165_172 permit 65000:2 0:165 0:172 route-map calculator permit 18187 match community 2_129_220 2_132_215 2_165_172 set community 0:28380 ip community-list standard 2_186_211 permit 65000:2 0:186 0:211 route-map calculator permit 18188 match community 2_186_211 set community 0:39246 ip community-list standard 2_203_236 permit 65000:2 0:203 0:236 route-map calculator permit 18189 match community 2_203_236 set community 0:47908 ip community-list standard 2_229_232 permit 65000:2 0:229 0:232 route-map calculator permit 18190 match community 2_229_232 set community 0:53128 ip community-list standard 2_158_203 permit 65000:2 0:158 0:203 route-map calculator permit 18191 match community 2_158_203 set community 0:32074 ip community-list standard 2_121_253 permit 65000:2 0:121 0:253 route-map calculator permit 18192 match community 2_121_253 set community 0:30613 ip community-list standard 2_36_223 permit 65000:2 0:36 0:223 route-map calculator permit 18193 match community 2_36_223 set community 0:8028 ip community-list standard 2_19_206 permit 65000:2 0:19 0:206 ip community-list standard 2_38_103 permit 65000:2 0:38 0:103 route-map calculator permit 18194 match community 2_19_206 2_38_103 set community 0:3914 ip community-list standard 2_58_246 permit 65000:2 0:58 0:246 ip community-list standard 2_82_174 permit 65000:2 0:82 0:174 ip community-list standard 2_87_164 permit 65000:2 0:87 0:164 ip community-list standard 2_116_123 permit 65000:2 0:116 0:123 route-map calculator permit 18195 match community 2_58_246 2_82_174 2_87_164 2_116_123 set community 0:14268 ip community-list standard 2_212_226 permit 65000:2 0:212 0:226 route-map calculator permit 18196 match community 2_212_226 set community 0:47912 ip community-list standard 2_37_208 permit 65000:2 0:37 0:208 ip community-list standard 2_52_148 permit 65000:2 0:52 0:148 ip community-list standard 2_74_104 permit 65000:2 0:74 0:104 route-map calculator permit 18197 match community 2_37_208 2_52_148 2_74_104 set community 0:7696 ip community-list standard 2_213_237 permit 65000:2 0:213 0:237 route-map calculator permit 18198 match community 2_213_237 set community 0:50481 ip community-list standard 2_172_228 permit 65000:2 0:172 0:228 route-map calculator permit 18199 match community 2_172_228 set community 0:39216 ip community-list standard 2_149_162 permit 65000:2 0:149 0:162 route-map calculator permit 18200 match community 2_149_162 set community 0:24138 ip community-list standard 2_52_211 permit 65000:2 0:52 0:211 route-map calculator permit 18201 match community 2_52_211 set community 0:10972 ip community-list standard 2_18_157 permit 65000:2 0:18 0:157 route-map calculator permit 18202 match community 2_18_157 set community 0:2826 ip community-list standard 2_35_157 permit 65000:2 0:35 0:157 route-map calculator permit 18203 match community 2_35_157 set community 0:5495 ip community-list standard 2_188_251 permit 65000:2 0:188 0:251 route-map calculator permit 18204 match community 2_188_251 set community 0:47188 ip community-list standard 2_118_252 permit 65000:2 0:118 0:252 ip community-list standard 2_126_236 permit 65000:2 0:126 0:236 ip community-list standard 2_168_177 permit 65000:2 0:168 0:177 route-map calculator permit 18205 match community 2_118_252 2_126_236 2_168_177 set community 0:29736 ip community-list standard 2_139_171 permit 65000:2 0:139 0:171 route-map calculator permit 18206 match community 2_139_171 set community 0:23769 ip community-list standard 2_8_194 permit 65000:2 0:8 0:194 ip community-list standard 2_16_97 permit 65000:2 0:16 0:97 route-map calculator permit 18207 match community 2_8_194 2_16_97 set community 0:1552 ip community-list standard 2_50_232 permit 65000:2 0:50 0:232 ip community-list standard 2_58_200 permit 65000:2 0:58 0:200 ip community-list standard 2_80_145 permit 65000:2 0:80 0:145 ip community-list standard 2_100_116 permit 65000:2 0:100 0:116 route-map calculator permit 18208 match community 2_50_232 2_58_200 2_80_145 2_100_116 set community 0:11600 ip community-list standard 2_188_209 permit 65000:2 0:188 0:209 route-map calculator permit 18209 match community 2_188_209 set community 0:39292 ip community-list standard 2_59_248 permit 65000:2 0:59 0:248 ip community-list standard 2_62_236 permit 65000:2 0:62 0:236 ip community-list standard 2_118_124 permit 65000:2 0:118 0:124 route-map calculator permit 18210 match community 2_59_248 2_62_236 2_118_124 set community 0:14632 ip community-list standard 2_246_247 permit 65000:2 0:246 0:247 route-map calculator permit 18211 match community 2_246_247 set community 0:60762 ip community-list standard 2_20_201 permit 65000:2 0:20 0:201 ip community-list standard 2_30_134 permit 65000:2 0:30 0:134 ip community-list standard 2_60_67 permit 65000:2 0:60 0:67 route-map calculator permit 18212 match community 2_20_201 2_30_134 2_60_67 set community 0:4020 ip community-list standard 2_92_161 permit 65000:2 0:92 0:161 route-map calculator permit 18213 match community 2_92_161 set community 0:14812 ip community-list standard 2_71_131 permit 65000:2 0:71 0:131 route-map calculator permit 18214 match community 2_71_131 set community 0:9301 ip community-list standard 2_137_137 permit 65000:2 0:137 0:137 route-map calculator permit 18215 match community 2_137_137 set community 0:18769 ip community-list standard 2_35_247 permit 65000:2 0:35 0:247 ip community-list standard 2_65_133 permit 65000:2 0:65 0:133 ip community-list standard 2_91_95 permit 65000:2 0:91 0:95 route-map calculator permit 18216 match community 2_35_247 2_65_133 2_91_95 set community 0:8645 ip community-list standard 2_206_210 permit 65000:2 0:206 0:210 route-map calculator permit 18217 match community 2_206_210 set community 0:43260 ip community-list standard 2_82_172 permit 65000:2 0:82 0:172 ip community-list standard 2_86_164 permit 65000:2 0:86 0:164 route-map calculator permit 18218 match community 2_82_172 2_86_164 set community 0:14104 ip community-list standard 2_102_218 permit 65000:2 0:102 0:218 ip community-list standard 2_109_204 permit 65000:2 0:109 0:204 route-map calculator permit 18219 match community 2_102_218 2_109_204 set community 0:22236 ip community-list standard 2_105_109 permit 65000:2 0:105 0:109 route-map calculator permit 18220 match community 2_105_109 set community 0:11445 ip community-list standard 2_198_213 permit 65000:2 0:198 0:213 route-map calculator permit 18221 match community 2_198_213 set community 0:42174 ip community-list standard 2_43_228 permit 65000:2 0:43 0:228 ip community-list standard 2_57_172 permit 65000:2 0:57 0:172 ip community-list standard 2_76_129 permit 65000:2 0:76 0:129 ip community-list standard 2_86_114 permit 65000:2 0:86 0:114 route-map calculator permit 18222 match community 2_43_228 2_57_172 2_76_129 2_86_114 set community 0:9804 ip community-list standard 2_93_99 permit 65000:2 0:93 0:99 route-map calculator permit 18223 match community 2_93_99 set community 0:9207 ip community-list standard 2_42_238 permit 65000:2 0:42 0:238 ip community-list standard 2_49_204 permit 65000:2 0:49 0:204 ip community-list standard 2_51_196 permit 65000:2 0:51 0:196 ip community-list standard 2_68_147 permit 65000:2 0:68 0:147 ip community-list standard 2_84_119 permit 65000:2 0:84 0:119 ip community-list standard 2_98_102 permit 65000:2 0:98 0:102 route-map calculator permit 18224 match community 2_42_238 2_49_204 2_51_196 2_68_147 2_84_119 set community 0:9996 route-map calculator permit 18225 match community 2_98_102 set community 0:9996 ip community-list standard 2_153_247 permit 65000:2 0:153 0:247 ip community-list standard 2_171_221 permit 65000:2 0:171 0:221 route-map calculator permit 18226 match community 2_153_247 2_171_221 set community 0:37791 ip community-list standard 2_37_230 permit 65000:2 0:37 0:230 ip community-list standard 2_46_185 permit 65000:2 0:46 0:185 ip community-list standard 2_74_115 permit 65000:2 0:74 0:115 route-map calculator permit 18227 match community 2_37_230 2_46_185 2_74_115 set community 0:8510 ip community-list standard 2_36_249 permit 65000:2 0:36 0:249 ip community-list standard 2_54_166 permit 65000:2 0:54 0:166 ip community-list standard 2_83_108 permit 65000:2 0:83 0:108 route-map calculator permit 18228 match community 2_36_249 2_54_166 2_83_108 set community 0:8964 ip community-list standard 2_220_223 permit 65000:2 0:220 0:223 route-map calculator permit 18229 match community 2_220_223 set community 0:49060 ip community-list standard 2_34_137 permit 65000:2 0:34 0:137 route-map calculator permit 18230 match community 2_34_137 set community 0:4658 ip community-list standard 2_19_125 permit 65000:2 0:19 0:125 ip community-list standard 2_25_95 permit 65000:2 0:25 0:95 route-map calculator permit 18231 match community 2_19_125 2_25_95 set community 0:2375 ip community-list standard 2_17_232 permit 65000:2 0:17 0:232 ip community-list standard 2_29_136 permit 65000:2 0:29 0:136 ip community-list standard 2_34_116 permit 65000:2 0:34 0:116 ip community-list standard 2_58_68 permit 65000:2 0:58 0:68 route-map calculator permit 18232 match community 2_17_232 2_29_136 2_34_116 2_58_68 set community 0:3944 ip community-list standard 2_38_173 permit 65000:2 0:38 0:173 route-map calculator permit 18233 match community 2_38_173 set community 0:6574 ip community-list standard 2_88_214 permit 65000:2 0:88 0:214 ip community-list standard 2_107_176 permit 65000:2 0:107 0:176 route-map calculator permit 18234 match community 2_88_214 2_107_176 set community 0:18832 ip community-list standard 2_217_234 permit 65000:2 0:217 0:234 route-map calculator permit 18235 match community 2_217_234 set community 0:50778 ip community-list standard 2_49_229 permit 65000:2 0:49 0:229 route-map calculator permit 18236 match community 2_49_229 set community 0:11221 ip community-list standard 2_39_227 permit 65000:2 0:39 0:227 route-map calculator permit 18237 match community 2_39_227 set community 0:8853 ip community-list standard 2_61_73 permit 65000:2 0:61 0:73 route-map calculator permit 18238 match community 2_61_73 set community 0:4453 ip community-list standard 2_185_219 permit 65000:2 0:185 0:219 route-map calculator permit 18239 match community 2_185_219 set community 0:40515 ip community-list standard 2_124_249 permit 65000:2 0:124 0:249 ip community-list standard 2_166_186 permit 65000:2 0:166 0:186 route-map calculator permit 18240 match community 2_124_249 2_166_186 set community 0:30876 ip community-list standard 2_215_240 permit 65000:2 0:215 0:240 route-map calculator permit 18241 match community 2_215_240 set community 0:51600 ip community-list standard 2_178_184 permit 65000:2 0:178 0:184 route-map calculator permit 18242 match community 2_178_184 set community 0:32752 ip community-list standard 2_106_218 permit 65000:2 0:106 0:218 ip community-list standard 2_109_212 permit 65000:2 0:109 0:212 route-map calculator permit 18243 match community 2_106_218 2_109_212 set community 0:23108 ip community-list standard 2_234_244 permit 65000:2 0:234 0:244 route-map calculator permit 18244 match community 2_234_244 set community 0:57096 ip community-list standard 2_12_204 permit 65000:2 0:12 0:204 ip community-list standard 2_16_153 permit 65000:2 0:16 0:153 ip community-list standard 2_17_144 permit 65000:2 0:17 0:144 ip community-list standard 2_18_136 permit 65000:2 0:18 0:136 ip community-list standard 2_24_102 permit 65000:2 0:24 0:102 ip community-list standard 2_34_72 permit 65000:2 0:34 0:72 ip community-list standard 2_36_68 permit 65000:2 0:36 0:68 ip community-list standard 2_48_51 permit 65000:2 0:48 0:51 route-map calculator permit 18245 match community 2_12_204 2_16_153 2_17_144 2_18_136 2_24_102 set community 0:2448 route-map calculator permit 18246 match community 2_34_72 2_36_68 2_48_51 set community 0:2448 ip community-list standard 2_54_241 permit 65000:2 0:54 0:241 route-map calculator permit 18247 match community 2_54_241 set community 0:13014 ip community-list standard 2_69_218 permit 65000:2 0:69 0:218 ip community-list standard 2_109_138 permit 65000:2 0:109 0:138 route-map calculator permit 18248 match community 2_69_218 2_109_138 set community 0:15042 ip community-list standard 2_110_256 permit 65000:2 0:110 0:256 ip community-list standard 2_128_220 permit 65000:2 0:128 0:220 ip community-list standard 2_160_176 permit 65000:2 0:160 0:176 route-map calculator permit 18249 match community 2_110_256 2_128_220 2_160_176 set community 0:28160 ip community-list standard 2_117_207 permit 65000:2 0:117 0:207 route-map calculator permit 18250 match community 2_117_207 set community 0:24219 ip community-list standard 2_164_187 permit 65000:2 0:164 0:187 route-map calculator permit 18251 match community 2_164_187 set community 0:30668 ip community-list standard 2_118_209 permit 65000:2 0:118 0:209 route-map calculator permit 18252 match community 2_118_209 set community 0:24662 ip community-list standard 2_148_222 permit 65000:2 0:148 0:222 route-map calculator permit 18253 match community 2_148_222 set community 0:32856 ip community-list standard 2_196_214 permit 65000:2 0:196 0:214 route-map calculator permit 18254 match community 2_196_214 set community 0:41944 ip community-list standard 2_22_202 permit 65000:2 0:22 0:202 ip community-list standard 2_44_101 permit 65000:2 0:44 0:101 route-map calculator permit 18255 match community 2_22_202 2_44_101 set community 0:4444 ip community-list standard 2_67_200 permit 65000:2 0:67 0:200 ip community-list standard 2_100_134 permit 65000:2 0:100 0:134 route-map calculator permit 18256 match community 2_67_200 2_100_134 set community 0:13400 ip community-list standard 2_65_222 permit 65000:2 0:65 0:222 ip community-list standard 2_74_195 permit 65000:2 0:74 0:195 ip community-list standard 2_78_185 permit 65000:2 0:78 0:185 ip community-list standard 2_111_130 permit 65000:2 0:111 0:130 route-map calculator permit 18257 match community 2_65_222 2_74_195 2_78_185 2_111_130 set community 0:14430 ip community-list standard 2_47_228 permit 65000:2 0:47 0:228 ip community-list standard 2_57_188 permit 65000:2 0:57 0:188 ip community-list standard 2_76_141 permit 65000:2 0:76 0:141 ip community-list standard 2_94_114 permit 65000:2 0:94 0:114 route-map calculator permit 18258 match community 2_47_228 2_57_188 2_76_141 2_94_114 set community 0:10716 ip community-list standard 2_6_246 permit 65000:2 0:6 0:246 ip community-list standard 2_9_164 permit 65000:2 0:9 0:164 ip community-list standard 2_12_123 permit 65000:2 0:12 0:123 ip community-list standard 2_18_82 permit 65000:2 0:18 0:82 ip community-list standard 2_36_41 permit 65000:2 0:36 0:41 route-map calculator permit 18259 match community 2_6_246 2_9_164 2_12_123 2_18_82 2_36_41 set community 0:1476 ip community-list standard 2_67_125 permit 65000:2 0:67 0:125 route-map calculator permit 18260 match community 2_67_125 set community 0:8375 ip community-list standard 2_26_148 permit 65000:2 0:26 0:148 ip community-list standard 2_37_104 permit 65000:2 0:37 0:104 ip community-list standard 2_52_74 permit 65000:2 0:52 0:74 route-map calculator permit 18261 match community 2_26_148 2_37_104 2_52_74 set community 0:3848 ip community-list standard 2_9_203 permit 65000:2 0:9 0:203 ip community-list standard 2_21_87 permit 65000:2 0:21 0:87 ip community-list standard 2_29_63 permit 65000:2 0:29 0:63 route-map calculator permit 18262 match community 2_9_203 2_21_87 2_29_63 set community 0:1827 ip community-list standard 2_192_226 permit 65000:2 0:192 0:226 route-map calculator permit 18263 match community 2_192_226 set community 0:43392 ip community-list standard 2_186_197 permit 65000:2 0:186 0:197 route-map calculator permit 18264 match community 2_186_197 set community 0:36642 ip community-list standard 2_82_151 permit 65000:2 0:82 0:151 route-map calculator permit 18265 match community 2_82_151 set community 0:12382 ip community-list standard 2_21_107 permit 65000:2 0:21 0:107 route-map calculator permit 18266 match community 2_21_107 set community 0:2247 ip community-list standard 2_43_229 permit 65000:2 0:43 0:229 route-map calculator permit 18267 match community 2_43_229 set community 0:9847 ip community-list standard 2_96_206 permit 65000:2 0:96 0:206 ip community-list standard 2_103_192 permit 65000:2 0:103 0:192 route-map calculator permit 18268 match community 2_96_206 2_103_192 set community 0:19776 ip community-list standard 2_56_199 permit 65000:2 0:56 0:199 route-map calculator permit 18269 match community 2_56_199 set community 0:11144 ip community-list standard 2_77_214 permit 65000:2 0:77 0:214 ip community-list standard 2_107_154 permit 65000:2 0:107 0:154 route-map calculator permit 18270 match community 2_77_214 2_107_154 set community 0:16478 ip community-list standard 2_177_245 permit 65000:2 0:177 0:245 route-map calculator permit 18271 match community 2_177_245 set community 0:43365 ip community-list standard 2_19_246 permit 65000:2 0:19 0:246 ip community-list standard 2_38_123 permit 65000:2 0:38 0:123 ip community-list standard 2_41_114 permit 65000:2 0:41 0:114 ip community-list standard 2_57_82 permit 65000:2 0:57 0:82 route-map calculator permit 18272 match community 2_19_246 2_38_123 2_41_114 2_57_82 set community 0:4674 ip community-list standard 2_37_238 permit 65000:2 0:37 0:238 ip community-list standard 2_74_119 permit 65000:2 0:74 0:119 route-map calculator permit 18273 match community 2_37_238 2_74_119 set community 0:8806 ip community-list standard 2_94_241 permit 65000:2 0:94 0:241 route-map calculator permit 18274 match community 2_94_241 set community 0:22654 ip community-list standard 2_67_89 permit 65000:2 0:67 0:89 route-map calculator permit 18275 match community 2_67_89 set community 0:5963 ip community-list standard 2_182_248 permit 65000:2 0:182 0:248 ip community-list standard 2_208_217 permit 65000:2 0:208 0:217 route-map calculator permit 18276 match community 2_182_248 2_208_217 set community 0:45136 ip community-list standard 2_112_241 permit 65000:2 0:112 0:241 route-map calculator permit 18277 match community 2_112_241 set community 0:26992 ip community-list standard 2_155_202 permit 65000:2 0:155 0:202 route-map calculator permit 18278 match community 2_155_202 set community 0:31310 ip community-list standard 2_80_214 permit 65000:2 0:80 0:214 ip community-list standard 2_107_160 permit 65000:2 0:107 0:160 route-map calculator permit 18279 match community 2_80_214 2_107_160 set community 0:17120 ip community-list standard 2_89_207 permit 65000:2 0:89 0:207 route-map calculator permit 18280 match community 2_89_207 set community 0:18423 ip community-list standard 2_191_253 permit 65000:2 0:191 0:253 route-map calculator permit 18281 match community 2_191_253 set community 0:48323 ip community-list standard 2_106_222 permit 65000:2 0:106 0:222 ip community-list standard 2_111_212 permit 65000:2 0:111 0:212 ip community-list standard 2_148_159 permit 65000:2 0:148 0:159 route-map calculator permit 18282 match community 2_106_222 2_111_212 2_148_159 set community 0:23532 ip community-list standard 2_150_228 permit 65000:2 0:150 0:228 ip community-list standard 2_152_225 permit 65000:2 0:152 0:225 ip community-list standard 2_171_200 permit 65000:2 0:171 0:200 ip community-list standard 2_180_190 permit 65000:2 0:180 0:190 route-map calculator permit 18283 match community 2_150_228 2_152_225 2_171_200 2_180_190 set community 0:34200 ip community-list standard 2_127_219 permit 65000:2 0:127 0:219 route-map calculator permit 18284 match community 2_127_219 set community 0:27813 ip community-list standard 2_97_210 permit 65000:2 0:97 0:210 ip community-list standard 2_105_194 permit 65000:2 0:105 0:194 route-map calculator permit 18285 match community 2_97_210 2_105_194 set community 0:20370 ip community-list standard 2_19_133 permit 65000:2 0:19 0:133 route-map calculator permit 18286 match community 2_19_133 set community 0:2527 ip community-list standard 2_111_236 permit 65000:2 0:111 0:236 ip community-list standard 2_118_222 permit 65000:2 0:118 0:222 ip community-list standard 2_148_177 permit 65000:2 0:148 0:177 route-map calculator permit 18287 match community 2_111_236 2_118_222 2_148_177 set community 0:26196 ip community-list standard 2_108_167 permit 65000:2 0:108 0:167 route-map calculator permit 18288 match community 2_108_167 set community 0:18036 ip community-list standard 2_180_240 permit 65000:2 0:180 0:240 ip community-list standard 2_192_225 permit 65000:2 0:192 0:225 ip community-list standard 2_200_216 permit 65000:2 0:200 0:216 route-map calculator permit 18289 match community 2_180_240 2_192_225 2_200_216 set community 0:43200 ip community-list standard 2_70_248 permit 65000:2 0:70 0:248 ip community-list standard 2_80_217 permit 65000:2 0:80 0:217 ip community-list standard 2_112_155 permit 65000:2 0:112 0:155 ip community-list standard 2_124_140 permit 65000:2 0:124 0:140 route-map calculator permit 18290 match community 2_70_248 2_80_217 2_112_155 2_124_140 set community 0:17360 ip community-list standard 2_154_224 permit 65000:2 0:154 0:224 ip community-list standard 2_176_196 permit 65000:2 0:176 0:196 route-map calculator permit 18291 match community 2_154_224 2_176_196 set community 0:34496 ip community-list standard 2_17_102 permit 65000:2 0:17 0:102 ip community-list standard 2_34_51 permit 65000:2 0:34 0:51 route-map calculator permit 18292 match community 2_17_102 2_34_51 set community 0:1734 ip community-list standard 2_166_203 permit 65000:2 0:166 0:203 route-map calculator permit 18293 match community 2_166_203 set community 0:33698 ip community-list standard 2_138_193 permit 65000:2 0:138 0:193 route-map calculator permit 18294 match community 2_138_193 set community 0:26634 ip community-list standard 2_28_201 permit 65000:2 0:28 0:201 ip community-list standard 2_42_134 permit 65000:2 0:42 0:134 ip community-list standard 2_67_84 permit 65000:2 0:67 0:84 route-map calculator permit 18295 match community 2_28_201 2_42_134 2_67_84 set community 0:5628 ip community-list standard 2_169_201 permit 65000:2 0:169 0:201 route-map calculator permit 18296 match community 2_169_201 set community 0:33969 ip community-list standard 2_91_194 permit 65000:2 0:91 0:194 ip community-list standard 2_97_182 permit 65000:2 0:97 0:182 route-map calculator permit 18297 match community 2_91_194 2_97_182 set community 0:17654 ip community-list standard 2_116_227 permit 65000:2 0:116 0:227 route-map calculator permit 18298 match community 2_116_227 set community 0:26332 ip community-list standard 2_201_240 permit 65000:2 0:201 0:240 route-map calculator permit 18299 match community 2_201_240 set community 0:48240 ip community-list standard 2_4_181 permit 65000:2 0:4 0:181 route-map calculator permit 18300 match community 2_4_181 set community 0:724 ip community-list standard 2_141_149 permit 65000:2 0:141 0:149 route-map calculator permit 18301 match community 2_141_149 set community 0:21009 ip community-list standard 2_102_191 permit 65000:2 0:102 0:191 route-map calculator permit 18302 match community 2_102_191 set community 0:19482 ip community-list standard 2_135_163 permit 65000:2 0:135 0:163 route-map calculator permit 18303 match community 2_135_163 set community 0:22005 ip community-list standard 2_106_155 permit 65000:2 0:106 0:155 route-map calculator permit 18304 match community 2_106_155 set community 0:16430 ip community-list standard 2_56_235 permit 65000:2 0:56 0:235 ip community-list standard 2_70_188 permit 65000:2 0:70 0:188 ip community-list standard 2_94_140 permit 65000:2 0:94 0:140 route-map calculator permit 18305 match community 2_56_235 2_70_188 2_94_140 set community 0:13160 ip community-list standard 2_71_152 permit 65000:2 0:71 0:152 ip community-list standard 2_76_142 permit 65000:2 0:76 0:142 route-map calculator permit 18306 match community 2_71_152 2_76_142 set community 0:10792 ip community-list standard 2_35_139 permit 65000:2 0:35 0:139 route-map calculator permit 18307 match community 2_35_139 set community 0:4865 ip community-list standard 2_198_247 permit 65000:2 0:198 0:247 ip community-list standard 2_209_234 permit 65000:2 0:209 0:234 route-map calculator permit 18308 match community 2_198_247 2_209_234 set community 0:48906 ip community-list standard 2_125_253 permit 65000:2 0:125 0:253 route-map calculator permit 18309 match community 2_125_253 set community 0:31625 ip community-list standard 2_33_199 permit 65000:2 0:33 0:199 route-map calculator permit 18310 match community 2_33_199 set community 0:6567 ip community-list standard 2_156_229 permit 65000:2 0:156 0:229 route-map calculator permit 18311 match community 2_156_229 set community 0:35724 ip community-list standard 2_194_242 permit 65000:2 0:194 0:242 route-map calculator permit 18312 match community 2_194_242 set community 0:46948 ip community-list standard 2_134_194 permit 65000:2 0:134 0:194 route-map calculator permit 18313 match community 2_134_194 set community 0:25996 ip community-list standard 2_37_113 permit 65000:2 0:37 0:113 route-map calculator permit 18314 match community 2_37_113 set community 0:4181 ip community-list standard 2_22_218 permit 65000:2 0:22 0:218 ip community-list standard 2_44_109 permit 65000:2 0:44 0:109 route-map calculator permit 18315 match community 2_22_218 2_44_109 set community 0:4796 ip community-list standard 2_226_243 permit 65000:2 0:226 0:243 route-map calculator permit 18316 match community 2_226_243 set community 0:54918 ip community-list standard 2_19_213 permit 65000:2 0:19 0:213 ip community-list standard 2_57_71 permit 65000:2 0:57 0:71 route-map calculator permit 18317 match community 2_19_213 2_57_71 set community 0:4047 ip community-list standard 2_43_242 permit 65000:2 0:43 0:242 ip community-list standard 2_86_121 permit 65000:2 0:86 0:121 route-map calculator permit 18318 match community 2_43_242 2_86_121 set community 0:10406 ip community-list standard 2_29_221 permit 65000:2 0:29 0:221 route-map calculator permit 18319 match community 2_29_221 set community 0:6409 ip community-list standard 2_164_176 permit 65000:2 0:164 0:176 route-map calculator permit 18320 match community 2_164_176 set community 0:28864 ip community-list standard 2_70_179 permit 65000:2 0:70 0:179 route-map calculator permit 18321 match community 2_70_179 set community 0:12530 ip community-list standard 2_158_212 permit 65000:2 0:158 0:212 route-map calculator permit 18322 match community 2_158_212 set community 0:33496 ip community-list standard 2_31_165 permit 65000:2 0:31 0:165 ip community-list standard 2_33_155 permit 65000:2 0:33 0:155 ip community-list standard 2_55_93 permit 65000:2 0:55 0:93 route-map calculator permit 18323 match community 2_31_165 2_33_155 2_55_93 set community 0:5115 ip community-list standard 2_40_215 permit 65000:2 0:40 0:215 ip community-list standard 2_43_200 permit 65000:2 0:43 0:200 ip community-list standard 2_50_172 permit 65000:2 0:50 0:172 ip community-list standard 2_86_100 permit 65000:2 0:86 0:100 route-map calculator permit 18324 match community 2_40_215 2_43_200 2_50_172 2_86_100 set community 0:8600 ip community-list standard 2_93_109 permit 65000:2 0:93 0:109 route-map calculator permit 18325 match community 2_93_109 set community 0:10137 ip community-list standard 2_88_194 permit 65000:2 0:88 0:194 ip community-list standard 2_97_176 permit 65000:2 0:97 0:176 route-map calculator permit 18326 match community 2_88_194 2_97_176 set community 0:17072 ip community-list standard 2_74_231 permit 65000:2 0:74 0:231 ip community-list standard 2_77_222 permit 65000:2 0:77 0:222 ip community-list standard 2_111_154 permit 65000:2 0:111 0:154 route-map calculator permit 18327 match community 2_74_231 2_77_222 2_111_154 set community 0:17094 ip community-list standard 2_142_254 permit 65000:2 0:142 0:254 route-map calculator permit 18328 match community 2_142_254 set community 0:36068 ip community-list standard 2_193_211 permit 65000:2 0:193 0:211 route-map calculator permit 18329 match community 2_193_211 set community 0:40723 ip community-list standard 2_28_245 permit 65000:2 0:28 0:245 ip community-list standard 2_35_196 permit 65000:2 0:35 0:196 ip community-list standard 2_49_140 permit 65000:2 0:49 0:140 ip community-list standard 2_70_98 permit 65000:2 0:70 0:98 route-map calculator permit 18330 match community 2_28_245 2_35_196 2_49_140 2_70_98 set community 0:6860 ip community-list standard 2_124_239 permit 65000:2 0:124 0:239 route-map calculator permit 18331 match community 2_124_239 set community 0:29636 ip community-list standard 2_190_251 permit 65000:2 0:190 0:251 route-map calculator permit 18332 match community 2_190_251 set community 0:47690 ip community-list standard 2_197_237 permit 65000:2 0:197 0:237 route-map calculator permit 18333 match community 2_197_237 set community 0:46689 ip community-list standard 2_45_225 permit 65000:2 0:45 0:225 ip community-list standard 2_75_135 permit 65000:2 0:75 0:135 ip community-list standard 2_81_125 permit 65000:2 0:81 0:125 route-map calculator permit 18334 match community 2_45_225 2_75_135 2_81_125 set community 0:10125 ip community-list standard 2_96_137 permit 65000:2 0:96 0:137 route-map calculator permit 18335 match community 2_96_137 set community 0:13152 ip community-list standard 2_95_97 permit 65000:2 0:95 0:97 route-map calculator permit 18336 match community 2_95_97 set community 0:9215 ip community-list standard 2_80_227 permit 65000:2 0:80 0:227 route-map calculator permit 18337 match community 2_80_227 set community 0:18160 ip community-list standard 2_211_235 permit 65000:2 0:211 0:235 route-map calculator permit 18338 match community 2_211_235 set community 0:49585 ip community-list standard 2_47_238 permit 65000:2 0:47 0:238 ip community-list standard 2_94_119 permit 65000:2 0:94 0:119 route-map calculator permit 18339 match community 2_47_238 2_94_119 set community 0:11186 ip community-list standard 2_16_255 permit 65000:2 0:16 0:255 ip community-list standard 2_17_240 permit 65000:2 0:17 0:240 ip community-list standard 2_20_204 permit 65000:2 0:20 0:204 ip community-list standard 2_24_170 permit 65000:2 0:24 0:170 ip community-list standard 2_30_136 permit 65000:2 0:30 0:136 ip community-list standard 2_34_120 permit 65000:2 0:34 0:120 ip community-list standard 2_40_102 permit 65000:2 0:40 0:102 ip community-list standard 2_48_85 permit 65000:2 0:48 0:85 ip community-list standard 2_51_80 permit 65000:2 0:51 0:80 ip community-list standard 2_60_68 permit 65000:2 0:60 0:68 route-map calculator permit 18340 match community 2_16_255 2_17_240 2_20_204 2_24_170 2_30_136 set community 0:4080 route-map calculator permit 18341 match community 2_34_120 2_40_102 2_48_85 2_51_80 2_60_68 set community 0:4080 ip community-list standard 2_120_243 permit 65000:2 0:120 0:243 ip community-list standard 2_135_216 permit 65000:2 0:135 0:216 ip community-list standard 2_162_180 permit 65000:2 0:162 0:180 route-map calculator permit 18342 match community 2_120_243 2_135_216 2_162_180 set community 0:29160 ip community-list standard 2_169_231 permit 65000:2 0:169 0:231 route-map calculator permit 18343 match community 2_169_231 set community 0:39039 ip community-list standard 2_3_193 permit 65000:2 0:3 0:193 route-map calculator permit 18344 match community 2_3_193 set community 0:579 ip community-list standard 2_25_151 permit 65000:2 0:25 0:151 route-map calculator permit 18345 match community 2_25_151 set community 0:3775 ip community-list standard 2_218_232 permit 65000:2 0:218 0:232 route-map calculator permit 18346 match community 2_218_232 set community 0:50576 ip community-list standard 2_65_249 permit 65000:2 0:65 0:249 ip community-list standard 2_83_195 permit 65000:2 0:83 0:195 route-map calculator permit 18347 match community 2_65_249 2_83_195 set community 0:16185 ip community-list standard 2_79_157 permit 65000:2 0:79 0:157 route-map calculator permit 18348 match community 2_79_157 set community 0:12403 ip community-list standard 2_78_253 permit 65000:2 0:78 0:253 ip community-list standard 2_138_143 permit 65000:2 0:138 0:143 route-map calculator permit 18349 match community 2_78_253 2_138_143 set community 0:19734 ip community-list standard 2_7_185 permit 65000:2 0:7 0:185 ip community-list standard 2_35_37 permit 65000:2 0:35 0:37 route-map calculator permit 18350 match community 2_7_185 2_35_37 set community 0:1295 ip community-list standard 2_13_122 permit 65000:2 0:13 0:122 ip community-list standard 2_26_61 permit 65000:2 0:26 0:61 route-map calculator permit 18351 match community 2_13_122 2_26_61 set community 0:1586 ip community-list standard 2_150_179 permit 65000:2 0:150 0:179 route-map calculator permit 18352 match community 2_150_179 set community 0:26850 ip community-list standard 2_32_244 permit 65000:2 0:32 0:244 ip community-list standard 2_61_128 permit 65000:2 0:61 0:128 ip community-list standard 2_64_122 permit 65000:2 0:64 0:122 route-map calculator permit 18353 match community 2_32_244 2_61_128 2_64_122 set community 0:7808 ip community-list standard 2_135_230 permit 65000:2 0:135 0:230 ip community-list standard 2_138_225 permit 65000:2 0:138 0:225 ip community-list standard 2_150_207 permit 65000:2 0:150 0:207 route-map calculator permit 18354 match community 2_135_230 2_138_225 2_150_207 set community 0:31050 ip community-list standard 2_100_163 permit 65000:2 0:100 0:163 route-map calculator permit 18355 match community 2_100_163 set community 0:16300 ip community-list standard 2_194_220 permit 65000:2 0:194 0:220 route-map calculator permit 18356 match community 2_194_220 set community 0:42680 ip community-list standard 2_86_171 permit 65000:2 0:86 0:171 ip community-list standard 2_114_129 permit 65000:2 0:114 0:129 route-map calculator permit 18357 match community 2_86_171 2_114_129 set community 0:14706 ip community-list standard 2_59_250 permit 65000:2 0:59 0:250 ip community-list standard 2_118_125 permit 65000:2 0:118 0:125 route-map calculator permit 18358 match community 2_59_250 2_118_125 set community 0:14750 ip community-list standard 2_110_233 permit 65000:2 0:110 0:233 route-map calculator permit 18359 match community 2_110_233 set community 0:25630 ip community-list standard 1_1_15 permit 65000:1 0:1 0:15 ip community-list standard 2_1_16 permit 65000:2 0:1 0:16 ip community-list standard 2_2_8 permit 65000:2 0:2 0:8 ip community-list standard 1_2_14 permit 65000:1 0:2 0:14 ip community-list standard 1_3_13 permit 65000:1 0:3 0:13 ip community-list standard 2_4_4 permit 65000:2 0:4 0:4 ip community-list standard 1_4_12 permit 65000:1 0:4 0:12 ip community-list standard 1_5_11 permit 65000:1 0:5 0:11 ip community-list standard 1_6_10 permit 65000:1 0:6 0:10 ip community-list standard 1_7_9 permit 65000:1 0:7 0:9 ip community-list standard 1_8_8 permit 65000:1 0:8 0:8 ip community-list expanded c16 permit 1 ^65000:4_0:16_0:1$ ip community-list expanded c16 permit 2 ^65000:3_0:17_0:1$ ip community-list expanded c16 permit 3 ^65000:3_0:18_0:2$ ip community-list expanded c16 permit 4 ^65000:3_0:19_0:3$ ip community-list expanded c16 permit 5 ^65000:3_0:20_0:4$ ip community-list expanded c16 permit 6 ^65000:3_0:21_0:5$ ip community-list expanded c16 permit 7 ^65000:3_0:22_0:6$ ip community-list expanded c16 permit 8 ^65000:3_0:23_0:7$ ip community-list expanded c16 permit 9 ^65000:3_0:24_0:8$ ip community-list expanded c16 permit 10 ^65000:3_0:25_0:9$ ip community-list expanded c16 permit 11 ^65000:3_0:26_0:10$ ip community-list expanded c16 permit 12 ^65000:3_0:27_0:11$ ip community-list expanded c16 permit 13 ^65000:3_0:28_0:12$ ip community-list expanded c16 permit 14 ^65000:3_0:29_0:13$ ip community-list expanded c16 permit 15 ^65000:3_0:30_0:14$ ip community-list expanded c16 permit 16 ^65000:3_0:31_0:15$ ip community-list expanded c16 permit 17 ^65000:4_0:32_0:2$ ip community-list expanded c16 permit 18 ^65000:3_0:32_0:16$ ip community-list expanded c16 permit 19 ^65000:4_0:33_0:2$ ip community-list expanded c16 permit 20 ^65000:3_0:33_0:17$ ip community-list expanded c16 permit 21 ^65000:3_0:34_0:18$ ip community-list expanded c16 permit 22 ^65000:3_0:35_0:19$ ip community-list expanded c16 permit 23 ^65000:3_0:36_0:20$ ip community-list expanded c16 permit 24 ^65000:3_0:37_0:21$ ip community-list expanded c16 permit 25 ^65000:3_0:38_0:22$ ip community-list expanded c16 permit 26 ^65000:3_0:39_0:23$ ip community-list expanded c16 permit 27 ^65000:3_0:40_0:24$ ip community-list expanded c16 permit 28 ^65000:3_0:41_0:25$ ip community-list expanded c16 permit 29 ^65000:3_0:42_0:26$ ip community-list expanded c16 permit 30 ^65000:3_0:43_0:27$ ip community-list expanded c16 permit 31 ^65000:3_0:44_0:28$ ip community-list expanded c16 permit 32 ^65000:3_0:45_0:29$ ip community-list expanded c16 permit 33 ^65000:3_0:46_0:30$ ip community-list expanded c16 permit 34 ^65000:3_0:47_0:31$ ip community-list expanded c16 permit 35 ^65000:4_0:48_0:3$ ip community-list expanded c16 permit 36 ^65000:3_0:48_0:32$ ip community-list expanded c16 permit 37 ^65000:4_0:49_0:3$ ip community-list expanded c16 permit 38 ^65000:3_0:49_0:33$ ip community-list expanded c16 permit 39 ^65000:4_0:50_0:3$ ip community-list expanded c16 permit 40 ^65000:3_0:50_0:34$ ip community-list expanded c16 permit 41 ^65000:3_0:51_0:35$ ip community-list expanded c16 permit 42 ^65000:3_0:52_0:36$ ip community-list expanded c16 permit 43 ^65000:3_0:53_0:37$ ip community-list expanded c16 permit 44 ^65000:3_0:54_0:38$ ip community-list expanded c16 permit 45 ^65000:3_0:55_0:39$ ip community-list expanded c16 permit 46 ^65000:3_0:56_0:40$ ip community-list expanded c16 permit 47 ^65000:3_0:57_0:41$ ip community-list expanded c16 permit 48 ^65000:3_0:58_0:42$ ip community-list expanded c16 permit 49 ^65000:3_0:59_0:43$ ip community-list expanded c16 permit 50 ^65000:3_0:60_0:44$ ip community-list expanded c16 permit 51 ^65000:3_0:61_0:45$ ip community-list expanded c16 permit 52 ^65000:3_0:62_0:46$ ip community-list expanded c16 permit 53 ^65000:3_0:63_0:47$ ip community-list expanded c16 permit 54 ^65000:4_0:64_0:4$ ip community-list expanded c16 permit 55 ^65000:3_0:64_0:48$ ip community-list expanded c16 permit 56 ^65000:4_0:65_0:4$ ip community-list expanded c16 permit 57 ^65000:3_0:65_0:49$ ip community-list expanded c16 permit 58 ^65000:4_0:66_0:4$ ip community-list expanded c16 permit 59 ^65000:3_0:66_0:50$ ip community-list expanded c16 permit 60 ^65000:4_0:67_0:4$ ip community-list expanded c16 permit 61 ^65000:3_0:67_0:51$ ip community-list expanded c16 permit 62 ^65000:3_0:68_0:52$ ip community-list expanded c16 permit 63 ^65000:3_0:69_0:53$ ip community-list expanded c16 permit 64 ^65000:3_0:70_0:54$ ip community-list expanded c16 permit 65 ^65000:3_0:71_0:55$ ip community-list expanded c16 permit 66 ^65000:3_0:72_0:56$ ip community-list expanded c16 permit 67 ^65000:3_0:73_0:57$ ip community-list expanded c16 permit 68 ^65000:3_0:74_0:58$ ip community-list expanded c16 permit 69 ^65000:3_0:75_0:59$ ip community-list expanded c16 permit 70 ^65000:3_0:76_0:60$ ip community-list expanded c16 permit 71 ^65000:3_0:77_0:61$ ip community-list expanded c16 permit 72 ^65000:3_0:78_0:62$ ip community-list expanded c16 permit 73 ^65000:3_0:79_0:63$ ip community-list expanded c16 permit 74 ^65000:4_0:80_0:5$ ip community-list expanded c16 permit 75 ^65000:3_0:80_0:64$ ip community-list expanded c16 permit 76 ^65000:4_0:81_0:5$ ip community-list expanded c16 permit 77 ^65000:3_0:81_0:65$ ip community-list expanded c16 permit 78 ^65000:4_0:82_0:5$ ip community-list expanded c16 permit 79 ^65000:3_0:82_0:66$ ip community-list expanded c16 permit 80 ^65000:4_0:83_0:5$ ip community-list expanded c16 permit 81 ^65000:3_0:83_0:67$ ip community-list expanded c16 permit 82 ^65000:4_0:84_0:5$ ip community-list expanded c16 permit 83 ^65000:3_0:84_0:68$ ip community-list expanded c16 permit 84 ^65000:3_0:85_0:69$ ip community-list expanded c16 permit 85 ^65000:3_0:86_0:70$ ip community-list expanded c16 permit 86 ^65000:3_0:87_0:71$ ip community-list expanded c16 permit 87 ^65000:3_0:88_0:72$ ip community-list expanded c16 permit 88 ^65000:3_0:89_0:73$ ip community-list expanded c16 permit 89 ^65000:3_0:90_0:74$ ip community-list expanded c16 permit 90 ^65000:3_0:91_0:75$ ip community-list expanded c16 permit 91 ^65000:3_0:92_0:76$ ip community-list expanded c16 permit 92 ^65000:3_0:93_0:77$ ip community-list expanded c16 permit 93 ^65000:3_0:94_0:78$ ip community-list expanded c16 permit 94 ^65000:3_0:95_0:79$ ip community-list expanded c16 permit 95 ^65000:4_0:96_0:6$ ip community-list expanded c16 permit 96 ^65000:3_0:96_0:80$ ip community-list expanded c16 permit 97 ^65000:4_0:97_0:6$ ip community-list expanded c16 permit 98 ^65000:3_0:97_0:81$ ip community-list expanded c16 permit 99 ^65000:4_0:98_0:6$ ip community-list expanded c16 permit 100 ^65000:3_0:98_0:82$ ip community-list expanded c16 permit 101 ^65000:4_0:99_0:6$ ip community-list expanded c16 permit 102 ^65000:3_0:99_0:83$ ip community-list expanded c16 permit 103 ^65000:4_0:100_0:6$ ip community-list expanded c16 permit 104 ^65000:3_0:100_0:84$ ip community-list expanded c16 permit 105 ^65000:4_0:101_0:6$ ip community-list expanded c16 permit 106 ^65000:3_0:101_0:85$ ip community-list expanded c16 permit 107 ^65000:3_0:102_0:86$ ip community-list expanded c16 permit 108 ^65000:3_0:103_0:87$ ip community-list expanded c16 permit 109 ^65000:3_0:104_0:88$ ip community-list expanded c16 permit 110 ^65000:3_0:105_0:89$ ip community-list expanded c16 permit 111 ^65000:3_0:106_0:90$ ip community-list expanded c16 permit 112 ^65000:3_0:107_0:91$ ip community-list expanded c16 permit 113 ^65000:3_0:108_0:92$ ip community-list expanded c16 permit 114 ^65000:3_0:109_0:93$ ip community-list expanded c16 permit 115 ^65000:3_0:110_0:94$ ip community-list expanded c16 permit 116 ^65000:3_0:111_0:95$ ip community-list expanded c16 permit 117 ^65000:4_0:112_0:7$ ip community-list expanded c16 permit 118 ^65000:3_0:112_0:96$ ip community-list expanded c16 permit 119 ^65000:4_0:113_0:7$ ip community-list expanded c16 permit 120 ^65000:3_0:113_0:97$ ip community-list expanded c16 permit 121 ^65000:4_0:114_0:7$ ip community-list expanded c16 permit 122 ^65000:3_0:114_0:98$ ip community-list expanded c16 permit 123 ^65000:4_0:115_0:7$ ip community-list expanded c16 permit 124 ^65000:3_0:115_0:99$ ip community-list expanded c16 permit 125 ^65000:4_0:116_0:7$ ip community-list expanded c16 permit 126 ^65000:3_0:116_0:100$ ip community-list expanded c16 permit 127 ^65000:4_0:117_0:7$ ip community-list expanded c16 permit 128 ^65000:3_0:117_0:101$ ip community-list expanded c16 permit 129 ^65000:4_0:118_0:7$ ip community-list expanded c16 permit 130 ^65000:3_0:118_0:102$ ip community-list expanded c16 permit 131 ^65000:3_0:119_0:103$ ip community-list expanded c16 permit 132 ^65000:3_0:120_0:104$ ip community-list expanded c16 permit 133 ^65000:3_0:121_0:105$ ip community-list expanded c16 permit 134 ^65000:3_0:122_0:106$ ip community-list expanded c16 permit 135 ^65000:3_0:123_0:107$ ip community-list expanded c16 permit 136 ^65000:3_0:124_0:108$ ip community-list expanded c16 permit 137 ^65000:3_0:125_0:109$ ip community-list expanded c16 permit 138 ^65000:3_0:126_0:110$ ip community-list expanded c16 permit 139 ^65000:3_0:127_0:111$ ip community-list expanded c16 permit 140 ^65000:4_0:128_0:8$ ip community-list expanded c16 permit 141 ^65000:3_0:128_0:112$ ip community-list expanded c16 permit 142 ^65000:4_0:129_0:8$ ip community-list expanded c16 permit 143 ^65000:3_0:129_0:113$ ip community-list expanded c16 permit 144 ^65000:4_0:130_0:8$ ip community-list expanded c16 permit 145 ^65000:3_0:130_0:114$ ip community-list expanded c16 permit 146 ^65000:4_0:131_0:8$ ip community-list expanded c16 permit 147 ^65000:3_0:131_0:115$ ip community-list expanded c16 permit 148 ^65000:4_0:132_0:8$ ip community-list expanded c16 permit 149 ^65000:3_0:132_0:116$ ip community-list expanded c16 permit 150 ^65000:4_0:133_0:8$ ip community-list expanded c16 permit 151 ^65000:3_0:133_0:117$ ip community-list expanded c16 permit 152 ^65000:4_0:134_0:8$ ip community-list expanded c16 permit 153 ^65000:3_0:134_0:118$ ip community-list expanded c16 permit 154 ^65000:4_0:135_0:8$ ip community-list expanded c16 permit 155 ^65000:3_0:135_0:119$ ip community-list expanded c16 permit 156 ^65000:3_0:136_0:120$ ip community-list expanded c16 permit 157 ^65000:3_0:137_0:121$ ip community-list expanded c16 permit 158 ^65000:3_0:138_0:122$ ip community-list expanded c16 permit 159 ^65000:3_0:139_0:123$ ip community-list expanded c16 permit 160 ^65000:3_0:140_0:124$ ip community-list expanded c16 permit 161 ^65000:3_0:141_0:125$ ip community-list expanded c16 permit 162 ^65000:3_0:142_0:126$ ip community-list expanded c16 permit 163 ^65000:3_0:143_0:127$ ip community-list expanded c16 permit 164 ^65000:4_0:144_0:9$ ip community-list expanded c16 permit 165 ^65000:3_0:144_0:128$ ip community-list expanded c16 permit 166 ^65000:4_0:145_0:9$ ip community-list expanded c16 permit 167 ^65000:3_0:145_0:129$ ip community-list expanded c16 permit 168 ^65000:4_0:146_0:9$ ip community-list expanded c16 permit 169 ^65000:3_0:146_0:130$ ip community-list expanded c16 permit 170 ^65000:4_0:147_0:9$ ip community-list expanded c16 permit 171 ^65000:3_0:147_0:131$ ip community-list expanded c16 permit 172 ^65000:4_0:148_0:9$ ip community-list expanded c16 permit 173 ^65000:3_0:148_0:132$ ip community-list expanded c16 permit 174 ^65000:4_0:149_0:9$ ip community-list expanded c16 permit 175 ^65000:3_0:149_0:133$ ip community-list expanded c16 permit 176 ^65000:4_0:150_0:9$ ip community-list expanded c16 permit 177 ^65000:3_0:150_0:134$ ip community-list expanded c16 permit 178 ^65000:4_0:151_0:9$ ip community-list expanded c16 permit 179 ^65000:3_0:151_0:135$ ip community-list expanded c16 permit 180 ^65000:4_0:152_0:9$ ip community-list expanded c16 permit 181 ^65000:3_0:152_0:136$ ip community-list expanded c16 permit 182 ^65000:3_0:153_0:137$ ip community-list expanded c16 permit 183 ^65000:3_0:154_0:138$ ip community-list expanded c16 permit 184 ^65000:3_0:155_0:139$ ip community-list expanded c16 permit 185 ^65000:3_0:156_0:140$ ip community-list expanded c16 permit 186 ^65000:3_0:157_0:141$ ip community-list expanded c16 permit 187 ^65000:3_0:158_0:142$ ip community-list expanded c16 permit 188 ^65000:3_0:159_0:143$ ip community-list expanded c16 permit 189 ^65000:4_0:160_0:10$ ip community-list expanded c16 permit 190 ^65000:3_0:160_0:144$ ip community-list expanded c16 permit 191 ^65000:4_0:161_0:10$ ip community-list expanded c16 permit 192 ^65000:3_0:161_0:145$ ip community-list expanded c16 permit 193 ^65000:4_0:162_0:10$ ip community-list expanded c16 permit 194 ^65000:3_0:162_0:146$ ip community-list expanded c16 permit 195 ^65000:4_0:163_0:10$ ip community-list expanded c16 permit 196 ^65000:3_0:163_0:147$ ip community-list expanded c16 permit 197 ^65000:4_0:164_0:10$ ip community-list expanded c16 permit 198 ^65000:3_0:164_0:148$ ip community-list expanded c16 permit 199 ^65000:4_0:165_0:10$ ip community-list expanded c16 permit 200 ^65000:3_0:165_0:149$ ip community-list expanded c16 permit 201 ^65000:4_0:166_0:10$ ip community-list expanded c16 permit 202 ^65000:3_0:166_0:150$ ip community-list expanded c16 permit 203 ^65000:4_0:167_0:10$ ip community-list expanded c16 permit 204 ^65000:3_0:167_0:151$ ip community-list expanded c16 permit 205 ^65000:4_0:168_0:10$ ip community-list expanded c16 permit 206 ^65000:3_0:168_0:152$ ip community-list expanded c16 permit 207 ^65000:4_0:169_0:10$ ip community-list expanded c16 permit 208 ^65000:3_0:169_0:153$ ip community-list expanded c16 permit 209 ^65000:3_0:170_0:154$ ip community-list expanded c16 permit 210 ^65000:3_0:171_0:155$ ip community-list expanded c16 permit 211 ^65000:3_0:172_0:156$ ip community-list expanded c16 permit 212 ^65000:3_0:173_0:157$ ip community-list expanded c16 permit 213 ^65000:3_0:174_0:158$ ip community-list expanded c16 permit 214 ^65000:3_0:175_0:159$ ip community-list expanded c16 permit 215 ^65000:4_0:176_0:11$ ip community-list expanded c16 permit 216 ^65000:3_0:176_0:160$ ip community-list expanded c16 permit 217 ^65000:4_0:177_0:11$ ip community-list expanded c16 permit 218 ^65000:3_0:177_0:161$ ip community-list expanded c16 permit 219 ^65000:4_0:178_0:11$ ip community-list expanded c16 permit 220 ^65000:3_0:178_0:162$ ip community-list expanded c16 permit 221 ^65000:4_0:179_0:11$ ip community-list expanded c16 permit 222 ^65000:3_0:179_0:163$ ip community-list expanded c16 permit 223 ^65000:4_0:180_0:11$ ip community-list expanded c16 permit 224 ^65000:3_0:180_0:164$ ip community-list expanded c16 permit 225 ^65000:4_0:181_0:11$ ip community-list expanded c16 permit 226 ^65000:3_0:181_0:165$ ip community-list expanded c16 permit 227 ^65000:4_0:182_0:11$ ip community-list expanded c16 permit 228 ^65000:3_0:182_0:166$ ip community-list expanded c16 permit 229 ^65000:4_0:183_0:11$ ip community-list expanded c16 permit 230 ^65000:3_0:183_0:167$ ip community-list expanded c16 permit 231 ^65000:4_0:184_0:11$ ip community-list expanded c16 permit 232 ^65000:3_0:184_0:168$ ip community-list expanded c16 permit 233 ^65000:4_0:185_0:11$ ip community-list expanded c16 permit 234 ^65000:3_0:185_0:169$ ip community-list expanded c16 permit 235 ^65000:4_0:186_0:11$ ip community-list expanded c16 permit 236 ^65000:3_0:186_0:170$ ip community-list expanded c16 permit 237 ^65000:3_0:187_0:171$ ip community-list expanded c16 permit 238 ^65000:3_0:188_0:172$ ip community-list expanded c16 permit 239 ^65000:3_0:189_0:173$ ip community-list expanded c16 permit 240 ^65000:3_0:190_0:174$ ip community-list expanded c16 permit 241 ^65000:3_0:191_0:175$ ip community-list expanded c16 permit 242 ^65000:4_0:192_0:12$ ip community-list expanded c16 permit 243 ^65000:3_0:192_0:176$ ip community-list expanded c16 permit 244 ^65000:4_0:193_0:12$ ip community-list expanded c16 permit 245 ^65000:3_0:193_0:177$ ip community-list expanded c16 permit 246 ^65000:4_0:194_0:12$ ip community-list expanded c16 permit 247 ^65000:3_0:194_0:178$ ip community-list expanded c16 permit 248 ^65000:4_0:195_0:12$ ip community-list expanded c16 permit 249 ^65000:3_0:195_0:179$ ip community-list expanded c16 permit 250 ^65000:4_0:196_0:12$ ip community-list expanded c16 permit 251 ^65000:3_0:196_0:180$ ip community-list expanded c16 permit 252 ^65000:4_0:197_0:12$ ip community-list expanded c16 permit 253 ^65000:3_0:197_0:181$ ip community-list expanded c16 permit 254 ^65000:4_0:198_0:12$ ip community-list expanded c16 permit 255 ^65000:3_0:198_0:182$ ip community-list expanded c16 permit 256 ^65000:4_0:199_0:12$ ip community-list expanded c16 permit 257 ^65000:3_0:199_0:183$ ip community-list expanded c16 permit 258 ^65000:4_0:200_0:12$ ip community-list expanded c16 permit 259 ^65000:3_0:200_0:184$ ip community-list expanded c16 permit 260 ^65000:4_0:201_0:12$ ip community-list expanded c16 permit 261 ^65000:3_0:201_0:185$ ip community-list expanded c16 permit 262 ^65000:4_0:202_0:12$ ip community-list expanded c16 permit 263 ^65000:3_0:202_0:186$ ip community-list expanded c16 permit 264 ^65000:4_0:203_0:12$ ip community-list expanded c16 permit 265 ^65000:3_0:203_0:187$ ip community-list expanded c16 permit 266 ^65000:3_0:204_0:188$ ip community-list expanded c16 permit 267 ^65000:3_0:205_0:189$ ip community-list expanded c16 permit 268 ^65000:3_0:206_0:190$ ip community-list expanded c16 permit 269 ^65000:3_0:207_0:191$ ip community-list expanded c16 permit 270 ^65000:4_0:208_0:13$ ip community-list expanded c16 permit 271 ^65000:3_0:208_0:192$ ip community-list expanded c16 permit 272 ^65000:4_0:209_0:13$ ip community-list expanded c16 permit 273 ^65000:3_0:209_0:193$ ip community-list expanded c16 permit 274 ^65000:4_0:210_0:13$ ip community-list expanded c16 permit 275 ^65000:3_0:210_0:194$ ip community-list expanded c16 permit 276 ^65000:4_0:211_0:13$ ip community-list expanded c16 permit 277 ^65000:3_0:211_0:195$ ip community-list expanded c16 permit 278 ^65000:4_0:212_0:13$ ip community-list expanded c16 permit 279 ^65000:3_0:212_0:196$ ip community-list expanded c16 permit 280 ^65000:4_0:213_0:13$ ip community-list expanded c16 permit 281 ^65000:3_0:213_0:197$ ip community-list expanded c16 permit 282 ^65000:4_0:214_0:13$ ip community-list expanded c16 permit 283 ^65000:3_0:214_0:198$ ip community-list expanded c16 permit 284 ^65000:4_0:215_0:13$ ip community-list expanded c16 permit 285 ^65000:3_0:215_0:199$ ip community-list expanded c16 permit 286 ^65000:4_0:216_0:13$ ip community-list expanded c16 permit 287 ^65000:3_0:216_0:200$ ip community-list expanded c16 permit 288 ^65000:4_0:217_0:13$ ip community-list expanded c16 permit 289 ^65000:3_0:217_0:201$ ip community-list expanded c16 permit 290 ^65000:4_0:218_0:13$ ip community-list expanded c16 permit 291 ^65000:3_0:218_0:202$ ip community-list expanded c16 permit 292 ^65000:4_0:219_0:13$ ip community-list expanded c16 permit 293 ^65000:3_0:219_0:203$ ip community-list expanded c16 permit 294 ^65000:4_0:220_0:13$ ip community-list expanded c16 permit 295 ^65000:3_0:220_0:204$ ip community-list expanded c16 permit 296 ^65000:3_0:221_0:205$ ip community-list expanded c16 permit 297 ^65000:3_0:222_0:206$ ip community-list expanded c16 permit 298 ^65000:3_0:223_0:207$ ip community-list expanded c16 permit 299 ^65000:4_0:224_0:14$ ip community-list expanded c16 permit 300 ^65000:3_0:224_0:208$ ip community-list expanded c16 permit 301 ^65000:4_0:225_0:14$ ip community-list expanded c16 permit 302 ^65000:3_0:225_0:209$ ip community-list expanded c16 permit 303 ^65000:4_0:226_0:14$ ip community-list expanded c16 permit 304 ^65000:3_0:226_0:210$ ip community-list expanded c16 permit 305 ^65000:4_0:227_0:14$ ip community-list expanded c16 permit 306 ^65000:3_0:227_0:211$ ip community-list expanded c16 permit 307 ^65000:4_0:228_0:14$ ip community-list expanded c16 permit 308 ^65000:3_0:228_0:212$ ip community-list expanded c16 permit 309 ^65000:4_0:229_0:14$ ip community-list expanded c16 permit 310 ^65000:3_0:229_0:213$ ip community-list expanded c16 permit 311 ^65000:4_0:230_0:14$ ip community-list expanded c16 permit 312 ^65000:3_0:230_0:214$ ip community-list expanded c16 permit 313 ^65000:4_0:231_0:14$ ip community-list expanded c16 permit 314 ^65000:3_0:231_0:215$ ip community-list expanded c16 permit 315 ^65000:4_0:232_0:14$ ip community-list expanded c16 permit 316 ^65000:3_0:232_0:216$ ip community-list expanded c16 permit 317 ^65000:4_0:233_0:14$ ip community-list expanded c16 permit 318 ^65000:3_0:233_0:217$ ip community-list expanded c16 permit 319 ^65000:4_0:234_0:14$ ip community-list expanded c16 permit 320 ^65000:3_0:234_0:218$ ip community-list expanded c16 permit 321 ^65000:4_0:235_0:14$ ip community-list expanded c16 permit 322 ^65000:3_0:235_0:219$ ip community-list expanded c16 permit 323 ^65000:4_0:236_0:14$ ip community-list expanded c16 permit 324 ^65000:3_0:236_0:220$ ip community-list expanded c16 permit 325 ^65000:4_0:237_0:14$ ip community-list expanded c16 permit 326 ^65000:3_0:237_0:221$ ip community-list expanded c16 permit 327 ^65000:3_0:238_0:222$ ip community-list expanded c16 permit 328 ^65000:3_0:239_0:223$ ip community-list expanded c16 permit 329 ^65000:4_0:240_0:15$ ip community-list expanded c16 permit 330 ^65000:3_0:240_0:224$ ip community-list expanded c16 permit 331 ^65000:4_0:241_0:15$ ip community-list expanded c16 permit 332 ^65000:3_0:241_0:225$ ip community-list expanded c16 permit 333 ^65000:4_0:242_0:15$ ip community-list expanded c16 permit 334 ^65000:3_0:242_0:226$ ip community-list expanded c16 permit 335 ^65000:4_0:243_0:15$ ip community-list expanded c16 permit 336 ^65000:3_0:243_0:227$ ip community-list expanded c16 permit 337 ^65000:4_0:244_0:15$ ip community-list expanded c16 permit 338 ^65000:3_0:244_0:228$ ip community-list expanded c16 permit 339 ^65000:4_0:245_0:15$ ip community-list expanded c16 permit 340 ^65000:3_0:245_0:229$ ip community-list expanded c16 permit 341 ^65000:4_0:246_0:15$ ip community-list expanded c16 permit 342 ^65000:3_0:246_0:230$ ip community-list expanded c16 permit 343 ^65000:4_0:247_0:15$ ip community-list expanded c16 permit 344 ^65000:3_0:247_0:231$ ip community-list expanded c16 permit 345 ^65000:4_0:248_0:15$ ip community-list expanded c16 permit 346 ^65000:3_0:248_0:232$ ip community-list expanded c16 permit 347 ^65000:4_0:249_0:15$ ip community-list expanded c16 permit 348 ^65000:3_0:249_0:233$ ip community-list expanded c16 permit 349 ^65000:4_0:250_0:15$ ip community-list expanded c16 permit 350 ^65000:3_0:250_0:234$ ip community-list expanded c16 permit 351 ^65000:4_0:251_0:15$ ip community-list expanded c16 permit 352 ^65000:3_0:251_0:235$ ip community-list expanded c16 permit 353 ^65000:4_0:252_0:15$ ip community-list expanded c16 permit 354 ^65000:3_0:252_0:236$ ip community-list expanded c16 permit 355 ^65000:4_0:253_0:15$ ip community-list expanded c16 permit 356 ^65000:3_0:253_0:237$ ip community-list expanded c16 permit 357 ^65000:4_0:254_0:15$ ip community-list expanded c16 permit 358 ^65000:3_0:254_0:238$ ip community-list expanded c16 permit 359 ^65000:3_0:255_0:239$ ip community-list expanded c16 permit 360 ^65000:4_0:256_0:16$ ip community-list expanded c16 permit 361 ^65000:3_0:256_0:240$ route-map calculator permit 18360 match community 1_1_15 2_1_16 2_2_8 1_2_14 1_3_13 set community 0:16 route-map calculator permit 18361 match community 2_4_4 1_4_12 1_5_11 1_6_10 1_7_9 set community 0:16 route-map calculator permit 18362 match community 1_8_8 c4_16_1 c3_17_1 c3_18_2 c3_19_3 set community 0:16 route-map calculator permit 18363 match community c3_20_4 c3_21_5 c3_22_6 c3_23_7 c3_24_8 set community 0:16 route-map calculator permit 18364 match community c3_25_9 c3_26_10 c3_27_11 c3_28_12 c3_29_13 set community 0:16 route-map calculator permit 18365 match community c3_30_14 c3_31_15 c4_32_2 c3_32_16 c4_33_2 set community 0:16 route-map calculator permit 18366 match community c3_33_17 c3_34_18 c3_35_19 c3_36_20 c3_37_21 set community 0:16 route-map calculator permit 18367 match community c3_38_22 c3_39_23 c3_40_24 c3_41_25 c3_42_26 set community 0:16 route-map calculator permit 18368 match community c3_43_27 c3_44_28 c3_45_29 c3_46_30 c3_47_31 set community 0:16 route-map calculator permit 18369 match community c4_48_3 c3_48_32 c4_49_3 c3_49_33 c4_50_3 set community 0:16 route-map calculator permit 18370 match community c3_50_34 c3_51_35 c3_52_36 c3_53_37 c3_54_38 set community 0:16 route-map calculator permit 18371 match community c3_55_39 c3_56_40 c3_57_41 c3_58_42 c3_59_43 set community 0:16 route-map calculator permit 18372 match community c3_60_44 c3_61_45 c3_62_46 c3_63_47 c4_64_4 set community 0:16 route-map calculator permit 18373 match community c3_64_48 c4_65_4 c3_65_49 c4_66_4 c3_66_50 set community 0:16 route-map calculator permit 18374 match community c4_67_4 c3_67_51 c3_68_52 c3_69_53 c3_70_54 set community 0:16 route-map calculator permit 18375 match community c3_71_55 c3_72_56 c3_73_57 c3_74_58 c3_75_59 set community 0:16 route-map calculator permit 18376 match community c3_76_60 c3_77_61 c3_78_62 c3_79_63 c4_80_5 set community 0:16 route-map calculator permit 18377 match community c3_80_64 c4_81_5 c3_81_65 c4_82_5 c3_82_66 set community 0:16 route-map calculator permit 18378 match community c4_83_5 c3_83_67 c4_84_5 c3_84_68 c3_85_69 set community 0:16 route-map calculator permit 18379 match community c3_86_70 c3_87_71 c3_88_72 c3_89_73 c3_90_74 set community 0:16 route-map calculator permit 18380 match community c3_91_75 c3_92_76 c3_93_77 c3_94_78 c3_95_79 set community 0:16 route-map calculator permit 18381 match community c4_96_6 c3_96_80 c4_97_6 c3_97_81 c4_98_6 set community 0:16 route-map calculator permit 18382 match community c3_98_82 c4_99_6 c3_99_83 c4_100_6 c3_100_84 set community 0:16 route-map calculator permit 18383 match community c4_101_6 c3_101_85 c3_102_86 c3_103_87 c3_104_88 set community 0:16 route-map calculator permit 18384 match community c3_105_89 c3_106_90 c3_107_91 c3_108_92 c3_109_93 set community 0:16 route-map calculator permit 18385 match community c3_110_94 c3_111_95 c4_112_7 c3_112_96 c4_113_7 set community 0:16 route-map calculator permit 18386 match community c3_113_97 c4_114_7 c3_114_98 c4_115_7 c3_115_99 set community 0:16 route-map calculator permit 18387 match community c4_116_7 c3_116_100 c4_117_7 c3_117_101 c4_118_7 set community 0:16 route-map calculator permit 18388 match community c3_118_102 c3_119_103 c3_120_104 c3_121_105 c3_122_106 set community 0:16 route-map calculator permit 18389 match community c3_123_107 c3_124_108 c3_125_109 c3_126_110 c3_127_111 set community 0:16 route-map calculator permit 18390 match community c4_128_8 c3_128_112 c4_129_8 c3_129_113 c4_130_8 set community 0:16 route-map calculator permit 18391 match community c3_130_114 c4_131_8 c3_131_115 c4_132_8 c3_132_116 set community 0:16 route-map calculator permit 18392 match community c4_133_8 c3_133_117 c4_134_8 c3_134_118 c4_135_8 set community 0:16 route-map calculator permit 18393 match community c3_135_119 c3_136_120 c3_137_121 c3_138_122 c3_139_123 set community 0:16 route-map calculator permit 18394 match community c3_140_124 c3_141_125 c3_142_126 c3_143_127 c4_144_9 set community 0:16 route-map calculator permit 18395 match community c3_144_128 c4_145_9 c3_145_129 c4_146_9 c3_146_130 set community 0:16 route-map calculator permit 18396 match community c4_147_9 c3_147_131 c4_148_9 c3_148_132 c4_149_9 set community 0:16 route-map calculator permit 18397 match community c3_149_133 c4_150_9 c3_150_134 c4_151_9 c3_151_135 set community 0:16 route-map calculator permit 18398 match community c4_152_9 c3_152_136 c3_153_137 c3_154_138 c3_155_139 set community 0:16 route-map calculator permit 18399 match community c3_156_140 c3_157_141 c3_158_142 c3_159_143 c4_160_10 set community 0:16 route-map calculator permit 18400 match community c3_160_144 c4_161_10 c3_161_145 c4_162_10 c3_162_146 set community 0:16 route-map calculator permit 18401 match community c4_163_10 c3_163_147 c4_164_10 c3_164_148 c4_165_10 set community 0:16 route-map calculator permit 18402 match community c3_165_149 c4_166_10 c3_166_150 c4_167_10 c3_167_151 set community 0:16 route-map calculator permit 18403 match community c4_168_10 c3_168_152 c4_169_10 c3_169_153 c3_170_154 set community 0:16 route-map calculator permit 18404 match community c3_171_155 c3_172_156 c3_173_157 c3_174_158 c3_175_159 set community 0:16 route-map calculator permit 18405 match community c4_176_11 c3_176_160 c4_177_11 c3_177_161 c4_178_11 set community 0:16 route-map calculator permit 18406 match community c3_178_162 c4_179_11 c3_179_163 c4_180_11 c3_180_164 set community 0:16 route-map calculator permit 18407 match community c4_181_11 c3_181_165 c4_182_11 c3_182_166 c4_183_11 set community 0:16 route-map calculator permit 18408 match community c3_183_167 c4_184_11 c3_184_168 c4_185_11 c3_185_169 set community 0:16 route-map calculator permit 18409 match community c4_186_11 c3_186_170 c3_187_171 c3_188_172 c3_189_173 set community 0:16 route-map calculator permit 18410 match community c3_190_174 c3_191_175 c4_192_12 c3_192_176 c4_193_12 set community 0:16 route-map calculator permit 18411 match community c3_193_177 c4_194_12 c3_194_178 c4_195_12 c3_195_179 set community 0:16 route-map calculator permit 18412 match community c4_196_12 c3_196_180 c4_197_12 c3_197_181 c4_198_12 set community 0:16 route-map calculator permit 18413 match community c3_198_182 c4_199_12 c3_199_183 c4_200_12 c3_200_184 set community 0:16 route-map calculator permit 18414 match community c4_201_12 c3_201_185 c4_202_12 c3_202_186 c4_203_12 set community 0:16 route-map calculator permit 18415 match community c3_203_187 c3_204_188 c3_205_189 c3_206_190 c3_207_191 set community 0:16 route-map calculator permit 18416 match community c4_208_13 c3_208_192 c4_209_13 c3_209_193 c4_210_13 set community 0:16 route-map calculator permit 18417 match community c3_210_194 c4_211_13 c3_211_195 c4_212_13 c3_212_196 set community 0:16 route-map calculator permit 18418 match community c4_213_13 c3_213_197 c4_214_13 c3_214_198 c4_215_13 set community 0:16 route-map calculator permit 18419 match community c3_215_199 c4_216_13 c3_216_200 c4_217_13 c3_217_201 set community 0:16 route-map calculator permit 18420 match community c4_218_13 c3_218_202 c4_219_13 c3_219_203 c4_220_13 set community 0:16 route-map calculator permit 18421 match community c3_220_204 c3_221_205 c3_222_206 c3_223_207 c4_224_14 set community 0:16 route-map calculator permit 18422 match community c3_224_208 c4_225_14 c3_225_209 c4_226_14 c3_226_210 set community 0:16 route-map calculator permit 18423 match community c4_227_14 c3_227_211 c4_228_14 c3_228_212 c4_229_14 set community 0:16 route-map calculator permit 18424 match community c3_229_213 c4_230_14 c3_230_214 c4_231_14 c3_231_215 set community 0:16 route-map calculator permit 18425 match community c4_232_14 c3_232_216 c4_233_14 c3_233_217 c4_234_14 set community 0:16 route-map calculator permit 18426 match community c3_234_218 c4_235_14 c3_235_219 c4_236_14 c3_236_220 set community 0:16 route-map calculator permit 18427 match community c4_237_14 c3_237_221 c3_238_222 c3_239_223 c4_240_15 set community 0:16 route-map calculator permit 18428 match community c3_240_224 c4_241_15 c3_241_225 c4_242_15 c3_242_226 set community 0:16 route-map calculator permit 18429 match community c4_243_15 c3_243_227 c4_244_15 c3_244_228 c4_245_15 set community 0:16 route-map calculator permit 18430 match community c3_245_229 c4_246_15 c3_246_230 c4_247_15 c3_247_231 set community 0:16 route-map calculator permit 18431 match community c4_248_15 c3_248_232 c4_249_15 c3_249_233 c4_250_15 set community 0:16 route-map calculator permit 18432 match community c3_250_234 c4_251_15 c3_251_235 c4_252_15 c3_252_236 set community 0:16 route-map calculator permit 18433 match community c4_253_15 c3_253_237 c4_254_15 c3_254_238 c3_255_239 set community 0:16 route-map calculator permit 18434 match community c4_256_16 c3_256_240 set community 0:16 ip community-list standard 1_1_179 permit 65000:1 0:1 0:179 ip community-list standard 2_1_180 permit 65000:2 0:1 0:180 ip community-list standard 2_2_90 permit 65000:2 0:2 0:90 ip community-list standard 1_2_178 permit 65000:1 0:2 0:178 ip community-list standard 2_3_60 permit 65000:2 0:3 0:60 ip community-list standard 1_3_177 permit 65000:1 0:3 0:177 ip community-list standard 2_4_45 permit 65000:2 0:4 0:45 ip community-list standard 1_4_176 permit 65000:1 0:4 0:176 ip community-list standard 2_5_36 permit 65000:2 0:5 0:36 ip community-list standard 1_5_175 permit 65000:1 0:5 0:175 ip community-list standard 2_6_30 permit 65000:2 0:6 0:30 ip community-list standard 1_6_174 permit 65000:1 0:6 0:174 ip community-list standard 1_7_173 permit 65000:1 0:7 0:173 ip community-list standard 1_8_172 permit 65000:1 0:8 0:172 ip community-list standard 2_9_20 permit 65000:2 0:9 0:20 ip community-list standard 1_9_171 permit 65000:1 0:9 0:171 ip community-list standard 2_10_18 permit 65000:2 0:10 0:18 ip community-list standard 1_10_170 permit 65000:1 0:10 0:170 ip community-list standard 1_11_169 permit 65000:1 0:11 0:169 ip community-list standard 2_12_15 permit 65000:2 0:12 0:15 ip community-list standard 1_12_168 permit 65000:1 0:12 0:168 ip community-list standard 1_13_167 permit 65000:1 0:13 0:167 ip community-list standard 1_14_166 permit 65000:1 0:14 0:166 ip community-list standard 1_15_165 permit 65000:1 0:15 0:165 ip community-list standard 1_16_164 permit 65000:1 0:16 0:164 ip community-list standard 1_17_163 permit 65000:1 0:17 0:163 ip community-list standard 1_18_162 permit 65000:1 0:18 0:162 ip community-list standard 1_19_161 permit 65000:1 0:19 0:161 ip community-list standard 1_20_160 permit 65000:1 0:20 0:160 ip community-list standard 1_21_159 permit 65000:1 0:21 0:159 ip community-list standard 1_22_158 permit 65000:1 0:22 0:158 ip community-list standard 1_23_157 permit 65000:1 0:23 0:157 ip community-list standard 1_24_156 permit 65000:1 0:24 0:156 ip community-list standard 1_25_155 permit 65000:1 0:25 0:155 ip community-list standard 1_26_154 permit 65000:1 0:26 0:154 ip community-list standard 1_27_153 permit 65000:1 0:27 0:153 ip community-list standard 1_28_152 permit 65000:1 0:28 0:152 ip community-list standard 1_29_151 permit 65000:1 0:29 0:151 ip community-list standard 1_30_150 permit 65000:1 0:30 0:150 ip community-list standard 1_31_149 permit 65000:1 0:31 0:149 ip community-list standard 1_32_148 permit 65000:1 0:32 0:148 ip community-list standard 1_33_147 permit 65000:1 0:33 0:147 ip community-list standard 1_34_146 permit 65000:1 0:34 0:146 ip community-list standard 1_35_145 permit 65000:1 0:35 0:145 ip community-list standard 1_36_144 permit 65000:1 0:36 0:144 ip community-list standard 1_37_143 permit 65000:1 0:37 0:143 ip community-list standard 1_38_142 permit 65000:1 0:38 0:142 ip community-list standard 1_39_141 permit 65000:1 0:39 0:141 ip community-list standard 1_40_140 permit 65000:1 0:40 0:140 ip community-list standard 1_41_139 permit 65000:1 0:41 0:139 ip community-list standard 1_42_138 permit 65000:1 0:42 0:138 ip community-list standard 1_43_137 permit 65000:1 0:43 0:137 ip community-list standard 1_44_136 permit 65000:1 0:44 0:136 ip community-list standard 1_45_135 permit 65000:1 0:45 0:135 ip community-list standard 1_46_134 permit 65000:1 0:46 0:134 ip community-list standard 1_47_133 permit 65000:1 0:47 0:133 ip community-list standard 1_48_132 permit 65000:1 0:48 0:132 ip community-list standard 1_49_131 permit 65000:1 0:49 0:131 ip community-list standard 1_50_130 permit 65000:1 0:50 0:130 ip community-list standard 1_51_129 permit 65000:1 0:51 0:129 ip community-list standard 1_52_128 permit 65000:1 0:52 0:128 ip community-list standard 1_53_127 permit 65000:1 0:53 0:127 ip community-list standard 1_54_126 permit 65000:1 0:54 0:126 ip community-list standard 1_55_125 permit 65000:1 0:55 0:125 ip community-list standard 1_56_124 permit 65000:1 0:56 0:124 ip community-list standard 1_57_123 permit 65000:1 0:57 0:123 ip community-list standard 1_58_122 permit 65000:1 0:58 0:122 ip community-list standard 1_59_121 permit 65000:1 0:59 0:121 ip community-list standard 1_60_120 permit 65000:1 0:60 0:120 ip community-list standard 1_61_119 permit 65000:1 0:61 0:119 ip community-list standard 1_62_118 permit 65000:1 0:62 0:118 ip community-list standard 1_63_117 permit 65000:1 0:63 0:117 ip community-list standard 1_64_116 permit 65000:1 0:64 0:116 ip community-list standard 1_65_115 permit 65000:1 0:65 0:115 ip community-list standard 1_66_114 permit 65000:1 0:66 0:114 ip community-list standard 1_67_113 permit 65000:1 0:67 0:113 ip community-list standard 1_68_112 permit 65000:1 0:68 0:112 ip community-list standard 1_69_111 permit 65000:1 0:69 0:111 ip community-list standard 1_70_110 permit 65000:1 0:70 0:110 ip community-list standard 1_71_109 permit 65000:1 0:71 0:109 ip community-list standard 1_72_108 permit 65000:1 0:72 0:108 ip community-list standard 1_73_107 permit 65000:1 0:73 0:107 ip community-list standard 1_74_106 permit 65000:1 0:74 0:106 ip community-list standard 1_75_105 permit 65000:1 0:75 0:105 ip community-list standard 1_76_104 permit 65000:1 0:76 0:104 ip community-list standard 1_77_103 permit 65000:1 0:77 0:103 ip community-list standard 1_78_102 permit 65000:1 0:78 0:102 ip community-list standard 1_79_101 permit 65000:1 0:79 0:101 ip community-list standard 1_80_100 permit 65000:1 0:80 0:100 ip community-list standard 1_81_99 permit 65000:1 0:81 0:99 ip community-list standard 1_82_98 permit 65000:1 0:82 0:98 ip community-list standard 1_83_97 permit 65000:1 0:83 0:97 ip community-list standard 1_84_96 permit 65000:1 0:84 0:96 ip community-list standard 1_85_95 permit 65000:1 0:85 0:95 ip community-list standard 1_86_94 permit 65000:1 0:86 0:94 ip community-list standard 1_87_93 permit 65000:1 0:87 0:93 ip community-list standard 1_88_92 permit 65000:1 0:88 0:92 ip community-list standard 1_89_91 permit 65000:1 0:89 0:91 ip community-list standard 1_90_90 permit 65000:1 0:90 0:90 ip community-list expanded c180 permit 1 ^65000:4_0:180_0:1$ ip community-list expanded c180 permit 2 ^65000:3_0:181_0:1$ ip community-list expanded c180 permit 3 ^65000:3_0:182_0:2$ ip community-list expanded c180 permit 4 ^65000:3_0:183_0:3$ ip community-list expanded c180 permit 5 ^65000:3_0:184_0:4$ ip community-list expanded c180 permit 6 ^65000:3_0:185_0:5$ ip community-list expanded c180 permit 7 ^65000:3_0:186_0:6$ ip community-list expanded c180 permit 8 ^65000:3_0:187_0:7$ ip community-list expanded c180 permit 9 ^65000:3_0:188_0:8$ ip community-list expanded c180 permit 10 ^65000:3_0:189_0:9$ ip community-list expanded c180 permit 11 ^65000:3_0:190_0:10$ ip community-list expanded c180 permit 12 ^65000:3_0:191_0:11$ ip community-list expanded c180 permit 13 ^65000:3_0:192_0:12$ ip community-list expanded c180 permit 14 ^65000:3_0:193_0:13$ ip community-list expanded c180 permit 15 ^65000:3_0:194_0:14$ ip community-list expanded c180 permit 16 ^65000:3_0:195_0:15$ ip community-list expanded c180 permit 17 ^65000:3_0:196_0:16$ ip community-list expanded c180 permit 18 ^65000:3_0:197_0:17$ ip community-list expanded c180 permit 19 ^65000:3_0:198_0:18$ ip community-list expanded c180 permit 20 ^65000:3_0:199_0:19$ ip community-list expanded c180 permit 21 ^65000:3_0:200_0:20$ ip community-list expanded c180 permit 22 ^65000:3_0:201_0:21$ ip community-list expanded c180 permit 23 ^65000:3_0:202_0:22$ ip community-list expanded c180 permit 24 ^65000:3_0:203_0:23$ ip community-list expanded c180 permit 25 ^65000:3_0:204_0:24$ ip community-list expanded c180 permit 26 ^65000:3_0:205_0:25$ ip community-list expanded c180 permit 27 ^65000:3_0:206_0:26$ ip community-list expanded c180 permit 28 ^65000:3_0:207_0:27$ ip community-list expanded c180 permit 29 ^65000:3_0:208_0:28$ ip community-list expanded c180 permit 30 ^65000:3_0:209_0:29$ ip community-list expanded c180 permit 31 ^65000:3_0:210_0:30$ ip community-list expanded c180 permit 32 ^65000:3_0:211_0:31$ ip community-list expanded c180 permit 33 ^65000:3_0:212_0:32$ ip community-list expanded c180 permit 34 ^65000:3_0:213_0:33$ ip community-list expanded c180 permit 35 ^65000:3_0:214_0:34$ ip community-list expanded c180 permit 36 ^65000:3_0:215_0:35$ ip community-list expanded c180 permit 37 ^65000:3_0:216_0:36$ ip community-list expanded c180 permit 38 ^65000:3_0:217_0:37$ ip community-list expanded c180 permit 39 ^65000:3_0:218_0:38$ ip community-list expanded c180 permit 40 ^65000:3_0:219_0:39$ ip community-list expanded c180 permit 41 ^65000:3_0:220_0:40$ ip community-list expanded c180 permit 42 ^65000:3_0:221_0:41$ ip community-list expanded c180 permit 43 ^65000:3_0:222_0:42$ ip community-list expanded c180 permit 44 ^65000:3_0:223_0:43$ ip community-list expanded c180 permit 45 ^65000:3_0:224_0:44$ ip community-list expanded c180 permit 46 ^65000:3_0:225_0:45$ ip community-list expanded c180 permit 47 ^65000:3_0:226_0:46$ ip community-list expanded c180 permit 48 ^65000:3_0:227_0:47$ ip community-list expanded c180 permit 49 ^65000:3_0:228_0:48$ ip community-list expanded c180 permit 50 ^65000:3_0:229_0:49$ ip community-list expanded c180 permit 51 ^65000:3_0:230_0:50$ ip community-list expanded c180 permit 52 ^65000:3_0:231_0:51$ ip community-list expanded c180 permit 53 ^65000:3_0:232_0:52$ ip community-list expanded c180 permit 54 ^65000:3_0:233_0:53$ ip community-list expanded c180 permit 55 ^65000:3_0:234_0:54$ ip community-list expanded c180 permit 56 ^65000:3_0:235_0:55$ ip community-list expanded c180 permit 57 ^65000:3_0:236_0:56$ ip community-list expanded c180 permit 58 ^65000:3_0:237_0:57$ ip community-list expanded c180 permit 59 ^65000:3_0:238_0:58$ ip community-list expanded c180 permit 60 ^65000:3_0:239_0:59$ ip community-list expanded c180 permit 61 ^65000:3_0:240_0:60$ ip community-list expanded c180 permit 62 ^65000:3_0:241_0:61$ ip community-list expanded c180 permit 63 ^65000:3_0:242_0:62$ ip community-list expanded c180 permit 64 ^65000:3_0:243_0:63$ ip community-list expanded c180 permit 65 ^65000:3_0:244_0:64$ ip community-list expanded c180 permit 66 ^65000:3_0:245_0:65$ ip community-list expanded c180 permit 67 ^65000:3_0:246_0:66$ ip community-list expanded c180 permit 68 ^65000:3_0:247_0:67$ ip community-list expanded c180 permit 69 ^65000:3_0:248_0:68$ ip community-list expanded c180 permit 70 ^65000:3_0:249_0:69$ ip community-list expanded c180 permit 71 ^65000:3_0:250_0:70$ ip community-list expanded c180 permit 72 ^65000:3_0:251_0:71$ ip community-list expanded c180 permit 73 ^65000:3_0:252_0:72$ ip community-list expanded c180 permit 74 ^65000:3_0:253_0:73$ ip community-list expanded c180 permit 75 ^65000:3_0:254_0:74$ ip community-list expanded c180 permit 76 ^65000:3_0:255_0:75$ ip community-list expanded c180 permit 77 ^65000:3_0:256_0:76$ route-map calculator permit 18435 match community 1_1_179 2_1_180 2_2_90 1_2_178 2_3_60 set community 0:180 route-map calculator permit 18436 match community 1_3_177 2_4_45 1_4_176 2_5_36 1_5_175 set community 0:180 route-map calculator permit 18437 match community 2_6_30 1_6_174 1_7_173 1_8_172 2_9_20 set community 0:180 route-map calculator permit 18438 match community 1_9_171 2_10_18 1_10_170 1_11_169 2_12_15 set community 0:180 route-map calculator permit 18439 match community 1_12_168 1_13_167 1_14_166 1_15_165 1_16_164 set community 0:180 route-map calculator permit 18440 match community 1_17_163 1_18_162 1_19_161 1_20_160 1_21_159 set community 0:180 route-map calculator permit 18441 match community 1_22_158 1_23_157 1_24_156 1_25_155 1_26_154 set community 0:180 route-map calculator permit 18442 match community 1_27_153 1_28_152 1_29_151 1_30_150 1_31_149 set community 0:180 route-map calculator permit 18443 match community 1_32_148 1_33_147 1_34_146 1_35_145 1_36_144 set community 0:180 route-map calculator permit 18444 match community 1_37_143 1_38_142 1_39_141 1_40_140 1_41_139 set community 0:180 route-map calculator permit 18445 match community 1_42_138 1_43_137 1_44_136 1_45_135 1_46_134 set community 0:180 route-map calculator permit 18446 match community 1_47_133 1_48_132 1_49_131 1_50_130 1_51_129 set community 0:180 route-map calculator permit 18447 match community 1_52_128 1_53_127 1_54_126 1_55_125 1_56_124 set community 0:180 route-map calculator permit 18448 match community 1_57_123 1_58_122 1_59_121 1_60_120 1_61_119 set community 0:180 route-map calculator permit 18449 match community 1_62_118 1_63_117 1_64_116 1_65_115 1_66_114 set community 0:180 route-map calculator permit 18450 match community 1_67_113 1_68_112 1_69_111 1_70_110 1_71_109 set community 0:180 route-map calculator permit 18451 match community 1_72_108 1_73_107 1_74_106 1_75_105 1_76_104 set community 0:180 route-map calculator permit 18452 match community 1_77_103 1_78_102 1_79_101 1_80_100 1_81_99 set community 0:180 route-map calculator permit 18453 match community 1_82_98 1_83_97 1_84_96 1_85_95 1_86_94 set community 0:180 route-map calculator permit 18454 match community 1_87_93 1_88_92 1_89_91 1_90_90 c4_180_1 set community 0:180 route-map calculator permit 18455 match community c3_181_1 c3_182_2 c3_183_3 c3_184_4 c3_185_5 set community 0:180 route-map calculator permit 18456 match community c3_186_6 c3_187_7 c3_188_8 c3_189_9 c3_190_10 set community 0:180 route-map calculator permit 18457 match community c3_191_11 c3_192_12 c3_193_13 c3_194_14 c3_195_15 set community 0:180 route-map calculator permit 18458 match community c3_196_16 c3_197_17 c3_198_18 c3_199_19 c3_200_20 set community 0:180 route-map calculator permit 18459 match community c3_201_21 c3_202_22 c3_203_23 c3_204_24 c3_205_25 set community 0:180 route-map calculator permit 18460 match community c3_206_26 c3_207_27 c3_208_28 c3_209_29 c3_210_30 set community 0:180 route-map calculator permit 18461 match community c3_211_31 c3_212_32 c3_213_33 c3_214_34 c3_215_35 set community 0:180 route-map calculator permit 18462 match community c3_216_36 c3_217_37 c3_218_38 c3_219_39 c3_220_40 set community 0:180 route-map calculator permit 18463 match community c3_221_41 c3_222_42 c3_223_43 c3_224_44 c3_225_45 set community 0:180 route-map calculator permit 18464 match community c3_226_46 c3_227_47 c3_228_48 c3_229_49 c3_230_50 set community 0:180 route-map calculator permit 18465 match community c3_231_51 c3_232_52 c3_233_53 c3_234_54 c3_235_55 set community 0:180 route-map calculator permit 18466 match community c3_236_56 c3_237_57 c3_238_58 c3_239_59 c3_240_60 set community 0:180 route-map calculator permit 18467 match community c3_241_61 c3_242_62 c3_243_63 c3_244_64 c3_245_65 set community 0:180 route-map calculator permit 18468 match community c3_246_66 c3_247_67 c3_248_68 c3_249_69 c3_250_70 set community 0:180 route-map calculator permit 18469 match community c3_251_71 c3_252_72 c3_253_73 c3_254_74 c3_255_75 set community 0:180 route-map calculator permit 18470 match community c3_256_76 set community 0:180 ip community-list standard 2_17_244 permit 65000:2 0:17 0:244 ip community-list standard 2_34_122 permit 65000:2 0:34 0:122 ip community-list standard 2_61_68 permit 65000:2 0:61 0:68 route-map calculator permit 18471 match community 2_17_244 2_34_122 2_61_68 set community 0:4148 ip community-list standard 2_183_251 permit 65000:2 0:183 0:251 route-map calculator permit 18472 match community 2_183_251 set community 0:45933 ip community-list standard 2_42_179 permit 65000:2 0:42 0:179 route-map calculator permit 18473 match community 2_42_179 set community 0:7518 ip community-list standard 2_23_179 permit 65000:2 0:23 0:179 route-map calculator permit 18474 match community 2_23_179 set community 0:4117 ip community-list standard 2_218_239 permit 65000:2 0:218 0:239 route-map calculator permit 18475 match community 2_218_239 set community 0:52102 ip community-list standard 2_29_89 permit 65000:2 0:29 0:89 route-map calculator permit 18476 match community 2_29_89 set community 0:2581 ip community-list standard 2_41_250 permit 65000:2 0:41 0:250 ip community-list standard 2_50_205 permit 65000:2 0:50 0:205 ip community-list standard 2_82_125 permit 65000:2 0:82 0:125 route-map calculator permit 18477 match community 2_41_250 2_50_205 2_82_125 set community 0:10250 ip community-list standard 2_111_230 permit 65000:2 0:111 0:230 ip community-list standard 2_115_222 permit 65000:2 0:115 0:222 ip community-list standard 2_138_185 permit 65000:2 0:138 0:185 route-map calculator permit 18478 match community 2_111_230 2_115_222 2_138_185 set community 0:25530 ip community-list standard 2_193_207 permit 65000:2 0:193 0:207 route-map calculator permit 18479 match community 2_193_207 set community 0:39951 ip community-list standard 2_185_240 permit 65000:2 0:185 0:240 ip community-list standard 2_200_222 permit 65000:2 0:200 0:222 route-map calculator permit 18480 match community 2_185_240 2_200_222 set community 0:44400 ip community-list standard 2_20_213 permit 65000:2 0:20 0:213 ip community-list standard 2_30_142 permit 65000:2 0:30 0:142 ip community-list standard 2_60_71 permit 65000:2 0:60 0:71 route-map calculator permit 18481 match community 2_20_213 2_30_142 2_60_71 set community 0:4260 ip community-list standard 2_66_221 permit 65000:2 0:66 0:221 ip community-list standard 2_78_187 permit 65000:2 0:78 0:187 ip community-list standard 2_102_143 permit 65000:2 0:102 0:143 route-map calculator permit 18482 match community 2_66_221 2_78_187 2_102_143 set community 0:14586 ip community-list standard 2_5_85 permit 65000:2 0:5 0:85 ip community-list standard 2_17_25 permit 65000:2 0:17 0:25 ip community-list standard 1_169_256 permit 65000:1 0:169 0:256 ip community-list standard 1_170_255 permit 65000:1 0:170 0:255 ip community-list standard 1_171_254 permit 65000:1 0:171 0:254 ip community-list standard 1_172_253 permit 65000:1 0:172 0:253 ip community-list standard 1_173_252 permit 65000:1 0:173 0:252 ip community-list standard 1_174_251 permit 65000:1 0:174 0:251 ip community-list standard 1_175_250 permit 65000:1 0:175 0:250 ip community-list standard 1_176_249 permit 65000:1 0:176 0:249 ip community-list standard 1_177_248 permit 65000:1 0:177 0:248 ip community-list standard 1_178_247 permit 65000:1 0:178 0:247 ip community-list standard 1_179_246 permit 65000:1 0:179 0:246 ip community-list standard 1_180_245 permit 65000:1 0:180 0:245 ip community-list standard 1_181_244 permit 65000:1 0:181 0:244 ip community-list standard 1_182_243 permit 65000:1 0:182 0:243 ip community-list standard 1_183_242 permit 65000:1 0:183 0:242 ip community-list standard 1_184_241 permit 65000:1 0:184 0:241 ip community-list standard 1_185_240 permit 65000:1 0:185 0:240 ip community-list standard 1_186_239 permit 65000:1 0:186 0:239 ip community-list standard 1_187_238 permit 65000:1 0:187 0:238 ip community-list standard 1_188_237 permit 65000:1 0:188 0:237 ip community-list standard 1_189_236 permit 65000:1 0:189 0:236 ip community-list standard 1_190_235 permit 65000:1 0:190 0:235 ip community-list standard 1_191_234 permit 65000:1 0:191 0:234 ip community-list standard 1_192_233 permit 65000:1 0:192 0:233 ip community-list standard 1_193_232 permit 65000:1 0:193 0:232 ip community-list standard 1_194_231 permit 65000:1 0:194 0:231 ip community-list standard 1_195_230 permit 65000:1 0:195 0:230 ip community-list standard 1_196_229 permit 65000:1 0:196 0:229 ip community-list standard 1_197_228 permit 65000:1 0:197 0:228 ip community-list standard 1_198_227 permit 65000:1 0:198 0:227 ip community-list standard 1_199_226 permit 65000:1 0:199 0:226 ip community-list standard 1_200_225 permit 65000:1 0:200 0:225 ip community-list standard 1_201_224 permit 65000:1 0:201 0:224 ip community-list standard 1_202_223 permit 65000:1 0:202 0:223 ip community-list standard 1_203_222 permit 65000:1 0:203 0:222 ip community-list standard 1_204_221 permit 65000:1 0:204 0:221 ip community-list standard 1_205_220 permit 65000:1 0:205 0:220 ip community-list standard 1_206_219 permit 65000:1 0:206 0:219 ip community-list standard 1_207_218 permit 65000:1 0:207 0:218 ip community-list standard 1_208_217 permit 65000:1 0:208 0:217 ip community-list standard 1_209_216 permit 65000:1 0:209 0:216 ip community-list standard 1_210_215 permit 65000:1 0:210 0:215 ip community-list standard 1_211_214 permit 65000:1 0:211 0:214 ip community-list standard 1_212_213 permit 65000:1 0:212 0:213 route-map calculator permit 18483 match community 2_5_85 2_17_25 1_169_256 1_170_255 1_171_254 set community 0:425 route-map calculator permit 18484 match community 1_172_253 1_173_252 1_174_251 1_175_250 1_176_249 set community 0:425 route-map calculator permit 18485 match community 1_177_248 1_178_247 1_179_246 1_180_245 1_181_244 set community 0:425 route-map calculator permit 18486 match community 1_182_243 1_183_242 1_184_241 1_185_240 1_186_239 set community 0:425 route-map calculator permit 18487 match community 1_187_238 1_188_237 1_189_236 1_190_235 1_191_234 set community 0:425 route-map calculator permit 18488 match community 1_192_233 1_193_232 1_194_231 1_195_230 1_196_229 set community 0:425 route-map calculator permit 18489 match community 1_197_228 1_198_227 1_199_226 1_200_225 1_201_224 set community 0:425 route-map calculator permit 18490 match community 1_202_223 1_203_222 1_204_221 1_205_220 1_206_219 set community 0:425 route-map calculator permit 18491 match community 1_207_218 1_208_217 1_209_216 1_210_215 1_211_214 set community 0:425 route-map calculator permit 18492 match community 1_212_213 set community 0:425 ip community-list standard 2_201_229 permit 65000:2 0:201 0:229 route-map calculator permit 18493 match community 2_201_229 set community 0:46029 ip community-list standard 2_51_207 permit 65000:2 0:51 0:207 ip community-list standard 2_69_153 permit 65000:2 0:69 0:153 route-map calculator permit 18494 match community 2_51_207 2_69_153 set community 0:10557 ip community-list standard 2_86_214 permit 65000:2 0:86 0:214 ip community-list standard 2_107_172 permit 65000:2 0:107 0:172 route-map calculator permit 18495 match community 2_86_214 2_107_172 set community 0:18404 ip community-list standard 2_57_210 permit 65000:2 0:57 0:210 ip community-list standard 2_63_190 permit 65000:2 0:63 0:190 ip community-list standard 2_70_171 permit 65000:2 0:70 0:171 ip community-list standard 2_90_133 permit 65000:2 0:90 0:133 ip community-list standard 2_95_126 permit 65000:2 0:95 0:126 ip community-list standard 2_105_114 permit 65000:2 0:105 0:114 route-map calculator permit 18496 match community 2_57_210 2_63_190 2_70_171 2_90_133 2_95_126 set community 0:11970 route-map calculator permit 18497 match community 2_105_114 set community 0:11970 ip community-list standard 2_58_198 permit 65000:2 0:58 0:198 ip community-list standard 2_66_174 permit 65000:2 0:66 0:174 ip community-list standard 2_87_132 permit 65000:2 0:87 0:132 ip community-list standard 2_99_116 permit 65000:2 0:99 0:116 route-map calculator permit 18498 match community 2_58_198 2_66_174 2_87_132 2_99_116 set community 0:11484 ip community-list standard 2_115_229 permit 65000:2 0:115 0:229 route-map calculator permit 18499 match community 2_115_229 set community 0:26335 ip community-list standard 2_192_219 permit 65000:2 0:192 0:219 route-map calculator permit 18500 match community 2_192_219 set community 0:42048 ip community-list standard 2_24_191 permit 65000:2 0:24 0:191 route-map calculator permit 18501 match community 2_24_191 set community 0:4584 ip community-list standard 2_78_229 permit 65000:2 0:78 0:229 route-map calculator permit 18502 match community 2_78_229 set community 0:17862 ip community-list standard 1_1_91 permit 65000:1 0:1 0:91 ip community-list standard 2_1_92 permit 65000:2 0:1 0:92 ip community-list standard 2_2_46 permit 65000:2 0:2 0:46 ip community-list standard 1_2_90 permit 65000:1 0:2 0:90 ip community-list standard 1_3_89 permit 65000:1 0:3 0:89 ip community-list standard 2_4_23 permit 65000:2 0:4 0:23 ip community-list standard 1_4_88 permit 65000:1 0:4 0:88 ip community-list standard 1_5_87 permit 65000:1 0:5 0:87 ip community-list standard 1_6_86 permit 65000:1 0:6 0:86 ip community-list standard 1_7_85 permit 65000:1 0:7 0:85 ip community-list standard 1_8_84 permit 65000:1 0:8 0:84 ip community-list standard 1_9_83 permit 65000:1 0:9 0:83 ip community-list standard 1_10_82 permit 65000:1 0:10 0:82 ip community-list standard 1_11_81 permit 65000:1 0:11 0:81 ip community-list standard 1_12_80 permit 65000:1 0:12 0:80 ip community-list standard 1_13_79 permit 65000:1 0:13 0:79 ip community-list standard 1_14_78 permit 65000:1 0:14 0:78 ip community-list standard 1_15_77 permit 65000:1 0:15 0:77 ip community-list standard 1_16_76 permit 65000:1 0:16 0:76 ip community-list standard 1_17_75 permit 65000:1 0:17 0:75 ip community-list standard 1_18_74 permit 65000:1 0:18 0:74 ip community-list standard 1_19_73 permit 65000:1 0:19 0:73 ip community-list standard 1_20_72 permit 65000:1 0:20 0:72 ip community-list standard 1_21_71 permit 65000:1 0:21 0:71 ip community-list standard 1_22_70 permit 65000:1 0:22 0:70 ip community-list standard 1_23_69 permit 65000:1 0:23 0:69 ip community-list standard 1_24_68 permit 65000:1 0:24 0:68 ip community-list standard 1_25_67 permit 65000:1 0:25 0:67 ip community-list standard 1_26_66 permit 65000:1 0:26 0:66 ip community-list standard 1_27_65 permit 65000:1 0:27 0:65 ip community-list standard 1_28_64 permit 65000:1 0:28 0:64 ip community-list standard 1_29_63 permit 65000:1 0:29 0:63 ip community-list standard 1_30_62 permit 65000:1 0:30 0:62 ip community-list standard 1_31_61 permit 65000:1 0:31 0:61 ip community-list standard 1_32_60 permit 65000:1 0:32 0:60 ip community-list standard 1_33_59 permit 65000:1 0:33 0:59 ip community-list standard 1_34_58 permit 65000:1 0:34 0:58 ip community-list standard 1_35_57 permit 65000:1 0:35 0:57 ip community-list standard 1_36_56 permit 65000:1 0:36 0:56 ip community-list standard 1_37_55 permit 65000:1 0:37 0:55 ip community-list standard 1_38_54 permit 65000:1 0:38 0:54 ip community-list standard 1_39_53 permit 65000:1 0:39 0:53 ip community-list standard 1_40_52 permit 65000:1 0:40 0:52 ip community-list standard 1_41_51 permit 65000:1 0:41 0:51 ip community-list standard 1_42_50 permit 65000:1 0:42 0:50 ip community-list standard 1_43_49 permit 65000:1 0:43 0:49 ip community-list standard 1_44_48 permit 65000:1 0:44 0:48 ip community-list standard 1_45_47 permit 65000:1 0:45 0:47 ip community-list standard 1_46_46 permit 65000:1 0:46 0:46 ip community-list expanded c92 permit 1 ^65000:4_0:92_0:1$ ip community-list expanded c92 permit 2 ^65000:3_0:93_0:1$ ip community-list expanded c92 permit 3 ^65000:3_0:94_0:2$ ip community-list expanded c92 permit 4 ^65000:3_0:95_0:3$ ip community-list expanded c92 permit 5 ^65000:3_0:96_0:4$ ip community-list expanded c92 permit 6 ^65000:3_0:97_0:5$ ip community-list expanded c92 permit 7 ^65000:3_0:98_0:6$ ip community-list expanded c92 permit 8 ^65000:3_0:99_0:7$ ip community-list expanded c92 permit 9 ^65000:3_0:100_0:8$ ip community-list expanded c92 permit 10 ^65000:3_0:101_0:9$ ip community-list expanded c92 permit 11 ^65000:3_0:102_0:10$ ip community-list expanded c92 permit 12 ^65000:3_0:103_0:11$ ip community-list expanded c92 permit 13 ^65000:3_0:104_0:12$ ip community-list expanded c92 permit 14 ^65000:3_0:105_0:13$ ip community-list expanded c92 permit 15 ^65000:3_0:106_0:14$ ip community-list expanded c92 permit 16 ^65000:3_0:107_0:15$ ip community-list expanded c92 permit 17 ^65000:3_0:108_0:16$ ip community-list expanded c92 permit 18 ^65000:3_0:109_0:17$ ip community-list expanded c92 permit 19 ^65000:3_0:110_0:18$ ip community-list expanded c92 permit 20 ^65000:3_0:111_0:19$ ip community-list expanded c92 permit 21 ^65000:3_0:112_0:20$ ip community-list expanded c92 permit 22 ^65000:3_0:113_0:21$ ip community-list expanded c92 permit 23 ^65000:3_0:114_0:22$ ip community-list expanded c92 permit 24 ^65000:3_0:115_0:23$ ip community-list expanded c92 permit 25 ^65000:3_0:116_0:24$ ip community-list expanded c92 permit 26 ^65000:3_0:117_0:25$ ip community-list expanded c92 permit 27 ^65000:3_0:118_0:26$ ip community-list expanded c92 permit 28 ^65000:3_0:119_0:27$ ip community-list expanded c92 permit 29 ^65000:3_0:120_0:28$ ip community-list expanded c92 permit 30 ^65000:3_0:121_0:29$ ip community-list expanded c92 permit 31 ^65000:3_0:122_0:30$ ip community-list expanded c92 permit 32 ^65000:3_0:123_0:31$ ip community-list expanded c92 permit 33 ^65000:3_0:124_0:32$ ip community-list expanded c92 permit 34 ^65000:3_0:125_0:33$ ip community-list expanded c92 permit 35 ^65000:3_0:126_0:34$ ip community-list expanded c92 permit 36 ^65000:3_0:127_0:35$ ip community-list expanded c92 permit 37 ^65000:3_0:128_0:36$ ip community-list expanded c92 permit 38 ^65000:3_0:129_0:37$ ip community-list expanded c92 permit 39 ^65000:3_0:130_0:38$ ip community-list expanded c92 permit 40 ^65000:3_0:131_0:39$ ip community-list expanded c92 permit 41 ^65000:3_0:132_0:40$ ip community-list expanded c92 permit 42 ^65000:3_0:133_0:41$ ip community-list expanded c92 permit 43 ^65000:3_0:134_0:42$ ip community-list expanded c92 permit 44 ^65000:3_0:135_0:43$ ip community-list expanded c92 permit 45 ^65000:3_0:136_0:44$ ip community-list expanded c92 permit 46 ^65000:3_0:137_0:45$ ip community-list expanded c92 permit 47 ^65000:3_0:138_0:46$ ip community-list expanded c92 permit 48 ^65000:3_0:139_0:47$ ip community-list expanded c92 permit 49 ^65000:3_0:140_0:48$ ip community-list expanded c92 permit 50 ^65000:3_0:141_0:49$ ip community-list expanded c92 permit 51 ^65000:3_0:142_0:50$ ip community-list expanded c92 permit 52 ^65000:3_0:143_0:51$ ip community-list expanded c92 permit 53 ^65000:3_0:144_0:52$ ip community-list expanded c92 permit 54 ^65000:3_0:145_0:53$ ip community-list expanded c92 permit 55 ^65000:3_0:146_0:54$ ip community-list expanded c92 permit 56 ^65000:3_0:147_0:55$ ip community-list expanded c92 permit 57 ^65000:3_0:148_0:56$ ip community-list expanded c92 permit 58 ^65000:3_0:149_0:57$ ip community-list expanded c92 permit 59 ^65000:3_0:150_0:58$ ip community-list expanded c92 permit 60 ^65000:3_0:151_0:59$ ip community-list expanded c92 permit 61 ^65000:3_0:152_0:60$ ip community-list expanded c92 permit 62 ^65000:3_0:153_0:61$ ip community-list expanded c92 permit 63 ^65000:3_0:154_0:62$ ip community-list expanded c92 permit 64 ^65000:3_0:155_0:63$ ip community-list expanded c92 permit 65 ^65000:3_0:156_0:64$ ip community-list expanded c92 permit 66 ^65000:3_0:157_0:65$ ip community-list expanded c92 permit 67 ^65000:3_0:158_0:66$ ip community-list expanded c92 permit 68 ^65000:3_0:159_0:67$ ip community-list expanded c92 permit 69 ^65000:3_0:160_0:68$ ip community-list expanded c92 permit 70 ^65000:3_0:161_0:69$ ip community-list expanded c92 permit 71 ^65000:3_0:162_0:70$ ip community-list expanded c92 permit 72 ^65000:3_0:163_0:71$ ip community-list expanded c92 permit 73 ^65000:3_0:164_0:72$ ip community-list expanded c92 permit 74 ^65000:3_0:165_0:73$ ip community-list expanded c92 permit 75 ^65000:3_0:166_0:74$ ip community-list expanded c92 permit 76 ^65000:3_0:167_0:75$ ip community-list expanded c92 permit 77 ^65000:3_0:168_0:76$ ip community-list expanded c92 permit 78 ^65000:3_0:169_0:77$ ip community-list expanded c92 permit 79 ^65000:3_0:170_0:78$ ip community-list expanded c92 permit 80 ^65000:3_0:171_0:79$ ip community-list expanded c92 permit 81 ^65000:3_0:172_0:80$ ip community-list expanded c92 permit 82 ^65000:3_0:173_0:81$ ip community-list expanded c92 permit 83 ^65000:3_0:174_0:82$ ip community-list expanded c92 permit 84 ^65000:3_0:175_0:83$ ip community-list expanded c92 permit 85 ^65000:3_0:176_0:84$ ip community-list expanded c92 permit 86 ^65000:3_0:177_0:85$ ip community-list expanded c92 permit 87 ^65000:3_0:178_0:86$ ip community-list expanded c92 permit 88 ^65000:3_0:179_0:87$ ip community-list expanded c92 permit 89 ^65000:3_0:180_0:88$ ip community-list expanded c92 permit 90 ^65000:3_0:181_0:89$ ip community-list expanded c92 permit 91 ^65000:3_0:182_0:90$ ip community-list expanded c92 permit 92 ^65000:3_0:183_0:91$ ip community-list expanded c92 permit 93 ^65000:4_0:184_0:2$ ip community-list expanded c92 permit 94 ^65000:3_0:184_0:92$ ip community-list expanded c92 permit 95 ^65000:4_0:185_0:2$ ip community-list expanded c92 permit 96 ^65000:3_0:185_0:93$ ip community-list expanded c92 permit 97 ^65000:3_0:186_0:94$ ip community-list expanded c92 permit 98 ^65000:3_0:187_0:95$ ip community-list expanded c92 permit 99 ^65000:3_0:188_0:96$ ip community-list expanded c92 permit 100 ^65000:3_0:189_0:97$ ip community-list expanded c92 permit 101 ^65000:3_0:190_0:98$ ip community-list expanded c92 permit 102 ^65000:3_0:191_0:99$ ip community-list expanded c92 permit 103 ^65000:3_0:192_0:100$ ip community-list expanded c92 permit 104 ^65000:3_0:193_0:101$ ip community-list expanded c92 permit 105 ^65000:3_0:194_0:102$ ip community-list expanded c92 permit 106 ^65000:3_0:195_0:103$ ip community-list expanded c92 permit 107 ^65000:3_0:196_0:104$ ip community-list expanded c92 permit 108 ^65000:3_0:197_0:105$ ip community-list expanded c92 permit 109 ^65000:3_0:198_0:106$ ip community-list expanded c92 permit 110 ^65000:3_0:199_0:107$ ip community-list expanded c92 permit 111 ^65000:3_0:200_0:108$ ip community-list expanded c92 permit 112 ^65000:3_0:201_0:109$ ip community-list expanded c92 permit 113 ^65000:3_0:202_0:110$ ip community-list expanded c92 permit 114 ^65000:3_0:203_0:111$ ip community-list expanded c92 permit 115 ^65000:3_0:204_0:112$ ip community-list expanded c92 permit 116 ^65000:3_0:205_0:113$ ip community-list expanded c92 permit 117 ^65000:3_0:206_0:114$ ip community-list expanded c92 permit 118 ^65000:3_0:207_0:115$ ip community-list expanded c92 permit 119 ^65000:3_0:208_0:116$ ip community-list expanded c92 permit 120 ^65000:3_0:209_0:117$ ip community-list expanded c92 permit 121 ^65000:3_0:210_0:118$ ip community-list expanded c92 permit 122 ^65000:3_0:211_0:119$ ip community-list expanded c92 permit 123 ^65000:3_0:212_0:120$ ip community-list expanded c92 permit 124 ^65000:3_0:213_0:121$ ip community-list expanded c92 permit 125 ^65000:3_0:214_0:122$ ip community-list expanded c92 permit 126 ^65000:3_0:215_0:123$ ip community-list expanded c92 permit 127 ^65000:3_0:216_0:124$ ip community-list expanded c92 permit 128 ^65000:3_0:217_0:125$ ip community-list expanded c92 permit 129 ^65000:3_0:218_0:126$ ip community-list expanded c92 permit 130 ^65000:3_0:219_0:127$ ip community-list expanded c92 permit 131 ^65000:3_0:220_0:128$ ip community-list expanded c92 permit 132 ^65000:3_0:221_0:129$ ip community-list expanded c92 permit 133 ^65000:3_0:222_0:130$ ip community-list expanded c92 permit 134 ^65000:3_0:223_0:131$ ip community-list expanded c92 permit 135 ^65000:3_0:224_0:132$ ip community-list expanded c92 permit 136 ^65000:3_0:225_0:133$ ip community-list expanded c92 permit 137 ^65000:3_0:226_0:134$ ip community-list expanded c92 permit 138 ^65000:3_0:227_0:135$ ip community-list expanded c92 permit 139 ^65000:3_0:228_0:136$ ip community-list expanded c92 permit 140 ^65000:3_0:229_0:137$ ip community-list expanded c92 permit 141 ^65000:3_0:230_0:138$ ip community-list expanded c92 permit 142 ^65000:3_0:231_0:139$ ip community-list expanded c92 permit 143 ^65000:3_0:232_0:140$ ip community-list expanded c92 permit 144 ^65000:3_0:233_0:141$ ip community-list expanded c92 permit 145 ^65000:3_0:234_0:142$ ip community-list expanded c92 permit 146 ^65000:3_0:235_0:143$ ip community-list expanded c92 permit 147 ^65000:3_0:236_0:144$ ip community-list expanded c92 permit 148 ^65000:3_0:237_0:145$ ip community-list expanded c92 permit 149 ^65000:3_0:238_0:146$ ip community-list expanded c92 permit 150 ^65000:3_0:239_0:147$ ip community-list expanded c92 permit 151 ^65000:3_0:240_0:148$ ip community-list expanded c92 permit 152 ^65000:3_0:241_0:149$ ip community-list expanded c92 permit 153 ^65000:3_0:242_0:150$ ip community-list expanded c92 permit 154 ^65000:3_0:243_0:151$ ip community-list expanded c92 permit 155 ^65000:3_0:244_0:152$ ip community-list expanded c92 permit 156 ^65000:3_0:245_0:153$ ip community-list expanded c92 permit 157 ^65000:3_0:246_0:154$ ip community-list expanded c92 permit 158 ^65000:3_0:247_0:155$ ip community-list expanded c92 permit 159 ^65000:3_0:248_0:156$ ip community-list expanded c92 permit 160 ^65000:3_0:249_0:157$ ip community-list expanded c92 permit 161 ^65000:3_0:250_0:158$ ip community-list expanded c92 permit 162 ^65000:3_0:251_0:159$ ip community-list expanded c92 permit 163 ^65000:3_0:252_0:160$ ip community-list expanded c92 permit 164 ^65000:3_0:253_0:161$ ip community-list expanded c92 permit 165 ^65000:3_0:254_0:162$ ip community-list expanded c92 permit 166 ^65000:3_0:255_0:163$ ip community-list expanded c92 permit 167 ^65000:3_0:256_0:164$ route-map calculator permit 18503 match community 1_1_91 2_1_92 2_2_46 1_2_90 1_3_89 set community 0:92 route-map calculator permit 18504 match community 2_4_23 1_4_88 1_5_87 1_6_86 1_7_85 set community 0:92 route-map calculator permit 18505 match community 1_8_84 1_9_83 1_10_82 1_11_81 1_12_80 set community 0:92 route-map calculator permit 18506 match community 1_13_79 1_14_78 1_15_77 1_16_76 1_17_75 set community 0:92 route-map calculator permit 18507 match community 1_18_74 1_19_73 1_20_72 1_21_71 1_22_70 set community 0:92 route-map calculator permit 18508 match community 1_23_69 1_24_68 1_25_67 1_26_66 1_27_65 set community 0:92 route-map calculator permit 18509 match community 1_28_64 1_29_63 1_30_62 1_31_61 1_32_60 set community 0:92 route-map calculator permit 18510 match community 1_33_59 1_34_58 1_35_57 1_36_56 1_37_55 set community 0:92 route-map calculator permit 18511 match community 1_38_54 1_39_53 1_40_52 1_41_51 1_42_50 set community 0:92 route-map calculator permit 18512 match community 1_43_49 1_44_48 1_45_47 1_46_46 c4_92_1 set community 0:92 route-map calculator permit 18513 match community c3_93_1 c3_94_2 c3_95_3 c3_96_4 c3_97_5 set community 0:92 route-map calculator permit 18514 match community c3_98_6 c3_99_7 c3_100_8 c3_101_9 c3_102_10 set community 0:92 route-map calculator permit 18515 match community c3_103_11 c3_104_12 c3_105_13 c3_106_14 c3_107_15 set community 0:92 route-map calculator permit 18516 match community c3_108_16 c3_109_17 c3_110_18 c3_111_19 c3_112_20 set community 0:92 route-map calculator permit 18517 match community c3_113_21 c3_114_22 c3_115_23 c3_116_24 c3_117_25 set community 0:92 route-map calculator permit 18518 match community c3_118_26 c3_119_27 c3_120_28 c3_121_29 c3_122_30 set community 0:92 route-map calculator permit 18519 match community c3_123_31 c3_124_32 c3_125_33 c3_126_34 c3_127_35 set community 0:92 route-map calculator permit 18520 match community c3_128_36 c3_129_37 c3_130_38 c3_131_39 c3_132_40 set community 0:92 route-map calculator permit 18521 match community c3_133_41 c3_134_42 c3_135_43 c3_136_44 c3_137_45 set community 0:92 route-map calculator permit 18522 match community c3_138_46 c3_139_47 c3_140_48 c3_141_49 c3_142_50 set community 0:92 route-map calculator permit 18523 match community c3_143_51 c3_144_52 c3_145_53 c3_146_54 c3_147_55 set community 0:92 route-map calculator permit 18524 match community c3_148_56 c3_149_57 c3_150_58 c3_151_59 c3_152_60 set community 0:92 route-map calculator permit 18525 match community c3_153_61 c3_154_62 c3_155_63 c3_156_64 c3_157_65 set community 0:92 route-map calculator permit 18526 match community c3_158_66 c3_159_67 c3_160_68 c3_161_69 c3_162_70 set community 0:92 route-map calculator permit 18527 match community c3_163_71 c3_164_72 c3_165_73 c3_166_74 c3_167_75 set community 0:92 route-map calculator permit 18528 match community c3_168_76 c3_169_77 c3_170_78 c3_171_79 c3_172_80 set community 0:92 route-map calculator permit 18529 match community c3_173_81 c3_174_82 c3_175_83 c3_176_84 c3_177_85 set community 0:92 route-map calculator permit 18530 match community c3_178_86 c3_179_87 c3_180_88 c3_181_89 c3_182_90 set community 0:92 route-map calculator permit 18531 match community c3_183_91 c4_184_2 c3_184_92 c4_185_2 c3_185_93 set community 0:92 route-map calculator permit 18532 match community c3_186_94 c3_187_95 c3_188_96 c3_189_97 c3_190_98 set community 0:92 route-map calculator permit 18533 match community c3_191_99 c3_192_100 c3_193_101 c3_194_102 c3_195_103 set community 0:92 route-map calculator permit 18534 match community c3_196_104 c3_197_105 c3_198_106 c3_199_107 c3_200_108 set community 0:92 route-map calculator permit 18535 match community c3_201_109 c3_202_110 c3_203_111 c3_204_112 c3_205_113 set community 0:92 route-map calculator permit 18536 match community c3_206_114 c3_207_115 c3_208_116 c3_209_117 c3_210_118 set community 0:92 route-map calculator permit 18537 match community c3_211_119 c3_212_120 c3_213_121 c3_214_122 c3_215_123 set community 0:92 route-map calculator permit 18538 match community c3_216_124 c3_217_125 c3_218_126 c3_219_127 c3_220_128 set community 0:92 route-map calculator permit 18539 match community c3_221_129 c3_222_130 c3_223_131 c3_224_132 c3_225_133 set community 0:92 route-map calculator permit 18540 match community c3_226_134 c3_227_135 c3_228_136 c3_229_137 c3_230_138 set community 0:92 route-map calculator permit 18541 match community c3_231_139 c3_232_140 c3_233_141 c3_234_142 c3_235_143 set community 0:92 route-map calculator permit 18542 match community c3_236_144 c3_237_145 c3_238_146 c3_239_147 c3_240_148 set community 0:92 route-map calculator permit 18543 match community c3_241_149 c3_242_150 c3_243_151 c3_244_152 c3_245_153 set community 0:92 route-map calculator permit 18544 match community c3_246_154 c3_247_155 c3_248_156 c3_249_157 c3_250_158 set community 0:92 route-map calculator permit 18545 match community c3_251_159 c3_252_160 c3_253_161 c3_254_162 c3_255_163 set community 0:92 route-map calculator permit 18546 match community c3_256_164 set community 0:92 ip community-list standard 2_224_254 permit 65000:2 0:224 0:254 route-map calculator permit 18547 match community 2_224_254 set community 0:56896 ip community-list standard 2_146_170 permit 65000:2 0:146 0:170 route-map calculator permit 18548 match community 2_146_170 set community 0:24820 ip community-list standard 2_96_254 permit 65000:2 0:96 0:254 ip community-list standard 2_127_192 permit 65000:2 0:127 0:192 route-map calculator permit 18549 match community 2_96_254 2_127_192 set community 0:24384 ip community-list standard 2_11_234 permit 65000:2 0:11 0:234 ip community-list standard 2_13_198 permit 65000:2 0:13 0:198 ip community-list standard 2_18_143 permit 65000:2 0:18 0:143 ip community-list standard 2_22_117 permit 65000:2 0:22 0:117 ip community-list standard 2_26_99 permit 65000:2 0:26 0:99 ip community-list standard 2_33_78 permit 65000:2 0:33 0:78 ip community-list standard 2_39_66 permit 65000:2 0:39 0:66 route-map calculator permit 18550 match community 2_11_234 2_13_198 2_18_143 2_22_117 2_26_99 set community 0:2574 route-map calculator permit 18551 match community 2_33_78 2_39_66 set community 0:2574 ip community-list standard 2_15_190 permit 65000:2 0:15 0:190 ip community-list standard 2_19_150 permit 65000:2 0:19 0:150 ip community-list standard 2_25_114 permit 65000:2 0:25 0:114 ip community-list standard 2_30_95 permit 65000:2 0:30 0:95 ip community-list standard 2_38_75 permit 65000:2 0:38 0:75 ip community-list standard 2_50_57 permit 65000:2 0:50 0:57 route-map calculator permit 18552 match community 2_15_190 2_19_150 2_25_114 2_30_95 2_38_75 set community 0:2850 route-map calculator permit 18553 match community 2_50_57 set community 0:2850 ip community-list standard 2_89_171 permit 65000:2 0:89 0:171 route-map calculator permit 18554 match community 2_89_171 set community 0:15219 ip community-list standard 2_152_243 permit 65000:2 0:152 0:243 ip community-list standard 2_162_228 permit 65000:2 0:162 0:228 ip community-list standard 2_171_216 permit 65000:2 0:171 0:216 route-map calculator permit 18555 match community 2_152_243 2_162_228 2_171_216 set community 0:36936 ip community-list standard 2_17_79 permit 65000:2 0:17 0:79 route-map calculator permit 18556 match community 2_17_79 set community 0:1343 ip community-list standard 2_5_210 permit 65000:2 0:5 0:210 ip community-list standard 2_6_175 permit 65000:2 0:6 0:175 ip community-list standard 2_7_150 permit 65000:2 0:7 0:150 ip community-list standard 2_10_105 permit 65000:2 0:10 0:105 ip community-list standard 2_14_75 permit 65000:2 0:14 0:75 ip community-list standard 2_15_70 permit 65000:2 0:15 0:70 ip community-list standard 2_21_50 permit 65000:2 0:21 0:50 ip community-list standard 2_25_42 permit 65000:2 0:25 0:42 ip community-list standard 2_30_35 permit 65000:2 0:30 0:35 route-map calculator permit 18557 match community 2_5_210 2_6_175 2_7_150 2_10_105 2_14_75 set community 0:1050 route-map calculator permit 18558 match community 2_15_70 2_21_50 2_25_42 2_30_35 set community 0:1050 ip community-list standard 2_14_139 permit 65000:2 0:14 0:139 route-map calculator permit 18559 match community 2_14_139 set community 0:1946 ip community-list standard 2_122_203 permit 65000:2 0:122 0:203 route-map calculator permit 18560 match community 2_122_203 set community 0:24766 ip community-list standard 2_119_177 permit 65000:2 0:119 0:177 route-map calculator permit 18561 match community 2_119_177 set community 0:21063 ip community-list standard 2_18_229 permit 65000:2 0:18 0:229 route-map calculator permit 18562 match community 2_18_229 set community 0:4122 ip community-list standard 2_211_231 permit 65000:2 0:211 0:231 route-map calculator permit 18563 match community 2_211_231 set community 0:48741 ip community-list standard 2_192_202 permit 65000:2 0:192 0:202 route-map calculator permit 18564 match community 2_192_202 set community 0:38784 ip community-list standard 2_61_61 permit 65000:2 0:61 0:61 route-map calculator permit 18565 match community 2_61_61 set community 0:3721 ip community-list standard 2_31_93 permit 65000:2 0:31 0:93 route-map calculator permit 18566 match community 2_31_93 set community 0:2883 ip community-list standard 2_182_247 permit 65000:2 0:182 0:247 route-map calculator permit 18567 match community 2_182_247 set community 0:44954 ip community-list standard 2_186_242 permit 65000:2 0:186 0:242 route-map calculator permit 18568 match community 2_186_242 set community 0:45012 ip community-list standard 2_25_178 permit 65000:2 0:25 0:178 ip community-list standard 2_50_89 permit 65000:2 0:50 0:89 route-map calculator permit 18569 match community 2_25_178 2_50_89 set community 0:4450 ip community-list standard 2_70_230 permit 65000:2 0:70 0:230 ip community-list standard 2_92_175 permit 65000:2 0:92 0:175 ip community-list standard 2_100_161 permit 65000:2 0:100 0:161 ip community-list standard 2_115_140 permit 65000:2 0:115 0:140 route-map calculator permit 18570 match community 2_70_230 2_92_175 2_100_161 2_115_140 set community 0:16100 ip community-list standard 2_9_172 permit 65000:2 0:9 0:172 ip community-list standard 2_12_129 permit 65000:2 0:12 0:129 ip community-list standard 2_18_86 permit 65000:2 0:18 0:86 ip community-list standard 2_36_43 permit 65000:2 0:36 0:43 route-map calculator permit 18571 match community 2_9_172 2_12_129 2_18_86 2_36_43 set community 0:1548 ip community-list standard 2_60_251 permit 65000:2 0:60 0:251 route-map calculator permit 18572 match community 2_60_251 set community 0:15060 ip community-list standard 2_68_233 permit 65000:2 0:68 0:233 route-map calculator permit 18573 match community 2_68_233 set community 0:15844 ip community-list standard 2_161_233 permit 65000:2 0:161 0:233 route-map calculator permit 18574 match community 2_161_233 set community 0:37513 ip community-list standard 2_160_255 permit 65000:2 0:160 0:255 ip community-list standard 2_170_240 permit 65000:2 0:170 0:240 ip community-list standard 2_200_204 permit 65000:2 0:200 0:204 route-map calculator permit 18575 match community 2_160_255 2_170_240 2_200_204 set community 0:40800 ip community-list standard 2_105_167 permit 65000:2 0:105 0:167 route-map calculator permit 18576 match community 2_105_167 set community 0:17535 ip community-list standard 2_112_252 permit 65000:2 0:112 0:252 ip community-list standard 2_126_224 permit 65000:2 0:126 0:224 ip community-list standard 2_144_196 permit 65000:2 0:144 0:196 ip community-list standard 2_147_192 permit 65000:2 0:147 0:192 ip community-list standard 2_168_168 permit 65000:2 0:168 0:168 route-map calculator permit 18577 match community 2_112_252 2_126_224 2_144_196 2_147_192 2_168_168 set community 0:28224 ip community-list standard 1_93_256 permit 65000:1 0:93 0:256 ip community-list standard 1_94_255 permit 65000:1 0:94 0:255 ip community-list standard 1_95_254 permit 65000:1 0:95 0:254 ip community-list standard 1_96_253 permit 65000:1 0:96 0:253 ip community-list standard 1_97_252 permit 65000:1 0:97 0:252 ip community-list standard 1_98_251 permit 65000:1 0:98 0:251 ip community-list standard 1_99_250 permit 65000:1 0:99 0:250 ip community-list standard 1_100_249 permit 65000:1 0:100 0:249 ip community-list standard 1_101_248 permit 65000:1 0:101 0:248 ip community-list standard 1_102_247 permit 65000:1 0:102 0:247 ip community-list standard 1_103_246 permit 65000:1 0:103 0:246 ip community-list standard 1_104_245 permit 65000:1 0:104 0:245 ip community-list standard 1_105_244 permit 65000:1 0:105 0:244 ip community-list standard 1_106_243 permit 65000:1 0:106 0:243 ip community-list standard 1_107_242 permit 65000:1 0:107 0:242 ip community-list standard 1_108_241 permit 65000:1 0:108 0:241 ip community-list standard 1_109_240 permit 65000:1 0:109 0:240 ip community-list standard 1_110_239 permit 65000:1 0:110 0:239 ip community-list standard 1_111_238 permit 65000:1 0:111 0:238 ip community-list standard 1_112_237 permit 65000:1 0:112 0:237 ip community-list standard 1_113_236 permit 65000:1 0:113 0:236 ip community-list standard 1_114_235 permit 65000:1 0:114 0:235 ip community-list standard 1_115_234 permit 65000:1 0:115 0:234 ip community-list standard 1_116_233 permit 65000:1 0:116 0:233 ip community-list standard 1_117_232 permit 65000:1 0:117 0:232 ip community-list standard 1_118_231 permit 65000:1 0:118 0:231 ip community-list standard 1_119_230 permit 65000:1 0:119 0:230 ip community-list standard 1_120_229 permit 65000:1 0:120 0:229 ip community-list standard 1_121_228 permit 65000:1 0:121 0:228 ip community-list standard 1_122_227 permit 65000:1 0:122 0:227 ip community-list standard 1_123_226 permit 65000:1 0:123 0:226 ip community-list standard 1_124_225 permit 65000:1 0:124 0:225 ip community-list standard 1_125_224 permit 65000:1 0:125 0:224 ip community-list standard 1_126_223 permit 65000:1 0:126 0:223 ip community-list standard 1_127_222 permit 65000:1 0:127 0:222 ip community-list standard 1_128_221 permit 65000:1 0:128 0:221 ip community-list standard 1_129_220 permit 65000:1 0:129 0:220 ip community-list standard 1_130_219 permit 65000:1 0:130 0:219 ip community-list standard 1_131_218 permit 65000:1 0:131 0:218 ip community-list standard 1_132_217 permit 65000:1 0:132 0:217 ip community-list standard 1_133_216 permit 65000:1 0:133 0:216 ip community-list standard 1_134_215 permit 65000:1 0:134 0:215 ip community-list standard 1_135_214 permit 65000:1 0:135 0:214 ip community-list standard 1_136_213 permit 65000:1 0:136 0:213 ip community-list standard 1_137_212 permit 65000:1 0:137 0:212 ip community-list standard 1_138_211 permit 65000:1 0:138 0:211 ip community-list standard 1_139_210 permit 65000:1 0:139 0:210 ip community-list standard 1_140_209 permit 65000:1 0:140 0:209 ip community-list standard 1_141_208 permit 65000:1 0:141 0:208 ip community-list standard 1_142_207 permit 65000:1 0:142 0:207 ip community-list standard 1_143_206 permit 65000:1 0:143 0:206 ip community-list standard 1_144_205 permit 65000:1 0:144 0:205 ip community-list standard 1_145_204 permit 65000:1 0:145 0:204 ip community-list standard 1_146_203 permit 65000:1 0:146 0:203 ip community-list standard 1_147_202 permit 65000:1 0:147 0:202 ip community-list standard 1_148_201 permit 65000:1 0:148 0:201 ip community-list standard 1_149_200 permit 65000:1 0:149 0:200 ip community-list standard 1_150_199 permit 65000:1 0:150 0:199 ip community-list standard 1_151_198 permit 65000:1 0:151 0:198 ip community-list standard 1_152_197 permit 65000:1 0:152 0:197 ip community-list standard 1_153_196 permit 65000:1 0:153 0:196 ip community-list standard 1_154_195 permit 65000:1 0:154 0:195 ip community-list standard 1_155_194 permit 65000:1 0:155 0:194 ip community-list standard 1_156_193 permit 65000:1 0:156 0:193 ip community-list standard 1_157_192 permit 65000:1 0:157 0:192 ip community-list standard 1_158_191 permit 65000:1 0:158 0:191 ip community-list standard 1_159_190 permit 65000:1 0:159 0:190 ip community-list standard 1_160_189 permit 65000:1 0:160 0:189 ip community-list standard 1_161_188 permit 65000:1 0:161 0:188 ip community-list standard 1_162_187 permit 65000:1 0:162 0:187 ip community-list standard 1_163_186 permit 65000:1 0:163 0:186 ip community-list standard 1_164_185 permit 65000:1 0:164 0:185 ip community-list standard 1_165_184 permit 65000:1 0:165 0:184 ip community-list standard 1_166_183 permit 65000:1 0:166 0:183 ip community-list standard 1_167_182 permit 65000:1 0:167 0:182 ip community-list standard 1_168_181 permit 65000:1 0:168 0:181 ip community-list standard 1_169_180 permit 65000:1 0:169 0:180 ip community-list standard 1_170_179 permit 65000:1 0:170 0:179 ip community-list standard 1_171_178 permit 65000:1 0:171 0:178 ip community-list standard 1_172_177 permit 65000:1 0:172 0:177 ip community-list standard 1_173_176 permit 65000:1 0:173 0:176 ip community-list standard 1_174_175 permit 65000:1 0:174 0:175 route-map calculator permit 18578 match community 1_93_256 1_94_255 1_95_254 1_96_253 1_97_252 set community 0:349 route-map calculator permit 18579 match community 1_98_251 1_99_250 1_100_249 1_101_248 1_102_247 set community 0:349 route-map calculator permit 18580 match community 1_103_246 1_104_245 1_105_244 1_106_243 1_107_242 set community 0:349 route-map calculator permit 18581 match community 1_108_241 1_109_240 1_110_239 1_111_238 1_112_237 set community 0:349 route-map calculator permit 18582 match community 1_113_236 1_114_235 1_115_234 1_116_233 1_117_232 set community 0:349 route-map calculator permit 18583 match community 1_118_231 1_119_230 1_120_229 1_121_228 1_122_227 set community 0:349 route-map calculator permit 18584 match community 1_123_226 1_124_225 1_125_224 1_126_223 1_127_222 set community 0:349 route-map calculator permit 18585 match community 1_128_221 1_129_220 1_130_219 1_131_218 1_132_217 set community 0:349 route-map calculator permit 18586 match community 1_133_216 1_134_215 1_135_214 1_136_213 1_137_212 set community 0:349 route-map calculator permit 18587 match community 1_138_211 1_139_210 1_140_209 1_141_208 1_142_207 set community 0:349 route-map calculator permit 18588 match community 1_143_206 1_144_205 1_145_204 1_146_203 1_147_202 set community 0:349 route-map calculator permit 18589 match community 1_148_201 1_149_200 1_150_199 1_151_198 1_152_197 set community 0:349 route-map calculator permit 18590 match community 1_153_196 1_154_195 1_155_194 1_156_193 1_157_192 set community 0:349 route-map calculator permit 18591 match community 1_158_191 1_159_190 1_160_189 1_161_188 1_162_187 set community 0:349 route-map calculator permit 18592 match community 1_163_186 1_164_185 1_165_184 1_166_183 1_167_182 set community 0:349 route-map calculator permit 18593 match community 1_168_181 1_169_180 1_170_179 1_171_178 1_172_177 set community 0:349 route-map calculator permit 18594 match community 1_173_176 1_174_175 set community 0:349 ip community-list standard 2_162_254 permit 65000:2 0:162 0:254 route-map calculator permit 18595 match community 2_162_254 set community 0:41148 ip community-list standard 2_81_143 permit 65000:2 0:81 0:143 ip community-list standard 2_99_117 permit 65000:2 0:99 0:117 route-map calculator permit 18596 match community 2_81_143 2_99_117 set community 0:11583 ip community-list standard 2_20_210 permit 65000:2 0:20 0:210 ip community-list standard 2_21_200 permit 65000:2 0:21 0:200 ip community-list standard 2_24_175 permit 65000:2 0:24 0:175 ip community-list standard 2_25_168 permit 65000:2 0:25 0:168 ip community-list standard 2_28_150 permit 65000:2 0:28 0:150 ip community-list standard 2_30_140 permit 65000:2 0:30 0:140 ip community-list standard 2_35_120 permit 65000:2 0:35 0:120 ip community-list standard 2_40_105 permit 65000:2 0:40 0:105 ip community-list standard 2_42_100 permit 65000:2 0:42 0:100 ip community-list standard 2_50_84 permit 65000:2 0:50 0:84 ip community-list standard 2_56_75 permit 65000:2 0:56 0:75 ip community-list standard 2_60_70 permit 65000:2 0:60 0:70 route-map calculator permit 18597 match community 2_20_210 2_21_200 2_24_175 2_25_168 2_28_150 set community 0:4200 route-map calculator permit 18598 match community 2_30_140 2_35_120 2_40_105 2_42_100 2_50_84 set community 0:4200 route-map calculator permit 18599 match community 2_56_75 2_60_70 set community 0:4200 ip community-list standard 2_181_207 permit 65000:2 0:181 0:207 route-map calculator permit 18600 match community 2_181_207 set community 0:37467 ip community-list standard 2_68_230 permit 65000:2 0:68 0:230 ip community-list standard 2_85_184 permit 65000:2 0:85 0:184 ip community-list standard 2_92_170 permit 65000:2 0:92 0:170 ip community-list standard 2_115_136 permit 65000:2 0:115 0:136 route-map calculator permit 18601 match community 2_68_230 2_85_184 2_92_170 2_115_136 set community 0:15640 ip community-list standard 2_159_228 permit 65000:2 0:159 0:228 ip community-list standard 2_171_212 permit 65000:2 0:171 0:212 route-map calculator permit 18602 match community 2_159_228 2_171_212 set community 0:36252 ip community-list standard 2_162_226 permit 65000:2 0:162 0:226 route-map calculator permit 18603 match community 2_162_226 set community 0:36612 ip community-list standard 2_41_113 permit 65000:2 0:41 0:113 route-map calculator permit 18604 match community 2_41_113 set community 0:4633 ip community-list standard 2_193_212 permit 65000:2 0:193 0:212 route-map calculator permit 18605 match community 2_193_212 set community 0:40916 ip community-list standard 2_151_223 permit 65000:2 0:151 0:223 route-map calculator permit 18606 match community 2_151_223 set community 0:33673 ip community-list standard 1_1_54 permit 65000:1 0:1 0:54 ip community-list standard 2_1_55 permit 65000:2 0:1 0:55 ip community-list standard 1_2_53 permit 65000:1 0:2 0:53 ip community-list standard 1_3_52 permit 65000:1 0:3 0:52 ip community-list standard 1_4_51 permit 65000:1 0:4 0:51 ip community-list standard 2_5_11 permit 65000:2 0:5 0:11 ip community-list standard 1_5_50 permit 65000:1 0:5 0:50 ip community-list standard 1_6_49 permit 65000:1 0:6 0:49 ip community-list standard 1_7_48 permit 65000:1 0:7 0:48 ip community-list standard 1_8_47 permit 65000:1 0:8 0:47 ip community-list standard 1_9_46 permit 65000:1 0:9 0:46 ip community-list standard 1_10_45 permit 65000:1 0:10 0:45 ip community-list standard 1_11_44 permit 65000:1 0:11 0:44 ip community-list standard 1_12_43 permit 65000:1 0:12 0:43 ip community-list standard 1_13_42 permit 65000:1 0:13 0:42 ip community-list standard 1_14_41 permit 65000:1 0:14 0:41 ip community-list standard 1_15_40 permit 65000:1 0:15 0:40 ip community-list standard 1_16_39 permit 65000:1 0:16 0:39 ip community-list standard 1_17_38 permit 65000:1 0:17 0:38 ip community-list standard 1_18_37 permit 65000:1 0:18 0:37 ip community-list standard 1_19_36 permit 65000:1 0:19 0:36 ip community-list standard 1_20_35 permit 65000:1 0:20 0:35 ip community-list standard 1_21_34 permit 65000:1 0:21 0:34 ip community-list standard 1_22_33 permit 65000:1 0:22 0:33 ip community-list standard 1_23_32 permit 65000:1 0:23 0:32 ip community-list standard 1_24_31 permit 65000:1 0:24 0:31 ip community-list standard 1_25_30 permit 65000:1 0:25 0:30 ip community-list standard 1_26_29 permit 65000:1 0:26 0:29 ip community-list standard 1_27_28 permit 65000:1 0:27 0:28 ip community-list expanded c55 permit 1 ^65000:4_0:55_0:1$ ip community-list expanded c55 permit 2 ^65000:3_0:56_0:1$ ip community-list expanded c55 permit 3 ^65000:3_0:57_0:2$ ip community-list expanded c55 permit 4 ^65000:3_0:58_0:3$ ip community-list expanded c55 permit 5 ^65000:3_0:59_0:4$ ip community-list expanded c55 permit 6 ^65000:3_0:60_0:5$ ip community-list expanded c55 permit 7 ^65000:3_0:61_0:6$ ip community-list expanded c55 permit 8 ^65000:3_0:62_0:7$ ip community-list expanded c55 permit 9 ^65000:3_0:63_0:8$ ip community-list expanded c55 permit 10 ^65000:3_0:64_0:9$ ip community-list expanded c55 permit 11 ^65000:3_0:65_0:10$ ip community-list expanded c55 permit 12 ^65000:3_0:66_0:11$ ip community-list expanded c55 permit 13 ^65000:3_0:67_0:12$ ip community-list expanded c55 permit 14 ^65000:3_0:68_0:13$ ip community-list expanded c55 permit 15 ^65000:3_0:69_0:14$ ip community-list expanded c55 permit 16 ^65000:3_0:70_0:15$ ip community-list expanded c55 permit 17 ^65000:3_0:71_0:16$ ip community-list expanded c55 permit 18 ^65000:3_0:72_0:17$ ip community-list expanded c55 permit 19 ^65000:3_0:73_0:18$ ip community-list expanded c55 permit 20 ^65000:3_0:74_0:19$ ip community-list expanded c55 permit 21 ^65000:3_0:75_0:20$ ip community-list expanded c55 permit 22 ^65000:3_0:76_0:21$ ip community-list expanded c55 permit 23 ^65000:3_0:77_0:22$ ip community-list expanded c55 permit 24 ^65000:3_0:78_0:23$ ip community-list expanded c55 permit 25 ^65000:3_0:79_0:24$ ip community-list expanded c55 permit 26 ^65000:3_0:80_0:25$ ip community-list expanded c55 permit 27 ^65000:3_0:81_0:26$ ip community-list expanded c55 permit 28 ^65000:3_0:82_0:27$ ip community-list expanded c55 permit 29 ^65000:3_0:83_0:28$ ip community-list expanded c55 permit 30 ^65000:3_0:84_0:29$ ip community-list expanded c55 permit 31 ^65000:3_0:85_0:30$ ip community-list expanded c55 permit 32 ^65000:3_0:86_0:31$ ip community-list expanded c55 permit 33 ^65000:3_0:87_0:32$ ip community-list expanded c55 permit 34 ^65000:3_0:88_0:33$ ip community-list expanded c55 permit 35 ^65000:3_0:89_0:34$ ip community-list expanded c55 permit 36 ^65000:3_0:90_0:35$ ip community-list expanded c55 permit 37 ^65000:3_0:91_0:36$ ip community-list expanded c55 permit 38 ^65000:3_0:92_0:37$ ip community-list expanded c55 permit 39 ^65000:3_0:93_0:38$ ip community-list expanded c55 permit 40 ^65000:3_0:94_0:39$ ip community-list expanded c55 permit 41 ^65000:3_0:95_0:40$ ip community-list expanded c55 permit 42 ^65000:3_0:96_0:41$ ip community-list expanded c55 permit 43 ^65000:3_0:97_0:42$ ip community-list expanded c55 permit 44 ^65000:3_0:98_0:43$ ip community-list expanded c55 permit 45 ^65000:3_0:99_0:44$ ip community-list expanded c55 permit 46 ^65000:3_0:100_0:45$ ip community-list expanded c55 permit 47 ^65000:3_0:101_0:46$ ip community-list expanded c55 permit 48 ^65000:3_0:102_0:47$ ip community-list expanded c55 permit 49 ^65000:3_0:103_0:48$ ip community-list expanded c55 permit 50 ^65000:3_0:104_0:49$ ip community-list expanded c55 permit 51 ^65000:3_0:105_0:50$ ip community-list expanded c55 permit 52 ^65000:3_0:106_0:51$ ip community-list expanded c55 permit 53 ^65000:3_0:107_0:52$ ip community-list expanded c55 permit 54 ^65000:3_0:108_0:53$ ip community-list expanded c55 permit 55 ^65000:3_0:109_0:54$ ip community-list expanded c55 permit 56 ^65000:4_0:110_0:2$ ip community-list expanded c55 permit 57 ^65000:3_0:110_0:55$ ip community-list expanded c55 permit 58 ^65000:4_0:111_0:2$ ip community-list expanded c55 permit 59 ^65000:3_0:111_0:56$ ip community-list expanded c55 permit 60 ^65000:3_0:112_0:57$ ip community-list expanded c55 permit 61 ^65000:3_0:113_0:58$ ip community-list expanded c55 permit 62 ^65000:3_0:114_0:59$ ip community-list expanded c55 permit 63 ^65000:3_0:115_0:60$ ip community-list expanded c55 permit 64 ^65000:3_0:116_0:61$ ip community-list expanded c55 permit 65 ^65000:3_0:117_0:62$ ip community-list expanded c55 permit 66 ^65000:3_0:118_0:63$ ip community-list expanded c55 permit 67 ^65000:3_0:119_0:64$ ip community-list expanded c55 permit 68 ^65000:3_0:120_0:65$ ip community-list expanded c55 permit 69 ^65000:3_0:121_0:66$ ip community-list expanded c55 permit 70 ^65000:3_0:122_0:67$ ip community-list expanded c55 permit 71 ^65000:3_0:123_0:68$ ip community-list expanded c55 permit 72 ^65000:3_0:124_0:69$ ip community-list expanded c55 permit 73 ^65000:3_0:125_0:70$ ip community-list expanded c55 permit 74 ^65000:3_0:126_0:71$ ip community-list expanded c55 permit 75 ^65000:3_0:127_0:72$ ip community-list expanded c55 permit 76 ^65000:3_0:128_0:73$ ip community-list expanded c55 permit 77 ^65000:3_0:129_0:74$ ip community-list expanded c55 permit 78 ^65000:3_0:130_0:75$ ip community-list expanded c55 permit 79 ^65000:3_0:131_0:76$ ip community-list expanded c55 permit 80 ^65000:3_0:132_0:77$ ip community-list expanded c55 permit 81 ^65000:3_0:133_0:78$ ip community-list expanded c55 permit 82 ^65000:3_0:134_0:79$ ip community-list expanded c55 permit 83 ^65000:3_0:135_0:80$ ip community-list expanded c55 permit 84 ^65000:3_0:136_0:81$ ip community-list expanded c55 permit 85 ^65000:3_0:137_0:82$ ip community-list expanded c55 permit 86 ^65000:3_0:138_0:83$ ip community-list expanded c55 permit 87 ^65000:3_0:139_0:84$ ip community-list expanded c55 permit 88 ^65000:3_0:140_0:85$ ip community-list expanded c55 permit 89 ^65000:3_0:141_0:86$ ip community-list expanded c55 permit 90 ^65000:3_0:142_0:87$ ip community-list expanded c55 permit 91 ^65000:3_0:143_0:88$ ip community-list expanded c55 permit 92 ^65000:3_0:144_0:89$ ip community-list expanded c55 permit 93 ^65000:3_0:145_0:90$ ip community-list expanded c55 permit 94 ^65000:3_0:146_0:91$ ip community-list expanded c55 permit 95 ^65000:3_0:147_0:92$ ip community-list expanded c55 permit 96 ^65000:3_0:148_0:93$ ip community-list expanded c55 permit 97 ^65000:3_0:149_0:94$ ip community-list expanded c55 permit 98 ^65000:3_0:150_0:95$ ip community-list expanded c55 permit 99 ^65000:3_0:151_0:96$ ip community-list expanded c55 permit 100 ^65000:3_0:152_0:97$ ip community-list expanded c55 permit 101 ^65000:3_0:153_0:98$ ip community-list expanded c55 permit 102 ^65000:3_0:154_0:99$ ip community-list expanded c55 permit 103 ^65000:3_0:155_0:100$ ip community-list expanded c55 permit 104 ^65000:3_0:156_0:101$ ip community-list expanded c55 permit 105 ^65000:3_0:157_0:102$ ip community-list expanded c55 permit 106 ^65000:3_0:158_0:103$ ip community-list expanded c55 permit 107 ^65000:3_0:159_0:104$ ip community-list expanded c55 permit 108 ^65000:3_0:160_0:105$ ip community-list expanded c55 permit 109 ^65000:3_0:161_0:106$ ip community-list expanded c55 permit 110 ^65000:3_0:162_0:107$ ip community-list expanded c55 permit 111 ^65000:3_0:163_0:108$ ip community-list expanded c55 permit 112 ^65000:3_0:164_0:109$ ip community-list expanded c55 permit 113 ^65000:4_0:165_0:3$ ip community-list expanded c55 permit 114 ^65000:3_0:165_0:110$ ip community-list expanded c55 permit 115 ^65000:4_0:166_0:3$ ip community-list expanded c55 permit 116 ^65000:3_0:166_0:111$ ip community-list expanded c55 permit 117 ^65000:4_0:167_0:3$ ip community-list expanded c55 permit 118 ^65000:3_0:167_0:112$ ip community-list expanded c55 permit 119 ^65000:3_0:168_0:113$ ip community-list expanded c55 permit 120 ^65000:3_0:169_0:114$ ip community-list expanded c55 permit 121 ^65000:3_0:170_0:115$ ip community-list expanded c55 permit 122 ^65000:3_0:171_0:116$ ip community-list expanded c55 permit 123 ^65000:3_0:172_0:117$ ip community-list expanded c55 permit 124 ^65000:3_0:173_0:118$ ip community-list expanded c55 permit 125 ^65000:3_0:174_0:119$ ip community-list expanded c55 permit 126 ^65000:3_0:175_0:120$ ip community-list expanded c55 permit 127 ^65000:3_0:176_0:121$ ip community-list expanded c55 permit 128 ^65000:3_0:177_0:122$ ip community-list expanded c55 permit 129 ^65000:3_0:178_0:123$ ip community-list expanded c55 permit 130 ^65000:3_0:179_0:124$ ip community-list expanded c55 permit 131 ^65000:3_0:180_0:125$ ip community-list expanded c55 permit 132 ^65000:3_0:181_0:126$ ip community-list expanded c55 permit 133 ^65000:3_0:182_0:127$ ip community-list expanded c55 permit 134 ^65000:3_0:183_0:128$ ip community-list expanded c55 permit 135 ^65000:3_0:184_0:129$ ip community-list expanded c55 permit 136 ^65000:3_0:185_0:130$ ip community-list expanded c55 permit 137 ^65000:3_0:186_0:131$ ip community-list expanded c55 permit 138 ^65000:3_0:187_0:132$ ip community-list expanded c55 permit 139 ^65000:3_0:188_0:133$ ip community-list expanded c55 permit 140 ^65000:3_0:189_0:134$ ip community-list expanded c55 permit 141 ^65000:3_0:190_0:135$ ip community-list expanded c55 permit 142 ^65000:3_0:191_0:136$ ip community-list expanded c55 permit 143 ^65000:3_0:192_0:137$ ip community-list expanded c55 permit 144 ^65000:3_0:193_0:138$ ip community-list expanded c55 permit 145 ^65000:3_0:194_0:139$ ip community-list expanded c55 permit 146 ^65000:3_0:195_0:140$ ip community-list expanded c55 permit 147 ^65000:3_0:196_0:141$ ip community-list expanded c55 permit 148 ^65000:3_0:197_0:142$ ip community-list expanded c55 permit 149 ^65000:3_0:198_0:143$ ip community-list expanded c55 permit 150 ^65000:3_0:199_0:144$ ip community-list expanded c55 permit 151 ^65000:3_0:200_0:145$ ip community-list expanded c55 permit 152 ^65000:3_0:201_0:146$ ip community-list expanded c55 permit 153 ^65000:3_0:202_0:147$ ip community-list expanded c55 permit 154 ^65000:3_0:203_0:148$ ip community-list expanded c55 permit 155 ^65000:3_0:204_0:149$ ip community-list expanded c55 permit 156 ^65000:3_0:205_0:150$ ip community-list expanded c55 permit 157 ^65000:3_0:206_0:151$ ip community-list expanded c55 permit 158 ^65000:3_0:207_0:152$ ip community-list expanded c55 permit 159 ^65000:3_0:208_0:153$ ip community-list expanded c55 permit 160 ^65000:3_0:209_0:154$ ip community-list expanded c55 permit 161 ^65000:3_0:210_0:155$ ip community-list expanded c55 permit 162 ^65000:3_0:211_0:156$ ip community-list expanded c55 permit 163 ^65000:3_0:212_0:157$ ip community-list expanded c55 permit 164 ^65000:3_0:213_0:158$ ip community-list expanded c55 permit 165 ^65000:3_0:214_0:159$ ip community-list expanded c55 permit 166 ^65000:3_0:215_0:160$ ip community-list expanded c55 permit 167 ^65000:3_0:216_0:161$ ip community-list expanded c55 permit 168 ^65000:3_0:217_0:162$ ip community-list expanded c55 permit 169 ^65000:3_0:218_0:163$ ip community-list expanded c55 permit 170 ^65000:3_0:219_0:164$ ip community-list expanded c55 permit 171 ^65000:4_0:220_0:4$ ip community-list expanded c55 permit 172 ^65000:3_0:220_0:165$ ip community-list expanded c55 permit 173 ^65000:4_0:221_0:4$ ip community-list expanded c55 permit 174 ^65000:3_0:221_0:166$ ip community-list expanded c55 permit 175 ^65000:4_0:222_0:4$ ip community-list expanded c55 permit 176 ^65000:3_0:222_0:167$ ip community-list expanded c55 permit 177 ^65000:4_0:223_0:4$ ip community-list expanded c55 permit 178 ^65000:3_0:223_0:168$ ip community-list expanded c55 permit 179 ^65000:3_0:224_0:169$ ip community-list expanded c55 permit 180 ^65000:3_0:225_0:170$ ip community-list expanded c55 permit 181 ^65000:3_0:226_0:171$ ip community-list expanded c55 permit 182 ^65000:3_0:227_0:172$ ip community-list expanded c55 permit 183 ^65000:3_0:228_0:173$ ip community-list expanded c55 permit 184 ^65000:3_0:229_0:174$ ip community-list expanded c55 permit 185 ^65000:3_0:230_0:175$ ip community-list expanded c55 permit 186 ^65000:3_0:231_0:176$ ip community-list expanded c55 permit 187 ^65000:3_0:232_0:177$ ip community-list expanded c55 permit 188 ^65000:3_0:233_0:178$ ip community-list expanded c55 permit 189 ^65000:3_0:234_0:179$ ip community-list expanded c55 permit 190 ^65000:3_0:235_0:180$ ip community-list expanded c55 permit 191 ^65000:3_0:236_0:181$ ip community-list expanded c55 permit 192 ^65000:3_0:237_0:182$ ip community-list expanded c55 permit 193 ^65000:3_0:238_0:183$ ip community-list expanded c55 permit 194 ^65000:3_0:239_0:184$ ip community-list expanded c55 permit 195 ^65000:3_0:240_0:185$ ip community-list expanded c55 permit 196 ^65000:3_0:241_0:186$ ip community-list expanded c55 permit 197 ^65000:3_0:242_0:187$ ip community-list expanded c55 permit 198 ^65000:3_0:243_0:188$ ip community-list expanded c55 permit 199 ^65000:3_0:244_0:189$ ip community-list expanded c55 permit 200 ^65000:3_0:245_0:190$ ip community-list expanded c55 permit 201 ^65000:3_0:246_0:191$ ip community-list expanded c55 permit 202 ^65000:3_0:247_0:192$ ip community-list expanded c55 permit 203 ^65000:3_0:248_0:193$ ip community-list expanded c55 permit 204 ^65000:3_0:249_0:194$ ip community-list expanded c55 permit 205 ^65000:3_0:250_0:195$ ip community-list expanded c55 permit 206 ^65000:3_0:251_0:196$ ip community-list expanded c55 permit 207 ^65000:3_0:252_0:197$ ip community-list expanded c55 permit 208 ^65000:3_0:253_0:198$ ip community-list expanded c55 permit 209 ^65000:3_0:254_0:199$ ip community-list expanded c55 permit 210 ^65000:3_0:255_0:200$ ip community-list expanded c55 permit 211 ^65000:3_0:256_0:201$ route-map calculator permit 18607 match community 1_1_54 2_1_55 1_2_53 1_3_52 1_4_51 set community 0:55 route-map calculator permit 18608 match community 2_5_11 1_5_50 1_6_49 1_7_48 1_8_47 set community 0:55 route-map calculator permit 18609 match community 1_9_46 1_10_45 1_11_44 1_12_43 1_13_42 set community 0:55 route-map calculator permit 18610 match community 1_14_41 1_15_40 1_16_39 1_17_38 1_18_37 set community 0:55 route-map calculator permit 18611 match community 1_19_36 1_20_35 1_21_34 1_22_33 1_23_32 set community 0:55 route-map calculator permit 18612 match community 1_24_31 1_25_30 1_26_29 1_27_28 c4_55_1 set community 0:55 route-map calculator permit 18613 match community c3_56_1 c3_57_2 c3_58_3 c3_59_4 c3_60_5 set community 0:55 route-map calculator permit 18614 match community c3_61_6 c3_62_7 c3_63_8 c3_64_9 c3_65_10 set community 0:55 route-map calculator permit 18615 match community c3_66_11 c3_67_12 c3_68_13 c3_69_14 c3_70_15 set community 0:55 route-map calculator permit 18616 match community c3_71_16 c3_72_17 c3_73_18 c3_74_19 c3_75_20 set community 0:55 route-map calculator permit 18617 match community c3_76_21 c3_77_22 c3_78_23 c3_79_24 c3_80_25 set community 0:55 route-map calculator permit 18618 match community c3_81_26 c3_82_27 c3_83_28 c3_84_29 c3_85_30 set community 0:55 route-map calculator permit 18619 match community c3_86_31 c3_87_32 c3_88_33 c3_89_34 c3_90_35 set community 0:55 route-map calculator permit 18620 match community c3_91_36 c3_92_37 c3_93_38 c3_94_39 c3_95_40 set community 0:55 route-map calculator permit 18621 match community c3_96_41 c3_97_42 c3_98_43 c3_99_44 c3_100_45 set community 0:55 route-map calculator permit 18622 match community c3_101_46 c3_102_47 c3_103_48 c3_104_49 c3_105_50 set community 0:55 route-map calculator permit 18623 match community c3_106_51 c3_107_52 c3_108_53 c3_109_54 c4_110_2 set community 0:55 route-map calculator permit 18624 match community c3_110_55 c4_111_2 c3_111_56 c3_112_57 c3_113_58 set community 0:55 route-map calculator permit 18625 match community c3_114_59 c3_115_60 c3_116_61 c3_117_62 c3_118_63 set community 0:55 route-map calculator permit 18626 match community c3_119_64 c3_120_65 c3_121_66 c3_122_67 c3_123_68 set community 0:55 route-map calculator permit 18627 match community c3_124_69 c3_125_70 c3_126_71 c3_127_72 c3_128_73 set community 0:55 route-map calculator permit 18628 match community c3_129_74 c3_130_75 c3_131_76 c3_132_77 c3_133_78 set community 0:55 route-map calculator permit 18629 match community c3_134_79 c3_135_80 c3_136_81 c3_137_82 c3_138_83 set community 0:55 route-map calculator permit 18630 match community c3_139_84 c3_140_85 c3_141_86 c3_142_87 c3_143_88 set community 0:55 route-map calculator permit 18631 match community c3_144_89 c3_145_90 c3_146_91 c3_147_92 c3_148_93 set community 0:55 route-map calculator permit 18632 match community c3_149_94 c3_150_95 c3_151_96 c3_152_97 c3_153_98 set community 0:55 route-map calculator permit 18633 match community c3_154_99 c3_155_100 c3_156_101 c3_157_102 c3_158_103 set community 0:55 route-map calculator permit 18634 match community c3_159_104 c3_160_105 c3_161_106 c3_162_107 c3_163_108 set community 0:55 route-map calculator permit 18635 match community c3_164_109 c4_165_3 c3_165_110 c4_166_3 c3_166_111 set community 0:55 route-map calculator permit 18636 match community c4_167_3 c3_167_112 c3_168_113 c3_169_114 c3_170_115 set community 0:55 route-map calculator permit 18637 match community c3_171_116 c3_172_117 c3_173_118 c3_174_119 c3_175_120 set community 0:55 route-map calculator permit 18638 match community c3_176_121 c3_177_122 c3_178_123 c3_179_124 c3_180_125 set community 0:55 route-map calculator permit 18639 match community c3_181_126 c3_182_127 c3_183_128 c3_184_129 c3_185_130 set community 0:55 route-map calculator permit 18640 match community c3_186_131 c3_187_132 c3_188_133 c3_189_134 c3_190_135 set community 0:55 route-map calculator permit 18641 match community c3_191_136 c3_192_137 c3_193_138 c3_194_139 c3_195_140 set community 0:55 route-map calculator permit 18642 match community c3_196_141 c3_197_142 c3_198_143 c3_199_144 c3_200_145 set community 0:55 route-map calculator permit 18643 match community c3_201_146 c3_202_147 c3_203_148 c3_204_149 c3_205_150 set community 0:55 route-map calculator permit 18644 match community c3_206_151 c3_207_152 c3_208_153 c3_209_154 c3_210_155 set community 0:55 route-map calculator permit 18645 match community c3_211_156 c3_212_157 c3_213_158 c3_214_159 c3_215_160 set community 0:55 route-map calculator permit 18646 match community c3_216_161 c3_217_162 c3_218_163 c3_219_164 c4_220_4 set community 0:55 route-map calculator permit 18647 match community c3_220_165 c4_221_4 c3_221_166 c4_222_4 c3_222_167 set community 0:55 route-map calculator permit 18648 match community c4_223_4 c3_223_168 c3_224_169 c3_225_170 c3_226_171 set community 0:55 route-map calculator permit 18649 match community c3_227_172 c3_228_173 c3_229_174 c3_230_175 c3_231_176 set community 0:55 route-map calculator permit 18650 match community c3_232_177 c3_233_178 c3_234_179 c3_235_180 c3_236_181 set community 0:55 route-map calculator permit 18651 match community c3_237_182 c3_238_183 c3_239_184 c3_240_185 c3_241_186 set community 0:55 route-map calculator permit 18652 match community c3_242_187 c3_243_188 c3_244_189 c3_245_190 c3_246_191 set community 0:55 route-map calculator permit 18653 match community c3_247_192 c3_248_193 c3_249_194 c3_250_195 c3_251_196 set community 0:55 route-map calculator permit 18654 match community c3_252_197 c3_253_198 c3_254_199 c3_255_200 c3_256_201 set community 0:55 ip community-list standard 2_94_254 permit 65000:2 0:94 0:254 ip community-list standard 2_127_188 permit 65000:2 0:127 0:188 route-map calculator permit 18655 match community 2_94_254 2_127_188 set community 0:23876 ip community-list standard 2_178_245 permit 65000:2 0:178 0:245 route-map calculator permit 18656 match community 2_178_245 set community 0:43610 ip community-list standard 2_47_251 permit 65000:2 0:47 0:251 route-map calculator permit 18657 match community 2_47_251 set community 0:11797 ip community-list standard 2_217_233 permit 65000:2 0:217 0:233 route-map calculator permit 18658 match community 2_217_233 set community 0:50561 ip community-list standard 2_150_236 permit 65000:2 0:150 0:236 ip community-list standard 2_177_200 permit 65000:2 0:177 0:200 route-map calculator permit 18659 match community 2_150_236 2_177_200 set community 0:35400 ip community-list standard 2_13_186 permit 65000:2 0:13 0:186 ip community-list standard 2_26_93 permit 65000:2 0:26 0:93 ip community-list standard 2_31_78 permit 65000:2 0:31 0:78 ip community-list standard 2_39_62 permit 65000:2 0:39 0:62 route-map calculator permit 18660 match community 2_13_186 2_26_93 2_31_78 2_39_62 set community 0:2418 ip community-list standard 2_250_252 permit 65000:2 0:250 0:252 route-map calculator permit 18661 match community 2_250_252 set community 0:63000 ip community-list standard 2_87_222 permit 65000:2 0:87 0:222 ip community-list standard 2_111_174 permit 65000:2 0:111 0:174 route-map calculator permit 18662 match community 2_87_222 2_111_174 set community 0:19314 ip community-list standard 2_9_185 permit 65000:2 0:9 0:185 ip community-list standard 2_15_111 permit 65000:2 0:15 0:111 ip community-list standard 2_37_45 permit 65000:2 0:37 0:45 route-map calculator permit 18663 match community 2_9_185 2_15_111 2_37_45 set community 0:1665 ip community-list standard 1_127_256 permit 65000:1 0:127 0:256 ip community-list standard 1_128_255 permit 65000:1 0:128 0:255 ip community-list standard 1_129_254 permit 65000:1 0:129 0:254 ip community-list standard 1_130_253 permit 65000:1 0:130 0:253 ip community-list standard 1_131_252 permit 65000:1 0:131 0:252 ip community-list standard 1_132_251 permit 65000:1 0:132 0:251 ip community-list standard 1_133_250 permit 65000:1 0:133 0:250 ip community-list standard 1_134_249 permit 65000:1 0:134 0:249 ip community-list standard 1_135_248 permit 65000:1 0:135 0:248 ip community-list standard 1_136_247 permit 65000:1 0:136 0:247 ip community-list standard 1_137_246 permit 65000:1 0:137 0:246 ip community-list standard 1_138_245 permit 65000:1 0:138 0:245 ip community-list standard 1_139_244 permit 65000:1 0:139 0:244 ip community-list standard 1_140_243 permit 65000:1 0:140 0:243 ip community-list standard 1_141_242 permit 65000:1 0:141 0:242 ip community-list standard 1_142_241 permit 65000:1 0:142 0:241 ip community-list standard 1_143_240 permit 65000:1 0:143 0:240 ip community-list standard 1_144_239 permit 65000:1 0:144 0:239 ip community-list standard 1_145_238 permit 65000:1 0:145 0:238 ip community-list standard 1_146_237 permit 65000:1 0:146 0:237 ip community-list standard 1_147_236 permit 65000:1 0:147 0:236 ip community-list standard 1_148_235 permit 65000:1 0:148 0:235 ip community-list standard 1_149_234 permit 65000:1 0:149 0:234 ip community-list standard 1_150_233 permit 65000:1 0:150 0:233 ip community-list standard 1_151_232 permit 65000:1 0:151 0:232 ip community-list standard 1_152_231 permit 65000:1 0:152 0:231 ip community-list standard 1_153_230 permit 65000:1 0:153 0:230 ip community-list standard 1_154_229 permit 65000:1 0:154 0:229 ip community-list standard 1_155_228 permit 65000:1 0:155 0:228 ip community-list standard 1_156_227 permit 65000:1 0:156 0:227 ip community-list standard 1_157_226 permit 65000:1 0:157 0:226 ip community-list standard 1_158_225 permit 65000:1 0:158 0:225 ip community-list standard 1_159_224 permit 65000:1 0:159 0:224 ip community-list standard 1_160_223 permit 65000:1 0:160 0:223 ip community-list standard 1_161_222 permit 65000:1 0:161 0:222 ip community-list standard 1_162_221 permit 65000:1 0:162 0:221 ip community-list standard 1_163_220 permit 65000:1 0:163 0:220 ip community-list standard 1_164_219 permit 65000:1 0:164 0:219 ip community-list standard 1_165_218 permit 65000:1 0:165 0:218 ip community-list standard 1_166_217 permit 65000:1 0:166 0:217 ip community-list standard 1_167_216 permit 65000:1 0:167 0:216 ip community-list standard 1_168_215 permit 65000:1 0:168 0:215 ip community-list standard 1_169_214 permit 65000:1 0:169 0:214 ip community-list standard 1_170_213 permit 65000:1 0:170 0:213 ip community-list standard 1_171_212 permit 65000:1 0:171 0:212 ip community-list standard 1_172_211 permit 65000:1 0:172 0:211 ip community-list standard 1_173_210 permit 65000:1 0:173 0:210 ip community-list standard 1_174_209 permit 65000:1 0:174 0:209 ip community-list standard 1_175_208 permit 65000:1 0:175 0:208 ip community-list standard 1_176_207 permit 65000:1 0:176 0:207 ip community-list standard 1_177_206 permit 65000:1 0:177 0:206 ip community-list standard 1_178_205 permit 65000:1 0:178 0:205 ip community-list standard 1_179_204 permit 65000:1 0:179 0:204 ip community-list standard 1_180_203 permit 65000:1 0:180 0:203 ip community-list standard 1_181_202 permit 65000:1 0:181 0:202 ip community-list standard 1_182_201 permit 65000:1 0:182 0:201 ip community-list standard 1_183_200 permit 65000:1 0:183 0:200 ip community-list standard 1_184_199 permit 65000:1 0:184 0:199 ip community-list standard 1_185_198 permit 65000:1 0:185 0:198 ip community-list standard 1_186_197 permit 65000:1 0:186 0:197 ip community-list standard 1_187_196 permit 65000:1 0:187 0:196 ip community-list standard 1_188_195 permit 65000:1 0:188 0:195 ip community-list standard 1_189_194 permit 65000:1 0:189 0:194 ip community-list standard 1_190_193 permit 65000:1 0:190 0:193 ip community-list standard 1_191_192 permit 65000:1 0:191 0:192 route-map calculator permit 18664 match community 1_127_256 1_128_255 1_129_254 1_130_253 1_131_252 set community 0:383 route-map calculator permit 18665 match community 1_132_251 1_133_250 1_134_249 1_135_248 1_136_247 set community 0:383 route-map calculator permit 18666 match community 1_137_246 1_138_245 1_139_244 1_140_243 1_141_242 set community 0:383 route-map calculator permit 18667 match community 1_142_241 1_143_240 1_144_239 1_145_238 1_146_237 set community 0:383 route-map calculator permit 18668 match community 1_147_236 1_148_235 1_149_234 1_150_233 1_151_232 set community 0:383 route-map calculator permit 18669 match community 1_152_231 1_153_230 1_154_229 1_155_228 1_156_227 set community 0:383 route-map calculator permit 18670 match community 1_157_226 1_158_225 1_159_224 1_160_223 1_161_222 set community 0:383 route-map calculator permit 18671 match community 1_162_221 1_163_220 1_164_219 1_165_218 1_166_217 set community 0:383 route-map calculator permit 18672 match community 1_167_216 1_168_215 1_169_214 1_170_213 1_171_212 set community 0:383 route-map calculator permit 18673 match community 1_172_211 1_173_210 1_174_209 1_175_208 1_176_207 set community 0:383 route-map calculator permit 18674 match community 1_177_206 1_178_205 1_179_204 1_180_203 1_181_202 set community 0:383 route-map calculator permit 18675 match community 1_182_201 1_183_200 1_184_199 1_185_198 1_186_197 set community 0:383 route-map calculator permit 18676 match community 1_187_196 1_188_195 1_189_194 1_190_193 1_191_192 set community 0:383 ip community-list standard 2_50_248 permit 65000:2 0:50 0:248 ip community-list standard 2_62_200 permit 65000:2 0:62 0:200 ip community-list standard 2_80_155 permit 65000:2 0:80 0:155 ip community-list standard 2_100_124 permit 65000:2 0:100 0:124 route-map calculator permit 18677 match community 2_50_248 2_62_200 2_80_155 2_100_124 set community 0:12400 ip community-list standard 2_193_232 permit 65000:2 0:193 0:232 route-map calculator permit 18678 match community 2_193_232 set community 0:44776 ip community-list standard 2_172_236 permit 65000:2 0:172 0:236 route-map calculator permit 18679 match community 2_172_236 set community 0:40592 ip community-list standard 2_6_157 permit 65000:2 0:6 0:157 route-map calculator permit 18680 match community 2_6_157 set community 0:942 ip community-list standard 2_41_142 permit 65000:2 0:41 0:142 ip community-list standard 2_71_82 permit 65000:2 0:71 0:82 route-map calculator permit 18681 match community 2_41_142 2_71_82 set community 0:5822 ip community-list standard 2_90_177 permit 65000:2 0:90 0:177 ip community-list standard 2_118_135 permit 65000:2 0:118 0:135 route-map calculator permit 18682 match community 2_90_177 2_118_135 set community 0:15930 ip community-list standard 2_16_244 permit 65000:2 0:16 0:244 ip community-list standard 2_32_122 permit 65000:2 0:32 0:122 ip community-list standard 2_61_64 permit 65000:2 0:61 0:64 route-map calculator permit 18683 match community 2_16_244 2_32_122 2_61_64 set community 0:3904 ip community-list standard 1_3_256 permit 65000:1 0:3 0:256 ip community-list standard 1_4_255 permit 65000:1 0:4 0:255 ip community-list standard 1_5_254 permit 65000:1 0:5 0:254 ip community-list standard 1_6_253 permit 65000:1 0:6 0:253 ip community-list standard 2_7_37 permit 65000:2 0:7 0:37 ip community-list standard 1_7_252 permit 65000:1 0:7 0:252 ip community-list standard 1_8_251 permit 65000:1 0:8 0:251 ip community-list standard 1_9_250 permit 65000:1 0:9 0:250 ip community-list standard 1_10_249 permit 65000:1 0:10 0:249 ip community-list standard 1_11_248 permit 65000:1 0:11 0:248 ip community-list standard 1_12_247 permit 65000:1 0:12 0:247 ip community-list standard 1_13_246 permit 65000:1 0:13 0:246 ip community-list standard 1_14_245 permit 65000:1 0:14 0:245 ip community-list standard 1_15_244 permit 65000:1 0:15 0:244 ip community-list standard 1_16_243 permit 65000:1 0:16 0:243 ip community-list standard 1_17_242 permit 65000:1 0:17 0:242 ip community-list standard 1_18_241 permit 65000:1 0:18 0:241 ip community-list standard 1_19_240 permit 65000:1 0:19 0:240 ip community-list standard 1_20_239 permit 65000:1 0:20 0:239 ip community-list standard 1_21_238 permit 65000:1 0:21 0:238 ip community-list standard 1_22_237 permit 65000:1 0:22 0:237 ip community-list standard 1_23_236 permit 65000:1 0:23 0:236 ip community-list standard 1_24_235 permit 65000:1 0:24 0:235 ip community-list standard 1_25_234 permit 65000:1 0:25 0:234 ip community-list standard 1_26_233 permit 65000:1 0:26 0:233 ip community-list standard 1_27_232 permit 65000:1 0:27 0:232 ip community-list standard 1_28_231 permit 65000:1 0:28 0:231 ip community-list standard 1_29_230 permit 65000:1 0:29 0:230 ip community-list standard 1_30_229 permit 65000:1 0:30 0:229 ip community-list standard 1_31_228 permit 65000:1 0:31 0:228 ip community-list standard 1_32_227 permit 65000:1 0:32 0:227 ip community-list standard 1_33_226 permit 65000:1 0:33 0:226 ip community-list standard 1_34_225 permit 65000:1 0:34 0:225 ip community-list standard 1_35_224 permit 65000:1 0:35 0:224 ip community-list standard 1_36_223 permit 65000:1 0:36 0:223 ip community-list standard 1_37_222 permit 65000:1 0:37 0:222 ip community-list standard 1_38_221 permit 65000:1 0:38 0:221 ip community-list standard 1_39_220 permit 65000:1 0:39 0:220 ip community-list standard 1_40_219 permit 65000:1 0:40 0:219 ip community-list standard 1_41_218 permit 65000:1 0:41 0:218 ip community-list standard 1_42_217 permit 65000:1 0:42 0:217 ip community-list standard 1_43_216 permit 65000:1 0:43 0:216 ip community-list standard 1_44_215 permit 65000:1 0:44 0:215 ip community-list standard 1_45_214 permit 65000:1 0:45 0:214 ip community-list standard 1_46_213 permit 65000:1 0:46 0:213 ip community-list standard 1_47_212 permit 65000:1 0:47 0:212 ip community-list standard 1_48_211 permit 65000:1 0:48 0:211 ip community-list standard 1_49_210 permit 65000:1 0:49 0:210 ip community-list standard 1_50_209 permit 65000:1 0:50 0:209 ip community-list standard 1_51_208 permit 65000:1 0:51 0:208 ip community-list standard 1_52_207 permit 65000:1 0:52 0:207 ip community-list standard 1_53_206 permit 65000:1 0:53 0:206 ip community-list standard 1_54_205 permit 65000:1 0:54 0:205 ip community-list standard 1_55_204 permit 65000:1 0:55 0:204 ip community-list standard 1_56_203 permit 65000:1 0:56 0:203 ip community-list standard 1_57_202 permit 65000:1 0:57 0:202 ip community-list standard 1_58_201 permit 65000:1 0:58 0:201 ip community-list standard 1_59_200 permit 65000:1 0:59 0:200 ip community-list standard 1_60_199 permit 65000:1 0:60 0:199 ip community-list standard 1_61_198 permit 65000:1 0:61 0:198 ip community-list standard 1_62_197 permit 65000:1 0:62 0:197 ip community-list standard 1_63_196 permit 65000:1 0:63 0:196 ip community-list standard 1_64_195 permit 65000:1 0:64 0:195 ip community-list standard 1_65_194 permit 65000:1 0:65 0:194 ip community-list standard 1_66_193 permit 65000:1 0:66 0:193 ip community-list standard 1_67_192 permit 65000:1 0:67 0:192 ip community-list standard 1_68_191 permit 65000:1 0:68 0:191 ip community-list standard 1_69_190 permit 65000:1 0:69 0:190 ip community-list standard 1_70_189 permit 65000:1 0:70 0:189 ip community-list standard 1_71_188 permit 65000:1 0:71 0:188 ip community-list standard 1_72_187 permit 65000:1 0:72 0:187 ip community-list standard 1_73_186 permit 65000:1 0:73 0:186 ip community-list standard 1_74_185 permit 65000:1 0:74 0:185 ip community-list standard 1_75_184 permit 65000:1 0:75 0:184 ip community-list standard 1_76_183 permit 65000:1 0:76 0:183 ip community-list standard 1_77_182 permit 65000:1 0:77 0:182 ip community-list standard 1_78_181 permit 65000:1 0:78 0:181 ip community-list standard 1_79_180 permit 65000:1 0:79 0:180 ip community-list standard 1_80_179 permit 65000:1 0:80 0:179 ip community-list standard 1_81_178 permit 65000:1 0:81 0:178 ip community-list standard 1_82_177 permit 65000:1 0:82 0:177 ip community-list standard 1_83_176 permit 65000:1 0:83 0:176 ip community-list standard 1_84_175 permit 65000:1 0:84 0:175 ip community-list standard 1_85_174 permit 65000:1 0:85 0:174 ip community-list standard 1_86_173 permit 65000:1 0:86 0:173 ip community-list standard 1_87_172 permit 65000:1 0:87 0:172 ip community-list standard 1_88_171 permit 65000:1 0:88 0:171 ip community-list standard 1_89_170 permit 65000:1 0:89 0:170 ip community-list standard 1_90_169 permit 65000:1 0:90 0:169 ip community-list standard 1_91_168 permit 65000:1 0:91 0:168 ip community-list standard 1_92_167 permit 65000:1 0:92 0:167 ip community-list standard 1_93_166 permit 65000:1 0:93 0:166 ip community-list standard 1_94_165 permit 65000:1 0:94 0:165 ip community-list standard 1_95_164 permit 65000:1 0:95 0:164 ip community-list standard 1_96_163 permit 65000:1 0:96 0:163 ip community-list standard 1_97_162 permit 65000:1 0:97 0:162 ip community-list standard 1_98_161 permit 65000:1 0:98 0:161 ip community-list standard 1_99_160 permit 65000:1 0:99 0:160 ip community-list standard 1_100_159 permit 65000:1 0:100 0:159 ip community-list standard 1_101_158 permit 65000:1 0:101 0:158 ip community-list standard 1_102_157 permit 65000:1 0:102 0:157 ip community-list standard 1_103_156 permit 65000:1 0:103 0:156 ip community-list standard 1_104_155 permit 65000:1 0:104 0:155 ip community-list standard 1_105_154 permit 65000:1 0:105 0:154 ip community-list standard 1_106_153 permit 65000:1 0:106 0:153 ip community-list standard 1_107_152 permit 65000:1 0:107 0:152 ip community-list standard 1_108_151 permit 65000:1 0:108 0:151 ip community-list standard 1_109_150 permit 65000:1 0:109 0:150 ip community-list standard 1_110_149 permit 65000:1 0:110 0:149 ip community-list standard 1_111_148 permit 65000:1 0:111 0:148 ip community-list standard 1_112_147 permit 65000:1 0:112 0:147 ip community-list standard 1_113_146 permit 65000:1 0:113 0:146 ip community-list standard 1_114_145 permit 65000:1 0:114 0:145 ip community-list standard 1_115_144 permit 65000:1 0:115 0:144 ip community-list standard 1_116_143 permit 65000:1 0:116 0:143 ip community-list standard 1_117_142 permit 65000:1 0:117 0:142 ip community-list standard 1_118_141 permit 65000:1 0:118 0:141 ip community-list standard 1_119_140 permit 65000:1 0:119 0:140 ip community-list standard 1_120_139 permit 65000:1 0:120 0:139 ip community-list standard 1_121_138 permit 65000:1 0:121 0:138 ip community-list standard 1_122_137 permit 65000:1 0:122 0:137 ip community-list standard 1_123_136 permit 65000:1 0:123 0:136 ip community-list standard 1_124_135 permit 65000:1 0:124 0:135 ip community-list standard 1_125_134 permit 65000:1 0:125 0:134 ip community-list standard 1_126_133 permit 65000:1 0:126 0:133 ip community-list standard 1_127_132 permit 65000:1 0:127 0:132 ip community-list standard 1_128_131 permit 65000:1 0:128 0:131 ip community-list standard 1_129_130 permit 65000:1 0:129 0:130 route-map calculator permit 18684 match community 1_3_256 1_4_255 1_5_254 1_6_253 2_7_37 set community 0:259 route-map calculator permit 18685 match community 1_7_252 1_8_251 1_9_250 1_10_249 1_11_248 set community 0:259 route-map calculator permit 18686 match community 1_12_247 1_13_246 1_14_245 1_15_244 1_16_243 set community 0:259 route-map calculator permit 18687 match community 1_17_242 1_18_241 1_19_240 1_20_239 1_21_238 set community 0:259 route-map calculator permit 18688 match community 1_22_237 1_23_236 1_24_235 1_25_234 1_26_233 set community 0:259 route-map calculator permit 18689 match community 1_27_232 1_28_231 1_29_230 1_30_229 1_31_228 set community 0:259 route-map calculator permit 18690 match community 1_32_227 1_33_226 1_34_225 1_35_224 1_36_223 set community 0:259 route-map calculator permit 18691 match community 1_37_222 1_38_221 1_39_220 1_40_219 1_41_218 set community 0:259 route-map calculator permit 18692 match community 1_42_217 1_43_216 1_44_215 1_45_214 1_46_213 set community 0:259 route-map calculator permit 18693 match community 1_47_212 1_48_211 1_49_210 1_50_209 1_51_208 set community 0:259 route-map calculator permit 18694 match community 1_52_207 1_53_206 1_54_205 1_55_204 1_56_203 set community 0:259 route-map calculator permit 18695 match community 1_57_202 1_58_201 1_59_200 1_60_199 1_61_198 set community 0:259 route-map calculator permit 18696 match community 1_62_197 1_63_196 1_64_195 1_65_194 1_66_193 set community 0:259 route-map calculator permit 18697 match community 1_67_192 1_68_191 1_69_190 1_70_189 1_71_188 set community 0:259 route-map calculator permit 18698 match community 1_72_187 1_73_186 1_74_185 1_75_184 1_76_183 set community 0:259 route-map calculator permit 18699 match community 1_77_182 1_78_181 1_79_180 1_80_179 1_81_178 set community 0:259 route-map calculator permit 18700 match community 1_82_177 1_83_176 1_84_175 1_85_174 1_86_173 set community 0:259 route-map calculator permit 18701 match community 1_87_172 1_88_171 1_89_170 1_90_169 1_91_168 set community 0:259 route-map calculator permit 18702 match community 1_92_167 1_93_166 1_94_165 1_95_164 1_96_163 set community 0:259 route-map calculator permit 18703 match community 1_97_162 1_98_161 1_99_160 1_100_159 1_101_158 set community 0:259 route-map calculator permit 18704 match community 1_102_157 1_103_156 1_104_155 1_105_154 1_106_153 set community 0:259 route-map calculator permit 18705 match community 1_107_152 1_108_151 1_109_150 1_110_149 1_111_148 set community 0:259 route-map calculator permit 18706 match community 1_112_147 1_113_146 1_114_145 1_115_144 1_116_143 set community 0:259 route-map calculator permit 18707 match community 1_117_142 1_118_141 1_119_140 1_120_139 1_121_138 set community 0:259 route-map calculator permit 18708 match community 1_122_137 1_123_136 1_124_135 1_125_134 1_126_133 set community 0:259 route-map calculator permit 18709 match community 1_127_132 1_128_131 1_129_130 set community 0:259 ip community-list standard 2_139_194 permit 65000:2 0:139 0:194 route-map calculator permit 18710 match community 2_139_194 set community 0:26966 ip community-list standard 2_237_243 permit 65000:2 0:237 0:243 route-map calculator permit 18711 match community 2_237_243 set community 0:57591 ip community-list standard 2_56_206 permit 65000:2 0:56 0:206 ip community-list standard 2_103_112 permit 65000:2 0:103 0:112 route-map calculator permit 18712 match community 2_56_206 2_103_112 set community 0:11536 ip community-list standard 2_99_212 permit 65000:2 0:99 0:212 ip community-list standard 2_106_198 permit 65000:2 0:106 0:198 ip community-list standard 2_132_159 permit 65000:2 0:132 0:159 route-map calculator permit 18713 match community 2_99_212 2_106_198 2_132_159 set community 0:20988 ip community-list standard 2_47_83 permit 65000:2 0:47 0:83 route-map calculator permit 18714 match community 2_47_83 set community 0:3901 ip community-list standard 2_101_107 permit 65000:2 0:101 0:107 route-map calculator permit 18715 match community 2_101_107 set community 0:10807 ip community-list standard 2_166_235 permit 65000:2 0:166 0:235 route-map calculator permit 18716 match community 2_166_235 set community 0:39010 ip community-list standard 2_95_139 permit 65000:2 0:95 0:139 route-map calculator permit 18717 match community 2_95_139 set community 0:13205 ip community-list standard 2_27_163 permit 65000:2 0:27 0:163 route-map calculator permit 18718 match community 2_27_163 set community 0:4401 ip community-list standard 2_188_201 permit 65000:2 0:188 0:201 route-map calculator permit 18719 match community 2_188_201 set community 0:37788 ip community-list standard 2_123_248 permit 65000:2 0:123 0:248 ip community-list standard 2_124_246 permit 65000:2 0:124 0:246 ip community-list standard 2_164_186 permit 65000:2 0:164 0:186 route-map calculator permit 18720 match community 2_123_248 2_124_246 2_164_186 set community 0:30504 ip community-list standard 2_10_214 permit 65000:2 0:10 0:214 ip community-list standard 2_20_107 permit 65000:2 0:20 0:107 route-map calculator permit 18721 match community 2_10_214 2_20_107 set community 0:2140 ip community-list standard 2_78_221 permit 65000:2 0:78 0:221 ip community-list standard 2_102_169 permit 65000:2 0:102 0:169 route-map calculator permit 18722 match community 2_78_221 2_102_169 set community 0:17238 ip community-list standard 2_6_226 permit 65000:2 0:6 0:226 ip community-list standard 2_12_113 permit 65000:2 0:12 0:113 route-map calculator permit 18723 match community 2_6_226 2_12_113 set community 0:1356 ip community-list standard 2_158_158 permit 65000:2 0:158 0:158 route-map calculator permit 18724 match community 2_158_158 set community 0:24964 ip community-list standard 2_9_252 permit 65000:2 0:9 0:252 ip community-list standard 2_12_189 permit 65000:2 0:12 0:189 ip community-list standard 2_14_162 permit 65000:2 0:14 0:162 ip community-list standard 2_18_126 permit 65000:2 0:18 0:126 ip community-list standard 2_21_108 permit 65000:2 0:21 0:108 ip community-list standard 2_27_84 permit 65000:2 0:27 0:84 ip community-list standard 2_28_81 permit 65000:2 0:28 0:81 ip community-list standard 2_36_63 permit 65000:2 0:36 0:63 ip community-list standard 2_42_54 permit 65000:2 0:42 0:54 route-map calculator permit 18725 match community 2_9_252 2_12_189 2_14_162 2_18_126 2_21_108 set community 0:2268 route-map calculator permit 18726 match community 2_27_84 2_28_81 2_36_63 2_42_54 set community 0:2268 ip community-list standard 2_74_157 permit 65000:2 0:74 0:157 route-map calculator permit 18727 match community 2_74_157 set community 0:11618 ip community-list standard 2_94_188 permit 65000:2 0:94 0:188 route-map calculator permit 18728 match community 2_94_188 set community 0:17672 ip community-list standard 2_90_163 permit 65000:2 0:90 0:163 route-map calculator permit 18729 match community 2_90_163 set community 0:14670 ip community-list standard 2_55_209 permit 65000:2 0:55 0:209 ip community-list standard 2_95_121 permit 65000:2 0:95 0:121 route-map calculator permit 18730 match community 2_55_209 2_95_121 set community 0:11495 ip community-list standard 2_177_241 permit 65000:2 0:177 0:241 route-map calculator permit 18731 match community 2_177_241 set community 0:42657 ip community-list standard 2_204_222 permit 65000:2 0:204 0:222 route-map calculator permit 18732 match community 2_204_222 set community 0:45288 ip community-list standard 2_170_248 permit 65000:2 0:170 0:248 route-map calculator permit 18733 match community 2_170_248 set community 0:42160 ip community-list standard 2_75_239 permit 65000:2 0:75 0:239 route-map calculator permit 18734 match community 2_75_239 set community 0:17925 ip community-list standard 2_105_199 permit 65000:2 0:105 0:199 route-map calculator permit 18735 match community 2_105_199 set community 0:20895 ip community-list standard 2_122_255 permit 65000:2 0:122 0:255 ip community-list standard 2_170_183 permit 65000:2 0:170 0:183 route-map calculator permit 18736 match community 2_122_255 2_170_183 set community 0:31110 ip community-list standard 2_70_249 permit 65000:2 0:70 0:249 ip community-list standard 2_83_210 permit 65000:2 0:83 0:210 ip community-list standard 2_105_166 permit 65000:2 0:105 0:166 route-map calculator permit 18737 match community 2_70_249 2_83_210 2_105_166 set community 0:17430 ip community-list standard 2_185_190 permit 65000:2 0:185 0:190 route-map calculator permit 18738 match community 2_185_190 set community 0:35150 ip community-list standard 2_27_193 permit 65000:2 0:27 0:193 route-map calculator permit 18739 match community 2_27_193 set community 0:5211 ip community-list standard 2_190_252 permit 65000:2 0:190 0:252 ip community-list standard 2_210_228 permit 65000:2 0:210 0:228 route-map calculator permit 18740 match community 2_190_252 2_210_228 set community 0:47880 ip community-list standard 2_138_255 permit 65000:2 0:138 0:255 ip community-list standard 2_153_230 permit 65000:2 0:153 0:230 ip community-list standard 2_170_207 permit 65000:2 0:170 0:207 route-map calculator permit 18741 match community 2_138_255 2_153_230 2_170_207 set community 0:35190 ip community-list standard 2_101_113 permit 65000:2 0:101 0:113 route-map calculator permit 18742 match community 2_101_113 set community 0:11413 ip community-list standard 2_44_167 permit 65000:2 0:44 0:167 route-map calculator permit 18743 match community 2_44_167 set community 0:7348 ip community-list standard 2_33_188 permit 65000:2 0:33 0:188 ip community-list standard 2_44_141 permit 65000:2 0:44 0:141 ip community-list standard 2_47_132 permit 65000:2 0:47 0:132 ip community-list standard 2_66_94 permit 65000:2 0:66 0:94 route-map calculator permit 18744 match community 2_33_188 2_44_141 2_47_132 2_66_94 set community 0:6204 ip community-list standard 2_139_176 permit 65000:2 0:139 0:176 route-map calculator permit 18745 match community 2_139_176 set community 0:24464 ip community-list standard 2_107_251 permit 65000:2 0:107 0:251 route-map calculator permit 18746 match community 2_107_251 set community 0:26857 ip community-list standard 2_199_207 permit 65000:2 0:199 0:207 route-map calculator permit 18747 match community 2_199_207 set community 0:41193 ip community-list standard 2_91_195 permit 65000:2 0:91 0:195 ip community-list standard 2_105_169 permit 65000:2 0:105 0:169 route-map calculator permit 18748 match community 2_91_195 2_105_169 set community 0:17745 ip community-list standard 2_175_253 permit 65000:2 0:175 0:253 route-map calculator permit 18749 match community 2_175_253 set community 0:44275 ip community-list standard 2_200_212 permit 65000:2 0:200 0:212 route-map calculator permit 18750 match community 2_200_212 set community 0:42400 ip community-list standard 2_17_161 permit 65000:2 0:17 0:161 ip community-list standard 2_23_119 permit 65000:2 0:23 0:119 route-map calculator permit 18751 match community 2_17_161 2_23_119 set community 0:2737 ip community-list standard 2_107_213 permit 65000:2 0:107 0:213 route-map calculator permit 18752 match community 2_107_213 set community 0:22791 ip community-list standard 2_188_222 permit 65000:2 0:188 0:222 route-map calculator permit 18753 match community 2_188_222 set community 0:41736 ip community-list standard 2_154_214 permit 65000:2 0:154 0:214 route-map calculator permit 18754 match community 2_154_214 set community 0:32956 ip community-list standard 2_76_200 permit 65000:2 0:76 0:200 ip community-list standard 2_80_190 permit 65000:2 0:80 0:190 ip community-list standard 2_95_160 permit 65000:2 0:95 0:160 ip community-list standard 2_100_152 permit 65000:2 0:100 0:152 route-map calculator permit 18755 match community 2_76_200 2_80_190 2_95_160 2_100_152 set community 0:15200 ip community-list standard 2_107_230 permit 65000:2 0:107 0:230 ip community-list standard 2_115_214 permit 65000:2 0:115 0:214 route-map calculator permit 18756 match community 2_107_230 2_115_214 set community 0:24610 ip community-list standard 2_162_173 permit 65000:2 0:162 0:173 route-map calculator permit 18757 match community 2_162_173 set community 0:28026 ip community-list standard 2_163_253 permit 65000:2 0:163 0:253 route-map calculator permit 18758 match community 2_163_253 set community 0:41239 ip community-list standard 2_87_212 permit 65000:2 0:87 0:212 ip community-list standard 2_106_174 permit 65000:2 0:106 0:174 ip community-list standard 2_116_159 permit 65000:2 0:116 0:159 route-map calculator permit 18759 match community 2_87_212 2_106_174 2_116_159 set community 0:18444 ip community-list standard 2_141_199 permit 65000:2 0:141 0:199 route-map calculator permit 18760 match community 2_141_199 set community 0:28059 ip community-list standard 2_129_246 permit 65000:2 0:129 0:246 route-map calculator permit 18761 match community 2_129_246 set community 0:31734 ip community-list standard 2_206_218 permit 65000:2 0:206 0:218 route-map calculator permit 18762 match community 2_206_218 set community 0:44908 ip community-list standard 2_6_214 permit 65000:2 0:6 0:214 ip community-list standard 2_12_107 permit 65000:2 0:12 0:107 route-map calculator permit 18763 match community 2_6_214 2_12_107 set community 0:1284 ip community-list standard 2_83_197 permit 65000:2 0:83 0:197 route-map calculator permit 18764 match community 2_83_197 set community 0:16351 ip community-list standard 2_161_166 permit 65000:2 0:161 0:166 route-map calculator permit 18765 match community 2_161_166 set community 0:26726 ip community-list standard 1_1_147 permit 65000:1 0:1 0:147 ip community-list standard 2_1_148 permit 65000:2 0:1 0:148 ip community-list standard 2_2_74 permit 65000:2 0:2 0:74 ip community-list standard 1_2_146 permit 65000:1 0:2 0:146 ip community-list standard 1_3_145 permit 65000:1 0:3 0:145 ip community-list standard 2_4_37 permit 65000:2 0:4 0:37 ip community-list standard 1_4_144 permit 65000:1 0:4 0:144 ip community-list standard 1_5_143 permit 65000:1 0:5 0:143 ip community-list standard 1_6_142 permit 65000:1 0:6 0:142 ip community-list standard 1_7_141 permit 65000:1 0:7 0:141 ip community-list standard 1_8_140 permit 65000:1 0:8 0:140 ip community-list standard 1_9_139 permit 65000:1 0:9 0:139 ip community-list standard 1_10_138 permit 65000:1 0:10 0:138 ip community-list standard 1_11_137 permit 65000:1 0:11 0:137 ip community-list standard 1_12_136 permit 65000:1 0:12 0:136 ip community-list standard 1_13_135 permit 65000:1 0:13 0:135 ip community-list standard 1_14_134 permit 65000:1 0:14 0:134 ip community-list standard 1_15_133 permit 65000:1 0:15 0:133 ip community-list standard 1_16_132 permit 65000:1 0:16 0:132 ip community-list standard 1_17_131 permit 65000:1 0:17 0:131 ip community-list standard 1_18_130 permit 65000:1 0:18 0:130 ip community-list standard 1_19_129 permit 65000:1 0:19 0:129 ip community-list standard 1_20_128 permit 65000:1 0:20 0:128 ip community-list standard 1_21_127 permit 65000:1 0:21 0:127 ip community-list standard 1_22_126 permit 65000:1 0:22 0:126 ip community-list standard 1_23_125 permit 65000:1 0:23 0:125 ip community-list standard 1_24_124 permit 65000:1 0:24 0:124 ip community-list standard 1_25_123 permit 65000:1 0:25 0:123 ip community-list standard 1_26_122 permit 65000:1 0:26 0:122 ip community-list standard 1_27_121 permit 65000:1 0:27 0:121 ip community-list standard 1_28_120 permit 65000:1 0:28 0:120 ip community-list standard 1_29_119 permit 65000:1 0:29 0:119 ip community-list standard 1_30_118 permit 65000:1 0:30 0:118 ip community-list standard 1_31_117 permit 65000:1 0:31 0:117 ip community-list standard 1_32_116 permit 65000:1 0:32 0:116 ip community-list standard 1_33_115 permit 65000:1 0:33 0:115 ip community-list standard 1_34_114 permit 65000:1 0:34 0:114 ip community-list standard 1_35_113 permit 65000:1 0:35 0:113 ip community-list standard 1_36_112 permit 65000:1 0:36 0:112 ip community-list standard 1_37_111 permit 65000:1 0:37 0:111 ip community-list standard 1_38_110 permit 65000:1 0:38 0:110 ip community-list standard 1_39_109 permit 65000:1 0:39 0:109 ip community-list standard 1_40_108 permit 65000:1 0:40 0:108 ip community-list standard 1_41_107 permit 65000:1 0:41 0:107 ip community-list standard 1_42_106 permit 65000:1 0:42 0:106 ip community-list standard 1_43_105 permit 65000:1 0:43 0:105 ip community-list standard 1_44_104 permit 65000:1 0:44 0:104 ip community-list standard 1_45_103 permit 65000:1 0:45 0:103 ip community-list standard 1_46_102 permit 65000:1 0:46 0:102 ip community-list standard 1_47_101 permit 65000:1 0:47 0:101 ip community-list standard 1_48_100 permit 65000:1 0:48 0:100 ip community-list standard 1_49_99 permit 65000:1 0:49 0:99 ip community-list standard 1_50_98 permit 65000:1 0:50 0:98 ip community-list standard 1_51_97 permit 65000:1 0:51 0:97 ip community-list standard 1_52_96 permit 65000:1 0:52 0:96 ip community-list standard 1_53_95 permit 65000:1 0:53 0:95 ip community-list standard 1_54_94 permit 65000:1 0:54 0:94 ip community-list standard 1_55_93 permit 65000:1 0:55 0:93 ip community-list standard 1_56_92 permit 65000:1 0:56 0:92 ip community-list standard 1_57_91 permit 65000:1 0:57 0:91 ip community-list standard 1_58_90 permit 65000:1 0:58 0:90 ip community-list standard 1_59_89 permit 65000:1 0:59 0:89 ip community-list standard 1_60_88 permit 65000:1 0:60 0:88 ip community-list standard 1_61_87 permit 65000:1 0:61 0:87 ip community-list standard 1_62_86 permit 65000:1 0:62 0:86 ip community-list standard 1_63_85 permit 65000:1 0:63 0:85 ip community-list standard 1_64_84 permit 65000:1 0:64 0:84 ip community-list standard 1_65_83 permit 65000:1 0:65 0:83 ip community-list standard 1_66_82 permit 65000:1 0:66 0:82 ip community-list standard 1_67_81 permit 65000:1 0:67 0:81 ip community-list standard 1_68_80 permit 65000:1 0:68 0:80 ip community-list standard 1_69_79 permit 65000:1 0:69 0:79 ip community-list standard 1_70_78 permit 65000:1 0:70 0:78 ip community-list standard 1_71_77 permit 65000:1 0:71 0:77 ip community-list standard 1_72_76 permit 65000:1 0:72 0:76 ip community-list standard 1_73_75 permit 65000:1 0:73 0:75 ip community-list standard 1_74_74 permit 65000:1 0:74 0:74 ip community-list expanded c148 permit 1 ^65000:4_0:148_0:1$ ip community-list expanded c148 permit 2 ^65000:3_0:149_0:1$ ip community-list expanded c148 permit 3 ^65000:3_0:150_0:2$ ip community-list expanded c148 permit 4 ^65000:3_0:151_0:3$ ip community-list expanded c148 permit 5 ^65000:3_0:152_0:4$ ip community-list expanded c148 permit 6 ^65000:3_0:153_0:5$ ip community-list expanded c148 permit 7 ^65000:3_0:154_0:6$ ip community-list expanded c148 permit 8 ^65000:3_0:155_0:7$ ip community-list expanded c148 permit 9 ^65000:3_0:156_0:8$ ip community-list expanded c148 permit 10 ^65000:3_0:157_0:9$ ip community-list expanded c148 permit 11 ^65000:3_0:158_0:10$ ip community-list expanded c148 permit 12 ^65000:3_0:159_0:11$ ip community-list expanded c148 permit 13 ^65000:3_0:160_0:12$ ip community-list expanded c148 permit 14 ^65000:3_0:161_0:13$ ip community-list expanded c148 permit 15 ^65000:3_0:162_0:14$ ip community-list expanded c148 permit 16 ^65000:3_0:163_0:15$ ip community-list expanded c148 permit 17 ^65000:3_0:164_0:16$ ip community-list expanded c148 permit 18 ^65000:3_0:165_0:17$ ip community-list expanded c148 permit 19 ^65000:3_0:166_0:18$ ip community-list expanded c148 permit 20 ^65000:3_0:167_0:19$ ip community-list expanded c148 permit 21 ^65000:3_0:168_0:20$ ip community-list expanded c148 permit 22 ^65000:3_0:169_0:21$ ip community-list expanded c148 permit 23 ^65000:3_0:170_0:22$ ip community-list expanded c148 permit 24 ^65000:3_0:171_0:23$ ip community-list expanded c148 permit 25 ^65000:3_0:172_0:24$ ip community-list expanded c148 permit 26 ^65000:3_0:173_0:25$ ip community-list expanded c148 permit 27 ^65000:3_0:174_0:26$ ip community-list expanded c148 permit 28 ^65000:3_0:175_0:27$ ip community-list expanded c148 permit 29 ^65000:3_0:176_0:28$ ip community-list expanded c148 permit 30 ^65000:3_0:177_0:29$ ip community-list expanded c148 permit 31 ^65000:3_0:178_0:30$ ip community-list expanded c148 permit 32 ^65000:3_0:179_0:31$ ip community-list expanded c148 permit 33 ^65000:3_0:180_0:32$ ip community-list expanded c148 permit 34 ^65000:3_0:181_0:33$ ip community-list expanded c148 permit 35 ^65000:3_0:182_0:34$ ip community-list expanded c148 permit 36 ^65000:3_0:183_0:35$ ip community-list expanded c148 permit 37 ^65000:3_0:184_0:36$ ip community-list expanded c148 permit 38 ^65000:3_0:185_0:37$ ip community-list expanded c148 permit 39 ^65000:3_0:186_0:38$ ip community-list expanded c148 permit 40 ^65000:3_0:187_0:39$ ip community-list expanded c148 permit 41 ^65000:3_0:188_0:40$ ip community-list expanded c148 permit 42 ^65000:3_0:189_0:41$ ip community-list expanded c148 permit 43 ^65000:3_0:190_0:42$ ip community-list expanded c148 permit 44 ^65000:3_0:191_0:43$ ip community-list expanded c148 permit 45 ^65000:3_0:192_0:44$ ip community-list expanded c148 permit 46 ^65000:3_0:193_0:45$ ip community-list expanded c148 permit 47 ^65000:3_0:194_0:46$ ip community-list expanded c148 permit 48 ^65000:3_0:195_0:47$ ip community-list expanded c148 permit 49 ^65000:3_0:196_0:48$ ip community-list expanded c148 permit 50 ^65000:3_0:197_0:49$ ip community-list expanded c148 permit 51 ^65000:3_0:198_0:50$ ip community-list expanded c148 permit 52 ^65000:3_0:199_0:51$ ip community-list expanded c148 permit 53 ^65000:3_0:200_0:52$ ip community-list expanded c148 permit 54 ^65000:3_0:201_0:53$ ip community-list expanded c148 permit 55 ^65000:3_0:202_0:54$ ip community-list expanded c148 permit 56 ^65000:3_0:203_0:55$ ip community-list expanded c148 permit 57 ^65000:3_0:204_0:56$ ip community-list expanded c148 permit 58 ^65000:3_0:205_0:57$ ip community-list expanded c148 permit 59 ^65000:3_0:206_0:58$ ip community-list expanded c148 permit 60 ^65000:3_0:207_0:59$ ip community-list expanded c148 permit 61 ^65000:3_0:208_0:60$ ip community-list expanded c148 permit 62 ^65000:3_0:209_0:61$ ip community-list expanded c148 permit 63 ^65000:3_0:210_0:62$ ip community-list expanded c148 permit 64 ^65000:3_0:211_0:63$ ip community-list expanded c148 permit 65 ^65000:3_0:212_0:64$ ip community-list expanded c148 permit 66 ^65000:3_0:213_0:65$ ip community-list expanded c148 permit 67 ^65000:3_0:214_0:66$ ip community-list expanded c148 permit 68 ^65000:3_0:215_0:67$ ip community-list expanded c148 permit 69 ^65000:3_0:216_0:68$ ip community-list expanded c148 permit 70 ^65000:3_0:217_0:69$ ip community-list expanded c148 permit 71 ^65000:3_0:218_0:70$ ip community-list expanded c148 permit 72 ^65000:3_0:219_0:71$ ip community-list expanded c148 permit 73 ^65000:3_0:220_0:72$ ip community-list expanded c148 permit 74 ^65000:3_0:221_0:73$ ip community-list expanded c148 permit 75 ^65000:3_0:222_0:74$ ip community-list expanded c148 permit 76 ^65000:3_0:223_0:75$ ip community-list expanded c148 permit 77 ^65000:3_0:224_0:76$ ip community-list expanded c148 permit 78 ^65000:3_0:225_0:77$ ip community-list expanded c148 permit 79 ^65000:3_0:226_0:78$ ip community-list expanded c148 permit 80 ^65000:3_0:227_0:79$ ip community-list expanded c148 permit 81 ^65000:3_0:228_0:80$ ip community-list expanded c148 permit 82 ^65000:3_0:229_0:81$ ip community-list expanded c148 permit 83 ^65000:3_0:230_0:82$ ip community-list expanded c148 permit 84 ^65000:3_0:231_0:83$ ip community-list expanded c148 permit 85 ^65000:3_0:232_0:84$ ip community-list expanded c148 permit 86 ^65000:3_0:233_0:85$ ip community-list expanded c148 permit 87 ^65000:3_0:234_0:86$ ip community-list expanded c148 permit 88 ^65000:3_0:235_0:87$ ip community-list expanded c148 permit 89 ^65000:3_0:236_0:88$ ip community-list expanded c148 permit 90 ^65000:3_0:237_0:89$ ip community-list expanded c148 permit 91 ^65000:3_0:238_0:90$ ip community-list expanded c148 permit 92 ^65000:3_0:239_0:91$ ip community-list expanded c148 permit 93 ^65000:3_0:240_0:92$ ip community-list expanded c148 permit 94 ^65000:3_0:241_0:93$ ip community-list expanded c148 permit 95 ^65000:3_0:242_0:94$ ip community-list expanded c148 permit 96 ^65000:3_0:243_0:95$ ip community-list expanded c148 permit 97 ^65000:3_0:244_0:96$ ip community-list expanded c148 permit 98 ^65000:3_0:245_0:97$ ip community-list expanded c148 permit 99 ^65000:3_0:246_0:98$ ip community-list expanded c148 permit 100 ^65000:3_0:247_0:99$ ip community-list expanded c148 permit 101 ^65000:3_0:248_0:100$ ip community-list expanded c148 permit 102 ^65000:3_0:249_0:101$ ip community-list expanded c148 permit 103 ^65000:3_0:250_0:102$ ip community-list expanded c148 permit 104 ^65000:3_0:251_0:103$ ip community-list expanded c148 permit 105 ^65000:3_0:252_0:104$ ip community-list expanded c148 permit 106 ^65000:3_0:253_0:105$ ip community-list expanded c148 permit 107 ^65000:3_0:254_0:106$ ip community-list expanded c148 permit 108 ^65000:3_0:255_0:107$ ip community-list expanded c148 permit 109 ^65000:3_0:256_0:108$ route-map calculator permit 18766 match community 1_1_147 2_1_148 2_2_74 1_2_146 1_3_145 set community 0:148 route-map calculator permit 18767 match community 2_4_37 1_4_144 1_5_143 1_6_142 1_7_141 set community 0:148 route-map calculator permit 18768 match community 1_8_140 1_9_139 1_10_138 1_11_137 1_12_136 set community 0:148 route-map calculator permit 18769 match community 1_13_135 1_14_134 1_15_133 1_16_132 1_17_131 set community 0:148 route-map calculator permit 18770 match community 1_18_130 1_19_129 1_20_128 1_21_127 1_22_126 set community 0:148 route-map calculator permit 18771 match community 1_23_125 1_24_124 1_25_123 1_26_122 1_27_121 set community 0:148 route-map calculator permit 18772 match community 1_28_120 1_29_119 1_30_118 1_31_117 1_32_116 set community 0:148 route-map calculator permit 18773 match community 1_33_115 1_34_114 1_35_113 1_36_112 1_37_111 set community 0:148 route-map calculator permit 18774 match community 1_38_110 1_39_109 1_40_108 1_41_107 1_42_106 set community 0:148 route-map calculator permit 18775 match community 1_43_105 1_44_104 1_45_103 1_46_102 1_47_101 set community 0:148 route-map calculator permit 18776 match community 1_48_100 1_49_99 1_50_98 1_51_97 1_52_96 set community 0:148 route-map calculator permit 18777 match community 1_53_95 1_54_94 1_55_93 1_56_92 1_57_91 set community 0:148 route-map calculator permit 18778 match community 1_58_90 1_59_89 1_60_88 1_61_87 1_62_86 set community 0:148 route-map calculator permit 18779 match community 1_63_85 1_64_84 1_65_83 1_66_82 1_67_81 set community 0:148 route-map calculator permit 18780 match community 1_68_80 1_69_79 1_70_78 1_71_77 1_72_76 set community 0:148 route-map calculator permit 18781 match community 1_73_75 1_74_74 c4_148_1 c3_149_1 c3_150_2 set community 0:148 route-map calculator permit 18782 match community c3_151_3 c3_152_4 c3_153_5 c3_154_6 c3_155_7 set community 0:148 route-map calculator permit 18783 match community c3_156_8 c3_157_9 c3_158_10 c3_159_11 c3_160_12 set community 0:148 route-map calculator permit 18784 match community c3_161_13 c3_162_14 c3_163_15 c3_164_16 c3_165_17 set community 0:148 route-map calculator permit 18785 match community c3_166_18 c3_167_19 c3_168_20 c3_169_21 c3_170_22 set community 0:148 route-map calculator permit 18786 match community c3_171_23 c3_172_24 c3_173_25 c3_174_26 c3_175_27 set community 0:148 route-map calculator permit 18787 match community c3_176_28 c3_177_29 c3_178_30 c3_179_31 c3_180_32 set community 0:148 route-map calculator permit 18788 match community c3_181_33 c3_182_34 c3_183_35 c3_184_36 c3_185_37 set community 0:148 route-map calculator permit 18789 match community c3_186_38 c3_187_39 c3_188_40 c3_189_41 c3_190_42 set community 0:148 route-map calculator permit 18790 match community c3_191_43 c3_192_44 c3_193_45 c3_194_46 c3_195_47 set community 0:148 route-map calculator permit 18791 match community c3_196_48 c3_197_49 c3_198_50 c3_199_51 c3_200_52 set community 0:148 route-map calculator permit 18792 match community c3_201_53 c3_202_54 c3_203_55 c3_204_56 c3_205_57 set community 0:148 route-map calculator permit 18793 match community c3_206_58 c3_207_59 c3_208_60 c3_209_61 c3_210_62 set community 0:148 route-map calculator permit 18794 match community c3_211_63 c3_212_64 c3_213_65 c3_214_66 c3_215_67 set community 0:148 route-map calculator permit 18795 match community c3_216_68 c3_217_69 c3_218_70 c3_219_71 c3_220_72 set community 0:148 route-map calculator permit 18796 match community c3_221_73 c3_222_74 c3_223_75 c3_224_76 c3_225_77 set community 0:148 route-map calculator permit 18797 match community c3_226_78 c3_227_79 c3_228_80 c3_229_81 c3_230_82 set community 0:148 route-map calculator permit 18798 match community c3_231_83 c3_232_84 c3_233_85 c3_234_86 c3_235_87 set community 0:148 route-map calculator permit 18799 match community c3_236_88 c3_237_89 c3_238_90 c3_239_91 c3_240_92 set community 0:148 route-map calculator permit 18800 match community c3_241_93 c3_242_94 c3_243_95 c3_244_96 c3_245_97 set community 0:148 route-map calculator permit 18801 match community c3_246_98 c3_247_99 c3_248_100 c3_249_101 c3_250_102 set community 0:148 route-map calculator permit 18802 match community c3_251_103 c3_252_104 c3_253_105 c3_254_106 c3_255_107 set community 0:148 route-map calculator permit 18803 match community c3_256_108 set community 0:148 ip community-list standard 2_232_239 permit 65000:2 0:232 0:239 route-map calculator permit 18804 match community 2_232_239 set community 0:55448 ip community-list standard 2_130_185 permit 65000:2 0:130 0:185 route-map calculator permit 18805 match community 2_130_185 set community 0:24050 ip community-list standard 2_150_218 permit 65000:2 0:150 0:218 route-map calculator permit 18806 match community 2_150_218 set community 0:32700 ip community-list standard 2_222_252 permit 65000:2 0:222 0:252 route-map calculator permit 18807 match community 2_222_252 set community 0:55944 ip community-list standard 2_18_218 permit 65000:2 0:18 0:218 ip community-list standard 2_36_109 permit 65000:2 0:36 0:109 route-map calculator permit 18808 match community 2_18_218 2_36_109 set community 0:3924 ip community-list standard 2_166_209 permit 65000:2 0:166 0:209 route-map calculator permit 18809 match community 2_166_209 set community 0:34694 ip community-list standard 2_6_227 permit 65000:2 0:6 0:227 route-map calculator permit 18810 match community 2_6_227 set community 0:1362 ip community-list standard 2_219_228 permit 65000:2 0:219 0:228 route-map calculator permit 18811 match community 2_219_228 set community 0:49932 ip community-list standard 2_47_151 permit 65000:2 0:47 0:151 route-map calculator permit 18812 match community 2_47_151 set community 0:7097 ip community-list standard 2_111_239 permit 65000:2 0:111 0:239 route-map calculator permit 18813 match community 2_111_239 set community 0:26529 ip community-list standard 2_163_191 permit 65000:2 0:163 0:191 route-map calculator permit 18814 match community 2_163_191 set community 0:31133 ip community-list standard 2_31_73 permit 65000:2 0:31 0:73 route-map calculator permit 18815 match community 2_31_73 set community 0:2263 ip community-list standard 2_93_205 permit 65000:2 0:93 0:205 ip community-list standard 2_123_155 permit 65000:2 0:123 0:155 route-map calculator permit 18816 match community 2_93_205 2_123_155 set community 0:19065 ip community-list standard 2_84_214 permit 65000:2 0:84 0:214 ip community-list standard 2_107_168 permit 65000:2 0:107 0:168 route-map calculator permit 18817 match community 2_84_214 2_107_168 set community 0:17976 ip community-list standard 2_64_255 permit 65000:2 0:64 0:255 ip community-list standard 2_68_240 permit 65000:2 0:68 0:240 ip community-list standard 2_80_204 permit 65000:2 0:80 0:204 ip community-list standard 2_85_192 permit 65000:2 0:85 0:192 ip community-list standard 2_96_170 permit 65000:2 0:96 0:170 ip community-list standard 2_102_160 permit 65000:2 0:102 0:160 ip community-list standard 2_120_136 permit 65000:2 0:120 0:136 route-map calculator permit 18818 match community 2_64_255 2_68_240 2_80_204 2_85_192 2_96_170 set community 0:16320 route-map calculator permit 18819 match community 2_102_160 2_120_136 set community 0:16320 ip community-list standard 2_49_181 permit 65000:2 0:49 0:181 route-map calculator permit 18820 match community 2_49_181 set community 0:8869 ip community-list standard 2_47_131 permit 65000:2 0:47 0:131 route-map calculator permit 18821 match community 2_47_131 set community 0:6157 ip community-list standard 2_79_190 permit 65000:2 0:79 0:190 ip community-list standard 2_95_158 permit 65000:2 0:95 0:158 route-map calculator permit 18822 match community 2_79_190 2_95_158 set community 0:15010 ip community-list standard 2_45_226 permit 65000:2 0:45 0:226 ip community-list standard 2_90_113 permit 65000:2 0:90 0:113 route-map calculator permit 18823 match community 2_45_226 2_90_113 set community 0:10170 ip community-list standard 1_1_30 permit 65000:1 0:1 0:30 ip community-list standard 2_1_31 permit 65000:2 0:1 0:31 ip community-list standard 1_2_29 permit 65000:1 0:2 0:29 ip community-list standard 1_3_28 permit 65000:1 0:3 0:28 ip community-list standard 1_4_27 permit 65000:1 0:4 0:27 ip community-list standard 1_5_26 permit 65000:1 0:5 0:26 ip community-list standard 1_6_25 permit 65000:1 0:6 0:25 ip community-list standard 1_7_24 permit 65000:1 0:7 0:24 ip community-list standard 1_8_23 permit 65000:1 0:8 0:23 ip community-list standard 1_9_22 permit 65000:1 0:9 0:22 ip community-list standard 1_10_21 permit 65000:1 0:10 0:21 ip community-list standard 1_11_20 permit 65000:1 0:11 0:20 ip community-list standard 1_12_19 permit 65000:1 0:12 0:19 ip community-list standard 1_13_18 permit 65000:1 0:13 0:18 ip community-list standard 1_14_17 permit 65000:1 0:14 0:17 ip community-list standard 1_15_16 permit 65000:1 0:15 0:16 ip community-list expanded c31 permit 1 ^65000:4_0:31_0:1$ ip community-list expanded c31 permit 2 ^65000:3_0:32_0:1$ ip community-list expanded c31 permit 3 ^65000:3_0:33_0:2$ ip community-list expanded c31 permit 4 ^65000:3_0:34_0:3$ ip community-list expanded c31 permit 5 ^65000:3_0:35_0:4$ ip community-list expanded c31 permit 6 ^65000:3_0:36_0:5$ ip community-list expanded c31 permit 7 ^65000:3_0:37_0:6$ ip community-list expanded c31 permit 8 ^65000:3_0:38_0:7$ ip community-list expanded c31 permit 9 ^65000:3_0:39_0:8$ ip community-list expanded c31 permit 10 ^65000:3_0:40_0:9$ ip community-list expanded c31 permit 11 ^65000:3_0:41_0:10$ ip community-list expanded c31 permit 12 ^65000:3_0:42_0:11$ ip community-list expanded c31 permit 13 ^65000:3_0:43_0:12$ ip community-list expanded c31 permit 14 ^65000:3_0:44_0:13$ ip community-list expanded c31 permit 15 ^65000:3_0:45_0:14$ ip community-list expanded c31 permit 16 ^65000:3_0:46_0:15$ ip community-list expanded c31 permit 17 ^65000:3_0:47_0:16$ ip community-list expanded c31 permit 18 ^65000:3_0:48_0:17$ ip community-list expanded c31 permit 19 ^65000:3_0:49_0:18$ ip community-list expanded c31 permit 20 ^65000:3_0:50_0:19$ ip community-list expanded c31 permit 21 ^65000:3_0:51_0:20$ ip community-list expanded c31 permit 22 ^65000:3_0:52_0:21$ ip community-list expanded c31 permit 23 ^65000:3_0:53_0:22$ ip community-list expanded c31 permit 24 ^65000:3_0:54_0:23$ ip community-list expanded c31 permit 25 ^65000:3_0:55_0:24$ ip community-list expanded c31 permit 26 ^65000:3_0:56_0:25$ ip community-list expanded c31 permit 27 ^65000:3_0:57_0:26$ ip community-list expanded c31 permit 28 ^65000:3_0:58_0:27$ ip community-list expanded c31 permit 29 ^65000:3_0:59_0:28$ ip community-list expanded c31 permit 30 ^65000:3_0:60_0:29$ ip community-list expanded c31 permit 31 ^65000:3_0:61_0:30$ ip community-list expanded c31 permit 32 ^65000:4_0:62_0:2$ ip community-list expanded c31 permit 33 ^65000:3_0:62_0:31$ ip community-list expanded c31 permit 34 ^65000:4_0:63_0:2$ ip community-list expanded c31 permit 35 ^65000:3_0:63_0:32$ ip community-list expanded c31 permit 36 ^65000:3_0:64_0:33$ ip community-list expanded c31 permit 37 ^65000:3_0:65_0:34$ ip community-list expanded c31 permit 38 ^65000:3_0:66_0:35$ ip community-list expanded c31 permit 39 ^65000:3_0:67_0:36$ ip community-list expanded c31 permit 40 ^65000:3_0:68_0:37$ ip community-list expanded c31 permit 41 ^65000:3_0:69_0:38$ ip community-list expanded c31 permit 42 ^65000:3_0:70_0:39$ ip community-list expanded c31 permit 43 ^65000:3_0:71_0:40$ ip community-list expanded c31 permit 44 ^65000:3_0:72_0:41$ ip community-list expanded c31 permit 45 ^65000:3_0:73_0:42$ ip community-list expanded c31 permit 46 ^65000:3_0:74_0:43$ ip community-list expanded c31 permit 47 ^65000:3_0:75_0:44$ ip community-list expanded c31 permit 48 ^65000:3_0:76_0:45$ ip community-list expanded c31 permit 49 ^65000:3_0:77_0:46$ ip community-list expanded c31 permit 50 ^65000:3_0:78_0:47$ ip community-list expanded c31 permit 51 ^65000:3_0:79_0:48$ ip community-list expanded c31 permit 52 ^65000:3_0:80_0:49$ ip community-list expanded c31 permit 53 ^65000:3_0:81_0:50$ ip community-list expanded c31 permit 54 ^65000:3_0:82_0:51$ ip community-list expanded c31 permit 55 ^65000:3_0:83_0:52$ ip community-list expanded c31 permit 56 ^65000:3_0:84_0:53$ ip community-list expanded c31 permit 57 ^65000:3_0:85_0:54$ ip community-list expanded c31 permit 58 ^65000:3_0:86_0:55$ ip community-list expanded c31 permit 59 ^65000:3_0:87_0:56$ ip community-list expanded c31 permit 60 ^65000:3_0:88_0:57$ ip community-list expanded c31 permit 61 ^65000:3_0:89_0:58$ ip community-list expanded c31 permit 62 ^65000:3_0:90_0:59$ ip community-list expanded c31 permit 63 ^65000:3_0:91_0:60$ ip community-list expanded c31 permit 64 ^65000:3_0:92_0:61$ ip community-list expanded c31 permit 65 ^65000:4_0:93_0:3$ ip community-list expanded c31 permit 66 ^65000:3_0:93_0:62$ ip community-list expanded c31 permit 67 ^65000:4_0:94_0:3$ ip community-list expanded c31 permit 68 ^65000:3_0:94_0:63$ ip community-list expanded c31 permit 69 ^65000:4_0:95_0:3$ ip community-list expanded c31 permit 70 ^65000:3_0:95_0:64$ ip community-list expanded c31 permit 71 ^65000:3_0:96_0:65$ ip community-list expanded c31 permit 72 ^65000:3_0:97_0:66$ ip community-list expanded c31 permit 73 ^65000:3_0:98_0:67$ ip community-list expanded c31 permit 74 ^65000:3_0:99_0:68$ ip community-list expanded c31 permit 75 ^65000:3_0:100_0:69$ ip community-list expanded c31 permit 76 ^65000:3_0:101_0:70$ ip community-list expanded c31 permit 77 ^65000:3_0:102_0:71$ ip community-list expanded c31 permit 78 ^65000:3_0:103_0:72$ ip community-list expanded c31 permit 79 ^65000:3_0:104_0:73$ ip community-list expanded c31 permit 80 ^65000:3_0:105_0:74$ ip community-list expanded c31 permit 81 ^65000:3_0:106_0:75$ ip community-list expanded c31 permit 82 ^65000:3_0:107_0:76$ ip community-list expanded c31 permit 83 ^65000:3_0:108_0:77$ ip community-list expanded c31 permit 84 ^65000:3_0:109_0:78$ ip community-list expanded c31 permit 85 ^65000:3_0:110_0:79$ ip community-list expanded c31 permit 86 ^65000:3_0:111_0:80$ ip community-list expanded c31 permit 87 ^65000:3_0:112_0:81$ ip community-list expanded c31 permit 88 ^65000:3_0:113_0:82$ ip community-list expanded c31 permit 89 ^65000:3_0:114_0:83$ ip community-list expanded c31 permit 90 ^65000:3_0:115_0:84$ ip community-list expanded c31 permit 91 ^65000:3_0:116_0:85$ ip community-list expanded c31 permit 92 ^65000:3_0:117_0:86$ ip community-list expanded c31 permit 93 ^65000:3_0:118_0:87$ ip community-list expanded c31 permit 94 ^65000:3_0:119_0:88$ ip community-list expanded c31 permit 95 ^65000:3_0:120_0:89$ ip community-list expanded c31 permit 96 ^65000:3_0:121_0:90$ ip community-list expanded c31 permit 97 ^65000:3_0:122_0:91$ ip community-list expanded c31 permit 98 ^65000:3_0:123_0:92$ ip community-list expanded c31 permit 99 ^65000:4_0:124_0:4$ ip community-list expanded c31 permit 100 ^65000:3_0:124_0:93$ ip community-list expanded c31 permit 101 ^65000:4_0:125_0:4$ ip community-list expanded c31 permit 102 ^65000:3_0:125_0:94$ ip community-list expanded c31 permit 103 ^65000:4_0:126_0:4$ ip community-list expanded c31 permit 104 ^65000:3_0:126_0:95$ ip community-list expanded c31 permit 105 ^65000:4_0:127_0:4$ ip community-list expanded c31 permit 106 ^65000:3_0:127_0:96$ ip community-list expanded c31 permit 107 ^65000:3_0:128_0:97$ ip community-list expanded c31 permit 108 ^65000:3_0:129_0:98$ ip community-list expanded c31 permit 109 ^65000:3_0:130_0:99$ ip community-list expanded c31 permit 110 ^65000:3_0:131_0:100$ ip community-list expanded c31 permit 111 ^65000:3_0:132_0:101$ ip community-list expanded c31 permit 112 ^65000:3_0:133_0:102$ ip community-list expanded c31 permit 113 ^65000:3_0:134_0:103$ ip community-list expanded c31 permit 114 ^65000:3_0:135_0:104$ ip community-list expanded c31 permit 115 ^65000:3_0:136_0:105$ ip community-list expanded c31 permit 116 ^65000:3_0:137_0:106$ ip community-list expanded c31 permit 117 ^65000:3_0:138_0:107$ ip community-list expanded c31 permit 118 ^65000:3_0:139_0:108$ ip community-list expanded c31 permit 119 ^65000:3_0:140_0:109$ ip community-list expanded c31 permit 120 ^65000:3_0:141_0:110$ ip community-list expanded c31 permit 121 ^65000:3_0:142_0:111$ ip community-list expanded c31 permit 122 ^65000:3_0:143_0:112$ ip community-list expanded c31 permit 123 ^65000:3_0:144_0:113$ ip community-list expanded c31 permit 124 ^65000:3_0:145_0:114$ ip community-list expanded c31 permit 125 ^65000:3_0:146_0:115$ ip community-list expanded c31 permit 126 ^65000:3_0:147_0:116$ ip community-list expanded c31 permit 127 ^65000:3_0:148_0:117$ ip community-list expanded c31 permit 128 ^65000:3_0:149_0:118$ ip community-list expanded c31 permit 129 ^65000:3_0:150_0:119$ ip community-list expanded c31 permit 130 ^65000:3_0:151_0:120$ ip community-list expanded c31 permit 131 ^65000:3_0:152_0:121$ ip community-list expanded c31 permit 132 ^65000:3_0:153_0:122$ ip community-list expanded c31 permit 133 ^65000:3_0:154_0:123$ ip community-list expanded c31 permit 134 ^65000:4_0:155_0:5$ ip community-list expanded c31 permit 135 ^65000:3_0:155_0:124$ ip community-list expanded c31 permit 136 ^65000:4_0:156_0:5$ ip community-list expanded c31 permit 137 ^65000:3_0:156_0:125$ ip community-list expanded c31 permit 138 ^65000:4_0:157_0:5$ ip community-list expanded c31 permit 139 ^65000:3_0:157_0:126$ ip community-list expanded c31 permit 140 ^65000:4_0:158_0:5$ ip community-list expanded c31 permit 141 ^65000:3_0:158_0:127$ ip community-list expanded c31 permit 142 ^65000:4_0:159_0:5$ ip community-list expanded c31 permit 143 ^65000:3_0:159_0:128$ ip community-list expanded c31 permit 144 ^65000:3_0:160_0:129$ ip community-list expanded c31 permit 145 ^65000:3_0:161_0:130$ ip community-list expanded c31 permit 146 ^65000:3_0:162_0:131$ ip community-list expanded c31 permit 147 ^65000:3_0:163_0:132$ ip community-list expanded c31 permit 148 ^65000:3_0:164_0:133$ ip community-list expanded c31 permit 149 ^65000:3_0:165_0:134$ ip community-list expanded c31 permit 150 ^65000:3_0:166_0:135$ ip community-list expanded c31 permit 151 ^65000:3_0:167_0:136$ ip community-list expanded c31 permit 152 ^65000:3_0:168_0:137$ ip community-list expanded c31 permit 153 ^65000:3_0:169_0:138$ ip community-list expanded c31 permit 154 ^65000:3_0:170_0:139$ ip community-list expanded c31 permit 155 ^65000:3_0:171_0:140$ ip community-list expanded c31 permit 156 ^65000:3_0:172_0:141$ ip community-list expanded c31 permit 157 ^65000:3_0:173_0:142$ ip community-list expanded c31 permit 158 ^65000:3_0:174_0:143$ ip community-list expanded c31 permit 159 ^65000:3_0:175_0:144$ ip community-list expanded c31 permit 160 ^65000:3_0:176_0:145$ ip community-list expanded c31 permit 161 ^65000:3_0:177_0:146$ ip community-list expanded c31 permit 162 ^65000:3_0:178_0:147$ ip community-list expanded c31 permit 163 ^65000:3_0:179_0:148$ ip community-list expanded c31 permit 164 ^65000:3_0:180_0:149$ ip community-list expanded c31 permit 165 ^65000:3_0:181_0:150$ ip community-list expanded c31 permit 166 ^65000:3_0:182_0:151$ ip community-list expanded c31 permit 167 ^65000:3_0:183_0:152$ ip community-list expanded c31 permit 168 ^65000:3_0:184_0:153$ ip community-list expanded c31 permit 169 ^65000:3_0:185_0:154$ ip community-list expanded c31 permit 170 ^65000:4_0:186_0:6$ ip community-list expanded c31 permit 171 ^65000:3_0:186_0:155$ ip community-list expanded c31 permit 172 ^65000:4_0:187_0:6$ ip community-list expanded c31 permit 173 ^65000:3_0:187_0:156$ ip community-list expanded c31 permit 174 ^65000:4_0:188_0:6$ ip community-list expanded c31 permit 175 ^65000:3_0:188_0:157$ ip community-list expanded c31 permit 176 ^65000:4_0:189_0:6$ ip community-list expanded c31 permit 177 ^65000:3_0:189_0:158$ ip community-list expanded c31 permit 178 ^65000:4_0:190_0:6$ ip community-list expanded c31 permit 179 ^65000:3_0:190_0:159$ ip community-list expanded c31 permit 180 ^65000:4_0:191_0:6$ ip community-list expanded c31 permit 181 ^65000:3_0:191_0:160$ ip community-list expanded c31 permit 182 ^65000:3_0:192_0:161$ ip community-list expanded c31 permit 183 ^65000:3_0:193_0:162$ ip community-list expanded c31 permit 184 ^65000:3_0:194_0:163$ ip community-list expanded c31 permit 185 ^65000:3_0:195_0:164$ ip community-list expanded c31 permit 186 ^65000:3_0:196_0:165$ ip community-list expanded c31 permit 187 ^65000:3_0:197_0:166$ ip community-list expanded c31 permit 188 ^65000:3_0:198_0:167$ ip community-list expanded c31 permit 189 ^65000:3_0:199_0:168$ ip community-list expanded c31 permit 190 ^65000:3_0:200_0:169$ ip community-list expanded c31 permit 191 ^65000:3_0:201_0:170$ ip community-list expanded c31 permit 192 ^65000:3_0:202_0:171$ ip community-list expanded c31 permit 193 ^65000:3_0:203_0:172$ ip community-list expanded c31 permit 194 ^65000:3_0:204_0:173$ ip community-list expanded c31 permit 195 ^65000:3_0:205_0:174$ ip community-list expanded c31 permit 196 ^65000:3_0:206_0:175$ ip community-list expanded c31 permit 197 ^65000:3_0:207_0:176$ ip community-list expanded c31 permit 198 ^65000:3_0:208_0:177$ ip community-list expanded c31 permit 199 ^65000:3_0:209_0:178$ ip community-list expanded c31 permit 200 ^65000:3_0:210_0:179$ ip community-list expanded c31 permit 201 ^65000:3_0:211_0:180$ ip community-list expanded c31 permit 202 ^65000:3_0:212_0:181$ ip community-list expanded c31 permit 203 ^65000:3_0:213_0:182$ ip community-list expanded c31 permit 204 ^65000:3_0:214_0:183$ ip community-list expanded c31 permit 205 ^65000:3_0:215_0:184$ ip community-list expanded c31 permit 206 ^65000:3_0:216_0:185$ ip community-list expanded c31 permit 207 ^65000:4_0:217_0:7$ ip community-list expanded c31 permit 208 ^65000:3_0:217_0:186$ ip community-list expanded c31 permit 209 ^65000:4_0:218_0:7$ ip community-list expanded c31 permit 210 ^65000:3_0:218_0:187$ ip community-list expanded c31 permit 211 ^65000:4_0:219_0:7$ ip community-list expanded c31 permit 212 ^65000:3_0:219_0:188$ ip community-list expanded c31 permit 213 ^65000:4_0:220_0:7$ ip community-list expanded c31 permit 214 ^65000:3_0:220_0:189$ ip community-list expanded c31 permit 215 ^65000:4_0:221_0:7$ ip community-list expanded c31 permit 216 ^65000:3_0:221_0:190$ ip community-list expanded c31 permit 217 ^65000:4_0:222_0:7$ ip community-list expanded c31 permit 218 ^65000:3_0:222_0:191$ ip community-list expanded c31 permit 219 ^65000:4_0:223_0:7$ ip community-list expanded c31 permit 220 ^65000:3_0:223_0:192$ ip community-list expanded c31 permit 221 ^65000:3_0:224_0:193$ ip community-list expanded c31 permit 222 ^65000:3_0:225_0:194$ ip community-list expanded c31 permit 223 ^65000:3_0:226_0:195$ ip community-list expanded c31 permit 224 ^65000:3_0:227_0:196$ ip community-list expanded c31 permit 225 ^65000:3_0:228_0:197$ ip community-list expanded c31 permit 226 ^65000:3_0:229_0:198$ ip community-list expanded c31 permit 227 ^65000:3_0:230_0:199$ ip community-list expanded c31 permit 228 ^65000:3_0:231_0:200$ ip community-list expanded c31 permit 229 ^65000:3_0:232_0:201$ ip community-list expanded c31 permit 230 ^65000:3_0:233_0:202$ ip community-list expanded c31 permit 231 ^65000:3_0:234_0:203$ ip community-list expanded c31 permit 232 ^65000:3_0:235_0:204$ ip community-list expanded c31 permit 233 ^65000:3_0:236_0:205$ ip community-list expanded c31 permit 234 ^65000:3_0:237_0:206$ ip community-list expanded c31 permit 235 ^65000:3_0:238_0:207$ ip community-list expanded c31 permit 236 ^65000:3_0:239_0:208$ ip community-list expanded c31 permit 237 ^65000:3_0:240_0:209$ ip community-list expanded c31 permit 238 ^65000:3_0:241_0:210$ ip community-list expanded c31 permit 239 ^65000:3_0:242_0:211$ ip community-list expanded c31 permit 240 ^65000:3_0:243_0:212$ ip community-list expanded c31 permit 241 ^65000:3_0:244_0:213$ ip community-list expanded c31 permit 242 ^65000:3_0:245_0:214$ ip community-list expanded c31 permit 243 ^65000:3_0:246_0:215$ ip community-list expanded c31 permit 244 ^65000:3_0:247_0:216$ ip community-list expanded c31 permit 245 ^65000:4_0:248_0:8$ ip community-list expanded c31 permit 246 ^65000:3_0:248_0:217$ ip community-list expanded c31 permit 247 ^65000:4_0:249_0:8$ ip community-list expanded c31 permit 248 ^65000:3_0:249_0:218$ ip community-list expanded c31 permit 249 ^65000:4_0:250_0:8$ ip community-list expanded c31 permit 250 ^65000:3_0:250_0:219$ ip community-list expanded c31 permit 251 ^65000:4_0:251_0:8$ ip community-list expanded c31 permit 252 ^65000:3_0:251_0:220$ ip community-list expanded c31 permit 253 ^65000:4_0:252_0:8$ ip community-list expanded c31 permit 254 ^65000:3_0:252_0:221$ ip community-list expanded c31 permit 255 ^65000:4_0:253_0:8$ ip community-list expanded c31 permit 256 ^65000:3_0:253_0:222$ ip community-list expanded c31 permit 257 ^65000:4_0:254_0:8$ ip community-list expanded c31 permit 258 ^65000:3_0:254_0:223$ ip community-list expanded c31 permit 259 ^65000:4_0:255_0:8$ ip community-list expanded c31 permit 260 ^65000:3_0:255_0:224$ ip community-list expanded c31 permit 261 ^65000:3_0:256_0:225$ route-map calculator permit 18824 match community 1_1_30 2_1_31 1_2_29 1_3_28 1_4_27 set community 0:31 route-map calculator permit 18825 match community 1_5_26 1_6_25 1_7_24 1_8_23 1_9_22 set community 0:31 route-map calculator permit 18826 match community 1_10_21 1_11_20 1_12_19 1_13_18 1_14_17 set community 0:31 route-map calculator permit 18827 match community 1_15_16 c4_31_1 c3_32_1 c3_33_2 c3_34_3 set community 0:31 route-map calculator permit 18828 match community c3_35_4 c3_36_5 c3_37_6 c3_38_7 c3_39_8 set community 0:31 route-map calculator permit 18829 match community c3_40_9 c3_41_10 c3_42_11 c3_43_12 c3_44_13 set community 0:31 route-map calculator permit 18830 match community c3_45_14 c3_46_15 c3_47_16 c3_48_17 c3_49_18 set community 0:31 route-map calculator permit 18831 match community c3_50_19 c3_51_20 c3_52_21 c3_53_22 c3_54_23 set community 0:31 route-map calculator permit 18832 match community c3_55_24 c3_56_25 c3_57_26 c3_58_27 c3_59_28 set community 0:31 route-map calculator permit 18833 match community c3_60_29 c3_61_30 c4_62_2 c3_62_31 c4_63_2 set community 0:31 route-map calculator permit 18834 match community c3_63_32 c3_64_33 c3_65_34 c3_66_35 c3_67_36 set community 0:31 route-map calculator permit 18835 match community c3_68_37 c3_69_38 c3_70_39 c3_71_40 c3_72_41 set community 0:31 route-map calculator permit 18836 match community c3_73_42 c3_74_43 c3_75_44 c3_76_45 c3_77_46 set community 0:31 route-map calculator permit 18837 match community c3_78_47 c3_79_48 c3_80_49 c3_81_50 c3_82_51 set community 0:31 route-map calculator permit 18838 match community c3_83_52 c3_84_53 c3_85_54 c3_86_55 c3_87_56 set community 0:31 route-map calculator permit 18839 match community c3_88_57 c3_89_58 c3_90_59 c3_91_60 c3_92_61 set community 0:31 route-map calculator permit 18840 match community c4_93_3 c3_93_62 c4_94_3 c3_94_63 c4_95_3 set community 0:31 route-map calculator permit 18841 match community c3_95_64 c3_96_65 c3_97_66 c3_98_67 c3_99_68 set community 0:31 route-map calculator permit 18842 match community c3_100_69 c3_101_70 c3_102_71 c3_103_72 c3_104_73 set community 0:31 route-map calculator permit 18843 match community c3_105_74 c3_106_75 c3_107_76 c3_108_77 c3_109_78 set community 0:31 route-map calculator permit 18844 match community c3_110_79 c3_111_80 c3_112_81 c3_113_82 c3_114_83 set community 0:31 route-map calculator permit 18845 match community c3_115_84 c3_116_85 c3_117_86 c3_118_87 c3_119_88 set community 0:31 route-map calculator permit 18846 match community c3_120_89 c3_121_90 c3_122_91 c3_123_92 c4_124_4 set community 0:31 route-map calculator permit 18847 match community c3_124_93 c4_125_4 c3_125_94 c4_126_4 c3_126_95 set community 0:31 route-map calculator permit 18848 match community c4_127_4 c3_127_96 c3_128_97 c3_129_98 c3_130_99 set community 0:31 route-map calculator permit 18849 match community c3_131_100 c3_132_101 c3_133_102 c3_134_103 c3_135_104 set community 0:31 route-map calculator permit 18850 match community c3_136_105 c3_137_106 c3_138_107 c3_139_108 c3_140_109 set community 0:31 route-map calculator permit 18851 match community c3_141_110 c3_142_111 c3_143_112 c3_144_113 c3_145_114 set community 0:31 route-map calculator permit 18852 match community c3_146_115 c3_147_116 c3_148_117 c3_149_118 c3_150_119 set community 0:31 route-map calculator permit 18853 match community c3_151_120 c3_152_121 c3_153_122 c3_154_123 c4_155_5 set community 0:31 route-map calculator permit 18854 match community c3_155_124 c4_156_5 c3_156_125 c4_157_5 c3_157_126 set community 0:31 route-map calculator permit 18855 match community c4_158_5 c3_158_127 c4_159_5 c3_159_128 c3_160_129 set community 0:31 route-map calculator permit 18856 match community c3_161_130 c3_162_131 c3_163_132 c3_164_133 c3_165_134 set community 0:31 route-map calculator permit 18857 match community c3_166_135 c3_167_136 c3_168_137 c3_169_138 c3_170_139 set community 0:31 route-map calculator permit 18858 match community c3_171_140 c3_172_141 c3_173_142 c3_174_143 c3_175_144 set community 0:31 route-map calculator permit 18859 match community c3_176_145 c3_177_146 c3_178_147 c3_179_148 c3_180_149 set community 0:31 route-map calculator permit 18860 match community c3_181_150 c3_182_151 c3_183_152 c3_184_153 c3_185_154 set community 0:31 route-map calculator permit 18861 match community c4_186_6 c3_186_155 c4_187_6 c3_187_156 c4_188_6 set community 0:31 route-map calculator permit 18862 match community c3_188_157 c4_189_6 c3_189_158 c4_190_6 c3_190_159 set community 0:31 route-map calculator permit 18863 match community c4_191_6 c3_191_160 c3_192_161 c3_193_162 c3_194_163 set community 0:31 route-map calculator permit 18864 match community c3_195_164 c3_196_165 c3_197_166 c3_198_167 c3_199_168 set community 0:31 route-map calculator permit 18865 match community c3_200_169 c3_201_170 c3_202_171 c3_203_172 c3_204_173 set community 0:31 route-map calculator permit 18866 match community c3_205_174 c3_206_175 c3_207_176 c3_208_177 c3_209_178 set community 0:31 route-map calculator permit 18867 match community c3_210_179 c3_211_180 c3_212_181 c3_213_182 c3_214_183 set community 0:31 route-map calculator permit 18868 match community c3_215_184 c3_216_185 c4_217_7 c3_217_186 c4_218_7 set community 0:31 route-map calculator permit 18869 match community c3_218_187 c4_219_7 c3_219_188 c4_220_7 c3_220_189 set community 0:31 route-map calculator permit 18870 match community c4_221_7 c3_221_190 c4_222_7 c3_222_191 c4_223_7 set community 0:31 route-map calculator permit 18871 match community c3_223_192 c3_224_193 c3_225_194 c3_226_195 c3_227_196 set community 0:31 route-map calculator permit 18872 match community c3_228_197 c3_229_198 c3_230_199 c3_231_200 c3_232_201 set community 0:31 route-map calculator permit 18873 match community c3_233_202 c3_234_203 c3_235_204 c3_236_205 c3_237_206 set community 0:31 route-map calculator permit 18874 match community c3_238_207 c3_239_208 c3_240_209 c3_241_210 c3_242_211 set community 0:31 route-map calculator permit 18875 match community c3_243_212 c3_244_213 c3_245_214 c3_246_215 c3_247_216 set community 0:31 route-map calculator permit 18876 match community c4_248_8 c3_248_217 c4_249_8 c3_249_218 c4_250_8 set community 0:31 route-map calculator permit 18877 match community c3_250_219 c4_251_8 c3_251_220 c4_252_8 c3_252_221 set community 0:31 route-map calculator permit 18878 match community c4_253_8 c3_253_222 c4_254_8 c3_254_223 c4_255_8 set community 0:31 route-map calculator permit 18879 match community c3_255_224 c3_256_225 set community 0:31 ip community-list standard 2_15_232 permit 65000:2 0:15 0:232 ip community-list standard 2_20_174 permit 65000:2 0:20 0:174 ip community-list standard 2_24_145 permit 65000:2 0:24 0:145 ip community-list standard 2_29_120 permit 65000:2 0:29 0:120 ip community-list standard 2_30_116 permit 65000:2 0:30 0:116 ip community-list standard 2_40_87 permit 65000:2 0:40 0:87 ip community-list standard 2_58_60 permit 65000:2 0:58 0:60 route-map calculator permit 18880 match community 2_15_232 2_20_174 2_24_145 2_29_120 2_30_116 set community 0:3480 route-map calculator permit 18881 match community 2_40_87 2_58_60 set community 0:3480 ip community-list standard 2_91_207 permit 65000:2 0:91 0:207 ip community-list standard 2_117_161 permit 65000:2 0:117 0:161 route-map calculator permit 18882 match community 2_91_207 2_117_161 set community 0:18837 ip community-list standard 2_110_203 permit 65000:2 0:110 0:203 ip community-list standard 2_145_154 permit 65000:2 0:145 0:154 route-map calculator permit 18883 match community 2_110_203 2_145_154 set community 0:22330 ip community-list standard 2_149_165 permit 65000:2 0:149 0:165 route-map calculator permit 18884 match community 2_149_165 set community 0:24585 ip community-list standard 2_46_141 permit 65000:2 0:46 0:141 ip community-list standard 2_47_138 permit 65000:2 0:47 0:138 ip community-list standard 2_69_94 permit 65000:2 0:69 0:94 route-map calculator permit 18885 match community 2_46_141 2_47_138 2_69_94 set community 0:6486 ip community-list standard 2_151_244 permit 65000:2 0:151 0:244 route-map calculator permit 18886 match community 2_151_244 set community 0:36844 ip community-list standard 2_81_97 permit 65000:2 0:81 0:97 route-map calculator permit 18887 match community 2_81_97 set community 0:7857 ip community-list standard 2_215_221 permit 65000:2 0:215 0:221 route-map calculator permit 18888 match community 2_215_221 set community 0:47515 ip community-list standard 2_103_165 permit 65000:2 0:103 0:165 route-map calculator permit 18889 match community 2_103_165 set community 0:16995 ip community-list standard 2_29_109 permit 65000:2 0:29 0:109 route-map calculator permit 18890 match community 2_29_109 set community 0:3161 ip community-list standard 2_242_246 permit 65000:2 0:242 0:246 route-map calculator permit 18891 match community 2_242_246 set community 0:59532 ip community-list standard 2_17_235 permit 65000:2 0:17 0:235 ip community-list standard 2_47_85 permit 65000:2 0:47 0:85 route-map calculator permit 18892 match community 2_17_235 2_47_85 set community 0:3995 ip community-list standard 2_69_211 permit 65000:2 0:69 0:211 route-map calculator permit 18893 match community 2_69_211 set community 0:14559 ip community-list standard 2_3_145 permit 65000:2 0:3 0:145 ip community-list standard 2_5_87 permit 65000:2 0:5 0:87 ip community-list standard 2_15_29 permit 65000:2 0:15 0:29 ip community-list standard 1_179_256 permit 65000:1 0:179 0:256 ip community-list standard 1_180_255 permit 65000:1 0:180 0:255 ip community-list standard 1_181_254 permit 65000:1 0:181 0:254 ip community-list standard 1_182_253 permit 65000:1 0:182 0:253 ip community-list standard 1_183_252 permit 65000:1 0:183 0:252 ip community-list standard 1_184_251 permit 65000:1 0:184 0:251 ip community-list standard 1_185_250 permit 65000:1 0:185 0:250 ip community-list standard 1_186_249 permit 65000:1 0:186 0:249 ip community-list standard 1_187_248 permit 65000:1 0:187 0:248 ip community-list standard 1_188_247 permit 65000:1 0:188 0:247 ip community-list standard 1_189_246 permit 65000:1 0:189 0:246 ip community-list standard 1_190_245 permit 65000:1 0:190 0:245 ip community-list standard 1_191_244 permit 65000:1 0:191 0:244 ip community-list standard 1_192_243 permit 65000:1 0:192 0:243 ip community-list standard 1_193_242 permit 65000:1 0:193 0:242 ip community-list standard 1_194_241 permit 65000:1 0:194 0:241 ip community-list standard 1_195_240 permit 65000:1 0:195 0:240 ip community-list standard 1_196_239 permit 65000:1 0:196 0:239 ip community-list standard 1_197_238 permit 65000:1 0:197 0:238 ip community-list standard 1_198_237 permit 65000:1 0:198 0:237 ip community-list standard 1_199_236 permit 65000:1 0:199 0:236 ip community-list standard 1_200_235 permit 65000:1 0:200 0:235 ip community-list standard 1_201_234 permit 65000:1 0:201 0:234 ip community-list standard 1_202_233 permit 65000:1 0:202 0:233 ip community-list standard 1_203_232 permit 65000:1 0:203 0:232 ip community-list standard 1_204_231 permit 65000:1 0:204 0:231 ip community-list standard 1_205_230 permit 65000:1 0:205 0:230 ip community-list standard 1_206_229 permit 65000:1 0:206 0:229 ip community-list standard 1_207_228 permit 65000:1 0:207 0:228 ip community-list standard 1_208_227 permit 65000:1 0:208 0:227 ip community-list standard 1_209_226 permit 65000:1 0:209 0:226 ip community-list standard 1_210_225 permit 65000:1 0:210 0:225 ip community-list standard 1_211_224 permit 65000:1 0:211 0:224 ip community-list standard 1_212_223 permit 65000:1 0:212 0:223 ip community-list standard 1_213_222 permit 65000:1 0:213 0:222 ip community-list standard 1_214_221 permit 65000:1 0:214 0:221 ip community-list standard 1_215_220 permit 65000:1 0:215 0:220 ip community-list standard 1_216_219 permit 65000:1 0:216 0:219 ip community-list standard 1_217_218 permit 65000:1 0:217 0:218 route-map calculator permit 18894 match community 2_3_145 2_5_87 2_15_29 1_179_256 1_180_255 set community 0:435 route-map calculator permit 18895 match community 1_181_254 1_182_253 1_183_252 1_184_251 1_185_250 set community 0:435 route-map calculator permit 18896 match community 1_186_249 1_187_248 1_188_247 1_189_246 1_190_245 set community 0:435 route-map calculator permit 18897 match community 1_191_244 1_192_243 1_193_242 1_194_241 1_195_240 set community 0:435 route-map calculator permit 18898 match community 1_196_239 1_197_238 1_198_237 1_199_236 1_200_235 set community 0:435 route-map calculator permit 18899 match community 1_201_234 1_202_233 1_203_232 1_204_231 1_205_230 set community 0:435 route-map calculator permit 18900 match community 1_206_229 1_207_228 1_208_227 1_209_226 1_210_225 set community 0:435 route-map calculator permit 18901 match community 1_211_224 1_212_223 1_213_222 1_214_221 1_215_220 set community 0:435 route-map calculator permit 18902 match community 1_216_219 1_217_218 set community 0:435 ip community-list standard 2_86_243 permit 65000:2 0:86 0:243 ip community-list standard 2_129_162 permit 65000:2 0:129 0:162 route-map calculator permit 18903 match community 2_86_243 2_129_162 set community 0:20898 ip community-list standard 2_179_208 permit 65000:2 0:179 0:208 route-map calculator permit 18904 match community 2_179_208 set community 0:37232 ip community-list standard 2_174_235 permit 65000:2 0:174 0:235 route-map calculator permit 18905 match community 2_174_235 set community 0:40890 ip community-list standard 2_110_169 permit 65000:2 0:110 0:169 ip community-list standard 2_130_143 permit 65000:2 0:130 0:143 route-map calculator permit 18906 match community 2_110_169 2_130_143 set community 0:18590 ip community-list standard 2_193_206 permit 65000:2 0:193 0:206 route-map calculator permit 18907 match community 2_193_206 set community 0:39758 ip community-list standard 2_51_219 permit 65000:2 0:51 0:219 ip community-list standard 2_73_153 permit 65000:2 0:73 0:153 route-map calculator permit 18908 match community 2_51_219 2_73_153 set community 0:11169 ip community-list standard 2_66_214 permit 65000:2 0:66 0:214 ip community-list standard 2_107_132 permit 65000:2 0:107 0:132 route-map calculator permit 18909 match community 2_66_214 2_107_132 set community 0:14124 ip community-list standard 2_35_256 permit 65000:2 0:35 0:256 ip community-list standard 2_40_224 permit 65000:2 0:40 0:224 ip community-list standard 2_56_160 permit 65000:2 0:56 0:160 ip community-list standard 2_64_140 permit 65000:2 0:64 0:140 ip community-list standard 2_70_128 permit 65000:2 0:70 0:128 ip community-list standard 2_80_112 permit 65000:2 0:80 0:112 route-map calculator permit 18910 match community 2_35_256 2_40_224 2_56_160 2_64_140 2_70_128 set community 0:8960 route-map calculator permit 18911 match community 2_80_112 set community 0:8960 ip community-list standard 2_29_166 permit 65000:2 0:29 0:166 ip community-list standard 2_58_83 permit 65000:2 0:58 0:83 route-map calculator permit 18912 match community 2_29_166 2_58_83 set community 0:4814 ip community-list standard 2_12_178 permit 65000:2 0:12 0:178 ip community-list standard 2_24_89 permit 65000:2 0:24 0:89 route-map calculator permit 18913 match community 2_12_178 2_24_89 set community 0:2136 ip community-list standard 2_100_151 permit 65000:2 0:100 0:151 route-map calculator permit 18914 match community 2_100_151 set community 0:15100 ip community-list standard 2_124_225 permit 65000:2 0:124 0:225 ip community-list standard 2_150_186 permit 65000:2 0:150 0:186 ip community-list standard 2_155_180 permit 65000:2 0:155 0:180 route-map calculator permit 18915 match community 2_124_225 2_150_186 2_155_180 set community 0:27900 ip community-list standard 2_32_241 permit 65000:2 0:32 0:241 route-map calculator permit 18916 match community 2_32_241 set community 0:7712 ip community-list standard 2_7_182 permit 65000:2 0:7 0:182 ip community-list standard 2_13_98 permit 65000:2 0:13 0:98 ip community-list standard 2_14_91 permit 65000:2 0:14 0:91 ip community-list standard 2_26_49 permit 65000:2 0:26 0:49 route-map calculator permit 18917 match community 2_7_182 2_13_98 2_14_91 2_26_49 set community 0:1274 ip community-list standard 2_22_139 permit 65000:2 0:22 0:139 route-map calculator permit 18918 match community 2_22_139 set community 0:3058 ip community-list standard 2_49_143 permit 65000:2 0:49 0:143 ip community-list standard 2_77_91 permit 65000:2 0:77 0:91 route-map calculator permit 18919 match community 2_49_143 2_77_91 set community 0:7007 ip community-list standard 2_53_59 permit 65000:2 0:53 0:59 route-map calculator permit 18920 match community 2_53_59 set community 0:3127 ip community-list standard 2_182_238 permit 65000:2 0:182 0:238 ip community-list standard 2_196_221 permit 65000:2 0:196 0:221 route-map calculator permit 18921 match community 2_182_238 2_196_221 set community 0:43316 ip community-list standard 2_148_211 permit 65000:2 0:148 0:211 route-map calculator permit 18922 match community 2_148_211 set community 0:31228 ip community-list standard 2_97_151 permit 65000:2 0:97 0:151 route-map calculator permit 18923 match community 2_97_151 set community 0:14647 ip community-list standard 2_143_177 permit 65000:2 0:143 0:177 route-map calculator permit 18924 match community 2_143_177 set community 0:25311 ip community-list standard 2_226_232 permit 65000:2 0:226 0:232 route-map calculator permit 18925 match community 2_226_232 set community 0:52432 ip community-list standard 2_112_215 permit 65000:2 0:112 0:215 ip community-list standard 2_140_172 permit 65000:2 0:140 0:172 route-map calculator permit 18926 match community 2_112_215 2_140_172 set community 0:24080 ip community-list standard 2_57_181 permit 65000:2 0:57 0:181 route-map calculator permit 18927 match community 2_57_181 set community 0:10317 ip community-list standard 2_79_238 permit 65000:2 0:79 0:238 ip community-list standard 2_119_158 permit 65000:2 0:119 0:158 route-map calculator permit 18928 match community 2_79_238 2_119_158 set community 0:18802 ip community-list standard 2_132_249 permit 65000:2 0:132 0:249 ip community-list standard 2_166_198 permit 65000:2 0:166 0:198 route-map calculator permit 18929 match community 2_132_249 2_166_198 set community 0:32868 ip community-list standard 2_41_206 permit 65000:2 0:41 0:206 ip community-list standard 2_82_103 permit 65000:2 0:82 0:103 route-map calculator permit 18930 match community 2_41_206 2_82_103 set community 0:8446 ip community-list standard 2_138_240 permit 65000:2 0:138 0:240 ip community-list standard 2_144_230 permit 65000:2 0:144 0:230 ip community-list standard 2_160_207 permit 65000:2 0:160 0:207 ip community-list standard 2_180_184 permit 65000:2 0:180 0:184 route-map calculator permit 18931 match community 2_138_240 2_144_230 2_160_207 2_180_184 set community 0:33120 ip community-list standard 2_51_217 permit 65000:2 0:51 0:217 ip community-list standard 2_93_119 permit 65000:2 0:93 0:119 route-map calculator permit 18932 match community 2_51_217 2_93_119 set community 0:11067 ip community-list standard 2_65_103 permit 65000:2 0:65 0:103 route-map calculator permit 18933 match community 2_65_103 set community 0:6695 ip community-list standard 2_158_175 permit 65000:2 0:158 0:175 route-map calculator permit 18934 match community 2_158_175 set community 0:27650 ip community-list standard 2_13_139 permit 65000:2 0:13 0:139 route-map calculator permit 18935 match community 2_13_139 set community 0:1807 ip community-list standard 2_39_191 permit 65000:2 0:39 0:191 route-map calculator permit 18936 match community 2_39_191 set community 0:7449 ip community-list standard 2_61_131 permit 65000:2 0:61 0:131 route-map calculator permit 18937 match community 2_61_131 set community 0:7991 ip community-list standard 1_1_230 permit 65000:1 0:1 0:230 ip community-list standard 2_1_231 permit 65000:2 0:1 0:231 ip community-list standard 1_2_229 permit 65000:1 0:2 0:229 ip community-list standard 2_3_77 permit 65000:2 0:3 0:77 ip community-list standard 1_3_228 permit 65000:1 0:3 0:228 ip community-list standard 1_4_227 permit 65000:1 0:4 0:227 ip community-list standard 1_5_226 permit 65000:1 0:5 0:226 ip community-list standard 1_6_225 permit 65000:1 0:6 0:225 ip community-list standard 2_7_33 permit 65000:2 0:7 0:33 ip community-list standard 1_7_224 permit 65000:1 0:7 0:224 ip community-list standard 1_8_223 permit 65000:1 0:8 0:223 ip community-list standard 1_9_222 permit 65000:1 0:9 0:222 ip community-list standard 1_10_221 permit 65000:1 0:10 0:221 ip community-list standard 2_11_21 permit 65000:2 0:11 0:21 ip community-list standard 1_11_220 permit 65000:1 0:11 0:220 ip community-list standard 1_12_219 permit 65000:1 0:12 0:219 ip community-list standard 1_13_218 permit 65000:1 0:13 0:218 ip community-list standard 1_14_217 permit 65000:1 0:14 0:217 ip community-list standard 1_15_216 permit 65000:1 0:15 0:216 ip community-list standard 1_16_215 permit 65000:1 0:16 0:215 ip community-list standard 1_17_214 permit 65000:1 0:17 0:214 ip community-list standard 1_18_213 permit 65000:1 0:18 0:213 ip community-list standard 1_19_212 permit 65000:1 0:19 0:212 ip community-list standard 1_20_211 permit 65000:1 0:20 0:211 ip community-list standard 1_21_210 permit 65000:1 0:21 0:210 ip community-list standard 1_22_209 permit 65000:1 0:22 0:209 ip community-list standard 1_23_208 permit 65000:1 0:23 0:208 ip community-list standard 1_24_207 permit 65000:1 0:24 0:207 ip community-list standard 1_25_206 permit 65000:1 0:25 0:206 ip community-list standard 1_26_205 permit 65000:1 0:26 0:205 ip community-list standard 1_27_204 permit 65000:1 0:27 0:204 ip community-list standard 1_28_203 permit 65000:1 0:28 0:203 ip community-list standard 1_29_202 permit 65000:1 0:29 0:202 ip community-list standard 1_30_201 permit 65000:1 0:30 0:201 ip community-list standard 1_31_200 permit 65000:1 0:31 0:200 ip community-list standard 1_32_199 permit 65000:1 0:32 0:199 ip community-list standard 1_33_198 permit 65000:1 0:33 0:198 ip community-list standard 1_34_197 permit 65000:1 0:34 0:197 ip community-list standard 1_35_196 permit 65000:1 0:35 0:196 ip community-list standard 1_36_195 permit 65000:1 0:36 0:195 ip community-list standard 1_37_194 permit 65000:1 0:37 0:194 ip community-list standard 1_38_193 permit 65000:1 0:38 0:193 ip community-list standard 1_39_192 permit 65000:1 0:39 0:192 ip community-list standard 1_40_191 permit 65000:1 0:40 0:191 ip community-list standard 1_41_190 permit 65000:1 0:41 0:190 ip community-list standard 1_42_189 permit 65000:1 0:42 0:189 ip community-list standard 1_43_188 permit 65000:1 0:43 0:188 ip community-list standard 1_44_187 permit 65000:1 0:44 0:187 ip community-list standard 1_45_186 permit 65000:1 0:45 0:186 ip community-list standard 1_46_185 permit 65000:1 0:46 0:185 ip community-list standard 1_47_184 permit 65000:1 0:47 0:184 ip community-list standard 1_48_183 permit 65000:1 0:48 0:183 ip community-list standard 1_49_182 permit 65000:1 0:49 0:182 ip community-list standard 1_50_181 permit 65000:1 0:50 0:181 ip community-list standard 1_51_180 permit 65000:1 0:51 0:180 ip community-list standard 1_52_179 permit 65000:1 0:52 0:179 ip community-list standard 1_53_178 permit 65000:1 0:53 0:178 ip community-list standard 1_54_177 permit 65000:1 0:54 0:177 ip community-list standard 1_55_176 permit 65000:1 0:55 0:176 ip community-list standard 1_56_175 permit 65000:1 0:56 0:175 ip community-list standard 1_57_174 permit 65000:1 0:57 0:174 ip community-list standard 1_58_173 permit 65000:1 0:58 0:173 ip community-list standard 1_59_172 permit 65000:1 0:59 0:172 ip community-list standard 1_60_171 permit 65000:1 0:60 0:171 ip community-list standard 1_61_170 permit 65000:1 0:61 0:170 ip community-list standard 1_62_169 permit 65000:1 0:62 0:169 ip community-list standard 1_63_168 permit 65000:1 0:63 0:168 ip community-list standard 1_64_167 permit 65000:1 0:64 0:167 ip community-list standard 1_65_166 permit 65000:1 0:65 0:166 ip community-list standard 1_66_165 permit 65000:1 0:66 0:165 ip community-list standard 1_67_164 permit 65000:1 0:67 0:164 ip community-list standard 1_68_163 permit 65000:1 0:68 0:163 ip community-list standard 1_69_162 permit 65000:1 0:69 0:162 ip community-list standard 1_70_161 permit 65000:1 0:70 0:161 ip community-list standard 1_71_160 permit 65000:1 0:71 0:160 ip community-list standard 1_72_159 permit 65000:1 0:72 0:159 ip community-list standard 1_73_158 permit 65000:1 0:73 0:158 ip community-list standard 1_74_157 permit 65000:1 0:74 0:157 ip community-list standard 1_75_156 permit 65000:1 0:75 0:156 ip community-list standard 1_76_155 permit 65000:1 0:76 0:155 ip community-list standard 1_77_154 permit 65000:1 0:77 0:154 ip community-list standard 1_78_153 permit 65000:1 0:78 0:153 ip community-list standard 1_79_152 permit 65000:1 0:79 0:152 ip community-list standard 1_80_151 permit 65000:1 0:80 0:151 ip community-list standard 1_81_150 permit 65000:1 0:81 0:150 ip community-list standard 1_82_149 permit 65000:1 0:82 0:149 ip community-list standard 1_83_148 permit 65000:1 0:83 0:148 ip community-list standard 1_84_147 permit 65000:1 0:84 0:147 ip community-list standard 1_85_146 permit 65000:1 0:85 0:146 ip community-list standard 1_86_145 permit 65000:1 0:86 0:145 ip community-list standard 1_87_144 permit 65000:1 0:87 0:144 ip community-list standard 1_88_143 permit 65000:1 0:88 0:143 ip community-list standard 1_89_142 permit 65000:1 0:89 0:142 ip community-list standard 1_90_141 permit 65000:1 0:90 0:141 ip community-list standard 1_91_140 permit 65000:1 0:91 0:140 ip community-list standard 1_92_139 permit 65000:1 0:92 0:139 ip community-list standard 1_93_138 permit 65000:1 0:93 0:138 ip community-list standard 1_94_137 permit 65000:1 0:94 0:137 ip community-list standard 1_95_136 permit 65000:1 0:95 0:136 ip community-list standard 1_96_135 permit 65000:1 0:96 0:135 ip community-list standard 1_97_134 permit 65000:1 0:97 0:134 ip community-list standard 1_98_133 permit 65000:1 0:98 0:133 ip community-list standard 1_99_132 permit 65000:1 0:99 0:132 ip community-list standard 1_100_131 permit 65000:1 0:100 0:131 ip community-list standard 1_101_130 permit 65000:1 0:101 0:130 ip community-list standard 1_102_129 permit 65000:1 0:102 0:129 ip community-list standard 1_103_128 permit 65000:1 0:103 0:128 ip community-list standard 1_104_127 permit 65000:1 0:104 0:127 ip community-list standard 1_105_126 permit 65000:1 0:105 0:126 ip community-list standard 1_106_125 permit 65000:1 0:106 0:125 ip community-list standard 1_107_124 permit 65000:1 0:107 0:124 ip community-list standard 1_108_123 permit 65000:1 0:108 0:123 ip community-list standard 1_109_122 permit 65000:1 0:109 0:122 ip community-list standard 1_110_121 permit 65000:1 0:110 0:121 ip community-list standard 1_111_120 permit 65000:1 0:111 0:120 ip community-list standard 1_112_119 permit 65000:1 0:112 0:119 ip community-list standard 1_113_118 permit 65000:1 0:113 0:118 ip community-list standard 1_114_117 permit 65000:1 0:114 0:117 ip community-list standard 1_115_116 permit 65000:1 0:115 0:116 ip community-list expanded c231 permit 1 ^65000:4_0:231_0:1$ ip community-list expanded c231 permit 2 ^65000:3_0:232_0:1$ ip community-list expanded c231 permit 3 ^65000:3_0:233_0:2$ ip community-list expanded c231 permit 4 ^65000:3_0:234_0:3$ ip community-list expanded c231 permit 5 ^65000:3_0:235_0:4$ ip community-list expanded c231 permit 6 ^65000:3_0:236_0:5$ ip community-list expanded c231 permit 7 ^65000:3_0:237_0:6$ ip community-list expanded c231 permit 8 ^65000:3_0:238_0:7$ ip community-list expanded c231 permit 9 ^65000:3_0:239_0:8$ ip community-list expanded c231 permit 10 ^65000:3_0:240_0:9$ ip community-list expanded c231 permit 11 ^65000:3_0:241_0:10$ ip community-list expanded c231 permit 12 ^65000:3_0:242_0:11$ ip community-list expanded c231 permit 13 ^65000:3_0:243_0:12$ ip community-list expanded c231 permit 14 ^65000:3_0:244_0:13$ ip community-list expanded c231 permit 15 ^65000:3_0:245_0:14$ ip community-list expanded c231 permit 16 ^65000:3_0:246_0:15$ ip community-list expanded c231 permit 17 ^65000:3_0:247_0:16$ ip community-list expanded c231 permit 18 ^65000:3_0:248_0:17$ ip community-list expanded c231 permit 19 ^65000:3_0:249_0:18$ ip community-list expanded c231 permit 20 ^65000:3_0:250_0:19$ ip community-list expanded c231 permit 21 ^65000:3_0:251_0:20$ ip community-list expanded c231 permit 22 ^65000:3_0:252_0:21$ ip community-list expanded c231 permit 23 ^65000:3_0:253_0:22$ ip community-list expanded c231 permit 24 ^65000:3_0:254_0:23$ ip community-list expanded c231 permit 25 ^65000:3_0:255_0:24$ ip community-list expanded c231 permit 26 ^65000:3_0:256_0:25$ route-map calculator permit 18938 match community 1_1_230 2_1_231 1_2_229 2_3_77 1_3_228 set community 0:231 route-map calculator permit 18939 match community 1_4_227 1_5_226 1_6_225 2_7_33 1_7_224 set community 0:231 route-map calculator permit 18940 match community 1_8_223 1_9_222 1_10_221 2_11_21 1_11_220 set community 0:231 route-map calculator permit 18941 match community 1_12_219 1_13_218 1_14_217 1_15_216 1_16_215 set community 0:231 route-map calculator permit 18942 match community 1_17_214 1_18_213 1_19_212 1_20_211 1_21_210 set community 0:231 route-map calculator permit 18943 match community 1_22_209 1_23_208 1_24_207 1_25_206 1_26_205 set community 0:231 route-map calculator permit 18944 match community 1_27_204 1_28_203 1_29_202 1_30_201 1_31_200 set community 0:231 route-map calculator permit 18945 match community 1_32_199 1_33_198 1_34_197 1_35_196 1_36_195 set community 0:231 route-map calculator permit 18946 match community 1_37_194 1_38_193 1_39_192 1_40_191 1_41_190 set community 0:231 route-map calculator permit 18947 match community 1_42_189 1_43_188 1_44_187 1_45_186 1_46_185 set community 0:231 route-map calculator permit 18948 match community 1_47_184 1_48_183 1_49_182 1_50_181 1_51_180 set community 0:231 route-map calculator permit 18949 match community 1_52_179 1_53_178 1_54_177 1_55_176 1_56_175 set community 0:231 route-map calculator permit 18950 match community 1_57_174 1_58_173 1_59_172 1_60_171 1_61_170 set community 0:231 route-map calculator permit 18951 match community 1_62_169 1_63_168 1_64_167 1_65_166 1_66_165 set community 0:231 route-map calculator permit 18952 match community 1_67_164 1_68_163 1_69_162 1_70_161 1_71_160 set community 0:231 route-map calculator permit 18953 match community 1_72_159 1_73_158 1_74_157 1_75_156 1_76_155 set community 0:231 route-map calculator permit 18954 match community 1_77_154 1_78_153 1_79_152 1_80_151 1_81_150 set community 0:231 route-map calculator permit 18955 match community 1_82_149 1_83_148 1_84_147 1_85_146 1_86_145 set community 0:231 route-map calculator permit 18956 match community 1_87_144 1_88_143 1_89_142 1_90_141 1_91_140 set community 0:231 route-map calculator permit 18957 match community 1_92_139 1_93_138 1_94_137 1_95_136 1_96_135 set community 0:231 route-map calculator permit 18958 match community 1_97_134 1_98_133 1_99_132 1_100_131 1_101_130 set community 0:231 route-map calculator permit 18959 match community 1_102_129 1_103_128 1_104_127 1_105_126 1_106_125 set community 0:231 route-map calculator permit 18960 match community 1_107_124 1_108_123 1_109_122 1_110_121 1_111_120 set community 0:231 route-map calculator permit 18961 match community 1_112_119 1_113_118 1_114_117 1_115_116 c4_231_1 set community 0:231 route-map calculator permit 18962 match community c3_232_1 c3_233_2 c3_234_3 c3_235_4 c3_236_5 set community 0:231 route-map calculator permit 18963 match community c3_237_6 c3_238_7 c3_239_8 c3_240_9 c3_241_10 set community 0:231 route-map calculator permit 18964 match community c3_242_11 c3_243_12 c3_244_13 c3_245_14 c3_246_15 set community 0:231 route-map calculator permit 18965 match community c3_247_16 c3_248_17 c3_249_18 c3_250_19 c3_251_20 set community 0:231 route-map calculator permit 18966 match community c3_252_21 c3_253_22 c3_254_23 c3_255_24 c3_256_25 set community 0:231 ip community-list standard 2_57_161 permit 65000:2 0:57 0:161 ip community-list standard 2_69_133 permit 65000:2 0:69 0:133 route-map calculator permit 18967 match community 2_57_161 2_69_133 set community 0:9177 ip community-list standard 2_19_174 permit 65000:2 0:19 0:174 ip community-list standard 2_29_114 permit 65000:2 0:29 0:114 ip community-list standard 2_38_87 permit 65000:2 0:38 0:87 ip community-list standard 2_57_58 permit 65000:2 0:57 0:58 route-map calculator permit 18968 match community 2_19_174 2_29_114 2_38_87 2_57_58 set community 0:3306 ip community-list standard 2_19_109 permit 65000:2 0:19 0:109 route-map calculator permit 18969 match community 2_19_109 set community 0:2071 ip community-list standard 2_142_227 permit 65000:2 0:142 0:227 route-map calculator permit 18970 match community 2_142_227 set community 0:32234 ip community-list standard 2_13_241 permit 65000:2 0:13 0:241 route-map calculator permit 18971 match community 2_13_241 set community 0:3133 ip community-list standard 2_167_175 permit 65000:2 0:167 0:175 route-map calculator permit 18972 match community 2_167_175 set community 0:29225 ip community-list standard 2_76_242 permit 65000:2 0:76 0:242 ip community-list standard 2_88_209 permit 65000:2 0:88 0:209 ip community-list standard 2_121_152 permit 65000:2 0:121 0:152 route-map calculator permit 18973 match community 2_76_242 2_88_209 2_121_152 set community 0:18392 ip community-list standard 2_95_217 permit 65000:2 0:95 0:217 ip community-list standard 2_133_155 permit 65000:2 0:133 0:155 route-map calculator permit 18974 match community 2_95_217 2_133_155 set community 0:20615 ip community-list standard 2_79_200 permit 65000:2 0:79 0:200 ip community-list standard 2_100_158 permit 65000:2 0:100 0:158 route-map calculator permit 18975 match community 2_79_200 2_100_158 set community 0:15800 ip community-list standard 2_90_218 permit 65000:2 0:90 0:218 ip community-list standard 2_109_180 permit 65000:2 0:109 0:180 route-map calculator permit 18976 match community 2_90_218 2_109_180 set community 0:19620 ip community-list standard 2_191_246 permit 65000:2 0:191 0:246 route-map calculator permit 18977 match community 2_191_246 set community 0:46986 ip community-list standard 2_121_223 permit 65000:2 0:121 0:223 route-map calculator permit 18978 match community 2_121_223 set community 0:26983 ip community-list standard 2_148_228 permit 65000:2 0:148 0:228 ip community-list standard 2_152_222 permit 65000:2 0:152 0:222 route-map calculator permit 18979 match community 2_148_228 2_152_222 set community 0:33744 ip community-list standard 2_27_107 permit 65000:2 0:27 0:107 route-map calculator permit 18980 match community 2_27_107 set community 0:2889 ip community-list standard 2_217_246 permit 65000:2 0:217 0:246 route-map calculator permit 18981 match community 2_217_246 set community 0:53382 ip community-list standard 2_62_239 permit 65000:2 0:62 0:239 route-map calculator permit 18982 match community 2_62_239 set community 0:14818 ip community-list standard 2_11_227 permit 65000:2 0:11 0:227 route-map calculator permit 18983 match community 2_11_227 set community 0:2497 ip community-list standard 2_70_206 permit 65000:2 0:70 0:206 ip community-list standard 2_103_140 permit 65000:2 0:103 0:140 route-map calculator permit 18984 match community 2_70_206 2_103_140 set community 0:14420 ip community-list standard 2_36_199 permit 65000:2 0:36 0:199 route-map calculator permit 18985 match community 2_36_199 set community 0:7164 ip community-list standard 2_50_151 permit 65000:2 0:50 0:151 route-map calculator permit 18986 match community 2_50_151 set community 0:7550 ip community-list standard 2_50_238 permit 65000:2 0:50 0:238 ip community-list standard 2_68_175 permit 65000:2 0:68 0:175 ip community-list standard 2_70_170 permit 65000:2 0:70 0:170 ip community-list standard 2_85_140 permit 65000:2 0:85 0:140 ip community-list standard 2_100_119 permit 65000:2 0:100 0:119 route-map calculator permit 18987 match community 2_50_238 2_68_175 2_70_170 2_85_140 2_100_119 set community 0:11900 ip community-list standard 2_162_246 permit 65000:2 0:162 0:246 ip community-list standard 2_164_243 permit 65000:2 0:164 0:243 route-map calculator permit 18988 match community 2_162_246 2_164_243 set community 0:39852 ip community-list standard 2_45_222 permit 65000:2 0:45 0:222 ip community-list standard 2_54_185 permit 65000:2 0:54 0:185 ip community-list standard 2_74_135 permit 65000:2 0:74 0:135 ip community-list standard 2_90_111 permit 65000:2 0:90 0:111 route-map calculator permit 18989 match community 2_45_222 2_54_185 2_74_135 2_90_111 set community 0:9990 ip community-list standard 2_183_248 permit 65000:2 0:183 0:248 ip community-list standard 2_186_244 permit 65000:2 0:186 0:244 route-map calculator permit 18990 match community 2_183_248 2_186_244 set community 0:45384 ip community-list standard 2_28_238 permit 65000:2 0:28 0:238 ip community-list standard 2_34_196 permit 65000:2 0:34 0:196 ip community-list standard 2_49_136 permit 65000:2 0:49 0:136 ip community-list standard 2_56_119 permit 65000:2 0:56 0:119 ip community-list standard 2_68_98 permit 65000:2 0:68 0:98 route-map calculator permit 18991 match community 2_28_238 2_34_196 2_49_136 2_56_119 2_68_98 set community 0:6664 ip community-list standard 2_4_149 permit 65000:2 0:4 0:149 route-map calculator permit 18992 match community 2_4_149 set community 0:596 ip community-list standard 2_39_229 permit 65000:2 0:39 0:229 route-map calculator permit 18993 match community 2_39_229 set community 0:8931 ip community-list standard 2_158_164 permit 65000:2 0:158 0:164 route-map calculator permit 18994 match community 2_158_164 set community 0:25912 ip community-list standard 2_225_241 permit 65000:2 0:225 0:241 route-map calculator permit 18995 match community 2_225_241 set community 0:54225 ip community-list standard 2_95_151 permit 65000:2 0:95 0:151 route-map calculator permit 18996 match community 2_95_151 set community 0:14345 ip community-list standard 2_155_194 permit 65000:2 0:155 0:194 route-map calculator permit 18997 match community 2_155_194 set community 0:30070 ip community-list standard 2_28_228 permit 65000:2 0:28 0:228 ip community-list standard 2_38_168 permit 65000:2 0:38 0:168 ip community-list standard 2_42_152 permit 65000:2 0:42 0:152 ip community-list standard 2_48_133 permit 65000:2 0:48 0:133 ip community-list standard 2_56_114 permit 65000:2 0:56 0:114 ip community-list standard 2_57_112 permit 65000:2 0:57 0:112 ip community-list standard 2_76_84 permit 65000:2 0:76 0:84 route-map calculator permit 18998 match community 2_28_228 2_38_168 2_42_152 2_48_133 2_56_114 set community 0:6384 route-map calculator permit 18999 match community 2_57_112 2_76_84 set community 0:6384 ip community-list standard 2_5_232 permit 65000:2 0:5 0:232 ip community-list standard 2_8_145 permit 65000:2 0:8 0:145 ip community-list standard 2_10_116 permit 65000:2 0:10 0:116 ip community-list standard 2_20_58 permit 65000:2 0:20 0:58 ip community-list standard 2_29_40 permit 65000:2 0:29 0:40 route-map calculator permit 19000 match community 2_5_232 2_8_145 2_10_116 2_20_58 2_29_40 set community 0:1160 ip community-list standard 2_170_185 permit 65000:2 0:170 0:185 route-map calculator permit 19001 match community 2_170_185 set community 0:31450 ip community-list standard 2_49_236 permit 65000:2 0:49 0:236 ip community-list standard 2_59_196 permit 65000:2 0:59 0:196 ip community-list standard 2_98_118 permit 65000:2 0:98 0:118 route-map calculator permit 19002 match community 2_49_236 2_59_196 2_98_118 set community 0:11564 ip community-list standard 2_17_179 permit 65000:2 0:17 0:179 route-map calculator permit 19003 match community 2_17_179 set community 0:3043 ip community-list standard 2_232_255 permit 65000:2 0:232 0:255 route-map calculator permit 19004 match community 2_232_255 set community 0:59160 ip community-list standard 2_32_201 permit 65000:2 0:32 0:201 ip community-list standard 2_48_134 permit 65000:2 0:48 0:134 ip community-list standard 2_67_96 permit 65000:2 0:67 0:96 route-map calculator permit 19005 match community 2_32_201 2_48_134 2_67_96 set community 0:6432 ip community-list standard 2_205_225 permit 65000:2 0:205 0:225 route-map calculator permit 19006 match community 2_205_225 set community 0:46125 ip community-list standard 2_77_226 permit 65000:2 0:77 0:226 ip community-list standard 2_113_154 permit 65000:2 0:113 0:154 route-map calculator permit 19007 match community 2_77_226 2_113_154 set community 0:17402 ip community-list standard 2_134_185 permit 65000:2 0:134 0:185 route-map calculator permit 19008 match community 2_134_185 set community 0:24790 ip community-list standard 2_190_191 permit 65000:2 0:190 0:191 route-map calculator permit 19009 match community 2_190_191 set community 0:36290 ip community-list standard 2_110_197 permit 65000:2 0:110 0:197 route-map calculator permit 19010 match community 2_110_197 set community 0:21670 ip community-list standard 2_11_157 permit 65000:2 0:11 0:157 route-map calculator permit 19011 match community 2_11_157 set community 0:1727 ip community-list standard 2_105_227 permit 65000:2 0:105 0:227 route-map calculator permit 19012 match community 2_105_227 set community 0:23835 ip community-list standard 2_7_67 permit 65000:2 0:7 0:67 ip community-list standard 1_213_256 permit 65000:1 0:213 0:256 ip community-list standard 1_214_255 permit 65000:1 0:214 0:255 ip community-list standard 1_215_254 permit 65000:1 0:215 0:254 ip community-list standard 1_216_253 permit 65000:1 0:216 0:253 ip community-list standard 1_217_252 permit 65000:1 0:217 0:252 ip community-list standard 1_218_251 permit 65000:1 0:218 0:251 ip community-list standard 1_219_250 permit 65000:1 0:219 0:250 ip community-list standard 1_220_249 permit 65000:1 0:220 0:249 ip community-list standard 1_221_248 permit 65000:1 0:221 0:248 ip community-list standard 1_222_247 permit 65000:1 0:222 0:247 ip community-list standard 1_223_246 permit 65000:1 0:223 0:246 ip community-list standard 1_224_245 permit 65000:1 0:224 0:245 ip community-list standard 1_225_244 permit 65000:1 0:225 0:244 ip community-list standard 1_226_243 permit 65000:1 0:226 0:243 ip community-list standard 1_227_242 permit 65000:1 0:227 0:242 ip community-list standard 1_228_241 permit 65000:1 0:228 0:241 ip community-list standard 1_229_240 permit 65000:1 0:229 0:240 ip community-list standard 1_230_239 permit 65000:1 0:230 0:239 ip community-list standard 1_231_238 permit 65000:1 0:231 0:238 ip community-list standard 1_232_237 permit 65000:1 0:232 0:237 ip community-list standard 1_233_236 permit 65000:1 0:233 0:236 ip community-list standard 1_234_235 permit 65000:1 0:234 0:235 route-map calculator permit 19013 match community 2_7_67 1_213_256 1_214_255 1_215_254 1_216_253 set community 0:469 route-map calculator permit 19014 match community 1_217_252 1_218_251 1_219_250 1_220_249 1_221_248 set community 0:469 route-map calculator permit 19015 match community 1_222_247 1_223_246 1_224_245 1_225_244 1_226_243 set community 0:469 route-map calculator permit 19016 match community 1_227_242 1_228_241 1_229_240 1_230_239 1_231_238 set community 0:469 route-map calculator permit 19017 match community 1_232_237 1_233_236 1_234_235 set community 0:469 ip community-list standard 2_27_167 permit 65000:2 0:27 0:167 route-map calculator permit 19018 match community 2_27_167 set community 0:4509 ip community-list standard 2_24_208 permit 65000:2 0:24 0:208 ip community-list standard 2_26_192 permit 65000:2 0:26 0:192 ip community-list standard 2_32_156 permit 65000:2 0:32 0:156 ip community-list standard 2_39_128 permit 65000:2 0:39 0:128 ip community-list standard 2_48_104 permit 65000:2 0:48 0:104 ip community-list standard 2_52_96 permit 65000:2 0:52 0:96 ip community-list standard 2_64_78 permit 65000:2 0:64 0:78 route-map calculator permit 19019 match community 2_24_208 2_26_192 2_32_156 2_39_128 2_48_104 set community 0:4992 route-map calculator permit 19020 match community 2_52_96 2_64_78 set community 0:4992 ip community-list standard 2_22_248 permit 65000:2 0:22 0:248 ip community-list standard 2_31_176 permit 65000:2 0:31 0:176 ip community-list standard 2_44_124 permit 65000:2 0:44 0:124 ip community-list standard 2_62_88 permit 65000:2 0:62 0:88 route-map calculator permit 19021 match community 2_22_248 2_31_176 2_44_124 2_62_88 set community 0:5456 ip community-list standard 2_115_233 permit 65000:2 0:115 0:233 route-map calculator permit 19022 match community 2_115_233 set community 0:26795 ip community-list standard 2_79_241 permit 65000:2 0:79 0:241 route-map calculator permit 19023 match community 2_79_241 set community 0:19039 ip community-list standard 2_178_244 permit 65000:2 0:178 0:244 route-map calculator permit 19024 match community 2_178_244 set community 0:43432 ip community-list standard 2_148_241 permit 65000:2 0:148 0:241 route-map calculator permit 19025 match community 2_148_241 set community 0:35668 ip community-list standard 2_11_199 permit 65000:2 0:11 0:199 route-map calculator permit 19026 match community 2_11_199 set community 0:2189 ip community-list standard 2_159_232 permit 65000:2 0:159 0:232 ip community-list standard 2_174_212 permit 65000:2 0:174 0:212 route-map calculator permit 19027 match community 2_159_232 2_174_212 set community 0:36888 ip community-list standard 2_31_173 permit 65000:2 0:31 0:173 route-map calculator permit 19028 match community 2_31_173 set community 0:5363 ip community-list standard 2_131_251 permit 65000:2 0:131 0:251 route-map calculator permit 19029 match community 2_131_251 set community 0:32881 ip community-list standard 2_28_235 permit 65000:2 0:28 0:235 ip community-list standard 2_35_188 permit 65000:2 0:35 0:188 ip community-list standard 2_47_140 permit 65000:2 0:47 0:140 ip community-list standard 2_70_94 permit 65000:2 0:70 0:94 route-map calculator permit 19030 match community 2_28_235 2_35_188 2_47_140 2_70_94 set community 0:6580 ip community-list standard 2_71_164 permit 65000:2 0:71 0:164 ip community-list standard 2_82_142 permit 65000:2 0:82 0:142 route-map calculator permit 19031 match community 2_71_164 2_82_142 set community 0:11644 ip community-list standard 2_99_181 permit 65000:2 0:99 0:181 route-map calculator permit 19032 match community 2_99_181 set community 0:17919 ip community-list standard 2_122_217 permit 65000:2 0:122 0:217 route-map calculator permit 19033 match community 2_122_217 set community 0:26474 ip community-list standard 2_167_206 permit 65000:2 0:167 0:206 route-map calculator permit 19034 match community 2_167_206 set community 0:34402 ip community-list standard 2_155_219 permit 65000:2 0:155 0:219 route-map calculator permit 19035 match community 2_155_219 set community 0:33945 ip community-list standard 2_32_164 permit 65000:2 0:32 0:164 ip community-list standard 2_41_128 permit 65000:2 0:41 0:128 ip community-list standard 2_64_82 permit 65000:2 0:64 0:82 route-map calculator permit 19036 match community 2_32_164 2_41_128 2_64_82 set community 0:5248 ip community-list standard 2_167_256 permit 65000:2 0:167 0:256 route-map calculator permit 19037 match community 2_167_256 set community 0:42752 ip community-list standard 2_164_182 permit 65000:2 0:164 0:182 route-map calculator permit 19038 match community 2_164_182 set community 0:29848 ip community-list standard 2_163_236 permit 65000:2 0:163 0:236 route-map calculator permit 19039 match community 2_163_236 set community 0:38468 ip community-list standard 2_151_221 permit 65000:2 0:151 0:221 route-map calculator permit 19040 match community 2_151_221 set community 0:33371 ip community-list standard 2_141_232 permit 65000:2 0:141 0:232 ip community-list standard 2_174_188 permit 65000:2 0:174 0:188 route-map calculator permit 19041 match community 2_141_232 2_174_188 set community 0:32712 ip community-list standard 2_97_199 permit 65000:2 0:97 0:199 route-map calculator permit 19042 match community 2_97_199 set community 0:19303 ip community-list standard 2_21_218 permit 65000:2 0:21 0:218 ip community-list standard 2_42_109 permit 65000:2 0:42 0:109 route-map calculator permit 19043 match community 2_21_218 2_42_109 set community 0:4578 ip community-list standard 2_79_103 permit 65000:2 0:79 0:103 route-map calculator permit 19044 match community 2_79_103 set community 0:8137 ip community-list standard 2_19_222 permit 65000:2 0:19 0:222 ip community-list standard 2_37_114 permit 65000:2 0:37 0:114 ip community-list standard 2_38_111 permit 65000:2 0:38 0:111 ip community-list standard 2_57_74 permit 65000:2 0:57 0:74 route-map calculator permit 19045 match community 2_19_222 2_37_114 2_38_111 2_57_74 set community 0:4218 ip community-list standard 2_141_214 permit 65000:2 0:141 0:214 route-map calculator permit 19046 match community 2_141_214 set community 0:30174 ip community-list standard 2_45_199 permit 65000:2 0:45 0:199 route-map calculator permit 19047 match community 2_45_199 set community 0:8955 ip community-list standard 2_65_191 permit 65000:2 0:65 0:191 route-map calculator permit 19048 match community 2_65_191 set community 0:12415 ip community-list standard 2_71_157 permit 65000:2 0:71 0:157 route-map calculator permit 19049 match community 2_71_157 set community 0:11147 ip community-list standard 2_39_179 permit 65000:2 0:39 0:179 route-map calculator permit 19050 match community 2_39_179 set community 0:6981 ip community-list standard 2_173_223 permit 65000:2 0:173 0:223 route-map calculator permit 19051 match community 2_173_223 set community 0:38579 ip community-list standard 2_70_181 permit 65000:2 0:70 0:181 route-map calculator permit 19052 match community 2_70_181 set community 0:12670 ip community-list standard 2_204_242 permit 65000:2 0:204 0:242 route-map calculator permit 19053 match community 2_204_242 set community 0:49368 ip community-list standard 2_103_119 permit 65000:2 0:103 0:119 route-map calculator permit 19054 match community 2_103_119 set community 0:12257 ip community-list standard 2_92_229 permit 65000:2 0:92 0:229 route-map calculator permit 19055 match community 2_92_229 set community 0:21068 ip community-list standard 2_167_168 permit 65000:2 0:167 0:168 route-map calculator permit 19056 match community 2_167_168 set community 0:28056 ip community-list standard 2_68_256 permit 65000:2 0:68 0:256 ip community-list standard 2_128_136 permit 65000:2 0:128 0:136 route-map calculator permit 19057 match community 2_68_256 2_128_136 set community 0:17408 ip community-list standard 2_11_156 permit 65000:2 0:11 0:156 ip community-list standard 2_12_143 permit 65000:2 0:12 0:143 ip community-list standard 2_13_132 permit 65000:2 0:13 0:132 ip community-list standard 2_22_78 permit 65000:2 0:22 0:78 ip community-list standard 2_26_66 permit 65000:2 0:26 0:66 ip community-list standard 2_33_52 permit 65000:2 0:33 0:52 ip community-list standard 2_39_44 permit 65000:2 0:39 0:44 route-map calculator permit 19058 match community 2_11_156 2_12_143 2_13_132 2_22_78 2_26_66 set community 0:1716 route-map calculator permit 19059 match community 2_33_52 2_39_44 set community 0:1716 ip community-list standard 2_73_245 permit 65000:2 0:73 0:245 route-map calculator permit 19060 match community 2_73_245 set community 0:17885 ip community-list standard 2_19_106 permit 65000:2 0:19 0:106 ip community-list standard 2_38_53 permit 65000:2 0:38 0:53 route-map calculator permit 19061 match community 2_19_106 2_38_53 set community 0:2014 ip community-list standard 2_86_250 permit 65000:2 0:86 0:250 ip community-list standard 2_100_215 permit 65000:2 0:100 0:215 ip community-list standard 2_125_172 permit 65000:2 0:125 0:172 route-map calculator permit 19062 match community 2_86_250 2_100_215 2_125_172 set community 0:21500 ip community-list standard 2_196_222 permit 65000:2 0:196 0:222 route-map calculator permit 19063 match community 2_196_222 set community 0:43512 ip community-list standard 2_38_177 permit 65000:2 0:38 0:177 ip community-list standard 2_57_118 permit 65000:2 0:57 0:118 ip community-list standard 2_59_114 permit 65000:2 0:59 0:114 route-map calculator permit 19064 match community 2_38_177 2_57_118 2_59_114 set community 0:6726 ip community-list standard 2_40_169 permit 65000:2 0:40 0:169 ip community-list standard 2_52_130 permit 65000:2 0:52 0:130 ip community-list standard 2_65_104 permit 65000:2 0:65 0:104 route-map calculator permit 19065 match community 2_40_169 2_52_130 2_65_104 set community 0:6760 ip community-list standard 2_2_213 permit 65000:2 0:2 0:213 ip community-list standard 2_3_142 permit 65000:2 0:3 0:142 ip community-list standard 2_6_71 permit 65000:2 0:6 0:71 ip community-list standard 1_170_256 permit 65000:1 0:170 0:256 ip community-list standard 1_171_255 permit 65000:1 0:171 0:255 ip community-list standard 1_172_254 permit 65000:1 0:172 0:254 ip community-list standard 1_173_253 permit 65000:1 0:173 0:253 ip community-list standard 1_174_252 permit 65000:1 0:174 0:252 ip community-list standard 1_175_251 permit 65000:1 0:175 0:251 ip community-list standard 1_176_250 permit 65000:1 0:176 0:250 ip community-list standard 1_177_249 permit 65000:1 0:177 0:249 ip community-list standard 1_178_248 permit 65000:1 0:178 0:248 ip community-list standard 1_179_247 permit 65000:1 0:179 0:247 ip community-list standard 1_180_246 permit 65000:1 0:180 0:246 ip community-list standard 1_181_245 permit 65000:1 0:181 0:245 ip community-list standard 1_182_244 permit 65000:1 0:182 0:244 ip community-list standard 1_183_243 permit 65000:1 0:183 0:243 ip community-list standard 1_184_242 permit 65000:1 0:184 0:242 ip community-list standard 1_185_241 permit 65000:1 0:185 0:241 ip community-list standard 1_186_240 permit 65000:1 0:186 0:240 ip community-list standard 1_187_239 permit 65000:1 0:187 0:239 ip community-list standard 1_188_238 permit 65000:1 0:188 0:238 ip community-list standard 1_189_237 permit 65000:1 0:189 0:237 ip community-list standard 1_190_236 permit 65000:1 0:190 0:236 ip community-list standard 1_191_235 permit 65000:1 0:191 0:235 ip community-list standard 1_192_234 permit 65000:1 0:192 0:234 ip community-list standard 1_193_233 permit 65000:1 0:193 0:233 ip community-list standard 1_194_232 permit 65000:1 0:194 0:232 ip community-list standard 1_195_231 permit 65000:1 0:195 0:231 ip community-list standard 1_196_230 permit 65000:1 0:196 0:230 ip community-list standard 1_197_229 permit 65000:1 0:197 0:229 ip community-list standard 1_198_228 permit 65000:1 0:198 0:228 ip community-list standard 1_199_227 permit 65000:1 0:199 0:227 ip community-list standard 1_200_226 permit 65000:1 0:200 0:226 ip community-list standard 1_201_225 permit 65000:1 0:201 0:225 ip community-list standard 1_202_224 permit 65000:1 0:202 0:224 ip community-list standard 1_203_223 permit 65000:1 0:203 0:223 ip community-list standard 1_204_222 permit 65000:1 0:204 0:222 ip community-list standard 1_205_221 permit 65000:1 0:205 0:221 ip community-list standard 1_206_220 permit 65000:1 0:206 0:220 ip community-list standard 1_207_219 permit 65000:1 0:207 0:219 ip community-list standard 1_208_218 permit 65000:1 0:208 0:218 ip community-list standard 1_209_217 permit 65000:1 0:209 0:217 ip community-list standard 1_210_216 permit 65000:1 0:210 0:216 ip community-list standard 1_211_215 permit 65000:1 0:211 0:215 ip community-list standard 1_212_214 permit 65000:1 0:212 0:214 ip community-list standard 1_213_213 permit 65000:1 0:213 0:213 route-map calculator permit 19066 match community 2_2_213 2_3_142 2_6_71 1_170_256 1_171_255 set community 0:426 route-map calculator permit 19067 match community 1_172_254 1_173_253 1_174_252 1_175_251 1_176_250 set community 0:426 route-map calculator permit 19068 match community 1_177_249 1_178_248 1_179_247 1_180_246 1_181_245 set community 0:426 route-map calculator permit 19069 match community 1_182_244 1_183_243 1_184_242 1_185_241 1_186_240 set community 0:426 route-map calculator permit 19070 match community 1_187_239 1_188_238 1_189_237 1_190_236 1_191_235 set community 0:426 route-map calculator permit 19071 match community 1_192_234 1_193_233 1_194_232 1_195_231 1_196_230 set community 0:426 route-map calculator permit 19072 match community 1_197_229 1_198_228 1_199_227 1_200_226 1_201_225 set community 0:426 route-map calculator permit 19073 match community 1_202_224 1_203_223 1_204_222 1_205_221 1_206_220 set community 0:426 route-map calculator permit 19074 match community 1_207_219 1_208_218 1_209_217 1_210_216 1_211_215 set community 0:426 route-map calculator permit 19075 match community 1_212_214 1_213_213 set community 0:426 ip community-list standard 2_10_201 permit 65000:2 0:10 0:201 ip community-list standard 2_15_134 permit 65000:2 0:15 0:134 ip community-list standard 2_30_67 permit 65000:2 0:30 0:67 route-map calculator permit 19076 match community 2_10_201 2_15_134 2_30_67 set community 0:2010 ip community-list standard 2_47_89 permit 65000:2 0:47 0:89 route-map calculator permit 19077 match community 2_47_89 set community 0:4183 ip community-list standard 2_7_189 permit 65000:2 0:7 0:189 ip community-list standard 2_9_147 permit 65000:2 0:9 0:147 ip community-list standard 2_21_63 permit 65000:2 0:21 0:63 ip community-list standard 2_27_49 permit 65000:2 0:27 0:49 route-map calculator permit 19078 match community 2_7_189 2_9_147 2_21_63 2_27_49 set community 0:1323 ip community-list standard 2_55_167 permit 65000:2 0:55 0:167 route-map calculator permit 19079 match community 2_55_167 set community 0:9185 ip community-list standard 2_143_214 permit 65000:2 0:143 0:214 route-map calculator permit 19080 match community 2_143_214 set community 0:30602 ip community-list standard 2_61_247 permit 65000:2 0:61 0:247 route-map calculator permit 19081 match community 2_61_247 set community 0:15067 ip community-list standard 2_63_243 permit 65000:2 0:63 0:243 ip community-list standard 2_81_189 permit 65000:2 0:81 0:189 route-map calculator permit 19082 match community 2_63_243 2_81_189 set community 0:15309 ip community-list standard 2_7_131 permit 65000:2 0:7 0:131 route-map calculator permit 19083 match community 2_7_131 set community 0:917 ip community-list standard 2_169_239 permit 65000:2 0:169 0:239 route-map calculator permit 19084 match community 2_169_239 set community 0:40391 ip community-list standard 2_49_203 permit 65000:2 0:49 0:203 route-map calculator permit 19085 match community 2_49_203 set community 0:9947 ip community-list standard 2_158_249 permit 65000:2 0:158 0:249 ip community-list standard 2_166_237 permit 65000:2 0:166 0:237 route-map calculator permit 19086 match community 2_158_249 2_166_237 set community 0:39342 ip community-list standard 2_111_251 permit 65000:2 0:111 0:251 route-map calculator permit 19087 match community 2_111_251 set community 0:27861 ip community-list standard 2_44_166 permit 65000:2 0:44 0:166 ip community-list standard 2_83_88 permit 65000:2 0:83 0:88 route-map calculator permit 19088 match community 2_44_166 2_83_88 set community 0:7304 ip community-list standard 2_52_157 permit 65000:2 0:52 0:157 route-map calculator permit 19089 match community 2_52_157 set community 0:8164 ip community-list standard 2_191_223 permit 65000:2 0:191 0:223 route-map calculator permit 19090 match community 2_191_223 set community 0:42593 ip community-list standard 2_106_201 permit 65000:2 0:106 0:201 ip community-list standard 2_134_159 permit 65000:2 0:134 0:159 route-map calculator permit 19091 match community 2_106_201 2_134_159 set community 0:21306 ip community-list standard 2_91_240 permit 65000:2 0:91 0:240 ip community-list standard 2_104_210 permit 65000:2 0:104 0:210 ip community-list standard 2_105_208 permit 65000:2 0:105 0:208 ip community-list standard 2_112_195 permit 65000:2 0:112 0:195 ip community-list standard 2_120_182 permit 65000:2 0:120 0:182 ip community-list standard 2_130_168 permit 65000:2 0:130 0:168 ip community-list standard 2_140_156 permit 65000:2 0:140 0:156 route-map calculator permit 19092 match community 2_91_240 2_104_210 2_105_208 2_112_195 2_120_182 set community 0:21840 route-map calculator permit 19093 match community 2_130_168 2_140_156 set community 0:21840 ip community-list standard 2_3_197 permit 65000:2 0:3 0:197 route-map calculator permit 19094 match community 2_3_197 set community 0:591 ip community-list standard 2_24_131 permit 65000:2 0:24 0:131 route-map calculator permit 19095 match community 2_24_131 set community 0:3144 ip community-list standard 2_134_224 permit 65000:2 0:134 0:224 route-map calculator permit 19096 match community 2_134_224 set community 0:30016 ip community-list standard 2_4_199 permit 65000:2 0:4 0:199 route-map calculator permit 19097 match community 2_4_199 set community 0:796 ip community-list standard 2_116_173 permit 65000:2 0:116 0:173 route-map calculator permit 19098 match community 2_116_173 set community 0:20068 ip community-list standard 2_6_153 permit 65000:2 0:6 0:153 ip community-list standard 2_9_102 permit 65000:2 0:9 0:102 ip community-list standard 2_17_54 permit 65000:2 0:17 0:54 ip community-list standard 2_18_51 permit 65000:2 0:18 0:51 ip community-list standard 2_27_34 permit 65000:2 0:27 0:34 route-map calculator permit 19099 match community 2_6_153 2_9_102 2_17_54 2_18_51 2_27_34 set community 0:918 ip community-list standard 2_70_242 permit 65000:2 0:70 0:242 ip community-list standard 2_77_220 permit 65000:2 0:77 0:220 ip community-list standard 2_110_154 permit 65000:2 0:110 0:154 ip community-list standard 2_121_140 permit 65000:2 0:121 0:140 route-map calculator permit 19100 match community 2_70_242 2_77_220 2_110_154 2_121_140 set community 0:16940 ip community-list standard 2_51_167 permit 65000:2 0:51 0:167 route-map calculator permit 19101 match community 2_51_167 set community 0:8517 ip community-list standard 2_130_246 permit 65000:2 0:130 0:246 ip community-list standard 2_156_205 permit 65000:2 0:156 0:205 ip community-list standard 2_164_195 permit 65000:2 0:164 0:195 route-map calculator permit 19102 match community 2_130_246 2_156_205 2_164_195 set community 0:31980 ip community-list standard 2_163_245 permit 65000:2 0:163 0:245 route-map calculator permit 19103 match community 2_163_245 set community 0:39935 ip community-list standard 2_73_205 permit 65000:2 0:73 0:205 route-map calculator permit 19104 match community 2_73_205 set community 0:14965 ip community-list standard 2_195_211 permit 65000:2 0:195 0:211 route-map calculator permit 19105 match community 2_195_211 set community 0:41145 ip community-list standard 2_37_181 permit 65000:2 0:37 0:181 route-map calculator permit 19106 match community 2_37_181 set community 0:6697 ip community-list standard 2_80_242 permit 65000:2 0:80 0:242 ip community-list standard 2_88_220 permit 65000:2 0:88 0:220 ip community-list standard 2_110_176 permit 65000:2 0:110 0:176 ip community-list standard 2_121_160 permit 65000:2 0:121 0:160 route-map calculator permit 19107 match community 2_80_242 2_88_220 2_110_176 2_121_160 set community 0:19360 ip community-list standard 1_1_26 permit 65000:1 0:1 0:26 ip community-list standard 2_1_27 permit 65000:2 0:1 0:27 ip community-list standard 1_2_25 permit 65000:1 0:2 0:25 ip community-list standard 2_3_9 permit 65000:2 0:3 0:9 ip community-list standard 1_3_24 permit 65000:1 0:3 0:24 ip community-list standard 1_4_23 permit 65000:1 0:4 0:23 ip community-list standard 1_5_22 permit 65000:1 0:5 0:22 ip community-list standard 1_6_21 permit 65000:1 0:6 0:21 ip community-list standard 1_7_20 permit 65000:1 0:7 0:20 ip community-list standard 1_8_19 permit 65000:1 0:8 0:19 ip community-list standard 1_9_18 permit 65000:1 0:9 0:18 ip community-list standard 1_10_17 permit 65000:1 0:10 0:17 ip community-list standard 1_11_16 permit 65000:1 0:11 0:16 ip community-list standard 1_12_15 permit 65000:1 0:12 0:15 ip community-list standard 1_13_14 permit 65000:1 0:13 0:14 ip community-list expanded c27 permit 1 ^65000:4_0:27_0:1$ ip community-list expanded c27 permit 2 ^65000:3_0:28_0:1$ ip community-list expanded c27 permit 3 ^65000:3_0:29_0:2$ ip community-list expanded c27 permit 4 ^65000:3_0:30_0:3$ ip community-list expanded c27 permit 5 ^65000:3_0:31_0:4$ ip community-list expanded c27 permit 6 ^65000:3_0:32_0:5$ ip community-list expanded c27 permit 7 ^65000:3_0:33_0:6$ ip community-list expanded c27 permit 8 ^65000:3_0:34_0:7$ ip community-list expanded c27 permit 9 ^65000:3_0:35_0:8$ ip community-list expanded c27 permit 10 ^65000:3_0:36_0:9$ ip community-list expanded c27 permit 11 ^65000:3_0:37_0:10$ ip community-list expanded c27 permit 12 ^65000:3_0:38_0:11$ ip community-list expanded c27 permit 13 ^65000:3_0:39_0:12$ ip community-list expanded c27 permit 14 ^65000:3_0:40_0:13$ ip community-list expanded c27 permit 15 ^65000:3_0:41_0:14$ ip community-list expanded c27 permit 16 ^65000:3_0:42_0:15$ ip community-list expanded c27 permit 17 ^65000:3_0:43_0:16$ ip community-list expanded c27 permit 18 ^65000:3_0:44_0:17$ ip community-list expanded c27 permit 19 ^65000:3_0:45_0:18$ ip community-list expanded c27 permit 20 ^65000:3_0:46_0:19$ ip community-list expanded c27 permit 21 ^65000:3_0:47_0:20$ ip community-list expanded c27 permit 22 ^65000:3_0:48_0:21$ ip community-list expanded c27 permit 23 ^65000:3_0:49_0:22$ ip community-list expanded c27 permit 24 ^65000:3_0:50_0:23$ ip community-list expanded c27 permit 25 ^65000:3_0:51_0:24$ ip community-list expanded c27 permit 26 ^65000:3_0:52_0:25$ ip community-list expanded c27 permit 27 ^65000:3_0:53_0:26$ ip community-list expanded c27 permit 28 ^65000:4_0:54_0:2$ ip community-list expanded c27 permit 29 ^65000:3_0:54_0:27$ ip community-list expanded c27 permit 30 ^65000:4_0:55_0:2$ ip community-list expanded c27 permit 31 ^65000:3_0:55_0:28$ ip community-list expanded c27 permit 32 ^65000:3_0:56_0:29$ ip community-list expanded c27 permit 33 ^65000:3_0:57_0:30$ ip community-list expanded c27 permit 34 ^65000:3_0:58_0:31$ ip community-list expanded c27 permit 35 ^65000:3_0:59_0:32$ ip community-list expanded c27 permit 36 ^65000:3_0:60_0:33$ ip community-list expanded c27 permit 37 ^65000:3_0:61_0:34$ ip community-list expanded c27 permit 38 ^65000:3_0:62_0:35$ ip community-list expanded c27 permit 39 ^65000:3_0:63_0:36$ ip community-list expanded c27 permit 40 ^65000:3_0:64_0:37$ ip community-list expanded c27 permit 41 ^65000:3_0:65_0:38$ ip community-list expanded c27 permit 42 ^65000:3_0:66_0:39$ ip community-list expanded c27 permit 43 ^65000:3_0:67_0:40$ ip community-list expanded c27 permit 44 ^65000:3_0:68_0:41$ ip community-list expanded c27 permit 45 ^65000:3_0:69_0:42$ ip community-list expanded c27 permit 46 ^65000:3_0:70_0:43$ ip community-list expanded c27 permit 47 ^65000:3_0:71_0:44$ ip community-list expanded c27 permit 48 ^65000:3_0:72_0:45$ ip community-list expanded c27 permit 49 ^65000:3_0:73_0:46$ ip community-list expanded c27 permit 50 ^65000:3_0:74_0:47$ ip community-list expanded c27 permit 51 ^65000:3_0:75_0:48$ ip community-list expanded c27 permit 52 ^65000:3_0:76_0:49$ ip community-list expanded c27 permit 53 ^65000:3_0:77_0:50$ ip community-list expanded c27 permit 54 ^65000:3_0:78_0:51$ ip community-list expanded c27 permit 55 ^65000:3_0:79_0:52$ ip community-list expanded c27 permit 56 ^65000:3_0:80_0:53$ ip community-list expanded c27 permit 57 ^65000:4_0:81_0:3$ ip community-list expanded c27 permit 58 ^65000:3_0:81_0:54$ ip community-list expanded c27 permit 59 ^65000:4_0:82_0:3$ ip community-list expanded c27 permit 60 ^65000:3_0:82_0:55$ ip community-list expanded c27 permit 61 ^65000:4_0:83_0:3$ ip community-list expanded c27 permit 62 ^65000:3_0:83_0:56$ ip community-list expanded c27 permit 63 ^65000:3_0:84_0:57$ ip community-list expanded c27 permit 64 ^65000:3_0:85_0:58$ ip community-list expanded c27 permit 65 ^65000:3_0:86_0:59$ ip community-list expanded c27 permit 66 ^65000:3_0:87_0:60$ ip community-list expanded c27 permit 67 ^65000:3_0:88_0:61$ ip community-list expanded c27 permit 68 ^65000:3_0:89_0:62$ ip community-list expanded c27 permit 69 ^65000:3_0:90_0:63$ ip community-list expanded c27 permit 70 ^65000:3_0:91_0:64$ ip community-list expanded c27 permit 71 ^65000:3_0:92_0:65$ ip community-list expanded c27 permit 72 ^65000:3_0:93_0:66$ ip community-list expanded c27 permit 73 ^65000:3_0:94_0:67$ ip community-list expanded c27 permit 74 ^65000:3_0:95_0:68$ ip community-list expanded c27 permit 75 ^65000:3_0:96_0:69$ ip community-list expanded c27 permit 76 ^65000:3_0:97_0:70$ ip community-list expanded c27 permit 77 ^65000:3_0:98_0:71$ ip community-list expanded c27 permit 78 ^65000:3_0:99_0:72$ ip community-list expanded c27 permit 79 ^65000:3_0:100_0:73$ ip community-list expanded c27 permit 80 ^65000:3_0:101_0:74$ ip community-list expanded c27 permit 81 ^65000:3_0:102_0:75$ ip community-list expanded c27 permit 82 ^65000:3_0:103_0:76$ ip community-list expanded c27 permit 83 ^65000:3_0:104_0:77$ ip community-list expanded c27 permit 84 ^65000:3_0:105_0:78$ ip community-list expanded c27 permit 85 ^65000:3_0:106_0:79$ ip community-list expanded c27 permit 86 ^65000:3_0:107_0:80$ ip community-list expanded c27 permit 87 ^65000:4_0:108_0:4$ ip community-list expanded c27 permit 88 ^65000:3_0:108_0:81$ ip community-list expanded c27 permit 89 ^65000:4_0:109_0:4$ ip community-list expanded c27 permit 90 ^65000:3_0:109_0:82$ ip community-list expanded c27 permit 91 ^65000:4_0:110_0:4$ ip community-list expanded c27 permit 92 ^65000:3_0:110_0:83$ ip community-list expanded c27 permit 93 ^65000:4_0:111_0:4$ ip community-list expanded c27 permit 94 ^65000:3_0:111_0:84$ ip community-list expanded c27 permit 95 ^65000:3_0:112_0:85$ ip community-list expanded c27 permit 96 ^65000:3_0:113_0:86$ ip community-list expanded c27 permit 97 ^65000:3_0:114_0:87$ ip community-list expanded c27 permit 98 ^65000:3_0:115_0:88$ ip community-list expanded c27 permit 99 ^65000:3_0:116_0:89$ ip community-list expanded c27 permit 100 ^65000:3_0:117_0:90$ ip community-list expanded c27 permit 101 ^65000:3_0:118_0:91$ ip community-list expanded c27 permit 102 ^65000:3_0:119_0:92$ ip community-list expanded c27 permit 103 ^65000:3_0:120_0:93$ ip community-list expanded c27 permit 104 ^65000:3_0:121_0:94$ ip community-list expanded c27 permit 105 ^65000:3_0:122_0:95$ ip community-list expanded c27 permit 106 ^65000:3_0:123_0:96$ ip community-list expanded c27 permit 107 ^65000:3_0:124_0:97$ ip community-list expanded c27 permit 108 ^65000:3_0:125_0:98$ ip community-list expanded c27 permit 109 ^65000:3_0:126_0:99$ ip community-list expanded c27 permit 110 ^65000:3_0:127_0:100$ ip community-list expanded c27 permit 111 ^65000:3_0:128_0:101$ ip community-list expanded c27 permit 112 ^65000:3_0:129_0:102$ ip community-list expanded c27 permit 113 ^65000:3_0:130_0:103$ ip community-list expanded c27 permit 114 ^65000:3_0:131_0:104$ ip community-list expanded c27 permit 115 ^65000:3_0:132_0:105$ ip community-list expanded c27 permit 116 ^65000:3_0:133_0:106$ ip community-list expanded c27 permit 117 ^65000:3_0:134_0:107$ ip community-list expanded c27 permit 118 ^65000:4_0:135_0:5$ ip community-list expanded c27 permit 119 ^65000:3_0:135_0:108$ ip community-list expanded c27 permit 120 ^65000:4_0:136_0:5$ ip community-list expanded c27 permit 121 ^65000:3_0:136_0:109$ ip community-list expanded c27 permit 122 ^65000:4_0:137_0:5$ ip community-list expanded c27 permit 123 ^65000:3_0:137_0:110$ ip community-list expanded c27 permit 124 ^65000:4_0:138_0:5$ ip community-list expanded c27 permit 125 ^65000:3_0:138_0:111$ ip community-list expanded c27 permit 126 ^65000:4_0:139_0:5$ ip community-list expanded c27 permit 127 ^65000:3_0:139_0:112$ ip community-list expanded c27 permit 128 ^65000:3_0:140_0:113$ ip community-list expanded c27 permit 129 ^65000:3_0:141_0:114$ ip community-list expanded c27 permit 130 ^65000:3_0:142_0:115$ ip community-list expanded c27 permit 131 ^65000:3_0:143_0:116$ ip community-list expanded c27 permit 132 ^65000:3_0:144_0:117$ ip community-list expanded c27 permit 133 ^65000:3_0:145_0:118$ ip community-list expanded c27 permit 134 ^65000:3_0:146_0:119$ ip community-list expanded c27 permit 135 ^65000:3_0:147_0:120$ ip community-list expanded c27 permit 136 ^65000:3_0:148_0:121$ ip community-list expanded c27 permit 137 ^65000:3_0:149_0:122$ ip community-list expanded c27 permit 138 ^65000:3_0:150_0:123$ ip community-list expanded c27 permit 139 ^65000:3_0:151_0:124$ ip community-list expanded c27 permit 140 ^65000:3_0:152_0:125$ ip community-list expanded c27 permit 141 ^65000:3_0:153_0:126$ ip community-list expanded c27 permit 142 ^65000:3_0:154_0:127$ ip community-list expanded c27 permit 143 ^65000:3_0:155_0:128$ ip community-list expanded c27 permit 144 ^65000:3_0:156_0:129$ ip community-list expanded c27 permit 145 ^65000:3_0:157_0:130$ ip community-list expanded c27 permit 146 ^65000:3_0:158_0:131$ ip community-list expanded c27 permit 147 ^65000:3_0:159_0:132$ ip community-list expanded c27 permit 148 ^65000:3_0:160_0:133$ ip community-list expanded c27 permit 149 ^65000:3_0:161_0:134$ ip community-list expanded c27 permit 150 ^65000:4_0:162_0:6$ ip community-list expanded c27 permit 151 ^65000:3_0:162_0:135$ ip community-list expanded c27 permit 152 ^65000:4_0:163_0:6$ ip community-list expanded c27 permit 153 ^65000:3_0:163_0:136$ ip community-list expanded c27 permit 154 ^65000:4_0:164_0:6$ ip community-list expanded c27 permit 155 ^65000:3_0:164_0:137$ ip community-list expanded c27 permit 156 ^65000:4_0:165_0:6$ ip community-list expanded c27 permit 157 ^65000:3_0:165_0:138$ ip community-list expanded c27 permit 158 ^65000:4_0:166_0:6$ ip community-list expanded c27 permit 159 ^65000:3_0:166_0:139$ ip community-list expanded c27 permit 160 ^65000:4_0:167_0:6$ ip community-list expanded c27 permit 161 ^65000:3_0:167_0:140$ ip community-list expanded c27 permit 162 ^65000:3_0:168_0:141$ ip community-list expanded c27 permit 163 ^65000:3_0:169_0:142$ ip community-list expanded c27 permit 164 ^65000:3_0:170_0:143$ ip community-list expanded c27 permit 165 ^65000:3_0:171_0:144$ ip community-list expanded c27 permit 166 ^65000:3_0:172_0:145$ ip community-list expanded c27 permit 167 ^65000:3_0:173_0:146$ ip community-list expanded c27 permit 168 ^65000:3_0:174_0:147$ ip community-list expanded c27 permit 169 ^65000:3_0:175_0:148$ ip community-list expanded c27 permit 170 ^65000:3_0:176_0:149$ ip community-list expanded c27 permit 171 ^65000:3_0:177_0:150$ ip community-list expanded c27 permit 172 ^65000:3_0:178_0:151$ ip community-list expanded c27 permit 173 ^65000:3_0:179_0:152$ ip community-list expanded c27 permit 174 ^65000:3_0:180_0:153$ ip community-list expanded c27 permit 175 ^65000:3_0:181_0:154$ ip community-list expanded c27 permit 176 ^65000:3_0:182_0:155$ ip community-list expanded c27 permit 177 ^65000:3_0:183_0:156$ ip community-list expanded c27 permit 178 ^65000:3_0:184_0:157$ ip community-list expanded c27 permit 179 ^65000:3_0:185_0:158$ ip community-list expanded c27 permit 180 ^65000:3_0:186_0:159$ ip community-list expanded c27 permit 181 ^65000:3_0:187_0:160$ ip community-list expanded c27 permit 182 ^65000:3_0:188_0:161$ ip community-list expanded c27 permit 183 ^65000:4_0:189_0:7$ ip community-list expanded c27 permit 184 ^65000:3_0:189_0:162$ ip community-list expanded c27 permit 185 ^65000:4_0:190_0:7$ ip community-list expanded c27 permit 186 ^65000:3_0:190_0:163$ ip community-list expanded c27 permit 187 ^65000:4_0:191_0:7$ ip community-list expanded c27 permit 188 ^65000:3_0:191_0:164$ ip community-list expanded c27 permit 189 ^65000:4_0:192_0:7$ ip community-list expanded c27 permit 190 ^65000:3_0:192_0:165$ ip community-list expanded c27 permit 191 ^65000:4_0:193_0:7$ ip community-list expanded c27 permit 192 ^65000:3_0:193_0:166$ ip community-list expanded c27 permit 193 ^65000:4_0:194_0:7$ ip community-list expanded c27 permit 194 ^65000:3_0:194_0:167$ ip community-list expanded c27 permit 195 ^65000:4_0:195_0:7$ ip community-list expanded c27 permit 196 ^65000:3_0:195_0:168$ ip community-list expanded c27 permit 197 ^65000:3_0:196_0:169$ ip community-list expanded c27 permit 198 ^65000:3_0:197_0:170$ ip community-list expanded c27 permit 199 ^65000:3_0:198_0:171$ ip community-list expanded c27 permit 200 ^65000:3_0:199_0:172$ ip community-list expanded c27 permit 201 ^65000:3_0:200_0:173$ ip community-list expanded c27 permit 202 ^65000:3_0:201_0:174$ ip community-list expanded c27 permit 203 ^65000:3_0:202_0:175$ ip community-list expanded c27 permit 204 ^65000:3_0:203_0:176$ ip community-list expanded c27 permit 205 ^65000:3_0:204_0:177$ ip community-list expanded c27 permit 206 ^65000:3_0:205_0:178$ ip community-list expanded c27 permit 207 ^65000:3_0:206_0:179$ ip community-list expanded c27 permit 208 ^65000:3_0:207_0:180$ ip community-list expanded c27 permit 209 ^65000:3_0:208_0:181$ ip community-list expanded c27 permit 210 ^65000:3_0:209_0:182$ ip community-list expanded c27 permit 211 ^65000:3_0:210_0:183$ ip community-list expanded c27 permit 212 ^65000:3_0:211_0:184$ ip community-list expanded c27 permit 213 ^65000:3_0:212_0:185$ ip community-list expanded c27 permit 214 ^65000:3_0:213_0:186$ ip community-list expanded c27 permit 215 ^65000:3_0:214_0:187$ ip community-list expanded c27 permit 216 ^65000:3_0:215_0:188$ ip community-list expanded c27 permit 217 ^65000:4_0:216_0:8$ ip community-list expanded c27 permit 218 ^65000:3_0:216_0:189$ ip community-list expanded c27 permit 219 ^65000:4_0:217_0:8$ ip community-list expanded c27 permit 220 ^65000:3_0:217_0:190$ ip community-list expanded c27 permit 221 ^65000:4_0:218_0:8$ ip community-list expanded c27 permit 222 ^65000:3_0:218_0:191$ ip community-list expanded c27 permit 223 ^65000:4_0:219_0:8$ ip community-list expanded c27 permit 224 ^65000:3_0:219_0:192$ ip community-list expanded c27 permit 225 ^65000:4_0:220_0:8$ ip community-list expanded c27 permit 226 ^65000:3_0:220_0:193$ ip community-list expanded c27 permit 227 ^65000:4_0:221_0:8$ ip community-list expanded c27 permit 228 ^65000:3_0:221_0:194$ ip community-list expanded c27 permit 229 ^65000:4_0:222_0:8$ ip community-list expanded c27 permit 230 ^65000:3_0:222_0:195$ ip community-list expanded c27 permit 231 ^65000:4_0:223_0:8$ ip community-list expanded c27 permit 232 ^65000:3_0:223_0:196$ ip community-list expanded c27 permit 233 ^65000:3_0:224_0:197$ ip community-list expanded c27 permit 234 ^65000:3_0:225_0:198$ ip community-list expanded c27 permit 235 ^65000:3_0:226_0:199$ ip community-list expanded c27 permit 236 ^65000:3_0:227_0:200$ ip community-list expanded c27 permit 237 ^65000:3_0:228_0:201$ ip community-list expanded c27 permit 238 ^65000:3_0:229_0:202$ ip community-list expanded c27 permit 239 ^65000:3_0:230_0:203$ ip community-list expanded c27 permit 240 ^65000:3_0:231_0:204$ ip community-list expanded c27 permit 241 ^65000:3_0:232_0:205$ ip community-list expanded c27 permit 242 ^65000:3_0:233_0:206$ ip community-list expanded c27 permit 243 ^65000:3_0:234_0:207$ ip community-list expanded c27 permit 244 ^65000:3_0:235_0:208$ ip community-list expanded c27 permit 245 ^65000:3_0:236_0:209$ ip community-list expanded c27 permit 246 ^65000:3_0:237_0:210$ ip community-list expanded c27 permit 247 ^65000:3_0:238_0:211$ ip community-list expanded c27 permit 248 ^65000:3_0:239_0:212$ ip community-list expanded c27 permit 249 ^65000:3_0:240_0:213$ ip community-list expanded c27 permit 250 ^65000:3_0:241_0:214$ ip community-list expanded c27 permit 251 ^65000:3_0:242_0:215$ ip community-list expanded c27 permit 252 ^65000:4_0:243_0:9$ ip community-list expanded c27 permit 253 ^65000:3_0:243_0:216$ ip community-list expanded c27 permit 254 ^65000:4_0:244_0:9$ ip community-list expanded c27 permit 255 ^65000:3_0:244_0:217$ ip community-list expanded c27 permit 256 ^65000:4_0:245_0:9$ ip community-list expanded c27 permit 257 ^65000:3_0:245_0:218$ ip community-list expanded c27 permit 258 ^65000:4_0:246_0:9$ ip community-list expanded c27 permit 259 ^65000:3_0:246_0:219$ ip community-list expanded c27 permit 260 ^65000:4_0:247_0:9$ ip community-list expanded c27 permit 261 ^65000:3_0:247_0:220$ ip community-list expanded c27 permit 262 ^65000:4_0:248_0:9$ ip community-list expanded c27 permit 263 ^65000:3_0:248_0:221$ ip community-list expanded c27 permit 264 ^65000:4_0:249_0:9$ ip community-list expanded c27 permit 265 ^65000:3_0:249_0:222$ ip community-list expanded c27 permit 266 ^65000:4_0:250_0:9$ ip community-list expanded c27 permit 267 ^65000:3_0:250_0:223$ ip community-list expanded c27 permit 268 ^65000:4_0:251_0:9$ ip community-list expanded c27 permit 269 ^65000:3_0:251_0:224$ ip community-list expanded c27 permit 270 ^65000:3_0:252_0:225$ ip community-list expanded c27 permit 271 ^65000:3_0:253_0:226$ ip community-list expanded c27 permit 272 ^65000:3_0:254_0:227$ ip community-list expanded c27 permit 273 ^65000:3_0:255_0:228$ ip community-list expanded c27 permit 274 ^65000:3_0:256_0:229$ route-map calculator permit 19108 match community 1_1_26 2_1_27 1_2_25 2_3_9 1_3_24 set community 0:27 route-map calculator permit 19109 match community 1_4_23 1_5_22 1_6_21 1_7_20 1_8_19 set community 0:27 route-map calculator permit 19110 match community 1_9_18 1_10_17 1_11_16 1_12_15 1_13_14 set community 0:27 route-map calculator permit 19111 match community c4_27_1 c3_28_1 c3_29_2 c3_30_3 c3_31_4 set community 0:27 route-map calculator permit 19112 match community c3_32_5 c3_33_6 c3_34_7 c3_35_8 c3_36_9 set community 0:27 route-map calculator permit 19113 match community c3_37_10 c3_38_11 c3_39_12 c3_40_13 c3_41_14 set community 0:27 route-map calculator permit 19114 match community c3_42_15 c3_43_16 c3_44_17 c3_45_18 c3_46_19 set community 0:27 route-map calculator permit 19115 match community c3_47_20 c3_48_21 c3_49_22 c3_50_23 c3_51_24 set community 0:27 route-map calculator permit 19116 match community c3_52_25 c3_53_26 c4_54_2 c3_54_27 c4_55_2 set community 0:27 route-map calculator permit 19117 match community c3_55_28 c3_56_29 c3_57_30 c3_58_31 c3_59_32 set community 0:27 route-map calculator permit 19118 match community c3_60_33 c3_61_34 c3_62_35 c3_63_36 c3_64_37 set community 0:27 route-map calculator permit 19119 match community c3_65_38 c3_66_39 c3_67_40 c3_68_41 c3_69_42 set community 0:27 route-map calculator permit 19120 match community c3_70_43 c3_71_44 c3_72_45 c3_73_46 c3_74_47 set community 0:27 route-map calculator permit 19121 match community c3_75_48 c3_76_49 c3_77_50 c3_78_51 c3_79_52 set community 0:27 route-map calculator permit 19122 match community c3_80_53 c4_81_3 c3_81_54 c4_82_3 c3_82_55 set community 0:27 route-map calculator permit 19123 match community c4_83_3 c3_83_56 c3_84_57 c3_85_58 c3_86_59 set community 0:27 route-map calculator permit 19124 match community c3_87_60 c3_88_61 c3_89_62 c3_90_63 c3_91_64 set community 0:27 route-map calculator permit 19125 match community c3_92_65 c3_93_66 c3_94_67 c3_95_68 c3_96_69 set community 0:27 route-map calculator permit 19126 match community c3_97_70 c3_98_71 c3_99_72 c3_100_73 c3_101_74 set community 0:27 route-map calculator permit 19127 match community c3_102_75 c3_103_76 c3_104_77 c3_105_78 c3_106_79 set community 0:27 route-map calculator permit 19128 match community c3_107_80 c4_108_4 c3_108_81 c4_109_4 c3_109_82 set community 0:27 route-map calculator permit 19129 match community c4_110_4 c3_110_83 c4_111_4 c3_111_84 c3_112_85 set community 0:27 route-map calculator permit 19130 match community c3_113_86 c3_114_87 c3_115_88 c3_116_89 c3_117_90 set community 0:27 route-map calculator permit 19131 match community c3_118_91 c3_119_92 c3_120_93 c3_121_94 c3_122_95 set community 0:27 route-map calculator permit 19132 match community c3_123_96 c3_124_97 c3_125_98 c3_126_99 c3_127_100 set community 0:27 route-map calculator permit 19133 match community c3_128_101 c3_129_102 c3_130_103 c3_131_104 c3_132_105 set community 0:27 route-map calculator permit 19134 match community c3_133_106 c3_134_107 c4_135_5 c3_135_108 c4_136_5 set community 0:27 route-map calculator permit 19135 match community c3_136_109 c4_137_5 c3_137_110 c4_138_5 c3_138_111 set community 0:27 route-map calculator permit 19136 match community c4_139_5 c3_139_112 c3_140_113 c3_141_114 c3_142_115 set community 0:27 route-map calculator permit 19137 match community c3_143_116 c3_144_117 c3_145_118 c3_146_119 c3_147_120 set community 0:27 route-map calculator permit 19138 match community c3_148_121 c3_149_122 c3_150_123 c3_151_124 c3_152_125 set community 0:27 route-map calculator permit 19139 match community c3_153_126 c3_154_127 c3_155_128 c3_156_129 c3_157_130 set community 0:27 route-map calculator permit 19140 match community c3_158_131 c3_159_132 c3_160_133 c3_161_134 c4_162_6 set community 0:27 route-map calculator permit 19141 match community c3_162_135 c4_163_6 c3_163_136 c4_164_6 c3_164_137 set community 0:27 route-map calculator permit 19142 match community c4_165_6 c3_165_138 c4_166_6 c3_166_139 c4_167_6 set community 0:27 route-map calculator permit 19143 match community c3_167_140 c3_168_141 c3_169_142 c3_170_143 c3_171_144 set community 0:27 route-map calculator permit 19144 match community c3_172_145 c3_173_146 c3_174_147 c3_175_148 c3_176_149 set community 0:27 route-map calculator permit 19145 match community c3_177_150 c3_178_151 c3_179_152 c3_180_153 c3_181_154 set community 0:27 route-map calculator permit 19146 match community c3_182_155 c3_183_156 c3_184_157 c3_185_158 c3_186_159 set community 0:27 route-map calculator permit 19147 match community c3_187_160 c3_188_161 c4_189_7 c3_189_162 c4_190_7 set community 0:27 route-map calculator permit 19148 match community c3_190_163 c4_191_7 c3_191_164 c4_192_7 c3_192_165 set community 0:27 route-map calculator permit 19149 match community c4_193_7 c3_193_166 c4_194_7 c3_194_167 c4_195_7 set community 0:27 route-map calculator permit 19150 match community c3_195_168 c3_196_169 c3_197_170 c3_198_171 c3_199_172 set community 0:27 route-map calculator permit 19151 match community c3_200_173 c3_201_174 c3_202_175 c3_203_176 c3_204_177 set community 0:27 route-map calculator permit 19152 match community c3_205_178 c3_206_179 c3_207_180 c3_208_181 c3_209_182 set community 0:27 route-map calculator permit 19153 match community c3_210_183 c3_211_184 c3_212_185 c3_213_186 c3_214_187 set community 0:27 route-map calculator permit 19154 match community c3_215_188 c4_216_8 c3_216_189 c4_217_8 c3_217_190 set community 0:27 route-map calculator permit 19155 match community c4_218_8 c3_218_191 c4_219_8 c3_219_192 c4_220_8 set community 0:27 route-map calculator permit 19156 match community c3_220_193 c4_221_8 c3_221_194 c4_222_8 c3_222_195 set community 0:27 route-map calculator permit 19157 match community c4_223_8 c3_223_196 c3_224_197 c3_225_198 c3_226_199 set community 0:27 route-map calculator permit 19158 match community c3_227_200 c3_228_201 c3_229_202 c3_230_203 c3_231_204 set community 0:27 route-map calculator permit 19159 match community c3_232_205 c3_233_206 c3_234_207 c3_235_208 c3_236_209 set community 0:27 route-map calculator permit 19160 match community c3_237_210 c3_238_211 c3_239_212 c3_240_213 c3_241_214 set community 0:27 route-map calculator permit 19161 match community c3_242_215 c4_243_9 c3_243_216 c4_244_9 c3_244_217 set community 0:27 route-map calculator permit 19162 match community c4_245_9 c3_245_218 c4_246_9 c3_246_219 c4_247_9 set community 0:27 route-map calculator permit 19163 match community c3_247_220 c4_248_9 c3_248_221 c4_249_9 c3_249_222 set community 0:27 route-map calculator permit 19164 match community c4_250_9 c3_250_223 c4_251_9 c3_251_224 c3_252_225 set community 0:27 route-map calculator permit 19165 match community c3_253_226 c3_254_227 c3_255_228 c3_256_229 set community 0:27 ip community-list standard 2_37_176 permit 65000:2 0:37 0:176 ip community-list standard 2_44_148 permit 65000:2 0:44 0:148 ip community-list standard 2_74_88 permit 65000:2 0:74 0:88 route-map calculator permit 19166 match community 2_37_176 2_44_148 2_74_88 set community 0:6512 ip community-list standard 2_79_181 permit 65000:2 0:79 0:181 route-map calculator permit 19167 match community 2_79_181 set community 0:14299 ip community-list standard 2_55_225 permit 65000:2 0:55 0:225 ip community-list standard 2_75_165 permit 65000:2 0:75 0:165 ip community-list standard 2_99_125 permit 65000:2 0:99 0:125 route-map calculator permit 19168 match community 2_55_225 2_75_165 2_99_125 set community 0:12375 ip community-list standard 2_46_211 permit 65000:2 0:46 0:211 route-map calculator permit 19169 match community 2_46_211 set community 0:9706 ip community-list standard 2_238_250 permit 65000:2 0:238 0:250 route-map calculator permit 19170 match community 2_238_250 set community 0:59500 ip community-list standard 2_102_171 permit 65000:2 0:102 0:171 ip community-list standard 2_114_153 permit 65000:2 0:114 0:153 route-map calculator permit 19171 match community 2_102_171 2_114_153 set community 0:17442 ip community-list standard 2_8_169 permit 65000:2 0:8 0:169 ip community-list standard 2_13_104 permit 65000:2 0:13 0:104 ip community-list standard 2_26_52 permit 65000:2 0:26 0:52 route-map calculator permit 19172 match community 2_8_169 2_13_104 2_26_52 set community 0:1352 ip community-list standard 2_170_214 permit 65000:2 0:170 0:214 route-map calculator permit 19173 match community 2_170_214 set community 0:36380 ip community-list standard 2_207_235 permit 65000:2 0:207 0:235 route-map calculator permit 19174 match community 2_207_235 set community 0:48645 ip community-list standard 2_133_212 permit 65000:2 0:133 0:212 route-map calculator permit 19175 match community 2_133_212 set community 0:28196 ip community-list standard 2_164_242 permit 65000:2 0:164 0:242 route-map calculator permit 19176 match community 2_164_242 set community 0:39688 ip community-list standard 2_121_213 permit 65000:2 0:121 0:213 route-map calculator permit 19177 match community 2_121_213 set community 0:25773 ip community-list standard 2_39_123 permit 65000:2 0:39 0:123 ip community-list standard 2_41_117 permit 65000:2 0:41 0:117 route-map calculator permit 19178 match community 2_39_123 2_41_117 set community 0:4797 ip community-list standard 2_130_173 permit 65000:2 0:130 0:173 route-map calculator permit 19179 match community 2_130_173 set community 0:22490 ip community-list standard 2_11_121 permit 65000:2 0:11 0:121 route-map calculator permit 19180 match community 2_11_121 set community 0:1331 ip community-list standard 2_183_206 permit 65000:2 0:183 0:206 route-map calculator permit 19181 match community 2_183_206 set community 0:37698 ip community-list standard 2_179_202 permit 65000:2 0:179 0:202 route-map calculator permit 19182 match community 2_179_202 set community 0:36158 ip community-list standard 2_101_207 permit 65000:2 0:101 0:207 route-map calculator permit 19183 match community 2_101_207 set community 0:20907 ip community-list standard 2_172_211 permit 65000:2 0:172 0:211 route-map calculator permit 19184 match community 2_172_211 set community 0:36292 ip community-list standard 2_17_109 permit 65000:2 0:17 0:109 route-map calculator permit 19185 match community 2_17_109 set community 0:1853 ip community-list standard 2_120_131 permit 65000:2 0:120 0:131 route-map calculator permit 19186 match community 2_120_131 set community 0:15720 ip community-list standard 2_140_202 permit 65000:2 0:140 0:202 route-map calculator permit 19187 match community 2_140_202 set community 0:28280 ip community-list standard 2_163_233 permit 65000:2 0:163 0:233 route-map calculator permit 19188 match community 2_163_233 set community 0:37979 ip community-list standard 2_216_233 permit 65000:2 0:216 0:233 route-map calculator permit 19189 match community 2_216_233 set community 0:50328 ip community-list standard 2_188_207 permit 65000:2 0:188 0:207 route-map calculator permit 19190 match community 2_188_207 set community 0:38916 ip community-list standard 1_7_256 permit 65000:1 0:7 0:256 ip community-list standard 1_8_255 permit 65000:1 0:8 0:255 ip community-list standard 1_9_254 permit 65000:1 0:9 0:254 ip community-list standard 1_10_253 permit 65000:1 0:10 0:253 ip community-list standard 1_11_252 permit 65000:1 0:11 0:252 ip community-list standard 1_12_251 permit 65000:1 0:12 0:251 ip community-list standard 1_13_250 permit 65000:1 0:13 0:250 ip community-list standard 1_14_249 permit 65000:1 0:14 0:249 ip community-list standard 1_15_248 permit 65000:1 0:15 0:248 ip community-list standard 1_16_247 permit 65000:1 0:16 0:247 ip community-list standard 1_17_246 permit 65000:1 0:17 0:246 ip community-list standard 1_18_245 permit 65000:1 0:18 0:245 ip community-list standard 1_19_244 permit 65000:1 0:19 0:244 ip community-list standard 1_20_243 permit 65000:1 0:20 0:243 ip community-list standard 1_21_242 permit 65000:1 0:21 0:242 ip community-list standard 1_22_241 permit 65000:1 0:22 0:241 ip community-list standard 1_23_240 permit 65000:1 0:23 0:240 ip community-list standard 1_24_239 permit 65000:1 0:24 0:239 ip community-list standard 1_25_238 permit 65000:1 0:25 0:238 ip community-list standard 1_26_237 permit 65000:1 0:26 0:237 ip community-list standard 1_27_236 permit 65000:1 0:27 0:236 ip community-list standard 1_28_235 permit 65000:1 0:28 0:235 ip community-list standard 1_29_234 permit 65000:1 0:29 0:234 ip community-list standard 1_30_233 permit 65000:1 0:30 0:233 ip community-list standard 1_31_232 permit 65000:1 0:31 0:232 ip community-list standard 1_32_231 permit 65000:1 0:32 0:231 ip community-list standard 1_33_230 permit 65000:1 0:33 0:230 ip community-list standard 1_34_229 permit 65000:1 0:34 0:229 ip community-list standard 1_35_228 permit 65000:1 0:35 0:228 ip community-list standard 1_36_227 permit 65000:1 0:36 0:227 ip community-list standard 1_37_226 permit 65000:1 0:37 0:226 ip community-list standard 1_38_225 permit 65000:1 0:38 0:225 ip community-list standard 1_39_224 permit 65000:1 0:39 0:224 ip community-list standard 1_40_223 permit 65000:1 0:40 0:223 ip community-list standard 1_41_222 permit 65000:1 0:41 0:222 ip community-list standard 1_42_221 permit 65000:1 0:42 0:221 ip community-list standard 1_43_220 permit 65000:1 0:43 0:220 ip community-list standard 1_44_219 permit 65000:1 0:44 0:219 ip community-list standard 1_45_218 permit 65000:1 0:45 0:218 ip community-list standard 1_46_217 permit 65000:1 0:46 0:217 ip community-list standard 1_47_216 permit 65000:1 0:47 0:216 ip community-list standard 1_48_215 permit 65000:1 0:48 0:215 ip community-list standard 1_49_214 permit 65000:1 0:49 0:214 ip community-list standard 1_50_213 permit 65000:1 0:50 0:213 ip community-list standard 1_51_212 permit 65000:1 0:51 0:212 ip community-list standard 1_52_211 permit 65000:1 0:52 0:211 ip community-list standard 1_53_210 permit 65000:1 0:53 0:210 ip community-list standard 1_54_209 permit 65000:1 0:54 0:209 ip community-list standard 1_55_208 permit 65000:1 0:55 0:208 ip community-list standard 1_56_207 permit 65000:1 0:56 0:207 ip community-list standard 1_57_206 permit 65000:1 0:57 0:206 ip community-list standard 1_58_205 permit 65000:1 0:58 0:205 ip community-list standard 1_59_204 permit 65000:1 0:59 0:204 ip community-list standard 1_60_203 permit 65000:1 0:60 0:203 ip community-list standard 1_61_202 permit 65000:1 0:61 0:202 ip community-list standard 1_62_201 permit 65000:1 0:62 0:201 ip community-list standard 1_63_200 permit 65000:1 0:63 0:200 ip community-list standard 1_64_199 permit 65000:1 0:64 0:199 ip community-list standard 1_65_198 permit 65000:1 0:65 0:198 ip community-list standard 1_66_197 permit 65000:1 0:66 0:197 ip community-list standard 1_67_196 permit 65000:1 0:67 0:196 ip community-list standard 1_68_195 permit 65000:1 0:68 0:195 ip community-list standard 1_69_194 permit 65000:1 0:69 0:194 ip community-list standard 1_70_193 permit 65000:1 0:70 0:193 ip community-list standard 1_71_192 permit 65000:1 0:71 0:192 ip community-list standard 1_72_191 permit 65000:1 0:72 0:191 ip community-list standard 1_73_190 permit 65000:1 0:73 0:190 ip community-list standard 1_74_189 permit 65000:1 0:74 0:189 ip community-list standard 1_75_188 permit 65000:1 0:75 0:188 ip community-list standard 1_76_187 permit 65000:1 0:76 0:187 ip community-list standard 1_77_186 permit 65000:1 0:77 0:186 ip community-list standard 1_78_185 permit 65000:1 0:78 0:185 ip community-list standard 1_79_184 permit 65000:1 0:79 0:184 ip community-list standard 1_80_183 permit 65000:1 0:80 0:183 ip community-list standard 1_81_182 permit 65000:1 0:81 0:182 ip community-list standard 1_82_181 permit 65000:1 0:82 0:181 ip community-list standard 1_83_180 permit 65000:1 0:83 0:180 ip community-list standard 1_84_179 permit 65000:1 0:84 0:179 ip community-list standard 1_85_178 permit 65000:1 0:85 0:178 ip community-list standard 1_86_177 permit 65000:1 0:86 0:177 ip community-list standard 1_87_176 permit 65000:1 0:87 0:176 ip community-list standard 1_88_175 permit 65000:1 0:88 0:175 ip community-list standard 1_89_174 permit 65000:1 0:89 0:174 ip community-list standard 1_90_173 permit 65000:1 0:90 0:173 ip community-list standard 1_91_172 permit 65000:1 0:91 0:172 ip community-list standard 1_92_171 permit 65000:1 0:92 0:171 ip community-list standard 1_93_170 permit 65000:1 0:93 0:170 ip community-list standard 1_94_169 permit 65000:1 0:94 0:169 ip community-list standard 1_95_168 permit 65000:1 0:95 0:168 ip community-list standard 1_96_167 permit 65000:1 0:96 0:167 ip community-list standard 1_97_166 permit 65000:1 0:97 0:166 ip community-list standard 1_98_165 permit 65000:1 0:98 0:165 ip community-list standard 1_99_164 permit 65000:1 0:99 0:164 ip community-list standard 1_100_163 permit 65000:1 0:100 0:163 ip community-list standard 1_101_162 permit 65000:1 0:101 0:162 ip community-list standard 1_102_161 permit 65000:1 0:102 0:161 ip community-list standard 1_103_160 permit 65000:1 0:103 0:160 ip community-list standard 1_104_159 permit 65000:1 0:104 0:159 ip community-list standard 1_105_158 permit 65000:1 0:105 0:158 ip community-list standard 1_106_157 permit 65000:1 0:106 0:157 ip community-list standard 1_107_156 permit 65000:1 0:107 0:156 ip community-list standard 1_108_155 permit 65000:1 0:108 0:155 ip community-list standard 1_109_154 permit 65000:1 0:109 0:154 ip community-list standard 1_110_153 permit 65000:1 0:110 0:153 ip community-list standard 1_111_152 permit 65000:1 0:111 0:152 ip community-list standard 1_112_151 permit 65000:1 0:112 0:151 ip community-list standard 1_113_150 permit 65000:1 0:113 0:150 ip community-list standard 1_114_149 permit 65000:1 0:114 0:149 ip community-list standard 1_115_148 permit 65000:1 0:115 0:148 ip community-list standard 1_116_147 permit 65000:1 0:116 0:147 ip community-list standard 1_117_146 permit 65000:1 0:117 0:146 ip community-list standard 1_118_145 permit 65000:1 0:118 0:145 ip community-list standard 1_119_144 permit 65000:1 0:119 0:144 ip community-list standard 1_120_143 permit 65000:1 0:120 0:143 ip community-list standard 1_121_142 permit 65000:1 0:121 0:142 ip community-list standard 1_122_141 permit 65000:1 0:122 0:141 ip community-list standard 1_123_140 permit 65000:1 0:123 0:140 ip community-list standard 1_124_139 permit 65000:1 0:124 0:139 ip community-list standard 1_125_138 permit 65000:1 0:125 0:138 ip community-list standard 1_126_137 permit 65000:1 0:126 0:137 ip community-list standard 1_127_136 permit 65000:1 0:127 0:136 ip community-list standard 1_128_135 permit 65000:1 0:128 0:135 ip community-list standard 1_129_134 permit 65000:1 0:129 0:134 ip community-list standard 1_130_133 permit 65000:1 0:130 0:133 ip community-list standard 1_131_132 permit 65000:1 0:131 0:132 route-map calculator permit 19191 match community 1_7_256 1_8_255 1_9_254 1_10_253 1_11_252 set community 0:263 route-map calculator permit 19192 match community 1_12_251 1_13_250 1_14_249 1_15_248 1_16_247 set community 0:263 route-map calculator permit 19193 match community 1_17_246 1_18_245 1_19_244 1_20_243 1_21_242 set community 0:263 route-map calculator permit 19194 match community 1_22_241 1_23_240 1_24_239 1_25_238 1_26_237 set community 0:263 route-map calculator permit 19195 match community 1_27_236 1_28_235 1_29_234 1_30_233 1_31_232 set community 0:263 route-map calculator permit 19196 match community 1_32_231 1_33_230 1_34_229 1_35_228 1_36_227 set community 0:263 route-map calculator permit 19197 match community 1_37_226 1_38_225 1_39_224 1_40_223 1_41_222 set community 0:263 route-map calculator permit 19198 match community 1_42_221 1_43_220 1_44_219 1_45_218 1_46_217 set community 0:263 route-map calculator permit 19199 match community 1_47_216 1_48_215 1_49_214 1_50_213 1_51_212 set community 0:263 route-map calculator permit 19200 match community 1_52_211 1_53_210 1_54_209 1_55_208 1_56_207 set community 0:263 route-map calculator permit 19201 match community 1_57_206 1_58_205 1_59_204 1_60_203 1_61_202 set community 0:263 route-map calculator permit 19202 match community 1_62_201 1_63_200 1_64_199 1_65_198 1_66_197 set community 0:263 route-map calculator permit 19203 match community 1_67_196 1_68_195 1_69_194 1_70_193 1_71_192 set community 0:263 route-map calculator permit 19204 match community 1_72_191 1_73_190 1_74_189 1_75_188 1_76_187 set community 0:263 route-map calculator permit 19205 match community 1_77_186 1_78_185 1_79_184 1_80_183 1_81_182 set community 0:263 route-map calculator permit 19206 match community 1_82_181 1_83_180 1_84_179 1_85_178 1_86_177 set community 0:263 route-map calculator permit 19207 match community 1_87_176 1_88_175 1_89_174 1_90_173 1_91_172 set community 0:263 route-map calculator permit 19208 match community 1_92_171 1_93_170 1_94_169 1_95_168 1_96_167 set community 0:263 route-map calculator permit 19209 match community 1_97_166 1_98_165 1_99_164 1_100_163 1_101_162 set community 0:263 route-map calculator permit 19210 match community 1_102_161 1_103_160 1_104_159 1_105_158 1_106_157 set community 0:263 route-map calculator permit 19211 match community 1_107_156 1_108_155 1_109_154 1_110_153 1_111_152 set community 0:263 route-map calculator permit 19212 match community 1_112_151 1_113_150 1_114_149 1_115_148 1_116_147 set community 0:263 route-map calculator permit 19213 match community 1_117_146 1_118_145 1_119_144 1_120_143 1_121_142 set community 0:263 route-map calculator permit 19214 match community 1_122_141 1_123_140 1_124_139 1_125_138 1_126_137 set community 0:263 route-map calculator permit 19215 match community 1_127_136 1_128_135 1_129_134 1_130_133 1_131_132 set community 0:263 ip community-list standard 2_92_203 permit 65000:2 0:92 0:203 ip community-list standard 2_116_161 permit 65000:2 0:116 0:161 route-map calculator permit 19216 match community 2_92_203 2_116_161 set community 0:18676 ip community-list standard 2_120_157 permit 65000:2 0:120 0:157 route-map calculator permit 19217 match community 2_120_157 set community 0:18840 ip community-list standard 2_37_182 permit 65000:2 0:37 0:182 ip community-list standard 2_74_91 permit 65000:2 0:74 0:91 route-map calculator permit 19218 match community 2_37_182 2_74_91 set community 0:6734 ip community-list standard 2_20_251 permit 65000:2 0:20 0:251 route-map calculator permit 19219 match community 2_20_251 set community 0:5020 ip community-list standard 2_109_137 permit 65000:2 0:109 0:137 route-map calculator permit 19220 match community 2_109_137 set community 0:14933 ip community-list standard 2_37_142 permit 65000:2 0:37 0:142 ip community-list standard 2_71_74 permit 65000:2 0:71 0:74 route-map calculator permit 19221 match community 2_37_142 2_71_74 set community 0:5254 ip community-list standard 2_128_237 permit 65000:2 0:128 0:237 ip community-list standard 2_158_192 permit 65000:2 0:158 0:192 route-map calculator permit 19222 match community 2_128_237 2_158_192 set community 0:30336 ip community-list standard 2_221_241 permit 65000:2 0:221 0:241 route-map calculator permit 19223 match community 2_221_241 set community 0:53261 ip community-list standard 2_103_149 permit 65000:2 0:103 0:149 route-map calculator permit 19224 match community 2_103_149 set community 0:15347 ip community-list standard 2_17_178 permit 65000:2 0:17 0:178 ip community-list standard 2_34_89 permit 65000:2 0:34 0:89 route-map calculator permit 19225 match community 2_17_178 2_34_89 set community 0:3026 ip community-list standard 2_179_182 permit 65000:2 0:179 0:182 route-map calculator permit 19226 match community 2_179_182 set community 0:32578 ip community-list standard 2_141_211 permit 65000:2 0:141 0:211 route-map calculator permit 19227 match community 2_141_211 set community 0:29751 ip community-list standard 2_168_206 permit 65000:2 0:168 0:206 route-map calculator permit 19228 match community 2_168_206 set community 0:34608 ip community-list standard 2_154_212 permit 65000:2 0:154 0:212 route-map calculator permit 19229 match community 2_154_212 set community 0:32648 ip community-list standard 2_199_210 permit 65000:2 0:199 0:210 route-map calculator permit 19230 match community 2_199_210 set community 0:41790 ip community-list standard 2_97_196 permit 65000:2 0:97 0:196 ip community-list standard 2_98_194 permit 65000:2 0:98 0:194 route-map calculator permit 19231 match community 2_97_196 2_98_194 set community 0:19012 ip community-list standard 2_6_183 permit 65000:2 0:6 0:183 ip community-list standard 2_9_122 permit 65000:2 0:9 0:122 ip community-list standard 2_18_61 permit 65000:2 0:18 0:61 route-map calculator permit 19232 match community 2_6_183 2_9_122 2_18_61 set community 0:1098 ip community-list standard 2_147_213 permit 65000:2 0:147 0:213 route-map calculator permit 19233 match community 2_147_213 set community 0:31311 ip community-list standard 2_252_255 permit 65000:2 0:252 0:255 route-map calculator permit 19234 match community 2_252_255 set community 0:64260 ip community-list standard 2_97_236 permit 65000:2 0:97 0:236 ip community-list standard 2_118_194 permit 65000:2 0:118 0:194 route-map calculator permit 19235 match community 2_97_236 2_118_194 set community 0:22892 ip community-list standard 2_5_237 permit 65000:2 0:5 0:237 ip community-list standard 2_15_79 permit 65000:2 0:15 0:79 route-map calculator permit 19236 match community 2_5_237 2_15_79 set community 0:1185 ip community-list standard 2_167_238 permit 65000:2 0:167 0:238 route-map calculator permit 19237 match community 2_167_238 set community 0:39746 ip community-list standard 1_1_198 permit 65000:1 0:1 0:198 ip community-list standard 2_1_199 permit 65000:2 0:1 0:199 ip community-list standard 1_2_197 permit 65000:1 0:2 0:197 ip community-list standard 1_3_196 permit 65000:1 0:3 0:196 ip community-list standard 1_4_195 permit 65000:1 0:4 0:195 ip community-list standard 1_5_194 permit 65000:1 0:5 0:194 ip community-list standard 1_6_193 permit 65000:1 0:6 0:193 ip community-list standard 1_7_192 permit 65000:1 0:7 0:192 ip community-list standard 1_8_191 permit 65000:1 0:8 0:191 ip community-list standard 1_9_190 permit 65000:1 0:9 0:190 ip community-list standard 1_10_189 permit 65000:1 0:10 0:189 ip community-list standard 1_11_188 permit 65000:1 0:11 0:188 ip community-list standard 1_12_187 permit 65000:1 0:12 0:187 ip community-list standard 1_13_186 permit 65000:1 0:13 0:186 ip community-list standard 1_14_185 permit 65000:1 0:14 0:185 ip community-list standard 1_15_184 permit 65000:1 0:15 0:184 ip community-list standard 1_16_183 permit 65000:1 0:16 0:183 ip community-list standard 1_17_182 permit 65000:1 0:17 0:182 ip community-list standard 1_18_181 permit 65000:1 0:18 0:181 ip community-list standard 1_19_180 permit 65000:1 0:19 0:180 ip community-list standard 1_20_179 permit 65000:1 0:20 0:179 ip community-list standard 1_21_178 permit 65000:1 0:21 0:178 ip community-list standard 1_22_177 permit 65000:1 0:22 0:177 ip community-list standard 1_23_176 permit 65000:1 0:23 0:176 ip community-list standard 1_24_175 permit 65000:1 0:24 0:175 ip community-list standard 1_25_174 permit 65000:1 0:25 0:174 ip community-list standard 1_26_173 permit 65000:1 0:26 0:173 ip community-list standard 1_27_172 permit 65000:1 0:27 0:172 ip community-list standard 1_28_171 permit 65000:1 0:28 0:171 ip community-list standard 1_29_170 permit 65000:1 0:29 0:170 ip community-list standard 1_30_169 permit 65000:1 0:30 0:169 ip community-list standard 1_31_168 permit 65000:1 0:31 0:168 ip community-list standard 1_32_167 permit 65000:1 0:32 0:167 ip community-list standard 1_33_166 permit 65000:1 0:33 0:166 ip community-list standard 1_34_165 permit 65000:1 0:34 0:165 ip community-list standard 1_35_164 permit 65000:1 0:35 0:164 ip community-list standard 1_36_163 permit 65000:1 0:36 0:163 ip community-list standard 1_37_162 permit 65000:1 0:37 0:162 ip community-list standard 1_38_161 permit 65000:1 0:38 0:161 ip community-list standard 1_39_160 permit 65000:1 0:39 0:160 ip community-list standard 1_40_159 permit 65000:1 0:40 0:159 ip community-list standard 1_41_158 permit 65000:1 0:41 0:158 ip community-list standard 1_42_157 permit 65000:1 0:42 0:157 ip community-list standard 1_43_156 permit 65000:1 0:43 0:156 ip community-list standard 1_44_155 permit 65000:1 0:44 0:155 ip community-list standard 1_45_154 permit 65000:1 0:45 0:154 ip community-list standard 1_46_153 permit 65000:1 0:46 0:153 ip community-list standard 1_47_152 permit 65000:1 0:47 0:152 ip community-list standard 1_48_151 permit 65000:1 0:48 0:151 ip community-list standard 1_49_150 permit 65000:1 0:49 0:150 ip community-list standard 1_50_149 permit 65000:1 0:50 0:149 ip community-list standard 1_51_148 permit 65000:1 0:51 0:148 ip community-list standard 1_52_147 permit 65000:1 0:52 0:147 ip community-list standard 1_53_146 permit 65000:1 0:53 0:146 ip community-list standard 1_54_145 permit 65000:1 0:54 0:145 ip community-list standard 1_55_144 permit 65000:1 0:55 0:144 ip community-list standard 1_56_143 permit 65000:1 0:56 0:143 ip community-list standard 1_57_142 permit 65000:1 0:57 0:142 ip community-list standard 1_58_141 permit 65000:1 0:58 0:141 ip community-list standard 1_59_140 permit 65000:1 0:59 0:140 ip community-list standard 1_60_139 permit 65000:1 0:60 0:139 ip community-list standard 1_61_138 permit 65000:1 0:61 0:138 ip community-list standard 1_62_137 permit 65000:1 0:62 0:137 ip community-list standard 1_63_136 permit 65000:1 0:63 0:136 ip community-list standard 1_64_135 permit 65000:1 0:64 0:135 ip community-list standard 1_65_134 permit 65000:1 0:65 0:134 ip community-list standard 1_66_133 permit 65000:1 0:66 0:133 ip community-list standard 1_67_132 permit 65000:1 0:67 0:132 ip community-list standard 1_68_131 permit 65000:1 0:68 0:131 ip community-list standard 1_69_130 permit 65000:1 0:69 0:130 ip community-list standard 1_70_129 permit 65000:1 0:70 0:129 ip community-list standard 1_71_128 permit 65000:1 0:71 0:128 ip community-list standard 1_72_127 permit 65000:1 0:72 0:127 ip community-list standard 1_73_126 permit 65000:1 0:73 0:126 ip community-list standard 1_74_125 permit 65000:1 0:74 0:125 ip community-list standard 1_75_124 permit 65000:1 0:75 0:124 ip community-list standard 1_76_123 permit 65000:1 0:76 0:123 ip community-list standard 1_77_122 permit 65000:1 0:77 0:122 ip community-list standard 1_78_121 permit 65000:1 0:78 0:121 ip community-list standard 1_79_120 permit 65000:1 0:79 0:120 ip community-list standard 1_80_119 permit 65000:1 0:80 0:119 ip community-list standard 1_81_118 permit 65000:1 0:81 0:118 ip community-list standard 1_82_117 permit 65000:1 0:82 0:117 ip community-list standard 1_83_116 permit 65000:1 0:83 0:116 ip community-list standard 1_84_115 permit 65000:1 0:84 0:115 ip community-list standard 1_85_114 permit 65000:1 0:85 0:114 ip community-list standard 1_86_113 permit 65000:1 0:86 0:113 ip community-list standard 1_87_112 permit 65000:1 0:87 0:112 ip community-list standard 1_88_111 permit 65000:1 0:88 0:111 ip community-list standard 1_89_110 permit 65000:1 0:89 0:110 ip community-list standard 1_90_109 permit 65000:1 0:90 0:109 ip community-list standard 1_91_108 permit 65000:1 0:91 0:108 ip community-list standard 1_92_107 permit 65000:1 0:92 0:107 ip community-list standard 1_93_106 permit 65000:1 0:93 0:106 ip community-list standard 1_94_105 permit 65000:1 0:94 0:105 ip community-list standard 1_95_104 permit 65000:1 0:95 0:104 ip community-list standard 1_96_103 permit 65000:1 0:96 0:103 ip community-list standard 1_97_102 permit 65000:1 0:97 0:102 ip community-list standard 1_98_101 permit 65000:1 0:98 0:101 ip community-list standard 1_99_100 permit 65000:1 0:99 0:100 ip community-list expanded c199 permit 1 ^65000:4_0:199_0:1$ ip community-list expanded c199 permit 2 ^65000:3_0:200_0:1$ ip community-list expanded c199 permit 3 ^65000:3_0:201_0:2$ ip community-list expanded c199 permit 4 ^65000:3_0:202_0:3$ ip community-list expanded c199 permit 5 ^65000:3_0:203_0:4$ ip community-list expanded c199 permit 6 ^65000:3_0:204_0:5$ ip community-list expanded c199 permit 7 ^65000:3_0:205_0:6$ ip community-list expanded c199 permit 8 ^65000:3_0:206_0:7$ ip community-list expanded c199 permit 9 ^65000:3_0:207_0:8$ ip community-list expanded c199 permit 10 ^65000:3_0:208_0:9$ ip community-list expanded c199 permit 11 ^65000:3_0:209_0:10$ ip community-list expanded c199 permit 12 ^65000:3_0:210_0:11$ ip community-list expanded c199 permit 13 ^65000:3_0:211_0:12$ ip community-list expanded c199 permit 14 ^65000:3_0:212_0:13$ ip community-list expanded c199 permit 15 ^65000:3_0:213_0:14$ ip community-list expanded c199 permit 16 ^65000:3_0:214_0:15$ ip community-list expanded c199 permit 17 ^65000:3_0:215_0:16$ ip community-list expanded c199 permit 18 ^65000:3_0:216_0:17$ ip community-list expanded c199 permit 19 ^65000:3_0:217_0:18$ ip community-list expanded c199 permit 20 ^65000:3_0:218_0:19$ ip community-list expanded c199 permit 21 ^65000:3_0:219_0:20$ ip community-list expanded c199 permit 22 ^65000:3_0:220_0:21$ ip community-list expanded c199 permit 23 ^65000:3_0:221_0:22$ ip community-list expanded c199 permit 24 ^65000:3_0:222_0:23$ ip community-list expanded c199 permit 25 ^65000:3_0:223_0:24$ ip community-list expanded c199 permit 26 ^65000:3_0:224_0:25$ ip community-list expanded c199 permit 27 ^65000:3_0:225_0:26$ ip community-list expanded c199 permit 28 ^65000:3_0:226_0:27$ ip community-list expanded c199 permit 29 ^65000:3_0:227_0:28$ ip community-list expanded c199 permit 30 ^65000:3_0:228_0:29$ ip community-list expanded c199 permit 31 ^65000:3_0:229_0:30$ ip community-list expanded c199 permit 32 ^65000:3_0:230_0:31$ ip community-list expanded c199 permit 33 ^65000:3_0:231_0:32$ ip community-list expanded c199 permit 34 ^65000:3_0:232_0:33$ ip community-list expanded c199 permit 35 ^65000:3_0:233_0:34$ ip community-list expanded c199 permit 36 ^65000:3_0:234_0:35$ ip community-list expanded c199 permit 37 ^65000:3_0:235_0:36$ ip community-list expanded c199 permit 38 ^65000:3_0:236_0:37$ ip community-list expanded c199 permit 39 ^65000:3_0:237_0:38$ ip community-list expanded c199 permit 40 ^65000:3_0:238_0:39$ ip community-list expanded c199 permit 41 ^65000:3_0:239_0:40$ ip community-list expanded c199 permit 42 ^65000:3_0:240_0:41$ ip community-list expanded c199 permit 43 ^65000:3_0:241_0:42$ ip community-list expanded c199 permit 44 ^65000:3_0:242_0:43$ ip community-list expanded c199 permit 45 ^65000:3_0:243_0:44$ ip community-list expanded c199 permit 46 ^65000:3_0:244_0:45$ ip community-list expanded c199 permit 47 ^65000:3_0:245_0:46$ ip community-list expanded c199 permit 48 ^65000:3_0:246_0:47$ ip community-list expanded c199 permit 49 ^65000:3_0:247_0:48$ ip community-list expanded c199 permit 50 ^65000:3_0:248_0:49$ ip community-list expanded c199 permit 51 ^65000:3_0:249_0:50$ ip community-list expanded c199 permit 52 ^65000:3_0:250_0:51$ ip community-list expanded c199 permit 53 ^65000:3_0:251_0:52$ ip community-list expanded c199 permit 54 ^65000:3_0:252_0:53$ ip community-list expanded c199 permit 55 ^65000:3_0:253_0:54$ ip community-list expanded c199 permit 56 ^65000:3_0:254_0:55$ ip community-list expanded c199 permit 57 ^65000:3_0:255_0:56$ ip community-list expanded c199 permit 58 ^65000:3_0:256_0:57$ route-map calculator permit 19238 match community 1_1_198 2_1_199 1_2_197 1_3_196 1_4_195 set community 0:199 route-map calculator permit 19239 match community 1_5_194 1_6_193 1_7_192 1_8_191 1_9_190 set community 0:199 route-map calculator permit 19240 match community 1_10_189 1_11_188 1_12_187 1_13_186 1_14_185 set community 0:199 route-map calculator permit 19241 match community 1_15_184 1_16_183 1_17_182 1_18_181 1_19_180 set community 0:199 route-map calculator permit 19242 match community 1_20_179 1_21_178 1_22_177 1_23_176 1_24_175 set community 0:199 route-map calculator permit 19243 match community 1_25_174 1_26_173 1_27_172 1_28_171 1_29_170 set community 0:199 route-map calculator permit 19244 match community 1_30_169 1_31_168 1_32_167 1_33_166 1_34_165 set community 0:199 route-map calculator permit 19245 match community 1_35_164 1_36_163 1_37_162 1_38_161 1_39_160 set community 0:199 route-map calculator permit 19246 match community 1_40_159 1_41_158 1_42_157 1_43_156 1_44_155 set community 0:199 route-map calculator permit 19247 match community 1_45_154 1_46_153 1_47_152 1_48_151 1_49_150 set community 0:199 route-map calculator permit 19248 match community 1_50_149 1_51_148 1_52_147 1_53_146 1_54_145 set community 0:199 route-map calculator permit 19249 match community 1_55_144 1_56_143 1_57_142 1_58_141 1_59_140 set community 0:199 route-map calculator permit 19250 match community 1_60_139 1_61_138 1_62_137 1_63_136 1_64_135 set community 0:199 route-map calculator permit 19251 match community 1_65_134 1_66_133 1_67_132 1_68_131 1_69_130 set community 0:199 route-map calculator permit 19252 match community 1_70_129 1_71_128 1_72_127 1_73_126 1_74_125 set community 0:199 route-map calculator permit 19253 match community 1_75_124 1_76_123 1_77_122 1_78_121 1_79_120 set community 0:199 route-map calculator permit 19254 match community 1_80_119 1_81_118 1_82_117 1_83_116 1_84_115 set community 0:199 route-map calculator permit 19255 match community 1_85_114 1_86_113 1_87_112 1_88_111 1_89_110 set community 0:199 route-map calculator permit 19256 match community 1_90_109 1_91_108 1_92_107 1_93_106 1_94_105 set community 0:199 route-map calculator permit 19257 match community 1_95_104 1_96_103 1_97_102 1_98_101 1_99_100 set community 0:199 route-map calculator permit 19258 match community c4_199_1 c3_200_1 c3_201_2 c3_202_3 c3_203_4 set community 0:199 route-map calculator permit 19259 match community c3_204_5 c3_205_6 c3_206_7 c3_207_8 c3_208_9 set community 0:199 route-map calculator permit 19260 match community c3_209_10 c3_210_11 c3_211_12 c3_212_13 c3_213_14 set community 0:199 route-map calculator permit 19261 match community c3_214_15 c3_215_16 c3_216_17 c3_217_18 c3_218_19 set community 0:199 route-map calculator permit 19262 match community c3_219_20 c3_220_21 c3_221_22 c3_222_23 c3_223_24 set community 0:199 route-map calculator permit 19263 match community c3_224_25 c3_225_26 c3_226_27 c3_227_28 c3_228_29 set community 0:199 route-map calculator permit 19264 match community c3_229_30 c3_230_31 c3_231_32 c3_232_33 c3_233_34 set community 0:199 route-map calculator permit 19265 match community c3_234_35 c3_235_36 c3_236_37 c3_237_38 c3_238_39 set community 0:199 route-map calculator permit 19266 match community c3_239_40 c3_240_41 c3_241_42 c3_242_43 c3_243_44 set community 0:199 route-map calculator permit 19267 match community c3_244_45 c3_245_46 c3_246_47 c3_247_48 c3_248_49 set community 0:199 route-map calculator permit 19268 match community c3_249_50 c3_250_51 c3_251_52 c3_252_53 c3_253_54 set community 0:199 route-map calculator permit 19269 match community c3_254_55 c3_255_56 c3_256_57 set community 0:199 ip community-list standard 2_143_175 permit 65000:2 0:143 0:175 route-map calculator permit 19270 match community 2_143_175 set community 0:25025 ip community-list standard 2_126_193 permit 65000:2 0:126 0:193 route-map calculator permit 19271 match community 2_126_193 set community 0:24318 ip community-list standard 2_179_194 permit 65000:2 0:179 0:194 route-map calculator permit 19272 match community 2_179_194 set community 0:34726 ip community-list standard 2_11_145 permit 65000:2 0:11 0:145 ip community-list standard 2_29_55 permit 65000:2 0:29 0:55 route-map calculator permit 19273 match community 2_11_145 2_29_55 set community 0:1595 ip community-list standard 2_72_237 permit 65000:2 0:72 0:237 ip community-list standard 2_79_216 permit 65000:2 0:79 0:216 ip community-list standard 2_108_158 permit 65000:2 0:108 0:158 route-map calculator permit 19274 match community 2_72_237 2_79_216 2_108_158 set community 0:17064 ip community-list standard 2_200_250 permit 65000:2 0:200 0:250 route-map calculator permit 19275 match community 2_200_250 set community 0:50000 ip community-list standard 2_37_236 permit 65000:2 0:37 0:236 ip community-list standard 2_59_148 permit 65000:2 0:59 0:148 ip community-list standard 2_74_118 permit 65000:2 0:74 0:118 route-map calculator permit 19276 match community 2_37_236 2_59_148 2_74_118 set community 0:8732 ip community-list standard 2_103_256 permit 65000:2 0:103 0:256 ip community-list standard 2_128_206 permit 65000:2 0:128 0:206 route-map calculator permit 19277 match community 2_103_256 2_128_206 set community 0:26368 ip community-list standard 2_15_229 permit 65000:2 0:15 0:229 route-map calculator permit 19278 match community 2_15_229 set community 0:3435 ip community-list standard 2_100_247 permit 65000:2 0:100 0:247 ip community-list standard 2_130_190 permit 65000:2 0:130 0:190 route-map calculator permit 19279 match community 2_100_247 2_130_190 set community 0:24700 ip community-list standard 2_178_178 permit 65000:2 0:178 0:178 route-map calculator permit 19280 match community 2_178_178 set community 0:31684 ip community-list standard 2_20_173 permit 65000:2 0:20 0:173 route-map calculator permit 19281 match community 2_20_173 set community 0:3460 ip community-list standard 2_116_163 permit 65000:2 0:116 0:163 route-map calculator permit 19282 match community 2_116_163 set community 0:18908 ip community-list standard 2_21_254 permit 65000:2 0:21 0:254 ip community-list standard 2_42_127 permit 65000:2 0:42 0:127 route-map calculator permit 19283 match community 2_21_254 2_42_127 set community 0:5334 ip community-list standard 2_56_185 permit 65000:2 0:56 0:185 ip community-list standard 2_70_148 permit 65000:2 0:70 0:148 ip community-list standard 2_74_140 permit 65000:2 0:74 0:140 route-map calculator permit 19284 match community 2_56_185 2_70_148 2_74_140 set community 0:10360 ip community-list standard 2_61_125 permit 65000:2 0:61 0:125 route-map calculator permit 19285 match community 2_61_125 set community 0:7625 ip community-list standard 2_77_205 permit 65000:2 0:77 0:205 route-map calculator permit 19286 match community 2_77_205 set community 0:15785 ip community-list standard 2_132_157 permit 65000:2 0:132 0:157 route-map calculator permit 19287 match community 2_132_157 set community 0:20724 ip community-list standard 2_125_149 permit 65000:2 0:125 0:149 route-map calculator permit 19288 match community 2_125_149 set community 0:18625 ip community-list standard 2_103_208 permit 65000:2 0:103 0:208 ip community-list standard 2_104_206 permit 65000:2 0:104 0:206 route-map calculator permit 19289 match community 2_103_208 2_104_206 set community 0:21424 ip community-list standard 2_59_113 permit 65000:2 0:59 0:113 route-map calculator permit 19290 match community 2_59_113 set community 0:6667 ip community-list standard 2_16_233 permit 65000:2 0:16 0:233 route-map calculator permit 19291 match community 2_16_233 set community 0:3728 ip community-list standard 2_96_204 permit 65000:2 0:96 0:204 ip community-list standard 2_102_192 permit 65000:2 0:102 0:192 ip community-list standard 2_128_153 permit 65000:2 0:128 0:153 ip community-list standard 2_136_144 permit 65000:2 0:136 0:144 route-map calculator permit 19292 match community 2_96_204 2_102_192 2_128_153 2_136_144 set community 0:19584 ip community-list standard 2_196_209 permit 65000:2 0:196 0:209 route-map calculator permit 19293 match community 2_196_209 set community 0:40964 ip community-list standard 2_13_183 permit 65000:2 0:13 0:183 ip community-list standard 2_39_61 permit 65000:2 0:39 0:61 route-map calculator permit 19294 match community 2_13_183 2_39_61 set community 0:2379 ip community-list standard 2_180_218 permit 65000:2 0:180 0:218 route-map calculator permit 19295 match community 2_180_218 set community 0:39240 ip community-list standard 2_165_202 permit 65000:2 0:165 0:202 route-map calculator permit 19296 match community 2_165_202 set community 0:33330 ip community-list standard 2_237_240 permit 65000:2 0:237 0:240 route-map calculator permit 19297 match community 2_237_240 set community 0:56880 ip community-list standard 2_49_139 permit 65000:2 0:49 0:139 route-map calculator permit 19298 match community 2_49_139 set community 0:6811 ip community-list standard 2_93_256 permit 65000:2 0:93 0:256 ip community-list standard 2_96_248 permit 65000:2 0:96 0:248 ip community-list standard 2_124_192 permit 65000:2 0:124 0:192 ip community-list standard 2_128_186 permit 65000:2 0:128 0:186 route-map calculator permit 19299 match community 2_93_256 2_96_248 2_124_192 2_128_186 set community 0:23808 ip community-list standard 2_95_179 permit 65000:2 0:95 0:179 route-map calculator permit 19300 match community 2_95_179 set community 0:17005 ip community-list standard 2_68_212 permit 65000:2 0:68 0:212 ip community-list standard 2_106_136 permit 65000:2 0:106 0:136 route-map calculator permit 19301 match community 2_68_212 2_106_136 set community 0:14416 ip community-list standard 2_81_179 permit 65000:2 0:81 0:179 route-map calculator permit 19302 match community 2_81_179 set community 0:14499 ip community-list standard 2_21_237 permit 65000:2 0:21 0:237 ip community-list standard 2_63_79 permit 65000:2 0:63 0:79 route-map calculator permit 19303 match community 2_21_237 2_63_79 set community 0:4977 ip community-list standard 2_136_241 permit 65000:2 0:136 0:241 route-map calculator permit 19304 match community 2_136_241 set community 0:32776 ip community-list standard 2_225_251 permit 65000:2 0:225 0:251 route-map calculator permit 19305 match community 2_225_251 set community 0:56475 ip community-list standard 2_144_241 permit 65000:2 0:144 0:241 route-map calculator permit 19306 match community 2_144_241 set community 0:34704 ip community-list standard 2_18_171 permit 65000:2 0:18 0:171 ip community-list standard 2_19_162 permit 65000:2 0:19 0:162 ip community-list standard 2_27_114 permit 65000:2 0:27 0:114 ip community-list standard 2_38_81 permit 65000:2 0:38 0:81 ip community-list standard 2_54_57 permit 65000:2 0:54 0:57 route-map calculator permit 19307 match community 2_18_171 2_19_162 2_27_114 2_38_81 2_54_57 set community 0:3078 ip community-list standard 2_210_212 permit 65000:2 0:210 0:212 route-map calculator permit 19308 match community 2_210_212 set community 0:44520 ip community-list standard 2_34_146 permit 65000:2 0:34 0:146 ip community-list standard 2_68_73 permit 65000:2 0:68 0:73 route-map calculator permit 19309 match community 2_34_146 2_68_73 set community 0:4964 ip community-list standard 2_136_251 permit 65000:2 0:136 0:251 route-map calculator permit 19310 match community 2_136_251 set community 0:34136 ip community-list standard 2_23_157 permit 65000:2 0:23 0:157 route-map calculator permit 19311 match community 2_23_157 set community 0:3611 ip community-list standard 2_97_187 permit 65000:2 0:97 0:187 route-map calculator permit 19312 match community 2_97_187 set community 0:18139 ip community-list standard 2_204_218 permit 65000:2 0:204 0:218 route-map calculator permit 19313 match community 2_204_218 set community 0:44472 ip community-list standard 2_8_202 permit 65000:2 0:8 0:202 ip community-list standard 2_16_101 permit 65000:2 0:16 0:101 route-map calculator permit 19314 match community 2_8_202 2_16_101 set community 0:1616 ip community-list standard 2_97_135 permit 65000:2 0:97 0:135 route-map calculator permit 19315 match community 2_97_135 set community 0:13095 ip community-list standard 2_41_73 permit 65000:2 0:41 0:73 route-map calculator permit 19316 match community 2_41_73 set community 0:2993 ip community-list standard 2_97_127 permit 65000:2 0:97 0:127 route-map calculator permit 19317 match community 2_97_127 set community 0:12319 ip community-list standard 2_216_239 permit 65000:2 0:216 0:239 route-map calculator permit 19318 match community 2_216_239 set community 0:51624 ip community-list standard 2_70_215 permit 65000:2 0:70 0:215 ip community-list standard 2_86_175 permit 65000:2 0:86 0:175 route-map calculator permit 19319 match community 2_70_215 2_86_175 set community 0:15050 ip community-list standard 2_139_251 permit 65000:2 0:139 0:251 route-map calculator permit 19320 match community 2_139_251 set community 0:34889 ip community-list standard 2_79_169 permit 65000:2 0:79 0:169 route-map calculator permit 19321 match community 2_79_169 set community 0:13351 ip community-list standard 2_219_220 permit 65000:2 0:219 0:220 route-map calculator permit 19322 match community 2_219_220 set community 0:48180 ip community-list standard 2_63_169 permit 65000:2 0:63 0:169 ip community-list standard 2_91_117 permit 65000:2 0:91 0:117 route-map calculator permit 19323 match community 2_63_169 2_91_117 set community 0:10647 ip community-list standard 2_40_157 permit 65000:2 0:40 0:157 route-map calculator permit 19324 match community 2_40_157 set community 0:6280 ip community-list standard 2_228_251 permit 65000:2 0:228 0:251 route-map calculator permit 19325 match community 2_228_251 set community 0:57228 ip community-list standard 2_133_147 permit 65000:2 0:133 0:147 route-map calculator permit 19326 match community 2_133_147 set community 0:19551 ip community-list standard 2_144_199 permit 65000:2 0:144 0:199 route-map calculator permit 19327 match community 2_144_199 set community 0:28656 ip community-list standard 2_188_234 permit 65000:2 0:188 0:234 route-map calculator permit 19328 match community 2_188_234 set community 0:43992 ip community-list standard 2_36_237 permit 65000:2 0:36 0:237 ip community-list standard 2_54_158 permit 65000:2 0:54 0:158 ip community-list standard 2_79_108 permit 65000:2 0:79 0:108 route-map calculator permit 19329 match community 2_36_237 2_54_158 2_79_108 set community 0:8532 ip community-list standard 2_67_184 permit 65000:2 0:67 0:184 ip community-list standard 2_92_134 permit 65000:2 0:92 0:134 route-map calculator permit 19330 match community 2_67_184 2_92_134 set community 0:12328 ip community-list standard 2_131_163 permit 65000:2 0:131 0:163 route-map calculator permit 19331 match community 2_131_163 set community 0:21353 ip community-list standard 2_167_201 permit 65000:2 0:167 0:201 route-map calculator permit 19332 match community 2_167_201 set community 0:33567 ip community-list standard 2_72_188 permit 65000:2 0:72 0:188 ip community-list standard 2_94_144 permit 65000:2 0:94 0:144 ip community-list standard 2_96_141 permit 65000:2 0:96 0:141 route-map calculator permit 19333 match community 2_72_188 2_94_144 2_96_141 set community 0:13536 ip community-list standard 2_76_226 permit 65000:2 0:76 0:226 ip community-list standard 2_113_152 permit 65000:2 0:113 0:152 route-map calculator permit 19334 match community 2_76_226 2_113_152 set community 0:17176 ip community-list standard 2_89_237 permit 65000:2 0:89 0:237 route-map calculator permit 19335 match community 2_89_237 set community 0:21093 ip community-list standard 2_197_206 permit 65000:2 0:197 0:206 route-map calculator permit 19336 match community 2_197_206 set community 0:40582 ip community-list standard 2_192_227 permit 65000:2 0:192 0:227 route-map calculator permit 19337 match community 2_192_227 set community 0:43584 ip community-list standard 2_211_225 permit 65000:2 0:211 0:225 route-map calculator permit 19338 match community 2_211_225 set community 0:47475 ip community-list standard 2_44_224 permit 65000:2 0:44 0:224 ip community-list standard 2_56_176 permit 65000:2 0:56 0:176 ip community-list standard 2_64_154 permit 65000:2 0:64 0:154 ip community-list standard 2_77_128 permit 65000:2 0:77 0:128 ip community-list standard 2_88_112 permit 65000:2 0:88 0:112 route-map calculator permit 19339 match community 2_44_224 2_56_176 2_64_154 2_77_128 2_88_112 set community 0:9856 ip community-list standard 2_175_225 permit 65000:2 0:175 0:225 route-map calculator permit 19340 match community 2_175_225 set community 0:39375 ip community-list standard 2_118_235 permit 65000:2 0:118 0:235 route-map calculator permit 19341 match community 2_118_235 set community 0:27730 ip community-list standard 2_56_193 permit 65000:2 0:56 0:193 route-map calculator permit 19342 match community 2_56_193 set community 0:10808 ip community-list standard 2_57_245 permit 65000:2 0:57 0:245 ip community-list standard 2_95_147 permit 65000:2 0:95 0:147 ip community-list standard 2_105_133 permit 65000:2 0:105 0:133 route-map calculator permit 19343 match community 2_57_245 2_95_147 2_105_133 set community 0:13965 ip community-list standard 2_143_253 permit 65000:2 0:143 0:253 route-map calculator permit 19344 match community 2_143_253 set community 0:36179 ip community-list standard 2_53_177 permit 65000:2 0:53 0:177 ip community-list standard 2_59_159 permit 65000:2 0:59 0:159 route-map calculator permit 19345 match community 2_53_177 2_59_159 set community 0:9381 ip community-list standard 2_8_249 permit 65000:2 0:8 0:249 ip community-list standard 2_12_166 permit 65000:2 0:12 0:166 ip community-list standard 2_24_83 permit 65000:2 0:24 0:83 route-map calculator permit 19346 match community 2_8_249 2_12_166 2_24_83 set community 0:1992 ip community-list standard 2_133_231 permit 65000:2 0:133 0:231 ip community-list standard 2_147_209 permit 65000:2 0:147 0:209 route-map calculator permit 19347 match community 2_133_231 2_147_209 set community 0:30723 ip community-list standard 2_57_250 permit 65000:2 0:57 0:250 ip community-list standard 2_75_190 permit 65000:2 0:75 0:190 ip community-list standard 2_95_150 permit 65000:2 0:95 0:150 ip community-list standard 2_114_125 permit 65000:2 0:114 0:125 route-map calculator permit 19348 match community 2_57_250 2_75_190 2_95_150 2_114_125 set community 0:14250 ip community-list standard 2_68_181 permit 65000:2 0:68 0:181 route-map calculator permit 19349 match community 2_68_181 set community 0:12308 ip community-list standard 2_10_179 permit 65000:2 0:10 0:179 route-map calculator permit 19350 match community 2_10_179 set community 0:1790 ip community-list standard 2_35_246 permit 65000:2 0:35 0:246 ip community-list standard 2_41_210 permit 65000:2 0:41 0:210 ip community-list standard 2_42_205 permit 65000:2 0:42 0:205 ip community-list standard 2_70_123 permit 65000:2 0:70 0:123 ip community-list standard 2_82_105 permit 65000:2 0:82 0:105 route-map calculator permit 19351 match community 2_35_246 2_41_210 2_42_205 2_70_123 2_82_105 set community 0:8610 ip community-list standard 2_208_247 permit 65000:2 0:208 0:247 route-map calculator permit 19352 match community 2_208_247 set community 0:51376 ip community-list standard 2_177_223 permit 65000:2 0:177 0:223 route-map calculator permit 19353 match community 2_177_223 set community 0:39471 ip community-list standard 2_155_207 permit 65000:2 0:155 0:207 route-map calculator permit 19354 match community 2_155_207 set community 0:32085 ip community-list standard 2_159_171 permit 65000:2 0:159 0:171 route-map calculator permit 19355 match community 2_159_171 set community 0:27189 ip community-list standard 2_133_188 permit 65000:2 0:133 0:188 route-map calculator permit 19356 match community 2_133_188 set community 0:25004 ip community-list standard 2_138_229 permit 65000:2 0:138 0:229 route-map calculator permit 19357 match community 2_138_229 set community 0:31602 ip community-list standard 2_118_177 permit 65000:2 0:118 0:177 route-map calculator permit 19358 match community 2_118_177 set community 0:20886 ip community-list standard 2_38_159 permit 65000:2 0:38 0:159 ip community-list standard 2_53_114 permit 65000:2 0:53 0:114 ip community-list standard 2_57_106 permit 65000:2 0:57 0:106 route-map calculator permit 19359 match community 2_38_159 2_53_114 2_57_106 set community 0:6042 ip community-list standard 2_51_231 permit 65000:2 0:51 0:231 ip community-list standard 2_63_187 permit 65000:2 0:63 0:187 ip community-list standard 2_77_153 permit 65000:2 0:77 0:153 ip community-list standard 2_99_119 permit 65000:2 0:99 0:119 route-map calculator permit 19360 match community 2_51_231 2_63_187 2_77_153 2_99_119 set community 0:11781 ip community-list standard 2_107_157 permit 65000:2 0:107 0:157 route-map calculator permit 19361 match community 2_107_157 set community 0:16799 ip community-list standard 2_205_214 permit 65000:2 0:205 0:214 route-map calculator permit 19362 match community 2_205_214 set community 0:43870 ip community-list standard 2_76_241 permit 65000:2 0:76 0:241 route-map calculator permit 19363 match community 2_76_241 set community 0:18316 ip community-list standard 2_120_179 permit 65000:2 0:120 0:179 route-map calculator permit 19364 match community 2_120_179 set community 0:21480 ip community-list standard 2_20_236 permit 65000:2 0:20 0:236 ip community-list standard 2_40_118 permit 65000:2 0:40 0:118 ip community-list standard 2_59_80 permit 65000:2 0:59 0:80 route-map calculator permit 19365 match community 2_20_236 2_40_118 2_59_80 set community 0:4720 ip community-list standard 2_159_199 permit 65000:2 0:159 0:199 route-map calculator permit 19366 match community 2_159_199 set community 0:31641 ip community-list standard 2_67_166 permit 65000:2 0:67 0:166 ip community-list standard 2_83_134 permit 65000:2 0:83 0:134 route-map calculator permit 19367 match community 2_67_166 2_83_134 set community 0:11122 ip community-list standard 2_87_253 permit 65000:2 0:87 0:253 route-map calculator permit 19368 match community 2_87_253 set community 0:22011 ip community-list standard 2_89_252 permit 65000:2 0:89 0:252 ip community-list standard 2_126_178 permit 65000:2 0:126 0:178 route-map calculator permit 19369 match community 2_89_252 2_126_178 set community 0:22428 ip community-list standard 2_37_195 permit 65000:2 0:37 0:195 ip community-list standard 2_39_185 permit 65000:2 0:39 0:185 ip community-list standard 2_65_111 permit 65000:2 0:65 0:111 route-map calculator permit 19370 match community 2_37_195 2_39_185 2_65_111 set community 0:7215 ip community-list standard 2_32_172 permit 65000:2 0:32 0:172 ip community-list standard 2_43_128 permit 65000:2 0:43 0:128 ip community-list standard 2_64_86 permit 65000:2 0:64 0:86 route-map calculator permit 19371 match community 2_32_172 2_43_128 2_64_86 set community 0:5504 ip community-list standard 2_170_236 permit 65000:2 0:170 0:236 route-map calculator permit 19372 match community 2_170_236 set community 0:40120 ip community-list standard 2_127_225 permit 65000:2 0:127 0:225 route-map calculator permit 19373 match community 2_127_225 set community 0:28575 ip community-list standard 2_207_241 permit 65000:2 0:207 0:241 route-map calculator permit 19374 match community 2_207_241 set community 0:49887 ip community-list standard 2_141_255 permit 65000:2 0:141 0:255 ip community-list standard 2_153_235 permit 65000:2 0:153 0:235 route-map calculator permit 19375 match community 2_141_255 2_153_235 set community 0:35955 ip community-list standard 2_151_218 permit 65000:2 0:151 0:218 route-map calculator permit 19376 match community 2_151_218 set community 0:32918 ip community-list standard 2_29_178 permit 65000:2 0:29 0:178 ip community-list standard 2_58_89 permit 65000:2 0:58 0:89 route-map calculator permit 19377 match community 2_29_178 2_58_89 set community 0:5162 ip community-list standard 2_133_197 permit 65000:2 0:133 0:197 route-map calculator permit 19378 match community 2_133_197 set community 0:26201 ip community-list standard 2_57_215 permit 65000:2 0:57 0:215 ip community-list standard 2_95_129 permit 65000:2 0:95 0:129 route-map calculator permit 19379 match community 2_57_215 2_95_129 set community 0:12255 ip community-list standard 2_142_191 permit 65000:2 0:142 0:191 route-map calculator permit 19380 match community 2_142_191 set community 0:27122 ip community-list standard 2_101_208 permit 65000:2 0:101 0:208 ip community-list standard 2_104_202 permit 65000:2 0:104 0:202 route-map calculator permit 19381 match community 2_101_208 2_104_202 set community 0:21008 ip community-list standard 2_218_222 permit 65000:2 0:218 0:222 route-map calculator permit 19382 match community 2_218_222 set community 0:48396 ip community-list standard 2_47_196 permit 65000:2 0:47 0:196 ip community-list standard 2_49_188 permit 65000:2 0:49 0:188 ip community-list standard 2_94_98 permit 65000:2 0:94 0:98 route-map calculator permit 19383 match community 2_47_196 2_49_188 2_94_98 set community 0:9212 ip community-list standard 2_203_221 permit 65000:2 0:203 0:221 route-map calculator permit 19384 match community 2_203_221 set community 0:44863 ip community-list standard 2_180_233 permit 65000:2 0:180 0:233 route-map calculator permit 19385 match community 2_180_233 set community 0:41940 ip community-list standard 2_39_151 permit 65000:2 0:39 0:151 route-map calculator permit 19386 match community 2_39_151 set community 0:5889 ip community-list standard 2_67_229 permit 65000:2 0:67 0:229 route-map calculator permit 19387 match community 2_67_229 set community 0:15343 ip community-list standard 2_157_229 permit 65000:2 0:157 0:229 route-map calculator permit 19388 match community 2_157_229 set community 0:35953 ip community-list standard 2_143_212 permit 65000:2 0:143 0:212 route-map calculator permit 19389 match community 2_143_212 set community 0:30316 ip community-list standard 2_117_229 permit 65000:2 0:117 0:229 route-map calculator permit 19390 match community 2_117_229 set community 0:26793 ip community-list standard 2_66_236 permit 65000:2 0:66 0:236 ip community-list standard 2_88_177 permit 65000:2 0:88 0:177 ip community-list standard 2_118_132 permit 65000:2 0:118 0:132 route-map calculator permit 19391 match community 2_66_236 2_88_177 2_118_132 set community 0:15576 ip community-list standard 2_159_190 permit 65000:2 0:159 0:190 route-map calculator permit 19392 match community 2_159_190 set community 0:30210 ip community-list standard 2_7_149 permit 65000:2 0:7 0:149 route-map calculator permit 19393 match community 2_7_149 set community 0:1043 ip community-list standard 1_103_256 permit 65000:1 0:103 0:256 ip community-list standard 1_104_255 permit 65000:1 0:104 0:255 ip community-list standard 1_105_254 permit 65000:1 0:105 0:254 ip community-list standard 1_106_253 permit 65000:1 0:106 0:253 ip community-list standard 1_107_252 permit 65000:1 0:107 0:252 ip community-list standard 1_108_251 permit 65000:1 0:108 0:251 ip community-list standard 1_109_250 permit 65000:1 0:109 0:250 ip community-list standard 1_110_249 permit 65000:1 0:110 0:249 ip community-list standard 1_111_248 permit 65000:1 0:111 0:248 ip community-list standard 1_112_247 permit 65000:1 0:112 0:247 ip community-list standard 1_113_246 permit 65000:1 0:113 0:246 ip community-list standard 1_114_245 permit 65000:1 0:114 0:245 ip community-list standard 1_115_244 permit 65000:1 0:115 0:244 ip community-list standard 1_116_243 permit 65000:1 0:116 0:243 ip community-list standard 1_117_242 permit 65000:1 0:117 0:242 ip community-list standard 1_118_241 permit 65000:1 0:118 0:241 ip community-list standard 1_119_240 permit 65000:1 0:119 0:240 ip community-list standard 1_120_239 permit 65000:1 0:120 0:239 ip community-list standard 1_121_238 permit 65000:1 0:121 0:238 ip community-list standard 1_122_237 permit 65000:1 0:122 0:237 ip community-list standard 1_123_236 permit 65000:1 0:123 0:236 ip community-list standard 1_124_235 permit 65000:1 0:124 0:235 ip community-list standard 1_125_234 permit 65000:1 0:125 0:234 ip community-list standard 1_126_233 permit 65000:1 0:126 0:233 ip community-list standard 1_127_232 permit 65000:1 0:127 0:232 ip community-list standard 1_128_231 permit 65000:1 0:128 0:231 ip community-list standard 1_129_230 permit 65000:1 0:129 0:230 ip community-list standard 1_130_229 permit 65000:1 0:130 0:229 ip community-list standard 1_131_228 permit 65000:1 0:131 0:228 ip community-list standard 1_132_227 permit 65000:1 0:132 0:227 ip community-list standard 1_133_226 permit 65000:1 0:133 0:226 ip community-list standard 1_134_225 permit 65000:1 0:134 0:225 ip community-list standard 1_135_224 permit 65000:1 0:135 0:224 ip community-list standard 1_136_223 permit 65000:1 0:136 0:223 ip community-list standard 1_137_222 permit 65000:1 0:137 0:222 ip community-list standard 1_138_221 permit 65000:1 0:138 0:221 ip community-list standard 1_139_220 permit 65000:1 0:139 0:220 ip community-list standard 1_140_219 permit 65000:1 0:140 0:219 ip community-list standard 1_141_218 permit 65000:1 0:141 0:218 ip community-list standard 1_142_217 permit 65000:1 0:142 0:217 ip community-list standard 1_143_216 permit 65000:1 0:143 0:216 ip community-list standard 1_144_215 permit 65000:1 0:144 0:215 ip community-list standard 1_145_214 permit 65000:1 0:145 0:214 ip community-list standard 1_146_213 permit 65000:1 0:146 0:213 ip community-list standard 1_147_212 permit 65000:1 0:147 0:212 ip community-list standard 1_148_211 permit 65000:1 0:148 0:211 ip community-list standard 1_149_210 permit 65000:1 0:149 0:210 ip community-list standard 1_150_209 permit 65000:1 0:150 0:209 ip community-list standard 1_151_208 permit 65000:1 0:151 0:208 ip community-list standard 1_152_207 permit 65000:1 0:152 0:207 ip community-list standard 1_153_206 permit 65000:1 0:153 0:206 ip community-list standard 1_154_205 permit 65000:1 0:154 0:205 ip community-list standard 1_155_204 permit 65000:1 0:155 0:204 ip community-list standard 1_156_203 permit 65000:1 0:156 0:203 ip community-list standard 1_157_202 permit 65000:1 0:157 0:202 ip community-list standard 1_158_201 permit 65000:1 0:158 0:201 ip community-list standard 1_159_200 permit 65000:1 0:159 0:200 ip community-list standard 1_160_199 permit 65000:1 0:160 0:199 ip community-list standard 1_161_198 permit 65000:1 0:161 0:198 ip community-list standard 1_162_197 permit 65000:1 0:162 0:197 ip community-list standard 1_163_196 permit 65000:1 0:163 0:196 ip community-list standard 1_164_195 permit 65000:1 0:164 0:195 ip community-list standard 1_165_194 permit 65000:1 0:165 0:194 ip community-list standard 1_166_193 permit 65000:1 0:166 0:193 ip community-list standard 1_167_192 permit 65000:1 0:167 0:192 ip community-list standard 1_168_191 permit 65000:1 0:168 0:191 ip community-list standard 1_169_190 permit 65000:1 0:169 0:190 ip community-list standard 1_170_189 permit 65000:1 0:170 0:189 ip community-list standard 1_171_188 permit 65000:1 0:171 0:188 ip community-list standard 1_172_187 permit 65000:1 0:172 0:187 ip community-list standard 1_173_186 permit 65000:1 0:173 0:186 ip community-list standard 1_174_185 permit 65000:1 0:174 0:185 ip community-list standard 1_175_184 permit 65000:1 0:175 0:184 ip community-list standard 1_176_183 permit 65000:1 0:176 0:183 ip community-list standard 1_177_182 permit 65000:1 0:177 0:182 ip community-list standard 1_178_181 permit 65000:1 0:178 0:181 ip community-list standard 1_179_180 permit 65000:1 0:179 0:180 route-map calculator permit 19394 match community 1_103_256 1_104_255 1_105_254 1_106_253 1_107_252 set community 0:359 route-map calculator permit 19395 match community 1_108_251 1_109_250 1_110_249 1_111_248 1_112_247 set community 0:359 route-map calculator permit 19396 match community 1_113_246 1_114_245 1_115_244 1_116_243 1_117_242 set community 0:359 route-map calculator permit 19397 match community 1_118_241 1_119_240 1_120_239 1_121_238 1_122_237 set community 0:359 route-map calculator permit 19398 match community 1_123_236 1_124_235 1_125_234 1_126_233 1_127_232 set community 0:359 route-map calculator permit 19399 match community 1_128_231 1_129_230 1_130_229 1_131_228 1_132_227 set community 0:359 route-map calculator permit 19400 match community 1_133_226 1_134_225 1_135_224 1_136_223 1_137_222 set community 0:359 route-map calculator permit 19401 match community 1_138_221 1_139_220 1_140_219 1_141_218 1_142_217 set community 0:359 route-map calculator permit 19402 match community 1_143_216 1_144_215 1_145_214 1_146_213 1_147_212 set community 0:359 route-map calculator permit 19403 match community 1_148_211 1_149_210 1_150_209 1_151_208 1_152_207 set community 0:359 route-map calculator permit 19404 match community 1_153_206 1_154_205 1_155_204 1_156_203 1_157_202 set community 0:359 route-map calculator permit 19405 match community 1_158_201 1_159_200 1_160_199 1_161_198 1_162_197 set community 0:359 route-map calculator permit 19406 match community 1_163_196 1_164_195 1_165_194 1_166_193 1_167_192 set community 0:359 route-map calculator permit 19407 match community 1_168_191 1_169_190 1_170_189 1_171_188 1_172_187 set community 0:359 route-map calculator permit 19408 match community 1_173_186 1_174_185 1_175_184 1_176_183 1_177_182 set community 0:359 route-map calculator permit 19409 match community 1_178_181 1_179_180 set community 0:359 ip community-list standard 2_64_194 permit 65000:2 0:64 0:194 ip community-list standard 2_97_128 permit 65000:2 0:97 0:128 route-map calculator permit 19410 match community 2_64_194 2_97_128 set community 0:12416 ip community-list standard 2_194_221 permit 65000:2 0:194 0:221 route-map calculator permit 19411 match community 2_194_221 set community 0:42874 ip community-list standard 2_170_191 permit 65000:2 0:170 0:191 route-map calculator permit 19412 match community 2_170_191 set community 0:32470 ip community-list standard 2_191_227 permit 65000:2 0:191 0:227 route-map calculator permit 19413 match community 2_191_227 set community 0:43357 ip community-list standard 1_1_248 permit 65000:1 0:1 0:248 ip community-list standard 2_1_249 permit 65000:2 0:1 0:249 ip community-list standard 1_2_247 permit 65000:1 0:2 0:247 ip community-list standard 2_3_83 permit 65000:2 0:3 0:83 ip community-list standard 1_3_246 permit 65000:1 0:3 0:246 ip community-list standard 1_4_245 permit 65000:1 0:4 0:245 ip community-list standard 1_5_244 permit 65000:1 0:5 0:244 ip community-list standard 1_6_243 permit 65000:1 0:6 0:243 ip community-list standard 1_7_242 permit 65000:1 0:7 0:242 ip community-list standard 1_8_241 permit 65000:1 0:8 0:241 ip community-list standard 1_9_240 permit 65000:1 0:9 0:240 ip community-list standard 1_10_239 permit 65000:1 0:10 0:239 ip community-list standard 1_11_238 permit 65000:1 0:11 0:238 ip community-list standard 1_12_237 permit 65000:1 0:12 0:237 ip community-list standard 1_13_236 permit 65000:1 0:13 0:236 ip community-list standard 1_14_235 permit 65000:1 0:14 0:235 ip community-list standard 1_15_234 permit 65000:1 0:15 0:234 ip community-list standard 1_16_233 permit 65000:1 0:16 0:233 ip community-list standard 1_17_232 permit 65000:1 0:17 0:232 ip community-list standard 1_18_231 permit 65000:1 0:18 0:231 ip community-list standard 1_19_230 permit 65000:1 0:19 0:230 ip community-list standard 1_20_229 permit 65000:1 0:20 0:229 ip community-list standard 1_21_228 permit 65000:1 0:21 0:228 ip community-list standard 1_22_227 permit 65000:1 0:22 0:227 ip community-list standard 1_23_226 permit 65000:1 0:23 0:226 ip community-list standard 1_24_225 permit 65000:1 0:24 0:225 ip community-list standard 1_25_224 permit 65000:1 0:25 0:224 ip community-list standard 1_26_223 permit 65000:1 0:26 0:223 ip community-list standard 1_27_222 permit 65000:1 0:27 0:222 ip community-list standard 1_28_221 permit 65000:1 0:28 0:221 ip community-list standard 1_29_220 permit 65000:1 0:29 0:220 ip community-list standard 1_30_219 permit 65000:1 0:30 0:219 ip community-list standard 1_31_218 permit 65000:1 0:31 0:218 ip community-list standard 1_32_217 permit 65000:1 0:32 0:217 ip community-list standard 1_33_216 permit 65000:1 0:33 0:216 ip community-list standard 1_34_215 permit 65000:1 0:34 0:215 ip community-list standard 1_35_214 permit 65000:1 0:35 0:214 ip community-list standard 1_36_213 permit 65000:1 0:36 0:213 ip community-list standard 1_37_212 permit 65000:1 0:37 0:212 ip community-list standard 1_38_211 permit 65000:1 0:38 0:211 ip community-list standard 1_39_210 permit 65000:1 0:39 0:210 ip community-list standard 1_40_209 permit 65000:1 0:40 0:209 ip community-list standard 1_41_208 permit 65000:1 0:41 0:208 ip community-list standard 1_42_207 permit 65000:1 0:42 0:207 ip community-list standard 1_43_206 permit 65000:1 0:43 0:206 ip community-list standard 1_44_205 permit 65000:1 0:44 0:205 ip community-list standard 1_45_204 permit 65000:1 0:45 0:204 ip community-list standard 1_46_203 permit 65000:1 0:46 0:203 ip community-list standard 1_47_202 permit 65000:1 0:47 0:202 ip community-list standard 1_48_201 permit 65000:1 0:48 0:201 ip community-list standard 1_49_200 permit 65000:1 0:49 0:200 ip community-list standard 1_50_199 permit 65000:1 0:50 0:199 ip community-list standard 1_51_198 permit 65000:1 0:51 0:198 ip community-list standard 1_52_197 permit 65000:1 0:52 0:197 ip community-list standard 1_53_196 permit 65000:1 0:53 0:196 ip community-list standard 1_54_195 permit 65000:1 0:54 0:195 ip community-list standard 1_55_194 permit 65000:1 0:55 0:194 ip community-list standard 1_56_193 permit 65000:1 0:56 0:193 ip community-list standard 1_57_192 permit 65000:1 0:57 0:192 ip community-list standard 1_58_191 permit 65000:1 0:58 0:191 ip community-list standard 1_59_190 permit 65000:1 0:59 0:190 ip community-list standard 1_60_189 permit 65000:1 0:60 0:189 ip community-list standard 1_61_188 permit 65000:1 0:61 0:188 ip community-list standard 1_62_187 permit 65000:1 0:62 0:187 ip community-list standard 1_63_186 permit 65000:1 0:63 0:186 ip community-list standard 1_64_185 permit 65000:1 0:64 0:185 ip community-list standard 1_65_184 permit 65000:1 0:65 0:184 ip community-list standard 1_66_183 permit 65000:1 0:66 0:183 ip community-list standard 1_67_182 permit 65000:1 0:67 0:182 ip community-list standard 1_68_181 permit 65000:1 0:68 0:181 ip community-list standard 1_69_180 permit 65000:1 0:69 0:180 ip community-list standard 1_70_179 permit 65000:1 0:70 0:179 ip community-list standard 1_71_178 permit 65000:1 0:71 0:178 ip community-list standard 1_72_177 permit 65000:1 0:72 0:177 ip community-list standard 1_73_176 permit 65000:1 0:73 0:176 ip community-list standard 1_74_175 permit 65000:1 0:74 0:175 ip community-list standard 1_75_174 permit 65000:1 0:75 0:174 ip community-list standard 1_76_173 permit 65000:1 0:76 0:173 ip community-list standard 1_77_172 permit 65000:1 0:77 0:172 ip community-list standard 1_78_171 permit 65000:1 0:78 0:171 ip community-list standard 1_79_170 permit 65000:1 0:79 0:170 ip community-list standard 1_80_169 permit 65000:1 0:80 0:169 ip community-list standard 1_81_168 permit 65000:1 0:81 0:168 ip community-list standard 1_82_167 permit 65000:1 0:82 0:167 ip community-list standard 1_83_166 permit 65000:1 0:83 0:166 ip community-list standard 1_84_165 permit 65000:1 0:84 0:165 ip community-list standard 1_85_164 permit 65000:1 0:85 0:164 ip community-list standard 1_86_163 permit 65000:1 0:86 0:163 ip community-list standard 1_87_162 permit 65000:1 0:87 0:162 ip community-list standard 1_88_161 permit 65000:1 0:88 0:161 ip community-list standard 1_89_160 permit 65000:1 0:89 0:160 ip community-list standard 1_90_159 permit 65000:1 0:90 0:159 ip community-list standard 1_91_158 permit 65000:1 0:91 0:158 ip community-list standard 1_92_157 permit 65000:1 0:92 0:157 ip community-list standard 1_93_156 permit 65000:1 0:93 0:156 ip community-list standard 1_94_155 permit 65000:1 0:94 0:155 ip community-list standard 1_95_154 permit 65000:1 0:95 0:154 ip community-list standard 1_96_153 permit 65000:1 0:96 0:153 ip community-list standard 1_97_152 permit 65000:1 0:97 0:152 ip community-list standard 1_98_151 permit 65000:1 0:98 0:151 ip community-list standard 1_99_150 permit 65000:1 0:99 0:150 ip community-list standard 1_100_149 permit 65000:1 0:100 0:149 ip community-list standard 1_101_148 permit 65000:1 0:101 0:148 ip community-list standard 1_102_147 permit 65000:1 0:102 0:147 ip community-list standard 1_103_146 permit 65000:1 0:103 0:146 ip community-list standard 1_104_145 permit 65000:1 0:104 0:145 ip community-list standard 1_105_144 permit 65000:1 0:105 0:144 ip community-list standard 1_106_143 permit 65000:1 0:106 0:143 ip community-list standard 1_107_142 permit 65000:1 0:107 0:142 ip community-list standard 1_108_141 permit 65000:1 0:108 0:141 ip community-list standard 1_109_140 permit 65000:1 0:109 0:140 ip community-list standard 1_110_139 permit 65000:1 0:110 0:139 ip community-list standard 1_111_138 permit 65000:1 0:111 0:138 ip community-list standard 1_112_137 permit 65000:1 0:112 0:137 ip community-list standard 1_113_136 permit 65000:1 0:113 0:136 ip community-list standard 1_114_135 permit 65000:1 0:114 0:135 ip community-list standard 1_115_134 permit 65000:1 0:115 0:134 ip community-list standard 1_116_133 permit 65000:1 0:116 0:133 ip community-list standard 1_117_132 permit 65000:1 0:117 0:132 ip community-list standard 1_118_131 permit 65000:1 0:118 0:131 ip community-list standard 1_119_130 permit 65000:1 0:119 0:130 ip community-list standard 1_120_129 permit 65000:1 0:120 0:129 ip community-list standard 1_121_128 permit 65000:1 0:121 0:128 ip community-list standard 1_122_127 permit 65000:1 0:122 0:127 ip community-list standard 1_123_126 permit 65000:1 0:123 0:126 ip community-list standard 1_124_125 permit 65000:1 0:124 0:125 ip community-list expanded c249 permit 1 ^65000:4_0:249_0:1$ ip community-list expanded c249 permit 2 ^65000:3_0:250_0:1$ ip community-list expanded c249 permit 3 ^65000:3_0:251_0:2$ ip community-list expanded c249 permit 4 ^65000:3_0:252_0:3$ ip community-list expanded c249 permit 5 ^65000:3_0:253_0:4$ ip community-list expanded c249 permit 6 ^65000:3_0:254_0:5$ ip community-list expanded c249 permit 7 ^65000:3_0:255_0:6$ ip community-list expanded c249 permit 8 ^65000:3_0:256_0:7$ route-map calculator permit 19414 match community 1_1_248 2_1_249 1_2_247 2_3_83 1_3_246 set community 0:249 route-map calculator permit 19415 match community 1_4_245 1_5_244 1_6_243 1_7_242 1_8_241 set community 0:249 route-map calculator permit 19416 match community 1_9_240 1_10_239 1_11_238 1_12_237 1_13_236 set community 0:249 route-map calculator permit 19417 match community 1_14_235 1_15_234 1_16_233 1_17_232 1_18_231 set community 0:249 route-map calculator permit 19418 match community 1_19_230 1_20_229 1_21_228 1_22_227 1_23_226 set community 0:249 route-map calculator permit 19419 match community 1_24_225 1_25_224 1_26_223 1_27_222 1_28_221 set community 0:249 route-map calculator permit 19420 match community 1_29_220 1_30_219 1_31_218 1_32_217 1_33_216 set community 0:249 route-map calculator permit 19421 match community 1_34_215 1_35_214 1_36_213 1_37_212 1_38_211 set community 0:249 route-map calculator permit 19422 match community 1_39_210 1_40_209 1_41_208 1_42_207 1_43_206 set community 0:249 route-map calculator permit 19423 match community 1_44_205 1_45_204 1_46_203 1_47_202 1_48_201 set community 0:249 route-map calculator permit 19424 match community 1_49_200 1_50_199 1_51_198 1_52_197 1_53_196 set community 0:249 route-map calculator permit 19425 match community 1_54_195 1_55_194 1_56_193 1_57_192 1_58_191 set community 0:249 route-map calculator permit 19426 match community 1_59_190 1_60_189 1_61_188 1_62_187 1_63_186 set community 0:249 route-map calculator permit 19427 match community 1_64_185 1_65_184 1_66_183 1_67_182 1_68_181 set community 0:249 route-map calculator permit 19428 match community 1_69_180 1_70_179 1_71_178 1_72_177 1_73_176 set community 0:249 route-map calculator permit 19429 match community 1_74_175 1_75_174 1_76_173 1_77_172 1_78_171 set community 0:249 route-map calculator permit 19430 match community 1_79_170 1_80_169 1_81_168 1_82_167 1_83_166 set community 0:249 route-map calculator permit 19431 match community 1_84_165 1_85_164 1_86_163 1_87_162 1_88_161 set community 0:249 route-map calculator permit 19432 match community 1_89_160 1_90_159 1_91_158 1_92_157 1_93_156 set community 0:249 route-map calculator permit 19433 match community 1_94_155 1_95_154 1_96_153 1_97_152 1_98_151 set community 0:249 route-map calculator permit 19434 match community 1_99_150 1_100_149 1_101_148 1_102_147 1_103_146 set community 0:249 route-map calculator permit 19435 match community 1_104_145 1_105_144 1_106_143 1_107_142 1_108_141 set community 0:249 route-map calculator permit 19436 match community 1_109_140 1_110_139 1_111_138 1_112_137 1_113_136 set community 0:249 route-map calculator permit 19437 match community 1_114_135 1_115_134 1_116_133 1_117_132 1_118_131 set community 0:249 route-map calculator permit 19438 match community 1_119_130 1_120_129 1_121_128 1_122_127 1_123_126 set community 0:249 route-map calculator permit 19439 match community 1_124_125 c4_249_1 c3_250_1 c3_251_2 c3_252_3 set community 0:249 route-map calculator permit 19440 match community c3_253_4 c3_254_5 c3_255_6 c3_256_7 set community 0:249 ip community-list standard 2_148_244 permit 65000:2 0:148 0:244 route-map calculator permit 19441 match community 2_148_244 set community 0:36112 ip community-list standard 2_127_155 permit 65000:2 0:127 0:155 route-map calculator permit 19442 match community 2_127_155 set community 0:19685 ip community-list standard 2_59_231 permit 65000:2 0:59 0:231 ip community-list standard 2_77_177 permit 65000:2 0:77 0:177 route-map calculator permit 19443 match community 2_59_231 2_77_177 set community 0:13629 ip community-list standard 2_59_103 permit 65000:2 0:59 0:103 route-map calculator permit 19444 match community 2_59_103 set community 0:6077 ip community-list standard 2_173_228 permit 65000:2 0:173 0:228 route-map calculator permit 19445 match community 2_173_228 set community 0:39444 ip community-list standard 2_180_237 permit 65000:2 0:180 0:237 route-map calculator permit 19446 match community 2_180_237 set community 0:42660 ip community-list standard 2_137_192 permit 65000:2 0:137 0:192 route-map calculator permit 19447 match community 2_137_192 set community 0:26304 ip community-list standard 2_121_244 permit 65000:2 0:121 0:244 ip community-list standard 2_122_242 permit 65000:2 0:122 0:242 route-map calculator permit 19448 match community 2_121_244 2_122_242 set community 0:29524 ip community-list standard 2_189_226 permit 65000:2 0:189 0:226 route-map calculator permit 19449 match community 2_189_226 set community 0:42714 ip community-list standard 2_53_194 permit 65000:2 0:53 0:194 ip community-list standard 2_97_106 permit 65000:2 0:97 0:106 route-map calculator permit 19450 match community 2_53_194 2_97_106 set community 0:10282 ip community-list standard 1_1_95 permit 65000:1 0:1 0:95 ip community-list standard 2_1_96 permit 65000:2 0:1 0:96 ip community-list standard 2_2_48 permit 65000:2 0:2 0:48 ip community-list standard 1_2_94 permit 65000:1 0:2 0:94 ip community-list standard 2_3_32 permit 65000:2 0:3 0:32 ip community-list standard 1_3_93 permit 65000:1 0:3 0:93 ip community-list standard 2_4_24 permit 65000:2 0:4 0:24 ip community-list standard 1_4_92 permit 65000:1 0:4 0:92 ip community-list standard 1_5_91 permit 65000:1 0:5 0:91 ip community-list standard 2_6_16 permit 65000:2 0:6 0:16 ip community-list standard 1_6_90 permit 65000:1 0:6 0:90 ip community-list standard 1_7_89 permit 65000:1 0:7 0:89 ip community-list standard 2_8_12 permit 65000:2 0:8 0:12 ip community-list standard 1_8_88 permit 65000:1 0:8 0:88 ip community-list standard 1_9_87 permit 65000:1 0:9 0:87 ip community-list standard 1_10_86 permit 65000:1 0:10 0:86 ip community-list standard 1_11_85 permit 65000:1 0:11 0:85 ip community-list standard 1_12_84 permit 65000:1 0:12 0:84 ip community-list standard 1_13_83 permit 65000:1 0:13 0:83 ip community-list standard 1_14_82 permit 65000:1 0:14 0:82 ip community-list standard 1_15_81 permit 65000:1 0:15 0:81 ip community-list standard 1_16_80 permit 65000:1 0:16 0:80 ip community-list standard 1_17_79 permit 65000:1 0:17 0:79 ip community-list standard 1_18_78 permit 65000:1 0:18 0:78 ip community-list standard 1_19_77 permit 65000:1 0:19 0:77 ip community-list standard 1_20_76 permit 65000:1 0:20 0:76 ip community-list standard 1_21_75 permit 65000:1 0:21 0:75 ip community-list standard 1_22_74 permit 65000:1 0:22 0:74 ip community-list standard 1_23_73 permit 65000:1 0:23 0:73 ip community-list standard 1_24_72 permit 65000:1 0:24 0:72 ip community-list standard 1_25_71 permit 65000:1 0:25 0:71 ip community-list standard 1_26_70 permit 65000:1 0:26 0:70 ip community-list standard 1_27_69 permit 65000:1 0:27 0:69 ip community-list standard 1_28_68 permit 65000:1 0:28 0:68 ip community-list standard 1_29_67 permit 65000:1 0:29 0:67 ip community-list standard 1_30_66 permit 65000:1 0:30 0:66 ip community-list standard 1_31_65 permit 65000:1 0:31 0:65 ip community-list standard 1_32_64 permit 65000:1 0:32 0:64 ip community-list standard 1_33_63 permit 65000:1 0:33 0:63 ip community-list standard 1_34_62 permit 65000:1 0:34 0:62 ip community-list standard 1_35_61 permit 65000:1 0:35 0:61 ip community-list standard 1_36_60 permit 65000:1 0:36 0:60 ip community-list standard 1_37_59 permit 65000:1 0:37 0:59 ip community-list standard 1_38_58 permit 65000:1 0:38 0:58 ip community-list standard 1_39_57 permit 65000:1 0:39 0:57 ip community-list standard 1_40_56 permit 65000:1 0:40 0:56 ip community-list standard 1_41_55 permit 65000:1 0:41 0:55 ip community-list standard 1_42_54 permit 65000:1 0:42 0:54 ip community-list standard 1_43_53 permit 65000:1 0:43 0:53 ip community-list standard 1_44_52 permit 65000:1 0:44 0:52 ip community-list standard 1_45_51 permit 65000:1 0:45 0:51 ip community-list standard 1_46_50 permit 65000:1 0:46 0:50 ip community-list standard 1_47_49 permit 65000:1 0:47 0:49 ip community-list standard 1_48_48 permit 65000:1 0:48 0:48 ip community-list expanded c96 permit 1 ^65000:4_0:96_0:1$ ip community-list expanded c96 permit 2 ^65000:3_0:97_0:1$ ip community-list expanded c96 permit 3 ^65000:3_0:98_0:2$ ip community-list expanded c96 permit 4 ^65000:3_0:99_0:3$ ip community-list expanded c96 permit 5 ^65000:3_0:100_0:4$ ip community-list expanded c96 permit 6 ^65000:3_0:101_0:5$ ip community-list expanded c96 permit 7 ^65000:3_0:102_0:6$ ip community-list expanded c96 permit 8 ^65000:3_0:103_0:7$ ip community-list expanded c96 permit 9 ^65000:3_0:104_0:8$ ip community-list expanded c96 permit 10 ^65000:3_0:105_0:9$ ip community-list expanded c96 permit 11 ^65000:3_0:106_0:10$ ip community-list expanded c96 permit 12 ^65000:3_0:107_0:11$ ip community-list expanded c96 permit 13 ^65000:3_0:108_0:12$ ip community-list expanded c96 permit 14 ^65000:3_0:109_0:13$ ip community-list expanded c96 permit 15 ^65000:3_0:110_0:14$ ip community-list expanded c96 permit 16 ^65000:3_0:111_0:15$ ip community-list expanded c96 permit 17 ^65000:3_0:112_0:16$ ip community-list expanded c96 permit 18 ^65000:3_0:113_0:17$ ip community-list expanded c96 permit 19 ^65000:3_0:114_0:18$ ip community-list expanded c96 permit 20 ^65000:3_0:115_0:19$ ip community-list expanded c96 permit 21 ^65000:3_0:116_0:20$ ip community-list expanded c96 permit 22 ^65000:3_0:117_0:21$ ip community-list expanded c96 permit 23 ^65000:3_0:118_0:22$ ip community-list expanded c96 permit 24 ^65000:3_0:119_0:23$ ip community-list expanded c96 permit 25 ^65000:3_0:120_0:24$ ip community-list expanded c96 permit 26 ^65000:3_0:121_0:25$ ip community-list expanded c96 permit 27 ^65000:3_0:122_0:26$ ip community-list expanded c96 permit 28 ^65000:3_0:123_0:27$ ip community-list expanded c96 permit 29 ^65000:3_0:124_0:28$ ip community-list expanded c96 permit 30 ^65000:3_0:125_0:29$ ip community-list expanded c96 permit 31 ^65000:3_0:126_0:30$ ip community-list expanded c96 permit 32 ^65000:3_0:127_0:31$ ip community-list expanded c96 permit 33 ^65000:3_0:128_0:32$ ip community-list expanded c96 permit 34 ^65000:3_0:129_0:33$ ip community-list expanded c96 permit 35 ^65000:3_0:130_0:34$ ip community-list expanded c96 permit 36 ^65000:3_0:131_0:35$ ip community-list expanded c96 permit 37 ^65000:3_0:132_0:36$ ip community-list expanded c96 permit 38 ^65000:3_0:133_0:37$ ip community-list expanded c96 permit 39 ^65000:3_0:134_0:38$ ip community-list expanded c96 permit 40 ^65000:3_0:135_0:39$ ip community-list expanded c96 permit 41 ^65000:3_0:136_0:40$ ip community-list expanded c96 permit 42 ^65000:3_0:137_0:41$ ip community-list expanded c96 permit 43 ^65000:3_0:138_0:42$ ip community-list expanded c96 permit 44 ^65000:3_0:139_0:43$ ip community-list expanded c96 permit 45 ^65000:3_0:140_0:44$ ip community-list expanded c96 permit 46 ^65000:3_0:141_0:45$ ip community-list expanded c96 permit 47 ^65000:3_0:142_0:46$ ip community-list expanded c96 permit 48 ^65000:3_0:143_0:47$ ip community-list expanded c96 permit 49 ^65000:3_0:144_0:48$ ip community-list expanded c96 permit 50 ^65000:3_0:145_0:49$ ip community-list expanded c96 permit 51 ^65000:3_0:146_0:50$ ip community-list expanded c96 permit 52 ^65000:3_0:147_0:51$ ip community-list expanded c96 permit 53 ^65000:3_0:148_0:52$ ip community-list expanded c96 permit 54 ^65000:3_0:149_0:53$ ip community-list expanded c96 permit 55 ^65000:3_0:150_0:54$ ip community-list expanded c96 permit 56 ^65000:3_0:151_0:55$ ip community-list expanded c96 permit 57 ^65000:3_0:152_0:56$ ip community-list expanded c96 permit 58 ^65000:3_0:153_0:57$ ip community-list expanded c96 permit 59 ^65000:3_0:154_0:58$ ip community-list expanded c96 permit 60 ^65000:3_0:155_0:59$ ip community-list expanded c96 permit 61 ^65000:3_0:156_0:60$ ip community-list expanded c96 permit 62 ^65000:3_0:157_0:61$ ip community-list expanded c96 permit 63 ^65000:3_0:158_0:62$ ip community-list expanded c96 permit 64 ^65000:3_0:159_0:63$ ip community-list expanded c96 permit 65 ^65000:3_0:160_0:64$ ip community-list expanded c96 permit 66 ^65000:3_0:161_0:65$ ip community-list expanded c96 permit 67 ^65000:3_0:162_0:66$ ip community-list expanded c96 permit 68 ^65000:3_0:163_0:67$ ip community-list expanded c96 permit 69 ^65000:3_0:164_0:68$ ip community-list expanded c96 permit 70 ^65000:3_0:165_0:69$ ip community-list expanded c96 permit 71 ^65000:3_0:166_0:70$ ip community-list expanded c96 permit 72 ^65000:3_0:167_0:71$ ip community-list expanded c96 permit 73 ^65000:3_0:168_0:72$ ip community-list expanded c96 permit 74 ^65000:3_0:169_0:73$ ip community-list expanded c96 permit 75 ^65000:3_0:170_0:74$ ip community-list expanded c96 permit 76 ^65000:3_0:171_0:75$ ip community-list expanded c96 permit 77 ^65000:3_0:172_0:76$ ip community-list expanded c96 permit 78 ^65000:3_0:173_0:77$ ip community-list expanded c96 permit 79 ^65000:3_0:174_0:78$ ip community-list expanded c96 permit 80 ^65000:3_0:175_0:79$ ip community-list expanded c96 permit 81 ^65000:3_0:176_0:80$ ip community-list expanded c96 permit 82 ^65000:3_0:177_0:81$ ip community-list expanded c96 permit 83 ^65000:3_0:178_0:82$ ip community-list expanded c96 permit 84 ^65000:3_0:179_0:83$ ip community-list expanded c96 permit 85 ^65000:3_0:180_0:84$ ip community-list expanded c96 permit 86 ^65000:3_0:181_0:85$ ip community-list expanded c96 permit 87 ^65000:3_0:182_0:86$ ip community-list expanded c96 permit 88 ^65000:3_0:183_0:87$ ip community-list expanded c96 permit 89 ^65000:3_0:184_0:88$ ip community-list expanded c96 permit 90 ^65000:3_0:185_0:89$ ip community-list expanded c96 permit 91 ^65000:3_0:186_0:90$ ip community-list expanded c96 permit 92 ^65000:3_0:187_0:91$ ip community-list expanded c96 permit 93 ^65000:3_0:188_0:92$ ip community-list expanded c96 permit 94 ^65000:3_0:189_0:93$ ip community-list expanded c96 permit 95 ^65000:3_0:190_0:94$ ip community-list expanded c96 permit 96 ^65000:3_0:191_0:95$ ip community-list expanded c96 permit 97 ^65000:4_0:192_0:2$ ip community-list expanded c96 permit 98 ^65000:3_0:192_0:96$ ip community-list expanded c96 permit 99 ^65000:4_0:193_0:2$ ip community-list expanded c96 permit 100 ^65000:3_0:193_0:97$ ip community-list expanded c96 permit 101 ^65000:3_0:194_0:98$ ip community-list expanded c96 permit 102 ^65000:3_0:195_0:99$ ip community-list expanded c96 permit 103 ^65000:3_0:196_0:100$ ip community-list expanded c96 permit 104 ^65000:3_0:197_0:101$ ip community-list expanded c96 permit 105 ^65000:3_0:198_0:102$ ip community-list expanded c96 permit 106 ^65000:3_0:199_0:103$ ip community-list expanded c96 permit 107 ^65000:3_0:200_0:104$ ip community-list expanded c96 permit 108 ^65000:3_0:201_0:105$ ip community-list expanded c96 permit 109 ^65000:3_0:202_0:106$ ip community-list expanded c96 permit 110 ^65000:3_0:203_0:107$ ip community-list expanded c96 permit 111 ^65000:3_0:204_0:108$ ip community-list expanded c96 permit 112 ^65000:3_0:205_0:109$ ip community-list expanded c96 permit 113 ^65000:3_0:206_0:110$ ip community-list expanded c96 permit 114 ^65000:3_0:207_0:111$ ip community-list expanded c96 permit 115 ^65000:3_0:208_0:112$ ip community-list expanded c96 permit 116 ^65000:3_0:209_0:113$ ip community-list expanded c96 permit 117 ^65000:3_0:210_0:114$ ip community-list expanded c96 permit 118 ^65000:3_0:211_0:115$ ip community-list expanded c96 permit 119 ^65000:3_0:212_0:116$ ip community-list expanded c96 permit 120 ^65000:3_0:213_0:117$ ip community-list expanded c96 permit 121 ^65000:3_0:214_0:118$ ip community-list expanded c96 permit 122 ^65000:3_0:215_0:119$ ip community-list expanded c96 permit 123 ^65000:3_0:216_0:120$ ip community-list expanded c96 permit 124 ^65000:3_0:217_0:121$ ip community-list expanded c96 permit 125 ^65000:3_0:218_0:122$ ip community-list expanded c96 permit 126 ^65000:3_0:219_0:123$ ip community-list expanded c96 permit 127 ^65000:3_0:220_0:124$ ip community-list expanded c96 permit 128 ^65000:3_0:221_0:125$ ip community-list expanded c96 permit 129 ^65000:3_0:222_0:126$ ip community-list expanded c96 permit 130 ^65000:3_0:223_0:127$ ip community-list expanded c96 permit 131 ^65000:3_0:224_0:128$ ip community-list expanded c96 permit 132 ^65000:3_0:225_0:129$ ip community-list expanded c96 permit 133 ^65000:3_0:226_0:130$ ip community-list expanded c96 permit 134 ^65000:3_0:227_0:131$ ip community-list expanded c96 permit 135 ^65000:3_0:228_0:132$ ip community-list expanded c96 permit 136 ^65000:3_0:229_0:133$ ip community-list expanded c96 permit 137 ^65000:3_0:230_0:134$ ip community-list expanded c96 permit 138 ^65000:3_0:231_0:135$ ip community-list expanded c96 permit 139 ^65000:3_0:232_0:136$ ip community-list expanded c96 permit 140 ^65000:3_0:233_0:137$ ip community-list expanded c96 permit 141 ^65000:3_0:234_0:138$ ip community-list expanded c96 permit 142 ^65000:3_0:235_0:139$ ip community-list expanded c96 permit 143 ^65000:3_0:236_0:140$ ip community-list expanded c96 permit 144 ^65000:3_0:237_0:141$ ip community-list expanded c96 permit 145 ^65000:3_0:238_0:142$ ip community-list expanded c96 permit 146 ^65000:3_0:239_0:143$ ip community-list expanded c96 permit 147 ^65000:3_0:240_0:144$ ip community-list expanded c96 permit 148 ^65000:3_0:241_0:145$ ip community-list expanded c96 permit 149 ^65000:3_0:242_0:146$ ip community-list expanded c96 permit 150 ^65000:3_0:243_0:147$ ip community-list expanded c96 permit 151 ^65000:3_0:244_0:148$ ip community-list expanded c96 permit 152 ^65000:3_0:245_0:149$ ip community-list expanded c96 permit 153 ^65000:3_0:246_0:150$ ip community-list expanded c96 permit 154 ^65000:3_0:247_0:151$ ip community-list expanded c96 permit 155 ^65000:3_0:248_0:152$ ip community-list expanded c96 permit 156 ^65000:3_0:249_0:153$ ip community-list expanded c96 permit 157 ^65000:3_0:250_0:154$ ip community-list expanded c96 permit 158 ^65000:3_0:251_0:155$ ip community-list expanded c96 permit 159 ^65000:3_0:252_0:156$ ip community-list expanded c96 permit 160 ^65000:3_0:253_0:157$ ip community-list expanded c96 permit 161 ^65000:3_0:254_0:158$ ip community-list expanded c96 permit 162 ^65000:3_0:255_0:159$ ip community-list expanded c96 permit 163 ^65000:3_0:256_0:160$ route-map calculator permit 19451 match community 1_1_95 2_1_96 2_2_48 1_2_94 2_3_32 set community 0:96 route-map calculator permit 19452 match community 1_3_93 2_4_24 1_4_92 1_5_91 2_6_16 set community 0:96 route-map calculator permit 19453 match community 1_6_90 1_7_89 2_8_12 1_8_88 1_9_87 set community 0:96 route-map calculator permit 19454 match community 1_10_86 1_11_85 1_12_84 1_13_83 1_14_82 set community 0:96 route-map calculator permit 19455 match community 1_15_81 1_16_80 1_17_79 1_18_78 1_19_77 set community 0:96 route-map calculator permit 19456 match community 1_20_76 1_21_75 1_22_74 1_23_73 1_24_72 set community 0:96 route-map calculator permit 19457 match community 1_25_71 1_26_70 1_27_69 1_28_68 1_29_67 set community 0:96 route-map calculator permit 19458 match community 1_30_66 1_31_65 1_32_64 1_33_63 1_34_62 set community 0:96 route-map calculator permit 19459 match community 1_35_61 1_36_60 1_37_59 1_38_58 1_39_57 set community 0:96 route-map calculator permit 19460 match community 1_40_56 1_41_55 1_42_54 1_43_53 1_44_52 set community 0:96 route-map calculator permit 19461 match community 1_45_51 1_46_50 1_47_49 1_48_48 c4_96_1 set community 0:96 route-map calculator permit 19462 match community c3_97_1 c3_98_2 c3_99_3 c3_100_4 c3_101_5 set community 0:96 route-map calculator permit 19463 match community c3_102_6 c3_103_7 c3_104_8 c3_105_9 c3_106_10 set community 0:96 route-map calculator permit 19464 match community c3_107_11 c3_108_12 c3_109_13 c3_110_14 c3_111_15 set community 0:96 route-map calculator permit 19465 match community c3_112_16 c3_113_17 c3_114_18 c3_115_19 c3_116_20 set community 0:96 route-map calculator permit 19466 match community c3_117_21 c3_118_22 c3_119_23 c3_120_24 c3_121_25 set community 0:96 route-map calculator permit 19467 match community c3_122_26 c3_123_27 c3_124_28 c3_125_29 c3_126_30 set community 0:96 route-map calculator permit 19468 match community c3_127_31 c3_128_32 c3_129_33 c3_130_34 c3_131_35 set community 0:96 route-map calculator permit 19469 match community c3_132_36 c3_133_37 c3_134_38 c3_135_39 c3_136_40 set community 0:96 route-map calculator permit 19470 match community c3_137_41 c3_138_42 c3_139_43 c3_140_44 c3_141_45 set community 0:96 route-map calculator permit 19471 match community c3_142_46 c3_143_47 c3_144_48 c3_145_49 c3_146_50 set community 0:96 route-map calculator permit 19472 match community c3_147_51 c3_148_52 c3_149_53 c3_150_54 c3_151_55 set community 0:96 route-map calculator permit 19473 match community c3_152_56 c3_153_57 c3_154_58 c3_155_59 c3_156_60 set community 0:96 route-map calculator permit 19474 match community c3_157_61 c3_158_62 c3_159_63 c3_160_64 c3_161_65 set community 0:96 route-map calculator permit 19475 match community c3_162_66 c3_163_67 c3_164_68 c3_165_69 c3_166_70 set community 0:96 route-map calculator permit 19476 match community c3_167_71 c3_168_72 c3_169_73 c3_170_74 c3_171_75 set community 0:96 route-map calculator permit 19477 match community c3_172_76 c3_173_77 c3_174_78 c3_175_79 c3_176_80 set community 0:96 route-map calculator permit 19478 match community c3_177_81 c3_178_82 c3_179_83 c3_180_84 c3_181_85 set community 0:96 route-map calculator permit 19479 match community c3_182_86 c3_183_87 c3_184_88 c3_185_89 c3_186_90 set community 0:96 route-map calculator permit 19480 match community c3_187_91 c3_188_92 c3_189_93 c3_190_94 c3_191_95 set community 0:96 route-map calculator permit 19481 match community c4_192_2 c3_192_96 c4_193_2 c3_193_97 c3_194_98 set community 0:96 route-map calculator permit 19482 match community c3_195_99 c3_196_100 c3_197_101 c3_198_102 c3_199_103 set community 0:96 route-map calculator permit 19483 match community c3_200_104 c3_201_105 c3_202_106 c3_203_107 c3_204_108 set community 0:96 route-map calculator permit 19484 match community c3_205_109 c3_206_110 c3_207_111 c3_208_112 c3_209_113 set community 0:96 route-map calculator permit 19485 match community c3_210_114 c3_211_115 c3_212_116 c3_213_117 c3_214_118 set community 0:96 route-map calculator permit 19486 match community c3_215_119 c3_216_120 c3_217_121 c3_218_122 c3_219_123 set community 0:96 route-map calculator permit 19487 match community c3_220_124 c3_221_125 c3_222_126 c3_223_127 c3_224_128 set community 0:96 route-map calculator permit 19488 match community c3_225_129 c3_226_130 c3_227_131 c3_228_132 c3_229_133 set community 0:96 route-map calculator permit 19489 match community c3_230_134 c3_231_135 c3_232_136 c3_233_137 c3_234_138 set community 0:96 route-map calculator permit 19490 match community c3_235_139 c3_236_140 c3_237_141 c3_238_142 c3_239_143 set community 0:96 route-map calculator permit 19491 match community c3_240_144 c3_241_145 c3_242_146 c3_243_147 c3_244_148 set community 0:96 route-map calculator permit 19492 match community c3_245_149 c3_246_150 c3_247_151 c3_248_152 c3_249_153 set community 0:96 route-map calculator permit 19493 match community c3_250_154 c3_251_155 c3_252_156 c3_253_157 c3_254_158 set community 0:96 route-map calculator permit 19494 match community c3_255_159 c3_256_160 set community 0:96 ip community-list standard 2_157_161 permit 65000:2 0:157 0:161 route-map calculator permit 19495 match community 2_157_161 set community 0:25277 ip community-list standard 2_109_231 permit 65000:2 0:109 0:231 route-map calculator permit 19496 match community 2_109_231 set community 0:25179 ip community-list standard 2_217_226 permit 65000:2 0:217 0:226 route-map calculator permit 19497 match community 2_217_226 set community 0:49042 ip community-list standard 2_50_167 permit 65000:2 0:50 0:167 route-map calculator permit 19498 match community 2_50_167 set community 0:8350 ip community-list standard 2_12_179 permit 65000:2 0:12 0:179 route-map calculator permit 19499 match community 2_12_179 set community 0:2148 ip community-list standard 2_2_205 permit 65000:2 0:2 0:205 ip community-list standard 2_5_82 permit 65000:2 0:5 0:82 ip community-list standard 2_10_41 permit 65000:2 0:10 0:41 ip community-list standard 1_154_256 permit 65000:1 0:154 0:256 ip community-list standard 1_155_255 permit 65000:1 0:155 0:255 ip community-list standard 1_156_254 permit 65000:1 0:156 0:254 ip community-list standard 1_157_253 permit 65000:1 0:157 0:253 ip community-list standard 1_158_252 permit 65000:1 0:158 0:252 ip community-list standard 1_159_251 permit 65000:1 0:159 0:251 ip community-list standard 1_160_250 permit 65000:1 0:160 0:250 ip community-list standard 1_161_249 permit 65000:1 0:161 0:249 ip community-list standard 1_162_248 permit 65000:1 0:162 0:248 ip community-list standard 1_163_247 permit 65000:1 0:163 0:247 ip community-list standard 1_164_246 permit 65000:1 0:164 0:246 ip community-list standard 1_165_245 permit 65000:1 0:165 0:245 ip community-list standard 1_166_244 permit 65000:1 0:166 0:244 ip community-list standard 1_167_243 permit 65000:1 0:167 0:243 ip community-list standard 1_168_242 permit 65000:1 0:168 0:242 ip community-list standard 1_169_241 permit 65000:1 0:169 0:241 ip community-list standard 1_170_240 permit 65000:1 0:170 0:240 ip community-list standard 1_171_239 permit 65000:1 0:171 0:239 ip community-list standard 1_172_238 permit 65000:1 0:172 0:238 ip community-list standard 1_173_237 permit 65000:1 0:173 0:237 ip community-list standard 1_174_236 permit 65000:1 0:174 0:236 ip community-list standard 1_175_235 permit 65000:1 0:175 0:235 ip community-list standard 1_176_234 permit 65000:1 0:176 0:234 ip community-list standard 1_177_233 permit 65000:1 0:177 0:233 ip community-list standard 1_178_232 permit 65000:1 0:178 0:232 ip community-list standard 1_179_231 permit 65000:1 0:179 0:231 ip community-list standard 1_180_230 permit 65000:1 0:180 0:230 ip community-list standard 1_181_229 permit 65000:1 0:181 0:229 ip community-list standard 1_182_228 permit 65000:1 0:182 0:228 ip community-list standard 1_183_227 permit 65000:1 0:183 0:227 ip community-list standard 1_184_226 permit 65000:1 0:184 0:226 ip community-list standard 1_185_225 permit 65000:1 0:185 0:225 ip community-list standard 1_186_224 permit 65000:1 0:186 0:224 ip community-list standard 1_187_223 permit 65000:1 0:187 0:223 ip community-list standard 1_188_222 permit 65000:1 0:188 0:222 ip community-list standard 1_189_221 permit 65000:1 0:189 0:221 ip community-list standard 1_190_220 permit 65000:1 0:190 0:220 ip community-list standard 1_191_219 permit 65000:1 0:191 0:219 ip community-list standard 1_192_218 permit 65000:1 0:192 0:218 ip community-list standard 1_193_217 permit 65000:1 0:193 0:217 ip community-list standard 1_194_216 permit 65000:1 0:194 0:216 ip community-list standard 1_195_215 permit 65000:1 0:195 0:215 ip community-list standard 1_196_214 permit 65000:1 0:196 0:214 ip community-list standard 1_197_213 permit 65000:1 0:197 0:213 ip community-list standard 1_198_212 permit 65000:1 0:198 0:212 ip community-list standard 1_199_211 permit 65000:1 0:199 0:211 ip community-list standard 1_200_210 permit 65000:1 0:200 0:210 ip community-list standard 1_201_209 permit 65000:1 0:201 0:209 ip community-list standard 1_202_208 permit 65000:1 0:202 0:208 ip community-list standard 1_203_207 permit 65000:1 0:203 0:207 ip community-list standard 1_204_206 permit 65000:1 0:204 0:206 ip community-list standard 1_205_205 permit 65000:1 0:205 0:205 route-map calculator permit 19500 match community 2_2_205 2_5_82 2_10_41 1_154_256 1_155_255 set community 0:410 route-map calculator permit 19501 match community 1_156_254 1_157_253 1_158_252 1_159_251 1_160_250 set community 0:410 route-map calculator permit 19502 match community 1_161_249 1_162_248 1_163_247 1_164_246 1_165_245 set community 0:410 route-map calculator permit 19503 match community 1_166_244 1_167_243 1_168_242 1_169_241 1_170_240 set community 0:410 route-map calculator permit 19504 match community 1_171_239 1_172_238 1_173_237 1_174_236 1_175_235 set community 0:410 route-map calculator permit 19505 match community 1_176_234 1_177_233 1_178_232 1_179_231 1_180_230 set community 0:410 route-map calculator permit 19506 match community 1_181_229 1_182_228 1_183_227 1_184_226 1_185_225 set community 0:410 route-map calculator permit 19507 match community 1_186_224 1_187_223 1_188_222 1_189_221 1_190_220 set community 0:410 route-map calculator permit 19508 match community 1_191_219 1_192_218 1_193_217 1_194_216 1_195_215 set community 0:410 route-map calculator permit 19509 match community 1_196_214 1_197_213 1_198_212 1_199_211 1_200_210 set community 0:410 route-map calculator permit 19510 match community 1_201_209 1_202_208 1_203_207 1_204_206 1_205_205 set community 0:410 ip community-list standard 2_3_235 permit 65000:2 0:3 0:235 ip community-list standard 2_5_141 permit 65000:2 0:5 0:141 ip community-list standard 2_15_47 permit 65000:2 0:15 0:47 route-map calculator permit 19511 match community 2_3_235 2_5_141 2_15_47 set community 0:705 ip community-list standard 2_214_214 permit 65000:2 0:214 0:214 route-map calculator permit 19512 match community 2_214_214 set community 0:45796 ip community-list standard 2_190_242 permit 65000:2 0:190 0:242 ip community-list standard 2_209_220 permit 65000:2 0:209 0:220 route-map calculator permit 19513 match community 2_190_242 2_209_220 set community 0:45980 ip community-list standard 2_218_245 permit 65000:2 0:218 0:245 route-map calculator permit 19514 match community 2_218_245 set community 0:53410 ip community-list standard 2_117_255 permit 65000:2 0:117 0:255 ip community-list standard 2_135_221 permit 65000:2 0:135 0:221 ip community-list standard 2_153_195 permit 65000:2 0:153 0:195 route-map calculator permit 19515 match community 2_117_255 2_135_221 2_153_195 set community 0:29835 ip community-list standard 2_89_198 permit 65000:2 0:89 0:198 ip community-list standard 2_99_178 permit 65000:2 0:99 0:178 route-map calculator permit 19516 match community 2_89_198 2_99_178 set community 0:17622 ip community-list standard 2_131_142 permit 65000:2 0:131 0:142 route-map calculator permit 19517 match community 2_131_142 set community 0:18602 ip community-list standard 2_55_61 permit 65000:2 0:55 0:61 route-map calculator permit 19518 match community 2_55_61 set community 0:3355 ip community-list standard 2_66_202 permit 65000:2 0:66 0:202 ip community-list standard 2_101_132 permit 65000:2 0:101 0:132 route-map calculator permit 19519 match community 2_66_202 2_101_132 set community 0:13332 ip community-list standard 2_182_211 permit 65000:2 0:182 0:211 route-map calculator permit 19520 match community 2_182_211 set community 0:38402 ip community-list standard 2_42_159 permit 65000:2 0:42 0:159 ip community-list standard 2_53_126 permit 65000:2 0:53 0:126 ip community-list standard 2_63_106 permit 65000:2 0:63 0:106 route-map calculator permit 19521 match community 2_42_159 2_53_126 2_63_106 set community 0:6678 ip community-list standard 2_47_158 permit 65000:2 0:47 0:158 ip community-list standard 2_79_94 permit 65000:2 0:79 0:94 route-map calculator permit 19522 match community 2_47_158 2_79_94 set community 0:7426 ip community-list standard 2_158_253 permit 65000:2 0:158 0:253 route-map calculator permit 19523 match community 2_158_253 set community 0:39974 ip community-list standard 2_75_155 permit 65000:2 0:75 0:155 ip community-list standard 2_93_125 permit 65000:2 0:93 0:125 route-map calculator permit 19524 match community 2_75_155 2_93_125 set community 0:11625 ip community-list standard 2_25_225 permit 65000:2 0:25 0:225 ip community-list standard 2_45_125 permit 65000:2 0:45 0:125 ip community-list standard 2_75_75 permit 65000:2 0:75 0:75 route-map calculator permit 19525 match community 2_25_225 2_45_125 2_75_75 set community 0:5625 ip community-list standard 2_86_249 permit 65000:2 0:86 0:249 ip community-list standard 2_129_166 permit 65000:2 0:129 0:166 route-map calculator permit 19526 match community 2_86_249 2_129_166 set community 0:21414 ip community-list standard 2_220_241 permit 65000:2 0:220 0:241 route-map calculator permit 19527 match community 2_220_241 set community 0:53020 ip community-list standard 2_62_195 permit 65000:2 0:62 0:195 ip community-list standard 2_65_186 permit 65000:2 0:65 0:186 ip community-list standard 2_78_155 permit 65000:2 0:78 0:155 ip community-list standard 2_93_130 permit 65000:2 0:93 0:130 route-map calculator permit 19528 match community 2_62_195 2_65_186 2_78_155 2_93_130 set community 0:12090 ip community-list standard 2_38_230 permit 65000:2 0:38 0:230 ip community-list standard 2_46_190 permit 65000:2 0:46 0:190 ip community-list standard 2_76_115 permit 65000:2 0:76 0:115 ip community-list standard 2_92_95 permit 65000:2 0:92 0:95 route-map calculator permit 19529 match community 2_38_230 2_46_190 2_76_115 2_92_95 set community 0:8740 ip community-list standard 2_32_149 permit 65000:2 0:32 0:149 route-map calculator permit 19530 match community 2_32_149 set community 0:4768 ip community-list standard 2_15_189 permit 65000:2 0:15 0:189 ip community-list standard 2_21_135 permit 65000:2 0:21 0:135 ip community-list standard 2_27_105 permit 65000:2 0:27 0:105 ip community-list standard 2_35_81 permit 65000:2 0:35 0:81 ip community-list standard 2_45_63 permit 65000:2 0:45 0:63 route-map calculator permit 19531 match community 2_15_189 2_21_135 2_27_105 2_35_81 2_45_63 set community 0:2835 ip community-list standard 2_26_242 permit 65000:2 0:26 0:242 ip community-list standard 2_44_143 permit 65000:2 0:44 0:143 ip community-list standard 2_52_121 permit 65000:2 0:52 0:121 route-map calculator permit 19532 match community 2_26_242 2_44_143 2_52_121 set community 0:6292 ip community-list standard 2_40_166 permit 65000:2 0:40 0:166 ip community-list standard 2_80_83 permit 65000:2 0:80 0:83 route-map calculator permit 19533 match community 2_40_166 2_80_83 set community 0:6640 ip community-list standard 2_38_151 permit 65000:2 0:38 0:151 route-map calculator permit 19534 match community 2_38_151 set community 0:5738 ip community-list standard 2_197_236 permit 65000:2 0:197 0:236 route-map calculator permit 19535 match community 2_197_236 set community 0:46492 ip community-list standard 1_1_94 permit 65000:1 0:1 0:94 ip community-list standard 2_1_95 permit 65000:2 0:1 0:95 ip community-list standard 1_2_93 permit 65000:1 0:2 0:93 ip community-list standard 1_3_92 permit 65000:1 0:3 0:92 ip community-list standard 1_4_91 permit 65000:1 0:4 0:91 ip community-list standard 2_5_19 permit 65000:2 0:5 0:19 ip community-list standard 1_5_90 permit 65000:1 0:5 0:90 ip community-list standard 1_6_89 permit 65000:1 0:6 0:89 ip community-list standard 1_7_88 permit 65000:1 0:7 0:88 ip community-list standard 1_8_87 permit 65000:1 0:8 0:87 ip community-list standard 1_9_86 permit 65000:1 0:9 0:86 ip community-list standard 1_10_85 permit 65000:1 0:10 0:85 ip community-list standard 1_11_84 permit 65000:1 0:11 0:84 ip community-list standard 1_12_83 permit 65000:1 0:12 0:83 ip community-list standard 1_13_82 permit 65000:1 0:13 0:82 ip community-list standard 1_14_81 permit 65000:1 0:14 0:81 ip community-list standard 1_15_80 permit 65000:1 0:15 0:80 ip community-list standard 1_16_79 permit 65000:1 0:16 0:79 ip community-list standard 1_17_78 permit 65000:1 0:17 0:78 ip community-list standard 1_18_77 permit 65000:1 0:18 0:77 ip community-list standard 1_19_76 permit 65000:1 0:19 0:76 ip community-list standard 1_20_75 permit 65000:1 0:20 0:75 ip community-list standard 1_21_74 permit 65000:1 0:21 0:74 ip community-list standard 1_22_73 permit 65000:1 0:22 0:73 ip community-list standard 1_23_72 permit 65000:1 0:23 0:72 ip community-list standard 1_24_71 permit 65000:1 0:24 0:71 ip community-list standard 1_25_70 permit 65000:1 0:25 0:70 ip community-list standard 1_26_69 permit 65000:1 0:26 0:69 ip community-list standard 1_27_68 permit 65000:1 0:27 0:68 ip community-list standard 1_28_67 permit 65000:1 0:28 0:67 ip community-list standard 1_29_66 permit 65000:1 0:29 0:66 ip community-list standard 1_30_65 permit 65000:1 0:30 0:65 ip community-list standard 1_31_64 permit 65000:1 0:31 0:64 ip community-list standard 1_32_63 permit 65000:1 0:32 0:63 ip community-list standard 1_33_62 permit 65000:1 0:33 0:62 ip community-list standard 1_34_61 permit 65000:1 0:34 0:61 ip community-list standard 1_35_60 permit 65000:1 0:35 0:60 ip community-list standard 1_36_59 permit 65000:1 0:36 0:59 ip community-list standard 1_37_58 permit 65000:1 0:37 0:58 ip community-list standard 1_38_57 permit 65000:1 0:38 0:57 ip community-list standard 1_39_56 permit 65000:1 0:39 0:56 ip community-list standard 1_40_55 permit 65000:1 0:40 0:55 ip community-list standard 1_41_54 permit 65000:1 0:41 0:54 ip community-list standard 1_42_53 permit 65000:1 0:42 0:53 ip community-list standard 1_43_52 permit 65000:1 0:43 0:52 ip community-list standard 1_44_51 permit 65000:1 0:44 0:51 ip community-list standard 1_45_50 permit 65000:1 0:45 0:50 ip community-list standard 1_46_49 permit 65000:1 0:46 0:49 ip community-list standard 1_47_48 permit 65000:1 0:47 0:48 ip community-list expanded c95 permit 1 ^65000:4_0:95_0:1$ ip community-list expanded c95 permit 2 ^65000:3_0:96_0:1$ ip community-list expanded c95 permit 3 ^65000:3_0:97_0:2$ ip community-list expanded c95 permit 4 ^65000:3_0:98_0:3$ ip community-list expanded c95 permit 5 ^65000:3_0:99_0:4$ ip community-list expanded c95 permit 6 ^65000:3_0:100_0:5$ ip community-list expanded c95 permit 7 ^65000:3_0:101_0:6$ ip community-list expanded c95 permit 8 ^65000:3_0:102_0:7$ ip community-list expanded c95 permit 9 ^65000:3_0:103_0:8$ ip community-list expanded c95 permit 10 ^65000:3_0:104_0:9$ ip community-list expanded c95 permit 11 ^65000:3_0:105_0:10$ ip community-list expanded c95 permit 12 ^65000:3_0:106_0:11$ ip community-list expanded c95 permit 13 ^65000:3_0:107_0:12$ ip community-list expanded c95 permit 14 ^65000:3_0:108_0:13$ ip community-list expanded c95 permit 15 ^65000:3_0:109_0:14$ ip community-list expanded c95 permit 16 ^65000:3_0:110_0:15$ ip community-list expanded c95 permit 17 ^65000:3_0:111_0:16$ ip community-list expanded c95 permit 18 ^65000:3_0:112_0:17$ ip community-list expanded c95 permit 19 ^65000:3_0:113_0:18$ ip community-list expanded c95 permit 20 ^65000:3_0:114_0:19$ ip community-list expanded c95 permit 21 ^65000:3_0:115_0:20$ ip community-list expanded c95 permit 22 ^65000:3_0:116_0:21$ ip community-list expanded c95 permit 23 ^65000:3_0:117_0:22$ ip community-list expanded c95 permit 24 ^65000:3_0:118_0:23$ ip community-list expanded c95 permit 25 ^65000:3_0:119_0:24$ ip community-list expanded c95 permit 26 ^65000:3_0:120_0:25$ ip community-list expanded c95 permit 27 ^65000:3_0:121_0:26$ ip community-list expanded c95 permit 28 ^65000:3_0:122_0:27$ ip community-list expanded c95 permit 29 ^65000:3_0:123_0:28$ ip community-list expanded c95 permit 30 ^65000:3_0:124_0:29$ ip community-list expanded c95 permit 31 ^65000:3_0:125_0:30$ ip community-list expanded c95 permit 32 ^65000:3_0:126_0:31$ ip community-list expanded c95 permit 33 ^65000:3_0:127_0:32$ ip community-list expanded c95 permit 34 ^65000:3_0:128_0:33$ ip community-list expanded c95 permit 35 ^65000:3_0:129_0:34$ ip community-list expanded c95 permit 36 ^65000:3_0:130_0:35$ ip community-list expanded c95 permit 37 ^65000:3_0:131_0:36$ ip community-list expanded c95 permit 38 ^65000:3_0:132_0:37$ ip community-list expanded c95 permit 39 ^65000:3_0:133_0:38$ ip community-list expanded c95 permit 40 ^65000:3_0:134_0:39$ ip community-list expanded c95 permit 41 ^65000:3_0:135_0:40$ ip community-list expanded c95 permit 42 ^65000:3_0:136_0:41$ ip community-list expanded c95 permit 43 ^65000:3_0:137_0:42$ ip community-list expanded c95 permit 44 ^65000:3_0:138_0:43$ ip community-list expanded c95 permit 45 ^65000:3_0:139_0:44$ ip community-list expanded c95 permit 46 ^65000:3_0:140_0:45$ ip community-list expanded c95 permit 47 ^65000:3_0:141_0:46$ ip community-list expanded c95 permit 48 ^65000:3_0:142_0:47$ ip community-list expanded c95 permit 49 ^65000:3_0:143_0:48$ ip community-list expanded c95 permit 50 ^65000:3_0:144_0:49$ ip community-list expanded c95 permit 51 ^65000:3_0:145_0:50$ ip community-list expanded c95 permit 52 ^65000:3_0:146_0:51$ ip community-list expanded c95 permit 53 ^65000:3_0:147_0:52$ ip community-list expanded c95 permit 54 ^65000:3_0:148_0:53$ ip community-list expanded c95 permit 55 ^65000:3_0:149_0:54$ ip community-list expanded c95 permit 56 ^65000:3_0:150_0:55$ ip community-list expanded c95 permit 57 ^65000:3_0:151_0:56$ ip community-list expanded c95 permit 58 ^65000:3_0:152_0:57$ ip community-list expanded c95 permit 59 ^65000:3_0:153_0:58$ ip community-list expanded c95 permit 60 ^65000:3_0:154_0:59$ ip community-list expanded c95 permit 61 ^65000:3_0:155_0:60$ ip community-list expanded c95 permit 62 ^65000:3_0:156_0:61$ ip community-list expanded c95 permit 63 ^65000:3_0:157_0:62$ ip community-list expanded c95 permit 64 ^65000:3_0:158_0:63$ ip community-list expanded c95 permit 65 ^65000:3_0:159_0:64$ ip community-list expanded c95 permit 66 ^65000:3_0:160_0:65$ ip community-list expanded c95 permit 67 ^65000:3_0:161_0:66$ ip community-list expanded c95 permit 68 ^65000:3_0:162_0:67$ ip community-list expanded c95 permit 69 ^65000:3_0:163_0:68$ ip community-list expanded c95 permit 70 ^65000:3_0:164_0:69$ ip community-list expanded c95 permit 71 ^65000:3_0:165_0:70$ ip community-list expanded c95 permit 72 ^65000:3_0:166_0:71$ ip community-list expanded c95 permit 73 ^65000:3_0:167_0:72$ ip community-list expanded c95 permit 74 ^65000:3_0:168_0:73$ ip community-list expanded c95 permit 75 ^65000:3_0:169_0:74$ ip community-list expanded c95 permit 76 ^65000:3_0:170_0:75$ ip community-list expanded c95 permit 77 ^65000:3_0:171_0:76$ ip community-list expanded c95 permit 78 ^65000:3_0:172_0:77$ ip community-list expanded c95 permit 79 ^65000:3_0:173_0:78$ ip community-list expanded c95 permit 80 ^65000:3_0:174_0:79$ ip community-list expanded c95 permit 81 ^65000:3_0:175_0:80$ ip community-list expanded c95 permit 82 ^65000:3_0:176_0:81$ ip community-list expanded c95 permit 83 ^65000:3_0:177_0:82$ ip community-list expanded c95 permit 84 ^65000:3_0:178_0:83$ ip community-list expanded c95 permit 85 ^65000:3_0:179_0:84$ ip community-list expanded c95 permit 86 ^65000:3_0:180_0:85$ ip community-list expanded c95 permit 87 ^65000:3_0:181_0:86$ ip community-list expanded c95 permit 88 ^65000:3_0:182_0:87$ ip community-list expanded c95 permit 89 ^65000:3_0:183_0:88$ ip community-list expanded c95 permit 90 ^65000:3_0:184_0:89$ ip community-list expanded c95 permit 91 ^65000:3_0:185_0:90$ ip community-list expanded c95 permit 92 ^65000:3_0:186_0:91$ ip community-list expanded c95 permit 93 ^65000:3_0:187_0:92$ ip community-list expanded c95 permit 94 ^65000:3_0:188_0:93$ ip community-list expanded c95 permit 95 ^65000:3_0:189_0:94$ ip community-list expanded c95 permit 96 ^65000:4_0:190_0:2$ ip community-list expanded c95 permit 97 ^65000:3_0:190_0:95$ ip community-list expanded c95 permit 98 ^65000:4_0:191_0:2$ ip community-list expanded c95 permit 99 ^65000:3_0:191_0:96$ ip community-list expanded c95 permit 100 ^65000:3_0:192_0:97$ ip community-list expanded c95 permit 101 ^65000:3_0:193_0:98$ ip community-list expanded c95 permit 102 ^65000:3_0:194_0:99$ ip community-list expanded c95 permit 103 ^65000:3_0:195_0:100$ ip community-list expanded c95 permit 104 ^65000:3_0:196_0:101$ ip community-list expanded c95 permit 105 ^65000:3_0:197_0:102$ ip community-list expanded c95 permit 106 ^65000:3_0:198_0:103$ ip community-list expanded c95 permit 107 ^65000:3_0:199_0:104$ ip community-list expanded c95 permit 108 ^65000:3_0:200_0:105$ ip community-list expanded c95 permit 109 ^65000:3_0:201_0:106$ ip community-list expanded c95 permit 110 ^65000:3_0:202_0:107$ ip community-list expanded c95 permit 111 ^65000:3_0:203_0:108$ ip community-list expanded c95 permit 112 ^65000:3_0:204_0:109$ ip community-list expanded c95 permit 113 ^65000:3_0:205_0:110$ ip community-list expanded c95 permit 114 ^65000:3_0:206_0:111$ ip community-list expanded c95 permit 115 ^65000:3_0:207_0:112$ ip community-list expanded c95 permit 116 ^65000:3_0:208_0:113$ ip community-list expanded c95 permit 117 ^65000:3_0:209_0:114$ ip community-list expanded c95 permit 118 ^65000:3_0:210_0:115$ ip community-list expanded c95 permit 119 ^65000:3_0:211_0:116$ ip community-list expanded c95 permit 120 ^65000:3_0:212_0:117$ ip community-list expanded c95 permit 121 ^65000:3_0:213_0:118$ ip community-list expanded c95 permit 122 ^65000:3_0:214_0:119$ ip community-list expanded c95 permit 123 ^65000:3_0:215_0:120$ ip community-list expanded c95 permit 124 ^65000:3_0:216_0:121$ ip community-list expanded c95 permit 125 ^65000:3_0:217_0:122$ ip community-list expanded c95 permit 126 ^65000:3_0:218_0:123$ ip community-list expanded c95 permit 127 ^65000:3_0:219_0:124$ ip community-list expanded c95 permit 128 ^65000:3_0:220_0:125$ ip community-list expanded c95 permit 129 ^65000:3_0:221_0:126$ ip community-list expanded c95 permit 130 ^65000:3_0:222_0:127$ ip community-list expanded c95 permit 131 ^65000:3_0:223_0:128$ ip community-list expanded c95 permit 132 ^65000:3_0:224_0:129$ ip community-list expanded c95 permit 133 ^65000:3_0:225_0:130$ ip community-list expanded c95 permit 134 ^65000:3_0:226_0:131$ ip community-list expanded c95 permit 135 ^65000:3_0:227_0:132$ ip community-list expanded c95 permit 136 ^65000:3_0:228_0:133$ ip community-list expanded c95 permit 137 ^65000:3_0:229_0:134$ ip community-list expanded c95 permit 138 ^65000:3_0:230_0:135$ ip community-list expanded c95 permit 139 ^65000:3_0:231_0:136$ ip community-list expanded c95 permit 140 ^65000:3_0:232_0:137$ ip community-list expanded c95 permit 141 ^65000:3_0:233_0:138$ ip community-list expanded c95 permit 142 ^65000:3_0:234_0:139$ ip community-list expanded c95 permit 143 ^65000:3_0:235_0:140$ ip community-list expanded c95 permit 144 ^65000:3_0:236_0:141$ ip community-list expanded c95 permit 145 ^65000:3_0:237_0:142$ ip community-list expanded c95 permit 146 ^65000:3_0:238_0:143$ ip community-list expanded c95 permit 147 ^65000:3_0:239_0:144$ ip community-list expanded c95 permit 148 ^65000:3_0:240_0:145$ ip community-list expanded c95 permit 149 ^65000:3_0:241_0:146$ ip community-list expanded c95 permit 150 ^65000:3_0:242_0:147$ ip community-list expanded c95 permit 151 ^65000:3_0:243_0:148$ ip community-list expanded c95 permit 152 ^65000:3_0:244_0:149$ ip community-list expanded c95 permit 153 ^65000:3_0:245_0:150$ ip community-list expanded c95 permit 154 ^65000:3_0:246_0:151$ ip community-list expanded c95 permit 155 ^65000:3_0:247_0:152$ ip community-list expanded c95 permit 156 ^65000:3_0:248_0:153$ ip community-list expanded c95 permit 157 ^65000:3_0:249_0:154$ ip community-list expanded c95 permit 158 ^65000:3_0:250_0:155$ ip community-list expanded c95 permit 159 ^65000:3_0:251_0:156$ ip community-list expanded c95 permit 160 ^65000:3_0:252_0:157$ ip community-list expanded c95 permit 161 ^65000:3_0:253_0:158$ ip community-list expanded c95 permit 162 ^65000:3_0:254_0:159$ ip community-list expanded c95 permit 163 ^65000:3_0:255_0:160$ ip community-list expanded c95 permit 164 ^65000:3_0:256_0:161$ route-map calculator permit 19536 match community 1_1_94 2_1_95 1_2_93 1_3_92 1_4_91 set community 0:95 route-map calculator permit 19537 match community 2_5_19 1_5_90 1_6_89 1_7_88 1_8_87 set community 0:95 route-map calculator permit 19538 match community 1_9_86 1_10_85 1_11_84 1_12_83 1_13_82 set community 0:95 route-map calculator permit 19539 match community 1_14_81 1_15_80 1_16_79 1_17_78 1_18_77 set community 0:95 route-map calculator permit 19540 match community 1_19_76 1_20_75 1_21_74 1_22_73 1_23_72 set community 0:95 route-map calculator permit 19541 match community 1_24_71 1_25_70 1_26_69 1_27_68 1_28_67 set community 0:95 route-map calculator permit 19542 match community 1_29_66 1_30_65 1_31_64 1_32_63 1_33_62 set community 0:95 route-map calculator permit 19543 match community 1_34_61 1_35_60 1_36_59 1_37_58 1_38_57 set community 0:95 route-map calculator permit 19544 match community 1_39_56 1_40_55 1_41_54 1_42_53 1_43_52 set community 0:95 route-map calculator permit 19545 match community 1_44_51 1_45_50 1_46_49 1_47_48 c4_95_1 set community 0:95 route-map calculator permit 19546 match community c3_96_1 c3_97_2 c3_98_3 c3_99_4 c3_100_5 set community 0:95 route-map calculator permit 19547 match community c3_101_6 c3_102_7 c3_103_8 c3_104_9 c3_105_10 set community 0:95 route-map calculator permit 19548 match community c3_106_11 c3_107_12 c3_108_13 c3_109_14 c3_110_15 set community 0:95 route-map calculator permit 19549 match community c3_111_16 c3_112_17 c3_113_18 c3_114_19 c3_115_20 set community 0:95 route-map calculator permit 19550 match community c3_116_21 c3_117_22 c3_118_23 c3_119_24 c3_120_25 set community 0:95 route-map calculator permit 19551 match community c3_121_26 c3_122_27 c3_123_28 c3_124_29 c3_125_30 set community 0:95 route-map calculator permit 19552 match community c3_126_31 c3_127_32 c3_128_33 c3_129_34 c3_130_35 set community 0:95 route-map calculator permit 19553 match community c3_131_36 c3_132_37 c3_133_38 c3_134_39 c3_135_40 set community 0:95 route-map calculator permit 19554 match community c3_136_41 c3_137_42 c3_138_43 c3_139_44 c3_140_45 set community 0:95 route-map calculator permit 19555 match community c3_141_46 c3_142_47 c3_143_48 c3_144_49 c3_145_50 set community 0:95 route-map calculator permit 19556 match community c3_146_51 c3_147_52 c3_148_53 c3_149_54 c3_150_55 set community 0:95 route-map calculator permit 19557 match community c3_151_56 c3_152_57 c3_153_58 c3_154_59 c3_155_60 set community 0:95 route-map calculator permit 19558 match community c3_156_61 c3_157_62 c3_158_63 c3_159_64 c3_160_65 set community 0:95 route-map calculator permit 19559 match community c3_161_66 c3_162_67 c3_163_68 c3_164_69 c3_165_70 set community 0:95 route-map calculator permit 19560 match community c3_166_71 c3_167_72 c3_168_73 c3_169_74 c3_170_75 set community 0:95 route-map calculator permit 19561 match community c3_171_76 c3_172_77 c3_173_78 c3_174_79 c3_175_80 set community 0:95 route-map calculator permit 19562 match community c3_176_81 c3_177_82 c3_178_83 c3_179_84 c3_180_85 set community 0:95 route-map calculator permit 19563 match community c3_181_86 c3_182_87 c3_183_88 c3_184_89 c3_185_90 set community 0:95 route-map calculator permit 19564 match community c3_186_91 c3_187_92 c3_188_93 c3_189_94 c4_190_2 set community 0:95 route-map calculator permit 19565 match community c3_190_95 c4_191_2 c3_191_96 c3_192_97 c3_193_98 set community 0:95 route-map calculator permit 19566 match community c3_194_99 c3_195_100 c3_196_101 c3_197_102 c3_198_103 set community 0:95 route-map calculator permit 19567 match community c3_199_104 c3_200_105 c3_201_106 c3_202_107 c3_203_108 set community 0:95 route-map calculator permit 19568 match community c3_204_109 c3_205_110 c3_206_111 c3_207_112 c3_208_113 set community 0:95 route-map calculator permit 19569 match community c3_209_114 c3_210_115 c3_211_116 c3_212_117 c3_213_118 set community 0:95 route-map calculator permit 19570 match community c3_214_119 c3_215_120 c3_216_121 c3_217_122 c3_218_123 set community 0:95 route-map calculator permit 19571 match community c3_219_124 c3_220_125 c3_221_126 c3_222_127 c3_223_128 set community 0:95 route-map calculator permit 19572 match community c3_224_129 c3_225_130 c3_226_131 c3_227_132 c3_228_133 set community 0:95 route-map calculator permit 19573 match community c3_229_134 c3_230_135 c3_231_136 c3_232_137 c3_233_138 set community 0:95 route-map calculator permit 19574 match community c3_234_139 c3_235_140 c3_236_141 c3_237_142 c3_238_143 set community 0:95 route-map calculator permit 19575 match community c3_239_144 c3_240_145 c3_241_146 c3_242_147 c3_243_148 set community 0:95 route-map calculator permit 19576 match community c3_244_149 c3_245_150 c3_246_151 c3_247_152 c3_248_153 set community 0:95 route-map calculator permit 19577 match community c3_249_154 c3_250_155 c3_251_156 c3_252_157 c3_253_158 set community 0:95 route-map calculator permit 19578 match community c3_254_159 c3_255_160 c3_256_161 set community 0:95 ip community-list standard 2_20_241 permit 65000:2 0:20 0:241 route-map calculator permit 19579 match community 2_20_241 set community 0:4820 ip community-list standard 2_63_207 permit 65000:2 0:63 0:207 ip community-list standard 2_69_189 permit 65000:2 0:69 0:189 ip community-list standard 2_81_161 permit 65000:2 0:81 0:161 route-map calculator permit 19580 match community 2_63_207 2_69_189 2_81_161 set community 0:13041 ip community-list standard 2_125_157 permit 65000:2 0:125 0:157 route-map calculator permit 19581 match community 2_125_157 set community 0:19625 ip community-list standard 2_218_247 permit 65000:2 0:218 0:247 route-map calculator permit 19582 match community 2_218_247 set community 0:53846 ip community-list standard 2_29_121 permit 65000:2 0:29 0:121 route-map calculator permit 19583 match community 2_29_121 set community 0:3509 ip community-list standard 1_1_239 permit 65000:1 0:1 0:239 ip community-list standard 2_1_240 permit 65000:2 0:1 0:240 ip community-list standard 2_2_120 permit 65000:2 0:2 0:120 ip community-list standard 1_2_238 permit 65000:1 0:2 0:238 ip community-list standard 2_3_80 permit 65000:2 0:3 0:80 ip community-list standard 1_3_237 permit 65000:1 0:3 0:237 ip community-list standard 2_4_60 permit 65000:2 0:4 0:60 ip community-list standard 1_4_236 permit 65000:1 0:4 0:236 ip community-list standard 2_5_48 permit 65000:2 0:5 0:48 ip community-list standard 1_5_235 permit 65000:1 0:5 0:235 ip community-list standard 2_6_40 permit 65000:2 0:6 0:40 ip community-list standard 1_6_234 permit 65000:1 0:6 0:234 ip community-list standard 1_7_233 permit 65000:1 0:7 0:233 ip community-list standard 2_8_30 permit 65000:2 0:8 0:30 ip community-list standard 1_8_232 permit 65000:1 0:8 0:232 ip community-list standard 1_9_231 permit 65000:1 0:9 0:231 ip community-list standard 2_10_24 permit 65000:2 0:10 0:24 ip community-list standard 1_10_230 permit 65000:1 0:10 0:230 ip community-list standard 1_11_229 permit 65000:1 0:11 0:229 ip community-list standard 2_12_20 permit 65000:2 0:12 0:20 ip community-list standard 1_12_228 permit 65000:1 0:12 0:228 ip community-list standard 1_13_227 permit 65000:1 0:13 0:227 ip community-list standard 1_14_226 permit 65000:1 0:14 0:226 ip community-list standard 2_15_16 permit 65000:2 0:15 0:16 ip community-list standard 1_15_225 permit 65000:1 0:15 0:225 ip community-list standard 1_16_224 permit 65000:1 0:16 0:224 ip community-list standard 1_17_223 permit 65000:1 0:17 0:223 ip community-list standard 1_18_222 permit 65000:1 0:18 0:222 ip community-list standard 1_19_221 permit 65000:1 0:19 0:221 ip community-list standard 1_20_220 permit 65000:1 0:20 0:220 ip community-list standard 1_21_219 permit 65000:1 0:21 0:219 ip community-list standard 1_22_218 permit 65000:1 0:22 0:218 ip community-list standard 1_23_217 permit 65000:1 0:23 0:217 ip community-list standard 1_24_216 permit 65000:1 0:24 0:216 ip community-list standard 1_25_215 permit 65000:1 0:25 0:215 ip community-list standard 1_26_214 permit 65000:1 0:26 0:214 ip community-list standard 1_27_213 permit 65000:1 0:27 0:213 ip community-list standard 1_28_212 permit 65000:1 0:28 0:212 ip community-list standard 1_29_211 permit 65000:1 0:29 0:211 ip community-list standard 1_30_210 permit 65000:1 0:30 0:210 ip community-list standard 1_31_209 permit 65000:1 0:31 0:209 ip community-list standard 1_32_208 permit 65000:1 0:32 0:208 ip community-list standard 1_33_207 permit 65000:1 0:33 0:207 ip community-list standard 1_34_206 permit 65000:1 0:34 0:206 ip community-list standard 1_35_205 permit 65000:1 0:35 0:205 ip community-list standard 1_36_204 permit 65000:1 0:36 0:204 ip community-list standard 1_37_203 permit 65000:1 0:37 0:203 ip community-list standard 1_38_202 permit 65000:1 0:38 0:202 ip community-list standard 1_39_201 permit 65000:1 0:39 0:201 ip community-list standard 1_40_200 permit 65000:1 0:40 0:200 ip community-list standard 1_41_199 permit 65000:1 0:41 0:199 ip community-list standard 1_42_198 permit 65000:1 0:42 0:198 ip community-list standard 1_43_197 permit 65000:1 0:43 0:197 ip community-list standard 1_44_196 permit 65000:1 0:44 0:196 ip community-list standard 1_45_195 permit 65000:1 0:45 0:195 ip community-list standard 1_46_194 permit 65000:1 0:46 0:194 ip community-list standard 1_47_193 permit 65000:1 0:47 0:193 ip community-list standard 1_48_192 permit 65000:1 0:48 0:192 ip community-list standard 1_49_191 permit 65000:1 0:49 0:191 ip community-list standard 1_50_190 permit 65000:1 0:50 0:190 ip community-list standard 1_51_189 permit 65000:1 0:51 0:189 ip community-list standard 1_52_188 permit 65000:1 0:52 0:188 ip community-list standard 1_53_187 permit 65000:1 0:53 0:187 ip community-list standard 1_54_186 permit 65000:1 0:54 0:186 ip community-list standard 1_55_185 permit 65000:1 0:55 0:185 ip community-list standard 1_56_184 permit 65000:1 0:56 0:184 ip community-list standard 1_57_183 permit 65000:1 0:57 0:183 ip community-list standard 1_58_182 permit 65000:1 0:58 0:182 ip community-list standard 1_59_181 permit 65000:1 0:59 0:181 ip community-list standard 1_60_180 permit 65000:1 0:60 0:180 ip community-list standard 1_61_179 permit 65000:1 0:61 0:179 ip community-list standard 1_62_178 permit 65000:1 0:62 0:178 ip community-list standard 1_63_177 permit 65000:1 0:63 0:177 ip community-list standard 1_64_176 permit 65000:1 0:64 0:176 ip community-list standard 1_65_175 permit 65000:1 0:65 0:175 ip community-list standard 1_66_174 permit 65000:1 0:66 0:174 ip community-list standard 1_67_173 permit 65000:1 0:67 0:173 ip community-list standard 1_68_172 permit 65000:1 0:68 0:172 ip community-list standard 1_69_171 permit 65000:1 0:69 0:171 ip community-list standard 1_70_170 permit 65000:1 0:70 0:170 ip community-list standard 1_71_169 permit 65000:1 0:71 0:169 ip community-list standard 1_72_168 permit 65000:1 0:72 0:168 ip community-list standard 1_73_167 permit 65000:1 0:73 0:167 ip community-list standard 1_74_166 permit 65000:1 0:74 0:166 ip community-list standard 1_75_165 permit 65000:1 0:75 0:165 ip community-list standard 1_76_164 permit 65000:1 0:76 0:164 ip community-list standard 1_77_163 permit 65000:1 0:77 0:163 ip community-list standard 1_78_162 permit 65000:1 0:78 0:162 ip community-list standard 1_79_161 permit 65000:1 0:79 0:161 ip community-list standard 1_80_160 permit 65000:1 0:80 0:160 ip community-list standard 1_81_159 permit 65000:1 0:81 0:159 ip community-list standard 1_82_158 permit 65000:1 0:82 0:158 ip community-list standard 1_83_157 permit 65000:1 0:83 0:157 ip community-list standard 1_84_156 permit 65000:1 0:84 0:156 ip community-list standard 1_85_155 permit 65000:1 0:85 0:155 ip community-list standard 1_86_154 permit 65000:1 0:86 0:154 ip community-list standard 1_87_153 permit 65000:1 0:87 0:153 ip community-list standard 1_88_152 permit 65000:1 0:88 0:152 ip community-list standard 1_89_151 permit 65000:1 0:89 0:151 ip community-list standard 1_90_150 permit 65000:1 0:90 0:150 ip community-list standard 1_91_149 permit 65000:1 0:91 0:149 ip community-list standard 1_92_148 permit 65000:1 0:92 0:148 ip community-list standard 1_93_147 permit 65000:1 0:93 0:147 ip community-list standard 1_94_146 permit 65000:1 0:94 0:146 ip community-list standard 1_95_145 permit 65000:1 0:95 0:145 ip community-list standard 1_96_144 permit 65000:1 0:96 0:144 ip community-list standard 1_97_143 permit 65000:1 0:97 0:143 ip community-list standard 1_98_142 permit 65000:1 0:98 0:142 ip community-list standard 1_99_141 permit 65000:1 0:99 0:141 ip community-list standard 1_100_140 permit 65000:1 0:100 0:140 ip community-list standard 1_101_139 permit 65000:1 0:101 0:139 ip community-list standard 1_102_138 permit 65000:1 0:102 0:138 ip community-list standard 1_103_137 permit 65000:1 0:103 0:137 ip community-list standard 1_104_136 permit 65000:1 0:104 0:136 ip community-list standard 1_105_135 permit 65000:1 0:105 0:135 ip community-list standard 1_106_134 permit 65000:1 0:106 0:134 ip community-list standard 1_107_133 permit 65000:1 0:107 0:133 ip community-list standard 1_108_132 permit 65000:1 0:108 0:132 ip community-list standard 1_109_131 permit 65000:1 0:109 0:131 ip community-list standard 1_110_130 permit 65000:1 0:110 0:130 ip community-list standard 1_111_129 permit 65000:1 0:111 0:129 ip community-list standard 1_112_128 permit 65000:1 0:112 0:128 ip community-list standard 1_113_127 permit 65000:1 0:113 0:127 ip community-list standard 1_114_126 permit 65000:1 0:114 0:126 ip community-list standard 1_115_125 permit 65000:1 0:115 0:125 ip community-list standard 1_116_124 permit 65000:1 0:116 0:124 ip community-list standard 1_117_123 permit 65000:1 0:117 0:123 ip community-list standard 1_118_122 permit 65000:1 0:118 0:122 ip community-list standard 1_119_121 permit 65000:1 0:119 0:121 ip community-list standard 1_120_120 permit 65000:1 0:120 0:120 ip community-list expanded c240 permit 1 ^65000:4_0:240_0:1$ ip community-list expanded c240 permit 2 ^65000:3_0:241_0:1$ ip community-list expanded c240 permit 3 ^65000:3_0:242_0:2$ ip community-list expanded c240 permit 4 ^65000:3_0:243_0:3$ ip community-list expanded c240 permit 5 ^65000:3_0:244_0:4$ ip community-list expanded c240 permit 6 ^65000:3_0:245_0:5$ ip community-list expanded c240 permit 7 ^65000:3_0:246_0:6$ ip community-list expanded c240 permit 8 ^65000:3_0:247_0:7$ ip community-list expanded c240 permit 9 ^65000:3_0:248_0:8$ ip community-list expanded c240 permit 10 ^65000:3_0:249_0:9$ ip community-list expanded c240 permit 11 ^65000:3_0:250_0:10$ ip community-list expanded c240 permit 12 ^65000:3_0:251_0:11$ ip community-list expanded c240 permit 13 ^65000:3_0:252_0:12$ ip community-list expanded c240 permit 14 ^65000:3_0:253_0:13$ ip community-list expanded c240 permit 15 ^65000:3_0:254_0:14$ ip community-list expanded c240 permit 16 ^65000:3_0:255_0:15$ ip community-list expanded c240 permit 17 ^65000:3_0:256_0:16$ route-map calculator permit 19584 match community 1_1_239 2_1_240 2_2_120 1_2_238 2_3_80 set community 0:240 route-map calculator permit 19585 match community 1_3_237 2_4_60 1_4_236 2_5_48 1_5_235 set community 0:240 route-map calculator permit 19586 match community 2_6_40 1_6_234 1_7_233 2_8_30 1_8_232 set community 0:240 route-map calculator permit 19587 match community 1_9_231 2_10_24 1_10_230 1_11_229 2_12_20 set community 0:240 route-map calculator permit 19588 match community 1_12_228 1_13_227 1_14_226 2_15_16 1_15_225 set community 0:240 route-map calculator permit 19589 match community 1_16_224 1_17_223 1_18_222 1_19_221 1_20_220 set community 0:240 route-map calculator permit 19590 match community 1_21_219 1_22_218 1_23_217 1_24_216 1_25_215 set community 0:240 route-map calculator permit 19591 match community 1_26_214 1_27_213 1_28_212 1_29_211 1_30_210 set community 0:240 route-map calculator permit 19592 match community 1_31_209 1_32_208 1_33_207 1_34_206 1_35_205 set community 0:240 route-map calculator permit 19593 match community 1_36_204 1_37_203 1_38_202 1_39_201 1_40_200 set community 0:240 route-map calculator permit 19594 match community 1_41_199 1_42_198 1_43_197 1_44_196 1_45_195 set community 0:240 route-map calculator permit 19595 match community 1_46_194 1_47_193 1_48_192 1_49_191 1_50_190 set community 0:240 route-map calculator permit 19596 match community 1_51_189 1_52_188 1_53_187 1_54_186 1_55_185 set community 0:240 route-map calculator permit 19597 match community 1_56_184 1_57_183 1_58_182 1_59_181 1_60_180 set community 0:240 route-map calculator permit 19598 match community 1_61_179 1_62_178 1_63_177 1_64_176 1_65_175 set community 0:240 route-map calculator permit 19599 match community 1_66_174 1_67_173 1_68_172 1_69_171 1_70_170 set community 0:240 route-map calculator permit 19600 match community 1_71_169 1_72_168 1_73_167 1_74_166 1_75_165 set community 0:240 route-map calculator permit 19601 match community 1_76_164 1_77_163 1_78_162 1_79_161 1_80_160 set community 0:240 route-map calculator permit 19602 match community 1_81_159 1_82_158 1_83_157 1_84_156 1_85_155 set community 0:240 route-map calculator permit 19603 match community 1_86_154 1_87_153 1_88_152 1_89_151 1_90_150 set community 0:240 route-map calculator permit 19604 match community 1_91_149 1_92_148 1_93_147 1_94_146 1_95_145 set community 0:240 route-map calculator permit 19605 match community 1_96_144 1_97_143 1_98_142 1_99_141 1_100_140 set community 0:240 route-map calculator permit 19606 match community 1_101_139 1_102_138 1_103_137 1_104_136 1_105_135 set community 0:240 route-map calculator permit 19607 match community 1_106_134 1_107_133 1_108_132 1_109_131 1_110_130 set community 0:240 route-map calculator permit 19608 match community 1_111_129 1_112_128 1_113_127 1_114_126 1_115_125 set community 0:240 route-map calculator permit 19609 match community 1_116_124 1_117_123 1_118_122 1_119_121 1_120_120 set community 0:240 route-map calculator permit 19610 match community c4_240_1 c3_241_1 c3_242_2 c3_243_3 c3_244_4 set community 0:240 route-map calculator permit 19611 match community c3_245_5 c3_246_6 c3_247_7 c3_248_8 c3_249_9 set community 0:240 route-map calculator permit 19612 match community c3_250_10 c3_251_11 c3_252_12 c3_253_13 c3_254_14 set community 0:240 route-map calculator permit 19613 match community c3_255_15 c3_256_16 set community 0:240 ip community-list standard 2_17_103 permit 65000:2 0:17 0:103 route-map calculator permit 19614 match community 2_17_103 set community 0:1751 ip community-list standard 2_6_209 permit 65000:2 0:6 0:209 ip community-list standard 2_11_114 permit 65000:2 0:11 0:114 ip community-list standard 2_19_66 permit 65000:2 0:19 0:66 ip community-list standard 2_22_57 permit 65000:2 0:22 0:57 ip community-list standard 2_33_38 permit 65000:2 0:33 0:38 route-map calculator permit 19615 match community 2_6_209 2_11_114 2_19_66 2_22_57 2_33_38 set community 0:1254 ip community-list standard 2_35_173 permit 65000:2 0:35 0:173 route-map calculator permit 19616 match community 2_35_173 set community 0:6055 ip community-list standard 2_146_247 permit 65000:2 0:146 0:247 route-map calculator permit 19617 match community 2_146_247 set community 0:36062 ip community-list standard 2_164_215 permit 65000:2 0:164 0:215 ip community-list standard 2_172_205 permit 65000:2 0:172 0:205 route-map calculator permit 19618 match community 2_164_215 2_172_205 set community 0:35260 ip community-list standard 2_45_255 permit 65000:2 0:45 0:255 ip community-list standard 2_51_225 permit 65000:2 0:51 0:225 ip community-list standard 2_75_153 permit 65000:2 0:75 0:153 ip community-list standard 2_85_135 permit 65000:2 0:85 0:135 route-map calculator permit 19619 match community 2_45_255 2_51_225 2_75_153 2_85_135 set community 0:11475 ip community-list standard 2_105_137 permit 65000:2 0:105 0:137 route-map calculator permit 19620 match community 2_105_137 set community 0:14385 ip community-list standard 2_11_53 permit 65000:2 0:11 0:53 route-map calculator permit 19621 match community 2_11_53 set community 0:583 ip community-list standard 2_167_167 permit 65000:2 0:167 0:167 route-map calculator permit 19622 match community 2_167_167 set community 0:27889 ip community-list standard 2_200_238 permit 65000:2 0:200 0:238 route-map calculator permit 19623 match community 2_200_238 set community 0:47600 ip community-list standard 2_102_177 permit 65000:2 0:102 0:177 ip community-list standard 2_118_153 permit 65000:2 0:118 0:153 route-map calculator permit 19624 match community 2_102_177 2_118_153 set community 0:18054 ip community-list standard 2_177_205 permit 65000:2 0:177 0:205 route-map calculator permit 19625 match community 2_177_205 set community 0:36285 ip community-list standard 2_74_211 permit 65000:2 0:74 0:211 route-map calculator permit 19626 match community 2_74_211 set community 0:15614 ip community-list standard 2_4_185 permit 65000:2 0:4 0:185 ip community-list standard 2_5_148 permit 65000:2 0:5 0:148 ip community-list standard 2_10_74 permit 65000:2 0:10 0:74 ip community-list standard 2_20_37 permit 65000:2 0:20 0:37 route-map calculator permit 19627 match community 2_4_185 2_5_148 2_10_74 2_20_37 set community 0:740 ip community-list standard 2_67_217 permit 65000:2 0:67 0:217 route-map calculator permit 19628 match community 2_67_217 set community 0:14539 ip community-list standard 2_16_222 permit 65000:2 0:16 0:222 ip community-list standard 2_24_148 permit 65000:2 0:24 0:148 ip community-list standard 2_32_111 permit 65000:2 0:32 0:111 ip community-list standard 2_37_96 permit 65000:2 0:37 0:96 ip community-list standard 2_48_74 permit 65000:2 0:48 0:74 route-map calculator permit 19629 match community 2_16_222 2_24_148 2_32_111 2_37_96 2_48_74 set community 0:3552 ip community-list standard 2_197_238 permit 65000:2 0:197 0:238 route-map calculator permit 19630 match community 2_197_238 set community 0:46886 ip community-list standard 2_173_205 permit 65000:2 0:173 0:205 route-map calculator permit 19631 match community 2_173_205 set community 0:35465 ip community-list standard 2_247_250 permit 65000:2 0:247 0:250 route-map calculator permit 19632 match community 2_247_250 set community 0:61750 ip community-list standard 2_233_234 permit 65000:2 0:233 0:234 route-map calculator permit 19633 match community 2_233_234 set community 0:54522 ip community-list standard 2_107_159 permit 65000:2 0:107 0:159 route-map calculator permit 19634 match community 2_107_159 set community 0:17013 ip community-list standard 2_107_135 permit 65000:2 0:107 0:135 route-map calculator permit 19635 match community 2_107_135 set community 0:14445 ip community-list standard 2_69_232 permit 65000:2 0:69 0:232 ip community-list standard 2_87_184 permit 65000:2 0:87 0:184 ip community-list standard 2_92_174 permit 65000:2 0:92 0:174 ip community-list standard 2_116_138 permit 65000:2 0:116 0:138 route-map calculator permit 19636 match community 2_69_232 2_87_184 2_92_174 2_116_138 set community 0:16008 ip community-list standard 2_42_201 permit 65000:2 0:42 0:201 ip community-list standard 2_63_134 permit 65000:2 0:63 0:134 ip community-list standard 2_67_126 permit 65000:2 0:67 0:126 route-map calculator permit 19637 match community 2_42_201 2_63_134 2_67_126 set community 0:8442 ip community-list standard 2_150_255 permit 65000:2 0:150 0:255 ip community-list standard 2_153_250 permit 65000:2 0:153 0:250 ip community-list standard 2_170_225 permit 65000:2 0:170 0:225 route-map calculator permit 19638 match community 2_150_255 2_153_250 2_170_225 set community 0:38250 ip community-list standard 2_54_235 permit 65000:2 0:54 0:235 ip community-list standard 2_90_141 permit 65000:2 0:90 0:141 ip community-list standard 2_94_135 permit 65000:2 0:94 0:135 route-map calculator permit 19639 match community 2_54_235 2_90_141 2_94_135 set community 0:12690 ip community-list standard 2_89_231 permit 65000:2 0:89 0:231 route-map calculator permit 19640 match community 2_89_231 set community 0:20559 ip community-list standard 2_116_213 permit 65000:2 0:116 0:213 ip community-list standard 2_142_174 permit 65000:2 0:142 0:174 route-map calculator permit 19641 match community 2_116_213 2_142_174 set community 0:24708 ip community-list standard 1_1_82 permit 65000:1 0:1 0:82 ip community-list standard 2_1_83 permit 65000:2 0:1 0:83 ip community-list standard 1_2_81 permit 65000:1 0:2 0:81 ip community-list standard 1_3_80 permit 65000:1 0:3 0:80 ip community-list standard 1_4_79 permit 65000:1 0:4 0:79 ip community-list standard 1_5_78 permit 65000:1 0:5 0:78 ip community-list standard 1_6_77 permit 65000:1 0:6 0:77 ip community-list standard 1_7_76 permit 65000:1 0:7 0:76 ip community-list standard 1_8_75 permit 65000:1 0:8 0:75 ip community-list standard 1_9_74 permit 65000:1 0:9 0:74 ip community-list standard 1_10_73 permit 65000:1 0:10 0:73 ip community-list standard 1_11_72 permit 65000:1 0:11 0:72 ip community-list standard 1_12_71 permit 65000:1 0:12 0:71 ip community-list standard 1_13_70 permit 65000:1 0:13 0:70 ip community-list standard 1_14_69 permit 65000:1 0:14 0:69 ip community-list standard 1_15_68 permit 65000:1 0:15 0:68 ip community-list standard 1_16_67 permit 65000:1 0:16 0:67 ip community-list standard 1_17_66 permit 65000:1 0:17 0:66 ip community-list standard 1_18_65 permit 65000:1 0:18 0:65 ip community-list standard 1_19_64 permit 65000:1 0:19 0:64 ip community-list standard 1_20_63 permit 65000:1 0:20 0:63 ip community-list standard 1_21_62 permit 65000:1 0:21 0:62 ip community-list standard 1_22_61 permit 65000:1 0:22 0:61 ip community-list standard 1_23_60 permit 65000:1 0:23 0:60 ip community-list standard 1_24_59 permit 65000:1 0:24 0:59 ip community-list standard 1_25_58 permit 65000:1 0:25 0:58 ip community-list standard 1_26_57 permit 65000:1 0:26 0:57 ip community-list standard 1_27_56 permit 65000:1 0:27 0:56 ip community-list standard 1_28_55 permit 65000:1 0:28 0:55 ip community-list standard 1_29_54 permit 65000:1 0:29 0:54 ip community-list standard 1_30_53 permit 65000:1 0:30 0:53 ip community-list standard 1_31_52 permit 65000:1 0:31 0:52 ip community-list standard 1_32_51 permit 65000:1 0:32 0:51 ip community-list standard 1_33_50 permit 65000:1 0:33 0:50 ip community-list standard 1_34_49 permit 65000:1 0:34 0:49 ip community-list standard 1_35_48 permit 65000:1 0:35 0:48 ip community-list standard 1_36_47 permit 65000:1 0:36 0:47 ip community-list standard 1_37_46 permit 65000:1 0:37 0:46 ip community-list standard 1_38_45 permit 65000:1 0:38 0:45 ip community-list standard 1_39_44 permit 65000:1 0:39 0:44 ip community-list standard 1_40_43 permit 65000:1 0:40 0:43 ip community-list standard 1_41_42 permit 65000:1 0:41 0:42 ip community-list expanded c83 permit 1 ^65000:4_0:83_0:1$ ip community-list expanded c83 permit 2 ^65000:3_0:84_0:1$ ip community-list expanded c83 permit 3 ^65000:3_0:85_0:2$ ip community-list expanded c83 permit 4 ^65000:3_0:86_0:3$ ip community-list expanded c83 permit 5 ^65000:3_0:87_0:4$ ip community-list expanded c83 permit 6 ^65000:3_0:88_0:5$ ip community-list expanded c83 permit 7 ^65000:3_0:89_0:6$ ip community-list expanded c83 permit 8 ^65000:3_0:90_0:7$ ip community-list expanded c83 permit 9 ^65000:3_0:91_0:8$ ip community-list expanded c83 permit 10 ^65000:3_0:92_0:9$ ip community-list expanded c83 permit 11 ^65000:3_0:93_0:10$ ip community-list expanded c83 permit 12 ^65000:3_0:94_0:11$ ip community-list expanded c83 permit 13 ^65000:3_0:95_0:12$ ip community-list expanded c83 permit 14 ^65000:3_0:96_0:13$ ip community-list expanded c83 permit 15 ^65000:3_0:97_0:14$ ip community-list expanded c83 permit 16 ^65000:3_0:98_0:15$ ip community-list expanded c83 permit 17 ^65000:3_0:99_0:16$ ip community-list expanded c83 permit 18 ^65000:3_0:100_0:17$ ip community-list expanded c83 permit 19 ^65000:3_0:101_0:18$ ip community-list expanded c83 permit 20 ^65000:3_0:102_0:19$ ip community-list expanded c83 permit 21 ^65000:3_0:103_0:20$ ip community-list expanded c83 permit 22 ^65000:3_0:104_0:21$ ip community-list expanded c83 permit 23 ^65000:3_0:105_0:22$ ip community-list expanded c83 permit 24 ^65000:3_0:106_0:23$ ip community-list expanded c83 permit 25 ^65000:3_0:107_0:24$ ip community-list expanded c83 permit 26 ^65000:3_0:108_0:25$ ip community-list expanded c83 permit 27 ^65000:3_0:109_0:26$ ip community-list expanded c83 permit 28 ^65000:3_0:110_0:27$ ip community-list expanded c83 permit 29 ^65000:3_0:111_0:28$ ip community-list expanded c83 permit 30 ^65000:3_0:112_0:29$ ip community-list expanded c83 permit 31 ^65000:3_0:113_0:30$ ip community-list expanded c83 permit 32 ^65000:3_0:114_0:31$ ip community-list expanded c83 permit 33 ^65000:3_0:115_0:32$ ip community-list expanded c83 permit 34 ^65000:3_0:116_0:33$ ip community-list expanded c83 permit 35 ^65000:3_0:117_0:34$ ip community-list expanded c83 permit 36 ^65000:3_0:118_0:35$ ip community-list expanded c83 permit 37 ^65000:3_0:119_0:36$ ip community-list expanded c83 permit 38 ^65000:3_0:120_0:37$ ip community-list expanded c83 permit 39 ^65000:3_0:121_0:38$ ip community-list expanded c83 permit 40 ^65000:3_0:122_0:39$ ip community-list expanded c83 permit 41 ^65000:3_0:123_0:40$ ip community-list expanded c83 permit 42 ^65000:3_0:124_0:41$ ip community-list expanded c83 permit 43 ^65000:3_0:125_0:42$ ip community-list expanded c83 permit 44 ^65000:3_0:126_0:43$ ip community-list expanded c83 permit 45 ^65000:3_0:127_0:44$ ip community-list expanded c83 permit 46 ^65000:3_0:128_0:45$ ip community-list expanded c83 permit 47 ^65000:3_0:129_0:46$ ip community-list expanded c83 permit 48 ^65000:3_0:130_0:47$ ip community-list expanded c83 permit 49 ^65000:3_0:131_0:48$ ip community-list expanded c83 permit 50 ^65000:3_0:132_0:49$ ip community-list expanded c83 permit 51 ^65000:3_0:133_0:50$ ip community-list expanded c83 permit 52 ^65000:3_0:134_0:51$ ip community-list expanded c83 permit 53 ^65000:3_0:135_0:52$ ip community-list expanded c83 permit 54 ^65000:3_0:136_0:53$ ip community-list expanded c83 permit 55 ^65000:3_0:137_0:54$ ip community-list expanded c83 permit 56 ^65000:3_0:138_0:55$ ip community-list expanded c83 permit 57 ^65000:3_0:139_0:56$ ip community-list expanded c83 permit 58 ^65000:3_0:140_0:57$ ip community-list expanded c83 permit 59 ^65000:3_0:141_0:58$ ip community-list expanded c83 permit 60 ^65000:3_0:142_0:59$ ip community-list expanded c83 permit 61 ^65000:3_0:143_0:60$ ip community-list expanded c83 permit 62 ^65000:3_0:144_0:61$ ip community-list expanded c83 permit 63 ^65000:3_0:145_0:62$ ip community-list expanded c83 permit 64 ^65000:3_0:146_0:63$ ip community-list expanded c83 permit 65 ^65000:3_0:147_0:64$ ip community-list expanded c83 permit 66 ^65000:3_0:148_0:65$ ip community-list expanded c83 permit 67 ^65000:3_0:149_0:66$ ip community-list expanded c83 permit 68 ^65000:3_0:150_0:67$ ip community-list expanded c83 permit 69 ^65000:3_0:151_0:68$ ip community-list expanded c83 permit 70 ^65000:3_0:152_0:69$ ip community-list expanded c83 permit 71 ^65000:3_0:153_0:70$ ip community-list expanded c83 permit 72 ^65000:3_0:154_0:71$ ip community-list expanded c83 permit 73 ^65000:3_0:155_0:72$ ip community-list expanded c83 permit 74 ^65000:3_0:156_0:73$ ip community-list expanded c83 permit 75 ^65000:3_0:157_0:74$ ip community-list expanded c83 permit 76 ^65000:3_0:158_0:75$ ip community-list expanded c83 permit 77 ^65000:3_0:159_0:76$ ip community-list expanded c83 permit 78 ^65000:3_0:160_0:77$ ip community-list expanded c83 permit 79 ^65000:3_0:161_0:78$ ip community-list expanded c83 permit 80 ^65000:3_0:162_0:79$ ip community-list expanded c83 permit 81 ^65000:3_0:163_0:80$ ip community-list expanded c83 permit 82 ^65000:3_0:164_0:81$ ip community-list expanded c83 permit 83 ^65000:3_0:165_0:82$ ip community-list expanded c83 permit 84 ^65000:4_0:166_0:2$ ip community-list expanded c83 permit 85 ^65000:3_0:166_0:83$ ip community-list expanded c83 permit 86 ^65000:4_0:167_0:2$ ip community-list expanded c83 permit 87 ^65000:3_0:167_0:84$ ip community-list expanded c83 permit 88 ^65000:3_0:168_0:85$ ip community-list expanded c83 permit 89 ^65000:3_0:169_0:86$ ip community-list expanded c83 permit 90 ^65000:3_0:170_0:87$ ip community-list expanded c83 permit 91 ^65000:3_0:171_0:88$ ip community-list expanded c83 permit 92 ^65000:3_0:172_0:89$ ip community-list expanded c83 permit 93 ^65000:3_0:173_0:90$ ip community-list expanded c83 permit 94 ^65000:3_0:174_0:91$ ip community-list expanded c83 permit 95 ^65000:3_0:175_0:92$ ip community-list expanded c83 permit 96 ^65000:3_0:176_0:93$ ip community-list expanded c83 permit 97 ^65000:3_0:177_0:94$ ip community-list expanded c83 permit 98 ^65000:3_0:178_0:95$ ip community-list expanded c83 permit 99 ^65000:3_0:179_0:96$ ip community-list expanded c83 permit 100 ^65000:3_0:180_0:97$ ip community-list expanded c83 permit 101 ^65000:3_0:181_0:98$ ip community-list expanded c83 permit 102 ^65000:3_0:182_0:99$ ip community-list expanded c83 permit 103 ^65000:3_0:183_0:100$ ip community-list expanded c83 permit 104 ^65000:3_0:184_0:101$ ip community-list expanded c83 permit 105 ^65000:3_0:185_0:102$ ip community-list expanded c83 permit 106 ^65000:3_0:186_0:103$ ip community-list expanded c83 permit 107 ^65000:3_0:187_0:104$ ip community-list expanded c83 permit 108 ^65000:3_0:188_0:105$ ip community-list expanded c83 permit 109 ^65000:3_0:189_0:106$ ip community-list expanded c83 permit 110 ^65000:3_0:190_0:107$ ip community-list expanded c83 permit 111 ^65000:3_0:191_0:108$ ip community-list expanded c83 permit 112 ^65000:3_0:192_0:109$ ip community-list expanded c83 permit 113 ^65000:3_0:193_0:110$ ip community-list expanded c83 permit 114 ^65000:3_0:194_0:111$ ip community-list expanded c83 permit 115 ^65000:3_0:195_0:112$ ip community-list expanded c83 permit 116 ^65000:3_0:196_0:113$ ip community-list expanded c83 permit 117 ^65000:3_0:197_0:114$ ip community-list expanded c83 permit 118 ^65000:3_0:198_0:115$ ip community-list expanded c83 permit 119 ^65000:3_0:199_0:116$ ip community-list expanded c83 permit 120 ^65000:3_0:200_0:117$ ip community-list expanded c83 permit 121 ^65000:3_0:201_0:118$ ip community-list expanded c83 permit 122 ^65000:3_0:202_0:119$ ip community-list expanded c83 permit 123 ^65000:3_0:203_0:120$ ip community-list expanded c83 permit 124 ^65000:3_0:204_0:121$ ip community-list expanded c83 permit 125 ^65000:3_0:205_0:122$ ip community-list expanded c83 permit 126 ^65000:3_0:206_0:123$ ip community-list expanded c83 permit 127 ^65000:3_0:207_0:124$ ip community-list expanded c83 permit 128 ^65000:3_0:208_0:125$ ip community-list expanded c83 permit 129 ^65000:3_0:209_0:126$ ip community-list expanded c83 permit 130 ^65000:3_0:210_0:127$ ip community-list expanded c83 permit 131 ^65000:3_0:211_0:128$ ip community-list expanded c83 permit 132 ^65000:3_0:212_0:129$ ip community-list expanded c83 permit 133 ^65000:3_0:213_0:130$ ip community-list expanded c83 permit 134 ^65000:3_0:214_0:131$ ip community-list expanded c83 permit 135 ^65000:3_0:215_0:132$ ip community-list expanded c83 permit 136 ^65000:3_0:216_0:133$ ip community-list expanded c83 permit 137 ^65000:3_0:217_0:134$ ip community-list expanded c83 permit 138 ^65000:3_0:218_0:135$ ip community-list expanded c83 permit 139 ^65000:3_0:219_0:136$ ip community-list expanded c83 permit 140 ^65000:3_0:220_0:137$ ip community-list expanded c83 permit 141 ^65000:3_0:221_0:138$ ip community-list expanded c83 permit 142 ^65000:3_0:222_0:139$ ip community-list expanded c83 permit 143 ^65000:3_0:223_0:140$ ip community-list expanded c83 permit 144 ^65000:3_0:224_0:141$ ip community-list expanded c83 permit 145 ^65000:3_0:225_0:142$ ip community-list expanded c83 permit 146 ^65000:3_0:226_0:143$ ip community-list expanded c83 permit 147 ^65000:3_0:227_0:144$ ip community-list expanded c83 permit 148 ^65000:3_0:228_0:145$ ip community-list expanded c83 permit 149 ^65000:3_0:229_0:146$ ip community-list expanded c83 permit 150 ^65000:3_0:230_0:147$ ip community-list expanded c83 permit 151 ^65000:3_0:231_0:148$ ip community-list expanded c83 permit 152 ^65000:3_0:232_0:149$ ip community-list expanded c83 permit 153 ^65000:3_0:233_0:150$ ip community-list expanded c83 permit 154 ^65000:3_0:234_0:151$ ip community-list expanded c83 permit 155 ^65000:3_0:235_0:152$ ip community-list expanded c83 permit 156 ^65000:3_0:236_0:153$ ip community-list expanded c83 permit 157 ^65000:3_0:237_0:154$ ip community-list expanded c83 permit 158 ^65000:3_0:238_0:155$ ip community-list expanded c83 permit 159 ^65000:3_0:239_0:156$ ip community-list expanded c83 permit 160 ^65000:3_0:240_0:157$ ip community-list expanded c83 permit 161 ^65000:3_0:241_0:158$ ip community-list expanded c83 permit 162 ^65000:3_0:242_0:159$ ip community-list expanded c83 permit 163 ^65000:3_0:243_0:160$ ip community-list expanded c83 permit 164 ^65000:3_0:244_0:161$ ip community-list expanded c83 permit 165 ^65000:3_0:245_0:162$ ip community-list expanded c83 permit 166 ^65000:3_0:246_0:163$ ip community-list expanded c83 permit 167 ^65000:3_0:247_0:164$ ip community-list expanded c83 permit 168 ^65000:3_0:248_0:165$ ip community-list expanded c83 permit 169 ^65000:4_0:249_0:3$ ip community-list expanded c83 permit 170 ^65000:3_0:249_0:166$ ip community-list expanded c83 permit 171 ^65000:4_0:250_0:3$ ip community-list expanded c83 permit 172 ^65000:3_0:250_0:167$ ip community-list expanded c83 permit 173 ^65000:4_0:251_0:3$ ip community-list expanded c83 permit 174 ^65000:3_0:251_0:168$ ip community-list expanded c83 permit 175 ^65000:3_0:252_0:169$ ip community-list expanded c83 permit 176 ^65000:3_0:253_0:170$ ip community-list expanded c83 permit 177 ^65000:3_0:254_0:171$ ip community-list expanded c83 permit 178 ^65000:3_0:255_0:172$ ip community-list expanded c83 permit 179 ^65000:3_0:256_0:173$ route-map calculator permit 19642 match community 1_1_82 2_1_83 1_2_81 1_3_80 1_4_79 set community 0:83 route-map calculator permit 19643 match community 1_5_78 1_6_77 1_7_76 1_8_75 1_9_74 set community 0:83 route-map calculator permit 19644 match community 1_10_73 1_11_72 1_12_71 1_13_70 1_14_69 set community 0:83 route-map calculator permit 19645 match community 1_15_68 1_16_67 1_17_66 1_18_65 1_19_64 set community 0:83 route-map calculator permit 19646 match community 1_20_63 1_21_62 1_22_61 1_23_60 1_24_59 set community 0:83 route-map calculator permit 19647 match community 1_25_58 1_26_57 1_27_56 1_28_55 1_29_54 set community 0:83 route-map calculator permit 19648 match community 1_30_53 1_31_52 1_32_51 1_33_50 1_34_49 set community 0:83 route-map calculator permit 19649 match community 1_35_48 1_36_47 1_37_46 1_38_45 1_39_44 set community 0:83 route-map calculator permit 19650 match community 1_40_43 1_41_42 c4_83_1 c3_84_1 c3_85_2 set community 0:83 route-map calculator permit 19651 match community c3_86_3 c3_87_4 c3_88_5 c3_89_6 c3_90_7 set community 0:83 route-map calculator permit 19652 match community c3_91_8 c3_92_9 c3_93_10 c3_94_11 c3_95_12 set community 0:83 route-map calculator permit 19653 match community c3_96_13 c3_97_14 c3_98_15 c3_99_16 c3_100_17 set community 0:83 route-map calculator permit 19654 match community c3_101_18 c3_102_19 c3_103_20 c3_104_21 c3_105_22 set community 0:83 route-map calculator permit 19655 match community c3_106_23 c3_107_24 c3_108_25 c3_109_26 c3_110_27 set community 0:83 route-map calculator permit 19656 match community c3_111_28 c3_112_29 c3_113_30 c3_114_31 c3_115_32 set community 0:83 route-map calculator permit 19657 match community c3_116_33 c3_117_34 c3_118_35 c3_119_36 c3_120_37 set community 0:83 route-map calculator permit 19658 match community c3_121_38 c3_122_39 c3_123_40 c3_124_41 c3_125_42 set community 0:83 route-map calculator permit 19659 match community c3_126_43 c3_127_44 c3_128_45 c3_129_46 c3_130_47 set community 0:83 route-map calculator permit 19660 match community c3_131_48 c3_132_49 c3_133_50 c3_134_51 c3_135_52 set community 0:83 route-map calculator permit 19661 match community c3_136_53 c3_137_54 c3_138_55 c3_139_56 c3_140_57 set community 0:83 route-map calculator permit 19662 match community c3_141_58 c3_142_59 c3_143_60 c3_144_61 c3_145_62 set community 0:83 route-map calculator permit 19663 match community c3_146_63 c3_147_64 c3_148_65 c3_149_66 c3_150_67 set community 0:83 route-map calculator permit 19664 match community c3_151_68 c3_152_69 c3_153_70 c3_154_71 c3_155_72 set community 0:83 route-map calculator permit 19665 match community c3_156_73 c3_157_74 c3_158_75 c3_159_76 c3_160_77 set community 0:83 route-map calculator permit 19666 match community c3_161_78 c3_162_79 c3_163_80 c3_164_81 c3_165_82 set community 0:83 route-map calculator permit 19667 match community c4_166_2 c3_166_83 c4_167_2 c3_167_84 c3_168_85 set community 0:83 route-map calculator permit 19668 match community c3_169_86 c3_170_87 c3_171_88 c3_172_89 c3_173_90 set community 0:83 route-map calculator permit 19669 match community c3_174_91 c3_175_92 c3_176_93 c3_177_94 c3_178_95 set community 0:83 route-map calculator permit 19670 match community c3_179_96 c3_180_97 c3_181_98 c3_182_99 c3_183_100 set community 0:83 route-map calculator permit 19671 match community c3_184_101 c3_185_102 c3_186_103 c3_187_104 c3_188_105 set community 0:83 route-map calculator permit 19672 match community c3_189_106 c3_190_107 c3_191_108 c3_192_109 c3_193_110 set community 0:83 route-map calculator permit 19673 match community c3_194_111 c3_195_112 c3_196_113 c3_197_114 c3_198_115 set community 0:83 route-map calculator permit 19674 match community c3_199_116 c3_200_117 c3_201_118 c3_202_119 c3_203_120 set community 0:83 route-map calculator permit 19675 match community c3_204_121 c3_205_122 c3_206_123 c3_207_124 c3_208_125 set community 0:83 route-map calculator permit 19676 match community c3_209_126 c3_210_127 c3_211_128 c3_212_129 c3_213_130 set community 0:83 route-map calculator permit 19677 match community c3_214_131 c3_215_132 c3_216_133 c3_217_134 c3_218_135 set community 0:83 route-map calculator permit 19678 match community c3_219_136 c3_220_137 c3_221_138 c3_222_139 c3_223_140 set community 0:83 route-map calculator permit 19679 match community c3_224_141 c3_225_142 c3_226_143 c3_227_144 c3_228_145 set community 0:83 route-map calculator permit 19680 match community c3_229_146 c3_230_147 c3_231_148 c3_232_149 c3_233_150 set community 0:83 route-map calculator permit 19681 match community c3_234_151 c3_235_152 c3_236_153 c3_237_154 c3_238_155 set community 0:83 route-map calculator permit 19682 match community c3_239_156 c3_240_157 c3_241_158 c3_242_159 c3_243_160 set community 0:83 route-map calculator permit 19683 match community c3_244_161 c3_245_162 c3_246_163 c3_247_164 c3_248_165 set community 0:83 route-map calculator permit 19684 match community c4_249_3 c3_249_166 c4_250_3 c3_250_167 c4_251_3 set community 0:83 route-map calculator permit 19685 match community c3_251_168 c3_252_169 c3_253_170 c3_254_171 c3_255_172 set community 0:83 route-map calculator permit 19686 match community c3_256_173 set community 0:83 ip community-list standard 2_83_193 permit 65000:2 0:83 0:193 route-map calculator permit 19687 match community 2_83_193 set community 0:16019 ip community-list standard 2_178_214 permit 65000:2 0:178 0:214 route-map calculator permit 19688 match community 2_178_214 set community 0:38092 ip community-list standard 2_152_205 permit 65000:2 0:152 0:205 ip community-list standard 2_164_190 permit 65000:2 0:164 0:190 route-map calculator permit 19689 match community 2_152_205 2_164_190 set community 0:31160 ip community-list standard 2_102_227 permit 65000:2 0:102 0:227 route-map calculator permit 19690 match community 2_102_227 set community 0:23154 ip community-list standard 2_192_211 permit 65000:2 0:192 0:211 route-map calculator permit 19691 match community 2_192_211 set community 0:40512 ip community-list standard 2_191_198 permit 65000:2 0:191 0:198 route-map calculator permit 19692 match community 2_191_198 set community 0:37818 ip community-list standard 2_99_222 permit 65000:2 0:99 0:222 ip community-list standard 2_111_198 permit 65000:2 0:111 0:198 route-map calculator permit 19693 match community 2_99_222 2_111_198 set community 0:21978 ip community-list standard 2_105_242 permit 65000:2 0:105 0:242 ip community-list standard 2_110_231 permit 65000:2 0:110 0:231 ip community-list standard 2_121_210 permit 65000:2 0:121 0:210 ip community-list standard 2_154_165 permit 65000:2 0:154 0:165 route-map calculator permit 19694 match community 2_105_242 2_110_231 2_121_210 2_154_165 set community 0:25410 ip community-list standard 2_134_203 permit 65000:2 0:134 0:203 route-map calculator permit 19695 match community 2_134_203 set community 0:27202 ip community-list standard 2_98_147 permit 65000:2 0:98 0:147 route-map calculator permit 19696 match community 2_98_147 set community 0:14406 ip community-list standard 2_125_155 permit 65000:2 0:125 0:155 route-map calculator permit 19697 match community 2_125_155 set community 0:19375 ip community-list standard 2_222_233 permit 65000:2 0:222 0:233 route-map calculator permit 19698 match community 2_222_233 set community 0:51726 ip community-list standard 2_157_246 permit 65000:2 0:157 0:246 route-map calculator permit 19699 match community 2_157_246 set community 0:38622 ip community-list standard 2_53_131 permit 65000:2 0:53 0:131 route-map calculator permit 19700 match community 2_53_131 set community 0:6943 ip community-list standard 2_16_220 permit 65000:2 0:16 0:220 ip community-list standard 2_20_176 permit 65000:2 0:20 0:176 ip community-list standard 2_22_160 permit 65000:2 0:22 0:160 ip community-list standard 2_32_110 permit 65000:2 0:32 0:110 ip community-list standard 2_40_88 permit 65000:2 0:40 0:88 ip community-list standard 2_44_80 permit 65000:2 0:44 0:80 ip community-list standard 2_55_64 permit 65000:2 0:55 0:64 route-map calculator permit 19701 match community 2_16_220 2_20_176 2_22_160 2_32_110 2_40_88 set community 0:3520 route-map calculator permit 19702 match community 2_44_80 2_55_64 set community 0:3520 ip community-list standard 2_67_202 permit 65000:2 0:67 0:202 ip community-list standard 2_101_134 permit 65000:2 0:101 0:134 route-map calculator permit 19703 match community 2_67_202 2_101_134 set community 0:13534 ip community-list standard 2_89_181 permit 65000:2 0:89 0:181 route-map calculator permit 19704 match community 2_89_181 set community 0:16109 ip community-list standard 2_136_142 permit 65000:2 0:136 0:142 route-map calculator permit 19705 match community 2_136_142 set community 0:19312 ip community-list standard 2_93_153 permit 65000:2 0:93 0:153 route-map calculator permit 19706 match community 2_93_153 set community 0:14229 ip community-list standard 1_1_236 permit 65000:1 0:1 0:236 ip community-list standard 2_1_237 permit 65000:2 0:1 0:237 ip community-list standard 1_2_235 permit 65000:1 0:2 0:235 ip community-list standard 2_3_79 permit 65000:2 0:3 0:79 ip community-list standard 1_3_234 permit 65000:1 0:3 0:234 ip community-list standard 1_4_233 permit 65000:1 0:4 0:233 ip community-list standard 1_5_232 permit 65000:1 0:5 0:232 ip community-list standard 1_6_231 permit 65000:1 0:6 0:231 ip community-list standard 1_7_230 permit 65000:1 0:7 0:230 ip community-list standard 1_8_229 permit 65000:1 0:8 0:229 ip community-list standard 1_9_228 permit 65000:1 0:9 0:228 ip community-list standard 1_10_227 permit 65000:1 0:10 0:227 ip community-list standard 1_11_226 permit 65000:1 0:11 0:226 ip community-list standard 1_12_225 permit 65000:1 0:12 0:225 ip community-list standard 1_13_224 permit 65000:1 0:13 0:224 ip community-list standard 1_14_223 permit 65000:1 0:14 0:223 ip community-list standard 1_15_222 permit 65000:1 0:15 0:222 ip community-list standard 1_16_221 permit 65000:1 0:16 0:221 ip community-list standard 1_17_220 permit 65000:1 0:17 0:220 ip community-list standard 1_18_219 permit 65000:1 0:18 0:219 ip community-list standard 1_19_218 permit 65000:1 0:19 0:218 ip community-list standard 1_20_217 permit 65000:1 0:20 0:217 ip community-list standard 1_21_216 permit 65000:1 0:21 0:216 ip community-list standard 1_22_215 permit 65000:1 0:22 0:215 ip community-list standard 1_23_214 permit 65000:1 0:23 0:214 ip community-list standard 1_24_213 permit 65000:1 0:24 0:213 ip community-list standard 1_25_212 permit 65000:1 0:25 0:212 ip community-list standard 1_26_211 permit 65000:1 0:26 0:211 ip community-list standard 1_27_210 permit 65000:1 0:27 0:210 ip community-list standard 1_28_209 permit 65000:1 0:28 0:209 ip community-list standard 1_29_208 permit 65000:1 0:29 0:208 ip community-list standard 1_30_207 permit 65000:1 0:30 0:207 ip community-list standard 1_31_206 permit 65000:1 0:31 0:206 ip community-list standard 1_32_205 permit 65000:1 0:32 0:205 ip community-list standard 1_33_204 permit 65000:1 0:33 0:204 ip community-list standard 1_34_203 permit 65000:1 0:34 0:203 ip community-list standard 1_35_202 permit 65000:1 0:35 0:202 ip community-list standard 1_36_201 permit 65000:1 0:36 0:201 ip community-list standard 1_37_200 permit 65000:1 0:37 0:200 ip community-list standard 1_38_199 permit 65000:1 0:38 0:199 ip community-list standard 1_39_198 permit 65000:1 0:39 0:198 ip community-list standard 1_40_197 permit 65000:1 0:40 0:197 ip community-list standard 1_41_196 permit 65000:1 0:41 0:196 ip community-list standard 1_42_195 permit 65000:1 0:42 0:195 ip community-list standard 1_43_194 permit 65000:1 0:43 0:194 ip community-list standard 1_44_193 permit 65000:1 0:44 0:193 ip community-list standard 1_45_192 permit 65000:1 0:45 0:192 ip community-list standard 1_46_191 permit 65000:1 0:46 0:191 ip community-list standard 1_47_190 permit 65000:1 0:47 0:190 ip community-list standard 1_48_189 permit 65000:1 0:48 0:189 ip community-list standard 1_49_188 permit 65000:1 0:49 0:188 ip community-list standard 1_50_187 permit 65000:1 0:50 0:187 ip community-list standard 1_51_186 permit 65000:1 0:51 0:186 ip community-list standard 1_52_185 permit 65000:1 0:52 0:185 ip community-list standard 1_53_184 permit 65000:1 0:53 0:184 ip community-list standard 1_54_183 permit 65000:1 0:54 0:183 ip community-list standard 1_55_182 permit 65000:1 0:55 0:182 ip community-list standard 1_56_181 permit 65000:1 0:56 0:181 ip community-list standard 1_57_180 permit 65000:1 0:57 0:180 ip community-list standard 1_58_179 permit 65000:1 0:58 0:179 ip community-list standard 1_59_178 permit 65000:1 0:59 0:178 ip community-list standard 1_60_177 permit 65000:1 0:60 0:177 ip community-list standard 1_61_176 permit 65000:1 0:61 0:176 ip community-list standard 1_62_175 permit 65000:1 0:62 0:175 ip community-list standard 1_63_174 permit 65000:1 0:63 0:174 ip community-list standard 1_64_173 permit 65000:1 0:64 0:173 ip community-list standard 1_65_172 permit 65000:1 0:65 0:172 ip community-list standard 1_66_171 permit 65000:1 0:66 0:171 ip community-list standard 1_67_170 permit 65000:1 0:67 0:170 ip community-list standard 1_68_169 permit 65000:1 0:68 0:169 ip community-list standard 1_69_168 permit 65000:1 0:69 0:168 ip community-list standard 1_70_167 permit 65000:1 0:70 0:167 ip community-list standard 1_71_166 permit 65000:1 0:71 0:166 ip community-list standard 1_72_165 permit 65000:1 0:72 0:165 ip community-list standard 1_73_164 permit 65000:1 0:73 0:164 ip community-list standard 1_74_163 permit 65000:1 0:74 0:163 ip community-list standard 1_75_162 permit 65000:1 0:75 0:162 ip community-list standard 1_76_161 permit 65000:1 0:76 0:161 ip community-list standard 1_77_160 permit 65000:1 0:77 0:160 ip community-list standard 1_78_159 permit 65000:1 0:78 0:159 ip community-list standard 1_79_158 permit 65000:1 0:79 0:158 ip community-list standard 1_80_157 permit 65000:1 0:80 0:157 ip community-list standard 1_81_156 permit 65000:1 0:81 0:156 ip community-list standard 1_82_155 permit 65000:1 0:82 0:155 ip community-list standard 1_83_154 permit 65000:1 0:83 0:154 ip community-list standard 1_84_153 permit 65000:1 0:84 0:153 ip community-list standard 1_85_152 permit 65000:1 0:85 0:152 ip community-list standard 1_86_151 permit 65000:1 0:86 0:151 ip community-list standard 1_87_150 permit 65000:1 0:87 0:150 ip community-list standard 1_88_149 permit 65000:1 0:88 0:149 ip community-list standard 1_89_148 permit 65000:1 0:89 0:148 ip community-list standard 1_90_147 permit 65000:1 0:90 0:147 ip community-list standard 1_91_146 permit 65000:1 0:91 0:146 ip community-list standard 1_92_145 permit 65000:1 0:92 0:145 ip community-list standard 1_93_144 permit 65000:1 0:93 0:144 ip community-list standard 1_94_143 permit 65000:1 0:94 0:143 ip community-list standard 1_95_142 permit 65000:1 0:95 0:142 ip community-list standard 1_96_141 permit 65000:1 0:96 0:141 ip community-list standard 1_97_140 permit 65000:1 0:97 0:140 ip community-list standard 1_98_139 permit 65000:1 0:98 0:139 ip community-list standard 1_99_138 permit 65000:1 0:99 0:138 ip community-list standard 1_100_137 permit 65000:1 0:100 0:137 ip community-list standard 1_101_136 permit 65000:1 0:101 0:136 ip community-list standard 1_102_135 permit 65000:1 0:102 0:135 ip community-list standard 1_103_134 permit 65000:1 0:103 0:134 ip community-list standard 1_104_133 permit 65000:1 0:104 0:133 ip community-list standard 1_105_132 permit 65000:1 0:105 0:132 ip community-list standard 1_106_131 permit 65000:1 0:106 0:131 ip community-list standard 1_107_130 permit 65000:1 0:107 0:130 ip community-list standard 1_108_129 permit 65000:1 0:108 0:129 ip community-list standard 1_109_128 permit 65000:1 0:109 0:128 ip community-list standard 1_110_127 permit 65000:1 0:110 0:127 ip community-list standard 1_111_126 permit 65000:1 0:111 0:126 ip community-list standard 1_112_125 permit 65000:1 0:112 0:125 ip community-list standard 1_113_124 permit 65000:1 0:113 0:124 ip community-list standard 1_114_123 permit 65000:1 0:114 0:123 ip community-list standard 1_115_122 permit 65000:1 0:115 0:122 ip community-list standard 1_116_121 permit 65000:1 0:116 0:121 ip community-list standard 1_117_120 permit 65000:1 0:117 0:120 ip community-list standard 1_118_119 permit 65000:1 0:118 0:119 ip community-list expanded c237 permit 1 ^65000:4_0:237_0:1$ ip community-list expanded c237 permit 2 ^65000:3_0:238_0:1$ ip community-list expanded c237 permit 3 ^65000:3_0:239_0:2$ ip community-list expanded c237 permit 4 ^65000:3_0:240_0:3$ ip community-list expanded c237 permit 5 ^65000:3_0:241_0:4$ ip community-list expanded c237 permit 6 ^65000:3_0:242_0:5$ ip community-list expanded c237 permit 7 ^65000:3_0:243_0:6$ ip community-list expanded c237 permit 8 ^65000:3_0:244_0:7$ ip community-list expanded c237 permit 9 ^65000:3_0:245_0:8$ ip community-list expanded c237 permit 10 ^65000:3_0:246_0:9$ ip community-list expanded c237 permit 11 ^65000:3_0:247_0:10$ ip community-list expanded c237 permit 12 ^65000:3_0:248_0:11$ ip community-list expanded c237 permit 13 ^65000:3_0:249_0:12$ ip community-list expanded c237 permit 14 ^65000:3_0:250_0:13$ ip community-list expanded c237 permit 15 ^65000:3_0:251_0:14$ ip community-list expanded c237 permit 16 ^65000:3_0:252_0:15$ ip community-list expanded c237 permit 17 ^65000:3_0:253_0:16$ ip community-list expanded c237 permit 18 ^65000:3_0:254_0:17$ ip community-list expanded c237 permit 19 ^65000:3_0:255_0:18$ ip community-list expanded c237 permit 20 ^65000:3_0:256_0:19$ route-map calculator permit 19707 match community 1_1_236 2_1_237 1_2_235 2_3_79 1_3_234 set community 0:237 route-map calculator permit 19708 match community 1_4_233 1_5_232 1_6_231 1_7_230 1_8_229 set community 0:237 route-map calculator permit 19709 match community 1_9_228 1_10_227 1_11_226 1_12_225 1_13_224 set community 0:237 route-map calculator permit 19710 match community 1_14_223 1_15_222 1_16_221 1_17_220 1_18_219 set community 0:237 route-map calculator permit 19711 match community 1_19_218 1_20_217 1_21_216 1_22_215 1_23_214 set community 0:237 route-map calculator permit 19712 match community 1_24_213 1_25_212 1_26_211 1_27_210 1_28_209 set community 0:237 route-map calculator permit 19713 match community 1_29_208 1_30_207 1_31_206 1_32_205 1_33_204 set community 0:237 route-map calculator permit 19714 match community 1_34_203 1_35_202 1_36_201 1_37_200 1_38_199 set community 0:237 route-map calculator permit 19715 match community 1_39_198 1_40_197 1_41_196 1_42_195 1_43_194 set community 0:237 route-map calculator permit 19716 match community 1_44_193 1_45_192 1_46_191 1_47_190 1_48_189 set community 0:237 route-map calculator permit 19717 match community 1_49_188 1_50_187 1_51_186 1_52_185 1_53_184 set community 0:237 route-map calculator permit 19718 match community 1_54_183 1_55_182 1_56_181 1_57_180 1_58_179 set community 0:237 route-map calculator permit 19719 match community 1_59_178 1_60_177 1_61_176 1_62_175 1_63_174 set community 0:237 route-map calculator permit 19720 match community 1_64_173 1_65_172 1_66_171 1_67_170 1_68_169 set community 0:237 route-map calculator permit 19721 match community 1_69_168 1_70_167 1_71_166 1_72_165 1_73_164 set community 0:237 route-map calculator permit 19722 match community 1_74_163 1_75_162 1_76_161 1_77_160 1_78_159 set community 0:237 route-map calculator permit 19723 match community 1_79_158 1_80_157 1_81_156 1_82_155 1_83_154 set community 0:237 route-map calculator permit 19724 match community 1_84_153 1_85_152 1_86_151 1_87_150 1_88_149 set community 0:237 route-map calculator permit 19725 match community 1_89_148 1_90_147 1_91_146 1_92_145 1_93_144 set community 0:237 route-map calculator permit 19726 match community 1_94_143 1_95_142 1_96_141 1_97_140 1_98_139 set community 0:237 route-map calculator permit 19727 match community 1_99_138 1_100_137 1_101_136 1_102_135 1_103_134 set community 0:237 route-map calculator permit 19728 match community 1_104_133 1_105_132 1_106_131 1_107_130 1_108_129 set community 0:237 route-map calculator permit 19729 match community 1_109_128 1_110_127 1_111_126 1_112_125 1_113_124 set community 0:237 route-map calculator permit 19730 match community 1_114_123 1_115_122 1_116_121 1_117_120 1_118_119 set community 0:237 route-map calculator permit 19731 match community c4_237_1 c3_238_1 c3_239_2 c3_240_3 c3_241_4 set community 0:237 route-map calculator permit 19732 match community c3_242_5 c3_243_6 c3_244_7 c3_245_8 c3_246_9 set community 0:237 route-map calculator permit 19733 match community c3_247_10 c3_248_11 c3_249_12 c3_250_13 c3_251_14 set community 0:237 route-map calculator permit 19734 match community c3_252_15 c3_253_16 c3_254_17 c3_255_18 c3_256_19 set community 0:237 ip community-list standard 2_13_207 permit 65000:2 0:13 0:207 ip community-list standard 2_23_117 permit 65000:2 0:23 0:117 ip community-list standard 2_39_69 permit 65000:2 0:39 0:69 route-map calculator permit 19735 match community 2_13_207 2_23_117 2_39_69 set community 0:2691 ip community-list standard 2_150_178 permit 65000:2 0:150 0:178 route-map calculator permit 19736 match community 2_150_178 set community 0:26700 ip community-list standard 2_87_245 permit 65000:2 0:87 0:245 ip community-list standard 2_105_203 permit 65000:2 0:105 0:203 ip community-list standard 2_145_147 permit 65000:2 0:145 0:147 route-map calculator permit 19737 match community 2_87_245 2_105_203 2_145_147 set community 0:21315 ip community-list standard 2_157_230 permit 65000:2 0:157 0:230 route-map calculator permit 19738 match community 2_157_230 set community 0:36110 ip community-list standard 2_134_254 permit 65000:2 0:134 0:254 route-map calculator permit 19739 match community 2_134_254 set community 0:34036 ip community-list standard 2_124_195 permit 65000:2 0:124 0:195 ip community-list standard 2_130_186 permit 65000:2 0:130 0:186 ip community-list standard 2_155_156 permit 65000:2 0:155 0:156 route-map calculator permit 19740 match community 2_124_195 2_130_186 2_155_156 set community 0:24180 ip community-list standard 2_37_232 permit 65000:2 0:37 0:232 ip community-list standard 2_58_148 permit 65000:2 0:58 0:148 ip community-list standard 2_74_116 permit 65000:2 0:74 0:116 route-map calculator permit 19741 match community 2_37_232 2_58_148 2_74_116 set community 0:8584 ip community-list standard 2_157_188 permit 65000:2 0:157 0:188 route-map calculator permit 19742 match community 2_157_188 set community 0:29516 ip community-list standard 2_39_161 permit 65000:2 0:39 0:161 ip community-list standard 2_69_91 permit 65000:2 0:69 0:91 route-map calculator permit 19743 match community 2_39_161 2_69_91 set community 0:6279 ip community-list standard 2_81_185 permit 65000:2 0:81 0:185 ip community-list standard 2_111_135 permit 65000:2 0:111 0:135 route-map calculator permit 19744 match community 2_81_185 2_111_135 set community 0:14985 ip community-list standard 2_195_239 permit 65000:2 0:195 0:239 route-map calculator permit 19745 match community 2_195_239 set community 0:46605 ip community-list standard 2_96_167 permit 65000:2 0:96 0:167 route-map calculator permit 19746 match community 2_96_167 set community 0:16032 ip community-list standard 2_163_168 permit 65000:2 0:163 0:168 route-map calculator permit 19747 match community 2_163_168 set community 0:27384 ip community-list standard 2_71_187 permit 65000:2 0:71 0:187 route-map calculator permit 19748 match community 2_71_187 set community 0:13277 ip community-list standard 2_81_233 permit 65000:2 0:81 0:233 route-map calculator permit 19749 match community 2_81_233 set community 0:18873 ip community-list standard 2_145_194 permit 65000:2 0:145 0:194 route-map calculator permit 19750 match community 2_145_194 set community 0:28130 ip community-list standard 2_157_245 permit 65000:2 0:157 0:245 route-map calculator permit 19751 match community 2_157_245 set community 0:38465 ip community-list standard 2_21_217 permit 65000:2 0:21 0:217 ip community-list standard 2_31_147 permit 65000:2 0:31 0:147 ip community-list standard 2_49_93 permit 65000:2 0:49 0:93 route-map calculator permit 19752 match community 2_21_217 2_31_147 2_49_93 set community 0:4557 ip community-list standard 2_148_212 permit 65000:2 0:148 0:212 route-map calculator permit 19753 match community 2_148_212 set community 0:31376 ip community-list standard 2_47_121 permit 65000:2 0:47 0:121 route-map calculator permit 19754 match community 2_47_121 set community 0:5687 ip community-list standard 2_249_253 permit 65000:2 0:249 0:253 route-map calculator permit 19755 match community 2_249_253 set community 0:62997 ip community-list standard 2_97_165 permit 65000:2 0:97 0:165 route-map calculator permit 19756 match community 2_97_165 set community 0:16005 ip community-list standard 2_113_115 permit 65000:2 0:113 0:115 route-map calculator permit 19757 match community 2_113_115 set community 0:12995 ip community-list standard 2_131_256 permit 65000:2 0:131 0:256 route-map calculator permit 19758 match community 2_131_256 set community 0:33536 ip community-list standard 2_47_143 permit 65000:2 0:47 0:143 route-map calculator permit 19759 match community 2_47_143 set community 0:6721 ip community-list standard 2_69_193 permit 65000:2 0:69 0:193 route-map calculator permit 19760 match community 2_69_193 set community 0:13317 ip community-list standard 2_185_231 permit 65000:2 0:185 0:231 route-map calculator permit 19761 match community 2_185_231 set community 0:42735 ip community-list standard 2_85_230 permit 65000:2 0:85 0:230 ip community-list standard 2_115_170 permit 65000:2 0:115 0:170 route-map calculator permit 19762 match community 2_85_230 2_115_170 set community 0:19550 ip community-list standard 2_74_234 permit 65000:2 0:74 0:234 ip community-list standard 2_78_222 permit 65000:2 0:78 0:222 ip community-list standard 2_111_156 permit 65000:2 0:111 0:156 ip community-list standard 2_117_148 permit 65000:2 0:117 0:148 route-map calculator permit 19763 match community 2_74_234 2_78_222 2_111_156 2_117_148 set community 0:17316 ip community-list standard 2_113_167 permit 65000:2 0:113 0:167 route-map calculator permit 19764 match community 2_113_167 set community 0:18871 ip community-list standard 2_95_163 permit 65000:2 0:95 0:163 route-map calculator permit 19765 match community 2_95_163 set community 0:15485 ip community-list standard 2_79_188 permit 65000:2 0:79 0:188 ip community-list standard 2_94_158 permit 65000:2 0:94 0:158 route-map calculator permit 19766 match community 2_79_188 2_94_158 set community 0:14852 ip community-list standard 2_193_215 permit 65000:2 0:193 0:215 route-map calculator permit 19767 match community 2_193_215 set community 0:41495 ip community-list standard 2_51_229 permit 65000:2 0:51 0:229 route-map calculator permit 19768 match community 2_51_229 set community 0:11679 ip community-list standard 2_73_79 permit 65000:2 0:73 0:79 route-map calculator permit 19769 match community 2_73_79 set community 0:5767 ip community-list standard 2_204_244 permit 65000:2 0:204 0:244 route-map calculator permit 19770 match community 2_204_244 set community 0:49776 ip community-list standard 2_192_241 permit 65000:2 0:192 0:241 route-map calculator permit 19771 match community 2_192_241 set community 0:46272 ip community-list standard 2_235_251 permit 65000:2 0:235 0:251 route-map calculator permit 19772 match community 2_235_251 set community 0:58985 ip community-list standard 2_34_134 permit 65000:2 0:34 0:134 ip community-list standard 2_67_68 permit 65000:2 0:67 0:68 route-map calculator permit 19773 match community 2_34_134 2_67_68 set community 0:4556 ip community-list standard 2_49_59 permit 65000:2 0:49 0:59 route-map calculator permit 19774 match community 2_49_59 set community 0:2891 ip community-list standard 2_50_197 permit 65000:2 0:50 0:197 route-map calculator permit 19775 match community 2_50_197 set community 0:9850 ip community-list standard 2_159_198 permit 65000:2 0:159 0:198 route-map calculator permit 19776 match community 2_159_198 set community 0:31482 ip community-list standard 2_43_194 permit 65000:2 0:43 0:194 ip community-list standard 2_86_97 permit 65000:2 0:86 0:97 route-map calculator permit 19777 match community 2_43_194 2_86_97 set community 0:8342 ip community-list standard 2_168_239 permit 65000:2 0:168 0:239 route-map calculator permit 19778 match community 2_168_239 set community 0:40152 ip community-list standard 2_123_157 permit 65000:2 0:123 0:157 route-map calculator permit 19779 match community 2_123_157 set community 0:19311 ip community-list standard 2_8_158 permit 65000:2 0:8 0:158 ip community-list standard 2_16_79 permit 65000:2 0:16 0:79 route-map calculator permit 19780 match community 2_8_158 2_16_79 set community 0:1264 ip community-list standard 2_46_254 permit 65000:2 0:46 0:254 ip community-list standard 2_92_127 permit 65000:2 0:92 0:127 route-map calculator permit 19781 match community 2_46_254 2_92_127 set community 0:11684 ip community-list standard 2_41_255 permit 65000:2 0:41 0:255 ip community-list standard 2_51_205 permit 65000:2 0:51 0:205 ip community-list standard 2_85_123 permit 65000:2 0:85 0:123 route-map calculator permit 19782 match community 2_41_255 2_51_205 2_85_123 set community 0:10455 ip community-list standard 2_197_248 permit 65000:2 0:197 0:248 route-map calculator permit 19783 match community 2_197_248 set community 0:48856 ip community-list standard 2_100_211 permit 65000:2 0:100 0:211 route-map calculator permit 19784 match community 2_100_211 set community 0:21100 ip community-list standard 2_80_157 permit 65000:2 0:80 0:157 route-map calculator permit 19785 match community 2_80_157 set community 0:12560 ip community-list standard 2_119_157 permit 65000:2 0:119 0:157 route-map calculator permit 19786 match community 2_119_157 set community 0:18683 ip community-list standard 2_60_254 permit 65000:2 0:60 0:254 ip community-list standard 2_120_127 permit 65000:2 0:120 0:127 route-map calculator permit 19787 match community 2_60_254 2_120_127 set community 0:15240 ip community-list standard 2_109_256 permit 65000:2 0:109 0:256 ip community-list standard 2_128_218 permit 65000:2 0:128 0:218 route-map calculator permit 19788 match community 2_109_256 2_128_218 set community 0:27904 ip community-list standard 2_83_202 permit 65000:2 0:83 0:202 ip community-list standard 2_101_166 permit 65000:2 0:101 0:166 route-map calculator permit 19789 match community 2_83_202 2_101_166 set community 0:16766 ip community-list standard 2_208_253 permit 65000:2 0:208 0:253 route-map calculator permit 19790 match community 2_208_253 set community 0:52624 ip community-list standard 2_41_196 permit 65000:2 0:41 0:196 ip community-list standard 2_49_164 permit 65000:2 0:49 0:164 ip community-list standard 2_82_98 permit 65000:2 0:82 0:98 route-map calculator permit 19791 match community 2_41_196 2_49_164 2_82_98 set community 0:8036 ip community-list standard 2_90_237 permit 65000:2 0:90 0:237 ip community-list standard 2_135_158 permit 65000:2 0:135 0:158 route-map calculator permit 19792 match community 2_90_237 2_135_158 set community 0:21330 ip community-list standard 2_16_199 permit 65000:2 0:16 0:199 route-map calculator permit 19793 match community 2_16_199 set community 0:3184 ip community-list standard 2_194_240 permit 65000:2 0:194 0:240 route-map calculator permit 19794 match community 2_194_240 set community 0:46560 ip community-list standard 2_210_248 permit 65000:2 0:210 0:248 ip community-list standard 2_217_240 permit 65000:2 0:217 0:240 route-map calculator permit 19795 match community 2_210_248 2_217_240 set community 0:52080 ip community-list standard 2_19_199 permit 65000:2 0:19 0:199 route-map calculator permit 19796 match community 2_19_199 set community 0:3781 ip community-list standard 2_49_197 permit 65000:2 0:49 0:197 route-map calculator permit 19797 match community 2_49_197 set community 0:9653 ip community-list standard 2_142_215 permit 65000:2 0:142 0:215 route-map calculator permit 19798 match community 2_142_215 set community 0:30530 ip community-list standard 2_139_231 permit 65000:2 0:139 0:231 route-map calculator permit 19799 match community 2_139_231 set community 0:32109 ip community-list standard 2_38_202 permit 65000:2 0:38 0:202 ip community-list standard 2_76_101 permit 65000:2 0:76 0:101 route-map calculator permit 19800 match community 2_38_202 2_76_101 set community 0:7676 ip community-list standard 2_15_109 permit 65000:2 0:15 0:109 route-map calculator permit 19801 match community 2_15_109 set community 0:1635 ip community-list standard 2_42_243 permit 65000:2 0:42 0:243 ip community-list standard 2_54_189 permit 65000:2 0:54 0:189 ip community-list standard 2_63_162 permit 65000:2 0:63 0:162 ip community-list standard 2_81_126 permit 65000:2 0:81 0:126 route-map calculator permit 19802 match community 2_42_243 2_54_189 2_63_162 2_81_126 set community 0:10206 ip community-list standard 2_21_239 permit 65000:2 0:21 0:239 route-map calculator permit 19803 match community 2_21_239 set community 0:5019 ip community-list standard 2_25_107 permit 65000:2 0:25 0:107 route-map calculator permit 19804 match community 2_25_107 set community 0:2675 ip community-list standard 2_169_215 permit 65000:2 0:169 0:215 route-map calculator permit 19805 match community 2_169_215 set community 0:36335 ip community-list standard 2_177_221 permit 65000:2 0:177 0:221 route-map calculator permit 19806 match community 2_177_221 set community 0:39117 ip community-list standard 2_134_179 permit 65000:2 0:134 0:179 route-map calculator permit 19807 match community 2_134_179 set community 0:23986 ip community-list standard 2_59_77 permit 65000:2 0:59 0:77 route-map calculator permit 19808 match community 2_59_77 set community 0:4543 ip community-list standard 2_68_209 permit 65000:2 0:68 0:209 ip community-list standard 2_76_187 permit 65000:2 0:76 0:187 route-map calculator permit 19809 match community 2_68_209 2_76_187 set community 0:14212 ip community-list standard 2_129_241 permit 65000:2 0:129 0:241 route-map calculator permit 19810 match community 2_129_241 set community 0:31089 ip community-list standard 2_56_211 permit 65000:2 0:56 0:211 route-map calculator permit 19811 match community 2_56_211 set community 0:11816 ip community-list standard 2_133_159 permit 65000:2 0:133 0:159 route-map calculator permit 19812 match community 2_133_159 set community 0:21147 ip community-list standard 2_66_253 permit 65000:2 0:66 0:253 ip community-list standard 2_69_242 permit 65000:2 0:69 0:242 ip community-list standard 2_121_138 permit 65000:2 0:121 0:138 route-map calculator permit 19813 match community 2_66_253 2_69_242 2_121_138 set community 0:16698 ip community-list standard 2_64_218 permit 65000:2 0:64 0:218 ip community-list standard 2_109_128 permit 65000:2 0:109 0:128 route-map calculator permit 19814 match community 2_64_218 2_109_128 set community 0:13952 ip community-list standard 2_163_177 permit 65000:2 0:163 0:177 route-map calculator permit 19815 match community 2_163_177 set community 0:28851 ip community-list standard 2_140_245 permit 65000:2 0:140 0:245 ip community-list standard 2_175_196 permit 65000:2 0:175 0:196 route-map calculator permit 19816 match community 2_140_245 2_175_196 set community 0:34300 ip community-list standard 1_75_256 permit 65000:1 0:75 0:256 ip community-list standard 1_76_255 permit 65000:1 0:76 0:255 ip community-list standard 1_77_254 permit 65000:1 0:77 0:254 ip community-list standard 1_78_253 permit 65000:1 0:78 0:253 ip community-list standard 1_79_252 permit 65000:1 0:79 0:252 ip community-list standard 1_80_251 permit 65000:1 0:80 0:251 ip community-list standard 1_81_250 permit 65000:1 0:81 0:250 ip community-list standard 1_82_249 permit 65000:1 0:82 0:249 ip community-list standard 1_83_248 permit 65000:1 0:83 0:248 ip community-list standard 1_84_247 permit 65000:1 0:84 0:247 ip community-list standard 1_85_246 permit 65000:1 0:85 0:246 ip community-list standard 1_86_245 permit 65000:1 0:86 0:245 ip community-list standard 1_87_244 permit 65000:1 0:87 0:244 ip community-list standard 1_88_243 permit 65000:1 0:88 0:243 ip community-list standard 1_89_242 permit 65000:1 0:89 0:242 ip community-list standard 1_90_241 permit 65000:1 0:90 0:241 ip community-list standard 1_91_240 permit 65000:1 0:91 0:240 ip community-list standard 1_92_239 permit 65000:1 0:92 0:239 ip community-list standard 1_93_238 permit 65000:1 0:93 0:238 ip community-list standard 1_94_237 permit 65000:1 0:94 0:237 ip community-list standard 1_95_236 permit 65000:1 0:95 0:236 ip community-list standard 1_96_235 permit 65000:1 0:96 0:235 ip community-list standard 1_97_234 permit 65000:1 0:97 0:234 ip community-list standard 1_98_233 permit 65000:1 0:98 0:233 ip community-list standard 1_99_232 permit 65000:1 0:99 0:232 ip community-list standard 1_100_231 permit 65000:1 0:100 0:231 ip community-list standard 1_101_230 permit 65000:1 0:101 0:230 ip community-list standard 1_102_229 permit 65000:1 0:102 0:229 ip community-list standard 1_103_228 permit 65000:1 0:103 0:228 ip community-list standard 1_104_227 permit 65000:1 0:104 0:227 ip community-list standard 1_105_226 permit 65000:1 0:105 0:226 ip community-list standard 1_106_225 permit 65000:1 0:106 0:225 ip community-list standard 1_107_224 permit 65000:1 0:107 0:224 ip community-list standard 1_108_223 permit 65000:1 0:108 0:223 ip community-list standard 1_109_222 permit 65000:1 0:109 0:222 ip community-list standard 1_110_221 permit 65000:1 0:110 0:221 ip community-list standard 1_111_220 permit 65000:1 0:111 0:220 ip community-list standard 1_112_219 permit 65000:1 0:112 0:219 ip community-list standard 1_113_218 permit 65000:1 0:113 0:218 ip community-list standard 1_114_217 permit 65000:1 0:114 0:217 ip community-list standard 1_115_216 permit 65000:1 0:115 0:216 ip community-list standard 1_116_215 permit 65000:1 0:116 0:215 ip community-list standard 1_117_214 permit 65000:1 0:117 0:214 ip community-list standard 1_118_213 permit 65000:1 0:118 0:213 ip community-list standard 1_119_212 permit 65000:1 0:119 0:212 ip community-list standard 1_120_211 permit 65000:1 0:120 0:211 ip community-list standard 1_121_210 permit 65000:1 0:121 0:210 ip community-list standard 1_122_209 permit 65000:1 0:122 0:209 ip community-list standard 1_123_208 permit 65000:1 0:123 0:208 ip community-list standard 1_124_207 permit 65000:1 0:124 0:207 ip community-list standard 1_125_206 permit 65000:1 0:125 0:206 ip community-list standard 1_126_205 permit 65000:1 0:126 0:205 ip community-list standard 1_127_204 permit 65000:1 0:127 0:204 ip community-list standard 1_128_203 permit 65000:1 0:128 0:203 ip community-list standard 1_129_202 permit 65000:1 0:129 0:202 ip community-list standard 1_130_201 permit 65000:1 0:130 0:201 ip community-list standard 1_131_200 permit 65000:1 0:131 0:200 ip community-list standard 1_132_199 permit 65000:1 0:132 0:199 ip community-list standard 1_133_198 permit 65000:1 0:133 0:198 ip community-list standard 1_134_197 permit 65000:1 0:134 0:197 ip community-list standard 1_135_196 permit 65000:1 0:135 0:196 ip community-list standard 1_136_195 permit 65000:1 0:136 0:195 ip community-list standard 1_137_194 permit 65000:1 0:137 0:194 ip community-list standard 1_138_193 permit 65000:1 0:138 0:193 ip community-list standard 1_139_192 permit 65000:1 0:139 0:192 ip community-list standard 1_140_191 permit 65000:1 0:140 0:191 ip community-list standard 1_141_190 permit 65000:1 0:141 0:190 ip community-list standard 1_142_189 permit 65000:1 0:142 0:189 ip community-list standard 1_143_188 permit 65000:1 0:143 0:188 ip community-list standard 1_144_187 permit 65000:1 0:144 0:187 ip community-list standard 1_145_186 permit 65000:1 0:145 0:186 ip community-list standard 1_146_185 permit 65000:1 0:146 0:185 ip community-list standard 1_147_184 permit 65000:1 0:147 0:184 ip community-list standard 1_148_183 permit 65000:1 0:148 0:183 ip community-list standard 1_149_182 permit 65000:1 0:149 0:182 ip community-list standard 1_150_181 permit 65000:1 0:150 0:181 ip community-list standard 1_151_180 permit 65000:1 0:151 0:180 ip community-list standard 1_152_179 permit 65000:1 0:152 0:179 ip community-list standard 1_153_178 permit 65000:1 0:153 0:178 ip community-list standard 1_154_177 permit 65000:1 0:154 0:177 ip community-list standard 1_155_176 permit 65000:1 0:155 0:176 ip community-list standard 1_156_175 permit 65000:1 0:156 0:175 ip community-list standard 1_157_174 permit 65000:1 0:157 0:174 ip community-list standard 1_158_173 permit 65000:1 0:158 0:173 ip community-list standard 1_159_172 permit 65000:1 0:159 0:172 ip community-list standard 1_160_171 permit 65000:1 0:160 0:171 ip community-list standard 1_161_170 permit 65000:1 0:161 0:170 ip community-list standard 1_162_169 permit 65000:1 0:162 0:169 ip community-list standard 1_163_168 permit 65000:1 0:163 0:168 ip community-list standard 1_164_167 permit 65000:1 0:164 0:167 ip community-list standard 1_165_166 permit 65000:1 0:165 0:166 route-map calculator permit 19817 match community 1_75_256 1_76_255 1_77_254 1_78_253 1_79_252 set community 0:331 route-map calculator permit 19818 match community 1_80_251 1_81_250 1_82_249 1_83_248 1_84_247 set community 0:331 route-map calculator permit 19819 match community 1_85_246 1_86_245 1_87_244 1_88_243 1_89_242 set community 0:331 route-map calculator permit 19820 match community 1_90_241 1_91_240 1_92_239 1_93_238 1_94_237 set community 0:331 route-map calculator permit 19821 match community 1_95_236 1_96_235 1_97_234 1_98_233 1_99_232 set community 0:331 route-map calculator permit 19822 match community 1_100_231 1_101_230 1_102_229 1_103_228 1_104_227 set community 0:331 route-map calculator permit 19823 match community 1_105_226 1_106_225 1_107_224 1_108_223 1_109_222 set community 0:331 route-map calculator permit 19824 match community 1_110_221 1_111_220 1_112_219 1_113_218 1_114_217 set community 0:331 route-map calculator permit 19825 match community 1_115_216 1_116_215 1_117_214 1_118_213 1_119_212 set community 0:331 route-map calculator permit 19826 match community 1_120_211 1_121_210 1_122_209 1_123_208 1_124_207 set community 0:331 route-map calculator permit 19827 match community 1_125_206 1_126_205 1_127_204 1_128_203 1_129_202 set community 0:331 route-map calculator permit 19828 match community 1_130_201 1_131_200 1_132_199 1_133_198 1_134_197 set community 0:331 route-map calculator permit 19829 match community 1_135_196 1_136_195 1_137_194 1_138_193 1_139_192 set community 0:331 route-map calculator permit 19830 match community 1_140_191 1_141_190 1_142_189 1_143_188 1_144_187 set community 0:331 route-map calculator permit 19831 match community 1_145_186 1_146_185 1_147_184 1_148_183 1_149_182 set community 0:331 route-map calculator permit 19832 match community 1_150_181 1_151_180 1_152_179 1_153_178 1_154_177 set community 0:331 route-map calculator permit 19833 match community 1_155_176 1_156_175 1_157_174 1_158_173 1_159_172 set community 0:331 route-map calculator permit 19834 match community 1_160_171 1_161_170 1_162_169 1_163_168 1_164_167 set community 0:331 route-map calculator permit 19835 match community 1_165_166 set community 0:331 ip community-list standard 2_75_242 permit 65000:2 0:75 0:242 ip community-list standard 2_110_165 permit 65000:2 0:110 0:165 ip community-list standard 2_121_150 permit 65000:2 0:121 0:150 route-map calculator permit 19836 match community 2_75_242 2_110_165 2_121_150 set community 0:18150 ip community-list standard 2_103_240 permit 65000:2 0:103 0:240 ip community-list standard 2_120_206 permit 65000:2 0:120 0:206 route-map calculator permit 19837 match community 2_103_240 2_120_206 set community 0:24720 ip community-list standard 2_169_178 permit 65000:2 0:169 0:178 route-map calculator permit 19838 match community 2_169_178 set community 0:30082 ip community-list standard 2_68_255 permit 65000:2 0:68 0:255 ip community-list standard 2_85_204 permit 65000:2 0:85 0:204 ip community-list standard 2_102_170 permit 65000:2 0:102 0:170 route-map calculator permit 19839 match community 2_68_255 2_85_204 2_102_170 set community 0:17340 ip community-list standard 2_55_255 permit 65000:2 0:55 0:255 ip community-list standard 2_75_187 permit 65000:2 0:75 0:187 ip community-list standard 2_85_165 permit 65000:2 0:85 0:165 route-map calculator permit 19840 match community 2_55_255 2_75_187 2_85_165 set community 0:14025 ip community-list standard 2_101_171 permit 65000:2 0:101 0:171 route-map calculator permit 19841 match community 2_101_171 set community 0:17271 ip community-list standard 2_224_237 permit 65000:2 0:224 0:237 route-map calculator permit 19842 match community 2_224_237 set community 0:53088 ip community-list standard 2_21_137 permit 65000:2 0:21 0:137 route-map calculator permit 19843 match community 2_21_137 set community 0:2877 ip community-list standard 2_42_191 permit 65000:2 0:42 0:191 route-map calculator permit 19844 match community 2_42_191 set community 0:8022 ip community-list standard 2_45_109 permit 65000:2 0:45 0:109 route-map calculator permit 19845 match community 2_45_109 set community 0:4905 ip community-list standard 2_92_149 permit 65000:2 0:92 0:149 route-map calculator permit 19846 match community 2_92_149 set community 0:13708 ip community-list standard 2_102_233 permit 65000:2 0:102 0:233 route-map calculator permit 19847 match community 2_102_233 set community 0:23766 ip community-list standard 2_202_225 permit 65000:2 0:202 0:225 route-map calculator permit 19848 match community 2_202_225 set community 0:45450 ip community-list standard 2_187_242 permit 65000:2 0:187 0:242 route-map calculator permit 19849 match community 2_187_242 set community 0:45254 ip community-list standard 2_218_236 permit 65000:2 0:218 0:236 route-map calculator permit 19850 match community 2_218_236 set community 0:51448 ip community-list standard 2_167_216 permit 65000:2 0:167 0:216 route-map calculator permit 19851 match community 2_167_216 set community 0:36072 ip community-list standard 2_112_163 permit 65000:2 0:112 0:163 route-map calculator permit 19852 match community 2_112_163 set community 0:18256 ip community-list standard 2_44_247 permit 65000:2 0:44 0:247 ip community-list standard 2_52_209 permit 65000:2 0:52 0:209 ip community-list standard 2_76_143 permit 65000:2 0:76 0:143 route-map calculator permit 19853 match community 2_44_247 2_52_209 2_76_143 set community 0:10868 ip community-list standard 2_120_246 permit 65000:2 0:120 0:246 ip community-list standard 2_123_240 permit 65000:2 0:123 0:240 ip community-list standard 2_144_205 permit 65000:2 0:144 0:205 ip community-list standard 2_164_180 permit 65000:2 0:164 0:180 route-map calculator permit 19854 match community 2_120_246 2_123_240 2_144_205 2_164_180 set community 0:29520 ip community-list standard 2_221_250 permit 65000:2 0:221 0:250 route-map calculator permit 19855 match community 2_221_250 set community 0:55250 ip community-list standard 2_142_248 permit 65000:2 0:142 0:248 route-map calculator permit 19856 match community 2_142_248 set community 0:35216 ip community-list standard 2_126_247 permit 65000:2 0:126 0:247 ip community-list standard 2_133_234 permit 65000:2 0:133 0:234 ip community-list standard 2_171_182 permit 65000:2 0:171 0:182 route-map calculator permit 19857 match community 2_126_247 2_133_234 2_171_182 set community 0:31122 ip community-list standard 2_58_149 permit 65000:2 0:58 0:149 route-map calculator permit 19858 match community 2_58_149 set community 0:8642 ip community-list standard 2_217_254 permit 65000:2 0:217 0:254 route-map calculator permit 19859 match community 2_217_254 set community 0:55118 ip community-list standard 2_32_205 permit 65000:2 0:32 0:205 ip community-list standard 2_40_164 permit 65000:2 0:40 0:164 ip community-list standard 2_41_160 permit 65000:2 0:41 0:160 ip community-list standard 2_80_82 permit 65000:2 0:80 0:82 route-map calculator permit 19860 match community 2_32_205 2_40_164 2_41_160 2_80_82 set community 0:6560 ip community-list standard 1_175_256 permit 65000:1 0:175 0:256 ip community-list standard 1_176_255 permit 65000:1 0:176 0:255 ip community-list standard 1_177_254 permit 65000:1 0:177 0:254 ip community-list standard 1_178_253 permit 65000:1 0:178 0:253 ip community-list standard 1_179_252 permit 65000:1 0:179 0:252 ip community-list standard 1_180_251 permit 65000:1 0:180 0:251 ip community-list standard 1_181_250 permit 65000:1 0:181 0:250 ip community-list standard 1_182_249 permit 65000:1 0:182 0:249 ip community-list standard 1_183_248 permit 65000:1 0:183 0:248 ip community-list standard 1_184_247 permit 65000:1 0:184 0:247 ip community-list standard 1_185_246 permit 65000:1 0:185 0:246 ip community-list standard 1_186_245 permit 65000:1 0:186 0:245 ip community-list standard 1_187_244 permit 65000:1 0:187 0:244 ip community-list standard 1_188_243 permit 65000:1 0:188 0:243 ip community-list standard 1_189_242 permit 65000:1 0:189 0:242 ip community-list standard 1_190_241 permit 65000:1 0:190 0:241 ip community-list standard 1_191_240 permit 65000:1 0:191 0:240 ip community-list standard 1_192_239 permit 65000:1 0:192 0:239 ip community-list standard 1_193_238 permit 65000:1 0:193 0:238 ip community-list standard 1_194_237 permit 65000:1 0:194 0:237 ip community-list standard 1_195_236 permit 65000:1 0:195 0:236 ip community-list standard 1_196_235 permit 65000:1 0:196 0:235 ip community-list standard 1_197_234 permit 65000:1 0:197 0:234 ip community-list standard 1_198_233 permit 65000:1 0:198 0:233 ip community-list standard 1_199_232 permit 65000:1 0:199 0:232 ip community-list standard 1_200_231 permit 65000:1 0:200 0:231 ip community-list standard 1_201_230 permit 65000:1 0:201 0:230 ip community-list standard 1_202_229 permit 65000:1 0:202 0:229 ip community-list standard 1_203_228 permit 65000:1 0:203 0:228 ip community-list standard 1_204_227 permit 65000:1 0:204 0:227 ip community-list standard 1_205_226 permit 65000:1 0:205 0:226 ip community-list standard 1_206_225 permit 65000:1 0:206 0:225 ip community-list standard 1_207_224 permit 65000:1 0:207 0:224 ip community-list standard 1_208_223 permit 65000:1 0:208 0:223 ip community-list standard 1_209_222 permit 65000:1 0:209 0:222 ip community-list standard 1_210_221 permit 65000:1 0:210 0:221 ip community-list standard 1_211_220 permit 65000:1 0:211 0:220 ip community-list standard 1_212_219 permit 65000:1 0:212 0:219 ip community-list standard 1_213_218 permit 65000:1 0:213 0:218 ip community-list standard 1_214_217 permit 65000:1 0:214 0:217 ip community-list standard 1_215_216 permit 65000:1 0:215 0:216 route-map calculator permit 19861 match community 1_175_256 1_176_255 1_177_254 1_178_253 1_179_252 set community 0:431 route-map calculator permit 19862 match community 1_180_251 1_181_250 1_182_249 1_183_248 1_184_247 set community 0:431 route-map calculator permit 19863 match community 1_185_246 1_186_245 1_187_244 1_188_243 1_189_242 set community 0:431 route-map calculator permit 19864 match community 1_190_241 1_191_240 1_192_239 1_193_238 1_194_237 set community 0:431 route-map calculator permit 19865 match community 1_195_236 1_196_235 1_197_234 1_198_233 1_199_232 set community 0:431 route-map calculator permit 19866 match community 1_200_231 1_201_230 1_202_229 1_203_228 1_204_227 set community 0:431 route-map calculator permit 19867 match community 1_205_226 1_206_225 1_207_224 1_208_223 1_209_222 set community 0:431 route-map calculator permit 19868 match community 1_210_221 1_211_220 1_212_219 1_213_218 1_214_217 set community 0:431 route-map calculator permit 19869 match community 1_215_216 set community 0:431 ip community-list standard 2_125_221 permit 65000:2 0:125 0:221 route-map calculator permit 19870 match community 2_125_221 set community 0:27625 ip community-list standard 2_237_251 permit 65000:2 0:237 0:251 route-map calculator permit 19871 match community 2_237_251 set community 0:59487 ip community-list standard 2_103_203 permit 65000:2 0:103 0:203 route-map calculator permit 19872 match community 2_103_203 set community 0:20909 ip community-list standard 2_74_240 permit 65000:2 0:74 0:240 ip community-list standard 2_80_222 permit 65000:2 0:80 0:222 ip community-list standard 2_96_185 permit 65000:2 0:96 0:185 ip community-list standard 2_111_160 permit 65000:2 0:111 0:160 ip community-list standard 2_120_148 permit 65000:2 0:120 0:148 route-map calculator permit 19873 match community 2_74_240 2_80_222 2_96_185 2_111_160 2_120_148 set community 0:17760 ip community-list standard 2_9_251 permit 65000:2 0:9 0:251 route-map calculator permit 19874 match community 2_9_251 set community 0:2259 ip community-list standard 2_165_218 permit 65000:2 0:165 0:218 route-map calculator permit 19875 match community 2_165_218 set community 0:35970 ip community-list standard 2_61_77 permit 65000:2 0:61 0:77 route-map calculator permit 19876 match community 2_61_77 set community 0:4697 ip community-list standard 2_219_231 permit 65000:2 0:219 0:231 route-map calculator permit 19877 match community 2_219_231 set community 0:50589 ip community-list standard 2_67_201 permit 65000:2 0:67 0:201 route-map calculator permit 19878 match community 2_67_201 set community 0:13467 ip community-list standard 2_109_219 permit 65000:2 0:109 0:219 route-map calculator permit 19879 match community 2_109_219 set community 0:23871 ip community-list standard 2_146_167 permit 65000:2 0:146 0:167 route-map calculator permit 19880 match community 2_146_167 set community 0:24382 ip community-list standard 2_85_250 permit 65000:2 0:85 0:250 ip community-list standard 2_125_170 permit 65000:2 0:125 0:170 route-map calculator permit 19881 match community 2_85_250 2_125_170 set community 0:21250 ip community-list standard 2_2_238 permit 65000:2 0:2 0:238 ip community-list standard 2_4_119 permit 65000:2 0:4 0:119 ip community-list standard 2_7_68 permit 65000:2 0:7 0:68 ip community-list standard 2_14_34 permit 65000:2 0:14 0:34 ip community-list standard 2_17_28 permit 65000:2 0:17 0:28 ip community-list standard 1_220_256 permit 65000:1 0:220 0:256 ip community-list standard 1_221_255 permit 65000:1 0:221 0:255 ip community-list standard 1_222_254 permit 65000:1 0:222 0:254 ip community-list standard 1_223_253 permit 65000:1 0:223 0:253 ip community-list standard 1_224_252 permit 65000:1 0:224 0:252 ip community-list standard 1_225_251 permit 65000:1 0:225 0:251 ip community-list standard 1_226_250 permit 65000:1 0:226 0:250 ip community-list standard 1_227_249 permit 65000:1 0:227 0:249 ip community-list standard 1_228_248 permit 65000:1 0:228 0:248 ip community-list standard 1_229_247 permit 65000:1 0:229 0:247 ip community-list standard 1_230_246 permit 65000:1 0:230 0:246 ip community-list standard 1_231_245 permit 65000:1 0:231 0:245 ip community-list standard 1_232_244 permit 65000:1 0:232 0:244 ip community-list standard 1_233_243 permit 65000:1 0:233 0:243 ip community-list standard 1_234_242 permit 65000:1 0:234 0:242 ip community-list standard 1_235_241 permit 65000:1 0:235 0:241 ip community-list standard 1_236_240 permit 65000:1 0:236 0:240 ip community-list standard 1_237_239 permit 65000:1 0:237 0:239 ip community-list standard 1_238_238 permit 65000:1 0:238 0:238 route-map calculator permit 19882 match community 2_2_238 2_4_119 2_7_68 2_14_34 2_17_28 set community 0:476 route-map calculator permit 19883 match community 1_220_256 1_221_255 1_222_254 1_223_253 1_224_252 set community 0:476 route-map calculator permit 19884 match community 1_225_251 1_226_250 1_227_249 1_228_248 1_229_247 set community 0:476 route-map calculator permit 19885 match community 1_230_246 1_231_245 1_232_244 1_233_243 1_234_242 set community 0:476 route-map calculator permit 19886 match community 1_235_241 1_236_240 1_237_239 1_238_238 set community 0:476 ip community-list standard 2_171_241 permit 65000:2 0:171 0:241 route-map calculator permit 19887 match community 2_171_241 set community 0:41211 ip community-list standard 2_62_155 permit 65000:2 0:62 0:155 route-map calculator permit 19888 match community 2_62_155 set community 0:9610 ip community-list standard 2_197_253 permit 65000:2 0:197 0:253 route-map calculator permit 19889 match community 2_197_253 set community 0:49841 ip community-list standard 2_118_243 permit 65000:2 0:118 0:243 ip community-list standard 2_162_177 permit 65000:2 0:162 0:177 route-map calculator permit 19890 match community 2_118_243 2_162_177 set community 0:28674 ip community-list standard 2_148_226 permit 65000:2 0:148 0:226 route-map calculator permit 19891 match community 2_148_226 set community 0:33448 ip community-list standard 2_21_129 permit 65000:2 0:21 0:129 ip community-list standard 2_43_63 permit 65000:2 0:43 0:63 route-map calculator permit 19892 match community 2_21_129 2_43_63 set community 0:2709 ip community-list standard 2_167_180 permit 65000:2 0:167 0:180 route-map calculator permit 19893 match community 2_167_180 set community 0:30060 ip community-list standard 2_26_223 permit 65000:2 0:26 0:223 route-map calculator permit 19894 match community 2_26_223 set community 0:5798 ip community-list standard 2_129_235 permit 65000:2 0:129 0:235 ip community-list standard 2_141_215 permit 65000:2 0:141 0:215 route-map calculator permit 19895 match community 2_129_235 2_141_215 set community 0:30315 ip community-list standard 2_62_181 permit 65000:2 0:62 0:181 route-map calculator permit 19896 match community 2_62_181 set community 0:11222 ip community-list standard 2_181_232 permit 65000:2 0:181 0:232 route-map calculator permit 19897 match community 2_181_232 set community 0:41992 ip community-list standard 2_201_225 permit 65000:2 0:201 0:225 route-map calculator permit 19898 match community 2_201_225 set community 0:45225 ip community-list standard 2_113_121 permit 65000:2 0:113 0:121 route-map calculator permit 19899 match community 2_113_121 set community 0:13673 ip community-list standard 2_184_191 permit 65000:2 0:184 0:191 route-map calculator permit 19900 match community 2_184_191 set community 0:35144 ip community-list standard 2_69_247 permit 65000:2 0:69 0:247 route-map calculator permit 19901 match community 2_69_247 set community 0:17043 ip community-list standard 2_31_37 permit 65000:2 0:31 0:37 route-map calculator permit 19902 match community 2_31_37 set community 0:1147 ip community-list standard 2_43_183 permit 65000:2 0:43 0:183 ip community-list standard 2_61_129 permit 65000:2 0:61 0:129 route-map calculator permit 19903 match community 2_43_183 2_61_129 set community 0:7869 ip community-list standard 2_35_179 permit 65000:2 0:35 0:179 route-map calculator permit 19904 match community 2_35_179 set community 0:6265 ip community-list standard 2_182_185 permit 65000:2 0:182 0:185 route-map calculator permit 19905 match community 2_182_185 set community 0:33670 ip community-list standard 2_167_189 permit 65000:2 0:167 0:189 route-map calculator permit 19906 match community 2_167_189 set community 0:31563 ip community-list standard 2_213_252 permit 65000:2 0:213 0:252 route-map calculator permit 19907 match community 2_213_252 set community 0:53676 ip community-list standard 2_199_230 permit 65000:2 0:199 0:230 route-map calculator permit 19908 match community 2_199_230 set community 0:45770 ip community-list standard 2_59_247 permit 65000:2 0:59 0:247 route-map calculator permit 19909 match community 2_59_247 set community 0:14573 ip community-list standard 2_130_248 permit 65000:2 0:130 0:248 ip community-list standard 2_155_208 permit 65000:2 0:155 0:208 route-map calculator permit 19910 match community 2_130_248 2_155_208 set community 0:32240 ip community-list standard 2_61_191 permit 65000:2 0:61 0:191 route-map calculator permit 19911 match community 2_61_191 set community 0:11651 ip community-list standard 2_32_219 permit 65000:2 0:32 0:219 ip community-list standard 2_48_146 permit 65000:2 0:48 0:146 ip community-list standard 2_73_96 permit 65000:2 0:73 0:96 route-map calculator permit 19912 match community 2_32_219 2_48_146 2_73_96 set community 0:7008 ip community-list standard 2_113_254 permit 65000:2 0:113 0:254 ip community-list standard 2_127_226 permit 65000:2 0:127 0:226 route-map calculator permit 19913 match community 2_113_254 2_127_226 set community 0:28702 ip community-list standard 2_118_155 permit 65000:2 0:118 0:155 route-map calculator permit 19914 match community 2_118_155 set community 0:18290 ip community-list standard 2_5_89 permit 65000:2 0:5 0:89 ip community-list standard 1_189_256 permit 65000:1 0:189 0:256 ip community-list standard 1_190_255 permit 65000:1 0:190 0:255 ip community-list standard 1_191_254 permit 65000:1 0:191 0:254 ip community-list standard 1_192_253 permit 65000:1 0:192 0:253 ip community-list standard 1_193_252 permit 65000:1 0:193 0:252 ip community-list standard 1_194_251 permit 65000:1 0:194 0:251 ip community-list standard 1_195_250 permit 65000:1 0:195 0:250 ip community-list standard 1_196_249 permit 65000:1 0:196 0:249 ip community-list standard 1_197_248 permit 65000:1 0:197 0:248 ip community-list standard 1_198_247 permit 65000:1 0:198 0:247 ip community-list standard 1_199_246 permit 65000:1 0:199 0:246 ip community-list standard 1_200_245 permit 65000:1 0:200 0:245 ip community-list standard 1_201_244 permit 65000:1 0:201 0:244 ip community-list standard 1_202_243 permit 65000:1 0:202 0:243 ip community-list standard 1_203_242 permit 65000:1 0:203 0:242 ip community-list standard 1_204_241 permit 65000:1 0:204 0:241 ip community-list standard 1_205_240 permit 65000:1 0:205 0:240 ip community-list standard 1_206_239 permit 65000:1 0:206 0:239 ip community-list standard 1_207_238 permit 65000:1 0:207 0:238 ip community-list standard 1_208_237 permit 65000:1 0:208 0:237 ip community-list standard 1_209_236 permit 65000:1 0:209 0:236 ip community-list standard 1_210_235 permit 65000:1 0:210 0:235 ip community-list standard 1_211_234 permit 65000:1 0:211 0:234 ip community-list standard 1_212_233 permit 65000:1 0:212 0:233 ip community-list standard 1_213_232 permit 65000:1 0:213 0:232 ip community-list standard 1_214_231 permit 65000:1 0:214 0:231 ip community-list standard 1_215_230 permit 65000:1 0:215 0:230 ip community-list standard 1_216_229 permit 65000:1 0:216 0:229 ip community-list standard 1_217_228 permit 65000:1 0:217 0:228 ip community-list standard 1_218_227 permit 65000:1 0:218 0:227 ip community-list standard 1_219_226 permit 65000:1 0:219 0:226 ip community-list standard 1_220_225 permit 65000:1 0:220 0:225 ip community-list standard 1_221_224 permit 65000:1 0:221 0:224 ip community-list standard 1_222_223 permit 65000:1 0:222 0:223 route-map calculator permit 19915 match community 2_5_89 1_189_256 1_190_255 1_191_254 1_192_253 set community 0:445 route-map calculator permit 19916 match community 1_193_252 1_194_251 1_195_250 1_196_249 1_197_248 set community 0:445 route-map calculator permit 19917 match community 1_198_247 1_199_246 1_200_245 1_201_244 1_202_243 set community 0:445 route-map calculator permit 19918 match community 1_203_242 1_204_241 1_205_240 1_206_239 1_207_238 set community 0:445 route-map calculator permit 19919 match community 1_208_237 1_209_236 1_210_235 1_211_234 1_212_233 set community 0:445 route-map calculator permit 19920 match community 1_213_232 1_214_231 1_215_230 1_216_229 1_217_228 set community 0:445 route-map calculator permit 19921 match community 1_218_227 1_219_226 1_220_225 1_221_224 1_222_223 set community 0:445 ip community-list standard 2_82_176 permit 65000:2 0:82 0:176 ip community-list standard 2_88_164 permit 65000:2 0:88 0:164 route-map calculator permit 19922 match community 2_82_176 2_88_164 set community 0:14432 ip community-list standard 2_145_218 permit 65000:2 0:145 0:218 route-map calculator permit 19923 match community 2_145_218 set community 0:31610 ip community-list standard 2_214_233 permit 65000:2 0:214 0:233 route-map calculator permit 19924 match community 2_214_233 set community 0:49862 ip community-list standard 2_53_213 permit 65000:2 0:53 0:213 ip community-list standard 2_71_159 permit 65000:2 0:71 0:159 route-map calculator permit 19925 match community 2_53_213 2_71_159 set community 0:11289 ip community-list standard 2_11_195 permit 65000:2 0:11 0:195 ip community-list standard 2_13_165 permit 65000:2 0:13 0:165 ip community-list standard 2_15_143 permit 65000:2 0:15 0:143 ip community-list standard 2_33_65 permit 65000:2 0:33 0:65 ip community-list standard 2_39_55 permit 65000:2 0:39 0:55 route-map calculator permit 19926 match community 2_11_195 2_13_165 2_15_143 2_33_65 2_39_55 set community 0:2145 ip community-list standard 2_195_240 permit 65000:2 0:195 0:240 ip community-list standard 2_200_234 permit 65000:2 0:200 0:234 ip community-list standard 2_208_225 permit 65000:2 0:208 0:225 route-map calculator permit 19927 match community 2_195_240 2_200_234 2_208_225 set community 0:46800 ip community-list standard 2_129_178 permit 65000:2 0:129 0:178 route-map calculator permit 19928 match community 2_129_178 set community 0:22962 ip community-list standard 2_81_127 permit 65000:2 0:81 0:127 route-map calculator permit 19929 match community 2_81_127 set community 0:10287 ip community-list standard 2_206_256 permit 65000:2 0:206 0:256 route-map calculator permit 19930 match community 2_206_256 set community 0:52736 ip community-list standard 2_209_253 permit 65000:2 0:209 0:253 route-map calculator permit 19931 match community 2_209_253 set community 0:52877 ip community-list standard 2_56_197 permit 65000:2 0:56 0:197 route-map calculator permit 19932 match community 2_56_197 set community 0:11032 ip community-list standard 2_7_228 permit 65000:2 0:7 0:228 ip community-list standard 2_12_133 permit 65000:2 0:12 0:133 ip community-list standard 2_14_114 permit 65000:2 0:14 0:114 ip community-list standard 2_19_84 permit 65000:2 0:19 0:84 ip community-list standard 2_21_76 permit 65000:2 0:21 0:76 ip community-list standard 2_28_57 permit 65000:2 0:28 0:57 ip community-list standard 2_38_42 permit 65000:2 0:38 0:42 route-map calculator permit 19933 match community 2_7_228 2_12_133 2_14_114 2_19_84 2_21_76 set community 0:1596 route-map calculator permit 19934 match community 2_28_57 2_38_42 set community 0:1596 ip community-list standard 2_129_208 permit 65000:2 0:129 0:208 ip community-list standard 2_156_172 permit 65000:2 0:156 0:172 route-map calculator permit 19935 match community 2_129_208 2_156_172 set community 0:26832 ip community-list standard 2_69_188 permit 65000:2 0:69 0:188 ip community-list standard 2_92_141 permit 65000:2 0:92 0:141 ip community-list standard 2_94_138 permit 65000:2 0:94 0:138 route-map calculator permit 19936 match community 2_69_188 2_92_141 2_94_138 set community 0:12972 ip community-list standard 2_183_213 permit 65000:2 0:183 0:213 route-map calculator permit 19937 match community 2_183_213 set community 0:38979 ip community-list standard 2_15_223 permit 65000:2 0:15 0:223 route-map calculator permit 19938 match community 2_15_223 set community 0:3345 ip community-list standard 2_33_214 permit 65000:2 0:33 0:214 ip community-list standard 2_66_107 permit 65000:2 0:66 0:107 route-map calculator permit 19939 match community 2_33_214 2_66_107 set community 0:7062 ip community-list standard 2_186_221 permit 65000:2 0:186 0:221 route-map calculator permit 19940 match community 2_186_221 set community 0:41106 ip community-list standard 2_139_204 permit 65000:2 0:139 0:204 route-map calculator permit 19941 match community 2_139_204 set community 0:28356 ip community-list standard 2_181_202 permit 65000:2 0:181 0:202 route-map calculator permit 19942 match community 2_181_202 set community 0:36562 ip community-list standard 2_126_203 permit 65000:2 0:126 0:203 ip community-list standard 2_147_174 permit 65000:2 0:147 0:174 route-map calculator permit 19943 match community 2_126_203 2_147_174 set community 0:25578 ip community-list standard 2_210_227 permit 65000:2 0:210 0:227 route-map calculator permit 19944 match community 2_210_227 set community 0:47670 ip community-list standard 2_135_249 permit 65000:2 0:135 0:249 route-map calculator permit 19945 match community 2_135_249 set community 0:33615 ip community-list standard 2_106_149 permit 65000:2 0:106 0:149 route-map calculator permit 19946 match community 2_106_149 set community 0:15794 ip community-list standard 2_75_131 permit 65000:2 0:75 0:131 route-map calculator permit 19947 match community 2_75_131 set community 0:9825 ip community-list standard 2_4_143 permit 65000:2 0:4 0:143 ip community-list standard 2_11_52 permit 65000:2 0:11 0:52 ip community-list standard 2_13_44 permit 65000:2 0:13 0:44 ip community-list standard 2_22_26 permit 65000:2 0:22 0:26 route-map calculator permit 19948 match community 2_4_143 2_11_52 2_13_44 2_22_26 set community 0:572 ip community-list standard 2_91_113 permit 65000:2 0:91 0:113 route-map calculator permit 19949 match community 2_91_113 set community 0:10283 ip community-list standard 2_47_233 permit 65000:2 0:47 0:233 route-map calculator permit 19950 match community 2_47_233 set community 0:10951 ip community-list standard 2_209_215 permit 65000:2 0:209 0:215 route-map calculator permit 19951 match community 2_209_215 set community 0:44935 ip community-list standard 2_204_216 permit 65000:2 0:204 0:216 route-map calculator permit 19952 match community 2_204_216 set community 0:44064 ip community-list standard 2_72_202 permit 65000:2 0:72 0:202 ip community-list standard 2_101_144 permit 65000:2 0:101 0:144 route-map calculator permit 19953 match community 2_72_202 2_101_144 set community 0:14544 ip community-list standard 2_68_170 permit 65000:2 0:68 0:170 ip community-list standard 2_85_136 permit 65000:2 0:85 0:136 route-map calculator permit 19954 match community 2_68_170 2_85_136 set community 0:11560 ip community-list standard 2_208_251 permit 65000:2 0:208 0:251 route-map calculator permit 19955 match community 2_208_251 set community 0:52208 ip community-list standard 2_67_249 permit 65000:2 0:67 0:249 ip community-list standard 2_83_201 permit 65000:2 0:83 0:201 route-map calculator permit 19956 match community 2_67_249 2_83_201 set community 0:16683 ip community-list standard 2_154_226 permit 65000:2 0:154 0:226 route-map calculator permit 19957 match community 2_154_226 set community 0:34804 ip community-list standard 2_130_194 permit 65000:2 0:130 0:194 route-map calculator permit 19958 match community 2_130_194 set community 0:25220 ip community-list standard 2_136_248 permit 65000:2 0:136 0:248 route-map calculator permit 19959 match community 2_136_248 set community 0:33728 ip community-list standard 2_53_166 permit 65000:2 0:53 0:166 ip community-list standard 2_83_106 permit 65000:2 0:83 0:106 route-map calculator permit 19960 match community 2_53_166 2_83_106 set community 0:8798 ip community-list standard 2_159_187 permit 65000:2 0:159 0:187 route-map calculator permit 19961 match community 2_159_187 set community 0:29733 ip community-list standard 2_61_127 permit 65000:2 0:61 0:127 route-map calculator permit 19962 match community 2_61_127 set community 0:7747 ip community-list standard 2_19_129 permit 65000:2 0:19 0:129 ip community-list standard 2_43_57 permit 65000:2 0:43 0:57 route-map calculator permit 19963 match community 2_19_129 2_43_57 set community 0:2451 ip community-list standard 2_3_249 permit 65000:2 0:3 0:249 ip community-list standard 2_9_83 permit 65000:2 0:9 0:83 route-map calculator permit 19964 match community 2_3_249 2_9_83 set community 0:747 ip community-list standard 2_34_200 permit 65000:2 0:34 0:200 ip community-list standard 2_40_170 permit 65000:2 0:40 0:170 ip community-list standard 2_50_136 permit 65000:2 0:50 0:136 ip community-list standard 2_68_100 permit 65000:2 0:68 0:100 ip community-list standard 2_80_85 permit 65000:2 0:80 0:85 route-map calculator permit 19965 match community 2_34_200 2_40_170 2_50_136 2_68_100 2_80_85 set community 0:6800 ip community-list standard 2_97_220 permit 65000:2 0:97 0:220 ip community-list standard 2_110_194 permit 65000:2 0:110 0:194 route-map calculator permit 19966 match community 2_97_220 2_110_194 set community 0:21340 ip community-list standard 2_18_209 permit 65000:2 0:18 0:209 ip community-list standard 2_19_198 permit 65000:2 0:19 0:198 ip community-list standard 2_22_171 permit 65000:2 0:22 0:171 ip community-list standard 2_33_114 permit 65000:2 0:33 0:114 ip community-list standard 2_38_99 permit 65000:2 0:38 0:99 ip community-list standard 2_57_66 permit 65000:2 0:57 0:66 route-map calculator permit 19967 match community 2_18_209 2_19_198 2_22_171 2_33_114 2_38_99 set community 0:3762 route-map calculator permit 19968 match community 2_57_66 set community 0:3762 ip community-list standard 2_106_247 permit 65000:2 0:106 0:247 route-map calculator permit 19969 match community 2_106_247 set community 0:26182 ip community-list standard 2_69_103 permit 65000:2 0:69 0:103 route-map calculator permit 19970 match community 2_69_103 set community 0:7107 ip community-list standard 2_111_256 permit 65000:2 0:111 0:256 ip community-list standard 2_128_222 permit 65000:2 0:128 0:222 ip community-list standard 2_148_192 permit 65000:2 0:148 0:192 route-map calculator permit 19971 match community 2_111_256 2_128_222 2_148_192 set community 0:28416 ip community-list standard 2_66_229 permit 65000:2 0:66 0:229 route-map calculator permit 19972 match community 2_66_229 set community 0:15114 ip community-list standard 2_149_171 permit 65000:2 0:149 0:171 route-map calculator permit 19973 match community 2_149_171 set community 0:25479 ip community-list standard 2_178_242 permit 65000:2 0:178 0:242 route-map calculator permit 19974 match community 2_178_242 set community 0:43076 ip community-list standard 2_120_137 permit 65000:2 0:120 0:137 route-map calculator permit 19975 match community 2_120_137 set community 0:16440 ip community-list standard 2_103_250 permit 65000:2 0:103 0:250 ip community-list standard 2_125_206 permit 65000:2 0:125 0:206 route-map calculator permit 19976 match community 2_103_250 2_125_206 set community 0:25750 ip community-list standard 2_80_218 permit 65000:2 0:80 0:218 ip community-list standard 2_109_160 permit 65000:2 0:109 0:160 route-map calculator permit 19977 match community 2_80_218 2_109_160 set community 0:17440 ip community-list standard 2_131_190 permit 65000:2 0:131 0:190 route-map calculator permit 19978 match community 2_131_190 set community 0:24890 ip community-list standard 2_7_103 permit 65000:2 0:7 0:103 route-map calculator permit 19979 match community 2_7_103 set community 0:721 ip community-list standard 2_186_241 permit 65000:2 0:186 0:241 route-map calculator permit 19980 match community 2_186_241 set community 0:44826 ip community-list standard 2_52_166 permit 65000:2 0:52 0:166 ip community-list standard 2_83_104 permit 65000:2 0:83 0:104 route-map calculator permit 19981 match community 2_52_166 2_83_104 set community 0:8632 ip community-list standard 2_224_242 permit 65000:2 0:224 0:242 route-map calculator permit 19982 match community 2_224_242 set community 0:54208 ip community-list standard 2_37_166 permit 65000:2 0:37 0:166 ip community-list standard 2_74_83 permit 65000:2 0:74 0:83 route-map calculator permit 19983 match community 2_37_166 2_74_83 set community 0:6142 ip community-list standard 2_30_239 permit 65000:2 0:30 0:239 route-map calculator permit 19984 match community 2_30_239 set community 0:7170 ip community-list standard 2_199_223 permit 65000:2 0:199 0:223 route-map calculator permit 19985 match community 2_199_223 set community 0:44377 ip community-list standard 2_55_177 permit 65000:2 0:55 0:177 ip community-list standard 2_59_165 permit 65000:2 0:59 0:165 route-map calculator permit 19986 match community 2_55_177 2_59_165 set community 0:9735 ip community-list standard 2_146_234 permit 65000:2 0:146 0:234 ip community-list standard 2_156_219 permit 65000:2 0:156 0:219 route-map calculator permit 19987 match community 2_146_234 2_156_219 set community 0:34164 ip community-list standard 2_27_111 permit 65000:2 0:27 0:111 ip community-list standard 2_37_81 permit 65000:2 0:37 0:81 route-map calculator permit 19988 match community 2_27_111 2_37_81 set community 0:2997 ip community-list standard 2_192_243 permit 65000:2 0:192 0:243 ip community-list standard 2_216_216 permit 65000:2 0:216 0:216 route-map calculator permit 19989 match community 2_192_243 2_216_216 set community 0:46656 ip community-list standard 2_103_201 permit 65000:2 0:103 0:201 route-map calculator permit 19990 match community 2_103_201 set community 0:20703 ip community-list standard 2_162_243 permit 65000:2 0:162 0:243 route-map calculator permit 19991 match community 2_162_243 set community 0:39366 ip community-list standard 2_111_189 permit 65000:2 0:111 0:189 route-map calculator permit 19992 match community 2_111_189 set community 0:20979 ip community-list standard 2_204_247 permit 65000:2 0:204 0:247 ip community-list standard 2_221_228 permit 65000:2 0:221 0:228 route-map calculator permit 19993 match community 2_204_247 2_221_228 set community 0:50388 ip community-list standard 2_2_186 permit 65000:2 0:2 0:186 ip community-list standard 2_3_124 permit 65000:2 0:3 0:124 ip community-list standard 2_4_93 permit 65000:2 0:4 0:93 ip community-list standard 2_6_62 permit 65000:2 0:6 0:62 ip community-list standard 2_12_31 permit 65000:2 0:12 0:31 ip community-list standard 1_116_256 permit 65000:1 0:116 0:256 ip community-list standard 1_117_255 permit 65000:1 0:117 0:255 ip community-list standard 1_118_254 permit 65000:1 0:118 0:254 ip community-list standard 1_119_253 permit 65000:1 0:119 0:253 ip community-list standard 1_120_252 permit 65000:1 0:120 0:252 ip community-list standard 1_121_251 permit 65000:1 0:121 0:251 ip community-list standard 1_122_250 permit 65000:1 0:122 0:250 ip community-list standard 1_123_249 permit 65000:1 0:123 0:249 ip community-list standard 1_124_248 permit 65000:1 0:124 0:248 ip community-list standard 1_125_247 permit 65000:1 0:125 0:247 ip community-list standard 1_126_246 permit 65000:1 0:126 0:246 ip community-list standard 1_127_245 permit 65000:1 0:127 0:245 ip community-list standard 1_128_244 permit 65000:1 0:128 0:244 ip community-list standard 1_129_243 permit 65000:1 0:129 0:243 ip community-list standard 1_130_242 permit 65000:1 0:130 0:242 ip community-list standard 1_131_241 permit 65000:1 0:131 0:241 ip community-list standard 1_132_240 permit 65000:1 0:132 0:240 ip community-list standard 1_133_239 permit 65000:1 0:133 0:239 ip community-list standard 1_134_238 permit 65000:1 0:134 0:238 ip community-list standard 1_135_237 permit 65000:1 0:135 0:237 ip community-list standard 1_136_236 permit 65000:1 0:136 0:236 ip community-list standard 1_137_235 permit 65000:1 0:137 0:235 ip community-list standard 1_138_234 permit 65000:1 0:138 0:234 ip community-list standard 1_139_233 permit 65000:1 0:139 0:233 ip community-list standard 1_140_232 permit 65000:1 0:140 0:232 ip community-list standard 1_141_231 permit 65000:1 0:141 0:231 ip community-list standard 1_142_230 permit 65000:1 0:142 0:230 ip community-list standard 1_143_229 permit 65000:1 0:143 0:229 ip community-list standard 1_144_228 permit 65000:1 0:144 0:228 ip community-list standard 1_145_227 permit 65000:1 0:145 0:227 ip community-list standard 1_146_226 permit 65000:1 0:146 0:226 ip community-list standard 1_147_225 permit 65000:1 0:147 0:225 ip community-list standard 1_148_224 permit 65000:1 0:148 0:224 ip community-list standard 1_149_223 permit 65000:1 0:149 0:223 ip community-list standard 1_150_222 permit 65000:1 0:150 0:222 ip community-list standard 1_151_221 permit 65000:1 0:151 0:221 ip community-list standard 1_152_220 permit 65000:1 0:152 0:220 ip community-list standard 1_153_219 permit 65000:1 0:153 0:219 ip community-list standard 1_154_218 permit 65000:1 0:154 0:218 ip community-list standard 1_155_217 permit 65000:1 0:155 0:217 ip community-list standard 1_156_216 permit 65000:1 0:156 0:216 ip community-list standard 1_157_215 permit 65000:1 0:157 0:215 ip community-list standard 1_158_214 permit 65000:1 0:158 0:214 ip community-list standard 1_159_213 permit 65000:1 0:159 0:213 ip community-list standard 1_160_212 permit 65000:1 0:160 0:212 ip community-list standard 1_161_211 permit 65000:1 0:161 0:211 ip community-list standard 1_162_210 permit 65000:1 0:162 0:210 ip community-list standard 1_163_209 permit 65000:1 0:163 0:209 ip community-list standard 1_164_208 permit 65000:1 0:164 0:208 ip community-list standard 1_165_207 permit 65000:1 0:165 0:207 ip community-list standard 1_166_206 permit 65000:1 0:166 0:206 ip community-list standard 1_167_205 permit 65000:1 0:167 0:205 ip community-list standard 1_168_204 permit 65000:1 0:168 0:204 ip community-list standard 1_169_203 permit 65000:1 0:169 0:203 ip community-list standard 1_170_202 permit 65000:1 0:170 0:202 ip community-list standard 1_171_201 permit 65000:1 0:171 0:201 ip community-list standard 1_172_200 permit 65000:1 0:172 0:200 ip community-list standard 1_173_199 permit 65000:1 0:173 0:199 ip community-list standard 1_174_198 permit 65000:1 0:174 0:198 ip community-list standard 1_175_197 permit 65000:1 0:175 0:197 ip community-list standard 1_176_196 permit 65000:1 0:176 0:196 ip community-list standard 1_177_195 permit 65000:1 0:177 0:195 ip community-list standard 1_178_194 permit 65000:1 0:178 0:194 ip community-list standard 1_179_193 permit 65000:1 0:179 0:193 ip community-list standard 1_180_192 permit 65000:1 0:180 0:192 ip community-list standard 1_181_191 permit 65000:1 0:181 0:191 ip community-list standard 1_182_190 permit 65000:1 0:182 0:190 ip community-list standard 1_183_189 permit 65000:1 0:183 0:189 ip community-list standard 1_184_188 permit 65000:1 0:184 0:188 ip community-list standard 1_185_187 permit 65000:1 0:185 0:187 ip community-list standard 1_186_186 permit 65000:1 0:186 0:186 route-map calculator permit 19994 match community 2_2_186 2_3_124 2_4_93 2_6_62 2_12_31 set community 0:372 route-map calculator permit 19995 match community 1_116_256 1_117_255 1_118_254 1_119_253 1_120_252 set community 0:372 route-map calculator permit 19996 match community 1_121_251 1_122_250 1_123_249 1_124_248 1_125_247 set community 0:372 route-map calculator permit 19997 match community 1_126_246 1_127_245 1_128_244 1_129_243 1_130_242 set community 0:372 route-map calculator permit 19998 match community 1_131_241 1_132_240 1_133_239 1_134_238 1_135_237 set community 0:372 route-map calculator permit 19999 match community 1_136_236 1_137_235 1_138_234 1_139_233 1_140_232 set community 0:372 route-map calculator permit 20000 match community 1_141_231 1_142_230 1_143_229 1_144_228 1_145_227 set community 0:372 route-map calculator permit 20001 match community 1_146_226 1_147_225 1_148_224 1_149_223 1_150_222 set community 0:372 route-map calculator permit 20002 match community 1_151_221 1_152_220 1_153_219 1_154_218 1_155_217 set community 0:372 route-map calculator permit 20003 match community 1_156_216 1_157_215 1_158_214 1_159_213 1_160_212 set community 0:372 route-map calculator permit 20004 match community 1_161_211 1_162_210 1_163_209 1_164_208 1_165_207 set community 0:372 route-map calculator permit 20005 match community 1_166_206 1_167_205 1_168_204 1_169_203 1_170_202 set community 0:372 route-map calculator permit 20006 match community 1_171_201 1_172_200 1_173_199 1_174_198 1_175_197 set community 0:372 route-map calculator permit 20007 match community 1_176_196 1_177_195 1_178_194 1_179_193 1_180_192 set community 0:372 route-map calculator permit 20008 match community 1_181_191 1_182_190 1_183_189 1_184_188 1_185_187 set community 0:372 route-map calculator permit 20009 match community 1_186_186 set community 0:372 ip community-list standard 2_137_164 permit 65000:2 0:137 0:164 route-map calculator permit 20010 match community 2_137_164 set community 0:22468 ip community-list standard 2_177_187 permit 65000:2 0:177 0:187 route-map calculator permit 20011 match community 2_177_187 set community 0:33099 ip community-list standard 2_57_219 permit 65000:2 0:57 0:219 ip community-list standard 2_73_171 permit 65000:2 0:73 0:171 route-map calculator permit 20012 match community 2_57_219 2_73_171 set community 0:12483 ip community-list standard 2_147_245 permit 65000:2 0:147 0:245 route-map calculator permit 20013 match community 2_147_245 set community 0:36015 ip community-list standard 2_165_250 permit 65000:2 0:165 0:250 route-map calculator permit 20014 match community 2_165_250 set community 0:41250 ip community-list standard 2_231_233 permit 65000:2 0:231 0:233 route-map calculator permit 20015 match community 2_231_233 set community 0:53823 ip community-list standard 2_16_252 permit 65000:2 0:16 0:252 ip community-list standard 2_18_224 permit 65000:2 0:18 0:224 ip community-list standard 2_21_192 permit 65000:2 0:21 0:192 ip community-list standard 2_24_168 permit 65000:2 0:24 0:168 ip community-list standard 2_28_144 permit 65000:2 0:28 0:144 ip community-list standard 2_32_126 permit 65000:2 0:32 0:126 ip community-list standard 2_36_112 permit 65000:2 0:36 0:112 ip community-list standard 2_42_96 permit 65000:2 0:42 0:96 ip community-list standard 2_48_84 permit 65000:2 0:48 0:84 ip community-list standard 2_56_72 permit 65000:2 0:56 0:72 ip community-list standard 2_63_64 permit 65000:2 0:63 0:64 route-map calculator permit 20016 match community 2_16_252 2_18_224 2_21_192 2_24_168 2_28_144 set community 0:4032 route-map calculator permit 20017 match community 2_32_126 2_36_112 2_42_96 2_48_84 2_56_72 set community 0:4032 route-map calculator permit 20018 match community 2_63_64 set community 0:4032 ip community-list standard 2_195_197 permit 65000:2 0:195 0:197 route-map calculator permit 20019 match community 2_195_197 set community 0:38415 ip community-list standard 2_135_245 permit 65000:2 0:135 0:245 ip community-list standard 2_147_225 permit 65000:2 0:147 0:225 ip community-list standard 2_175_189 permit 65000:2 0:175 0:189 route-map calculator permit 20020 match community 2_135_245 2_147_225 2_175_189 set community 0:33075 ip community-list standard 2_176_206 permit 65000:2 0:176 0:206 route-map calculator permit 20021 match community 2_176_206 set community 0:36256 ip community-list standard 2_210_243 permit 65000:2 0:210 0:243 route-map calculator permit 20022 match community 2_210_243 set community 0:51030 ip community-list standard 2_20_206 permit 65000:2 0:20 0:206 ip community-list standard 2_40_103 permit 65000:2 0:40 0:103 route-map calculator permit 20023 match community 2_20_206 2_40_103 set community 0:4120 ip community-list standard 2_131_252 permit 65000:2 0:131 0:252 route-map calculator permit 20024 match community 2_131_252 set community 0:33012 ip community-list standard 2_7_201 permit 65000:2 0:7 0:201 ip community-list standard 2_21_67 permit 65000:2 0:21 0:67 route-map calculator permit 20025 match community 2_7_201 2_21_67 set community 0:1407 ip community-list standard 2_127_241 permit 65000:2 0:127 0:241 route-map calculator permit 20026 match community 2_127_241 set community 0:30607 ip community-list standard 2_51_161 permit 65000:2 0:51 0:161 ip community-list standard 2_69_119 permit 65000:2 0:69 0:119 route-map calculator permit 20027 match community 2_51_161 2_69_119 set community 0:8211 ip community-list standard 2_169_207 permit 65000:2 0:169 0:207 route-map calculator permit 20028 match community 2_169_207 set community 0:34983 ip community-list standard 2_5_243 permit 65000:2 0:5 0:243 ip community-list standard 2_9_135 permit 65000:2 0:9 0:135 ip community-list standard 2_15_81 permit 65000:2 0:15 0:81 ip community-list standard 2_27_45 permit 65000:2 0:27 0:45 route-map calculator permit 20029 match community 2_5_243 2_9_135 2_15_81 2_27_45 set community 0:1215 ip community-list standard 2_74_184 permit 65000:2 0:74 0:184 ip community-list standard 2_92_148 permit 65000:2 0:92 0:148 route-map calculator permit 20030 match community 2_74_184 2_92_148 set community 0:13616 ip community-list standard 2_161_241 permit 65000:2 0:161 0:241 route-map calculator permit 20031 match community 2_161_241 set community 0:38801 ip community-list standard 2_82_241 permit 65000:2 0:82 0:241 route-map calculator permit 20032 match community 2_82_241 set community 0:19762 ip community-list standard 2_20_231 permit 65000:2 0:20 0:231 ip community-list standard 2_21_220 permit 65000:2 0:21 0:220 ip community-list standard 2_22_210 permit 65000:2 0:22 0:210 ip community-list standard 2_28_165 permit 65000:2 0:28 0:165 ip community-list standard 2_30_154 permit 65000:2 0:30 0:154 ip community-list standard 2_33_140 permit 65000:2 0:33 0:140 ip community-list standard 2_35_132 permit 65000:2 0:35 0:132 ip community-list standard 2_42_110 permit 65000:2 0:42 0:110 ip community-list standard 2_44_105 permit 65000:2 0:44 0:105 ip community-list standard 2_55_84 permit 65000:2 0:55 0:84 ip community-list standard 2_60_77 permit 65000:2 0:60 0:77 ip community-list standard 2_66_70 permit 65000:2 0:66 0:70 route-map calculator permit 20033 match community 2_20_231 2_21_220 2_22_210 2_28_165 2_30_154 set community 0:4620 route-map calculator permit 20034 match community 2_33_140 2_35_132 2_42_110 2_44_105 2_55_84 set community 0:4620 route-map calculator permit 20035 match community 2_60_77 2_66_70 set community 0:4620 ip community-list standard 2_217_235 permit 65000:2 0:217 0:235 route-map calculator permit 20036 match community 2_217_235 set community 0:50995 ip community-list standard 2_131_194 permit 65000:2 0:131 0:194 route-map calculator permit 20037 match community 2_131_194 set community 0:25414 ip community-list standard 2_9_99 permit 65000:2 0:9 0:99 ip community-list standard 2_11_81 permit 65000:2 0:11 0:81 ip community-list standard 2_27_33 permit 65000:2 0:27 0:33 route-map calculator permit 20038 match community 2_9_99 2_11_81 2_27_33 set community 0:891 ip community-list standard 2_4_133 permit 65000:2 0:4 0:133 ip community-list standard 2_7_76 permit 65000:2 0:7 0:76 ip community-list standard 2_14_38 permit 65000:2 0:14 0:38 ip community-list standard 2_19_28 permit 65000:2 0:19 0:28 route-map calculator permit 20039 match community 2_4_133 2_7_76 2_14_38 2_19_28 set community 0:532 ip community-list standard 2_77_181 permit 65000:2 0:77 0:181 route-map calculator permit 20040 match community 2_77_181 set community 0:13937 ip community-list standard 2_183_186 permit 65000:2 0:183 0:186 route-map calculator permit 20041 match community 2_183_186 set community 0:34038 ip community-list standard 2_49_61 permit 65000:2 0:49 0:61 route-map calculator permit 20042 match community 2_49_61 set community 0:2989 ip community-list standard 2_97_237 permit 65000:2 0:97 0:237 route-map calculator permit 20043 match community 2_97_237 set community 0:22989 ip community-list standard 2_101_202 permit 65000:2 0:101 0:202 route-map calculator permit 20044 match community 2_101_202 set community 0:20402 ip community-list standard 2_175_183 permit 65000:2 0:175 0:183 route-map calculator permit 20045 match community 2_175_183 set community 0:32025 ip community-list standard 2_26_217 permit 65000:2 0:26 0:217 ip community-list standard 2_31_182 permit 65000:2 0:31 0:182 ip community-list standard 2_62_91 permit 65000:2 0:62 0:91 route-map calculator permit 20046 match community 2_26_217 2_31_182 2_62_91 set community 0:5642 ip community-list standard 2_31_62 permit 65000:2 0:31 0:62 route-map calculator permit 20047 match community 2_31_62 set community 0:1922 ip community-list standard 2_143_186 permit 65000:2 0:143 0:186 route-map calculator permit 20048 match community 2_143_186 set community 0:26598 ip community-list standard 2_231_241 permit 65000:2 0:231 0:241 route-map calculator permit 20049 match community 2_231_241 set community 0:55671 ip community-list standard 2_41_139 permit 65000:2 0:41 0:139 route-map calculator permit 20050 match community 2_41_139 set community 0:5699 ip community-list standard 2_179_227 permit 65000:2 0:179 0:227 route-map calculator permit 20051 match community 2_179_227 set community 0:40633 ip community-list standard 2_155_243 permit 65000:2 0:155 0:243 route-map calculator permit 20052 match community 2_155_243 set community 0:37665 ip community-list standard 2_214_239 permit 65000:2 0:214 0:239 route-map calculator permit 20053 match community 2_214_239 set community 0:51146 ip community-list standard 2_15_233 permit 65000:2 0:15 0:233 route-map calculator permit 20054 match community 2_15_233 set community 0:3495 ip community-list standard 2_20_137 permit 65000:2 0:20 0:137 route-map calculator permit 20055 match community 2_20_137 set community 0:2740 ip community-list standard 2_96_238 permit 65000:2 0:96 0:238 ip community-list standard 2_102_224 permit 65000:2 0:102 0:224 ip community-list standard 2_112_204 permit 65000:2 0:112 0:204 ip community-list standard 2_119_192 permit 65000:2 0:119 0:192 ip community-list standard 2_136_168 permit 65000:2 0:136 0:168 route-map calculator permit 20056 match community 2_96_238 2_102_224 2_112_204 2_119_192 2_136_168 set community 0:22848 ip community-list standard 2_196_246 permit 65000:2 0:196 0:246 route-map calculator permit 20057 match community 2_196_246 set community 0:48216 ip community-list standard 2_190_226 permit 65000:2 0:190 0:226 route-map calculator permit 20058 match community 2_190_226 set community 0:42940 ip community-list standard 2_135_235 permit 65000:2 0:135 0:235 ip community-list standard 2_141_225 permit 65000:2 0:141 0:225 route-map calculator permit 20059 match community 2_135_235 2_141_225 set community 0:31725 ip community-list standard 2_11_197 permit 65000:2 0:11 0:197 route-map calculator permit 20060 match community 2_11_197 set community 0:2167 ip community-list standard 2_104_232 permit 65000:2 0:104 0:232 ip community-list standard 2_116_208 permit 65000:2 0:116 0:208 route-map calculator permit 20061 match community 2_104_232 2_116_208 set community 0:24128 ip community-list standard 2_16_207 permit 65000:2 0:16 0:207 ip community-list standard 2_18_184 permit 65000:2 0:18 0:184 ip community-list standard 2_23_144 permit 65000:2 0:23 0:144 ip community-list standard 2_24_138 permit 65000:2 0:24 0:138 ip community-list standard 2_36_92 permit 65000:2 0:36 0:92 ip community-list standard 2_46_72 permit 65000:2 0:46 0:72 ip community-list standard 2_48_69 permit 65000:2 0:48 0:69 route-map calculator permit 20062 match community 2_16_207 2_18_184 2_23_144 2_24_138 2_36_92 set community 0:3312 route-map calculator permit 20063 match community 2_46_72 2_48_69 set community 0:3312 ip community-list standard 2_16_163 permit 65000:2 0:16 0:163 route-map calculator permit 20064 match community 2_16_163 set community 0:2608 ip community-list standard 2_189_243 permit 65000:2 0:189 0:243 route-map calculator permit 20065 match community 2_189_243 set community 0:45927 ip community-list standard 2_10_254 permit 65000:2 0:10 0:254 ip community-list standard 2_20_127 permit 65000:2 0:20 0:127 route-map calculator permit 20066 match community 2_10_254 2_20_127 set community 0:2540 ip community-list standard 2_81_193 permit 65000:2 0:81 0:193 route-map calculator permit 20067 match community 2_81_193 set community 0:15633 ip community-list standard 2_139_146 permit 65000:2 0:139 0:146 route-map calculator permit 20068 match community 2_139_146 set community 0:20294 ip community-list standard 2_104_234 permit 65000:2 0:104 0:234 ip community-list standard 2_117_208 permit 65000:2 0:117 0:208 ip community-list standard 2_144_169 permit 65000:2 0:144 0:169 ip community-list standard 2_156_156 permit 65000:2 0:156 0:156 route-map calculator permit 20069 match community 2_104_234 2_117_208 2_144_169 2_156_156 set community 0:24336 ip community-list standard 2_3_180 permit 65000:2 0:3 0:180 ip community-list standard 2_4_135 permit 65000:2 0:4 0:135 ip community-list standard 2_5_108 permit 65000:2 0:5 0:108 ip community-list standard 2_6_90 permit 65000:2 0:6 0:90 ip community-list standard 2_9_60 permit 65000:2 0:9 0:60 ip community-list standard 2_10_54 permit 65000:2 0:10 0:54 ip community-list standard 2_12_45 permit 65000:2 0:12 0:45 ip community-list standard 2_15_36 permit 65000:2 0:15 0:36 ip community-list standard 2_18_30 permit 65000:2 0:18 0:30 ip community-list standard 2_20_27 permit 65000:2 0:20 0:27 route-map calculator permit 20070 match community 2_3_180 2_4_135 2_5_108 2_6_90 2_9_60 set community 0:540 route-map calculator permit 20071 match community 2_10_54 2_12_45 2_15_36 2_18_30 2_20_27 set community 0:540 ip community-list standard 2_184_245 permit 65000:2 0:184 0:245 ip community-list standard 2_196_230 permit 65000:2 0:196 0:230 route-map calculator permit 20072 match community 2_184_245 2_196_230 set community 0:45080 ip community-list standard 2_14_190 permit 65000:2 0:14 0:190 ip community-list standard 2_19_140 permit 65000:2 0:19 0:140 ip community-list standard 2_20_133 permit 65000:2 0:20 0:133 ip community-list standard 2_28_95 permit 65000:2 0:28 0:95 ip community-list standard 2_35_76 permit 65000:2 0:35 0:76 ip community-list standard 2_38_70 permit 65000:2 0:38 0:70 route-map calculator permit 20073 match community 2_14_190 2_19_140 2_20_133 2_28_95 2_35_76 set community 0:2660 route-map calculator permit 20074 match community 2_38_70 set community 0:2660 ip community-list standard 2_149_222 permit 65000:2 0:149 0:222 route-map calculator permit 20075 match community 2_149_222 set community 0:33078 ip community-list standard 2_46_214 permit 65000:2 0:46 0:214 ip community-list standard 2_92_107 permit 65000:2 0:92 0:107 route-map calculator permit 20076 match community 2_46_214 2_92_107 set community 0:9844 ip community-list standard 2_151_219 permit 65000:2 0:151 0:219 route-map calculator permit 20077 match community 2_151_219 set community 0:33069 ip community-list standard 2_46_235 permit 65000:2 0:46 0:235 ip community-list standard 2_47_230 permit 65000:2 0:47 0:230 ip community-list standard 2_94_115 permit 65000:2 0:94 0:115 route-map calculator permit 20078 match community 2_46_235 2_47_230 2_94_115 set community 0:10810 ip community-list standard 2_23_123 permit 65000:2 0:23 0:123 ip community-list standard 2_41_69 permit 65000:2 0:41 0:69 route-map calculator permit 20079 match community 2_23_123 2_41_69 set community 0:2829 ip community-list standard 2_130_193 permit 65000:2 0:130 0:193 route-map calculator permit 20080 match community 2_130_193 set community 0:25090 ip community-list standard 2_4_206 permit 65000:2 0:4 0:206 ip community-list standard 2_8_103 permit 65000:2 0:8 0:103 route-map calculator permit 20081 match community 2_4_206 2_8_103 set community 0:824 ip community-list standard 2_88_225 permit 65000:2 0:88 0:225 ip community-list standard 2_90_220 permit 65000:2 0:90 0:220 ip community-list standard 2_99_200 permit 65000:2 0:99 0:200 ip community-list standard 2_100_198 permit 65000:2 0:100 0:198 ip community-list standard 2_110_180 permit 65000:2 0:110 0:180 ip community-list standard 2_120_165 permit 65000:2 0:120 0:165 ip community-list standard 2_132_150 permit 65000:2 0:132 0:150 route-map calculator permit 20082 match community 2_88_225 2_90_220 2_99_200 2_100_198 2_110_180 set community 0:19800 route-map calculator permit 20083 match community 2_120_165 2_132_150 set community 0:19800 ip community-list standard 2_43_213 permit 65000:2 0:43 0:213 ip community-list standard 2_71_129 permit 65000:2 0:71 0:129 route-map calculator permit 20084 match community 2_43_213 2_71_129 set community 0:9159 ip community-list standard 2_25_254 permit 65000:2 0:25 0:254 ip community-list standard 2_50_127 permit 65000:2 0:50 0:127 route-map calculator permit 20085 match community 2_25_254 2_50_127 set community 0:6350 ip community-list standard 2_174_213 permit 65000:2 0:174 0:213 route-map calculator permit 20086 match community 2_174_213 set community 0:37062 ip community-list standard 2_220_235 permit 65000:2 0:220 0:235 route-map calculator permit 20087 match community 2_220_235 set community 0:51700 ip community-list standard 2_172_187 permit 65000:2 0:172 0:187 route-map calculator permit 20088 match community 2_172_187 set community 0:32164 ip community-list standard 2_221_234 permit 65000:2 0:221 0:234 route-map calculator permit 20089 match community 2_221_234 set community 0:51714 ip community-list standard 2_87_252 permit 65000:2 0:87 0:252 ip community-list standard 2_108_203 permit 65000:2 0:108 0:203 ip community-list standard 2_116_189 permit 65000:2 0:116 0:189 ip community-list standard 2_126_174 permit 65000:2 0:126 0:174 route-map calculator permit 20090 match community 2_87_252 2_108_203 2_116_189 2_126_174 set community 0:21924 ip community-list standard 2_191_212 permit 65000:2 0:191 0:212 route-map calculator permit 20091 match community 2_191_212 set community 0:40492 ip community-list standard 2_171_244 permit 65000:2 0:171 0:244 ip community-list standard 2_183_228 permit 65000:2 0:183 0:228 route-map calculator permit 20092 match community 2_171_244 2_183_228 set community 0:41724 ip community-list standard 2_19_118 permit 65000:2 0:19 0:118 ip community-list standard 2_38_59 permit 65000:2 0:38 0:59 route-map calculator permit 20093 match community 2_19_118 2_38_59 set community 0:2242 ip community-list standard 2_188_217 permit 65000:2 0:188 0:217 route-map calculator permit 20094 match community 2_188_217 set community 0:40796 ip community-list standard 2_113_187 permit 65000:2 0:113 0:187 route-map calculator permit 20095 match community 2_113_187 set community 0:21131 ip community-list standard 2_204_254 permit 65000:2 0:204 0:254 route-map calculator permit 20096 match community 2_204_254 set community 0:51816 ip community-list standard 2_6_256 permit 65000:2 0:6 0:256 ip community-list standard 2_8_192 permit 65000:2 0:8 0:192 ip community-list standard 2_12_128 permit 65000:2 0:12 0:128 ip community-list standard 2_16_96 permit 65000:2 0:16 0:96 ip community-list standard 2_24_64 permit 65000:2 0:24 0:64 ip community-list standard 2_32_48 permit 65000:2 0:32 0:48 route-map calculator permit 20097 match community 2_6_256 2_8_192 2_12_128 2_16_96 2_24_64 set community 0:1536 route-map calculator permit 20098 match community 2_32_48 set community 0:1536 ip community-list standard 2_87_167 permit 65000:2 0:87 0:167 route-map calculator permit 20099 match community 2_87_167 set community 0:14529 ip community-list standard 2_47_209 permit 65000:2 0:47 0:209 route-map calculator permit 20100 match community 2_47_209 set community 0:9823 ip community-list standard 2_194_256 permit 65000:2 0:194 0:256 route-map calculator permit 20101 match community 2_194_256 set community 0:49664 ip community-list standard 2_124_237 permit 65000:2 0:124 0:237 ip community-list standard 2_158_186 permit 65000:2 0:158 0:186 route-map calculator permit 20102 match community 2_124_237 2_158_186 set community 0:29388 ip community-list standard 2_99_252 permit 65000:2 0:99 0:252 ip community-list standard 2_108_231 permit 65000:2 0:108 0:231 ip community-list standard 2_126_198 permit 65000:2 0:126 0:198 ip community-list standard 2_132_189 permit 65000:2 0:132 0:189 ip community-list standard 2_154_162 permit 65000:2 0:154 0:162 route-map calculator permit 20103 match community 2_99_252 2_108_231 2_126_198 2_132_189 2_154_162 set community 0:24948 ip community-list standard 2_5_97 permit 65000:2 0:5 0:97 ip community-list standard 1_229_256 permit 65000:1 0:229 0:256 ip community-list standard 1_230_255 permit 65000:1 0:230 0:255 ip community-list standard 1_231_254 permit 65000:1 0:231 0:254 ip community-list standard 1_232_253 permit 65000:1 0:232 0:253 ip community-list standard 1_233_252 permit 65000:1 0:233 0:252 ip community-list standard 1_234_251 permit 65000:1 0:234 0:251 ip community-list standard 1_235_250 permit 65000:1 0:235 0:250 ip community-list standard 1_236_249 permit 65000:1 0:236 0:249 ip community-list standard 1_237_248 permit 65000:1 0:237 0:248 ip community-list standard 1_238_247 permit 65000:1 0:238 0:247 ip community-list standard 1_239_246 permit 65000:1 0:239 0:246 ip community-list standard 1_240_245 permit 65000:1 0:240 0:245 ip community-list standard 1_241_244 permit 65000:1 0:241 0:244 ip community-list standard 1_242_243 permit 65000:1 0:242 0:243 route-map calculator permit 20104 match community 2_5_97 1_229_256 1_230_255 1_231_254 1_232_253 set community 0:485 route-map calculator permit 20105 match community 1_233_252 1_234_251 1_235_250 1_236_249 1_237_248 set community 0:485 route-map calculator permit 20106 match community 1_238_247 1_239_246 1_240_245 1_241_244 1_242_243 set community 0:485 ip community-list standard 2_15_234 permit 65000:2 0:15 0:234 ip community-list standard 2_18_195 permit 65000:2 0:18 0:195 ip community-list standard 2_26_135 permit 65000:2 0:26 0:135 ip community-list standard 2_27_130 permit 65000:2 0:27 0:130 ip community-list standard 2_30_117 permit 65000:2 0:30 0:117 ip community-list standard 2_39_90 permit 65000:2 0:39 0:90 ip community-list standard 2_45_78 permit 65000:2 0:45 0:78 ip community-list standard 2_54_65 permit 65000:2 0:54 0:65 route-map calculator permit 20107 match community 2_15_234 2_18_195 2_26_135 2_27_130 2_30_117 set community 0:3510 route-map calculator permit 20108 match community 2_39_90 2_45_78 2_54_65 set community 0:3510 ip community-list standard 2_75_245 permit 65000:2 0:75 0:245 ip community-list standard 2_105_175 permit 65000:2 0:105 0:175 ip community-list standard 2_125_147 permit 65000:2 0:125 0:147 route-map calculator permit 20109 match community 2_75_245 2_105_175 2_125_147 set community 0:18375 ip community-list standard 2_41_224 permit 65000:2 0:41 0:224 ip community-list standard 2_56_164 permit 65000:2 0:56 0:164 ip community-list standard 2_82_112 permit 65000:2 0:82 0:112 route-map calculator permit 20110 match community 2_41_224 2_56_164 2_82_112 set community 0:9184 ip community-list standard 2_35_206 permit 65000:2 0:35 0:206 ip community-list standard 2_70_103 permit 65000:2 0:70 0:103 route-map calculator permit 20111 match community 2_35_206 2_70_103 set community 0:7210 ip community-list standard 2_41_127 permit 65000:2 0:41 0:127 route-map calculator permit 20112 match community 2_41_127 set community 0:5207 ip community-list standard 2_201_223 permit 65000:2 0:201 0:223 route-map calculator permit 20113 match community 2_201_223 set community 0:44823 ip community-list standard 2_24_223 permit 65000:2 0:24 0:223 route-map calculator permit 20114 match community 2_24_223 set community 0:5352 ip community-list standard 2_158_230 permit 65000:2 0:158 0:230 route-map calculator permit 20115 match community 2_158_230 set community 0:36340 ip community-list standard 2_188_191 permit 65000:2 0:188 0:191 route-map calculator permit 20116 match community 2_188_191 set community 0:35908 ip community-list standard 2_32_185 permit 65000:2 0:32 0:185 ip community-list standard 2_37_160 permit 65000:2 0:37 0:160 ip community-list standard 2_40_148 permit 65000:2 0:40 0:148 ip community-list standard 2_74_80 permit 65000:2 0:74 0:80 route-map calculator permit 20117 match community 2_32_185 2_37_160 2_40_148 2_74_80 set community 0:5920 ip community-list standard 2_7_247 permit 65000:2 0:7 0:247 ip community-list standard 2_13_133 permit 65000:2 0:13 0:133 ip community-list standard 2_19_91 permit 65000:2 0:19 0:91 route-map calculator permit 20118 match community 2_7_247 2_13_133 2_19_91 set community 0:1729 ip community-list standard 2_158_161 permit 65000:2 0:158 0:161 route-map calculator permit 20119 match community 2_158_161 set community 0:25438 ip community-list standard 2_72_173 permit 65000:2 0:72 0:173 route-map calculator permit 20120 match community 2_72_173 set community 0:12456 ip community-list standard 1_1_71 permit 65000:1 0:1 0:71 ip community-list standard 2_1_72 permit 65000:2 0:1 0:72 ip community-list standard 2_2_36 permit 65000:2 0:2 0:36 ip community-list standard 1_2_70 permit 65000:1 0:2 0:70 ip community-list standard 2_3_24 permit 65000:2 0:3 0:24 ip community-list standard 1_3_69 permit 65000:1 0:3 0:69 ip community-list standard 2_4_18 permit 65000:2 0:4 0:18 ip community-list standard 1_4_68 permit 65000:1 0:4 0:68 ip community-list standard 1_5_67 permit 65000:1 0:5 0:67 ip community-list standard 2_6_12 permit 65000:2 0:6 0:12 ip community-list standard 1_6_66 permit 65000:1 0:6 0:66 ip community-list standard 1_7_65 permit 65000:1 0:7 0:65 ip community-list standard 2_8_9 permit 65000:2 0:8 0:9 ip community-list standard 1_8_64 permit 65000:1 0:8 0:64 ip community-list standard 1_9_63 permit 65000:1 0:9 0:63 ip community-list standard 1_10_62 permit 65000:1 0:10 0:62 ip community-list standard 1_11_61 permit 65000:1 0:11 0:61 ip community-list standard 1_12_60 permit 65000:1 0:12 0:60 ip community-list standard 1_13_59 permit 65000:1 0:13 0:59 ip community-list standard 1_14_58 permit 65000:1 0:14 0:58 ip community-list standard 1_15_57 permit 65000:1 0:15 0:57 ip community-list standard 1_16_56 permit 65000:1 0:16 0:56 ip community-list standard 1_17_55 permit 65000:1 0:17 0:55 ip community-list standard 1_18_54 permit 65000:1 0:18 0:54 ip community-list standard 1_19_53 permit 65000:1 0:19 0:53 ip community-list standard 1_20_52 permit 65000:1 0:20 0:52 ip community-list standard 1_21_51 permit 65000:1 0:21 0:51 ip community-list standard 1_22_50 permit 65000:1 0:22 0:50 ip community-list standard 1_23_49 permit 65000:1 0:23 0:49 ip community-list standard 1_24_48 permit 65000:1 0:24 0:48 ip community-list standard 1_25_47 permit 65000:1 0:25 0:47 ip community-list standard 1_26_46 permit 65000:1 0:26 0:46 ip community-list standard 1_27_45 permit 65000:1 0:27 0:45 ip community-list standard 1_28_44 permit 65000:1 0:28 0:44 ip community-list standard 1_29_43 permit 65000:1 0:29 0:43 ip community-list standard 1_30_42 permit 65000:1 0:30 0:42 ip community-list standard 1_31_41 permit 65000:1 0:31 0:41 ip community-list standard 1_32_40 permit 65000:1 0:32 0:40 ip community-list standard 1_33_39 permit 65000:1 0:33 0:39 ip community-list standard 1_34_38 permit 65000:1 0:34 0:38 ip community-list standard 1_35_37 permit 65000:1 0:35 0:37 ip community-list standard 1_36_36 permit 65000:1 0:36 0:36 ip community-list expanded c72 permit 1 ^65000:4_0:72_0:1$ ip community-list expanded c72 permit 2 ^65000:3_0:73_0:1$ ip community-list expanded c72 permit 3 ^65000:3_0:74_0:2$ ip community-list expanded c72 permit 4 ^65000:3_0:75_0:3$ ip community-list expanded c72 permit 5 ^65000:3_0:76_0:4$ ip community-list expanded c72 permit 6 ^65000:3_0:77_0:5$ ip community-list expanded c72 permit 7 ^65000:3_0:78_0:6$ ip community-list expanded c72 permit 8 ^65000:3_0:79_0:7$ ip community-list expanded c72 permit 9 ^65000:3_0:80_0:8$ ip community-list expanded c72 permit 10 ^65000:3_0:81_0:9$ ip community-list expanded c72 permit 11 ^65000:3_0:82_0:10$ ip community-list expanded c72 permit 12 ^65000:3_0:83_0:11$ ip community-list expanded c72 permit 13 ^65000:3_0:84_0:12$ ip community-list expanded c72 permit 14 ^65000:3_0:85_0:13$ ip community-list expanded c72 permit 15 ^65000:3_0:86_0:14$ ip community-list expanded c72 permit 16 ^65000:3_0:87_0:15$ ip community-list expanded c72 permit 17 ^65000:3_0:88_0:16$ ip community-list expanded c72 permit 18 ^65000:3_0:89_0:17$ ip community-list expanded c72 permit 19 ^65000:3_0:90_0:18$ ip community-list expanded c72 permit 20 ^65000:3_0:91_0:19$ ip community-list expanded c72 permit 21 ^65000:3_0:92_0:20$ ip community-list expanded c72 permit 22 ^65000:3_0:93_0:21$ ip community-list expanded c72 permit 23 ^65000:3_0:94_0:22$ ip community-list expanded c72 permit 24 ^65000:3_0:95_0:23$ ip community-list expanded c72 permit 25 ^65000:3_0:96_0:24$ ip community-list expanded c72 permit 26 ^65000:3_0:97_0:25$ ip community-list expanded c72 permit 27 ^65000:3_0:98_0:26$ ip community-list expanded c72 permit 28 ^65000:3_0:99_0:27$ ip community-list expanded c72 permit 29 ^65000:3_0:100_0:28$ ip community-list expanded c72 permit 30 ^65000:3_0:101_0:29$ ip community-list expanded c72 permit 31 ^65000:3_0:102_0:30$ ip community-list expanded c72 permit 32 ^65000:3_0:103_0:31$ ip community-list expanded c72 permit 33 ^65000:3_0:104_0:32$ ip community-list expanded c72 permit 34 ^65000:3_0:105_0:33$ ip community-list expanded c72 permit 35 ^65000:3_0:106_0:34$ ip community-list expanded c72 permit 36 ^65000:3_0:107_0:35$ ip community-list expanded c72 permit 37 ^65000:3_0:108_0:36$ ip community-list expanded c72 permit 38 ^65000:3_0:109_0:37$ ip community-list expanded c72 permit 39 ^65000:3_0:110_0:38$ ip community-list expanded c72 permit 40 ^65000:3_0:111_0:39$ ip community-list expanded c72 permit 41 ^65000:3_0:112_0:40$ ip community-list expanded c72 permit 42 ^65000:3_0:113_0:41$ ip community-list expanded c72 permit 43 ^65000:3_0:114_0:42$ ip community-list expanded c72 permit 44 ^65000:3_0:115_0:43$ ip community-list expanded c72 permit 45 ^65000:3_0:116_0:44$ ip community-list expanded c72 permit 46 ^65000:3_0:117_0:45$ ip community-list expanded c72 permit 47 ^65000:3_0:118_0:46$ ip community-list expanded c72 permit 48 ^65000:3_0:119_0:47$ ip community-list expanded c72 permit 49 ^65000:3_0:120_0:48$ ip community-list expanded c72 permit 50 ^65000:3_0:121_0:49$ ip community-list expanded c72 permit 51 ^65000:3_0:122_0:50$ ip community-list expanded c72 permit 52 ^65000:3_0:123_0:51$ ip community-list expanded c72 permit 53 ^65000:3_0:124_0:52$ ip community-list expanded c72 permit 54 ^65000:3_0:125_0:53$ ip community-list expanded c72 permit 55 ^65000:3_0:126_0:54$ ip community-list expanded c72 permit 56 ^65000:3_0:127_0:55$ ip community-list expanded c72 permit 57 ^65000:3_0:128_0:56$ ip community-list expanded c72 permit 58 ^65000:3_0:129_0:57$ ip community-list expanded c72 permit 59 ^65000:3_0:130_0:58$ ip community-list expanded c72 permit 60 ^65000:3_0:131_0:59$ ip community-list expanded c72 permit 61 ^65000:3_0:132_0:60$ ip community-list expanded c72 permit 62 ^65000:3_0:133_0:61$ ip community-list expanded c72 permit 63 ^65000:3_0:134_0:62$ ip community-list expanded c72 permit 64 ^65000:3_0:135_0:63$ ip community-list expanded c72 permit 65 ^65000:3_0:136_0:64$ ip community-list expanded c72 permit 66 ^65000:3_0:137_0:65$ ip community-list expanded c72 permit 67 ^65000:3_0:138_0:66$ ip community-list expanded c72 permit 68 ^65000:3_0:139_0:67$ ip community-list expanded c72 permit 69 ^65000:3_0:140_0:68$ ip community-list expanded c72 permit 70 ^65000:3_0:141_0:69$ ip community-list expanded c72 permit 71 ^65000:3_0:142_0:70$ ip community-list expanded c72 permit 72 ^65000:3_0:143_0:71$ ip community-list expanded c72 permit 73 ^65000:4_0:144_0:2$ ip community-list expanded c72 permit 74 ^65000:3_0:144_0:72$ ip community-list expanded c72 permit 75 ^65000:4_0:145_0:2$ ip community-list expanded c72 permit 76 ^65000:3_0:145_0:73$ ip community-list expanded c72 permit 77 ^65000:3_0:146_0:74$ ip community-list expanded c72 permit 78 ^65000:3_0:147_0:75$ ip community-list expanded c72 permit 79 ^65000:3_0:148_0:76$ ip community-list expanded c72 permit 80 ^65000:3_0:149_0:77$ ip community-list expanded c72 permit 81 ^65000:3_0:150_0:78$ ip community-list expanded c72 permit 82 ^65000:3_0:151_0:79$ ip community-list expanded c72 permit 83 ^65000:3_0:152_0:80$ ip community-list expanded c72 permit 84 ^65000:3_0:153_0:81$ ip community-list expanded c72 permit 85 ^65000:3_0:154_0:82$ ip community-list expanded c72 permit 86 ^65000:3_0:155_0:83$ ip community-list expanded c72 permit 87 ^65000:3_0:156_0:84$ ip community-list expanded c72 permit 88 ^65000:3_0:157_0:85$ ip community-list expanded c72 permit 89 ^65000:3_0:158_0:86$ ip community-list expanded c72 permit 90 ^65000:3_0:159_0:87$ ip community-list expanded c72 permit 91 ^65000:3_0:160_0:88$ ip community-list expanded c72 permit 92 ^65000:3_0:161_0:89$ ip community-list expanded c72 permit 93 ^65000:3_0:162_0:90$ ip community-list expanded c72 permit 94 ^65000:3_0:163_0:91$ ip community-list expanded c72 permit 95 ^65000:3_0:164_0:92$ ip community-list expanded c72 permit 96 ^65000:3_0:165_0:93$ ip community-list expanded c72 permit 97 ^65000:3_0:166_0:94$ ip community-list expanded c72 permit 98 ^65000:3_0:167_0:95$ ip community-list expanded c72 permit 99 ^65000:3_0:168_0:96$ ip community-list expanded c72 permit 100 ^65000:3_0:169_0:97$ ip community-list expanded c72 permit 101 ^65000:3_0:170_0:98$ ip community-list expanded c72 permit 102 ^65000:3_0:171_0:99$ ip community-list expanded c72 permit 103 ^65000:3_0:172_0:100$ ip community-list expanded c72 permit 104 ^65000:3_0:173_0:101$ ip community-list expanded c72 permit 105 ^65000:3_0:174_0:102$ ip community-list expanded c72 permit 106 ^65000:3_0:175_0:103$ ip community-list expanded c72 permit 107 ^65000:3_0:176_0:104$ ip community-list expanded c72 permit 108 ^65000:3_0:177_0:105$ ip community-list expanded c72 permit 109 ^65000:3_0:178_0:106$ ip community-list expanded c72 permit 110 ^65000:3_0:179_0:107$ ip community-list expanded c72 permit 111 ^65000:3_0:180_0:108$ ip community-list expanded c72 permit 112 ^65000:3_0:181_0:109$ ip community-list expanded c72 permit 113 ^65000:3_0:182_0:110$ ip community-list expanded c72 permit 114 ^65000:3_0:183_0:111$ ip community-list expanded c72 permit 115 ^65000:3_0:184_0:112$ ip community-list expanded c72 permit 116 ^65000:3_0:185_0:113$ ip community-list expanded c72 permit 117 ^65000:3_0:186_0:114$ ip community-list expanded c72 permit 118 ^65000:3_0:187_0:115$ ip community-list expanded c72 permit 119 ^65000:3_0:188_0:116$ ip community-list expanded c72 permit 120 ^65000:3_0:189_0:117$ ip community-list expanded c72 permit 121 ^65000:3_0:190_0:118$ ip community-list expanded c72 permit 122 ^65000:3_0:191_0:119$ ip community-list expanded c72 permit 123 ^65000:3_0:192_0:120$ ip community-list expanded c72 permit 124 ^65000:3_0:193_0:121$ ip community-list expanded c72 permit 125 ^65000:3_0:194_0:122$ ip community-list expanded c72 permit 126 ^65000:3_0:195_0:123$ ip community-list expanded c72 permit 127 ^65000:3_0:196_0:124$ ip community-list expanded c72 permit 128 ^65000:3_0:197_0:125$ ip community-list expanded c72 permit 129 ^65000:3_0:198_0:126$ ip community-list expanded c72 permit 130 ^65000:3_0:199_0:127$ ip community-list expanded c72 permit 131 ^65000:3_0:200_0:128$ ip community-list expanded c72 permit 132 ^65000:3_0:201_0:129$ ip community-list expanded c72 permit 133 ^65000:3_0:202_0:130$ ip community-list expanded c72 permit 134 ^65000:3_0:203_0:131$ ip community-list expanded c72 permit 135 ^65000:3_0:204_0:132$ ip community-list expanded c72 permit 136 ^65000:3_0:205_0:133$ ip community-list expanded c72 permit 137 ^65000:3_0:206_0:134$ ip community-list expanded c72 permit 138 ^65000:3_0:207_0:135$ ip community-list expanded c72 permit 139 ^65000:3_0:208_0:136$ ip community-list expanded c72 permit 140 ^65000:3_0:209_0:137$ ip community-list expanded c72 permit 141 ^65000:3_0:210_0:138$ ip community-list expanded c72 permit 142 ^65000:3_0:211_0:139$ ip community-list expanded c72 permit 143 ^65000:3_0:212_0:140$ ip community-list expanded c72 permit 144 ^65000:3_0:213_0:141$ ip community-list expanded c72 permit 145 ^65000:3_0:214_0:142$ ip community-list expanded c72 permit 146 ^65000:3_0:215_0:143$ ip community-list expanded c72 permit 147 ^65000:4_0:216_0:3$ ip community-list expanded c72 permit 148 ^65000:3_0:216_0:144$ ip community-list expanded c72 permit 149 ^65000:4_0:217_0:3$ ip community-list expanded c72 permit 150 ^65000:3_0:217_0:145$ ip community-list expanded c72 permit 151 ^65000:4_0:218_0:3$ ip community-list expanded c72 permit 152 ^65000:3_0:218_0:146$ ip community-list expanded c72 permit 153 ^65000:3_0:219_0:147$ ip community-list expanded c72 permit 154 ^65000:3_0:220_0:148$ ip community-list expanded c72 permit 155 ^65000:3_0:221_0:149$ ip community-list expanded c72 permit 156 ^65000:3_0:222_0:150$ ip community-list expanded c72 permit 157 ^65000:3_0:223_0:151$ ip community-list expanded c72 permit 158 ^65000:3_0:224_0:152$ ip community-list expanded c72 permit 159 ^65000:3_0:225_0:153$ ip community-list expanded c72 permit 160 ^65000:3_0:226_0:154$ ip community-list expanded c72 permit 161 ^65000:3_0:227_0:155$ ip community-list expanded c72 permit 162 ^65000:3_0:228_0:156$ ip community-list expanded c72 permit 163 ^65000:3_0:229_0:157$ ip community-list expanded c72 permit 164 ^65000:3_0:230_0:158$ ip community-list expanded c72 permit 165 ^65000:3_0:231_0:159$ ip community-list expanded c72 permit 166 ^65000:3_0:232_0:160$ ip community-list expanded c72 permit 167 ^65000:3_0:233_0:161$ ip community-list expanded c72 permit 168 ^65000:3_0:234_0:162$ ip community-list expanded c72 permit 169 ^65000:3_0:235_0:163$ ip community-list expanded c72 permit 170 ^65000:3_0:236_0:164$ ip community-list expanded c72 permit 171 ^65000:3_0:237_0:165$ ip community-list expanded c72 permit 172 ^65000:3_0:238_0:166$ ip community-list expanded c72 permit 173 ^65000:3_0:239_0:167$ ip community-list expanded c72 permit 174 ^65000:3_0:240_0:168$ ip community-list expanded c72 permit 175 ^65000:3_0:241_0:169$ ip community-list expanded c72 permit 176 ^65000:3_0:242_0:170$ ip community-list expanded c72 permit 177 ^65000:3_0:243_0:171$ ip community-list expanded c72 permit 178 ^65000:3_0:244_0:172$ ip community-list expanded c72 permit 179 ^65000:3_0:245_0:173$ ip community-list expanded c72 permit 180 ^65000:3_0:246_0:174$ ip community-list expanded c72 permit 181 ^65000:3_0:247_0:175$ ip community-list expanded c72 permit 182 ^65000:3_0:248_0:176$ ip community-list expanded c72 permit 183 ^65000:3_0:249_0:177$ ip community-list expanded c72 permit 184 ^65000:3_0:250_0:178$ ip community-list expanded c72 permit 185 ^65000:3_0:251_0:179$ ip community-list expanded c72 permit 186 ^65000:3_0:252_0:180$ ip community-list expanded c72 permit 187 ^65000:3_0:253_0:181$ ip community-list expanded c72 permit 188 ^65000:3_0:254_0:182$ ip community-list expanded c72 permit 189 ^65000:3_0:255_0:183$ ip community-list expanded c72 permit 190 ^65000:3_0:256_0:184$ route-map calculator permit 20121 match community 1_1_71 2_1_72 2_2_36 1_2_70 2_3_24 set community 0:72 route-map calculator permit 20122 match community 1_3_69 2_4_18 1_4_68 1_5_67 2_6_12 set community 0:72 route-map calculator permit 20123 match community 1_6_66 1_7_65 2_8_9 1_8_64 1_9_63 set community 0:72 route-map calculator permit 20124 match community 1_10_62 1_11_61 1_12_60 1_13_59 1_14_58 set community 0:72 route-map calculator permit 20125 match community 1_15_57 1_16_56 1_17_55 1_18_54 1_19_53 set community 0:72 route-map calculator permit 20126 match community 1_20_52 1_21_51 1_22_50 1_23_49 1_24_48 set community 0:72 route-map calculator permit 20127 match community 1_25_47 1_26_46 1_27_45 1_28_44 1_29_43 set community 0:72 route-map calculator permit 20128 match community 1_30_42 1_31_41 1_32_40 1_33_39 1_34_38 set community 0:72 route-map calculator permit 20129 match community 1_35_37 1_36_36 c4_72_1 c3_73_1 c3_74_2 set community 0:72 route-map calculator permit 20130 match community c3_75_3 c3_76_4 c3_77_5 c3_78_6 c3_79_7 set community 0:72 route-map calculator permit 20131 match community c3_80_8 c3_81_9 c3_82_10 c3_83_11 c3_84_12 set community 0:72 route-map calculator permit 20132 match community c3_85_13 c3_86_14 c3_87_15 c3_88_16 c3_89_17 set community 0:72 route-map calculator permit 20133 match community c3_90_18 c3_91_19 c3_92_20 c3_93_21 c3_94_22 set community 0:72 route-map calculator permit 20134 match community c3_95_23 c3_96_24 c3_97_25 c3_98_26 c3_99_27 set community 0:72 route-map calculator permit 20135 match community c3_100_28 c3_101_29 c3_102_30 c3_103_31 c3_104_32 set community 0:72 route-map calculator permit 20136 match community c3_105_33 c3_106_34 c3_107_35 c3_108_36 c3_109_37 set community 0:72 route-map calculator permit 20137 match community c3_110_38 c3_111_39 c3_112_40 c3_113_41 c3_114_42 set community 0:72 route-map calculator permit 20138 match community c3_115_43 c3_116_44 c3_117_45 c3_118_46 c3_119_47 set community 0:72 route-map calculator permit 20139 match community c3_120_48 c3_121_49 c3_122_50 c3_123_51 c3_124_52 set community 0:72 route-map calculator permit 20140 match community c3_125_53 c3_126_54 c3_127_55 c3_128_56 c3_129_57 set community 0:72 route-map calculator permit 20141 match community c3_130_58 c3_131_59 c3_132_60 c3_133_61 c3_134_62 set community 0:72 route-map calculator permit 20142 match community c3_135_63 c3_136_64 c3_137_65 c3_138_66 c3_139_67 set community 0:72 route-map calculator permit 20143 match community c3_140_68 c3_141_69 c3_142_70 c3_143_71 c4_144_2 set community 0:72 route-map calculator permit 20144 match community c3_144_72 c4_145_2 c3_145_73 c3_146_74 c3_147_75 set community 0:72 route-map calculator permit 20145 match community c3_148_76 c3_149_77 c3_150_78 c3_151_79 c3_152_80 set community 0:72 route-map calculator permit 20146 match community c3_153_81 c3_154_82 c3_155_83 c3_156_84 c3_157_85 set community 0:72 route-map calculator permit 20147 match community c3_158_86 c3_159_87 c3_160_88 c3_161_89 c3_162_90 set community 0:72 route-map calculator permit 20148 match community c3_163_91 c3_164_92 c3_165_93 c3_166_94 c3_167_95 set community 0:72 route-map calculator permit 20149 match community c3_168_96 c3_169_97 c3_170_98 c3_171_99 c3_172_100 set community 0:72 route-map calculator permit 20150 match community c3_173_101 c3_174_102 c3_175_103 c3_176_104 c3_177_105 set community 0:72 route-map calculator permit 20151 match community c3_178_106 c3_179_107 c3_180_108 c3_181_109 c3_182_110 set community 0:72 route-map calculator permit 20152 match community c3_183_111 c3_184_112 c3_185_113 c3_186_114 c3_187_115 set community 0:72 route-map calculator permit 20153 match community c3_188_116 c3_189_117 c3_190_118 c3_191_119 c3_192_120 set community 0:72 route-map calculator permit 20154 match community c3_193_121 c3_194_122 c3_195_123 c3_196_124 c3_197_125 set community 0:72 route-map calculator permit 20155 match community c3_198_126 c3_199_127 c3_200_128 c3_201_129 c3_202_130 set community 0:72 route-map calculator permit 20156 match community c3_203_131 c3_204_132 c3_205_133 c3_206_134 c3_207_135 set community 0:72 route-map calculator permit 20157 match community c3_208_136 c3_209_137 c3_210_138 c3_211_139 c3_212_140 set community 0:72 route-map calculator permit 20158 match community c3_213_141 c3_214_142 c3_215_143 c4_216_3 c3_216_144 set community 0:72 route-map calculator permit 20159 match community c4_217_3 c3_217_145 c4_218_3 c3_218_146 c3_219_147 set community 0:72 route-map calculator permit 20160 match community c3_220_148 c3_221_149 c3_222_150 c3_223_151 c3_224_152 set community 0:72 route-map calculator permit 20161 match community c3_225_153 c3_226_154 c3_227_155 c3_228_156 c3_229_157 set community 0:72 route-map calculator permit 20162 match community c3_230_158 c3_231_159 c3_232_160 c3_233_161 c3_234_162 set community 0:72 route-map calculator permit 20163 match community c3_235_163 c3_236_164 c3_237_165 c3_238_166 c3_239_167 set community 0:72 route-map calculator permit 20164 match community c3_240_168 c3_241_169 c3_242_170 c3_243_171 c3_244_172 set community 0:72 route-map calculator permit 20165 match community c3_245_173 c3_246_174 c3_247_175 c3_248_176 c3_249_177 set community 0:72 route-map calculator permit 20166 match community c3_250_178 c3_251_179 c3_252_180 c3_253_181 c3_254_182 set community 0:72 route-map calculator permit 20167 match community c3_255_183 c3_256_184 set community 0:72 ip community-list standard 2_200_229 permit 65000:2 0:200 0:229 route-map calculator permit 20168 match community 2_200_229 set community 0:45800 ip community-list standard 2_97_225 permit 65000:2 0:97 0:225 route-map calculator permit 20169 match community 2_97_225 set community 0:21825 ip community-list standard 2_226_249 permit 65000:2 0:226 0:249 route-map calculator permit 20170 match community 2_226_249 set community 0:56274 ip community-list standard 2_165_233 permit 65000:2 0:165 0:233 route-map calculator permit 20171 match community 2_165_233 set community 0:38445 ip community-list standard 2_146_185 permit 65000:2 0:146 0:185 route-map calculator permit 20172 match community 2_146_185 set community 0:27010 ip community-list standard 2_93_243 permit 65000:2 0:93 0:243 route-map calculator permit 20173 match community 2_93_243 set community 0:22599 ip community-list standard 2_212_248 permit 65000:2 0:212 0:248 route-map calculator permit 20174 match community 2_212_248 set community 0:52576 ip community-list standard 2_211_234 permit 65000:2 0:211 0:234 route-map calculator permit 20175 match community 2_211_234 set community 0:49374 ip community-list standard 2_5_202 permit 65000:2 0:5 0:202 ip community-list standard 2_10_101 permit 65000:2 0:10 0:101 route-map calculator permit 20176 match community 2_5_202 2_10_101 set community 0:1010 ip community-list standard 2_117_127 permit 65000:2 0:117 0:127 route-map calculator permit 20177 match community 2_117_127 set community 0:14859 ip community-list standard 1_133_256 permit 65000:1 0:133 0:256 ip community-list standard 1_134_255 permit 65000:1 0:134 0:255 ip community-list standard 1_135_254 permit 65000:1 0:135 0:254 ip community-list standard 1_136_253 permit 65000:1 0:136 0:253 ip community-list standard 1_137_252 permit 65000:1 0:137 0:252 ip community-list standard 1_138_251 permit 65000:1 0:138 0:251 ip community-list standard 1_139_250 permit 65000:1 0:139 0:250 ip community-list standard 1_140_249 permit 65000:1 0:140 0:249 ip community-list standard 1_141_248 permit 65000:1 0:141 0:248 ip community-list standard 1_142_247 permit 65000:1 0:142 0:247 ip community-list standard 1_143_246 permit 65000:1 0:143 0:246 ip community-list standard 1_144_245 permit 65000:1 0:144 0:245 ip community-list standard 1_145_244 permit 65000:1 0:145 0:244 ip community-list standard 1_146_243 permit 65000:1 0:146 0:243 ip community-list standard 1_147_242 permit 65000:1 0:147 0:242 ip community-list standard 1_148_241 permit 65000:1 0:148 0:241 ip community-list standard 1_149_240 permit 65000:1 0:149 0:240 ip community-list standard 1_150_239 permit 65000:1 0:150 0:239 ip community-list standard 1_151_238 permit 65000:1 0:151 0:238 ip community-list standard 1_152_237 permit 65000:1 0:152 0:237 ip community-list standard 1_153_236 permit 65000:1 0:153 0:236 ip community-list standard 1_154_235 permit 65000:1 0:154 0:235 ip community-list standard 1_155_234 permit 65000:1 0:155 0:234 ip community-list standard 1_156_233 permit 65000:1 0:156 0:233 ip community-list standard 1_157_232 permit 65000:1 0:157 0:232 ip community-list standard 1_158_231 permit 65000:1 0:158 0:231 ip community-list standard 1_159_230 permit 65000:1 0:159 0:230 ip community-list standard 1_160_229 permit 65000:1 0:160 0:229 ip community-list standard 1_161_228 permit 65000:1 0:161 0:228 ip community-list standard 1_162_227 permit 65000:1 0:162 0:227 ip community-list standard 1_163_226 permit 65000:1 0:163 0:226 ip community-list standard 1_164_225 permit 65000:1 0:164 0:225 ip community-list standard 1_165_224 permit 65000:1 0:165 0:224 ip community-list standard 1_166_223 permit 65000:1 0:166 0:223 ip community-list standard 1_167_222 permit 65000:1 0:167 0:222 ip community-list standard 1_168_221 permit 65000:1 0:168 0:221 ip community-list standard 1_169_220 permit 65000:1 0:169 0:220 ip community-list standard 1_170_219 permit 65000:1 0:170 0:219 ip community-list standard 1_171_218 permit 65000:1 0:171 0:218 ip community-list standard 1_172_217 permit 65000:1 0:172 0:217 ip community-list standard 1_173_216 permit 65000:1 0:173 0:216 ip community-list standard 1_174_215 permit 65000:1 0:174 0:215 ip community-list standard 1_175_214 permit 65000:1 0:175 0:214 ip community-list standard 1_176_213 permit 65000:1 0:176 0:213 ip community-list standard 1_177_212 permit 65000:1 0:177 0:212 ip community-list standard 1_178_211 permit 65000:1 0:178 0:211 ip community-list standard 1_179_210 permit 65000:1 0:179 0:210 ip community-list standard 1_180_209 permit 65000:1 0:180 0:209 ip community-list standard 1_181_208 permit 65000:1 0:181 0:208 ip community-list standard 1_182_207 permit 65000:1 0:182 0:207 ip community-list standard 1_183_206 permit 65000:1 0:183 0:206 ip community-list standard 1_184_205 permit 65000:1 0:184 0:205 ip community-list standard 1_185_204 permit 65000:1 0:185 0:204 ip community-list standard 1_186_203 permit 65000:1 0:186 0:203 ip community-list standard 1_187_202 permit 65000:1 0:187 0:202 ip community-list standard 1_188_201 permit 65000:1 0:188 0:201 ip community-list standard 1_189_200 permit 65000:1 0:189 0:200 ip community-list standard 1_190_199 permit 65000:1 0:190 0:199 ip community-list standard 1_191_198 permit 65000:1 0:191 0:198 ip community-list standard 1_192_197 permit 65000:1 0:192 0:197 ip community-list standard 1_193_196 permit 65000:1 0:193 0:196 ip community-list standard 1_194_195 permit 65000:1 0:194 0:195 route-map calculator permit 20178 match community 1_133_256 1_134_255 1_135_254 1_136_253 1_137_252 set community 0:389 route-map calculator permit 20179 match community 1_138_251 1_139_250 1_140_249 1_141_248 1_142_247 set community 0:389 route-map calculator permit 20180 match community 1_143_246 1_144_245 1_145_244 1_146_243 1_147_242 set community 0:389 route-map calculator permit 20181 match community 1_148_241 1_149_240 1_150_239 1_151_238 1_152_237 set community 0:389 route-map calculator permit 20182 match community 1_153_236 1_154_235 1_155_234 1_156_233 1_157_232 set community 0:389 route-map calculator permit 20183 match community 1_158_231 1_159_230 1_160_229 1_161_228 1_162_227 set community 0:389 route-map calculator permit 20184 match community 1_163_226 1_164_225 1_165_224 1_166_223 1_167_222 set community 0:389 route-map calculator permit 20185 match community 1_168_221 1_169_220 1_170_219 1_171_218 1_172_217 set community 0:389 route-map calculator permit 20186 match community 1_173_216 1_174_215 1_175_214 1_176_213 1_177_212 set community 0:389 route-map calculator permit 20187 match community 1_178_211 1_179_210 1_180_209 1_181_208 1_182_207 set community 0:389 route-map calculator permit 20188 match community 1_183_206 1_184_205 1_185_204 1_186_203 1_187_202 set community 0:389 route-map calculator permit 20189 match community 1_188_201 1_189_200 1_190_199 1_191_198 1_192_197 set community 0:389 route-map calculator permit 20190 match community 1_193_196 1_194_195 set community 0:389 ip community-list standard 2_159_227 permit 65000:2 0:159 0:227 route-map calculator permit 20191 match community 2_159_227 set community 0:36093 ip community-list standard 2_48_223 permit 65000:2 0:48 0:223 route-map calculator permit 20192 match community 2_48_223 set community 0:10704 ip community-list standard 2_34_244 permit 65000:2 0:34 0:244 ip community-list standard 2_61_136 permit 65000:2 0:61 0:136 ip community-list standard 2_68_122 permit 65000:2 0:68 0:122 route-map calculator permit 20193 match community 2_34_244 2_61_136 2_68_122 set community 0:8296 ip community-list standard 2_102_206 permit 65000:2 0:102 0:206 ip community-list standard 2_103_204 permit 65000:2 0:103 0:204 route-map calculator permit 20194 match community 2_102_206 2_103_204 set community 0:21012 ip community-list standard 2_176_236 permit 65000:2 0:176 0:236 route-map calculator permit 20195 match community 2_176_236 set community 0:41536 ip community-list standard 2_144_252 permit 65000:2 0:144 0:252 ip community-list standard 2_162_224 permit 65000:2 0:162 0:224 ip community-list standard 2_168_216 permit 65000:2 0:168 0:216 ip community-list standard 2_189_192 permit 65000:2 0:189 0:192 route-map calculator permit 20196 match community 2_144_252 2_162_224 2_168_216 2_189_192 set community 0:36288 ip community-list standard 2_105_197 permit 65000:2 0:105 0:197 route-map calculator permit 20197 match community 2_105_197 set community 0:20685 ip community-list standard 2_89_256 permit 65000:2 0:89 0:256 ip community-list standard 2_128_178 permit 65000:2 0:128 0:178 route-map calculator permit 20198 match community 2_89_256 2_128_178 set community 0:22784 ip community-list standard 2_16_254 permit 65000:2 0:16 0:254 ip community-list standard 2_32_127 permit 65000:2 0:32 0:127 route-map calculator permit 20199 match community 2_16_254 2_32_127 set community 0:4064 ip community-list standard 2_57_115 permit 65000:2 0:57 0:115 ip community-list standard 2_69_95 permit 65000:2 0:69 0:95 route-map calculator permit 20200 match community 2_57_115 2_69_95 set community 0:6555 ip community-list standard 2_7_249 permit 65000:2 0:7 0:249 ip community-list standard 2_21_83 permit 65000:2 0:21 0:83 route-map calculator permit 20201 match community 2_7_249 2_21_83 set community 0:1743 ip community-list standard 2_86_151 permit 65000:2 0:86 0:151 route-map calculator permit 20202 match community 2_86_151 set community 0:12986 ip community-list standard 2_145_243 permit 65000:2 0:145 0:243 route-map calculator permit 20203 match community 2_145_243 set community 0:35235 ip community-list standard 2_11_58 permit 65000:2 0:11 0:58 ip community-list standard 2_22_29 permit 65000:2 0:22 0:29 route-map calculator permit 20204 match community 2_11_58 2_22_29 set community 0:638 ip community-list standard 2_99_187 permit 65000:2 0:99 0:187 ip community-list standard 2_121_153 permit 65000:2 0:121 0:153 route-map calculator permit 20205 match community 2_99_187 2_121_153 set community 0:18513 ip community-list standard 2_65_79 permit 65000:2 0:65 0:79 route-map calculator permit 20206 match community 2_65_79 set community 0:5135 ip community-list standard 2_79_254 permit 65000:2 0:79 0:254 ip community-list standard 2_127_158 permit 65000:2 0:127 0:158 route-map calculator permit 20207 match community 2_79_254 2_127_158 set community 0:20066 ip community-list standard 2_130_158 permit 65000:2 0:130 0:158 route-map calculator permit 20208 match community 2_130_158 set community 0:20540 ip community-list standard 2_206_226 permit 65000:2 0:206 0:226 route-map calculator permit 20209 match community 2_206_226 set community 0:46556 ip community-list standard 2_3_185 permit 65000:2 0:3 0:185 ip community-list standard 2_5_111 permit 65000:2 0:5 0:111 ip community-list standard 2_15_37 permit 65000:2 0:15 0:37 route-map calculator permit 20210 match community 2_3_185 2_5_111 2_15_37 set community 0:555 ip community-list standard 2_49_106 permit 65000:2 0:49 0:106 ip community-list standard 2_53_98 permit 65000:2 0:53 0:98 route-map calculator permit 20211 match community 2_49_106 2_53_98 set community 0:5194 ip community-list standard 2_23_142 permit 65000:2 0:23 0:142 ip community-list standard 2_46_71 permit 65000:2 0:46 0:71 route-map calculator permit 20212 match community 2_23_142 2_46_71 set community 0:3266 ip community-list standard 2_160_246 permit 65000:2 0:160 0:246 ip community-list standard 2_164_240 permit 65000:2 0:164 0:240 ip community-list standard 2_192_205 permit 65000:2 0:192 0:205 route-map calculator permit 20213 match community 2_160_246 2_164_240 2_192_205 set community 0:39360 ip community-list standard 2_102_221 permit 65000:2 0:102 0:221 route-map calculator permit 20214 match community 2_102_221 set community 0:22542 ip community-list standard 2_55_243 permit 65000:2 0:55 0:243 ip community-list standard 2_81_165 permit 65000:2 0:81 0:165 ip community-list standard 2_99_135 permit 65000:2 0:99 0:135 route-map calculator permit 20215 match community 2_55_243 2_81_165 2_99_135 set community 0:13365 ip community-list standard 2_32_212 permit 65000:2 0:32 0:212 ip community-list standard 2_53_128 permit 65000:2 0:53 0:128 ip community-list standard 2_64_106 permit 65000:2 0:64 0:106 route-map calculator permit 20216 match community 2_32_212 2_53_128 2_64_106 set community 0:6784 ip community-list standard 2_170_215 permit 65000:2 0:170 0:215 route-map calculator permit 20217 match community 2_170_215 set community 0:36550 ip community-list standard 2_110_250 permit 65000:2 0:110 0:250 ip community-list standard 2_125_220 permit 65000:2 0:125 0:220 route-map calculator permit 20218 match community 2_110_250 2_125_220 set community 0:27500 ip community-list standard 2_162_248 permit 65000:2 0:162 0:248 ip community-list standard 2_186_216 permit 65000:2 0:186 0:216 route-map calculator permit 20219 match community 2_162_248 2_186_216 set community 0:40176 ip community-list standard 2_134_151 permit 65000:2 0:134 0:151 route-map calculator permit 20220 match community 2_134_151 set community 0:20234 ip community-list standard 2_35_208 permit 65000:2 0:35 0:208 ip community-list standard 2_40_182 permit 65000:2 0:40 0:182 ip community-list standard 2_52_140 permit 65000:2 0:52 0:140 ip community-list standard 2_56_130 permit 65000:2 0:56 0:130 ip community-list standard 2_65_112 permit 65000:2 0:65 0:112 ip community-list standard 2_70_104 permit 65000:2 0:70 0:104 ip community-list standard 2_80_91 permit 65000:2 0:80 0:91 route-map calculator permit 20221 match community 2_35_208 2_40_182 2_52_140 2_56_130 2_65_112 set community 0:7280 route-map calculator permit 20222 match community 2_70_104 2_80_91 set community 0:7280 ip community-list standard 2_30_159 permit 65000:2 0:30 0:159 ip community-list standard 2_45_106 permit 65000:2 0:45 0:106 ip community-list standard 2_53_90 permit 65000:2 0:53 0:90 route-map calculator permit 20223 match community 2_30_159 2_45_106 2_53_90 set community 0:4770 ip community-list standard 2_172_188 permit 65000:2 0:172 0:188 route-map calculator permit 20224 match community 2_172_188 set community 0:32336 ip community-list standard 2_179_252 permit 65000:2 0:179 0:252 route-map calculator permit 20225 match community 2_179_252 set community 0:45108 ip community-list standard 2_100_131 permit 65000:2 0:100 0:131 route-map calculator permit 20226 match community 2_100_131 set community 0:13100 ip community-list standard 2_179_228 permit 65000:2 0:179 0:228 route-map calculator permit 20227 match community 2_179_228 set community 0:40812 ip community-list standard 2_14_161 permit 65000:2 0:14 0:161 ip community-list standard 2_23_98 permit 65000:2 0:23 0:98 ip community-list standard 2_46_49 permit 65000:2 0:46 0:49 route-map calculator permit 20228 match community 2_14_161 2_23_98 2_46_49 set community 0:2254 ip community-list standard 2_151_247 permit 65000:2 0:151 0:247 route-map calculator permit 20229 match community 2_151_247 set community 0:37297 ip community-list standard 2_114_225 permit 65000:2 0:114 0:225 ip community-list standard 2_135_190 permit 65000:2 0:135 0:190 ip community-list standard 2_150_171 permit 65000:2 0:150 0:171 route-map calculator permit 20230 match community 2_114_225 2_135_190 2_150_171 set community 0:25650 ip community-list standard 2_7_209 permit 65000:2 0:7 0:209 ip community-list standard 2_11_133 permit 65000:2 0:11 0:133 ip community-list standard 2_19_77 permit 65000:2 0:19 0:77 route-map calculator permit 20231 match community 2_7_209 2_11_133 2_19_77 set community 0:1463 ip community-list standard 2_18_246 permit 65000:2 0:18 0:246 ip community-list standard 2_27_164 permit 65000:2 0:27 0:164 ip community-list standard 2_36_123 permit 65000:2 0:36 0:123 ip community-list standard 2_41_108 permit 65000:2 0:41 0:108 ip community-list standard 2_54_82 permit 65000:2 0:54 0:82 route-map calculator permit 20232 match community 2_18_246 2_27_164 2_36_123 2_41_108 2_54_82 set community 0:4428 ip community-list standard 2_79_250 permit 65000:2 0:79 0:250 ip community-list standard 2_125_158 permit 65000:2 0:125 0:158 route-map calculator permit 20233 match community 2_79_250 2_125_158 set community 0:19750 ip community-list standard 2_108_247 permit 65000:2 0:108 0:247 ip community-list standard 2_114_234 permit 65000:2 0:114 0:234 ip community-list standard 2_117_228 permit 65000:2 0:117 0:228 ip community-list standard 2_156_171 permit 65000:2 0:156 0:171 route-map calculator permit 20234 match community 2_108_247 2_114_234 2_117_228 2_156_171 set community 0:26676 ip community-list standard 2_17_69 permit 65000:2 0:17 0:69 ip community-list standard 2_23_51 permit 65000:2 0:23 0:51 route-map calculator permit 20235 match community 2_17_69 2_23_51 set community 0:1173 ip community-list standard 2_62_221 permit 65000:2 0:62 0:221 route-map calculator permit 20236 match community 2_62_221 set community 0:13702 ip community-list standard 2_141_213 permit 65000:2 0:141 0:213 route-map calculator permit 20237 match community 2_141_213 set community 0:30033 ip community-list standard 2_113_217 permit 65000:2 0:113 0:217 route-map calculator permit 20238 match community 2_113_217 set community 0:24521 ip community-list standard 2_157_221 permit 65000:2 0:157 0:221 route-map calculator permit 20239 match community 2_157_221 set community 0:34697 ip community-list standard 2_199_254 permit 65000:2 0:199 0:254 route-map calculator permit 20240 match community 2_199_254 set community 0:50546 ip community-list standard 2_47_224 permit 65000:2 0:47 0:224 ip community-list standard 2_56_188 permit 65000:2 0:56 0:188 ip community-list standard 2_94_112 permit 65000:2 0:94 0:112 route-map calculator permit 20241 match community 2_47_224 2_56_188 2_94_112 set community 0:10528 ip community-list standard 2_50_193 permit 65000:2 0:50 0:193 route-map calculator permit 20242 match community 2_50_193 set community 0:9650 ip community-list standard 2_155_237 permit 65000:2 0:155 0:237 route-map calculator permit 20243 match community 2_155_237 set community 0:36735 ip community-list standard 2_164_252 permit 65000:2 0:164 0:252 ip community-list standard 2_168_246 permit 65000:2 0:168 0:246 route-map calculator permit 20244 match community 2_164_252 2_168_246 set community 0:41328 ip community-list standard 2_13_157 permit 65000:2 0:13 0:157 route-map calculator permit 20245 match community 2_13_157 set community 0:2041 ip community-list standard 2_9_244 permit 65000:2 0:9 0:244 ip community-list standard 2_12_183 permit 65000:2 0:12 0:183 ip community-list standard 2_18_122 permit 65000:2 0:18 0:122 ip community-list standard 2_36_61 permit 65000:2 0:36 0:61 route-map calculator permit 20246 match community 2_9_244 2_12_183 2_18_122 2_36_61 set community 0:2196 ip community-list standard 2_25_199 permit 65000:2 0:25 0:199 route-map calculator permit 20247 match community 2_25_199 set community 0:4975 ip community-list standard 2_67_185 permit 65000:2 0:67 0:185 route-map calculator permit 20248 match community 2_67_185 set community 0:12395 ip community-list standard 2_139_213 permit 65000:2 0:139 0:213 route-map calculator permit 20249 match community 2_139_213 set community 0:29607 ip community-list standard 2_59_79 permit 65000:2 0:59 0:79 route-map calculator permit 20250 match community 2_59_79 set community 0:4661 ip community-list standard 2_134_237 permit 65000:2 0:134 0:237 ip community-list standard 2_158_201 permit 65000:2 0:158 0:201 route-map calculator permit 20251 match community 2_134_237 2_158_201 set community 0:31758 ip community-list standard 2_236_253 permit 65000:2 0:236 0:253 route-map calculator permit 20252 match community 2_236_253 set community 0:59708 ip community-list standard 2_160_214 permit 65000:2 0:160 0:214 route-map calculator permit 20253 match community 2_160_214 set community 0:34240 ip community-list standard 1_1_131 permit 65000:1 0:1 0:131 ip community-list standard 2_1_132 permit 65000:2 0:1 0:132 ip community-list standard 2_2_66 permit 65000:2 0:2 0:66 ip community-list standard 1_2_130 permit 65000:1 0:2 0:130 ip community-list standard 2_3_44 permit 65000:2 0:3 0:44 ip community-list standard 1_3_129 permit 65000:1 0:3 0:129 ip community-list standard 2_4_33 permit 65000:2 0:4 0:33 ip community-list standard 1_4_128 permit 65000:1 0:4 0:128 ip community-list standard 1_5_127 permit 65000:1 0:5 0:127 ip community-list standard 2_6_22 permit 65000:2 0:6 0:22 ip community-list standard 1_6_126 permit 65000:1 0:6 0:126 ip community-list standard 1_7_125 permit 65000:1 0:7 0:125 ip community-list standard 1_8_124 permit 65000:1 0:8 0:124 ip community-list standard 1_9_123 permit 65000:1 0:9 0:123 ip community-list standard 1_10_122 permit 65000:1 0:10 0:122 ip community-list standard 2_11_12 permit 65000:2 0:11 0:12 ip community-list standard 1_11_121 permit 65000:1 0:11 0:121 ip community-list standard 1_12_120 permit 65000:1 0:12 0:120 ip community-list standard 1_13_119 permit 65000:1 0:13 0:119 ip community-list standard 1_14_118 permit 65000:1 0:14 0:118 ip community-list standard 1_15_117 permit 65000:1 0:15 0:117 ip community-list standard 1_16_116 permit 65000:1 0:16 0:116 ip community-list standard 1_17_115 permit 65000:1 0:17 0:115 ip community-list standard 1_18_114 permit 65000:1 0:18 0:114 ip community-list standard 1_19_113 permit 65000:1 0:19 0:113 ip community-list standard 1_20_112 permit 65000:1 0:20 0:112 ip community-list standard 1_21_111 permit 65000:1 0:21 0:111 ip community-list standard 1_22_110 permit 65000:1 0:22 0:110 ip community-list standard 1_23_109 permit 65000:1 0:23 0:109 ip community-list standard 1_24_108 permit 65000:1 0:24 0:108 ip community-list standard 1_25_107 permit 65000:1 0:25 0:107 ip community-list standard 1_26_106 permit 65000:1 0:26 0:106 ip community-list standard 1_27_105 permit 65000:1 0:27 0:105 ip community-list standard 1_28_104 permit 65000:1 0:28 0:104 ip community-list standard 1_29_103 permit 65000:1 0:29 0:103 ip community-list standard 1_30_102 permit 65000:1 0:30 0:102 ip community-list standard 1_31_101 permit 65000:1 0:31 0:101 ip community-list standard 1_32_100 permit 65000:1 0:32 0:100 ip community-list standard 1_33_99 permit 65000:1 0:33 0:99 ip community-list standard 1_34_98 permit 65000:1 0:34 0:98 ip community-list standard 1_35_97 permit 65000:1 0:35 0:97 ip community-list standard 1_36_96 permit 65000:1 0:36 0:96 ip community-list standard 1_37_95 permit 65000:1 0:37 0:95 ip community-list standard 1_38_94 permit 65000:1 0:38 0:94 ip community-list standard 1_39_93 permit 65000:1 0:39 0:93 ip community-list standard 1_40_92 permit 65000:1 0:40 0:92 ip community-list standard 1_41_91 permit 65000:1 0:41 0:91 ip community-list standard 1_42_90 permit 65000:1 0:42 0:90 ip community-list standard 1_43_89 permit 65000:1 0:43 0:89 ip community-list standard 1_44_88 permit 65000:1 0:44 0:88 ip community-list standard 1_45_87 permit 65000:1 0:45 0:87 ip community-list standard 1_46_86 permit 65000:1 0:46 0:86 ip community-list standard 1_47_85 permit 65000:1 0:47 0:85 ip community-list standard 1_48_84 permit 65000:1 0:48 0:84 ip community-list standard 1_49_83 permit 65000:1 0:49 0:83 ip community-list standard 1_50_82 permit 65000:1 0:50 0:82 ip community-list standard 1_51_81 permit 65000:1 0:51 0:81 ip community-list standard 1_52_80 permit 65000:1 0:52 0:80 ip community-list standard 1_53_79 permit 65000:1 0:53 0:79 ip community-list standard 1_54_78 permit 65000:1 0:54 0:78 ip community-list standard 1_55_77 permit 65000:1 0:55 0:77 ip community-list standard 1_56_76 permit 65000:1 0:56 0:76 ip community-list standard 1_57_75 permit 65000:1 0:57 0:75 ip community-list standard 1_58_74 permit 65000:1 0:58 0:74 ip community-list standard 1_59_73 permit 65000:1 0:59 0:73 ip community-list standard 1_60_72 permit 65000:1 0:60 0:72 ip community-list standard 1_61_71 permit 65000:1 0:61 0:71 ip community-list standard 1_62_70 permit 65000:1 0:62 0:70 ip community-list standard 1_63_69 permit 65000:1 0:63 0:69 ip community-list standard 1_64_68 permit 65000:1 0:64 0:68 ip community-list standard 1_65_67 permit 65000:1 0:65 0:67 ip community-list standard 1_66_66 permit 65000:1 0:66 0:66 ip community-list expanded c132 permit 1 ^65000:4_0:132_0:1$ ip community-list expanded c132 permit 2 ^65000:3_0:133_0:1$ ip community-list expanded c132 permit 3 ^65000:3_0:134_0:2$ ip community-list expanded c132 permit 4 ^65000:3_0:135_0:3$ ip community-list expanded c132 permit 5 ^65000:3_0:136_0:4$ ip community-list expanded c132 permit 6 ^65000:3_0:137_0:5$ ip community-list expanded c132 permit 7 ^65000:3_0:138_0:6$ ip community-list expanded c132 permit 8 ^65000:3_0:139_0:7$ ip community-list expanded c132 permit 9 ^65000:3_0:140_0:8$ ip community-list expanded c132 permit 10 ^65000:3_0:141_0:9$ ip community-list expanded c132 permit 11 ^65000:3_0:142_0:10$ ip community-list expanded c132 permit 12 ^65000:3_0:143_0:11$ ip community-list expanded c132 permit 13 ^65000:3_0:144_0:12$ ip community-list expanded c132 permit 14 ^65000:3_0:145_0:13$ ip community-list expanded c132 permit 15 ^65000:3_0:146_0:14$ ip community-list expanded c132 permit 16 ^65000:3_0:147_0:15$ ip community-list expanded c132 permit 17 ^65000:3_0:148_0:16$ ip community-list expanded c132 permit 18 ^65000:3_0:149_0:17$ ip community-list expanded c132 permit 19 ^65000:3_0:150_0:18$ ip community-list expanded c132 permit 20 ^65000:3_0:151_0:19$ ip community-list expanded c132 permit 21 ^65000:3_0:152_0:20$ ip community-list expanded c132 permit 22 ^65000:3_0:153_0:21$ ip community-list expanded c132 permit 23 ^65000:3_0:154_0:22$ ip community-list expanded c132 permit 24 ^65000:3_0:155_0:23$ ip community-list expanded c132 permit 25 ^65000:3_0:156_0:24$ ip community-list expanded c132 permit 26 ^65000:3_0:157_0:25$ ip community-list expanded c132 permit 27 ^65000:3_0:158_0:26$ ip community-list expanded c132 permit 28 ^65000:3_0:159_0:27$ ip community-list expanded c132 permit 29 ^65000:3_0:160_0:28$ ip community-list expanded c132 permit 30 ^65000:3_0:161_0:29$ ip community-list expanded c132 permit 31 ^65000:3_0:162_0:30$ ip community-list expanded c132 permit 32 ^65000:3_0:163_0:31$ ip community-list expanded c132 permit 33 ^65000:3_0:164_0:32$ ip community-list expanded c132 permit 34 ^65000:3_0:165_0:33$ ip community-list expanded c132 permit 35 ^65000:3_0:166_0:34$ ip community-list expanded c132 permit 36 ^65000:3_0:167_0:35$ ip community-list expanded c132 permit 37 ^65000:3_0:168_0:36$ ip community-list expanded c132 permit 38 ^65000:3_0:169_0:37$ ip community-list expanded c132 permit 39 ^65000:3_0:170_0:38$ ip community-list expanded c132 permit 40 ^65000:3_0:171_0:39$ ip community-list expanded c132 permit 41 ^65000:3_0:172_0:40$ ip community-list expanded c132 permit 42 ^65000:3_0:173_0:41$ ip community-list expanded c132 permit 43 ^65000:3_0:174_0:42$ ip community-list expanded c132 permit 44 ^65000:3_0:175_0:43$ ip community-list expanded c132 permit 45 ^65000:3_0:176_0:44$ ip community-list expanded c132 permit 46 ^65000:3_0:177_0:45$ ip community-list expanded c132 permit 47 ^65000:3_0:178_0:46$ ip community-list expanded c132 permit 48 ^65000:3_0:179_0:47$ ip community-list expanded c132 permit 49 ^65000:3_0:180_0:48$ ip community-list expanded c132 permit 50 ^65000:3_0:181_0:49$ ip community-list expanded c132 permit 51 ^65000:3_0:182_0:50$ ip community-list expanded c132 permit 52 ^65000:3_0:183_0:51$ ip community-list expanded c132 permit 53 ^65000:3_0:184_0:52$ ip community-list expanded c132 permit 54 ^65000:3_0:185_0:53$ ip community-list expanded c132 permit 55 ^65000:3_0:186_0:54$ ip community-list expanded c132 permit 56 ^65000:3_0:187_0:55$ ip community-list expanded c132 permit 57 ^65000:3_0:188_0:56$ ip community-list expanded c132 permit 58 ^65000:3_0:189_0:57$ ip community-list expanded c132 permit 59 ^65000:3_0:190_0:58$ ip community-list expanded c132 permit 60 ^65000:3_0:191_0:59$ ip community-list expanded c132 permit 61 ^65000:3_0:192_0:60$ ip community-list expanded c132 permit 62 ^65000:3_0:193_0:61$ ip community-list expanded c132 permit 63 ^65000:3_0:194_0:62$ ip community-list expanded c132 permit 64 ^65000:3_0:195_0:63$ ip community-list expanded c132 permit 65 ^65000:3_0:196_0:64$ ip community-list expanded c132 permit 66 ^65000:3_0:197_0:65$ ip community-list expanded c132 permit 67 ^65000:3_0:198_0:66$ ip community-list expanded c132 permit 68 ^65000:3_0:199_0:67$ ip community-list expanded c132 permit 69 ^65000:3_0:200_0:68$ ip community-list expanded c132 permit 70 ^65000:3_0:201_0:69$ ip community-list expanded c132 permit 71 ^65000:3_0:202_0:70$ ip community-list expanded c132 permit 72 ^65000:3_0:203_0:71$ ip community-list expanded c132 permit 73 ^65000:3_0:204_0:72$ ip community-list expanded c132 permit 74 ^65000:3_0:205_0:73$ ip community-list expanded c132 permit 75 ^65000:3_0:206_0:74$ ip community-list expanded c132 permit 76 ^65000:3_0:207_0:75$ ip community-list expanded c132 permit 77 ^65000:3_0:208_0:76$ ip community-list expanded c132 permit 78 ^65000:3_0:209_0:77$ ip community-list expanded c132 permit 79 ^65000:3_0:210_0:78$ ip community-list expanded c132 permit 80 ^65000:3_0:211_0:79$ ip community-list expanded c132 permit 81 ^65000:3_0:212_0:80$ ip community-list expanded c132 permit 82 ^65000:3_0:213_0:81$ ip community-list expanded c132 permit 83 ^65000:3_0:214_0:82$ ip community-list expanded c132 permit 84 ^65000:3_0:215_0:83$ ip community-list expanded c132 permit 85 ^65000:3_0:216_0:84$ ip community-list expanded c132 permit 86 ^65000:3_0:217_0:85$ ip community-list expanded c132 permit 87 ^65000:3_0:218_0:86$ ip community-list expanded c132 permit 88 ^65000:3_0:219_0:87$ ip community-list expanded c132 permit 89 ^65000:3_0:220_0:88$ ip community-list expanded c132 permit 90 ^65000:3_0:221_0:89$ ip community-list expanded c132 permit 91 ^65000:3_0:222_0:90$ ip community-list expanded c132 permit 92 ^65000:3_0:223_0:91$ ip community-list expanded c132 permit 93 ^65000:3_0:224_0:92$ ip community-list expanded c132 permit 94 ^65000:3_0:225_0:93$ ip community-list expanded c132 permit 95 ^65000:3_0:226_0:94$ ip community-list expanded c132 permit 96 ^65000:3_0:227_0:95$ ip community-list expanded c132 permit 97 ^65000:3_0:228_0:96$ ip community-list expanded c132 permit 98 ^65000:3_0:229_0:97$ ip community-list expanded c132 permit 99 ^65000:3_0:230_0:98$ ip community-list expanded c132 permit 100 ^65000:3_0:231_0:99$ ip community-list expanded c132 permit 101 ^65000:3_0:232_0:100$ ip community-list expanded c132 permit 102 ^65000:3_0:233_0:101$ ip community-list expanded c132 permit 103 ^65000:3_0:234_0:102$ ip community-list expanded c132 permit 104 ^65000:3_0:235_0:103$ ip community-list expanded c132 permit 105 ^65000:3_0:236_0:104$ ip community-list expanded c132 permit 106 ^65000:3_0:237_0:105$ ip community-list expanded c132 permit 107 ^65000:3_0:238_0:106$ ip community-list expanded c132 permit 108 ^65000:3_0:239_0:107$ ip community-list expanded c132 permit 109 ^65000:3_0:240_0:108$ ip community-list expanded c132 permit 110 ^65000:3_0:241_0:109$ ip community-list expanded c132 permit 111 ^65000:3_0:242_0:110$ ip community-list expanded c132 permit 112 ^65000:3_0:243_0:111$ ip community-list expanded c132 permit 113 ^65000:3_0:244_0:112$ ip community-list expanded c132 permit 114 ^65000:3_0:245_0:113$ ip community-list expanded c132 permit 115 ^65000:3_0:246_0:114$ ip community-list expanded c132 permit 116 ^65000:3_0:247_0:115$ ip community-list expanded c132 permit 117 ^65000:3_0:248_0:116$ ip community-list expanded c132 permit 118 ^65000:3_0:249_0:117$ ip community-list expanded c132 permit 119 ^65000:3_0:250_0:118$ ip community-list expanded c132 permit 120 ^65000:3_0:251_0:119$ ip community-list expanded c132 permit 121 ^65000:3_0:252_0:120$ ip community-list expanded c132 permit 122 ^65000:3_0:253_0:121$ ip community-list expanded c132 permit 123 ^65000:3_0:254_0:122$ ip community-list expanded c132 permit 124 ^65000:3_0:255_0:123$ ip community-list expanded c132 permit 125 ^65000:3_0:256_0:124$ route-map calculator permit 20254 match community 1_1_131 2_1_132 2_2_66 1_2_130 2_3_44 set community 0:132 route-map calculator permit 20255 match community 1_3_129 2_4_33 1_4_128 1_5_127 2_6_22 set community 0:132 route-map calculator permit 20256 match community 1_6_126 1_7_125 1_8_124 1_9_123 1_10_122 set community 0:132 route-map calculator permit 20257 match community 2_11_12 1_11_121 1_12_120 1_13_119 1_14_118 set community 0:132 route-map calculator permit 20258 match community 1_15_117 1_16_116 1_17_115 1_18_114 1_19_113 set community 0:132 route-map calculator permit 20259 match community 1_20_112 1_21_111 1_22_110 1_23_109 1_24_108 set community 0:132 route-map calculator permit 20260 match community 1_25_107 1_26_106 1_27_105 1_28_104 1_29_103 set community 0:132 route-map calculator permit 20261 match community 1_30_102 1_31_101 1_32_100 1_33_99 1_34_98 set community 0:132 route-map calculator permit 20262 match community 1_35_97 1_36_96 1_37_95 1_38_94 1_39_93 set community 0:132 route-map calculator permit 20263 match community 1_40_92 1_41_91 1_42_90 1_43_89 1_44_88 set community 0:132 route-map calculator permit 20264 match community 1_45_87 1_46_86 1_47_85 1_48_84 1_49_83 set community 0:132 route-map calculator permit 20265 match community 1_50_82 1_51_81 1_52_80 1_53_79 1_54_78 set community 0:132 route-map calculator permit 20266 match community 1_55_77 1_56_76 1_57_75 1_58_74 1_59_73 set community 0:132 route-map calculator permit 20267 match community 1_60_72 1_61_71 1_62_70 1_63_69 1_64_68 set community 0:132 route-map calculator permit 20268 match community 1_65_67 1_66_66 c4_132_1 c3_133_1 c3_134_2 set community 0:132 route-map calculator permit 20269 match community c3_135_3 c3_136_4 c3_137_5 c3_138_6 c3_139_7 set community 0:132 route-map calculator permit 20270 match community c3_140_8 c3_141_9 c3_142_10 c3_143_11 c3_144_12 set community 0:132 route-map calculator permit 20271 match community c3_145_13 c3_146_14 c3_147_15 c3_148_16 c3_149_17 set community 0:132 route-map calculator permit 20272 match community c3_150_18 c3_151_19 c3_152_20 c3_153_21 c3_154_22 set community 0:132 route-map calculator permit 20273 match community c3_155_23 c3_156_24 c3_157_25 c3_158_26 c3_159_27 set community 0:132 route-map calculator permit 20274 match community c3_160_28 c3_161_29 c3_162_30 c3_163_31 c3_164_32 set community 0:132 route-map calculator permit 20275 match community c3_165_33 c3_166_34 c3_167_35 c3_168_36 c3_169_37 set community 0:132 route-map calculator permit 20276 match community c3_170_38 c3_171_39 c3_172_40 c3_173_41 c3_174_42 set community 0:132 route-map calculator permit 20277 match community c3_175_43 c3_176_44 c3_177_45 c3_178_46 c3_179_47 set community 0:132 route-map calculator permit 20278 match community c3_180_48 c3_181_49 c3_182_50 c3_183_51 c3_184_52 set community 0:132 route-map calculator permit 20279 match community c3_185_53 c3_186_54 c3_187_55 c3_188_56 c3_189_57 set community 0:132 route-map calculator permit 20280 match community c3_190_58 c3_191_59 c3_192_60 c3_193_61 c3_194_62 set community 0:132 route-map calculator permit 20281 match community c3_195_63 c3_196_64 c3_197_65 c3_198_66 c3_199_67 set community 0:132 route-map calculator permit 20282 match community c3_200_68 c3_201_69 c3_202_70 c3_203_71 c3_204_72 set community 0:132 route-map calculator permit 20283 match community c3_205_73 c3_206_74 c3_207_75 c3_208_76 c3_209_77 set community 0:132 route-map calculator permit 20284 match community c3_210_78 c3_211_79 c3_212_80 c3_213_81 c3_214_82 set community 0:132 route-map calculator permit 20285 match community c3_215_83 c3_216_84 c3_217_85 c3_218_86 c3_219_87 set community 0:132 route-map calculator permit 20286 match community c3_220_88 c3_221_89 c3_222_90 c3_223_91 c3_224_92 set community 0:132 route-map calculator permit 20287 match community c3_225_93 c3_226_94 c3_227_95 c3_228_96 c3_229_97 set community 0:132 route-map calculator permit 20288 match community c3_230_98 c3_231_99 c3_232_100 c3_233_101 c3_234_102 set community 0:132 route-map calculator permit 20289 match community c3_235_103 c3_236_104 c3_237_105 c3_238_106 c3_239_107 set community 0:132 route-map calculator permit 20290 match community c3_240_108 c3_241_109 c3_242_110 c3_243_111 c3_244_112 set community 0:132 route-map calculator permit 20291 match community c3_245_113 c3_246_114 c3_247_115 c3_248_116 c3_249_117 set community 0:132 route-map calculator permit 20292 match community c3_250_118 c3_251_119 c3_252_120 c3_253_121 c3_254_122 set community 0:132 route-map calculator permit 20293 match community c3_255_123 c3_256_124 set community 0:132 ip community-list standard 2_197_239 permit 65000:2 0:197 0:239 route-map calculator permit 20294 match community 2_197_239 set community 0:47083 ip community-list standard 2_35_245 permit 65000:2 0:35 0:245 ip community-list standard 2_49_175 permit 65000:2 0:49 0:175 route-map calculator permit 20295 match community 2_35_245 2_49_175 set community 0:8575 ip community-list standard 2_68_146 permit 65000:2 0:68 0:146 ip community-list standard 2_73_136 permit 65000:2 0:73 0:136 route-map calculator permit 20296 match community 2_68_146 2_73_136 set community 0:9928 ip community-list standard 2_163_196 permit 65000:2 0:163 0:196 route-map calculator permit 20297 match community 2_163_196 set community 0:31948 ip community-list standard 2_71_142 permit 65000:2 0:71 0:142 route-map calculator permit 20298 match community 2_71_142 set community 0:10082 ip community-list standard 2_185_230 permit 65000:2 0:185 0:230 route-map calculator permit 20299 match community 2_185_230 set community 0:42550 ip community-list standard 2_68_193 permit 65000:2 0:68 0:193 route-map calculator permit 20300 match community 2_68_193 set community 0:13124 ip community-list standard 2_154_158 permit 65000:2 0:154 0:158 route-map calculator permit 20301 match community 2_154_158 set community 0:24332 ip community-list standard 2_3_231 permit 65000:2 0:3 0:231 ip community-list standard 2_7_99 permit 65000:2 0:7 0:99 ip community-list standard 2_9_77 permit 65000:2 0:9 0:77 ip community-list standard 2_11_63 permit 65000:2 0:11 0:63 ip community-list standard 2_21_33 permit 65000:2 0:21 0:33 route-map calculator permit 20302 match community 2_3_231 2_7_99 2_9_77 2_11_63 2_21_33 set community 0:693 ip community-list standard 2_38_254 permit 65000:2 0:38 0:254 ip community-list standard 2_76_127 permit 65000:2 0:76 0:127 route-map calculator permit 20303 match community 2_38_254 2_76_127 set community 0:9652 ip community-list standard 2_172_240 permit 65000:2 0:172 0:240 ip community-list standard 2_192_215 permit 65000:2 0:192 0:215 route-map calculator permit 20304 match community 2_172_240 2_192_215 set community 0:41280 ip community-list standard 2_14_239 permit 65000:2 0:14 0:239 route-map calculator permit 20305 match community 2_14_239 set community 0:3346 ip community-list standard 2_54_240 permit 65000:2 0:54 0:240 ip community-list standard 2_60_216 permit 65000:2 0:60 0:216 ip community-list standard 2_72_180 permit 65000:2 0:72 0:180 ip community-list standard 2_80_162 permit 65000:2 0:80 0:162 ip community-list standard 2_81_160 permit 65000:2 0:81 0:160 ip community-list standard 2_90_144 permit 65000:2 0:90 0:144 ip community-list standard 2_96_135 permit 65000:2 0:96 0:135 ip community-list standard 2_108_120 permit 65000:2 0:108 0:120 route-map calculator permit 20306 match community 2_54_240 2_60_216 2_72_180 2_80_162 2_81_160 set community 0:12960 route-map calculator permit 20307 match community 2_90_144 2_96_135 2_108_120 set community 0:12960 ip community-list standard 2_59_253 permit 65000:2 0:59 0:253 route-map calculator permit 20308 match community 2_59_253 set community 0:14927 ip community-list standard 2_93_202 permit 65000:2 0:93 0:202 ip community-list standard 2_101_186 permit 65000:2 0:101 0:186 route-map calculator permit 20309 match community 2_93_202 2_101_186 set community 0:18786 ip community-list standard 2_163_210 permit 65000:2 0:163 0:210 route-map calculator permit 20310 match community 2_163_210 set community 0:34230 ip community-list standard 2_95_242 permit 65000:2 0:95 0:242 ip community-list standard 2_110_209 permit 65000:2 0:110 0:209 ip community-list standard 2_121_190 permit 65000:2 0:121 0:190 route-map calculator permit 20311 match community 2_95_242 2_110_209 2_121_190 set community 0:22990 ip community-list standard 2_95_95 permit 65000:2 0:95 0:95 route-map calculator permit 20312 match community 2_95_95 set community 0:9025 ip community-list standard 2_142_233 permit 65000:2 0:142 0:233 route-map calculator permit 20313 match community 2_142_233 set community 0:33086 ip community-list standard 2_155_233 permit 65000:2 0:155 0:233 route-map calculator permit 20314 match community 2_155_233 set community 0:36115 ip community-list standard 2_43_167 permit 65000:2 0:43 0:167 route-map calculator permit 20315 match community 2_43_167 set community 0:7181 ip community-list standard 2_39_245 permit 65000:2 0:39 0:245 ip community-list standard 2_49_195 permit 65000:2 0:49 0:195 ip community-list standard 2_65_147 permit 65000:2 0:65 0:147 ip community-list standard 2_91_105 permit 65000:2 0:91 0:105 route-map calculator permit 20316 match community 2_39_245 2_49_195 2_65_147 2_91_105 set community 0:9555 ip community-list standard 2_122_139 permit 65000:2 0:122 0:139 route-map calculator permit 20317 match community 2_122_139 set community 0:16958 ip community-list standard 2_85_157 permit 65000:2 0:85 0:157 route-map calculator permit 20318 match community 2_85_157 set community 0:13345 ip community-list standard 2_180_246 permit 65000:2 0:180 0:246 ip community-list standard 2_205_216 permit 65000:2 0:205 0:216 route-map calculator permit 20319 match community 2_180_246 2_205_216 set community 0:44280 ip community-list standard 2_129_221 permit 65000:2 0:129 0:221 route-map calculator permit 20320 match community 2_129_221 set community 0:28509 ip community-list standard 2_229_252 permit 65000:2 0:229 0:252 route-map calculator permit 20321 match community 2_229_252 set community 0:57708 ip community-list standard 2_50_203 permit 65000:2 0:50 0:203 ip community-list standard 2_58_175 permit 65000:2 0:58 0:175 ip community-list standard 2_70_145 permit 65000:2 0:70 0:145 route-map calculator permit 20322 match community 2_50_203 2_58_175 2_70_145 set community 0:10150 ip community-list standard 2_173_208 permit 65000:2 0:173 0:208 route-map calculator permit 20323 match community 2_173_208 set community 0:35984 ip community-list standard 2_77_256 permit 65000:2 0:77 0:256 ip community-list standard 2_88_224 permit 65000:2 0:88 0:224 ip community-list standard 2_112_176 permit 65000:2 0:112 0:176 ip community-list standard 2_128_154 permit 65000:2 0:128 0:154 route-map calculator permit 20324 match community 2_77_256 2_88_224 2_112_176 2_128_154 set community 0:19712 ip community-list standard 2_178_237 permit 65000:2 0:178 0:237 route-map calculator permit 20325 match community 2_178_237 set community 0:42186 ip community-list standard 2_62_215 permit 65000:2 0:62 0:215 ip community-list standard 2_86_155 permit 65000:2 0:86 0:155 route-map calculator permit 20326 match community 2_62_215 2_86_155 set community 0:13330 ip community-list standard 2_25_183 permit 65000:2 0:25 0:183 ip community-list standard 2_61_75 permit 65000:2 0:61 0:75 route-map calculator permit 20327 match community 2_25_183 2_61_75 set community 0:4575 ip community-list standard 2_16_194 permit 65000:2 0:16 0:194 ip community-list standard 2_32_97 permit 65000:2 0:32 0:97 route-map calculator permit 20328 match community 2_16_194 2_32_97 set community 0:3104 ip community-list standard 2_153_212 permit 65000:2 0:153 0:212 ip community-list standard 2_159_204 permit 65000:2 0:159 0:204 route-map calculator permit 20329 match community 2_153_212 2_159_204 set community 0:32436 ip community-list standard 2_143_215 permit 65000:2 0:143 0:215 route-map calculator permit 20330 match community 2_143_215 set community 0:30745 ip community-list standard 2_154_237 permit 65000:2 0:154 0:237 ip community-list standard 2_158_231 permit 65000:2 0:158 0:231 route-map calculator permit 20331 match community 2_154_237 2_158_231 set community 0:36498 ip community-list standard 2_109_153 permit 65000:2 0:109 0:153 route-map calculator permit 20332 match community 2_109_153 set community 0:16677 ip community-list standard 2_33_222 permit 65000:2 0:33 0:222 ip community-list standard 2_37_198 permit 65000:2 0:37 0:198 ip community-list standard 2_66_111 permit 65000:2 0:66 0:111 ip community-list standard 2_74_99 permit 65000:2 0:74 0:99 route-map calculator permit 20333 match community 2_33_222 2_37_198 2_66_111 2_74_99 set community 0:7326 ip community-list standard 2_133_149 permit 65000:2 0:133 0:149 route-map calculator permit 20334 match community 2_133_149 set community 0:19817 ip community-list standard 2_40_242 permit 65000:2 0:40 0:242 ip community-list standard 2_44_220 permit 65000:2 0:44 0:220 ip community-list standard 2_55_176 permit 65000:2 0:55 0:176 ip community-list standard 2_80_121 permit 65000:2 0:80 0:121 ip community-list standard 2_88_110 permit 65000:2 0:88 0:110 route-map calculator permit 20335 match community 2_40_242 2_44_220 2_55_176 2_80_121 2_88_110 set community 0:9680 ip community-list standard 2_62_149 permit 65000:2 0:62 0:149 route-map calculator permit 20336 match community 2_62_149 set community 0:9238 ip community-list standard 2_55_247 permit 65000:2 0:55 0:247 ip community-list standard 2_65_209 permit 65000:2 0:65 0:209 ip community-list standard 2_95_143 permit 65000:2 0:95 0:143 route-map calculator permit 20337 match community 2_55_247 2_65_209 2_95_143 set community 0:13585 ip community-list standard 2_177_185 permit 65000:2 0:177 0:185 route-map calculator permit 20338 match community 2_177_185 set community 0:32745 ip community-list standard 2_139_182 permit 65000:2 0:139 0:182 route-map calculator permit 20339 match community 2_139_182 set community 0:25298 ip community-list standard 2_213_215 permit 65000:2 0:213 0:215 route-map calculator permit 20340 match community 2_213_215 set community 0:45795 ip community-list standard 2_184_230 permit 65000:2 0:184 0:230 route-map calculator permit 20341 match community 2_184_230 set community 0:42320 ip community-list standard 1_1_167 permit 65000:1 0:1 0:167 ip community-list standard 2_1_168 permit 65000:2 0:1 0:168 ip community-list standard 2_2_84 permit 65000:2 0:2 0:84 ip community-list standard 1_2_166 permit 65000:1 0:2 0:166 ip community-list standard 2_3_56 permit 65000:2 0:3 0:56 ip community-list standard 1_3_165 permit 65000:1 0:3 0:165 ip community-list standard 2_4_42 permit 65000:2 0:4 0:42 ip community-list standard 1_4_164 permit 65000:1 0:4 0:164 ip community-list standard 1_5_163 permit 65000:1 0:5 0:163 ip community-list standard 2_6_28 permit 65000:2 0:6 0:28 ip community-list standard 1_6_162 permit 65000:1 0:6 0:162 ip community-list standard 2_7_24 permit 65000:2 0:7 0:24 ip community-list standard 1_7_161 permit 65000:1 0:7 0:161 ip community-list standard 2_8_21 permit 65000:2 0:8 0:21 ip community-list standard 1_8_160 permit 65000:1 0:8 0:160 ip community-list standard 1_9_159 permit 65000:1 0:9 0:159 ip community-list standard 1_10_158 permit 65000:1 0:10 0:158 ip community-list standard 1_11_157 permit 65000:1 0:11 0:157 ip community-list standard 2_12_14 permit 65000:2 0:12 0:14 ip community-list standard 1_12_156 permit 65000:1 0:12 0:156 ip community-list standard 1_13_155 permit 65000:1 0:13 0:155 ip community-list standard 1_14_154 permit 65000:1 0:14 0:154 ip community-list standard 1_15_153 permit 65000:1 0:15 0:153 ip community-list standard 1_16_152 permit 65000:1 0:16 0:152 ip community-list standard 1_17_151 permit 65000:1 0:17 0:151 ip community-list standard 1_18_150 permit 65000:1 0:18 0:150 ip community-list standard 1_19_149 permit 65000:1 0:19 0:149 ip community-list standard 1_20_148 permit 65000:1 0:20 0:148 ip community-list standard 1_21_147 permit 65000:1 0:21 0:147 ip community-list standard 1_22_146 permit 65000:1 0:22 0:146 ip community-list standard 1_23_145 permit 65000:1 0:23 0:145 ip community-list standard 1_24_144 permit 65000:1 0:24 0:144 ip community-list standard 1_25_143 permit 65000:1 0:25 0:143 ip community-list standard 1_26_142 permit 65000:1 0:26 0:142 ip community-list standard 1_27_141 permit 65000:1 0:27 0:141 ip community-list standard 1_28_140 permit 65000:1 0:28 0:140 ip community-list standard 1_29_139 permit 65000:1 0:29 0:139 ip community-list standard 1_30_138 permit 65000:1 0:30 0:138 ip community-list standard 1_31_137 permit 65000:1 0:31 0:137 ip community-list standard 1_32_136 permit 65000:1 0:32 0:136 ip community-list standard 1_33_135 permit 65000:1 0:33 0:135 ip community-list standard 1_34_134 permit 65000:1 0:34 0:134 ip community-list standard 1_35_133 permit 65000:1 0:35 0:133 ip community-list standard 1_36_132 permit 65000:1 0:36 0:132 ip community-list standard 1_37_131 permit 65000:1 0:37 0:131 ip community-list standard 1_38_130 permit 65000:1 0:38 0:130 ip community-list standard 1_39_129 permit 65000:1 0:39 0:129 ip community-list standard 1_40_128 permit 65000:1 0:40 0:128 ip community-list standard 1_41_127 permit 65000:1 0:41 0:127 ip community-list standard 1_42_126 permit 65000:1 0:42 0:126 ip community-list standard 1_43_125 permit 65000:1 0:43 0:125 ip community-list standard 1_44_124 permit 65000:1 0:44 0:124 ip community-list standard 1_45_123 permit 65000:1 0:45 0:123 ip community-list standard 1_46_122 permit 65000:1 0:46 0:122 ip community-list standard 1_47_121 permit 65000:1 0:47 0:121 ip community-list standard 1_48_120 permit 65000:1 0:48 0:120 ip community-list standard 1_49_119 permit 65000:1 0:49 0:119 ip community-list standard 1_50_118 permit 65000:1 0:50 0:118 ip community-list standard 1_51_117 permit 65000:1 0:51 0:117 ip community-list standard 1_52_116 permit 65000:1 0:52 0:116 ip community-list standard 1_53_115 permit 65000:1 0:53 0:115 ip community-list standard 1_54_114 permit 65000:1 0:54 0:114 ip community-list standard 1_55_113 permit 65000:1 0:55 0:113 ip community-list standard 1_56_112 permit 65000:1 0:56 0:112 ip community-list standard 1_57_111 permit 65000:1 0:57 0:111 ip community-list standard 1_58_110 permit 65000:1 0:58 0:110 ip community-list standard 1_59_109 permit 65000:1 0:59 0:109 ip community-list standard 1_60_108 permit 65000:1 0:60 0:108 ip community-list standard 1_61_107 permit 65000:1 0:61 0:107 ip community-list standard 1_62_106 permit 65000:1 0:62 0:106 ip community-list standard 1_63_105 permit 65000:1 0:63 0:105 ip community-list standard 1_64_104 permit 65000:1 0:64 0:104 ip community-list standard 1_65_103 permit 65000:1 0:65 0:103 ip community-list standard 1_66_102 permit 65000:1 0:66 0:102 ip community-list standard 1_67_101 permit 65000:1 0:67 0:101 ip community-list standard 1_68_100 permit 65000:1 0:68 0:100 ip community-list standard 1_69_99 permit 65000:1 0:69 0:99 ip community-list standard 1_70_98 permit 65000:1 0:70 0:98 ip community-list standard 1_71_97 permit 65000:1 0:71 0:97 ip community-list standard 1_72_96 permit 65000:1 0:72 0:96 ip community-list standard 1_73_95 permit 65000:1 0:73 0:95 ip community-list standard 1_74_94 permit 65000:1 0:74 0:94 ip community-list standard 1_75_93 permit 65000:1 0:75 0:93 ip community-list standard 1_76_92 permit 65000:1 0:76 0:92 ip community-list standard 1_77_91 permit 65000:1 0:77 0:91 ip community-list standard 1_78_90 permit 65000:1 0:78 0:90 ip community-list standard 1_79_89 permit 65000:1 0:79 0:89 ip community-list standard 1_80_88 permit 65000:1 0:80 0:88 ip community-list standard 1_81_87 permit 65000:1 0:81 0:87 ip community-list standard 1_82_86 permit 65000:1 0:82 0:86 ip community-list standard 1_83_85 permit 65000:1 0:83 0:85 ip community-list standard 1_84_84 permit 65000:1 0:84 0:84 ip community-list expanded c168 permit 1 ^65000:4_0:168_0:1$ ip community-list expanded c168 permit 2 ^65000:3_0:169_0:1$ ip community-list expanded c168 permit 3 ^65000:3_0:170_0:2$ ip community-list expanded c168 permit 4 ^65000:3_0:171_0:3$ ip community-list expanded c168 permit 5 ^65000:3_0:172_0:4$ ip community-list expanded c168 permit 6 ^65000:3_0:173_0:5$ ip community-list expanded c168 permit 7 ^65000:3_0:174_0:6$ ip community-list expanded c168 permit 8 ^65000:3_0:175_0:7$ ip community-list expanded c168 permit 9 ^65000:3_0:176_0:8$ ip community-list expanded c168 permit 10 ^65000:3_0:177_0:9$ ip community-list expanded c168 permit 11 ^65000:3_0:178_0:10$ ip community-list expanded c168 permit 12 ^65000:3_0:179_0:11$ ip community-list expanded c168 permit 13 ^65000:3_0:180_0:12$ ip community-list expanded c168 permit 14 ^65000:3_0:181_0:13$ ip community-list expanded c168 permit 15 ^65000:3_0:182_0:14$ ip community-list expanded c168 permit 16 ^65000:3_0:183_0:15$ ip community-list expanded c168 permit 17 ^65000:3_0:184_0:16$ ip community-list expanded c168 permit 18 ^65000:3_0:185_0:17$ ip community-list expanded c168 permit 19 ^65000:3_0:186_0:18$ ip community-list expanded c168 permit 20 ^65000:3_0:187_0:19$ ip community-list expanded c168 permit 21 ^65000:3_0:188_0:20$ ip community-list expanded c168 permit 22 ^65000:3_0:189_0:21$ ip community-list expanded c168 permit 23 ^65000:3_0:190_0:22$ ip community-list expanded c168 permit 24 ^65000:3_0:191_0:23$ ip community-list expanded c168 permit 25 ^65000:3_0:192_0:24$ ip community-list expanded c168 permit 26 ^65000:3_0:193_0:25$ ip community-list expanded c168 permit 27 ^65000:3_0:194_0:26$ ip community-list expanded c168 permit 28 ^65000:3_0:195_0:27$ ip community-list expanded c168 permit 29 ^65000:3_0:196_0:28$ ip community-list expanded c168 permit 30 ^65000:3_0:197_0:29$ ip community-list expanded c168 permit 31 ^65000:3_0:198_0:30$ ip community-list expanded c168 permit 32 ^65000:3_0:199_0:31$ ip community-list expanded c168 permit 33 ^65000:3_0:200_0:32$ ip community-list expanded c168 permit 34 ^65000:3_0:201_0:33$ ip community-list expanded c168 permit 35 ^65000:3_0:202_0:34$ ip community-list expanded c168 permit 36 ^65000:3_0:203_0:35$ ip community-list expanded c168 permit 37 ^65000:3_0:204_0:36$ ip community-list expanded c168 permit 38 ^65000:3_0:205_0:37$ ip community-list expanded c168 permit 39 ^65000:3_0:206_0:38$ ip community-list expanded c168 permit 40 ^65000:3_0:207_0:39$ ip community-list expanded c168 permit 41 ^65000:3_0:208_0:40$ ip community-list expanded c168 permit 42 ^65000:3_0:209_0:41$ ip community-list expanded c168 permit 43 ^65000:3_0:210_0:42$ ip community-list expanded c168 permit 44 ^65000:3_0:211_0:43$ ip community-list expanded c168 permit 45 ^65000:3_0:212_0:44$ ip community-list expanded c168 permit 46 ^65000:3_0:213_0:45$ ip community-list expanded c168 permit 47 ^65000:3_0:214_0:46$ ip community-list expanded c168 permit 48 ^65000:3_0:215_0:47$ ip community-list expanded c168 permit 49 ^65000:3_0:216_0:48$ ip community-list expanded c168 permit 50 ^65000:3_0:217_0:49$ ip community-list expanded c168 permit 51 ^65000:3_0:218_0:50$ ip community-list expanded c168 permit 52 ^65000:3_0:219_0:51$ ip community-list expanded c168 permit 53 ^65000:3_0:220_0:52$ ip community-list expanded c168 permit 54 ^65000:3_0:221_0:53$ ip community-list expanded c168 permit 55 ^65000:3_0:222_0:54$ ip community-list expanded c168 permit 56 ^65000:3_0:223_0:55$ ip community-list expanded c168 permit 57 ^65000:3_0:224_0:56$ ip community-list expanded c168 permit 58 ^65000:3_0:225_0:57$ ip community-list expanded c168 permit 59 ^65000:3_0:226_0:58$ ip community-list expanded c168 permit 60 ^65000:3_0:227_0:59$ ip community-list expanded c168 permit 61 ^65000:3_0:228_0:60$ ip community-list expanded c168 permit 62 ^65000:3_0:229_0:61$ ip community-list expanded c168 permit 63 ^65000:3_0:230_0:62$ ip community-list expanded c168 permit 64 ^65000:3_0:231_0:63$ ip community-list expanded c168 permit 65 ^65000:3_0:232_0:64$ ip community-list expanded c168 permit 66 ^65000:3_0:233_0:65$ ip community-list expanded c168 permit 67 ^65000:3_0:234_0:66$ ip community-list expanded c168 permit 68 ^65000:3_0:235_0:67$ ip community-list expanded c168 permit 69 ^65000:3_0:236_0:68$ ip community-list expanded c168 permit 70 ^65000:3_0:237_0:69$ ip community-list expanded c168 permit 71 ^65000:3_0:238_0:70$ ip community-list expanded c168 permit 72 ^65000:3_0:239_0:71$ ip community-list expanded c168 permit 73 ^65000:3_0:240_0:72$ ip community-list expanded c168 permit 74 ^65000:3_0:241_0:73$ ip community-list expanded c168 permit 75 ^65000:3_0:242_0:74$ ip community-list expanded c168 permit 76 ^65000:3_0:243_0:75$ ip community-list expanded c168 permit 77 ^65000:3_0:244_0:76$ ip community-list expanded c168 permit 78 ^65000:3_0:245_0:77$ ip community-list expanded c168 permit 79 ^65000:3_0:246_0:78$ ip community-list expanded c168 permit 80 ^65000:3_0:247_0:79$ ip community-list expanded c168 permit 81 ^65000:3_0:248_0:80$ ip community-list expanded c168 permit 82 ^65000:3_0:249_0:81$ ip community-list expanded c168 permit 83 ^65000:3_0:250_0:82$ ip community-list expanded c168 permit 84 ^65000:3_0:251_0:83$ ip community-list expanded c168 permit 85 ^65000:3_0:252_0:84$ ip community-list expanded c168 permit 86 ^65000:3_0:253_0:85$ ip community-list expanded c168 permit 87 ^65000:3_0:254_0:86$ ip community-list expanded c168 permit 88 ^65000:3_0:255_0:87$ ip community-list expanded c168 permit 89 ^65000:3_0:256_0:88$ route-map calculator permit 20342 match community 1_1_167 2_1_168 2_2_84 1_2_166 2_3_56 set community 0:168 route-map calculator permit 20343 match community 1_3_165 2_4_42 1_4_164 1_5_163 2_6_28 set community 0:168 route-map calculator permit 20344 match community 1_6_162 2_7_24 1_7_161 2_8_21 1_8_160 set community 0:168 route-map calculator permit 20345 match community 1_9_159 1_10_158 1_11_157 2_12_14 1_12_156 set community 0:168 route-map calculator permit 20346 match community 1_13_155 1_14_154 1_15_153 1_16_152 1_17_151 set community 0:168 route-map calculator permit 20347 match community 1_18_150 1_19_149 1_20_148 1_21_147 1_22_146 set community 0:168 route-map calculator permit 20348 match community 1_23_145 1_24_144 1_25_143 1_26_142 1_27_141 set community 0:168 route-map calculator permit 20349 match community 1_28_140 1_29_139 1_30_138 1_31_137 1_32_136 set community 0:168 route-map calculator permit 20350 match community 1_33_135 1_34_134 1_35_133 1_36_132 1_37_131 set community 0:168 route-map calculator permit 20351 match community 1_38_130 1_39_129 1_40_128 1_41_127 1_42_126 set community 0:168 route-map calculator permit 20352 match community 1_43_125 1_44_124 1_45_123 1_46_122 1_47_121 set community 0:168 route-map calculator permit 20353 match community 1_48_120 1_49_119 1_50_118 1_51_117 1_52_116 set community 0:168 route-map calculator permit 20354 match community 1_53_115 1_54_114 1_55_113 1_56_112 1_57_111 set community 0:168 route-map calculator permit 20355 match community 1_58_110 1_59_109 1_60_108 1_61_107 1_62_106 set community 0:168 route-map calculator permit 20356 match community 1_63_105 1_64_104 1_65_103 1_66_102 1_67_101 set community 0:168 route-map calculator permit 20357 match community 1_68_100 1_69_99 1_70_98 1_71_97 1_72_96 set community 0:168 route-map calculator permit 20358 match community 1_73_95 1_74_94 1_75_93 1_76_92 1_77_91 set community 0:168 route-map calculator permit 20359 match community 1_78_90 1_79_89 1_80_88 1_81_87 1_82_86 set community 0:168 route-map calculator permit 20360 match community 1_83_85 1_84_84 c4_168_1 c3_169_1 c3_170_2 set community 0:168 route-map calculator permit 20361 match community c3_171_3 c3_172_4 c3_173_5 c3_174_6 c3_175_7 set community 0:168 route-map calculator permit 20362 match community c3_176_8 c3_177_9 c3_178_10 c3_179_11 c3_180_12 set community 0:168 route-map calculator permit 20363 match community c3_181_13 c3_182_14 c3_183_15 c3_184_16 c3_185_17 set community 0:168 route-map calculator permit 20364 match community c3_186_18 c3_187_19 c3_188_20 c3_189_21 c3_190_22 set community 0:168 route-map calculator permit 20365 match community c3_191_23 c3_192_24 c3_193_25 c3_194_26 c3_195_27 set community 0:168 route-map calculator permit 20366 match community c3_196_28 c3_197_29 c3_198_30 c3_199_31 c3_200_32 set community 0:168 route-map calculator permit 20367 match community c3_201_33 c3_202_34 c3_203_35 c3_204_36 c3_205_37 set community 0:168 route-map calculator permit 20368 match community c3_206_38 c3_207_39 c3_208_40 c3_209_41 c3_210_42 set community 0:168 route-map calculator permit 20369 match community c3_211_43 c3_212_44 c3_213_45 c3_214_46 c3_215_47 set community 0:168 route-map calculator permit 20370 match community c3_216_48 c3_217_49 c3_218_50 c3_219_51 c3_220_52 set community 0:168 route-map calculator permit 20371 match community c3_221_53 c3_222_54 c3_223_55 c3_224_56 c3_225_57 set community 0:168 route-map calculator permit 20372 match community c3_226_58 c3_227_59 c3_228_60 c3_229_61 c3_230_62 set community 0:168 route-map calculator permit 20373 match community c3_231_63 c3_232_64 c3_233_65 c3_234_66 c3_235_67 set community 0:168 route-map calculator permit 20374 match community c3_236_68 c3_237_69 c3_238_70 c3_239_71 c3_240_72 set community 0:168 route-map calculator permit 20375 match community c3_241_73 c3_242_74 c3_243_75 c3_244_76 c3_245_77 set community 0:168 route-map calculator permit 20376 match community c3_246_78 c3_247_79 c3_248_80 c3_249_81 c3_250_82 set community 0:168 route-map calculator permit 20377 match community c3_251_83 c3_252_84 c3_253_85 c3_254_86 c3_255_87 set community 0:168 route-map calculator permit 20378 match community c3_256_88 set community 0:168 ip community-list standard 2_122_199 permit 65000:2 0:122 0:199 route-map calculator permit 20379 match community 2_122_199 set community 0:24278 ip community-list standard 2_31_47 permit 65000:2 0:31 0:47 route-map calculator permit 20380 match community 2_31_47 set community 0:1457 ip community-list standard 2_197_215 permit 65000:2 0:197 0:215 route-map calculator permit 20381 match community 2_197_215 set community 0:42355 ip community-list standard 2_102_237 permit 65000:2 0:102 0:237 ip community-list standard 2_153_158 permit 65000:2 0:153 0:158 route-map calculator permit 20382 match community 2_102_237 2_153_158 set community 0:24174 ip community-list standard 2_160_178 permit 65000:2 0:160 0:178 route-map calculator permit 20383 match community 2_160_178 set community 0:28480 ip community-list standard 2_31_243 permit 65000:2 0:31 0:243 ip community-list standard 2_81_93 permit 65000:2 0:81 0:93 route-map calculator permit 20384 match community 2_31_243 2_81_93 set community 0:7533 ip community-list standard 2_186_239 permit 65000:2 0:186 0:239 route-map calculator permit 20385 match community 2_186_239 set community 0:44454 ip community-list standard 2_119_211 permit 65000:2 0:119 0:211 route-map calculator permit 20386 match community 2_119_211 set community 0:25109 ip community-list standard 2_87_174 permit 65000:2 0:87 0:174 route-map calculator permit 20387 match community 2_87_174 set community 0:15138 ip community-list standard 2_79_182 permit 65000:2 0:79 0:182 ip community-list standard 2_91_158 permit 65000:2 0:91 0:158 route-map calculator permit 20388 match community 2_79_182 2_91_158 set community 0:14378 ip community-list standard 2_195_250 permit 65000:2 0:195 0:250 route-map calculator permit 20389 match community 2_195_250 set community 0:48750 ip community-list standard 1_51_256 permit 65000:1 0:51 0:256 ip community-list standard 1_52_255 permit 65000:1 0:52 0:255 ip community-list standard 1_53_254 permit 65000:1 0:53 0:254 ip community-list standard 1_54_253 permit 65000:1 0:54 0:253 ip community-list standard 1_55_252 permit 65000:1 0:55 0:252 ip community-list standard 1_56_251 permit 65000:1 0:56 0:251 ip community-list standard 1_57_250 permit 65000:1 0:57 0:250 ip community-list standard 1_58_249 permit 65000:1 0:58 0:249 ip community-list standard 1_59_248 permit 65000:1 0:59 0:248 ip community-list standard 1_60_247 permit 65000:1 0:60 0:247 ip community-list standard 1_61_246 permit 65000:1 0:61 0:246 ip community-list standard 1_62_245 permit 65000:1 0:62 0:245 ip community-list standard 1_63_244 permit 65000:1 0:63 0:244 ip community-list standard 1_64_243 permit 65000:1 0:64 0:243 ip community-list standard 1_65_242 permit 65000:1 0:65 0:242 ip community-list standard 1_66_241 permit 65000:1 0:66 0:241 ip community-list standard 1_67_240 permit 65000:1 0:67 0:240 ip community-list standard 1_68_239 permit 65000:1 0:68 0:239 ip community-list standard 1_69_238 permit 65000:1 0:69 0:238 ip community-list standard 1_70_237 permit 65000:1 0:70 0:237 ip community-list standard 1_71_236 permit 65000:1 0:71 0:236 ip community-list standard 1_72_235 permit 65000:1 0:72 0:235 ip community-list standard 1_73_234 permit 65000:1 0:73 0:234 ip community-list standard 1_74_233 permit 65000:1 0:74 0:233 ip community-list standard 1_75_232 permit 65000:1 0:75 0:232 ip community-list standard 1_76_231 permit 65000:1 0:76 0:231 ip community-list standard 1_77_230 permit 65000:1 0:77 0:230 ip community-list standard 1_78_229 permit 65000:1 0:78 0:229 ip community-list standard 1_79_228 permit 65000:1 0:79 0:228 ip community-list standard 1_80_227 permit 65000:1 0:80 0:227 ip community-list standard 1_81_226 permit 65000:1 0:81 0:226 ip community-list standard 1_82_225 permit 65000:1 0:82 0:225 ip community-list standard 1_83_224 permit 65000:1 0:83 0:224 ip community-list standard 1_84_223 permit 65000:1 0:84 0:223 ip community-list standard 1_85_222 permit 65000:1 0:85 0:222 ip community-list standard 1_86_221 permit 65000:1 0:86 0:221 ip community-list standard 1_87_220 permit 65000:1 0:87 0:220 ip community-list standard 1_88_219 permit 65000:1 0:88 0:219 ip community-list standard 1_89_218 permit 65000:1 0:89 0:218 ip community-list standard 1_90_217 permit 65000:1 0:90 0:217 ip community-list standard 1_91_216 permit 65000:1 0:91 0:216 ip community-list standard 1_92_215 permit 65000:1 0:92 0:215 ip community-list standard 1_93_214 permit 65000:1 0:93 0:214 ip community-list standard 1_94_213 permit 65000:1 0:94 0:213 ip community-list standard 1_95_212 permit 65000:1 0:95 0:212 ip community-list standard 1_96_211 permit 65000:1 0:96 0:211 ip community-list standard 1_97_210 permit 65000:1 0:97 0:210 ip community-list standard 1_98_209 permit 65000:1 0:98 0:209 ip community-list standard 1_99_208 permit 65000:1 0:99 0:208 ip community-list standard 1_100_207 permit 65000:1 0:100 0:207 ip community-list standard 1_101_206 permit 65000:1 0:101 0:206 ip community-list standard 1_102_205 permit 65000:1 0:102 0:205 ip community-list standard 1_103_204 permit 65000:1 0:103 0:204 ip community-list standard 1_104_203 permit 65000:1 0:104 0:203 ip community-list standard 1_105_202 permit 65000:1 0:105 0:202 ip community-list standard 1_106_201 permit 65000:1 0:106 0:201 ip community-list standard 1_107_200 permit 65000:1 0:107 0:200 ip community-list standard 1_108_199 permit 65000:1 0:108 0:199 ip community-list standard 1_109_198 permit 65000:1 0:109 0:198 ip community-list standard 1_110_197 permit 65000:1 0:110 0:197 ip community-list standard 1_111_196 permit 65000:1 0:111 0:196 ip community-list standard 1_112_195 permit 65000:1 0:112 0:195 ip community-list standard 1_113_194 permit 65000:1 0:113 0:194 ip community-list standard 1_114_193 permit 65000:1 0:114 0:193 ip community-list standard 1_115_192 permit 65000:1 0:115 0:192 ip community-list standard 1_116_191 permit 65000:1 0:116 0:191 ip community-list standard 1_117_190 permit 65000:1 0:117 0:190 ip community-list standard 1_118_189 permit 65000:1 0:118 0:189 ip community-list standard 1_119_188 permit 65000:1 0:119 0:188 ip community-list standard 1_120_187 permit 65000:1 0:120 0:187 ip community-list standard 1_121_186 permit 65000:1 0:121 0:186 ip community-list standard 1_122_185 permit 65000:1 0:122 0:185 ip community-list standard 1_123_184 permit 65000:1 0:123 0:184 ip community-list standard 1_124_183 permit 65000:1 0:124 0:183 ip community-list standard 1_125_182 permit 65000:1 0:125 0:182 ip community-list standard 1_126_181 permit 65000:1 0:126 0:181 ip community-list standard 1_127_180 permit 65000:1 0:127 0:180 ip community-list standard 1_128_179 permit 65000:1 0:128 0:179 ip community-list standard 1_129_178 permit 65000:1 0:129 0:178 ip community-list standard 1_130_177 permit 65000:1 0:130 0:177 ip community-list standard 1_131_176 permit 65000:1 0:131 0:176 ip community-list standard 1_132_175 permit 65000:1 0:132 0:175 ip community-list standard 1_133_174 permit 65000:1 0:133 0:174 ip community-list standard 1_134_173 permit 65000:1 0:134 0:173 ip community-list standard 1_135_172 permit 65000:1 0:135 0:172 ip community-list standard 1_136_171 permit 65000:1 0:136 0:171 ip community-list standard 1_137_170 permit 65000:1 0:137 0:170 ip community-list standard 1_138_169 permit 65000:1 0:138 0:169 ip community-list standard 1_139_168 permit 65000:1 0:139 0:168 ip community-list standard 1_140_167 permit 65000:1 0:140 0:167 ip community-list standard 1_141_166 permit 65000:1 0:141 0:166 ip community-list standard 1_142_165 permit 65000:1 0:142 0:165 ip community-list standard 1_143_164 permit 65000:1 0:143 0:164 ip community-list standard 1_144_163 permit 65000:1 0:144 0:163 ip community-list standard 1_145_162 permit 65000:1 0:145 0:162 ip community-list standard 1_146_161 permit 65000:1 0:146 0:161 ip community-list standard 1_147_160 permit 65000:1 0:147 0:160 ip community-list standard 1_148_159 permit 65000:1 0:148 0:159 ip community-list standard 1_149_158 permit 65000:1 0:149 0:158 ip community-list standard 1_150_157 permit 65000:1 0:150 0:157 ip community-list standard 1_151_156 permit 65000:1 0:151 0:156 ip community-list standard 1_152_155 permit 65000:1 0:152 0:155 ip community-list standard 1_153_154 permit 65000:1 0:153 0:154 route-map calculator permit 20390 match community 1_51_256 1_52_255 1_53_254 1_54_253 1_55_252 set community 0:307 route-map calculator permit 20391 match community 1_56_251 1_57_250 1_58_249 1_59_248 1_60_247 set community 0:307 route-map calculator permit 20392 match community 1_61_246 1_62_245 1_63_244 1_64_243 1_65_242 set community 0:307 route-map calculator permit 20393 match community 1_66_241 1_67_240 1_68_239 1_69_238 1_70_237 set community 0:307 route-map calculator permit 20394 match community 1_71_236 1_72_235 1_73_234 1_74_233 1_75_232 set community 0:307 route-map calculator permit 20395 match community 1_76_231 1_77_230 1_78_229 1_79_228 1_80_227 set community 0:307 route-map calculator permit 20396 match community 1_81_226 1_82_225 1_83_224 1_84_223 1_85_222 set community 0:307 route-map calculator permit 20397 match community 1_86_221 1_87_220 1_88_219 1_89_218 1_90_217 set community 0:307 route-map calculator permit 20398 match community 1_91_216 1_92_215 1_93_214 1_94_213 1_95_212 set community 0:307 route-map calculator permit 20399 match community 1_96_211 1_97_210 1_98_209 1_99_208 1_100_207 set community 0:307 route-map calculator permit 20400 match community 1_101_206 1_102_205 1_103_204 1_104_203 1_105_202 set community 0:307 route-map calculator permit 20401 match community 1_106_201 1_107_200 1_108_199 1_109_198 1_110_197 set community 0:307 route-map calculator permit 20402 match community 1_111_196 1_112_195 1_113_194 1_114_193 1_115_192 set community 0:307 route-map calculator permit 20403 match community 1_116_191 1_117_190 1_118_189 1_119_188 1_120_187 set community 0:307 route-map calculator permit 20404 match community 1_121_186 1_122_185 1_123_184 1_124_183 1_125_182 set community 0:307 route-map calculator permit 20405 match community 1_126_181 1_127_180 1_128_179 1_129_178 1_130_177 set community 0:307 route-map calculator permit 20406 match community 1_131_176 1_132_175 1_133_174 1_134_173 1_135_172 set community 0:307 route-map calculator permit 20407 match community 1_136_171 1_137_170 1_138_169 1_139_168 1_140_167 set community 0:307 route-map calculator permit 20408 match community 1_141_166 1_142_165 1_143_164 1_144_163 1_145_162 set community 0:307 route-map calculator permit 20409 match community 1_146_161 1_147_160 1_148_159 1_149_158 1_150_157 set community 0:307 route-map calculator permit 20410 match community 1_151_156 1_152_155 1_153_154 set community 0:307 ip community-list standard 2_110_221 permit 65000:2 0:110 0:221 ip community-list standard 2_130_187 permit 65000:2 0:130 0:187 ip community-list standard 2_143_170 permit 65000:2 0:143 0:170 route-map calculator permit 20411 match community 2_110_221 2_130_187 2_143_170 set community 0:24310 ip community-list standard 2_73_200 permit 65000:2 0:73 0:200 ip community-list standard 2_100_146 permit 65000:2 0:100 0:146 route-map calculator permit 20412 match community 2_73_200 2_100_146 set community 0:14600 ip community-list standard 2_3_218 permit 65000:2 0:3 0:218 ip community-list standard 2_6_109 permit 65000:2 0:6 0:109 route-map calculator permit 20413 match community 2_3_218 2_6_109 set community 0:654 ip community-list standard 2_167_214 permit 65000:2 0:167 0:214 route-map calculator permit 20414 match community 2_167_214 set community 0:35738 ip community-list standard 2_94_231 permit 65000:2 0:94 0:231 ip community-list standard 2_141_154 permit 65000:2 0:141 0:154 route-map calculator permit 20415 match community 2_94_231 2_141_154 set community 0:21714 ip community-list standard 2_27_241 permit 65000:2 0:27 0:241 route-map calculator permit 20416 match community 2_27_241 set community 0:6507 ip community-list standard 2_3_212 permit 65000:2 0:3 0:212 ip community-list standard 2_4_159 permit 65000:2 0:4 0:159 ip community-list standard 2_6_106 permit 65000:2 0:6 0:106 ip community-list standard 2_12_53 permit 65000:2 0:12 0:53 route-map calculator permit 20417 match community 2_3_212 2_4_159 2_6_106 2_12_53 set community 0:636 ip community-list standard 2_187_248 permit 65000:2 0:187 0:248 route-map calculator permit 20418 match community 2_187_248 set community 0:46376 ip community-list standard 2_3_143 permit 65000:2 0:3 0:143 ip community-list standard 2_11_39 permit 65000:2 0:11 0:39 ip community-list standard 2_13_33 permit 65000:2 0:13 0:33 ip community-list standard 1_173_256 permit 65000:1 0:173 0:256 ip community-list standard 1_174_255 permit 65000:1 0:174 0:255 ip community-list standard 1_175_254 permit 65000:1 0:175 0:254 ip community-list standard 1_176_253 permit 65000:1 0:176 0:253 ip community-list standard 1_177_252 permit 65000:1 0:177 0:252 ip community-list standard 1_178_251 permit 65000:1 0:178 0:251 ip community-list standard 1_179_250 permit 65000:1 0:179 0:250 ip community-list standard 1_180_249 permit 65000:1 0:180 0:249 ip community-list standard 1_181_248 permit 65000:1 0:181 0:248 ip community-list standard 1_182_247 permit 65000:1 0:182 0:247 ip community-list standard 1_183_246 permit 65000:1 0:183 0:246 ip community-list standard 1_184_245 permit 65000:1 0:184 0:245 ip community-list standard 1_185_244 permit 65000:1 0:185 0:244 ip community-list standard 1_186_243 permit 65000:1 0:186 0:243 ip community-list standard 1_187_242 permit 65000:1 0:187 0:242 ip community-list standard 1_188_241 permit 65000:1 0:188 0:241 ip community-list standard 1_189_240 permit 65000:1 0:189 0:240 ip community-list standard 1_190_239 permit 65000:1 0:190 0:239 ip community-list standard 1_191_238 permit 65000:1 0:191 0:238 ip community-list standard 1_192_237 permit 65000:1 0:192 0:237 ip community-list standard 1_193_236 permit 65000:1 0:193 0:236 ip community-list standard 1_194_235 permit 65000:1 0:194 0:235 ip community-list standard 1_195_234 permit 65000:1 0:195 0:234 ip community-list standard 1_196_233 permit 65000:1 0:196 0:233 ip community-list standard 1_197_232 permit 65000:1 0:197 0:232 ip community-list standard 1_198_231 permit 65000:1 0:198 0:231 ip community-list standard 1_199_230 permit 65000:1 0:199 0:230 ip community-list standard 1_200_229 permit 65000:1 0:200 0:229 ip community-list standard 1_201_228 permit 65000:1 0:201 0:228 ip community-list standard 1_202_227 permit 65000:1 0:202 0:227 ip community-list standard 1_203_226 permit 65000:1 0:203 0:226 ip community-list standard 1_204_225 permit 65000:1 0:204 0:225 ip community-list standard 1_205_224 permit 65000:1 0:205 0:224 ip community-list standard 1_206_223 permit 65000:1 0:206 0:223 ip community-list standard 1_207_222 permit 65000:1 0:207 0:222 ip community-list standard 1_208_221 permit 65000:1 0:208 0:221 ip community-list standard 1_209_220 permit 65000:1 0:209 0:220 ip community-list standard 1_210_219 permit 65000:1 0:210 0:219 ip community-list standard 1_211_218 permit 65000:1 0:211 0:218 ip community-list standard 1_212_217 permit 65000:1 0:212 0:217 ip community-list standard 1_213_216 permit 65000:1 0:213 0:216 ip community-list standard 1_214_215 permit 65000:1 0:214 0:215 route-map calculator permit 20419 match community 2_3_143 2_11_39 2_13_33 1_173_256 1_174_255 set community 0:429 route-map calculator permit 20420 match community 1_175_254 1_176_253 1_177_252 1_178_251 1_179_250 set community 0:429 route-map calculator permit 20421 match community 1_180_249 1_181_248 1_182_247 1_183_246 1_184_245 set community 0:429 route-map calculator permit 20422 match community 1_185_244 1_186_243 1_187_242 1_188_241 1_189_240 set community 0:429 route-map calculator permit 20423 match community 1_190_239 1_191_238 1_192_237 1_193_236 1_194_235 set community 0:429 route-map calculator permit 20424 match community 1_195_234 1_196_233 1_197_232 1_198_231 1_199_230 set community 0:429 route-map calculator permit 20425 match community 1_200_229 1_201_228 1_202_227 1_203_226 1_204_225 set community 0:429 route-map calculator permit 20426 match community 1_205_224 1_206_223 1_207_222 1_208_221 1_209_220 set community 0:429 route-map calculator permit 20427 match community 1_210_219 1_211_218 1_212_217 1_213_216 1_214_215 set community 0:429 ip community-list standard 2_69_139 permit 65000:2 0:69 0:139 route-map calculator permit 20428 match community 2_69_139 set community 0:9591 ip community-list standard 2_11_249 permit 65000:2 0:11 0:249 ip community-list standard 2_33_83 permit 65000:2 0:33 0:83 route-map calculator permit 20429 match community 2_11_249 2_33_83 set community 0:2739 ip community-list standard 2_20_194 permit 65000:2 0:20 0:194 ip community-list standard 2_40_97 permit 65000:2 0:40 0:97 route-map calculator permit 20430 match community 2_20_194 2_40_97 set community 0:3880 ip community-list standard 2_150_254 permit 65000:2 0:150 0:254 route-map calculator permit 20431 match community 2_150_254 set community 0:38100 ip community-list standard 2_50_219 permit 65000:2 0:50 0:219 ip community-list standard 2_73_150 permit 65000:2 0:73 0:150 ip community-list standard 2_75_146 permit 65000:2 0:75 0:146 route-map calculator permit 20432 match community 2_50_219 2_73_150 2_75_146 set community 0:10950 ip community-list standard 2_83_232 permit 65000:2 0:83 0:232 ip community-list standard 2_116_166 permit 65000:2 0:116 0:166 route-map calculator permit 20433 match community 2_83_232 2_116_166 set community 0:19256 ip community-list standard 2_87_249 permit 65000:2 0:87 0:249 route-map calculator permit 20434 match community 2_87_249 set community 0:21663 ip community-list standard 2_65_197 permit 65000:2 0:65 0:197 route-map calculator permit 20435 match community 2_65_197 set community 0:12805 ip community-list standard 2_109_213 permit 65000:2 0:109 0:213 route-map calculator permit 20436 match community 2_109_213 set community 0:23217 ip community-list standard 2_127_137 permit 65000:2 0:127 0:137 route-map calculator permit 20437 match community 2_127_137 set community 0:17399 ip community-list standard 2_36_225 permit 65000:2 0:36 0:225 ip community-list standard 2_45_180 permit 65000:2 0:45 0:180 ip community-list standard 2_50_162 permit 65000:2 0:50 0:162 ip community-list standard 2_54_150 permit 65000:2 0:54 0:150 ip community-list standard 2_60_135 permit 65000:2 0:60 0:135 ip community-list standard 2_75_108 permit 65000:2 0:75 0:108 ip community-list standard 2_81_100 permit 65000:2 0:81 0:100 ip community-list standard 2_90_90 permit 65000:2 0:90 0:90 route-map calculator permit 20438 match community 2_36_225 2_45_180 2_50_162 2_54_150 2_60_135 set community 0:8100 route-map calculator permit 20439 match community 2_75_108 2_81_100 2_90_90 set community 0:8100 ip community-list standard 2_163_169 permit 65000:2 0:163 0:169 route-map calculator permit 20440 match community 2_163_169 set community 0:27547 ip community-list standard 2_45_101 permit 65000:2 0:45 0:101 route-map calculator permit 20441 match community 2_45_101 set community 0:4545 ip community-list standard 2_154_239 permit 65000:2 0:154 0:239 route-map calculator permit 20442 match community 2_154_239 set community 0:36806 ip community-list standard 2_193_209 permit 65000:2 0:193 0:209 route-map calculator permit 20443 match community 2_193_209 set community 0:40337 ip community-list standard 2_21_127 permit 65000:2 0:21 0:127 route-map calculator permit 20444 match community 2_21_127 set community 0:2667 ip community-list standard 2_59_173 permit 65000:2 0:59 0:173 route-map calculator permit 20445 match community 2_59_173 set community 0:10207 ip community-list standard 2_17_249 permit 65000:2 0:17 0:249 ip community-list standard 2_51_83 permit 65000:2 0:51 0:83 route-map calculator permit 20446 match community 2_17_249 2_51_83 set community 0:4233 ip community-list standard 2_41_118 permit 65000:2 0:41 0:118 ip community-list standard 2_59_82 permit 65000:2 0:59 0:82 route-map calculator permit 20447 match community 2_41_118 2_59_82 set community 0:4838 ip community-list standard 2_111_223 permit 65000:2 0:111 0:223 route-map calculator permit 20448 match community 2_111_223 set community 0:24753 ip community-list standard 2_17_83 permit 65000:2 0:17 0:83 route-map calculator permit 20449 match community 2_17_83 set community 0:1411 ip community-list standard 2_21_147 permit 65000:2 0:21 0:147 ip community-list standard 2_49_63 permit 65000:2 0:49 0:63 route-map calculator permit 20450 match community 2_21_147 2_49_63 set community 0:3087 ip community-list standard 2_199_222 permit 65000:2 0:199 0:222 route-map calculator permit 20451 match community 2_199_222 set community 0:44178 ip community-list standard 2_10_221 permit 65000:2 0:10 0:221 ip community-list standard 2_13_170 permit 65000:2 0:13 0:170 ip community-list standard 2_17_130 permit 65000:2 0:17 0:130 ip community-list standard 2_26_85 permit 65000:2 0:26 0:85 ip community-list standard 2_34_65 permit 65000:2 0:34 0:65 route-map calculator permit 20452 match community 2_10_221 2_13_170 2_17_130 2_26_85 2_34_65 set community 0:2210 ip community-list standard 2_222_239 permit 65000:2 0:222 0:239 route-map calculator permit 20453 match community 2_222_239 set community 0:53058 ip community-list standard 2_76_181 permit 65000:2 0:76 0:181 route-map calculator permit 20454 match community 2_76_181 set community 0:13756 ip community-list standard 2_53_246 permit 65000:2 0:53 0:246 ip community-list standard 2_82_159 permit 65000:2 0:82 0:159 ip community-list standard 2_106_123 permit 65000:2 0:106 0:123 route-map calculator permit 20455 match community 2_53_246 2_82_159 2_106_123 set community 0:13038 ip community-list standard 2_46_248 permit 65000:2 0:46 0:248 ip community-list standard 2_62_184 permit 65000:2 0:62 0:184 ip community-list standard 2_92_124 permit 65000:2 0:92 0:124 route-map calculator permit 20456 match community 2_46_248 2_62_184 2_92_124 set community 0:11408 ip community-list standard 2_154_202 permit 65000:2 0:154 0:202 route-map calculator permit 20457 match community 2_154_202 set community 0:31108 ip community-list standard 1_1_59 permit 65000:1 0:1 0:59 ip community-list standard 2_1_60 permit 65000:2 0:1 0:60 ip community-list standard 2_2_30 permit 65000:2 0:2 0:30 ip community-list standard 1_2_58 permit 65000:1 0:2 0:58 ip community-list standard 2_3_20 permit 65000:2 0:3 0:20 ip community-list standard 1_3_57 permit 65000:1 0:3 0:57 ip community-list standard 2_4_15 permit 65000:2 0:4 0:15 ip community-list standard 1_4_56 permit 65000:1 0:4 0:56 ip community-list standard 2_5_12 permit 65000:2 0:5 0:12 ip community-list standard 1_5_55 permit 65000:1 0:5 0:55 ip community-list standard 2_6_10 permit 65000:2 0:6 0:10 ip community-list standard 1_6_54 permit 65000:1 0:6 0:54 ip community-list standard 1_7_53 permit 65000:1 0:7 0:53 ip community-list standard 1_8_52 permit 65000:1 0:8 0:52 ip community-list standard 1_9_51 permit 65000:1 0:9 0:51 ip community-list standard 1_10_50 permit 65000:1 0:10 0:50 ip community-list standard 1_11_49 permit 65000:1 0:11 0:49 ip community-list standard 1_12_48 permit 65000:1 0:12 0:48 ip community-list standard 1_13_47 permit 65000:1 0:13 0:47 ip community-list standard 1_14_46 permit 65000:1 0:14 0:46 ip community-list standard 1_15_45 permit 65000:1 0:15 0:45 ip community-list standard 1_16_44 permit 65000:1 0:16 0:44 ip community-list standard 1_17_43 permit 65000:1 0:17 0:43 ip community-list standard 1_18_42 permit 65000:1 0:18 0:42 ip community-list standard 1_19_41 permit 65000:1 0:19 0:41 ip community-list standard 1_20_40 permit 65000:1 0:20 0:40 ip community-list standard 1_21_39 permit 65000:1 0:21 0:39 ip community-list standard 1_22_38 permit 65000:1 0:22 0:38 ip community-list standard 1_23_37 permit 65000:1 0:23 0:37 ip community-list standard 1_24_36 permit 65000:1 0:24 0:36 ip community-list standard 1_25_35 permit 65000:1 0:25 0:35 ip community-list standard 1_26_34 permit 65000:1 0:26 0:34 ip community-list standard 1_27_33 permit 65000:1 0:27 0:33 ip community-list standard 1_28_32 permit 65000:1 0:28 0:32 ip community-list standard 1_29_31 permit 65000:1 0:29 0:31 ip community-list standard 1_30_30 permit 65000:1 0:30 0:30 ip community-list expanded c60 permit 1 ^65000:4_0:60_0:1$ ip community-list expanded c60 permit 2 ^65000:3_0:61_0:1$ ip community-list expanded c60 permit 3 ^65000:3_0:62_0:2$ ip community-list expanded c60 permit 4 ^65000:3_0:63_0:3$ ip community-list expanded c60 permit 5 ^65000:3_0:64_0:4$ ip community-list expanded c60 permit 6 ^65000:3_0:65_0:5$ ip community-list expanded c60 permit 7 ^65000:3_0:66_0:6$ ip community-list expanded c60 permit 8 ^65000:3_0:67_0:7$ ip community-list expanded c60 permit 9 ^65000:3_0:68_0:8$ ip community-list expanded c60 permit 10 ^65000:3_0:69_0:9$ ip community-list expanded c60 permit 11 ^65000:3_0:70_0:10$ ip community-list expanded c60 permit 12 ^65000:3_0:71_0:11$ ip community-list expanded c60 permit 13 ^65000:3_0:72_0:12$ ip community-list expanded c60 permit 14 ^65000:3_0:73_0:13$ ip community-list expanded c60 permit 15 ^65000:3_0:74_0:14$ ip community-list expanded c60 permit 16 ^65000:3_0:75_0:15$ ip community-list expanded c60 permit 17 ^65000:3_0:76_0:16$ ip community-list expanded c60 permit 18 ^65000:3_0:77_0:17$ ip community-list expanded c60 permit 19 ^65000:3_0:78_0:18$ ip community-list expanded c60 permit 20 ^65000:3_0:79_0:19$ ip community-list expanded c60 permit 21 ^65000:3_0:80_0:20$ ip community-list expanded c60 permit 22 ^65000:3_0:81_0:21$ ip community-list expanded c60 permit 23 ^65000:3_0:82_0:22$ ip community-list expanded c60 permit 24 ^65000:3_0:83_0:23$ ip community-list expanded c60 permit 25 ^65000:3_0:84_0:24$ ip community-list expanded c60 permit 26 ^65000:3_0:85_0:25$ ip community-list expanded c60 permit 27 ^65000:3_0:86_0:26$ ip community-list expanded c60 permit 28 ^65000:3_0:87_0:27$ ip community-list expanded c60 permit 29 ^65000:3_0:88_0:28$ ip community-list expanded c60 permit 30 ^65000:3_0:89_0:29$ ip community-list expanded c60 permit 31 ^65000:3_0:90_0:30$ ip community-list expanded c60 permit 32 ^65000:3_0:91_0:31$ ip community-list expanded c60 permit 33 ^65000:3_0:92_0:32$ ip community-list expanded c60 permit 34 ^65000:3_0:93_0:33$ ip community-list expanded c60 permit 35 ^65000:3_0:94_0:34$ ip community-list expanded c60 permit 36 ^65000:3_0:95_0:35$ ip community-list expanded c60 permit 37 ^65000:3_0:96_0:36$ ip community-list expanded c60 permit 38 ^65000:3_0:97_0:37$ ip community-list expanded c60 permit 39 ^65000:3_0:98_0:38$ ip community-list expanded c60 permit 40 ^65000:3_0:99_0:39$ ip community-list expanded c60 permit 41 ^65000:3_0:100_0:40$ ip community-list expanded c60 permit 42 ^65000:3_0:101_0:41$ ip community-list expanded c60 permit 43 ^65000:3_0:102_0:42$ ip community-list expanded c60 permit 44 ^65000:3_0:103_0:43$ ip community-list expanded c60 permit 45 ^65000:3_0:104_0:44$ ip community-list expanded c60 permit 46 ^65000:3_0:105_0:45$ ip community-list expanded c60 permit 47 ^65000:3_0:106_0:46$ ip community-list expanded c60 permit 48 ^65000:3_0:107_0:47$ ip community-list expanded c60 permit 49 ^65000:3_0:108_0:48$ ip community-list expanded c60 permit 50 ^65000:3_0:109_0:49$ ip community-list expanded c60 permit 51 ^65000:3_0:110_0:50$ ip community-list expanded c60 permit 52 ^65000:3_0:111_0:51$ ip community-list expanded c60 permit 53 ^65000:3_0:112_0:52$ ip community-list expanded c60 permit 54 ^65000:3_0:113_0:53$ ip community-list expanded c60 permit 55 ^65000:3_0:114_0:54$ ip community-list expanded c60 permit 56 ^65000:3_0:115_0:55$ ip community-list expanded c60 permit 57 ^65000:3_0:116_0:56$ ip community-list expanded c60 permit 58 ^65000:3_0:117_0:57$ ip community-list expanded c60 permit 59 ^65000:3_0:118_0:58$ ip community-list expanded c60 permit 60 ^65000:3_0:119_0:59$ ip community-list expanded c60 permit 61 ^65000:4_0:120_0:2$ ip community-list expanded c60 permit 62 ^65000:3_0:120_0:60$ ip community-list expanded c60 permit 63 ^65000:4_0:121_0:2$ ip community-list expanded c60 permit 64 ^65000:3_0:121_0:61$ ip community-list expanded c60 permit 65 ^65000:3_0:122_0:62$ ip community-list expanded c60 permit 66 ^65000:3_0:123_0:63$ ip community-list expanded c60 permit 67 ^65000:3_0:124_0:64$ ip community-list expanded c60 permit 68 ^65000:3_0:125_0:65$ ip community-list expanded c60 permit 69 ^65000:3_0:126_0:66$ ip community-list expanded c60 permit 70 ^65000:3_0:127_0:67$ ip community-list expanded c60 permit 71 ^65000:3_0:128_0:68$ ip community-list expanded c60 permit 72 ^65000:3_0:129_0:69$ ip community-list expanded c60 permit 73 ^65000:3_0:130_0:70$ ip community-list expanded c60 permit 74 ^65000:3_0:131_0:71$ ip community-list expanded c60 permit 75 ^65000:3_0:132_0:72$ ip community-list expanded c60 permit 76 ^65000:3_0:133_0:73$ ip community-list expanded c60 permit 77 ^65000:3_0:134_0:74$ ip community-list expanded c60 permit 78 ^65000:3_0:135_0:75$ ip community-list expanded c60 permit 79 ^65000:3_0:136_0:76$ ip community-list expanded c60 permit 80 ^65000:3_0:137_0:77$ ip community-list expanded c60 permit 81 ^65000:3_0:138_0:78$ ip community-list expanded c60 permit 82 ^65000:3_0:139_0:79$ ip community-list expanded c60 permit 83 ^65000:3_0:140_0:80$ ip community-list expanded c60 permit 84 ^65000:3_0:141_0:81$ ip community-list expanded c60 permit 85 ^65000:3_0:142_0:82$ ip community-list expanded c60 permit 86 ^65000:3_0:143_0:83$ ip community-list expanded c60 permit 87 ^65000:3_0:144_0:84$ ip community-list expanded c60 permit 88 ^65000:3_0:145_0:85$ ip community-list expanded c60 permit 89 ^65000:3_0:146_0:86$ ip community-list expanded c60 permit 90 ^65000:3_0:147_0:87$ ip community-list expanded c60 permit 91 ^65000:3_0:148_0:88$ ip community-list expanded c60 permit 92 ^65000:3_0:149_0:89$ ip community-list expanded c60 permit 93 ^65000:3_0:150_0:90$ ip community-list expanded c60 permit 94 ^65000:3_0:151_0:91$ ip community-list expanded c60 permit 95 ^65000:3_0:152_0:92$ ip community-list expanded c60 permit 96 ^65000:3_0:153_0:93$ ip community-list expanded c60 permit 97 ^65000:3_0:154_0:94$ ip community-list expanded c60 permit 98 ^65000:3_0:155_0:95$ ip community-list expanded c60 permit 99 ^65000:3_0:156_0:96$ ip community-list expanded c60 permit 100 ^65000:3_0:157_0:97$ ip community-list expanded c60 permit 101 ^65000:3_0:158_0:98$ ip community-list expanded c60 permit 102 ^65000:3_0:159_0:99$ ip community-list expanded c60 permit 103 ^65000:3_0:160_0:100$ ip community-list expanded c60 permit 104 ^65000:3_0:161_0:101$ ip community-list expanded c60 permit 105 ^65000:3_0:162_0:102$ ip community-list expanded c60 permit 106 ^65000:3_0:163_0:103$ ip community-list expanded c60 permit 107 ^65000:3_0:164_0:104$ ip community-list expanded c60 permit 108 ^65000:3_0:165_0:105$ ip community-list expanded c60 permit 109 ^65000:3_0:166_0:106$ ip community-list expanded c60 permit 110 ^65000:3_0:167_0:107$ ip community-list expanded c60 permit 111 ^65000:3_0:168_0:108$ ip community-list expanded c60 permit 112 ^65000:3_0:169_0:109$ ip community-list expanded c60 permit 113 ^65000:3_0:170_0:110$ ip community-list expanded c60 permit 114 ^65000:3_0:171_0:111$ ip community-list expanded c60 permit 115 ^65000:3_0:172_0:112$ ip community-list expanded c60 permit 116 ^65000:3_0:173_0:113$ ip community-list expanded c60 permit 117 ^65000:3_0:174_0:114$ ip community-list expanded c60 permit 118 ^65000:3_0:175_0:115$ ip community-list expanded c60 permit 119 ^65000:3_0:176_0:116$ ip community-list expanded c60 permit 120 ^65000:3_0:177_0:117$ ip community-list expanded c60 permit 121 ^65000:3_0:178_0:118$ ip community-list expanded c60 permit 122 ^65000:3_0:179_0:119$ ip community-list expanded c60 permit 123 ^65000:4_0:180_0:3$ ip community-list expanded c60 permit 124 ^65000:3_0:180_0:120$ ip community-list expanded c60 permit 125 ^65000:4_0:181_0:3$ ip community-list expanded c60 permit 126 ^65000:3_0:181_0:121$ ip community-list expanded c60 permit 127 ^65000:4_0:182_0:3$ ip community-list expanded c60 permit 128 ^65000:3_0:182_0:122$ ip community-list expanded c60 permit 129 ^65000:3_0:183_0:123$ ip community-list expanded c60 permit 130 ^65000:3_0:184_0:124$ ip community-list expanded c60 permit 131 ^65000:3_0:185_0:125$ ip community-list expanded c60 permit 132 ^65000:3_0:186_0:126$ ip community-list expanded c60 permit 133 ^65000:3_0:187_0:127$ ip community-list expanded c60 permit 134 ^65000:3_0:188_0:128$ ip community-list expanded c60 permit 135 ^65000:3_0:189_0:129$ ip community-list expanded c60 permit 136 ^65000:3_0:190_0:130$ ip community-list expanded c60 permit 137 ^65000:3_0:191_0:131$ ip community-list expanded c60 permit 138 ^65000:3_0:192_0:132$ ip community-list expanded c60 permit 139 ^65000:3_0:193_0:133$ ip community-list expanded c60 permit 140 ^65000:3_0:194_0:134$ ip community-list expanded c60 permit 141 ^65000:3_0:195_0:135$ ip community-list expanded c60 permit 142 ^65000:3_0:196_0:136$ ip community-list expanded c60 permit 143 ^65000:3_0:197_0:137$ ip community-list expanded c60 permit 144 ^65000:3_0:198_0:138$ ip community-list expanded c60 permit 145 ^65000:3_0:199_0:139$ ip community-list expanded c60 permit 146 ^65000:3_0:200_0:140$ ip community-list expanded c60 permit 147 ^65000:3_0:201_0:141$ ip community-list expanded c60 permit 148 ^65000:3_0:202_0:142$ ip community-list expanded c60 permit 149 ^65000:3_0:203_0:143$ ip community-list expanded c60 permit 150 ^65000:3_0:204_0:144$ ip community-list expanded c60 permit 151 ^65000:3_0:205_0:145$ ip community-list expanded c60 permit 152 ^65000:3_0:206_0:146$ ip community-list expanded c60 permit 153 ^65000:3_0:207_0:147$ ip community-list expanded c60 permit 154 ^65000:3_0:208_0:148$ ip community-list expanded c60 permit 155 ^65000:3_0:209_0:149$ ip community-list expanded c60 permit 156 ^65000:3_0:210_0:150$ ip community-list expanded c60 permit 157 ^65000:3_0:211_0:151$ ip community-list expanded c60 permit 158 ^65000:3_0:212_0:152$ ip community-list expanded c60 permit 159 ^65000:3_0:213_0:153$ ip community-list expanded c60 permit 160 ^65000:3_0:214_0:154$ ip community-list expanded c60 permit 161 ^65000:3_0:215_0:155$ ip community-list expanded c60 permit 162 ^65000:3_0:216_0:156$ ip community-list expanded c60 permit 163 ^65000:3_0:217_0:157$ ip community-list expanded c60 permit 164 ^65000:3_0:218_0:158$ ip community-list expanded c60 permit 165 ^65000:3_0:219_0:159$ ip community-list expanded c60 permit 166 ^65000:3_0:220_0:160$ ip community-list expanded c60 permit 167 ^65000:3_0:221_0:161$ ip community-list expanded c60 permit 168 ^65000:3_0:222_0:162$ ip community-list expanded c60 permit 169 ^65000:3_0:223_0:163$ ip community-list expanded c60 permit 170 ^65000:3_0:224_0:164$ ip community-list expanded c60 permit 171 ^65000:3_0:225_0:165$ ip community-list expanded c60 permit 172 ^65000:3_0:226_0:166$ ip community-list expanded c60 permit 173 ^65000:3_0:227_0:167$ ip community-list expanded c60 permit 174 ^65000:3_0:228_0:168$ ip community-list expanded c60 permit 175 ^65000:3_0:229_0:169$ ip community-list expanded c60 permit 176 ^65000:3_0:230_0:170$ ip community-list expanded c60 permit 177 ^65000:3_0:231_0:171$ ip community-list expanded c60 permit 178 ^65000:3_0:232_0:172$ ip community-list expanded c60 permit 179 ^65000:3_0:233_0:173$ ip community-list expanded c60 permit 180 ^65000:3_0:234_0:174$ ip community-list expanded c60 permit 181 ^65000:3_0:235_0:175$ ip community-list expanded c60 permit 182 ^65000:3_0:236_0:176$ ip community-list expanded c60 permit 183 ^65000:3_0:237_0:177$ ip community-list expanded c60 permit 184 ^65000:3_0:238_0:178$ ip community-list expanded c60 permit 185 ^65000:3_0:239_0:179$ ip community-list expanded c60 permit 186 ^65000:4_0:240_0:4$ ip community-list expanded c60 permit 187 ^65000:3_0:240_0:180$ ip community-list expanded c60 permit 188 ^65000:4_0:241_0:4$ ip community-list expanded c60 permit 189 ^65000:3_0:241_0:181$ ip community-list expanded c60 permit 190 ^65000:4_0:242_0:4$ ip community-list expanded c60 permit 191 ^65000:3_0:242_0:182$ ip community-list expanded c60 permit 192 ^65000:4_0:243_0:4$ ip community-list expanded c60 permit 193 ^65000:3_0:243_0:183$ ip community-list expanded c60 permit 194 ^65000:3_0:244_0:184$ ip community-list expanded c60 permit 195 ^65000:3_0:245_0:185$ ip community-list expanded c60 permit 196 ^65000:3_0:246_0:186$ ip community-list expanded c60 permit 197 ^65000:3_0:247_0:187$ ip community-list expanded c60 permit 198 ^65000:3_0:248_0:188$ ip community-list expanded c60 permit 199 ^65000:3_0:249_0:189$ ip community-list expanded c60 permit 200 ^65000:3_0:250_0:190$ ip community-list expanded c60 permit 201 ^65000:3_0:251_0:191$ ip community-list expanded c60 permit 202 ^65000:3_0:252_0:192$ ip community-list expanded c60 permit 203 ^65000:3_0:253_0:193$ ip community-list expanded c60 permit 204 ^65000:3_0:254_0:194$ ip community-list expanded c60 permit 205 ^65000:3_0:255_0:195$ ip community-list expanded c60 permit 206 ^65000:3_0:256_0:196$ route-map calculator permit 20458 match community 1_1_59 2_1_60 2_2_30 1_2_58 2_3_20 set community 0:60 route-map calculator permit 20459 match community 1_3_57 2_4_15 1_4_56 2_5_12 1_5_55 set community 0:60 route-map calculator permit 20460 match community 2_6_10 1_6_54 1_7_53 1_8_52 1_9_51 set community 0:60 route-map calculator permit 20461 match community 1_10_50 1_11_49 1_12_48 1_13_47 1_14_46 set community 0:60 route-map calculator permit 20462 match community 1_15_45 1_16_44 1_17_43 1_18_42 1_19_41 set community 0:60 route-map calculator permit 20463 match community 1_20_40 1_21_39 1_22_38 1_23_37 1_24_36 set community 0:60 route-map calculator permit 20464 match community 1_25_35 1_26_34 1_27_33 1_28_32 1_29_31 set community 0:60 route-map calculator permit 20465 match community 1_30_30 c4_60_1 c3_61_1 c3_62_2 c3_63_3 set community 0:60 route-map calculator permit 20466 match community c3_64_4 c3_65_5 c3_66_6 c3_67_7 c3_68_8 set community 0:60 route-map calculator permit 20467 match community c3_69_9 c3_70_10 c3_71_11 c3_72_12 c3_73_13 set community 0:60 route-map calculator permit 20468 match community c3_74_14 c3_75_15 c3_76_16 c3_77_17 c3_78_18 set community 0:60 route-map calculator permit 20469 match community c3_79_19 c3_80_20 c3_81_21 c3_82_22 c3_83_23 set community 0:60 route-map calculator permit 20470 match community c3_84_24 c3_85_25 c3_86_26 c3_87_27 c3_88_28 set community 0:60 route-map calculator permit 20471 match community c3_89_29 c3_90_30 c3_91_31 c3_92_32 c3_93_33 set community 0:60 route-map calculator permit 20472 match community c3_94_34 c3_95_35 c3_96_36 c3_97_37 c3_98_38 set community 0:60 route-map calculator permit 20473 match community c3_99_39 c3_100_40 c3_101_41 c3_102_42 c3_103_43 set community 0:60 route-map calculator permit 20474 match community c3_104_44 c3_105_45 c3_106_46 c3_107_47 c3_108_48 set community 0:60 route-map calculator permit 20475 match community c3_109_49 c3_110_50 c3_111_51 c3_112_52 c3_113_53 set community 0:60 route-map calculator permit 20476 match community c3_114_54 c3_115_55 c3_116_56 c3_117_57 c3_118_58 set community 0:60 route-map calculator permit 20477 match community c3_119_59 c4_120_2 c3_120_60 c4_121_2 c3_121_61 set community 0:60 route-map calculator permit 20478 match community c3_122_62 c3_123_63 c3_124_64 c3_125_65 c3_126_66 set community 0:60 route-map calculator permit 20479 match community c3_127_67 c3_128_68 c3_129_69 c3_130_70 c3_131_71 set community 0:60 route-map calculator permit 20480 match community c3_132_72 c3_133_73 c3_134_74 c3_135_75 c3_136_76 set community 0:60 route-map calculator permit 20481 match community c3_137_77 c3_138_78 c3_139_79 c3_140_80 c3_141_81 set community 0:60 route-map calculator permit 20482 match community c3_142_82 c3_143_83 c3_144_84 c3_145_85 c3_146_86 set community 0:60 route-map calculator permit 20483 match community c3_147_87 c3_148_88 c3_149_89 c3_150_90 c3_151_91 set community 0:60 route-map calculator permit 20484 match community c3_152_92 c3_153_93 c3_154_94 c3_155_95 c3_156_96 set community 0:60 route-map calculator permit 20485 match community c3_157_97 c3_158_98 c3_159_99 c3_160_100 c3_161_101 set community 0:60 route-map calculator permit 20486 match community c3_162_102 c3_163_103 c3_164_104 c3_165_105 c3_166_106 set community 0:60 route-map calculator permit 20487 match community c3_167_107 c3_168_108 c3_169_109 c3_170_110 c3_171_111 set community 0:60 route-map calculator permit 20488 match community c3_172_112 c3_173_113 c3_174_114 c3_175_115 c3_176_116 set community 0:60 route-map calculator permit 20489 match community c3_177_117 c3_178_118 c3_179_119 c4_180_3 c3_180_120 set community 0:60 route-map calculator permit 20490 match community c4_181_3 c3_181_121 c4_182_3 c3_182_122 c3_183_123 set community 0:60 route-map calculator permit 20491 match community c3_184_124 c3_185_125 c3_186_126 c3_187_127 c3_188_128 set community 0:60 route-map calculator permit 20492 match community c3_189_129 c3_190_130 c3_191_131 c3_192_132 c3_193_133 set community 0:60 route-map calculator permit 20493 match community c3_194_134 c3_195_135 c3_196_136 c3_197_137 c3_198_138 set community 0:60 route-map calculator permit 20494 match community c3_199_139 c3_200_140 c3_201_141 c3_202_142 c3_203_143 set community 0:60 route-map calculator permit 20495 match community c3_204_144 c3_205_145 c3_206_146 c3_207_147 c3_208_148 set community 0:60 route-map calculator permit 20496 match community c3_209_149 c3_210_150 c3_211_151 c3_212_152 c3_213_153 set community 0:60 route-map calculator permit 20497 match community c3_214_154 c3_215_155 c3_216_156 c3_217_157 c3_218_158 set community 0:60 route-map calculator permit 20498 match community c3_219_159 c3_220_160 c3_221_161 c3_222_162 c3_223_163 set community 0:60 route-map calculator permit 20499 match community c3_224_164 c3_225_165 c3_226_166 c3_227_167 c3_228_168 set community 0:60 route-map calculator permit 20500 match community c3_229_169 c3_230_170 c3_231_171 c3_232_172 c3_233_173 set community 0:60 route-map calculator permit 20501 match community c3_234_174 c3_235_175 c3_236_176 c3_237_177 c3_238_178 set community 0:60 route-map calculator permit 20502 match community c3_239_179 c4_240_4 c3_240_180 c4_241_4 c3_241_181 set community 0:60 route-map calculator permit 20503 match community c4_242_4 c3_242_182 c4_243_4 c3_243_183 c3_244_184 set community 0:60 route-map calculator permit 20504 match community c3_245_185 c3_246_186 c3_247_187 c3_248_188 c3_249_189 set community 0:60 route-map calculator permit 20505 match community c3_250_190 c3_251_191 c3_252_192 c3_253_193 c3_254_194 set community 0:60 route-map calculator permit 20506 match community c3_255_195 c3_256_196 set community 0:60 ip community-list standard 2_17_171 permit 65000:2 0:17 0:171 ip community-list standard 2_19_153 permit 65000:2 0:19 0:153 ip community-list standard 2_51_57 permit 65000:2 0:51 0:57 route-map calculator permit 20507 match community 2_17_171 2_19_153 2_51_57 set community 0:2907 ip community-list standard 2_4_173 permit 65000:2 0:4 0:173 route-map calculator permit 20508 match community 2_4_173 set community 0:692 ip community-list standard 2_104_151 permit 65000:2 0:104 0:151 route-map calculator permit 20509 match community 2_104_151 set community 0:15704 ip community-list standard 2_54_249 permit 65000:2 0:54 0:249 ip community-list standard 2_81_166 permit 65000:2 0:81 0:166 ip community-list standard 2_83_162 permit 65000:2 0:83 0:162 route-map calculator permit 20510 match community 2_54_249 2_81_166 2_83_162 set community 0:13446 ip community-list standard 2_2_155 permit 65000:2 0:2 0:155 ip community-list standard 2_5_62 permit 65000:2 0:5 0:62 ip community-list standard 2_10_31 permit 65000:2 0:10 0:31 ip community-list standard 1_54_256 permit 65000:1 0:54 0:256 ip community-list standard 1_55_255 permit 65000:1 0:55 0:255 ip community-list standard 1_56_254 permit 65000:1 0:56 0:254 ip community-list standard 1_57_253 permit 65000:1 0:57 0:253 ip community-list standard 1_58_252 permit 65000:1 0:58 0:252 ip community-list standard 1_59_251 permit 65000:1 0:59 0:251 ip community-list standard 1_60_250 permit 65000:1 0:60 0:250 ip community-list standard 1_61_249 permit 65000:1 0:61 0:249 ip community-list standard 1_62_248 permit 65000:1 0:62 0:248 ip community-list standard 1_63_247 permit 65000:1 0:63 0:247 ip community-list standard 1_64_246 permit 65000:1 0:64 0:246 ip community-list standard 1_65_245 permit 65000:1 0:65 0:245 ip community-list standard 1_66_244 permit 65000:1 0:66 0:244 ip community-list standard 1_67_243 permit 65000:1 0:67 0:243 ip community-list standard 1_68_242 permit 65000:1 0:68 0:242 ip community-list standard 1_69_241 permit 65000:1 0:69 0:241 ip community-list standard 1_70_240 permit 65000:1 0:70 0:240 ip community-list standard 1_71_239 permit 65000:1 0:71 0:239 ip community-list standard 1_72_238 permit 65000:1 0:72 0:238 ip community-list standard 1_73_237 permit 65000:1 0:73 0:237 ip community-list standard 1_74_236 permit 65000:1 0:74 0:236 ip community-list standard 1_75_235 permit 65000:1 0:75 0:235 ip community-list standard 1_76_234 permit 65000:1 0:76 0:234 ip community-list standard 1_77_233 permit 65000:1 0:77 0:233 ip community-list standard 1_78_232 permit 65000:1 0:78 0:232 ip community-list standard 1_79_231 permit 65000:1 0:79 0:231 ip community-list standard 1_80_230 permit 65000:1 0:80 0:230 ip community-list standard 1_81_229 permit 65000:1 0:81 0:229 ip community-list standard 1_82_228 permit 65000:1 0:82 0:228 ip community-list standard 1_83_227 permit 65000:1 0:83 0:227 ip community-list standard 1_84_226 permit 65000:1 0:84 0:226 ip community-list standard 1_85_225 permit 65000:1 0:85 0:225 ip community-list standard 1_86_224 permit 65000:1 0:86 0:224 ip community-list standard 1_87_223 permit 65000:1 0:87 0:223 ip community-list standard 1_88_222 permit 65000:1 0:88 0:222 ip community-list standard 1_89_221 permit 65000:1 0:89 0:221 ip community-list standard 1_90_220 permit 65000:1 0:90 0:220 ip community-list standard 1_91_219 permit 65000:1 0:91 0:219 ip community-list standard 1_92_218 permit 65000:1 0:92 0:218 ip community-list standard 1_93_217 permit 65000:1 0:93 0:217 ip community-list standard 1_94_216 permit 65000:1 0:94 0:216 ip community-list standard 1_95_215 permit 65000:1 0:95 0:215 ip community-list standard 1_96_214 permit 65000:1 0:96 0:214 ip community-list standard 1_97_213 permit 65000:1 0:97 0:213 ip community-list standard 1_98_212 permit 65000:1 0:98 0:212 ip community-list standard 1_99_211 permit 65000:1 0:99 0:211 ip community-list standard 1_100_210 permit 65000:1 0:100 0:210 ip community-list standard 1_101_209 permit 65000:1 0:101 0:209 ip community-list standard 1_102_208 permit 65000:1 0:102 0:208 ip community-list standard 1_103_207 permit 65000:1 0:103 0:207 ip community-list standard 1_104_206 permit 65000:1 0:104 0:206 ip community-list standard 1_105_205 permit 65000:1 0:105 0:205 ip community-list standard 1_106_204 permit 65000:1 0:106 0:204 ip community-list standard 1_107_203 permit 65000:1 0:107 0:203 ip community-list standard 1_108_202 permit 65000:1 0:108 0:202 ip community-list standard 1_109_201 permit 65000:1 0:109 0:201 ip community-list standard 1_110_200 permit 65000:1 0:110 0:200 ip community-list standard 1_111_199 permit 65000:1 0:111 0:199 ip community-list standard 1_112_198 permit 65000:1 0:112 0:198 ip community-list standard 1_113_197 permit 65000:1 0:113 0:197 ip community-list standard 1_114_196 permit 65000:1 0:114 0:196 ip community-list standard 1_115_195 permit 65000:1 0:115 0:195 ip community-list standard 1_116_194 permit 65000:1 0:116 0:194 ip community-list standard 1_117_193 permit 65000:1 0:117 0:193 ip community-list standard 1_118_192 permit 65000:1 0:118 0:192 ip community-list standard 1_119_191 permit 65000:1 0:119 0:191 ip community-list standard 1_120_190 permit 65000:1 0:120 0:190 ip community-list standard 1_121_189 permit 65000:1 0:121 0:189 ip community-list standard 1_122_188 permit 65000:1 0:122 0:188 ip community-list standard 1_123_187 permit 65000:1 0:123 0:187 ip community-list standard 1_124_186 permit 65000:1 0:124 0:186 ip community-list standard 1_125_185 permit 65000:1 0:125 0:185 ip community-list standard 1_126_184 permit 65000:1 0:126 0:184 ip community-list standard 1_127_183 permit 65000:1 0:127 0:183 ip community-list standard 1_128_182 permit 65000:1 0:128 0:182 ip community-list standard 1_129_181 permit 65000:1 0:129 0:181 ip community-list standard 1_130_180 permit 65000:1 0:130 0:180 ip community-list standard 1_131_179 permit 65000:1 0:131 0:179 ip community-list standard 1_132_178 permit 65000:1 0:132 0:178 ip community-list standard 1_133_177 permit 65000:1 0:133 0:177 ip community-list standard 1_134_176 permit 65000:1 0:134 0:176 ip community-list standard 1_135_175 permit 65000:1 0:135 0:175 ip community-list standard 1_136_174 permit 65000:1 0:136 0:174 ip community-list standard 1_137_173 permit 65000:1 0:137 0:173 ip community-list standard 1_138_172 permit 65000:1 0:138 0:172 ip community-list standard 1_139_171 permit 65000:1 0:139 0:171 ip community-list standard 1_140_170 permit 65000:1 0:140 0:170 ip community-list standard 1_141_169 permit 65000:1 0:141 0:169 ip community-list standard 1_142_168 permit 65000:1 0:142 0:168 ip community-list standard 1_143_167 permit 65000:1 0:143 0:167 ip community-list standard 1_144_166 permit 65000:1 0:144 0:166 ip community-list standard 1_145_165 permit 65000:1 0:145 0:165 ip community-list standard 1_146_164 permit 65000:1 0:146 0:164 ip community-list standard 1_147_163 permit 65000:1 0:147 0:163 ip community-list standard 1_148_162 permit 65000:1 0:148 0:162 ip community-list standard 1_149_161 permit 65000:1 0:149 0:161 ip community-list standard 1_150_160 permit 65000:1 0:150 0:160 ip community-list standard 1_151_159 permit 65000:1 0:151 0:159 ip community-list standard 1_152_158 permit 65000:1 0:152 0:158 ip community-list standard 1_153_157 permit 65000:1 0:153 0:157 ip community-list standard 1_154_156 permit 65000:1 0:154 0:156 ip community-list standard 1_155_155 permit 65000:1 0:155 0:155 route-map calculator permit 20511 match community 2_2_155 2_5_62 2_10_31 1_54_256 1_55_255 set community 0:310 route-map calculator permit 20512 match community 1_56_254 1_57_253 1_58_252 1_59_251 1_60_250 set community 0:310 route-map calculator permit 20513 match community 1_61_249 1_62_248 1_63_247 1_64_246 1_65_245 set community 0:310 route-map calculator permit 20514 match community 1_66_244 1_67_243 1_68_242 1_69_241 1_70_240 set community 0:310 route-map calculator permit 20515 match community 1_71_239 1_72_238 1_73_237 1_74_236 1_75_235 set community 0:310 route-map calculator permit 20516 match community 1_76_234 1_77_233 1_78_232 1_79_231 1_80_230 set community 0:310 route-map calculator permit 20517 match community 1_81_229 1_82_228 1_83_227 1_84_226 1_85_225 set community 0:310 route-map calculator permit 20518 match community 1_86_224 1_87_223 1_88_222 1_89_221 1_90_220 set community 0:310 route-map calculator permit 20519 match community 1_91_219 1_92_218 1_93_217 1_94_216 1_95_215 set community 0:310 route-map calculator permit 20520 match community 1_96_214 1_97_213 1_98_212 1_99_211 1_100_210 set community 0:310 route-map calculator permit 20521 match community 1_101_209 1_102_208 1_103_207 1_104_206 1_105_205 set community 0:310 route-map calculator permit 20522 match community 1_106_204 1_107_203 1_108_202 1_109_201 1_110_200 set community 0:310 route-map calculator permit 20523 match community 1_111_199 1_112_198 1_113_197 1_114_196 1_115_195 set community 0:310 route-map calculator permit 20524 match community 1_116_194 1_117_193 1_118_192 1_119_191 1_120_190 set community 0:310 route-map calculator permit 20525 match community 1_121_189 1_122_188 1_123_187 1_124_186 1_125_185 set community 0:310 route-map calculator permit 20526 match community 1_126_184 1_127_183 1_128_182 1_129_181 1_130_180 set community 0:310 route-map calculator permit 20527 match community 1_131_179 1_132_178 1_133_177 1_134_176 1_135_175 set community 0:310 route-map calculator permit 20528 match community 1_136_174 1_137_173 1_138_172 1_139_171 1_140_170 set community 0:310 route-map calculator permit 20529 match community 1_141_169 1_142_168 1_143_167 1_144_166 1_145_165 set community 0:310 route-map calculator permit 20530 match community 1_146_164 1_147_163 1_148_162 1_149_161 1_150_160 set community 0:310 route-map calculator permit 20531 match community 1_151_159 1_152_158 1_153_157 1_154_156 1_155_155 set community 0:310 ip community-list standard 2_82_248 permit 65000:2 0:82 0:248 ip community-list standard 2_124_164 permit 65000:2 0:124 0:164 route-map calculator permit 20532 match community 2_82_248 2_124_164 set community 0:20336 ip community-list standard 2_169_196 permit 65000:2 0:169 0:196 ip community-list standard 2_182_182 permit 65000:2 0:182 0:182 route-map calculator permit 20533 match community 2_169_196 2_182_182 set community 0:33124 ip community-list standard 2_9_229 permit 65000:2 0:9 0:229 route-map calculator permit 20534 match community 2_9_229 set community 0:2061 ip community-list standard 2_104_227 permit 65000:2 0:104 0:227 route-map calculator permit 20535 match community 2_104_227 set community 0:23608 ip community-list standard 2_197_223 permit 65000:2 0:197 0:223 route-map calculator permit 20536 match community 2_197_223 set community 0:43931 ip community-list standard 2_21_103 permit 65000:2 0:21 0:103 route-map calculator permit 20537 match community 2_21_103 set community 0:2163 ip community-list standard 2_106_185 permit 65000:2 0:106 0:185 route-map calculator permit 20538 match community 2_106_185 set community 0:19610 ip community-list standard 2_156_206 permit 65000:2 0:156 0:206 route-map calculator permit 20539 match community 2_156_206 set community 0:32136 ip community-list standard 2_181_241 permit 65000:2 0:181 0:241 route-map calculator permit 20540 match community 2_181_241 set community 0:43621 ip community-list standard 2_135_177 permit 65000:2 0:135 0:177 route-map calculator permit 20541 match community 2_135_177 set community 0:23895 ip community-list standard 2_30_233 permit 65000:2 0:30 0:233 route-map calculator permit 20542 match community 2_30_233 set community 0:6990 ip community-list standard 2_108_173 permit 65000:2 0:108 0:173 route-map calculator permit 20543 match community 2_108_173 set community 0:18684 ip community-list standard 2_237_256 permit 65000:2 0:237 0:256 route-map calculator permit 20544 match community 2_237_256 set community 0:60672 ip community-list standard 2_176_227 permit 65000:2 0:176 0:227 route-map calculator permit 20545 match community 2_176_227 set community 0:39952 ip community-list standard 2_32_187 permit 65000:2 0:32 0:187 ip community-list standard 2_34_176 permit 65000:2 0:34 0:176 ip community-list standard 2_44_136 permit 65000:2 0:44 0:136 ip community-list standard 2_68_88 permit 65000:2 0:68 0:88 route-map calculator permit 20546 match community 2_32_187 2_34_176 2_44_136 2_68_88 set community 0:5984 ip community-list standard 2_71_249 permit 65000:2 0:71 0:249 ip community-list standard 2_83_213 permit 65000:2 0:83 0:213 route-map calculator permit 20547 match community 2_71_249 2_83_213 set community 0:17679 ip community-list standard 2_77_233 permit 65000:2 0:77 0:233 route-map calculator permit 20548 match community 2_77_233 set community 0:17941 ip community-list standard 2_11_219 permit 65000:2 0:11 0:219 ip community-list standard 2_33_73 permit 65000:2 0:33 0:73 route-map calculator permit 20549 match community 2_11_219 2_33_73 set community 0:2409 ip community-list standard 2_74_137 permit 65000:2 0:74 0:137 route-map calculator permit 20550 match community 2_74_137 set community 0:10138 ip community-list standard 2_134_211 permit 65000:2 0:134 0:211 route-map calculator permit 20551 match community 2_134_211 set community 0:28274 ip community-list standard 2_3_204 permit 65000:2 0:3 0:204 ip community-list standard 2_4_153 permit 65000:2 0:4 0:153 ip community-list standard 2_6_102 permit 65000:2 0:6 0:102 ip community-list standard 2_9_68 permit 65000:2 0:9 0:68 ip community-list standard 2_12_51 permit 65000:2 0:12 0:51 ip community-list standard 2_17_36 permit 65000:2 0:17 0:36 ip community-list standard 2_18_34 permit 65000:2 0:18 0:34 route-map calculator permit 20552 match community 2_3_204 2_4_153 2_6_102 2_9_68 2_12_51 set community 0:612 route-map calculator permit 20553 match community 2_17_36 2_18_34 set community 0:612 ip community-list standard 1_201_256 permit 65000:1 0:201 0:256 ip community-list standard 1_202_255 permit 65000:1 0:202 0:255 ip community-list standard 1_203_254 permit 65000:1 0:203 0:254 ip community-list standard 1_204_253 permit 65000:1 0:204 0:253 ip community-list standard 1_205_252 permit 65000:1 0:205 0:252 ip community-list standard 1_206_251 permit 65000:1 0:206 0:251 ip community-list standard 1_207_250 permit 65000:1 0:207 0:250 ip community-list standard 1_208_249 permit 65000:1 0:208 0:249 ip community-list standard 1_209_248 permit 65000:1 0:209 0:248 ip community-list standard 1_210_247 permit 65000:1 0:210 0:247 ip community-list standard 1_211_246 permit 65000:1 0:211 0:246 ip community-list standard 1_212_245 permit 65000:1 0:212 0:245 ip community-list standard 1_213_244 permit 65000:1 0:213 0:244 ip community-list standard 1_214_243 permit 65000:1 0:214 0:243 ip community-list standard 1_215_242 permit 65000:1 0:215 0:242 ip community-list standard 1_216_241 permit 65000:1 0:216 0:241 ip community-list standard 1_217_240 permit 65000:1 0:217 0:240 ip community-list standard 1_218_239 permit 65000:1 0:218 0:239 ip community-list standard 1_219_238 permit 65000:1 0:219 0:238 ip community-list standard 1_220_237 permit 65000:1 0:220 0:237 ip community-list standard 1_221_236 permit 65000:1 0:221 0:236 ip community-list standard 1_222_235 permit 65000:1 0:222 0:235 ip community-list standard 1_223_234 permit 65000:1 0:223 0:234 ip community-list standard 1_224_233 permit 65000:1 0:224 0:233 ip community-list standard 1_225_232 permit 65000:1 0:225 0:232 ip community-list standard 1_226_231 permit 65000:1 0:226 0:231 ip community-list standard 1_227_230 permit 65000:1 0:227 0:230 ip community-list standard 1_228_229 permit 65000:1 0:228 0:229 route-map calculator permit 20554 match community 1_201_256 1_202_255 1_203_254 1_204_253 1_205_252 set community 0:457 route-map calculator permit 20555 match community 1_206_251 1_207_250 1_208_249 1_209_248 1_210_247 set community 0:457 route-map calculator permit 20556 match community 1_211_246 1_212_245 1_213_244 1_214_243 1_215_242 set community 0:457 route-map calculator permit 20557 match community 1_216_241 1_217_240 1_218_239 1_219_238 1_220_237 set community 0:457 route-map calculator permit 20558 match community 1_221_236 1_222_235 1_223_234 1_224_233 1_225_232 set community 0:457 route-map calculator permit 20559 match community 1_226_231 1_227_230 1_228_229 set community 0:457 ip community-list standard 2_34_183 permit 65000:2 0:34 0:183 ip community-list standard 2_51_122 permit 65000:2 0:51 0:122 ip community-list standard 2_61_102 permit 65000:2 0:61 0:102 route-map calculator permit 20560 match community 2_34_183 2_51_122 2_61_102 set community 0:6222 ip community-list standard 2_199_218 permit 65000:2 0:199 0:218 route-map calculator permit 20561 match community 2_199_218 set community 0:43382 ip community-list standard 2_47_127 permit 65000:2 0:47 0:127 route-map calculator permit 20562 match community 2_47_127 set community 0:5969 ip community-list standard 2_134_175 permit 65000:2 0:134 0:175 route-map calculator permit 20563 match community 2_134_175 set community 0:23450 ip community-list standard 2_91_253 permit 65000:2 0:91 0:253 ip community-list standard 2_143_161 permit 65000:2 0:143 0:161 route-map calculator permit 20564 match community 2_91_253 2_143_161 set community 0:23023 ip community-list standard 2_17_216 permit 65000:2 0:17 0:216 ip community-list standard 2_18_204 permit 65000:2 0:18 0:204 ip community-list standard 2_24_153 permit 65000:2 0:24 0:153 ip community-list standard 2_27_136 permit 65000:2 0:27 0:136 ip community-list standard 2_34_108 permit 65000:2 0:34 0:108 ip community-list standard 2_36_102 permit 65000:2 0:36 0:102 ip community-list standard 2_51_72 permit 65000:2 0:51 0:72 ip community-list standard 2_54_68 permit 65000:2 0:54 0:68 route-map calculator permit 20565 match community 2_17_216 2_18_204 2_24_153 2_27_136 2_34_108 set community 0:3672 route-map calculator permit 20566 match community 2_36_102 2_51_72 2_54_68 set community 0:3672 ip community-list standard 2_105_223 permit 65000:2 0:105 0:223 route-map calculator permit 20567 match community 2_105_223 set community 0:23415 ip community-list standard 2_146_206 permit 65000:2 0:146 0:206 route-map calculator permit 20568 match community 2_146_206 set community 0:30076 ip community-list standard 2_144_197 permit 65000:2 0:144 0:197 route-map calculator permit 20569 match community 2_144_197 set community 0:28368 ip community-list standard 2_59_134 permit 65000:2 0:59 0:134 ip community-list standard 2_67_118 permit 65000:2 0:67 0:118 route-map calculator permit 20570 match community 2_59_134 2_67_118 set community 0:7906 ip community-list standard 2_93_186 permit 65000:2 0:93 0:186 route-map calculator permit 20571 match community 2_93_186 set community 0:17298 ip community-list standard 2_211_211 permit 65000:2 0:211 0:211 route-map calculator permit 20572 match community 2_211_211 set community 0:44521 ip community-list standard 2_64_243 permit 65000:2 0:64 0:243 ip community-list standard 2_72_216 permit 65000:2 0:72 0:216 ip community-list standard 2_81_192 permit 65000:2 0:81 0:192 ip community-list standard 2_96_162 permit 65000:2 0:96 0:162 ip community-list standard 2_108_144 permit 65000:2 0:108 0:144 route-map calculator permit 20573 match community 2_64_243 2_72_216 2_81_192 2_96_162 2_108_144 set community 0:15552 ip community-list standard 2_170_206 permit 65000:2 0:170 0:206 route-map calculator permit 20574 match community 2_170_206 set community 0:35020 ip community-list standard 2_61_250 permit 65000:2 0:61 0:250 ip community-list standard 2_122_125 permit 65000:2 0:122 0:125 route-map calculator permit 20575 match community 2_61_250 2_122_125 set community 0:15250 ip community-list standard 2_169_179 permit 65000:2 0:169 0:179 route-map calculator permit 20576 match community 2_169_179 set community 0:30251 ip community-list standard 2_139_162 permit 65000:2 0:139 0:162 route-map calculator permit 20577 match community 2_139_162 set community 0:22518 ip community-list standard 2_206_225 permit 65000:2 0:206 0:225 route-map calculator permit 20578 match community 2_206_225 set community 0:46350 ip community-list standard 2_106_251 permit 65000:2 0:106 0:251 route-map calculator permit 20579 match community 2_106_251 set community 0:26606 ip community-list standard 2_98_219 permit 65000:2 0:98 0:219 ip community-list standard 2_146_147 permit 65000:2 0:146 0:147 route-map calculator permit 20580 match community 2_98_219 2_146_147 set community 0:21462 ip community-list standard 2_46_186 permit 65000:2 0:46 0:186 ip community-list standard 2_62_138 permit 65000:2 0:62 0:138 ip community-list standard 2_69_124 permit 65000:2 0:69 0:124 ip community-list standard 2_92_93 permit 65000:2 0:92 0:93 route-map calculator permit 20581 match community 2_46_186 2_62_138 2_69_124 2_92_93 set community 0:8556 ip community-list standard 2_18_173 permit 65000:2 0:18 0:173 route-map calculator permit 20582 match community 2_18_173 set community 0:3114 ip community-list standard 2_246_255 permit 65000:2 0:246 0:255 route-map calculator permit 20583 match community 2_246_255 set community 0:62730 ip community-list standard 2_46_199 permit 65000:2 0:46 0:199 route-map calculator permit 20584 match community 2_46_199 set community 0:9154 ip community-list standard 2_71_239 permit 65000:2 0:71 0:239 route-map calculator permit 20585 match community 2_71_239 set community 0:16969 ip community-list standard 2_122_243 permit 65000:2 0:122 0:243 ip community-list standard 2_162_183 permit 65000:2 0:162 0:183 route-map calculator permit 20586 match community 2_122_243 2_162_183 set community 0:29646 ip community-list standard 2_3_233 permit 65000:2 0:3 0:233 route-map calculator permit 20587 match community 2_3_233 set community 0:699 ip community-list standard 2_22_177 permit 65000:2 0:22 0:177 ip community-list standard 2_33_118 permit 65000:2 0:33 0:118 ip community-list standard 2_59_66 permit 65000:2 0:59 0:66 route-map calculator permit 20588 match community 2_22_177 2_33_118 2_59_66 set community 0:3894 ip community-list standard 2_93_155 permit 65000:2 0:93 0:155 route-map calculator permit 20589 match community 2_93_155 set community 0:14415 ip community-list standard 2_181_206 permit 65000:2 0:181 0:206 route-map calculator permit 20590 match community 2_181_206 set community 0:37286 ip community-list standard 2_187_254 permit 65000:2 0:187 0:254 route-map calculator permit 20591 match community 2_187_254 set community 0:47498 ip community-list standard 2_42_237 permit 65000:2 0:42 0:237 ip community-list standard 2_63_158 permit 65000:2 0:63 0:158 ip community-list standard 2_79_126 permit 65000:2 0:79 0:126 route-map calculator permit 20592 match community 2_42_237 2_63_158 2_79_126 set community 0:9954 ip community-list standard 2_125_254 permit 65000:2 0:125 0:254 ip community-list standard 2_127_250 permit 65000:2 0:127 0:250 route-map calculator permit 20593 match community 2_125_254 2_127_250 set community 0:31750 ip community-list standard 2_66_243 permit 65000:2 0:66 0:243 ip community-list standard 2_81_198 permit 65000:2 0:81 0:198 ip community-list standard 2_99_162 permit 65000:2 0:99 0:162 route-map calculator permit 20594 match community 2_66_243 2_81_198 2_99_162 set community 0:16038 ip community-list standard 2_8_219 permit 65000:2 0:8 0:219 ip community-list standard 2_12_146 permit 65000:2 0:12 0:146 ip community-list standard 2_24_73 permit 65000:2 0:24 0:73 route-map calculator permit 20595 match community 2_8_219 2_12_146 2_24_73 set community 0:1752 ip community-list standard 2_161_188 permit 65000:2 0:161 0:188 route-map calculator permit 20596 match community 2_161_188 set community 0:30268 ip community-list standard 2_141_216 permit 65000:2 0:141 0:216 ip community-list standard 2_162_188 permit 65000:2 0:162 0:188 route-map calculator permit 20597 match community 2_141_216 2_162_188 set community 0:30456 ip community-list standard 2_149_183 permit 65000:2 0:149 0:183 route-map calculator permit 20598 match community 2_149_183 set community 0:27267 ip community-list standard 2_5_248 permit 65000:2 0:5 0:248 ip community-list standard 2_8_155 permit 65000:2 0:8 0:155 ip community-list standard 2_10_124 permit 65000:2 0:10 0:124 ip community-list standard 2_20_62 permit 65000:2 0:20 0:62 ip community-list standard 2_31_40 permit 65000:2 0:31 0:40 route-map calculator permit 20599 match community 2_5_248 2_8_155 2_10_124 2_20_62 2_31_40 set community 0:1240 ip community-list standard 2_1_1 permit 65000:2 0:1 0:1 ip community-list expanded c1 permit 1 ^65000:4_0:1_0:1$ ip community-list expanded c1 permit 2 ^65000:3_0:2_0:1$ ip community-list expanded c1 permit 3 ^65000:4_0:2_0:2$ ip community-list expanded c1 permit 4 ^65000:3_0:3_0:2$ ip community-list expanded c1 permit 5 ^65000:4_0:3_0:2$ ip community-list expanded c1 permit 6 ^65000:4_0:3_0:3$ ip community-list expanded c1 permit 7 ^65000:3_0:4_0:3$ ip community-list expanded c1 permit 8 ^65000:4_0:4_0:3$ ip community-list expanded c1 permit 9 ^65000:4_0:4_0:4$ ip community-list expanded c1 permit 10 ^65000:4_0:5_0:3$ ip community-list expanded c1 permit 11 ^65000:3_0:5_0:4$ ip community-list expanded c1 permit 12 ^65000:4_0:5_0:4$ ip community-list expanded c1 permit 13 ^65000:4_0:5_0:5$ ip community-list expanded c1 permit 14 ^65000:4_0:6_0:4$ ip community-list expanded c1 permit 15 ^65000:3_0:6_0:5$ ip community-list expanded c1 permit 16 ^65000:4_0:6_0:5$ ip community-list expanded c1 permit 17 ^65000:4_0:6_0:6$ ip community-list expanded c1 permit 18 ^65000:4_0:7_0:4$ ip community-list expanded c1 permit 19 ^65000:4_0:7_0:5$ ip community-list expanded c1 permit 20 ^65000:3_0:7_0:6$ ip community-list expanded c1 permit 21 ^65000:4_0:7_0:6$ ip community-list expanded c1 permit 22 ^65000:4_0:7_0:7$ ip community-list expanded c1 permit 23 ^65000:4_0:8_0:5$ ip community-list expanded c1 permit 24 ^65000:4_0:8_0:6$ ip community-list expanded c1 permit 25 ^65000:3_0:8_0:7$ ip community-list expanded c1 permit 26 ^65000:4_0:8_0:7$ ip community-list expanded c1 permit 27 ^65000:4_0:8_0:8$ ip community-list expanded c1 permit 28 ^65000:4_0:9_0:5$ ip community-list expanded c1 permit 29 ^65000:4_0:9_0:6$ ip community-list expanded c1 permit 30 ^65000:4_0:9_0:7$ ip community-list expanded c1 permit 31 ^65000:3_0:9_0:8$ ip community-list expanded c1 permit 32 ^65000:4_0:9_0:8$ ip community-list expanded c1 permit 33 ^65000:4_0:9_0:9$ ip community-list expanded c1 permit 34 ^65000:4_0:10_0:6$ ip community-list expanded c1 permit 35 ^65000:4_0:10_0:7$ ip community-list expanded c1 permit 36 ^65000:4_0:10_0:8$ ip community-list expanded c1 permit 37 ^65000:3_0:10_0:9$ ip community-list expanded c1 permit 38 ^65000:4_0:10_0:9$ ip community-list expanded c1 permit 39 ^65000:4_0:10_0:10$ ip community-list expanded c1 permit 40 ^65000:4_0:11_0:6$ ip community-list expanded c1 permit 41 ^65000:4_0:11_0:7$ ip community-list expanded c1 permit 42 ^65000:4_0:11_0:8$ ip community-list expanded c1 permit 43 ^65000:4_0:11_0:9$ ip community-list expanded c1 permit 44 ^65000:3_0:11_0:10$ ip community-list expanded c1 permit 45 ^65000:4_0:11_0:10$ ip community-list expanded c1 permit 46 ^65000:4_0:11_0:11$ ip community-list expanded c1 permit 47 ^65000:4_0:12_0:7$ ip community-list expanded c1 permit 48 ^65000:4_0:12_0:8$ ip community-list expanded c1 permit 49 ^65000:4_0:12_0:9$ ip community-list expanded c1 permit 50 ^65000:4_0:12_0:10$ ip community-list expanded c1 permit 51 ^65000:3_0:12_0:11$ ip community-list expanded c1 permit 52 ^65000:4_0:12_0:11$ ip community-list expanded c1 permit 53 ^65000:4_0:12_0:12$ ip community-list expanded c1 permit 54 ^65000:4_0:13_0:7$ ip community-list expanded c1 permit 55 ^65000:4_0:13_0:8$ ip community-list expanded c1 permit 56 ^65000:4_0:13_0:9$ ip community-list expanded c1 permit 57 ^65000:4_0:13_0:10$ ip community-list expanded c1 permit 58 ^65000:4_0:13_0:11$ ip community-list expanded c1 permit 59 ^65000:3_0:13_0:12$ ip community-list expanded c1 permit 60 ^65000:4_0:13_0:12$ ip community-list expanded c1 permit 61 ^65000:4_0:13_0:13$ ip community-list expanded c1 permit 62 ^65000:4_0:14_0:8$ ip community-list expanded c1 permit 63 ^65000:4_0:14_0:9$ ip community-list expanded c1 permit 64 ^65000:4_0:14_0:10$ ip community-list expanded c1 permit 65 ^65000:4_0:14_0:11$ ip community-list expanded c1 permit 66 ^65000:4_0:14_0:12$ ip community-list expanded c1 permit 67 ^65000:3_0:14_0:13$ ip community-list expanded c1 permit 68 ^65000:4_0:14_0:13$ ip community-list expanded c1 permit 69 ^65000:4_0:14_0:14$ ip community-list expanded c1 permit 70 ^65000:4_0:15_0:8$ ip community-list expanded c1 permit 71 ^65000:4_0:15_0:9$ ip community-list expanded c1 permit 72 ^65000:4_0:15_0:10$ ip community-list expanded c1 permit 73 ^65000:4_0:15_0:11$ ip community-list expanded c1 permit 74 ^65000:4_0:15_0:12$ ip community-list expanded c1 permit 75 ^65000:4_0:15_0:13$ ip community-list expanded c1 permit 76 ^65000:3_0:15_0:14$ ip community-list expanded c1 permit 77 ^65000:4_0:15_0:14$ ip community-list expanded c1 permit 78 ^65000:4_0:15_0:15$ ip community-list expanded c1 permit 79 ^65000:4_0:16_0:9$ ip community-list expanded c1 permit 80 ^65000:4_0:16_0:10$ ip community-list expanded c1 permit 81 ^65000:4_0:16_0:11$ ip community-list expanded c1 permit 82 ^65000:4_0:16_0:12$ ip community-list expanded c1 permit 83 ^65000:4_0:16_0:13$ ip community-list expanded c1 permit 84 ^65000:4_0:16_0:14$ ip community-list expanded c1 permit 85 ^65000:3_0:16_0:15$ ip community-list expanded c1 permit 86 ^65000:4_0:16_0:15$ ip community-list expanded c1 permit 87 ^65000:4_0:16_0:16$ ip community-list expanded c1 permit 88 ^65000:4_0:17_0:9$ ip community-list expanded c1 permit 89 ^65000:4_0:17_0:10$ ip community-list expanded c1 permit 90 ^65000:4_0:17_0:11$ ip community-list expanded c1 permit 91 ^65000:4_0:17_0:12$ ip community-list expanded c1 permit 92 ^65000:4_0:17_0:13$ ip community-list expanded c1 permit 93 ^65000:4_0:17_0:14$ ip community-list expanded c1 permit 94 ^65000:4_0:17_0:15$ ip community-list expanded c1 permit 95 ^65000:3_0:17_0:16$ ip community-list expanded c1 permit 96 ^65000:4_0:17_0:16$ ip community-list expanded c1 permit 97 ^65000:4_0:17_0:17$ ip community-list expanded c1 permit 98 ^65000:4_0:18_0:10$ ip community-list expanded c1 permit 99 ^65000:4_0:18_0:11$ ip community-list expanded c1 permit 100 ^65000:4_0:18_0:12$ ip community-list expanded c1 permit 101 ^65000:4_0:18_0:13$ ip community-list expanded c1 permit 102 ^65000:4_0:18_0:14$ ip community-list expanded c1 permit 103 ^65000:4_0:18_0:15$ ip community-list expanded c1 permit 104 ^65000:4_0:18_0:16$ ip community-list expanded c1 permit 105 ^65000:3_0:18_0:17$ ip community-list expanded c1 permit 106 ^65000:4_0:18_0:17$ ip community-list expanded c1 permit 107 ^65000:4_0:18_0:18$ ip community-list expanded c1 permit 108 ^65000:4_0:19_0:10$ ip community-list expanded c1 permit 109 ^65000:4_0:19_0:11$ ip community-list expanded c1 permit 110 ^65000:4_0:19_0:12$ ip community-list expanded c1 permit 111 ^65000:4_0:19_0:13$ ip community-list expanded c1 permit 112 ^65000:4_0:19_0:14$ ip community-list expanded c1 permit 113 ^65000:4_0:19_0:15$ ip community-list expanded c1 permit 114 ^65000:4_0:19_0:16$ ip community-list expanded c1 permit 115 ^65000:4_0:19_0:17$ ip community-list expanded c1 permit 116 ^65000:3_0:19_0:18$ ip community-list expanded c1 permit 117 ^65000:4_0:19_0:18$ ip community-list expanded c1 permit 118 ^65000:4_0:19_0:19$ ip community-list expanded c1 permit 119 ^65000:4_0:20_0:11$ ip community-list expanded c1 permit 120 ^65000:4_0:20_0:12$ ip community-list expanded c1 permit 121 ^65000:4_0:20_0:13$ ip community-list expanded c1 permit 122 ^65000:4_0:20_0:14$ ip community-list expanded c1 permit 123 ^65000:4_0:20_0:15$ ip community-list expanded c1 permit 124 ^65000:4_0:20_0:16$ ip community-list expanded c1 permit 125 ^65000:4_0:20_0:17$ ip community-list expanded c1 permit 126 ^65000:4_0:20_0:18$ ip community-list expanded c1 permit 127 ^65000:3_0:20_0:19$ ip community-list expanded c1 permit 128 ^65000:4_0:20_0:19$ ip community-list expanded c1 permit 129 ^65000:4_0:20_0:20$ ip community-list expanded c1 permit 130 ^65000:4_0:21_0:11$ ip community-list expanded c1 permit 131 ^65000:4_0:21_0:12$ ip community-list expanded c1 permit 132 ^65000:4_0:21_0:13$ ip community-list expanded c1 permit 133 ^65000:4_0:21_0:14$ ip community-list expanded c1 permit 134 ^65000:4_0:21_0:15$ ip community-list expanded c1 permit 135 ^65000:4_0:21_0:16$ ip community-list expanded c1 permit 136 ^65000:4_0:21_0:17$ ip community-list expanded c1 permit 137 ^65000:4_0:21_0:18$ ip community-list expanded c1 permit 138 ^65000:4_0:21_0:19$ ip community-list expanded c1 permit 139 ^65000:3_0:21_0:20$ ip community-list expanded c1 permit 140 ^65000:4_0:21_0:20$ ip community-list expanded c1 permit 141 ^65000:4_0:21_0:21$ ip community-list expanded c1 permit 142 ^65000:4_0:22_0:12$ ip community-list expanded c1 permit 143 ^65000:4_0:22_0:13$ ip community-list expanded c1 permit 144 ^65000:4_0:22_0:14$ ip community-list expanded c1 permit 145 ^65000:4_0:22_0:15$ ip community-list expanded c1 permit 146 ^65000:4_0:22_0:16$ ip community-list expanded c1 permit 147 ^65000:4_0:22_0:17$ ip community-list expanded c1 permit 148 ^65000:4_0:22_0:18$ ip community-list expanded c1 permit 149 ^65000:4_0:22_0:19$ ip community-list expanded c1 permit 150 ^65000:4_0:22_0:20$ ip community-list expanded c1 permit 151 ^65000:3_0:22_0:21$ ip community-list expanded c1 permit 152 ^65000:4_0:22_0:21$ ip community-list expanded c1 permit 153 ^65000:4_0:22_0:22$ ip community-list expanded c1 permit 154 ^65000:4_0:23_0:12$ ip community-list expanded c1 permit 155 ^65000:4_0:23_0:13$ ip community-list expanded c1 permit 156 ^65000:4_0:23_0:14$ ip community-list expanded c1 permit 157 ^65000:4_0:23_0:15$ ip community-list expanded c1 permit 158 ^65000:4_0:23_0:16$ ip community-list expanded c1 permit 159 ^65000:4_0:23_0:17$ ip community-list expanded c1 permit 160 ^65000:4_0:23_0:18$ ip community-list expanded c1 permit 161 ^65000:4_0:23_0:19$ ip community-list expanded c1 permit 162 ^65000:4_0:23_0:20$ ip community-list expanded c1 permit 163 ^65000:4_0:23_0:21$ ip community-list expanded c1 permit 164 ^65000:3_0:23_0:22$ ip community-list expanded c1 permit 165 ^65000:4_0:23_0:22$ ip community-list expanded c1 permit 166 ^65000:4_0:23_0:23$ ip community-list expanded c1 permit 167 ^65000:4_0:24_0:13$ ip community-list expanded c1 permit 168 ^65000:4_0:24_0:14$ ip community-list expanded c1 permit 169 ^65000:4_0:24_0:15$ ip community-list expanded c1 permit 170 ^65000:4_0:24_0:16$ ip community-list expanded c1 permit 171 ^65000:4_0:24_0:17$ ip community-list expanded c1 permit 172 ^65000:4_0:24_0:18$ ip community-list expanded c1 permit 173 ^65000:4_0:24_0:19$ ip community-list expanded c1 permit 174 ^65000:4_0:24_0:20$ ip community-list expanded c1 permit 175 ^65000:4_0:24_0:21$ ip community-list expanded c1 permit 176 ^65000:4_0:24_0:22$ ip community-list expanded c1 permit 177 ^65000:3_0:24_0:23$ ip community-list expanded c1 permit 178 ^65000:4_0:24_0:23$ ip community-list expanded c1 permit 179 ^65000:4_0:24_0:24$ ip community-list expanded c1 permit 180 ^65000:4_0:25_0:13$ ip community-list expanded c1 permit 181 ^65000:4_0:25_0:14$ ip community-list expanded c1 permit 182 ^65000:4_0:25_0:15$ ip community-list expanded c1 permit 183 ^65000:4_0:25_0:16$ ip community-list expanded c1 permit 184 ^65000:4_0:25_0:17$ ip community-list expanded c1 permit 185 ^65000:4_0:25_0:18$ ip community-list expanded c1 permit 186 ^65000:4_0:25_0:19$ ip community-list expanded c1 permit 187 ^65000:4_0:25_0:20$ ip community-list expanded c1 permit 188 ^65000:4_0:25_0:21$ ip community-list expanded c1 permit 189 ^65000:4_0:25_0:22$ ip community-list expanded c1 permit 190 ^65000:4_0:25_0:23$ ip community-list expanded c1 permit 191 ^65000:3_0:25_0:24$ ip community-list expanded c1 permit 192 ^65000:4_0:25_0:24$ ip community-list expanded c1 permit 193 ^65000:4_0:25_0:25$ ip community-list expanded c1 permit 194 ^65000:4_0:26_0:14$ ip community-list expanded c1 permit 195 ^65000:4_0:26_0:15$ ip community-list expanded c1 permit 196 ^65000:4_0:26_0:16$ ip community-list expanded c1 permit 197 ^65000:4_0:26_0:17$ ip community-list expanded c1 permit 198 ^65000:4_0:26_0:18$ ip community-list expanded c1 permit 199 ^65000:4_0:26_0:19$ ip community-list expanded c1 permit 200 ^65000:4_0:26_0:20$ ip community-list expanded c1 permit 201 ^65000:4_0:26_0:21$ ip community-list expanded c1 permit 202 ^65000:4_0:26_0:22$ ip community-list expanded c1 permit 203 ^65000:4_0:26_0:23$ ip community-list expanded c1 permit 204 ^65000:4_0:26_0:24$ ip community-list expanded c1 permit 205 ^65000:3_0:26_0:25$ ip community-list expanded c1 permit 206 ^65000:4_0:26_0:25$ ip community-list expanded c1 permit 207 ^65000:4_0:26_0:26$ ip community-list expanded c1 permit 208 ^65000:4_0:27_0:14$ ip community-list expanded c1 permit 209 ^65000:4_0:27_0:15$ ip community-list expanded c1 permit 210 ^65000:4_0:27_0:16$ ip community-list expanded c1 permit 211 ^65000:4_0:27_0:17$ ip community-list expanded c1 permit 212 ^65000:4_0:27_0:18$ ip community-list expanded c1 permit 213 ^65000:4_0:27_0:19$ ip community-list expanded c1 permit 214 ^65000:4_0:27_0:20$ ip community-list expanded c1 permit 215 ^65000:4_0:27_0:21$ ip community-list expanded c1 permit 216 ^65000:4_0:27_0:22$ ip community-list expanded c1 permit 217 ^65000:4_0:27_0:23$ ip community-list expanded c1 permit 218 ^65000:4_0:27_0:24$ ip community-list expanded c1 permit 219 ^65000:4_0:27_0:25$ ip community-list expanded c1 permit 220 ^65000:3_0:27_0:26$ ip community-list expanded c1 permit 221 ^65000:4_0:27_0:26$ ip community-list expanded c1 permit 222 ^65000:4_0:27_0:27$ ip community-list expanded c1 permit 223 ^65000:4_0:28_0:15$ ip community-list expanded c1 permit 224 ^65000:4_0:28_0:16$ ip community-list expanded c1 permit 225 ^65000:4_0:28_0:17$ ip community-list expanded c1 permit 226 ^65000:4_0:28_0:18$ ip community-list expanded c1 permit 227 ^65000:4_0:28_0:19$ ip community-list expanded c1 permit 228 ^65000:4_0:28_0:20$ ip community-list expanded c1 permit 229 ^65000:4_0:28_0:21$ ip community-list expanded c1 permit 230 ^65000:4_0:28_0:22$ ip community-list expanded c1 permit 231 ^65000:4_0:28_0:23$ ip community-list expanded c1 permit 232 ^65000:4_0:28_0:24$ ip community-list expanded c1 permit 233 ^65000:4_0:28_0:25$ ip community-list expanded c1 permit 234 ^65000:4_0:28_0:26$ ip community-list expanded c1 permit 235 ^65000:3_0:28_0:27$ ip community-list expanded c1 permit 236 ^65000:4_0:28_0:27$ ip community-list expanded c1 permit 237 ^65000:4_0:28_0:28$ ip community-list expanded c1 permit 238 ^65000:4_0:29_0:15$ ip community-list expanded c1 permit 239 ^65000:4_0:29_0:16$ ip community-list expanded c1 permit 240 ^65000:4_0:29_0:17$ ip community-list expanded c1 permit 241 ^65000:4_0:29_0:18$ ip community-list expanded c1 permit 242 ^65000:4_0:29_0:19$ ip community-list expanded c1 permit 243 ^65000:4_0:29_0:20$ ip community-list expanded c1 permit 244 ^65000:4_0:29_0:21$ ip community-list expanded c1 permit 245 ^65000:4_0:29_0:22$ ip community-list expanded c1 permit 246 ^65000:4_0:29_0:23$ ip community-list expanded c1 permit 247 ^65000:4_0:29_0:24$ ip community-list expanded c1 permit 248 ^65000:4_0:29_0:25$ ip community-list expanded c1 permit 249 ^65000:4_0:29_0:26$ ip community-list expanded c1 permit 250 ^65000:4_0:29_0:27$ ip community-list expanded c1 permit 251 ^65000:3_0:29_0:28$ ip community-list expanded c1 permit 252 ^65000:4_0:29_0:28$ ip community-list expanded c1 permit 253 ^65000:4_0:29_0:29$ ip community-list expanded c1 permit 254 ^65000:4_0:30_0:16$ ip community-list expanded c1 permit 255 ^65000:4_0:30_0:17$ ip community-list expanded c1 permit 256 ^65000:4_0:30_0:18$ ip community-list expanded c1 permit 257 ^65000:4_0:30_0:19$ ip community-list expanded c1 permit 258 ^65000:4_0:30_0:20$ ip community-list expanded c1 permit 259 ^65000:4_0:30_0:21$ ip community-list expanded c1 permit 260 ^65000:4_0:30_0:22$ ip community-list expanded c1 permit 261 ^65000:4_0:30_0:23$ ip community-list expanded c1 permit 262 ^65000:4_0:30_0:24$ ip community-list expanded c1 permit 263 ^65000:4_0:30_0:25$ ip community-list expanded c1 permit 264 ^65000:4_0:30_0:26$ ip community-list expanded c1 permit 265 ^65000:4_0:30_0:27$ ip community-list expanded c1 permit 266 ^65000:4_0:30_0:28$ ip community-list expanded c1 permit 267 ^65000:3_0:30_0:29$ ip community-list expanded c1 permit 268 ^65000:4_0:30_0:29$ ip community-list expanded c1 permit 269 ^65000:4_0:30_0:30$ ip community-list expanded c1 permit 270 ^65000:4_0:31_0:16$ ip community-list expanded c1 permit 271 ^65000:4_0:31_0:17$ ip community-list expanded c1 permit 272 ^65000:4_0:31_0:18$ ip community-list expanded c1 permit 273 ^65000:4_0:31_0:19$ ip community-list expanded c1 permit 274 ^65000:4_0:31_0:20$ ip community-list expanded c1 permit 275 ^65000:4_0:31_0:21$ ip community-list expanded c1 permit 276 ^65000:4_0:31_0:22$ ip community-list expanded c1 permit 277 ^65000:4_0:31_0:23$ ip community-list expanded c1 permit 278 ^65000:4_0:31_0:24$ ip community-list expanded c1 permit 279 ^65000:4_0:31_0:25$ ip community-list expanded c1 permit 280 ^65000:4_0:31_0:26$ ip community-list expanded c1 permit 281 ^65000:4_0:31_0:27$ ip community-list expanded c1 permit 282 ^65000:4_0:31_0:28$ ip community-list expanded c1 permit 283 ^65000:4_0:31_0:29$ ip community-list expanded c1 permit 284 ^65000:3_0:31_0:30$ ip community-list expanded c1 permit 285 ^65000:4_0:31_0:30$ ip community-list expanded c1 permit 286 ^65000:4_0:31_0:31$ ip community-list expanded c1 permit 287 ^65000:4_0:32_0:17$ ip community-list expanded c1 permit 288 ^65000:4_0:32_0:18$ ip community-list expanded c1 permit 289 ^65000:4_0:32_0:19$ ip community-list expanded c1 permit 290 ^65000:4_0:32_0:20$ ip community-list expanded c1 permit 291 ^65000:4_0:32_0:21$ ip community-list expanded c1 permit 292 ^65000:4_0:32_0:22$ ip community-list expanded c1 permit 293 ^65000:4_0:32_0:23$ ip community-list expanded c1 permit 294 ^65000:4_0:32_0:24$ ip community-list expanded c1 permit 295 ^65000:4_0:32_0:25$ ip community-list expanded c1 permit 296 ^65000:4_0:32_0:26$ ip community-list expanded c1 permit 297 ^65000:4_0:32_0:27$ ip community-list expanded c1 permit 298 ^65000:4_0:32_0:28$ ip community-list expanded c1 permit 299 ^65000:4_0:32_0:29$ ip community-list expanded c1 permit 300 ^65000:4_0:32_0:30$ ip community-list expanded c1 permit 301 ^65000:3_0:32_0:31$ ip community-list expanded c1 permit 302 ^65000:4_0:32_0:31$ ip community-list expanded c1 permit 303 ^65000:4_0:32_0:32$ ip community-list expanded c1 permit 304 ^65000:4_0:33_0:17$ ip community-list expanded c1 permit 305 ^65000:4_0:33_0:18$ ip community-list expanded c1 permit 306 ^65000:4_0:33_0:19$ ip community-list expanded c1 permit 307 ^65000:4_0:33_0:20$ ip community-list expanded c1 permit 308 ^65000:4_0:33_0:21$ ip community-list expanded c1 permit 309 ^65000:4_0:33_0:22$ ip community-list expanded c1 permit 310 ^65000:4_0:33_0:23$ ip community-list expanded c1 permit 311 ^65000:4_0:33_0:24$ ip community-list expanded c1 permit 312 ^65000:4_0:33_0:25$ ip community-list expanded c1 permit 313 ^65000:4_0:33_0:26$ ip community-list expanded c1 permit 314 ^65000:4_0:33_0:27$ ip community-list expanded c1 permit 315 ^65000:4_0:33_0:28$ ip community-list expanded c1 permit 316 ^65000:4_0:33_0:29$ ip community-list expanded c1 permit 317 ^65000:4_0:33_0:30$ ip community-list expanded c1 permit 318 ^65000:4_0:33_0:31$ ip community-list expanded c1 permit 319 ^65000:3_0:33_0:32$ ip community-list expanded c1 permit 320 ^65000:4_0:33_0:32$ ip community-list expanded c1 permit 321 ^65000:4_0:33_0:33$ ip community-list expanded c1 permit 322 ^65000:4_0:34_0:18$ ip community-list expanded c1 permit 323 ^65000:4_0:34_0:19$ ip community-list expanded c1 permit 324 ^65000:4_0:34_0:20$ ip community-list expanded c1 permit 325 ^65000:4_0:34_0:21$ ip community-list expanded c1 permit 326 ^65000:4_0:34_0:22$ ip community-list expanded c1 permit 327 ^65000:4_0:34_0:23$ ip community-list expanded c1 permit 328 ^65000:4_0:34_0:24$ ip community-list expanded c1 permit 329 ^65000:4_0:34_0:25$ ip community-list expanded c1 permit 330 ^65000:4_0:34_0:26$ ip community-list expanded c1 permit 331 ^65000:4_0:34_0:27$ ip community-list expanded c1 permit 332 ^65000:4_0:34_0:28$ ip community-list expanded c1 permit 333 ^65000:4_0:34_0:29$ ip community-list expanded c1 permit 334 ^65000:4_0:34_0:30$ ip community-list expanded c1 permit 335 ^65000:4_0:34_0:31$ ip community-list expanded c1 permit 336 ^65000:4_0:34_0:32$ ip community-list expanded c1 permit 337 ^65000:3_0:34_0:33$ ip community-list expanded c1 permit 338 ^65000:4_0:34_0:33$ ip community-list expanded c1 permit 339 ^65000:4_0:34_0:34$ ip community-list expanded c1 permit 340 ^65000:4_0:35_0:18$ ip community-list expanded c1 permit 341 ^65000:4_0:35_0:19$ ip community-list expanded c1 permit 342 ^65000:4_0:35_0:20$ ip community-list expanded c1 permit 343 ^65000:4_0:35_0:21$ ip community-list expanded c1 permit 344 ^65000:4_0:35_0:22$ ip community-list expanded c1 permit 345 ^65000:4_0:35_0:23$ ip community-list expanded c1 permit 346 ^65000:4_0:35_0:24$ ip community-list expanded c1 permit 347 ^65000:4_0:35_0:25$ ip community-list expanded c1 permit 348 ^65000:4_0:35_0:26$ ip community-list expanded c1 permit 349 ^65000:4_0:35_0:27$ ip community-list expanded c1 permit 350 ^65000:4_0:35_0:28$ ip community-list expanded c1 permit 351 ^65000:4_0:35_0:29$ ip community-list expanded c1 permit 352 ^65000:4_0:35_0:30$ ip community-list expanded c1 permit 353 ^65000:4_0:35_0:31$ ip community-list expanded c1 permit 354 ^65000:4_0:35_0:32$ ip community-list expanded c1 permit 355 ^65000:4_0:35_0:33$ ip community-list expanded c1 permit 356 ^65000:3_0:35_0:34$ ip community-list expanded c1 permit 357 ^65000:4_0:35_0:34$ ip community-list expanded c1 permit 358 ^65000:4_0:35_0:35$ ip community-list expanded c1 permit 359 ^65000:4_0:36_0:19$ ip community-list expanded c1 permit 360 ^65000:4_0:36_0:20$ ip community-list expanded c1 permit 361 ^65000:4_0:36_0:21$ ip community-list expanded c1 permit 362 ^65000:4_0:36_0:22$ ip community-list expanded c1 permit 363 ^65000:4_0:36_0:23$ ip community-list expanded c1 permit 364 ^65000:4_0:36_0:24$ ip community-list expanded c1 permit 365 ^65000:4_0:36_0:25$ ip community-list expanded c1 permit 366 ^65000:4_0:36_0:26$ ip community-list expanded c1 permit 367 ^65000:4_0:36_0:27$ ip community-list expanded c1 permit 368 ^65000:4_0:36_0:28$ ip community-list expanded c1 permit 369 ^65000:4_0:36_0:29$ ip community-list expanded c1 permit 370 ^65000:4_0:36_0:30$ ip community-list expanded c1 permit 371 ^65000:4_0:36_0:31$ ip community-list expanded c1 permit 372 ^65000:4_0:36_0:32$ ip community-list expanded c1 permit 373 ^65000:4_0:36_0:33$ ip community-list expanded c1 permit 374 ^65000:4_0:36_0:34$ ip community-list expanded c1 permit 375 ^65000:3_0:36_0:35$ ip community-list expanded c1 permit 376 ^65000:4_0:36_0:35$ ip community-list expanded c1 permit 377 ^65000:4_0:36_0:36$ ip community-list expanded c1 permit 378 ^65000:4_0:37_0:19$ ip community-list expanded c1 permit 379 ^65000:4_0:37_0:20$ ip community-list expanded c1 permit 380 ^65000:4_0:37_0:21$ ip community-list expanded c1 permit 381 ^65000:4_0:37_0:22$ ip community-list expanded c1 permit 382 ^65000:4_0:37_0:23$ ip community-list expanded c1 permit 383 ^65000:4_0:37_0:24$ ip community-list expanded c1 permit 384 ^65000:4_0:37_0:25$ ip community-list expanded c1 permit 385 ^65000:4_0:37_0:26$ ip community-list expanded c1 permit 386 ^65000:4_0:37_0:27$ ip community-list expanded c1 permit 387 ^65000:4_0:37_0:28$ ip community-list expanded c1 permit 388 ^65000:4_0:37_0:29$ ip community-list expanded c1 permit 389 ^65000:4_0:37_0:30$ ip community-list expanded c1 permit 390 ^65000:4_0:37_0:31$ ip community-list expanded c1 permit 391 ^65000:4_0:37_0:32$ ip community-list expanded c1 permit 392 ^65000:4_0:37_0:33$ ip community-list expanded c1 permit 393 ^65000:4_0:37_0:34$ ip community-list expanded c1 permit 394 ^65000:4_0:37_0:35$ ip community-list expanded c1 permit 395 ^65000:3_0:37_0:36$ ip community-list expanded c1 permit 396 ^65000:4_0:37_0:36$ ip community-list expanded c1 permit 397 ^65000:4_0:37_0:37$ ip community-list expanded c1 permit 398 ^65000:4_0:38_0:20$ ip community-list expanded c1 permit 399 ^65000:4_0:38_0:21$ ip community-list expanded c1 permit 400 ^65000:4_0:38_0:22$ ip community-list expanded c1 permit 401 ^65000:4_0:38_0:23$ ip community-list expanded c1 permit 402 ^65000:4_0:38_0:24$ ip community-list expanded c1 permit 403 ^65000:4_0:38_0:25$ ip community-list expanded c1 permit 404 ^65000:4_0:38_0:26$ ip community-list expanded c1 permit 405 ^65000:4_0:38_0:27$ ip community-list expanded c1 permit 406 ^65000:4_0:38_0:28$ ip community-list expanded c1 permit 407 ^65000:4_0:38_0:29$ ip community-list expanded c1 permit 408 ^65000:4_0:38_0:30$ ip community-list expanded c1 permit 409 ^65000:4_0:38_0:31$ ip community-list expanded c1 permit 410 ^65000:4_0:38_0:32$ ip community-list expanded c1 permit 411 ^65000:4_0:38_0:33$ ip community-list expanded c1 permit 412 ^65000:4_0:38_0:34$ ip community-list expanded c1 permit 413 ^65000:4_0:38_0:35$ ip community-list expanded c1 permit 414 ^65000:4_0:38_0:36$ ip community-list expanded c1 permit 415 ^65000:3_0:38_0:37$ ip community-list expanded c1 permit 416 ^65000:4_0:38_0:37$ ip community-list expanded c1 permit 417 ^65000:4_0:38_0:38$ ip community-list expanded c1 permit 418 ^65000:4_0:39_0:20$ ip community-list expanded c1 permit 419 ^65000:4_0:39_0:21$ ip community-list expanded c1 permit 420 ^65000:4_0:39_0:22$ ip community-list expanded c1 permit 421 ^65000:4_0:39_0:23$ ip community-list expanded c1 permit 422 ^65000:4_0:39_0:24$ ip community-list expanded c1 permit 423 ^65000:4_0:39_0:25$ ip community-list expanded c1 permit 424 ^65000:4_0:39_0:26$ ip community-list expanded c1 permit 425 ^65000:4_0:39_0:27$ ip community-list expanded c1 permit 426 ^65000:4_0:39_0:28$ ip community-list expanded c1 permit 427 ^65000:4_0:39_0:29$ ip community-list expanded c1 permit 428 ^65000:4_0:39_0:30$ ip community-list expanded c1 permit 429 ^65000:4_0:39_0:31$ ip community-list expanded c1 permit 430 ^65000:4_0:39_0:32$ ip community-list expanded c1 permit 431 ^65000:4_0:39_0:33$ ip community-list expanded c1 permit 432 ^65000:4_0:39_0:34$ ip community-list expanded c1 permit 433 ^65000:4_0:39_0:35$ ip community-list expanded c1 permit 434 ^65000:4_0:39_0:36$ ip community-list expanded c1 permit 435 ^65000:4_0:39_0:37$ ip community-list expanded c1 permit 436 ^65000:3_0:39_0:38$ ip community-list expanded c1 permit 437 ^65000:4_0:39_0:38$ ip community-list expanded c1 permit 438 ^65000:4_0:39_0:39$ ip community-list expanded c1 permit 439 ^65000:4_0:40_0:21$ ip community-list expanded c1 permit 440 ^65000:4_0:40_0:22$ ip community-list expanded c1 permit 441 ^65000:4_0:40_0:23$ ip community-list expanded c1 permit 442 ^65000:4_0:40_0:24$ ip community-list expanded c1 permit 443 ^65000:4_0:40_0:25$ ip community-list expanded c1 permit 444 ^65000:4_0:40_0:26$ ip community-list expanded c1 permit 445 ^65000:4_0:40_0:27$ ip community-list expanded c1 permit 446 ^65000:4_0:40_0:28$ ip community-list expanded c1 permit 447 ^65000:4_0:40_0:29$ ip community-list expanded c1 permit 448 ^65000:4_0:40_0:30$ ip community-list expanded c1 permit 449 ^65000:4_0:40_0:31$ ip community-list expanded c1 permit 450 ^65000:4_0:40_0:32$ ip community-list expanded c1 permit 451 ^65000:4_0:40_0:33$ ip community-list expanded c1 permit 452 ^65000:4_0:40_0:34$ ip community-list expanded c1 permit 453 ^65000:4_0:40_0:35$ ip community-list expanded c1 permit 454 ^65000:4_0:40_0:36$ ip community-list expanded c1 permit 455 ^65000:4_0:40_0:37$ ip community-list expanded c1 permit 456 ^65000:4_0:40_0:38$ ip community-list expanded c1 permit 457 ^65000:3_0:40_0:39$ ip community-list expanded c1 permit 458 ^65000:4_0:40_0:39$ ip community-list expanded c1 permit 459 ^65000:4_0:40_0:40$ ip community-list expanded c1 permit 460 ^65000:4_0:41_0:21$ ip community-list expanded c1 permit 461 ^65000:4_0:41_0:22$ ip community-list expanded c1 permit 462 ^65000:4_0:41_0:23$ ip community-list expanded c1 permit 463 ^65000:4_0:41_0:24$ ip community-list expanded c1 permit 464 ^65000:4_0:41_0:25$ ip community-list expanded c1 permit 465 ^65000:4_0:41_0:26$ ip community-list expanded c1 permit 466 ^65000:4_0:41_0:27$ ip community-list expanded c1 permit 467 ^65000:4_0:41_0:28$ ip community-list expanded c1 permit 468 ^65000:4_0:41_0:29$ ip community-list expanded c1 permit 469 ^65000:4_0:41_0:30$ ip community-list expanded c1 permit 470 ^65000:4_0:41_0:31$ ip community-list expanded c1 permit 471 ^65000:4_0:41_0:32$ ip community-list expanded c1 permit 472 ^65000:4_0:41_0:33$ ip community-list expanded c1 permit 473 ^65000:4_0:41_0:34$ ip community-list expanded c1 permit 474 ^65000:4_0:41_0:35$ ip community-list expanded c1 permit 475 ^65000:4_0:41_0:36$ ip community-list expanded c1 permit 476 ^65000:4_0:41_0:37$ ip community-list expanded c1 permit 477 ^65000:4_0:41_0:38$ ip community-list expanded c1 permit 478 ^65000:4_0:41_0:39$ ip community-list expanded c1 permit 479 ^65000:3_0:41_0:40$ ip community-list expanded c1 permit 480 ^65000:4_0:41_0:40$ ip community-list expanded c1 permit 481 ^65000:4_0:41_0:41$ ip community-list expanded c1 permit 482 ^65000:4_0:42_0:22$ ip community-list expanded c1 permit 483 ^65000:4_0:42_0:23$ ip community-list expanded c1 permit 484 ^65000:4_0:42_0:24$ ip community-list expanded c1 permit 485 ^65000:4_0:42_0:25$ ip community-list expanded c1 permit 486 ^65000:4_0:42_0:26$ ip community-list expanded c1 permit 487 ^65000:4_0:42_0:27$ ip community-list expanded c1 permit 488 ^65000:4_0:42_0:28$ ip community-list expanded c1 permit 489 ^65000:4_0:42_0:29$ ip community-list expanded c1 permit 490 ^65000:4_0:42_0:30$ ip community-list expanded c1 permit 491 ^65000:4_0:42_0:31$ ip community-list expanded c1 permit 492 ^65000:4_0:42_0:32$ ip community-list expanded c1 permit 493 ^65000:4_0:42_0:33$ ip community-list expanded c1 permit 494 ^65000:4_0:42_0:34$ ip community-list expanded c1 permit 495 ^65000:4_0:42_0:35$ ip community-list expanded c1 permit 496 ^65000:4_0:42_0:36$ ip community-list expanded c1 permit 497 ^65000:4_0:42_0:37$ ip community-list expanded c1 permit 498 ^65000:4_0:42_0:38$ ip community-list expanded c1 permit 499 ^65000:4_0:42_0:39$ ip community-list expanded c1 permit 500 ^65000:4_0:42_0:40$ ip community-list expanded c1 permit 501 ^65000:3_0:42_0:41$ ip community-list expanded c1 permit 502 ^65000:4_0:42_0:41$ ip community-list expanded c1 permit 503 ^65000:4_0:42_0:42$ ip community-list expanded c1 permit 504 ^65000:4_0:43_0:22$ ip community-list expanded c1 permit 505 ^65000:4_0:43_0:23$ ip community-list expanded c1 permit 506 ^65000:4_0:43_0:24$ ip community-list expanded c1 permit 507 ^65000:4_0:43_0:25$ ip community-list expanded c1 permit 508 ^65000:4_0:43_0:26$ ip community-list expanded c1 permit 509 ^65000:4_0:43_0:27$ ip community-list expanded c1 permit 510 ^65000:4_0:43_0:28$ ip community-list expanded c1 permit 511 ^65000:4_0:43_0:29$ ip community-list expanded c1 permit 512 ^65000:4_0:43_0:30$ ip community-list expanded c1 permit 513 ^65000:4_0:43_0:31$ ip community-list expanded c1 permit 514 ^65000:4_0:43_0:32$ ip community-list expanded c1 permit 515 ^65000:4_0:43_0:33$ ip community-list expanded c1 permit 516 ^65000:4_0:43_0:34$ ip community-list expanded c1 permit 517 ^65000:4_0:43_0:35$ ip community-list expanded c1 permit 518 ^65000:4_0:43_0:36$ ip community-list expanded c1 permit 519 ^65000:4_0:43_0:37$ ip community-list expanded c1 permit 520 ^65000:4_0:43_0:38$ ip community-list expanded c1 permit 521 ^65000:4_0:43_0:39$ ip community-list expanded c1 permit 522 ^65000:4_0:43_0:40$ ip community-list expanded c1 permit 523 ^65000:4_0:43_0:41$ ip community-list expanded c1 permit 524 ^65000:3_0:43_0:42$ ip community-list expanded c1 permit 525 ^65000:4_0:43_0:42$ ip community-list expanded c1 permit 526 ^65000:4_0:43_0:43$ ip community-list expanded c1 permit 527 ^65000:4_0:44_0:23$ ip community-list expanded c1 permit 528 ^65000:4_0:44_0:24$ ip community-list expanded c1 permit 529 ^65000:4_0:44_0:25$ ip community-list expanded c1 permit 530 ^65000:4_0:44_0:26$ ip community-list expanded c1 permit 531 ^65000:4_0:44_0:27$ ip community-list expanded c1 permit 532 ^65000:4_0:44_0:28$ ip community-list expanded c1 permit 533 ^65000:4_0:44_0:29$ ip community-list expanded c1 permit 534 ^65000:4_0:44_0:30$ ip community-list expanded c1 permit 535 ^65000:4_0:44_0:31$ ip community-list expanded c1 permit 536 ^65000:4_0:44_0:32$ ip community-list expanded c1 permit 537 ^65000:4_0:44_0:33$ ip community-list expanded c1 permit 538 ^65000:4_0:44_0:34$ ip community-list expanded c1 permit 539 ^65000:4_0:44_0:35$ ip community-list expanded c1 permit 540 ^65000:4_0:44_0:36$ ip community-list expanded c1 permit 541 ^65000:4_0:44_0:37$ ip community-list expanded c1 permit 542 ^65000:4_0:44_0:38$ ip community-list expanded c1 permit 543 ^65000:4_0:44_0:39$ ip community-list expanded c1 permit 544 ^65000:4_0:44_0:40$ ip community-list expanded c1 permit 545 ^65000:4_0:44_0:41$ ip community-list expanded c1 permit 546 ^65000:4_0:44_0:42$ ip community-list expanded c1 permit 547 ^65000:3_0:44_0:43$ ip community-list expanded c1 permit 548 ^65000:4_0:44_0:43$ ip community-list expanded c1 permit 549 ^65000:4_0:44_0:44$ ip community-list expanded c1 permit 550 ^65000:4_0:45_0:23$ ip community-list expanded c1 permit 551 ^65000:4_0:45_0:24$ ip community-list expanded c1 permit 552 ^65000:4_0:45_0:25$ ip community-list expanded c1 permit 553 ^65000:4_0:45_0:26$ ip community-list expanded c1 permit 554 ^65000:4_0:45_0:27$ ip community-list expanded c1 permit 555 ^65000:4_0:45_0:28$ ip community-list expanded c1 permit 556 ^65000:4_0:45_0:29$ ip community-list expanded c1 permit 557 ^65000:4_0:45_0:30$ ip community-list expanded c1 permit 558 ^65000:4_0:45_0:31$ ip community-list expanded c1 permit 559 ^65000:4_0:45_0:32$ ip community-list expanded c1 permit 560 ^65000:4_0:45_0:33$ ip community-list expanded c1 permit 561 ^65000:4_0:45_0:34$ ip community-list expanded c1 permit 562 ^65000:4_0:45_0:35$ ip community-list expanded c1 permit 563 ^65000:4_0:45_0:36$ ip community-list expanded c1 permit 564 ^65000:4_0:45_0:37$ ip community-list expanded c1 permit 565 ^65000:4_0:45_0:38$ ip community-list expanded c1 permit 566 ^65000:4_0:45_0:39$ ip community-list expanded c1 permit 567 ^65000:4_0:45_0:40$ ip community-list expanded c1 permit 568 ^65000:4_0:45_0:41$ ip community-list expanded c1 permit 569 ^65000:4_0:45_0:42$ ip community-list expanded c1 permit 570 ^65000:4_0:45_0:43$ ip community-list expanded c1 permit 571 ^65000:3_0:45_0:44$ ip community-list expanded c1 permit 572 ^65000:4_0:45_0:44$ ip community-list expanded c1 permit 573 ^65000:4_0:45_0:45$ ip community-list expanded c1 permit 574 ^65000:4_0:46_0:24$ ip community-list expanded c1 permit 575 ^65000:4_0:46_0:25$ ip community-list expanded c1 permit 576 ^65000:4_0:46_0:26$ ip community-list expanded c1 permit 577 ^65000:4_0:46_0:27$ ip community-list expanded c1 permit 578 ^65000:4_0:46_0:28$ ip community-list expanded c1 permit 579 ^65000:4_0:46_0:29$ ip community-list expanded c1 permit 580 ^65000:4_0:46_0:30$ ip community-list expanded c1 permit 581 ^65000:4_0:46_0:31$ ip community-list expanded c1 permit 582 ^65000:4_0:46_0:32$ ip community-list expanded c1 permit 583 ^65000:4_0:46_0:33$ ip community-list expanded c1 permit 584 ^65000:4_0:46_0:34$ ip community-list expanded c1 permit 585 ^65000:4_0:46_0:35$ ip community-list expanded c1 permit 586 ^65000:4_0:46_0:36$ ip community-list expanded c1 permit 587 ^65000:4_0:46_0:37$ ip community-list expanded c1 permit 588 ^65000:4_0:46_0:38$ ip community-list expanded c1 permit 589 ^65000:4_0:46_0:39$ ip community-list expanded c1 permit 590 ^65000:4_0:46_0:40$ ip community-list expanded c1 permit 591 ^65000:4_0:46_0:41$ ip community-list expanded c1 permit 592 ^65000:4_0:46_0:42$ ip community-list expanded c1 permit 593 ^65000:4_0:46_0:43$ ip community-list expanded c1 permit 594 ^65000:4_0:46_0:44$ ip community-list expanded c1 permit 595 ^65000:3_0:46_0:45$ ip community-list expanded c1 permit 596 ^65000:4_0:46_0:45$ ip community-list expanded c1 permit 597 ^65000:4_0:46_0:46$ ip community-list expanded c1 permit 598 ^65000:4_0:47_0:24$ ip community-list expanded c1 permit 599 ^65000:4_0:47_0:25$ ip community-list expanded c1 permit 600 ^65000:4_0:47_0:26$ ip community-list expanded c1 permit 601 ^65000:4_0:47_0:27$ ip community-list expanded c1 permit 602 ^65000:4_0:47_0:28$ ip community-list expanded c1 permit 603 ^65000:4_0:47_0:29$ ip community-list expanded c1 permit 604 ^65000:4_0:47_0:30$ ip community-list expanded c1 permit 605 ^65000:4_0:47_0:31$ ip community-list expanded c1 permit 606 ^65000:4_0:47_0:32$ ip community-list expanded c1 permit 607 ^65000:4_0:47_0:33$ ip community-list expanded c1 permit 608 ^65000:4_0:47_0:34$ ip community-list expanded c1 permit 609 ^65000:4_0:47_0:35$ ip community-list expanded c1 permit 610 ^65000:4_0:47_0:36$ ip community-list expanded c1 permit 611 ^65000:4_0:47_0:37$ ip community-list expanded c1 permit 612 ^65000:4_0:47_0:38$ ip community-list expanded c1 permit 613 ^65000:4_0:47_0:39$ ip community-list expanded c1 permit 614 ^65000:4_0:47_0:40$ ip community-list expanded c1 permit 615 ^65000:4_0:47_0:41$ ip community-list expanded c1 permit 616 ^65000:4_0:47_0:42$ ip community-list expanded c1 permit 617 ^65000:4_0:47_0:43$ ip community-list expanded c1 permit 618 ^65000:4_0:47_0:44$ ip community-list expanded c1 permit 619 ^65000:4_0:47_0:45$ ip community-list expanded c1 permit 620 ^65000:3_0:47_0:46$ ip community-list expanded c1 permit 621 ^65000:4_0:47_0:46$ ip community-list expanded c1 permit 622 ^65000:4_0:47_0:47$ ip community-list expanded c1 permit 623 ^65000:4_0:48_0:25$ ip community-list expanded c1 permit 624 ^65000:4_0:48_0:26$ ip community-list expanded c1 permit 625 ^65000:4_0:48_0:27$ ip community-list expanded c1 permit 626 ^65000:4_0:48_0:28$ ip community-list expanded c1 permit 627 ^65000:4_0:48_0:29$ ip community-list expanded c1 permit 628 ^65000:4_0:48_0:30$ ip community-list expanded c1 permit 629 ^65000:4_0:48_0:31$ ip community-list expanded c1 permit 630 ^65000:4_0:48_0:32$ ip community-list expanded c1 permit 631 ^65000:4_0:48_0:33$ ip community-list expanded c1 permit 632 ^65000:4_0:48_0:34$ ip community-list expanded c1 permit 633 ^65000:4_0:48_0:35$ ip community-list expanded c1 permit 634 ^65000:4_0:48_0:36$ ip community-list expanded c1 permit 635 ^65000:4_0:48_0:37$ ip community-list expanded c1 permit 636 ^65000:4_0:48_0:38$ ip community-list expanded c1 permit 637 ^65000:4_0:48_0:39$ ip community-list expanded c1 permit 638 ^65000:4_0:48_0:40$ ip community-list expanded c1 permit 639 ^65000:4_0:48_0:41$ ip community-list expanded c1 permit 640 ^65000:4_0:48_0:42$ ip community-list expanded c1 permit 641 ^65000:4_0:48_0:43$ ip community-list expanded c1 permit 642 ^65000:4_0:48_0:44$ ip community-list expanded c1 permit 643 ^65000:4_0:48_0:45$ ip community-list expanded c1 permit 644 ^65000:4_0:48_0:46$ ip community-list expanded c1 permit 645 ^65000:3_0:48_0:47$ ip community-list expanded c1 permit 646 ^65000:4_0:48_0:47$ ip community-list expanded c1 permit 647 ^65000:4_0:48_0:48$ ip community-list expanded c1 permit 648 ^65000:4_0:49_0:25$ ip community-list expanded c1 permit 649 ^65000:4_0:49_0:26$ ip community-list expanded c1 permit 650 ^65000:4_0:49_0:27$ ip community-list expanded c1 permit 651 ^65000:4_0:49_0:28$ ip community-list expanded c1 permit 652 ^65000:4_0:49_0:29$ ip community-list expanded c1 permit 653 ^65000:4_0:49_0:30$ ip community-list expanded c1 permit 654 ^65000:4_0:49_0:31$ ip community-list expanded c1 permit 655 ^65000:4_0:49_0:32$ ip community-list expanded c1 permit 656 ^65000:4_0:49_0:33$ ip community-list expanded c1 permit 657 ^65000:4_0:49_0:34$ ip community-list expanded c1 permit 658 ^65000:4_0:49_0:35$ ip community-list expanded c1 permit 659 ^65000:4_0:49_0:36$ ip community-list expanded c1 permit 660 ^65000:4_0:49_0:37$ ip community-list expanded c1 permit 661 ^65000:4_0:49_0:38$ ip community-list expanded c1 permit 662 ^65000:4_0:49_0:39$ ip community-list expanded c1 permit 663 ^65000:4_0:49_0:40$ ip community-list expanded c1 permit 664 ^65000:4_0:49_0:41$ ip community-list expanded c1 permit 665 ^65000:4_0:49_0:42$ ip community-list expanded c1 permit 666 ^65000:4_0:49_0:43$ ip community-list expanded c1 permit 667 ^65000:4_0:49_0:44$ ip community-list expanded c1 permit 668 ^65000:4_0:49_0:45$ ip community-list expanded c1 permit 669 ^65000:4_0:49_0:46$ ip community-list expanded c1 permit 670 ^65000:4_0:49_0:47$ ip community-list expanded c1 permit 671 ^65000:3_0:49_0:48$ ip community-list expanded c1 permit 672 ^65000:4_0:49_0:48$ ip community-list expanded c1 permit 673 ^65000:4_0:49_0:49$ ip community-list expanded c1 permit 674 ^65000:4_0:50_0:26$ ip community-list expanded c1 permit 675 ^65000:4_0:50_0:27$ ip community-list expanded c1 permit 676 ^65000:4_0:50_0:28$ ip community-list expanded c1 permit 677 ^65000:4_0:50_0:29$ ip community-list expanded c1 permit 678 ^65000:4_0:50_0:30$ ip community-list expanded c1 permit 679 ^65000:4_0:50_0:31$ ip community-list expanded c1 permit 680 ^65000:4_0:50_0:32$ ip community-list expanded c1 permit 681 ^65000:4_0:50_0:33$ ip community-list expanded c1 permit 682 ^65000:4_0:50_0:34$ ip community-list expanded c1 permit 683 ^65000:4_0:50_0:35$ ip community-list expanded c1 permit 684 ^65000:4_0:50_0:36$ ip community-list expanded c1 permit 685 ^65000:4_0:50_0:37$ ip community-list expanded c1 permit 686 ^65000:4_0:50_0:38$ ip community-list expanded c1 permit 687 ^65000:4_0:50_0:39$ ip community-list expanded c1 permit 688 ^65000:4_0:50_0:40$ ip community-list expanded c1 permit 689 ^65000:4_0:50_0:41$ ip community-list expanded c1 permit 690 ^65000:4_0:50_0:42$ ip community-list expanded c1 permit 691 ^65000:4_0:50_0:43$ ip community-list expanded c1 permit 692 ^65000:4_0:50_0:44$ ip community-list expanded c1 permit 693 ^65000:4_0:50_0:45$ ip community-list expanded c1 permit 694 ^65000:4_0:50_0:46$ ip community-list expanded c1 permit 695 ^65000:4_0:50_0:47$ ip community-list expanded c1 permit 696 ^65000:4_0:50_0:48$ ip community-list expanded c1 permit 697 ^65000:3_0:50_0:49$ ip community-list expanded c1 permit 698 ^65000:4_0:50_0:49$ ip community-list expanded c1 permit 699 ^65000:4_0:50_0:50$ ip community-list expanded c1 permit 700 ^65000:4_0:51_0:26$ ip community-list expanded c1 permit 701 ^65000:4_0:51_0:27$ ip community-list expanded c1 permit 702 ^65000:4_0:51_0:28$ ip community-list expanded c1 permit 703 ^65000:4_0:51_0:29$ ip community-list expanded c1 permit 704 ^65000:4_0:51_0:30$ ip community-list expanded c1 permit 705 ^65000:4_0:51_0:31$ ip community-list expanded c1 permit 706 ^65000:4_0:51_0:32$ ip community-list expanded c1 permit 707 ^65000:4_0:51_0:33$ ip community-list expanded c1 permit 708 ^65000:4_0:51_0:34$ ip community-list expanded c1 permit 709 ^65000:4_0:51_0:35$ ip community-list expanded c1 permit 710 ^65000:4_0:51_0:36$ ip community-list expanded c1 permit 711 ^65000:4_0:51_0:37$ ip community-list expanded c1 permit 712 ^65000:4_0:51_0:38$ ip community-list expanded c1 permit 713 ^65000:4_0:51_0:39$ ip community-list expanded c1 permit 714 ^65000:4_0:51_0:40$ ip community-list expanded c1 permit 715 ^65000:4_0:51_0:41$ ip community-list expanded c1 permit 716 ^65000:4_0:51_0:42$ ip community-list expanded c1 permit 717 ^65000:4_0:51_0:43$ ip community-list expanded c1 permit 718 ^65000:4_0:51_0:44$ ip community-list expanded c1 permit 719 ^65000:4_0:51_0:45$ ip community-list expanded c1 permit 720 ^65000:4_0:51_0:46$ ip community-list expanded c1 permit 721 ^65000:4_0:51_0:47$ ip community-list expanded c1 permit 722 ^65000:4_0:51_0:48$ ip community-list expanded c1 permit 723 ^65000:4_0:51_0:49$ ip community-list expanded c1 permit 724 ^65000:3_0:51_0:50$ ip community-list expanded c1 permit 725 ^65000:4_0:51_0:50$ ip community-list expanded c1 permit 726 ^65000:4_0:51_0:51$ ip community-list expanded c1 permit 727 ^65000:4_0:52_0:27$ ip community-list expanded c1 permit 728 ^65000:4_0:52_0:28$ ip community-list expanded c1 permit 729 ^65000:4_0:52_0:29$ ip community-list expanded c1 permit 730 ^65000:4_0:52_0:30$ ip community-list expanded c1 permit 731 ^65000:4_0:52_0:31$ ip community-list expanded c1 permit 732 ^65000:4_0:52_0:32$ ip community-list expanded c1 permit 733 ^65000:4_0:52_0:33$ ip community-list expanded c1 permit 734 ^65000:4_0:52_0:34$ ip community-list expanded c1 permit 735 ^65000:4_0:52_0:35$ ip community-list expanded c1 permit 736 ^65000:4_0:52_0:36$ ip community-list expanded c1 permit 737 ^65000:4_0:52_0:37$ ip community-list expanded c1 permit 738 ^65000:4_0:52_0:38$ ip community-list expanded c1 permit 739 ^65000:4_0:52_0:39$ ip community-list expanded c1 permit 740 ^65000:4_0:52_0:40$ ip community-list expanded c1 permit 741 ^65000:4_0:52_0:41$ ip community-list expanded c1 permit 742 ^65000:4_0:52_0:42$ ip community-list expanded c1 permit 743 ^65000:4_0:52_0:43$ ip community-list expanded c1 permit 744 ^65000:4_0:52_0:44$ ip community-list expanded c1 permit 745 ^65000:4_0:52_0:45$ ip community-list expanded c1 permit 746 ^65000:4_0:52_0:46$ ip community-list expanded c1 permit 747 ^65000:4_0:52_0:47$ ip community-list expanded c1 permit 748 ^65000:4_0:52_0:48$ ip community-list expanded c1 permit 749 ^65000:4_0:52_0:49$ ip community-list expanded c1 permit 750 ^65000:4_0:52_0:50$ ip community-list expanded c1 permit 751 ^65000:3_0:52_0:51$ ip community-list expanded c1 permit 752 ^65000:4_0:52_0:51$ ip community-list expanded c1 permit 753 ^65000:4_0:52_0:52$ ip community-list expanded c1 permit 754 ^65000:4_0:53_0:27$ ip community-list expanded c1 permit 755 ^65000:4_0:53_0:28$ ip community-list expanded c1 permit 756 ^65000:4_0:53_0:29$ ip community-list expanded c1 permit 757 ^65000:4_0:53_0:30$ ip community-list expanded c1 permit 758 ^65000:4_0:53_0:31$ ip community-list expanded c1 permit 759 ^65000:4_0:53_0:32$ ip community-list expanded c1 permit 760 ^65000:4_0:53_0:33$ ip community-list expanded c1 permit 761 ^65000:4_0:53_0:34$ ip community-list expanded c1 permit 762 ^65000:4_0:53_0:35$ ip community-list expanded c1 permit 763 ^65000:4_0:53_0:36$ ip community-list expanded c1 permit 764 ^65000:4_0:53_0:37$ ip community-list expanded c1 permit 765 ^65000:4_0:53_0:38$ ip community-list expanded c1 permit 766 ^65000:4_0:53_0:39$ ip community-list expanded c1 permit 767 ^65000:4_0:53_0:40$ ip community-list expanded c1 permit 768 ^65000:4_0:53_0:41$ ip community-list expanded c1 permit 769 ^65000:4_0:53_0:42$ ip community-list expanded c1 permit 770 ^65000:4_0:53_0:43$ ip community-list expanded c1 permit 771 ^65000:4_0:53_0:44$ ip community-list expanded c1 permit 772 ^65000:4_0:53_0:45$ ip community-list expanded c1 permit 773 ^65000:4_0:53_0:46$ ip community-list expanded c1 permit 774 ^65000:4_0:53_0:47$ ip community-list expanded c1 permit 775 ^65000:4_0:53_0:48$ ip community-list expanded c1 permit 776 ^65000:4_0:53_0:49$ ip community-list expanded c1 permit 777 ^65000:4_0:53_0:50$ ip community-list expanded c1 permit 778 ^65000:4_0:53_0:51$ ip community-list expanded c1 permit 779 ^65000:3_0:53_0:52$ ip community-list expanded c1 permit 780 ^65000:4_0:53_0:52$ ip community-list expanded c1 permit 781 ^65000:4_0:53_0:53$ ip community-list expanded c1 permit 782 ^65000:4_0:54_0:28$ ip community-list expanded c1 permit 783 ^65000:4_0:54_0:29$ ip community-list expanded c1 permit 784 ^65000:4_0:54_0:30$ ip community-list expanded c1 permit 785 ^65000:4_0:54_0:31$ ip community-list expanded c1 permit 786 ^65000:4_0:54_0:32$ ip community-list expanded c1 permit 787 ^65000:4_0:54_0:33$ ip community-list expanded c1 permit 788 ^65000:4_0:54_0:34$ ip community-list expanded c1 permit 789 ^65000:4_0:54_0:35$ ip community-list expanded c1 permit 790 ^65000:4_0:54_0:36$ ip community-list expanded c1 permit 791 ^65000:4_0:54_0:37$ ip community-list expanded c1 permit 792 ^65000:4_0:54_0:38$ ip community-list expanded c1 permit 793 ^65000:4_0:54_0:39$ ip community-list expanded c1 permit 794 ^65000:4_0:54_0:40$ ip community-list expanded c1 permit 795 ^65000:4_0:54_0:41$ ip community-list expanded c1 permit 796 ^65000:4_0:54_0:42$ ip community-list expanded c1 permit 797 ^65000:4_0:54_0:43$ ip community-list expanded c1 permit 798 ^65000:4_0:54_0:44$ ip community-list expanded c1 permit 799 ^65000:4_0:54_0:45$ ip community-list expanded c1 permit 800 ^65000:4_0:54_0:46$ ip community-list expanded c1 permit 801 ^65000:4_0:54_0:47$ ip community-list expanded c1 permit 802 ^65000:4_0:54_0:48$ ip community-list expanded c1 permit 803 ^65000:4_0:54_0:49$ ip community-list expanded c1 permit 804 ^65000:4_0:54_0:50$ ip community-list expanded c1 permit 805 ^65000:4_0:54_0:51$ ip community-list expanded c1 permit 806 ^65000:4_0:54_0:52$ ip community-list expanded c1 permit 807 ^65000:3_0:54_0:53$ ip community-list expanded c1 permit 808 ^65000:4_0:54_0:53$ ip community-list expanded c1 permit 809 ^65000:4_0:54_0:54$ ip community-list expanded c1 permit 810 ^65000:4_0:55_0:28$ ip community-list expanded c1 permit 811 ^65000:4_0:55_0:29$ ip community-list expanded c1 permit 812 ^65000:4_0:55_0:30$ ip community-list expanded c1 permit 813 ^65000:4_0:55_0:31$ ip community-list expanded c1 permit 814 ^65000:4_0:55_0:32$ ip community-list expanded c1 permit 815 ^65000:4_0:55_0:33$ ip community-list expanded c1 permit 816 ^65000:4_0:55_0:34$ ip community-list expanded c1 permit 817 ^65000:4_0:55_0:35$ ip community-list expanded c1 permit 818 ^65000:4_0:55_0:36$ ip community-list expanded c1 permit 819 ^65000:4_0:55_0:37$ ip community-list expanded c1 permit 820 ^65000:4_0:55_0:38$ ip community-list expanded c1 permit 821 ^65000:4_0:55_0:39$ ip community-list expanded c1 permit 822 ^65000:4_0:55_0:40$ ip community-list expanded c1 permit 823 ^65000:4_0:55_0:41$ ip community-list expanded c1 permit 824 ^65000:4_0:55_0:42$ ip community-list expanded c1 permit 825 ^65000:4_0:55_0:43$ ip community-list expanded c1 permit 826 ^65000:4_0:55_0:44$ ip community-list expanded c1 permit 827 ^65000:4_0:55_0:45$ ip community-list expanded c1 permit 828 ^65000:4_0:55_0:46$ ip community-list expanded c1 permit 829 ^65000:4_0:55_0:47$ ip community-list expanded c1 permit 830 ^65000:4_0:55_0:48$ ip community-list expanded c1 permit 831 ^65000:4_0:55_0:49$ ip community-list expanded c1 permit 832 ^65000:4_0:55_0:50$ ip community-list expanded c1 permit 833 ^65000:4_0:55_0:51$ ip community-list expanded c1 permit 834 ^65000:4_0:55_0:52$ ip community-list expanded c1 permit 835 ^65000:4_0:55_0:53$ ip community-list expanded c1 permit 836 ^65000:3_0:55_0:54$ ip community-list expanded c1 permit 837 ^65000:4_0:55_0:54$ ip community-list expanded c1 permit 838 ^65000:4_0:55_0:55$ ip community-list expanded c1 permit 839 ^65000:4_0:56_0:29$ ip community-list expanded c1 permit 840 ^65000:4_0:56_0:30$ ip community-list expanded c1 permit 841 ^65000:4_0:56_0:31$ ip community-list expanded c1 permit 842 ^65000:4_0:56_0:32$ ip community-list expanded c1 permit 843 ^65000:4_0:56_0:33$ ip community-list expanded c1 permit 844 ^65000:4_0:56_0:34$ ip community-list expanded c1 permit 845 ^65000:4_0:56_0:35$ ip community-list expanded c1 permit 846 ^65000:4_0:56_0:36$ ip community-list expanded c1 permit 847 ^65000:4_0:56_0:37$ ip community-list expanded c1 permit 848 ^65000:4_0:56_0:38$ ip community-list expanded c1 permit 849 ^65000:4_0:56_0:39$ ip community-list expanded c1 permit 850 ^65000:4_0:56_0:40$ ip community-list expanded c1 permit 851 ^65000:4_0:56_0:41$ ip community-list expanded c1 permit 852 ^65000:4_0:56_0:42$ ip community-list expanded c1 permit 853 ^65000:4_0:56_0:43$ ip community-list expanded c1 permit 854 ^65000:4_0:56_0:44$ ip community-list expanded c1 permit 855 ^65000:4_0:56_0:45$ ip community-list expanded c1 permit 856 ^65000:4_0:56_0:46$ ip community-list expanded c1 permit 857 ^65000:4_0:56_0:47$ ip community-list expanded c1 permit 858 ^65000:4_0:56_0:48$ ip community-list expanded c1 permit 859 ^65000:4_0:56_0:49$ ip community-list expanded c1 permit 860 ^65000:4_0:56_0:50$ ip community-list expanded c1 permit 861 ^65000:4_0:56_0:51$ ip community-list expanded c1 permit 862 ^65000:4_0:56_0:52$ ip community-list expanded c1 permit 863 ^65000:4_0:56_0:53$ ip community-list expanded c1 permit 864 ^65000:4_0:56_0:54$ ip community-list expanded c1 permit 865 ^65000:3_0:56_0:55$ ip community-list expanded c1 permit 866 ^65000:4_0:56_0:55$ ip community-list expanded c1 permit 867 ^65000:4_0:56_0:56$ ip community-list expanded c1 permit 868 ^65000:4_0:57_0:29$ ip community-list expanded c1 permit 869 ^65000:4_0:57_0:30$ ip community-list expanded c1 permit 870 ^65000:4_0:57_0:31$ ip community-list expanded c1 permit 871 ^65000:4_0:57_0:32$ ip community-list expanded c1 permit 872 ^65000:4_0:57_0:33$ ip community-list expanded c1 permit 873 ^65000:4_0:57_0:34$ ip community-list expanded c1 permit 874 ^65000:4_0:57_0:35$ ip community-list expanded c1 permit 875 ^65000:4_0:57_0:36$ ip community-list expanded c1 permit 876 ^65000:4_0:57_0:37$ ip community-list expanded c1 permit 877 ^65000:4_0:57_0:38$ ip community-list expanded c1 permit 878 ^65000:4_0:57_0:39$ ip community-list expanded c1 permit 879 ^65000:4_0:57_0:40$ ip community-list expanded c1 permit 880 ^65000:4_0:57_0:41$ ip community-list expanded c1 permit 881 ^65000:4_0:57_0:42$ ip community-list expanded c1 permit 882 ^65000:4_0:57_0:43$ ip community-list expanded c1 permit 883 ^65000:4_0:57_0:44$ ip community-list expanded c1 permit 884 ^65000:4_0:57_0:45$ ip community-list expanded c1 permit 885 ^65000:4_0:57_0:46$ ip community-list expanded c1 permit 886 ^65000:4_0:57_0:47$ ip community-list expanded c1 permit 887 ^65000:4_0:57_0:48$ ip community-list expanded c1 permit 888 ^65000:4_0:57_0:49$ ip community-list expanded c1 permit 889 ^65000:4_0:57_0:50$ ip community-list expanded c1 permit 890 ^65000:4_0:57_0:51$ ip community-list expanded c1 permit 891 ^65000:4_0:57_0:52$ ip community-list expanded c1 permit 892 ^65000:4_0:57_0:53$ ip community-list expanded c1 permit 893 ^65000:4_0:57_0:54$ ip community-list expanded c1 permit 894 ^65000:4_0:57_0:55$ ip community-list expanded c1 permit 895 ^65000:3_0:57_0:56$ ip community-list expanded c1 permit 896 ^65000:4_0:57_0:56$ ip community-list expanded c1 permit 897 ^65000:4_0:57_0:57$ ip community-list expanded c1 permit 898 ^65000:4_0:58_0:30$ ip community-list expanded c1 permit 899 ^65000:4_0:58_0:31$ ip community-list expanded c1 permit 900 ^65000:4_0:58_0:32$ ip community-list expanded c1 permit 901 ^65000:4_0:58_0:33$ ip community-list expanded c1 permit 902 ^65000:4_0:58_0:34$ ip community-list expanded c1 permit 903 ^65000:4_0:58_0:35$ ip community-list expanded c1 permit 904 ^65000:4_0:58_0:36$ ip community-list expanded c1 permit 905 ^65000:4_0:58_0:37$ ip community-list expanded c1 permit 906 ^65000:4_0:58_0:38$ ip community-list expanded c1 permit 907 ^65000:4_0:58_0:39$ ip community-list expanded c1 permit 908 ^65000:4_0:58_0:40$ ip community-list expanded c1 permit 909 ^65000:4_0:58_0:41$ ip community-list expanded c1 permit 910 ^65000:4_0:58_0:42$ ip community-list expanded c1 permit 911 ^65000:4_0:58_0:43$ ip community-list expanded c1 permit 912 ^65000:4_0:58_0:44$ ip community-list expanded c1 permit 913 ^65000:4_0:58_0:45$ ip community-list expanded c1 permit 914 ^65000:4_0:58_0:46$ ip community-list expanded c1 permit 915 ^65000:4_0:58_0:47$ ip community-list expanded c1 permit 916 ^65000:4_0:58_0:48$ ip community-list expanded c1 permit 917 ^65000:4_0:58_0:49$ ip community-list expanded c1 permit 918 ^65000:4_0:58_0:50$ ip community-list expanded c1 permit 919 ^65000:4_0:58_0:51$ ip community-list expanded c1 permit 920 ^65000:4_0:58_0:52$ ip community-list expanded c1 permit 921 ^65000:4_0:58_0:53$ ip community-list expanded c1 permit 922 ^65000:4_0:58_0:54$ ip community-list expanded c1 permit 923 ^65000:4_0:58_0:55$ ip community-list expanded c1 permit 924 ^65000:4_0:58_0:56$ ip community-list expanded c1 permit 925 ^65000:3_0:58_0:57$ ip community-list expanded c1 permit 926 ^65000:4_0:58_0:57$ ip community-list expanded c1 permit 927 ^65000:4_0:58_0:58$ ip community-list expanded c1 permit 928 ^65000:4_0:59_0:30$ ip community-list expanded c1 permit 929 ^65000:4_0:59_0:31$ ip community-list expanded c1 permit 930 ^65000:4_0:59_0:32$ ip community-list expanded c1 permit 931 ^65000:4_0:59_0:33$ ip community-list expanded c1 permit 932 ^65000:4_0:59_0:34$ ip community-list expanded c1 permit 933 ^65000:4_0:59_0:35$ ip community-list expanded c1 permit 934 ^65000:4_0:59_0:36$ ip community-list expanded c1 permit 935 ^65000:4_0:59_0:37$ ip community-list expanded c1 permit 936 ^65000:4_0:59_0:38$ ip community-list expanded c1 permit 937 ^65000:4_0:59_0:39$ ip community-list expanded c1 permit 938 ^65000:4_0:59_0:40$ ip community-list expanded c1 permit 939 ^65000:4_0:59_0:41$ ip community-list expanded c1 permit 940 ^65000:4_0:59_0:42$ ip community-list expanded c1 permit 941 ^65000:4_0:59_0:43$ ip community-list expanded c1 permit 942 ^65000:4_0:59_0:44$ ip community-list expanded c1 permit 943 ^65000:4_0:59_0:45$ ip community-list expanded c1 permit 944 ^65000:4_0:59_0:46$ ip community-list expanded c1 permit 945 ^65000:4_0:59_0:47$ ip community-list expanded c1 permit 946 ^65000:4_0:59_0:48$ ip community-list expanded c1 permit 947 ^65000:4_0:59_0:49$ ip community-list expanded c1 permit 948 ^65000:4_0:59_0:50$ ip community-list expanded c1 permit 949 ^65000:4_0:59_0:51$ ip community-list expanded c1 permit 950 ^65000:4_0:59_0:52$ ip community-list expanded c1 permit 951 ^65000:4_0:59_0:53$ ip community-list expanded c1 permit 952 ^65000:4_0:59_0:54$ ip community-list expanded c1 permit 953 ^65000:4_0:59_0:55$ ip community-list expanded c1 permit 954 ^65000:4_0:59_0:56$ ip community-list expanded c1 permit 955 ^65000:4_0:59_0:57$ ip community-list expanded c1 permit 956 ^65000:3_0:59_0:58$ ip community-list expanded c1 permit 957 ^65000:4_0:59_0:58$ ip community-list expanded c1 permit 958 ^65000:4_0:59_0:59$ ip community-list expanded c1 permit 959 ^65000:4_0:60_0:31$ ip community-list expanded c1 permit 960 ^65000:4_0:60_0:32$ ip community-list expanded c1 permit 961 ^65000:4_0:60_0:33$ ip community-list expanded c1 permit 962 ^65000:4_0:60_0:34$ ip community-list expanded c1 permit 963 ^65000:4_0:60_0:35$ ip community-list expanded c1 permit 964 ^65000:4_0:60_0:36$ ip community-list expanded c1 permit 965 ^65000:4_0:60_0:37$ ip community-list expanded c1 permit 966 ^65000:4_0:60_0:38$ ip community-list expanded c1 permit 967 ^65000:4_0:60_0:39$ ip community-list expanded c1 permit 968 ^65000:4_0:60_0:40$ ip community-list expanded c1 permit 969 ^65000:4_0:60_0:41$ ip community-list expanded c1 permit 970 ^65000:4_0:60_0:42$ ip community-list expanded c1 permit 971 ^65000:4_0:60_0:43$ ip community-list expanded c1 permit 972 ^65000:4_0:60_0:44$ ip community-list expanded c1 permit 973 ^65000:4_0:60_0:45$ ip community-list expanded c1 permit 974 ^65000:4_0:60_0:46$ ip community-list expanded c1 permit 975 ^65000:4_0:60_0:47$ ip community-list expanded c1 permit 976 ^65000:4_0:60_0:48$ ip community-list expanded c1 permit 977 ^65000:4_0:60_0:49$ ip community-list expanded c1 permit 978 ^65000:4_0:60_0:50$ ip community-list expanded c1 permit 979 ^65000:4_0:60_0:51$ ip community-list expanded c1 permit 980 ^65000:4_0:60_0:52$ ip community-list expanded c1 permit 981 ^65000:4_0:60_0:53$ ip community-list expanded c1 permit 982 ^65000:4_0:60_0:54$ ip community-list expanded c1 permit 983 ^65000:4_0:60_0:55$ ip community-list expanded c1 permit 984 ^65000:4_0:60_0:56$ ip community-list expanded c1 permit 985 ^65000:4_0:60_0:57$ ip community-list expanded c1 permit 986 ^65000:4_0:60_0:58$ ip community-list expanded c1 permit 987 ^65000:3_0:60_0:59$ ip community-list expanded c1 permit 988 ^65000:4_0:60_0:59$ ip community-list expanded c1 permit 989 ^65000:4_0:60_0:60$ ip community-list expanded c1 permit 990 ^65000:4_0:61_0:31$ ip community-list expanded c1 permit 991 ^65000:4_0:61_0:32$ ip community-list expanded c1 permit 992 ^65000:4_0:61_0:33$ ip community-list expanded c1 permit 993 ^65000:4_0:61_0:34$ ip community-list expanded c1 permit 994 ^65000:4_0:61_0:35$ ip community-list expanded c1 permit 995 ^65000:4_0:61_0:36$ ip community-list expanded c1 permit 996 ^65000:4_0:61_0:37$ ip community-list expanded c1 permit 997 ^65000:4_0:61_0:38$ ip community-list expanded c1 permit 998 ^65000:4_0:61_0:39$ ip community-list expanded c1 permit 999 ^65000:4_0:61_0:40$ ip community-list expanded c1 permit 1000 ^65000:4_0:61_0:41$ ip community-list expanded c1 permit 1001 ^65000:4_0:61_0:42$ ip community-list expanded c1 permit 1002 ^65000:4_0:61_0:43$ ip community-list expanded c1 permit 1003 ^65000:4_0:61_0:44$ ip community-list expanded c1 permit 1004 ^65000:4_0:61_0:45$ ip community-list expanded c1 permit 1005 ^65000:4_0:61_0:46$ ip community-list expanded c1 permit 1006 ^65000:4_0:61_0:47$ ip community-list expanded c1 permit 1007 ^65000:4_0:61_0:48$ ip community-list expanded c1 permit 1008 ^65000:4_0:61_0:49$ ip community-list expanded c1 permit 1009 ^65000:4_0:61_0:50$ ip community-list expanded c1 permit 1010 ^65000:4_0:61_0:51$ ip community-list expanded c1 permit 1011 ^65000:4_0:61_0:52$ ip community-list expanded c1 permit 1012 ^65000:4_0:61_0:53$ ip community-list expanded c1 permit 1013 ^65000:4_0:61_0:54$ ip community-list expanded c1 permit 1014 ^65000:4_0:61_0:55$ ip community-list expanded c1 permit 1015 ^65000:4_0:61_0:56$ ip community-list expanded c1 permit 1016 ^65000:4_0:61_0:57$ ip community-list expanded c1 permit 1017 ^65000:4_0:61_0:58$ ip community-list expanded c1 permit 1018 ^65000:4_0:61_0:59$ ip community-list expanded c1 permit 1019 ^65000:3_0:61_0:60$ ip community-list expanded c1 permit 1020 ^65000:4_0:61_0:60$ ip community-list expanded c1 permit 1021 ^65000:4_0:61_0:61$ ip community-list expanded c1 permit 1022 ^65000:4_0:62_0:32$ ip community-list expanded c1 permit 1023 ^65000:4_0:62_0:33$ ip community-list expanded c1 permit 1024 ^65000:4_0:62_0:34$ ip community-list expanded c1 permit 1025 ^65000:4_0:62_0:35$ ip community-list expanded c1 permit 1026 ^65000:4_0:62_0:36$ ip community-list expanded c1 permit 1027 ^65000:4_0:62_0:37$ ip community-list expanded c1 permit 1028 ^65000:4_0:62_0:38$ ip community-list expanded c1 permit 1029 ^65000:4_0:62_0:39$ ip community-list expanded c1 permit 1030 ^65000:4_0:62_0:40$ ip community-list expanded c1 permit 1031 ^65000:4_0:62_0:41$ ip community-list expanded c1 permit 1032 ^65000:4_0:62_0:42$ ip community-list expanded c1 permit 1033 ^65000:4_0:62_0:43$ ip community-list expanded c1 permit 1034 ^65000:4_0:62_0:44$ ip community-list expanded c1 permit 1035 ^65000:4_0:62_0:45$ ip community-list expanded c1 permit 1036 ^65000:4_0:62_0:46$ ip community-list expanded c1 permit 1037 ^65000:4_0:62_0:47$ ip community-list expanded c1 permit 1038 ^65000:4_0:62_0:48$ ip community-list expanded c1 permit 1039 ^65000:4_0:62_0:49$ ip community-list expanded c1 permit 1040 ^65000:4_0:62_0:50$ ip community-list expanded c1 permit 1041 ^65000:4_0:62_0:51$ ip community-list expanded c1 permit 1042 ^65000:4_0:62_0:52$ ip community-list expanded c1 permit 1043 ^65000:4_0:62_0:53$ ip community-list expanded c1 permit 1044 ^65000:4_0:62_0:54$ ip community-list expanded c1 permit 1045 ^65000:4_0:62_0:55$ ip community-list expanded c1 permit 1046 ^65000:4_0:62_0:56$ ip community-list expanded c1 permit 1047 ^65000:4_0:62_0:57$ ip community-list expanded c1 permit 1048 ^65000:4_0:62_0:58$ ip community-list expanded c1 permit 1049 ^65000:4_0:62_0:59$ ip community-list expanded c1 permit 1050 ^65000:4_0:62_0:60$ ip community-list expanded c1 permit 1051 ^65000:3_0:62_0:61$ ip community-list expanded c1 permit 1052 ^65000:4_0:62_0:61$ ip community-list expanded c1 permit 1053 ^65000:4_0:62_0:62$ ip community-list expanded c1 permit 1054 ^65000:4_0:63_0:32$ ip community-list expanded c1 permit 1055 ^65000:4_0:63_0:33$ ip community-list expanded c1 permit 1056 ^65000:4_0:63_0:34$ ip community-list expanded c1 permit 1057 ^65000:4_0:63_0:35$ ip community-list expanded c1 permit 1058 ^65000:4_0:63_0:36$ ip community-list expanded c1 permit 1059 ^65000:4_0:63_0:37$ ip community-list expanded c1 permit 1060 ^65000:4_0:63_0:38$ ip community-list expanded c1 permit 1061 ^65000:4_0:63_0:39$ ip community-list expanded c1 permit 1062 ^65000:4_0:63_0:40$ ip community-list expanded c1 permit 1063 ^65000:4_0:63_0:41$ ip community-list expanded c1 permit 1064 ^65000:4_0:63_0:42$ ip community-list expanded c1 permit 1065 ^65000:4_0:63_0:43$ ip community-list expanded c1 permit 1066 ^65000:4_0:63_0:44$ ip community-list expanded c1 permit 1067 ^65000:4_0:63_0:45$ ip community-list expanded c1 permit 1068 ^65000:4_0:63_0:46$ ip community-list expanded c1 permit 1069 ^65000:4_0:63_0:47$ ip community-list expanded c1 permit 1070 ^65000:4_0:63_0:48$ ip community-list expanded c1 permit 1071 ^65000:4_0:63_0:49$ ip community-list expanded c1 permit 1072 ^65000:4_0:63_0:50$ ip community-list expanded c1 permit 1073 ^65000:4_0:63_0:51$ ip community-list expanded c1 permit 1074 ^65000:4_0:63_0:52$ ip community-list expanded c1 permit 1075 ^65000:4_0:63_0:53$ ip community-list expanded c1 permit 1076 ^65000:4_0:63_0:54$ ip community-list expanded c1 permit 1077 ^65000:4_0:63_0:55$ ip community-list expanded c1 permit 1078 ^65000:4_0:63_0:56$ ip community-list expanded c1 permit 1079 ^65000:4_0:63_0:57$ ip community-list expanded c1 permit 1080 ^65000:4_0:63_0:58$ ip community-list expanded c1 permit 1081 ^65000:4_0:63_0:59$ ip community-list expanded c1 permit 1082 ^65000:4_0:63_0:60$ ip community-list expanded c1 permit 1083 ^65000:4_0:63_0:61$ ip community-list expanded c1 permit 1084 ^65000:3_0:63_0:62$ ip community-list expanded c1 permit 1085 ^65000:4_0:63_0:62$ ip community-list expanded c1 permit 1086 ^65000:4_0:63_0:63$ ip community-list expanded c1 permit 1087 ^65000:4_0:64_0:33$ ip community-list expanded c1 permit 1088 ^65000:4_0:64_0:34$ ip community-list expanded c1 permit 1089 ^65000:4_0:64_0:35$ ip community-list expanded c1 permit 1090 ^65000:4_0:64_0:36$ ip community-list expanded c1 permit 1091 ^65000:4_0:64_0:37$ ip community-list expanded c1 permit 1092 ^65000:4_0:64_0:38$ ip community-list expanded c1 permit 1093 ^65000:4_0:64_0:39$ ip community-list expanded c1 permit 1094 ^65000:4_0:64_0:40$ ip community-list expanded c1 permit 1095 ^65000:4_0:64_0:41$ ip community-list expanded c1 permit 1096 ^65000:4_0:64_0:42$ ip community-list expanded c1 permit 1097 ^65000:4_0:64_0:43$ ip community-list expanded c1 permit 1098 ^65000:4_0:64_0:44$ ip community-list expanded c1 permit 1099 ^65000:4_0:64_0:45$ ip community-list expanded c1 permit 1100 ^65000:4_0:64_0:46$ ip community-list expanded c1 permit 1101 ^65000:4_0:64_0:47$ ip community-list expanded c1 permit 1102 ^65000:4_0:64_0:48$ ip community-list expanded c1 permit 1103 ^65000:4_0:64_0:49$ ip community-list expanded c1 permit 1104 ^65000:4_0:64_0:50$ ip community-list expanded c1 permit 1105 ^65000:4_0:64_0:51$ ip community-list expanded c1 permit 1106 ^65000:4_0:64_0:52$ ip community-list expanded c1 permit 1107 ^65000:4_0:64_0:53$ ip community-list expanded c1 permit 1108 ^65000:4_0:64_0:54$ ip community-list expanded c1 permit 1109 ^65000:4_0:64_0:55$ ip community-list expanded c1 permit 1110 ^65000:4_0:64_0:56$ ip community-list expanded c1 permit 1111 ^65000:4_0:64_0:57$ ip community-list expanded c1 permit 1112 ^65000:4_0:64_0:58$ ip community-list expanded c1 permit 1113 ^65000:4_0:64_0:59$ ip community-list expanded c1 permit 1114 ^65000:4_0:64_0:60$ ip community-list expanded c1 permit 1115 ^65000:4_0:64_0:61$ ip community-list expanded c1 permit 1116 ^65000:4_0:64_0:62$ ip community-list expanded c1 permit 1117 ^65000:3_0:64_0:63$ ip community-list expanded c1 permit 1118 ^65000:4_0:64_0:63$ ip community-list expanded c1 permit 1119 ^65000:4_0:64_0:64$ ip community-list expanded c1 permit 1120 ^65000:4_0:65_0:33$ ip community-list expanded c1 permit 1121 ^65000:4_0:65_0:34$ ip community-list expanded c1 permit 1122 ^65000:4_0:65_0:35$ ip community-list expanded c1 permit 1123 ^65000:4_0:65_0:36$ ip community-list expanded c1 permit 1124 ^65000:4_0:65_0:37$ ip community-list expanded c1 permit 1125 ^65000:4_0:65_0:38$ ip community-list expanded c1 permit 1126 ^65000:4_0:65_0:39$ ip community-list expanded c1 permit 1127 ^65000:4_0:65_0:40$ ip community-list expanded c1 permit 1128 ^65000:4_0:65_0:41$ ip community-list expanded c1 permit 1129 ^65000:4_0:65_0:42$ ip community-list expanded c1 permit 1130 ^65000:4_0:65_0:43$ ip community-list expanded c1 permit 1131 ^65000:4_0:65_0:44$ ip community-list expanded c1 permit 1132 ^65000:4_0:65_0:45$ ip community-list expanded c1 permit 1133 ^65000:4_0:65_0:46$ ip community-list expanded c1 permit 1134 ^65000:4_0:65_0:47$ ip community-list expanded c1 permit 1135 ^65000:4_0:65_0:48$ ip community-list expanded c1 permit 1136 ^65000:4_0:65_0:49$ ip community-list expanded c1 permit 1137 ^65000:4_0:65_0:50$ ip community-list expanded c1 permit 1138 ^65000:4_0:65_0:51$ ip community-list expanded c1 permit 1139 ^65000:4_0:65_0:52$ ip community-list expanded c1 permit 1140 ^65000:4_0:65_0:53$ ip community-list expanded c1 permit 1141 ^65000:4_0:65_0:54$ ip community-list expanded c1 permit 1142 ^65000:4_0:65_0:55$ ip community-list expanded c1 permit 1143 ^65000:4_0:65_0:56$ ip community-list expanded c1 permit 1144 ^65000:4_0:65_0:57$ ip community-list expanded c1 permit 1145 ^65000:4_0:65_0:58$ ip community-list expanded c1 permit 1146 ^65000:4_0:65_0:59$ ip community-list expanded c1 permit 1147 ^65000:4_0:65_0:60$ ip community-list expanded c1 permit 1148 ^65000:4_0:65_0:61$ ip community-list expanded c1 permit 1149 ^65000:4_0:65_0:62$ ip community-list expanded c1 permit 1150 ^65000:4_0:65_0:63$ ip community-list expanded c1 permit 1151 ^65000:3_0:65_0:64$ ip community-list expanded c1 permit 1152 ^65000:4_0:65_0:64$ ip community-list expanded c1 permit 1153 ^65000:4_0:65_0:65$ ip community-list expanded c1 permit 1154 ^65000:4_0:66_0:34$ ip community-list expanded c1 permit 1155 ^65000:4_0:66_0:35$ ip community-list expanded c1 permit 1156 ^65000:4_0:66_0:36$ ip community-list expanded c1 permit 1157 ^65000:4_0:66_0:37$ ip community-list expanded c1 permit 1158 ^65000:4_0:66_0:38$ ip community-list expanded c1 permit 1159 ^65000:4_0:66_0:39$ ip community-list expanded c1 permit 1160 ^65000:4_0:66_0:40$ ip community-list expanded c1 permit 1161 ^65000:4_0:66_0:41$ ip community-list expanded c1 permit 1162 ^65000:4_0:66_0:42$ ip community-list expanded c1 permit 1163 ^65000:4_0:66_0:43$ ip community-list expanded c1 permit 1164 ^65000:4_0:66_0:44$ ip community-list expanded c1 permit 1165 ^65000:4_0:66_0:45$ ip community-list expanded c1 permit 1166 ^65000:4_0:66_0:46$ ip community-list expanded c1 permit 1167 ^65000:4_0:66_0:47$ ip community-list expanded c1 permit 1168 ^65000:4_0:66_0:48$ ip community-list expanded c1 permit 1169 ^65000:4_0:66_0:49$ ip community-list expanded c1 permit 1170 ^65000:4_0:66_0:50$ ip community-list expanded c1 permit 1171 ^65000:4_0:66_0:51$ ip community-list expanded c1 permit 1172 ^65000:4_0:66_0:52$ ip community-list expanded c1 permit 1173 ^65000:4_0:66_0:53$ ip community-list expanded c1 permit 1174 ^65000:4_0:66_0:54$ ip community-list expanded c1 permit 1175 ^65000:4_0:66_0:55$ ip community-list expanded c1 permit 1176 ^65000:4_0:66_0:56$ ip community-list expanded c1 permit 1177 ^65000:4_0:66_0:57$ ip community-list expanded c1 permit 1178 ^65000:4_0:66_0:58$ ip community-list expanded c1 permit 1179 ^65000:4_0:66_0:59$ ip community-list expanded c1 permit 1180 ^65000:4_0:66_0:60$ ip community-list expanded c1 permit 1181 ^65000:4_0:66_0:61$ ip community-list expanded c1 permit 1182 ^65000:4_0:66_0:62$ ip community-list expanded c1 permit 1183 ^65000:4_0:66_0:63$ ip community-list expanded c1 permit 1184 ^65000:4_0:66_0:64$ ip community-list expanded c1 permit 1185 ^65000:3_0:66_0:65$ ip community-list expanded c1 permit 1186 ^65000:4_0:66_0:65$ ip community-list expanded c1 permit 1187 ^65000:4_0:66_0:66$ ip community-list expanded c1 permit 1188 ^65000:4_0:67_0:34$ ip community-list expanded c1 permit 1189 ^65000:4_0:67_0:35$ ip community-list expanded c1 permit 1190 ^65000:4_0:67_0:36$ ip community-list expanded c1 permit 1191 ^65000:4_0:67_0:37$ ip community-list expanded c1 permit 1192 ^65000:4_0:67_0:38$ ip community-list expanded c1 permit 1193 ^65000:4_0:67_0:39$ ip community-list expanded c1 permit 1194 ^65000:4_0:67_0:40$ ip community-list expanded c1 permit 1195 ^65000:4_0:67_0:41$ ip community-list expanded c1 permit 1196 ^65000:4_0:67_0:42$ ip community-list expanded c1 permit 1197 ^65000:4_0:67_0:43$ ip community-list expanded c1 permit 1198 ^65000:4_0:67_0:44$ ip community-list expanded c1 permit 1199 ^65000:4_0:67_0:45$ ip community-list expanded c1 permit 1200 ^65000:4_0:67_0:46$ ip community-list expanded c1 permit 1201 ^65000:4_0:67_0:47$ ip community-list expanded c1 permit 1202 ^65000:4_0:67_0:48$ ip community-list expanded c1 permit 1203 ^65000:4_0:67_0:49$ ip community-list expanded c1 permit 1204 ^65000:4_0:67_0:50$ ip community-list expanded c1 permit 1205 ^65000:4_0:67_0:51$ ip community-list expanded c1 permit 1206 ^65000:4_0:67_0:52$ ip community-list expanded c1 permit 1207 ^65000:4_0:67_0:53$ ip community-list expanded c1 permit 1208 ^65000:4_0:67_0:54$ ip community-list expanded c1 permit 1209 ^65000:4_0:67_0:55$ ip community-list expanded c1 permit 1210 ^65000:4_0:67_0:56$ ip community-list expanded c1 permit 1211 ^65000:4_0:67_0:57$ ip community-list expanded c1 permit 1212 ^65000:4_0:67_0:58$ ip community-list expanded c1 permit 1213 ^65000:4_0:67_0:59$ ip community-list expanded c1 permit 1214 ^65000:4_0:67_0:60$ ip community-list expanded c1 permit 1215 ^65000:4_0:67_0:61$ ip community-list expanded c1 permit 1216 ^65000:4_0:67_0:62$ ip community-list expanded c1 permit 1217 ^65000:4_0:67_0:63$ ip community-list expanded c1 permit 1218 ^65000:4_0:67_0:64$ ip community-list expanded c1 permit 1219 ^65000:4_0:67_0:65$ ip community-list expanded c1 permit 1220 ^65000:3_0:67_0:66$ ip community-list expanded c1 permit 1221 ^65000:4_0:67_0:66$ ip community-list expanded c1 permit 1222 ^65000:4_0:67_0:67$ ip community-list expanded c1 permit 1223 ^65000:4_0:68_0:35$ ip community-list expanded c1 permit 1224 ^65000:4_0:68_0:36$ ip community-list expanded c1 permit 1225 ^65000:4_0:68_0:37$ ip community-list expanded c1 permit 1226 ^65000:4_0:68_0:38$ ip community-list expanded c1 permit 1227 ^65000:4_0:68_0:39$ ip community-list expanded c1 permit 1228 ^65000:4_0:68_0:40$ ip community-list expanded c1 permit 1229 ^65000:4_0:68_0:41$ ip community-list expanded c1 permit 1230 ^65000:4_0:68_0:42$ ip community-list expanded c1 permit 1231 ^65000:4_0:68_0:43$ ip community-list expanded c1 permit 1232 ^65000:4_0:68_0:44$ ip community-list expanded c1 permit 1233 ^65000:4_0:68_0:45$ ip community-list expanded c1 permit 1234 ^65000:4_0:68_0:46$ ip community-list expanded c1 permit 1235 ^65000:4_0:68_0:47$ ip community-list expanded c1 permit 1236 ^65000:4_0:68_0:48$ ip community-list expanded c1 permit 1237 ^65000:4_0:68_0:49$ ip community-list expanded c1 permit 1238 ^65000:4_0:68_0:50$ ip community-list expanded c1 permit 1239 ^65000:4_0:68_0:51$ ip community-list expanded c1 permit 1240 ^65000:4_0:68_0:52$ ip community-list expanded c1 permit 1241 ^65000:4_0:68_0:53$ ip community-list expanded c1 permit 1242 ^65000:4_0:68_0:54$ ip community-list expanded c1 permit 1243 ^65000:4_0:68_0:55$ ip community-list expanded c1 permit 1244 ^65000:4_0:68_0:56$ ip community-list expanded c1 permit 1245 ^65000:4_0:68_0:57$ ip community-list expanded c1 permit 1246 ^65000:4_0:68_0:58$ ip community-list expanded c1 permit 1247 ^65000:4_0:68_0:59$ ip community-list expanded c1 permit 1248 ^65000:4_0:68_0:60$ ip community-list expanded c1 permit 1249 ^65000:4_0:68_0:61$ ip community-list expanded c1 permit 1250 ^65000:4_0:68_0:62$ ip community-list expanded c1 permit 1251 ^65000:4_0:68_0:63$ ip community-list expanded c1 permit 1252 ^65000:4_0:68_0:64$ ip community-list expanded c1 permit 1253 ^65000:4_0:68_0:65$ ip community-list expanded c1 permit 1254 ^65000:4_0:68_0:66$ ip community-list expanded c1 permit 1255 ^65000:3_0:68_0:67$ ip community-list expanded c1 permit 1256 ^65000:4_0:68_0:67$ ip community-list expanded c1 permit 1257 ^65000:4_0:68_0:68$ ip community-list expanded c1 permit 1258 ^65000:4_0:69_0:35$ ip community-list expanded c1 permit 1259 ^65000:4_0:69_0:36$ ip community-list expanded c1 permit 1260 ^65000:4_0:69_0:37$ ip community-list expanded c1 permit 1261 ^65000:4_0:69_0:38$ ip community-list expanded c1 permit 1262 ^65000:4_0:69_0:39$ ip community-list expanded c1 permit 1263 ^65000:4_0:69_0:40$ ip community-list expanded c1 permit 1264 ^65000:4_0:69_0:41$ ip community-list expanded c1 permit 1265 ^65000:4_0:69_0:42$ ip community-list expanded c1 permit 1266 ^65000:4_0:69_0:43$ ip community-list expanded c1 permit 1267 ^65000:4_0:69_0:44$ ip community-list expanded c1 permit 1268 ^65000:4_0:69_0:45$ ip community-list expanded c1 permit 1269 ^65000:4_0:69_0:46$ ip community-list expanded c1 permit 1270 ^65000:4_0:69_0:47$ ip community-list expanded c1 permit 1271 ^65000:4_0:69_0:48$ ip community-list expanded c1 permit 1272 ^65000:4_0:69_0:49$ ip community-list expanded c1 permit 1273 ^65000:4_0:69_0:50$ ip community-list expanded c1 permit 1274 ^65000:4_0:69_0:51$ ip community-list expanded c1 permit 1275 ^65000:4_0:69_0:52$ ip community-list expanded c1 permit 1276 ^65000:4_0:69_0:53$ ip community-list expanded c1 permit 1277 ^65000:4_0:69_0:54$ ip community-list expanded c1 permit 1278 ^65000:4_0:69_0:55$ ip community-list expanded c1 permit 1279 ^65000:4_0:69_0:56$ ip community-list expanded c1 permit 1280 ^65000:4_0:69_0:57$ ip community-list expanded c1 permit 1281 ^65000:4_0:69_0:58$ ip community-list expanded c1 permit 1282 ^65000:4_0:69_0:59$ ip community-list expanded c1 permit 1283 ^65000:4_0:69_0:60$ ip community-list expanded c1 permit 1284 ^65000:4_0:69_0:61$ ip community-list expanded c1 permit 1285 ^65000:4_0:69_0:62$ ip community-list expanded c1 permit 1286 ^65000:4_0:69_0:63$ ip community-list expanded c1 permit 1287 ^65000:4_0:69_0:64$ ip community-list expanded c1 permit 1288 ^65000:4_0:69_0:65$ ip community-list expanded c1 permit 1289 ^65000:4_0:69_0:66$ ip community-list expanded c1 permit 1290 ^65000:4_0:69_0:67$ ip community-list expanded c1 permit 1291 ^65000:3_0:69_0:68$ ip community-list expanded c1 permit 1292 ^65000:4_0:69_0:68$ ip community-list expanded c1 permit 1293 ^65000:4_0:69_0:69$ ip community-list expanded c1 permit 1294 ^65000:4_0:70_0:36$ ip community-list expanded c1 permit 1295 ^65000:4_0:70_0:37$ ip community-list expanded c1 permit 1296 ^65000:4_0:70_0:38$ ip community-list expanded c1 permit 1297 ^65000:4_0:70_0:39$ ip community-list expanded c1 permit 1298 ^65000:4_0:70_0:40$ ip community-list expanded c1 permit 1299 ^65000:4_0:70_0:41$ ip community-list expanded c1 permit 1300 ^65000:4_0:70_0:42$ ip community-list expanded c1 permit 1301 ^65000:4_0:70_0:43$ ip community-list expanded c1 permit 1302 ^65000:4_0:70_0:44$ ip community-list expanded c1 permit 1303 ^65000:4_0:70_0:45$ ip community-list expanded c1 permit 1304 ^65000:4_0:70_0:46$ ip community-list expanded c1 permit 1305 ^65000:4_0:70_0:47$ ip community-list expanded c1 permit 1306 ^65000:4_0:70_0:48$ ip community-list expanded c1 permit 1307 ^65000:4_0:70_0:49$ ip community-list expanded c1 permit 1308 ^65000:4_0:70_0:50$ ip community-list expanded c1 permit 1309 ^65000:4_0:70_0:51$ ip community-list expanded c1 permit 1310 ^65000:4_0:70_0:52$ ip community-list expanded c1 permit 1311 ^65000:4_0:70_0:53$ ip community-list expanded c1 permit 1312 ^65000:4_0:70_0:54$ ip community-list expanded c1 permit 1313 ^65000:4_0:70_0:55$ ip community-list expanded c1 permit 1314 ^65000:4_0:70_0:56$ ip community-list expanded c1 permit 1315 ^65000:4_0:70_0:57$ ip community-list expanded c1 permit 1316 ^65000:4_0:70_0:58$ ip community-list expanded c1 permit 1317 ^65000:4_0:70_0:59$ ip community-list expanded c1 permit 1318 ^65000:4_0:70_0:60$ ip community-list expanded c1 permit 1319 ^65000:4_0:70_0:61$ ip community-list expanded c1 permit 1320 ^65000:4_0:70_0:62$ ip community-list expanded c1 permit 1321 ^65000:4_0:70_0:63$ ip community-list expanded c1 permit 1322 ^65000:4_0:70_0:64$ ip community-list expanded c1 permit 1323 ^65000:4_0:70_0:65$ ip community-list expanded c1 permit 1324 ^65000:4_0:70_0:66$ ip community-list expanded c1 permit 1325 ^65000:4_0:70_0:67$ ip community-list expanded c1 permit 1326 ^65000:4_0:70_0:68$ ip community-list expanded c1 permit 1327 ^65000:3_0:70_0:69$ ip community-list expanded c1 permit 1328 ^65000:4_0:70_0:69$ ip community-list expanded c1 permit 1329 ^65000:4_0:70_0:70$ ip community-list expanded c1 permit 1330 ^65000:4_0:71_0:36$ ip community-list expanded c1 permit 1331 ^65000:4_0:71_0:37$ ip community-list expanded c1 permit 1332 ^65000:4_0:71_0:38$ ip community-list expanded c1 permit 1333 ^65000:4_0:71_0:39$ ip community-list expanded c1 permit 1334 ^65000:4_0:71_0:40$ ip community-list expanded c1 permit 1335 ^65000:4_0:71_0:41$ ip community-list expanded c1 permit 1336 ^65000:4_0:71_0:42$ ip community-list expanded c1 permit 1337 ^65000:4_0:71_0:43$ ip community-list expanded c1 permit 1338 ^65000:4_0:71_0:44$ ip community-list expanded c1 permit 1339 ^65000:4_0:71_0:45$ ip community-list expanded c1 permit 1340 ^65000:4_0:71_0:46$ ip community-list expanded c1 permit 1341 ^65000:4_0:71_0:47$ ip community-list expanded c1 permit 1342 ^65000:4_0:71_0:48$ ip community-list expanded c1 permit 1343 ^65000:4_0:71_0:49$ ip community-list expanded c1 permit 1344 ^65000:4_0:71_0:50$ ip community-list expanded c1 permit 1345 ^65000:4_0:71_0:51$ ip community-list expanded c1 permit 1346 ^65000:4_0:71_0:52$ ip community-list expanded c1 permit 1347 ^65000:4_0:71_0:53$ ip community-list expanded c1 permit 1348 ^65000:4_0:71_0:54$ ip community-list expanded c1 permit 1349 ^65000:4_0:71_0:55$ ip community-list expanded c1 permit 1350 ^65000:4_0:71_0:56$ ip community-list expanded c1 permit 1351 ^65000:4_0:71_0:57$ ip community-list expanded c1 permit 1352 ^65000:4_0:71_0:58$ ip community-list expanded c1 permit 1353 ^65000:4_0:71_0:59$ ip community-list expanded c1 permit 1354 ^65000:4_0:71_0:60$ ip community-list expanded c1 permit 1355 ^65000:4_0:71_0:61$ ip community-list expanded c1 permit 1356 ^65000:4_0:71_0:62$ ip community-list expanded c1 permit 1357 ^65000:4_0:71_0:63$ ip community-list expanded c1 permit 1358 ^65000:4_0:71_0:64$ ip community-list expanded c1 permit 1359 ^65000:4_0:71_0:65$ ip community-list expanded c1 permit 1360 ^65000:4_0:71_0:66$ ip community-list expanded c1 permit 1361 ^65000:4_0:71_0:67$ ip community-list expanded c1 permit 1362 ^65000:4_0:71_0:68$ ip community-list expanded c1 permit 1363 ^65000:4_0:71_0:69$ ip community-list expanded c1 permit 1364 ^65000:3_0:71_0:70$ ip community-list expanded c1 permit 1365 ^65000:4_0:71_0:70$ ip community-list expanded c1 permit 1366 ^65000:4_0:71_0:71$ ip community-list expanded c1 permit 1367 ^65000:4_0:72_0:37$ ip community-list expanded c1 permit 1368 ^65000:4_0:72_0:38$ ip community-list expanded c1 permit 1369 ^65000:4_0:72_0:39$ ip community-list expanded c1 permit 1370 ^65000:4_0:72_0:40$ ip community-list expanded c1 permit 1371 ^65000:4_0:72_0:41$ ip community-list expanded c1 permit 1372 ^65000:4_0:72_0:42$ ip community-list expanded c1 permit 1373 ^65000:4_0:72_0:43$ ip community-list expanded c1 permit 1374 ^65000:4_0:72_0:44$ ip community-list expanded c1 permit 1375 ^65000:4_0:72_0:45$ ip community-list expanded c1 permit 1376 ^65000:4_0:72_0:46$ ip community-list expanded c1 permit 1377 ^65000:4_0:72_0:47$ ip community-list expanded c1 permit 1378 ^65000:4_0:72_0:48$ ip community-list expanded c1 permit 1379 ^65000:4_0:72_0:49$ ip community-list expanded c1 permit 1380 ^65000:4_0:72_0:50$ ip community-list expanded c1 permit 1381 ^65000:4_0:72_0:51$ ip community-list expanded c1 permit 1382 ^65000:4_0:72_0:52$ ip community-list expanded c1 permit 1383 ^65000:4_0:72_0:53$ ip community-list expanded c1 permit 1384 ^65000:4_0:72_0:54$ ip community-list expanded c1 permit 1385 ^65000:4_0:72_0:55$ ip community-list expanded c1 permit 1386 ^65000:4_0:72_0:56$ ip community-list expanded c1 permit 1387 ^65000:4_0:72_0:57$ ip community-list expanded c1 permit 1388 ^65000:4_0:72_0:58$ ip community-list expanded c1 permit 1389 ^65000:4_0:72_0:59$ ip community-list expanded c1 permit 1390 ^65000:4_0:72_0:60$ ip community-list expanded c1 permit 1391 ^65000:4_0:72_0:61$ ip community-list expanded c1 permit 1392 ^65000:4_0:72_0:62$ ip community-list expanded c1 permit 1393 ^65000:4_0:72_0:63$ ip community-list expanded c1 permit 1394 ^65000:4_0:72_0:64$ ip community-list expanded c1 permit 1395 ^65000:4_0:72_0:65$ ip community-list expanded c1 permit 1396 ^65000:4_0:72_0:66$ ip community-list expanded c1 permit 1397 ^65000:4_0:72_0:67$ ip community-list expanded c1 permit 1398 ^65000:4_0:72_0:68$ ip community-list expanded c1 permit 1399 ^65000:4_0:72_0:69$ ip community-list expanded c1 permit 1400 ^65000:4_0:72_0:70$ ip community-list expanded c1 permit 1401 ^65000:3_0:72_0:71$ ip community-list expanded c1 permit 1402 ^65000:4_0:72_0:71$ ip community-list expanded c1 permit 1403 ^65000:4_0:72_0:72$ ip community-list expanded c1 permit 1404 ^65000:4_0:73_0:37$ ip community-list expanded c1 permit 1405 ^65000:4_0:73_0:38$ ip community-list expanded c1 permit 1406 ^65000:4_0:73_0:39$ ip community-list expanded c1 permit 1407 ^65000:4_0:73_0:40$ ip community-list expanded c1 permit 1408 ^65000:4_0:73_0:41$ ip community-list expanded c1 permit 1409 ^65000:4_0:73_0:42$ ip community-list expanded c1 permit 1410 ^65000:4_0:73_0:43$ ip community-list expanded c1 permit 1411 ^65000:4_0:73_0:44$ ip community-list expanded c1 permit 1412 ^65000:4_0:73_0:45$ ip community-list expanded c1 permit 1413 ^65000:4_0:73_0:46$ ip community-list expanded c1 permit 1414 ^65000:4_0:73_0:47$ ip community-list expanded c1 permit 1415 ^65000:4_0:73_0:48$ ip community-list expanded c1 permit 1416 ^65000:4_0:73_0:49$ ip community-list expanded c1 permit 1417 ^65000:4_0:73_0:50$ ip community-list expanded c1 permit 1418 ^65000:4_0:73_0:51$ ip community-list expanded c1 permit 1419 ^65000:4_0:73_0:52$ ip community-list expanded c1 permit 1420 ^65000:4_0:73_0:53$ ip community-list expanded c1 permit 1421 ^65000:4_0:73_0:54$ ip community-list expanded c1 permit 1422 ^65000:4_0:73_0:55$ ip community-list expanded c1 permit 1423 ^65000:4_0:73_0:56$ ip community-list expanded c1 permit 1424 ^65000:4_0:73_0:57$ ip community-list expanded c1 permit 1425 ^65000:4_0:73_0:58$ ip community-list expanded c1 permit 1426 ^65000:4_0:73_0:59$ ip community-list expanded c1 permit 1427 ^65000:4_0:73_0:60$ ip community-list expanded c1 permit 1428 ^65000:4_0:73_0:61$ ip community-list expanded c1 permit 1429 ^65000:4_0:73_0:62$ ip community-list expanded c1 permit 1430 ^65000:4_0:73_0:63$ ip community-list expanded c1 permit 1431 ^65000:4_0:73_0:64$ ip community-list expanded c1 permit 1432 ^65000:4_0:73_0:65$ ip community-list expanded c1 permit 1433 ^65000:4_0:73_0:66$ ip community-list expanded c1 permit 1434 ^65000:4_0:73_0:67$ ip community-list expanded c1 permit 1435 ^65000:4_0:73_0:68$ ip community-list expanded c1 permit 1436 ^65000:4_0:73_0:69$ ip community-list expanded c1 permit 1437 ^65000:4_0:73_0:70$ ip community-list expanded c1 permit 1438 ^65000:4_0:73_0:71$ ip community-list expanded c1 permit 1439 ^65000:3_0:73_0:72$ ip community-list expanded c1 permit 1440 ^65000:4_0:73_0:72$ ip community-list expanded c1 permit 1441 ^65000:4_0:73_0:73$ ip community-list expanded c1 permit 1442 ^65000:4_0:74_0:38$ ip community-list expanded c1 permit 1443 ^65000:4_0:74_0:39$ ip community-list expanded c1 permit 1444 ^65000:4_0:74_0:40$ ip community-list expanded c1 permit 1445 ^65000:4_0:74_0:41$ ip community-list expanded c1 permit 1446 ^65000:4_0:74_0:42$ ip community-list expanded c1 permit 1447 ^65000:4_0:74_0:43$ ip community-list expanded c1 permit 1448 ^65000:4_0:74_0:44$ ip community-list expanded c1 permit 1449 ^65000:4_0:74_0:45$ ip community-list expanded c1 permit 1450 ^65000:4_0:74_0:46$ ip community-list expanded c1 permit 1451 ^65000:4_0:74_0:47$ ip community-list expanded c1 permit 1452 ^65000:4_0:74_0:48$ ip community-list expanded c1 permit 1453 ^65000:4_0:74_0:49$ ip community-list expanded c1 permit 1454 ^65000:4_0:74_0:50$ ip community-list expanded c1 permit 1455 ^65000:4_0:74_0:51$ ip community-list expanded c1 permit 1456 ^65000:4_0:74_0:52$ ip community-list expanded c1 permit 1457 ^65000:4_0:74_0:53$ ip community-list expanded c1 permit 1458 ^65000:4_0:74_0:54$ ip community-list expanded c1 permit 1459 ^65000:4_0:74_0:55$ ip community-list expanded c1 permit 1460 ^65000:4_0:74_0:56$ ip community-list expanded c1 permit 1461 ^65000:4_0:74_0:57$ ip community-list expanded c1 permit 1462 ^65000:4_0:74_0:58$ ip community-list expanded c1 permit 1463 ^65000:4_0:74_0:59$ ip community-list expanded c1 permit 1464 ^65000:4_0:74_0:60$ ip community-list expanded c1 permit 1465 ^65000:4_0:74_0:61$ ip community-list expanded c1 permit 1466 ^65000:4_0:74_0:62$ ip community-list expanded c1 permit 1467 ^65000:4_0:74_0:63$ ip community-list expanded c1 permit 1468 ^65000:4_0:74_0:64$ ip community-list expanded c1 permit 1469 ^65000:4_0:74_0:65$ ip community-list expanded c1 permit 1470 ^65000:4_0:74_0:66$ ip community-list expanded c1 permit 1471 ^65000:4_0:74_0:67$ ip community-list expanded c1 permit 1472 ^65000:4_0:74_0:68$ ip community-list expanded c1 permit 1473 ^65000:4_0:74_0:69$ ip community-list expanded c1 permit 1474 ^65000:4_0:74_0:70$ ip community-list expanded c1 permit 1475 ^65000:4_0:74_0:71$ ip community-list expanded c1 permit 1476 ^65000:4_0:74_0:72$ ip community-list expanded c1 permit 1477 ^65000:3_0:74_0:73$ ip community-list expanded c1 permit 1478 ^65000:4_0:74_0:73$ ip community-list expanded c1 permit 1479 ^65000:4_0:74_0:74$ ip community-list expanded c1 permit 1480 ^65000:4_0:75_0:38$ ip community-list expanded c1 permit 1481 ^65000:4_0:75_0:39$ ip community-list expanded c1 permit 1482 ^65000:4_0:75_0:40$ ip community-list expanded c1 permit 1483 ^65000:4_0:75_0:41$ ip community-list expanded c1 permit 1484 ^65000:4_0:75_0:42$ ip community-list expanded c1 permit 1485 ^65000:4_0:75_0:43$ ip community-list expanded c1 permit 1486 ^65000:4_0:75_0:44$ ip community-list expanded c1 permit 1487 ^65000:4_0:75_0:45$ ip community-list expanded c1 permit 1488 ^65000:4_0:75_0:46$ ip community-list expanded c1 permit 1489 ^65000:4_0:75_0:47$ ip community-list expanded c1 permit 1490 ^65000:4_0:75_0:48$ ip community-list expanded c1 permit 1491 ^65000:4_0:75_0:49$ ip community-list expanded c1 permit 1492 ^65000:4_0:75_0:50$ ip community-list expanded c1 permit 1493 ^65000:4_0:75_0:51$ ip community-list expanded c1 permit 1494 ^65000:4_0:75_0:52$ ip community-list expanded c1 permit 1495 ^65000:4_0:75_0:53$ ip community-list expanded c1 permit 1496 ^65000:4_0:75_0:54$ ip community-list expanded c1 permit 1497 ^65000:4_0:75_0:55$ ip community-list expanded c1 permit 1498 ^65000:4_0:75_0:56$ ip community-list expanded c1 permit 1499 ^65000:4_0:75_0:57$ ip community-list expanded c1 permit 1500 ^65000:4_0:75_0:58$ ip community-list expanded c1 permit 1501 ^65000:4_0:75_0:59$ ip community-list expanded c1 permit 1502 ^65000:4_0:75_0:60$ ip community-list expanded c1 permit 1503 ^65000:4_0:75_0:61$ ip community-list expanded c1 permit 1504 ^65000:4_0:75_0:62$ ip community-list expanded c1 permit 1505 ^65000:4_0:75_0:63$ ip community-list expanded c1 permit 1506 ^65000:4_0:75_0:64$ ip community-list expanded c1 permit 1507 ^65000:4_0:75_0:65$ ip community-list expanded c1 permit 1508 ^65000:4_0:75_0:66$ ip community-list expanded c1 permit 1509 ^65000:4_0:75_0:67$ ip community-list expanded c1 permit 1510 ^65000:4_0:75_0:68$ ip community-list expanded c1 permit 1511 ^65000:4_0:75_0:69$ ip community-list expanded c1 permit 1512 ^65000:4_0:75_0:70$ ip community-list expanded c1 permit 1513 ^65000:4_0:75_0:71$ ip community-list expanded c1 permit 1514 ^65000:4_0:75_0:72$ ip community-list expanded c1 permit 1515 ^65000:4_0:75_0:73$ ip community-list expanded c1 permit 1516 ^65000:3_0:75_0:74$ ip community-list expanded c1 permit 1517 ^65000:4_0:75_0:74$ ip community-list expanded c1 permit 1518 ^65000:4_0:75_0:75$ ip community-list expanded c1 permit 1519 ^65000:4_0:76_0:39$ ip community-list expanded c1 permit 1520 ^65000:4_0:76_0:40$ ip community-list expanded c1 permit 1521 ^65000:4_0:76_0:41$ ip community-list expanded c1 permit 1522 ^65000:4_0:76_0:42$ ip community-list expanded c1 permit 1523 ^65000:4_0:76_0:43$ ip community-list expanded c1 permit 1524 ^65000:4_0:76_0:44$ ip community-list expanded c1 permit 1525 ^65000:4_0:76_0:45$ ip community-list expanded c1 permit 1526 ^65000:4_0:76_0:46$ ip community-list expanded c1 permit 1527 ^65000:4_0:76_0:47$ ip community-list expanded c1 permit 1528 ^65000:4_0:76_0:48$ ip community-list expanded c1 permit 1529 ^65000:4_0:76_0:49$ ip community-list expanded c1 permit 1530 ^65000:4_0:76_0:50$ ip community-list expanded c1 permit 1531 ^65000:4_0:76_0:51$ ip community-list expanded c1 permit 1532 ^65000:4_0:76_0:52$ ip community-list expanded c1 permit 1533 ^65000:4_0:76_0:53$ ip community-list expanded c1 permit 1534 ^65000:4_0:76_0:54$ ip community-list expanded c1 permit 1535 ^65000:4_0:76_0:55$ ip community-list expanded c1 permit 1536 ^65000:4_0:76_0:56$ ip community-list expanded c1 permit 1537 ^65000:4_0:76_0:57$ ip community-list expanded c1 permit 1538 ^65000:4_0:76_0:58$ ip community-list expanded c1 permit 1539 ^65000:4_0:76_0:59$ ip community-list expanded c1 permit 1540 ^65000:4_0:76_0:60$ ip community-list expanded c1 permit 1541 ^65000:4_0:76_0:61$ ip community-list expanded c1 permit 1542 ^65000:4_0:76_0:62$ ip community-list expanded c1 permit 1543 ^65000:4_0:76_0:63$ ip community-list expanded c1 permit 1544 ^65000:4_0:76_0:64$ ip community-list expanded c1 permit 1545 ^65000:4_0:76_0:65$ ip community-list expanded c1 permit 1546 ^65000:4_0:76_0:66$ ip community-list expanded c1 permit 1547 ^65000:4_0:76_0:67$ ip community-list expanded c1 permit 1548 ^65000:4_0:76_0:68$ ip community-list expanded c1 permit 1549 ^65000:4_0:76_0:69$ ip community-list expanded c1 permit 1550 ^65000:4_0:76_0:70$ ip community-list expanded c1 permit 1551 ^65000:4_0:76_0:71$ ip community-list expanded c1 permit 1552 ^65000:4_0:76_0:72$ ip community-list expanded c1 permit 1553 ^65000:4_0:76_0:73$ ip community-list expanded c1 permit 1554 ^65000:4_0:76_0:74$ ip community-list expanded c1 permit 1555 ^65000:3_0:76_0:75$ ip community-list expanded c1 permit 1556 ^65000:4_0:76_0:75$ ip community-list expanded c1 permit 1557 ^65000:4_0:76_0:76$ ip community-list expanded c1 permit 1558 ^65000:4_0:77_0:39$ ip community-list expanded c1 permit 1559 ^65000:4_0:77_0:40$ ip community-list expanded c1 permit 1560 ^65000:4_0:77_0:41$ ip community-list expanded c1 permit 1561 ^65000:4_0:77_0:42$ ip community-list expanded c1 permit 1562 ^65000:4_0:77_0:43$ ip community-list expanded c1 permit 1563 ^65000:4_0:77_0:44$ ip community-list expanded c1 permit 1564 ^65000:4_0:77_0:45$ ip community-list expanded c1 permit 1565 ^65000:4_0:77_0:46$ ip community-list expanded c1 permit 1566 ^65000:4_0:77_0:47$ ip community-list expanded c1 permit 1567 ^65000:4_0:77_0:48$ ip community-list expanded c1 permit 1568 ^65000:4_0:77_0:49$ ip community-list expanded c1 permit 1569 ^65000:4_0:77_0:50$ ip community-list expanded c1 permit 1570 ^65000:4_0:77_0:51$ ip community-list expanded c1 permit 1571 ^65000:4_0:77_0:52$ ip community-list expanded c1 permit 1572 ^65000:4_0:77_0:53$ ip community-list expanded c1 permit 1573 ^65000:4_0:77_0:54$ ip community-list expanded c1 permit 1574 ^65000:4_0:77_0:55$ ip community-list expanded c1 permit 1575 ^65000:4_0:77_0:56$ ip community-list expanded c1 permit 1576 ^65000:4_0:77_0:57$ ip community-list expanded c1 permit 1577 ^65000:4_0:77_0:58$ ip community-list expanded c1 permit 1578 ^65000:4_0:77_0:59$ ip community-list expanded c1 permit 1579 ^65000:4_0:77_0:60$ ip community-list expanded c1 permit 1580 ^65000:4_0:77_0:61$ ip community-list expanded c1 permit 1581 ^65000:4_0:77_0:62$ ip community-list expanded c1 permit 1582 ^65000:4_0:77_0:63$ ip community-list expanded c1 permit 1583 ^65000:4_0:77_0:64$ ip community-list expanded c1 permit 1584 ^65000:4_0:77_0:65$ ip community-list expanded c1 permit 1585 ^65000:4_0:77_0:66$ ip community-list expanded c1 permit 1586 ^65000:4_0:77_0:67$ ip community-list expanded c1 permit 1587 ^65000:4_0:77_0:68$ ip community-list expanded c1 permit 1588 ^65000:4_0:77_0:69$ ip community-list expanded c1 permit 1589 ^65000:4_0:77_0:70$ ip community-list expanded c1 permit 1590 ^65000:4_0:77_0:71$ ip community-list expanded c1 permit 1591 ^65000:4_0:77_0:72$ ip community-list expanded c1 permit 1592 ^65000:4_0:77_0:73$ ip community-list expanded c1 permit 1593 ^65000:4_0:77_0:74$ ip community-list expanded c1 permit 1594 ^65000:4_0:77_0:75$ ip community-list expanded c1 permit 1595 ^65000:3_0:77_0:76$ ip community-list expanded c1 permit 1596 ^65000:4_0:77_0:76$ ip community-list expanded c1 permit 1597 ^65000:4_0:77_0:77$ ip community-list expanded c1 permit 1598 ^65000:4_0:78_0:40$ ip community-list expanded c1 permit 1599 ^65000:4_0:78_0:41$ ip community-list expanded c1 permit 1600 ^65000:4_0:78_0:42$ ip community-list expanded c1 permit 1601 ^65000:4_0:78_0:43$ ip community-list expanded c1 permit 1602 ^65000:4_0:78_0:44$ ip community-list expanded c1 permit 1603 ^65000:4_0:78_0:45$ ip community-list expanded c1 permit 1604 ^65000:4_0:78_0:46$ ip community-list expanded c1 permit 1605 ^65000:4_0:78_0:47$ ip community-list expanded c1 permit 1606 ^65000:4_0:78_0:48$ ip community-list expanded c1 permit 1607 ^65000:4_0:78_0:49$ ip community-list expanded c1 permit 1608 ^65000:4_0:78_0:50$ ip community-list expanded c1 permit 1609 ^65000:4_0:78_0:51$ ip community-list expanded c1 permit 1610 ^65000:4_0:78_0:52$ ip community-list expanded c1 permit 1611 ^65000:4_0:78_0:53$ ip community-list expanded c1 permit 1612 ^65000:4_0:78_0:54$ ip community-list expanded c1 permit 1613 ^65000:4_0:78_0:55$ ip community-list expanded c1 permit 1614 ^65000:4_0:78_0:56$ ip community-list expanded c1 permit 1615 ^65000:4_0:78_0:57$ ip community-list expanded c1 permit 1616 ^65000:4_0:78_0:58$ ip community-list expanded c1 permit 1617 ^65000:4_0:78_0:59$ ip community-list expanded c1 permit 1618 ^65000:4_0:78_0:60$ ip community-list expanded c1 permit 1619 ^65000:4_0:78_0:61$ ip community-list expanded c1 permit 1620 ^65000:4_0:78_0:62$ ip community-list expanded c1 permit 1621 ^65000:4_0:78_0:63$ ip community-list expanded c1 permit 1622 ^65000:4_0:78_0:64$ ip community-list expanded c1 permit 1623 ^65000:4_0:78_0:65$ ip community-list expanded c1 permit 1624 ^65000:4_0:78_0:66$ ip community-list expanded c1 permit 1625 ^65000:4_0:78_0:67$ ip community-list expanded c1 permit 1626 ^65000:4_0:78_0:68$ ip community-list expanded c1 permit 1627 ^65000:4_0:78_0:69$ ip community-list expanded c1 permit 1628 ^65000:4_0:78_0:70$ ip community-list expanded c1 permit 1629 ^65000:4_0:78_0:71$ ip community-list expanded c1 permit 1630 ^65000:4_0:78_0:72$ ip community-list expanded c1 permit 1631 ^65000:4_0:78_0:73$ ip community-list expanded c1 permit 1632 ^65000:4_0:78_0:74$ ip community-list expanded c1 permit 1633 ^65000:4_0:78_0:75$ ip community-list expanded c1 permit 1634 ^65000:4_0:78_0:76$ ip community-list expanded c1 permit 1635 ^65000:3_0:78_0:77$ ip community-list expanded c1 permit 1636 ^65000:4_0:78_0:77$ ip community-list expanded c1 permit 1637 ^65000:4_0:78_0:78$ ip community-list expanded c1 permit 1638 ^65000:4_0:79_0:40$ ip community-list expanded c1 permit 1639 ^65000:4_0:79_0:41$ ip community-list expanded c1 permit 1640 ^65000:4_0:79_0:42$ ip community-list expanded c1 permit 1641 ^65000:4_0:79_0:43$ ip community-list expanded c1 permit 1642 ^65000:4_0:79_0:44$ ip community-list expanded c1 permit 1643 ^65000:4_0:79_0:45$ ip community-list expanded c1 permit 1644 ^65000:4_0:79_0:46$ ip community-list expanded c1 permit 1645 ^65000:4_0:79_0:47$ ip community-list expanded c1 permit 1646 ^65000:4_0:79_0:48$ ip community-list expanded c1 permit 1647 ^65000:4_0:79_0:49$ ip community-list expanded c1 permit 1648 ^65000:4_0:79_0:50$ ip community-list expanded c1 permit 1649 ^65000:4_0:79_0:51$ ip community-list expanded c1 permit 1650 ^65000:4_0:79_0:52$ ip community-list expanded c1 permit 1651 ^65000:4_0:79_0:53$ ip community-list expanded c1 permit 1652 ^65000:4_0:79_0:54$ ip community-list expanded c1 permit 1653 ^65000:4_0:79_0:55$ ip community-list expanded c1 permit 1654 ^65000:4_0:79_0:56$ ip community-list expanded c1 permit 1655 ^65000:4_0:79_0:57$ ip community-list expanded c1 permit 1656 ^65000:4_0:79_0:58$ ip community-list expanded c1 permit 1657 ^65000:4_0:79_0:59$ ip community-list expanded c1 permit 1658 ^65000:4_0:79_0:60$ ip community-list expanded c1 permit 1659 ^65000:4_0:79_0:61$ ip community-list expanded c1 permit 1660 ^65000:4_0:79_0:62$ ip community-list expanded c1 permit 1661 ^65000:4_0:79_0:63$ ip community-list expanded c1 permit 1662 ^65000:4_0:79_0:64$ ip community-list expanded c1 permit 1663 ^65000:4_0:79_0:65$ ip community-list expanded c1 permit 1664 ^65000:4_0:79_0:66$ ip community-list expanded c1 permit 1665 ^65000:4_0:79_0:67$ ip community-list expanded c1 permit 1666 ^65000:4_0:79_0:68$ ip community-list expanded c1 permit 1667 ^65000:4_0:79_0:69$ ip community-list expanded c1 permit 1668 ^65000:4_0:79_0:70$ ip community-list expanded c1 permit 1669 ^65000:4_0:79_0:71$ ip community-list expanded c1 permit 1670 ^65000:4_0:79_0:72$ ip community-list expanded c1 permit 1671 ^65000:4_0:79_0:73$ ip community-list expanded c1 permit 1672 ^65000:4_0:79_0:74$ ip community-list expanded c1 permit 1673 ^65000:4_0:79_0:75$ ip community-list expanded c1 permit 1674 ^65000:4_0:79_0:76$ ip community-list expanded c1 permit 1675 ^65000:4_0:79_0:77$ ip community-list expanded c1 permit 1676 ^65000:3_0:79_0:78$ ip community-list expanded c1 permit 1677 ^65000:4_0:79_0:78$ ip community-list expanded c1 permit 1678 ^65000:4_0:79_0:79$ ip community-list expanded c1 permit 1679 ^65000:4_0:80_0:41$ ip community-list expanded c1 permit 1680 ^65000:4_0:80_0:42$ ip community-list expanded c1 permit 1681 ^65000:4_0:80_0:43$ ip community-list expanded c1 permit 1682 ^65000:4_0:80_0:44$ ip community-list expanded c1 permit 1683 ^65000:4_0:80_0:45$ ip community-list expanded c1 permit 1684 ^65000:4_0:80_0:46$ ip community-list expanded c1 permit 1685 ^65000:4_0:80_0:47$ ip community-list expanded c1 permit 1686 ^65000:4_0:80_0:48$ ip community-list expanded c1 permit 1687 ^65000:4_0:80_0:49$ ip community-list expanded c1 permit 1688 ^65000:4_0:80_0:50$ ip community-list expanded c1 permit 1689 ^65000:4_0:80_0:51$ ip community-list expanded c1 permit 1690 ^65000:4_0:80_0:52$ ip community-list expanded c1 permit 1691 ^65000:4_0:80_0:53$ ip community-list expanded c1 permit 1692 ^65000:4_0:80_0:54$ ip community-list expanded c1 permit 1693 ^65000:4_0:80_0:55$ ip community-list expanded c1 permit 1694 ^65000:4_0:80_0:56$ ip community-list expanded c1 permit 1695 ^65000:4_0:80_0:57$ ip community-list expanded c1 permit 1696 ^65000:4_0:80_0:58$ ip community-list expanded c1 permit 1697 ^65000:4_0:80_0:59$ ip community-list expanded c1 permit 1698 ^65000:4_0:80_0:60$ ip community-list expanded c1 permit 1699 ^65000:4_0:80_0:61$ ip community-list expanded c1 permit 1700 ^65000:4_0:80_0:62$ ip community-list expanded c1 permit 1701 ^65000:4_0:80_0:63$ ip community-list expanded c1 permit 1702 ^65000:4_0:80_0:64$ ip community-list expanded c1 permit 1703 ^65000:4_0:80_0:65$ ip community-list expanded c1 permit 1704 ^65000:4_0:80_0:66$ ip community-list expanded c1 permit 1705 ^65000:4_0:80_0:67$ ip community-list expanded c1 permit 1706 ^65000:4_0:80_0:68$ ip community-list expanded c1 permit 1707 ^65000:4_0:80_0:69$ ip community-list expanded c1 permit 1708 ^65000:4_0:80_0:70$ ip community-list expanded c1 permit 1709 ^65000:4_0:80_0:71$ ip community-list expanded c1 permit 1710 ^65000:4_0:80_0:72$ ip community-list expanded c1 permit 1711 ^65000:4_0:80_0:73$ ip community-list expanded c1 permit 1712 ^65000:4_0:80_0:74$ ip community-list expanded c1 permit 1713 ^65000:4_0:80_0:75$ ip community-list expanded c1 permit 1714 ^65000:4_0:80_0:76$ ip community-list expanded c1 permit 1715 ^65000:4_0:80_0:77$ ip community-list expanded c1 permit 1716 ^65000:4_0:80_0:78$ ip community-list expanded c1 permit 1717 ^65000:3_0:80_0:79$ ip community-list expanded c1 permit 1718 ^65000:4_0:80_0:79$ ip community-list expanded c1 permit 1719 ^65000:4_0:80_0:80$ ip community-list expanded c1 permit 1720 ^65000:4_0:81_0:41$ ip community-list expanded c1 permit 1721 ^65000:4_0:81_0:42$ ip community-list expanded c1 permit 1722 ^65000:4_0:81_0:43$ ip community-list expanded c1 permit 1723 ^65000:4_0:81_0:44$ ip community-list expanded c1 permit 1724 ^65000:4_0:81_0:45$ ip community-list expanded c1 permit 1725 ^65000:4_0:81_0:46$ ip community-list expanded c1 permit 1726 ^65000:4_0:81_0:47$ ip community-list expanded c1 permit 1727 ^65000:4_0:81_0:48$ ip community-list expanded c1 permit 1728 ^65000:4_0:81_0:49$ ip community-list expanded c1 permit 1729 ^65000:4_0:81_0:50$ ip community-list expanded c1 permit 1730 ^65000:4_0:81_0:51$ ip community-list expanded c1 permit 1731 ^65000:4_0:81_0:52$ ip community-list expanded c1 permit 1732 ^65000:4_0:81_0:53$ ip community-list expanded c1 permit 1733 ^65000:4_0:81_0:54$ ip community-list expanded c1 permit 1734 ^65000:4_0:81_0:55$ ip community-list expanded c1 permit 1735 ^65000:4_0:81_0:56$ ip community-list expanded c1 permit 1736 ^65000:4_0:81_0:57$ ip community-list expanded c1 permit 1737 ^65000:4_0:81_0:58$ ip community-list expanded c1 permit 1738 ^65000:4_0:81_0:59$ ip community-list expanded c1 permit 1739 ^65000:4_0:81_0:60$ ip community-list expanded c1 permit 1740 ^65000:4_0:81_0:61$ ip community-list expanded c1 permit 1741 ^65000:4_0:81_0:62$ ip community-list expanded c1 permit 1742 ^65000:4_0:81_0:63$ ip community-list expanded c1 permit 1743 ^65000:4_0:81_0:64$ ip community-list expanded c1 permit 1744 ^65000:4_0:81_0:65$ ip community-list expanded c1 permit 1745 ^65000:4_0:81_0:66$ ip community-list expanded c1 permit 1746 ^65000:4_0:81_0:67$ ip community-list expanded c1 permit 1747 ^65000:4_0:81_0:68$ ip community-list expanded c1 permit 1748 ^65000:4_0:81_0:69$ ip community-list expanded c1 permit 1749 ^65000:4_0:81_0:70$ ip community-list expanded c1 permit 1750 ^65000:4_0:81_0:71$ ip community-list expanded c1 permit 1751 ^65000:4_0:81_0:72$ ip community-list expanded c1 permit 1752 ^65000:4_0:81_0:73$ ip community-list expanded c1 permit 1753 ^65000:4_0:81_0:74$ ip community-list expanded c1 permit 1754 ^65000:4_0:81_0:75$ ip community-list expanded c1 permit 1755 ^65000:4_0:81_0:76$ ip community-list expanded c1 permit 1756 ^65000:4_0:81_0:77$ ip community-list expanded c1 permit 1757 ^65000:4_0:81_0:78$ ip community-list expanded c1 permit 1758 ^65000:4_0:81_0:79$ ip community-list expanded c1 permit 1759 ^65000:3_0:81_0:80$ ip community-list expanded c1 permit 1760 ^65000:4_0:81_0:80$ ip community-list expanded c1 permit 1761 ^65000:4_0:81_0:81$ ip community-list expanded c1 permit 1762 ^65000:4_0:82_0:42$ ip community-list expanded c1 permit 1763 ^65000:4_0:82_0:43$ ip community-list expanded c1 permit 1764 ^65000:4_0:82_0:44$ ip community-list expanded c1 permit 1765 ^65000:4_0:82_0:45$ ip community-list expanded c1 permit 1766 ^65000:4_0:82_0:46$ ip community-list expanded c1 permit 1767 ^65000:4_0:82_0:47$ ip community-list expanded c1 permit 1768 ^65000:4_0:82_0:48$ ip community-list expanded c1 permit 1769 ^65000:4_0:82_0:49$ ip community-list expanded c1 permit 1770 ^65000:4_0:82_0:50$ ip community-list expanded c1 permit 1771 ^65000:4_0:82_0:51$ ip community-list expanded c1 permit 1772 ^65000:4_0:82_0:52$ ip community-list expanded c1 permit 1773 ^65000:4_0:82_0:53$ ip community-list expanded c1 permit 1774 ^65000:4_0:82_0:54$ ip community-list expanded c1 permit 1775 ^65000:4_0:82_0:55$ ip community-list expanded c1 permit 1776 ^65000:4_0:82_0:56$ ip community-list expanded c1 permit 1777 ^65000:4_0:82_0:57$ ip community-list expanded c1 permit 1778 ^65000:4_0:82_0:58$ ip community-list expanded c1 permit 1779 ^65000:4_0:82_0:59$ ip community-list expanded c1 permit 1780 ^65000:4_0:82_0:60$ ip community-list expanded c1 permit 1781 ^65000:4_0:82_0:61$ ip community-list expanded c1 permit 1782 ^65000:4_0:82_0:62$ ip community-list expanded c1 permit 1783 ^65000:4_0:82_0:63$ ip community-list expanded c1 permit 1784 ^65000:4_0:82_0:64$ ip community-list expanded c1 permit 1785 ^65000:4_0:82_0:65$ ip community-list expanded c1 permit 1786 ^65000:4_0:82_0:66$ ip community-list expanded c1 permit 1787 ^65000:4_0:82_0:67$ ip community-list expanded c1 permit 1788 ^65000:4_0:82_0:68$ ip community-list expanded c1 permit 1789 ^65000:4_0:82_0:69$ ip community-list expanded c1 permit 1790 ^65000:4_0:82_0:70$ ip community-list expanded c1 permit 1791 ^65000:4_0:82_0:71$ ip community-list expanded c1 permit 1792 ^65000:4_0:82_0:72$ ip community-list expanded c1 permit 1793 ^65000:4_0:82_0:73$ ip community-list expanded c1 permit 1794 ^65000:4_0:82_0:74$ ip community-list expanded c1 permit 1795 ^65000:4_0:82_0:75$ ip community-list expanded c1 permit 1796 ^65000:4_0:82_0:76$ ip community-list expanded c1 permit 1797 ^65000:4_0:82_0:77$ ip community-list expanded c1 permit 1798 ^65000:4_0:82_0:78$ ip community-list expanded c1 permit 1799 ^65000:4_0:82_0:79$ ip community-list expanded c1 permit 1800 ^65000:4_0:82_0:80$ ip community-list expanded c1 permit 1801 ^65000:3_0:82_0:81$ ip community-list expanded c1 permit 1802 ^65000:4_0:82_0:81$ ip community-list expanded c1 permit 1803 ^65000:4_0:82_0:82$ ip community-list expanded c1 permit 1804 ^65000:4_0:83_0:42$ ip community-list expanded c1 permit 1805 ^65000:4_0:83_0:43$ ip community-list expanded c1 permit 1806 ^65000:4_0:83_0:44$ ip community-list expanded c1 permit 1807 ^65000:4_0:83_0:45$ ip community-list expanded c1 permit 1808 ^65000:4_0:83_0:46$ ip community-list expanded c1 permit 1809 ^65000:4_0:83_0:47$ ip community-list expanded c1 permit 1810 ^65000:4_0:83_0:48$ ip community-list expanded c1 permit 1811 ^65000:4_0:83_0:49$ ip community-list expanded c1 permit 1812 ^65000:4_0:83_0:50$ ip community-list expanded c1 permit 1813 ^65000:4_0:83_0:51$ ip community-list expanded c1 permit 1814 ^65000:4_0:83_0:52$ ip community-list expanded c1 permit 1815 ^65000:4_0:83_0:53$ ip community-list expanded c1 permit 1816 ^65000:4_0:83_0:54$ ip community-list expanded c1 permit 1817 ^65000:4_0:83_0:55$ ip community-list expanded c1 permit 1818 ^65000:4_0:83_0:56$ ip community-list expanded c1 permit 1819 ^65000:4_0:83_0:57$ ip community-list expanded c1 permit 1820 ^65000:4_0:83_0:58$ ip community-list expanded c1 permit 1821 ^65000:4_0:83_0:59$ ip community-list expanded c1 permit 1822 ^65000:4_0:83_0:60$ ip community-list expanded c1 permit 1823 ^65000:4_0:83_0:61$ ip community-list expanded c1 permit 1824 ^65000:4_0:83_0:62$ ip community-list expanded c1 permit 1825 ^65000:4_0:83_0:63$ ip community-list expanded c1 permit 1826 ^65000:4_0:83_0:64$ ip community-list expanded c1 permit 1827 ^65000:4_0:83_0:65$ ip community-list expanded c1 permit 1828 ^65000:4_0:83_0:66$ ip community-list expanded c1 permit 1829 ^65000:4_0:83_0:67$ ip community-list expanded c1 permit 1830 ^65000:4_0:83_0:68$ ip community-list expanded c1 permit 1831 ^65000:4_0:83_0:69$ ip community-list expanded c1 permit 1832 ^65000:4_0:83_0:70$ ip community-list expanded c1 permit 1833 ^65000:4_0:83_0:71$ ip community-list expanded c1 permit 1834 ^65000:4_0:83_0:72$ ip community-list expanded c1 permit 1835 ^65000:4_0:83_0:73$ ip community-list expanded c1 permit 1836 ^65000:4_0:83_0:74$ ip community-list expanded c1 permit 1837 ^65000:4_0:83_0:75$ ip community-list expanded c1 permit 1838 ^65000:4_0:83_0:76$ ip community-list expanded c1 permit 1839 ^65000:4_0:83_0:77$ ip community-list expanded c1 permit 1840 ^65000:4_0:83_0:78$ ip community-list expanded c1 permit 1841 ^65000:4_0:83_0:79$ ip community-list expanded c1 permit 1842 ^65000:4_0:83_0:80$ ip community-list expanded c1 permit 1843 ^65000:4_0:83_0:81$ ip community-list expanded c1 permit 1844 ^65000:3_0:83_0:82$ ip community-list expanded c1 permit 1845 ^65000:4_0:83_0:82$ ip community-list expanded c1 permit 1846 ^65000:4_0:83_0:83$ ip community-list expanded c1 permit 1847 ^65000:4_0:84_0:43$ ip community-list expanded c1 permit 1848 ^65000:4_0:84_0:44$ ip community-list expanded c1 permit 1849 ^65000:4_0:84_0:45$ ip community-list expanded c1 permit 1850 ^65000:4_0:84_0:46$ ip community-list expanded c1 permit 1851 ^65000:4_0:84_0:47$ ip community-list expanded c1 permit 1852 ^65000:4_0:84_0:48$ ip community-list expanded c1 permit 1853 ^65000:4_0:84_0:49$ ip community-list expanded c1 permit 1854 ^65000:4_0:84_0:50$ ip community-list expanded c1 permit 1855 ^65000:4_0:84_0:51$ ip community-list expanded c1 permit 1856 ^65000:4_0:84_0:52$ ip community-list expanded c1 permit 1857 ^65000:4_0:84_0:53$ ip community-list expanded c1 permit 1858 ^65000:4_0:84_0:54$ ip community-list expanded c1 permit 1859 ^65000:4_0:84_0:55$ ip community-list expanded c1 permit 1860 ^65000:4_0:84_0:56$ ip community-list expanded c1 permit 1861 ^65000:4_0:84_0:57$ ip community-list expanded c1 permit 1862 ^65000:4_0:84_0:58$ ip community-list expanded c1 permit 1863 ^65000:4_0:84_0:59$ ip community-list expanded c1 permit 1864 ^65000:4_0:84_0:60$ ip community-list expanded c1 permit 1865 ^65000:4_0:84_0:61$ ip community-list expanded c1 permit 1866 ^65000:4_0:84_0:62$ ip community-list expanded c1 permit 1867 ^65000:4_0:84_0:63$ ip community-list expanded c1 permit 1868 ^65000:4_0:84_0:64$ ip community-list expanded c1 permit 1869 ^65000:4_0:84_0:65$ ip community-list expanded c1 permit 1870 ^65000:4_0:84_0:66$ ip community-list expanded c1 permit 1871 ^65000:4_0:84_0:67$ ip community-list expanded c1 permit 1872 ^65000:4_0:84_0:68$ ip community-list expanded c1 permit 1873 ^65000:4_0:84_0:69$ ip community-list expanded c1 permit 1874 ^65000:4_0:84_0:70$ ip community-list expanded c1 permit 1875 ^65000:4_0:84_0:71$ ip community-list expanded c1 permit 1876 ^65000:4_0:84_0:72$ ip community-list expanded c1 permit 1877 ^65000:4_0:84_0:73$ ip community-list expanded c1 permit 1878 ^65000:4_0:84_0:74$ ip community-list expanded c1 permit 1879 ^65000:4_0:84_0:75$ ip community-list expanded c1 permit 1880 ^65000:4_0:84_0:76$ ip community-list expanded c1 permit 1881 ^65000:4_0:84_0:77$ ip community-list expanded c1 permit 1882 ^65000:4_0:84_0:78$ ip community-list expanded c1 permit 1883 ^65000:4_0:84_0:79$ ip community-list expanded c1 permit 1884 ^65000:4_0:84_0:80$ ip community-list expanded c1 permit 1885 ^65000:4_0:84_0:81$ ip community-list expanded c1 permit 1886 ^65000:4_0:84_0:82$ ip community-list expanded c1 permit 1887 ^65000:3_0:84_0:83$ ip community-list expanded c1 permit 1888 ^65000:4_0:84_0:83$ ip community-list expanded c1 permit 1889 ^65000:4_0:84_0:84$ ip community-list expanded c1 permit 1890 ^65000:4_0:85_0:43$ ip community-list expanded c1 permit 1891 ^65000:4_0:85_0:44$ ip community-list expanded c1 permit 1892 ^65000:4_0:85_0:45$ ip community-list expanded c1 permit 1893 ^65000:4_0:85_0:46$ ip community-list expanded c1 permit 1894 ^65000:4_0:85_0:47$ ip community-list expanded c1 permit 1895 ^65000:4_0:85_0:48$ ip community-list expanded c1 permit 1896 ^65000:4_0:85_0:49$ ip community-list expanded c1 permit 1897 ^65000:4_0:85_0:50$ ip community-list expanded c1 permit 1898 ^65000:4_0:85_0:51$ ip community-list expanded c1 permit 1899 ^65000:4_0:85_0:52$ ip community-list expanded c1 permit 1900 ^65000:4_0:85_0:53$ ip community-list expanded c1 permit 1901 ^65000:4_0:85_0:54$ ip community-list expanded c1 permit 1902 ^65000:4_0:85_0:55$ ip community-list expanded c1 permit 1903 ^65000:4_0:85_0:56$ ip community-list expanded c1 permit 1904 ^65000:4_0:85_0:57$ ip community-list expanded c1 permit 1905 ^65000:4_0:85_0:58$ ip community-list expanded c1 permit 1906 ^65000:4_0:85_0:59$ ip community-list expanded c1 permit 1907 ^65000:4_0:85_0:60$ ip community-list expanded c1 permit 1908 ^65000:4_0:85_0:61$ ip community-list expanded c1 permit 1909 ^65000:4_0:85_0:62$ ip community-list expanded c1 permit 1910 ^65000:4_0:85_0:63$ ip community-list expanded c1 permit 1911 ^65000:4_0:85_0:64$ ip community-list expanded c1 permit 1912 ^65000:4_0:85_0:65$ ip community-list expanded c1 permit 1913 ^65000:4_0:85_0:66$ ip community-list expanded c1 permit 1914 ^65000:4_0:85_0:67$ ip community-list expanded c1 permit 1915 ^65000:4_0:85_0:68$ ip community-list expanded c1 permit 1916 ^65000:4_0:85_0:69$ ip community-list expanded c1 permit 1917 ^65000:4_0:85_0:70$ ip community-list expanded c1 permit 1918 ^65000:4_0:85_0:71$ ip community-list expanded c1 permit 1919 ^65000:4_0:85_0:72$ ip community-list expanded c1 permit 1920 ^65000:4_0:85_0:73$ ip community-list expanded c1 permit 1921 ^65000:4_0:85_0:74$ ip community-list expanded c1 permit 1922 ^65000:4_0:85_0:75$ ip community-list expanded c1 permit 1923 ^65000:4_0:85_0:76$ ip community-list expanded c1 permit 1924 ^65000:4_0:85_0:77$ ip community-list expanded c1 permit 1925 ^65000:4_0:85_0:78$ ip community-list expanded c1 permit 1926 ^65000:4_0:85_0:79$ ip community-list expanded c1 permit 1927 ^65000:4_0:85_0:80$ ip community-list expanded c1 permit 1928 ^65000:4_0:85_0:81$ ip community-list expanded c1 permit 1929 ^65000:4_0:85_0:82$ ip community-list expanded c1 permit 1930 ^65000:4_0:85_0:83$ ip community-list expanded c1 permit 1931 ^65000:3_0:85_0:84$ ip community-list expanded c1 permit 1932 ^65000:4_0:85_0:84$ ip community-list expanded c1 permit 1933 ^65000:4_0:85_0:85$ ip community-list expanded c1 permit 1934 ^65000:4_0:86_0:44$ ip community-list expanded c1 permit 1935 ^65000:4_0:86_0:45$ ip community-list expanded c1 permit 1936 ^65000:4_0:86_0:46$ ip community-list expanded c1 permit 1937 ^65000:4_0:86_0:47$ ip community-list expanded c1 permit 1938 ^65000:4_0:86_0:48$ ip community-list expanded c1 permit 1939 ^65000:4_0:86_0:49$ ip community-list expanded c1 permit 1940 ^65000:4_0:86_0:50$ ip community-list expanded c1 permit 1941 ^65000:4_0:86_0:51$ ip community-list expanded c1 permit 1942 ^65000:4_0:86_0:52$ ip community-list expanded c1 permit 1943 ^65000:4_0:86_0:53$ ip community-list expanded c1 permit 1944 ^65000:4_0:86_0:54$ ip community-list expanded c1 permit 1945 ^65000:4_0:86_0:55$ ip community-list expanded c1 permit 1946 ^65000:4_0:86_0:56$ ip community-list expanded c1 permit 1947 ^65000:4_0:86_0:57$ ip community-list expanded c1 permit 1948 ^65000:4_0:86_0:58$ ip community-list expanded c1 permit 1949 ^65000:4_0:86_0:59$ ip community-list expanded c1 permit 1950 ^65000:4_0:86_0:60$ ip community-list expanded c1 permit 1951 ^65000:4_0:86_0:61$ ip community-list expanded c1 permit 1952 ^65000:4_0:86_0:62$ ip community-list expanded c1 permit 1953 ^65000:4_0:86_0:63$ ip community-list expanded c1 permit 1954 ^65000:4_0:86_0:64$ ip community-list expanded c1 permit 1955 ^65000:4_0:86_0:65$ ip community-list expanded c1 permit 1956 ^65000:4_0:86_0:66$ ip community-list expanded c1 permit 1957 ^65000:4_0:86_0:67$ ip community-list expanded c1 permit 1958 ^65000:4_0:86_0:68$ ip community-list expanded c1 permit 1959 ^65000:4_0:86_0:69$ ip community-list expanded c1 permit 1960 ^65000:4_0:86_0:70$ ip community-list expanded c1 permit 1961 ^65000:4_0:86_0:71$ ip community-list expanded c1 permit 1962 ^65000:4_0:86_0:72$ ip community-list expanded c1 permit 1963 ^65000:4_0:86_0:73$ ip community-list expanded c1 permit 1964 ^65000:4_0:86_0:74$ ip community-list expanded c1 permit 1965 ^65000:4_0:86_0:75$ ip community-list expanded c1 permit 1966 ^65000:4_0:86_0:76$ ip community-list expanded c1 permit 1967 ^65000:4_0:86_0:77$ ip community-list expanded c1 permit 1968 ^65000:4_0:86_0:78$ ip community-list expanded c1 permit 1969 ^65000:4_0:86_0:79$ ip community-list expanded c1 permit 1970 ^65000:4_0:86_0:80$ ip community-list expanded c1 permit 1971 ^65000:4_0:86_0:81$ ip community-list expanded c1 permit 1972 ^65000:4_0:86_0:82$ ip community-list expanded c1 permit 1973 ^65000:4_0:86_0:83$ ip community-list expanded c1 permit 1974 ^65000:4_0:86_0:84$ ip community-list expanded c1 permit 1975 ^65000:3_0:86_0:85$ ip community-list expanded c1 permit 1976 ^65000:4_0:86_0:85$ ip community-list expanded c1 permit 1977 ^65000:4_0:86_0:86$ ip community-list expanded c1 permit 1978 ^65000:4_0:87_0:44$ ip community-list expanded c1 permit 1979 ^65000:4_0:87_0:45$ ip community-list expanded c1 permit 1980 ^65000:4_0:87_0:46$ ip community-list expanded c1 permit 1981 ^65000:4_0:87_0:47$ ip community-list expanded c1 permit 1982 ^65000:4_0:87_0:48$ ip community-list expanded c1 permit 1983 ^65000:4_0:87_0:49$ ip community-list expanded c1 permit 1984 ^65000:4_0:87_0:50$ ip community-list expanded c1 permit 1985 ^65000:4_0:87_0:51$ ip community-list expanded c1 permit 1986 ^65000:4_0:87_0:52$ ip community-list expanded c1 permit 1987 ^65000:4_0:87_0:53$ ip community-list expanded c1 permit 1988 ^65000:4_0:87_0:54$ ip community-list expanded c1 permit 1989 ^65000:4_0:87_0:55$ ip community-list expanded c1 permit 1990 ^65000:4_0:87_0:56$ ip community-list expanded c1 permit 1991 ^65000:4_0:87_0:57$ ip community-list expanded c1 permit 1992 ^65000:4_0:87_0:58$ ip community-list expanded c1 permit 1993 ^65000:4_0:87_0:59$ ip community-list expanded c1 permit 1994 ^65000:4_0:87_0:60$ ip community-list expanded c1 permit 1995 ^65000:4_0:87_0:61$ ip community-list expanded c1 permit 1996 ^65000:4_0:87_0:62$ ip community-list expanded c1 permit 1997 ^65000:4_0:87_0:63$ ip community-list expanded c1 permit 1998 ^65000:4_0:87_0:64$ ip community-list expanded c1 permit 1999 ^65000:4_0:87_0:65$ ip community-list expanded c1 permit 2000 ^65000:4_0:87_0:66$ ip community-list expanded c1 permit 2001 ^65000:4_0:87_0:67$ ip community-list expanded c1 permit 2002 ^65000:4_0:87_0:68$ ip community-list expanded c1 permit 2003 ^65000:4_0:87_0:69$ ip community-list expanded c1 permit 2004 ^65000:4_0:87_0:70$ ip community-list expanded c1 permit 2005 ^65000:4_0:87_0:71$ ip community-list expanded c1 permit 2006 ^65000:4_0:87_0:72$ ip community-list expanded c1 permit 2007 ^65000:4_0:87_0:73$ ip community-list expanded c1 permit 2008 ^65000:4_0:87_0:74$ ip community-list expanded c1 permit 2009 ^65000:4_0:87_0:75$ ip community-list expanded c1 permit 2010 ^65000:4_0:87_0:76$ ip community-list expanded c1 permit 2011 ^65000:4_0:87_0:77$ ip community-list expanded c1 permit 2012 ^65000:4_0:87_0:78$ ip community-list expanded c1 permit 2013 ^65000:4_0:87_0:79$ ip community-list expanded c1 permit 2014 ^65000:4_0:87_0:80$ ip community-list expanded c1 permit 2015 ^65000:4_0:87_0:81$ ip community-list expanded c1 permit 2016 ^65000:4_0:87_0:82$ ip community-list expanded c1 permit 2017 ^65000:4_0:87_0:83$ ip community-list expanded c1 permit 2018 ^65000:4_0:87_0:84$ ip community-list expanded c1 permit 2019 ^65000:4_0:87_0:85$ ip community-list expanded c1 permit 2020 ^65000:3_0:87_0:86$ ip community-list expanded c1 permit 2021 ^65000:4_0:87_0:86$ ip community-list expanded c1 permit 2022 ^65000:4_0:87_0:87$ ip community-list expanded c1 permit 2023 ^65000:4_0:88_0:45$ ip community-list expanded c1 permit 2024 ^65000:4_0:88_0:46$ ip community-list expanded c1 permit 2025 ^65000:4_0:88_0:47$ ip community-list expanded c1 permit 2026 ^65000:4_0:88_0:48$ ip community-list expanded c1 permit 2027 ^65000:4_0:88_0:49$ ip community-list expanded c1 permit 2028 ^65000:4_0:88_0:50$ ip community-list expanded c1 permit 2029 ^65000:4_0:88_0:51$ ip community-list expanded c1 permit 2030 ^65000:4_0:88_0:52$ ip community-list expanded c1 permit 2031 ^65000:4_0:88_0:53$ ip community-list expanded c1 permit 2032 ^65000:4_0:88_0:54$ ip community-list expanded c1 permit 2033 ^65000:4_0:88_0:55$ ip community-list expanded c1 permit 2034 ^65000:4_0:88_0:56$ ip community-list expanded c1 permit 2035 ^65000:4_0:88_0:57$ ip community-list expanded c1 permit 2036 ^65000:4_0:88_0:58$ ip community-list expanded c1 permit 2037 ^65000:4_0:88_0:59$ ip community-list expanded c1 permit 2038 ^65000:4_0:88_0:60$ ip community-list expanded c1 permit 2039 ^65000:4_0:88_0:61$ ip community-list expanded c1 permit 2040 ^65000:4_0:88_0:62$ ip community-list expanded c1 permit 2041 ^65000:4_0:88_0:63$ ip community-list expanded c1 permit 2042 ^65000:4_0:88_0:64$ ip community-list expanded c1 permit 2043 ^65000:4_0:88_0:65$ ip community-list expanded c1 permit 2044 ^65000:4_0:88_0:66$ ip community-list expanded c1 permit 2045 ^65000:4_0:88_0:67$ ip community-list expanded c1 permit 2046 ^65000:4_0:88_0:68$ ip community-list expanded c1 permit 2047 ^65000:4_0:88_0:69$ ip community-list expanded c1 permit 2048 ^65000:4_0:88_0:70$ ip community-list expanded c1 permit 2049 ^65000:4_0:88_0:71$ ip community-list expanded c1 permit 2050 ^65000:4_0:88_0:72$ ip community-list expanded c1 permit 2051 ^65000:4_0:88_0:73$ ip community-list expanded c1 permit 2052 ^65000:4_0:88_0:74$ ip community-list expanded c1 permit 2053 ^65000:4_0:88_0:75$ ip community-list expanded c1 permit 2054 ^65000:4_0:88_0:76$ ip community-list expanded c1 permit 2055 ^65000:4_0:88_0:77$ ip community-list expanded c1 permit 2056 ^65000:4_0:88_0:78$ ip community-list expanded c1 permit 2057 ^65000:4_0:88_0:79$ ip community-list expanded c1 permit 2058 ^65000:4_0:88_0:80$ ip community-list expanded c1 permit 2059 ^65000:4_0:88_0:81$ ip community-list expanded c1 permit 2060 ^65000:4_0:88_0:82$ ip community-list expanded c1 permit 2061 ^65000:4_0:88_0:83$ ip community-list expanded c1 permit 2062 ^65000:4_0:88_0:84$ ip community-list expanded c1 permit 2063 ^65000:4_0:88_0:85$ ip community-list expanded c1 permit 2064 ^65000:4_0:88_0:86$ ip community-list expanded c1 permit 2065 ^65000:3_0:88_0:87$ ip community-list expanded c1 permit 2066 ^65000:4_0:88_0:87$ ip community-list expanded c1 permit 2067 ^65000:4_0:88_0:88$ ip community-list expanded c1 permit 2068 ^65000:4_0:89_0:45$ ip community-list expanded c1 permit 2069 ^65000:4_0:89_0:46$ ip community-list expanded c1 permit 2070 ^65000:4_0:89_0:47$ ip community-list expanded c1 permit 2071 ^65000:4_0:89_0:48$ ip community-list expanded c1 permit 2072 ^65000:4_0:89_0:49$ ip community-list expanded c1 permit 2073 ^65000:4_0:89_0:50$ ip community-list expanded c1 permit 2074 ^65000:4_0:89_0:51$ ip community-list expanded c1 permit 2075 ^65000:4_0:89_0:52$ ip community-list expanded c1 permit 2076 ^65000:4_0:89_0:53$ ip community-list expanded c1 permit 2077 ^65000:4_0:89_0:54$ ip community-list expanded c1 permit 2078 ^65000:4_0:89_0:55$ ip community-list expanded c1 permit 2079 ^65000:4_0:89_0:56$ ip community-list expanded c1 permit 2080 ^65000:4_0:89_0:57$ ip community-list expanded c1 permit 2081 ^65000:4_0:89_0:58$ ip community-list expanded c1 permit 2082 ^65000:4_0:89_0:59$ ip community-list expanded c1 permit 2083 ^65000:4_0:89_0:60$ ip community-list expanded c1 permit 2084 ^65000:4_0:89_0:61$ ip community-list expanded c1 permit 2085 ^65000:4_0:89_0:62$ ip community-list expanded c1 permit 2086 ^65000:4_0:89_0:63$ ip community-list expanded c1 permit 2087 ^65000:4_0:89_0:64$ ip community-list expanded c1 permit 2088 ^65000:4_0:89_0:65$ ip community-list expanded c1 permit 2089 ^65000:4_0:89_0:66$ ip community-list expanded c1 permit 2090 ^65000:4_0:89_0:67$ ip community-list expanded c1 permit 2091 ^65000:4_0:89_0:68$ ip community-list expanded c1 permit 2092 ^65000:4_0:89_0:69$ ip community-list expanded c1 permit 2093 ^65000:4_0:89_0:70$ ip community-list expanded c1 permit 2094 ^65000:4_0:89_0:71$ ip community-list expanded c1 permit 2095 ^65000:4_0:89_0:72$ ip community-list expanded c1 permit 2096 ^65000:4_0:89_0:73$ ip community-list expanded c1 permit 2097 ^65000:4_0:89_0:74$ ip community-list expanded c1 permit 2098 ^65000:4_0:89_0:75$ ip community-list expanded c1 permit 2099 ^65000:4_0:89_0:76$ ip community-list expanded c1 permit 2100 ^65000:4_0:89_0:77$ ip community-list expanded c1 permit 2101 ^65000:4_0:89_0:78$ ip community-list expanded c1 permit 2102 ^65000:4_0:89_0:79$ ip community-list expanded c1 permit 2103 ^65000:4_0:89_0:80$ ip community-list expanded c1 permit 2104 ^65000:4_0:89_0:81$ ip community-list expanded c1 permit 2105 ^65000:4_0:89_0:82$ ip community-list expanded c1 permit 2106 ^65000:4_0:89_0:83$ ip community-list expanded c1 permit 2107 ^65000:4_0:89_0:84$ ip community-list expanded c1 permit 2108 ^65000:4_0:89_0:85$ ip community-list expanded c1 permit 2109 ^65000:4_0:89_0:86$ ip community-list expanded c1 permit 2110 ^65000:4_0:89_0:87$ ip community-list expanded c1 permit 2111 ^65000:3_0:89_0:88$ ip community-list expanded c1 permit 2112 ^65000:4_0:89_0:88$ ip community-list expanded c1 permit 2113 ^65000:4_0:89_0:89$ ip community-list expanded c1 permit 2114 ^65000:4_0:90_0:46$ ip community-list expanded c1 permit 2115 ^65000:4_0:90_0:47$ ip community-list expanded c1 permit 2116 ^65000:4_0:90_0:48$ ip community-list expanded c1 permit 2117 ^65000:4_0:90_0:49$ ip community-list expanded c1 permit 2118 ^65000:4_0:90_0:50$ ip community-list expanded c1 permit 2119 ^65000:4_0:90_0:51$ ip community-list expanded c1 permit 2120 ^65000:4_0:90_0:52$ ip community-list expanded c1 permit 2121 ^65000:4_0:90_0:53$ ip community-list expanded c1 permit 2122 ^65000:4_0:90_0:54$ ip community-list expanded c1 permit 2123 ^65000:4_0:90_0:55$ ip community-list expanded c1 permit 2124 ^65000:4_0:90_0:56$ ip community-list expanded c1 permit 2125 ^65000:4_0:90_0:57$ ip community-list expanded c1 permit 2126 ^65000:4_0:90_0:58$ ip community-list expanded c1 permit 2127 ^65000:4_0:90_0:59$ ip community-list expanded c1 permit 2128 ^65000:4_0:90_0:60$ ip community-list expanded c1 permit 2129 ^65000:4_0:90_0:61$ ip community-list expanded c1 permit 2130 ^65000:4_0:90_0:62$ ip community-list expanded c1 permit 2131 ^65000:4_0:90_0:63$ ip community-list expanded c1 permit 2132 ^65000:4_0:90_0:64$ ip community-list expanded c1 permit 2133 ^65000:4_0:90_0:65$ ip community-list expanded c1 permit 2134 ^65000:4_0:90_0:66$ ip community-list expanded c1 permit 2135 ^65000:4_0:90_0:67$ ip community-list expanded c1 permit 2136 ^65000:4_0:90_0:68$ ip community-list expanded c1 permit 2137 ^65000:4_0:90_0:69$ ip community-list expanded c1 permit 2138 ^65000:4_0:90_0:70$ ip community-list expanded c1 permit 2139 ^65000:4_0:90_0:71$ ip community-list expanded c1 permit 2140 ^65000:4_0:90_0:72$ ip community-list expanded c1 permit 2141 ^65000:4_0:90_0:73$ ip community-list expanded c1 permit 2142 ^65000:4_0:90_0:74$ ip community-list expanded c1 permit 2143 ^65000:4_0:90_0:75$ ip community-list expanded c1 permit 2144 ^65000:4_0:90_0:76$ ip community-list expanded c1 permit 2145 ^65000:4_0:90_0:77$ ip community-list expanded c1 permit 2146 ^65000:4_0:90_0:78$ ip community-list expanded c1 permit 2147 ^65000:4_0:90_0:79$ ip community-list expanded c1 permit 2148 ^65000:4_0:90_0:80$ ip community-list expanded c1 permit 2149 ^65000:4_0:90_0:81$ ip community-list expanded c1 permit 2150 ^65000:4_0:90_0:82$ ip community-list expanded c1 permit 2151 ^65000:4_0:90_0:83$ ip community-list expanded c1 permit 2152 ^65000:4_0:90_0:84$ ip community-list expanded c1 permit 2153 ^65000:4_0:90_0:85$ ip community-list expanded c1 permit 2154 ^65000:4_0:90_0:86$ ip community-list expanded c1 permit 2155 ^65000:4_0:90_0:87$ ip community-list expanded c1 permit 2156 ^65000:4_0:90_0:88$ ip community-list expanded c1 permit 2157 ^65000:3_0:90_0:89$ ip community-list expanded c1 permit 2158 ^65000:4_0:90_0:89$ ip community-list expanded c1 permit 2159 ^65000:4_0:90_0:90$ ip community-list expanded c1 permit 2160 ^65000:4_0:91_0:46$ ip community-list expanded c1 permit 2161 ^65000:4_0:91_0:47$ ip community-list expanded c1 permit 2162 ^65000:4_0:91_0:48$ ip community-list expanded c1 permit 2163 ^65000:4_0:91_0:49$ ip community-list expanded c1 permit 2164 ^65000:4_0:91_0:50$ ip community-list expanded c1 permit 2165 ^65000:4_0:91_0:51$ ip community-list expanded c1 permit 2166 ^65000:4_0:91_0:52$ ip community-list expanded c1 permit 2167 ^65000:4_0:91_0:53$ ip community-list expanded c1 permit 2168 ^65000:4_0:91_0:54$ ip community-list expanded c1 permit 2169 ^65000:4_0:91_0:55$ ip community-list expanded c1 permit 2170 ^65000:4_0:91_0:56$ ip community-list expanded c1 permit 2171 ^65000:4_0:91_0:57$ ip community-list expanded c1 permit 2172 ^65000:4_0:91_0:58$ ip community-list expanded c1 permit 2173 ^65000:4_0:91_0:59$ ip community-list expanded c1 permit 2174 ^65000:4_0:91_0:60$ ip community-list expanded c1 permit 2175 ^65000:4_0:91_0:61$ ip community-list expanded c1 permit 2176 ^65000:4_0:91_0:62$ ip community-list expanded c1 permit 2177 ^65000:4_0:91_0:63$ ip community-list expanded c1 permit 2178 ^65000:4_0:91_0:64$ ip community-list expanded c1 permit 2179 ^65000:4_0:91_0:65$ ip community-list expanded c1 permit 2180 ^65000:4_0:91_0:66$ ip community-list expanded c1 permit 2181 ^65000:4_0:91_0:67$ ip community-list expanded c1 permit 2182 ^65000:4_0:91_0:68$ ip community-list expanded c1 permit 2183 ^65000:4_0:91_0:69$ ip community-list expanded c1 permit 2184 ^65000:4_0:91_0:70$ ip community-list expanded c1 permit 2185 ^65000:4_0:91_0:71$ ip community-list expanded c1 permit 2186 ^65000:4_0:91_0:72$ ip community-list expanded c1 permit 2187 ^65000:4_0:91_0:73$ ip community-list expanded c1 permit 2188 ^65000:4_0:91_0:74$ ip community-list expanded c1 permit 2189 ^65000:4_0:91_0:75$ ip community-list expanded c1 permit 2190 ^65000:4_0:91_0:76$ ip community-list expanded c1 permit 2191 ^65000:4_0:91_0:77$ ip community-list expanded c1 permit 2192 ^65000:4_0:91_0:78$ ip community-list expanded c1 permit 2193 ^65000:4_0:91_0:79$ ip community-list expanded c1 permit 2194 ^65000:4_0:91_0:80$ ip community-list expanded c1 permit 2195 ^65000:4_0:91_0:81$ ip community-list expanded c1 permit 2196 ^65000:4_0:91_0:82$ ip community-list expanded c1 permit 2197 ^65000:4_0:91_0:83$ ip community-list expanded c1 permit 2198 ^65000:4_0:91_0:84$ ip community-list expanded c1 permit 2199 ^65000:4_0:91_0:85$ ip community-list expanded c1 permit 2200 ^65000:4_0:91_0:86$ ip community-list expanded c1 permit 2201 ^65000:4_0:91_0:87$ ip community-list expanded c1 permit 2202 ^65000:4_0:91_0:88$ ip community-list expanded c1 permit 2203 ^65000:4_0:91_0:89$ ip community-list expanded c1 permit 2204 ^65000:3_0:91_0:90$ ip community-list expanded c1 permit 2205 ^65000:4_0:91_0:90$ ip community-list expanded c1 permit 2206 ^65000:4_0:91_0:91$ ip community-list expanded c1 permit 2207 ^65000:4_0:92_0:47$ ip community-list expanded c1 permit 2208 ^65000:4_0:92_0:48$ ip community-list expanded c1 permit 2209 ^65000:4_0:92_0:49$ ip community-list expanded c1 permit 2210 ^65000:4_0:92_0:50$ ip community-list expanded c1 permit 2211 ^65000:4_0:92_0:51$ ip community-list expanded c1 permit 2212 ^65000:4_0:92_0:52$ ip community-list expanded c1 permit 2213 ^65000:4_0:92_0:53$ ip community-list expanded c1 permit 2214 ^65000:4_0:92_0:54$ ip community-list expanded c1 permit 2215 ^65000:4_0:92_0:55$ ip community-list expanded c1 permit 2216 ^65000:4_0:92_0:56$ ip community-list expanded c1 permit 2217 ^65000:4_0:92_0:57$ ip community-list expanded c1 permit 2218 ^65000:4_0:92_0:58$ ip community-list expanded c1 permit 2219 ^65000:4_0:92_0:59$ ip community-list expanded c1 permit 2220 ^65000:4_0:92_0:60$ ip community-list expanded c1 permit 2221 ^65000:4_0:92_0:61$ ip community-list expanded c1 permit 2222 ^65000:4_0:92_0:62$ ip community-list expanded c1 permit 2223 ^65000:4_0:92_0:63$ ip community-list expanded c1 permit 2224 ^65000:4_0:92_0:64$ ip community-list expanded c1 permit 2225 ^65000:4_0:92_0:65$ ip community-list expanded c1 permit 2226 ^65000:4_0:92_0:66$ ip community-list expanded c1 permit 2227 ^65000:4_0:92_0:67$ ip community-list expanded c1 permit 2228 ^65000:4_0:92_0:68$ ip community-list expanded c1 permit 2229 ^65000:4_0:92_0:69$ ip community-list expanded c1 permit 2230 ^65000:4_0:92_0:70$ ip community-list expanded c1 permit 2231 ^65000:4_0:92_0:71$ ip community-list expanded c1 permit 2232 ^65000:4_0:92_0:72$ ip community-list expanded c1 permit 2233 ^65000:4_0:92_0:73$ ip community-list expanded c1 permit 2234 ^65000:4_0:92_0:74$ ip community-list expanded c1 permit 2235 ^65000:4_0:92_0:75$ ip community-list expanded c1 permit 2236 ^65000:4_0:92_0:76$ ip community-list expanded c1 permit 2237 ^65000:4_0:92_0:77$ ip community-list expanded c1 permit 2238 ^65000:4_0:92_0:78$ ip community-list expanded c1 permit 2239 ^65000:4_0:92_0:79$ ip community-list expanded c1 permit 2240 ^65000:4_0:92_0:80$ ip community-list expanded c1 permit 2241 ^65000:4_0:92_0:81$ ip community-list expanded c1 permit 2242 ^65000:4_0:92_0:82$ ip community-list expanded c1 permit 2243 ^65000:4_0:92_0:83$ ip community-list expanded c1 permit 2244 ^65000:4_0:92_0:84$ ip community-list expanded c1 permit 2245 ^65000:4_0:92_0:85$ ip community-list expanded c1 permit 2246 ^65000:4_0:92_0:86$ ip community-list expanded c1 permit 2247 ^65000:4_0:92_0:87$ ip community-list expanded c1 permit 2248 ^65000:4_0:92_0:88$ ip community-list expanded c1 permit 2249 ^65000:4_0:92_0:89$ ip community-list expanded c1 permit 2250 ^65000:4_0:92_0:90$ ip community-list expanded c1 permit 2251 ^65000:3_0:92_0:91$ ip community-list expanded c1 permit 2252 ^65000:4_0:92_0:91$ ip community-list expanded c1 permit 2253 ^65000:4_0:92_0:92$ ip community-list expanded c1 permit 2254 ^65000:4_0:93_0:47$ ip community-list expanded c1 permit 2255 ^65000:4_0:93_0:48$ ip community-list expanded c1 permit 2256 ^65000:4_0:93_0:49$ ip community-list expanded c1 permit 2257 ^65000:4_0:93_0:50$ ip community-list expanded c1 permit 2258 ^65000:4_0:93_0:51$ ip community-list expanded c1 permit 2259 ^65000:4_0:93_0:52$ ip community-list expanded c1 permit 2260 ^65000:4_0:93_0:53$ ip community-list expanded c1 permit 2261 ^65000:4_0:93_0:54$ ip community-list expanded c1 permit 2262 ^65000:4_0:93_0:55$ ip community-list expanded c1 permit 2263 ^65000:4_0:93_0:56$ ip community-list expanded c1 permit 2264 ^65000:4_0:93_0:57$ ip community-list expanded c1 permit 2265 ^65000:4_0:93_0:58$ ip community-list expanded c1 permit 2266 ^65000:4_0:93_0:59$ ip community-list expanded c1 permit 2267 ^65000:4_0:93_0:60$ ip community-list expanded c1 permit 2268 ^65000:4_0:93_0:61$ ip community-list expanded c1 permit 2269 ^65000:4_0:93_0:62$ ip community-list expanded c1 permit 2270 ^65000:4_0:93_0:63$ ip community-list expanded c1 permit 2271 ^65000:4_0:93_0:64$ ip community-list expanded c1 permit 2272 ^65000:4_0:93_0:65$ ip community-list expanded c1 permit 2273 ^65000:4_0:93_0:66$ ip community-list expanded c1 permit 2274 ^65000:4_0:93_0:67$ ip community-list expanded c1 permit 2275 ^65000:4_0:93_0:68$ ip community-list expanded c1 permit 2276 ^65000:4_0:93_0:69$ ip community-list expanded c1 permit 2277 ^65000:4_0:93_0:70$ ip community-list expanded c1 permit 2278 ^65000:4_0:93_0:71$ ip community-list expanded c1 permit 2279 ^65000:4_0:93_0:72$ ip community-list expanded c1 permit 2280 ^65000:4_0:93_0:73$ ip community-list expanded c1 permit 2281 ^65000:4_0:93_0:74$ ip community-list expanded c1 permit 2282 ^65000:4_0:93_0:75$ ip community-list expanded c1 permit 2283 ^65000:4_0:93_0:76$ ip community-list expanded c1 permit 2284 ^65000:4_0:93_0:77$ ip community-list expanded c1 permit 2285 ^65000:4_0:93_0:78$ ip community-list expanded c1 permit 2286 ^65000:4_0:93_0:79$ ip community-list expanded c1 permit 2287 ^65000:4_0:93_0:80$ ip community-list expanded c1 permit 2288 ^65000:4_0:93_0:81$ ip community-list expanded c1 permit 2289 ^65000:4_0:93_0:82$ ip community-list expanded c1 permit 2290 ^65000:4_0:93_0:83$ ip community-list expanded c1 permit 2291 ^65000:4_0:93_0:84$ ip community-list expanded c1 permit 2292 ^65000:4_0:93_0:85$ ip community-list expanded c1 permit 2293 ^65000:4_0:93_0:86$ ip community-list expanded c1 permit 2294 ^65000:4_0:93_0:87$ ip community-list expanded c1 permit 2295 ^65000:4_0:93_0:88$ ip community-list expanded c1 permit 2296 ^65000:4_0:93_0:89$ ip community-list expanded c1 permit 2297 ^65000:4_0:93_0:90$ ip community-list expanded c1 permit 2298 ^65000:4_0:93_0:91$ ip community-list expanded c1 permit 2299 ^65000:3_0:93_0:92$ ip community-list expanded c1 permit 2300 ^65000:4_0:93_0:92$ ip community-list expanded c1 permit 2301 ^65000:4_0:93_0:93$ ip community-list expanded c1 permit 2302 ^65000:4_0:94_0:48$ ip community-list expanded c1 permit 2303 ^65000:4_0:94_0:49$ ip community-list expanded c1 permit 2304 ^65000:4_0:94_0:50$ ip community-list expanded c1 permit 2305 ^65000:4_0:94_0:51$ ip community-list expanded c1 permit 2306 ^65000:4_0:94_0:52$ ip community-list expanded c1 permit 2307 ^65000:4_0:94_0:53$ ip community-list expanded c1 permit 2308 ^65000:4_0:94_0:54$ ip community-list expanded c1 permit 2309 ^65000:4_0:94_0:55$ ip community-list expanded c1 permit 2310 ^65000:4_0:94_0:56$ ip community-list expanded c1 permit 2311 ^65000:4_0:94_0:57$ ip community-list expanded c1 permit 2312 ^65000:4_0:94_0:58$ ip community-list expanded c1 permit 2313 ^65000:4_0:94_0:59$ ip community-list expanded c1 permit 2314 ^65000:4_0:94_0:60$ ip community-list expanded c1 permit 2315 ^65000:4_0:94_0:61$ ip community-list expanded c1 permit 2316 ^65000:4_0:94_0:62$ ip community-list expanded c1 permit 2317 ^65000:4_0:94_0:63$ ip community-list expanded c1 permit 2318 ^65000:4_0:94_0:64$ ip community-list expanded c1 permit 2319 ^65000:4_0:94_0:65$ ip community-list expanded c1 permit 2320 ^65000:4_0:94_0:66$ ip community-list expanded c1 permit 2321 ^65000:4_0:94_0:67$ ip community-list expanded c1 permit 2322 ^65000:4_0:94_0:68$ ip community-list expanded c1 permit 2323 ^65000:4_0:94_0:69$ ip community-list expanded c1 permit 2324 ^65000:4_0:94_0:70$ ip community-list expanded c1 permit 2325 ^65000:4_0:94_0:71$ ip community-list expanded c1 permit 2326 ^65000:4_0:94_0:72$ ip community-list expanded c1 permit 2327 ^65000:4_0:94_0:73$ ip community-list expanded c1 permit 2328 ^65000:4_0:94_0:74$ ip community-list expanded c1 permit 2329 ^65000:4_0:94_0:75$ ip community-list expanded c1 permit 2330 ^65000:4_0:94_0:76$ ip community-list expanded c1 permit 2331 ^65000:4_0:94_0:77$ ip community-list expanded c1 permit 2332 ^65000:4_0:94_0:78$ ip community-list expanded c1 permit 2333 ^65000:4_0:94_0:79$ ip community-list expanded c1 permit 2334 ^65000:4_0:94_0:80$ ip community-list expanded c1 permit 2335 ^65000:4_0:94_0:81$ ip community-list expanded c1 permit 2336 ^65000:4_0:94_0:82$ ip community-list expanded c1 permit 2337 ^65000:4_0:94_0:83$ ip community-list expanded c1 permit 2338 ^65000:4_0:94_0:84$ ip community-list expanded c1 permit 2339 ^65000:4_0:94_0:85$ ip community-list expanded c1 permit 2340 ^65000:4_0:94_0:86$ ip community-list expanded c1 permit 2341 ^65000:4_0:94_0:87$ ip community-list expanded c1 permit 2342 ^65000:4_0:94_0:88$ ip community-list expanded c1 permit 2343 ^65000:4_0:94_0:89$ ip community-list expanded c1 permit 2344 ^65000:4_0:94_0:90$ ip community-list expanded c1 permit 2345 ^65000:4_0:94_0:91$ ip community-list expanded c1 permit 2346 ^65000:4_0:94_0:92$ ip community-list expanded c1 permit 2347 ^65000:3_0:94_0:93$ ip community-list expanded c1 permit 2348 ^65000:4_0:94_0:93$ ip community-list expanded c1 permit 2349 ^65000:4_0:94_0:94$ ip community-list expanded c1 permit 2350 ^65000:4_0:95_0:48$ ip community-list expanded c1 permit 2351 ^65000:4_0:95_0:49$ ip community-list expanded c1 permit 2352 ^65000:4_0:95_0:50$ ip community-list expanded c1 permit 2353 ^65000:4_0:95_0:51$ ip community-list expanded c1 permit 2354 ^65000:4_0:95_0:52$ ip community-list expanded c1 permit 2355 ^65000:4_0:95_0:53$ ip community-list expanded c1 permit 2356 ^65000:4_0:95_0:54$ ip community-list expanded c1 permit 2357 ^65000:4_0:95_0:55$ ip community-list expanded c1 permit 2358 ^65000:4_0:95_0:56$ ip community-list expanded c1 permit 2359 ^65000:4_0:95_0:57$ ip community-list expanded c1 permit 2360 ^65000:4_0:95_0:58$ ip community-list expanded c1 permit 2361 ^65000:4_0:95_0:59$ ip community-list expanded c1 permit 2362 ^65000:4_0:95_0:60$ ip community-list expanded c1 permit 2363 ^65000:4_0:95_0:61$ ip community-list expanded c1 permit 2364 ^65000:4_0:95_0:62$ ip community-list expanded c1 permit 2365 ^65000:4_0:95_0:63$ ip community-list expanded c1 permit 2366 ^65000:4_0:95_0:64$ ip community-list expanded c1 permit 2367 ^65000:4_0:95_0:65$ ip community-list expanded c1 permit 2368 ^65000:4_0:95_0:66$ ip community-list expanded c1 permit 2369 ^65000:4_0:95_0:67$ ip community-list expanded c1 permit 2370 ^65000:4_0:95_0:68$ ip community-list expanded c1 permit 2371 ^65000:4_0:95_0:69$ ip community-list expanded c1 permit 2372 ^65000:4_0:95_0:70$ ip community-list expanded c1 permit 2373 ^65000:4_0:95_0:71$ ip community-list expanded c1 permit 2374 ^65000:4_0:95_0:72$ ip community-list expanded c1 permit 2375 ^65000:4_0:95_0:73$ ip community-list expanded c1 permit 2376 ^65000:4_0:95_0:74$ ip community-list expanded c1 permit 2377 ^65000:4_0:95_0:75$ ip community-list expanded c1 permit 2378 ^65000:4_0:95_0:76$ ip community-list expanded c1 permit 2379 ^65000:4_0:95_0:77$ ip community-list expanded c1 permit 2380 ^65000:4_0:95_0:78$ ip community-list expanded c1 permit 2381 ^65000:4_0:95_0:79$ ip community-list expanded c1 permit 2382 ^65000:4_0:95_0:80$ ip community-list expanded c1 permit 2383 ^65000:4_0:95_0:81$ ip community-list expanded c1 permit 2384 ^65000:4_0:95_0:82$ ip community-list expanded c1 permit 2385 ^65000:4_0:95_0:83$ ip community-list expanded c1 permit 2386 ^65000:4_0:95_0:84$ ip community-list expanded c1 permit 2387 ^65000:4_0:95_0:85$ ip community-list expanded c1 permit 2388 ^65000:4_0:95_0:86$ ip community-list expanded c1 permit 2389 ^65000:4_0:95_0:87$ ip community-list expanded c1 permit 2390 ^65000:4_0:95_0:88$ ip community-list expanded c1 permit 2391 ^65000:4_0:95_0:89$ ip community-list expanded c1 permit 2392 ^65000:4_0:95_0:90$ ip community-list expanded c1 permit 2393 ^65000:4_0:95_0:91$ ip community-list expanded c1 permit 2394 ^65000:4_0:95_0:92$ ip community-list expanded c1 permit 2395 ^65000:4_0:95_0:93$ ip community-list expanded c1 permit 2396 ^65000:3_0:95_0:94$ ip community-list expanded c1 permit 2397 ^65000:4_0:95_0:94$ ip community-list expanded c1 permit 2398 ^65000:4_0:95_0:95$ ip community-list expanded c1 permit 2399 ^65000:4_0:96_0:49$ ip community-list expanded c1 permit 2400 ^65000:4_0:96_0:50$ ip community-list expanded c1 permit 2401 ^65000:4_0:96_0:51$ ip community-list expanded c1 permit 2402 ^65000:4_0:96_0:52$ ip community-list expanded c1 permit 2403 ^65000:4_0:96_0:53$ ip community-list expanded c1 permit 2404 ^65000:4_0:96_0:54$ ip community-list expanded c1 permit 2405 ^65000:4_0:96_0:55$ ip community-list expanded c1 permit 2406 ^65000:4_0:96_0:56$ ip community-list expanded c1 permit 2407 ^65000:4_0:96_0:57$ ip community-list expanded c1 permit 2408 ^65000:4_0:96_0:58$ ip community-list expanded c1 permit 2409 ^65000:4_0:96_0:59$ ip community-list expanded c1 permit 2410 ^65000:4_0:96_0:60$ ip community-list expanded c1 permit 2411 ^65000:4_0:96_0:61$ ip community-list expanded c1 permit 2412 ^65000:4_0:96_0:62$ ip community-list expanded c1 permit 2413 ^65000:4_0:96_0:63$ ip community-list expanded c1 permit 2414 ^65000:4_0:96_0:64$ ip community-list expanded c1 permit 2415 ^65000:4_0:96_0:65$ ip community-list expanded c1 permit 2416 ^65000:4_0:96_0:66$ ip community-list expanded c1 permit 2417 ^65000:4_0:96_0:67$ ip community-list expanded c1 permit 2418 ^65000:4_0:96_0:68$ ip community-list expanded c1 permit 2419 ^65000:4_0:96_0:69$ ip community-list expanded c1 permit 2420 ^65000:4_0:96_0:70$ ip community-list expanded c1 permit 2421 ^65000:4_0:96_0:71$ ip community-list expanded c1 permit 2422 ^65000:4_0:96_0:72$ ip community-list expanded c1 permit 2423 ^65000:4_0:96_0:73$ ip community-list expanded c1 permit 2424 ^65000:4_0:96_0:74$ ip community-list expanded c1 permit 2425 ^65000:4_0:96_0:75$ ip community-list expanded c1 permit 2426 ^65000:4_0:96_0:76$ ip community-list expanded c1 permit 2427 ^65000:4_0:96_0:77$ ip community-list expanded c1 permit 2428 ^65000:4_0:96_0:78$ ip community-list expanded c1 permit 2429 ^65000:4_0:96_0:79$ ip community-list expanded c1 permit 2430 ^65000:4_0:96_0:80$ ip community-list expanded c1 permit 2431 ^65000:4_0:96_0:81$ ip community-list expanded c1 permit 2432 ^65000:4_0:96_0:82$ ip community-list expanded c1 permit 2433 ^65000:4_0:96_0:83$ ip community-list expanded c1 permit 2434 ^65000:4_0:96_0:84$ ip community-list expanded c1 permit 2435 ^65000:4_0:96_0:85$ ip community-list expanded c1 permit 2436 ^65000:4_0:96_0:86$ ip community-list expanded c1 permit 2437 ^65000:4_0:96_0:87$ ip community-list expanded c1 permit 2438 ^65000:4_0:96_0:88$ ip community-list expanded c1 permit 2439 ^65000:4_0:96_0:89$ ip community-list expanded c1 permit 2440 ^65000:4_0:96_0:90$ ip community-list expanded c1 permit 2441 ^65000:4_0:96_0:91$ ip community-list expanded c1 permit 2442 ^65000:4_0:96_0:92$ ip community-list expanded c1 permit 2443 ^65000:4_0:96_0:93$ ip community-list expanded c1 permit 2444 ^65000:4_0:96_0:94$ ip community-list expanded c1 permit 2445 ^65000:3_0:96_0:95$ ip community-list expanded c1 permit 2446 ^65000:4_0:96_0:95$ ip community-list expanded c1 permit 2447 ^65000:4_0:96_0:96$ ip community-list expanded c1 permit 2448 ^65000:4_0:97_0:49$ ip community-list expanded c1 permit 2449 ^65000:4_0:97_0:50$ ip community-list expanded c1 permit 2450 ^65000:4_0:97_0:51$ ip community-list expanded c1 permit 2451 ^65000:4_0:97_0:52$ ip community-list expanded c1 permit 2452 ^65000:4_0:97_0:53$ ip community-list expanded c1 permit 2453 ^65000:4_0:97_0:54$ ip community-list expanded c1 permit 2454 ^65000:4_0:97_0:55$ ip community-list expanded c1 permit 2455 ^65000:4_0:97_0:56$ ip community-list expanded c1 permit 2456 ^65000:4_0:97_0:57$ ip community-list expanded c1 permit 2457 ^65000:4_0:97_0:58$ ip community-list expanded c1 permit 2458 ^65000:4_0:97_0:59$ ip community-list expanded c1 permit 2459 ^65000:4_0:97_0:60$ ip community-list expanded c1 permit 2460 ^65000:4_0:97_0:61$ ip community-list expanded c1 permit 2461 ^65000:4_0:97_0:62$ ip community-list expanded c1 permit 2462 ^65000:4_0:97_0:63$ ip community-list expanded c1 permit 2463 ^65000:4_0:97_0:64$ ip community-list expanded c1 permit 2464 ^65000:4_0:97_0:65$ ip community-list expanded c1 permit 2465 ^65000:4_0:97_0:66$ ip community-list expanded c1 permit 2466 ^65000:4_0:97_0:67$ ip community-list expanded c1 permit 2467 ^65000:4_0:97_0:68$ ip community-list expanded c1 permit 2468 ^65000:4_0:97_0:69$ ip community-list expanded c1 permit 2469 ^65000:4_0:97_0:70$ ip community-list expanded c1 permit 2470 ^65000:4_0:97_0:71$ ip community-list expanded c1 permit 2471 ^65000:4_0:97_0:72$ ip community-list expanded c1 permit 2472 ^65000:4_0:97_0:73$ ip community-list expanded c1 permit 2473 ^65000:4_0:97_0:74$ ip community-list expanded c1 permit 2474 ^65000:4_0:97_0:75$ ip community-list expanded c1 permit 2475 ^65000:4_0:97_0:76$ ip community-list expanded c1 permit 2476 ^65000:4_0:97_0:77$ ip community-list expanded c1 permit 2477 ^65000:4_0:97_0:78$ ip community-list expanded c1 permit 2478 ^65000:4_0:97_0:79$ ip community-list expanded c1 permit 2479 ^65000:4_0:97_0:80$ ip community-list expanded c1 permit 2480 ^65000:4_0:97_0:81$ ip community-list expanded c1 permit 2481 ^65000:4_0:97_0:82$ ip community-list expanded c1 permit 2482 ^65000:4_0:97_0:83$ ip community-list expanded c1 permit 2483 ^65000:4_0:97_0:84$ ip community-list expanded c1 permit 2484 ^65000:4_0:97_0:85$ ip community-list expanded c1 permit 2485 ^65000:4_0:97_0:86$ ip community-list expanded c1 permit 2486 ^65000:4_0:97_0:87$ ip community-list expanded c1 permit 2487 ^65000:4_0:97_0:88$ ip community-list expanded c1 permit 2488 ^65000:4_0:97_0:89$ ip community-list expanded c1 permit 2489 ^65000:4_0:97_0:90$ ip community-list expanded c1 permit 2490 ^65000:4_0:97_0:91$ ip community-list expanded c1 permit 2491 ^65000:4_0:97_0:92$ ip community-list expanded c1 permit 2492 ^65000:4_0:97_0:93$ ip community-list expanded c1 permit 2493 ^65000:4_0:97_0:94$ ip community-list expanded c1 permit 2494 ^65000:4_0:97_0:95$ ip community-list expanded c1 permit 2495 ^65000:3_0:97_0:96$ ip community-list expanded c1 permit 2496 ^65000:4_0:97_0:96$ ip community-list expanded c1 permit 2497 ^65000:4_0:97_0:97$ ip community-list expanded c1 permit 2498 ^65000:4_0:98_0:50$ ip community-list expanded c1 permit 2499 ^65000:4_0:98_0:51$ ip community-list expanded c1 permit 2500 ^65000:4_0:98_0:52$ ip community-list expanded c1 permit 2501 ^65000:4_0:98_0:53$ ip community-list expanded c1 permit 2502 ^65000:4_0:98_0:54$ ip community-list expanded c1 permit 2503 ^65000:4_0:98_0:55$ ip community-list expanded c1 permit 2504 ^65000:4_0:98_0:56$ ip community-list expanded c1 permit 2505 ^65000:4_0:98_0:57$ ip community-list expanded c1 permit 2506 ^65000:4_0:98_0:58$ ip community-list expanded c1 permit 2507 ^65000:4_0:98_0:59$ ip community-list expanded c1 permit 2508 ^65000:4_0:98_0:60$ ip community-list expanded c1 permit 2509 ^65000:4_0:98_0:61$ ip community-list expanded c1 permit 2510 ^65000:4_0:98_0:62$ ip community-list expanded c1 permit 2511 ^65000:4_0:98_0:63$ ip community-list expanded c1 permit 2512 ^65000:4_0:98_0:64$ ip community-list expanded c1 permit 2513 ^65000:4_0:98_0:65$ ip community-list expanded c1 permit 2514 ^65000:4_0:98_0:66$ ip community-list expanded c1 permit 2515 ^65000:4_0:98_0:67$ ip community-list expanded c1 permit 2516 ^65000:4_0:98_0:68$ ip community-list expanded c1 permit 2517 ^65000:4_0:98_0:69$ ip community-list expanded c1 permit 2518 ^65000:4_0:98_0:70$ ip community-list expanded c1 permit 2519 ^65000:4_0:98_0:71$ ip community-list expanded c1 permit 2520 ^65000:4_0:98_0:72$ ip community-list expanded c1 permit 2521 ^65000:4_0:98_0:73$ ip community-list expanded c1 permit 2522 ^65000:4_0:98_0:74$ ip community-list expanded c1 permit 2523 ^65000:4_0:98_0:75$ ip community-list expanded c1 permit 2524 ^65000:4_0:98_0:76$ ip community-list expanded c1 permit 2525 ^65000:4_0:98_0:77$ ip community-list expanded c1 permit 2526 ^65000:4_0:98_0:78$ ip community-list expanded c1 permit 2527 ^65000:4_0:98_0:79$ ip community-list expanded c1 permit 2528 ^65000:4_0:98_0:80$ ip community-list expanded c1 permit 2529 ^65000:4_0:98_0:81$ ip community-list expanded c1 permit 2530 ^65000:4_0:98_0:82$ ip community-list expanded c1 permit 2531 ^65000:4_0:98_0:83$ ip community-list expanded c1 permit 2532 ^65000:4_0:98_0:84$ ip community-list expanded c1 permit 2533 ^65000:4_0:98_0:85$ ip community-list expanded c1 permit 2534 ^65000:4_0:98_0:86$ ip community-list expanded c1 permit 2535 ^65000:4_0:98_0:87$ ip community-list expanded c1 permit 2536 ^65000:4_0:98_0:88$ ip community-list expanded c1 permit 2537 ^65000:4_0:98_0:89$ ip community-list expanded c1 permit 2538 ^65000:4_0:98_0:90$ ip community-list expanded c1 permit 2539 ^65000:4_0:98_0:91$ ip community-list expanded c1 permit 2540 ^65000:4_0:98_0:92$ ip community-list expanded c1 permit 2541 ^65000:4_0:98_0:93$ ip community-list expanded c1 permit 2542 ^65000:4_0:98_0:94$ ip community-list expanded c1 permit 2543 ^65000:4_0:98_0:95$ ip community-list expanded c1 permit 2544 ^65000:4_0:98_0:96$ ip community-list expanded c1 permit 2545 ^65000:3_0:98_0:97$ ip community-list expanded c1 permit 2546 ^65000:4_0:98_0:97$ ip community-list expanded c1 permit 2547 ^65000:4_0:98_0:98$ ip community-list expanded c1 permit 2548 ^65000:4_0:99_0:50$ ip community-list expanded c1 permit 2549 ^65000:4_0:99_0:51$ ip community-list expanded c1 permit 2550 ^65000:4_0:99_0:52$ ip community-list expanded c1 permit 2551 ^65000:4_0:99_0:53$ ip community-list expanded c1 permit 2552 ^65000:4_0:99_0:54$ ip community-list expanded c1 permit 2553 ^65000:4_0:99_0:55$ ip community-list expanded c1 permit 2554 ^65000:4_0:99_0:56$ ip community-list expanded c1 permit 2555 ^65000:4_0:99_0:57$ ip community-list expanded c1 permit 2556 ^65000:4_0:99_0:58$ ip community-list expanded c1 permit 2557 ^65000:4_0:99_0:59$ ip community-list expanded c1 permit 2558 ^65000:4_0:99_0:60$ ip community-list expanded c1 permit 2559 ^65000:4_0:99_0:61$ ip community-list expanded c1 permit 2560 ^65000:4_0:99_0:62$ ip community-list expanded c1 permit 2561 ^65000:4_0:99_0:63$ ip community-list expanded c1 permit 2562 ^65000:4_0:99_0:64$ ip community-list expanded c1 permit 2563 ^65000:4_0:99_0:65$ ip community-list expanded c1 permit 2564 ^65000:4_0:99_0:66$ ip community-list expanded c1 permit 2565 ^65000:4_0:99_0:67$ ip community-list expanded c1 permit 2566 ^65000:4_0:99_0:68$ ip community-list expanded c1 permit 2567 ^65000:4_0:99_0:69$ ip community-list expanded c1 permit 2568 ^65000:4_0:99_0:70$ ip community-list expanded c1 permit 2569 ^65000:4_0:99_0:71$ ip community-list expanded c1 permit 2570 ^65000:4_0:99_0:72$ ip community-list expanded c1 permit 2571 ^65000:4_0:99_0:73$ ip community-list expanded c1 permit 2572 ^65000:4_0:99_0:74$ ip community-list expanded c1 permit 2573 ^65000:4_0:99_0:75$ ip community-list expanded c1 permit 2574 ^65000:4_0:99_0:76$ ip community-list expanded c1 permit 2575 ^65000:4_0:99_0:77$ ip community-list expanded c1 permit 2576 ^65000:4_0:99_0:78$ ip community-list expanded c1 permit 2577 ^65000:4_0:99_0:79$ ip community-list expanded c1 permit 2578 ^65000:4_0:99_0:80$ ip community-list expanded c1 permit 2579 ^65000:4_0:99_0:81$ ip community-list expanded c1 permit 2580 ^65000:4_0:99_0:82$ ip community-list expanded c1 permit 2581 ^65000:4_0:99_0:83$ ip community-list expanded c1 permit 2582 ^65000:4_0:99_0:84$ ip community-list expanded c1 permit 2583 ^65000:4_0:99_0:85$ ip community-list expanded c1 permit 2584 ^65000:4_0:99_0:86$ ip community-list expanded c1 permit 2585 ^65000:4_0:99_0:87$ ip community-list expanded c1 permit 2586 ^65000:4_0:99_0:88$ ip community-list expanded c1 permit 2587 ^65000:4_0:99_0:89$ ip community-list expanded c1 permit 2588 ^65000:4_0:99_0:90$ ip community-list expanded c1 permit 2589 ^65000:4_0:99_0:91$ ip community-list expanded c1 permit 2590 ^65000:4_0:99_0:92$ ip community-list expanded c1 permit 2591 ^65000:4_0:99_0:93$ ip community-list expanded c1 permit 2592 ^65000:4_0:99_0:94$ ip community-list expanded c1 permit 2593 ^65000:4_0:99_0:95$ ip community-list expanded c1 permit 2594 ^65000:4_0:99_0:96$ ip community-list expanded c1 permit 2595 ^65000:4_0:99_0:97$ ip community-list expanded c1 permit 2596 ^65000:3_0:99_0:98$ ip community-list expanded c1 permit 2597 ^65000:4_0:99_0:98$ ip community-list expanded c1 permit 2598 ^65000:4_0:99_0:99$ ip community-list expanded c1 permit 2599 ^65000:4_0:100_0:51$ ip community-list expanded c1 permit 2600 ^65000:4_0:100_0:52$ ip community-list expanded c1 permit 2601 ^65000:4_0:100_0:53$ ip community-list expanded c1 permit 2602 ^65000:4_0:100_0:54$ ip community-list expanded c1 permit 2603 ^65000:4_0:100_0:55$ ip community-list expanded c1 permit 2604 ^65000:4_0:100_0:56$ ip community-list expanded c1 permit 2605 ^65000:4_0:100_0:57$ ip community-list expanded c1 permit 2606 ^65000:4_0:100_0:58$ ip community-list expanded c1 permit 2607 ^65000:4_0:100_0:59$ ip community-list expanded c1 permit 2608 ^65000:4_0:100_0:60$ ip community-list expanded c1 permit 2609 ^65000:4_0:100_0:61$ ip community-list expanded c1 permit 2610 ^65000:4_0:100_0:62$ ip community-list expanded c1 permit 2611 ^65000:4_0:100_0:63$ ip community-list expanded c1 permit 2612 ^65000:4_0:100_0:64$ ip community-list expanded c1 permit 2613 ^65000:4_0:100_0:65$ ip community-list expanded c1 permit 2614 ^65000:4_0:100_0:66$ ip community-list expanded c1 permit 2615 ^65000:4_0:100_0:67$ ip community-list expanded c1 permit 2616 ^65000:4_0:100_0:68$ ip community-list expanded c1 permit 2617 ^65000:4_0:100_0:69$ ip community-list expanded c1 permit 2618 ^65000:4_0:100_0:70$ ip community-list expanded c1 permit 2619 ^65000:4_0:100_0:71$ ip community-list expanded c1 permit 2620 ^65000:4_0:100_0:72$ ip community-list expanded c1 permit 2621 ^65000:4_0:100_0:73$ ip community-list expanded c1 permit 2622 ^65000:4_0:100_0:74$ ip community-list expanded c1 permit 2623 ^65000:4_0:100_0:75$ ip community-list expanded c1 permit 2624 ^65000:4_0:100_0:76$ ip community-list expanded c1 permit 2625 ^65000:4_0:100_0:77$ ip community-list expanded c1 permit 2626 ^65000:4_0:100_0:78$ ip community-list expanded c1 permit 2627 ^65000:4_0:100_0:79$ ip community-list expanded c1 permit 2628 ^65000:4_0:100_0:80$ ip community-list expanded c1 permit 2629 ^65000:4_0:100_0:81$ ip community-list expanded c1 permit 2630 ^65000:4_0:100_0:82$ ip community-list expanded c1 permit 2631 ^65000:4_0:100_0:83$ ip community-list expanded c1 permit 2632 ^65000:4_0:100_0:84$ ip community-list expanded c1 permit 2633 ^65000:4_0:100_0:85$ ip community-list expanded c1 permit 2634 ^65000:4_0:100_0:86$ ip community-list expanded c1 permit 2635 ^65000:4_0:100_0:87$ ip community-list expanded c1 permit 2636 ^65000:4_0:100_0:88$ ip community-list expanded c1 permit 2637 ^65000:4_0:100_0:89$ ip community-list expanded c1 permit 2638 ^65000:4_0:100_0:90$ ip community-list expanded c1 permit 2639 ^65000:4_0:100_0:91$ ip community-list expanded c1 permit 2640 ^65000:4_0:100_0:92$ ip community-list expanded c1 permit 2641 ^65000:4_0:100_0:93$ ip community-list expanded c1 permit 2642 ^65000:4_0:100_0:94$ ip community-list expanded c1 permit 2643 ^65000:4_0:100_0:95$ ip community-list expanded c1 permit 2644 ^65000:4_0:100_0:96$ ip community-list expanded c1 permit 2645 ^65000:4_0:100_0:97$ ip community-list expanded c1 permit 2646 ^65000:4_0:100_0:98$ ip community-list expanded c1 permit 2647 ^65000:3_0:100_0:99$ ip community-list expanded c1 permit 2648 ^65000:4_0:100_0:99$ ip community-list expanded c1 permit 2649 ^65000:4_0:100_0:100$ ip community-list expanded c1 permit 2650 ^65000:4_0:101_0:51$ ip community-list expanded c1 permit 2651 ^65000:4_0:101_0:52$ ip community-list expanded c1 permit 2652 ^65000:4_0:101_0:53$ ip community-list expanded c1 permit 2653 ^65000:4_0:101_0:54$ ip community-list expanded c1 permit 2654 ^65000:4_0:101_0:55$ ip community-list expanded c1 permit 2655 ^65000:4_0:101_0:56$ ip community-list expanded c1 permit 2656 ^65000:4_0:101_0:57$ ip community-list expanded c1 permit 2657 ^65000:4_0:101_0:58$ ip community-list expanded c1 permit 2658 ^65000:4_0:101_0:59$ ip community-list expanded c1 permit 2659 ^65000:4_0:101_0:60$ ip community-list expanded c1 permit 2660 ^65000:4_0:101_0:61$ ip community-list expanded c1 permit 2661 ^65000:4_0:101_0:62$ ip community-list expanded c1 permit 2662 ^65000:4_0:101_0:63$ ip community-list expanded c1 permit 2663 ^65000:4_0:101_0:64$ ip community-list expanded c1 permit 2664 ^65000:4_0:101_0:65$ ip community-list expanded c1 permit 2665 ^65000:4_0:101_0:66$ ip community-list expanded c1 permit 2666 ^65000:4_0:101_0:67$ ip community-list expanded c1 permit 2667 ^65000:4_0:101_0:68$ ip community-list expanded c1 permit 2668 ^65000:4_0:101_0:69$ ip community-list expanded c1 permit 2669 ^65000:4_0:101_0:70$ ip community-list expanded c1 permit 2670 ^65000:4_0:101_0:71$ ip community-list expanded c1 permit 2671 ^65000:4_0:101_0:72$ ip community-list expanded c1 permit 2672 ^65000:4_0:101_0:73$ ip community-list expanded c1 permit 2673 ^65000:4_0:101_0:74$ ip community-list expanded c1 permit 2674 ^65000:4_0:101_0:75$ ip community-list expanded c1 permit 2675 ^65000:4_0:101_0:76$ ip community-list expanded c1 permit 2676 ^65000:4_0:101_0:77$ ip community-list expanded c1 permit 2677 ^65000:4_0:101_0:78$ ip community-list expanded c1 permit 2678 ^65000:4_0:101_0:79$ ip community-list expanded c1 permit 2679 ^65000:4_0:101_0:80$ ip community-list expanded c1 permit 2680 ^65000:4_0:101_0:81$ ip community-list expanded c1 permit 2681 ^65000:4_0:101_0:82$ ip community-list expanded c1 permit 2682 ^65000:4_0:101_0:83$ ip community-list expanded c1 permit 2683 ^65000:4_0:101_0:84$ ip community-list expanded c1 permit 2684 ^65000:4_0:101_0:85$ ip community-list expanded c1 permit 2685 ^65000:4_0:101_0:86$ ip community-list expanded c1 permit 2686 ^65000:4_0:101_0:87$ ip community-list expanded c1 permit 2687 ^65000:4_0:101_0:88$ ip community-list expanded c1 permit 2688 ^65000:4_0:101_0:89$ ip community-list expanded c1 permit 2689 ^65000:4_0:101_0:90$ ip community-list expanded c1 permit 2690 ^65000:4_0:101_0:91$ ip community-list expanded c1 permit 2691 ^65000:4_0:101_0:92$ ip community-list expanded c1 permit 2692 ^65000:4_0:101_0:93$ ip community-list expanded c1 permit 2693 ^65000:4_0:101_0:94$ ip community-list expanded c1 permit 2694 ^65000:4_0:101_0:95$ ip community-list expanded c1 permit 2695 ^65000:4_0:101_0:96$ ip community-list expanded c1 permit 2696 ^65000:4_0:101_0:97$ ip community-list expanded c1 permit 2697 ^65000:4_0:101_0:98$ ip community-list expanded c1 permit 2698 ^65000:4_0:101_0:99$ ip community-list expanded c1 permit 2699 ^65000:3_0:101_0:100$ ip community-list expanded c1 permit 2700 ^65000:4_0:101_0:100$ ip community-list expanded c1 permit 2701 ^65000:4_0:101_0:101$ ip community-list expanded c1 permit 2702 ^65000:4_0:102_0:52$ ip community-list expanded c1 permit 2703 ^65000:4_0:102_0:53$ ip community-list expanded c1 permit 2704 ^65000:4_0:102_0:54$ ip community-list expanded c1 permit 2705 ^65000:4_0:102_0:55$ ip community-list expanded c1 permit 2706 ^65000:4_0:102_0:56$ ip community-list expanded c1 permit 2707 ^65000:4_0:102_0:57$ ip community-list expanded c1 permit 2708 ^65000:4_0:102_0:58$ ip community-list expanded c1 permit 2709 ^65000:4_0:102_0:59$ ip community-list expanded c1 permit 2710 ^65000:4_0:102_0:60$ ip community-list expanded c1 permit 2711 ^65000:4_0:102_0:61$ ip community-list expanded c1 permit 2712 ^65000:4_0:102_0:62$ ip community-list expanded c1 permit 2713 ^65000:4_0:102_0:63$ ip community-list expanded c1 permit 2714 ^65000:4_0:102_0:64$ ip community-list expanded c1 permit 2715 ^65000:4_0:102_0:65$ ip community-list expanded c1 permit 2716 ^65000:4_0:102_0:66$ ip community-list expanded c1 permit 2717 ^65000:4_0:102_0:67$ ip community-list expanded c1 permit 2718 ^65000:4_0:102_0:68$ ip community-list expanded c1 permit 2719 ^65000:4_0:102_0:69$ ip community-list expanded c1 permit 2720 ^65000:4_0:102_0:70$ ip community-list expanded c1 permit 2721 ^65000:4_0:102_0:71$ ip community-list expanded c1 permit 2722 ^65000:4_0:102_0:72$ ip community-list expanded c1 permit 2723 ^65000:4_0:102_0:73$ ip community-list expanded c1 permit 2724 ^65000:4_0:102_0:74$ ip community-list expanded c1 permit 2725 ^65000:4_0:102_0:75$ ip community-list expanded c1 permit 2726 ^65000:4_0:102_0:76$ ip community-list expanded c1 permit 2727 ^65000:4_0:102_0:77$ ip community-list expanded c1 permit 2728 ^65000:4_0:102_0:78$ ip community-list expanded c1 permit 2729 ^65000:4_0:102_0:79$ ip community-list expanded c1 permit 2730 ^65000:4_0:102_0:80$ ip community-list expanded c1 permit 2731 ^65000:4_0:102_0:81$ ip community-list expanded c1 permit 2732 ^65000:4_0:102_0:82$ ip community-list expanded c1 permit 2733 ^65000:4_0:102_0:83$ ip community-list expanded c1 permit 2734 ^65000:4_0:102_0:84$ ip community-list expanded c1 permit 2735 ^65000:4_0:102_0:85$ ip community-list expanded c1 permit 2736 ^65000:4_0:102_0:86$ ip community-list expanded c1 permit 2737 ^65000:4_0:102_0:87$ ip community-list expanded c1 permit 2738 ^65000:4_0:102_0:88$ ip community-list expanded c1 permit 2739 ^65000:4_0:102_0:89$ ip community-list expanded c1 permit 2740 ^65000:4_0:102_0:90$ ip community-list expanded c1 permit 2741 ^65000:4_0:102_0:91$ ip community-list expanded c1 permit 2742 ^65000:4_0:102_0:92$ ip community-list expanded c1 permit 2743 ^65000:4_0:102_0:93$ ip community-list expanded c1 permit 2744 ^65000:4_0:102_0:94$ ip community-list expanded c1 permit 2745 ^65000:4_0:102_0:95$ ip community-list expanded c1 permit 2746 ^65000:4_0:102_0:96$ ip community-list expanded c1 permit 2747 ^65000:4_0:102_0:97$ ip community-list expanded c1 permit 2748 ^65000:4_0:102_0:98$ ip community-list expanded c1 permit 2749 ^65000:4_0:102_0:99$ ip community-list expanded c1 permit 2750 ^65000:4_0:102_0:100$ ip community-list expanded c1 permit 2751 ^65000:3_0:102_0:101$ ip community-list expanded c1 permit 2752 ^65000:4_0:102_0:101$ ip community-list expanded c1 permit 2753 ^65000:4_0:102_0:102$ ip community-list expanded c1 permit 2754 ^65000:4_0:103_0:52$ ip community-list expanded c1 permit 2755 ^65000:4_0:103_0:53$ ip community-list expanded c1 permit 2756 ^65000:4_0:103_0:54$ ip community-list expanded c1 permit 2757 ^65000:4_0:103_0:55$ ip community-list expanded c1 permit 2758 ^65000:4_0:103_0:56$ ip community-list expanded c1 permit 2759 ^65000:4_0:103_0:57$ ip community-list expanded c1 permit 2760 ^65000:4_0:103_0:58$ ip community-list expanded c1 permit 2761 ^65000:4_0:103_0:59$ ip community-list expanded c1 permit 2762 ^65000:4_0:103_0:60$ ip community-list expanded c1 permit 2763 ^65000:4_0:103_0:61$ ip community-list expanded c1 permit 2764 ^65000:4_0:103_0:62$ ip community-list expanded c1 permit 2765 ^65000:4_0:103_0:63$ ip community-list expanded c1 permit 2766 ^65000:4_0:103_0:64$ ip community-list expanded c1 permit 2767 ^65000:4_0:103_0:65$ ip community-list expanded c1 permit 2768 ^65000:4_0:103_0:66$ ip community-list expanded c1 permit 2769 ^65000:4_0:103_0:67$ ip community-list expanded c1 permit 2770 ^65000:4_0:103_0:68$ ip community-list expanded c1 permit 2771 ^65000:4_0:103_0:69$ ip community-list expanded c1 permit 2772 ^65000:4_0:103_0:70$ ip community-list expanded c1 permit 2773 ^65000:4_0:103_0:71$ ip community-list expanded c1 permit 2774 ^65000:4_0:103_0:72$ ip community-list expanded c1 permit 2775 ^65000:4_0:103_0:73$ ip community-list expanded c1 permit 2776 ^65000:4_0:103_0:74$ ip community-list expanded c1 permit 2777 ^65000:4_0:103_0:75$ ip community-list expanded c1 permit 2778 ^65000:4_0:103_0:76$ ip community-list expanded c1 permit 2779 ^65000:4_0:103_0:77$ ip community-list expanded c1 permit 2780 ^65000:4_0:103_0:78$ ip community-list expanded c1 permit 2781 ^65000:4_0:103_0:79$ ip community-list expanded c1 permit 2782 ^65000:4_0:103_0:80$ ip community-list expanded c1 permit 2783 ^65000:4_0:103_0:81$ ip community-list expanded c1 permit 2784 ^65000:4_0:103_0:82$ ip community-list expanded c1 permit 2785 ^65000:4_0:103_0:83$ ip community-list expanded c1 permit 2786 ^65000:4_0:103_0:84$ ip community-list expanded c1 permit 2787 ^65000:4_0:103_0:85$ ip community-list expanded c1 permit 2788 ^65000:4_0:103_0:86$ ip community-list expanded c1 permit 2789 ^65000:4_0:103_0:87$ ip community-list expanded c1 permit 2790 ^65000:4_0:103_0:88$ ip community-list expanded c1 permit 2791 ^65000:4_0:103_0:89$ ip community-list expanded c1 permit 2792 ^65000:4_0:103_0:90$ ip community-list expanded c1 permit 2793 ^65000:4_0:103_0:91$ ip community-list expanded c1 permit 2794 ^65000:4_0:103_0:92$ ip community-list expanded c1 permit 2795 ^65000:4_0:103_0:93$ ip community-list expanded c1 permit 2796 ^65000:4_0:103_0:94$ ip community-list expanded c1 permit 2797 ^65000:4_0:103_0:95$ ip community-list expanded c1 permit 2798 ^65000:4_0:103_0:96$ ip community-list expanded c1 permit 2799 ^65000:4_0:103_0:97$ ip community-list expanded c1 permit 2800 ^65000:4_0:103_0:98$ ip community-list expanded c1 permit 2801 ^65000:4_0:103_0:99$ ip community-list expanded c1 permit 2802 ^65000:4_0:103_0:100$ ip community-list expanded c1 permit 2803 ^65000:4_0:103_0:101$ ip community-list expanded c1 permit 2804 ^65000:3_0:103_0:102$ ip community-list expanded c1 permit 2805 ^65000:4_0:103_0:102$ ip community-list expanded c1 permit 2806 ^65000:4_0:103_0:103$ ip community-list expanded c1 permit 2807 ^65000:4_0:104_0:53$ ip community-list expanded c1 permit 2808 ^65000:4_0:104_0:54$ ip community-list expanded c1 permit 2809 ^65000:4_0:104_0:55$ ip community-list expanded c1 permit 2810 ^65000:4_0:104_0:56$ ip community-list expanded c1 permit 2811 ^65000:4_0:104_0:57$ ip community-list expanded c1 permit 2812 ^65000:4_0:104_0:58$ ip community-list expanded c1 permit 2813 ^65000:4_0:104_0:59$ ip community-list expanded c1 permit 2814 ^65000:4_0:104_0:60$ ip community-list expanded c1 permit 2815 ^65000:4_0:104_0:61$ ip community-list expanded c1 permit 2816 ^65000:4_0:104_0:62$ ip community-list expanded c1 permit 2817 ^65000:4_0:104_0:63$ ip community-list expanded c1 permit 2818 ^65000:4_0:104_0:64$ ip community-list expanded c1 permit 2819 ^65000:4_0:104_0:65$ ip community-list expanded c1 permit 2820 ^65000:4_0:104_0:66$ ip community-list expanded c1 permit 2821 ^65000:4_0:104_0:67$ ip community-list expanded c1 permit 2822 ^65000:4_0:104_0:68$ ip community-list expanded c1 permit 2823 ^65000:4_0:104_0:69$ ip community-list expanded c1 permit 2824 ^65000:4_0:104_0:70$ ip community-list expanded c1 permit 2825 ^65000:4_0:104_0:71$ ip community-list expanded c1 permit 2826 ^65000:4_0:104_0:72$ ip community-list expanded c1 permit 2827 ^65000:4_0:104_0:73$ ip community-list expanded c1 permit 2828 ^65000:4_0:104_0:74$ ip community-list expanded c1 permit 2829 ^65000:4_0:104_0:75$ ip community-list expanded c1 permit 2830 ^65000:4_0:104_0:76$ ip community-list expanded c1 permit 2831 ^65000:4_0:104_0:77$ ip community-list expanded c1 permit 2832 ^65000:4_0:104_0:78$ ip community-list expanded c1 permit 2833 ^65000:4_0:104_0:79$ ip community-list expanded c1 permit 2834 ^65000:4_0:104_0:80$ ip community-list expanded c1 permit 2835 ^65000:4_0:104_0:81$ ip community-list expanded c1 permit 2836 ^65000:4_0:104_0:82$ ip community-list expanded c1 permit 2837 ^65000:4_0:104_0:83$ ip community-list expanded c1 permit 2838 ^65000:4_0:104_0:84$ ip community-list expanded c1 permit 2839 ^65000:4_0:104_0:85$ ip community-list expanded c1 permit 2840 ^65000:4_0:104_0:86$ ip community-list expanded c1 permit 2841 ^65000:4_0:104_0:87$ ip community-list expanded c1 permit 2842 ^65000:4_0:104_0:88$ ip community-list expanded c1 permit 2843 ^65000:4_0:104_0:89$ ip community-list expanded c1 permit 2844 ^65000:4_0:104_0:90$ ip community-list expanded c1 permit 2845 ^65000:4_0:104_0:91$ ip community-list expanded c1 permit 2846 ^65000:4_0:104_0:92$ ip community-list expanded c1 permit 2847 ^65000:4_0:104_0:93$ ip community-list expanded c1 permit 2848 ^65000:4_0:104_0:94$ ip community-list expanded c1 permit 2849 ^65000:4_0:104_0:95$ ip community-list expanded c1 permit 2850 ^65000:4_0:104_0:96$ ip community-list expanded c1 permit 2851 ^65000:4_0:104_0:97$ ip community-list expanded c1 permit 2852 ^65000:4_0:104_0:98$ ip community-list expanded c1 permit 2853 ^65000:4_0:104_0:99$ ip community-list expanded c1 permit 2854 ^65000:4_0:104_0:100$ ip community-list expanded c1 permit 2855 ^65000:4_0:104_0:101$ ip community-list expanded c1 permit 2856 ^65000:4_0:104_0:102$ ip community-list expanded c1 permit 2857 ^65000:3_0:104_0:103$ ip community-list expanded c1 permit 2858 ^65000:4_0:104_0:103$ ip community-list expanded c1 permit 2859 ^65000:4_0:104_0:104$ ip community-list expanded c1 permit 2860 ^65000:4_0:105_0:53$ ip community-list expanded c1 permit 2861 ^65000:4_0:105_0:54$ ip community-list expanded c1 permit 2862 ^65000:4_0:105_0:55$ ip community-list expanded c1 permit 2863 ^65000:4_0:105_0:56$ ip community-list expanded c1 permit 2864 ^65000:4_0:105_0:57$ ip community-list expanded c1 permit 2865 ^65000:4_0:105_0:58$ ip community-list expanded c1 permit 2866 ^65000:4_0:105_0:59$ ip community-list expanded c1 permit 2867 ^65000:4_0:105_0:60$ ip community-list expanded c1 permit 2868 ^65000:4_0:105_0:61$ ip community-list expanded c1 permit 2869 ^65000:4_0:105_0:62$ ip community-list expanded c1 permit 2870 ^65000:4_0:105_0:63$ ip community-list expanded c1 permit 2871 ^65000:4_0:105_0:64$ ip community-list expanded c1 permit 2872 ^65000:4_0:105_0:65$ ip community-list expanded c1 permit 2873 ^65000:4_0:105_0:66$ ip community-list expanded c1 permit 2874 ^65000:4_0:105_0:67$ ip community-list expanded c1 permit 2875 ^65000:4_0:105_0:68$ ip community-list expanded c1 permit 2876 ^65000:4_0:105_0:69$ ip community-list expanded c1 permit 2877 ^65000:4_0:105_0:70$ ip community-list expanded c1 permit 2878 ^65000:4_0:105_0:71$ ip community-list expanded c1 permit 2879 ^65000:4_0:105_0:72$ ip community-list expanded c1 permit 2880 ^65000:4_0:105_0:73$ ip community-list expanded c1 permit 2881 ^65000:4_0:105_0:74$ ip community-list expanded c1 permit 2882 ^65000:4_0:105_0:75$ ip community-list expanded c1 permit 2883 ^65000:4_0:105_0:76$ ip community-list expanded c1 permit 2884 ^65000:4_0:105_0:77$ ip community-list expanded c1 permit 2885 ^65000:4_0:105_0:78$ ip community-list expanded c1 permit 2886 ^65000:4_0:105_0:79$ ip community-list expanded c1 permit 2887 ^65000:4_0:105_0:80$ ip community-list expanded c1 permit 2888 ^65000:4_0:105_0:81$ ip community-list expanded c1 permit 2889 ^65000:4_0:105_0:82$ ip community-list expanded c1 permit 2890 ^65000:4_0:105_0:83$ ip community-list expanded c1 permit 2891 ^65000:4_0:105_0:84$ ip community-list expanded c1 permit 2892 ^65000:4_0:105_0:85$ ip community-list expanded c1 permit 2893 ^65000:4_0:105_0:86$ ip community-list expanded c1 permit 2894 ^65000:4_0:105_0:87$ ip community-list expanded c1 permit 2895 ^65000:4_0:105_0:88$ ip community-list expanded c1 permit 2896 ^65000:4_0:105_0:89$ ip community-list expanded c1 permit 2897 ^65000:4_0:105_0:90$ ip community-list expanded c1 permit 2898 ^65000:4_0:105_0:91$ ip community-list expanded c1 permit 2899 ^65000:4_0:105_0:92$ ip community-list expanded c1 permit 2900 ^65000:4_0:105_0:93$ ip community-list expanded c1 permit 2901 ^65000:4_0:105_0:94$ ip community-list expanded c1 permit 2902 ^65000:4_0:105_0:95$ ip community-list expanded c1 permit 2903 ^65000:4_0:105_0:96$ ip community-list expanded c1 permit 2904 ^65000:4_0:105_0:97$ ip community-list expanded c1 permit 2905 ^65000:4_0:105_0:98$ ip community-list expanded c1 permit 2906 ^65000:4_0:105_0:99$ ip community-list expanded c1 permit 2907 ^65000:4_0:105_0:100$ ip community-list expanded c1 permit 2908 ^65000:4_0:105_0:101$ ip community-list expanded c1 permit 2909 ^65000:4_0:105_0:102$ ip community-list expanded c1 permit 2910 ^65000:4_0:105_0:103$ ip community-list expanded c1 permit 2911 ^65000:3_0:105_0:104$ ip community-list expanded c1 permit 2912 ^65000:4_0:105_0:104$ ip community-list expanded c1 permit 2913 ^65000:4_0:105_0:105$ ip community-list expanded c1 permit 2914 ^65000:4_0:106_0:54$ ip community-list expanded c1 permit 2915 ^65000:4_0:106_0:55$ ip community-list expanded c1 permit 2916 ^65000:4_0:106_0:56$ ip community-list expanded c1 permit 2917 ^65000:4_0:106_0:57$ ip community-list expanded c1 permit 2918 ^65000:4_0:106_0:58$ ip community-list expanded c1 permit 2919 ^65000:4_0:106_0:59$ ip community-list expanded c1 permit 2920 ^65000:4_0:106_0:60$ ip community-list expanded c1 permit 2921 ^65000:4_0:106_0:61$ ip community-list expanded c1 permit 2922 ^65000:4_0:106_0:62$ ip community-list expanded c1 permit 2923 ^65000:4_0:106_0:63$ ip community-list expanded c1 permit 2924 ^65000:4_0:106_0:64$ ip community-list expanded c1 permit 2925 ^65000:4_0:106_0:65$ ip community-list expanded c1 permit 2926 ^65000:4_0:106_0:66$ ip community-list expanded c1 permit 2927 ^65000:4_0:106_0:67$ ip community-list expanded c1 permit 2928 ^65000:4_0:106_0:68$ ip community-list expanded c1 permit 2929 ^65000:4_0:106_0:69$ ip community-list expanded c1 permit 2930 ^65000:4_0:106_0:70$ ip community-list expanded c1 permit 2931 ^65000:4_0:106_0:71$ ip community-list expanded c1 permit 2932 ^65000:4_0:106_0:72$ ip community-list expanded c1 permit 2933 ^65000:4_0:106_0:73$ ip community-list expanded c1 permit 2934 ^65000:4_0:106_0:74$ ip community-list expanded c1 permit 2935 ^65000:4_0:106_0:75$ ip community-list expanded c1 permit 2936 ^65000:4_0:106_0:76$ ip community-list expanded c1 permit 2937 ^65000:4_0:106_0:77$ ip community-list expanded c1 permit 2938 ^65000:4_0:106_0:78$ ip community-list expanded c1 permit 2939 ^65000:4_0:106_0:79$ ip community-list expanded c1 permit 2940 ^65000:4_0:106_0:80$ ip community-list expanded c1 permit 2941 ^65000:4_0:106_0:81$ ip community-list expanded c1 permit 2942 ^65000:4_0:106_0:82$ ip community-list expanded c1 permit 2943 ^65000:4_0:106_0:83$ ip community-list expanded c1 permit 2944 ^65000:4_0:106_0:84$ ip community-list expanded c1 permit 2945 ^65000:4_0:106_0:85$ ip community-list expanded c1 permit 2946 ^65000:4_0:106_0:86$ ip community-list expanded c1 permit 2947 ^65000:4_0:106_0:87$ ip community-list expanded c1 permit 2948 ^65000:4_0:106_0:88$ ip community-list expanded c1 permit 2949 ^65000:4_0:106_0:89$ ip community-list expanded c1 permit 2950 ^65000:4_0:106_0:90$ ip community-list expanded c1 permit 2951 ^65000:4_0:106_0:91$ ip community-list expanded c1 permit 2952 ^65000:4_0:106_0:92$ ip community-list expanded c1 permit 2953 ^65000:4_0:106_0:93$ ip community-list expanded c1 permit 2954 ^65000:4_0:106_0:94$ ip community-list expanded c1 permit 2955 ^65000:4_0:106_0:95$ ip community-list expanded c1 permit 2956 ^65000:4_0:106_0:96$ ip community-list expanded c1 permit 2957 ^65000:4_0:106_0:97$ ip community-list expanded c1 permit 2958 ^65000:4_0:106_0:98$ ip community-list expanded c1 permit 2959 ^65000:4_0:106_0:99$ ip community-list expanded c1 permit 2960 ^65000:4_0:106_0:100$ ip community-list expanded c1 permit 2961 ^65000:4_0:106_0:101$ ip community-list expanded c1 permit 2962 ^65000:4_0:106_0:102$ ip community-list expanded c1 permit 2963 ^65000:4_0:106_0:103$ ip community-list expanded c1 permit 2964 ^65000:4_0:106_0:104$ ip community-list expanded c1 permit 2965 ^65000:3_0:106_0:105$ ip community-list expanded c1 permit 2966 ^65000:4_0:106_0:105$ ip community-list expanded c1 permit 2967 ^65000:4_0:106_0:106$ ip community-list expanded c1 permit 2968 ^65000:4_0:107_0:54$ ip community-list expanded c1 permit 2969 ^65000:4_0:107_0:55$ ip community-list expanded c1 permit 2970 ^65000:4_0:107_0:56$ ip community-list expanded c1 permit 2971 ^65000:4_0:107_0:57$ ip community-list expanded c1 permit 2972 ^65000:4_0:107_0:58$ ip community-list expanded c1 permit 2973 ^65000:4_0:107_0:59$ ip community-list expanded c1 permit 2974 ^65000:4_0:107_0:60$ ip community-list expanded c1 permit 2975 ^65000:4_0:107_0:61$ ip community-list expanded c1 permit 2976 ^65000:4_0:107_0:62$ ip community-list expanded c1 permit 2977 ^65000:4_0:107_0:63$ ip community-list expanded c1 permit 2978 ^65000:4_0:107_0:64$ ip community-list expanded c1 permit 2979 ^65000:4_0:107_0:65$ ip community-list expanded c1 permit 2980 ^65000:4_0:107_0:66$ ip community-list expanded c1 permit 2981 ^65000:4_0:107_0:67$ ip community-list expanded c1 permit 2982 ^65000:4_0:107_0:68$ ip community-list expanded c1 permit 2983 ^65000:4_0:107_0:69$ ip community-list expanded c1 permit 2984 ^65000:4_0:107_0:70$ ip community-list expanded c1 permit 2985 ^65000:4_0:107_0:71$ ip community-list expanded c1 permit 2986 ^65000:4_0:107_0:72$ ip community-list expanded c1 permit 2987 ^65000:4_0:107_0:73$ ip community-list expanded c1 permit 2988 ^65000:4_0:107_0:74$ ip community-list expanded c1 permit 2989 ^65000:4_0:107_0:75$ ip community-list expanded c1 permit 2990 ^65000:4_0:107_0:76$ ip community-list expanded c1 permit 2991 ^65000:4_0:107_0:77$ ip community-list expanded c1 permit 2992 ^65000:4_0:107_0:78$ ip community-list expanded c1 permit 2993 ^65000:4_0:107_0:79$ ip community-list expanded c1 permit 2994 ^65000:4_0:107_0:80$ ip community-list expanded c1 permit 2995 ^65000:4_0:107_0:81$ ip community-list expanded c1 permit 2996 ^65000:4_0:107_0:82$ ip community-list expanded c1 permit 2997 ^65000:4_0:107_0:83$ ip community-list expanded c1 permit 2998 ^65000:4_0:107_0:84$ ip community-list expanded c1 permit 2999 ^65000:4_0:107_0:85$ ip community-list expanded c1 permit 3000 ^65000:4_0:107_0:86$ ip community-list expanded c1 permit 3001 ^65000:4_0:107_0:87$ ip community-list expanded c1 permit 3002 ^65000:4_0:107_0:88$ ip community-list expanded c1 permit 3003 ^65000:4_0:107_0:89$ ip community-list expanded c1 permit 3004 ^65000:4_0:107_0:90$ ip community-list expanded c1 permit 3005 ^65000:4_0:107_0:91$ ip community-list expanded c1 permit 3006 ^65000:4_0:107_0:92$ ip community-list expanded c1 permit 3007 ^65000:4_0:107_0:93$ ip community-list expanded c1 permit 3008 ^65000:4_0:107_0:94$ ip community-list expanded c1 permit 3009 ^65000:4_0:107_0:95$ ip community-list expanded c1 permit 3010 ^65000:4_0:107_0:96$ ip community-list expanded c1 permit 3011 ^65000:4_0:107_0:97$ ip community-list expanded c1 permit 3012 ^65000:4_0:107_0:98$ ip community-list expanded c1 permit 3013 ^65000:4_0:107_0:99$ ip community-list expanded c1 permit 3014 ^65000:4_0:107_0:100$ ip community-list expanded c1 permit 3015 ^65000:4_0:107_0:101$ ip community-list expanded c1 permit 3016 ^65000:4_0:107_0:102$ ip community-list expanded c1 permit 3017 ^65000:4_0:107_0:103$ ip community-list expanded c1 permit 3018 ^65000:4_0:107_0:104$ ip community-list expanded c1 permit 3019 ^65000:4_0:107_0:105$ ip community-list expanded c1 permit 3020 ^65000:3_0:107_0:106$ ip community-list expanded c1 permit 3021 ^65000:4_0:107_0:106$ ip community-list expanded c1 permit 3022 ^65000:4_0:107_0:107$ ip community-list expanded c1 permit 3023 ^65000:4_0:108_0:55$ ip community-list expanded c1 permit 3024 ^65000:4_0:108_0:56$ ip community-list expanded c1 permit 3025 ^65000:4_0:108_0:57$ ip community-list expanded c1 permit 3026 ^65000:4_0:108_0:58$ ip community-list expanded c1 permit 3027 ^65000:4_0:108_0:59$ ip community-list expanded c1 permit 3028 ^65000:4_0:108_0:60$ ip community-list expanded c1 permit 3029 ^65000:4_0:108_0:61$ ip community-list expanded c1 permit 3030 ^65000:4_0:108_0:62$ ip community-list expanded c1 permit 3031 ^65000:4_0:108_0:63$ ip community-list expanded c1 permit 3032 ^65000:4_0:108_0:64$ ip community-list expanded c1 permit 3033 ^65000:4_0:108_0:65$ ip community-list expanded c1 permit 3034 ^65000:4_0:108_0:66$ ip community-list expanded c1 permit 3035 ^65000:4_0:108_0:67$ ip community-list expanded c1 permit 3036 ^65000:4_0:108_0:68$ ip community-list expanded c1 permit 3037 ^65000:4_0:108_0:69$ ip community-list expanded c1 permit 3038 ^65000:4_0:108_0:70$ ip community-list expanded c1 permit 3039 ^65000:4_0:108_0:71$ ip community-list expanded c1 permit 3040 ^65000:4_0:108_0:72$ ip community-list expanded c1 permit 3041 ^65000:4_0:108_0:73$ ip community-list expanded c1 permit 3042 ^65000:4_0:108_0:74$ ip community-list expanded c1 permit 3043 ^65000:4_0:108_0:75$ ip community-list expanded c1 permit 3044 ^65000:4_0:108_0:76$ ip community-list expanded c1 permit 3045 ^65000:4_0:108_0:77$ ip community-list expanded c1 permit 3046 ^65000:4_0:108_0:78$ ip community-list expanded c1 permit 3047 ^65000:4_0:108_0:79$ ip community-list expanded c1 permit 3048 ^65000:4_0:108_0:80$ ip community-list expanded c1 permit 3049 ^65000:4_0:108_0:81$ ip community-list expanded c1 permit 3050 ^65000:4_0:108_0:82$ ip community-list expanded c1 permit 3051 ^65000:4_0:108_0:83$ ip community-list expanded c1 permit 3052 ^65000:4_0:108_0:84$ ip community-list expanded c1 permit 3053 ^65000:4_0:108_0:85$ ip community-list expanded c1 permit 3054 ^65000:4_0:108_0:86$ ip community-list expanded c1 permit 3055 ^65000:4_0:108_0:87$ ip community-list expanded c1 permit 3056 ^65000:4_0:108_0:88$ ip community-list expanded c1 permit 3057 ^65000:4_0:108_0:89$ ip community-list expanded c1 permit 3058 ^65000:4_0:108_0:90$ ip community-list expanded c1 permit 3059 ^65000:4_0:108_0:91$ ip community-list expanded c1 permit 3060 ^65000:4_0:108_0:92$ ip community-list expanded c1 permit 3061 ^65000:4_0:108_0:93$ ip community-list expanded c1 permit 3062 ^65000:4_0:108_0:94$ ip community-list expanded c1 permit 3063 ^65000:4_0:108_0:95$ ip community-list expanded c1 permit 3064 ^65000:4_0:108_0:96$ ip community-list expanded c1 permit 3065 ^65000:4_0:108_0:97$ ip community-list expanded c1 permit 3066 ^65000:4_0:108_0:98$ ip community-list expanded c1 permit 3067 ^65000:4_0:108_0:99$ ip community-list expanded c1 permit 3068 ^65000:4_0:108_0:100$ ip community-list expanded c1 permit 3069 ^65000:4_0:108_0:101$ ip community-list expanded c1 permit 3070 ^65000:4_0:108_0:102$ ip community-list expanded c1 permit 3071 ^65000:4_0:108_0:103$ ip community-list expanded c1 permit 3072 ^65000:4_0:108_0:104$ ip community-list expanded c1 permit 3073 ^65000:4_0:108_0:105$ ip community-list expanded c1 permit 3074 ^65000:4_0:108_0:106$ ip community-list expanded c1 permit 3075 ^65000:3_0:108_0:107$ ip community-list expanded c1 permit 3076 ^65000:4_0:108_0:107$ ip community-list expanded c1 permit 3077 ^65000:4_0:108_0:108$ ip community-list expanded c1 permit 3078 ^65000:4_0:109_0:55$ ip community-list expanded c1 permit 3079 ^65000:4_0:109_0:56$ ip community-list expanded c1 permit 3080 ^65000:4_0:109_0:57$ ip community-list expanded c1 permit 3081 ^65000:4_0:109_0:58$ ip community-list expanded c1 permit 3082 ^65000:4_0:109_0:59$ ip community-list expanded c1 permit 3083 ^65000:4_0:109_0:60$ ip community-list expanded c1 permit 3084 ^65000:4_0:109_0:61$ ip community-list expanded c1 permit 3085 ^65000:4_0:109_0:62$ ip community-list expanded c1 permit 3086 ^65000:4_0:109_0:63$ ip community-list expanded c1 permit 3087 ^65000:4_0:109_0:64$ ip community-list expanded c1 permit 3088 ^65000:4_0:109_0:65$ ip community-list expanded c1 permit 3089 ^65000:4_0:109_0:66$ ip community-list expanded c1 permit 3090 ^65000:4_0:109_0:67$ ip community-list expanded c1 permit 3091 ^65000:4_0:109_0:68$ ip community-list expanded c1 permit 3092 ^65000:4_0:109_0:69$ ip community-list expanded c1 permit 3093 ^65000:4_0:109_0:70$ ip community-list expanded c1 permit 3094 ^65000:4_0:109_0:71$ ip community-list expanded c1 permit 3095 ^65000:4_0:109_0:72$ ip community-list expanded c1 permit 3096 ^65000:4_0:109_0:73$ ip community-list expanded c1 permit 3097 ^65000:4_0:109_0:74$ ip community-list expanded c1 permit 3098 ^65000:4_0:109_0:75$ ip community-list expanded c1 permit 3099 ^65000:4_0:109_0:76$ ip community-list expanded c1 permit 3100 ^65000:4_0:109_0:77$ ip community-list expanded c1 permit 3101 ^65000:4_0:109_0:78$ ip community-list expanded c1 permit 3102 ^65000:4_0:109_0:79$ ip community-list expanded c1 permit 3103 ^65000:4_0:109_0:80$ ip community-list expanded c1 permit 3104 ^65000:4_0:109_0:81$ ip community-list expanded c1 permit 3105 ^65000:4_0:109_0:82$ ip community-list expanded c1 permit 3106 ^65000:4_0:109_0:83$ ip community-list expanded c1 permit 3107 ^65000:4_0:109_0:84$ ip community-list expanded c1 permit 3108 ^65000:4_0:109_0:85$ ip community-list expanded c1 permit 3109 ^65000:4_0:109_0:86$ ip community-list expanded c1 permit 3110 ^65000:4_0:109_0:87$ ip community-list expanded c1 permit 3111 ^65000:4_0:109_0:88$ ip community-list expanded c1 permit 3112 ^65000:4_0:109_0:89$ ip community-list expanded c1 permit 3113 ^65000:4_0:109_0:90$ ip community-list expanded c1 permit 3114 ^65000:4_0:109_0:91$ ip community-list expanded c1 permit 3115 ^65000:4_0:109_0:92$ ip community-list expanded c1 permit 3116 ^65000:4_0:109_0:93$ ip community-list expanded c1 permit 3117 ^65000:4_0:109_0:94$ ip community-list expanded c1 permit 3118 ^65000:4_0:109_0:95$ ip community-list expanded c1 permit 3119 ^65000:4_0:109_0:96$ ip community-list expanded c1 permit 3120 ^65000:4_0:109_0:97$ ip community-list expanded c1 permit 3121 ^65000:4_0:109_0:98$ ip community-list expanded c1 permit 3122 ^65000:4_0:109_0:99$ ip community-list expanded c1 permit 3123 ^65000:4_0:109_0:100$ ip community-list expanded c1 permit 3124 ^65000:4_0:109_0:101$ ip community-list expanded c1 permit 3125 ^65000:4_0:109_0:102$ ip community-list expanded c1 permit 3126 ^65000:4_0:109_0:103$ ip community-list expanded c1 permit 3127 ^65000:4_0:109_0:104$ ip community-list expanded c1 permit 3128 ^65000:4_0:109_0:105$ ip community-list expanded c1 permit 3129 ^65000:4_0:109_0:106$ ip community-list expanded c1 permit 3130 ^65000:4_0:109_0:107$ ip community-list expanded c1 permit 3131 ^65000:3_0:109_0:108$ ip community-list expanded c1 permit 3132 ^65000:4_0:109_0:108$ ip community-list expanded c1 permit 3133 ^65000:4_0:109_0:109$ ip community-list expanded c1 permit 3134 ^65000:4_0:110_0:56$ ip community-list expanded c1 permit 3135 ^65000:4_0:110_0:57$ ip community-list expanded c1 permit 3136 ^65000:4_0:110_0:58$ ip community-list expanded c1 permit 3137 ^65000:4_0:110_0:59$ ip community-list expanded c1 permit 3138 ^65000:4_0:110_0:60$ ip community-list expanded c1 permit 3139 ^65000:4_0:110_0:61$ ip community-list expanded c1 permit 3140 ^65000:4_0:110_0:62$ ip community-list expanded c1 permit 3141 ^65000:4_0:110_0:63$ ip community-list expanded c1 permit 3142 ^65000:4_0:110_0:64$ ip community-list expanded c1 permit 3143 ^65000:4_0:110_0:65$ ip community-list expanded c1 permit 3144 ^65000:4_0:110_0:66$ ip community-list expanded c1 permit 3145 ^65000:4_0:110_0:67$ ip community-list expanded c1 permit 3146 ^65000:4_0:110_0:68$ ip community-list expanded c1 permit 3147 ^65000:4_0:110_0:69$ ip community-list expanded c1 permit 3148 ^65000:4_0:110_0:70$ ip community-list expanded c1 permit 3149 ^65000:4_0:110_0:71$ ip community-list expanded c1 permit 3150 ^65000:4_0:110_0:72$ ip community-list expanded c1 permit 3151 ^65000:4_0:110_0:73$ ip community-list expanded c1 permit 3152 ^65000:4_0:110_0:74$ ip community-list expanded c1 permit 3153 ^65000:4_0:110_0:75$ ip community-list expanded c1 permit 3154 ^65000:4_0:110_0:76$ ip community-list expanded c1 permit 3155 ^65000:4_0:110_0:77$ ip community-list expanded c1 permit 3156 ^65000:4_0:110_0:78$ ip community-list expanded c1 permit 3157 ^65000:4_0:110_0:79$ ip community-list expanded c1 permit 3158 ^65000:4_0:110_0:80$ ip community-list expanded c1 permit 3159 ^65000:4_0:110_0:81$ ip community-list expanded c1 permit 3160 ^65000:4_0:110_0:82$ ip community-list expanded c1 permit 3161 ^65000:4_0:110_0:83$ ip community-list expanded c1 permit 3162 ^65000:4_0:110_0:84$ ip community-list expanded c1 permit 3163 ^65000:4_0:110_0:85$ ip community-list expanded c1 permit 3164 ^65000:4_0:110_0:86$ ip community-list expanded c1 permit 3165 ^65000:4_0:110_0:87$ ip community-list expanded c1 permit 3166 ^65000:4_0:110_0:88$ ip community-list expanded c1 permit 3167 ^65000:4_0:110_0:89$ ip community-list expanded c1 permit 3168 ^65000:4_0:110_0:90$ ip community-list expanded c1 permit 3169 ^65000:4_0:110_0:91$ ip community-list expanded c1 permit 3170 ^65000:4_0:110_0:92$ ip community-list expanded c1 permit 3171 ^65000:4_0:110_0:93$ ip community-list expanded c1 permit 3172 ^65000:4_0:110_0:94$ ip community-list expanded c1 permit 3173 ^65000:4_0:110_0:95$ ip community-list expanded c1 permit 3174 ^65000:4_0:110_0:96$ ip community-list expanded c1 permit 3175 ^65000:4_0:110_0:97$ ip community-list expanded c1 permit 3176 ^65000:4_0:110_0:98$ ip community-list expanded c1 permit 3177 ^65000:4_0:110_0:99$ ip community-list expanded c1 permit 3178 ^65000:4_0:110_0:100$ ip community-list expanded c1 permit 3179 ^65000:4_0:110_0:101$ ip community-list expanded c1 permit 3180 ^65000:4_0:110_0:102$ ip community-list expanded c1 permit 3181 ^65000:4_0:110_0:103$ ip community-list expanded c1 permit 3182 ^65000:4_0:110_0:104$ ip community-list expanded c1 permit 3183 ^65000:4_0:110_0:105$ ip community-list expanded c1 permit 3184 ^65000:4_0:110_0:106$ ip community-list expanded c1 permit 3185 ^65000:4_0:110_0:107$ ip community-list expanded c1 permit 3186 ^65000:4_0:110_0:108$ ip community-list expanded c1 permit 3187 ^65000:3_0:110_0:109$ ip community-list expanded c1 permit 3188 ^65000:4_0:110_0:109$ ip community-list expanded c1 permit 3189 ^65000:4_0:110_0:110$ ip community-list expanded c1 permit 3190 ^65000:4_0:111_0:56$ ip community-list expanded c1 permit 3191 ^65000:4_0:111_0:57$ ip community-list expanded c1 permit 3192 ^65000:4_0:111_0:58$ ip community-list expanded c1 permit 3193 ^65000:4_0:111_0:59$ ip community-list expanded c1 permit 3194 ^65000:4_0:111_0:60$ ip community-list expanded c1 permit 3195 ^65000:4_0:111_0:61$ ip community-list expanded c1 permit 3196 ^65000:4_0:111_0:62$ ip community-list expanded c1 permit 3197 ^65000:4_0:111_0:63$ ip community-list expanded c1 permit 3198 ^65000:4_0:111_0:64$ ip community-list expanded c1 permit 3199 ^65000:4_0:111_0:65$ ip community-list expanded c1 permit 3200 ^65000:4_0:111_0:66$ ip community-list expanded c1 permit 3201 ^65000:4_0:111_0:67$ ip community-list expanded c1 permit 3202 ^65000:4_0:111_0:68$ ip community-list expanded c1 permit 3203 ^65000:4_0:111_0:69$ ip community-list expanded c1 permit 3204 ^65000:4_0:111_0:70$ ip community-list expanded c1 permit 3205 ^65000:4_0:111_0:71$ ip community-list expanded c1 permit 3206 ^65000:4_0:111_0:72$ ip community-list expanded c1 permit 3207 ^65000:4_0:111_0:73$ ip community-list expanded c1 permit 3208 ^65000:4_0:111_0:74$ ip community-list expanded c1 permit 3209 ^65000:4_0:111_0:75$ ip community-list expanded c1 permit 3210 ^65000:4_0:111_0:76$ ip community-list expanded c1 permit 3211 ^65000:4_0:111_0:77$ ip community-list expanded c1 permit 3212 ^65000:4_0:111_0:78$ ip community-list expanded c1 permit 3213 ^65000:4_0:111_0:79$ ip community-list expanded c1 permit 3214 ^65000:4_0:111_0:80$ ip community-list expanded c1 permit 3215 ^65000:4_0:111_0:81$ ip community-list expanded c1 permit 3216 ^65000:4_0:111_0:82$ ip community-list expanded c1 permit 3217 ^65000:4_0:111_0:83$ ip community-list expanded c1 permit 3218 ^65000:4_0:111_0:84$ ip community-list expanded c1 permit 3219 ^65000:4_0:111_0:85$ ip community-list expanded c1 permit 3220 ^65000:4_0:111_0:86$ ip community-list expanded c1 permit 3221 ^65000:4_0:111_0:87$ ip community-list expanded c1 permit 3222 ^65000:4_0:111_0:88$ ip community-list expanded c1 permit 3223 ^65000:4_0:111_0:89$ ip community-list expanded c1 permit 3224 ^65000:4_0:111_0:90$ ip community-list expanded c1 permit 3225 ^65000:4_0:111_0:91$ ip community-list expanded c1 permit 3226 ^65000:4_0:111_0:92$ ip community-list expanded c1 permit 3227 ^65000:4_0:111_0:93$ ip community-list expanded c1 permit 3228 ^65000:4_0:111_0:94$ ip community-list expanded c1 permit 3229 ^65000:4_0:111_0:95$ ip community-list expanded c1 permit 3230 ^65000:4_0:111_0:96$ ip community-list expanded c1 permit 3231 ^65000:4_0:111_0:97$ ip community-list expanded c1 permit 3232 ^65000:4_0:111_0:98$ ip community-list expanded c1 permit 3233 ^65000:4_0:111_0:99$ ip community-list expanded c1 permit 3234 ^65000:4_0:111_0:100$ ip community-list expanded c1 permit 3235 ^65000:4_0:111_0:101$ ip community-list expanded c1 permit 3236 ^65000:4_0:111_0:102$ ip community-list expanded c1 permit 3237 ^65000:4_0:111_0:103$ ip community-list expanded c1 permit 3238 ^65000:4_0:111_0:104$ ip community-list expanded c1 permit 3239 ^65000:4_0:111_0:105$ ip community-list expanded c1 permit 3240 ^65000:4_0:111_0:106$ ip community-list expanded c1 permit 3241 ^65000:4_0:111_0:107$ ip community-list expanded c1 permit 3242 ^65000:4_0:111_0:108$ ip community-list expanded c1 permit 3243 ^65000:4_0:111_0:109$ ip community-list expanded c1 permit 3244 ^65000:3_0:111_0:110$ ip community-list expanded c1 permit 3245 ^65000:4_0:111_0:110$ ip community-list expanded c1 permit 3246 ^65000:4_0:111_0:111$ ip community-list expanded c1 permit 3247 ^65000:4_0:112_0:57$ ip community-list expanded c1 permit 3248 ^65000:4_0:112_0:58$ ip community-list expanded c1 permit 3249 ^65000:4_0:112_0:59$ ip community-list expanded c1 permit 3250 ^65000:4_0:112_0:60$ ip community-list expanded c1 permit 3251 ^65000:4_0:112_0:61$ ip community-list expanded c1 permit 3252 ^65000:4_0:112_0:62$ ip community-list expanded c1 permit 3253 ^65000:4_0:112_0:63$ ip community-list expanded c1 permit 3254 ^65000:4_0:112_0:64$ ip community-list expanded c1 permit 3255 ^65000:4_0:112_0:65$ ip community-list expanded c1 permit 3256 ^65000:4_0:112_0:66$ ip community-list expanded c1 permit 3257 ^65000:4_0:112_0:67$ ip community-list expanded c1 permit 3258 ^65000:4_0:112_0:68$ ip community-list expanded c1 permit 3259 ^65000:4_0:112_0:69$ ip community-list expanded c1 permit 3260 ^65000:4_0:112_0:70$ ip community-list expanded c1 permit 3261 ^65000:4_0:112_0:71$ ip community-list expanded c1 permit 3262 ^65000:4_0:112_0:72$ ip community-list expanded c1 permit 3263 ^65000:4_0:112_0:73$ ip community-list expanded c1 permit 3264 ^65000:4_0:112_0:74$ ip community-list expanded c1 permit 3265 ^65000:4_0:112_0:75$ ip community-list expanded c1 permit 3266 ^65000:4_0:112_0:76$ ip community-list expanded c1 permit 3267 ^65000:4_0:112_0:77$ ip community-list expanded c1 permit 3268 ^65000:4_0:112_0:78$ ip community-list expanded c1 permit 3269 ^65000:4_0:112_0:79$ ip community-list expanded c1 permit 3270 ^65000:4_0:112_0:80$ ip community-list expanded c1 permit 3271 ^65000:4_0:112_0:81$ ip community-list expanded c1 permit 3272 ^65000:4_0:112_0:82$ ip community-list expanded c1 permit 3273 ^65000:4_0:112_0:83$ ip community-list expanded c1 permit 3274 ^65000:4_0:112_0:84$ ip community-list expanded c1 permit 3275 ^65000:4_0:112_0:85$ ip community-list expanded c1 permit 3276 ^65000:4_0:112_0:86$ ip community-list expanded c1 permit 3277 ^65000:4_0:112_0:87$ ip community-list expanded c1 permit 3278 ^65000:4_0:112_0:88$ ip community-list expanded c1 permit 3279 ^65000:4_0:112_0:89$ ip community-list expanded c1 permit 3280 ^65000:4_0:112_0:90$ ip community-list expanded c1 permit 3281 ^65000:4_0:112_0:91$ ip community-list expanded c1 permit 3282 ^65000:4_0:112_0:92$ ip community-list expanded c1 permit 3283 ^65000:4_0:112_0:93$ ip community-list expanded c1 permit 3284 ^65000:4_0:112_0:94$ ip community-list expanded c1 permit 3285 ^65000:4_0:112_0:95$ ip community-list expanded c1 permit 3286 ^65000:4_0:112_0:96$ ip community-list expanded c1 permit 3287 ^65000:4_0:112_0:97$ ip community-list expanded c1 permit 3288 ^65000:4_0:112_0:98$ ip community-list expanded c1 permit 3289 ^65000:4_0:112_0:99$ ip community-list expanded c1 permit 3290 ^65000:4_0:112_0:100$ ip community-list expanded c1 permit 3291 ^65000:4_0:112_0:101$ ip community-list expanded c1 permit 3292 ^65000:4_0:112_0:102$ ip community-list expanded c1 permit 3293 ^65000:4_0:112_0:103$ ip community-list expanded c1 permit 3294 ^65000:4_0:112_0:104$ ip community-list expanded c1 permit 3295 ^65000:4_0:112_0:105$ ip community-list expanded c1 permit 3296 ^65000:4_0:112_0:106$ ip community-list expanded c1 permit 3297 ^65000:4_0:112_0:107$ ip community-list expanded c1 permit 3298 ^65000:4_0:112_0:108$ ip community-list expanded c1 permit 3299 ^65000:4_0:112_0:109$ ip community-list expanded c1 permit 3300 ^65000:4_0:112_0:110$ ip community-list expanded c1 permit 3301 ^65000:3_0:112_0:111$ ip community-list expanded c1 permit 3302 ^65000:4_0:112_0:111$ ip community-list expanded c1 permit 3303 ^65000:4_0:112_0:112$ ip community-list expanded c1 permit 3304 ^65000:4_0:113_0:57$ ip community-list expanded c1 permit 3305 ^65000:4_0:113_0:58$ ip community-list expanded c1 permit 3306 ^65000:4_0:113_0:59$ ip community-list expanded c1 permit 3307 ^65000:4_0:113_0:60$ ip community-list expanded c1 permit 3308 ^65000:4_0:113_0:61$ ip community-list expanded c1 permit 3309 ^65000:4_0:113_0:62$ ip community-list expanded c1 permit 3310 ^65000:4_0:113_0:63$ ip community-list expanded c1 permit 3311 ^65000:4_0:113_0:64$ ip community-list expanded c1 permit 3312 ^65000:4_0:113_0:65$ ip community-list expanded c1 permit 3313 ^65000:4_0:113_0:66$ ip community-list expanded c1 permit 3314 ^65000:4_0:113_0:67$ ip community-list expanded c1 permit 3315 ^65000:4_0:113_0:68$ ip community-list expanded c1 permit 3316 ^65000:4_0:113_0:69$ ip community-list expanded c1 permit 3317 ^65000:4_0:113_0:70$ ip community-list expanded c1 permit 3318 ^65000:4_0:113_0:71$ ip community-list expanded c1 permit 3319 ^65000:4_0:113_0:72$ ip community-list expanded c1 permit 3320 ^65000:4_0:113_0:73$ ip community-list expanded c1 permit 3321 ^65000:4_0:113_0:74$ ip community-list expanded c1 permit 3322 ^65000:4_0:113_0:75$ ip community-list expanded c1 permit 3323 ^65000:4_0:113_0:76$ ip community-list expanded c1 permit 3324 ^65000:4_0:113_0:77$ ip community-list expanded c1 permit 3325 ^65000:4_0:113_0:78$ ip community-list expanded c1 permit 3326 ^65000:4_0:113_0:79$ ip community-list expanded c1 permit 3327 ^65000:4_0:113_0:80$ ip community-list expanded c1 permit 3328 ^65000:4_0:113_0:81$ ip community-list expanded c1 permit 3329 ^65000:4_0:113_0:82$ ip community-list expanded c1 permit 3330 ^65000:4_0:113_0:83$ ip community-list expanded c1 permit 3331 ^65000:4_0:113_0:84$ ip community-list expanded c1 permit 3332 ^65000:4_0:113_0:85$ ip community-list expanded c1 permit 3333 ^65000:4_0:113_0:86$ ip community-list expanded c1 permit 3334 ^65000:4_0:113_0:87$ ip community-list expanded c1 permit 3335 ^65000:4_0:113_0:88$ ip community-list expanded c1 permit 3336 ^65000:4_0:113_0:89$ ip community-list expanded c1 permit 3337 ^65000:4_0:113_0:90$ ip community-list expanded c1 permit 3338 ^65000:4_0:113_0:91$ ip community-list expanded c1 permit 3339 ^65000:4_0:113_0:92$ ip community-list expanded c1 permit 3340 ^65000:4_0:113_0:93$ ip community-list expanded c1 permit 3341 ^65000:4_0:113_0:94$ ip community-list expanded c1 permit 3342 ^65000:4_0:113_0:95$ ip community-list expanded c1 permit 3343 ^65000:4_0:113_0:96$ ip community-list expanded c1 permit 3344 ^65000:4_0:113_0:97$ ip community-list expanded c1 permit 3345 ^65000:4_0:113_0:98$ ip community-list expanded c1 permit 3346 ^65000:4_0:113_0:99$ ip community-list expanded c1 permit 3347 ^65000:4_0:113_0:100$ ip community-list expanded c1 permit 3348 ^65000:4_0:113_0:101$ ip community-list expanded c1 permit 3349 ^65000:4_0:113_0:102$ ip community-list expanded c1 permit 3350 ^65000:4_0:113_0:103$ ip community-list expanded c1 permit 3351 ^65000:4_0:113_0:104$ ip community-list expanded c1 permit 3352 ^65000:4_0:113_0:105$ ip community-list expanded c1 permit 3353 ^65000:4_0:113_0:106$ ip community-list expanded c1 permit 3354 ^65000:4_0:113_0:107$ ip community-list expanded c1 permit 3355 ^65000:4_0:113_0:108$ ip community-list expanded c1 permit 3356 ^65000:4_0:113_0:109$ ip community-list expanded c1 permit 3357 ^65000:4_0:113_0:110$ ip community-list expanded c1 permit 3358 ^65000:4_0:113_0:111$ ip community-list expanded c1 permit 3359 ^65000:3_0:113_0:112$ ip community-list expanded c1 permit 3360 ^65000:4_0:113_0:112$ ip community-list expanded c1 permit 3361 ^65000:4_0:113_0:113$ ip community-list expanded c1 permit 3362 ^65000:4_0:114_0:58$ ip community-list expanded c1 permit 3363 ^65000:4_0:114_0:59$ ip community-list expanded c1 permit 3364 ^65000:4_0:114_0:60$ ip community-list expanded c1 permit 3365 ^65000:4_0:114_0:61$ ip community-list expanded c1 permit 3366 ^65000:4_0:114_0:62$ ip community-list expanded c1 permit 3367 ^65000:4_0:114_0:63$ ip community-list expanded c1 permit 3368 ^65000:4_0:114_0:64$ ip community-list expanded c1 permit 3369 ^65000:4_0:114_0:65$ ip community-list expanded c1 permit 3370 ^65000:4_0:114_0:66$ ip community-list expanded c1 permit 3371 ^65000:4_0:114_0:67$ ip community-list expanded c1 permit 3372 ^65000:4_0:114_0:68$ ip community-list expanded c1 permit 3373 ^65000:4_0:114_0:69$ ip community-list expanded c1 permit 3374 ^65000:4_0:114_0:70$ ip community-list expanded c1 permit 3375 ^65000:4_0:114_0:71$ ip community-list expanded c1 permit 3376 ^65000:4_0:114_0:72$ ip community-list expanded c1 permit 3377 ^65000:4_0:114_0:73$ ip community-list expanded c1 permit 3378 ^65000:4_0:114_0:74$ ip community-list expanded c1 permit 3379 ^65000:4_0:114_0:75$ ip community-list expanded c1 permit 3380 ^65000:4_0:114_0:76$ ip community-list expanded c1 permit 3381 ^65000:4_0:114_0:77$ ip community-list expanded c1 permit 3382 ^65000:4_0:114_0:78$ ip community-list expanded c1 permit 3383 ^65000:4_0:114_0:79$ ip community-list expanded c1 permit 3384 ^65000:4_0:114_0:80$ ip community-list expanded c1 permit 3385 ^65000:4_0:114_0:81$ ip community-list expanded c1 permit 3386 ^65000:4_0:114_0:82$ ip community-list expanded c1 permit 3387 ^65000:4_0:114_0:83$ ip community-list expanded c1 permit 3388 ^65000:4_0:114_0:84$ ip community-list expanded c1 permit 3389 ^65000:4_0:114_0:85$ ip community-list expanded c1 permit 3390 ^65000:4_0:114_0:86$ ip community-list expanded c1 permit 3391 ^65000:4_0:114_0:87$ ip community-list expanded c1 permit 3392 ^65000:4_0:114_0:88$ ip community-list expanded c1 permit 3393 ^65000:4_0:114_0:89$ ip community-list expanded c1 permit 3394 ^65000:4_0:114_0:90$ ip community-list expanded c1 permit 3395 ^65000:4_0:114_0:91$ ip community-list expanded c1 permit 3396 ^65000:4_0:114_0:92$ ip community-list expanded c1 permit 3397 ^65000:4_0:114_0:93$ ip community-list expanded c1 permit 3398 ^65000:4_0:114_0:94$ ip community-list expanded c1 permit 3399 ^65000:4_0:114_0:95$ ip community-list expanded c1 permit 3400 ^65000:4_0:114_0:96$ ip community-list expanded c1 permit 3401 ^65000:4_0:114_0:97$ ip community-list expanded c1 permit 3402 ^65000:4_0:114_0:98$ ip community-list expanded c1 permit 3403 ^65000:4_0:114_0:99$ ip community-list expanded c1 permit 3404 ^65000:4_0:114_0:100$ ip community-list expanded c1 permit 3405 ^65000:4_0:114_0:101$ ip community-list expanded c1 permit 3406 ^65000:4_0:114_0:102$ ip community-list expanded c1 permit 3407 ^65000:4_0:114_0:103$ ip community-list expanded c1 permit 3408 ^65000:4_0:114_0:104$ ip community-list expanded c1 permit 3409 ^65000:4_0:114_0:105$ ip community-list expanded c1 permit 3410 ^65000:4_0:114_0:106$ ip community-list expanded c1 permit 3411 ^65000:4_0:114_0:107$ ip community-list expanded c1 permit 3412 ^65000:4_0:114_0:108$ ip community-list expanded c1 permit 3413 ^65000:4_0:114_0:109$ ip community-list expanded c1 permit 3414 ^65000:4_0:114_0:110$ ip community-list expanded c1 permit 3415 ^65000:4_0:114_0:111$ ip community-list expanded c1 permit 3416 ^65000:4_0:114_0:112$ ip community-list expanded c1 permit 3417 ^65000:3_0:114_0:113$ ip community-list expanded c1 permit 3418 ^65000:4_0:114_0:113$ ip community-list expanded c1 permit 3419 ^65000:4_0:114_0:114$ ip community-list expanded c1 permit 3420 ^65000:4_0:115_0:58$ ip community-list expanded c1 permit 3421 ^65000:4_0:115_0:59$ ip community-list expanded c1 permit 3422 ^65000:4_0:115_0:60$ ip community-list expanded c1 permit 3423 ^65000:4_0:115_0:61$ ip community-list expanded c1 permit 3424 ^65000:4_0:115_0:62$ ip community-list expanded c1 permit 3425 ^65000:4_0:115_0:63$ ip community-list expanded c1 permit 3426 ^65000:4_0:115_0:64$ ip community-list expanded c1 permit 3427 ^65000:4_0:115_0:65$ ip community-list expanded c1 permit 3428 ^65000:4_0:115_0:66$ ip community-list expanded c1 permit 3429 ^65000:4_0:115_0:67$ ip community-list expanded c1 permit 3430 ^65000:4_0:115_0:68$ ip community-list expanded c1 permit 3431 ^65000:4_0:115_0:69$ ip community-list expanded c1 permit 3432 ^65000:4_0:115_0:70$ ip community-list expanded c1 permit 3433 ^65000:4_0:115_0:71$ ip community-list expanded c1 permit 3434 ^65000:4_0:115_0:72$ ip community-list expanded c1 permit 3435 ^65000:4_0:115_0:73$ ip community-list expanded c1 permit 3436 ^65000:4_0:115_0:74$ ip community-list expanded c1 permit 3437 ^65000:4_0:115_0:75$ ip community-list expanded c1 permit 3438 ^65000:4_0:115_0:76$ ip community-list expanded c1 permit 3439 ^65000:4_0:115_0:77$ ip community-list expanded c1 permit 3440 ^65000:4_0:115_0:78$ ip community-list expanded c1 permit 3441 ^65000:4_0:115_0:79$ ip community-list expanded c1 permit 3442 ^65000:4_0:115_0:80$ ip community-list expanded c1 permit 3443 ^65000:4_0:115_0:81$ ip community-list expanded c1 permit 3444 ^65000:4_0:115_0:82$ ip community-list expanded c1 permit 3445 ^65000:4_0:115_0:83$ ip community-list expanded c1 permit 3446 ^65000:4_0:115_0:84$ ip community-list expanded c1 permit 3447 ^65000:4_0:115_0:85$ ip community-list expanded c1 permit 3448 ^65000:4_0:115_0:86$ ip community-list expanded c1 permit 3449 ^65000:4_0:115_0:87$ ip community-list expanded c1 permit 3450 ^65000:4_0:115_0:88$ ip community-list expanded c1 permit 3451 ^65000:4_0:115_0:89$ ip community-list expanded c1 permit 3452 ^65000:4_0:115_0:90$ ip community-list expanded c1 permit 3453 ^65000:4_0:115_0:91$ ip community-list expanded c1 permit 3454 ^65000:4_0:115_0:92$ ip community-list expanded c1 permit 3455 ^65000:4_0:115_0:93$ ip community-list expanded c1 permit 3456 ^65000:4_0:115_0:94$ ip community-list expanded c1 permit 3457 ^65000:4_0:115_0:95$ ip community-list expanded c1 permit 3458 ^65000:4_0:115_0:96$ ip community-list expanded c1 permit 3459 ^65000:4_0:115_0:97$ ip community-list expanded c1 permit 3460 ^65000:4_0:115_0:98$ ip community-list expanded c1 permit 3461 ^65000:4_0:115_0:99$ ip community-list expanded c1 permit 3462 ^65000:4_0:115_0:100$ ip community-list expanded c1 permit 3463 ^65000:4_0:115_0:101$ ip community-list expanded c1 permit 3464 ^65000:4_0:115_0:102$ ip community-list expanded c1 permit 3465 ^65000:4_0:115_0:103$ ip community-list expanded c1 permit 3466 ^65000:4_0:115_0:104$ ip community-list expanded c1 permit 3467 ^65000:4_0:115_0:105$ ip community-list expanded c1 permit 3468 ^65000:4_0:115_0:106$ ip community-list expanded c1 permit 3469 ^65000:4_0:115_0:107$ ip community-list expanded c1 permit 3470 ^65000:4_0:115_0:108$ ip community-list expanded c1 permit 3471 ^65000:4_0:115_0:109$ ip community-list expanded c1 permit 3472 ^65000:4_0:115_0:110$ ip community-list expanded c1 permit 3473 ^65000:4_0:115_0:111$ ip community-list expanded c1 permit 3474 ^65000:4_0:115_0:112$ ip community-list expanded c1 permit 3475 ^65000:4_0:115_0:113$ ip community-list expanded c1 permit 3476 ^65000:3_0:115_0:114$ ip community-list expanded c1 permit 3477 ^65000:4_0:115_0:114$ ip community-list expanded c1 permit 3478 ^65000:4_0:115_0:115$ ip community-list expanded c1 permit 3479 ^65000:4_0:116_0:59$ ip community-list expanded c1 permit 3480 ^65000:4_0:116_0:60$ ip community-list expanded c1 permit 3481 ^65000:4_0:116_0:61$ ip community-list expanded c1 permit 3482 ^65000:4_0:116_0:62$ ip community-list expanded c1 permit 3483 ^65000:4_0:116_0:63$ ip community-list expanded c1 permit 3484 ^65000:4_0:116_0:64$ ip community-list expanded c1 permit 3485 ^65000:4_0:116_0:65$ ip community-list expanded c1 permit 3486 ^65000:4_0:116_0:66$ ip community-list expanded c1 permit 3487 ^65000:4_0:116_0:67$ ip community-list expanded c1 permit 3488 ^65000:4_0:116_0:68$ ip community-list expanded c1 permit 3489 ^65000:4_0:116_0:69$ ip community-list expanded c1 permit 3490 ^65000:4_0:116_0:70$ ip community-list expanded c1 permit 3491 ^65000:4_0:116_0:71$ ip community-list expanded c1 permit 3492 ^65000:4_0:116_0:72$ ip community-list expanded c1 permit 3493 ^65000:4_0:116_0:73$ ip community-list expanded c1 permit 3494 ^65000:4_0:116_0:74$ ip community-list expanded c1 permit 3495 ^65000:4_0:116_0:75$ ip community-list expanded c1 permit 3496 ^65000:4_0:116_0:76$ ip community-list expanded c1 permit 3497 ^65000:4_0:116_0:77$ ip community-list expanded c1 permit 3498 ^65000:4_0:116_0:78$ ip community-list expanded c1 permit 3499 ^65000:4_0:116_0:79$ ip community-list expanded c1 permit 3500 ^65000:4_0:116_0:80$ ip community-list expanded c1 permit 3501 ^65000:4_0:116_0:81$ ip community-list expanded c1 permit 3502 ^65000:4_0:116_0:82$ ip community-list expanded c1 permit 3503 ^65000:4_0:116_0:83$ ip community-list expanded c1 permit 3504 ^65000:4_0:116_0:84$ ip community-list expanded c1 permit 3505 ^65000:4_0:116_0:85$ ip community-list expanded c1 permit 3506 ^65000:4_0:116_0:86$ ip community-list expanded c1 permit 3507 ^65000:4_0:116_0:87$ ip community-list expanded c1 permit 3508 ^65000:4_0:116_0:88$ ip community-list expanded c1 permit 3509 ^65000:4_0:116_0:89$ ip community-list expanded c1 permit 3510 ^65000:4_0:116_0:90$ ip community-list expanded c1 permit 3511 ^65000:4_0:116_0:91$ ip community-list expanded c1 permit 3512 ^65000:4_0:116_0:92$ ip community-list expanded c1 permit 3513 ^65000:4_0:116_0:93$ ip community-list expanded c1 permit 3514 ^65000:4_0:116_0:94$ ip community-list expanded c1 permit 3515 ^65000:4_0:116_0:95$ ip community-list expanded c1 permit 3516 ^65000:4_0:116_0:96$ ip community-list expanded c1 permit 3517 ^65000:4_0:116_0:97$ ip community-list expanded c1 permit 3518 ^65000:4_0:116_0:98$ ip community-list expanded c1 permit 3519 ^65000:4_0:116_0:99$ ip community-list expanded c1 permit 3520 ^65000:4_0:116_0:100$ ip community-list expanded c1 permit 3521 ^65000:4_0:116_0:101$ ip community-list expanded c1 permit 3522 ^65000:4_0:116_0:102$ ip community-list expanded c1 permit 3523 ^65000:4_0:116_0:103$ ip community-list expanded c1 permit 3524 ^65000:4_0:116_0:104$ ip community-list expanded c1 permit 3525 ^65000:4_0:116_0:105$ ip community-list expanded c1 permit 3526 ^65000:4_0:116_0:106$ ip community-list expanded c1 permit 3527 ^65000:4_0:116_0:107$ ip community-list expanded c1 permit 3528 ^65000:4_0:116_0:108$ ip community-list expanded c1 permit 3529 ^65000:4_0:116_0:109$ ip community-list expanded c1 permit 3530 ^65000:4_0:116_0:110$ ip community-list expanded c1 permit 3531 ^65000:4_0:116_0:111$ ip community-list expanded c1 permit 3532 ^65000:4_0:116_0:112$ ip community-list expanded c1 permit 3533 ^65000:4_0:116_0:113$ ip community-list expanded c1 permit 3534 ^65000:4_0:116_0:114$ ip community-list expanded c1 permit 3535 ^65000:3_0:116_0:115$ ip community-list expanded c1 permit 3536 ^65000:4_0:116_0:115$ ip community-list expanded c1 permit 3537 ^65000:4_0:116_0:116$ ip community-list expanded c1 permit 3538 ^65000:4_0:117_0:59$ ip community-list expanded c1 permit 3539 ^65000:4_0:117_0:60$ ip community-list expanded c1 permit 3540 ^65000:4_0:117_0:61$ ip community-list expanded c1 permit 3541 ^65000:4_0:117_0:62$ ip community-list expanded c1 permit 3542 ^65000:4_0:117_0:63$ ip community-list expanded c1 permit 3543 ^65000:4_0:117_0:64$ ip community-list expanded c1 permit 3544 ^65000:4_0:117_0:65$ ip community-list expanded c1 permit 3545 ^65000:4_0:117_0:66$ ip community-list expanded c1 permit 3546 ^65000:4_0:117_0:67$ ip community-list expanded c1 permit 3547 ^65000:4_0:117_0:68$ ip community-list expanded c1 permit 3548 ^65000:4_0:117_0:69$ ip community-list expanded c1 permit 3549 ^65000:4_0:117_0:70$ ip community-list expanded c1 permit 3550 ^65000:4_0:117_0:71$ ip community-list expanded c1 permit 3551 ^65000:4_0:117_0:72$ ip community-list expanded c1 permit 3552 ^65000:4_0:117_0:73$ ip community-list expanded c1 permit 3553 ^65000:4_0:117_0:74$ ip community-list expanded c1 permit 3554 ^65000:4_0:117_0:75$ ip community-list expanded c1 permit 3555 ^65000:4_0:117_0:76$ ip community-list expanded c1 permit 3556 ^65000:4_0:117_0:77$ ip community-list expanded c1 permit 3557 ^65000:4_0:117_0:78$ ip community-list expanded c1 permit 3558 ^65000:4_0:117_0:79$ ip community-list expanded c1 permit 3559 ^65000:4_0:117_0:80$ ip community-list expanded c1 permit 3560 ^65000:4_0:117_0:81$ ip community-list expanded c1 permit 3561 ^65000:4_0:117_0:82$ ip community-list expanded c1 permit 3562 ^65000:4_0:117_0:83$ ip community-list expanded c1 permit 3563 ^65000:4_0:117_0:84$ ip community-list expanded c1 permit 3564 ^65000:4_0:117_0:85$ ip community-list expanded c1 permit 3565 ^65000:4_0:117_0:86$ ip community-list expanded c1 permit 3566 ^65000:4_0:117_0:87$ ip community-list expanded c1 permit 3567 ^65000:4_0:117_0:88$ ip community-list expanded c1 permit 3568 ^65000:4_0:117_0:89$ ip community-list expanded c1 permit 3569 ^65000:4_0:117_0:90$ ip community-list expanded c1 permit 3570 ^65000:4_0:117_0:91$ ip community-list expanded c1 permit 3571 ^65000:4_0:117_0:92$ ip community-list expanded c1 permit 3572 ^65000:4_0:117_0:93$ ip community-list expanded c1 permit 3573 ^65000:4_0:117_0:94$ ip community-list expanded c1 permit 3574 ^65000:4_0:117_0:95$ ip community-list expanded c1 permit 3575 ^65000:4_0:117_0:96$ ip community-list expanded c1 permit 3576 ^65000:4_0:117_0:97$ ip community-list expanded c1 permit 3577 ^65000:4_0:117_0:98$ ip community-list expanded c1 permit 3578 ^65000:4_0:117_0:99$ ip community-list expanded c1 permit 3579 ^65000:4_0:117_0:100$ ip community-list expanded c1 permit 3580 ^65000:4_0:117_0:101$ ip community-list expanded c1 permit 3581 ^65000:4_0:117_0:102$ ip community-list expanded c1 permit 3582 ^65000:4_0:117_0:103$ ip community-list expanded c1 permit 3583 ^65000:4_0:117_0:104$ ip community-list expanded c1 permit 3584 ^65000:4_0:117_0:105$ ip community-list expanded c1 permit 3585 ^65000:4_0:117_0:106$ ip community-list expanded c1 permit 3586 ^65000:4_0:117_0:107$ ip community-list expanded c1 permit 3587 ^65000:4_0:117_0:108$ ip community-list expanded c1 permit 3588 ^65000:4_0:117_0:109$ ip community-list expanded c1 permit 3589 ^65000:4_0:117_0:110$ ip community-list expanded c1 permit 3590 ^65000:4_0:117_0:111$ ip community-list expanded c1 permit 3591 ^65000:4_0:117_0:112$ ip community-list expanded c1 permit 3592 ^65000:4_0:117_0:113$ ip community-list expanded c1 permit 3593 ^65000:4_0:117_0:114$ ip community-list expanded c1 permit 3594 ^65000:4_0:117_0:115$ ip community-list expanded c1 permit 3595 ^65000:3_0:117_0:116$ ip community-list expanded c1 permit 3596 ^65000:4_0:117_0:116$ ip community-list expanded c1 permit 3597 ^65000:4_0:117_0:117$ ip community-list expanded c1 permit 3598 ^65000:4_0:118_0:60$ ip community-list expanded c1 permit 3599 ^65000:4_0:118_0:61$ ip community-list expanded c1 permit 3600 ^65000:4_0:118_0:62$ ip community-list expanded c1 permit 3601 ^65000:4_0:118_0:63$ ip community-list expanded c1 permit 3602 ^65000:4_0:118_0:64$ ip community-list expanded c1 permit 3603 ^65000:4_0:118_0:65$ ip community-list expanded c1 permit 3604 ^65000:4_0:118_0:66$ ip community-list expanded c1 permit 3605 ^65000:4_0:118_0:67$ ip community-list expanded c1 permit 3606 ^65000:4_0:118_0:68$ ip community-list expanded c1 permit 3607 ^65000:4_0:118_0:69$ ip community-list expanded c1 permit 3608 ^65000:4_0:118_0:70$ ip community-list expanded c1 permit 3609 ^65000:4_0:118_0:71$ ip community-list expanded c1 permit 3610 ^65000:4_0:118_0:72$ ip community-list expanded c1 permit 3611 ^65000:4_0:118_0:73$ ip community-list expanded c1 permit 3612 ^65000:4_0:118_0:74$ ip community-list expanded c1 permit 3613 ^65000:4_0:118_0:75$ ip community-list expanded c1 permit 3614 ^65000:4_0:118_0:76$ ip community-list expanded c1 permit 3615 ^65000:4_0:118_0:77$ ip community-list expanded c1 permit 3616 ^65000:4_0:118_0:78$ ip community-list expanded c1 permit 3617 ^65000:4_0:118_0:79$ ip community-list expanded c1 permit 3618 ^65000:4_0:118_0:80$ ip community-list expanded c1 permit 3619 ^65000:4_0:118_0:81$ ip community-list expanded c1 permit 3620 ^65000:4_0:118_0:82$ ip community-list expanded c1 permit 3621 ^65000:4_0:118_0:83$ ip community-list expanded c1 permit 3622 ^65000:4_0:118_0:84$ ip community-list expanded c1 permit 3623 ^65000:4_0:118_0:85$ ip community-list expanded c1 permit 3624 ^65000:4_0:118_0:86$ ip community-list expanded c1 permit 3625 ^65000:4_0:118_0:87$ ip community-list expanded c1 permit 3626 ^65000:4_0:118_0:88$ ip community-list expanded c1 permit 3627 ^65000:4_0:118_0:89$ ip community-list expanded c1 permit 3628 ^65000:4_0:118_0:90$ ip community-list expanded c1 permit 3629 ^65000:4_0:118_0:91$ ip community-list expanded c1 permit 3630 ^65000:4_0:118_0:92$ ip community-list expanded c1 permit 3631 ^65000:4_0:118_0:93$ ip community-list expanded c1 permit 3632 ^65000:4_0:118_0:94$ ip community-list expanded c1 permit 3633 ^65000:4_0:118_0:95$ ip community-list expanded c1 permit 3634 ^65000:4_0:118_0:96$ ip community-list expanded c1 permit 3635 ^65000:4_0:118_0:97$ ip community-list expanded c1 permit 3636 ^65000:4_0:118_0:98$ ip community-list expanded c1 permit 3637 ^65000:4_0:118_0:99$ ip community-list expanded c1 permit 3638 ^65000:4_0:118_0:100$ ip community-list expanded c1 permit 3639 ^65000:4_0:118_0:101$ ip community-list expanded c1 permit 3640 ^65000:4_0:118_0:102$ ip community-list expanded c1 permit 3641 ^65000:4_0:118_0:103$ ip community-list expanded c1 permit 3642 ^65000:4_0:118_0:104$ ip community-list expanded c1 permit 3643 ^65000:4_0:118_0:105$ ip community-list expanded c1 permit 3644 ^65000:4_0:118_0:106$ ip community-list expanded c1 permit 3645 ^65000:4_0:118_0:107$ ip community-list expanded c1 permit 3646 ^65000:4_0:118_0:108$ ip community-list expanded c1 permit 3647 ^65000:4_0:118_0:109$ ip community-list expanded c1 permit 3648 ^65000:4_0:118_0:110$ ip community-list expanded c1 permit 3649 ^65000:4_0:118_0:111$ ip community-list expanded c1 permit 3650 ^65000:4_0:118_0:112$ ip community-list expanded c1 permit 3651 ^65000:4_0:118_0:113$ ip community-list expanded c1 permit 3652 ^65000:4_0:118_0:114$ ip community-list expanded c1 permit 3653 ^65000:4_0:118_0:115$ ip community-list expanded c1 permit 3654 ^65000:4_0:118_0:116$ ip community-list expanded c1 permit 3655 ^65000:3_0:118_0:117$ ip community-list expanded c1 permit 3656 ^65000:4_0:118_0:117$ ip community-list expanded c1 permit 3657 ^65000:4_0:118_0:118$ ip community-list expanded c1 permit 3658 ^65000:4_0:119_0:60$ ip community-list expanded c1 permit 3659 ^65000:4_0:119_0:61$ ip community-list expanded c1 permit 3660 ^65000:4_0:119_0:62$ ip community-list expanded c1 permit 3661 ^65000:4_0:119_0:63$ ip community-list expanded c1 permit 3662 ^65000:4_0:119_0:64$ ip community-list expanded c1 permit 3663 ^65000:4_0:119_0:65$ ip community-list expanded c1 permit 3664 ^65000:4_0:119_0:66$ ip community-list expanded c1 permit 3665 ^65000:4_0:119_0:67$ ip community-list expanded c1 permit 3666 ^65000:4_0:119_0:68$ ip community-list expanded c1 permit 3667 ^65000:4_0:119_0:69$ ip community-list expanded c1 permit 3668 ^65000:4_0:119_0:70$ ip community-list expanded c1 permit 3669 ^65000:4_0:119_0:71$ ip community-list expanded c1 permit 3670 ^65000:4_0:119_0:72$ ip community-list expanded c1 permit 3671 ^65000:4_0:119_0:73$ ip community-list expanded c1 permit 3672 ^65000:4_0:119_0:74$ ip community-list expanded c1 permit 3673 ^65000:4_0:119_0:75$ ip community-list expanded c1 permit 3674 ^65000:4_0:119_0:76$ ip community-list expanded c1 permit 3675 ^65000:4_0:119_0:77$ ip community-list expanded c1 permit 3676 ^65000:4_0:119_0:78$ ip community-list expanded c1 permit 3677 ^65000:4_0:119_0:79$ ip community-list expanded c1 permit 3678 ^65000:4_0:119_0:80$ ip community-list expanded c1 permit 3679 ^65000:4_0:119_0:81$ ip community-list expanded c1 permit 3680 ^65000:4_0:119_0:82$ ip community-list expanded c1 permit 3681 ^65000:4_0:119_0:83$ ip community-list expanded c1 permit 3682 ^65000:4_0:119_0:84$ ip community-list expanded c1 permit 3683 ^65000:4_0:119_0:85$ ip community-list expanded c1 permit 3684 ^65000:4_0:119_0:86$ ip community-list expanded c1 permit 3685 ^65000:4_0:119_0:87$ ip community-list expanded c1 permit 3686 ^65000:4_0:119_0:88$ ip community-list expanded c1 permit 3687 ^65000:4_0:119_0:89$ ip community-list expanded c1 permit 3688 ^65000:4_0:119_0:90$ ip community-list expanded c1 permit 3689 ^65000:4_0:119_0:91$ ip community-list expanded c1 permit 3690 ^65000:4_0:119_0:92$ ip community-list expanded c1 permit 3691 ^65000:4_0:119_0:93$ ip community-list expanded c1 permit 3692 ^65000:4_0:119_0:94$ ip community-list expanded c1 permit 3693 ^65000:4_0:119_0:95$ ip community-list expanded c1 permit 3694 ^65000:4_0:119_0:96$ ip community-list expanded c1 permit 3695 ^65000:4_0:119_0:97$ ip community-list expanded c1 permit 3696 ^65000:4_0:119_0:98$ ip community-list expanded c1 permit 3697 ^65000:4_0:119_0:99$ ip community-list expanded c1 permit 3698 ^65000:4_0:119_0:100$ ip community-list expanded c1 permit 3699 ^65000:4_0:119_0:101$ ip community-list expanded c1 permit 3700 ^65000:4_0:119_0:102$ ip community-list expanded c1 permit 3701 ^65000:4_0:119_0:103$ ip community-list expanded c1 permit 3702 ^65000:4_0:119_0:104$ ip community-list expanded c1 permit 3703 ^65000:4_0:119_0:105$ ip community-list expanded c1 permit 3704 ^65000:4_0:119_0:106$ ip community-list expanded c1 permit 3705 ^65000:4_0:119_0:107$ ip community-list expanded c1 permit 3706 ^65000:4_0:119_0:108$ ip community-list expanded c1 permit 3707 ^65000:4_0:119_0:109$ ip community-list expanded c1 permit 3708 ^65000:4_0:119_0:110$ ip community-list expanded c1 permit 3709 ^65000:4_0:119_0:111$ ip community-list expanded c1 permit 3710 ^65000:4_0:119_0:112$ ip community-list expanded c1 permit 3711 ^65000:4_0:119_0:113$ ip community-list expanded c1 permit 3712 ^65000:4_0:119_0:114$ ip community-list expanded c1 permit 3713 ^65000:4_0:119_0:115$ ip community-list expanded c1 permit 3714 ^65000:4_0:119_0:116$ ip community-list expanded c1 permit 3715 ^65000:4_0:119_0:117$ ip community-list expanded c1 permit 3716 ^65000:3_0:119_0:118$ ip community-list expanded c1 permit 3717 ^65000:4_0:119_0:118$ ip community-list expanded c1 permit 3718 ^65000:4_0:119_0:119$ ip community-list expanded c1 permit 3719 ^65000:4_0:120_0:61$ ip community-list expanded c1 permit 3720 ^65000:4_0:120_0:62$ ip community-list expanded c1 permit 3721 ^65000:4_0:120_0:63$ ip community-list expanded c1 permit 3722 ^65000:4_0:120_0:64$ ip community-list expanded c1 permit 3723 ^65000:4_0:120_0:65$ ip community-list expanded c1 permit 3724 ^65000:4_0:120_0:66$ ip community-list expanded c1 permit 3725 ^65000:4_0:120_0:67$ ip community-list expanded c1 permit 3726 ^65000:4_0:120_0:68$ ip community-list expanded c1 permit 3727 ^65000:4_0:120_0:69$ ip community-list expanded c1 permit 3728 ^65000:4_0:120_0:70$ ip community-list expanded c1 permit 3729 ^65000:4_0:120_0:71$ ip community-list expanded c1 permit 3730 ^65000:4_0:120_0:72$ ip community-list expanded c1 permit 3731 ^65000:4_0:120_0:73$ ip community-list expanded c1 permit 3732 ^65000:4_0:120_0:74$ ip community-list expanded c1 permit 3733 ^65000:4_0:120_0:75$ ip community-list expanded c1 permit 3734 ^65000:4_0:120_0:76$ ip community-list expanded c1 permit 3735 ^65000:4_0:120_0:77$ ip community-list expanded c1 permit 3736 ^65000:4_0:120_0:78$ ip community-list expanded c1 permit 3737 ^65000:4_0:120_0:79$ ip community-list expanded c1 permit 3738 ^65000:4_0:120_0:80$ ip community-list expanded c1 permit 3739 ^65000:4_0:120_0:81$ ip community-list expanded c1 permit 3740 ^65000:4_0:120_0:82$ ip community-list expanded c1 permit 3741 ^65000:4_0:120_0:83$ ip community-list expanded c1 permit 3742 ^65000:4_0:120_0:84$ ip community-list expanded c1 permit 3743 ^65000:4_0:120_0:85$ ip community-list expanded c1 permit 3744 ^65000:4_0:120_0:86$ ip community-list expanded c1 permit 3745 ^65000:4_0:120_0:87$ ip community-list expanded c1 permit 3746 ^65000:4_0:120_0:88$ ip community-list expanded c1 permit 3747 ^65000:4_0:120_0:89$ ip community-list expanded c1 permit 3748 ^65000:4_0:120_0:90$ ip community-list expanded c1 permit 3749 ^65000:4_0:120_0:91$ ip community-list expanded c1 permit 3750 ^65000:4_0:120_0:92$ ip community-list expanded c1 permit 3751 ^65000:4_0:120_0:93$ ip community-list expanded c1 permit 3752 ^65000:4_0:120_0:94$ ip community-list expanded c1 permit 3753 ^65000:4_0:120_0:95$ ip community-list expanded c1 permit 3754 ^65000:4_0:120_0:96$ ip community-list expanded c1 permit 3755 ^65000:4_0:120_0:97$ ip community-list expanded c1 permit 3756 ^65000:4_0:120_0:98$ ip community-list expanded c1 permit 3757 ^65000:4_0:120_0:99$ ip community-list expanded c1 permit 3758 ^65000:4_0:120_0:100$ ip community-list expanded c1 permit 3759 ^65000:4_0:120_0:101$ ip community-list expanded c1 permit 3760 ^65000:4_0:120_0:102$ ip community-list expanded c1 permit 3761 ^65000:4_0:120_0:103$ ip community-list expanded c1 permit 3762 ^65000:4_0:120_0:104$ ip community-list expanded c1 permit 3763 ^65000:4_0:120_0:105$ ip community-list expanded c1 permit 3764 ^65000:4_0:120_0:106$ ip community-list expanded c1 permit 3765 ^65000:4_0:120_0:107$ ip community-list expanded c1 permit 3766 ^65000:4_0:120_0:108$ ip community-list expanded c1 permit 3767 ^65000:4_0:120_0:109$ ip community-list expanded c1 permit 3768 ^65000:4_0:120_0:110$ ip community-list expanded c1 permit 3769 ^65000:4_0:120_0:111$ ip community-list expanded c1 permit 3770 ^65000:4_0:120_0:112$ ip community-list expanded c1 permit 3771 ^65000:4_0:120_0:113$ ip community-list expanded c1 permit 3772 ^65000:4_0:120_0:114$ ip community-list expanded c1 permit 3773 ^65000:4_0:120_0:115$ ip community-list expanded c1 permit 3774 ^65000:4_0:120_0:116$ ip community-list expanded c1 permit 3775 ^65000:4_0:120_0:117$ ip community-list expanded c1 permit 3776 ^65000:4_0:120_0:118$ ip community-list expanded c1 permit 3777 ^65000:3_0:120_0:119$ ip community-list expanded c1 permit 3778 ^65000:4_0:120_0:119$ ip community-list expanded c1 permit 3779 ^65000:4_0:120_0:120$ ip community-list expanded c1 permit 3780 ^65000:4_0:121_0:61$ ip community-list expanded c1 permit 3781 ^65000:4_0:121_0:62$ ip community-list expanded c1 permit 3782 ^65000:4_0:121_0:63$ ip community-list expanded c1 permit 3783 ^65000:4_0:121_0:64$ ip community-list expanded c1 permit 3784 ^65000:4_0:121_0:65$ ip community-list expanded c1 permit 3785 ^65000:4_0:121_0:66$ ip community-list expanded c1 permit 3786 ^65000:4_0:121_0:67$ ip community-list expanded c1 permit 3787 ^65000:4_0:121_0:68$ ip community-list expanded c1 permit 3788 ^65000:4_0:121_0:69$ ip community-list expanded c1 permit 3789 ^65000:4_0:121_0:70$ ip community-list expanded c1 permit 3790 ^65000:4_0:121_0:71$ ip community-list expanded c1 permit 3791 ^65000:4_0:121_0:72$ ip community-list expanded c1 permit 3792 ^65000:4_0:121_0:73$ ip community-list expanded c1 permit 3793 ^65000:4_0:121_0:74$ ip community-list expanded c1 permit 3794 ^65000:4_0:121_0:75$ ip community-list expanded c1 permit 3795 ^65000:4_0:121_0:76$ ip community-list expanded c1 permit 3796 ^65000:4_0:121_0:77$ ip community-list expanded c1 permit 3797 ^65000:4_0:121_0:78$ ip community-list expanded c1 permit 3798 ^65000:4_0:121_0:79$ ip community-list expanded c1 permit 3799 ^65000:4_0:121_0:80$ ip community-list expanded c1 permit 3800 ^65000:4_0:121_0:81$ ip community-list expanded c1 permit 3801 ^65000:4_0:121_0:82$ ip community-list expanded c1 permit 3802 ^65000:4_0:121_0:83$ ip community-list expanded c1 permit 3803 ^65000:4_0:121_0:84$ ip community-list expanded c1 permit 3804 ^65000:4_0:121_0:85$ ip community-list expanded c1 permit 3805 ^65000:4_0:121_0:86$ ip community-list expanded c1 permit 3806 ^65000:4_0:121_0:87$ ip community-list expanded c1 permit 3807 ^65000:4_0:121_0:88$ ip community-list expanded c1 permit 3808 ^65000:4_0:121_0:89$ ip community-list expanded c1 permit 3809 ^65000:4_0:121_0:90$ ip community-list expanded c1 permit 3810 ^65000:4_0:121_0:91$ ip community-list expanded c1 permit 3811 ^65000:4_0:121_0:92$ ip community-list expanded c1 permit 3812 ^65000:4_0:121_0:93$ ip community-list expanded c1 permit 3813 ^65000:4_0:121_0:94$ ip community-list expanded c1 permit 3814 ^65000:4_0:121_0:95$ ip community-list expanded c1 permit 3815 ^65000:4_0:121_0:96$ ip community-list expanded c1 permit 3816 ^65000:4_0:121_0:97$ ip community-list expanded c1 permit 3817 ^65000:4_0:121_0:98$ ip community-list expanded c1 permit 3818 ^65000:4_0:121_0:99$ ip community-list expanded c1 permit 3819 ^65000:4_0:121_0:100$ ip community-list expanded c1 permit 3820 ^65000:4_0:121_0:101$ ip community-list expanded c1 permit 3821 ^65000:4_0:121_0:102$ ip community-list expanded c1 permit 3822 ^65000:4_0:121_0:103$ ip community-list expanded c1 permit 3823 ^65000:4_0:121_0:104$ ip community-list expanded c1 permit 3824 ^65000:4_0:121_0:105$ ip community-list expanded c1 permit 3825 ^65000:4_0:121_0:106$ ip community-list expanded c1 permit 3826 ^65000:4_0:121_0:107$ ip community-list expanded c1 permit 3827 ^65000:4_0:121_0:108$ ip community-list expanded c1 permit 3828 ^65000:4_0:121_0:109$ ip community-list expanded c1 permit 3829 ^65000:4_0:121_0:110$ ip community-list expanded c1 permit 3830 ^65000:4_0:121_0:111$ ip community-list expanded c1 permit 3831 ^65000:4_0:121_0:112$ ip community-list expanded c1 permit 3832 ^65000:4_0:121_0:113$ ip community-list expanded c1 permit 3833 ^65000:4_0:121_0:114$ ip community-list expanded c1 permit 3834 ^65000:4_0:121_0:115$ ip community-list expanded c1 permit 3835 ^65000:4_0:121_0:116$ ip community-list expanded c1 permit 3836 ^65000:4_0:121_0:117$ ip community-list expanded c1 permit 3837 ^65000:4_0:121_0:118$ ip community-list expanded c1 permit 3838 ^65000:4_0:121_0:119$ ip community-list expanded c1 permit 3839 ^65000:3_0:121_0:120$ ip community-list expanded c1 permit 3840 ^65000:4_0:121_0:120$ ip community-list expanded c1 permit 3841 ^65000:4_0:121_0:121$ ip community-list expanded c1 permit 3842 ^65000:4_0:122_0:62$ ip community-list expanded c1 permit 3843 ^65000:4_0:122_0:63$ ip community-list expanded c1 permit 3844 ^65000:4_0:122_0:64$ ip community-list expanded c1 permit 3845 ^65000:4_0:122_0:65$ ip community-list expanded c1 permit 3846 ^65000:4_0:122_0:66$ ip community-list expanded c1 permit 3847 ^65000:4_0:122_0:67$ ip community-list expanded c1 permit 3848 ^65000:4_0:122_0:68$ ip community-list expanded c1 permit 3849 ^65000:4_0:122_0:69$ ip community-list expanded c1 permit 3850 ^65000:4_0:122_0:70$ ip community-list expanded c1 permit 3851 ^65000:4_0:122_0:71$ ip community-list expanded c1 permit 3852 ^65000:4_0:122_0:72$ ip community-list expanded c1 permit 3853 ^65000:4_0:122_0:73$ ip community-list expanded c1 permit 3854 ^65000:4_0:122_0:74$ ip community-list expanded c1 permit 3855 ^65000:4_0:122_0:75$ ip community-list expanded c1 permit 3856 ^65000:4_0:122_0:76$ ip community-list expanded c1 permit 3857 ^65000:4_0:122_0:77$ ip community-list expanded c1 permit 3858 ^65000:4_0:122_0:78$ ip community-list expanded c1 permit 3859 ^65000:4_0:122_0:79$ ip community-list expanded c1 permit 3860 ^65000:4_0:122_0:80$ ip community-list expanded c1 permit 3861 ^65000:4_0:122_0:81$ ip community-list expanded c1 permit 3862 ^65000:4_0:122_0:82$ ip community-list expanded c1 permit 3863 ^65000:4_0:122_0:83$ ip community-list expanded c1 permit 3864 ^65000:4_0:122_0:84$ ip community-list expanded c1 permit 3865 ^65000:4_0:122_0:85$ ip community-list expanded c1 permit 3866 ^65000:4_0:122_0:86$ ip community-list expanded c1 permit 3867 ^65000:4_0:122_0:87$ ip community-list expanded c1 permit 3868 ^65000:4_0:122_0:88$ ip community-list expanded c1 permit 3869 ^65000:4_0:122_0:89$ ip community-list expanded c1 permit 3870 ^65000:4_0:122_0:90$ ip community-list expanded c1 permit 3871 ^65000:4_0:122_0:91$ ip community-list expanded c1 permit 3872 ^65000:4_0:122_0:92$ ip community-list expanded c1 permit 3873 ^65000:4_0:122_0:93$ ip community-list expanded c1 permit 3874 ^65000:4_0:122_0:94$ ip community-list expanded c1 permit 3875 ^65000:4_0:122_0:95$ ip community-list expanded c1 permit 3876 ^65000:4_0:122_0:96$ ip community-list expanded c1 permit 3877 ^65000:4_0:122_0:97$ ip community-list expanded c1 permit 3878 ^65000:4_0:122_0:98$ ip community-list expanded c1 permit 3879 ^65000:4_0:122_0:99$ ip community-list expanded c1 permit 3880 ^65000:4_0:122_0:100$ ip community-list expanded c1 permit 3881 ^65000:4_0:122_0:101$ ip community-list expanded c1 permit 3882 ^65000:4_0:122_0:102$ ip community-list expanded c1 permit 3883 ^65000:4_0:122_0:103$ ip community-list expanded c1 permit 3884 ^65000:4_0:122_0:104$ ip community-list expanded c1 permit 3885 ^65000:4_0:122_0:105$ ip community-list expanded c1 permit 3886 ^65000:4_0:122_0:106$ ip community-list expanded c1 permit 3887 ^65000:4_0:122_0:107$ ip community-list expanded c1 permit 3888 ^65000:4_0:122_0:108$ ip community-list expanded c1 permit 3889 ^65000:4_0:122_0:109$ ip community-list expanded c1 permit 3890 ^65000:4_0:122_0:110$ ip community-list expanded c1 permit 3891 ^65000:4_0:122_0:111$ ip community-list expanded c1 permit 3892 ^65000:4_0:122_0:112$ ip community-list expanded c1 permit 3893 ^65000:4_0:122_0:113$ ip community-list expanded c1 permit 3894 ^65000:4_0:122_0:114$ ip community-list expanded c1 permit 3895 ^65000:4_0:122_0:115$ ip community-list expanded c1 permit 3896 ^65000:4_0:122_0:116$ ip community-list expanded c1 permit 3897 ^65000:4_0:122_0:117$ ip community-list expanded c1 permit 3898 ^65000:4_0:122_0:118$ ip community-list expanded c1 permit 3899 ^65000:4_0:122_0:119$ ip community-list expanded c1 permit 3900 ^65000:4_0:122_0:120$ ip community-list expanded c1 permit 3901 ^65000:3_0:122_0:121$ ip community-list expanded c1 permit 3902 ^65000:4_0:122_0:121$ ip community-list expanded c1 permit 3903 ^65000:4_0:122_0:122$ ip community-list expanded c1 permit 3904 ^65000:4_0:123_0:62$ ip community-list expanded c1 permit 3905 ^65000:4_0:123_0:63$ ip community-list expanded c1 permit 3906 ^65000:4_0:123_0:64$ ip community-list expanded c1 permit 3907 ^65000:4_0:123_0:65$ ip community-list expanded c1 permit 3908 ^65000:4_0:123_0:66$ ip community-list expanded c1 permit 3909 ^65000:4_0:123_0:67$ ip community-list expanded c1 permit 3910 ^65000:4_0:123_0:68$ ip community-list expanded c1 permit 3911 ^65000:4_0:123_0:69$ ip community-list expanded c1 permit 3912 ^65000:4_0:123_0:70$ ip community-list expanded c1 permit 3913 ^65000:4_0:123_0:71$ ip community-list expanded c1 permit 3914 ^65000:4_0:123_0:72$ ip community-list expanded c1 permit 3915 ^65000:4_0:123_0:73$ ip community-list expanded c1 permit 3916 ^65000:4_0:123_0:74$ ip community-list expanded c1 permit 3917 ^65000:4_0:123_0:75$ ip community-list expanded c1 permit 3918 ^65000:4_0:123_0:76$ ip community-list expanded c1 permit 3919 ^65000:4_0:123_0:77$ ip community-list expanded c1 permit 3920 ^65000:4_0:123_0:78$ ip community-list expanded c1 permit 3921 ^65000:4_0:123_0:79$ ip community-list expanded c1 permit 3922 ^65000:4_0:123_0:80$ ip community-list expanded c1 permit 3923 ^65000:4_0:123_0:81$ ip community-list expanded c1 permit 3924 ^65000:4_0:123_0:82$ ip community-list expanded c1 permit 3925 ^65000:4_0:123_0:83$ ip community-list expanded c1 permit 3926 ^65000:4_0:123_0:84$ ip community-list expanded c1 permit 3927 ^65000:4_0:123_0:85$ ip community-list expanded c1 permit 3928 ^65000:4_0:123_0:86$ ip community-list expanded c1 permit 3929 ^65000:4_0:123_0:87$ ip community-list expanded c1 permit 3930 ^65000:4_0:123_0:88$ ip community-list expanded c1 permit 3931 ^65000:4_0:123_0:89$ ip community-list expanded c1 permit 3932 ^65000:4_0:123_0:90$ ip community-list expanded c1 permit 3933 ^65000:4_0:123_0:91$ ip community-list expanded c1 permit 3934 ^65000:4_0:123_0:92$ ip community-list expanded c1 permit 3935 ^65000:4_0:123_0:93$ ip community-list expanded c1 permit 3936 ^65000:4_0:123_0:94$ ip community-list expanded c1 permit 3937 ^65000:4_0:123_0:95$ ip community-list expanded c1 permit 3938 ^65000:4_0:123_0:96$ ip community-list expanded c1 permit 3939 ^65000:4_0:123_0:97$ ip community-list expanded c1 permit 3940 ^65000:4_0:123_0:98$ ip community-list expanded c1 permit 3941 ^65000:4_0:123_0:99$ ip community-list expanded c1 permit 3942 ^65000:4_0:123_0:100$ ip community-list expanded c1 permit 3943 ^65000:4_0:123_0:101$ ip community-list expanded c1 permit 3944 ^65000:4_0:123_0:102$ ip community-list expanded c1 permit 3945 ^65000:4_0:123_0:103$ ip community-list expanded c1 permit 3946 ^65000:4_0:123_0:104$ ip community-list expanded c1 permit 3947 ^65000:4_0:123_0:105$ ip community-list expanded c1 permit 3948 ^65000:4_0:123_0:106$ ip community-list expanded c1 permit 3949 ^65000:4_0:123_0:107$ ip community-list expanded c1 permit 3950 ^65000:4_0:123_0:108$ ip community-list expanded c1 permit 3951 ^65000:4_0:123_0:109$ ip community-list expanded c1 permit 3952 ^65000:4_0:123_0:110$ ip community-list expanded c1 permit 3953 ^65000:4_0:123_0:111$ ip community-list expanded c1 permit 3954 ^65000:4_0:123_0:112$ ip community-list expanded c1 permit 3955 ^65000:4_0:123_0:113$ ip community-list expanded c1 permit 3956 ^65000:4_0:123_0:114$ ip community-list expanded c1 permit 3957 ^65000:4_0:123_0:115$ ip community-list expanded c1 permit 3958 ^65000:4_0:123_0:116$ ip community-list expanded c1 permit 3959 ^65000:4_0:123_0:117$ ip community-list expanded c1 permit 3960 ^65000:4_0:123_0:118$ ip community-list expanded c1 permit 3961 ^65000:4_0:123_0:119$ ip community-list expanded c1 permit 3962 ^65000:4_0:123_0:120$ ip community-list expanded c1 permit 3963 ^65000:4_0:123_0:121$ ip community-list expanded c1 permit 3964 ^65000:3_0:123_0:122$ ip community-list expanded c1 permit 3965 ^65000:4_0:123_0:122$ ip community-list expanded c1 permit 3966 ^65000:4_0:123_0:123$ ip community-list expanded c1 permit 3967 ^65000:4_0:124_0:63$ ip community-list expanded c1 permit 3968 ^65000:4_0:124_0:64$ ip community-list expanded c1 permit 3969 ^65000:4_0:124_0:65$ ip community-list expanded c1 permit 3970 ^65000:4_0:124_0:66$ ip community-list expanded c1 permit 3971 ^65000:4_0:124_0:67$ ip community-list expanded c1 permit 3972 ^65000:4_0:124_0:68$ ip community-list expanded c1 permit 3973 ^65000:4_0:124_0:69$ ip community-list expanded c1 permit 3974 ^65000:4_0:124_0:70$ ip community-list expanded c1 permit 3975 ^65000:4_0:124_0:71$ ip community-list expanded c1 permit 3976 ^65000:4_0:124_0:72$ ip community-list expanded c1 permit 3977 ^65000:4_0:124_0:73$ ip community-list expanded c1 permit 3978 ^65000:4_0:124_0:74$ ip community-list expanded c1 permit 3979 ^65000:4_0:124_0:75$ ip community-list expanded c1 permit 3980 ^65000:4_0:124_0:76$ ip community-list expanded c1 permit 3981 ^65000:4_0:124_0:77$ ip community-list expanded c1 permit 3982 ^65000:4_0:124_0:78$ ip community-list expanded c1 permit 3983 ^65000:4_0:124_0:79$ ip community-list expanded c1 permit 3984 ^65000:4_0:124_0:80$ ip community-list expanded c1 permit 3985 ^65000:4_0:124_0:81$ ip community-list expanded c1 permit 3986 ^65000:4_0:124_0:82$ ip community-list expanded c1 permit 3987 ^65000:4_0:124_0:83$ ip community-list expanded c1 permit 3988 ^65000:4_0:124_0:84$ ip community-list expanded c1 permit 3989 ^65000:4_0:124_0:85$ ip community-list expanded c1 permit 3990 ^65000:4_0:124_0:86$ ip community-list expanded c1 permit 3991 ^65000:4_0:124_0:87$ ip community-list expanded c1 permit 3992 ^65000:4_0:124_0:88$ ip community-list expanded c1 permit 3993 ^65000:4_0:124_0:89$ ip community-list expanded c1 permit 3994 ^65000:4_0:124_0:90$ ip community-list expanded c1 permit 3995 ^65000:4_0:124_0:91$ ip community-list expanded c1 permit 3996 ^65000:4_0:124_0:92$ ip community-list expanded c1 permit 3997 ^65000:4_0:124_0:93$ ip community-list expanded c1 permit 3998 ^65000:4_0:124_0:94$ ip community-list expanded c1 permit 3999 ^65000:4_0:124_0:95$ ip community-list expanded c1 permit 4000 ^65000:4_0:124_0:96$ ip community-list expanded c1 permit 4001 ^65000:4_0:124_0:97$ ip community-list expanded c1 permit 4002 ^65000:4_0:124_0:98$ ip community-list expanded c1 permit 4003 ^65000:4_0:124_0:99$ ip community-list expanded c1 permit 4004 ^65000:4_0:124_0:100$ ip community-list expanded c1 permit 4005 ^65000:4_0:124_0:101$ ip community-list expanded c1 permit 4006 ^65000:4_0:124_0:102$ ip community-list expanded c1 permit 4007 ^65000:4_0:124_0:103$ ip community-list expanded c1 permit 4008 ^65000:4_0:124_0:104$ ip community-list expanded c1 permit 4009 ^65000:4_0:124_0:105$ ip community-list expanded c1 permit 4010 ^65000:4_0:124_0:106$ ip community-list expanded c1 permit 4011 ^65000:4_0:124_0:107$ ip community-list expanded c1 permit 4012 ^65000:4_0:124_0:108$ ip community-list expanded c1 permit 4013 ^65000:4_0:124_0:109$ ip community-list expanded c1 permit 4014 ^65000:4_0:124_0:110$ ip community-list expanded c1 permit 4015 ^65000:4_0:124_0:111$ ip community-list expanded c1 permit 4016 ^65000:4_0:124_0:112$ ip community-list expanded c1 permit 4017 ^65000:4_0:124_0:113$ ip community-list expanded c1 permit 4018 ^65000:4_0:124_0:114$ ip community-list expanded c1 permit 4019 ^65000:4_0:124_0:115$ ip community-list expanded c1 permit 4020 ^65000:4_0:124_0:116$ ip community-list expanded c1 permit 4021 ^65000:4_0:124_0:117$ ip community-list expanded c1 permit 4022 ^65000:4_0:124_0:118$ ip community-list expanded c1 permit 4023 ^65000:4_0:124_0:119$ ip community-list expanded c1 permit 4024 ^65000:4_0:124_0:120$ ip community-list expanded c1 permit 4025 ^65000:4_0:124_0:121$ ip community-list expanded c1 permit 4026 ^65000:4_0:124_0:122$ ip community-list expanded c1 permit 4027 ^65000:3_0:124_0:123$ ip community-list expanded c1 permit 4028 ^65000:4_0:124_0:123$ ip community-list expanded c1 permit 4029 ^65000:4_0:124_0:124$ ip community-list expanded c1 permit 4030 ^65000:4_0:125_0:63$ ip community-list expanded c1 permit 4031 ^65000:4_0:125_0:64$ ip community-list expanded c1 permit 4032 ^65000:4_0:125_0:65$ ip community-list expanded c1 permit 4033 ^65000:4_0:125_0:66$ ip community-list expanded c1 permit 4034 ^65000:4_0:125_0:67$ ip community-list expanded c1 permit 4035 ^65000:4_0:125_0:68$ ip community-list expanded c1 permit 4036 ^65000:4_0:125_0:69$ ip community-list expanded c1 permit 4037 ^65000:4_0:125_0:70$ ip community-list expanded c1 permit 4038 ^65000:4_0:125_0:71$ ip community-list expanded c1 permit 4039 ^65000:4_0:125_0:72$ ip community-list expanded c1 permit 4040 ^65000:4_0:125_0:73$ ip community-list expanded c1 permit 4041 ^65000:4_0:125_0:74$ ip community-list expanded c1 permit 4042 ^65000:4_0:125_0:75$ ip community-list expanded c1 permit 4043 ^65000:4_0:125_0:76$ ip community-list expanded c1 permit 4044 ^65000:4_0:125_0:77$ ip community-list expanded c1 permit 4045 ^65000:4_0:125_0:78$ ip community-list expanded c1 permit 4046 ^65000:4_0:125_0:79$ ip community-list expanded c1 permit 4047 ^65000:4_0:125_0:80$ ip community-list expanded c1 permit 4048 ^65000:4_0:125_0:81$ ip community-list expanded c1 permit 4049 ^65000:4_0:125_0:82$ ip community-list expanded c1 permit 4050 ^65000:4_0:125_0:83$ ip community-list expanded c1 permit 4051 ^65000:4_0:125_0:84$ ip community-list expanded c1 permit 4052 ^65000:4_0:125_0:85$ ip community-list expanded c1 permit 4053 ^65000:4_0:125_0:86$ ip community-list expanded c1 permit 4054 ^65000:4_0:125_0:87$ ip community-list expanded c1 permit 4055 ^65000:4_0:125_0:88$ ip community-list expanded c1 permit 4056 ^65000:4_0:125_0:89$ ip community-list expanded c1 permit 4057 ^65000:4_0:125_0:90$ ip community-list expanded c1 permit 4058 ^65000:4_0:125_0:91$ ip community-list expanded c1 permit 4059 ^65000:4_0:125_0:92$ ip community-list expanded c1 permit 4060 ^65000:4_0:125_0:93$ ip community-list expanded c1 permit 4061 ^65000:4_0:125_0:94$ ip community-list expanded c1 permit 4062 ^65000:4_0:125_0:95$ ip community-list expanded c1 permit 4063 ^65000:4_0:125_0:96$ ip community-list expanded c1 permit 4064 ^65000:4_0:125_0:97$ ip community-list expanded c1 permit 4065 ^65000:4_0:125_0:98$ ip community-list expanded c1 permit 4066 ^65000:4_0:125_0:99$ ip community-list expanded c1 permit 4067 ^65000:4_0:125_0:100$ ip community-list expanded c1 permit 4068 ^65000:4_0:125_0:101$ ip community-list expanded c1 permit 4069 ^65000:4_0:125_0:102$ ip community-list expanded c1 permit 4070 ^65000:4_0:125_0:103$ ip community-list expanded c1 permit 4071 ^65000:4_0:125_0:104$ ip community-list expanded c1 permit 4072 ^65000:4_0:125_0:105$ ip community-list expanded c1 permit 4073 ^65000:4_0:125_0:106$ ip community-list expanded c1 permit 4074 ^65000:4_0:125_0:107$ ip community-list expanded c1 permit 4075 ^65000:4_0:125_0:108$ ip community-list expanded c1 permit 4076 ^65000:4_0:125_0:109$ ip community-list expanded c1 permit 4077 ^65000:4_0:125_0:110$ ip community-list expanded c1 permit 4078 ^65000:4_0:125_0:111$ ip community-list expanded c1 permit 4079 ^65000:4_0:125_0:112$ ip community-list expanded c1 permit 4080 ^65000:4_0:125_0:113$ ip community-list expanded c1 permit 4081 ^65000:4_0:125_0:114$ ip community-list expanded c1 permit 4082 ^65000:4_0:125_0:115$ ip community-list expanded c1 permit 4083 ^65000:4_0:125_0:116$ ip community-list expanded c1 permit 4084 ^65000:4_0:125_0:117$ ip community-list expanded c1 permit 4085 ^65000:4_0:125_0:118$ ip community-list expanded c1 permit 4086 ^65000:4_0:125_0:119$ ip community-list expanded c1 permit 4087 ^65000:4_0:125_0:120$ ip community-list expanded c1 permit 4088 ^65000:4_0:125_0:121$ ip community-list expanded c1 permit 4089 ^65000:4_0:125_0:122$ ip community-list expanded c1 permit 4090 ^65000:4_0:125_0:123$ ip community-list expanded c1 permit 4091 ^65000:3_0:125_0:124$ ip community-list expanded c1 permit 4092 ^65000:4_0:125_0:124$ ip community-list expanded c1 permit 4093 ^65000:4_0:125_0:125$ ip community-list expanded c1 permit 4094 ^65000:4_0:126_0:64$ ip community-list expanded c1 permit 4095 ^65000:4_0:126_0:65$ ip community-list expanded c1 permit 4096 ^65000:4_0:126_0:66$ ip community-list expanded c1 permit 4097 ^65000:4_0:126_0:67$ ip community-list expanded c1 permit 4098 ^65000:4_0:126_0:68$ ip community-list expanded c1 permit 4099 ^65000:4_0:126_0:69$ ip community-list expanded c1 permit 4100 ^65000:4_0:126_0:70$ ip community-list expanded c1 permit 4101 ^65000:4_0:126_0:71$ ip community-list expanded c1 permit 4102 ^65000:4_0:126_0:72$ ip community-list expanded c1 permit 4103 ^65000:4_0:126_0:73$ ip community-list expanded c1 permit 4104 ^65000:4_0:126_0:74$ ip community-list expanded c1 permit 4105 ^65000:4_0:126_0:75$ ip community-list expanded c1 permit 4106 ^65000:4_0:126_0:76$ ip community-list expanded c1 permit 4107 ^65000:4_0:126_0:77$ ip community-list expanded c1 permit 4108 ^65000:4_0:126_0:78$ ip community-list expanded c1 permit 4109 ^65000:4_0:126_0:79$ ip community-list expanded c1 permit 4110 ^65000:4_0:126_0:80$ ip community-list expanded c1 permit 4111 ^65000:4_0:126_0:81$ ip community-list expanded c1 permit 4112 ^65000:4_0:126_0:82$ ip community-list expanded c1 permit 4113 ^65000:4_0:126_0:83$ ip community-list expanded c1 permit 4114 ^65000:4_0:126_0:84$ ip community-list expanded c1 permit 4115 ^65000:4_0:126_0:85$ ip community-list expanded c1 permit 4116 ^65000:4_0:126_0:86$ ip community-list expanded c1 permit 4117 ^65000:4_0:126_0:87$ ip community-list expanded c1 permit 4118 ^65000:4_0:126_0:88$ ip community-list expanded c1 permit 4119 ^65000:4_0:126_0:89$ ip community-list expanded c1 permit 4120 ^65000:4_0:126_0:90$ ip community-list expanded c1 permit 4121 ^65000:4_0:126_0:91$ ip community-list expanded c1 permit 4122 ^65000:4_0:126_0:92$ ip community-list expanded c1 permit 4123 ^65000:4_0:126_0:93$ ip community-list expanded c1 permit 4124 ^65000:4_0:126_0:94$ ip community-list expanded c1 permit 4125 ^65000:4_0:126_0:95$ ip community-list expanded c1 permit 4126 ^65000:4_0:126_0:96$ ip community-list expanded c1 permit 4127 ^65000:4_0:126_0:97$ ip community-list expanded c1 permit 4128 ^65000:4_0:126_0:98$ ip community-list expanded c1 permit 4129 ^65000:4_0:126_0:99$ ip community-list expanded c1 permit 4130 ^65000:4_0:126_0:100$ ip community-list expanded c1 permit 4131 ^65000:4_0:126_0:101$ ip community-list expanded c1 permit 4132 ^65000:4_0:126_0:102$ ip community-list expanded c1 permit 4133 ^65000:4_0:126_0:103$ ip community-list expanded c1 permit 4134 ^65000:4_0:126_0:104$ ip community-list expanded c1 permit 4135 ^65000:4_0:126_0:105$ ip community-list expanded c1 permit 4136 ^65000:4_0:126_0:106$ ip community-list expanded c1 permit 4137 ^65000:4_0:126_0:107$ ip community-list expanded c1 permit 4138 ^65000:4_0:126_0:108$ ip community-list expanded c1 permit 4139 ^65000:4_0:126_0:109$ ip community-list expanded c1 permit 4140 ^65000:4_0:126_0:110$ ip community-list expanded c1 permit 4141 ^65000:4_0:126_0:111$ ip community-list expanded c1 permit 4142 ^65000:4_0:126_0:112$ ip community-list expanded c1 permit 4143 ^65000:4_0:126_0:113$ ip community-list expanded c1 permit 4144 ^65000:4_0:126_0:114$ ip community-list expanded c1 permit 4145 ^65000:4_0:126_0:115$ ip community-list expanded c1 permit 4146 ^65000:4_0:126_0:116$ ip community-list expanded c1 permit 4147 ^65000:4_0:126_0:117$ ip community-list expanded c1 permit 4148 ^65000:4_0:126_0:118$ ip community-list expanded c1 permit 4149 ^65000:4_0:126_0:119$ ip community-list expanded c1 permit 4150 ^65000:4_0:126_0:120$ ip community-list expanded c1 permit 4151 ^65000:4_0:126_0:121$ ip community-list expanded c1 permit 4152 ^65000:4_0:126_0:122$ ip community-list expanded c1 permit 4153 ^65000:4_0:126_0:123$ ip community-list expanded c1 permit 4154 ^65000:4_0:126_0:124$ ip community-list expanded c1 permit 4155 ^65000:3_0:126_0:125$ ip community-list expanded c1 permit 4156 ^65000:4_0:126_0:125$ ip community-list expanded c1 permit 4157 ^65000:4_0:126_0:126$ ip community-list expanded c1 permit 4158 ^65000:4_0:127_0:64$ ip community-list expanded c1 permit 4159 ^65000:4_0:127_0:65$ ip community-list expanded c1 permit 4160 ^65000:4_0:127_0:66$ ip community-list expanded c1 permit 4161 ^65000:4_0:127_0:67$ ip community-list expanded c1 permit 4162 ^65000:4_0:127_0:68$ ip community-list expanded c1 permit 4163 ^65000:4_0:127_0:69$ ip community-list expanded c1 permit 4164 ^65000:4_0:127_0:70$ ip community-list expanded c1 permit 4165 ^65000:4_0:127_0:71$ ip community-list expanded c1 permit 4166 ^65000:4_0:127_0:72$ ip community-list expanded c1 permit 4167 ^65000:4_0:127_0:73$ ip community-list expanded c1 permit 4168 ^65000:4_0:127_0:74$ ip community-list expanded c1 permit 4169 ^65000:4_0:127_0:75$ ip community-list expanded c1 permit 4170 ^65000:4_0:127_0:76$ ip community-list expanded c1 permit 4171 ^65000:4_0:127_0:77$ ip community-list expanded c1 permit 4172 ^65000:4_0:127_0:78$ ip community-list expanded c1 permit 4173 ^65000:4_0:127_0:79$ ip community-list expanded c1 permit 4174 ^65000:4_0:127_0:80$ ip community-list expanded c1 permit 4175 ^65000:4_0:127_0:81$ ip community-list expanded c1 permit 4176 ^65000:4_0:127_0:82$ ip community-list expanded c1 permit 4177 ^65000:4_0:127_0:83$ ip community-list expanded c1 permit 4178 ^65000:4_0:127_0:84$ ip community-list expanded c1 permit 4179 ^65000:4_0:127_0:85$ ip community-list expanded c1 permit 4180 ^65000:4_0:127_0:86$ ip community-list expanded c1 permit 4181 ^65000:4_0:127_0:87$ ip community-list expanded c1 permit 4182 ^65000:4_0:127_0:88$ ip community-list expanded c1 permit 4183 ^65000:4_0:127_0:89$ ip community-list expanded c1 permit 4184 ^65000:4_0:127_0:90$ ip community-list expanded c1 permit 4185 ^65000:4_0:127_0:91$ ip community-list expanded c1 permit 4186 ^65000:4_0:127_0:92$ ip community-list expanded c1 permit 4187 ^65000:4_0:127_0:93$ ip community-list expanded c1 permit 4188 ^65000:4_0:127_0:94$ ip community-list expanded c1 permit 4189 ^65000:4_0:127_0:95$ ip community-list expanded c1 permit 4190 ^65000:4_0:127_0:96$ ip community-list expanded c1 permit 4191 ^65000:4_0:127_0:97$ ip community-list expanded c1 permit 4192 ^65000:4_0:127_0:98$ ip community-list expanded c1 permit 4193 ^65000:4_0:127_0:99$ ip community-list expanded c1 permit 4194 ^65000:4_0:127_0:100$ ip community-list expanded c1 permit 4195 ^65000:4_0:127_0:101$ ip community-list expanded c1 permit 4196 ^65000:4_0:127_0:102$ ip community-list expanded c1 permit 4197 ^65000:4_0:127_0:103$ ip community-list expanded c1 permit 4198 ^65000:4_0:127_0:104$ ip community-list expanded c1 permit 4199 ^65000:4_0:127_0:105$ ip community-list expanded c1 permit 4200 ^65000:4_0:127_0:106$ ip community-list expanded c1 permit 4201 ^65000:4_0:127_0:107$ ip community-list expanded c1 permit 4202 ^65000:4_0:127_0:108$ ip community-list expanded c1 permit 4203 ^65000:4_0:127_0:109$ ip community-list expanded c1 permit 4204 ^65000:4_0:127_0:110$ ip community-list expanded c1 permit 4205 ^65000:4_0:127_0:111$ ip community-list expanded c1 permit 4206 ^65000:4_0:127_0:112$ ip community-list expanded c1 permit 4207 ^65000:4_0:127_0:113$ ip community-list expanded c1 permit 4208 ^65000:4_0:127_0:114$ ip community-list expanded c1 permit 4209 ^65000:4_0:127_0:115$ ip community-list expanded c1 permit 4210 ^65000:4_0:127_0:116$ ip community-list expanded c1 permit 4211 ^65000:4_0:127_0:117$ ip community-list expanded c1 permit 4212 ^65000:4_0:127_0:118$ ip community-list expanded c1 permit 4213 ^65000:4_0:127_0:119$ ip community-list expanded c1 permit 4214 ^65000:4_0:127_0:120$ ip community-list expanded c1 permit 4215 ^65000:4_0:127_0:121$ ip community-list expanded c1 permit 4216 ^65000:4_0:127_0:122$ ip community-list expanded c1 permit 4217 ^65000:4_0:127_0:123$ ip community-list expanded c1 permit 4218 ^65000:4_0:127_0:124$ ip community-list expanded c1 permit 4219 ^65000:4_0:127_0:125$ ip community-list expanded c1 permit 4220 ^65000:3_0:127_0:126$ ip community-list expanded c1 permit 4221 ^65000:4_0:127_0:126$ ip community-list expanded c1 permit 4222 ^65000:4_0:127_0:127$ ip community-list expanded c1 permit 4223 ^65000:4_0:128_0:65$ ip community-list expanded c1 permit 4224 ^65000:4_0:128_0:66$ ip community-list expanded c1 permit 4225 ^65000:4_0:128_0:67$ ip community-list expanded c1 permit 4226 ^65000:4_0:128_0:68$ ip community-list expanded c1 permit 4227 ^65000:4_0:128_0:69$ ip community-list expanded c1 permit 4228 ^65000:4_0:128_0:70$ ip community-list expanded c1 permit 4229 ^65000:4_0:128_0:71$ ip community-list expanded c1 permit 4230 ^65000:4_0:128_0:72$ ip community-list expanded c1 permit 4231 ^65000:4_0:128_0:73$ ip community-list expanded c1 permit 4232 ^65000:4_0:128_0:74$ ip community-list expanded c1 permit 4233 ^65000:4_0:128_0:75$ ip community-list expanded c1 permit 4234 ^65000:4_0:128_0:76$ ip community-list expanded c1 permit 4235 ^65000:4_0:128_0:77$ ip community-list expanded c1 permit 4236 ^65000:4_0:128_0:78$ ip community-list expanded c1 permit 4237 ^65000:4_0:128_0:79$ ip community-list expanded c1 permit 4238 ^65000:4_0:128_0:80$ ip community-list expanded c1 permit 4239 ^65000:4_0:128_0:81$ ip community-list expanded c1 permit 4240 ^65000:4_0:128_0:82$ ip community-list expanded c1 permit 4241 ^65000:4_0:128_0:83$ ip community-list expanded c1 permit 4242 ^65000:4_0:128_0:84$ ip community-list expanded c1 permit 4243 ^65000:4_0:128_0:85$ ip community-list expanded c1 permit 4244 ^65000:4_0:128_0:86$ ip community-list expanded c1 permit 4245 ^65000:4_0:128_0:87$ ip community-list expanded c1 permit 4246 ^65000:4_0:128_0:88$ ip community-list expanded c1 permit 4247 ^65000:4_0:128_0:89$ ip community-list expanded c1 permit 4248 ^65000:4_0:128_0:90$ ip community-list expanded c1 permit 4249 ^65000:4_0:128_0:91$ ip community-list expanded c1 permit 4250 ^65000:4_0:128_0:92$ ip community-list expanded c1 permit 4251 ^65000:4_0:128_0:93$ ip community-list expanded c1 permit 4252 ^65000:4_0:128_0:94$ ip community-list expanded c1 permit 4253 ^65000:4_0:128_0:95$ ip community-list expanded c1 permit 4254 ^65000:4_0:128_0:96$ ip community-list expanded c1 permit 4255 ^65000:4_0:128_0:97$ ip community-list expanded c1 permit 4256 ^65000:4_0:128_0:98$ ip community-list expanded c1 permit 4257 ^65000:4_0:128_0:99$ ip community-list expanded c1 permit 4258 ^65000:4_0:128_0:100$ ip community-list expanded c1 permit 4259 ^65000:4_0:128_0:101$ ip community-list expanded c1 permit 4260 ^65000:4_0:128_0:102$ ip community-list expanded c1 permit 4261 ^65000:4_0:128_0:103$ ip community-list expanded c1 permit 4262 ^65000:4_0:128_0:104$ ip community-list expanded c1 permit 4263 ^65000:4_0:128_0:105$ ip community-list expanded c1 permit 4264 ^65000:4_0:128_0:106$ ip community-list expanded c1 permit 4265 ^65000:4_0:128_0:107$ ip community-list expanded c1 permit 4266 ^65000:4_0:128_0:108$ ip community-list expanded c1 permit 4267 ^65000:4_0:128_0:109$ ip community-list expanded c1 permit 4268 ^65000:4_0:128_0:110$ ip community-list expanded c1 permit 4269 ^65000:4_0:128_0:111$ ip community-list expanded c1 permit 4270 ^65000:4_0:128_0:112$ ip community-list expanded c1 permit 4271 ^65000:4_0:128_0:113$ ip community-list expanded c1 permit 4272 ^65000:4_0:128_0:114$ ip community-list expanded c1 permit 4273 ^65000:4_0:128_0:115$ ip community-list expanded c1 permit 4274 ^65000:4_0:128_0:116$ ip community-list expanded c1 permit 4275 ^65000:4_0:128_0:117$ ip community-list expanded c1 permit 4276 ^65000:4_0:128_0:118$ ip community-list expanded c1 permit 4277 ^65000:4_0:128_0:119$ ip community-list expanded c1 permit 4278 ^65000:4_0:128_0:120$ ip community-list expanded c1 permit 4279 ^65000:4_0:128_0:121$ ip community-list expanded c1 permit 4280 ^65000:4_0:128_0:122$ ip community-list expanded c1 permit 4281 ^65000:4_0:128_0:123$ ip community-list expanded c1 permit 4282 ^65000:4_0:128_0:124$ ip community-list expanded c1 permit 4283 ^65000:4_0:128_0:125$ ip community-list expanded c1 permit 4284 ^65000:4_0:128_0:126$ ip community-list expanded c1 permit 4285 ^65000:3_0:128_0:127$ ip community-list expanded c1 permit 4286 ^65000:4_0:128_0:127$ ip community-list expanded c1 permit 4287 ^65000:4_0:128_0:128$ ip community-list expanded c1 permit 4288 ^65000:4_0:129_0:65$ ip community-list expanded c1 permit 4289 ^65000:4_0:129_0:66$ ip community-list expanded c1 permit 4290 ^65000:4_0:129_0:67$ ip community-list expanded c1 permit 4291 ^65000:4_0:129_0:68$ ip community-list expanded c1 permit 4292 ^65000:4_0:129_0:69$ ip community-list expanded c1 permit 4293 ^65000:4_0:129_0:70$ ip community-list expanded c1 permit 4294 ^65000:4_0:129_0:71$ ip community-list expanded c1 permit 4295 ^65000:4_0:129_0:72$ ip community-list expanded c1 permit 4296 ^65000:4_0:129_0:73$ ip community-list expanded c1 permit 4297 ^65000:4_0:129_0:74$ ip community-list expanded c1 permit 4298 ^65000:4_0:129_0:75$ ip community-list expanded c1 permit 4299 ^65000:4_0:129_0:76$ ip community-list expanded c1 permit 4300 ^65000:4_0:129_0:77$ ip community-list expanded c1 permit 4301 ^65000:4_0:129_0:78$ ip community-list expanded c1 permit 4302 ^65000:4_0:129_0:79$ ip community-list expanded c1 permit 4303 ^65000:4_0:129_0:80$ ip community-list expanded c1 permit 4304 ^65000:4_0:129_0:81$ ip community-list expanded c1 permit 4305 ^65000:4_0:129_0:82$ ip community-list expanded c1 permit 4306 ^65000:4_0:129_0:83$ ip community-list expanded c1 permit 4307 ^65000:4_0:129_0:84$ ip community-list expanded c1 permit 4308 ^65000:4_0:129_0:85$ ip community-list expanded c1 permit 4309 ^65000:4_0:129_0:86$ ip community-list expanded c1 permit 4310 ^65000:4_0:129_0:87$ ip community-list expanded c1 permit 4311 ^65000:4_0:129_0:88$ ip community-list expanded c1 permit 4312 ^65000:4_0:129_0:89$ ip community-list expanded c1 permit 4313 ^65000:4_0:129_0:90$ ip community-list expanded c1 permit 4314 ^65000:4_0:129_0:91$ ip community-list expanded c1 permit 4315 ^65000:4_0:129_0:92$ ip community-list expanded c1 permit 4316 ^65000:4_0:129_0:93$ ip community-list expanded c1 permit 4317 ^65000:4_0:129_0:94$ ip community-list expanded c1 permit 4318 ^65000:4_0:129_0:95$ ip community-list expanded c1 permit 4319 ^65000:4_0:129_0:96$ ip community-list expanded c1 permit 4320 ^65000:4_0:129_0:97$ ip community-list expanded c1 permit 4321 ^65000:4_0:129_0:98$ ip community-list expanded c1 permit 4322 ^65000:4_0:129_0:99$ ip community-list expanded c1 permit 4323 ^65000:4_0:129_0:100$ ip community-list expanded c1 permit 4324 ^65000:4_0:129_0:101$ ip community-list expanded c1 permit 4325 ^65000:4_0:129_0:102$ ip community-list expanded c1 permit 4326 ^65000:4_0:129_0:103$ ip community-list expanded c1 permit 4327 ^65000:4_0:129_0:104$ ip community-list expanded c1 permit 4328 ^65000:4_0:129_0:105$ ip community-list expanded c1 permit 4329 ^65000:4_0:129_0:106$ ip community-list expanded c1 permit 4330 ^65000:4_0:129_0:107$ ip community-list expanded c1 permit 4331 ^65000:4_0:129_0:108$ ip community-list expanded c1 permit 4332 ^65000:4_0:129_0:109$ ip community-list expanded c1 permit 4333 ^65000:4_0:129_0:110$ ip community-list expanded c1 permit 4334 ^65000:4_0:129_0:111$ ip community-list expanded c1 permit 4335 ^65000:4_0:129_0:112$ ip community-list expanded c1 permit 4336 ^65000:4_0:129_0:113$ ip community-list expanded c1 permit 4337 ^65000:4_0:129_0:114$ ip community-list expanded c1 permit 4338 ^65000:4_0:129_0:115$ ip community-list expanded c1 permit 4339 ^65000:4_0:129_0:116$ ip community-list expanded c1 permit 4340 ^65000:4_0:129_0:117$ ip community-list expanded c1 permit 4341 ^65000:4_0:129_0:118$ ip community-list expanded c1 permit 4342 ^65000:4_0:129_0:119$ ip community-list expanded c1 permit 4343 ^65000:4_0:129_0:120$ ip community-list expanded c1 permit 4344 ^65000:4_0:129_0:121$ ip community-list expanded c1 permit 4345 ^65000:4_0:129_0:122$ ip community-list expanded c1 permit 4346 ^65000:4_0:129_0:123$ ip community-list expanded c1 permit 4347 ^65000:4_0:129_0:124$ ip community-list expanded c1 permit 4348 ^65000:4_0:129_0:125$ ip community-list expanded c1 permit 4349 ^65000:4_0:129_0:126$ ip community-list expanded c1 permit 4350 ^65000:4_0:129_0:127$ ip community-list expanded c1 permit 4351 ^65000:3_0:129_0:128$ ip community-list expanded c1 permit 4352 ^65000:4_0:129_0:128$ ip community-list expanded c1 permit 4353 ^65000:4_0:129_0:129$ ip community-list expanded c1 permit 4354 ^65000:4_0:130_0:66$ ip community-list expanded c1 permit 4355 ^65000:4_0:130_0:67$ ip community-list expanded c1 permit 4356 ^65000:4_0:130_0:68$ ip community-list expanded c1 permit 4357 ^65000:4_0:130_0:69$ ip community-list expanded c1 permit 4358 ^65000:4_0:130_0:70$ ip community-list expanded c1 permit 4359 ^65000:4_0:130_0:71$ ip community-list expanded c1 permit 4360 ^65000:4_0:130_0:72$ ip community-list expanded c1 permit 4361 ^65000:4_0:130_0:73$ ip community-list expanded c1 permit 4362 ^65000:4_0:130_0:74$ ip community-list expanded c1 permit 4363 ^65000:4_0:130_0:75$ ip community-list expanded c1 permit 4364 ^65000:4_0:130_0:76$ ip community-list expanded c1 permit 4365 ^65000:4_0:130_0:77$ ip community-list expanded c1 permit 4366 ^65000:4_0:130_0:78$ ip community-list expanded c1 permit 4367 ^65000:4_0:130_0:79$ ip community-list expanded c1 permit 4368 ^65000:4_0:130_0:80$ ip community-list expanded c1 permit 4369 ^65000:4_0:130_0:81$ ip community-list expanded c1 permit 4370 ^65000:4_0:130_0:82$ ip community-list expanded c1 permit 4371 ^65000:4_0:130_0:83$ ip community-list expanded c1 permit 4372 ^65000:4_0:130_0:84$ ip community-list expanded c1 permit 4373 ^65000:4_0:130_0:85$ ip community-list expanded c1 permit 4374 ^65000:4_0:130_0:86$ ip community-list expanded c1 permit 4375 ^65000:4_0:130_0:87$ ip community-list expanded c1 permit 4376 ^65000:4_0:130_0:88$ ip community-list expanded c1 permit 4377 ^65000:4_0:130_0:89$ ip community-list expanded c1 permit 4378 ^65000:4_0:130_0:90$ ip community-list expanded c1 permit 4379 ^65000:4_0:130_0:91$ ip community-list expanded c1 permit 4380 ^65000:4_0:130_0:92$ ip community-list expanded c1 permit 4381 ^65000:4_0:130_0:93$ ip community-list expanded c1 permit 4382 ^65000:4_0:130_0:94$ ip community-list expanded c1 permit 4383 ^65000:4_0:130_0:95$ ip community-list expanded c1 permit 4384 ^65000:4_0:130_0:96$ ip community-list expanded c1 permit 4385 ^65000:4_0:130_0:97$ ip community-list expanded c1 permit 4386 ^65000:4_0:130_0:98$ ip community-list expanded c1 permit 4387 ^65000:4_0:130_0:99$ ip community-list expanded c1 permit 4388 ^65000:4_0:130_0:100$ ip community-list expanded c1 permit 4389 ^65000:4_0:130_0:101$ ip community-list expanded c1 permit 4390 ^65000:4_0:130_0:102$ ip community-list expanded c1 permit 4391 ^65000:4_0:130_0:103$ ip community-list expanded c1 permit 4392 ^65000:4_0:130_0:104$ ip community-list expanded c1 permit 4393 ^65000:4_0:130_0:105$ ip community-list expanded c1 permit 4394 ^65000:4_0:130_0:106$ ip community-list expanded c1 permit 4395 ^65000:4_0:130_0:107$ ip community-list expanded c1 permit 4396 ^65000:4_0:130_0:108$ ip community-list expanded c1 permit 4397 ^65000:4_0:130_0:109$ ip community-list expanded c1 permit 4398 ^65000:4_0:130_0:110$ ip community-list expanded c1 permit 4399 ^65000:4_0:130_0:111$ ip community-list expanded c1 permit 4400 ^65000:4_0:130_0:112$ ip community-list expanded c1 permit 4401 ^65000:4_0:130_0:113$ ip community-list expanded c1 permit 4402 ^65000:4_0:130_0:114$ ip community-list expanded c1 permit 4403 ^65000:4_0:130_0:115$ ip community-list expanded c1 permit 4404 ^65000:4_0:130_0:116$ ip community-list expanded c1 permit 4405 ^65000:4_0:130_0:117$ ip community-list expanded c1 permit 4406 ^65000:4_0:130_0:118$ ip community-list expanded c1 permit 4407 ^65000:4_0:130_0:119$ ip community-list expanded c1 permit 4408 ^65000:4_0:130_0:120$ ip community-list expanded c1 permit 4409 ^65000:4_0:130_0:121$ ip community-list expanded c1 permit 4410 ^65000:4_0:130_0:122$ ip community-list expanded c1 permit 4411 ^65000:4_0:130_0:123$ ip community-list expanded c1 permit 4412 ^65000:4_0:130_0:124$ ip community-list expanded c1 permit 4413 ^65000:4_0:130_0:125$ ip community-list expanded c1 permit 4414 ^65000:4_0:130_0:126$ ip community-list expanded c1 permit 4415 ^65000:4_0:130_0:127$ ip community-list expanded c1 permit 4416 ^65000:4_0:130_0:128$ ip community-list expanded c1 permit 4417 ^65000:3_0:130_0:129$ ip community-list expanded c1 permit 4418 ^65000:4_0:130_0:129$ ip community-list expanded c1 permit 4419 ^65000:4_0:130_0:130$ ip community-list expanded c1 permit 4420 ^65000:4_0:131_0:66$ ip community-list expanded c1 permit 4421 ^65000:4_0:131_0:67$ ip community-list expanded c1 permit 4422 ^65000:4_0:131_0:68$ ip community-list expanded c1 permit 4423 ^65000:4_0:131_0:69$ ip community-list expanded c1 permit 4424 ^65000:4_0:131_0:70$ ip community-list expanded c1 permit 4425 ^65000:4_0:131_0:71$ ip community-list expanded c1 permit 4426 ^65000:4_0:131_0:72$ ip community-list expanded c1 permit 4427 ^65000:4_0:131_0:73$ ip community-list expanded c1 permit 4428 ^65000:4_0:131_0:74$ ip community-list expanded c1 permit 4429 ^65000:4_0:131_0:75$ ip community-list expanded c1 permit 4430 ^65000:4_0:131_0:76$ ip community-list expanded c1 permit 4431 ^65000:4_0:131_0:77$ ip community-list expanded c1 permit 4432 ^65000:4_0:131_0:78$ ip community-list expanded c1 permit 4433 ^65000:4_0:131_0:79$ ip community-list expanded c1 permit 4434 ^65000:4_0:131_0:80$ ip community-list expanded c1 permit 4435 ^65000:4_0:131_0:81$ ip community-list expanded c1 permit 4436 ^65000:4_0:131_0:82$ ip community-list expanded c1 permit 4437 ^65000:4_0:131_0:83$ ip community-list expanded c1 permit 4438 ^65000:4_0:131_0:84$ ip community-list expanded c1 permit 4439 ^65000:4_0:131_0:85$ ip community-list expanded c1 permit 4440 ^65000:4_0:131_0:86$ ip community-list expanded c1 permit 4441 ^65000:4_0:131_0:87$ ip community-list expanded c1 permit 4442 ^65000:4_0:131_0:88$ ip community-list expanded c1 permit 4443 ^65000:4_0:131_0:89$ ip community-list expanded c1 permit 4444 ^65000:4_0:131_0:90$ ip community-list expanded c1 permit 4445 ^65000:4_0:131_0:91$ ip community-list expanded c1 permit 4446 ^65000:4_0:131_0:92$ ip community-list expanded c1 permit 4447 ^65000:4_0:131_0:93$ ip community-list expanded c1 permit 4448 ^65000:4_0:131_0:94$ ip community-list expanded c1 permit 4449 ^65000:4_0:131_0:95$ ip community-list expanded c1 permit 4450 ^65000:4_0:131_0:96$ ip community-list expanded c1 permit 4451 ^65000:4_0:131_0:97$ ip community-list expanded c1 permit 4452 ^65000:4_0:131_0:98$ ip community-list expanded c1 permit 4453 ^65000:4_0:131_0:99$ ip community-list expanded c1 permit 4454 ^65000:4_0:131_0:100$ ip community-list expanded c1 permit 4455 ^65000:4_0:131_0:101$ ip community-list expanded c1 permit 4456 ^65000:4_0:131_0:102$ ip community-list expanded c1 permit 4457 ^65000:4_0:131_0:103$ ip community-list expanded c1 permit 4458 ^65000:4_0:131_0:104$ ip community-list expanded c1 permit 4459 ^65000:4_0:131_0:105$ ip community-list expanded c1 permit 4460 ^65000:4_0:131_0:106$ ip community-list expanded c1 permit 4461 ^65000:4_0:131_0:107$ ip community-list expanded c1 permit 4462 ^65000:4_0:131_0:108$ ip community-list expanded c1 permit 4463 ^65000:4_0:131_0:109$ ip community-list expanded c1 permit 4464 ^65000:4_0:131_0:110$ ip community-list expanded c1 permit 4465 ^65000:4_0:131_0:111$ ip community-list expanded c1 permit 4466 ^65000:4_0:131_0:112$ ip community-list expanded c1 permit 4467 ^65000:4_0:131_0:113$ ip community-list expanded c1 permit 4468 ^65000:4_0:131_0:114$ ip community-list expanded c1 permit 4469 ^65000:4_0:131_0:115$ ip community-list expanded c1 permit 4470 ^65000:4_0:131_0:116$ ip community-list expanded c1 permit 4471 ^65000:4_0:131_0:117$ ip community-list expanded c1 permit 4472 ^65000:4_0:131_0:118$ ip community-list expanded c1 permit 4473 ^65000:4_0:131_0:119$ ip community-list expanded c1 permit 4474 ^65000:4_0:131_0:120$ ip community-list expanded c1 permit 4475 ^65000:4_0:131_0:121$ ip community-list expanded c1 permit 4476 ^65000:4_0:131_0:122$ ip community-list expanded c1 permit 4477 ^65000:4_0:131_0:123$ ip community-list expanded c1 permit 4478 ^65000:4_0:131_0:124$ ip community-list expanded c1 permit 4479 ^65000:4_0:131_0:125$ ip community-list expanded c1 permit 4480 ^65000:4_0:131_0:126$ ip community-list expanded c1 permit 4481 ^65000:4_0:131_0:127$ ip community-list expanded c1 permit 4482 ^65000:4_0:131_0:128$ ip community-list expanded c1 permit 4483 ^65000:4_0:131_0:129$ ip community-list expanded c1 permit 4484 ^65000:3_0:131_0:130$ ip community-list expanded c1 permit 4485 ^65000:4_0:131_0:130$ ip community-list expanded c1 permit 4486 ^65000:4_0:131_0:131$ ip community-list expanded c1 permit 4487 ^65000:4_0:132_0:67$ ip community-list expanded c1 permit 4488 ^65000:4_0:132_0:68$ ip community-list expanded c1 permit 4489 ^65000:4_0:132_0:69$ ip community-list expanded c1 permit 4490 ^65000:4_0:132_0:70$ ip community-list expanded c1 permit 4491 ^65000:4_0:132_0:71$ ip community-list expanded c1 permit 4492 ^65000:4_0:132_0:72$ ip community-list expanded c1 permit 4493 ^65000:4_0:132_0:73$ ip community-list expanded c1 permit 4494 ^65000:4_0:132_0:74$ ip community-list expanded c1 permit 4495 ^65000:4_0:132_0:75$ ip community-list expanded c1 permit 4496 ^65000:4_0:132_0:76$ ip community-list expanded c1 permit 4497 ^65000:4_0:132_0:77$ ip community-list expanded c1 permit 4498 ^65000:4_0:132_0:78$ ip community-list expanded c1 permit 4499 ^65000:4_0:132_0:79$ ip community-list expanded c1 permit 4500 ^65000:4_0:132_0:80$ ip community-list expanded c1 permit 4501 ^65000:4_0:132_0:81$ ip community-list expanded c1 permit 4502 ^65000:4_0:132_0:82$ ip community-list expanded c1 permit 4503 ^65000:4_0:132_0:83$ ip community-list expanded c1 permit 4504 ^65000:4_0:132_0:84$ ip community-list expanded c1 permit 4505 ^65000:4_0:132_0:85$ ip community-list expanded c1 permit 4506 ^65000:4_0:132_0:86$ ip community-list expanded c1 permit 4507 ^65000:4_0:132_0:87$ ip community-list expanded c1 permit 4508 ^65000:4_0:132_0:88$ ip community-list expanded c1 permit 4509 ^65000:4_0:132_0:89$ ip community-list expanded c1 permit 4510 ^65000:4_0:132_0:90$ ip community-list expanded c1 permit 4511 ^65000:4_0:132_0:91$ ip community-list expanded c1 permit 4512 ^65000:4_0:132_0:92$ ip community-list expanded c1 permit 4513 ^65000:4_0:132_0:93$ ip community-list expanded c1 permit 4514 ^65000:4_0:132_0:94$ ip community-list expanded c1 permit 4515 ^65000:4_0:132_0:95$ ip community-list expanded c1 permit 4516 ^65000:4_0:132_0:96$ ip community-list expanded c1 permit 4517 ^65000:4_0:132_0:97$ ip community-list expanded c1 permit 4518 ^65000:4_0:132_0:98$ ip community-list expanded c1 permit 4519 ^65000:4_0:132_0:99$ ip community-list expanded c1 permit 4520 ^65000:4_0:132_0:100$ ip community-list expanded c1 permit 4521 ^65000:4_0:132_0:101$ ip community-list expanded c1 permit 4522 ^65000:4_0:132_0:102$ ip community-list expanded c1 permit 4523 ^65000:4_0:132_0:103$ ip community-list expanded c1 permit 4524 ^65000:4_0:132_0:104$ ip community-list expanded c1 permit 4525 ^65000:4_0:132_0:105$ ip community-list expanded c1 permit 4526 ^65000:4_0:132_0:106$ ip community-list expanded c1 permit 4527 ^65000:4_0:132_0:107$ ip community-list expanded c1 permit 4528 ^65000:4_0:132_0:108$ ip community-list expanded c1 permit 4529 ^65000:4_0:132_0:109$ ip community-list expanded c1 permit 4530 ^65000:4_0:132_0:110$ ip community-list expanded c1 permit 4531 ^65000:4_0:132_0:111$ ip community-list expanded c1 permit 4532 ^65000:4_0:132_0:112$ ip community-list expanded c1 permit 4533 ^65000:4_0:132_0:113$ ip community-list expanded c1 permit 4534 ^65000:4_0:132_0:114$ ip community-list expanded c1 permit 4535 ^65000:4_0:132_0:115$ ip community-list expanded c1 permit 4536 ^65000:4_0:132_0:116$ ip community-list expanded c1 permit 4537 ^65000:4_0:132_0:117$ ip community-list expanded c1 permit 4538 ^65000:4_0:132_0:118$ ip community-list expanded c1 permit 4539 ^65000:4_0:132_0:119$ ip community-list expanded c1 permit 4540 ^65000:4_0:132_0:120$ ip community-list expanded c1 permit 4541 ^65000:4_0:132_0:121$ ip community-list expanded c1 permit 4542 ^65000:4_0:132_0:122$ ip community-list expanded c1 permit 4543 ^65000:4_0:132_0:123$ ip community-list expanded c1 permit 4544 ^65000:4_0:132_0:124$ ip community-list expanded c1 permit 4545 ^65000:4_0:132_0:125$ ip community-list expanded c1 permit 4546 ^65000:4_0:132_0:126$ ip community-list expanded c1 permit 4547 ^65000:4_0:132_0:127$ ip community-list expanded c1 permit 4548 ^65000:4_0:132_0:128$ ip community-list expanded c1 permit 4549 ^65000:4_0:132_0:129$ ip community-list expanded c1 permit 4550 ^65000:4_0:132_0:130$ ip community-list expanded c1 permit 4551 ^65000:3_0:132_0:131$ ip community-list expanded c1 permit 4552 ^65000:4_0:132_0:131$ ip community-list expanded c1 permit 4553 ^65000:4_0:132_0:132$ ip community-list expanded c1 permit 4554 ^65000:4_0:133_0:67$ ip community-list expanded c1 permit 4555 ^65000:4_0:133_0:68$ ip community-list expanded c1 permit 4556 ^65000:4_0:133_0:69$ ip community-list expanded c1 permit 4557 ^65000:4_0:133_0:70$ ip community-list expanded c1 permit 4558 ^65000:4_0:133_0:71$ ip community-list expanded c1 permit 4559 ^65000:4_0:133_0:72$ ip community-list expanded c1 permit 4560 ^65000:4_0:133_0:73$ ip community-list expanded c1 permit 4561 ^65000:4_0:133_0:74$ ip community-list expanded c1 permit 4562 ^65000:4_0:133_0:75$ ip community-list expanded c1 permit 4563 ^65000:4_0:133_0:76$ ip community-list expanded c1 permit 4564 ^65000:4_0:133_0:77$ ip community-list expanded c1 permit 4565 ^65000:4_0:133_0:78$ ip community-list expanded c1 permit 4566 ^65000:4_0:133_0:79$ ip community-list expanded c1 permit 4567 ^65000:4_0:133_0:80$ ip community-list expanded c1 permit 4568 ^65000:4_0:133_0:81$ ip community-list expanded c1 permit 4569 ^65000:4_0:133_0:82$ ip community-list expanded c1 permit 4570 ^65000:4_0:133_0:83$ ip community-list expanded c1 permit 4571 ^65000:4_0:133_0:84$ ip community-list expanded c1 permit 4572 ^65000:4_0:133_0:85$ ip community-list expanded c1 permit 4573 ^65000:4_0:133_0:86$ ip community-list expanded c1 permit 4574 ^65000:4_0:133_0:87$ ip community-list expanded c1 permit 4575 ^65000:4_0:133_0:88$ ip community-list expanded c1 permit 4576 ^65000:4_0:133_0:89$ ip community-list expanded c1 permit 4577 ^65000:4_0:133_0:90$ ip community-list expanded c1 permit 4578 ^65000:4_0:133_0:91$ ip community-list expanded c1 permit 4579 ^65000:4_0:133_0:92$ ip community-list expanded c1 permit 4580 ^65000:4_0:133_0:93$ ip community-list expanded c1 permit 4581 ^65000:4_0:133_0:94$ ip community-list expanded c1 permit 4582 ^65000:4_0:133_0:95$ ip community-list expanded c1 permit 4583 ^65000:4_0:133_0:96$ ip community-list expanded c1 permit 4584 ^65000:4_0:133_0:97$ ip community-list expanded c1 permit 4585 ^65000:4_0:133_0:98$ ip community-list expanded c1 permit 4586 ^65000:4_0:133_0:99$ ip community-list expanded c1 permit 4587 ^65000:4_0:133_0:100$ ip community-list expanded c1 permit 4588 ^65000:4_0:133_0:101$ ip community-list expanded c1 permit 4589 ^65000:4_0:133_0:102$ ip community-list expanded c1 permit 4590 ^65000:4_0:133_0:103$ ip community-list expanded c1 permit 4591 ^65000:4_0:133_0:104$ ip community-list expanded c1 permit 4592 ^65000:4_0:133_0:105$ ip community-list expanded c1 permit 4593 ^65000:4_0:133_0:106$ ip community-list expanded c1 permit 4594 ^65000:4_0:133_0:107$ ip community-list expanded c1 permit 4595 ^65000:4_0:133_0:108$ ip community-list expanded c1 permit 4596 ^65000:4_0:133_0:109$ ip community-list expanded c1 permit 4597 ^65000:4_0:133_0:110$ ip community-list expanded c1 permit 4598 ^65000:4_0:133_0:111$ ip community-list expanded c1 permit 4599 ^65000:4_0:133_0:112$ ip community-list expanded c1 permit 4600 ^65000:4_0:133_0:113$ ip community-list expanded c1 permit 4601 ^65000:4_0:133_0:114$ ip community-list expanded c1 permit 4602 ^65000:4_0:133_0:115$ ip community-list expanded c1 permit 4603 ^65000:4_0:133_0:116$ ip community-list expanded c1 permit 4604 ^65000:4_0:133_0:117$ ip community-list expanded c1 permit 4605 ^65000:4_0:133_0:118$ ip community-list expanded c1 permit 4606 ^65000:4_0:133_0:119$ ip community-list expanded c1 permit 4607 ^65000:4_0:133_0:120$ ip community-list expanded c1 permit 4608 ^65000:4_0:133_0:121$ ip community-list expanded c1 permit 4609 ^65000:4_0:133_0:122$ ip community-list expanded c1 permit 4610 ^65000:4_0:133_0:123$ ip community-list expanded c1 permit 4611 ^65000:4_0:133_0:124$ ip community-list expanded c1 permit 4612 ^65000:4_0:133_0:125$ ip community-list expanded c1 permit 4613 ^65000:4_0:133_0:126$ ip community-list expanded c1 permit 4614 ^65000:4_0:133_0:127$ ip community-list expanded c1 permit 4615 ^65000:4_0:133_0:128$ ip community-list expanded c1 permit 4616 ^65000:4_0:133_0:129$ ip community-list expanded c1 permit 4617 ^65000:4_0:133_0:130$ ip community-list expanded c1 permit 4618 ^65000:4_0:133_0:131$ ip community-list expanded c1 permit 4619 ^65000:3_0:133_0:132$ ip community-list expanded c1 permit 4620 ^65000:4_0:133_0:132$ ip community-list expanded c1 permit 4621 ^65000:4_0:133_0:133$ ip community-list expanded c1 permit 4622 ^65000:4_0:134_0:68$ ip community-list expanded c1 permit 4623 ^65000:4_0:134_0:69$ ip community-list expanded c1 permit 4624 ^65000:4_0:134_0:70$ ip community-list expanded c1 permit 4625 ^65000:4_0:134_0:71$ ip community-list expanded c1 permit 4626 ^65000:4_0:134_0:72$ ip community-list expanded c1 permit 4627 ^65000:4_0:134_0:73$ ip community-list expanded c1 permit 4628 ^65000:4_0:134_0:74$ ip community-list expanded c1 permit 4629 ^65000:4_0:134_0:75$ ip community-list expanded c1 permit 4630 ^65000:4_0:134_0:76$ ip community-list expanded c1 permit 4631 ^65000:4_0:134_0:77$ ip community-list expanded c1 permit 4632 ^65000:4_0:134_0:78$ ip community-list expanded c1 permit 4633 ^65000:4_0:134_0:79$ ip community-list expanded c1 permit 4634 ^65000:4_0:134_0:80$ ip community-list expanded c1 permit 4635 ^65000:4_0:134_0:81$ ip community-list expanded c1 permit 4636 ^65000:4_0:134_0:82$ ip community-list expanded c1 permit 4637 ^65000:4_0:134_0:83$ ip community-list expanded c1 permit 4638 ^65000:4_0:134_0:84$ ip community-list expanded c1 permit 4639 ^65000:4_0:134_0:85$ ip community-list expanded c1 permit 4640 ^65000:4_0:134_0:86$ ip community-list expanded c1 permit 4641 ^65000:4_0:134_0:87$ ip community-list expanded c1 permit 4642 ^65000:4_0:134_0:88$ ip community-list expanded c1 permit 4643 ^65000:4_0:134_0:89$ ip community-list expanded c1 permit 4644 ^65000:4_0:134_0:90$ ip community-list expanded c1 permit 4645 ^65000:4_0:134_0:91$ ip community-list expanded c1 permit 4646 ^65000:4_0:134_0:92$ ip community-list expanded c1 permit 4647 ^65000:4_0:134_0:93$ ip community-list expanded c1 permit 4648 ^65000:4_0:134_0:94$ ip community-list expanded c1 permit 4649 ^65000:4_0:134_0:95$ ip community-list expanded c1 permit 4650 ^65000:4_0:134_0:96$ ip community-list expanded c1 permit 4651 ^65000:4_0:134_0:97$ ip community-list expanded c1 permit 4652 ^65000:4_0:134_0:98$ ip community-list expanded c1 permit 4653 ^65000:4_0:134_0:99$ ip community-list expanded c1 permit 4654 ^65000:4_0:134_0:100$ ip community-list expanded c1 permit 4655 ^65000:4_0:134_0:101$ ip community-list expanded c1 permit 4656 ^65000:4_0:134_0:102$ ip community-list expanded c1 permit 4657 ^65000:4_0:134_0:103$ ip community-list expanded c1 permit 4658 ^65000:4_0:134_0:104$ ip community-list expanded c1 permit 4659 ^65000:4_0:134_0:105$ ip community-list expanded c1 permit 4660 ^65000:4_0:134_0:106$ ip community-list expanded c1 permit 4661 ^65000:4_0:134_0:107$ ip community-list expanded c1 permit 4662 ^65000:4_0:134_0:108$ ip community-list expanded c1 permit 4663 ^65000:4_0:134_0:109$ ip community-list expanded c1 permit 4664 ^65000:4_0:134_0:110$ ip community-list expanded c1 permit 4665 ^65000:4_0:134_0:111$ ip community-list expanded c1 permit 4666 ^65000:4_0:134_0:112$ ip community-list expanded c1 permit 4667 ^65000:4_0:134_0:113$ ip community-list expanded c1 permit 4668 ^65000:4_0:134_0:114$ ip community-list expanded c1 permit 4669 ^65000:4_0:134_0:115$ ip community-list expanded c1 permit 4670 ^65000:4_0:134_0:116$ ip community-list expanded c1 permit 4671 ^65000:4_0:134_0:117$ ip community-list expanded c1 permit 4672 ^65000:4_0:134_0:118$ ip community-list expanded c1 permit 4673 ^65000:4_0:134_0:119$ ip community-list expanded c1 permit 4674 ^65000:4_0:134_0:120$ ip community-list expanded c1 permit 4675 ^65000:4_0:134_0:121$ ip community-list expanded c1 permit 4676 ^65000:4_0:134_0:122$ ip community-list expanded c1 permit 4677 ^65000:4_0:134_0:123$ ip community-list expanded c1 permit 4678 ^65000:4_0:134_0:124$ ip community-list expanded c1 permit 4679 ^65000:4_0:134_0:125$ ip community-list expanded c1 permit 4680 ^65000:4_0:134_0:126$ ip community-list expanded c1 permit 4681 ^65000:4_0:134_0:127$ ip community-list expanded c1 permit 4682 ^65000:4_0:134_0:128$ ip community-list expanded c1 permit 4683 ^65000:4_0:134_0:129$ ip community-list expanded c1 permit 4684 ^65000:4_0:134_0:130$ ip community-list expanded c1 permit 4685 ^65000:4_0:134_0:131$ ip community-list expanded c1 permit 4686 ^65000:4_0:134_0:132$ ip community-list expanded c1 permit 4687 ^65000:3_0:134_0:133$ ip community-list expanded c1 permit 4688 ^65000:4_0:134_0:133$ ip community-list expanded c1 permit 4689 ^65000:4_0:134_0:134$ ip community-list expanded c1 permit 4690 ^65000:4_0:135_0:68$ ip community-list expanded c1 permit 4691 ^65000:4_0:135_0:69$ ip community-list expanded c1 permit 4692 ^65000:4_0:135_0:70$ ip community-list expanded c1 permit 4693 ^65000:4_0:135_0:71$ ip community-list expanded c1 permit 4694 ^65000:4_0:135_0:72$ ip community-list expanded c1 permit 4695 ^65000:4_0:135_0:73$ ip community-list expanded c1 permit 4696 ^65000:4_0:135_0:74$ ip community-list expanded c1 permit 4697 ^65000:4_0:135_0:75$ ip community-list expanded c1 permit 4698 ^65000:4_0:135_0:76$ ip community-list expanded c1 permit 4699 ^65000:4_0:135_0:77$ ip community-list expanded c1 permit 4700 ^65000:4_0:135_0:78$ ip community-list expanded c1 permit 4701 ^65000:4_0:135_0:79$ ip community-list expanded c1 permit 4702 ^65000:4_0:135_0:80$ ip community-list expanded c1 permit 4703 ^65000:4_0:135_0:81$ ip community-list expanded c1 permit 4704 ^65000:4_0:135_0:82$ ip community-list expanded c1 permit 4705 ^65000:4_0:135_0:83$ ip community-list expanded c1 permit 4706 ^65000:4_0:135_0:84$ ip community-list expanded c1 permit 4707 ^65000:4_0:135_0:85$ ip community-list expanded c1 permit 4708 ^65000:4_0:135_0:86$ ip community-list expanded c1 permit 4709 ^65000:4_0:135_0:87$ ip community-list expanded c1 permit 4710 ^65000:4_0:135_0:88$ ip community-list expanded c1 permit 4711 ^65000:4_0:135_0:89$ ip community-list expanded c1 permit 4712 ^65000:4_0:135_0:90$ ip community-list expanded c1 permit 4713 ^65000:4_0:135_0:91$ ip community-list expanded c1 permit 4714 ^65000:4_0:135_0:92$ ip community-list expanded c1 permit 4715 ^65000:4_0:135_0:93$ ip community-list expanded c1 permit 4716 ^65000:4_0:135_0:94$ ip community-list expanded c1 permit 4717 ^65000:4_0:135_0:95$ ip community-list expanded c1 permit 4718 ^65000:4_0:135_0:96$ ip community-list expanded c1 permit 4719 ^65000:4_0:135_0:97$ ip community-list expanded c1 permit 4720 ^65000:4_0:135_0:98$ ip community-list expanded c1 permit 4721 ^65000:4_0:135_0:99$ ip community-list expanded c1 permit 4722 ^65000:4_0:135_0:100$ ip community-list expanded c1 permit 4723 ^65000:4_0:135_0:101$ ip community-list expanded c1 permit 4724 ^65000:4_0:135_0:102$ ip community-list expanded c1 permit 4725 ^65000:4_0:135_0:103$ ip community-list expanded c1 permit 4726 ^65000:4_0:135_0:104$ ip community-list expanded c1 permit 4727 ^65000:4_0:135_0:105$ ip community-list expanded c1 permit 4728 ^65000:4_0:135_0:106$ ip community-list expanded c1 permit 4729 ^65000:4_0:135_0:107$ ip community-list expanded c1 permit 4730 ^65000:4_0:135_0:108$ ip community-list expanded c1 permit 4731 ^65000:4_0:135_0:109$ ip community-list expanded c1 permit 4732 ^65000:4_0:135_0:110$ ip community-list expanded c1 permit 4733 ^65000:4_0:135_0:111$ ip community-list expanded c1 permit 4734 ^65000:4_0:135_0:112$ ip community-list expanded c1 permit 4735 ^65000:4_0:135_0:113$ ip community-list expanded c1 permit 4736 ^65000:4_0:135_0:114$ ip community-list expanded c1 permit 4737 ^65000:4_0:135_0:115$ ip community-list expanded c1 permit 4738 ^65000:4_0:135_0:116$ ip community-list expanded c1 permit 4739 ^65000:4_0:135_0:117$ ip community-list expanded c1 permit 4740 ^65000:4_0:135_0:118$ ip community-list expanded c1 permit 4741 ^65000:4_0:135_0:119$ ip community-list expanded c1 permit 4742 ^65000:4_0:135_0:120$ ip community-list expanded c1 permit 4743 ^65000:4_0:135_0:121$ ip community-list expanded c1 permit 4744 ^65000:4_0:135_0:122$ ip community-list expanded c1 permit 4745 ^65000:4_0:135_0:123$ ip community-list expanded c1 permit 4746 ^65000:4_0:135_0:124$ ip community-list expanded c1 permit 4747 ^65000:4_0:135_0:125$ ip community-list expanded c1 permit 4748 ^65000:4_0:135_0:126$ ip community-list expanded c1 permit 4749 ^65000:4_0:135_0:127$ ip community-list expanded c1 permit 4750 ^65000:4_0:135_0:128$ ip community-list expanded c1 permit 4751 ^65000:4_0:135_0:129$ ip community-list expanded c1 permit 4752 ^65000:4_0:135_0:130$ ip community-list expanded c1 permit 4753 ^65000:4_0:135_0:131$ ip community-list expanded c1 permit 4754 ^65000:4_0:135_0:132$ ip community-list expanded c1 permit 4755 ^65000:4_0:135_0:133$ ip community-list expanded c1 permit 4756 ^65000:3_0:135_0:134$ ip community-list expanded c1 permit 4757 ^65000:4_0:135_0:134$ ip community-list expanded c1 permit 4758 ^65000:4_0:135_0:135$ ip community-list expanded c1 permit 4759 ^65000:4_0:136_0:69$ ip community-list expanded c1 permit 4760 ^65000:4_0:136_0:70$ ip community-list expanded c1 permit 4761 ^65000:4_0:136_0:71$ ip community-list expanded c1 permit 4762 ^65000:4_0:136_0:72$ ip community-list expanded c1 permit 4763 ^65000:4_0:136_0:73$ ip community-list expanded c1 permit 4764 ^65000:4_0:136_0:74$ ip community-list expanded c1 permit 4765 ^65000:4_0:136_0:75$ ip community-list expanded c1 permit 4766 ^65000:4_0:136_0:76$ ip community-list expanded c1 permit 4767 ^65000:4_0:136_0:77$ ip community-list expanded c1 permit 4768 ^65000:4_0:136_0:78$ ip community-list expanded c1 permit 4769 ^65000:4_0:136_0:79$ ip community-list expanded c1 permit 4770 ^65000:4_0:136_0:80$ ip community-list expanded c1 permit 4771 ^65000:4_0:136_0:81$ ip community-list expanded c1 permit 4772 ^65000:4_0:136_0:82$ ip community-list expanded c1 permit 4773 ^65000:4_0:136_0:83$ ip community-list expanded c1 permit 4774 ^65000:4_0:136_0:84$ ip community-list expanded c1 permit 4775 ^65000:4_0:136_0:85$ ip community-list expanded c1 permit 4776 ^65000:4_0:136_0:86$ ip community-list expanded c1 permit 4777 ^65000:4_0:136_0:87$ ip community-list expanded c1 permit 4778 ^65000:4_0:136_0:88$ ip community-list expanded c1 permit 4779 ^65000:4_0:136_0:89$ ip community-list expanded c1 permit 4780 ^65000:4_0:136_0:90$ ip community-list expanded c1 permit 4781 ^65000:4_0:136_0:91$ ip community-list expanded c1 permit 4782 ^65000:4_0:136_0:92$ ip community-list expanded c1 permit 4783 ^65000:4_0:136_0:93$ ip community-list expanded c1 permit 4784 ^65000:4_0:136_0:94$ ip community-list expanded c1 permit 4785 ^65000:4_0:136_0:95$ ip community-list expanded c1 permit 4786 ^65000:4_0:136_0:96$ ip community-list expanded c1 permit 4787 ^65000:4_0:136_0:97$ ip community-list expanded c1 permit 4788 ^65000:4_0:136_0:98$ ip community-list expanded c1 permit 4789 ^65000:4_0:136_0:99$ ip community-list expanded c1 permit 4790 ^65000:4_0:136_0:100$ ip community-list expanded c1 permit 4791 ^65000:4_0:136_0:101$ ip community-list expanded c1 permit 4792 ^65000:4_0:136_0:102$ ip community-list expanded c1 permit 4793 ^65000:4_0:136_0:103$ ip community-list expanded c1 permit 4794 ^65000:4_0:136_0:104$ ip community-list expanded c1 permit 4795 ^65000:4_0:136_0:105$ ip community-list expanded c1 permit 4796 ^65000:4_0:136_0:106$ ip community-list expanded c1 permit 4797 ^65000:4_0:136_0:107$ ip community-list expanded c1 permit 4798 ^65000:4_0:136_0:108$ ip community-list expanded c1 permit 4799 ^65000:4_0:136_0:109$ ip community-list expanded c1 permit 4800 ^65000:4_0:136_0:110$ ip community-list expanded c1 permit 4801 ^65000:4_0:136_0:111$ ip community-list expanded c1 permit 4802 ^65000:4_0:136_0:112$ ip community-list expanded c1 permit 4803 ^65000:4_0:136_0:113$ ip community-list expanded c1 permit 4804 ^65000:4_0:136_0:114$ ip community-list expanded c1 permit 4805 ^65000:4_0:136_0:115$ ip community-list expanded c1 permit 4806 ^65000:4_0:136_0:116$ ip community-list expanded c1 permit 4807 ^65000:4_0:136_0:117$ ip community-list expanded c1 permit 4808 ^65000:4_0:136_0:118$ ip community-list expanded c1 permit 4809 ^65000:4_0:136_0:119$ ip community-list expanded c1 permit 4810 ^65000:4_0:136_0:120$ ip community-list expanded c1 permit 4811 ^65000:4_0:136_0:121$ ip community-list expanded c1 permit 4812 ^65000:4_0:136_0:122$ ip community-list expanded c1 permit 4813 ^65000:4_0:136_0:123$ ip community-list expanded c1 permit 4814 ^65000:4_0:136_0:124$ ip community-list expanded c1 permit 4815 ^65000:4_0:136_0:125$ ip community-list expanded c1 permit 4816 ^65000:4_0:136_0:126$ ip community-list expanded c1 permit 4817 ^65000:4_0:136_0:127$ ip community-list expanded c1 permit 4818 ^65000:4_0:136_0:128$ ip community-list expanded c1 permit 4819 ^65000:4_0:136_0:129$ ip community-list expanded c1 permit 4820 ^65000:4_0:136_0:130$ ip community-list expanded c1 permit 4821 ^65000:4_0:136_0:131$ ip community-list expanded c1 permit 4822 ^65000:4_0:136_0:132$ ip community-list expanded c1 permit 4823 ^65000:4_0:136_0:133$ ip community-list expanded c1 permit 4824 ^65000:4_0:136_0:134$ ip community-list expanded c1 permit 4825 ^65000:3_0:136_0:135$ ip community-list expanded c1 permit 4826 ^65000:4_0:136_0:135$ ip community-list expanded c1 permit 4827 ^65000:4_0:136_0:136$ ip community-list expanded c1 permit 4828 ^65000:4_0:137_0:69$ ip community-list expanded c1 permit 4829 ^65000:4_0:137_0:70$ ip community-list expanded c1 permit 4830 ^65000:4_0:137_0:71$ ip community-list expanded c1 permit 4831 ^65000:4_0:137_0:72$ ip community-list expanded c1 permit 4832 ^65000:4_0:137_0:73$ ip community-list expanded c1 permit 4833 ^65000:4_0:137_0:74$ ip community-list expanded c1 permit 4834 ^65000:4_0:137_0:75$ ip community-list expanded c1 permit 4835 ^65000:4_0:137_0:76$ ip community-list expanded c1 permit 4836 ^65000:4_0:137_0:77$ ip community-list expanded c1 permit 4837 ^65000:4_0:137_0:78$ ip community-list expanded c1 permit 4838 ^65000:4_0:137_0:79$ ip community-list expanded c1 permit 4839 ^65000:4_0:137_0:80$ ip community-list expanded c1 permit 4840 ^65000:4_0:137_0:81$ ip community-list expanded c1 permit 4841 ^65000:4_0:137_0:82$ ip community-list expanded c1 permit 4842 ^65000:4_0:137_0:83$ ip community-list expanded c1 permit 4843 ^65000:4_0:137_0:84$ ip community-list expanded c1 permit 4844 ^65000:4_0:137_0:85$ ip community-list expanded c1 permit 4845 ^65000:4_0:137_0:86$ ip community-list expanded c1 permit 4846 ^65000:4_0:137_0:87$ ip community-list expanded c1 permit 4847 ^65000:4_0:137_0:88$ ip community-list expanded c1 permit 4848 ^65000:4_0:137_0:89$ ip community-list expanded c1 permit 4849 ^65000:4_0:137_0:90$ ip community-list expanded c1 permit 4850 ^65000:4_0:137_0:91$ ip community-list expanded c1 permit 4851 ^65000:4_0:137_0:92$ ip community-list expanded c1 permit 4852 ^65000:4_0:137_0:93$ ip community-list expanded c1 permit 4853 ^65000:4_0:137_0:94$ ip community-list expanded c1 permit 4854 ^65000:4_0:137_0:95$ ip community-list expanded c1 permit 4855 ^65000:4_0:137_0:96$ ip community-list expanded c1 permit 4856 ^65000:4_0:137_0:97$ ip community-list expanded c1 permit 4857 ^65000:4_0:137_0:98$ ip community-list expanded c1 permit 4858 ^65000:4_0:137_0:99$ ip community-list expanded c1 permit 4859 ^65000:4_0:137_0:100$ ip community-list expanded c1 permit 4860 ^65000:4_0:137_0:101$ ip community-list expanded c1 permit 4861 ^65000:4_0:137_0:102$ ip community-list expanded c1 permit 4862 ^65000:4_0:137_0:103$ ip community-list expanded c1 permit 4863 ^65000:4_0:137_0:104$ ip community-list expanded c1 permit 4864 ^65000:4_0:137_0:105$ ip community-list expanded c1 permit 4865 ^65000:4_0:137_0:106$ ip community-list expanded c1 permit 4866 ^65000:4_0:137_0:107$ ip community-list expanded c1 permit 4867 ^65000:4_0:137_0:108$ ip community-list expanded c1 permit 4868 ^65000:4_0:137_0:109$ ip community-list expanded c1 permit 4869 ^65000:4_0:137_0:110$ ip community-list expanded c1 permit 4870 ^65000:4_0:137_0:111$ ip community-list expanded c1 permit 4871 ^65000:4_0:137_0:112$ ip community-list expanded c1 permit 4872 ^65000:4_0:137_0:113$ ip community-list expanded c1 permit 4873 ^65000:4_0:137_0:114$ ip community-list expanded c1 permit 4874 ^65000:4_0:137_0:115$ ip community-list expanded c1 permit 4875 ^65000:4_0:137_0:116$ ip community-list expanded c1 permit 4876 ^65000:4_0:137_0:117$ ip community-list expanded c1 permit 4877 ^65000:4_0:137_0:118$ ip community-list expanded c1 permit 4878 ^65000:4_0:137_0:119$ ip community-list expanded c1 permit 4879 ^65000:4_0:137_0:120$ ip community-list expanded c1 permit 4880 ^65000:4_0:137_0:121$ ip community-list expanded c1 permit 4881 ^65000:4_0:137_0:122$ ip community-list expanded c1 permit 4882 ^65000:4_0:137_0:123$ ip community-list expanded c1 permit 4883 ^65000:4_0:137_0:124$ ip community-list expanded c1 permit 4884 ^65000:4_0:137_0:125$ ip community-list expanded c1 permit 4885 ^65000:4_0:137_0:126$ ip community-list expanded c1 permit 4886 ^65000:4_0:137_0:127$ ip community-list expanded c1 permit 4887 ^65000:4_0:137_0:128$ ip community-list expanded c1 permit 4888 ^65000:4_0:137_0:129$ ip community-list expanded c1 permit 4889 ^65000:4_0:137_0:130$ ip community-list expanded c1 permit 4890 ^65000:4_0:137_0:131$ ip community-list expanded c1 permit 4891 ^65000:4_0:137_0:132$ ip community-list expanded c1 permit 4892 ^65000:4_0:137_0:133$ ip community-list expanded c1 permit 4893 ^65000:4_0:137_0:134$ ip community-list expanded c1 permit 4894 ^65000:4_0:137_0:135$ ip community-list expanded c1 permit 4895 ^65000:3_0:137_0:136$ ip community-list expanded c1 permit 4896 ^65000:4_0:137_0:136$ ip community-list expanded c1 permit 4897 ^65000:4_0:137_0:137$ ip community-list expanded c1 permit 4898 ^65000:4_0:138_0:70$ ip community-list expanded c1 permit 4899 ^65000:4_0:138_0:71$ ip community-list expanded c1 permit 4900 ^65000:4_0:138_0:72$ ip community-list expanded c1 permit 4901 ^65000:4_0:138_0:73$ ip community-list expanded c1 permit 4902 ^65000:4_0:138_0:74$ ip community-list expanded c1 permit 4903 ^65000:4_0:138_0:75$ ip community-list expanded c1 permit 4904 ^65000:4_0:138_0:76$ ip community-list expanded c1 permit 4905 ^65000:4_0:138_0:77$ ip community-list expanded c1 permit 4906 ^65000:4_0:138_0:78$ ip community-list expanded c1 permit 4907 ^65000:4_0:138_0:79$ ip community-list expanded c1 permit 4908 ^65000:4_0:138_0:80$ ip community-list expanded c1 permit 4909 ^65000:4_0:138_0:81$ ip community-list expanded c1 permit 4910 ^65000:4_0:138_0:82$ ip community-list expanded c1 permit 4911 ^65000:4_0:138_0:83$ ip community-list expanded c1 permit 4912 ^65000:4_0:138_0:84$ ip community-list expanded c1 permit 4913 ^65000:4_0:138_0:85$ ip community-list expanded c1 permit 4914 ^65000:4_0:138_0:86$ ip community-list expanded c1 permit 4915 ^65000:4_0:138_0:87$ ip community-list expanded c1 permit 4916 ^65000:4_0:138_0:88$ ip community-list expanded c1 permit 4917 ^65000:4_0:138_0:89$ ip community-list expanded c1 permit 4918 ^65000:4_0:138_0:90$ ip community-list expanded c1 permit 4919 ^65000:4_0:138_0:91$ ip community-list expanded c1 permit 4920 ^65000:4_0:138_0:92$ ip community-list expanded c1 permit 4921 ^65000:4_0:138_0:93$ ip community-list expanded c1 permit 4922 ^65000:4_0:138_0:94$ ip community-list expanded c1 permit 4923 ^65000:4_0:138_0:95$ ip community-list expanded c1 permit 4924 ^65000:4_0:138_0:96$ ip community-list expanded c1 permit 4925 ^65000:4_0:138_0:97$ ip community-list expanded c1 permit 4926 ^65000:4_0:138_0:98$ ip community-list expanded c1 permit 4927 ^65000:4_0:138_0:99$ ip community-list expanded c1 permit 4928 ^65000:4_0:138_0:100$ ip community-list expanded c1 permit 4929 ^65000:4_0:138_0:101$ ip community-list expanded c1 permit 4930 ^65000:4_0:138_0:102$ ip community-list expanded c1 permit 4931 ^65000:4_0:138_0:103$ ip community-list expanded c1 permit 4932 ^65000:4_0:138_0:104$ ip community-list expanded c1 permit 4933 ^65000:4_0:138_0:105$ ip community-list expanded c1 permit 4934 ^65000:4_0:138_0:106$ ip community-list expanded c1 permit 4935 ^65000:4_0:138_0:107$ ip community-list expanded c1 permit 4936 ^65000:4_0:138_0:108$ ip community-list expanded c1 permit 4937 ^65000:4_0:138_0:109$ ip community-list expanded c1 permit 4938 ^65000:4_0:138_0:110$ ip community-list expanded c1 permit 4939 ^65000:4_0:138_0:111$ ip community-list expanded c1 permit 4940 ^65000:4_0:138_0:112$ ip community-list expanded c1 permit 4941 ^65000:4_0:138_0:113$ ip community-list expanded c1 permit 4942 ^65000:4_0:138_0:114$ ip community-list expanded c1 permit 4943 ^65000:4_0:138_0:115$ ip community-list expanded c1 permit 4944 ^65000:4_0:138_0:116$ ip community-list expanded c1 permit 4945 ^65000:4_0:138_0:117$ ip community-list expanded c1 permit 4946 ^65000:4_0:138_0:118$ ip community-list expanded c1 permit 4947 ^65000:4_0:138_0:119$ ip community-list expanded c1 permit 4948 ^65000:4_0:138_0:120$ ip community-list expanded c1 permit 4949 ^65000:4_0:138_0:121$ ip community-list expanded c1 permit 4950 ^65000:4_0:138_0:122$ ip community-list expanded c1 permit 4951 ^65000:4_0:138_0:123$ ip community-list expanded c1 permit 4952 ^65000:4_0:138_0:124$ ip community-list expanded c1 permit 4953 ^65000:4_0:138_0:125$ ip community-list expanded c1 permit 4954 ^65000:4_0:138_0:126$ ip community-list expanded c1 permit 4955 ^65000:4_0:138_0:127$ ip community-list expanded c1 permit 4956 ^65000:4_0:138_0:128$ ip community-list expanded c1 permit 4957 ^65000:4_0:138_0:129$ ip community-list expanded c1 permit 4958 ^65000:4_0:138_0:130$ ip community-list expanded c1 permit 4959 ^65000:4_0:138_0:131$ ip community-list expanded c1 permit 4960 ^65000:4_0:138_0:132$ ip community-list expanded c1 permit 4961 ^65000:4_0:138_0:133$ ip community-list expanded c1 permit 4962 ^65000:4_0:138_0:134$ ip community-list expanded c1 permit 4963 ^65000:4_0:138_0:135$ ip community-list expanded c1 permit 4964 ^65000:4_0:138_0:136$ ip community-list expanded c1 permit 4965 ^65000:3_0:138_0:137$ ip community-list expanded c1 permit 4966 ^65000:4_0:138_0:137$ ip community-list expanded c1 permit 4967 ^65000:4_0:138_0:138$ ip community-list expanded c1 permit 4968 ^65000:4_0:139_0:70$ ip community-list expanded c1 permit 4969 ^65000:4_0:139_0:71$ ip community-list expanded c1 permit 4970 ^65000:4_0:139_0:72$ ip community-list expanded c1 permit 4971 ^65000:4_0:139_0:73$ ip community-list expanded c1 permit 4972 ^65000:4_0:139_0:74$ ip community-list expanded c1 permit 4973 ^65000:4_0:139_0:75$ ip community-list expanded c1 permit 4974 ^65000:4_0:139_0:76$ ip community-list expanded c1 permit 4975 ^65000:4_0:139_0:77$ ip community-list expanded c1 permit 4976 ^65000:4_0:139_0:78$ ip community-list expanded c1 permit 4977 ^65000:4_0:139_0:79$ ip community-list expanded c1 permit 4978 ^65000:4_0:139_0:80$ ip community-list expanded c1 permit 4979 ^65000:4_0:139_0:81$ ip community-list expanded c1 permit 4980 ^65000:4_0:139_0:82$ ip community-list expanded c1 permit 4981 ^65000:4_0:139_0:83$ ip community-list expanded c1 permit 4982 ^65000:4_0:139_0:84$ ip community-list expanded c1 permit 4983 ^65000:4_0:139_0:85$ ip community-list expanded c1 permit 4984 ^65000:4_0:139_0:86$ ip community-list expanded c1 permit 4985 ^65000:4_0:139_0:87$ ip community-list expanded c1 permit 4986 ^65000:4_0:139_0:88$ ip community-list expanded c1 permit 4987 ^65000:4_0:139_0:89$ ip community-list expanded c1 permit 4988 ^65000:4_0:139_0:90$ ip community-list expanded c1 permit 4989 ^65000:4_0:139_0:91$ ip community-list expanded c1 permit 4990 ^65000:4_0:139_0:92$ ip community-list expanded c1 permit 4991 ^65000:4_0:139_0:93$ ip community-list expanded c1 permit 4992 ^65000:4_0:139_0:94$ ip community-list expanded c1 permit 4993 ^65000:4_0:139_0:95$ ip community-list expanded c1 permit 4994 ^65000:4_0:139_0:96$ ip community-list expanded c1 permit 4995 ^65000:4_0:139_0:97$ ip community-list expanded c1 permit 4996 ^65000:4_0:139_0:98$ ip community-list expanded c1 permit 4997 ^65000:4_0:139_0:99$ ip community-list expanded c1 permit 4998 ^65000:4_0:139_0:100$ ip community-list expanded c1 permit 4999 ^65000:4_0:139_0:101$ ip community-list expanded c1 permit 5000 ^65000:4_0:139_0:102$ ip community-list expanded c1 permit 5001 ^65000:4_0:139_0:103$ ip community-list expanded c1 permit 5002 ^65000:4_0:139_0:104$ ip community-list expanded c1 permit 5003 ^65000:4_0:139_0:105$ ip community-list expanded c1 permit 5004 ^65000:4_0:139_0:106$ ip community-list expanded c1 permit 5005 ^65000:4_0:139_0:107$ ip community-list expanded c1 permit 5006 ^65000:4_0:139_0:108$ ip community-list expanded c1 permit 5007 ^65000:4_0:139_0:109$ ip community-list expanded c1 permit 5008 ^65000:4_0:139_0:110$ ip community-list expanded c1 permit 5009 ^65000:4_0:139_0:111$ ip community-list expanded c1 permit 5010 ^65000:4_0:139_0:112$ ip community-list expanded c1 permit 5011 ^65000:4_0:139_0:113$ ip community-list expanded c1 permit 5012 ^65000:4_0:139_0:114$ ip community-list expanded c1 permit 5013 ^65000:4_0:139_0:115$ ip community-list expanded c1 permit 5014 ^65000:4_0:139_0:116$ ip community-list expanded c1 permit 5015 ^65000:4_0:139_0:117$ ip community-list expanded c1 permit 5016 ^65000:4_0:139_0:118$ ip community-list expanded c1 permit 5017 ^65000:4_0:139_0:119$ ip community-list expanded c1 permit 5018 ^65000:4_0:139_0:120$ ip community-list expanded c1 permit 5019 ^65000:4_0:139_0:121$ ip community-list expanded c1 permit 5020 ^65000:4_0:139_0:122$ ip community-list expanded c1 permit 5021 ^65000:4_0:139_0:123$ ip community-list expanded c1 permit 5022 ^65000:4_0:139_0:124$ ip community-list expanded c1 permit 5023 ^65000:4_0:139_0:125$ ip community-list expanded c1 permit 5024 ^65000:4_0:139_0:126$ ip community-list expanded c1 permit 5025 ^65000:4_0:139_0:127$ ip community-list expanded c1 permit 5026 ^65000:4_0:139_0:128$ ip community-list expanded c1 permit 5027 ^65000:4_0:139_0:129$ ip community-list expanded c1 permit 5028 ^65000:4_0:139_0:130$ ip community-list expanded c1 permit 5029 ^65000:4_0:139_0:131$ ip community-list expanded c1 permit 5030 ^65000:4_0:139_0:132$ ip community-list expanded c1 permit 5031 ^65000:4_0:139_0:133$ ip community-list expanded c1 permit 5032 ^65000:4_0:139_0:134$ ip community-list expanded c1 permit 5033 ^65000:4_0:139_0:135$ ip community-list expanded c1 permit 5034 ^65000:4_0:139_0:136$ ip community-list expanded c1 permit 5035 ^65000:4_0:139_0:137$ ip community-list expanded c1 permit 5036 ^65000:3_0:139_0:138$ ip community-list expanded c1 permit 5037 ^65000:4_0:139_0:138$ ip community-list expanded c1 permit 5038 ^65000:4_0:139_0:139$ ip community-list expanded c1 permit 5039 ^65000:4_0:140_0:71$ ip community-list expanded c1 permit 5040 ^65000:4_0:140_0:72$ ip community-list expanded c1 permit 5041 ^65000:4_0:140_0:73$ ip community-list expanded c1 permit 5042 ^65000:4_0:140_0:74$ ip community-list expanded c1 permit 5043 ^65000:4_0:140_0:75$ ip community-list expanded c1 permit 5044 ^65000:4_0:140_0:76$ ip community-list expanded c1 permit 5045 ^65000:4_0:140_0:77$ ip community-list expanded c1 permit 5046 ^65000:4_0:140_0:78$ ip community-list expanded c1 permit 5047 ^65000:4_0:140_0:79$ ip community-list expanded c1 permit 5048 ^65000:4_0:140_0:80$ ip community-list expanded c1 permit 5049 ^65000:4_0:140_0:81$ ip community-list expanded c1 permit 5050 ^65000:4_0:140_0:82$ ip community-list expanded c1 permit 5051 ^65000:4_0:140_0:83$ ip community-list expanded c1 permit 5052 ^65000:4_0:140_0:84$ ip community-list expanded c1 permit 5053 ^65000:4_0:140_0:85$ ip community-list expanded c1 permit 5054 ^65000:4_0:140_0:86$ ip community-list expanded c1 permit 5055 ^65000:4_0:140_0:87$ ip community-list expanded c1 permit 5056 ^65000:4_0:140_0:88$ ip community-list expanded c1 permit 5057 ^65000:4_0:140_0:89$ ip community-list expanded c1 permit 5058 ^65000:4_0:140_0:90$ ip community-list expanded c1 permit 5059 ^65000:4_0:140_0:91$ ip community-list expanded c1 permit 5060 ^65000:4_0:140_0:92$ ip community-list expanded c1 permit 5061 ^65000:4_0:140_0:93$ ip community-list expanded c1 permit 5062 ^65000:4_0:140_0:94$ ip community-list expanded c1 permit 5063 ^65000:4_0:140_0:95$ ip community-list expanded c1 permit 5064 ^65000:4_0:140_0:96$ ip community-list expanded c1 permit 5065 ^65000:4_0:140_0:97$ ip community-list expanded c1 permit 5066 ^65000:4_0:140_0:98$ ip community-list expanded c1 permit 5067 ^65000:4_0:140_0:99$ ip community-list expanded c1 permit 5068 ^65000:4_0:140_0:100$ ip community-list expanded c1 permit 5069 ^65000:4_0:140_0:101$ ip community-list expanded c1 permit 5070 ^65000:4_0:140_0:102$ ip community-list expanded c1 permit 5071 ^65000:4_0:140_0:103$ ip community-list expanded c1 permit 5072 ^65000:4_0:140_0:104$ ip community-list expanded c1 permit 5073 ^65000:4_0:140_0:105$ ip community-list expanded c1 permit 5074 ^65000:4_0:140_0:106$ ip community-list expanded c1 permit 5075 ^65000:4_0:140_0:107$ ip community-list expanded c1 permit 5076 ^65000:4_0:140_0:108$ ip community-list expanded c1 permit 5077 ^65000:4_0:140_0:109$ ip community-list expanded c1 permit 5078 ^65000:4_0:140_0:110$ ip community-list expanded c1 permit 5079 ^65000:4_0:140_0:111$ ip community-list expanded c1 permit 5080 ^65000:4_0:140_0:112$ ip community-list expanded c1 permit 5081 ^65000:4_0:140_0:113$ ip community-list expanded c1 permit 5082 ^65000:4_0:140_0:114$ ip community-list expanded c1 permit 5083 ^65000:4_0:140_0:115$ ip community-list expanded c1 permit 5084 ^65000:4_0:140_0:116$ ip community-list expanded c1 permit 5085 ^65000:4_0:140_0:117$ ip community-list expanded c1 permit 5086 ^65000:4_0:140_0:118$ ip community-list expanded c1 permit 5087 ^65000:4_0:140_0:119$ ip community-list expanded c1 permit 5088 ^65000:4_0:140_0:120$ ip community-list expanded c1 permit 5089 ^65000:4_0:140_0:121$ ip community-list expanded c1 permit 5090 ^65000:4_0:140_0:122$ ip community-list expanded c1 permit 5091 ^65000:4_0:140_0:123$ ip community-list expanded c1 permit 5092 ^65000:4_0:140_0:124$ ip community-list expanded c1 permit 5093 ^65000:4_0:140_0:125$ ip community-list expanded c1 permit 5094 ^65000:4_0:140_0:126$ ip community-list expanded c1 permit 5095 ^65000:4_0:140_0:127$ ip community-list expanded c1 permit 5096 ^65000:4_0:140_0:128$ ip community-list expanded c1 permit 5097 ^65000:4_0:140_0:129$ ip community-list expanded c1 permit 5098 ^65000:4_0:140_0:130$ ip community-list expanded c1 permit 5099 ^65000:4_0:140_0:131$ ip community-list expanded c1 permit 5100 ^65000:4_0:140_0:132$ ip community-list expanded c1 permit 5101 ^65000:4_0:140_0:133$ ip community-list expanded c1 permit 5102 ^65000:4_0:140_0:134$ ip community-list expanded c1 permit 5103 ^65000:4_0:140_0:135$ ip community-list expanded c1 permit 5104 ^65000:4_0:140_0:136$ ip community-list expanded c1 permit 5105 ^65000:4_0:140_0:137$ ip community-list expanded c1 permit 5106 ^65000:4_0:140_0:138$ ip community-list expanded c1 permit 5107 ^65000:3_0:140_0:139$ ip community-list expanded c1 permit 5108 ^65000:4_0:140_0:139$ ip community-list expanded c1 permit 5109 ^65000:4_0:140_0:140$ ip community-list expanded c1 permit 5110 ^65000:4_0:141_0:71$ ip community-list expanded c1 permit 5111 ^65000:4_0:141_0:72$ ip community-list expanded c1 permit 5112 ^65000:4_0:141_0:73$ ip community-list expanded c1 permit 5113 ^65000:4_0:141_0:74$ ip community-list expanded c1 permit 5114 ^65000:4_0:141_0:75$ ip community-list expanded c1 permit 5115 ^65000:4_0:141_0:76$ ip community-list expanded c1 permit 5116 ^65000:4_0:141_0:77$ ip community-list expanded c1 permit 5117 ^65000:4_0:141_0:78$ ip community-list expanded c1 permit 5118 ^65000:4_0:141_0:79$ ip community-list expanded c1 permit 5119 ^65000:4_0:141_0:80$ ip community-list expanded c1 permit 5120 ^65000:4_0:141_0:81$ ip community-list expanded c1 permit 5121 ^65000:4_0:141_0:82$ ip community-list expanded c1 permit 5122 ^65000:4_0:141_0:83$ ip community-list expanded c1 permit 5123 ^65000:4_0:141_0:84$ ip community-list expanded c1 permit 5124 ^65000:4_0:141_0:85$ ip community-list expanded c1 permit 5125 ^65000:4_0:141_0:86$ ip community-list expanded c1 permit 5126 ^65000:4_0:141_0:87$ ip community-list expanded c1 permit 5127 ^65000:4_0:141_0:88$ ip community-list expanded c1 permit 5128 ^65000:4_0:141_0:89$ ip community-list expanded c1 permit 5129 ^65000:4_0:141_0:90$ ip community-list expanded c1 permit 5130 ^65000:4_0:141_0:91$ ip community-list expanded c1 permit 5131 ^65000:4_0:141_0:92$ ip community-list expanded c1 permit 5132 ^65000:4_0:141_0:93$ ip community-list expanded c1 permit 5133 ^65000:4_0:141_0:94$ ip community-list expanded c1 permit 5134 ^65000:4_0:141_0:95$ ip community-list expanded c1 permit 5135 ^65000:4_0:141_0:96$ ip community-list expanded c1 permit 5136 ^65000:4_0:141_0:97$ ip community-list expanded c1 permit 5137 ^65000:4_0:141_0:98$ ip community-list expanded c1 permit 5138 ^65000:4_0:141_0:99$ ip community-list expanded c1 permit 5139 ^65000:4_0:141_0:100$ ip community-list expanded c1 permit 5140 ^65000:4_0:141_0:101$ ip community-list expanded c1 permit 5141 ^65000:4_0:141_0:102$ ip community-list expanded c1 permit 5142 ^65000:4_0:141_0:103$ ip community-list expanded c1 permit 5143 ^65000:4_0:141_0:104$ ip community-list expanded c1 permit 5144 ^65000:4_0:141_0:105$ ip community-list expanded c1 permit 5145 ^65000:4_0:141_0:106$ ip community-list expanded c1 permit 5146 ^65000:4_0:141_0:107$ ip community-list expanded c1 permit 5147 ^65000:4_0:141_0:108$ ip community-list expanded c1 permit 5148 ^65000:4_0:141_0:109$ ip community-list expanded c1 permit 5149 ^65000:4_0:141_0:110$ ip community-list expanded c1 permit 5150 ^65000:4_0:141_0:111$ ip community-list expanded c1 permit 5151 ^65000:4_0:141_0:112$ ip community-list expanded c1 permit 5152 ^65000:4_0:141_0:113$ ip community-list expanded c1 permit 5153 ^65000:4_0:141_0:114$ ip community-list expanded c1 permit 5154 ^65000:4_0:141_0:115$ ip community-list expanded c1 permit 5155 ^65000:4_0:141_0:116$ ip community-list expanded c1 permit 5156 ^65000:4_0:141_0:117$ ip community-list expanded c1 permit 5157 ^65000:4_0:141_0:118$ ip community-list expanded c1 permit 5158 ^65000:4_0:141_0:119$ ip community-list expanded c1 permit 5159 ^65000:4_0:141_0:120$ ip community-list expanded c1 permit 5160 ^65000:4_0:141_0:121$ ip community-list expanded c1 permit 5161 ^65000:4_0:141_0:122$ ip community-list expanded c1 permit 5162 ^65000:4_0:141_0:123$ ip community-list expanded c1 permit 5163 ^65000:4_0:141_0:124$ ip community-list expanded c1 permit 5164 ^65000:4_0:141_0:125$ ip community-list expanded c1 permit 5165 ^65000:4_0:141_0:126$ ip community-list expanded c1 permit 5166 ^65000:4_0:141_0:127$ ip community-list expanded c1 permit 5167 ^65000:4_0:141_0:128$ ip community-list expanded c1 permit 5168 ^65000:4_0:141_0:129$ ip community-list expanded c1 permit 5169 ^65000:4_0:141_0:130$ ip community-list expanded c1 permit 5170 ^65000:4_0:141_0:131$ ip community-list expanded c1 permit 5171 ^65000:4_0:141_0:132$ ip community-list expanded c1 permit 5172 ^65000:4_0:141_0:133$ ip community-list expanded c1 permit 5173 ^65000:4_0:141_0:134$ ip community-list expanded c1 permit 5174 ^65000:4_0:141_0:135$ ip community-list expanded c1 permit 5175 ^65000:4_0:141_0:136$ ip community-list expanded c1 permit 5176 ^65000:4_0:141_0:137$ ip community-list expanded c1 permit 5177 ^65000:4_0:141_0:138$ ip community-list expanded c1 permit 5178 ^65000:4_0:141_0:139$ ip community-list expanded c1 permit 5179 ^65000:3_0:141_0:140$ ip community-list expanded c1 permit 5180 ^65000:4_0:141_0:140$ ip community-list expanded c1 permit 5181 ^65000:4_0:141_0:141$ ip community-list expanded c1 permit 5182 ^65000:4_0:142_0:72$ ip community-list expanded c1 permit 5183 ^65000:4_0:142_0:73$ ip community-list expanded c1 permit 5184 ^65000:4_0:142_0:74$ ip community-list expanded c1 permit 5185 ^65000:4_0:142_0:75$ ip community-list expanded c1 permit 5186 ^65000:4_0:142_0:76$ ip community-list expanded c1 permit 5187 ^65000:4_0:142_0:77$ ip community-list expanded c1 permit 5188 ^65000:4_0:142_0:78$ ip community-list expanded c1 permit 5189 ^65000:4_0:142_0:79$ ip community-list expanded c1 permit 5190 ^65000:4_0:142_0:80$ ip community-list expanded c1 permit 5191 ^65000:4_0:142_0:81$ ip community-list expanded c1 permit 5192 ^65000:4_0:142_0:82$ ip community-list expanded c1 permit 5193 ^65000:4_0:142_0:83$ ip community-list expanded c1 permit 5194 ^65000:4_0:142_0:84$ ip community-list expanded c1 permit 5195 ^65000:4_0:142_0:85$ ip community-list expanded c1 permit 5196 ^65000:4_0:142_0:86$ ip community-list expanded c1 permit 5197 ^65000:4_0:142_0:87$ ip community-list expanded c1 permit 5198 ^65000:4_0:142_0:88$ ip community-list expanded c1 permit 5199 ^65000:4_0:142_0:89$ ip community-list expanded c1 permit 5200 ^65000:4_0:142_0:90$ ip community-list expanded c1 permit 5201 ^65000:4_0:142_0:91$ ip community-list expanded c1 permit 5202 ^65000:4_0:142_0:92$ ip community-list expanded c1 permit 5203 ^65000:4_0:142_0:93$ ip community-list expanded c1 permit 5204 ^65000:4_0:142_0:94$ ip community-list expanded c1 permit 5205 ^65000:4_0:142_0:95$ ip community-list expanded c1 permit 5206 ^65000:4_0:142_0:96$ ip community-list expanded c1 permit 5207 ^65000:4_0:142_0:97$ ip community-list expanded c1 permit 5208 ^65000:4_0:142_0:98$ ip community-list expanded c1 permit 5209 ^65000:4_0:142_0:99$ ip community-list expanded c1 permit 5210 ^65000:4_0:142_0:100$ ip community-list expanded c1 permit 5211 ^65000:4_0:142_0:101$ ip community-list expanded c1 permit 5212 ^65000:4_0:142_0:102$ ip community-list expanded c1 permit 5213 ^65000:4_0:142_0:103$ ip community-list expanded c1 permit 5214 ^65000:4_0:142_0:104$ ip community-list expanded c1 permit 5215 ^65000:4_0:142_0:105$ ip community-list expanded c1 permit 5216 ^65000:4_0:142_0:106$ ip community-list expanded c1 permit 5217 ^65000:4_0:142_0:107$ ip community-list expanded c1 permit 5218 ^65000:4_0:142_0:108$ ip community-list expanded c1 permit 5219 ^65000:4_0:142_0:109$ ip community-list expanded c1 permit 5220 ^65000:4_0:142_0:110$ ip community-list expanded c1 permit 5221 ^65000:4_0:142_0:111$ ip community-list expanded c1 permit 5222 ^65000:4_0:142_0:112$ ip community-list expanded c1 permit 5223 ^65000:4_0:142_0:113$ ip community-list expanded c1 permit 5224 ^65000:4_0:142_0:114$ ip community-list expanded c1 permit 5225 ^65000:4_0:142_0:115$ ip community-list expanded c1 permit 5226 ^65000:4_0:142_0:116$ ip community-list expanded c1 permit 5227 ^65000:4_0:142_0:117$ ip community-list expanded c1 permit 5228 ^65000:4_0:142_0:118$ ip community-list expanded c1 permit 5229 ^65000:4_0:142_0:119$ ip community-list expanded c1 permit 5230 ^65000:4_0:142_0:120$ ip community-list expanded c1 permit 5231 ^65000:4_0:142_0:121$ ip community-list expanded c1 permit 5232 ^65000:4_0:142_0:122$ ip community-list expanded c1 permit 5233 ^65000:4_0:142_0:123$ ip community-list expanded c1 permit 5234 ^65000:4_0:142_0:124$ ip community-list expanded c1 permit 5235 ^65000:4_0:142_0:125$ ip community-list expanded c1 permit 5236 ^65000:4_0:142_0:126$ ip community-list expanded c1 permit 5237 ^65000:4_0:142_0:127$ ip community-list expanded c1 permit 5238 ^65000:4_0:142_0:128$ ip community-list expanded c1 permit 5239 ^65000:4_0:142_0:129$ ip community-list expanded c1 permit 5240 ^65000:4_0:142_0:130$ ip community-list expanded c1 permit 5241 ^65000:4_0:142_0:131$ ip community-list expanded c1 permit 5242 ^65000:4_0:142_0:132$ ip community-list expanded c1 permit 5243 ^65000:4_0:142_0:133$ ip community-list expanded c1 permit 5244 ^65000:4_0:142_0:134$ ip community-list expanded c1 permit 5245 ^65000:4_0:142_0:135$ ip community-list expanded c1 permit 5246 ^65000:4_0:142_0:136$ ip community-list expanded c1 permit 5247 ^65000:4_0:142_0:137$ ip community-list expanded c1 permit 5248 ^65000:4_0:142_0:138$ ip community-list expanded c1 permit 5249 ^65000:4_0:142_0:139$ ip community-list expanded c1 permit 5250 ^65000:4_0:142_0:140$ ip community-list expanded c1 permit 5251 ^65000:3_0:142_0:141$ ip community-list expanded c1 permit 5252 ^65000:4_0:142_0:141$ ip community-list expanded c1 permit 5253 ^65000:4_0:142_0:142$ ip community-list expanded c1 permit 5254 ^65000:4_0:143_0:72$ ip community-list expanded c1 permit 5255 ^65000:4_0:143_0:73$ ip community-list expanded c1 permit 5256 ^65000:4_0:143_0:74$ ip community-list expanded c1 permit 5257 ^65000:4_0:143_0:75$ ip community-list expanded c1 permit 5258 ^65000:4_0:143_0:76$ ip community-list expanded c1 permit 5259 ^65000:4_0:143_0:77$ ip community-list expanded c1 permit 5260 ^65000:4_0:143_0:78$ ip community-list expanded c1 permit 5261 ^65000:4_0:143_0:79$ ip community-list expanded c1 permit 5262 ^65000:4_0:143_0:80$ ip community-list expanded c1 permit 5263 ^65000:4_0:143_0:81$ ip community-list expanded c1 permit 5264 ^65000:4_0:143_0:82$ ip community-list expanded c1 permit 5265 ^65000:4_0:143_0:83$ ip community-list expanded c1 permit 5266 ^65000:4_0:143_0:84$ ip community-list expanded c1 permit 5267 ^65000:4_0:143_0:85$ ip community-list expanded c1 permit 5268 ^65000:4_0:143_0:86$ ip community-list expanded c1 permit 5269 ^65000:4_0:143_0:87$ ip community-list expanded c1 permit 5270 ^65000:4_0:143_0:88$ ip community-list expanded c1 permit 5271 ^65000:4_0:143_0:89$ ip community-list expanded c1 permit 5272 ^65000:4_0:143_0:90$ ip community-list expanded c1 permit 5273 ^65000:4_0:143_0:91$ ip community-list expanded c1 permit 5274 ^65000:4_0:143_0:92$ ip community-list expanded c1 permit 5275 ^65000:4_0:143_0:93$ ip community-list expanded c1 permit 5276 ^65000:4_0:143_0:94$ ip community-list expanded c1 permit 5277 ^65000:4_0:143_0:95$ ip community-list expanded c1 permit 5278 ^65000:4_0:143_0:96$ ip community-list expanded c1 permit 5279 ^65000:4_0:143_0:97$ ip community-list expanded c1 permit 5280 ^65000:4_0:143_0:98$ ip community-list expanded c1 permit 5281 ^65000:4_0:143_0:99$ ip community-list expanded c1 permit 5282 ^65000:4_0:143_0:100$ ip community-list expanded c1 permit 5283 ^65000:4_0:143_0:101$ ip community-list expanded c1 permit 5284 ^65000:4_0:143_0:102$ ip community-list expanded c1 permit 5285 ^65000:4_0:143_0:103$ ip community-list expanded c1 permit 5286 ^65000:4_0:143_0:104$ ip community-list expanded c1 permit 5287 ^65000:4_0:143_0:105$ ip community-list expanded c1 permit 5288 ^65000:4_0:143_0:106$ ip community-list expanded c1 permit 5289 ^65000:4_0:143_0:107$ ip community-list expanded c1 permit 5290 ^65000:4_0:143_0:108$ ip community-list expanded c1 permit 5291 ^65000:4_0:143_0:109$ ip community-list expanded c1 permit 5292 ^65000:4_0:143_0:110$ ip community-list expanded c1 permit 5293 ^65000:4_0:143_0:111$ ip community-list expanded c1 permit 5294 ^65000:4_0:143_0:112$ ip community-list expanded c1 permit 5295 ^65000:4_0:143_0:113$ ip community-list expanded c1 permit 5296 ^65000:4_0:143_0:114$ ip community-list expanded c1 permit 5297 ^65000:4_0:143_0:115$ ip community-list expanded c1 permit 5298 ^65000:4_0:143_0:116$ ip community-list expanded c1 permit 5299 ^65000:4_0:143_0:117$ ip community-list expanded c1 permit 5300 ^65000:4_0:143_0:118$ ip community-list expanded c1 permit 5301 ^65000:4_0:143_0:119$ ip community-list expanded c1 permit 5302 ^65000:4_0:143_0:120$ ip community-list expanded c1 permit 5303 ^65000:4_0:143_0:121$ ip community-list expanded c1 permit 5304 ^65000:4_0:143_0:122$ ip community-list expanded c1 permit 5305 ^65000:4_0:143_0:123$ ip community-list expanded c1 permit 5306 ^65000:4_0:143_0:124$ ip community-list expanded c1 permit 5307 ^65000:4_0:143_0:125$ ip community-list expanded c1 permit 5308 ^65000:4_0:143_0:126$ ip community-list expanded c1 permit 5309 ^65000:4_0:143_0:127$ ip community-list expanded c1 permit 5310 ^65000:4_0:143_0:128$ ip community-list expanded c1 permit 5311 ^65000:4_0:143_0:129$ ip community-list expanded c1 permit 5312 ^65000:4_0:143_0:130$ ip community-list expanded c1 permit 5313 ^65000:4_0:143_0:131$ ip community-list expanded c1 permit 5314 ^65000:4_0:143_0:132$ ip community-list expanded c1 permit 5315 ^65000:4_0:143_0:133$ ip community-list expanded c1 permit 5316 ^65000:4_0:143_0:134$ ip community-list expanded c1 permit 5317 ^65000:4_0:143_0:135$ ip community-list expanded c1 permit 5318 ^65000:4_0:143_0:136$ ip community-list expanded c1 permit 5319 ^65000:4_0:143_0:137$ ip community-list expanded c1 permit 5320 ^65000:4_0:143_0:138$ ip community-list expanded c1 permit 5321 ^65000:4_0:143_0:139$ ip community-list expanded c1 permit 5322 ^65000:4_0:143_0:140$ ip community-list expanded c1 permit 5323 ^65000:4_0:143_0:141$ ip community-list expanded c1 permit 5324 ^65000:3_0:143_0:142$ ip community-list expanded c1 permit 5325 ^65000:4_0:143_0:142$ ip community-list expanded c1 permit 5326 ^65000:4_0:143_0:143$ ip community-list expanded c1 permit 5327 ^65000:4_0:144_0:73$ ip community-list expanded c1 permit 5328 ^65000:4_0:144_0:74$ ip community-list expanded c1 permit 5329 ^65000:4_0:144_0:75$ ip community-list expanded c1 permit 5330 ^65000:4_0:144_0:76$ ip community-list expanded c1 permit 5331 ^65000:4_0:144_0:77$ ip community-list expanded c1 permit 5332 ^65000:4_0:144_0:78$ ip community-list expanded c1 permit 5333 ^65000:4_0:144_0:79$ ip community-list expanded c1 permit 5334 ^65000:4_0:144_0:80$ ip community-list expanded c1 permit 5335 ^65000:4_0:144_0:81$ ip community-list expanded c1 permit 5336 ^65000:4_0:144_0:82$ ip community-list expanded c1 permit 5337 ^65000:4_0:144_0:83$ ip community-list expanded c1 permit 5338 ^65000:4_0:144_0:84$ ip community-list expanded c1 permit 5339 ^65000:4_0:144_0:85$ ip community-list expanded c1 permit 5340 ^65000:4_0:144_0:86$ ip community-list expanded c1 permit 5341 ^65000:4_0:144_0:87$ ip community-list expanded c1 permit 5342 ^65000:4_0:144_0:88$ ip community-list expanded c1 permit 5343 ^65000:4_0:144_0:89$ ip community-list expanded c1 permit 5344 ^65000:4_0:144_0:90$ ip community-list expanded c1 permit 5345 ^65000:4_0:144_0:91$ ip community-list expanded c1 permit 5346 ^65000:4_0:144_0:92$ ip community-list expanded c1 permit 5347 ^65000:4_0:144_0:93$ ip community-list expanded c1 permit 5348 ^65000:4_0:144_0:94$ ip community-list expanded c1 permit 5349 ^65000:4_0:144_0:95$ ip community-list expanded c1 permit 5350 ^65000:4_0:144_0:96$ ip community-list expanded c1 permit 5351 ^65000:4_0:144_0:97$ ip community-list expanded c1 permit 5352 ^65000:4_0:144_0:98$ ip community-list expanded c1 permit 5353 ^65000:4_0:144_0:99$ ip community-list expanded c1 permit 5354 ^65000:4_0:144_0:100$ ip community-list expanded c1 permit 5355 ^65000:4_0:144_0:101$ ip community-list expanded c1 permit 5356 ^65000:4_0:144_0:102$ ip community-list expanded c1 permit 5357 ^65000:4_0:144_0:103$ ip community-list expanded c1 permit 5358 ^65000:4_0:144_0:104$ ip community-list expanded c1 permit 5359 ^65000:4_0:144_0:105$ ip community-list expanded c1 permit 5360 ^65000:4_0:144_0:106$ ip community-list expanded c1 permit 5361 ^65000:4_0:144_0:107$ ip community-list expanded c1 permit 5362 ^65000:4_0:144_0:108$ ip community-list expanded c1 permit 5363 ^65000:4_0:144_0:109$ ip community-list expanded c1 permit 5364 ^65000:4_0:144_0:110$ ip community-list expanded c1 permit 5365 ^65000:4_0:144_0:111$ ip community-list expanded c1 permit 5366 ^65000:4_0:144_0:112$ ip community-list expanded c1 permit 5367 ^65000:4_0:144_0:113$ ip community-list expanded c1 permit 5368 ^65000:4_0:144_0:114$ ip community-list expanded c1 permit 5369 ^65000:4_0:144_0:115$ ip community-list expanded c1 permit 5370 ^65000:4_0:144_0:116$ ip community-list expanded c1 permit 5371 ^65000:4_0:144_0:117$ ip community-list expanded c1 permit 5372 ^65000:4_0:144_0:118$ ip community-list expanded c1 permit 5373 ^65000:4_0:144_0:119$ ip community-list expanded c1 permit 5374 ^65000:4_0:144_0:120$ ip community-list expanded c1 permit 5375 ^65000:4_0:144_0:121$ ip community-list expanded c1 permit 5376 ^65000:4_0:144_0:122$ ip community-list expanded c1 permit 5377 ^65000:4_0:144_0:123$ ip community-list expanded c1 permit 5378 ^65000:4_0:144_0:124$ ip community-list expanded c1 permit 5379 ^65000:4_0:144_0:125$ ip community-list expanded c1 permit 5380 ^65000:4_0:144_0:126$ ip community-list expanded c1 permit 5381 ^65000:4_0:144_0:127$ ip community-list expanded c1 permit 5382 ^65000:4_0:144_0:128$ ip community-list expanded c1 permit 5383 ^65000:4_0:144_0:129$ ip community-list expanded c1 permit 5384 ^65000:4_0:144_0:130$ ip community-list expanded c1 permit 5385 ^65000:4_0:144_0:131$ ip community-list expanded c1 permit 5386 ^65000:4_0:144_0:132$ ip community-list expanded c1 permit 5387 ^65000:4_0:144_0:133$ ip community-list expanded c1 permit 5388 ^65000:4_0:144_0:134$ ip community-list expanded c1 permit 5389 ^65000:4_0:144_0:135$ ip community-list expanded c1 permit 5390 ^65000:4_0:144_0:136$ ip community-list expanded c1 permit 5391 ^65000:4_0:144_0:137$ ip community-list expanded c1 permit 5392 ^65000:4_0:144_0:138$ ip community-list expanded c1 permit 5393 ^65000:4_0:144_0:139$ ip community-list expanded c1 permit 5394 ^65000:4_0:144_0:140$ ip community-list expanded c1 permit 5395 ^65000:4_0:144_0:141$ ip community-list expanded c1 permit 5396 ^65000:4_0:144_0:142$ ip community-list expanded c1 permit 5397 ^65000:3_0:144_0:143$ ip community-list expanded c1 permit 5398 ^65000:4_0:144_0:143$ ip community-list expanded c1 permit 5399 ^65000:4_0:144_0:144$ ip community-list expanded c1 permit 5400 ^65000:4_0:145_0:73$ ip community-list expanded c1 permit 5401 ^65000:4_0:145_0:74$ ip community-list expanded c1 permit 5402 ^65000:4_0:145_0:75$ ip community-list expanded c1 permit 5403 ^65000:4_0:145_0:76$ ip community-list expanded c1 permit 5404 ^65000:4_0:145_0:77$ ip community-list expanded c1 permit 5405 ^65000:4_0:145_0:78$ ip community-list expanded c1 permit 5406 ^65000:4_0:145_0:79$ ip community-list expanded c1 permit 5407 ^65000:4_0:145_0:80$ ip community-list expanded c1 permit 5408 ^65000:4_0:145_0:81$ ip community-list expanded c1 permit 5409 ^65000:4_0:145_0:82$ ip community-list expanded c1 permit 5410 ^65000:4_0:145_0:83$ ip community-list expanded c1 permit 5411 ^65000:4_0:145_0:84$ ip community-list expanded c1 permit 5412 ^65000:4_0:145_0:85$ ip community-list expanded c1 permit 5413 ^65000:4_0:145_0:86$ ip community-list expanded c1 permit 5414 ^65000:4_0:145_0:87$ ip community-list expanded c1 permit 5415 ^65000:4_0:145_0:88$ ip community-list expanded c1 permit 5416 ^65000:4_0:145_0:89$ ip community-list expanded c1 permit 5417 ^65000:4_0:145_0:90$ ip community-list expanded c1 permit 5418 ^65000:4_0:145_0:91$ ip community-list expanded c1 permit 5419 ^65000:4_0:145_0:92$ ip community-list expanded c1 permit 5420 ^65000:4_0:145_0:93$ ip community-list expanded c1 permit 5421 ^65000:4_0:145_0:94$ ip community-list expanded c1 permit 5422 ^65000:4_0:145_0:95$ ip community-list expanded c1 permit 5423 ^65000:4_0:145_0:96$ ip community-list expanded c1 permit 5424 ^65000:4_0:145_0:97$ ip community-list expanded c1 permit 5425 ^65000:4_0:145_0:98$ ip community-list expanded c1 permit 5426 ^65000:4_0:145_0:99$ ip community-list expanded c1 permit 5427 ^65000:4_0:145_0:100$ ip community-list expanded c1 permit 5428 ^65000:4_0:145_0:101$ ip community-list expanded c1 permit 5429 ^65000:4_0:145_0:102$ ip community-list expanded c1 permit 5430 ^65000:4_0:145_0:103$ ip community-list expanded c1 permit 5431 ^65000:4_0:145_0:104$ ip community-list expanded c1 permit 5432 ^65000:4_0:145_0:105$ ip community-list expanded c1 permit 5433 ^65000:4_0:145_0:106$ ip community-list expanded c1 permit 5434 ^65000:4_0:145_0:107$ ip community-list expanded c1 permit 5435 ^65000:4_0:145_0:108$ ip community-list expanded c1 permit 5436 ^65000:4_0:145_0:109$ ip community-list expanded c1 permit 5437 ^65000:4_0:145_0:110$ ip community-list expanded c1 permit 5438 ^65000:4_0:145_0:111$ ip community-list expanded c1 permit 5439 ^65000:4_0:145_0:112$ ip community-list expanded c1 permit 5440 ^65000:4_0:145_0:113$ ip community-list expanded c1 permit 5441 ^65000:4_0:145_0:114$ ip community-list expanded c1 permit 5442 ^65000:4_0:145_0:115$ ip community-list expanded c1 permit 5443 ^65000:4_0:145_0:116$ ip community-list expanded c1 permit 5444 ^65000:4_0:145_0:117$ ip community-list expanded c1 permit 5445 ^65000:4_0:145_0:118$ ip community-list expanded c1 permit 5446 ^65000:4_0:145_0:119$ ip community-list expanded c1 permit 5447 ^65000:4_0:145_0:120$ ip community-list expanded c1 permit 5448 ^65000:4_0:145_0:121$ ip community-list expanded c1 permit 5449 ^65000:4_0:145_0:122$ ip community-list expanded c1 permit 5450 ^65000:4_0:145_0:123$ ip community-list expanded c1 permit 5451 ^65000:4_0:145_0:124$ ip community-list expanded c1 permit 5452 ^65000:4_0:145_0:125$ ip community-list expanded c1 permit 5453 ^65000:4_0:145_0:126$ ip community-list expanded c1 permit 5454 ^65000:4_0:145_0:127$ ip community-list expanded c1 permit 5455 ^65000:4_0:145_0:128$ ip community-list expanded c1 permit 5456 ^65000:4_0:145_0:129$ ip community-list expanded c1 permit 5457 ^65000:4_0:145_0:130$ ip community-list expanded c1 permit 5458 ^65000:4_0:145_0:131$ ip community-list expanded c1 permit 5459 ^65000:4_0:145_0:132$ ip community-list expanded c1 permit 5460 ^65000:4_0:145_0:133$ ip community-list expanded c1 permit 5461 ^65000:4_0:145_0:134$ ip community-list expanded c1 permit 5462 ^65000:4_0:145_0:135$ ip community-list expanded c1 permit 5463 ^65000:4_0:145_0:136$ ip community-list expanded c1 permit 5464 ^65000:4_0:145_0:137$ ip community-list expanded c1 permit 5465 ^65000:4_0:145_0:138$ ip community-list expanded c1 permit 5466 ^65000:4_0:145_0:139$ ip community-list expanded c1 permit 5467 ^65000:4_0:145_0:140$ ip community-list expanded c1 permit 5468 ^65000:4_0:145_0:141$ ip community-list expanded c1 permit 5469 ^65000:4_0:145_0:142$ ip community-list expanded c1 permit 5470 ^65000:4_0:145_0:143$ ip community-list expanded c1 permit 5471 ^65000:3_0:145_0:144$ ip community-list expanded c1 permit 5472 ^65000:4_0:145_0:144$ ip community-list expanded c1 permit 5473 ^65000:4_0:145_0:145$ ip community-list expanded c1 permit 5474 ^65000:4_0:146_0:74$ ip community-list expanded c1 permit 5475 ^65000:4_0:146_0:75$ ip community-list expanded c1 permit 5476 ^65000:4_0:146_0:76$ ip community-list expanded c1 permit 5477 ^65000:4_0:146_0:77$ ip community-list expanded c1 permit 5478 ^65000:4_0:146_0:78$ ip community-list expanded c1 permit 5479 ^65000:4_0:146_0:79$ ip community-list expanded c1 permit 5480 ^65000:4_0:146_0:80$ ip community-list expanded c1 permit 5481 ^65000:4_0:146_0:81$ ip community-list expanded c1 permit 5482 ^65000:4_0:146_0:82$ ip community-list expanded c1 permit 5483 ^65000:4_0:146_0:83$ ip community-list expanded c1 permit 5484 ^65000:4_0:146_0:84$ ip community-list expanded c1 permit 5485 ^65000:4_0:146_0:85$ ip community-list expanded c1 permit 5486 ^65000:4_0:146_0:86$ ip community-list expanded c1 permit 5487 ^65000:4_0:146_0:87$ ip community-list expanded c1 permit 5488 ^65000:4_0:146_0:88$ ip community-list expanded c1 permit 5489 ^65000:4_0:146_0:89$ ip community-list expanded c1 permit 5490 ^65000:4_0:146_0:90$ ip community-list expanded c1 permit 5491 ^65000:4_0:146_0:91$ ip community-list expanded c1 permit 5492 ^65000:4_0:146_0:92$ ip community-list expanded c1 permit 5493 ^65000:4_0:146_0:93$ ip community-list expanded c1 permit 5494 ^65000:4_0:146_0:94$ ip community-list expanded c1 permit 5495 ^65000:4_0:146_0:95$ ip community-list expanded c1 permit 5496 ^65000:4_0:146_0:96$ ip community-list expanded c1 permit 5497 ^65000:4_0:146_0:97$ ip community-list expanded c1 permit 5498 ^65000:4_0:146_0:98$ ip community-list expanded c1 permit 5499 ^65000:4_0:146_0:99$ ip community-list expanded c1 permit 5500 ^65000:4_0:146_0:100$ ip community-list expanded c1 permit 5501 ^65000:4_0:146_0:101$ ip community-list expanded c1 permit 5502 ^65000:4_0:146_0:102$ ip community-list expanded c1 permit 5503 ^65000:4_0:146_0:103$ ip community-list expanded c1 permit 5504 ^65000:4_0:146_0:104$ ip community-list expanded c1 permit 5505 ^65000:4_0:146_0:105$ ip community-list expanded c1 permit 5506 ^65000:4_0:146_0:106$ ip community-list expanded c1 permit 5507 ^65000:4_0:146_0:107$ ip community-list expanded c1 permit 5508 ^65000:4_0:146_0:108$ ip community-list expanded c1 permit 5509 ^65000:4_0:146_0:109$ ip community-list expanded c1 permit 5510 ^65000:4_0:146_0:110$ ip community-list expanded c1 permit 5511 ^65000:4_0:146_0:111$ ip community-list expanded c1 permit 5512 ^65000:4_0:146_0:112$ ip community-list expanded c1 permit 5513 ^65000:4_0:146_0:113$ ip community-list expanded c1 permit 5514 ^65000:4_0:146_0:114$ ip community-list expanded c1 permit 5515 ^65000:4_0:146_0:115$ ip community-list expanded c1 permit 5516 ^65000:4_0:146_0:116$ ip community-list expanded c1 permit 5517 ^65000:4_0:146_0:117$ ip community-list expanded c1 permit 5518 ^65000:4_0:146_0:118$ ip community-list expanded c1 permit 5519 ^65000:4_0:146_0:119$ ip community-list expanded c1 permit 5520 ^65000:4_0:146_0:120$ ip community-list expanded c1 permit 5521 ^65000:4_0:146_0:121$ ip community-list expanded c1 permit 5522 ^65000:4_0:146_0:122$ ip community-list expanded c1 permit 5523 ^65000:4_0:146_0:123$ ip community-list expanded c1 permit 5524 ^65000:4_0:146_0:124$ ip community-list expanded c1 permit 5525 ^65000:4_0:146_0:125$ ip community-list expanded c1 permit 5526 ^65000:4_0:146_0:126$ ip community-list expanded c1 permit 5527 ^65000:4_0:146_0:127$ ip community-list expanded c1 permit 5528 ^65000:4_0:146_0:128$ ip community-list expanded c1 permit 5529 ^65000:4_0:146_0:129$ ip community-list expanded c1 permit 5530 ^65000:4_0:146_0:130$ ip community-list expanded c1 permit 5531 ^65000:4_0:146_0:131$ ip community-list expanded c1 permit 5532 ^65000:4_0:146_0:132$ ip community-list expanded c1 permit 5533 ^65000:4_0:146_0:133$ ip community-list expanded c1 permit 5534 ^65000:4_0:146_0:134$ ip community-list expanded c1 permit 5535 ^65000:4_0:146_0:135$ ip community-list expanded c1 permit 5536 ^65000:4_0:146_0:136$ ip community-list expanded c1 permit 5537 ^65000:4_0:146_0:137$ ip community-list expanded c1 permit 5538 ^65000:4_0:146_0:138$ ip community-list expanded c1 permit 5539 ^65000:4_0:146_0:139$ ip community-list expanded c1 permit 5540 ^65000:4_0:146_0:140$ ip community-list expanded c1 permit 5541 ^65000:4_0:146_0:141$ ip community-list expanded c1 permit 5542 ^65000:4_0:146_0:142$ ip community-list expanded c1 permit 5543 ^65000:4_0:146_0:143$ ip community-list expanded c1 permit 5544 ^65000:4_0:146_0:144$ ip community-list expanded c1 permit 5545 ^65000:3_0:146_0:145$ ip community-list expanded c1 permit 5546 ^65000:4_0:146_0:145$ ip community-list expanded c1 permit 5547 ^65000:4_0:146_0:146$ ip community-list expanded c1 permit 5548 ^65000:4_0:147_0:74$ ip community-list expanded c1 permit 5549 ^65000:4_0:147_0:75$ ip community-list expanded c1 permit 5550 ^65000:4_0:147_0:76$ ip community-list expanded c1 permit 5551 ^65000:4_0:147_0:77$ ip community-list expanded c1 permit 5552 ^65000:4_0:147_0:78$ ip community-list expanded c1 permit 5553 ^65000:4_0:147_0:79$ ip community-list expanded c1 permit 5554 ^65000:4_0:147_0:80$ ip community-list expanded c1 permit 5555 ^65000:4_0:147_0:81$ ip community-list expanded c1 permit 5556 ^65000:4_0:147_0:82$ ip community-list expanded c1 permit 5557 ^65000:4_0:147_0:83$ ip community-list expanded c1 permit 5558 ^65000:4_0:147_0:84$ ip community-list expanded c1 permit 5559 ^65000:4_0:147_0:85$ ip community-list expanded c1 permit 5560 ^65000:4_0:147_0:86$ ip community-list expanded c1 permit 5561 ^65000:4_0:147_0:87$ ip community-list expanded c1 permit 5562 ^65000:4_0:147_0:88$ ip community-list expanded c1 permit 5563 ^65000:4_0:147_0:89$ ip community-list expanded c1 permit 5564 ^65000:4_0:147_0:90$ ip community-list expanded c1 permit 5565 ^65000:4_0:147_0:91$ ip community-list expanded c1 permit 5566 ^65000:4_0:147_0:92$ ip community-list expanded c1 permit 5567 ^65000:4_0:147_0:93$ ip community-list expanded c1 permit 5568 ^65000:4_0:147_0:94$ ip community-list expanded c1 permit 5569 ^65000:4_0:147_0:95$ ip community-list expanded c1 permit 5570 ^65000:4_0:147_0:96$ ip community-list expanded c1 permit 5571 ^65000:4_0:147_0:97$ ip community-list expanded c1 permit 5572 ^65000:4_0:147_0:98$ ip community-list expanded c1 permit 5573 ^65000:4_0:147_0:99$ ip community-list expanded c1 permit 5574 ^65000:4_0:147_0:100$ ip community-list expanded c1 permit 5575 ^65000:4_0:147_0:101$ ip community-list expanded c1 permit 5576 ^65000:4_0:147_0:102$ ip community-list expanded c1 permit 5577 ^65000:4_0:147_0:103$ ip community-list expanded c1 permit 5578 ^65000:4_0:147_0:104$ ip community-list expanded c1 permit 5579 ^65000:4_0:147_0:105$ ip community-list expanded c1 permit 5580 ^65000:4_0:147_0:106$ ip community-list expanded c1 permit 5581 ^65000:4_0:147_0:107$ ip community-list expanded c1 permit 5582 ^65000:4_0:147_0:108$ ip community-list expanded c1 permit 5583 ^65000:4_0:147_0:109$ ip community-list expanded c1 permit 5584 ^65000:4_0:147_0:110$ ip community-list expanded c1 permit 5585 ^65000:4_0:147_0:111$ ip community-list expanded c1 permit 5586 ^65000:4_0:147_0:112$ ip community-list expanded c1 permit 5587 ^65000:4_0:147_0:113$ ip community-list expanded c1 permit 5588 ^65000:4_0:147_0:114$ ip community-list expanded c1 permit 5589 ^65000:4_0:147_0:115$ ip community-list expanded c1 permit 5590 ^65000:4_0:147_0:116$ ip community-list expanded c1 permit 5591 ^65000:4_0:147_0:117$ ip community-list expanded c1 permit 5592 ^65000:4_0:147_0:118$ ip community-list expanded c1 permit 5593 ^65000:4_0:147_0:119$ ip community-list expanded c1 permit 5594 ^65000:4_0:147_0:120$ ip community-list expanded c1 permit 5595 ^65000:4_0:147_0:121$ ip community-list expanded c1 permit 5596 ^65000:4_0:147_0:122$ ip community-list expanded c1 permit 5597 ^65000:4_0:147_0:123$ ip community-list expanded c1 permit 5598 ^65000:4_0:147_0:124$ ip community-list expanded c1 permit 5599 ^65000:4_0:147_0:125$ ip community-list expanded c1 permit 5600 ^65000:4_0:147_0:126$ ip community-list expanded c1 permit 5601 ^65000:4_0:147_0:127$ ip community-list expanded c1 permit 5602 ^65000:4_0:147_0:128$ ip community-list expanded c1 permit 5603 ^65000:4_0:147_0:129$ ip community-list expanded c1 permit 5604 ^65000:4_0:147_0:130$ ip community-list expanded c1 permit 5605 ^65000:4_0:147_0:131$ ip community-list expanded c1 permit 5606 ^65000:4_0:147_0:132$ ip community-list expanded c1 permit 5607 ^65000:4_0:147_0:133$ ip community-list expanded c1 permit 5608 ^65000:4_0:147_0:134$ ip community-list expanded c1 permit 5609 ^65000:4_0:147_0:135$ ip community-list expanded c1 permit 5610 ^65000:4_0:147_0:136$ ip community-list expanded c1 permit 5611 ^65000:4_0:147_0:137$ ip community-list expanded c1 permit 5612 ^65000:4_0:147_0:138$ ip community-list expanded c1 permit 5613 ^65000:4_0:147_0:139$ ip community-list expanded c1 permit 5614 ^65000:4_0:147_0:140$ ip community-list expanded c1 permit 5615 ^65000:4_0:147_0:141$ ip community-list expanded c1 permit 5616 ^65000:4_0:147_0:142$ ip community-list expanded c1 permit 5617 ^65000:4_0:147_0:143$ ip community-list expanded c1 permit 5618 ^65000:4_0:147_0:144$ ip community-list expanded c1 permit 5619 ^65000:4_0:147_0:145$ ip community-list expanded c1 permit 5620 ^65000:3_0:147_0:146$ ip community-list expanded c1 permit 5621 ^65000:4_0:147_0:146$ ip community-list expanded c1 permit 5622 ^65000:4_0:147_0:147$ ip community-list expanded c1 permit 5623 ^65000:4_0:148_0:75$ ip community-list expanded c1 permit 5624 ^65000:4_0:148_0:76$ ip community-list expanded c1 permit 5625 ^65000:4_0:148_0:77$ ip community-list expanded c1 permit 5626 ^65000:4_0:148_0:78$ ip community-list expanded c1 permit 5627 ^65000:4_0:148_0:79$ ip community-list expanded c1 permit 5628 ^65000:4_0:148_0:80$ ip community-list expanded c1 permit 5629 ^65000:4_0:148_0:81$ ip community-list expanded c1 permit 5630 ^65000:4_0:148_0:82$ ip community-list expanded c1 permit 5631 ^65000:4_0:148_0:83$ ip community-list expanded c1 permit 5632 ^65000:4_0:148_0:84$ ip community-list expanded c1 permit 5633 ^65000:4_0:148_0:85$ ip community-list expanded c1 permit 5634 ^65000:4_0:148_0:86$ ip community-list expanded c1 permit 5635 ^65000:4_0:148_0:87$ ip community-list expanded c1 permit 5636 ^65000:4_0:148_0:88$ ip community-list expanded c1 permit 5637 ^65000:4_0:148_0:89$ ip community-list expanded c1 permit 5638 ^65000:4_0:148_0:90$ ip community-list expanded c1 permit 5639 ^65000:4_0:148_0:91$ ip community-list expanded c1 permit 5640 ^65000:4_0:148_0:92$ ip community-list expanded c1 permit 5641 ^65000:4_0:148_0:93$ ip community-list expanded c1 permit 5642 ^65000:4_0:148_0:94$ ip community-list expanded c1 permit 5643 ^65000:4_0:148_0:95$ ip community-list expanded c1 permit 5644 ^65000:4_0:148_0:96$ ip community-list expanded c1 permit 5645 ^65000:4_0:148_0:97$ ip community-list expanded c1 permit 5646 ^65000:4_0:148_0:98$ ip community-list expanded c1 permit 5647 ^65000:4_0:148_0:99$ ip community-list expanded c1 permit 5648 ^65000:4_0:148_0:100$ ip community-list expanded c1 permit 5649 ^65000:4_0:148_0:101$ ip community-list expanded c1 permit 5650 ^65000:4_0:148_0:102$ ip community-list expanded c1 permit 5651 ^65000:4_0:148_0:103$ ip community-list expanded c1 permit 5652 ^65000:4_0:148_0:104$ ip community-list expanded c1 permit 5653 ^65000:4_0:148_0:105$ ip community-list expanded c1 permit 5654 ^65000:4_0:148_0:106$ ip community-list expanded c1 permit 5655 ^65000:4_0:148_0:107$ ip community-list expanded c1 permit 5656 ^65000:4_0:148_0:108$ ip community-list expanded c1 permit 5657 ^65000:4_0:148_0:109$ ip community-list expanded c1 permit 5658 ^65000:4_0:148_0:110$ ip community-list expanded c1 permit 5659 ^65000:4_0:148_0:111$ ip community-list expanded c1 permit 5660 ^65000:4_0:148_0:112$ ip community-list expanded c1 permit 5661 ^65000:4_0:148_0:113$ ip community-list expanded c1 permit 5662 ^65000:4_0:148_0:114$ ip community-list expanded c1 permit 5663 ^65000:4_0:148_0:115$ ip community-list expanded c1 permit 5664 ^65000:4_0:148_0:116$ ip community-list expanded c1 permit 5665 ^65000:4_0:148_0:117$ ip community-list expanded c1 permit 5666 ^65000:4_0:148_0:118$ ip community-list expanded c1 permit 5667 ^65000:4_0:148_0:119$ ip community-list expanded c1 permit 5668 ^65000:4_0:148_0:120$ ip community-list expanded c1 permit 5669 ^65000:4_0:148_0:121$ ip community-list expanded c1 permit 5670 ^65000:4_0:148_0:122$ ip community-list expanded c1 permit 5671 ^65000:4_0:148_0:123$ ip community-list expanded c1 permit 5672 ^65000:4_0:148_0:124$ ip community-list expanded c1 permit 5673 ^65000:4_0:148_0:125$ ip community-list expanded c1 permit 5674 ^65000:4_0:148_0:126$ ip community-list expanded c1 permit 5675 ^65000:4_0:148_0:127$ ip community-list expanded c1 permit 5676 ^65000:4_0:148_0:128$ ip community-list expanded c1 permit 5677 ^65000:4_0:148_0:129$ ip community-list expanded c1 permit 5678 ^65000:4_0:148_0:130$ ip community-list expanded c1 permit 5679 ^65000:4_0:148_0:131$ ip community-list expanded c1 permit 5680 ^65000:4_0:148_0:132$ ip community-list expanded c1 permit 5681 ^65000:4_0:148_0:133$ ip community-list expanded c1 permit 5682 ^65000:4_0:148_0:134$ ip community-list expanded c1 permit 5683 ^65000:4_0:148_0:135$ ip community-list expanded c1 permit 5684 ^65000:4_0:148_0:136$ ip community-list expanded c1 permit 5685 ^65000:4_0:148_0:137$ ip community-list expanded c1 permit 5686 ^65000:4_0:148_0:138$ ip community-list expanded c1 permit 5687 ^65000:4_0:148_0:139$ ip community-list expanded c1 permit 5688 ^65000:4_0:148_0:140$ ip community-list expanded c1 permit 5689 ^65000:4_0:148_0:141$ ip community-list expanded c1 permit 5690 ^65000:4_0:148_0:142$ ip community-list expanded c1 permit 5691 ^65000:4_0:148_0:143$ ip community-list expanded c1 permit 5692 ^65000:4_0:148_0:144$ ip community-list expanded c1 permit 5693 ^65000:4_0:148_0:145$ ip community-list expanded c1 permit 5694 ^65000:4_0:148_0:146$ ip community-list expanded c1 permit 5695 ^65000:3_0:148_0:147$ ip community-list expanded c1 permit 5696 ^65000:4_0:148_0:147$ ip community-list expanded c1 permit 5697 ^65000:4_0:148_0:148$ ip community-list expanded c1 permit 5698 ^65000:4_0:149_0:75$ ip community-list expanded c1 permit 5699 ^65000:4_0:149_0:76$ ip community-list expanded c1 permit 5700 ^65000:4_0:149_0:77$ ip community-list expanded c1 permit 5701 ^65000:4_0:149_0:78$ ip community-list expanded c1 permit 5702 ^65000:4_0:149_0:79$ ip community-list expanded c1 permit 5703 ^65000:4_0:149_0:80$ ip community-list expanded c1 permit 5704 ^65000:4_0:149_0:81$ ip community-list expanded c1 permit 5705 ^65000:4_0:149_0:82$ ip community-list expanded c1 permit 5706 ^65000:4_0:149_0:83$ ip community-list expanded c1 permit 5707 ^65000:4_0:149_0:84$ ip community-list expanded c1 permit 5708 ^65000:4_0:149_0:85$ ip community-list expanded c1 permit 5709 ^65000:4_0:149_0:86$ ip community-list expanded c1 permit 5710 ^65000:4_0:149_0:87$ ip community-list expanded c1 permit 5711 ^65000:4_0:149_0:88$ ip community-list expanded c1 permit 5712 ^65000:4_0:149_0:89$ ip community-list expanded c1 permit 5713 ^65000:4_0:149_0:90$ ip community-list expanded c1 permit 5714 ^65000:4_0:149_0:91$ ip community-list expanded c1 permit 5715 ^65000:4_0:149_0:92$ ip community-list expanded c1 permit 5716 ^65000:4_0:149_0:93$ ip community-list expanded c1 permit 5717 ^65000:4_0:149_0:94$ ip community-list expanded c1 permit 5718 ^65000:4_0:149_0:95$ ip community-list expanded c1 permit 5719 ^65000:4_0:149_0:96$ ip community-list expanded c1 permit 5720 ^65000:4_0:149_0:97$ ip community-list expanded c1 permit 5721 ^65000:4_0:149_0:98$ ip community-list expanded c1 permit 5722 ^65000:4_0:149_0:99$ ip community-list expanded c1 permit 5723 ^65000:4_0:149_0:100$ ip community-list expanded c1 permit 5724 ^65000:4_0:149_0:101$ ip community-list expanded c1 permit 5725 ^65000:4_0:149_0:102$ ip community-list expanded c1 permit 5726 ^65000:4_0:149_0:103$ ip community-list expanded c1 permit 5727 ^65000:4_0:149_0:104$ ip community-list expanded c1 permit 5728 ^65000:4_0:149_0:105$ ip community-list expanded c1 permit 5729 ^65000:4_0:149_0:106$ ip community-list expanded c1 permit 5730 ^65000:4_0:149_0:107$ ip community-list expanded c1 permit 5731 ^65000:4_0:149_0:108$ ip community-list expanded c1 permit 5732 ^65000:4_0:149_0:109$ ip community-list expanded c1 permit 5733 ^65000:4_0:149_0:110$ ip community-list expanded c1 permit 5734 ^65000:4_0:149_0:111$ ip community-list expanded c1 permit 5735 ^65000:4_0:149_0:112$ ip community-list expanded c1 permit 5736 ^65000:4_0:149_0:113$ ip community-list expanded c1 permit 5737 ^65000:4_0:149_0:114$ ip community-list expanded c1 permit 5738 ^65000:4_0:149_0:115$ ip community-list expanded c1 permit 5739 ^65000:4_0:149_0:116$ ip community-list expanded c1 permit 5740 ^65000:4_0:149_0:117$ ip community-list expanded c1 permit 5741 ^65000:4_0:149_0:118$ ip community-list expanded c1 permit 5742 ^65000:4_0:149_0:119$ ip community-list expanded c1 permit 5743 ^65000:4_0:149_0:120$ ip community-list expanded c1 permit 5744 ^65000:4_0:149_0:121$ ip community-list expanded c1 permit 5745 ^65000:4_0:149_0:122$ ip community-list expanded c1 permit 5746 ^65000:4_0:149_0:123$ ip community-list expanded c1 permit 5747 ^65000:4_0:149_0:124$ ip community-list expanded c1 permit 5748 ^65000:4_0:149_0:125$ ip community-list expanded c1 permit 5749 ^65000:4_0:149_0:126$ ip community-list expanded c1 permit 5750 ^65000:4_0:149_0:127$ ip community-list expanded c1 permit 5751 ^65000:4_0:149_0:128$ ip community-list expanded c1 permit 5752 ^65000:4_0:149_0:129$ ip community-list expanded c1 permit 5753 ^65000:4_0:149_0:130$ ip community-list expanded c1 permit 5754 ^65000:4_0:149_0:131$ ip community-list expanded c1 permit 5755 ^65000:4_0:149_0:132$ ip community-list expanded c1 permit 5756 ^65000:4_0:149_0:133$ ip community-list expanded c1 permit 5757 ^65000:4_0:149_0:134$ ip community-list expanded c1 permit 5758 ^65000:4_0:149_0:135$ ip community-list expanded c1 permit 5759 ^65000:4_0:149_0:136$ ip community-list expanded c1 permit 5760 ^65000:4_0:149_0:137$ ip community-list expanded c1 permit 5761 ^65000:4_0:149_0:138$ ip community-list expanded c1 permit 5762 ^65000:4_0:149_0:139$ ip community-list expanded c1 permit 5763 ^65000:4_0:149_0:140$ ip community-list expanded c1 permit 5764 ^65000:4_0:149_0:141$ ip community-list expanded c1 permit 5765 ^65000:4_0:149_0:142$ ip community-list expanded c1 permit 5766 ^65000:4_0:149_0:143$ ip community-list expanded c1 permit 5767 ^65000:4_0:149_0:144$ ip community-list expanded c1 permit 5768 ^65000:4_0:149_0:145$ ip community-list expanded c1 permit 5769 ^65000:4_0:149_0:146$ ip community-list expanded c1 permit 5770 ^65000:4_0:149_0:147$ ip community-list expanded c1 permit 5771 ^65000:3_0:149_0:148$ ip community-list expanded c1 permit 5772 ^65000:4_0:149_0:148$ ip community-list expanded c1 permit 5773 ^65000:4_0:149_0:149$ ip community-list expanded c1 permit 5774 ^65000:4_0:150_0:76$ ip community-list expanded c1 permit 5775 ^65000:4_0:150_0:77$ ip community-list expanded c1 permit 5776 ^65000:4_0:150_0:78$ ip community-list expanded c1 permit 5777 ^65000:4_0:150_0:79$ ip community-list expanded c1 permit 5778 ^65000:4_0:150_0:80$ ip community-list expanded c1 permit 5779 ^65000:4_0:150_0:81$ ip community-list expanded c1 permit 5780 ^65000:4_0:150_0:82$ ip community-list expanded c1 permit 5781 ^65000:4_0:150_0:83$ ip community-list expanded c1 permit 5782 ^65000:4_0:150_0:84$ ip community-list expanded c1 permit 5783 ^65000:4_0:150_0:85$ ip community-list expanded c1 permit 5784 ^65000:4_0:150_0:86$ ip community-list expanded c1 permit 5785 ^65000:4_0:150_0:87$ ip community-list expanded c1 permit 5786 ^65000:4_0:150_0:88$ ip community-list expanded c1 permit 5787 ^65000:4_0:150_0:89$ ip community-list expanded c1 permit 5788 ^65000:4_0:150_0:90$ ip community-list expanded c1 permit 5789 ^65000:4_0:150_0:91$ ip community-list expanded c1 permit 5790 ^65000:4_0:150_0:92$ ip community-list expanded c1 permit 5791 ^65000:4_0:150_0:93$ ip community-list expanded c1 permit 5792 ^65000:4_0:150_0:94$ ip community-list expanded c1 permit 5793 ^65000:4_0:150_0:95$ ip community-list expanded c1 permit 5794 ^65000:4_0:150_0:96$ ip community-list expanded c1 permit 5795 ^65000:4_0:150_0:97$ ip community-list expanded c1 permit 5796 ^65000:4_0:150_0:98$ ip community-list expanded c1 permit 5797 ^65000:4_0:150_0:99$ ip community-list expanded c1 permit 5798 ^65000:4_0:150_0:100$ ip community-list expanded c1 permit 5799 ^65000:4_0:150_0:101$ ip community-list expanded c1 permit 5800 ^65000:4_0:150_0:102$ ip community-list expanded c1 permit 5801 ^65000:4_0:150_0:103$ ip community-list expanded c1 permit 5802 ^65000:4_0:150_0:104$ ip community-list expanded c1 permit 5803 ^65000:4_0:150_0:105$ ip community-list expanded c1 permit 5804 ^65000:4_0:150_0:106$ ip community-list expanded c1 permit 5805 ^65000:4_0:150_0:107$ ip community-list expanded c1 permit 5806 ^65000:4_0:150_0:108$ ip community-list expanded c1 permit 5807 ^65000:4_0:150_0:109$ ip community-list expanded c1 permit 5808 ^65000:4_0:150_0:110$ ip community-list expanded c1 permit 5809 ^65000:4_0:150_0:111$ ip community-list expanded c1 permit 5810 ^65000:4_0:150_0:112$ ip community-list expanded c1 permit 5811 ^65000:4_0:150_0:113$ ip community-list expanded c1 permit 5812 ^65000:4_0:150_0:114$ ip community-list expanded c1 permit 5813 ^65000:4_0:150_0:115$ ip community-list expanded c1 permit 5814 ^65000:4_0:150_0:116$ ip community-list expanded c1 permit 5815 ^65000:4_0:150_0:117$ ip community-list expanded c1 permit 5816 ^65000:4_0:150_0:118$ ip community-list expanded c1 permit 5817 ^65000:4_0:150_0:119$ ip community-list expanded c1 permit 5818 ^65000:4_0:150_0:120$ ip community-list expanded c1 permit 5819 ^65000:4_0:150_0:121$ ip community-list expanded c1 permit 5820 ^65000:4_0:150_0:122$ ip community-list expanded c1 permit 5821 ^65000:4_0:150_0:123$ ip community-list expanded c1 permit 5822 ^65000:4_0:150_0:124$ ip community-list expanded c1 permit 5823 ^65000:4_0:150_0:125$ ip community-list expanded c1 permit 5824 ^65000:4_0:150_0:126$ ip community-list expanded c1 permit 5825 ^65000:4_0:150_0:127$ ip community-list expanded c1 permit 5826 ^65000:4_0:150_0:128$ ip community-list expanded c1 permit 5827 ^65000:4_0:150_0:129$ ip community-list expanded c1 permit 5828 ^65000:4_0:150_0:130$ ip community-list expanded c1 permit 5829 ^65000:4_0:150_0:131$ ip community-list expanded c1 permit 5830 ^65000:4_0:150_0:132$ ip community-list expanded c1 permit 5831 ^65000:4_0:150_0:133$ ip community-list expanded c1 permit 5832 ^65000:4_0:150_0:134$ ip community-list expanded c1 permit 5833 ^65000:4_0:150_0:135$ ip community-list expanded c1 permit 5834 ^65000:4_0:150_0:136$ ip community-list expanded c1 permit 5835 ^65000:4_0:150_0:137$ ip community-list expanded c1 permit 5836 ^65000:4_0:150_0:138$ ip community-list expanded c1 permit 5837 ^65000:4_0:150_0:139$ ip community-list expanded c1 permit 5838 ^65000:4_0:150_0:140$ ip community-list expanded c1 permit 5839 ^65000:4_0:150_0:141$ ip community-list expanded c1 permit 5840 ^65000:4_0:150_0:142$ ip community-list expanded c1 permit 5841 ^65000:4_0:150_0:143$ ip community-list expanded c1 permit 5842 ^65000:4_0:150_0:144$ ip community-list expanded c1 permit 5843 ^65000:4_0:150_0:145$ ip community-list expanded c1 permit 5844 ^65000:4_0:150_0:146$ ip community-list expanded c1 permit 5845 ^65000:4_0:150_0:147$ ip community-list expanded c1 permit 5846 ^65000:4_0:150_0:148$ ip community-list expanded c1 permit 5847 ^65000:3_0:150_0:149$ ip community-list expanded c1 permit 5848 ^65000:4_0:150_0:149$ ip community-list expanded c1 permit 5849 ^65000:4_0:150_0:150$ ip community-list expanded c1 permit 5850 ^65000:4_0:151_0:76$ ip community-list expanded c1 permit 5851 ^65000:4_0:151_0:77$ ip community-list expanded c1 permit 5852 ^65000:4_0:151_0:78$ ip community-list expanded c1 permit 5853 ^65000:4_0:151_0:79$ ip community-list expanded c1 permit 5854 ^65000:4_0:151_0:80$ ip community-list expanded c1 permit 5855 ^65000:4_0:151_0:81$ ip community-list expanded c1 permit 5856 ^65000:4_0:151_0:82$ ip community-list expanded c1 permit 5857 ^65000:4_0:151_0:83$ ip community-list expanded c1 permit 5858 ^65000:4_0:151_0:84$ ip community-list expanded c1 permit 5859 ^65000:4_0:151_0:85$ ip community-list expanded c1 permit 5860 ^65000:4_0:151_0:86$ ip community-list expanded c1 permit 5861 ^65000:4_0:151_0:87$ ip community-list expanded c1 permit 5862 ^65000:4_0:151_0:88$ ip community-list expanded c1 permit 5863 ^65000:4_0:151_0:89$ ip community-list expanded c1 permit 5864 ^65000:4_0:151_0:90$ ip community-list expanded c1 permit 5865 ^65000:4_0:151_0:91$ ip community-list expanded c1 permit 5866 ^65000:4_0:151_0:92$ ip community-list expanded c1 permit 5867 ^65000:4_0:151_0:93$ ip community-list expanded c1 permit 5868 ^65000:4_0:151_0:94$ ip community-list expanded c1 permit 5869 ^65000:4_0:151_0:95$ ip community-list expanded c1 permit 5870 ^65000:4_0:151_0:96$ ip community-list expanded c1 permit 5871 ^65000:4_0:151_0:97$ ip community-list expanded c1 permit 5872 ^65000:4_0:151_0:98$ ip community-list expanded c1 permit 5873 ^65000:4_0:151_0:99$ ip community-list expanded c1 permit 5874 ^65000:4_0:151_0:100$ ip community-list expanded c1 permit 5875 ^65000:4_0:151_0:101$ ip community-list expanded c1 permit 5876 ^65000:4_0:151_0:102$ ip community-list expanded c1 permit 5877 ^65000:4_0:151_0:103$ ip community-list expanded c1 permit 5878 ^65000:4_0:151_0:104$ ip community-list expanded c1 permit 5879 ^65000:4_0:151_0:105$ ip community-list expanded c1 permit 5880 ^65000:4_0:151_0:106$ ip community-list expanded c1 permit 5881 ^65000:4_0:151_0:107$ ip community-list expanded c1 permit 5882 ^65000:4_0:151_0:108$ ip community-list expanded c1 permit 5883 ^65000:4_0:151_0:109$ ip community-list expanded c1 permit 5884 ^65000:4_0:151_0:110$ ip community-list expanded c1 permit 5885 ^65000:4_0:151_0:111$ ip community-list expanded c1 permit 5886 ^65000:4_0:151_0:112$ ip community-list expanded c1 permit 5887 ^65000:4_0:151_0:113$ ip community-list expanded c1 permit 5888 ^65000:4_0:151_0:114$ ip community-list expanded c1 permit 5889 ^65000:4_0:151_0:115$ ip community-list expanded c1 permit 5890 ^65000:4_0:151_0:116$ ip community-list expanded c1 permit 5891 ^65000:4_0:151_0:117$ ip community-list expanded c1 permit 5892 ^65000:4_0:151_0:118$ ip community-list expanded c1 permit 5893 ^65000:4_0:151_0:119$ ip community-list expanded c1 permit 5894 ^65000:4_0:151_0:120$ ip community-list expanded c1 permit 5895 ^65000:4_0:151_0:121$ ip community-list expanded c1 permit 5896 ^65000:4_0:151_0:122$ ip community-list expanded c1 permit 5897 ^65000:4_0:151_0:123$ ip community-list expanded c1 permit 5898 ^65000:4_0:151_0:124$ ip community-list expanded c1 permit 5899 ^65000:4_0:151_0:125$ ip community-list expanded c1 permit 5900 ^65000:4_0:151_0:126$ ip community-list expanded c1 permit 5901 ^65000:4_0:151_0:127$ ip community-list expanded c1 permit 5902 ^65000:4_0:151_0:128$ ip community-list expanded c1 permit 5903 ^65000:4_0:151_0:129$ ip community-list expanded c1 permit 5904 ^65000:4_0:151_0:130$ ip community-list expanded c1 permit 5905 ^65000:4_0:151_0:131$ ip community-list expanded c1 permit 5906 ^65000:4_0:151_0:132$ ip community-list expanded c1 permit 5907 ^65000:4_0:151_0:133$ ip community-list expanded c1 permit 5908 ^65000:4_0:151_0:134$ ip community-list expanded c1 permit 5909 ^65000:4_0:151_0:135$ ip community-list expanded c1 permit 5910 ^65000:4_0:151_0:136$ ip community-list expanded c1 permit 5911 ^65000:4_0:151_0:137$ ip community-list expanded c1 permit 5912 ^65000:4_0:151_0:138$ ip community-list expanded c1 permit 5913 ^65000:4_0:151_0:139$ ip community-list expanded c1 permit 5914 ^65000:4_0:151_0:140$ ip community-list expanded c1 permit 5915 ^65000:4_0:151_0:141$ ip community-list expanded c1 permit 5916 ^65000:4_0:151_0:142$ ip community-list expanded c1 permit 5917 ^65000:4_0:151_0:143$ ip community-list expanded c1 permit 5918 ^65000:4_0:151_0:144$ ip community-list expanded c1 permit 5919 ^65000:4_0:151_0:145$ ip community-list expanded c1 permit 5920 ^65000:4_0:151_0:146$ ip community-list expanded c1 permit 5921 ^65000:4_0:151_0:147$ ip community-list expanded c1 permit 5922 ^65000:4_0:151_0:148$ ip community-list expanded c1 permit 5923 ^65000:4_0:151_0:149$ ip community-list expanded c1 permit 5924 ^65000:3_0:151_0:150$ ip community-list expanded c1 permit 5925 ^65000:4_0:151_0:150$ ip community-list expanded c1 permit 5926 ^65000:4_0:151_0:151$ ip community-list expanded c1 permit 5927 ^65000:4_0:152_0:77$ ip community-list expanded c1 permit 5928 ^65000:4_0:152_0:78$ ip community-list expanded c1 permit 5929 ^65000:4_0:152_0:79$ ip community-list expanded c1 permit 5930 ^65000:4_0:152_0:80$ ip community-list expanded c1 permit 5931 ^65000:4_0:152_0:81$ ip community-list expanded c1 permit 5932 ^65000:4_0:152_0:82$ ip community-list expanded c1 permit 5933 ^65000:4_0:152_0:83$ ip community-list expanded c1 permit 5934 ^65000:4_0:152_0:84$ ip community-list expanded c1 permit 5935 ^65000:4_0:152_0:85$ ip community-list expanded c1 permit 5936 ^65000:4_0:152_0:86$ ip community-list expanded c1 permit 5937 ^65000:4_0:152_0:87$ ip community-list expanded c1 permit 5938 ^65000:4_0:152_0:88$ ip community-list expanded c1 permit 5939 ^65000:4_0:152_0:89$ ip community-list expanded c1 permit 5940 ^65000:4_0:152_0:90$ ip community-list expanded c1 permit 5941 ^65000:4_0:152_0:91$ ip community-list expanded c1 permit 5942 ^65000:4_0:152_0:92$ ip community-list expanded c1 permit 5943 ^65000:4_0:152_0:93$ ip community-list expanded c1 permit 5944 ^65000:4_0:152_0:94$ ip community-list expanded c1 permit 5945 ^65000:4_0:152_0:95$ ip community-list expanded c1 permit 5946 ^65000:4_0:152_0:96$ ip community-list expanded c1 permit 5947 ^65000:4_0:152_0:97$ ip community-list expanded c1 permit 5948 ^65000:4_0:152_0:98$ ip community-list expanded c1 permit 5949 ^65000:4_0:152_0:99$ ip community-list expanded c1 permit 5950 ^65000:4_0:152_0:100$ ip community-list expanded c1 permit 5951 ^65000:4_0:152_0:101$ ip community-list expanded c1 permit 5952 ^65000:4_0:152_0:102$ ip community-list expanded c1 permit 5953 ^65000:4_0:152_0:103$ ip community-list expanded c1 permit 5954 ^65000:4_0:152_0:104$ ip community-list expanded c1 permit 5955 ^65000:4_0:152_0:105$ ip community-list expanded c1 permit 5956 ^65000:4_0:152_0:106$ ip community-list expanded c1 permit 5957 ^65000:4_0:152_0:107$ ip community-list expanded c1 permit 5958 ^65000:4_0:152_0:108$ ip community-list expanded c1 permit 5959 ^65000:4_0:152_0:109$ ip community-list expanded c1 permit 5960 ^65000:4_0:152_0:110$ ip community-list expanded c1 permit 5961 ^65000:4_0:152_0:111$ ip community-list expanded c1 permit 5962 ^65000:4_0:152_0:112$ ip community-list expanded c1 permit 5963 ^65000:4_0:152_0:113$ ip community-list expanded c1 permit 5964 ^65000:4_0:152_0:114$ ip community-list expanded c1 permit 5965 ^65000:4_0:152_0:115$ ip community-list expanded c1 permit 5966 ^65000:4_0:152_0:116$ ip community-list expanded c1 permit 5967 ^65000:4_0:152_0:117$ ip community-list expanded c1 permit 5968 ^65000:4_0:152_0:118$ ip community-list expanded c1 permit 5969 ^65000:4_0:152_0:119$ ip community-list expanded c1 permit 5970 ^65000:4_0:152_0:120$ ip community-list expanded c1 permit 5971 ^65000:4_0:152_0:121$ ip community-list expanded c1 permit 5972 ^65000:4_0:152_0:122$ ip community-list expanded c1 permit 5973 ^65000:4_0:152_0:123$ ip community-list expanded c1 permit 5974 ^65000:4_0:152_0:124$ ip community-list expanded c1 permit 5975 ^65000:4_0:152_0:125$ ip community-list expanded c1 permit 5976 ^65000:4_0:152_0:126$ ip community-list expanded c1 permit 5977 ^65000:4_0:152_0:127$ ip community-list expanded c1 permit 5978 ^65000:4_0:152_0:128$ ip community-list expanded c1 permit 5979 ^65000:4_0:152_0:129$ ip community-list expanded c1 permit 5980 ^65000:4_0:152_0:130$ ip community-list expanded c1 permit 5981 ^65000:4_0:152_0:131$ ip community-list expanded c1 permit 5982 ^65000:4_0:152_0:132$ ip community-list expanded c1 permit 5983 ^65000:4_0:152_0:133$ ip community-list expanded c1 permit 5984 ^65000:4_0:152_0:134$ ip community-list expanded c1 permit 5985 ^65000:4_0:152_0:135$ ip community-list expanded c1 permit 5986 ^65000:4_0:152_0:136$ ip community-list expanded c1 permit 5987 ^65000:4_0:152_0:137$ ip community-list expanded c1 permit 5988 ^65000:4_0:152_0:138$ ip community-list expanded c1 permit 5989 ^65000:4_0:152_0:139$ ip community-list expanded c1 permit 5990 ^65000:4_0:152_0:140$ ip community-list expanded c1 permit 5991 ^65000:4_0:152_0:141$ ip community-list expanded c1 permit 5992 ^65000:4_0:152_0:142$ ip community-list expanded c1 permit 5993 ^65000:4_0:152_0:143$ ip community-list expanded c1 permit 5994 ^65000:4_0:152_0:144$ ip community-list expanded c1 permit 5995 ^65000:4_0:152_0:145$ ip community-list expanded c1 permit 5996 ^65000:4_0:152_0:146$ ip community-list expanded c1 permit 5997 ^65000:4_0:152_0:147$ ip community-list expanded c1 permit 5998 ^65000:4_0:152_0:148$ ip community-list expanded c1 permit 5999 ^65000:4_0:152_0:149$ ip community-list expanded c1 permit 6000 ^65000:4_0:152_0:150$ ip community-list expanded c1 permit 6001 ^65000:3_0:152_0:151$ ip community-list expanded c1 permit 6002 ^65000:4_0:152_0:151$ ip community-list expanded c1 permit 6003 ^65000:4_0:152_0:152$ ip community-list expanded c1 permit 6004 ^65000:4_0:153_0:77$ ip community-list expanded c1 permit 6005 ^65000:4_0:153_0:78$ ip community-list expanded c1 permit 6006 ^65000:4_0:153_0:79$ ip community-list expanded c1 permit 6007 ^65000:4_0:153_0:80$ ip community-list expanded c1 permit 6008 ^65000:4_0:153_0:81$ ip community-list expanded c1 permit 6009 ^65000:4_0:153_0:82$ ip community-list expanded c1 permit 6010 ^65000:4_0:153_0:83$ ip community-list expanded c1 permit 6011 ^65000:4_0:153_0:84$ ip community-list expanded c1 permit 6012 ^65000:4_0:153_0:85$ ip community-list expanded c1 permit 6013 ^65000:4_0:153_0:86$ ip community-list expanded c1 permit 6014 ^65000:4_0:153_0:87$ ip community-list expanded c1 permit 6015 ^65000:4_0:153_0:88$ ip community-list expanded c1 permit 6016 ^65000:4_0:153_0:89$ ip community-list expanded c1 permit 6017 ^65000:4_0:153_0:90$ ip community-list expanded c1 permit 6018 ^65000:4_0:153_0:91$ ip community-list expanded c1 permit 6019 ^65000:4_0:153_0:92$ ip community-list expanded c1 permit 6020 ^65000:4_0:153_0:93$ ip community-list expanded c1 permit 6021 ^65000:4_0:153_0:94$ ip community-list expanded c1 permit 6022 ^65000:4_0:153_0:95$ ip community-list expanded c1 permit 6023 ^65000:4_0:153_0:96$ ip community-list expanded c1 permit 6024 ^65000:4_0:153_0:97$ ip community-list expanded c1 permit 6025 ^65000:4_0:153_0:98$ ip community-list expanded c1 permit 6026 ^65000:4_0:153_0:99$ ip community-list expanded c1 permit 6027 ^65000:4_0:153_0:100$ ip community-list expanded c1 permit 6028 ^65000:4_0:153_0:101$ ip community-list expanded c1 permit 6029 ^65000:4_0:153_0:102$ ip community-list expanded c1 permit 6030 ^65000:4_0:153_0:103$ ip community-list expanded c1 permit 6031 ^65000:4_0:153_0:104$ ip community-list expanded c1 permit 6032 ^65000:4_0:153_0:105$ ip community-list expanded c1 permit 6033 ^65000:4_0:153_0:106$ ip community-list expanded c1 permit 6034 ^65000:4_0:153_0:107$ ip community-list expanded c1 permit 6035 ^65000:4_0:153_0:108$ ip community-list expanded c1 permit 6036 ^65000:4_0:153_0:109$ ip community-list expanded c1 permit 6037 ^65000:4_0:153_0:110$ ip community-list expanded c1 permit 6038 ^65000:4_0:153_0:111$ ip community-list expanded c1 permit 6039 ^65000:4_0:153_0:112$ ip community-list expanded c1 permit 6040 ^65000:4_0:153_0:113$ ip community-list expanded c1 permit 6041 ^65000:4_0:153_0:114$ ip community-list expanded c1 permit 6042 ^65000:4_0:153_0:115$ ip community-list expanded c1 permit 6043 ^65000:4_0:153_0:116$ ip community-list expanded c1 permit 6044 ^65000:4_0:153_0:117$ ip community-list expanded c1 permit 6045 ^65000:4_0:153_0:118$ ip community-list expanded c1 permit 6046 ^65000:4_0:153_0:119$ ip community-list expanded c1 permit 6047 ^65000:4_0:153_0:120$ ip community-list expanded c1 permit 6048 ^65000:4_0:153_0:121$ ip community-list expanded c1 permit 6049 ^65000:4_0:153_0:122$ ip community-list expanded c1 permit 6050 ^65000:4_0:153_0:123$ ip community-list expanded c1 permit 6051 ^65000:4_0:153_0:124$ ip community-list expanded c1 permit 6052 ^65000:4_0:153_0:125$ ip community-list expanded c1 permit 6053 ^65000:4_0:153_0:126$ ip community-list expanded c1 permit 6054 ^65000:4_0:153_0:127$ ip community-list expanded c1 permit 6055 ^65000:4_0:153_0:128$ ip community-list expanded c1 permit 6056 ^65000:4_0:153_0:129$ ip community-list expanded c1 permit 6057 ^65000:4_0:153_0:130$ ip community-list expanded c1 permit 6058 ^65000:4_0:153_0:131$ ip community-list expanded c1 permit 6059 ^65000:4_0:153_0:132$ ip community-list expanded c1 permit 6060 ^65000:4_0:153_0:133$ ip community-list expanded c1 permit 6061 ^65000:4_0:153_0:134$ ip community-list expanded c1 permit 6062 ^65000:4_0:153_0:135$ ip community-list expanded c1 permit 6063 ^65000:4_0:153_0:136$ ip community-list expanded c1 permit 6064 ^65000:4_0:153_0:137$ ip community-list expanded c1 permit 6065 ^65000:4_0:153_0:138$ ip community-list expanded c1 permit 6066 ^65000:4_0:153_0:139$ ip community-list expanded c1 permit 6067 ^65000:4_0:153_0:140$ ip community-list expanded c1 permit 6068 ^65000:4_0:153_0:141$ ip community-list expanded c1 permit 6069 ^65000:4_0:153_0:142$ ip community-list expanded c1 permit 6070 ^65000:4_0:153_0:143$ ip community-list expanded c1 permit 6071 ^65000:4_0:153_0:144$ ip community-list expanded c1 permit 6072 ^65000:4_0:153_0:145$ ip community-list expanded c1 permit 6073 ^65000:4_0:153_0:146$ ip community-list expanded c1 permit 6074 ^65000:4_0:153_0:147$ ip community-list expanded c1 permit 6075 ^65000:4_0:153_0:148$ ip community-list expanded c1 permit 6076 ^65000:4_0:153_0:149$ ip community-list expanded c1 permit 6077 ^65000:4_0:153_0:150$ ip community-list expanded c1 permit 6078 ^65000:4_0:153_0:151$ ip community-list expanded c1 permit 6079 ^65000:3_0:153_0:152$ ip community-list expanded c1 permit 6080 ^65000:4_0:153_0:152$ ip community-list expanded c1 permit 6081 ^65000:4_0:153_0:153$ ip community-list expanded c1 permit 6082 ^65000:4_0:154_0:78$ ip community-list expanded c1 permit 6083 ^65000:4_0:154_0:79$ ip community-list expanded c1 permit 6084 ^65000:4_0:154_0:80$ ip community-list expanded c1 permit 6085 ^65000:4_0:154_0:81$ ip community-list expanded c1 permit 6086 ^65000:4_0:154_0:82$ ip community-list expanded c1 permit 6087 ^65000:4_0:154_0:83$ ip community-list expanded c1 permit 6088 ^65000:4_0:154_0:84$ ip community-list expanded c1 permit 6089 ^65000:4_0:154_0:85$ ip community-list expanded c1 permit 6090 ^65000:4_0:154_0:86$ ip community-list expanded c1 permit 6091 ^65000:4_0:154_0:87$ ip community-list expanded c1 permit 6092 ^65000:4_0:154_0:88$ ip community-list expanded c1 permit 6093 ^65000:4_0:154_0:89$ ip community-list expanded c1 permit 6094 ^65000:4_0:154_0:90$ ip community-list expanded c1 permit 6095 ^65000:4_0:154_0:91$ ip community-list expanded c1 permit 6096 ^65000:4_0:154_0:92$ ip community-list expanded c1 permit 6097 ^65000:4_0:154_0:93$ ip community-list expanded c1 permit 6098 ^65000:4_0:154_0:94$ ip community-list expanded c1 permit 6099 ^65000:4_0:154_0:95$ ip community-list expanded c1 permit 6100 ^65000:4_0:154_0:96$ ip community-list expanded c1 permit 6101 ^65000:4_0:154_0:97$ ip community-list expanded c1 permit 6102 ^65000:4_0:154_0:98$ ip community-list expanded c1 permit 6103 ^65000:4_0:154_0:99$ ip community-list expanded c1 permit 6104 ^65000:4_0:154_0:100$ ip community-list expanded c1 permit 6105 ^65000:4_0:154_0:101$ ip community-list expanded c1 permit 6106 ^65000:4_0:154_0:102$ ip community-list expanded c1 permit 6107 ^65000:4_0:154_0:103$ ip community-list expanded c1 permit 6108 ^65000:4_0:154_0:104$ ip community-list expanded c1 permit 6109 ^65000:4_0:154_0:105$ ip community-list expanded c1 permit 6110 ^65000:4_0:154_0:106$ ip community-list expanded c1 permit 6111 ^65000:4_0:154_0:107$ ip community-list expanded c1 permit 6112 ^65000:4_0:154_0:108$ ip community-list expanded c1 permit 6113 ^65000:4_0:154_0:109$ ip community-list expanded c1 permit 6114 ^65000:4_0:154_0:110$ ip community-list expanded c1 permit 6115 ^65000:4_0:154_0:111$ ip community-list expanded c1 permit 6116 ^65000:4_0:154_0:112$ ip community-list expanded c1 permit 6117 ^65000:4_0:154_0:113$ ip community-list expanded c1 permit 6118 ^65000:4_0:154_0:114$ ip community-list expanded c1 permit 6119 ^65000:4_0:154_0:115$ ip community-list expanded c1 permit 6120 ^65000:4_0:154_0:116$ ip community-list expanded c1 permit 6121 ^65000:4_0:154_0:117$ ip community-list expanded c1 permit 6122 ^65000:4_0:154_0:118$ ip community-list expanded c1 permit 6123 ^65000:4_0:154_0:119$ ip community-list expanded c1 permit 6124 ^65000:4_0:154_0:120$ ip community-list expanded c1 permit 6125 ^65000:4_0:154_0:121$ ip community-list expanded c1 permit 6126 ^65000:4_0:154_0:122$ ip community-list expanded c1 permit 6127 ^65000:4_0:154_0:123$ ip community-list expanded c1 permit 6128 ^65000:4_0:154_0:124$ ip community-list expanded c1 permit 6129 ^65000:4_0:154_0:125$ ip community-list expanded c1 permit 6130 ^65000:4_0:154_0:126$ ip community-list expanded c1 permit 6131 ^65000:4_0:154_0:127$ ip community-list expanded c1 permit 6132 ^65000:4_0:154_0:128$ ip community-list expanded c1 permit 6133 ^65000:4_0:154_0:129$ ip community-list expanded c1 permit 6134 ^65000:4_0:154_0:130$ ip community-list expanded c1 permit 6135 ^65000:4_0:154_0:131$ ip community-list expanded c1 permit 6136 ^65000:4_0:154_0:132$ ip community-list expanded c1 permit 6137 ^65000:4_0:154_0:133$ ip community-list expanded c1 permit 6138 ^65000:4_0:154_0:134$ ip community-list expanded c1 permit 6139 ^65000:4_0:154_0:135$ ip community-list expanded c1 permit 6140 ^65000:4_0:154_0:136$ ip community-list expanded c1 permit 6141 ^65000:4_0:154_0:137$ ip community-list expanded c1 permit 6142 ^65000:4_0:154_0:138$ ip community-list expanded c1 permit 6143 ^65000:4_0:154_0:139$ ip community-list expanded c1 permit 6144 ^65000:4_0:154_0:140$ ip community-list expanded c1 permit 6145 ^65000:4_0:154_0:141$ ip community-list expanded c1 permit 6146 ^65000:4_0:154_0:142$ ip community-list expanded c1 permit 6147 ^65000:4_0:154_0:143$ ip community-list expanded c1 permit 6148 ^65000:4_0:154_0:144$ ip community-list expanded c1 permit 6149 ^65000:4_0:154_0:145$ ip community-list expanded c1 permit 6150 ^65000:4_0:154_0:146$ ip community-list expanded c1 permit 6151 ^65000:4_0:154_0:147$ ip community-list expanded c1 permit 6152 ^65000:4_0:154_0:148$ ip community-list expanded c1 permit 6153 ^65000:4_0:154_0:149$ ip community-list expanded c1 permit 6154 ^65000:4_0:154_0:150$ ip community-list expanded c1 permit 6155 ^65000:4_0:154_0:151$ ip community-list expanded c1 permit 6156 ^65000:4_0:154_0:152$ ip community-list expanded c1 permit 6157 ^65000:3_0:154_0:153$ ip community-list expanded c1 permit 6158 ^65000:4_0:154_0:153$ ip community-list expanded c1 permit 6159 ^65000:4_0:154_0:154$ ip community-list expanded c1 permit 6160 ^65000:4_0:155_0:78$ ip community-list expanded c1 permit 6161 ^65000:4_0:155_0:79$ ip community-list expanded c1 permit 6162 ^65000:4_0:155_0:80$ ip community-list expanded c1 permit 6163 ^65000:4_0:155_0:81$ ip community-list expanded c1 permit 6164 ^65000:4_0:155_0:82$ ip community-list expanded c1 permit 6165 ^65000:4_0:155_0:83$ ip community-list expanded c1 permit 6166 ^65000:4_0:155_0:84$ ip community-list expanded c1 permit 6167 ^65000:4_0:155_0:85$ ip community-list expanded c1 permit 6168 ^65000:4_0:155_0:86$ ip community-list expanded c1 permit 6169 ^65000:4_0:155_0:87$ ip community-list expanded c1 permit 6170 ^65000:4_0:155_0:88$ ip community-list expanded c1 permit 6171 ^65000:4_0:155_0:89$ ip community-list expanded c1 permit 6172 ^65000:4_0:155_0:90$ ip community-list expanded c1 permit 6173 ^65000:4_0:155_0:91$ ip community-list expanded c1 permit 6174 ^65000:4_0:155_0:92$ ip community-list expanded c1 permit 6175 ^65000:4_0:155_0:93$ ip community-list expanded c1 permit 6176 ^65000:4_0:155_0:94$ ip community-list expanded c1 permit 6177 ^65000:4_0:155_0:95$ ip community-list expanded c1 permit 6178 ^65000:4_0:155_0:96$ ip community-list expanded c1 permit 6179 ^65000:4_0:155_0:97$ ip community-list expanded c1 permit 6180 ^65000:4_0:155_0:98$ ip community-list expanded c1 permit 6181 ^65000:4_0:155_0:99$ ip community-list expanded c1 permit 6182 ^65000:4_0:155_0:100$ ip community-list expanded c1 permit 6183 ^65000:4_0:155_0:101$ ip community-list expanded c1 permit 6184 ^65000:4_0:155_0:102$ ip community-list expanded c1 permit 6185 ^65000:4_0:155_0:103$ ip community-list expanded c1 permit 6186 ^65000:4_0:155_0:104$ ip community-list expanded c1 permit 6187 ^65000:4_0:155_0:105$ ip community-list expanded c1 permit 6188 ^65000:4_0:155_0:106$ ip community-list expanded c1 permit 6189 ^65000:4_0:155_0:107$ ip community-list expanded c1 permit 6190 ^65000:4_0:155_0:108$ ip community-list expanded c1 permit 6191 ^65000:4_0:155_0:109$ ip community-list expanded c1 permit 6192 ^65000:4_0:155_0:110$ ip community-list expanded c1 permit 6193 ^65000:4_0:155_0:111$ ip community-list expanded c1 permit 6194 ^65000:4_0:155_0:112$ ip community-list expanded c1 permit 6195 ^65000:4_0:155_0:113$ ip community-list expanded c1 permit 6196 ^65000:4_0:155_0:114$ ip community-list expanded c1 permit 6197 ^65000:4_0:155_0:115$ ip community-list expanded c1 permit 6198 ^65000:4_0:155_0:116$ ip community-list expanded c1 permit 6199 ^65000:4_0:155_0:117$ ip community-list expanded c1 permit 6200 ^65000:4_0:155_0:118$ ip community-list expanded c1 permit 6201 ^65000:4_0:155_0:119$ ip community-list expanded c1 permit 6202 ^65000:4_0:155_0:120$ ip community-list expanded c1 permit 6203 ^65000:4_0:155_0:121$ ip community-list expanded c1 permit 6204 ^65000:4_0:155_0:122$ ip community-list expanded c1 permit 6205 ^65000:4_0:155_0:123$ ip community-list expanded c1 permit 6206 ^65000:4_0:155_0:124$ ip community-list expanded c1 permit 6207 ^65000:4_0:155_0:125$ ip community-list expanded c1 permit 6208 ^65000:4_0:155_0:126$ ip community-list expanded c1 permit 6209 ^65000:4_0:155_0:127$ ip community-list expanded c1 permit 6210 ^65000:4_0:155_0:128$ ip community-list expanded c1 permit 6211 ^65000:4_0:155_0:129$ ip community-list expanded c1 permit 6212 ^65000:4_0:155_0:130$ ip community-list expanded c1 permit 6213 ^65000:4_0:155_0:131$ ip community-list expanded c1 permit 6214 ^65000:4_0:155_0:132$ ip community-list expanded c1 permit 6215 ^65000:4_0:155_0:133$ ip community-list expanded c1 permit 6216 ^65000:4_0:155_0:134$ ip community-list expanded c1 permit 6217 ^65000:4_0:155_0:135$ ip community-list expanded c1 permit 6218 ^65000:4_0:155_0:136$ ip community-list expanded c1 permit 6219 ^65000:4_0:155_0:137$ ip community-list expanded c1 permit 6220 ^65000:4_0:155_0:138$ ip community-list expanded c1 permit 6221 ^65000:4_0:155_0:139$ ip community-list expanded c1 permit 6222 ^65000:4_0:155_0:140$ ip community-list expanded c1 permit 6223 ^65000:4_0:155_0:141$ ip community-list expanded c1 permit 6224 ^65000:4_0:155_0:142$ ip community-list expanded c1 permit 6225 ^65000:4_0:155_0:143$ ip community-list expanded c1 permit 6226 ^65000:4_0:155_0:144$ ip community-list expanded c1 permit 6227 ^65000:4_0:155_0:145$ ip community-list expanded c1 permit 6228 ^65000:4_0:155_0:146$ ip community-list expanded c1 permit 6229 ^65000:4_0:155_0:147$ ip community-list expanded c1 permit 6230 ^65000:4_0:155_0:148$ ip community-list expanded c1 permit 6231 ^65000:4_0:155_0:149$ ip community-list expanded c1 permit 6232 ^65000:4_0:155_0:150$ ip community-list expanded c1 permit 6233 ^65000:4_0:155_0:151$ ip community-list expanded c1 permit 6234 ^65000:4_0:155_0:152$ ip community-list expanded c1 permit 6235 ^65000:4_0:155_0:153$ ip community-list expanded c1 permit 6236 ^65000:3_0:155_0:154$ ip community-list expanded c1 permit 6237 ^65000:4_0:155_0:154$ ip community-list expanded c1 permit 6238 ^65000:4_0:155_0:155$ ip community-list expanded c1 permit 6239 ^65000:4_0:156_0:79$ ip community-list expanded c1 permit 6240 ^65000:4_0:156_0:80$ ip community-list expanded c1 permit 6241 ^65000:4_0:156_0:81$ ip community-list expanded c1 permit 6242 ^65000:4_0:156_0:82$ ip community-list expanded c1 permit 6243 ^65000:4_0:156_0:83$ ip community-list expanded c1 permit 6244 ^65000:4_0:156_0:84$ ip community-list expanded c1 permit 6245 ^65000:4_0:156_0:85$ ip community-list expanded c1 permit 6246 ^65000:4_0:156_0:86$ ip community-list expanded c1 permit 6247 ^65000:4_0:156_0:87$ ip community-list expanded c1 permit 6248 ^65000:4_0:156_0:88$ ip community-list expanded c1 permit 6249 ^65000:4_0:156_0:89$ ip community-list expanded c1 permit 6250 ^65000:4_0:156_0:90$ ip community-list expanded c1 permit 6251 ^65000:4_0:156_0:91$ ip community-list expanded c1 permit 6252 ^65000:4_0:156_0:92$ ip community-list expanded c1 permit 6253 ^65000:4_0:156_0:93$ ip community-list expanded c1 permit 6254 ^65000:4_0:156_0:94$ ip community-list expanded c1 permit 6255 ^65000:4_0:156_0:95$ ip community-list expanded c1 permit 6256 ^65000:4_0:156_0:96$ ip community-list expanded c1 permit 6257 ^65000:4_0:156_0:97$ ip community-list expanded c1 permit 6258 ^65000:4_0:156_0:98$ ip community-list expanded c1 permit 6259 ^65000:4_0:156_0:99$ ip community-list expanded c1 permit 6260 ^65000:4_0:156_0:100$ ip community-list expanded c1 permit 6261 ^65000:4_0:156_0:101$ ip community-list expanded c1 permit 6262 ^65000:4_0:156_0:102$ ip community-list expanded c1 permit 6263 ^65000:4_0:156_0:103$ ip community-list expanded c1 permit 6264 ^65000:4_0:156_0:104$ ip community-list expanded c1 permit 6265 ^65000:4_0:156_0:105$ ip community-list expanded c1 permit 6266 ^65000:4_0:156_0:106$ ip community-list expanded c1 permit 6267 ^65000:4_0:156_0:107$ ip community-list expanded c1 permit 6268 ^65000:4_0:156_0:108$ ip community-list expanded c1 permit 6269 ^65000:4_0:156_0:109$ ip community-list expanded c1 permit 6270 ^65000:4_0:156_0:110$ ip community-list expanded c1 permit 6271 ^65000:4_0:156_0:111$ ip community-list expanded c1 permit 6272 ^65000:4_0:156_0:112$ ip community-list expanded c1 permit 6273 ^65000:4_0:156_0:113$ ip community-list expanded c1 permit 6274 ^65000:4_0:156_0:114$ ip community-list expanded c1 permit 6275 ^65000:4_0:156_0:115$ ip community-list expanded c1 permit 6276 ^65000:4_0:156_0:116$ ip community-list expanded c1 permit 6277 ^65000:4_0:156_0:117$ ip community-list expanded c1 permit 6278 ^65000:4_0:156_0:118$ ip community-list expanded c1 permit 6279 ^65000:4_0:156_0:119$ ip community-list expanded c1 permit 6280 ^65000:4_0:156_0:120$ ip community-list expanded c1 permit 6281 ^65000:4_0:156_0:121$ ip community-list expanded c1 permit 6282 ^65000:4_0:156_0:122$ ip community-list expanded c1 permit 6283 ^65000:4_0:156_0:123$ ip community-list expanded c1 permit 6284 ^65000:4_0:156_0:124$ ip community-list expanded c1 permit 6285 ^65000:4_0:156_0:125$ ip community-list expanded c1 permit 6286 ^65000:4_0:156_0:126$ ip community-list expanded c1 permit 6287 ^65000:4_0:156_0:127$ ip community-list expanded c1 permit 6288 ^65000:4_0:156_0:128$ ip community-list expanded c1 permit 6289 ^65000:4_0:156_0:129$ ip community-list expanded c1 permit 6290 ^65000:4_0:156_0:130$ ip community-list expanded c1 permit 6291 ^65000:4_0:156_0:131$ ip community-list expanded c1 permit 6292 ^65000:4_0:156_0:132$ ip community-list expanded c1 permit 6293 ^65000:4_0:156_0:133$ ip community-list expanded c1 permit 6294 ^65000:4_0:156_0:134$ ip community-list expanded c1 permit 6295 ^65000:4_0:156_0:135$ ip community-list expanded c1 permit 6296 ^65000:4_0:156_0:136$ ip community-list expanded c1 permit 6297 ^65000:4_0:156_0:137$ ip community-list expanded c1 permit 6298 ^65000:4_0:156_0:138$ ip community-list expanded c1 permit 6299 ^65000:4_0:156_0:139$ ip community-list expanded c1 permit 6300 ^65000:4_0:156_0:140$ ip community-list expanded c1 permit 6301 ^65000:4_0:156_0:141$ ip community-list expanded c1 permit 6302 ^65000:4_0:156_0:142$ ip community-list expanded c1 permit 6303 ^65000:4_0:156_0:143$ ip community-list expanded c1 permit 6304 ^65000:4_0:156_0:144$ ip community-list expanded c1 permit 6305 ^65000:4_0:156_0:145$ ip community-list expanded c1 permit 6306 ^65000:4_0:156_0:146$ ip community-list expanded c1 permit 6307 ^65000:4_0:156_0:147$ ip community-list expanded c1 permit 6308 ^65000:4_0:156_0:148$ ip community-list expanded c1 permit 6309 ^65000:4_0:156_0:149$ ip community-list expanded c1 permit 6310 ^65000:4_0:156_0:150$ ip community-list expanded c1 permit 6311 ^65000:4_0:156_0:151$ ip community-list expanded c1 permit 6312 ^65000:4_0:156_0:152$ ip community-list expanded c1 permit 6313 ^65000:4_0:156_0:153$ ip community-list expanded c1 permit 6314 ^65000:4_0:156_0:154$ ip community-list expanded c1 permit 6315 ^65000:3_0:156_0:155$ ip community-list expanded c1 permit 6316 ^65000:4_0:156_0:155$ ip community-list expanded c1 permit 6317 ^65000:4_0:156_0:156$ ip community-list expanded c1 permit 6318 ^65000:4_0:157_0:79$ ip community-list expanded c1 permit 6319 ^65000:4_0:157_0:80$ ip community-list expanded c1 permit 6320 ^65000:4_0:157_0:81$ ip community-list expanded c1 permit 6321 ^65000:4_0:157_0:82$ ip community-list expanded c1 permit 6322 ^65000:4_0:157_0:83$ ip community-list expanded c1 permit 6323 ^65000:4_0:157_0:84$ ip community-list expanded c1 permit 6324 ^65000:4_0:157_0:85$ ip community-list expanded c1 permit 6325 ^65000:4_0:157_0:86$ ip community-list expanded c1 permit 6326 ^65000:4_0:157_0:87$ ip community-list expanded c1 permit 6327 ^65000:4_0:157_0:88$ ip community-list expanded c1 permit 6328 ^65000:4_0:157_0:89$ ip community-list expanded c1 permit 6329 ^65000:4_0:157_0:90$ ip community-list expanded c1 permit 6330 ^65000:4_0:157_0:91$ ip community-list expanded c1 permit 6331 ^65000:4_0:157_0:92$ ip community-list expanded c1 permit 6332 ^65000:4_0:157_0:93$ ip community-list expanded c1 permit 6333 ^65000:4_0:157_0:94$ ip community-list expanded c1 permit 6334 ^65000:4_0:157_0:95$ ip community-list expanded c1 permit 6335 ^65000:4_0:157_0:96$ ip community-list expanded c1 permit 6336 ^65000:4_0:157_0:97$ ip community-list expanded c1 permit 6337 ^65000:4_0:157_0:98$ ip community-list expanded c1 permit 6338 ^65000:4_0:157_0:99$ ip community-list expanded c1 permit 6339 ^65000:4_0:157_0:100$ ip community-list expanded c1 permit 6340 ^65000:4_0:157_0:101$ ip community-list expanded c1 permit 6341 ^65000:4_0:157_0:102$ ip community-list expanded c1 permit 6342 ^65000:4_0:157_0:103$ ip community-list expanded c1 permit 6343 ^65000:4_0:157_0:104$ ip community-list expanded c1 permit 6344 ^65000:4_0:157_0:105$ ip community-list expanded c1 permit 6345 ^65000:4_0:157_0:106$ ip community-list expanded c1 permit 6346 ^65000:4_0:157_0:107$ ip community-list expanded c1 permit 6347 ^65000:4_0:157_0:108$ ip community-list expanded c1 permit 6348 ^65000:4_0:157_0:109$ ip community-list expanded c1 permit 6349 ^65000:4_0:157_0:110$ ip community-list expanded c1 permit 6350 ^65000:4_0:157_0:111$ ip community-list expanded c1 permit 6351 ^65000:4_0:157_0:112$ ip community-list expanded c1 permit 6352 ^65000:4_0:157_0:113$ ip community-list expanded c1 permit 6353 ^65000:4_0:157_0:114$ ip community-list expanded c1 permit 6354 ^65000:4_0:157_0:115$ ip community-list expanded c1 permit 6355 ^65000:4_0:157_0:116$ ip community-list expanded c1 permit 6356 ^65000:4_0:157_0:117$ ip community-list expanded c1 permit 6357 ^65000:4_0:157_0:118$ ip community-list expanded c1 permit 6358 ^65000:4_0:157_0:119$ ip community-list expanded c1 permit 6359 ^65000:4_0:157_0:120$ ip community-list expanded c1 permit 6360 ^65000:4_0:157_0:121$ ip community-list expanded c1 permit 6361 ^65000:4_0:157_0:122$ ip community-list expanded c1 permit 6362 ^65000:4_0:157_0:123$ ip community-list expanded c1 permit 6363 ^65000:4_0:157_0:124$ ip community-list expanded c1 permit 6364 ^65000:4_0:157_0:125$ ip community-list expanded c1 permit 6365 ^65000:4_0:157_0:126$ ip community-list expanded c1 permit 6366 ^65000:4_0:157_0:127$ ip community-list expanded c1 permit 6367 ^65000:4_0:157_0:128$ ip community-list expanded c1 permit 6368 ^65000:4_0:157_0:129$ ip community-list expanded c1 permit 6369 ^65000:4_0:157_0:130$ ip community-list expanded c1 permit 6370 ^65000:4_0:157_0:131$ ip community-list expanded c1 permit 6371 ^65000:4_0:157_0:132$ ip community-list expanded c1 permit 6372 ^65000:4_0:157_0:133$ ip community-list expanded c1 permit 6373 ^65000:4_0:157_0:134$ ip community-list expanded c1 permit 6374 ^65000:4_0:157_0:135$ ip community-list expanded c1 permit 6375 ^65000:4_0:157_0:136$ ip community-list expanded c1 permit 6376 ^65000:4_0:157_0:137$ ip community-list expanded c1 permit 6377 ^65000:4_0:157_0:138$ ip community-list expanded c1 permit 6378 ^65000:4_0:157_0:139$ ip community-list expanded c1 permit 6379 ^65000:4_0:157_0:140$ ip community-list expanded c1 permit 6380 ^65000:4_0:157_0:141$ ip community-list expanded c1 permit 6381 ^65000:4_0:157_0:142$ ip community-list expanded c1 permit 6382 ^65000:4_0:157_0:143$ ip community-list expanded c1 permit 6383 ^65000:4_0:157_0:144$ ip community-list expanded c1 permit 6384 ^65000:4_0:157_0:145$ ip community-list expanded c1 permit 6385 ^65000:4_0:157_0:146$ ip community-list expanded c1 permit 6386 ^65000:4_0:157_0:147$ ip community-list expanded c1 permit 6387 ^65000:4_0:157_0:148$ ip community-list expanded c1 permit 6388 ^65000:4_0:157_0:149$ ip community-list expanded c1 permit 6389 ^65000:4_0:157_0:150$ ip community-list expanded c1 permit 6390 ^65000:4_0:157_0:151$ ip community-list expanded c1 permit 6391 ^65000:4_0:157_0:152$ ip community-list expanded c1 permit 6392 ^65000:4_0:157_0:153$ ip community-list expanded c1 permit 6393 ^65000:4_0:157_0:154$ ip community-list expanded c1 permit 6394 ^65000:4_0:157_0:155$ ip community-list expanded c1 permit 6395 ^65000:3_0:157_0:156$ ip community-list expanded c1 permit 6396 ^65000:4_0:157_0:156$ ip community-list expanded c1 permit 6397 ^65000:4_0:157_0:157$ ip community-list expanded c1 permit 6398 ^65000:4_0:158_0:80$ ip community-list expanded c1 permit 6399 ^65000:4_0:158_0:81$ ip community-list expanded c1 permit 6400 ^65000:4_0:158_0:82$ ip community-list expanded c1 permit 6401 ^65000:4_0:158_0:83$ ip community-list expanded c1 permit 6402 ^65000:4_0:158_0:84$ ip community-list expanded c1 permit 6403 ^65000:4_0:158_0:85$ ip community-list expanded c1 permit 6404 ^65000:4_0:158_0:86$ ip community-list expanded c1 permit 6405 ^65000:4_0:158_0:87$ ip community-list expanded c1 permit 6406 ^65000:4_0:158_0:88$ ip community-list expanded c1 permit 6407 ^65000:4_0:158_0:89$ ip community-list expanded c1 permit 6408 ^65000:4_0:158_0:90$ ip community-list expanded c1 permit 6409 ^65000:4_0:158_0:91$ ip community-list expanded c1 permit 6410 ^65000:4_0:158_0:92$ ip community-list expanded c1 permit 6411 ^65000:4_0:158_0:93$ ip community-list expanded c1 permit 6412 ^65000:4_0:158_0:94$ ip community-list expanded c1 permit 6413 ^65000:4_0:158_0:95$ ip community-list expanded c1 permit 6414 ^65000:4_0:158_0:96$ ip community-list expanded c1 permit 6415 ^65000:4_0:158_0:97$ ip community-list expanded c1 permit 6416 ^65000:4_0:158_0:98$ ip community-list expanded c1 permit 6417 ^65000:4_0:158_0:99$ ip community-list expanded c1 permit 6418 ^65000:4_0:158_0:100$ ip community-list expanded c1 permit 6419 ^65000:4_0:158_0:101$ ip community-list expanded c1 permit 6420 ^65000:4_0:158_0:102$ ip community-list expanded c1 permit 6421 ^65000:4_0:158_0:103$ ip community-list expanded c1 permit 6422 ^65000:4_0:158_0:104$ ip community-list expanded c1 permit 6423 ^65000:4_0:158_0:105$ ip community-list expanded c1 permit 6424 ^65000:4_0:158_0:106$ ip community-list expanded c1 permit 6425 ^65000:4_0:158_0:107$ ip community-list expanded c1 permit 6426 ^65000:4_0:158_0:108$ ip community-list expanded c1 permit 6427 ^65000:4_0:158_0:109$ ip community-list expanded c1 permit 6428 ^65000:4_0:158_0:110$ ip community-list expanded c1 permit 6429 ^65000:4_0:158_0:111$ ip community-list expanded c1 permit 6430 ^65000:4_0:158_0:112$ ip community-list expanded c1 permit 6431 ^65000:4_0:158_0:113$ ip community-list expanded c1 permit 6432 ^65000:4_0:158_0:114$ ip community-list expanded c1 permit 6433 ^65000:4_0:158_0:115$ ip community-list expanded c1 permit 6434 ^65000:4_0:158_0:116$ ip community-list expanded c1 permit 6435 ^65000:4_0:158_0:117$ ip community-list expanded c1 permit 6436 ^65000:4_0:158_0:118$ ip community-list expanded c1 permit 6437 ^65000:4_0:158_0:119$ ip community-list expanded c1 permit 6438 ^65000:4_0:158_0:120$ ip community-list expanded c1 permit 6439 ^65000:4_0:158_0:121$ ip community-list expanded c1 permit 6440 ^65000:4_0:158_0:122$ ip community-list expanded c1 permit 6441 ^65000:4_0:158_0:123$ ip community-list expanded c1 permit 6442 ^65000:4_0:158_0:124$ ip community-list expanded c1 permit 6443 ^65000:4_0:158_0:125$ ip community-list expanded c1 permit 6444 ^65000:4_0:158_0:126$ ip community-list expanded c1 permit 6445 ^65000:4_0:158_0:127$ ip community-list expanded c1 permit 6446 ^65000:4_0:158_0:128$ ip community-list expanded c1 permit 6447 ^65000:4_0:158_0:129$ ip community-list expanded c1 permit 6448 ^65000:4_0:158_0:130$ ip community-list expanded c1 permit 6449 ^65000:4_0:158_0:131$ ip community-list expanded c1 permit 6450 ^65000:4_0:158_0:132$ ip community-list expanded c1 permit 6451 ^65000:4_0:158_0:133$ ip community-list expanded c1 permit 6452 ^65000:4_0:158_0:134$ ip community-list expanded c1 permit 6453 ^65000:4_0:158_0:135$ ip community-list expanded c1 permit 6454 ^65000:4_0:158_0:136$ ip community-list expanded c1 permit 6455 ^65000:4_0:158_0:137$ ip community-list expanded c1 permit 6456 ^65000:4_0:158_0:138$ ip community-list expanded c1 permit 6457 ^65000:4_0:158_0:139$ ip community-list expanded c1 permit 6458 ^65000:4_0:158_0:140$ ip community-list expanded c1 permit 6459 ^65000:4_0:158_0:141$ ip community-list expanded c1 permit 6460 ^65000:4_0:158_0:142$ ip community-list expanded c1 permit 6461 ^65000:4_0:158_0:143$ ip community-list expanded c1 permit 6462 ^65000:4_0:158_0:144$ ip community-list expanded c1 permit 6463 ^65000:4_0:158_0:145$ ip community-list expanded c1 permit 6464 ^65000:4_0:158_0:146$ ip community-list expanded c1 permit 6465 ^65000:4_0:158_0:147$ ip community-list expanded c1 permit 6466 ^65000:4_0:158_0:148$ ip community-list expanded c1 permit 6467 ^65000:4_0:158_0:149$ ip community-list expanded c1 permit 6468 ^65000:4_0:158_0:150$ ip community-list expanded c1 permit 6469 ^65000:4_0:158_0:151$ ip community-list expanded c1 permit 6470 ^65000:4_0:158_0:152$ ip community-list expanded c1 permit 6471 ^65000:4_0:158_0:153$ ip community-list expanded c1 permit 6472 ^65000:4_0:158_0:154$ ip community-list expanded c1 permit 6473 ^65000:4_0:158_0:155$ ip community-list expanded c1 permit 6474 ^65000:4_0:158_0:156$ ip community-list expanded c1 permit 6475 ^65000:3_0:158_0:157$ ip community-list expanded c1 permit 6476 ^65000:4_0:158_0:157$ ip community-list expanded c1 permit 6477 ^65000:4_0:158_0:158$ ip community-list expanded c1 permit 6478 ^65000:4_0:159_0:80$ ip community-list expanded c1 permit 6479 ^65000:4_0:159_0:81$ ip community-list expanded c1 permit 6480 ^65000:4_0:159_0:82$ ip community-list expanded c1 permit 6481 ^65000:4_0:159_0:83$ ip community-list expanded c1 permit 6482 ^65000:4_0:159_0:84$ ip community-list expanded c1 permit 6483 ^65000:4_0:159_0:85$ ip community-list expanded c1 permit 6484 ^65000:4_0:159_0:86$ ip community-list expanded c1 permit 6485 ^65000:4_0:159_0:87$ ip community-list expanded c1 permit 6486 ^65000:4_0:159_0:88$ ip community-list expanded c1 permit 6487 ^65000:4_0:159_0:89$ ip community-list expanded c1 permit 6488 ^65000:4_0:159_0:90$ ip community-list expanded c1 permit 6489 ^65000:4_0:159_0:91$ ip community-list expanded c1 permit 6490 ^65000:4_0:159_0:92$ ip community-list expanded c1 permit 6491 ^65000:4_0:159_0:93$ ip community-list expanded c1 permit 6492 ^65000:4_0:159_0:94$ ip community-list expanded c1 permit 6493 ^65000:4_0:159_0:95$ ip community-list expanded c1 permit 6494 ^65000:4_0:159_0:96$ ip community-list expanded c1 permit 6495 ^65000:4_0:159_0:97$ ip community-list expanded c1 permit 6496 ^65000:4_0:159_0:98$ ip community-list expanded c1 permit 6497 ^65000:4_0:159_0:99$ ip community-list expanded c1 permit 6498 ^65000:4_0:159_0:100$ ip community-list expanded c1 permit 6499 ^65000:4_0:159_0:101$ ip community-list expanded c1 permit 6500 ^65000:4_0:159_0:102$ ip community-list expanded c1 permit 6501 ^65000:4_0:159_0:103$ ip community-list expanded c1 permit 6502 ^65000:4_0:159_0:104$ ip community-list expanded c1 permit 6503 ^65000:4_0:159_0:105$ ip community-list expanded c1 permit 6504 ^65000:4_0:159_0:106$ ip community-list expanded c1 permit 6505 ^65000:4_0:159_0:107$ ip community-list expanded c1 permit 6506 ^65000:4_0:159_0:108$ ip community-list expanded c1 permit 6507 ^65000:4_0:159_0:109$ ip community-list expanded c1 permit 6508 ^65000:4_0:159_0:110$ ip community-list expanded c1 permit 6509 ^65000:4_0:159_0:111$ ip community-list expanded c1 permit 6510 ^65000:4_0:159_0:112$ ip community-list expanded c1 permit 6511 ^65000:4_0:159_0:113$ ip community-list expanded c1 permit 6512 ^65000:4_0:159_0:114$ ip community-list expanded c1 permit 6513 ^65000:4_0:159_0:115$ ip community-list expanded c1 permit 6514 ^65000:4_0:159_0:116$ ip community-list expanded c1 permit 6515 ^65000:4_0:159_0:117$ ip community-list expanded c1 permit 6516 ^65000:4_0:159_0:118$ ip community-list expanded c1 permit 6517 ^65000:4_0:159_0:119$ ip community-list expanded c1 permit 6518 ^65000:4_0:159_0:120$ ip community-list expanded c1 permit 6519 ^65000:4_0:159_0:121$ ip community-list expanded c1 permit 6520 ^65000:4_0:159_0:122$ ip community-list expanded c1 permit 6521 ^65000:4_0:159_0:123$ ip community-list expanded c1 permit 6522 ^65000:4_0:159_0:124$ ip community-list expanded c1 permit 6523 ^65000:4_0:159_0:125$ ip community-list expanded c1 permit 6524 ^65000:4_0:159_0:126$ ip community-list expanded c1 permit 6525 ^65000:4_0:159_0:127$ ip community-list expanded c1 permit 6526 ^65000:4_0:159_0:128$ ip community-list expanded c1 permit 6527 ^65000:4_0:159_0:129$ ip community-list expanded c1 permit 6528 ^65000:4_0:159_0:130$ ip community-list expanded c1 permit 6529 ^65000:4_0:159_0:131$ ip community-list expanded c1 permit 6530 ^65000:4_0:159_0:132$ ip community-list expanded c1 permit 6531 ^65000:4_0:159_0:133$ ip community-list expanded c1 permit 6532 ^65000:4_0:159_0:134$ ip community-list expanded c1 permit 6533 ^65000:4_0:159_0:135$ ip community-list expanded c1 permit 6534 ^65000:4_0:159_0:136$ ip community-list expanded c1 permit 6535 ^65000:4_0:159_0:137$ ip community-list expanded c1 permit 6536 ^65000:4_0:159_0:138$ ip community-list expanded c1 permit 6537 ^65000:4_0:159_0:139$ ip community-list expanded c1 permit 6538 ^65000:4_0:159_0:140$ ip community-list expanded c1 permit 6539 ^65000:4_0:159_0:141$ ip community-list expanded c1 permit 6540 ^65000:4_0:159_0:142$ ip community-list expanded c1 permit 6541 ^65000:4_0:159_0:143$ ip community-list expanded c1 permit 6542 ^65000:4_0:159_0:144$ ip community-list expanded c1 permit 6543 ^65000:4_0:159_0:145$ ip community-list expanded c1 permit 6544 ^65000:4_0:159_0:146$ ip community-list expanded c1 permit 6545 ^65000:4_0:159_0:147$ ip community-list expanded c1 permit 6546 ^65000:4_0:159_0:148$ ip community-list expanded c1 permit 6547 ^65000:4_0:159_0:149$ ip community-list expanded c1 permit 6548 ^65000:4_0:159_0:150$ ip community-list expanded c1 permit 6549 ^65000:4_0:159_0:151$ ip community-list expanded c1 permit 6550 ^65000:4_0:159_0:152$ ip community-list expanded c1 permit 6551 ^65000:4_0:159_0:153$ ip community-list expanded c1 permit 6552 ^65000:4_0:159_0:154$ ip community-list expanded c1 permit 6553 ^65000:4_0:159_0:155$ ip community-list expanded c1 permit 6554 ^65000:4_0:159_0:156$ ip community-list expanded c1 permit 6555 ^65000:4_0:159_0:157$ ip community-list expanded c1 permit 6556 ^65000:3_0:159_0:158$ ip community-list expanded c1 permit 6557 ^65000:4_0:159_0:158$ ip community-list expanded c1 permit 6558 ^65000:4_0:159_0:159$ ip community-list expanded c1 permit 6559 ^65000:4_0:160_0:81$ ip community-list expanded c1 permit 6560 ^65000:4_0:160_0:82$ ip community-list expanded c1 permit 6561 ^65000:4_0:160_0:83$ ip community-list expanded c1 permit 6562 ^65000:4_0:160_0:84$ ip community-list expanded c1 permit 6563 ^65000:4_0:160_0:85$ ip community-list expanded c1 permit 6564 ^65000:4_0:160_0:86$ ip community-list expanded c1 permit 6565 ^65000:4_0:160_0:87$ ip community-list expanded c1 permit 6566 ^65000:4_0:160_0:88$ ip community-list expanded c1 permit 6567 ^65000:4_0:160_0:89$ ip community-list expanded c1 permit 6568 ^65000:4_0:160_0:90$ ip community-list expanded c1 permit 6569 ^65000:4_0:160_0:91$ ip community-list expanded c1 permit 6570 ^65000:4_0:160_0:92$ ip community-list expanded c1 permit 6571 ^65000:4_0:160_0:93$ ip community-list expanded c1 permit 6572 ^65000:4_0:160_0:94$ ip community-list expanded c1 permit 6573 ^65000:4_0:160_0:95$ ip community-list expanded c1 permit 6574 ^65000:4_0:160_0:96$ ip community-list expanded c1 permit 6575 ^65000:4_0:160_0:97$ ip community-list expanded c1 permit 6576 ^65000:4_0:160_0:98$ ip community-list expanded c1 permit 6577 ^65000:4_0:160_0:99$ ip community-list expanded c1 permit 6578 ^65000:4_0:160_0:100$ ip community-list expanded c1 permit 6579 ^65000:4_0:160_0:101$ ip community-list expanded c1 permit 6580 ^65000:4_0:160_0:102$ ip community-list expanded c1 permit 6581 ^65000:4_0:160_0:103$ ip community-list expanded c1 permit 6582 ^65000:4_0:160_0:104$ ip community-list expanded c1 permit 6583 ^65000:4_0:160_0:105$ ip community-list expanded c1 permit 6584 ^65000:4_0:160_0:106$ ip community-list expanded c1 permit 6585 ^65000:4_0:160_0:107$ ip community-list expanded c1 permit 6586 ^65000:4_0:160_0:108$ ip community-list expanded c1 permit 6587 ^65000:4_0:160_0:109$ ip community-list expanded c1 permit 6588 ^65000:4_0:160_0:110$ ip community-list expanded c1 permit 6589 ^65000:4_0:160_0:111$ ip community-list expanded c1 permit 6590 ^65000:4_0:160_0:112$ ip community-list expanded c1 permit 6591 ^65000:4_0:160_0:113$ ip community-list expanded c1 permit 6592 ^65000:4_0:160_0:114$ ip community-list expanded c1 permit 6593 ^65000:4_0:160_0:115$ ip community-list expanded c1 permit 6594 ^65000:4_0:160_0:116$ ip community-list expanded c1 permit 6595 ^65000:4_0:160_0:117$ ip community-list expanded c1 permit 6596 ^65000:4_0:160_0:118$ ip community-list expanded c1 permit 6597 ^65000:4_0:160_0:119$ ip community-list expanded c1 permit 6598 ^65000:4_0:160_0:120$ ip community-list expanded c1 permit 6599 ^65000:4_0:160_0:121$ ip community-list expanded c1 permit 6600 ^65000:4_0:160_0:122$ ip community-list expanded c1 permit 6601 ^65000:4_0:160_0:123$ ip community-list expanded c1 permit 6602 ^65000:4_0:160_0:124$ ip community-list expanded c1 permit 6603 ^65000:4_0:160_0:125$ ip community-list expanded c1 permit 6604 ^65000:4_0:160_0:126$ ip community-list expanded c1 permit 6605 ^65000:4_0:160_0:127$ ip community-list expanded c1 permit 6606 ^65000:4_0:160_0:128$ ip community-list expanded c1 permit 6607 ^65000:4_0:160_0:129$ ip community-list expanded c1 permit 6608 ^65000:4_0:160_0:130$ ip community-list expanded c1 permit 6609 ^65000:4_0:160_0:131$ ip community-list expanded c1 permit 6610 ^65000:4_0:160_0:132$ ip community-list expanded c1 permit 6611 ^65000:4_0:160_0:133$ ip community-list expanded c1 permit 6612 ^65000:4_0:160_0:134$ ip community-list expanded c1 permit 6613 ^65000:4_0:160_0:135$ ip community-list expanded c1 permit 6614 ^65000:4_0:160_0:136$ ip community-list expanded c1 permit 6615 ^65000:4_0:160_0:137$ ip community-list expanded c1 permit 6616 ^65000:4_0:160_0:138$ ip community-list expanded c1 permit 6617 ^65000:4_0:160_0:139$ ip community-list expanded c1 permit 6618 ^65000:4_0:160_0:140$ ip community-list expanded c1 permit 6619 ^65000:4_0:160_0:141$ ip community-list expanded c1 permit 6620 ^65000:4_0:160_0:142$ ip community-list expanded c1 permit 6621 ^65000:4_0:160_0:143$ ip community-list expanded c1 permit 6622 ^65000:4_0:160_0:144$ ip community-list expanded c1 permit 6623 ^65000:4_0:160_0:145$ ip community-list expanded c1 permit 6624 ^65000:4_0:160_0:146$ ip community-list expanded c1 permit 6625 ^65000:4_0:160_0:147$ ip community-list expanded c1 permit 6626 ^65000:4_0:160_0:148$ ip community-list expanded c1 permit 6627 ^65000:4_0:160_0:149$ ip community-list expanded c1 permit 6628 ^65000:4_0:160_0:150$ ip community-list expanded c1 permit 6629 ^65000:4_0:160_0:151$ ip community-list expanded c1 permit 6630 ^65000:4_0:160_0:152$ ip community-list expanded c1 permit 6631 ^65000:4_0:160_0:153$ ip community-list expanded c1 permit 6632 ^65000:4_0:160_0:154$ ip community-list expanded c1 permit 6633 ^65000:4_0:160_0:155$ ip community-list expanded c1 permit 6634 ^65000:4_0:160_0:156$ ip community-list expanded c1 permit 6635 ^65000:4_0:160_0:157$ ip community-list expanded c1 permit 6636 ^65000:4_0:160_0:158$ ip community-list expanded c1 permit 6637 ^65000:3_0:160_0:159$ ip community-list expanded c1 permit 6638 ^65000:4_0:160_0:159$ ip community-list expanded c1 permit 6639 ^65000:4_0:160_0:160$ ip community-list expanded c1 permit 6640 ^65000:4_0:161_0:81$ ip community-list expanded c1 permit 6641 ^65000:4_0:161_0:82$ ip community-list expanded c1 permit 6642 ^65000:4_0:161_0:83$ ip community-list expanded c1 permit 6643 ^65000:4_0:161_0:84$ ip community-list expanded c1 permit 6644 ^65000:4_0:161_0:85$ ip community-list expanded c1 permit 6645 ^65000:4_0:161_0:86$ ip community-list expanded c1 permit 6646 ^65000:4_0:161_0:87$ ip community-list expanded c1 permit 6647 ^65000:4_0:161_0:88$ ip community-list expanded c1 permit 6648 ^65000:4_0:161_0:89$ ip community-list expanded c1 permit 6649 ^65000:4_0:161_0:90$ ip community-list expanded c1 permit 6650 ^65000:4_0:161_0:91$ ip community-list expanded c1 permit 6651 ^65000:4_0:161_0:92$ ip community-list expanded c1 permit 6652 ^65000:4_0:161_0:93$ ip community-list expanded c1 permit 6653 ^65000:4_0:161_0:94$ ip community-list expanded c1 permit 6654 ^65000:4_0:161_0:95$ ip community-list expanded c1 permit 6655 ^65000:4_0:161_0:96$ ip community-list expanded c1 permit 6656 ^65000:4_0:161_0:97$ ip community-list expanded c1 permit 6657 ^65000:4_0:161_0:98$ ip community-list expanded c1 permit 6658 ^65000:4_0:161_0:99$ ip community-list expanded c1 permit 6659 ^65000:4_0:161_0:100$ ip community-list expanded c1 permit 6660 ^65000:4_0:161_0:101$ ip community-list expanded c1 permit 6661 ^65000:4_0:161_0:102$ ip community-list expanded c1 permit 6662 ^65000:4_0:161_0:103$ ip community-list expanded c1 permit 6663 ^65000:4_0:161_0:104$ ip community-list expanded c1 permit 6664 ^65000:4_0:161_0:105$ ip community-list expanded c1 permit 6665 ^65000:4_0:161_0:106$ ip community-list expanded c1 permit 6666 ^65000:4_0:161_0:107$ ip community-list expanded c1 permit 6667 ^65000:4_0:161_0:108$ ip community-list expanded c1 permit 6668 ^65000:4_0:161_0:109$ ip community-list expanded c1 permit 6669 ^65000:4_0:161_0:110$ ip community-list expanded c1 permit 6670 ^65000:4_0:161_0:111$ ip community-list expanded c1 permit 6671 ^65000:4_0:161_0:112$ ip community-list expanded c1 permit 6672 ^65000:4_0:161_0:113$ ip community-list expanded c1 permit 6673 ^65000:4_0:161_0:114$ ip community-list expanded c1 permit 6674 ^65000:4_0:161_0:115$ ip community-list expanded c1 permit 6675 ^65000:4_0:161_0:116$ ip community-list expanded c1 permit 6676 ^65000:4_0:161_0:117$ ip community-list expanded c1 permit 6677 ^65000:4_0:161_0:118$ ip community-list expanded c1 permit 6678 ^65000:4_0:161_0:119$ ip community-list expanded c1 permit 6679 ^65000:4_0:161_0:120$ ip community-list expanded c1 permit 6680 ^65000:4_0:161_0:121$ ip community-list expanded c1 permit 6681 ^65000:4_0:161_0:122$ ip community-list expanded c1 permit 6682 ^65000:4_0:161_0:123$ ip community-list expanded c1 permit 6683 ^65000:4_0:161_0:124$ ip community-list expanded c1 permit 6684 ^65000:4_0:161_0:125$ ip community-list expanded c1 permit 6685 ^65000:4_0:161_0:126$ ip community-list expanded c1 permit 6686 ^65000:4_0:161_0:127$ ip community-list expanded c1 permit 6687 ^65000:4_0:161_0:128$ ip community-list expanded c1 permit 6688 ^65000:4_0:161_0:129$ ip community-list expanded c1 permit 6689 ^65000:4_0:161_0:130$ ip community-list expanded c1 permit 6690 ^65000:4_0:161_0:131$ ip community-list expanded c1 permit 6691 ^65000:4_0:161_0:132$ ip community-list expanded c1 permit 6692 ^65000:4_0:161_0:133$ ip community-list expanded c1 permit 6693 ^65000:4_0:161_0:134$ ip community-list expanded c1 permit 6694 ^65000:4_0:161_0:135$ ip community-list expanded c1 permit 6695 ^65000:4_0:161_0:136$ ip community-list expanded c1 permit 6696 ^65000:4_0:161_0:137$ ip community-list expanded c1 permit 6697 ^65000:4_0:161_0:138$ ip community-list expanded c1 permit 6698 ^65000:4_0:161_0:139$ ip community-list expanded c1 permit 6699 ^65000:4_0:161_0:140$ ip community-list expanded c1 permit 6700 ^65000:4_0:161_0:141$ ip community-list expanded c1 permit 6701 ^65000:4_0:161_0:142$ ip community-list expanded c1 permit 6702 ^65000:4_0:161_0:143$ ip community-list expanded c1 permit 6703 ^65000:4_0:161_0:144$ ip community-list expanded c1 permit 6704 ^65000:4_0:161_0:145$ ip community-list expanded c1 permit 6705 ^65000:4_0:161_0:146$ ip community-list expanded c1 permit 6706 ^65000:4_0:161_0:147$ ip community-list expanded c1 permit 6707 ^65000:4_0:161_0:148$ ip community-list expanded c1 permit 6708 ^65000:4_0:161_0:149$ ip community-list expanded c1 permit 6709 ^65000:4_0:161_0:150$ ip community-list expanded c1 permit 6710 ^65000:4_0:161_0:151$ ip community-list expanded c1 permit 6711 ^65000:4_0:161_0:152$ ip community-list expanded c1 permit 6712 ^65000:4_0:161_0:153$ ip community-list expanded c1 permit 6713 ^65000:4_0:161_0:154$ ip community-list expanded c1 permit 6714 ^65000:4_0:161_0:155$ ip community-list expanded c1 permit 6715 ^65000:4_0:161_0:156$ ip community-list expanded c1 permit 6716 ^65000:4_0:161_0:157$ ip community-list expanded c1 permit 6717 ^65000:4_0:161_0:158$ ip community-list expanded c1 permit 6718 ^65000:4_0:161_0:159$ ip community-list expanded c1 permit 6719 ^65000:3_0:161_0:160$ ip community-list expanded c1 permit 6720 ^65000:4_0:161_0:160$ ip community-list expanded c1 permit 6721 ^65000:4_0:161_0:161$ ip community-list expanded c1 permit 6722 ^65000:4_0:162_0:82$ ip community-list expanded c1 permit 6723 ^65000:4_0:162_0:83$ ip community-list expanded c1 permit 6724 ^65000:4_0:162_0:84$ ip community-list expanded c1 permit 6725 ^65000:4_0:162_0:85$ ip community-list expanded c1 permit 6726 ^65000:4_0:162_0:86$ ip community-list expanded c1 permit 6727 ^65000:4_0:162_0:87$ ip community-list expanded c1 permit 6728 ^65000:4_0:162_0:88$ ip community-list expanded c1 permit 6729 ^65000:4_0:162_0:89$ ip community-list expanded c1 permit 6730 ^65000:4_0:162_0:90$ ip community-list expanded c1 permit 6731 ^65000:4_0:162_0:91$ ip community-list expanded c1 permit 6732 ^65000:4_0:162_0:92$ ip community-list expanded c1 permit 6733 ^65000:4_0:162_0:93$ ip community-list expanded c1 permit 6734 ^65000:4_0:162_0:94$ ip community-list expanded c1 permit 6735 ^65000:4_0:162_0:95$ ip community-list expanded c1 permit 6736 ^65000:4_0:162_0:96$ ip community-list expanded c1 permit 6737 ^65000:4_0:162_0:97$ ip community-list expanded c1 permit 6738 ^65000:4_0:162_0:98$ ip community-list expanded c1 permit 6739 ^65000:4_0:162_0:99$ ip community-list expanded c1 permit 6740 ^65000:4_0:162_0:100$ ip community-list expanded c1 permit 6741 ^65000:4_0:162_0:101$ ip community-list expanded c1 permit 6742 ^65000:4_0:162_0:102$ ip community-list expanded c1 permit 6743 ^65000:4_0:162_0:103$ ip community-list expanded c1 permit 6744 ^65000:4_0:162_0:104$ ip community-list expanded c1 permit 6745 ^65000:4_0:162_0:105$ ip community-list expanded c1 permit 6746 ^65000:4_0:162_0:106$ ip community-list expanded c1 permit 6747 ^65000:4_0:162_0:107$ ip community-list expanded c1 permit 6748 ^65000:4_0:162_0:108$ ip community-list expanded c1 permit 6749 ^65000:4_0:162_0:109$ ip community-list expanded c1 permit 6750 ^65000:4_0:162_0:110$ ip community-list expanded c1 permit 6751 ^65000:4_0:162_0:111$ ip community-list expanded c1 permit 6752 ^65000:4_0:162_0:112$ ip community-list expanded c1 permit 6753 ^65000:4_0:162_0:113$ ip community-list expanded c1 permit 6754 ^65000:4_0:162_0:114$ ip community-list expanded c1 permit 6755 ^65000:4_0:162_0:115$ ip community-list expanded c1 permit 6756 ^65000:4_0:162_0:116$ ip community-list expanded c1 permit 6757 ^65000:4_0:162_0:117$ ip community-list expanded c1 permit 6758 ^65000:4_0:162_0:118$ ip community-list expanded c1 permit 6759 ^65000:4_0:162_0:119$ ip community-list expanded c1 permit 6760 ^65000:4_0:162_0:120$ ip community-list expanded c1 permit 6761 ^65000:4_0:162_0:121$ ip community-list expanded c1 permit 6762 ^65000:4_0:162_0:122$ ip community-list expanded c1 permit 6763 ^65000:4_0:162_0:123$ ip community-list expanded c1 permit 6764 ^65000:4_0:162_0:124$ ip community-list expanded c1 permit 6765 ^65000:4_0:162_0:125$ ip community-list expanded c1 permit 6766 ^65000:4_0:162_0:126$ ip community-list expanded c1 permit 6767 ^65000:4_0:162_0:127$ ip community-list expanded c1 permit 6768 ^65000:4_0:162_0:128$ ip community-list expanded c1 permit 6769 ^65000:4_0:162_0:129$ ip community-list expanded c1 permit 6770 ^65000:4_0:162_0:130$ ip community-list expanded c1 permit 6771 ^65000:4_0:162_0:131$ ip community-list expanded c1 permit 6772 ^65000:4_0:162_0:132$ ip community-list expanded c1 permit 6773 ^65000:4_0:162_0:133$ ip community-list expanded c1 permit 6774 ^65000:4_0:162_0:134$ ip community-list expanded c1 permit 6775 ^65000:4_0:162_0:135$ ip community-list expanded c1 permit 6776 ^65000:4_0:162_0:136$ ip community-list expanded c1 permit 6777 ^65000:4_0:162_0:137$ ip community-list expanded c1 permit 6778 ^65000:4_0:162_0:138$ ip community-list expanded c1 permit 6779 ^65000:4_0:162_0:139$ ip community-list expanded c1 permit 6780 ^65000:4_0:162_0:140$ ip community-list expanded c1 permit 6781 ^65000:4_0:162_0:141$ ip community-list expanded c1 permit 6782 ^65000:4_0:162_0:142$ ip community-list expanded c1 permit 6783 ^65000:4_0:162_0:143$ ip community-list expanded c1 permit 6784 ^65000:4_0:162_0:144$ ip community-list expanded c1 permit 6785 ^65000:4_0:162_0:145$ ip community-list expanded c1 permit 6786 ^65000:4_0:162_0:146$ ip community-list expanded c1 permit 6787 ^65000:4_0:162_0:147$ ip community-list expanded c1 permit 6788 ^65000:4_0:162_0:148$ ip community-list expanded c1 permit 6789 ^65000:4_0:162_0:149$ ip community-list expanded c1 permit 6790 ^65000:4_0:162_0:150$ ip community-list expanded c1 permit 6791 ^65000:4_0:162_0:151$ ip community-list expanded c1 permit 6792 ^65000:4_0:162_0:152$ ip community-list expanded c1 permit 6793 ^65000:4_0:162_0:153$ ip community-list expanded c1 permit 6794 ^65000:4_0:162_0:154$ ip community-list expanded c1 permit 6795 ^65000:4_0:162_0:155$ ip community-list expanded c1 permit 6796 ^65000:4_0:162_0:156$ ip community-list expanded c1 permit 6797 ^65000:4_0:162_0:157$ ip community-list expanded c1 permit 6798 ^65000:4_0:162_0:158$ ip community-list expanded c1 permit 6799 ^65000:4_0:162_0:159$ ip community-list expanded c1 permit 6800 ^65000:4_0:162_0:160$ ip community-list expanded c1 permit 6801 ^65000:3_0:162_0:161$ ip community-list expanded c1 permit 6802 ^65000:4_0:162_0:161$ ip community-list expanded c1 permit 6803 ^65000:4_0:162_0:162$ ip community-list expanded c1 permit 6804 ^65000:4_0:163_0:82$ ip community-list expanded c1 permit 6805 ^65000:4_0:163_0:83$ ip community-list expanded c1 permit 6806 ^65000:4_0:163_0:84$ ip community-list expanded c1 permit 6807 ^65000:4_0:163_0:85$ ip community-list expanded c1 permit 6808 ^65000:4_0:163_0:86$ ip community-list expanded c1 permit 6809 ^65000:4_0:163_0:87$ ip community-list expanded c1 permit 6810 ^65000:4_0:163_0:88$ ip community-list expanded c1 permit 6811 ^65000:4_0:163_0:89$ ip community-list expanded c1 permit 6812 ^65000:4_0:163_0:90$ ip community-list expanded c1 permit 6813 ^65000:4_0:163_0:91$ ip community-list expanded c1 permit 6814 ^65000:4_0:163_0:92$ ip community-list expanded c1 permit 6815 ^65000:4_0:163_0:93$ ip community-list expanded c1 permit 6816 ^65000:4_0:163_0:94$ ip community-list expanded c1 permit 6817 ^65000:4_0:163_0:95$ ip community-list expanded c1 permit 6818 ^65000:4_0:163_0:96$ ip community-list expanded c1 permit 6819 ^65000:4_0:163_0:97$ ip community-list expanded c1 permit 6820 ^65000:4_0:163_0:98$ ip community-list expanded c1 permit 6821 ^65000:4_0:163_0:99$ ip community-list expanded c1 permit 6822 ^65000:4_0:163_0:100$ ip community-list expanded c1 permit 6823 ^65000:4_0:163_0:101$ ip community-list expanded c1 permit 6824 ^65000:4_0:163_0:102$ ip community-list expanded c1 permit 6825 ^65000:4_0:163_0:103$ ip community-list expanded c1 permit 6826 ^65000:4_0:163_0:104$ ip community-list expanded c1 permit 6827 ^65000:4_0:163_0:105$ ip community-list expanded c1 permit 6828 ^65000:4_0:163_0:106$ ip community-list expanded c1 permit 6829 ^65000:4_0:163_0:107$ ip community-list expanded c1 permit 6830 ^65000:4_0:163_0:108$ ip community-list expanded c1 permit 6831 ^65000:4_0:163_0:109$ ip community-list expanded c1 permit 6832 ^65000:4_0:163_0:110$ ip community-list expanded c1 permit 6833 ^65000:4_0:163_0:111$ ip community-list expanded c1 permit 6834 ^65000:4_0:163_0:112$ ip community-list expanded c1 permit 6835 ^65000:4_0:163_0:113$ ip community-list expanded c1 permit 6836 ^65000:4_0:163_0:114$ ip community-list expanded c1 permit 6837 ^65000:4_0:163_0:115$ ip community-list expanded c1 permit 6838 ^65000:4_0:163_0:116$ ip community-list expanded c1 permit 6839 ^65000:4_0:163_0:117$ ip community-list expanded c1 permit 6840 ^65000:4_0:163_0:118$ ip community-list expanded c1 permit 6841 ^65000:4_0:163_0:119$ ip community-list expanded c1 permit 6842 ^65000:4_0:163_0:120$ ip community-list expanded c1 permit 6843 ^65000:4_0:163_0:121$ ip community-list expanded c1 permit 6844 ^65000:4_0:163_0:122$ ip community-list expanded c1 permit 6845 ^65000:4_0:163_0:123$ ip community-list expanded c1 permit 6846 ^65000:4_0:163_0:124$ ip community-list expanded c1 permit 6847 ^65000:4_0:163_0:125$ ip community-list expanded c1 permit 6848 ^65000:4_0:163_0:126$ ip community-list expanded c1 permit 6849 ^65000:4_0:163_0:127$ ip community-list expanded c1 permit 6850 ^65000:4_0:163_0:128$ ip community-list expanded c1 permit 6851 ^65000:4_0:163_0:129$ ip community-list expanded c1 permit 6852 ^65000:4_0:163_0:130$ ip community-list expanded c1 permit 6853 ^65000:4_0:163_0:131$ ip community-list expanded c1 permit 6854 ^65000:4_0:163_0:132$ ip community-list expanded c1 permit 6855 ^65000:4_0:163_0:133$ ip community-list expanded c1 permit 6856 ^65000:4_0:163_0:134$ ip community-list expanded c1 permit 6857 ^65000:4_0:163_0:135$ ip community-list expanded c1 permit 6858 ^65000:4_0:163_0:136$ ip community-list expanded c1 permit 6859 ^65000:4_0:163_0:137$ ip community-list expanded c1 permit 6860 ^65000:4_0:163_0:138$ ip community-list expanded c1 permit 6861 ^65000:4_0:163_0:139$ ip community-list expanded c1 permit 6862 ^65000:4_0:163_0:140$ ip community-list expanded c1 permit 6863 ^65000:4_0:163_0:141$ ip community-list expanded c1 permit 6864 ^65000:4_0:163_0:142$ ip community-list expanded c1 permit 6865 ^65000:4_0:163_0:143$ ip community-list expanded c1 permit 6866 ^65000:4_0:163_0:144$ ip community-list expanded c1 permit 6867 ^65000:4_0:163_0:145$ ip community-list expanded c1 permit 6868 ^65000:4_0:163_0:146$ ip community-list expanded c1 permit 6869 ^65000:4_0:163_0:147$ ip community-list expanded c1 permit 6870 ^65000:4_0:163_0:148$ ip community-list expanded c1 permit 6871 ^65000:4_0:163_0:149$ ip community-list expanded c1 permit 6872 ^65000:4_0:163_0:150$ ip community-list expanded c1 permit 6873 ^65000:4_0:163_0:151$ ip community-list expanded c1 permit 6874 ^65000:4_0:163_0:152$ ip community-list expanded c1 permit 6875 ^65000:4_0:163_0:153$ ip community-list expanded c1 permit 6876 ^65000:4_0:163_0:154$ ip community-list expanded c1 permit 6877 ^65000:4_0:163_0:155$ ip community-list expanded c1 permit 6878 ^65000:4_0:163_0:156$ ip community-list expanded c1 permit 6879 ^65000:4_0:163_0:157$ ip community-list expanded c1 permit 6880 ^65000:4_0:163_0:158$ ip community-list expanded c1 permit 6881 ^65000:4_0:163_0:159$ ip community-list expanded c1 permit 6882 ^65000:4_0:163_0:160$ ip community-list expanded c1 permit 6883 ^65000:4_0:163_0:161$ ip community-list expanded c1 permit 6884 ^65000:3_0:163_0:162$ ip community-list expanded c1 permit 6885 ^65000:4_0:163_0:162$ ip community-list expanded c1 permit 6886 ^65000:4_0:163_0:163$ ip community-list expanded c1 permit 6887 ^65000:4_0:164_0:83$ ip community-list expanded c1 permit 6888 ^65000:4_0:164_0:84$ ip community-list expanded c1 permit 6889 ^65000:4_0:164_0:85$ ip community-list expanded c1 permit 6890 ^65000:4_0:164_0:86$ ip community-list expanded c1 permit 6891 ^65000:4_0:164_0:87$ ip community-list expanded c1 permit 6892 ^65000:4_0:164_0:88$ ip community-list expanded c1 permit 6893 ^65000:4_0:164_0:89$ ip community-list expanded c1 permit 6894 ^65000:4_0:164_0:90$ ip community-list expanded c1 permit 6895 ^65000:4_0:164_0:91$ ip community-list expanded c1 permit 6896 ^65000:4_0:164_0:92$ ip community-list expanded c1 permit 6897 ^65000:4_0:164_0:93$ ip community-list expanded c1 permit 6898 ^65000:4_0:164_0:94$ ip community-list expanded c1 permit 6899 ^65000:4_0:164_0:95$ ip community-list expanded c1 permit 6900 ^65000:4_0:164_0:96$ ip community-list expanded c1 permit 6901 ^65000:4_0:164_0:97$ ip community-list expanded c1 permit 6902 ^65000:4_0:164_0:98$ ip community-list expanded c1 permit 6903 ^65000:4_0:164_0:99$ ip community-list expanded c1 permit 6904 ^65000:4_0:164_0:100$ ip community-list expanded c1 permit 6905 ^65000:4_0:164_0:101$ ip community-list expanded c1 permit 6906 ^65000:4_0:164_0:102$ ip community-list expanded c1 permit 6907 ^65000:4_0:164_0:103$ ip community-list expanded c1 permit 6908 ^65000:4_0:164_0:104$ ip community-list expanded c1 permit 6909 ^65000:4_0:164_0:105$ ip community-list expanded c1 permit 6910 ^65000:4_0:164_0:106$ ip community-list expanded c1 permit 6911 ^65000:4_0:164_0:107$ ip community-list expanded c1 permit 6912 ^65000:4_0:164_0:108$ ip community-list expanded c1 permit 6913 ^65000:4_0:164_0:109$ ip community-list expanded c1 permit 6914 ^65000:4_0:164_0:110$ ip community-list expanded c1 permit 6915 ^65000:4_0:164_0:111$ ip community-list expanded c1 permit 6916 ^65000:4_0:164_0:112$ ip community-list expanded c1 permit 6917 ^65000:4_0:164_0:113$ ip community-list expanded c1 permit 6918 ^65000:4_0:164_0:114$ ip community-list expanded c1 permit 6919 ^65000:4_0:164_0:115$ ip community-list expanded c1 permit 6920 ^65000:4_0:164_0:116$ ip community-list expanded c1 permit 6921 ^65000:4_0:164_0:117$ ip community-list expanded c1 permit 6922 ^65000:4_0:164_0:118$ ip community-list expanded c1 permit 6923 ^65000:4_0:164_0:119$ ip community-list expanded c1 permit 6924 ^65000:4_0:164_0:120$ ip community-list expanded c1 permit 6925 ^65000:4_0:164_0:121$ ip community-list expanded c1 permit 6926 ^65000:4_0:164_0:122$ ip community-list expanded c1 permit 6927 ^65000:4_0:164_0:123$ ip community-list expanded c1 permit 6928 ^65000:4_0:164_0:124$ ip community-list expanded c1 permit 6929 ^65000:4_0:164_0:125$ ip community-list expanded c1 permit 6930 ^65000:4_0:164_0:126$ ip community-list expanded c1 permit 6931 ^65000:4_0:164_0:127$ ip community-list expanded c1 permit 6932 ^65000:4_0:164_0:128$ ip community-list expanded c1 permit 6933 ^65000:4_0:164_0:129$ ip community-list expanded c1 permit 6934 ^65000:4_0:164_0:130$ ip community-list expanded c1 permit 6935 ^65000:4_0:164_0:131$ ip community-list expanded c1 permit 6936 ^65000:4_0:164_0:132$ ip community-list expanded c1 permit 6937 ^65000:4_0:164_0:133$ ip community-list expanded c1 permit 6938 ^65000:4_0:164_0:134$ ip community-list expanded c1 permit 6939 ^65000:4_0:164_0:135$ ip community-list expanded c1 permit 6940 ^65000:4_0:164_0:136$ ip community-list expanded c1 permit 6941 ^65000:4_0:164_0:137$ ip community-list expanded c1 permit 6942 ^65000:4_0:164_0:138$ ip community-list expanded c1 permit 6943 ^65000:4_0:164_0:139$ ip community-list expanded c1 permit 6944 ^65000:4_0:164_0:140$ ip community-list expanded c1 permit 6945 ^65000:4_0:164_0:141$ ip community-list expanded c1 permit 6946 ^65000:4_0:164_0:142$ ip community-list expanded c1 permit 6947 ^65000:4_0:164_0:143$ ip community-list expanded c1 permit 6948 ^65000:4_0:164_0:144$ ip community-list expanded c1 permit 6949 ^65000:4_0:164_0:145$ ip community-list expanded c1 permit 6950 ^65000:4_0:164_0:146$ ip community-list expanded c1 permit 6951 ^65000:4_0:164_0:147$ ip community-list expanded c1 permit 6952 ^65000:4_0:164_0:148$ ip community-list expanded c1 permit 6953 ^65000:4_0:164_0:149$ ip community-list expanded c1 permit 6954 ^65000:4_0:164_0:150$ ip community-list expanded c1 permit 6955 ^65000:4_0:164_0:151$ ip community-list expanded c1 permit 6956 ^65000:4_0:164_0:152$ ip community-list expanded c1 permit 6957 ^65000:4_0:164_0:153$ ip community-list expanded c1 permit 6958 ^65000:4_0:164_0:154$ ip community-list expanded c1 permit 6959 ^65000:4_0:164_0:155$ ip community-list expanded c1 permit 6960 ^65000:4_0:164_0:156$ ip community-list expanded c1 permit 6961 ^65000:4_0:164_0:157$ ip community-list expanded c1 permit 6962 ^65000:4_0:164_0:158$ ip community-list expanded c1 permit 6963 ^65000:4_0:164_0:159$ ip community-list expanded c1 permit 6964 ^65000:4_0:164_0:160$ ip community-list expanded c1 permit 6965 ^65000:4_0:164_0:161$ ip community-list expanded c1 permit 6966 ^65000:4_0:164_0:162$ ip community-list expanded c1 permit 6967 ^65000:3_0:164_0:163$ ip community-list expanded c1 permit 6968 ^65000:4_0:164_0:163$ ip community-list expanded c1 permit 6969 ^65000:4_0:164_0:164$ ip community-list expanded c1 permit 6970 ^65000:4_0:165_0:83$ ip community-list expanded c1 permit 6971 ^65000:4_0:165_0:84$ ip community-list expanded c1 permit 6972 ^65000:4_0:165_0:85$ ip community-list expanded c1 permit 6973 ^65000:4_0:165_0:86$ ip community-list expanded c1 permit 6974 ^65000:4_0:165_0:87$ ip community-list expanded c1 permit 6975 ^65000:4_0:165_0:88$ ip community-list expanded c1 permit 6976 ^65000:4_0:165_0:89$ ip community-list expanded c1 permit 6977 ^65000:4_0:165_0:90$ ip community-list expanded c1 permit 6978 ^65000:4_0:165_0:91$ ip community-list expanded c1 permit 6979 ^65000:4_0:165_0:92$ ip community-list expanded c1 permit 6980 ^65000:4_0:165_0:93$ ip community-list expanded c1 permit 6981 ^65000:4_0:165_0:94$ ip community-list expanded c1 permit 6982 ^65000:4_0:165_0:95$ ip community-list expanded c1 permit 6983 ^65000:4_0:165_0:96$ ip community-list expanded c1 permit 6984 ^65000:4_0:165_0:97$ ip community-list expanded c1 permit 6985 ^65000:4_0:165_0:98$ ip community-list expanded c1 permit 6986 ^65000:4_0:165_0:99$ ip community-list expanded c1 permit 6987 ^65000:4_0:165_0:100$ ip community-list expanded c1 permit 6988 ^65000:4_0:165_0:101$ ip community-list expanded c1 permit 6989 ^65000:4_0:165_0:102$ ip community-list expanded c1 permit 6990 ^65000:4_0:165_0:103$ ip community-list expanded c1 permit 6991 ^65000:4_0:165_0:104$ ip community-list expanded c1 permit 6992 ^65000:4_0:165_0:105$ ip community-list expanded c1 permit 6993 ^65000:4_0:165_0:106$ ip community-list expanded c1 permit 6994 ^65000:4_0:165_0:107$ ip community-list expanded c1 permit 6995 ^65000:4_0:165_0:108$ ip community-list expanded c1 permit 6996 ^65000:4_0:165_0:109$ ip community-list expanded c1 permit 6997 ^65000:4_0:165_0:110$ ip community-list expanded c1 permit 6998 ^65000:4_0:165_0:111$ ip community-list expanded c1 permit 6999 ^65000:4_0:165_0:112$ ip community-list expanded c1 permit 7000 ^65000:4_0:165_0:113$ ip community-list expanded c1 permit 7001 ^65000:4_0:165_0:114$ ip community-list expanded c1 permit 7002 ^65000:4_0:165_0:115$ ip community-list expanded c1 permit 7003 ^65000:4_0:165_0:116$ ip community-list expanded c1 permit 7004 ^65000:4_0:165_0:117$ ip community-list expanded c1 permit 7005 ^65000:4_0:165_0:118$ ip community-list expanded c1 permit 7006 ^65000:4_0:165_0:119$ ip community-list expanded c1 permit 7007 ^65000:4_0:165_0:120$ ip community-list expanded c1 permit 7008 ^65000:4_0:165_0:121$ ip community-list expanded c1 permit 7009 ^65000:4_0:165_0:122$ ip community-list expanded c1 permit 7010 ^65000:4_0:165_0:123$ ip community-list expanded c1 permit 7011 ^65000:4_0:165_0:124$ ip community-list expanded c1 permit 7012 ^65000:4_0:165_0:125$ ip community-list expanded c1 permit 7013 ^65000:4_0:165_0:126$ ip community-list expanded c1 permit 7014 ^65000:4_0:165_0:127$ ip community-list expanded c1 permit 7015 ^65000:4_0:165_0:128$ ip community-list expanded c1 permit 7016 ^65000:4_0:165_0:129$ ip community-list expanded c1 permit 7017 ^65000:4_0:165_0:130$ ip community-list expanded c1 permit 7018 ^65000:4_0:165_0:131$ ip community-list expanded c1 permit 7019 ^65000:4_0:165_0:132$ ip community-list expanded c1 permit 7020 ^65000:4_0:165_0:133$ ip community-list expanded c1 permit 7021 ^65000:4_0:165_0:134$ ip community-list expanded c1 permit 7022 ^65000:4_0:165_0:135$ ip community-list expanded c1 permit 7023 ^65000:4_0:165_0:136$ ip community-list expanded c1 permit 7024 ^65000:4_0:165_0:137$ ip community-list expanded c1 permit 7025 ^65000:4_0:165_0:138$ ip community-list expanded c1 permit 7026 ^65000:4_0:165_0:139$ ip community-list expanded c1 permit 7027 ^65000:4_0:165_0:140$ ip community-list expanded c1 permit 7028 ^65000:4_0:165_0:141$ ip community-list expanded c1 permit 7029 ^65000:4_0:165_0:142$ ip community-list expanded c1 permit 7030 ^65000:4_0:165_0:143$ ip community-list expanded c1 permit 7031 ^65000:4_0:165_0:144$ ip community-list expanded c1 permit 7032 ^65000:4_0:165_0:145$ ip community-list expanded c1 permit 7033 ^65000:4_0:165_0:146$ ip community-list expanded c1 permit 7034 ^65000:4_0:165_0:147$ ip community-list expanded c1 permit 7035 ^65000:4_0:165_0:148$ ip community-list expanded c1 permit 7036 ^65000:4_0:165_0:149$ ip community-list expanded c1 permit 7037 ^65000:4_0:165_0:150$ ip community-list expanded c1 permit 7038 ^65000:4_0:165_0:151$ ip community-list expanded c1 permit 7039 ^65000:4_0:165_0:152$ ip community-list expanded c1 permit 7040 ^65000:4_0:165_0:153$ ip community-list expanded c1 permit 7041 ^65000:4_0:165_0:154$ ip community-list expanded c1 permit 7042 ^65000:4_0:165_0:155$ ip community-list expanded c1 permit 7043 ^65000:4_0:165_0:156$ ip community-list expanded c1 permit 7044 ^65000:4_0:165_0:157$ ip community-list expanded c1 permit 7045 ^65000:4_0:165_0:158$ ip community-list expanded c1 permit 7046 ^65000:4_0:165_0:159$ ip community-list expanded c1 permit 7047 ^65000:4_0:165_0:160$ ip community-list expanded c1 permit 7048 ^65000:4_0:165_0:161$ ip community-list expanded c1 permit 7049 ^65000:4_0:165_0:162$ ip community-list expanded c1 permit 7050 ^65000:4_0:165_0:163$ ip community-list expanded c1 permit 7051 ^65000:3_0:165_0:164$ ip community-list expanded c1 permit 7052 ^65000:4_0:165_0:164$ ip community-list expanded c1 permit 7053 ^65000:4_0:165_0:165$ ip community-list expanded c1 permit 7054 ^65000:4_0:166_0:84$ ip community-list expanded c1 permit 7055 ^65000:4_0:166_0:85$ ip community-list expanded c1 permit 7056 ^65000:4_0:166_0:86$ ip community-list expanded c1 permit 7057 ^65000:4_0:166_0:87$ ip community-list expanded c1 permit 7058 ^65000:4_0:166_0:88$ ip community-list expanded c1 permit 7059 ^65000:4_0:166_0:89$ ip community-list expanded c1 permit 7060 ^65000:4_0:166_0:90$ ip community-list expanded c1 permit 7061 ^65000:4_0:166_0:91$ ip community-list expanded c1 permit 7062 ^65000:4_0:166_0:92$ ip community-list expanded c1 permit 7063 ^65000:4_0:166_0:93$ ip community-list expanded c1 permit 7064 ^65000:4_0:166_0:94$ ip community-list expanded c1 permit 7065 ^65000:4_0:166_0:95$ ip community-list expanded c1 permit 7066 ^65000:4_0:166_0:96$ ip community-list expanded c1 permit 7067 ^65000:4_0:166_0:97$ ip community-list expanded c1 permit 7068 ^65000:4_0:166_0:98$ ip community-list expanded c1 permit 7069 ^65000:4_0:166_0:99$ ip community-list expanded c1 permit 7070 ^65000:4_0:166_0:100$ ip community-list expanded c1 permit 7071 ^65000:4_0:166_0:101$ ip community-list expanded c1 permit 7072 ^65000:4_0:166_0:102$ ip community-list expanded c1 permit 7073 ^65000:4_0:166_0:103$ ip community-list expanded c1 permit 7074 ^65000:4_0:166_0:104$ ip community-list expanded c1 permit 7075 ^65000:4_0:166_0:105$ ip community-list expanded c1 permit 7076 ^65000:4_0:166_0:106$ ip community-list expanded c1 permit 7077 ^65000:4_0:166_0:107$ ip community-list expanded c1 permit 7078 ^65000:4_0:166_0:108$ ip community-list expanded c1 permit 7079 ^65000:4_0:166_0:109$ ip community-list expanded c1 permit 7080 ^65000:4_0:166_0:110$ ip community-list expanded c1 permit 7081 ^65000:4_0:166_0:111$ ip community-list expanded c1 permit 7082 ^65000:4_0:166_0:112$ ip community-list expanded c1 permit 7083 ^65000:4_0:166_0:113$ ip community-list expanded c1 permit 7084 ^65000:4_0:166_0:114$ ip community-list expanded c1 permit 7085 ^65000:4_0:166_0:115$ ip community-list expanded c1 permit 7086 ^65000:4_0:166_0:116$ ip community-list expanded c1 permit 7087 ^65000:4_0:166_0:117$ ip community-list expanded c1 permit 7088 ^65000:4_0:166_0:118$ ip community-list expanded c1 permit 7089 ^65000:4_0:166_0:119$ ip community-list expanded c1 permit 7090 ^65000:4_0:166_0:120$ ip community-list expanded c1 permit 7091 ^65000:4_0:166_0:121$ ip community-list expanded c1 permit 7092 ^65000:4_0:166_0:122$ ip community-list expanded c1 permit 7093 ^65000:4_0:166_0:123$ ip community-list expanded c1 permit 7094 ^65000:4_0:166_0:124$ ip community-list expanded c1 permit 7095 ^65000:4_0:166_0:125$ ip community-list expanded c1 permit 7096 ^65000:4_0:166_0:126$ ip community-list expanded c1 permit 7097 ^65000:4_0:166_0:127$ ip community-list expanded c1 permit 7098 ^65000:4_0:166_0:128$ ip community-list expanded c1 permit 7099 ^65000:4_0:166_0:129$ ip community-list expanded c1 permit 7100 ^65000:4_0:166_0:130$ ip community-list expanded c1 permit 7101 ^65000:4_0:166_0:131$ ip community-list expanded c1 permit 7102 ^65000:4_0:166_0:132$ ip community-list expanded c1 permit 7103 ^65000:4_0:166_0:133$ ip community-list expanded c1 permit 7104 ^65000:4_0:166_0:134$ ip community-list expanded c1 permit 7105 ^65000:4_0:166_0:135$ ip community-list expanded c1 permit 7106 ^65000:4_0:166_0:136$ ip community-list expanded c1 permit 7107 ^65000:4_0:166_0:137$ ip community-list expanded c1 permit 7108 ^65000:4_0:166_0:138$ ip community-list expanded c1 permit 7109 ^65000:4_0:166_0:139$ ip community-list expanded c1 permit 7110 ^65000:4_0:166_0:140$ ip community-list expanded c1 permit 7111 ^65000:4_0:166_0:141$ ip community-list expanded c1 permit 7112 ^65000:4_0:166_0:142$ ip community-list expanded c1 permit 7113 ^65000:4_0:166_0:143$ ip community-list expanded c1 permit 7114 ^65000:4_0:166_0:144$ ip community-list expanded c1 permit 7115 ^65000:4_0:166_0:145$ ip community-list expanded c1 permit 7116 ^65000:4_0:166_0:146$ ip community-list expanded c1 permit 7117 ^65000:4_0:166_0:147$ ip community-list expanded c1 permit 7118 ^65000:4_0:166_0:148$ ip community-list expanded c1 permit 7119 ^65000:4_0:166_0:149$ ip community-list expanded c1 permit 7120 ^65000:4_0:166_0:150$ ip community-list expanded c1 permit 7121 ^65000:4_0:166_0:151$ ip community-list expanded c1 permit 7122 ^65000:4_0:166_0:152$ ip community-list expanded c1 permit 7123 ^65000:4_0:166_0:153$ ip community-list expanded c1 permit 7124 ^65000:4_0:166_0:154$ ip community-list expanded c1 permit 7125 ^65000:4_0:166_0:155$ ip community-list expanded c1 permit 7126 ^65000:4_0:166_0:156$ ip community-list expanded c1 permit 7127 ^65000:4_0:166_0:157$ ip community-list expanded c1 permit 7128 ^65000:4_0:166_0:158$ ip community-list expanded c1 permit 7129 ^65000:4_0:166_0:159$ ip community-list expanded c1 permit 7130 ^65000:4_0:166_0:160$ ip community-list expanded c1 permit 7131 ^65000:4_0:166_0:161$ ip community-list expanded c1 permit 7132 ^65000:4_0:166_0:162$ ip community-list expanded c1 permit 7133 ^65000:4_0:166_0:163$ ip community-list expanded c1 permit 7134 ^65000:4_0:166_0:164$ ip community-list expanded c1 permit 7135 ^65000:3_0:166_0:165$ ip community-list expanded c1 permit 7136 ^65000:4_0:166_0:165$ ip community-list expanded c1 permit 7137 ^65000:4_0:166_0:166$ ip community-list expanded c1 permit 7138 ^65000:4_0:167_0:84$ ip community-list expanded c1 permit 7139 ^65000:4_0:167_0:85$ ip community-list expanded c1 permit 7140 ^65000:4_0:167_0:86$ ip community-list expanded c1 permit 7141 ^65000:4_0:167_0:87$ ip community-list expanded c1 permit 7142 ^65000:4_0:167_0:88$ ip community-list expanded c1 permit 7143 ^65000:4_0:167_0:89$ ip community-list expanded c1 permit 7144 ^65000:4_0:167_0:90$ ip community-list expanded c1 permit 7145 ^65000:4_0:167_0:91$ ip community-list expanded c1 permit 7146 ^65000:4_0:167_0:92$ ip community-list expanded c1 permit 7147 ^65000:4_0:167_0:93$ ip community-list expanded c1 permit 7148 ^65000:4_0:167_0:94$ ip community-list expanded c1 permit 7149 ^65000:4_0:167_0:95$ ip community-list expanded c1 permit 7150 ^65000:4_0:167_0:96$ ip community-list expanded c1 permit 7151 ^65000:4_0:167_0:97$ ip community-list expanded c1 permit 7152 ^65000:4_0:167_0:98$ ip community-list expanded c1 permit 7153 ^65000:4_0:167_0:99$ ip community-list expanded c1 permit 7154 ^65000:4_0:167_0:100$ ip community-list expanded c1 permit 7155 ^65000:4_0:167_0:101$ ip community-list expanded c1 permit 7156 ^65000:4_0:167_0:102$ ip community-list expanded c1 permit 7157 ^65000:4_0:167_0:103$ ip community-list expanded c1 permit 7158 ^65000:4_0:167_0:104$ ip community-list expanded c1 permit 7159 ^65000:4_0:167_0:105$ ip community-list expanded c1 permit 7160 ^65000:4_0:167_0:106$ ip community-list expanded c1 permit 7161 ^65000:4_0:167_0:107$ ip community-list expanded c1 permit 7162 ^65000:4_0:167_0:108$ ip community-list expanded c1 permit 7163 ^65000:4_0:167_0:109$ ip community-list expanded c1 permit 7164 ^65000:4_0:167_0:110$ ip community-list expanded c1 permit 7165 ^65000:4_0:167_0:111$ ip community-list expanded c1 permit 7166 ^65000:4_0:167_0:112$ ip community-list expanded c1 permit 7167 ^65000:4_0:167_0:113$ ip community-list expanded c1 permit 7168 ^65000:4_0:167_0:114$ ip community-list expanded c1 permit 7169 ^65000:4_0:167_0:115$ ip community-list expanded c1 permit 7170 ^65000:4_0:167_0:116$ ip community-list expanded c1 permit 7171 ^65000:4_0:167_0:117$ ip community-list expanded c1 permit 7172 ^65000:4_0:167_0:118$ ip community-list expanded c1 permit 7173 ^65000:4_0:167_0:119$ ip community-list expanded c1 permit 7174 ^65000:4_0:167_0:120$ ip community-list expanded c1 permit 7175 ^65000:4_0:167_0:121$ ip community-list expanded c1 permit 7176 ^65000:4_0:167_0:122$ ip community-list expanded c1 permit 7177 ^65000:4_0:167_0:123$ ip community-list expanded c1 permit 7178 ^65000:4_0:167_0:124$ ip community-list expanded c1 permit 7179 ^65000:4_0:167_0:125$ ip community-list expanded c1 permit 7180 ^65000:4_0:167_0:126$ ip community-list expanded c1 permit 7181 ^65000:4_0:167_0:127$ ip community-list expanded c1 permit 7182 ^65000:4_0:167_0:128$ ip community-list expanded c1 permit 7183 ^65000:4_0:167_0:129$ ip community-list expanded c1 permit 7184 ^65000:4_0:167_0:130$ ip community-list expanded c1 permit 7185 ^65000:4_0:167_0:131$ ip community-list expanded c1 permit 7186 ^65000:4_0:167_0:132$ ip community-list expanded c1 permit 7187 ^65000:4_0:167_0:133$ ip community-list expanded c1 permit 7188 ^65000:4_0:167_0:134$ ip community-list expanded c1 permit 7189 ^65000:4_0:167_0:135$ ip community-list expanded c1 permit 7190 ^65000:4_0:167_0:136$ ip community-list expanded c1 permit 7191 ^65000:4_0:167_0:137$ ip community-list expanded c1 permit 7192 ^65000:4_0:167_0:138$ ip community-list expanded c1 permit 7193 ^65000:4_0:167_0:139$ ip community-list expanded c1 permit 7194 ^65000:4_0:167_0:140$ ip community-list expanded c1 permit 7195 ^65000:4_0:167_0:141$ ip community-list expanded c1 permit 7196 ^65000:4_0:167_0:142$ ip community-list expanded c1 permit 7197 ^65000:4_0:167_0:143$ ip community-list expanded c1 permit 7198 ^65000:4_0:167_0:144$ ip community-list expanded c1 permit 7199 ^65000:4_0:167_0:145$ ip community-list expanded c1 permit 7200 ^65000:4_0:167_0:146$ ip community-list expanded c1 permit 7201 ^65000:4_0:167_0:147$ ip community-list expanded c1 permit 7202 ^65000:4_0:167_0:148$ ip community-list expanded c1 permit 7203 ^65000:4_0:167_0:149$ ip community-list expanded c1 permit 7204 ^65000:4_0:167_0:150$ ip community-list expanded c1 permit 7205 ^65000:4_0:167_0:151$ ip community-list expanded c1 permit 7206 ^65000:4_0:167_0:152$ ip community-list expanded c1 permit 7207 ^65000:4_0:167_0:153$ ip community-list expanded c1 permit 7208 ^65000:4_0:167_0:154$ ip community-list expanded c1 permit 7209 ^65000:4_0:167_0:155$ ip community-list expanded c1 permit 7210 ^65000:4_0:167_0:156$ ip community-list expanded c1 permit 7211 ^65000:4_0:167_0:157$ ip community-list expanded c1 permit 7212 ^65000:4_0:167_0:158$ ip community-list expanded c1 permit 7213 ^65000:4_0:167_0:159$ ip community-list expanded c1 permit 7214 ^65000:4_0:167_0:160$ ip community-list expanded c1 permit 7215 ^65000:4_0:167_0:161$ ip community-list expanded c1 permit 7216 ^65000:4_0:167_0:162$ ip community-list expanded c1 permit 7217 ^65000:4_0:167_0:163$ ip community-list expanded c1 permit 7218 ^65000:4_0:167_0:164$ ip community-list expanded c1 permit 7219 ^65000:4_0:167_0:165$ ip community-list expanded c1 permit 7220 ^65000:3_0:167_0:166$ ip community-list expanded c1 permit 7221 ^65000:4_0:167_0:166$ ip community-list expanded c1 permit 7222 ^65000:4_0:167_0:167$ ip community-list expanded c1 permit 7223 ^65000:4_0:168_0:85$ ip community-list expanded c1 permit 7224 ^65000:4_0:168_0:86$ ip community-list expanded c1 permit 7225 ^65000:4_0:168_0:87$ ip community-list expanded c1 permit 7226 ^65000:4_0:168_0:88$ ip community-list expanded c1 permit 7227 ^65000:4_0:168_0:89$ ip community-list expanded c1 permit 7228 ^65000:4_0:168_0:90$ ip community-list expanded c1 permit 7229 ^65000:4_0:168_0:91$ ip community-list expanded c1 permit 7230 ^65000:4_0:168_0:92$ ip community-list expanded c1 permit 7231 ^65000:4_0:168_0:93$ ip community-list expanded c1 permit 7232 ^65000:4_0:168_0:94$ ip community-list expanded c1 permit 7233 ^65000:4_0:168_0:95$ ip community-list expanded c1 permit 7234 ^65000:4_0:168_0:96$ ip community-list expanded c1 permit 7235 ^65000:4_0:168_0:97$ ip community-list expanded c1 permit 7236 ^65000:4_0:168_0:98$ ip community-list expanded c1 permit 7237 ^65000:4_0:168_0:99$ ip community-list expanded c1 permit 7238 ^65000:4_0:168_0:100$ ip community-list expanded c1 permit 7239 ^65000:4_0:168_0:101$ ip community-list expanded c1 permit 7240 ^65000:4_0:168_0:102$ ip community-list expanded c1 permit 7241 ^65000:4_0:168_0:103$ ip community-list expanded c1 permit 7242 ^65000:4_0:168_0:104$ ip community-list expanded c1 permit 7243 ^65000:4_0:168_0:105$ ip community-list expanded c1 permit 7244 ^65000:4_0:168_0:106$ ip community-list expanded c1 permit 7245 ^65000:4_0:168_0:107$ ip community-list expanded c1 permit 7246 ^65000:4_0:168_0:108$ ip community-list expanded c1 permit 7247 ^65000:4_0:168_0:109$ ip community-list expanded c1 permit 7248 ^65000:4_0:168_0:110$ ip community-list expanded c1 permit 7249 ^65000:4_0:168_0:111$ ip community-list expanded c1 permit 7250 ^65000:4_0:168_0:112$ ip community-list expanded c1 permit 7251 ^65000:4_0:168_0:113$ ip community-list expanded c1 permit 7252 ^65000:4_0:168_0:114$ ip community-list expanded c1 permit 7253 ^65000:4_0:168_0:115$ ip community-list expanded c1 permit 7254 ^65000:4_0:168_0:116$ ip community-list expanded c1 permit 7255 ^65000:4_0:168_0:117$ ip community-list expanded c1 permit 7256 ^65000:4_0:168_0:118$ ip community-list expanded c1 permit 7257 ^65000:4_0:168_0:119$ ip community-list expanded c1 permit 7258 ^65000:4_0:168_0:120$ ip community-list expanded c1 permit 7259 ^65000:4_0:168_0:121$ ip community-list expanded c1 permit 7260 ^65000:4_0:168_0:122$ ip community-list expanded c1 permit 7261 ^65000:4_0:168_0:123$ ip community-list expanded c1 permit 7262 ^65000:4_0:168_0:124$ ip community-list expanded c1 permit 7263 ^65000:4_0:168_0:125$ ip community-list expanded c1 permit 7264 ^65000:4_0:168_0:126$ ip community-list expanded c1 permit 7265 ^65000:4_0:168_0:127$ ip community-list expanded c1 permit 7266 ^65000:4_0:168_0:128$ ip community-list expanded c1 permit 7267 ^65000:4_0:168_0:129$ ip community-list expanded c1 permit 7268 ^65000:4_0:168_0:130$ ip community-list expanded c1 permit 7269 ^65000:4_0:168_0:131$ ip community-list expanded c1 permit 7270 ^65000:4_0:168_0:132$ ip community-list expanded c1 permit 7271 ^65000:4_0:168_0:133$ ip community-list expanded c1 permit 7272 ^65000:4_0:168_0:134$ ip community-list expanded c1 permit 7273 ^65000:4_0:168_0:135$ ip community-list expanded c1 permit 7274 ^65000:4_0:168_0:136$ ip community-list expanded c1 permit 7275 ^65000:4_0:168_0:137$ ip community-list expanded c1 permit 7276 ^65000:4_0:168_0:138$ ip community-list expanded c1 permit 7277 ^65000:4_0:168_0:139$ ip community-list expanded c1 permit 7278 ^65000:4_0:168_0:140$ ip community-list expanded c1 permit 7279 ^65000:4_0:168_0:141$ ip community-list expanded c1 permit 7280 ^65000:4_0:168_0:142$ ip community-list expanded c1 permit 7281 ^65000:4_0:168_0:143$ ip community-list expanded c1 permit 7282 ^65000:4_0:168_0:144$ ip community-list expanded c1 permit 7283 ^65000:4_0:168_0:145$ ip community-list expanded c1 permit 7284 ^65000:4_0:168_0:146$ ip community-list expanded c1 permit 7285 ^65000:4_0:168_0:147$ ip community-list expanded c1 permit 7286 ^65000:4_0:168_0:148$ ip community-list expanded c1 permit 7287 ^65000:4_0:168_0:149$ ip community-list expanded c1 permit 7288 ^65000:4_0:168_0:150$ ip community-list expanded c1 permit 7289 ^65000:4_0:168_0:151$ ip community-list expanded c1 permit 7290 ^65000:4_0:168_0:152$ ip community-list expanded c1 permit 7291 ^65000:4_0:168_0:153$ ip community-list expanded c1 permit 7292 ^65000:4_0:168_0:154$ ip community-list expanded c1 permit 7293 ^65000:4_0:168_0:155$ ip community-list expanded c1 permit 7294 ^65000:4_0:168_0:156$ ip community-list expanded c1 permit 7295 ^65000:4_0:168_0:157$ ip community-list expanded c1 permit 7296 ^65000:4_0:168_0:158$ ip community-list expanded c1 permit 7297 ^65000:4_0:168_0:159$ ip community-list expanded c1 permit 7298 ^65000:4_0:168_0:160$ ip community-list expanded c1 permit 7299 ^65000:4_0:168_0:161$ ip community-list expanded c1 permit 7300 ^65000:4_0:168_0:162$ ip community-list expanded c1 permit 7301 ^65000:4_0:168_0:163$ ip community-list expanded c1 permit 7302 ^65000:4_0:168_0:164$ ip community-list expanded c1 permit 7303 ^65000:4_0:168_0:165$ ip community-list expanded c1 permit 7304 ^65000:4_0:168_0:166$ ip community-list expanded c1 permit 7305 ^65000:3_0:168_0:167$ ip community-list expanded c1 permit 7306 ^65000:4_0:168_0:167$ ip community-list expanded c1 permit 7307 ^65000:4_0:168_0:168$ ip community-list expanded c1 permit 7308 ^65000:4_0:169_0:85$ ip community-list expanded c1 permit 7309 ^65000:4_0:169_0:86$ ip community-list expanded c1 permit 7310 ^65000:4_0:169_0:87$ ip community-list expanded c1 permit 7311 ^65000:4_0:169_0:88$ ip community-list expanded c1 permit 7312 ^65000:4_0:169_0:89$ ip community-list expanded c1 permit 7313 ^65000:4_0:169_0:90$ ip community-list expanded c1 permit 7314 ^65000:4_0:169_0:91$ ip community-list expanded c1 permit 7315 ^65000:4_0:169_0:92$ ip community-list expanded c1 permit 7316 ^65000:4_0:169_0:93$ ip community-list expanded c1 permit 7317 ^65000:4_0:169_0:94$ ip community-list expanded c1 permit 7318 ^65000:4_0:169_0:95$ ip community-list expanded c1 permit 7319 ^65000:4_0:169_0:96$ ip community-list expanded c1 permit 7320 ^65000:4_0:169_0:97$ ip community-list expanded c1 permit 7321 ^65000:4_0:169_0:98$ ip community-list expanded c1 permit 7322 ^65000:4_0:169_0:99$ ip community-list expanded c1 permit 7323 ^65000:4_0:169_0:100$ ip community-list expanded c1 permit 7324 ^65000:4_0:169_0:101$ ip community-list expanded c1 permit 7325 ^65000:4_0:169_0:102$ ip community-list expanded c1 permit 7326 ^65000:4_0:169_0:103$ ip community-list expanded c1 permit 7327 ^65000:4_0:169_0:104$ ip community-list expanded c1 permit 7328 ^65000:4_0:169_0:105$ ip community-list expanded c1 permit 7329 ^65000:4_0:169_0:106$ ip community-list expanded c1 permit 7330 ^65000:4_0:169_0:107$ ip community-list expanded c1 permit 7331 ^65000:4_0:169_0:108$ ip community-list expanded c1 permit 7332 ^65000:4_0:169_0:109$ ip community-list expanded c1 permit 7333 ^65000:4_0:169_0:110$ ip community-list expanded c1 permit 7334 ^65000:4_0:169_0:111$ ip community-list expanded c1 permit 7335 ^65000:4_0:169_0:112$ ip community-list expanded c1 permit 7336 ^65000:4_0:169_0:113$ ip community-list expanded c1 permit 7337 ^65000:4_0:169_0:114$ ip community-list expanded c1 permit 7338 ^65000:4_0:169_0:115$ ip community-list expanded c1 permit 7339 ^65000:4_0:169_0:116$ ip community-list expanded c1 permit 7340 ^65000:4_0:169_0:117$ ip community-list expanded c1 permit 7341 ^65000:4_0:169_0:118$ ip community-list expanded c1 permit 7342 ^65000:4_0:169_0:119$ ip community-list expanded c1 permit 7343 ^65000:4_0:169_0:120$ ip community-list expanded c1 permit 7344 ^65000:4_0:169_0:121$ ip community-list expanded c1 permit 7345 ^65000:4_0:169_0:122$ ip community-list expanded c1 permit 7346 ^65000:4_0:169_0:123$ ip community-list expanded c1 permit 7347 ^65000:4_0:169_0:124$ ip community-list expanded c1 permit 7348 ^65000:4_0:169_0:125$ ip community-list expanded c1 permit 7349 ^65000:4_0:169_0:126$ ip community-list expanded c1 permit 7350 ^65000:4_0:169_0:127$ ip community-list expanded c1 permit 7351 ^65000:4_0:169_0:128$ ip community-list expanded c1 permit 7352 ^65000:4_0:169_0:129$ ip community-list expanded c1 permit 7353 ^65000:4_0:169_0:130$ ip community-list expanded c1 permit 7354 ^65000:4_0:169_0:131$ ip community-list expanded c1 permit 7355 ^65000:4_0:169_0:132$ ip community-list expanded c1 permit 7356 ^65000:4_0:169_0:133$ ip community-list expanded c1 permit 7357 ^65000:4_0:169_0:134$ ip community-list expanded c1 permit 7358 ^65000:4_0:169_0:135$ ip community-list expanded c1 permit 7359 ^65000:4_0:169_0:136$ ip community-list expanded c1 permit 7360 ^65000:4_0:169_0:137$ ip community-list expanded c1 permit 7361 ^65000:4_0:169_0:138$ ip community-list expanded c1 permit 7362 ^65000:4_0:169_0:139$ ip community-list expanded c1 permit 7363 ^65000:4_0:169_0:140$ ip community-list expanded c1 permit 7364 ^65000:4_0:169_0:141$ ip community-list expanded c1 permit 7365 ^65000:4_0:169_0:142$ ip community-list expanded c1 permit 7366 ^65000:4_0:169_0:143$ ip community-list expanded c1 permit 7367 ^65000:4_0:169_0:144$ ip community-list expanded c1 permit 7368 ^65000:4_0:169_0:145$ ip community-list expanded c1 permit 7369 ^65000:4_0:169_0:146$ ip community-list expanded c1 permit 7370 ^65000:4_0:169_0:147$ ip community-list expanded c1 permit 7371 ^65000:4_0:169_0:148$ ip community-list expanded c1 permit 7372 ^65000:4_0:169_0:149$ ip community-list expanded c1 permit 7373 ^65000:4_0:169_0:150$ ip community-list expanded c1 permit 7374 ^65000:4_0:169_0:151$ ip community-list expanded c1 permit 7375 ^65000:4_0:169_0:152$ ip community-list expanded c1 permit 7376 ^65000:4_0:169_0:153$ ip community-list expanded c1 permit 7377 ^65000:4_0:169_0:154$ ip community-list expanded c1 permit 7378 ^65000:4_0:169_0:155$ ip community-list expanded c1 permit 7379 ^65000:4_0:169_0:156$ ip community-list expanded c1 permit 7380 ^65000:4_0:169_0:157$ ip community-list expanded c1 permit 7381 ^65000:4_0:169_0:158$ ip community-list expanded c1 permit 7382 ^65000:4_0:169_0:159$ ip community-list expanded c1 permit 7383 ^65000:4_0:169_0:160$ ip community-list expanded c1 permit 7384 ^65000:4_0:169_0:161$ ip community-list expanded c1 permit 7385 ^65000:4_0:169_0:162$ ip community-list expanded c1 permit 7386 ^65000:4_0:169_0:163$ ip community-list expanded c1 permit 7387 ^65000:4_0:169_0:164$ ip community-list expanded c1 permit 7388 ^65000:4_0:169_0:165$ ip community-list expanded c1 permit 7389 ^65000:4_0:169_0:166$ ip community-list expanded c1 permit 7390 ^65000:4_0:169_0:167$ ip community-list expanded c1 permit 7391 ^65000:3_0:169_0:168$ ip community-list expanded c1 permit 7392 ^65000:4_0:169_0:168$ ip community-list expanded c1 permit 7393 ^65000:4_0:169_0:169$ ip community-list expanded c1 permit 7394 ^65000:4_0:170_0:86$ ip community-list expanded c1 permit 7395 ^65000:4_0:170_0:87$ ip community-list expanded c1 permit 7396 ^65000:4_0:170_0:88$ ip community-list expanded c1 permit 7397 ^65000:4_0:170_0:89$ ip community-list expanded c1 permit 7398 ^65000:4_0:170_0:90$ ip community-list expanded c1 permit 7399 ^65000:4_0:170_0:91$ ip community-list expanded c1 permit 7400 ^65000:4_0:170_0:92$ ip community-list expanded c1 permit 7401 ^65000:4_0:170_0:93$ ip community-list expanded c1 permit 7402 ^65000:4_0:170_0:94$ ip community-list expanded c1 permit 7403 ^65000:4_0:170_0:95$ ip community-list expanded c1 permit 7404 ^65000:4_0:170_0:96$ ip community-list expanded c1 permit 7405 ^65000:4_0:170_0:97$ ip community-list expanded c1 permit 7406 ^65000:4_0:170_0:98$ ip community-list expanded c1 permit 7407 ^65000:4_0:170_0:99$ ip community-list expanded c1 permit 7408 ^65000:4_0:170_0:100$ ip community-list expanded c1 permit 7409 ^65000:4_0:170_0:101$ ip community-list expanded c1 permit 7410 ^65000:4_0:170_0:102$ ip community-list expanded c1 permit 7411 ^65000:4_0:170_0:103$ ip community-list expanded c1 permit 7412 ^65000:4_0:170_0:104$ ip community-list expanded c1 permit 7413 ^65000:4_0:170_0:105$ ip community-list expanded c1 permit 7414 ^65000:4_0:170_0:106$ ip community-list expanded c1 permit 7415 ^65000:4_0:170_0:107$ ip community-list expanded c1 permit 7416 ^65000:4_0:170_0:108$ ip community-list expanded c1 permit 7417 ^65000:4_0:170_0:109$ ip community-list expanded c1 permit 7418 ^65000:4_0:170_0:110$ ip community-list expanded c1 permit 7419 ^65000:4_0:170_0:111$ ip community-list expanded c1 permit 7420 ^65000:4_0:170_0:112$ ip community-list expanded c1 permit 7421 ^65000:4_0:170_0:113$ ip community-list expanded c1 permit 7422 ^65000:4_0:170_0:114$ ip community-list expanded c1 permit 7423 ^65000:4_0:170_0:115$ ip community-list expanded c1 permit 7424 ^65000:4_0:170_0:116$ ip community-list expanded c1 permit 7425 ^65000:4_0:170_0:117$ ip community-list expanded c1 permit 7426 ^65000:4_0:170_0:118$ ip community-list expanded c1 permit 7427 ^65000:4_0:170_0:119$ ip community-list expanded c1 permit 7428 ^65000:4_0:170_0:120$ ip community-list expanded c1 permit 7429 ^65000:4_0:170_0:121$ ip community-list expanded c1 permit 7430 ^65000:4_0:170_0:122$ ip community-list expanded c1 permit 7431 ^65000:4_0:170_0:123$ ip community-list expanded c1 permit 7432 ^65000:4_0:170_0:124$ ip community-list expanded c1 permit 7433 ^65000:4_0:170_0:125$ ip community-list expanded c1 permit 7434 ^65000:4_0:170_0:126$ ip community-list expanded c1 permit 7435 ^65000:4_0:170_0:127$ ip community-list expanded c1 permit 7436 ^65000:4_0:170_0:128$ ip community-list expanded c1 permit 7437 ^65000:4_0:170_0:129$ ip community-list expanded c1 permit 7438 ^65000:4_0:170_0:130$ ip community-list expanded c1 permit 7439 ^65000:4_0:170_0:131$ ip community-list expanded c1 permit 7440 ^65000:4_0:170_0:132$ ip community-list expanded c1 permit 7441 ^65000:4_0:170_0:133$ ip community-list expanded c1 permit 7442 ^65000:4_0:170_0:134$ ip community-list expanded c1 permit 7443 ^65000:4_0:170_0:135$ ip community-list expanded c1 permit 7444 ^65000:4_0:170_0:136$ ip community-list expanded c1 permit 7445 ^65000:4_0:170_0:137$ ip community-list expanded c1 permit 7446 ^65000:4_0:170_0:138$ ip community-list expanded c1 permit 7447 ^65000:4_0:170_0:139$ ip community-list expanded c1 permit 7448 ^65000:4_0:170_0:140$ ip community-list expanded c1 permit 7449 ^65000:4_0:170_0:141$ ip community-list expanded c1 permit 7450 ^65000:4_0:170_0:142$ ip community-list expanded c1 permit 7451 ^65000:4_0:170_0:143$ ip community-list expanded c1 permit 7452 ^65000:4_0:170_0:144$ ip community-list expanded c1 permit 7453 ^65000:4_0:170_0:145$ ip community-list expanded c1 permit 7454 ^65000:4_0:170_0:146$ ip community-list expanded c1 permit 7455 ^65000:4_0:170_0:147$ ip community-list expanded c1 permit 7456 ^65000:4_0:170_0:148$ ip community-list expanded c1 permit 7457 ^65000:4_0:170_0:149$ ip community-list expanded c1 permit 7458 ^65000:4_0:170_0:150$ ip community-list expanded c1 permit 7459 ^65000:4_0:170_0:151$ ip community-list expanded c1 permit 7460 ^65000:4_0:170_0:152$ ip community-list expanded c1 permit 7461 ^65000:4_0:170_0:153$ ip community-list expanded c1 permit 7462 ^65000:4_0:170_0:154$ ip community-list expanded c1 permit 7463 ^65000:4_0:170_0:155$ ip community-list expanded c1 permit 7464 ^65000:4_0:170_0:156$ ip community-list expanded c1 permit 7465 ^65000:4_0:170_0:157$ ip community-list expanded c1 permit 7466 ^65000:4_0:170_0:158$ ip community-list expanded c1 permit 7467 ^65000:4_0:170_0:159$ ip community-list expanded c1 permit 7468 ^65000:4_0:170_0:160$ ip community-list expanded c1 permit 7469 ^65000:4_0:170_0:161$ ip community-list expanded c1 permit 7470 ^65000:4_0:170_0:162$ ip community-list expanded c1 permit 7471 ^65000:4_0:170_0:163$ ip community-list expanded c1 permit 7472 ^65000:4_0:170_0:164$ ip community-list expanded c1 permit 7473 ^65000:4_0:170_0:165$ ip community-list expanded c1 permit 7474 ^65000:4_0:170_0:166$ ip community-list expanded c1 permit 7475 ^65000:4_0:170_0:167$ ip community-list expanded c1 permit 7476 ^65000:4_0:170_0:168$ ip community-list expanded c1 permit 7477 ^65000:3_0:170_0:169$ ip community-list expanded c1 permit 7478 ^65000:4_0:170_0:169$ ip community-list expanded c1 permit 7479 ^65000:4_0:170_0:170$ ip community-list expanded c1 permit 7480 ^65000:4_0:171_0:86$ ip community-list expanded c1 permit 7481 ^65000:4_0:171_0:87$ ip community-list expanded c1 permit 7482 ^65000:4_0:171_0:88$ ip community-list expanded c1 permit 7483 ^65000:4_0:171_0:89$ ip community-list expanded c1 permit 7484 ^65000:4_0:171_0:90$ ip community-list expanded c1 permit 7485 ^65000:4_0:171_0:91$ ip community-list expanded c1 permit 7486 ^65000:4_0:171_0:92$ ip community-list expanded c1 permit 7487 ^65000:4_0:171_0:93$ ip community-list expanded c1 permit 7488 ^65000:4_0:171_0:94$ ip community-list expanded c1 permit 7489 ^65000:4_0:171_0:95$ ip community-list expanded c1 permit 7490 ^65000:4_0:171_0:96$ ip community-list expanded c1 permit 7491 ^65000:4_0:171_0:97$ ip community-list expanded c1 permit 7492 ^65000:4_0:171_0:98$ ip community-list expanded c1 permit 7493 ^65000:4_0:171_0:99$ ip community-list expanded c1 permit 7494 ^65000:4_0:171_0:100$ ip community-list expanded c1 permit 7495 ^65000:4_0:171_0:101$ ip community-list expanded c1 permit 7496 ^65000:4_0:171_0:102$ ip community-list expanded c1 permit 7497 ^65000:4_0:171_0:103$ ip community-list expanded c1 permit 7498 ^65000:4_0:171_0:104$ ip community-list expanded c1 permit 7499 ^65000:4_0:171_0:105$ ip community-list expanded c1 permit 7500 ^65000:4_0:171_0:106$ ip community-list expanded c1 permit 7501 ^65000:4_0:171_0:107$ ip community-list expanded c1 permit 7502 ^65000:4_0:171_0:108$ ip community-list expanded c1 permit 7503 ^65000:4_0:171_0:109$ ip community-list expanded c1 permit 7504 ^65000:4_0:171_0:110$ ip community-list expanded c1 permit 7505 ^65000:4_0:171_0:111$ ip community-list expanded c1 permit 7506 ^65000:4_0:171_0:112$ ip community-list expanded c1 permit 7507 ^65000:4_0:171_0:113$ ip community-list expanded c1 permit 7508 ^65000:4_0:171_0:114$ ip community-list expanded c1 permit 7509 ^65000:4_0:171_0:115$ ip community-list expanded c1 permit 7510 ^65000:4_0:171_0:116$ ip community-list expanded c1 permit 7511 ^65000:4_0:171_0:117$ ip community-list expanded c1 permit 7512 ^65000:4_0:171_0:118$ ip community-list expanded c1 permit 7513 ^65000:4_0:171_0:119$ ip community-list expanded c1 permit 7514 ^65000:4_0:171_0:120$ ip community-list expanded c1 permit 7515 ^65000:4_0:171_0:121$ ip community-list expanded c1 permit 7516 ^65000:4_0:171_0:122$ ip community-list expanded c1 permit 7517 ^65000:4_0:171_0:123$ ip community-list expanded c1 permit 7518 ^65000:4_0:171_0:124$ ip community-list expanded c1 permit 7519 ^65000:4_0:171_0:125$ ip community-list expanded c1 permit 7520 ^65000:4_0:171_0:126$ ip community-list expanded c1 permit 7521 ^65000:4_0:171_0:127$ ip community-list expanded c1 permit 7522 ^65000:4_0:171_0:128$ ip community-list expanded c1 permit 7523 ^65000:4_0:171_0:129$ ip community-list expanded c1 permit 7524 ^65000:4_0:171_0:130$ ip community-list expanded c1 permit 7525 ^65000:4_0:171_0:131$ ip community-list expanded c1 permit 7526 ^65000:4_0:171_0:132$ ip community-list expanded c1 permit 7527 ^65000:4_0:171_0:133$ ip community-list expanded c1 permit 7528 ^65000:4_0:171_0:134$ ip community-list expanded c1 permit 7529 ^65000:4_0:171_0:135$ ip community-list expanded c1 permit 7530 ^65000:4_0:171_0:136$ ip community-list expanded c1 permit 7531 ^65000:4_0:171_0:137$ ip community-list expanded c1 permit 7532 ^65000:4_0:171_0:138$ ip community-list expanded c1 permit 7533 ^65000:4_0:171_0:139$ ip community-list expanded c1 permit 7534 ^65000:4_0:171_0:140$ ip community-list expanded c1 permit 7535 ^65000:4_0:171_0:141$ ip community-list expanded c1 permit 7536 ^65000:4_0:171_0:142$ ip community-list expanded c1 permit 7537 ^65000:4_0:171_0:143$ ip community-list expanded c1 permit 7538 ^65000:4_0:171_0:144$ ip community-list expanded c1 permit 7539 ^65000:4_0:171_0:145$ ip community-list expanded c1 permit 7540 ^65000:4_0:171_0:146$ ip community-list expanded c1 permit 7541 ^65000:4_0:171_0:147$ ip community-list expanded c1 permit 7542 ^65000:4_0:171_0:148$ ip community-list expanded c1 permit 7543 ^65000:4_0:171_0:149$ ip community-list expanded c1 permit 7544 ^65000:4_0:171_0:150$ ip community-list expanded c1 permit 7545 ^65000:4_0:171_0:151$ ip community-list expanded c1 permit 7546 ^65000:4_0:171_0:152$ ip community-list expanded c1 permit 7547 ^65000:4_0:171_0:153$ ip community-list expanded c1 permit 7548 ^65000:4_0:171_0:154$ ip community-list expanded c1 permit 7549 ^65000:4_0:171_0:155$ ip community-list expanded c1 permit 7550 ^65000:4_0:171_0:156$ ip community-list expanded c1 permit 7551 ^65000:4_0:171_0:157$ ip community-list expanded c1 permit 7552 ^65000:4_0:171_0:158$ ip community-list expanded c1 permit 7553 ^65000:4_0:171_0:159$ ip community-list expanded c1 permit 7554 ^65000:4_0:171_0:160$ ip community-list expanded c1 permit 7555 ^65000:4_0:171_0:161$ ip community-list expanded c1 permit 7556 ^65000:4_0:171_0:162$ ip community-list expanded c1 permit 7557 ^65000:4_0:171_0:163$ ip community-list expanded c1 permit 7558 ^65000:4_0:171_0:164$ ip community-list expanded c1 permit 7559 ^65000:4_0:171_0:165$ ip community-list expanded c1 permit 7560 ^65000:4_0:171_0:166$ ip community-list expanded c1 permit 7561 ^65000:4_0:171_0:167$ ip community-list expanded c1 permit 7562 ^65000:4_0:171_0:168$ ip community-list expanded c1 permit 7563 ^65000:4_0:171_0:169$ ip community-list expanded c1 permit 7564 ^65000:3_0:171_0:170$ ip community-list expanded c1 permit 7565 ^65000:4_0:171_0:170$ ip community-list expanded c1 permit 7566 ^65000:4_0:171_0:171$ ip community-list expanded c1 permit 7567 ^65000:4_0:172_0:87$ ip community-list expanded c1 permit 7568 ^65000:4_0:172_0:88$ ip community-list expanded c1 permit 7569 ^65000:4_0:172_0:89$ ip community-list expanded c1 permit 7570 ^65000:4_0:172_0:90$ ip community-list expanded c1 permit 7571 ^65000:4_0:172_0:91$ ip community-list expanded c1 permit 7572 ^65000:4_0:172_0:92$ ip community-list expanded c1 permit 7573 ^65000:4_0:172_0:93$ ip community-list expanded c1 permit 7574 ^65000:4_0:172_0:94$ ip community-list expanded c1 permit 7575 ^65000:4_0:172_0:95$ ip community-list expanded c1 permit 7576 ^65000:4_0:172_0:96$ ip community-list expanded c1 permit 7577 ^65000:4_0:172_0:97$ ip community-list expanded c1 permit 7578 ^65000:4_0:172_0:98$ ip community-list expanded c1 permit 7579 ^65000:4_0:172_0:99$ ip community-list expanded c1 permit 7580 ^65000:4_0:172_0:100$ ip community-list expanded c1 permit 7581 ^65000:4_0:172_0:101$ ip community-list expanded c1 permit 7582 ^65000:4_0:172_0:102$ ip community-list expanded c1 permit 7583 ^65000:4_0:172_0:103$ ip community-list expanded c1 permit 7584 ^65000:4_0:172_0:104$ ip community-list expanded c1 permit 7585 ^65000:4_0:172_0:105$ ip community-list expanded c1 permit 7586 ^65000:4_0:172_0:106$ ip community-list expanded c1 permit 7587 ^65000:4_0:172_0:107$ ip community-list expanded c1 permit 7588 ^65000:4_0:172_0:108$ ip community-list expanded c1 permit 7589 ^65000:4_0:172_0:109$ ip community-list expanded c1 permit 7590 ^65000:4_0:172_0:110$ ip community-list expanded c1 permit 7591 ^65000:4_0:172_0:111$ ip community-list expanded c1 permit 7592 ^65000:4_0:172_0:112$ ip community-list expanded c1 permit 7593 ^65000:4_0:172_0:113$ ip community-list expanded c1 permit 7594 ^65000:4_0:172_0:114$ ip community-list expanded c1 permit 7595 ^65000:4_0:172_0:115$ ip community-list expanded c1 permit 7596 ^65000:4_0:172_0:116$ ip community-list expanded c1 permit 7597 ^65000:4_0:172_0:117$ ip community-list expanded c1 permit 7598 ^65000:4_0:172_0:118$ ip community-list expanded c1 permit 7599 ^65000:4_0:172_0:119$ ip community-list expanded c1 permit 7600 ^65000:4_0:172_0:120$ ip community-list expanded c1 permit 7601 ^65000:4_0:172_0:121$ ip community-list expanded c1 permit 7602 ^65000:4_0:172_0:122$ ip community-list expanded c1 permit 7603 ^65000:4_0:172_0:123$ ip community-list expanded c1 permit 7604 ^65000:4_0:172_0:124$ ip community-list expanded c1 permit 7605 ^65000:4_0:172_0:125$ ip community-list expanded c1 permit 7606 ^65000:4_0:172_0:126$ ip community-list expanded c1 permit 7607 ^65000:4_0:172_0:127$ ip community-list expanded c1 permit 7608 ^65000:4_0:172_0:128$ ip community-list expanded c1 permit 7609 ^65000:4_0:172_0:129$ ip community-list expanded c1 permit 7610 ^65000:4_0:172_0:130$ ip community-list expanded c1 permit 7611 ^65000:4_0:172_0:131$ ip community-list expanded c1 permit 7612 ^65000:4_0:172_0:132$ ip community-list expanded c1 permit 7613 ^65000:4_0:172_0:133$ ip community-list expanded c1 permit 7614 ^65000:4_0:172_0:134$ ip community-list expanded c1 permit 7615 ^65000:4_0:172_0:135$ ip community-list expanded c1 permit 7616 ^65000:4_0:172_0:136$ ip community-list expanded c1 permit 7617 ^65000:4_0:172_0:137$ ip community-list expanded c1 permit 7618 ^65000:4_0:172_0:138$ ip community-list expanded c1 permit 7619 ^65000:4_0:172_0:139$ ip community-list expanded c1 permit 7620 ^65000:4_0:172_0:140$ ip community-list expanded c1 permit 7621 ^65000:4_0:172_0:141$ ip community-list expanded c1 permit 7622 ^65000:4_0:172_0:142$ ip community-list expanded c1 permit 7623 ^65000:4_0:172_0:143$ ip community-list expanded c1 permit 7624 ^65000:4_0:172_0:144$ ip community-list expanded c1 permit 7625 ^65000:4_0:172_0:145$ ip community-list expanded c1 permit 7626 ^65000:4_0:172_0:146$ ip community-list expanded c1 permit 7627 ^65000:4_0:172_0:147$ ip community-list expanded c1 permit 7628 ^65000:4_0:172_0:148$ ip community-list expanded c1 permit 7629 ^65000:4_0:172_0:149$ ip community-list expanded c1 permit 7630 ^65000:4_0:172_0:150$ ip community-list expanded c1 permit 7631 ^65000:4_0:172_0:151$ ip community-list expanded c1 permit 7632 ^65000:4_0:172_0:152$ ip community-list expanded c1 permit 7633 ^65000:4_0:172_0:153$ ip community-list expanded c1 permit 7634 ^65000:4_0:172_0:154$ ip community-list expanded c1 permit 7635 ^65000:4_0:172_0:155$ ip community-list expanded c1 permit 7636 ^65000:4_0:172_0:156$ ip community-list expanded c1 permit 7637 ^65000:4_0:172_0:157$ ip community-list expanded c1 permit 7638 ^65000:4_0:172_0:158$ ip community-list expanded c1 permit 7639 ^65000:4_0:172_0:159$ ip community-list expanded c1 permit 7640 ^65000:4_0:172_0:160$ ip community-list expanded c1 permit 7641 ^65000:4_0:172_0:161$ ip community-list expanded c1 permit 7642 ^65000:4_0:172_0:162$ ip community-list expanded c1 permit 7643 ^65000:4_0:172_0:163$ ip community-list expanded c1 permit 7644 ^65000:4_0:172_0:164$ ip community-list expanded c1 permit 7645 ^65000:4_0:172_0:165$ ip community-list expanded c1 permit 7646 ^65000:4_0:172_0:166$ ip community-list expanded c1 permit 7647 ^65000:4_0:172_0:167$ ip community-list expanded c1 permit 7648 ^65000:4_0:172_0:168$ ip community-list expanded c1 permit 7649 ^65000:4_0:172_0:169$ ip community-list expanded c1 permit 7650 ^65000:4_0:172_0:170$ ip community-list expanded c1 permit 7651 ^65000:3_0:172_0:171$ ip community-list expanded c1 permit 7652 ^65000:4_0:172_0:171$ ip community-list expanded c1 permit 7653 ^65000:4_0:172_0:172$ ip community-list expanded c1 permit 7654 ^65000:4_0:173_0:87$ ip community-list expanded c1 permit 7655 ^65000:4_0:173_0:88$ ip community-list expanded c1 permit 7656 ^65000:4_0:173_0:89$ ip community-list expanded c1 permit 7657 ^65000:4_0:173_0:90$ ip community-list expanded c1 permit 7658 ^65000:4_0:173_0:91$ ip community-list expanded c1 permit 7659 ^65000:4_0:173_0:92$ ip community-list expanded c1 permit 7660 ^65000:4_0:173_0:93$ ip community-list expanded c1 permit 7661 ^65000:4_0:173_0:94$ ip community-list expanded c1 permit 7662 ^65000:4_0:173_0:95$ ip community-list expanded c1 permit 7663 ^65000:4_0:173_0:96$ ip community-list expanded c1 permit 7664 ^65000:4_0:173_0:97$ ip community-list expanded c1 permit 7665 ^65000:4_0:173_0:98$ ip community-list expanded c1 permit 7666 ^65000:4_0:173_0:99$ ip community-list expanded c1 permit 7667 ^65000:4_0:173_0:100$ ip community-list expanded c1 permit 7668 ^65000:4_0:173_0:101$ ip community-list expanded c1 permit 7669 ^65000:4_0:173_0:102$ ip community-list expanded c1 permit 7670 ^65000:4_0:173_0:103$ ip community-list expanded c1 permit 7671 ^65000:4_0:173_0:104$ ip community-list expanded c1 permit 7672 ^65000:4_0:173_0:105$ ip community-list expanded c1 permit 7673 ^65000:4_0:173_0:106$ ip community-list expanded c1 permit 7674 ^65000:4_0:173_0:107$ ip community-list expanded c1 permit 7675 ^65000:4_0:173_0:108$ ip community-list expanded c1 permit 7676 ^65000:4_0:173_0:109$ ip community-list expanded c1 permit 7677 ^65000:4_0:173_0:110$ ip community-list expanded c1 permit 7678 ^65000:4_0:173_0:111$ ip community-list expanded c1 permit 7679 ^65000:4_0:173_0:112$ ip community-list expanded c1 permit 7680 ^65000:4_0:173_0:113$ ip community-list expanded c1 permit 7681 ^65000:4_0:173_0:114$ ip community-list expanded c1 permit 7682 ^65000:4_0:173_0:115$ ip community-list expanded c1 permit 7683 ^65000:4_0:173_0:116$ ip community-list expanded c1 permit 7684 ^65000:4_0:173_0:117$ ip community-list expanded c1 permit 7685 ^65000:4_0:173_0:118$ ip community-list expanded c1 permit 7686 ^65000:4_0:173_0:119$ ip community-list expanded c1 permit 7687 ^65000:4_0:173_0:120$ ip community-list expanded c1 permit 7688 ^65000:4_0:173_0:121$ ip community-list expanded c1 permit 7689 ^65000:4_0:173_0:122$ ip community-list expanded c1 permit 7690 ^65000:4_0:173_0:123$ ip community-list expanded c1 permit 7691 ^65000:4_0:173_0:124$ ip community-list expanded c1 permit 7692 ^65000:4_0:173_0:125$ ip community-list expanded c1 permit 7693 ^65000:4_0:173_0:126$ ip community-list expanded c1 permit 7694 ^65000:4_0:173_0:127$ ip community-list expanded c1 permit 7695 ^65000:4_0:173_0:128$ ip community-list expanded c1 permit 7696 ^65000:4_0:173_0:129$ ip community-list expanded c1 permit 7697 ^65000:4_0:173_0:130$ ip community-list expanded c1 permit 7698 ^65000:4_0:173_0:131$ ip community-list expanded c1 permit 7699 ^65000:4_0:173_0:132$ ip community-list expanded c1 permit 7700 ^65000:4_0:173_0:133$ ip community-list expanded c1 permit 7701 ^65000:4_0:173_0:134$ ip community-list expanded c1 permit 7702 ^65000:4_0:173_0:135$ ip community-list expanded c1 permit 7703 ^65000:4_0:173_0:136$ ip community-list expanded c1 permit 7704 ^65000:4_0:173_0:137$ ip community-list expanded c1 permit 7705 ^65000:4_0:173_0:138$ ip community-list expanded c1 permit 7706 ^65000:4_0:173_0:139$ ip community-list expanded c1 permit 7707 ^65000:4_0:173_0:140$ ip community-list expanded c1 permit 7708 ^65000:4_0:173_0:141$ ip community-list expanded c1 permit 7709 ^65000:4_0:173_0:142$ ip community-list expanded c1 permit 7710 ^65000:4_0:173_0:143$ ip community-list expanded c1 permit 7711 ^65000:4_0:173_0:144$ ip community-list expanded c1 permit 7712 ^65000:4_0:173_0:145$ ip community-list expanded c1 permit 7713 ^65000:4_0:173_0:146$ ip community-list expanded c1 permit 7714 ^65000:4_0:173_0:147$ ip community-list expanded c1 permit 7715 ^65000:4_0:173_0:148$ ip community-list expanded c1 permit 7716 ^65000:4_0:173_0:149$ ip community-list expanded c1 permit 7717 ^65000:4_0:173_0:150$ ip community-list expanded c1 permit 7718 ^65000:4_0:173_0:151$ ip community-list expanded c1 permit 7719 ^65000:4_0:173_0:152$ ip community-list expanded c1 permit 7720 ^65000:4_0:173_0:153$ ip community-list expanded c1 permit 7721 ^65000:4_0:173_0:154$ ip community-list expanded c1 permit 7722 ^65000:4_0:173_0:155$ ip community-list expanded c1 permit 7723 ^65000:4_0:173_0:156$ ip community-list expanded c1 permit 7724 ^65000:4_0:173_0:157$ ip community-list expanded c1 permit 7725 ^65000:4_0:173_0:158$ ip community-list expanded c1 permit 7726 ^65000:4_0:173_0:159$ ip community-list expanded c1 permit 7727 ^65000:4_0:173_0:160$ ip community-list expanded c1 permit 7728 ^65000:4_0:173_0:161$ ip community-list expanded c1 permit 7729 ^65000:4_0:173_0:162$ ip community-list expanded c1 permit 7730 ^65000:4_0:173_0:163$ ip community-list expanded c1 permit 7731 ^65000:4_0:173_0:164$ ip community-list expanded c1 permit 7732 ^65000:4_0:173_0:165$ ip community-list expanded c1 permit 7733 ^65000:4_0:173_0:166$ ip community-list expanded c1 permit 7734 ^65000:4_0:173_0:167$ ip community-list expanded c1 permit 7735 ^65000:4_0:173_0:168$ ip community-list expanded c1 permit 7736 ^65000:4_0:173_0:169$ ip community-list expanded c1 permit 7737 ^65000:4_0:173_0:170$ ip community-list expanded c1 permit 7738 ^65000:4_0:173_0:171$ ip community-list expanded c1 permit 7739 ^65000:3_0:173_0:172$ ip community-list expanded c1 permit 7740 ^65000:4_0:173_0:172$ ip community-list expanded c1 permit 7741 ^65000:4_0:173_0:173$ ip community-list expanded c1 permit 7742 ^65000:4_0:174_0:88$ ip community-list expanded c1 permit 7743 ^65000:4_0:174_0:89$ ip community-list expanded c1 permit 7744 ^65000:4_0:174_0:90$ ip community-list expanded c1 permit 7745 ^65000:4_0:174_0:91$ ip community-list expanded c1 permit 7746 ^65000:4_0:174_0:92$ ip community-list expanded c1 permit 7747 ^65000:4_0:174_0:93$ ip community-list expanded c1 permit 7748 ^65000:4_0:174_0:94$ ip community-list expanded c1 permit 7749 ^65000:4_0:174_0:95$ ip community-list expanded c1 permit 7750 ^65000:4_0:174_0:96$ ip community-list expanded c1 permit 7751 ^65000:4_0:174_0:97$ ip community-list expanded c1 permit 7752 ^65000:4_0:174_0:98$ ip community-list expanded c1 permit 7753 ^65000:4_0:174_0:99$ ip community-list expanded c1 permit 7754 ^65000:4_0:174_0:100$ ip community-list expanded c1 permit 7755 ^65000:4_0:174_0:101$ ip community-list expanded c1 permit 7756 ^65000:4_0:174_0:102$ ip community-list expanded c1 permit 7757 ^65000:4_0:174_0:103$ ip community-list expanded c1 permit 7758 ^65000:4_0:174_0:104$ ip community-list expanded c1 permit 7759 ^65000:4_0:174_0:105$ ip community-list expanded c1 permit 7760 ^65000:4_0:174_0:106$ ip community-list expanded c1 permit 7761 ^65000:4_0:174_0:107$ ip community-list expanded c1 permit 7762 ^65000:4_0:174_0:108$ ip community-list expanded c1 permit 7763 ^65000:4_0:174_0:109$ ip community-list expanded c1 permit 7764 ^65000:4_0:174_0:110$ ip community-list expanded c1 permit 7765 ^65000:4_0:174_0:111$ ip community-list expanded c1 permit 7766 ^65000:4_0:174_0:112$ ip community-list expanded c1 permit 7767 ^65000:4_0:174_0:113$ ip community-list expanded c1 permit 7768 ^65000:4_0:174_0:114$ ip community-list expanded c1 permit 7769 ^65000:4_0:174_0:115$ ip community-list expanded c1 permit 7770 ^65000:4_0:174_0:116$ ip community-list expanded c1 permit 7771 ^65000:4_0:174_0:117$ ip community-list expanded c1 permit 7772 ^65000:4_0:174_0:118$ ip community-list expanded c1 permit 7773 ^65000:4_0:174_0:119$ ip community-list expanded c1 permit 7774 ^65000:4_0:174_0:120$ ip community-list expanded c1 permit 7775 ^65000:4_0:174_0:121$ ip community-list expanded c1 permit 7776 ^65000:4_0:174_0:122$ ip community-list expanded c1 permit 7777 ^65000:4_0:174_0:123$ ip community-list expanded c1 permit 7778 ^65000:4_0:174_0:124$ ip community-list expanded c1 permit 7779 ^65000:4_0:174_0:125$ ip community-list expanded c1 permit 7780 ^65000:4_0:174_0:126$ ip community-list expanded c1 permit 7781 ^65000:4_0:174_0:127$ ip community-list expanded c1 permit 7782 ^65000:4_0:174_0:128$ ip community-list expanded c1 permit 7783 ^65000:4_0:174_0:129$ ip community-list expanded c1 permit 7784 ^65000:4_0:174_0:130$ ip community-list expanded c1 permit 7785 ^65000:4_0:174_0:131$ ip community-list expanded c1 permit 7786 ^65000:4_0:174_0:132$ ip community-list expanded c1 permit 7787 ^65000:4_0:174_0:133$ ip community-list expanded c1 permit 7788 ^65000:4_0:174_0:134$ ip community-list expanded c1 permit 7789 ^65000:4_0:174_0:135$ ip community-list expanded c1 permit 7790 ^65000:4_0:174_0:136$ ip community-list expanded c1 permit 7791 ^65000:4_0:174_0:137$ ip community-list expanded c1 permit 7792 ^65000:4_0:174_0:138$ ip community-list expanded c1 permit 7793 ^65000:4_0:174_0:139$ ip community-list expanded c1 permit 7794 ^65000:4_0:174_0:140$ ip community-list expanded c1 permit 7795 ^65000:4_0:174_0:141$ ip community-list expanded c1 permit 7796 ^65000:4_0:174_0:142$ ip community-list expanded c1 permit 7797 ^65000:4_0:174_0:143$ ip community-list expanded c1 permit 7798 ^65000:4_0:174_0:144$ ip community-list expanded c1 permit 7799 ^65000:4_0:174_0:145$ ip community-list expanded c1 permit 7800 ^65000:4_0:174_0:146$ ip community-list expanded c1 permit 7801 ^65000:4_0:174_0:147$ ip community-list expanded c1 permit 7802 ^65000:4_0:174_0:148$ ip community-list expanded c1 permit 7803 ^65000:4_0:174_0:149$ ip community-list expanded c1 permit 7804 ^65000:4_0:174_0:150$ ip community-list expanded c1 permit 7805 ^65000:4_0:174_0:151$ ip community-list expanded c1 permit 7806 ^65000:4_0:174_0:152$ ip community-list expanded c1 permit 7807 ^65000:4_0:174_0:153$ ip community-list expanded c1 permit 7808 ^65000:4_0:174_0:154$ ip community-list expanded c1 permit 7809 ^65000:4_0:174_0:155$ ip community-list expanded c1 permit 7810 ^65000:4_0:174_0:156$ ip community-list expanded c1 permit 7811 ^65000:4_0:174_0:157$ ip community-list expanded c1 permit 7812 ^65000:4_0:174_0:158$ ip community-list expanded c1 permit 7813 ^65000:4_0:174_0:159$ ip community-list expanded c1 permit 7814 ^65000:4_0:174_0:160$ ip community-list expanded c1 permit 7815 ^65000:4_0:174_0:161$ ip community-list expanded c1 permit 7816 ^65000:4_0:174_0:162$ ip community-list expanded c1 permit 7817 ^65000:4_0:174_0:163$ ip community-list expanded c1 permit 7818 ^65000:4_0:174_0:164$ ip community-list expanded c1 permit 7819 ^65000:4_0:174_0:165$ ip community-list expanded c1 permit 7820 ^65000:4_0:174_0:166$ ip community-list expanded c1 permit 7821 ^65000:4_0:174_0:167$ ip community-list expanded c1 permit 7822 ^65000:4_0:174_0:168$ ip community-list expanded c1 permit 7823 ^65000:4_0:174_0:169$ ip community-list expanded c1 permit 7824 ^65000:4_0:174_0:170$ ip community-list expanded c1 permit 7825 ^65000:4_0:174_0:171$ ip community-list expanded c1 permit 7826 ^65000:4_0:174_0:172$ ip community-list expanded c1 permit 7827 ^65000:3_0:174_0:173$ ip community-list expanded c1 permit 7828 ^65000:4_0:174_0:173$ ip community-list expanded c1 permit 7829 ^65000:4_0:174_0:174$ ip community-list expanded c1 permit 7830 ^65000:4_0:175_0:88$ ip community-list expanded c1 permit 7831 ^65000:4_0:175_0:89$ ip community-list expanded c1 permit 7832 ^65000:4_0:175_0:90$ ip community-list expanded c1 permit 7833 ^65000:4_0:175_0:91$ ip community-list expanded c1 permit 7834 ^65000:4_0:175_0:92$ ip community-list expanded c1 permit 7835 ^65000:4_0:175_0:93$ ip community-list expanded c1 permit 7836 ^65000:4_0:175_0:94$ ip community-list expanded c1 permit 7837 ^65000:4_0:175_0:95$ ip community-list expanded c1 permit 7838 ^65000:4_0:175_0:96$ ip community-list expanded c1 permit 7839 ^65000:4_0:175_0:97$ ip community-list expanded c1 permit 7840 ^65000:4_0:175_0:98$ ip community-list expanded c1 permit 7841 ^65000:4_0:175_0:99$ ip community-list expanded c1 permit 7842 ^65000:4_0:175_0:100$ ip community-list expanded c1 permit 7843 ^65000:4_0:175_0:101$ ip community-list expanded c1 permit 7844 ^65000:4_0:175_0:102$ ip community-list expanded c1 permit 7845 ^65000:4_0:175_0:103$ ip community-list expanded c1 permit 7846 ^65000:4_0:175_0:104$ ip community-list expanded c1 permit 7847 ^65000:4_0:175_0:105$ ip community-list expanded c1 permit 7848 ^65000:4_0:175_0:106$ ip community-list expanded c1 permit 7849 ^65000:4_0:175_0:107$ ip community-list expanded c1 permit 7850 ^65000:4_0:175_0:108$ ip community-list expanded c1 permit 7851 ^65000:4_0:175_0:109$ ip community-list expanded c1 permit 7852 ^65000:4_0:175_0:110$ ip community-list expanded c1 permit 7853 ^65000:4_0:175_0:111$ ip community-list expanded c1 permit 7854 ^65000:4_0:175_0:112$ ip community-list expanded c1 permit 7855 ^65000:4_0:175_0:113$ ip community-list expanded c1 permit 7856 ^65000:4_0:175_0:114$ ip community-list expanded c1 permit 7857 ^65000:4_0:175_0:115$ ip community-list expanded c1 permit 7858 ^65000:4_0:175_0:116$ ip community-list expanded c1 permit 7859 ^65000:4_0:175_0:117$ ip community-list expanded c1 permit 7860 ^65000:4_0:175_0:118$ ip community-list expanded c1 permit 7861 ^65000:4_0:175_0:119$ ip community-list expanded c1 permit 7862 ^65000:4_0:175_0:120$ ip community-list expanded c1 permit 7863 ^65000:4_0:175_0:121$ ip community-list expanded c1 permit 7864 ^65000:4_0:175_0:122$ ip community-list expanded c1 permit 7865 ^65000:4_0:175_0:123$ ip community-list expanded c1 permit 7866 ^65000:4_0:175_0:124$ ip community-list expanded c1 permit 7867 ^65000:4_0:175_0:125$ ip community-list expanded c1 permit 7868 ^65000:4_0:175_0:126$ ip community-list expanded c1 permit 7869 ^65000:4_0:175_0:127$ ip community-list expanded c1 permit 7870 ^65000:4_0:175_0:128$ ip community-list expanded c1 permit 7871 ^65000:4_0:175_0:129$ ip community-list expanded c1 permit 7872 ^65000:4_0:175_0:130$ ip community-list expanded c1 permit 7873 ^65000:4_0:175_0:131$ ip community-list expanded c1 permit 7874 ^65000:4_0:175_0:132$ ip community-list expanded c1 permit 7875 ^65000:4_0:175_0:133$ ip community-list expanded c1 permit 7876 ^65000:4_0:175_0:134$ ip community-list expanded c1 permit 7877 ^65000:4_0:175_0:135$ ip community-list expanded c1 permit 7878 ^65000:4_0:175_0:136$ ip community-list expanded c1 permit 7879 ^65000:4_0:175_0:137$ ip community-list expanded c1 permit 7880 ^65000:4_0:175_0:138$ ip community-list expanded c1 permit 7881 ^65000:4_0:175_0:139$ ip community-list expanded c1 permit 7882 ^65000:4_0:175_0:140$ ip community-list expanded c1 permit 7883 ^65000:4_0:175_0:141$ ip community-list expanded c1 permit 7884 ^65000:4_0:175_0:142$ ip community-list expanded c1 permit 7885 ^65000:4_0:175_0:143$ ip community-list expanded c1 permit 7886 ^65000:4_0:175_0:144$ ip community-list expanded c1 permit 7887 ^65000:4_0:175_0:145$ ip community-list expanded c1 permit 7888 ^65000:4_0:175_0:146$ ip community-list expanded c1 permit 7889 ^65000:4_0:175_0:147$ ip community-list expanded c1 permit 7890 ^65000:4_0:175_0:148$ ip community-list expanded c1 permit 7891 ^65000:4_0:175_0:149$ ip community-list expanded c1 permit 7892 ^65000:4_0:175_0:150$ ip community-list expanded c1 permit 7893 ^65000:4_0:175_0:151$ ip community-list expanded c1 permit 7894 ^65000:4_0:175_0:152$ ip community-list expanded c1 permit 7895 ^65000:4_0:175_0:153$ ip community-list expanded c1 permit 7896 ^65000:4_0:175_0:154$ ip community-list expanded c1 permit 7897 ^65000:4_0:175_0:155$ ip community-list expanded c1 permit 7898 ^65000:4_0:175_0:156$ ip community-list expanded c1 permit 7899 ^65000:4_0:175_0:157$ ip community-list expanded c1 permit 7900 ^65000:4_0:175_0:158$ ip community-list expanded c1 permit 7901 ^65000:4_0:175_0:159$ ip community-list expanded c1 permit 7902 ^65000:4_0:175_0:160$ ip community-list expanded c1 permit 7903 ^65000:4_0:175_0:161$ ip community-list expanded c1 permit 7904 ^65000:4_0:175_0:162$ ip community-list expanded c1 permit 7905 ^65000:4_0:175_0:163$ ip community-list expanded c1 permit 7906 ^65000:4_0:175_0:164$ ip community-list expanded c1 permit 7907 ^65000:4_0:175_0:165$ ip community-list expanded c1 permit 7908 ^65000:4_0:175_0:166$ ip community-list expanded c1 permit 7909 ^65000:4_0:175_0:167$ ip community-list expanded c1 permit 7910 ^65000:4_0:175_0:168$ ip community-list expanded c1 permit 7911 ^65000:4_0:175_0:169$ ip community-list expanded c1 permit 7912 ^65000:4_0:175_0:170$ ip community-list expanded c1 permit 7913 ^65000:4_0:175_0:171$ ip community-list expanded c1 permit 7914 ^65000:4_0:175_0:172$ ip community-list expanded c1 permit 7915 ^65000:4_0:175_0:173$ ip community-list expanded c1 permit 7916 ^65000:3_0:175_0:174$ ip community-list expanded c1 permit 7917 ^65000:4_0:175_0:174$ ip community-list expanded c1 permit 7918 ^65000:4_0:175_0:175$ ip community-list expanded c1 permit 7919 ^65000:4_0:176_0:89$ ip community-list expanded c1 permit 7920 ^65000:4_0:176_0:90$ ip community-list expanded c1 permit 7921 ^65000:4_0:176_0:91$ ip community-list expanded c1 permit 7922 ^65000:4_0:176_0:92$ ip community-list expanded c1 permit 7923 ^65000:4_0:176_0:93$ ip community-list expanded c1 permit 7924 ^65000:4_0:176_0:94$ ip community-list expanded c1 permit 7925 ^65000:4_0:176_0:95$ ip community-list expanded c1 permit 7926 ^65000:4_0:176_0:96$ ip community-list expanded c1 permit 7927 ^65000:4_0:176_0:97$ ip community-list expanded c1 permit 7928 ^65000:4_0:176_0:98$ ip community-list expanded c1 permit 7929 ^65000:4_0:176_0:99$ ip community-list expanded c1 permit 7930 ^65000:4_0:176_0:100$ ip community-list expanded c1 permit 7931 ^65000:4_0:176_0:101$ ip community-list expanded c1 permit 7932 ^65000:4_0:176_0:102$ ip community-list expanded c1 permit 7933 ^65000:4_0:176_0:103$ ip community-list expanded c1 permit 7934 ^65000:4_0:176_0:104$ ip community-list expanded c1 permit 7935 ^65000:4_0:176_0:105$ ip community-list expanded c1 permit 7936 ^65000:4_0:176_0:106$ ip community-list expanded c1 permit 7937 ^65000:4_0:176_0:107$ ip community-list expanded c1 permit 7938 ^65000:4_0:176_0:108$ ip community-list expanded c1 permit 7939 ^65000:4_0:176_0:109$ ip community-list expanded c1 permit 7940 ^65000:4_0:176_0:110$ ip community-list expanded c1 permit 7941 ^65000:4_0:176_0:111$ ip community-list expanded c1 permit 7942 ^65000:4_0:176_0:112$ ip community-list expanded c1 permit 7943 ^65000:4_0:176_0:113$ ip community-list expanded c1 permit 7944 ^65000:4_0:176_0:114$ ip community-list expanded c1 permit 7945 ^65000:4_0:176_0:115$ ip community-list expanded c1 permit 7946 ^65000:4_0:176_0:116$ ip community-list expanded c1 permit 7947 ^65000:4_0:176_0:117$ ip community-list expanded c1 permit 7948 ^65000:4_0:176_0:118$ ip community-list expanded c1 permit 7949 ^65000:4_0:176_0:119$ ip community-list expanded c1 permit 7950 ^65000:4_0:176_0:120$ ip community-list expanded c1 permit 7951 ^65000:4_0:176_0:121$ ip community-list expanded c1 permit 7952 ^65000:4_0:176_0:122$ ip community-list expanded c1 permit 7953 ^65000:4_0:176_0:123$ ip community-list expanded c1 permit 7954 ^65000:4_0:176_0:124$ ip community-list expanded c1 permit 7955 ^65000:4_0:176_0:125$ ip community-list expanded c1 permit 7956 ^65000:4_0:176_0:126$ ip community-list expanded c1 permit 7957 ^65000:4_0:176_0:127$ ip community-list expanded c1 permit 7958 ^65000:4_0:176_0:128$ ip community-list expanded c1 permit 7959 ^65000:4_0:176_0:129$ ip community-list expanded c1 permit 7960 ^65000:4_0:176_0:130$ ip community-list expanded c1 permit 7961 ^65000:4_0:176_0:131$ ip community-list expanded c1 permit 7962 ^65000:4_0:176_0:132$ ip community-list expanded c1 permit 7963 ^65000:4_0:176_0:133$ ip community-list expanded c1 permit 7964 ^65000:4_0:176_0:134$ ip community-list expanded c1 permit 7965 ^65000:4_0:176_0:135$ ip community-list expanded c1 permit 7966 ^65000:4_0:176_0:136$ ip community-list expanded c1 permit 7967 ^65000:4_0:176_0:137$ ip community-list expanded c1 permit 7968 ^65000:4_0:176_0:138$ ip community-list expanded c1 permit 7969 ^65000:4_0:176_0:139$ ip community-list expanded c1 permit 7970 ^65000:4_0:176_0:140$ ip community-list expanded c1 permit 7971 ^65000:4_0:176_0:141$ ip community-list expanded c1 permit 7972 ^65000:4_0:176_0:142$ ip community-list expanded c1 permit 7973 ^65000:4_0:176_0:143$ ip community-list expanded c1 permit 7974 ^65000:4_0:176_0:144$ ip community-list expanded c1 permit 7975 ^65000:4_0:176_0:145$ ip community-list expanded c1 permit 7976 ^65000:4_0:176_0:146$ ip community-list expanded c1 permit 7977 ^65000:4_0:176_0:147$ ip community-list expanded c1 permit 7978 ^65000:4_0:176_0:148$ ip community-list expanded c1 permit 7979 ^65000:4_0:176_0:149$ ip community-list expanded c1 permit 7980 ^65000:4_0:176_0:150$ ip community-list expanded c1 permit 7981 ^65000:4_0:176_0:151$ ip community-list expanded c1 permit 7982 ^65000:4_0:176_0:152$ ip community-list expanded c1 permit 7983 ^65000:4_0:176_0:153$ ip community-list expanded c1 permit 7984 ^65000:4_0:176_0:154$ ip community-list expanded c1 permit 7985 ^65000:4_0:176_0:155$ ip community-list expanded c1 permit 7986 ^65000:4_0:176_0:156$ ip community-list expanded c1 permit 7987 ^65000:4_0:176_0:157$ ip community-list expanded c1 permit 7988 ^65000:4_0:176_0:158$ ip community-list expanded c1 permit 7989 ^65000:4_0:176_0:159$ ip community-list expanded c1 permit 7990 ^65000:4_0:176_0:160$ ip community-list expanded c1 permit 7991 ^65000:4_0:176_0:161$ ip community-list expanded c1 permit 7992 ^65000:4_0:176_0:162$ ip community-list expanded c1 permit 7993 ^65000:4_0:176_0:163$ ip community-list expanded c1 permit 7994 ^65000:4_0:176_0:164$ ip community-list expanded c1 permit 7995 ^65000:4_0:176_0:165$ ip community-list expanded c1 permit 7996 ^65000:4_0:176_0:166$ ip community-list expanded c1 permit 7997 ^65000:4_0:176_0:167$ ip community-list expanded c1 permit 7998 ^65000:4_0:176_0:168$ ip community-list expanded c1 permit 7999 ^65000:4_0:176_0:169$ ip community-list expanded c1 permit 8000 ^65000:4_0:176_0:170$ ip community-list expanded c1 permit 8001 ^65000:4_0:176_0:171$ ip community-list expanded c1 permit 8002 ^65000:4_0:176_0:172$ ip community-list expanded c1 permit 8003 ^65000:4_0:176_0:173$ ip community-list expanded c1 permit 8004 ^65000:4_0:176_0:174$ ip community-list expanded c1 permit 8005 ^65000:3_0:176_0:175$ ip community-list expanded c1 permit 8006 ^65000:4_0:176_0:175$ ip community-list expanded c1 permit 8007 ^65000:4_0:176_0:176$ ip community-list expanded c1 permit 8008 ^65000:4_0:177_0:89$ ip community-list expanded c1 permit 8009 ^65000:4_0:177_0:90$ ip community-list expanded c1 permit 8010 ^65000:4_0:177_0:91$ ip community-list expanded c1 permit 8011 ^65000:4_0:177_0:92$ ip community-list expanded c1 permit 8012 ^65000:4_0:177_0:93$ ip community-list expanded c1 permit 8013 ^65000:4_0:177_0:94$ ip community-list expanded c1 permit 8014 ^65000:4_0:177_0:95$ ip community-list expanded c1 permit 8015 ^65000:4_0:177_0:96$ ip community-list expanded c1 permit 8016 ^65000:4_0:177_0:97$ ip community-list expanded c1 permit 8017 ^65000:4_0:177_0:98$ ip community-list expanded c1 permit 8018 ^65000:4_0:177_0:99$ ip community-list expanded c1 permit 8019 ^65000:4_0:177_0:100$ ip community-list expanded c1 permit 8020 ^65000:4_0:177_0:101$ ip community-list expanded c1 permit 8021 ^65000:4_0:177_0:102$ ip community-list expanded c1 permit 8022 ^65000:4_0:177_0:103$ ip community-list expanded c1 permit 8023 ^65000:4_0:177_0:104$ ip community-list expanded c1 permit 8024 ^65000:4_0:177_0:105$ ip community-list expanded c1 permit 8025 ^65000:4_0:177_0:106$ ip community-list expanded c1 permit 8026 ^65000:4_0:177_0:107$ ip community-list expanded c1 permit 8027 ^65000:4_0:177_0:108$ ip community-list expanded c1 permit 8028 ^65000:4_0:177_0:109$ ip community-list expanded c1 permit 8029 ^65000:4_0:177_0:110$ ip community-list expanded c1 permit 8030 ^65000:4_0:177_0:111$ ip community-list expanded c1 permit 8031 ^65000:4_0:177_0:112$ ip community-list expanded c1 permit 8032 ^65000:4_0:177_0:113$ ip community-list expanded c1 permit 8033 ^65000:4_0:177_0:114$ ip community-list expanded c1 permit 8034 ^65000:4_0:177_0:115$ ip community-list expanded c1 permit 8035 ^65000:4_0:177_0:116$ ip community-list expanded c1 permit 8036 ^65000:4_0:177_0:117$ ip community-list expanded c1 permit 8037 ^65000:4_0:177_0:118$ ip community-list expanded c1 permit 8038 ^65000:4_0:177_0:119$ ip community-list expanded c1 permit 8039 ^65000:4_0:177_0:120$ ip community-list expanded c1 permit 8040 ^65000:4_0:177_0:121$ ip community-list expanded c1 permit 8041 ^65000:4_0:177_0:122$ ip community-list expanded c1 permit 8042 ^65000:4_0:177_0:123$ ip community-list expanded c1 permit 8043 ^65000:4_0:177_0:124$ ip community-list expanded c1 permit 8044 ^65000:4_0:177_0:125$ ip community-list expanded c1 permit 8045 ^65000:4_0:177_0:126$ ip community-list expanded c1 permit 8046 ^65000:4_0:177_0:127$ ip community-list expanded c1 permit 8047 ^65000:4_0:177_0:128$ ip community-list expanded c1 permit 8048 ^65000:4_0:177_0:129$ ip community-list expanded c1 permit 8049 ^65000:4_0:177_0:130$ ip community-list expanded c1 permit 8050 ^65000:4_0:177_0:131$ ip community-list expanded c1 permit 8051 ^65000:4_0:177_0:132$ ip community-list expanded c1 permit 8052 ^65000:4_0:177_0:133$ ip community-list expanded c1 permit 8053 ^65000:4_0:177_0:134$ ip community-list expanded c1 permit 8054 ^65000:4_0:177_0:135$ ip community-list expanded c1 permit 8055 ^65000:4_0:177_0:136$ ip community-list expanded c1 permit 8056 ^65000:4_0:177_0:137$ ip community-list expanded c1 permit 8057 ^65000:4_0:177_0:138$ ip community-list expanded c1 permit 8058 ^65000:4_0:177_0:139$ ip community-list expanded c1 permit 8059 ^65000:4_0:177_0:140$ ip community-list expanded c1 permit 8060 ^65000:4_0:177_0:141$ ip community-list expanded c1 permit 8061 ^65000:4_0:177_0:142$ ip community-list expanded c1 permit 8062 ^65000:4_0:177_0:143$ ip community-list expanded c1 permit 8063 ^65000:4_0:177_0:144$ ip community-list expanded c1 permit 8064 ^65000:4_0:177_0:145$ ip community-list expanded c1 permit 8065 ^65000:4_0:177_0:146$ ip community-list expanded c1 permit 8066 ^65000:4_0:177_0:147$ ip community-list expanded c1 permit 8067 ^65000:4_0:177_0:148$ ip community-list expanded c1 permit 8068 ^65000:4_0:177_0:149$ ip community-list expanded c1 permit 8069 ^65000:4_0:177_0:150$ ip community-list expanded c1 permit 8070 ^65000:4_0:177_0:151$ ip community-list expanded c1 permit 8071 ^65000:4_0:177_0:152$ ip community-list expanded c1 permit 8072 ^65000:4_0:177_0:153$ ip community-list expanded c1 permit 8073 ^65000:4_0:177_0:154$ ip community-list expanded c1 permit 8074 ^65000:4_0:177_0:155$ ip community-list expanded c1 permit 8075 ^65000:4_0:177_0:156$ ip community-list expanded c1 permit 8076 ^65000:4_0:177_0:157$ ip community-list expanded c1 permit 8077 ^65000:4_0:177_0:158$ ip community-list expanded c1 permit 8078 ^65000:4_0:177_0:159$ ip community-list expanded c1 permit 8079 ^65000:4_0:177_0:160$ ip community-list expanded c1 permit 8080 ^65000:4_0:177_0:161$ ip community-list expanded c1 permit 8081 ^65000:4_0:177_0:162$ ip community-list expanded c1 permit 8082 ^65000:4_0:177_0:163$ ip community-list expanded c1 permit 8083 ^65000:4_0:177_0:164$ ip community-list expanded c1 permit 8084 ^65000:4_0:177_0:165$ ip community-list expanded c1 permit 8085 ^65000:4_0:177_0:166$ ip community-list expanded c1 permit 8086 ^65000:4_0:177_0:167$ ip community-list expanded c1 permit 8087 ^65000:4_0:177_0:168$ ip community-list expanded c1 permit 8088 ^65000:4_0:177_0:169$ ip community-list expanded c1 permit 8089 ^65000:4_0:177_0:170$ ip community-list expanded c1 permit 8090 ^65000:4_0:177_0:171$ ip community-list expanded c1 permit 8091 ^65000:4_0:177_0:172$ ip community-list expanded c1 permit 8092 ^65000:4_0:177_0:173$ ip community-list expanded c1 permit 8093 ^65000:4_0:177_0:174$ ip community-list expanded c1 permit 8094 ^65000:4_0:177_0:175$ ip community-list expanded c1 permit 8095 ^65000:3_0:177_0:176$ ip community-list expanded c1 permit 8096 ^65000:4_0:177_0:176$ ip community-list expanded c1 permit 8097 ^65000:4_0:177_0:177$ ip community-list expanded c1 permit 8098 ^65000:4_0:178_0:90$ ip community-list expanded c1 permit 8099 ^65000:4_0:178_0:91$ ip community-list expanded c1 permit 8100 ^65000:4_0:178_0:92$ ip community-list expanded c1 permit 8101 ^65000:4_0:178_0:93$ ip community-list expanded c1 permit 8102 ^65000:4_0:178_0:94$ ip community-list expanded c1 permit 8103 ^65000:4_0:178_0:95$ ip community-list expanded c1 permit 8104 ^65000:4_0:178_0:96$ ip community-list expanded c1 permit 8105 ^65000:4_0:178_0:97$ ip community-list expanded c1 permit 8106 ^65000:4_0:178_0:98$ ip community-list expanded c1 permit 8107 ^65000:4_0:178_0:99$ ip community-list expanded c1 permit 8108 ^65000:4_0:178_0:100$ ip community-list expanded c1 permit 8109 ^65000:4_0:178_0:101$ ip community-list expanded c1 permit 8110 ^65000:4_0:178_0:102$ ip community-list expanded c1 permit 8111 ^65000:4_0:178_0:103$ ip community-list expanded c1 permit 8112 ^65000:4_0:178_0:104$ ip community-list expanded c1 permit 8113 ^65000:4_0:178_0:105$ ip community-list expanded c1 permit 8114 ^65000:4_0:178_0:106$ ip community-list expanded c1 permit 8115 ^65000:4_0:178_0:107$ ip community-list expanded c1 permit 8116 ^65000:4_0:178_0:108$ ip community-list expanded c1 permit 8117 ^65000:4_0:178_0:109$ ip community-list expanded c1 permit 8118 ^65000:4_0:178_0:110$ ip community-list expanded c1 permit 8119 ^65000:4_0:178_0:111$ ip community-list expanded c1 permit 8120 ^65000:4_0:178_0:112$ ip community-list expanded c1 permit 8121 ^65000:4_0:178_0:113$ ip community-list expanded c1 permit 8122 ^65000:4_0:178_0:114$ ip community-list expanded c1 permit 8123 ^65000:4_0:178_0:115$ ip community-list expanded c1 permit 8124 ^65000:4_0:178_0:116$ ip community-list expanded c1 permit 8125 ^65000:4_0:178_0:117$ ip community-list expanded c1 permit 8126 ^65000:4_0:178_0:118$ ip community-list expanded c1 permit 8127 ^65000:4_0:178_0:119$ ip community-list expanded c1 permit 8128 ^65000:4_0:178_0:120$ ip community-list expanded c1 permit 8129 ^65000:4_0:178_0:121$ ip community-list expanded c1 permit 8130 ^65000:4_0:178_0:122$ ip community-list expanded c1 permit 8131 ^65000:4_0:178_0:123$ ip community-list expanded c1 permit 8132 ^65000:4_0:178_0:124$ ip community-list expanded c1 permit 8133 ^65000:4_0:178_0:125$ ip community-list expanded c1 permit 8134 ^65000:4_0:178_0:126$ ip community-list expanded c1 permit 8135 ^65000:4_0:178_0:127$ ip community-list expanded c1 permit 8136 ^65000:4_0:178_0:128$ ip community-list expanded c1 permit 8137 ^65000:4_0:178_0:129$ ip community-list expanded c1 permit 8138 ^65000:4_0:178_0:130$ ip community-list expanded c1 permit 8139 ^65000:4_0:178_0:131$ ip community-list expanded c1 permit 8140 ^65000:4_0:178_0:132$ ip community-list expanded c1 permit 8141 ^65000:4_0:178_0:133$ ip community-list expanded c1 permit 8142 ^65000:4_0:178_0:134$ ip community-list expanded c1 permit 8143 ^65000:4_0:178_0:135$ ip community-list expanded c1 permit 8144 ^65000:4_0:178_0:136$ ip community-list expanded c1 permit 8145 ^65000:4_0:178_0:137$ ip community-list expanded c1 permit 8146 ^65000:4_0:178_0:138$ ip community-list expanded c1 permit 8147 ^65000:4_0:178_0:139$ ip community-list expanded c1 permit 8148 ^65000:4_0:178_0:140$ ip community-list expanded c1 permit 8149 ^65000:4_0:178_0:141$ ip community-list expanded c1 permit 8150 ^65000:4_0:178_0:142$ ip community-list expanded c1 permit 8151 ^65000:4_0:178_0:143$ ip community-list expanded c1 permit 8152 ^65000:4_0:178_0:144$ ip community-list expanded c1 permit 8153 ^65000:4_0:178_0:145$ ip community-list expanded c1 permit 8154 ^65000:4_0:178_0:146$ ip community-list expanded c1 permit 8155 ^65000:4_0:178_0:147$ ip community-list expanded c1 permit 8156 ^65000:4_0:178_0:148$ ip community-list expanded c1 permit 8157 ^65000:4_0:178_0:149$ ip community-list expanded c1 permit 8158 ^65000:4_0:178_0:150$ ip community-list expanded c1 permit 8159 ^65000:4_0:178_0:151$ ip community-list expanded c1 permit 8160 ^65000:4_0:178_0:152$ ip community-list expanded c1 permit 8161 ^65000:4_0:178_0:153$ ip community-list expanded c1 permit 8162 ^65000:4_0:178_0:154$ ip community-list expanded c1 permit 8163 ^65000:4_0:178_0:155$ ip community-list expanded c1 permit 8164 ^65000:4_0:178_0:156$ ip community-list expanded c1 permit 8165 ^65000:4_0:178_0:157$ ip community-list expanded c1 permit 8166 ^65000:4_0:178_0:158$ ip community-list expanded c1 permit 8167 ^65000:4_0:178_0:159$ ip community-list expanded c1 permit 8168 ^65000:4_0:178_0:160$ ip community-list expanded c1 permit 8169 ^65000:4_0:178_0:161$ ip community-list expanded c1 permit 8170 ^65000:4_0:178_0:162$ ip community-list expanded c1 permit 8171 ^65000:4_0:178_0:163$ ip community-list expanded c1 permit 8172 ^65000:4_0:178_0:164$ ip community-list expanded c1 permit 8173 ^65000:4_0:178_0:165$ ip community-list expanded c1 permit 8174 ^65000:4_0:178_0:166$ ip community-list expanded c1 permit 8175 ^65000:4_0:178_0:167$ ip community-list expanded c1 permit 8176 ^65000:4_0:178_0:168$ ip community-list expanded c1 permit 8177 ^65000:4_0:178_0:169$ ip community-list expanded c1 permit 8178 ^65000:4_0:178_0:170$ ip community-list expanded c1 permit 8179 ^65000:4_0:178_0:171$ ip community-list expanded c1 permit 8180 ^65000:4_0:178_0:172$ ip community-list expanded c1 permit 8181 ^65000:4_0:178_0:173$ ip community-list expanded c1 permit 8182 ^65000:4_0:178_0:174$ ip community-list expanded c1 permit 8183 ^65000:4_0:178_0:175$ ip community-list expanded c1 permit 8184 ^65000:4_0:178_0:176$ ip community-list expanded c1 permit 8185 ^65000:3_0:178_0:177$ ip community-list expanded c1 permit 8186 ^65000:4_0:178_0:177$ ip community-list expanded c1 permit 8187 ^65000:4_0:178_0:178$ ip community-list expanded c1 permit 8188 ^65000:4_0:179_0:90$ ip community-list expanded c1 permit 8189 ^65000:4_0:179_0:91$ ip community-list expanded c1 permit 8190 ^65000:4_0:179_0:92$ ip community-list expanded c1 permit 8191 ^65000:4_0:179_0:93$ ip community-list expanded c1 permit 8192 ^65000:4_0:179_0:94$ ip community-list expanded c1 permit 8193 ^65000:4_0:179_0:95$ ip community-list expanded c1 permit 8194 ^65000:4_0:179_0:96$ ip community-list expanded c1 permit 8195 ^65000:4_0:179_0:97$ ip community-list expanded c1 permit 8196 ^65000:4_0:179_0:98$ ip community-list expanded c1 permit 8197 ^65000:4_0:179_0:99$ ip community-list expanded c1 permit 8198 ^65000:4_0:179_0:100$ ip community-list expanded c1 permit 8199 ^65000:4_0:179_0:101$ ip community-list expanded c1 permit 8200 ^65000:4_0:179_0:102$ ip community-list expanded c1 permit 8201 ^65000:4_0:179_0:103$ ip community-list expanded c1 permit 8202 ^65000:4_0:179_0:104$ ip community-list expanded c1 permit 8203 ^65000:4_0:179_0:105$ ip community-list expanded c1 permit 8204 ^65000:4_0:179_0:106$ ip community-list expanded c1 permit 8205 ^65000:4_0:179_0:107$ ip community-list expanded c1 permit 8206 ^65000:4_0:179_0:108$ ip community-list expanded c1 permit 8207 ^65000:4_0:179_0:109$ ip community-list expanded c1 permit 8208 ^65000:4_0:179_0:110$ ip community-list expanded c1 permit 8209 ^65000:4_0:179_0:111$ ip community-list expanded c1 permit 8210 ^65000:4_0:179_0:112$ ip community-list expanded c1 permit 8211 ^65000:4_0:179_0:113$ ip community-list expanded c1 permit 8212 ^65000:4_0:179_0:114$ ip community-list expanded c1 permit 8213 ^65000:4_0:179_0:115$ ip community-list expanded c1 permit 8214 ^65000:4_0:179_0:116$ ip community-list expanded c1 permit 8215 ^65000:4_0:179_0:117$ ip community-list expanded c1 permit 8216 ^65000:4_0:179_0:118$ ip community-list expanded c1 permit 8217 ^65000:4_0:179_0:119$ ip community-list expanded c1 permit 8218 ^65000:4_0:179_0:120$ ip community-list expanded c1 permit 8219 ^65000:4_0:179_0:121$ ip community-list expanded c1 permit 8220 ^65000:4_0:179_0:122$ ip community-list expanded c1 permit 8221 ^65000:4_0:179_0:123$ ip community-list expanded c1 permit 8222 ^65000:4_0:179_0:124$ ip community-list expanded c1 permit 8223 ^65000:4_0:179_0:125$ ip community-list expanded c1 permit 8224 ^65000:4_0:179_0:126$ ip community-list expanded c1 permit 8225 ^65000:4_0:179_0:127$ ip community-list expanded c1 permit 8226 ^65000:4_0:179_0:128$ ip community-list expanded c1 permit 8227 ^65000:4_0:179_0:129$ ip community-list expanded c1 permit 8228 ^65000:4_0:179_0:130$ ip community-list expanded c1 permit 8229 ^65000:4_0:179_0:131$ ip community-list expanded c1 permit 8230 ^65000:4_0:179_0:132$ ip community-list expanded c1 permit 8231 ^65000:4_0:179_0:133$ ip community-list expanded c1 permit 8232 ^65000:4_0:179_0:134$ ip community-list expanded c1 permit 8233 ^65000:4_0:179_0:135$ ip community-list expanded c1 permit 8234 ^65000:4_0:179_0:136$ ip community-list expanded c1 permit 8235 ^65000:4_0:179_0:137$ ip community-list expanded c1 permit 8236 ^65000:4_0:179_0:138$ ip community-list expanded c1 permit 8237 ^65000:4_0:179_0:139$ ip community-list expanded c1 permit 8238 ^65000:4_0:179_0:140$ ip community-list expanded c1 permit 8239 ^65000:4_0:179_0:141$ ip community-list expanded c1 permit 8240 ^65000:4_0:179_0:142$ ip community-list expanded c1 permit 8241 ^65000:4_0:179_0:143$ ip community-list expanded c1 permit 8242 ^65000:4_0:179_0:144$ ip community-list expanded c1 permit 8243 ^65000:4_0:179_0:145$ ip community-list expanded c1 permit 8244 ^65000:4_0:179_0:146$ ip community-list expanded c1 permit 8245 ^65000:4_0:179_0:147$ ip community-list expanded c1 permit 8246 ^65000:4_0:179_0:148$ ip community-list expanded c1 permit 8247 ^65000:4_0:179_0:149$ ip community-list expanded c1 permit 8248 ^65000:4_0:179_0:150$ ip community-list expanded c1 permit 8249 ^65000:4_0:179_0:151$ ip community-list expanded c1 permit 8250 ^65000:4_0:179_0:152$ ip community-list expanded c1 permit 8251 ^65000:4_0:179_0:153$ ip community-list expanded c1 permit 8252 ^65000:4_0:179_0:154$ ip community-list expanded c1 permit 8253 ^65000:4_0:179_0:155$ ip community-list expanded c1 permit 8254 ^65000:4_0:179_0:156$ ip community-list expanded c1 permit 8255 ^65000:4_0:179_0:157$ ip community-list expanded c1 permit 8256 ^65000:4_0:179_0:158$ ip community-list expanded c1 permit 8257 ^65000:4_0:179_0:159$ ip community-list expanded c1 permit 8258 ^65000:4_0:179_0:160$ ip community-list expanded c1 permit 8259 ^65000:4_0:179_0:161$ ip community-list expanded c1 permit 8260 ^65000:4_0:179_0:162$ ip community-list expanded c1 permit 8261 ^65000:4_0:179_0:163$ ip community-list expanded c1 permit 8262 ^65000:4_0:179_0:164$ ip community-list expanded c1 permit 8263 ^65000:4_0:179_0:165$ ip community-list expanded c1 permit 8264 ^65000:4_0:179_0:166$ ip community-list expanded c1 permit 8265 ^65000:4_0:179_0:167$ ip community-list expanded c1 permit 8266 ^65000:4_0:179_0:168$ ip community-list expanded c1 permit 8267 ^65000:4_0:179_0:169$ ip community-list expanded c1 permit 8268 ^65000:4_0:179_0:170$ ip community-list expanded c1 permit 8269 ^65000:4_0:179_0:171$ ip community-list expanded c1 permit 8270 ^65000:4_0:179_0:172$ ip community-list expanded c1 permit 8271 ^65000:4_0:179_0:173$ ip community-list expanded c1 permit 8272 ^65000:4_0:179_0:174$ ip community-list expanded c1 permit 8273 ^65000:4_0:179_0:175$ ip community-list expanded c1 permit 8274 ^65000:4_0:179_0:176$ ip community-list expanded c1 permit 8275 ^65000:4_0:179_0:177$ ip community-list expanded c1 permit 8276 ^65000:3_0:179_0:178$ ip community-list expanded c1 permit 8277 ^65000:4_0:179_0:178$ ip community-list expanded c1 permit 8278 ^65000:4_0:179_0:179$ ip community-list expanded c1 permit 8279 ^65000:4_0:180_0:91$ ip community-list expanded c1 permit 8280 ^65000:4_0:180_0:92$ ip community-list expanded c1 permit 8281 ^65000:4_0:180_0:93$ ip community-list expanded c1 permit 8282 ^65000:4_0:180_0:94$ ip community-list expanded c1 permit 8283 ^65000:4_0:180_0:95$ ip community-list expanded c1 permit 8284 ^65000:4_0:180_0:96$ ip community-list expanded c1 permit 8285 ^65000:4_0:180_0:97$ ip community-list expanded c1 permit 8286 ^65000:4_0:180_0:98$ ip community-list expanded c1 permit 8287 ^65000:4_0:180_0:99$ ip community-list expanded c1 permit 8288 ^65000:4_0:180_0:100$ ip community-list expanded c1 permit 8289 ^65000:4_0:180_0:101$ ip community-list expanded c1 permit 8290 ^65000:4_0:180_0:102$ ip community-list expanded c1 permit 8291 ^65000:4_0:180_0:103$ ip community-list expanded c1 permit 8292 ^65000:4_0:180_0:104$ ip community-list expanded c1 permit 8293 ^65000:4_0:180_0:105$ ip community-list expanded c1 permit 8294 ^65000:4_0:180_0:106$ ip community-list expanded c1 permit 8295 ^65000:4_0:180_0:107$ ip community-list expanded c1 permit 8296 ^65000:4_0:180_0:108$ ip community-list expanded c1 permit 8297 ^65000:4_0:180_0:109$ ip community-list expanded c1 permit 8298 ^65000:4_0:180_0:110$ ip community-list expanded c1 permit 8299 ^65000:4_0:180_0:111$ ip community-list expanded c1 permit 8300 ^65000:4_0:180_0:112$ ip community-list expanded c1 permit 8301 ^65000:4_0:180_0:113$ ip community-list expanded c1 permit 8302 ^65000:4_0:180_0:114$ ip community-list expanded c1 permit 8303 ^65000:4_0:180_0:115$ ip community-list expanded c1 permit 8304 ^65000:4_0:180_0:116$ ip community-list expanded c1 permit 8305 ^65000:4_0:180_0:117$ ip community-list expanded c1 permit 8306 ^65000:4_0:180_0:118$ ip community-list expanded c1 permit 8307 ^65000:4_0:180_0:119$ ip community-list expanded c1 permit 8308 ^65000:4_0:180_0:120$ ip community-list expanded c1 permit 8309 ^65000:4_0:180_0:121$ ip community-list expanded c1 permit 8310 ^65000:4_0:180_0:122$ ip community-list expanded c1 permit 8311 ^65000:4_0:180_0:123$ ip community-list expanded c1 permit 8312 ^65000:4_0:180_0:124$ ip community-list expanded c1 permit 8313 ^65000:4_0:180_0:125$ ip community-list expanded c1 permit 8314 ^65000:4_0:180_0:126$ ip community-list expanded c1 permit 8315 ^65000:4_0:180_0:127$ ip community-list expanded c1 permit 8316 ^65000:4_0:180_0:128$ ip community-list expanded c1 permit 8317 ^65000:4_0:180_0:129$ ip community-list expanded c1 permit 8318 ^65000:4_0:180_0:130$ ip community-list expanded c1 permit 8319 ^65000:4_0:180_0:131$ ip community-list expanded c1 permit 8320 ^65000:4_0:180_0:132$ ip community-list expanded c1 permit 8321 ^65000:4_0:180_0:133$ ip community-list expanded c1 permit 8322 ^65000:4_0:180_0:134$ ip community-list expanded c1 permit 8323 ^65000:4_0:180_0:135$ ip community-list expanded c1 permit 8324 ^65000:4_0:180_0:136$ ip community-list expanded c1 permit 8325 ^65000:4_0:180_0:137$ ip community-list expanded c1 permit 8326 ^65000:4_0:180_0:138$ ip community-list expanded c1 permit 8327 ^65000:4_0:180_0:139$ ip community-list expanded c1 permit 8328 ^65000:4_0:180_0:140$ ip community-list expanded c1 permit 8329 ^65000:4_0:180_0:141$ ip community-list expanded c1 permit 8330 ^65000:4_0:180_0:142$ ip community-list expanded c1 permit 8331 ^65000:4_0:180_0:143$ ip community-list expanded c1 permit 8332 ^65000:4_0:180_0:144$ ip community-list expanded c1 permit 8333 ^65000:4_0:180_0:145$ ip community-list expanded c1 permit 8334 ^65000:4_0:180_0:146$ ip community-list expanded c1 permit 8335 ^65000:4_0:180_0:147$ ip community-list expanded c1 permit 8336 ^65000:4_0:180_0:148$ ip community-list expanded c1 permit 8337 ^65000:4_0:180_0:149$ ip community-list expanded c1 permit 8338 ^65000:4_0:180_0:150$ ip community-list expanded c1 permit 8339 ^65000:4_0:180_0:151$ ip community-list expanded c1 permit 8340 ^65000:4_0:180_0:152$ ip community-list expanded c1 permit 8341 ^65000:4_0:180_0:153$ ip community-list expanded c1 permit 8342 ^65000:4_0:180_0:154$ ip community-list expanded c1 permit 8343 ^65000:4_0:180_0:155$ ip community-list expanded c1 permit 8344 ^65000:4_0:180_0:156$ ip community-list expanded c1 permit 8345 ^65000:4_0:180_0:157$ ip community-list expanded c1 permit 8346 ^65000:4_0:180_0:158$ ip community-list expanded c1 permit 8347 ^65000:4_0:180_0:159$ ip community-list expanded c1 permit 8348 ^65000:4_0:180_0:160$ ip community-list expanded c1 permit 8349 ^65000:4_0:180_0:161$ ip community-list expanded c1 permit 8350 ^65000:4_0:180_0:162$ ip community-list expanded c1 permit 8351 ^65000:4_0:180_0:163$ ip community-list expanded c1 permit 8352 ^65000:4_0:180_0:164$ ip community-list expanded c1 permit 8353 ^65000:4_0:180_0:165$ ip community-list expanded c1 permit 8354 ^65000:4_0:180_0:166$ ip community-list expanded c1 permit 8355 ^65000:4_0:180_0:167$ ip community-list expanded c1 permit 8356 ^65000:4_0:180_0:168$ ip community-list expanded c1 permit 8357 ^65000:4_0:180_0:169$ ip community-list expanded c1 permit 8358 ^65000:4_0:180_0:170$ ip community-list expanded c1 permit 8359 ^65000:4_0:180_0:171$ ip community-list expanded c1 permit 8360 ^65000:4_0:180_0:172$ ip community-list expanded c1 permit 8361 ^65000:4_0:180_0:173$ ip community-list expanded c1 permit 8362 ^65000:4_0:180_0:174$ ip community-list expanded c1 permit 8363 ^65000:4_0:180_0:175$ ip community-list expanded c1 permit 8364 ^65000:4_0:180_0:176$ ip community-list expanded c1 permit 8365 ^65000:4_0:180_0:177$ ip community-list expanded c1 permit 8366 ^65000:4_0:180_0:178$ ip community-list expanded c1 permit 8367 ^65000:3_0:180_0:179$ ip community-list expanded c1 permit 8368 ^65000:4_0:180_0:179$ ip community-list expanded c1 permit 8369 ^65000:4_0:180_0:180$ ip community-list expanded c1 permit 8370 ^65000:4_0:181_0:91$ ip community-list expanded c1 permit 8371 ^65000:4_0:181_0:92$ ip community-list expanded c1 permit 8372 ^65000:4_0:181_0:93$ ip community-list expanded c1 permit 8373 ^65000:4_0:181_0:94$ ip community-list expanded c1 permit 8374 ^65000:4_0:181_0:95$ ip community-list expanded c1 permit 8375 ^65000:4_0:181_0:96$ ip community-list expanded c1 permit 8376 ^65000:4_0:181_0:97$ ip community-list expanded c1 permit 8377 ^65000:4_0:181_0:98$ ip community-list expanded c1 permit 8378 ^65000:4_0:181_0:99$ ip community-list expanded c1 permit 8379 ^65000:4_0:181_0:100$ ip community-list expanded c1 permit 8380 ^65000:4_0:181_0:101$ ip community-list expanded c1 permit 8381 ^65000:4_0:181_0:102$ ip community-list expanded c1 permit 8382 ^65000:4_0:181_0:103$ ip community-list expanded c1 permit 8383 ^65000:4_0:181_0:104$ ip community-list expanded c1 permit 8384 ^65000:4_0:181_0:105$ ip community-list expanded c1 permit 8385 ^65000:4_0:181_0:106$ ip community-list expanded c1 permit 8386 ^65000:4_0:181_0:107$ ip community-list expanded c1 permit 8387 ^65000:4_0:181_0:108$ ip community-list expanded c1 permit 8388 ^65000:4_0:181_0:109$ ip community-list expanded c1 permit 8389 ^65000:4_0:181_0:110$ ip community-list expanded c1 permit 8390 ^65000:4_0:181_0:111$ ip community-list expanded c1 permit 8391 ^65000:4_0:181_0:112$ ip community-list expanded c1 permit 8392 ^65000:4_0:181_0:113$ ip community-list expanded c1 permit 8393 ^65000:4_0:181_0:114$ ip community-list expanded c1 permit 8394 ^65000:4_0:181_0:115$ ip community-list expanded c1 permit 8395 ^65000:4_0:181_0:116$ ip community-list expanded c1 permit 8396 ^65000:4_0:181_0:117$ ip community-list expanded c1 permit 8397 ^65000:4_0:181_0:118$ ip community-list expanded c1 permit 8398 ^65000:4_0:181_0:119$ ip community-list expanded c1 permit 8399 ^65000:4_0:181_0:120$ ip community-list expanded c1 permit 8400 ^65000:4_0:181_0:121$ ip community-list expanded c1 permit 8401 ^65000:4_0:181_0:122$ ip community-list expanded c1 permit 8402 ^65000:4_0:181_0:123$ ip community-list expanded c1 permit 8403 ^65000:4_0:181_0:124$ ip community-list expanded c1 permit 8404 ^65000:4_0:181_0:125$ ip community-list expanded c1 permit 8405 ^65000:4_0:181_0:126$ ip community-list expanded c1 permit 8406 ^65000:4_0:181_0:127$ ip community-list expanded c1 permit 8407 ^65000:4_0:181_0:128$ ip community-list expanded c1 permit 8408 ^65000:4_0:181_0:129$ ip community-list expanded c1 permit 8409 ^65000:4_0:181_0:130$ ip community-list expanded c1 permit 8410 ^65000:4_0:181_0:131$ ip community-list expanded c1 permit 8411 ^65000:4_0:181_0:132$ ip community-list expanded c1 permit 8412 ^65000:4_0:181_0:133$ ip community-list expanded c1 permit 8413 ^65000:4_0:181_0:134$ ip community-list expanded c1 permit 8414 ^65000:4_0:181_0:135$ ip community-list expanded c1 permit 8415 ^65000:4_0:181_0:136$ ip community-list expanded c1 permit 8416 ^65000:4_0:181_0:137$ ip community-list expanded c1 permit 8417 ^65000:4_0:181_0:138$ ip community-list expanded c1 permit 8418 ^65000:4_0:181_0:139$ ip community-list expanded c1 permit 8419 ^65000:4_0:181_0:140$ ip community-list expanded c1 permit 8420 ^65000:4_0:181_0:141$ ip community-list expanded c1 permit 8421 ^65000:4_0:181_0:142$ ip community-list expanded c1 permit 8422 ^65000:4_0:181_0:143$ ip community-list expanded c1 permit 8423 ^65000:4_0:181_0:144$ ip community-list expanded c1 permit 8424 ^65000:4_0:181_0:145$ ip community-list expanded c1 permit 8425 ^65000:4_0:181_0:146$ ip community-list expanded c1 permit 8426 ^65000:4_0:181_0:147$ ip community-list expanded c1 permit 8427 ^65000:4_0:181_0:148$ ip community-list expanded c1 permit 8428 ^65000:4_0:181_0:149$ ip community-list expanded c1 permit 8429 ^65000:4_0:181_0:150$ ip community-list expanded c1 permit 8430 ^65000:4_0:181_0:151$ ip community-list expanded c1 permit 8431 ^65000:4_0:181_0:152$ ip community-list expanded c1 permit 8432 ^65000:4_0:181_0:153$ ip community-list expanded c1 permit 8433 ^65000:4_0:181_0:154$ ip community-list expanded c1 permit 8434 ^65000:4_0:181_0:155$ ip community-list expanded c1 permit 8435 ^65000:4_0:181_0:156$ ip community-list expanded c1 permit 8436 ^65000:4_0:181_0:157$ ip community-list expanded c1 permit 8437 ^65000:4_0:181_0:158$ ip community-list expanded c1 permit 8438 ^65000:4_0:181_0:159$ ip community-list expanded c1 permit 8439 ^65000:4_0:181_0:160$ ip community-list expanded c1 permit 8440 ^65000:4_0:181_0:161$ ip community-list expanded c1 permit 8441 ^65000:4_0:181_0:162$ ip community-list expanded c1 permit 8442 ^65000:4_0:181_0:163$ ip community-list expanded c1 permit 8443 ^65000:4_0:181_0:164$ ip community-list expanded c1 permit 8444 ^65000:4_0:181_0:165$ ip community-list expanded c1 permit 8445 ^65000:4_0:181_0:166$ ip community-list expanded c1 permit 8446 ^65000:4_0:181_0:167$ ip community-list expanded c1 permit 8447 ^65000:4_0:181_0:168$ ip community-list expanded c1 permit 8448 ^65000:4_0:181_0:169$ ip community-list expanded c1 permit 8449 ^65000:4_0:181_0:170$ ip community-list expanded c1 permit 8450 ^65000:4_0:181_0:171$ ip community-list expanded c1 permit 8451 ^65000:4_0:181_0:172$ ip community-list expanded c1 permit 8452 ^65000:4_0:181_0:173$ ip community-list expanded c1 permit 8453 ^65000:4_0:181_0:174$ ip community-list expanded c1 permit 8454 ^65000:4_0:181_0:175$ ip community-list expanded c1 permit 8455 ^65000:4_0:181_0:176$ ip community-list expanded c1 permit 8456 ^65000:4_0:181_0:177$ ip community-list expanded c1 permit 8457 ^65000:4_0:181_0:178$ ip community-list expanded c1 permit 8458 ^65000:4_0:181_0:179$ ip community-list expanded c1 permit 8459 ^65000:3_0:181_0:180$ ip community-list expanded c1 permit 8460 ^65000:4_0:181_0:180$ ip community-list expanded c1 permit 8461 ^65000:4_0:181_0:181$ ip community-list expanded c1 permit 8462 ^65000:4_0:182_0:92$ ip community-list expanded c1 permit 8463 ^65000:4_0:182_0:93$ ip community-list expanded c1 permit 8464 ^65000:4_0:182_0:94$ ip community-list expanded c1 permit 8465 ^65000:4_0:182_0:95$ ip community-list expanded c1 permit 8466 ^65000:4_0:182_0:96$ ip community-list expanded c1 permit 8467 ^65000:4_0:182_0:97$ ip community-list expanded c1 permit 8468 ^65000:4_0:182_0:98$ ip community-list expanded c1 permit 8469 ^65000:4_0:182_0:99$ ip community-list expanded c1 permit 8470 ^65000:4_0:182_0:100$ ip community-list expanded c1 permit 8471 ^65000:4_0:182_0:101$ ip community-list expanded c1 permit 8472 ^65000:4_0:182_0:102$ ip community-list expanded c1 permit 8473 ^65000:4_0:182_0:103$ ip community-list expanded c1 permit 8474 ^65000:4_0:182_0:104$ ip community-list expanded c1 permit 8475 ^65000:4_0:182_0:105$ ip community-list expanded c1 permit 8476 ^65000:4_0:182_0:106$ ip community-list expanded c1 permit 8477 ^65000:4_0:182_0:107$ ip community-list expanded c1 permit 8478 ^65000:4_0:182_0:108$ ip community-list expanded c1 permit 8479 ^65000:4_0:182_0:109$ ip community-list expanded c1 permit 8480 ^65000:4_0:182_0:110$ ip community-list expanded c1 permit 8481 ^65000:4_0:182_0:111$ ip community-list expanded c1 permit 8482 ^65000:4_0:182_0:112$ ip community-list expanded c1 permit 8483 ^65000:4_0:182_0:113$ ip community-list expanded c1 permit 8484 ^65000:4_0:182_0:114$ ip community-list expanded c1 permit 8485 ^65000:4_0:182_0:115$ ip community-list expanded c1 permit 8486 ^65000:4_0:182_0:116$ ip community-list expanded c1 permit 8487 ^65000:4_0:182_0:117$ ip community-list expanded c1 permit 8488 ^65000:4_0:182_0:118$ ip community-list expanded c1 permit 8489 ^65000:4_0:182_0:119$ ip community-list expanded c1 permit 8490 ^65000:4_0:182_0:120$ ip community-list expanded c1 permit 8491 ^65000:4_0:182_0:121$ ip community-list expanded c1 permit 8492 ^65000:4_0:182_0:122$ ip community-list expanded c1 permit 8493 ^65000:4_0:182_0:123$ ip community-list expanded c1 permit 8494 ^65000:4_0:182_0:124$ ip community-list expanded c1 permit 8495 ^65000:4_0:182_0:125$ ip community-list expanded c1 permit 8496 ^65000:4_0:182_0:126$ ip community-list expanded c1 permit 8497 ^65000:4_0:182_0:127$ ip community-list expanded c1 permit 8498 ^65000:4_0:182_0:128$ ip community-list expanded c1 permit 8499 ^65000:4_0:182_0:129$ ip community-list expanded c1 permit 8500 ^65000:4_0:182_0:130$ ip community-list expanded c1 permit 8501 ^65000:4_0:182_0:131$ ip community-list expanded c1 permit 8502 ^65000:4_0:182_0:132$ ip community-list expanded c1 permit 8503 ^65000:4_0:182_0:133$ ip community-list expanded c1 permit 8504 ^65000:4_0:182_0:134$ ip community-list expanded c1 permit 8505 ^65000:4_0:182_0:135$ ip community-list expanded c1 permit 8506 ^65000:4_0:182_0:136$ ip community-list expanded c1 permit 8507 ^65000:4_0:182_0:137$ ip community-list expanded c1 permit 8508 ^65000:4_0:182_0:138$ ip community-list expanded c1 permit 8509 ^65000:4_0:182_0:139$ ip community-list expanded c1 permit 8510 ^65000:4_0:182_0:140$ ip community-list expanded c1 permit 8511 ^65000:4_0:182_0:141$ ip community-list expanded c1 permit 8512 ^65000:4_0:182_0:142$ ip community-list expanded c1 permit 8513 ^65000:4_0:182_0:143$ ip community-list expanded c1 permit 8514 ^65000:4_0:182_0:144$ ip community-list expanded c1 permit 8515 ^65000:4_0:182_0:145$ ip community-list expanded c1 permit 8516 ^65000:4_0:182_0:146$ ip community-list expanded c1 permit 8517 ^65000:4_0:182_0:147$ ip community-list expanded c1 permit 8518 ^65000:4_0:182_0:148$ ip community-list expanded c1 permit 8519 ^65000:4_0:182_0:149$ ip community-list expanded c1 permit 8520 ^65000:4_0:182_0:150$ ip community-list expanded c1 permit 8521 ^65000:4_0:182_0:151$ ip community-list expanded c1 permit 8522 ^65000:4_0:182_0:152$ ip community-list expanded c1 permit 8523 ^65000:4_0:182_0:153$ ip community-list expanded c1 permit 8524 ^65000:4_0:182_0:154$ ip community-list expanded c1 permit 8525 ^65000:4_0:182_0:155$ ip community-list expanded c1 permit 8526 ^65000:4_0:182_0:156$ ip community-list expanded c1 permit 8527 ^65000:4_0:182_0:157$ ip community-list expanded c1 permit 8528 ^65000:4_0:182_0:158$ ip community-list expanded c1 permit 8529 ^65000:4_0:182_0:159$ ip community-list expanded c1 permit 8530 ^65000:4_0:182_0:160$ ip community-list expanded c1 permit 8531 ^65000:4_0:182_0:161$ ip community-list expanded c1 permit 8532 ^65000:4_0:182_0:162$ ip community-list expanded c1 permit 8533 ^65000:4_0:182_0:163$ ip community-list expanded c1 permit 8534 ^65000:4_0:182_0:164$ ip community-list expanded c1 permit 8535 ^65000:4_0:182_0:165$ ip community-list expanded c1 permit 8536 ^65000:4_0:182_0:166$ ip community-list expanded c1 permit 8537 ^65000:4_0:182_0:167$ ip community-list expanded c1 permit 8538 ^65000:4_0:182_0:168$ ip community-list expanded c1 permit 8539 ^65000:4_0:182_0:169$ ip community-list expanded c1 permit 8540 ^65000:4_0:182_0:170$ ip community-list expanded c1 permit 8541 ^65000:4_0:182_0:171$ ip community-list expanded c1 permit 8542 ^65000:4_0:182_0:172$ ip community-list expanded c1 permit 8543 ^65000:4_0:182_0:173$ ip community-list expanded c1 permit 8544 ^65000:4_0:182_0:174$ ip community-list expanded c1 permit 8545 ^65000:4_0:182_0:175$ ip community-list expanded c1 permit 8546 ^65000:4_0:182_0:176$ ip community-list expanded c1 permit 8547 ^65000:4_0:182_0:177$ ip community-list expanded c1 permit 8548 ^65000:4_0:182_0:178$ ip community-list expanded c1 permit 8549 ^65000:4_0:182_0:179$ ip community-list expanded c1 permit 8550 ^65000:4_0:182_0:180$ ip community-list expanded c1 permit 8551 ^65000:3_0:182_0:181$ ip community-list expanded c1 permit 8552 ^65000:4_0:182_0:181$ ip community-list expanded c1 permit 8553 ^65000:4_0:182_0:182$ ip community-list expanded c1 permit 8554 ^65000:4_0:183_0:92$ ip community-list expanded c1 permit 8555 ^65000:4_0:183_0:93$ ip community-list expanded c1 permit 8556 ^65000:4_0:183_0:94$ ip community-list expanded c1 permit 8557 ^65000:4_0:183_0:95$ ip community-list expanded c1 permit 8558 ^65000:4_0:183_0:96$ ip community-list expanded c1 permit 8559 ^65000:4_0:183_0:97$ ip community-list expanded c1 permit 8560 ^65000:4_0:183_0:98$ ip community-list expanded c1 permit 8561 ^65000:4_0:183_0:99$ ip community-list expanded c1 permit 8562 ^65000:4_0:183_0:100$ ip community-list expanded c1 permit 8563 ^65000:4_0:183_0:101$ ip community-list expanded c1 permit 8564 ^65000:4_0:183_0:102$ ip community-list expanded c1 permit 8565 ^65000:4_0:183_0:103$ ip community-list expanded c1 permit 8566 ^65000:4_0:183_0:104$ ip community-list expanded c1 permit 8567 ^65000:4_0:183_0:105$ ip community-list expanded c1 permit 8568 ^65000:4_0:183_0:106$ ip community-list expanded c1 permit 8569 ^65000:4_0:183_0:107$ ip community-list expanded c1 permit 8570 ^65000:4_0:183_0:108$ ip community-list expanded c1 permit 8571 ^65000:4_0:183_0:109$ ip community-list expanded c1 permit 8572 ^65000:4_0:183_0:110$ ip community-list expanded c1 permit 8573 ^65000:4_0:183_0:111$ ip community-list expanded c1 permit 8574 ^65000:4_0:183_0:112$ ip community-list expanded c1 permit 8575 ^65000:4_0:183_0:113$ ip community-list expanded c1 permit 8576 ^65000:4_0:183_0:114$ ip community-list expanded c1 permit 8577 ^65000:4_0:183_0:115$ ip community-list expanded c1 permit 8578 ^65000:4_0:183_0:116$ ip community-list expanded c1 permit 8579 ^65000:4_0:183_0:117$ ip community-list expanded c1 permit 8580 ^65000:4_0:183_0:118$ ip community-list expanded c1 permit 8581 ^65000:4_0:183_0:119$ ip community-list expanded c1 permit 8582 ^65000:4_0:183_0:120$ ip community-list expanded c1 permit 8583 ^65000:4_0:183_0:121$ ip community-list expanded c1 permit 8584 ^65000:4_0:183_0:122$ ip community-list expanded c1 permit 8585 ^65000:4_0:183_0:123$ ip community-list expanded c1 permit 8586 ^65000:4_0:183_0:124$ ip community-list expanded c1 permit 8587 ^65000:4_0:183_0:125$ ip community-list expanded c1 permit 8588 ^65000:4_0:183_0:126$ ip community-list expanded c1 permit 8589 ^65000:4_0:183_0:127$ ip community-list expanded c1 permit 8590 ^65000:4_0:183_0:128$ ip community-list expanded c1 permit 8591 ^65000:4_0:183_0:129$ ip community-list expanded c1 permit 8592 ^65000:4_0:183_0:130$ ip community-list expanded c1 permit 8593 ^65000:4_0:183_0:131$ ip community-list expanded c1 permit 8594 ^65000:4_0:183_0:132$ ip community-list expanded c1 permit 8595 ^65000:4_0:183_0:133$ ip community-list expanded c1 permit 8596 ^65000:4_0:183_0:134$ ip community-list expanded c1 permit 8597 ^65000:4_0:183_0:135$ ip community-list expanded c1 permit 8598 ^65000:4_0:183_0:136$ ip community-list expanded c1 permit 8599 ^65000:4_0:183_0:137$ ip community-list expanded c1 permit 8600 ^65000:4_0:183_0:138$ ip community-list expanded c1 permit 8601 ^65000:4_0:183_0:139$ ip community-list expanded c1 permit 8602 ^65000:4_0:183_0:140$ ip community-list expanded c1 permit 8603 ^65000:4_0:183_0:141$ ip community-list expanded c1 permit 8604 ^65000:4_0:183_0:142$ ip community-list expanded c1 permit 8605 ^65000:4_0:183_0:143$ ip community-list expanded c1 permit 8606 ^65000:4_0:183_0:144$ ip community-list expanded c1 permit 8607 ^65000:4_0:183_0:145$ ip community-list expanded c1 permit 8608 ^65000:4_0:183_0:146$ ip community-list expanded c1 permit 8609 ^65000:4_0:183_0:147$ ip community-list expanded c1 permit 8610 ^65000:4_0:183_0:148$ ip community-list expanded c1 permit 8611 ^65000:4_0:183_0:149$ ip community-list expanded c1 permit 8612 ^65000:4_0:183_0:150$ ip community-list expanded c1 permit 8613 ^65000:4_0:183_0:151$ ip community-list expanded c1 permit 8614 ^65000:4_0:183_0:152$ ip community-list expanded c1 permit 8615 ^65000:4_0:183_0:153$ ip community-list expanded c1 permit 8616 ^65000:4_0:183_0:154$ ip community-list expanded c1 permit 8617 ^65000:4_0:183_0:155$ ip community-list expanded c1 permit 8618 ^65000:4_0:183_0:156$ ip community-list expanded c1 permit 8619 ^65000:4_0:183_0:157$ ip community-list expanded c1 permit 8620 ^65000:4_0:183_0:158$ ip community-list expanded c1 permit 8621 ^65000:4_0:183_0:159$ ip community-list expanded c1 permit 8622 ^65000:4_0:183_0:160$ ip community-list expanded c1 permit 8623 ^65000:4_0:183_0:161$ ip community-list expanded c1 permit 8624 ^65000:4_0:183_0:162$ ip community-list expanded c1 permit 8625 ^65000:4_0:183_0:163$ ip community-list expanded c1 permit 8626 ^65000:4_0:183_0:164$ ip community-list expanded c1 permit 8627 ^65000:4_0:183_0:165$ ip community-list expanded c1 permit 8628 ^65000:4_0:183_0:166$ ip community-list expanded c1 permit 8629 ^65000:4_0:183_0:167$ ip community-list expanded c1 permit 8630 ^65000:4_0:183_0:168$ ip community-list expanded c1 permit 8631 ^65000:4_0:183_0:169$ ip community-list expanded c1 permit 8632 ^65000:4_0:183_0:170$ ip community-list expanded c1 permit 8633 ^65000:4_0:183_0:171$ ip community-list expanded c1 permit 8634 ^65000:4_0:183_0:172$ ip community-list expanded c1 permit 8635 ^65000:4_0:183_0:173$ ip community-list expanded c1 permit 8636 ^65000:4_0:183_0:174$ ip community-list expanded c1 permit 8637 ^65000:4_0:183_0:175$ ip community-list expanded c1 permit 8638 ^65000:4_0:183_0:176$ ip community-list expanded c1 permit 8639 ^65000:4_0:183_0:177$ ip community-list expanded c1 permit 8640 ^65000:4_0:183_0:178$ ip community-list expanded c1 permit 8641 ^65000:4_0:183_0:179$ ip community-list expanded c1 permit 8642 ^65000:4_0:183_0:180$ ip community-list expanded c1 permit 8643 ^65000:4_0:183_0:181$ ip community-list expanded c1 permit 8644 ^65000:3_0:183_0:182$ ip community-list expanded c1 permit 8645 ^65000:4_0:183_0:182$ ip community-list expanded c1 permit 8646 ^65000:4_0:183_0:183$ ip community-list expanded c1 permit 8647 ^65000:4_0:184_0:93$ ip community-list expanded c1 permit 8648 ^65000:4_0:184_0:94$ ip community-list expanded c1 permit 8649 ^65000:4_0:184_0:95$ ip community-list expanded c1 permit 8650 ^65000:4_0:184_0:96$ ip community-list expanded c1 permit 8651 ^65000:4_0:184_0:97$ ip community-list expanded c1 permit 8652 ^65000:4_0:184_0:98$ ip community-list expanded c1 permit 8653 ^65000:4_0:184_0:99$ ip community-list expanded c1 permit 8654 ^65000:4_0:184_0:100$ ip community-list expanded c1 permit 8655 ^65000:4_0:184_0:101$ ip community-list expanded c1 permit 8656 ^65000:4_0:184_0:102$ ip community-list expanded c1 permit 8657 ^65000:4_0:184_0:103$ ip community-list expanded c1 permit 8658 ^65000:4_0:184_0:104$ ip community-list expanded c1 permit 8659 ^65000:4_0:184_0:105$ ip community-list expanded c1 permit 8660 ^65000:4_0:184_0:106$ ip community-list expanded c1 permit 8661 ^65000:4_0:184_0:107$ ip community-list expanded c1 permit 8662 ^65000:4_0:184_0:108$ ip community-list expanded c1 permit 8663 ^65000:4_0:184_0:109$ ip community-list expanded c1 permit 8664 ^65000:4_0:184_0:110$ ip community-list expanded c1 permit 8665 ^65000:4_0:184_0:111$ ip community-list expanded c1 permit 8666 ^65000:4_0:184_0:112$ ip community-list expanded c1 permit 8667 ^65000:4_0:184_0:113$ ip community-list expanded c1 permit 8668 ^65000:4_0:184_0:114$ ip community-list expanded c1 permit 8669 ^65000:4_0:184_0:115$ ip community-list expanded c1 permit 8670 ^65000:4_0:184_0:116$ ip community-list expanded c1 permit 8671 ^65000:4_0:184_0:117$ ip community-list expanded c1 permit 8672 ^65000:4_0:184_0:118$ ip community-list expanded c1 permit 8673 ^65000:4_0:184_0:119$ ip community-list expanded c1 permit 8674 ^65000:4_0:184_0:120$ ip community-list expanded c1 permit 8675 ^65000:4_0:184_0:121$ ip community-list expanded c1 permit 8676 ^65000:4_0:184_0:122$ ip community-list expanded c1 permit 8677 ^65000:4_0:184_0:123$ ip community-list expanded c1 permit 8678 ^65000:4_0:184_0:124$ ip community-list expanded c1 permit 8679 ^65000:4_0:184_0:125$ ip community-list expanded c1 permit 8680 ^65000:4_0:184_0:126$ ip community-list expanded c1 permit 8681 ^65000:4_0:184_0:127$ ip community-list expanded c1 permit 8682 ^65000:4_0:184_0:128$ ip community-list expanded c1 permit 8683 ^65000:4_0:184_0:129$ ip community-list expanded c1 permit 8684 ^65000:4_0:184_0:130$ ip community-list expanded c1 permit 8685 ^65000:4_0:184_0:131$ ip community-list expanded c1 permit 8686 ^65000:4_0:184_0:132$ ip community-list expanded c1 permit 8687 ^65000:4_0:184_0:133$ ip community-list expanded c1 permit 8688 ^65000:4_0:184_0:134$ ip community-list expanded c1 permit 8689 ^65000:4_0:184_0:135$ ip community-list expanded c1 permit 8690 ^65000:4_0:184_0:136$ ip community-list expanded c1 permit 8691 ^65000:4_0:184_0:137$ ip community-list expanded c1 permit 8692 ^65000:4_0:184_0:138$ ip community-list expanded c1 permit 8693 ^65000:4_0:184_0:139$ ip community-list expanded c1 permit 8694 ^65000:4_0:184_0:140$ ip community-list expanded c1 permit 8695 ^65000:4_0:184_0:141$ ip community-list expanded c1 permit 8696 ^65000:4_0:184_0:142$ ip community-list expanded c1 permit 8697 ^65000:4_0:184_0:143$ ip community-list expanded c1 permit 8698 ^65000:4_0:184_0:144$ ip community-list expanded c1 permit 8699 ^65000:4_0:184_0:145$ ip community-list expanded c1 permit 8700 ^65000:4_0:184_0:146$ ip community-list expanded c1 permit 8701 ^65000:4_0:184_0:147$ ip community-list expanded c1 permit 8702 ^65000:4_0:184_0:148$ ip community-list expanded c1 permit 8703 ^65000:4_0:184_0:149$ ip community-list expanded c1 permit 8704 ^65000:4_0:184_0:150$ ip community-list expanded c1 permit 8705 ^65000:4_0:184_0:151$ ip community-list expanded c1 permit 8706 ^65000:4_0:184_0:152$ ip community-list expanded c1 permit 8707 ^65000:4_0:184_0:153$ ip community-list expanded c1 permit 8708 ^65000:4_0:184_0:154$ ip community-list expanded c1 permit 8709 ^65000:4_0:184_0:155$ ip community-list expanded c1 permit 8710 ^65000:4_0:184_0:156$ ip community-list expanded c1 permit 8711 ^65000:4_0:184_0:157$ ip community-list expanded c1 permit 8712 ^65000:4_0:184_0:158$ ip community-list expanded c1 permit 8713 ^65000:4_0:184_0:159$ ip community-list expanded c1 permit 8714 ^65000:4_0:184_0:160$ ip community-list expanded c1 permit 8715 ^65000:4_0:184_0:161$ ip community-list expanded c1 permit 8716 ^65000:4_0:184_0:162$ ip community-list expanded c1 permit 8717 ^65000:4_0:184_0:163$ ip community-list expanded c1 permit 8718 ^65000:4_0:184_0:164$ ip community-list expanded c1 permit 8719 ^65000:4_0:184_0:165$ ip community-list expanded c1 permit 8720 ^65000:4_0:184_0:166$ ip community-list expanded c1 permit 8721 ^65000:4_0:184_0:167$ ip community-list expanded c1 permit 8722 ^65000:4_0:184_0:168$ ip community-list expanded c1 permit 8723 ^65000:4_0:184_0:169$ ip community-list expanded c1 permit 8724 ^65000:4_0:184_0:170$ ip community-list expanded c1 permit 8725 ^65000:4_0:184_0:171$ ip community-list expanded c1 permit 8726 ^65000:4_0:184_0:172$ ip community-list expanded c1 permit 8727 ^65000:4_0:184_0:173$ ip community-list expanded c1 permit 8728 ^65000:4_0:184_0:174$ ip community-list expanded c1 permit 8729 ^65000:4_0:184_0:175$ ip community-list expanded c1 permit 8730 ^65000:4_0:184_0:176$ ip community-list expanded c1 permit 8731 ^65000:4_0:184_0:177$ ip community-list expanded c1 permit 8732 ^65000:4_0:184_0:178$ ip community-list expanded c1 permit 8733 ^65000:4_0:184_0:179$ ip community-list expanded c1 permit 8734 ^65000:4_0:184_0:180$ ip community-list expanded c1 permit 8735 ^65000:4_0:184_0:181$ ip community-list expanded c1 permit 8736 ^65000:4_0:184_0:182$ ip community-list expanded c1 permit 8737 ^65000:3_0:184_0:183$ ip community-list expanded c1 permit 8738 ^65000:4_0:184_0:183$ ip community-list expanded c1 permit 8739 ^65000:4_0:184_0:184$ ip community-list expanded c1 permit 8740 ^65000:4_0:185_0:93$ ip community-list expanded c1 permit 8741 ^65000:4_0:185_0:94$ ip community-list expanded c1 permit 8742 ^65000:4_0:185_0:95$ ip community-list expanded c1 permit 8743 ^65000:4_0:185_0:96$ ip community-list expanded c1 permit 8744 ^65000:4_0:185_0:97$ ip community-list expanded c1 permit 8745 ^65000:4_0:185_0:98$ ip community-list expanded c1 permit 8746 ^65000:4_0:185_0:99$ ip community-list expanded c1 permit 8747 ^65000:4_0:185_0:100$ ip community-list expanded c1 permit 8748 ^65000:4_0:185_0:101$ ip community-list expanded c1 permit 8749 ^65000:4_0:185_0:102$ ip community-list expanded c1 permit 8750 ^65000:4_0:185_0:103$ ip community-list expanded c1 permit 8751 ^65000:4_0:185_0:104$ ip community-list expanded c1 permit 8752 ^65000:4_0:185_0:105$ ip community-list expanded c1 permit 8753 ^65000:4_0:185_0:106$ ip community-list expanded c1 permit 8754 ^65000:4_0:185_0:107$ ip community-list expanded c1 permit 8755 ^65000:4_0:185_0:108$ ip community-list expanded c1 permit 8756 ^65000:4_0:185_0:109$ ip community-list expanded c1 permit 8757 ^65000:4_0:185_0:110$ ip community-list expanded c1 permit 8758 ^65000:4_0:185_0:111$ ip community-list expanded c1 permit 8759 ^65000:4_0:185_0:112$ ip community-list expanded c1 permit 8760 ^65000:4_0:185_0:113$ ip community-list expanded c1 permit 8761 ^65000:4_0:185_0:114$ ip community-list expanded c1 permit 8762 ^65000:4_0:185_0:115$ ip community-list expanded c1 permit 8763 ^65000:4_0:185_0:116$ ip community-list expanded c1 permit 8764 ^65000:4_0:185_0:117$ ip community-list expanded c1 permit 8765 ^65000:4_0:185_0:118$ ip community-list expanded c1 permit 8766 ^65000:4_0:185_0:119$ ip community-list expanded c1 permit 8767 ^65000:4_0:185_0:120$ ip community-list expanded c1 permit 8768 ^65000:4_0:185_0:121$ ip community-list expanded c1 permit 8769 ^65000:4_0:185_0:122$ ip community-list expanded c1 permit 8770 ^65000:4_0:185_0:123$ ip community-list expanded c1 permit 8771 ^65000:4_0:185_0:124$ ip community-list expanded c1 permit 8772 ^65000:4_0:185_0:125$ ip community-list expanded c1 permit 8773 ^65000:4_0:185_0:126$ ip community-list expanded c1 permit 8774 ^65000:4_0:185_0:127$ ip community-list expanded c1 permit 8775 ^65000:4_0:185_0:128$ ip community-list expanded c1 permit 8776 ^65000:4_0:185_0:129$ ip community-list expanded c1 permit 8777 ^65000:4_0:185_0:130$ ip community-list expanded c1 permit 8778 ^65000:4_0:185_0:131$ ip community-list expanded c1 permit 8779 ^65000:4_0:185_0:132$ ip community-list expanded c1 permit 8780 ^65000:4_0:185_0:133$ ip community-list expanded c1 permit 8781 ^65000:4_0:185_0:134$ ip community-list expanded c1 permit 8782 ^65000:4_0:185_0:135$ ip community-list expanded c1 permit 8783 ^65000:4_0:185_0:136$ ip community-list expanded c1 permit 8784 ^65000:4_0:185_0:137$ ip community-list expanded c1 permit 8785 ^65000:4_0:185_0:138$ ip community-list expanded c1 permit 8786 ^65000:4_0:185_0:139$ ip community-list expanded c1 permit 8787 ^65000:4_0:185_0:140$ ip community-list expanded c1 permit 8788 ^65000:4_0:185_0:141$ ip community-list expanded c1 permit 8789 ^65000:4_0:185_0:142$ ip community-list expanded c1 permit 8790 ^65000:4_0:185_0:143$ ip community-list expanded c1 permit 8791 ^65000:4_0:185_0:144$ ip community-list expanded c1 permit 8792 ^65000:4_0:185_0:145$ ip community-list expanded c1 permit 8793 ^65000:4_0:185_0:146$ ip community-list expanded c1 permit 8794 ^65000:4_0:185_0:147$ ip community-list expanded c1 permit 8795 ^65000:4_0:185_0:148$ ip community-list expanded c1 permit 8796 ^65000:4_0:185_0:149$ ip community-list expanded c1 permit 8797 ^65000:4_0:185_0:150$ ip community-list expanded c1 permit 8798 ^65000:4_0:185_0:151$ ip community-list expanded c1 permit 8799 ^65000:4_0:185_0:152$ ip community-list expanded c1 permit 8800 ^65000:4_0:185_0:153$ ip community-list expanded c1 permit 8801 ^65000:4_0:185_0:154$ ip community-list expanded c1 permit 8802 ^65000:4_0:185_0:155$ ip community-list expanded c1 permit 8803 ^65000:4_0:185_0:156$ ip community-list expanded c1 permit 8804 ^65000:4_0:185_0:157$ ip community-list expanded c1 permit 8805 ^65000:4_0:185_0:158$ ip community-list expanded c1 permit 8806 ^65000:4_0:185_0:159$ ip community-list expanded c1 permit 8807 ^65000:4_0:185_0:160$ ip community-list expanded c1 permit 8808 ^65000:4_0:185_0:161$ ip community-list expanded c1 permit 8809 ^65000:4_0:185_0:162$ ip community-list expanded c1 permit 8810 ^65000:4_0:185_0:163$ ip community-list expanded c1 permit 8811 ^65000:4_0:185_0:164$ ip community-list expanded c1 permit 8812 ^65000:4_0:185_0:165$ ip community-list expanded c1 permit 8813 ^65000:4_0:185_0:166$ ip community-list expanded c1 permit 8814 ^65000:4_0:185_0:167$ ip community-list expanded c1 permit 8815 ^65000:4_0:185_0:168$ ip community-list expanded c1 permit 8816 ^65000:4_0:185_0:169$ ip community-list expanded c1 permit 8817 ^65000:4_0:185_0:170$ ip community-list expanded c1 permit 8818 ^65000:4_0:185_0:171$ ip community-list expanded c1 permit 8819 ^65000:4_0:185_0:172$ ip community-list expanded c1 permit 8820 ^65000:4_0:185_0:173$ ip community-list expanded c1 permit 8821 ^65000:4_0:185_0:174$ ip community-list expanded c1 permit 8822 ^65000:4_0:185_0:175$ ip community-list expanded c1 permit 8823 ^65000:4_0:185_0:176$ ip community-list expanded c1 permit 8824 ^65000:4_0:185_0:177$ ip community-list expanded c1 permit 8825 ^65000:4_0:185_0:178$ ip community-list expanded c1 permit 8826 ^65000:4_0:185_0:179$ ip community-list expanded c1 permit 8827 ^65000:4_0:185_0:180$ ip community-list expanded c1 permit 8828 ^65000:4_0:185_0:181$ ip community-list expanded c1 permit 8829 ^65000:4_0:185_0:182$ ip community-list expanded c1 permit 8830 ^65000:4_0:185_0:183$ ip community-list expanded c1 permit 8831 ^65000:3_0:185_0:184$ ip community-list expanded c1 permit 8832 ^65000:4_0:185_0:184$ ip community-list expanded c1 permit 8833 ^65000:4_0:185_0:185$ ip community-list expanded c1 permit 8834 ^65000:4_0:186_0:94$ ip community-list expanded c1 permit 8835 ^65000:4_0:186_0:95$ ip community-list expanded c1 permit 8836 ^65000:4_0:186_0:96$ ip community-list expanded c1 permit 8837 ^65000:4_0:186_0:97$ ip community-list expanded c1 permit 8838 ^65000:4_0:186_0:98$ ip community-list expanded c1 permit 8839 ^65000:4_0:186_0:99$ ip community-list expanded c1 permit 8840 ^65000:4_0:186_0:100$ ip community-list expanded c1 permit 8841 ^65000:4_0:186_0:101$ ip community-list expanded c1 permit 8842 ^65000:4_0:186_0:102$ ip community-list expanded c1 permit 8843 ^65000:4_0:186_0:103$ ip community-list expanded c1 permit 8844 ^65000:4_0:186_0:104$ ip community-list expanded c1 permit 8845 ^65000:4_0:186_0:105$ ip community-list expanded c1 permit 8846 ^65000:4_0:186_0:106$ ip community-list expanded c1 permit 8847 ^65000:4_0:186_0:107$ ip community-list expanded c1 permit 8848 ^65000:4_0:186_0:108$ ip community-list expanded c1 permit 8849 ^65000:4_0:186_0:109$ ip community-list expanded c1 permit 8850 ^65000:4_0:186_0:110$ ip community-list expanded c1 permit 8851 ^65000:4_0:186_0:111$ ip community-list expanded c1 permit 8852 ^65000:4_0:186_0:112$ ip community-list expanded c1 permit 8853 ^65000:4_0:186_0:113$ ip community-list expanded c1 permit 8854 ^65000:4_0:186_0:114$ ip community-list expanded c1 permit 8855 ^65000:4_0:186_0:115$ ip community-list expanded c1 permit 8856 ^65000:4_0:186_0:116$ ip community-list expanded c1 permit 8857 ^65000:4_0:186_0:117$ ip community-list expanded c1 permit 8858 ^65000:4_0:186_0:118$ ip community-list expanded c1 permit 8859 ^65000:4_0:186_0:119$ ip community-list expanded c1 permit 8860 ^65000:4_0:186_0:120$ ip community-list expanded c1 permit 8861 ^65000:4_0:186_0:121$ ip community-list expanded c1 permit 8862 ^65000:4_0:186_0:122$ ip community-list expanded c1 permit 8863 ^65000:4_0:186_0:123$ ip community-list expanded c1 permit 8864 ^65000:4_0:186_0:124$ ip community-list expanded c1 permit 8865 ^65000:4_0:186_0:125$ ip community-list expanded c1 permit 8866 ^65000:4_0:186_0:126$ ip community-list expanded c1 permit 8867 ^65000:4_0:186_0:127$ ip community-list expanded c1 permit 8868 ^65000:4_0:186_0:128$ ip community-list expanded c1 permit 8869 ^65000:4_0:186_0:129$ ip community-list expanded c1 permit 8870 ^65000:4_0:186_0:130$ ip community-list expanded c1 permit 8871 ^65000:4_0:186_0:131$ ip community-list expanded c1 permit 8872 ^65000:4_0:186_0:132$ ip community-list expanded c1 permit 8873 ^65000:4_0:186_0:133$ ip community-list expanded c1 permit 8874 ^65000:4_0:186_0:134$ ip community-list expanded c1 permit 8875 ^65000:4_0:186_0:135$ ip community-list expanded c1 permit 8876 ^65000:4_0:186_0:136$ ip community-list expanded c1 permit 8877 ^65000:4_0:186_0:137$ ip community-list expanded c1 permit 8878 ^65000:4_0:186_0:138$ ip community-list expanded c1 permit 8879 ^65000:4_0:186_0:139$ ip community-list expanded c1 permit 8880 ^65000:4_0:186_0:140$ ip community-list expanded c1 permit 8881 ^65000:4_0:186_0:141$ ip community-list expanded c1 permit 8882 ^65000:4_0:186_0:142$ ip community-list expanded c1 permit 8883 ^65000:4_0:186_0:143$ ip community-list expanded c1 permit 8884 ^65000:4_0:186_0:144$ ip community-list expanded c1 permit 8885 ^65000:4_0:186_0:145$ ip community-list expanded c1 permit 8886 ^65000:4_0:186_0:146$ ip community-list expanded c1 permit 8887 ^65000:4_0:186_0:147$ ip community-list expanded c1 permit 8888 ^65000:4_0:186_0:148$ ip community-list expanded c1 permit 8889 ^65000:4_0:186_0:149$ ip community-list expanded c1 permit 8890 ^65000:4_0:186_0:150$ ip community-list expanded c1 permit 8891 ^65000:4_0:186_0:151$ ip community-list expanded c1 permit 8892 ^65000:4_0:186_0:152$ ip community-list expanded c1 permit 8893 ^65000:4_0:186_0:153$ ip community-list expanded c1 permit 8894 ^65000:4_0:186_0:154$ ip community-list expanded c1 permit 8895 ^65000:4_0:186_0:155$ ip community-list expanded c1 permit 8896 ^65000:4_0:186_0:156$ ip community-list expanded c1 permit 8897 ^65000:4_0:186_0:157$ ip community-list expanded c1 permit 8898 ^65000:4_0:186_0:158$ ip community-list expanded c1 permit 8899 ^65000:4_0:186_0:159$ ip community-list expanded c1 permit 8900 ^65000:4_0:186_0:160$ ip community-list expanded c1 permit 8901 ^65000:4_0:186_0:161$ ip community-list expanded c1 permit 8902 ^65000:4_0:186_0:162$ ip community-list expanded c1 permit 8903 ^65000:4_0:186_0:163$ ip community-list expanded c1 permit 8904 ^65000:4_0:186_0:164$ ip community-list expanded c1 permit 8905 ^65000:4_0:186_0:165$ ip community-list expanded c1 permit 8906 ^65000:4_0:186_0:166$ ip community-list expanded c1 permit 8907 ^65000:4_0:186_0:167$ ip community-list expanded c1 permit 8908 ^65000:4_0:186_0:168$ ip community-list expanded c1 permit 8909 ^65000:4_0:186_0:169$ ip community-list expanded c1 permit 8910 ^65000:4_0:186_0:170$ ip community-list expanded c1 permit 8911 ^65000:4_0:186_0:171$ ip community-list expanded c1 permit 8912 ^65000:4_0:186_0:172$ ip community-list expanded c1 permit 8913 ^65000:4_0:186_0:173$ ip community-list expanded c1 permit 8914 ^65000:4_0:186_0:174$ ip community-list expanded c1 permit 8915 ^65000:4_0:186_0:175$ ip community-list expanded c1 permit 8916 ^65000:4_0:186_0:176$ ip community-list expanded c1 permit 8917 ^65000:4_0:186_0:177$ ip community-list expanded c1 permit 8918 ^65000:4_0:186_0:178$ ip community-list expanded c1 permit 8919 ^65000:4_0:186_0:179$ ip community-list expanded c1 permit 8920 ^65000:4_0:186_0:180$ ip community-list expanded c1 permit 8921 ^65000:4_0:186_0:181$ ip community-list expanded c1 permit 8922 ^65000:4_0:186_0:182$ ip community-list expanded c1 permit 8923 ^65000:4_0:186_0:183$ ip community-list expanded c1 permit 8924 ^65000:4_0:186_0:184$ ip community-list expanded c1 permit 8925 ^65000:3_0:186_0:185$ ip community-list expanded c1 permit 8926 ^65000:4_0:186_0:185$ ip community-list expanded c1 permit 8927 ^65000:4_0:186_0:186$ ip community-list expanded c1 permit 8928 ^65000:4_0:187_0:94$ ip community-list expanded c1 permit 8929 ^65000:4_0:187_0:95$ ip community-list expanded c1 permit 8930 ^65000:4_0:187_0:96$ ip community-list expanded c1 permit 8931 ^65000:4_0:187_0:97$ ip community-list expanded c1 permit 8932 ^65000:4_0:187_0:98$ ip community-list expanded c1 permit 8933 ^65000:4_0:187_0:99$ ip community-list expanded c1 permit 8934 ^65000:4_0:187_0:100$ ip community-list expanded c1 permit 8935 ^65000:4_0:187_0:101$ ip community-list expanded c1 permit 8936 ^65000:4_0:187_0:102$ ip community-list expanded c1 permit 8937 ^65000:4_0:187_0:103$ ip community-list expanded c1 permit 8938 ^65000:4_0:187_0:104$ ip community-list expanded c1 permit 8939 ^65000:4_0:187_0:105$ ip community-list expanded c1 permit 8940 ^65000:4_0:187_0:106$ ip community-list expanded c1 permit 8941 ^65000:4_0:187_0:107$ ip community-list expanded c1 permit 8942 ^65000:4_0:187_0:108$ ip community-list expanded c1 permit 8943 ^65000:4_0:187_0:109$ ip community-list expanded c1 permit 8944 ^65000:4_0:187_0:110$ ip community-list expanded c1 permit 8945 ^65000:4_0:187_0:111$ ip community-list expanded c1 permit 8946 ^65000:4_0:187_0:112$ ip community-list expanded c1 permit 8947 ^65000:4_0:187_0:113$ ip community-list expanded c1 permit 8948 ^65000:4_0:187_0:114$ ip community-list expanded c1 permit 8949 ^65000:4_0:187_0:115$ ip community-list expanded c1 permit 8950 ^65000:4_0:187_0:116$ ip community-list expanded c1 permit 8951 ^65000:4_0:187_0:117$ ip community-list expanded c1 permit 8952 ^65000:4_0:187_0:118$ ip community-list expanded c1 permit 8953 ^65000:4_0:187_0:119$ ip community-list expanded c1 permit 8954 ^65000:4_0:187_0:120$ ip community-list expanded c1 permit 8955 ^65000:4_0:187_0:121$ ip community-list expanded c1 permit 8956 ^65000:4_0:187_0:122$ ip community-list expanded c1 permit 8957 ^65000:4_0:187_0:123$ ip community-list expanded c1 permit 8958 ^65000:4_0:187_0:124$ ip community-list expanded c1 permit 8959 ^65000:4_0:187_0:125$ ip community-list expanded c1 permit 8960 ^65000:4_0:187_0:126$ ip community-list expanded c1 permit 8961 ^65000:4_0:187_0:127$ ip community-list expanded c1 permit 8962 ^65000:4_0:187_0:128$ ip community-list expanded c1 permit 8963 ^65000:4_0:187_0:129$ ip community-list expanded c1 permit 8964 ^65000:4_0:187_0:130$ ip community-list expanded c1 permit 8965 ^65000:4_0:187_0:131$ ip community-list expanded c1 permit 8966 ^65000:4_0:187_0:132$ ip community-list expanded c1 permit 8967 ^65000:4_0:187_0:133$ ip community-list expanded c1 permit 8968 ^65000:4_0:187_0:134$ ip community-list expanded c1 permit 8969 ^65000:4_0:187_0:135$ ip community-list expanded c1 permit 8970 ^65000:4_0:187_0:136$ ip community-list expanded c1 permit 8971 ^65000:4_0:187_0:137$ ip community-list expanded c1 permit 8972 ^65000:4_0:187_0:138$ ip community-list expanded c1 permit 8973 ^65000:4_0:187_0:139$ ip community-list expanded c1 permit 8974 ^65000:4_0:187_0:140$ ip community-list expanded c1 permit 8975 ^65000:4_0:187_0:141$ ip community-list expanded c1 permit 8976 ^65000:4_0:187_0:142$ ip community-list expanded c1 permit 8977 ^65000:4_0:187_0:143$ ip community-list expanded c1 permit 8978 ^65000:4_0:187_0:144$ ip community-list expanded c1 permit 8979 ^65000:4_0:187_0:145$ ip community-list expanded c1 permit 8980 ^65000:4_0:187_0:146$ ip community-list expanded c1 permit 8981 ^65000:4_0:187_0:147$ ip community-list expanded c1 permit 8982 ^65000:4_0:187_0:148$ ip community-list expanded c1 permit 8983 ^65000:4_0:187_0:149$ ip community-list expanded c1 permit 8984 ^65000:4_0:187_0:150$ ip community-list expanded c1 permit 8985 ^65000:4_0:187_0:151$ ip community-list expanded c1 permit 8986 ^65000:4_0:187_0:152$ ip community-list expanded c1 permit 8987 ^65000:4_0:187_0:153$ ip community-list expanded c1 permit 8988 ^65000:4_0:187_0:154$ ip community-list expanded c1 permit 8989 ^65000:4_0:187_0:155$ ip community-list expanded c1 permit 8990 ^65000:4_0:187_0:156$ ip community-list expanded c1 permit 8991 ^65000:4_0:187_0:157$ ip community-list expanded c1 permit 8992 ^65000:4_0:187_0:158$ ip community-list expanded c1 permit 8993 ^65000:4_0:187_0:159$ ip community-list expanded c1 permit 8994 ^65000:4_0:187_0:160$ ip community-list expanded c1 permit 8995 ^65000:4_0:187_0:161$ ip community-list expanded c1 permit 8996 ^65000:4_0:187_0:162$ ip community-list expanded c1 permit 8997 ^65000:4_0:187_0:163$ ip community-list expanded c1 permit 8998 ^65000:4_0:187_0:164$ ip community-list expanded c1 permit 8999 ^65000:4_0:187_0:165$ ip community-list expanded c1 permit 9000 ^65000:4_0:187_0:166$ ip community-list expanded c1 permit 9001 ^65000:4_0:187_0:167$ ip community-list expanded c1 permit 9002 ^65000:4_0:187_0:168$ ip community-list expanded c1 permit 9003 ^65000:4_0:187_0:169$ ip community-list expanded c1 permit 9004 ^65000:4_0:187_0:170$ ip community-list expanded c1 permit 9005 ^65000:4_0:187_0:171$ ip community-list expanded c1 permit 9006 ^65000:4_0:187_0:172$ ip community-list expanded c1 permit 9007 ^65000:4_0:187_0:173$ ip community-list expanded c1 permit 9008 ^65000:4_0:187_0:174$ ip community-list expanded c1 permit 9009 ^65000:4_0:187_0:175$ ip community-list expanded c1 permit 9010 ^65000:4_0:187_0:176$ ip community-list expanded c1 permit 9011 ^65000:4_0:187_0:177$ ip community-list expanded c1 permit 9012 ^65000:4_0:187_0:178$ ip community-list expanded c1 permit 9013 ^65000:4_0:187_0:179$ ip community-list expanded c1 permit 9014 ^65000:4_0:187_0:180$ ip community-list expanded c1 permit 9015 ^65000:4_0:187_0:181$ ip community-list expanded c1 permit 9016 ^65000:4_0:187_0:182$ ip community-list expanded c1 permit 9017 ^65000:4_0:187_0:183$ ip community-list expanded c1 permit 9018 ^65000:4_0:187_0:184$ ip community-list expanded c1 permit 9019 ^65000:4_0:187_0:185$ ip community-list expanded c1 permit 9020 ^65000:3_0:187_0:186$ ip community-list expanded c1 permit 9021 ^65000:4_0:187_0:186$ ip community-list expanded c1 permit 9022 ^65000:4_0:187_0:187$ ip community-list expanded c1 permit 9023 ^65000:4_0:188_0:95$ ip community-list expanded c1 permit 9024 ^65000:4_0:188_0:96$ ip community-list expanded c1 permit 9025 ^65000:4_0:188_0:97$ ip community-list expanded c1 permit 9026 ^65000:4_0:188_0:98$ ip community-list expanded c1 permit 9027 ^65000:4_0:188_0:99$ ip community-list expanded c1 permit 9028 ^65000:4_0:188_0:100$ ip community-list expanded c1 permit 9029 ^65000:4_0:188_0:101$ ip community-list expanded c1 permit 9030 ^65000:4_0:188_0:102$ ip community-list expanded c1 permit 9031 ^65000:4_0:188_0:103$ ip community-list expanded c1 permit 9032 ^65000:4_0:188_0:104$ ip community-list expanded c1 permit 9033 ^65000:4_0:188_0:105$ ip community-list expanded c1 permit 9034 ^65000:4_0:188_0:106$ ip community-list expanded c1 permit 9035 ^65000:4_0:188_0:107$ ip community-list expanded c1 permit 9036 ^65000:4_0:188_0:108$ ip community-list expanded c1 permit 9037 ^65000:4_0:188_0:109$ ip community-list expanded c1 permit 9038 ^65000:4_0:188_0:110$ ip community-list expanded c1 permit 9039 ^65000:4_0:188_0:111$ ip community-list expanded c1 permit 9040 ^65000:4_0:188_0:112$ ip community-list expanded c1 permit 9041 ^65000:4_0:188_0:113$ ip community-list expanded c1 permit 9042 ^65000:4_0:188_0:114$ ip community-list expanded c1 permit 9043 ^65000:4_0:188_0:115$ ip community-list expanded c1 permit 9044 ^65000:4_0:188_0:116$ ip community-list expanded c1 permit 9045 ^65000:4_0:188_0:117$ ip community-list expanded c1 permit 9046 ^65000:4_0:188_0:118$ ip community-list expanded c1 permit 9047 ^65000:4_0:188_0:119$ ip community-list expanded c1 permit 9048 ^65000:4_0:188_0:120$ ip community-list expanded c1 permit 9049 ^65000:4_0:188_0:121$ ip community-list expanded c1 permit 9050 ^65000:4_0:188_0:122$ ip community-list expanded c1 permit 9051 ^65000:4_0:188_0:123$ ip community-list expanded c1 permit 9052 ^65000:4_0:188_0:124$ ip community-list expanded c1 permit 9053 ^65000:4_0:188_0:125$ ip community-list expanded c1 permit 9054 ^65000:4_0:188_0:126$ ip community-list expanded c1 permit 9055 ^65000:4_0:188_0:127$ ip community-list expanded c1 permit 9056 ^65000:4_0:188_0:128$ ip community-list expanded c1 permit 9057 ^65000:4_0:188_0:129$ ip community-list expanded c1 permit 9058 ^65000:4_0:188_0:130$ ip community-list expanded c1 permit 9059 ^65000:4_0:188_0:131$ ip community-list expanded c1 permit 9060 ^65000:4_0:188_0:132$ ip community-list expanded c1 permit 9061 ^65000:4_0:188_0:133$ ip community-list expanded c1 permit 9062 ^65000:4_0:188_0:134$ ip community-list expanded c1 permit 9063 ^65000:4_0:188_0:135$ ip community-list expanded c1 permit 9064 ^65000:4_0:188_0:136$ ip community-list expanded c1 permit 9065 ^65000:4_0:188_0:137$ ip community-list expanded c1 permit 9066 ^65000:4_0:188_0:138$ ip community-list expanded c1 permit 9067 ^65000:4_0:188_0:139$ ip community-list expanded c1 permit 9068 ^65000:4_0:188_0:140$ ip community-list expanded c1 permit 9069 ^65000:4_0:188_0:141$ ip community-list expanded c1 permit 9070 ^65000:4_0:188_0:142$ ip community-list expanded c1 permit 9071 ^65000:4_0:188_0:143$ ip community-list expanded c1 permit 9072 ^65000:4_0:188_0:144$ ip community-list expanded c1 permit 9073 ^65000:4_0:188_0:145$ ip community-list expanded c1 permit 9074 ^65000:4_0:188_0:146$ ip community-list expanded c1 permit 9075 ^65000:4_0:188_0:147$ ip community-list expanded c1 permit 9076 ^65000:4_0:188_0:148$ ip community-list expanded c1 permit 9077 ^65000:4_0:188_0:149$ ip community-list expanded c1 permit 9078 ^65000:4_0:188_0:150$ ip community-list expanded c1 permit 9079 ^65000:4_0:188_0:151$ ip community-list expanded c1 permit 9080 ^65000:4_0:188_0:152$ ip community-list expanded c1 permit 9081 ^65000:4_0:188_0:153$ ip community-list expanded c1 permit 9082 ^65000:4_0:188_0:154$ ip community-list expanded c1 permit 9083 ^65000:4_0:188_0:155$ ip community-list expanded c1 permit 9084 ^65000:4_0:188_0:156$ ip community-list expanded c1 permit 9085 ^65000:4_0:188_0:157$ ip community-list expanded c1 permit 9086 ^65000:4_0:188_0:158$ ip community-list expanded c1 permit 9087 ^65000:4_0:188_0:159$ ip community-list expanded c1 permit 9088 ^65000:4_0:188_0:160$ ip community-list expanded c1 permit 9089 ^65000:4_0:188_0:161$ ip community-list expanded c1 permit 9090 ^65000:4_0:188_0:162$ ip community-list expanded c1 permit 9091 ^65000:4_0:188_0:163$ ip community-list expanded c1 permit 9092 ^65000:4_0:188_0:164$ ip community-list expanded c1 permit 9093 ^65000:4_0:188_0:165$ ip community-list expanded c1 permit 9094 ^65000:4_0:188_0:166$ ip community-list expanded c1 permit 9095 ^65000:4_0:188_0:167$ ip community-list expanded c1 permit 9096 ^65000:4_0:188_0:168$ ip community-list expanded c1 permit 9097 ^65000:4_0:188_0:169$ ip community-list expanded c1 permit 9098 ^65000:4_0:188_0:170$ ip community-list expanded c1 permit 9099 ^65000:4_0:188_0:171$ ip community-list expanded c1 permit 9100 ^65000:4_0:188_0:172$ ip community-list expanded c1 permit 9101 ^65000:4_0:188_0:173$ ip community-list expanded c1 permit 9102 ^65000:4_0:188_0:174$ ip community-list expanded c1 permit 9103 ^65000:4_0:188_0:175$ ip community-list expanded c1 permit 9104 ^65000:4_0:188_0:176$ ip community-list expanded c1 permit 9105 ^65000:4_0:188_0:177$ ip community-list expanded c1 permit 9106 ^65000:4_0:188_0:178$ ip community-list expanded c1 permit 9107 ^65000:4_0:188_0:179$ ip community-list expanded c1 permit 9108 ^65000:4_0:188_0:180$ ip community-list expanded c1 permit 9109 ^65000:4_0:188_0:181$ ip community-list expanded c1 permit 9110 ^65000:4_0:188_0:182$ ip community-list expanded c1 permit 9111 ^65000:4_0:188_0:183$ ip community-list expanded c1 permit 9112 ^65000:4_0:188_0:184$ ip community-list expanded c1 permit 9113 ^65000:4_0:188_0:185$ ip community-list expanded c1 permit 9114 ^65000:4_0:188_0:186$ ip community-list expanded c1 permit 9115 ^65000:3_0:188_0:187$ ip community-list expanded c1 permit 9116 ^65000:4_0:188_0:187$ ip community-list expanded c1 permit 9117 ^65000:4_0:188_0:188$ ip community-list expanded c1 permit 9118 ^65000:4_0:189_0:95$ ip community-list expanded c1 permit 9119 ^65000:4_0:189_0:96$ ip community-list expanded c1 permit 9120 ^65000:4_0:189_0:97$ ip community-list expanded c1 permit 9121 ^65000:4_0:189_0:98$ ip community-list expanded c1 permit 9122 ^65000:4_0:189_0:99$ ip community-list expanded c1 permit 9123 ^65000:4_0:189_0:100$ ip community-list expanded c1 permit 9124 ^65000:4_0:189_0:101$ ip community-list expanded c1 permit 9125 ^65000:4_0:189_0:102$ ip community-list expanded c1 permit 9126 ^65000:4_0:189_0:103$ ip community-list expanded c1 permit 9127 ^65000:4_0:189_0:104$ ip community-list expanded c1 permit 9128 ^65000:4_0:189_0:105$ ip community-list expanded c1 permit 9129 ^65000:4_0:189_0:106$ ip community-list expanded c1 permit 9130 ^65000:4_0:189_0:107$ ip community-list expanded c1 permit 9131 ^65000:4_0:189_0:108$ ip community-list expanded c1 permit 9132 ^65000:4_0:189_0:109$ ip community-list expanded c1 permit 9133 ^65000:4_0:189_0:110$ ip community-list expanded c1 permit 9134 ^65000:4_0:189_0:111$ ip community-list expanded c1 permit 9135 ^65000:4_0:189_0:112$ ip community-list expanded c1 permit 9136 ^65000:4_0:189_0:113$ ip community-list expanded c1 permit 9137 ^65000:4_0:189_0:114$ ip community-list expanded c1 permit 9138 ^65000:4_0:189_0:115$ ip community-list expanded c1 permit 9139 ^65000:4_0:189_0:116$ ip community-list expanded c1 permit 9140 ^65000:4_0:189_0:117$ ip community-list expanded c1 permit 9141 ^65000:4_0:189_0:118$ ip community-list expanded c1 permit 9142 ^65000:4_0:189_0:119$ ip community-list expanded c1 permit 9143 ^65000:4_0:189_0:120$ ip community-list expanded c1 permit 9144 ^65000:4_0:189_0:121$ ip community-list expanded c1 permit 9145 ^65000:4_0:189_0:122$ ip community-list expanded c1 permit 9146 ^65000:4_0:189_0:123$ ip community-list expanded c1 permit 9147 ^65000:4_0:189_0:124$ ip community-list expanded c1 permit 9148 ^65000:4_0:189_0:125$ ip community-list expanded c1 permit 9149 ^65000:4_0:189_0:126$ ip community-list expanded c1 permit 9150 ^65000:4_0:189_0:127$ ip community-list expanded c1 permit 9151 ^65000:4_0:189_0:128$ ip community-list expanded c1 permit 9152 ^65000:4_0:189_0:129$ ip community-list expanded c1 permit 9153 ^65000:4_0:189_0:130$ ip community-list expanded c1 permit 9154 ^65000:4_0:189_0:131$ ip community-list expanded c1 permit 9155 ^65000:4_0:189_0:132$ ip community-list expanded c1 permit 9156 ^65000:4_0:189_0:133$ ip community-list expanded c1 permit 9157 ^65000:4_0:189_0:134$ ip community-list expanded c1 permit 9158 ^65000:4_0:189_0:135$ ip community-list expanded c1 permit 9159 ^65000:4_0:189_0:136$ ip community-list expanded c1 permit 9160 ^65000:4_0:189_0:137$ ip community-list expanded c1 permit 9161 ^65000:4_0:189_0:138$ ip community-list expanded c1 permit 9162 ^65000:4_0:189_0:139$ ip community-list expanded c1 permit 9163 ^65000:4_0:189_0:140$ ip community-list expanded c1 permit 9164 ^65000:4_0:189_0:141$ ip community-list expanded c1 permit 9165 ^65000:4_0:189_0:142$ ip community-list expanded c1 permit 9166 ^65000:4_0:189_0:143$ ip community-list expanded c1 permit 9167 ^65000:4_0:189_0:144$ ip community-list expanded c1 permit 9168 ^65000:4_0:189_0:145$ ip community-list expanded c1 permit 9169 ^65000:4_0:189_0:146$ ip community-list expanded c1 permit 9170 ^65000:4_0:189_0:147$ ip community-list expanded c1 permit 9171 ^65000:4_0:189_0:148$ ip community-list expanded c1 permit 9172 ^65000:4_0:189_0:149$ ip community-list expanded c1 permit 9173 ^65000:4_0:189_0:150$ ip community-list expanded c1 permit 9174 ^65000:4_0:189_0:151$ ip community-list expanded c1 permit 9175 ^65000:4_0:189_0:152$ ip community-list expanded c1 permit 9176 ^65000:4_0:189_0:153$ ip community-list expanded c1 permit 9177 ^65000:4_0:189_0:154$ ip community-list expanded c1 permit 9178 ^65000:4_0:189_0:155$ ip community-list expanded c1 permit 9179 ^65000:4_0:189_0:156$ ip community-list expanded c1 permit 9180 ^65000:4_0:189_0:157$ ip community-list expanded c1 permit 9181 ^65000:4_0:189_0:158$ ip community-list expanded c1 permit 9182 ^65000:4_0:189_0:159$ ip community-list expanded c1 permit 9183 ^65000:4_0:189_0:160$ ip community-list expanded c1 permit 9184 ^65000:4_0:189_0:161$ ip community-list expanded c1 permit 9185 ^65000:4_0:189_0:162$ ip community-list expanded c1 permit 9186 ^65000:4_0:189_0:163$ ip community-list expanded c1 permit 9187 ^65000:4_0:189_0:164$ ip community-list expanded c1 permit 9188 ^65000:4_0:189_0:165$ ip community-list expanded c1 permit 9189 ^65000:4_0:189_0:166$ ip community-list expanded c1 permit 9190 ^65000:4_0:189_0:167$ ip community-list expanded c1 permit 9191 ^65000:4_0:189_0:168$ ip community-list expanded c1 permit 9192 ^65000:4_0:189_0:169$ ip community-list expanded c1 permit 9193 ^65000:4_0:189_0:170$ ip community-list expanded c1 permit 9194 ^65000:4_0:189_0:171$ ip community-list expanded c1 permit 9195 ^65000:4_0:189_0:172$ ip community-list expanded c1 permit 9196 ^65000:4_0:189_0:173$ ip community-list expanded c1 permit 9197 ^65000:4_0:189_0:174$ ip community-list expanded c1 permit 9198 ^65000:4_0:189_0:175$ ip community-list expanded c1 permit 9199 ^65000:4_0:189_0:176$ ip community-list expanded c1 permit 9200 ^65000:4_0:189_0:177$ ip community-list expanded c1 permit 9201 ^65000:4_0:189_0:178$ ip community-list expanded c1 permit 9202 ^65000:4_0:189_0:179$ ip community-list expanded c1 permit 9203 ^65000:4_0:189_0:180$ ip community-list expanded c1 permit 9204 ^65000:4_0:189_0:181$ ip community-list expanded c1 permit 9205 ^65000:4_0:189_0:182$ ip community-list expanded c1 permit 9206 ^65000:4_0:189_0:183$ ip community-list expanded c1 permit 9207 ^65000:4_0:189_0:184$ ip community-list expanded c1 permit 9208 ^65000:4_0:189_0:185$ ip community-list expanded c1 permit 9209 ^65000:4_0:189_0:186$ ip community-list expanded c1 permit 9210 ^65000:4_0:189_0:187$ ip community-list expanded c1 permit 9211 ^65000:3_0:189_0:188$ ip community-list expanded c1 permit 9212 ^65000:4_0:189_0:188$ ip community-list expanded c1 permit 9213 ^65000:4_0:189_0:189$ ip community-list expanded c1 permit 9214 ^65000:4_0:190_0:96$ ip community-list expanded c1 permit 9215 ^65000:4_0:190_0:97$ ip community-list expanded c1 permit 9216 ^65000:4_0:190_0:98$ ip community-list expanded c1 permit 9217 ^65000:4_0:190_0:99$ ip community-list expanded c1 permit 9218 ^65000:4_0:190_0:100$ ip community-list expanded c1 permit 9219 ^65000:4_0:190_0:101$ ip community-list expanded c1 permit 9220 ^65000:4_0:190_0:102$ ip community-list expanded c1 permit 9221 ^65000:4_0:190_0:103$ ip community-list expanded c1 permit 9222 ^65000:4_0:190_0:104$ ip community-list expanded c1 permit 9223 ^65000:4_0:190_0:105$ ip community-list expanded c1 permit 9224 ^65000:4_0:190_0:106$ ip community-list expanded c1 permit 9225 ^65000:4_0:190_0:107$ ip community-list expanded c1 permit 9226 ^65000:4_0:190_0:108$ ip community-list expanded c1 permit 9227 ^65000:4_0:190_0:109$ ip community-list expanded c1 permit 9228 ^65000:4_0:190_0:110$ ip community-list expanded c1 permit 9229 ^65000:4_0:190_0:111$ ip community-list expanded c1 permit 9230 ^65000:4_0:190_0:112$ ip community-list expanded c1 permit 9231 ^65000:4_0:190_0:113$ ip community-list expanded c1 permit 9232 ^65000:4_0:190_0:114$ ip community-list expanded c1 permit 9233 ^65000:4_0:190_0:115$ ip community-list expanded c1 permit 9234 ^65000:4_0:190_0:116$ ip community-list expanded c1 permit 9235 ^65000:4_0:190_0:117$ ip community-list expanded c1 permit 9236 ^65000:4_0:190_0:118$ ip community-list expanded c1 permit 9237 ^65000:4_0:190_0:119$ ip community-list expanded c1 permit 9238 ^65000:4_0:190_0:120$ ip community-list expanded c1 permit 9239 ^65000:4_0:190_0:121$ ip community-list expanded c1 permit 9240 ^65000:4_0:190_0:122$ ip community-list expanded c1 permit 9241 ^65000:4_0:190_0:123$ ip community-list expanded c1 permit 9242 ^65000:4_0:190_0:124$ ip community-list expanded c1 permit 9243 ^65000:4_0:190_0:125$ ip community-list expanded c1 permit 9244 ^65000:4_0:190_0:126$ ip community-list expanded c1 permit 9245 ^65000:4_0:190_0:127$ ip community-list expanded c1 permit 9246 ^65000:4_0:190_0:128$ ip community-list expanded c1 permit 9247 ^65000:4_0:190_0:129$ ip community-list expanded c1 permit 9248 ^65000:4_0:190_0:130$ ip community-list expanded c1 permit 9249 ^65000:4_0:190_0:131$ ip community-list expanded c1 permit 9250 ^65000:4_0:190_0:132$ ip community-list expanded c1 permit 9251 ^65000:4_0:190_0:133$ ip community-list expanded c1 permit 9252 ^65000:4_0:190_0:134$ ip community-list expanded c1 permit 9253 ^65000:4_0:190_0:135$ ip community-list expanded c1 permit 9254 ^65000:4_0:190_0:136$ ip community-list expanded c1 permit 9255 ^65000:4_0:190_0:137$ ip community-list expanded c1 permit 9256 ^65000:4_0:190_0:138$ ip community-list expanded c1 permit 9257 ^65000:4_0:190_0:139$ ip community-list expanded c1 permit 9258 ^65000:4_0:190_0:140$ ip community-list expanded c1 permit 9259 ^65000:4_0:190_0:141$ ip community-list expanded c1 permit 9260 ^65000:4_0:190_0:142$ ip community-list expanded c1 permit 9261 ^65000:4_0:190_0:143$ ip community-list expanded c1 permit 9262 ^65000:4_0:190_0:144$ ip community-list expanded c1 permit 9263 ^65000:4_0:190_0:145$ ip community-list expanded c1 permit 9264 ^65000:4_0:190_0:146$ ip community-list expanded c1 permit 9265 ^65000:4_0:190_0:147$ ip community-list expanded c1 permit 9266 ^65000:4_0:190_0:148$ ip community-list expanded c1 permit 9267 ^65000:4_0:190_0:149$ ip community-list expanded c1 permit 9268 ^65000:4_0:190_0:150$ ip community-list expanded c1 permit 9269 ^65000:4_0:190_0:151$ ip community-list expanded c1 permit 9270 ^65000:4_0:190_0:152$ ip community-list expanded c1 permit 9271 ^65000:4_0:190_0:153$ ip community-list expanded c1 permit 9272 ^65000:4_0:190_0:154$ ip community-list expanded c1 permit 9273 ^65000:4_0:190_0:155$ ip community-list expanded c1 permit 9274 ^65000:4_0:190_0:156$ ip community-list expanded c1 permit 9275 ^65000:4_0:190_0:157$ ip community-list expanded c1 permit 9276 ^65000:4_0:190_0:158$ ip community-list expanded c1 permit 9277 ^65000:4_0:190_0:159$ ip community-list expanded c1 permit 9278 ^65000:4_0:190_0:160$ ip community-list expanded c1 permit 9279 ^65000:4_0:190_0:161$ ip community-list expanded c1 permit 9280 ^65000:4_0:190_0:162$ ip community-list expanded c1 permit 9281 ^65000:4_0:190_0:163$ ip community-list expanded c1 permit 9282 ^65000:4_0:190_0:164$ ip community-list expanded c1 permit 9283 ^65000:4_0:190_0:165$ ip community-list expanded c1 permit 9284 ^65000:4_0:190_0:166$ ip community-list expanded c1 permit 9285 ^65000:4_0:190_0:167$ ip community-list expanded c1 permit 9286 ^65000:4_0:190_0:168$ ip community-list expanded c1 permit 9287 ^65000:4_0:190_0:169$ ip community-list expanded c1 permit 9288 ^65000:4_0:190_0:170$ ip community-list expanded c1 permit 9289 ^65000:4_0:190_0:171$ ip community-list expanded c1 permit 9290 ^65000:4_0:190_0:172$ ip community-list expanded c1 permit 9291 ^65000:4_0:190_0:173$ ip community-list expanded c1 permit 9292 ^65000:4_0:190_0:174$ ip community-list expanded c1 permit 9293 ^65000:4_0:190_0:175$ ip community-list expanded c1 permit 9294 ^65000:4_0:190_0:176$ ip community-list expanded c1 permit 9295 ^65000:4_0:190_0:177$ ip community-list expanded c1 permit 9296 ^65000:4_0:190_0:178$ ip community-list expanded c1 permit 9297 ^65000:4_0:190_0:179$ ip community-list expanded c1 permit 9298 ^65000:4_0:190_0:180$ ip community-list expanded c1 permit 9299 ^65000:4_0:190_0:181$ ip community-list expanded c1 permit 9300 ^65000:4_0:190_0:182$ ip community-list expanded c1 permit 9301 ^65000:4_0:190_0:183$ ip community-list expanded c1 permit 9302 ^65000:4_0:190_0:184$ ip community-list expanded c1 permit 9303 ^65000:4_0:190_0:185$ ip community-list expanded c1 permit 9304 ^65000:4_0:190_0:186$ ip community-list expanded c1 permit 9305 ^65000:4_0:190_0:187$ ip community-list expanded c1 permit 9306 ^65000:4_0:190_0:188$ ip community-list expanded c1 permit 9307 ^65000:3_0:190_0:189$ ip community-list expanded c1 permit 9308 ^65000:4_0:190_0:189$ ip community-list expanded c1 permit 9309 ^65000:4_0:190_0:190$ ip community-list expanded c1 permit 9310 ^65000:4_0:191_0:96$ ip community-list expanded c1 permit 9311 ^65000:4_0:191_0:97$ ip community-list expanded c1 permit 9312 ^65000:4_0:191_0:98$ ip community-list expanded c1 permit 9313 ^65000:4_0:191_0:99$ ip community-list expanded c1 permit 9314 ^65000:4_0:191_0:100$ ip community-list expanded c1 permit 9315 ^65000:4_0:191_0:101$ ip community-list expanded c1 permit 9316 ^65000:4_0:191_0:102$ ip community-list expanded c1 permit 9317 ^65000:4_0:191_0:103$ ip community-list expanded c1 permit 9318 ^65000:4_0:191_0:104$ ip community-list expanded c1 permit 9319 ^65000:4_0:191_0:105$ ip community-list expanded c1 permit 9320 ^65000:4_0:191_0:106$ ip community-list expanded c1 permit 9321 ^65000:4_0:191_0:107$ ip community-list expanded c1 permit 9322 ^65000:4_0:191_0:108$ ip community-list expanded c1 permit 9323 ^65000:4_0:191_0:109$ ip community-list expanded c1 permit 9324 ^65000:4_0:191_0:110$ ip community-list expanded c1 permit 9325 ^65000:4_0:191_0:111$ ip community-list expanded c1 permit 9326 ^65000:4_0:191_0:112$ ip community-list expanded c1 permit 9327 ^65000:4_0:191_0:113$ ip community-list expanded c1 permit 9328 ^65000:4_0:191_0:114$ ip community-list expanded c1 permit 9329 ^65000:4_0:191_0:115$ ip community-list expanded c1 permit 9330 ^65000:4_0:191_0:116$ ip community-list expanded c1 permit 9331 ^65000:4_0:191_0:117$ ip community-list expanded c1 permit 9332 ^65000:4_0:191_0:118$ ip community-list expanded c1 permit 9333 ^65000:4_0:191_0:119$ ip community-list expanded c1 permit 9334 ^65000:4_0:191_0:120$ ip community-list expanded c1 permit 9335 ^65000:4_0:191_0:121$ ip community-list expanded c1 permit 9336 ^65000:4_0:191_0:122$ ip community-list expanded c1 permit 9337 ^65000:4_0:191_0:123$ ip community-list expanded c1 permit 9338 ^65000:4_0:191_0:124$ ip community-list expanded c1 permit 9339 ^65000:4_0:191_0:125$ ip community-list expanded c1 permit 9340 ^65000:4_0:191_0:126$ ip community-list expanded c1 permit 9341 ^65000:4_0:191_0:127$ ip community-list expanded c1 permit 9342 ^65000:4_0:191_0:128$ ip community-list expanded c1 permit 9343 ^65000:4_0:191_0:129$ ip community-list expanded c1 permit 9344 ^65000:4_0:191_0:130$ ip community-list expanded c1 permit 9345 ^65000:4_0:191_0:131$ ip community-list expanded c1 permit 9346 ^65000:4_0:191_0:132$ ip community-list expanded c1 permit 9347 ^65000:4_0:191_0:133$ ip community-list expanded c1 permit 9348 ^65000:4_0:191_0:134$ ip community-list expanded c1 permit 9349 ^65000:4_0:191_0:135$ ip community-list expanded c1 permit 9350 ^65000:4_0:191_0:136$ ip community-list expanded c1 permit 9351 ^65000:4_0:191_0:137$ ip community-list expanded c1 permit 9352 ^65000:4_0:191_0:138$ ip community-list expanded c1 permit 9353 ^65000:4_0:191_0:139$ ip community-list expanded c1 permit 9354 ^65000:4_0:191_0:140$ ip community-list expanded c1 permit 9355 ^65000:4_0:191_0:141$ ip community-list expanded c1 permit 9356 ^65000:4_0:191_0:142$ ip community-list expanded c1 permit 9357 ^65000:4_0:191_0:143$ ip community-list expanded c1 permit 9358 ^65000:4_0:191_0:144$ ip community-list expanded c1 permit 9359 ^65000:4_0:191_0:145$ ip community-list expanded c1 permit 9360 ^65000:4_0:191_0:146$ ip community-list expanded c1 permit 9361 ^65000:4_0:191_0:147$ ip community-list expanded c1 permit 9362 ^65000:4_0:191_0:148$ ip community-list expanded c1 permit 9363 ^65000:4_0:191_0:149$ ip community-list expanded c1 permit 9364 ^65000:4_0:191_0:150$ ip community-list expanded c1 permit 9365 ^65000:4_0:191_0:151$ ip community-list expanded c1 permit 9366 ^65000:4_0:191_0:152$ ip community-list expanded c1 permit 9367 ^65000:4_0:191_0:153$ ip community-list expanded c1 permit 9368 ^65000:4_0:191_0:154$ ip community-list expanded c1 permit 9369 ^65000:4_0:191_0:155$ ip community-list expanded c1 permit 9370 ^65000:4_0:191_0:156$ ip community-list expanded c1 permit 9371 ^65000:4_0:191_0:157$ ip community-list expanded c1 permit 9372 ^65000:4_0:191_0:158$ ip community-list expanded c1 permit 9373 ^65000:4_0:191_0:159$ ip community-list expanded c1 permit 9374 ^65000:4_0:191_0:160$ ip community-list expanded c1 permit 9375 ^65000:4_0:191_0:161$ ip community-list expanded c1 permit 9376 ^65000:4_0:191_0:162$ ip community-list expanded c1 permit 9377 ^65000:4_0:191_0:163$ ip community-list expanded c1 permit 9378 ^65000:4_0:191_0:164$ ip community-list expanded c1 permit 9379 ^65000:4_0:191_0:165$ ip community-list expanded c1 permit 9380 ^65000:4_0:191_0:166$ ip community-list expanded c1 permit 9381 ^65000:4_0:191_0:167$ ip community-list expanded c1 permit 9382 ^65000:4_0:191_0:168$ ip community-list expanded c1 permit 9383 ^65000:4_0:191_0:169$ ip community-list expanded c1 permit 9384 ^65000:4_0:191_0:170$ ip community-list expanded c1 permit 9385 ^65000:4_0:191_0:171$ ip community-list expanded c1 permit 9386 ^65000:4_0:191_0:172$ ip community-list expanded c1 permit 9387 ^65000:4_0:191_0:173$ ip community-list expanded c1 permit 9388 ^65000:4_0:191_0:174$ ip community-list expanded c1 permit 9389 ^65000:4_0:191_0:175$ ip community-list expanded c1 permit 9390 ^65000:4_0:191_0:176$ ip community-list expanded c1 permit 9391 ^65000:4_0:191_0:177$ ip community-list expanded c1 permit 9392 ^65000:4_0:191_0:178$ ip community-list expanded c1 permit 9393 ^65000:4_0:191_0:179$ ip community-list expanded c1 permit 9394 ^65000:4_0:191_0:180$ ip community-list expanded c1 permit 9395 ^65000:4_0:191_0:181$ ip community-list expanded c1 permit 9396 ^65000:4_0:191_0:182$ ip community-list expanded c1 permit 9397 ^65000:4_0:191_0:183$ ip community-list expanded c1 permit 9398 ^65000:4_0:191_0:184$ ip community-list expanded c1 permit 9399 ^65000:4_0:191_0:185$ ip community-list expanded c1 permit 9400 ^65000:4_0:191_0:186$ ip community-list expanded c1 permit 9401 ^65000:4_0:191_0:187$ ip community-list expanded c1 permit 9402 ^65000:4_0:191_0:188$ ip community-list expanded c1 permit 9403 ^65000:4_0:191_0:189$ ip community-list expanded c1 permit 9404 ^65000:3_0:191_0:190$ ip community-list expanded c1 permit 9405 ^65000:4_0:191_0:190$ ip community-list expanded c1 permit 9406 ^65000:4_0:191_0:191$ ip community-list expanded c1 permit 9407 ^65000:4_0:192_0:97$ ip community-list expanded c1 permit 9408 ^65000:4_0:192_0:98$ ip community-list expanded c1 permit 9409 ^65000:4_0:192_0:99$ ip community-list expanded c1 permit 9410 ^65000:4_0:192_0:100$ ip community-list expanded c1 permit 9411 ^65000:4_0:192_0:101$ ip community-list expanded c1 permit 9412 ^65000:4_0:192_0:102$ ip community-list expanded c1 permit 9413 ^65000:4_0:192_0:103$ ip community-list expanded c1 permit 9414 ^65000:4_0:192_0:104$ ip community-list expanded c1 permit 9415 ^65000:4_0:192_0:105$ ip community-list expanded c1 permit 9416 ^65000:4_0:192_0:106$ ip community-list expanded c1 permit 9417 ^65000:4_0:192_0:107$ ip community-list expanded c1 permit 9418 ^65000:4_0:192_0:108$ ip community-list expanded c1 permit 9419 ^65000:4_0:192_0:109$ ip community-list expanded c1 permit 9420 ^65000:4_0:192_0:110$ ip community-list expanded c1 permit 9421 ^65000:4_0:192_0:111$ ip community-list expanded c1 permit 9422 ^65000:4_0:192_0:112$ ip community-list expanded c1 permit 9423 ^65000:4_0:192_0:113$ ip community-list expanded c1 permit 9424 ^65000:4_0:192_0:114$ ip community-list expanded c1 permit 9425 ^65000:4_0:192_0:115$ ip community-list expanded c1 permit 9426 ^65000:4_0:192_0:116$ ip community-list expanded c1 permit 9427 ^65000:4_0:192_0:117$ ip community-list expanded c1 permit 9428 ^65000:4_0:192_0:118$ ip community-list expanded c1 permit 9429 ^65000:4_0:192_0:119$ ip community-list expanded c1 permit 9430 ^65000:4_0:192_0:120$ ip community-list expanded c1 permit 9431 ^65000:4_0:192_0:121$ ip community-list expanded c1 permit 9432 ^65000:4_0:192_0:122$ ip community-list expanded c1 permit 9433 ^65000:4_0:192_0:123$ ip community-list expanded c1 permit 9434 ^65000:4_0:192_0:124$ ip community-list expanded c1 permit 9435 ^65000:4_0:192_0:125$ ip community-list expanded c1 permit 9436 ^65000:4_0:192_0:126$ ip community-list expanded c1 permit 9437 ^65000:4_0:192_0:127$ ip community-list expanded c1 permit 9438 ^65000:4_0:192_0:128$ ip community-list expanded c1 permit 9439 ^65000:4_0:192_0:129$ ip community-list expanded c1 permit 9440 ^65000:4_0:192_0:130$ ip community-list expanded c1 permit 9441 ^65000:4_0:192_0:131$ ip community-list expanded c1 permit 9442 ^65000:4_0:192_0:132$ ip community-list expanded c1 permit 9443 ^65000:4_0:192_0:133$ ip community-list expanded c1 permit 9444 ^65000:4_0:192_0:134$ ip community-list expanded c1 permit 9445 ^65000:4_0:192_0:135$ ip community-list expanded c1 permit 9446 ^65000:4_0:192_0:136$ ip community-list expanded c1 permit 9447 ^65000:4_0:192_0:137$ ip community-list expanded c1 permit 9448 ^65000:4_0:192_0:138$ ip community-list expanded c1 permit 9449 ^65000:4_0:192_0:139$ ip community-list expanded c1 permit 9450 ^65000:4_0:192_0:140$ ip community-list expanded c1 permit 9451 ^65000:4_0:192_0:141$ ip community-list expanded c1 permit 9452 ^65000:4_0:192_0:142$ ip community-list expanded c1 permit 9453 ^65000:4_0:192_0:143$ ip community-list expanded c1 permit 9454 ^65000:4_0:192_0:144$ ip community-list expanded c1 permit 9455 ^65000:4_0:192_0:145$ ip community-list expanded c1 permit 9456 ^65000:4_0:192_0:146$ ip community-list expanded c1 permit 9457 ^65000:4_0:192_0:147$ ip community-list expanded c1 permit 9458 ^65000:4_0:192_0:148$ ip community-list expanded c1 permit 9459 ^65000:4_0:192_0:149$ ip community-list expanded c1 permit 9460 ^65000:4_0:192_0:150$ ip community-list expanded c1 permit 9461 ^65000:4_0:192_0:151$ ip community-list expanded c1 permit 9462 ^65000:4_0:192_0:152$ ip community-list expanded c1 permit 9463 ^65000:4_0:192_0:153$ ip community-list expanded c1 permit 9464 ^65000:4_0:192_0:154$ ip community-list expanded c1 permit 9465 ^65000:4_0:192_0:155$ ip community-list expanded c1 permit 9466 ^65000:4_0:192_0:156$ ip community-list expanded c1 permit 9467 ^65000:4_0:192_0:157$ ip community-list expanded c1 permit 9468 ^65000:4_0:192_0:158$ ip community-list expanded c1 permit 9469 ^65000:4_0:192_0:159$ ip community-list expanded c1 permit 9470 ^65000:4_0:192_0:160$ ip community-list expanded c1 permit 9471 ^65000:4_0:192_0:161$ ip community-list expanded c1 permit 9472 ^65000:4_0:192_0:162$ ip community-list expanded c1 permit 9473 ^65000:4_0:192_0:163$ ip community-list expanded c1 permit 9474 ^65000:4_0:192_0:164$ ip community-list expanded c1 permit 9475 ^65000:4_0:192_0:165$ ip community-list expanded c1 permit 9476 ^65000:4_0:192_0:166$ ip community-list expanded c1 permit 9477 ^65000:4_0:192_0:167$ ip community-list expanded c1 permit 9478 ^65000:4_0:192_0:168$ ip community-list expanded c1 permit 9479 ^65000:4_0:192_0:169$ ip community-list expanded c1 permit 9480 ^65000:4_0:192_0:170$ ip community-list expanded c1 permit 9481 ^65000:4_0:192_0:171$ ip community-list expanded c1 permit 9482 ^65000:4_0:192_0:172$ ip community-list expanded c1 permit 9483 ^65000:4_0:192_0:173$ ip community-list expanded c1 permit 9484 ^65000:4_0:192_0:174$ ip community-list expanded c1 permit 9485 ^65000:4_0:192_0:175$ ip community-list expanded c1 permit 9486 ^65000:4_0:192_0:176$ ip community-list expanded c1 permit 9487 ^65000:4_0:192_0:177$ ip community-list expanded c1 permit 9488 ^65000:4_0:192_0:178$ ip community-list expanded c1 permit 9489 ^65000:4_0:192_0:179$ ip community-list expanded c1 permit 9490 ^65000:4_0:192_0:180$ ip community-list expanded c1 permit 9491 ^65000:4_0:192_0:181$ ip community-list expanded c1 permit 9492 ^65000:4_0:192_0:182$ ip community-list expanded c1 permit 9493 ^65000:4_0:192_0:183$ ip community-list expanded c1 permit 9494 ^65000:4_0:192_0:184$ ip community-list expanded c1 permit 9495 ^65000:4_0:192_0:185$ ip community-list expanded c1 permit 9496 ^65000:4_0:192_0:186$ ip community-list expanded c1 permit 9497 ^65000:4_0:192_0:187$ ip community-list expanded c1 permit 9498 ^65000:4_0:192_0:188$ ip community-list expanded c1 permit 9499 ^65000:4_0:192_0:189$ ip community-list expanded c1 permit 9500 ^65000:4_0:192_0:190$ ip community-list expanded c1 permit 9501 ^65000:3_0:192_0:191$ ip community-list expanded c1 permit 9502 ^65000:4_0:192_0:191$ ip community-list expanded c1 permit 9503 ^65000:4_0:192_0:192$ ip community-list expanded c1 permit 9504 ^65000:4_0:193_0:97$ ip community-list expanded c1 permit 9505 ^65000:4_0:193_0:98$ ip community-list expanded c1 permit 9506 ^65000:4_0:193_0:99$ ip community-list expanded c1 permit 9507 ^65000:4_0:193_0:100$ ip community-list expanded c1 permit 9508 ^65000:4_0:193_0:101$ ip community-list expanded c1 permit 9509 ^65000:4_0:193_0:102$ ip community-list expanded c1 permit 9510 ^65000:4_0:193_0:103$ ip community-list expanded c1 permit 9511 ^65000:4_0:193_0:104$ ip community-list expanded c1 permit 9512 ^65000:4_0:193_0:105$ ip community-list expanded c1 permit 9513 ^65000:4_0:193_0:106$ ip community-list expanded c1 permit 9514 ^65000:4_0:193_0:107$ ip community-list expanded c1 permit 9515 ^65000:4_0:193_0:108$ ip community-list expanded c1 permit 9516 ^65000:4_0:193_0:109$ ip community-list expanded c1 permit 9517 ^65000:4_0:193_0:110$ ip community-list expanded c1 permit 9518 ^65000:4_0:193_0:111$ ip community-list expanded c1 permit 9519 ^65000:4_0:193_0:112$ ip community-list expanded c1 permit 9520 ^65000:4_0:193_0:113$ ip community-list expanded c1 permit 9521 ^65000:4_0:193_0:114$ ip community-list expanded c1 permit 9522 ^65000:4_0:193_0:115$ ip community-list expanded c1 permit 9523 ^65000:4_0:193_0:116$ ip community-list expanded c1 permit 9524 ^65000:4_0:193_0:117$ ip community-list expanded c1 permit 9525 ^65000:4_0:193_0:118$ ip community-list expanded c1 permit 9526 ^65000:4_0:193_0:119$ ip community-list expanded c1 permit 9527 ^65000:4_0:193_0:120$ ip community-list expanded c1 permit 9528 ^65000:4_0:193_0:121$ ip community-list expanded c1 permit 9529 ^65000:4_0:193_0:122$ ip community-list expanded c1 permit 9530 ^65000:4_0:193_0:123$ ip community-list expanded c1 permit 9531 ^65000:4_0:193_0:124$ ip community-list expanded c1 permit 9532 ^65000:4_0:193_0:125$ ip community-list expanded c1 permit 9533 ^65000:4_0:193_0:126$ ip community-list expanded c1 permit 9534 ^65000:4_0:193_0:127$ ip community-list expanded c1 permit 9535 ^65000:4_0:193_0:128$ ip community-list expanded c1 permit 9536 ^65000:4_0:193_0:129$ ip community-list expanded c1 permit 9537 ^65000:4_0:193_0:130$ ip community-list expanded c1 permit 9538 ^65000:4_0:193_0:131$ ip community-list expanded c1 permit 9539 ^65000:4_0:193_0:132$ ip community-list expanded c1 permit 9540 ^65000:4_0:193_0:133$ ip community-list expanded c1 permit 9541 ^65000:4_0:193_0:134$ ip community-list expanded c1 permit 9542 ^65000:4_0:193_0:135$ ip community-list expanded c1 permit 9543 ^65000:4_0:193_0:136$ ip community-list expanded c1 permit 9544 ^65000:4_0:193_0:137$ ip community-list expanded c1 permit 9545 ^65000:4_0:193_0:138$ ip community-list expanded c1 permit 9546 ^65000:4_0:193_0:139$ ip community-list expanded c1 permit 9547 ^65000:4_0:193_0:140$ ip community-list expanded c1 permit 9548 ^65000:4_0:193_0:141$ ip community-list expanded c1 permit 9549 ^65000:4_0:193_0:142$ ip community-list expanded c1 permit 9550 ^65000:4_0:193_0:143$ ip community-list expanded c1 permit 9551 ^65000:4_0:193_0:144$ ip community-list expanded c1 permit 9552 ^65000:4_0:193_0:145$ ip community-list expanded c1 permit 9553 ^65000:4_0:193_0:146$ ip community-list expanded c1 permit 9554 ^65000:4_0:193_0:147$ ip community-list expanded c1 permit 9555 ^65000:4_0:193_0:148$ ip community-list expanded c1 permit 9556 ^65000:4_0:193_0:149$ ip community-list expanded c1 permit 9557 ^65000:4_0:193_0:150$ ip community-list expanded c1 permit 9558 ^65000:4_0:193_0:151$ ip community-list expanded c1 permit 9559 ^65000:4_0:193_0:152$ ip community-list expanded c1 permit 9560 ^65000:4_0:193_0:153$ ip community-list expanded c1 permit 9561 ^65000:4_0:193_0:154$ ip community-list expanded c1 permit 9562 ^65000:4_0:193_0:155$ ip community-list expanded c1 permit 9563 ^65000:4_0:193_0:156$ ip community-list expanded c1 permit 9564 ^65000:4_0:193_0:157$ ip community-list expanded c1 permit 9565 ^65000:4_0:193_0:158$ ip community-list expanded c1 permit 9566 ^65000:4_0:193_0:159$ ip community-list expanded c1 permit 9567 ^65000:4_0:193_0:160$ ip community-list expanded c1 permit 9568 ^65000:4_0:193_0:161$ ip community-list expanded c1 permit 9569 ^65000:4_0:193_0:162$ ip community-list expanded c1 permit 9570 ^65000:4_0:193_0:163$ ip community-list expanded c1 permit 9571 ^65000:4_0:193_0:164$ ip community-list expanded c1 permit 9572 ^65000:4_0:193_0:165$ ip community-list expanded c1 permit 9573 ^65000:4_0:193_0:166$ ip community-list expanded c1 permit 9574 ^65000:4_0:193_0:167$ ip community-list expanded c1 permit 9575 ^65000:4_0:193_0:168$ ip community-list expanded c1 permit 9576 ^65000:4_0:193_0:169$ ip community-list expanded c1 permit 9577 ^65000:4_0:193_0:170$ ip community-list expanded c1 permit 9578 ^65000:4_0:193_0:171$ ip community-list expanded c1 permit 9579 ^65000:4_0:193_0:172$ ip community-list expanded c1 permit 9580 ^65000:4_0:193_0:173$ ip community-list expanded c1 permit 9581 ^65000:4_0:193_0:174$ ip community-list expanded c1 permit 9582 ^65000:4_0:193_0:175$ ip community-list expanded c1 permit 9583 ^65000:4_0:193_0:176$ ip community-list expanded c1 permit 9584 ^65000:4_0:193_0:177$ ip community-list expanded c1 permit 9585 ^65000:4_0:193_0:178$ ip community-list expanded c1 permit 9586 ^65000:4_0:193_0:179$ ip community-list expanded c1 permit 9587 ^65000:4_0:193_0:180$ ip community-list expanded c1 permit 9588 ^65000:4_0:193_0:181$ ip community-list expanded c1 permit 9589 ^65000:4_0:193_0:182$ ip community-list expanded c1 permit 9590 ^65000:4_0:193_0:183$ ip community-list expanded c1 permit 9591 ^65000:4_0:193_0:184$ ip community-list expanded c1 permit 9592 ^65000:4_0:193_0:185$ ip community-list expanded c1 permit 9593 ^65000:4_0:193_0:186$ ip community-list expanded c1 permit 9594 ^65000:4_0:193_0:187$ ip community-list expanded c1 permit 9595 ^65000:4_0:193_0:188$ ip community-list expanded c1 permit 9596 ^65000:4_0:193_0:189$ ip community-list expanded c1 permit 9597 ^65000:4_0:193_0:190$ ip community-list expanded c1 permit 9598 ^65000:4_0:193_0:191$ ip community-list expanded c1 permit 9599 ^65000:3_0:193_0:192$ ip community-list expanded c1 permit 9600 ^65000:4_0:193_0:192$ ip community-list expanded c1 permit 9601 ^65000:4_0:193_0:193$ ip community-list expanded c1 permit 9602 ^65000:4_0:194_0:98$ ip community-list expanded c1 permit 9603 ^65000:4_0:194_0:99$ ip community-list expanded c1 permit 9604 ^65000:4_0:194_0:100$ ip community-list expanded c1 permit 9605 ^65000:4_0:194_0:101$ ip community-list expanded c1 permit 9606 ^65000:4_0:194_0:102$ ip community-list expanded c1 permit 9607 ^65000:4_0:194_0:103$ ip community-list expanded c1 permit 9608 ^65000:4_0:194_0:104$ ip community-list expanded c1 permit 9609 ^65000:4_0:194_0:105$ ip community-list expanded c1 permit 9610 ^65000:4_0:194_0:106$ ip community-list expanded c1 permit 9611 ^65000:4_0:194_0:107$ ip community-list expanded c1 permit 9612 ^65000:4_0:194_0:108$ ip community-list expanded c1 permit 9613 ^65000:4_0:194_0:109$ ip community-list expanded c1 permit 9614 ^65000:4_0:194_0:110$ ip community-list expanded c1 permit 9615 ^65000:4_0:194_0:111$ ip community-list expanded c1 permit 9616 ^65000:4_0:194_0:112$ ip community-list expanded c1 permit 9617 ^65000:4_0:194_0:113$ ip community-list expanded c1 permit 9618 ^65000:4_0:194_0:114$ ip community-list expanded c1 permit 9619 ^65000:4_0:194_0:115$ ip community-list expanded c1 permit 9620 ^65000:4_0:194_0:116$ ip community-list expanded c1 permit 9621 ^65000:4_0:194_0:117$ ip community-list expanded c1 permit 9622 ^65000:4_0:194_0:118$ ip community-list expanded c1 permit 9623 ^65000:4_0:194_0:119$ ip community-list expanded c1 permit 9624 ^65000:4_0:194_0:120$ ip community-list expanded c1 permit 9625 ^65000:4_0:194_0:121$ ip community-list expanded c1 permit 9626 ^65000:4_0:194_0:122$ ip community-list expanded c1 permit 9627 ^65000:4_0:194_0:123$ ip community-list expanded c1 permit 9628 ^65000:4_0:194_0:124$ ip community-list expanded c1 permit 9629 ^65000:4_0:194_0:125$ ip community-list expanded c1 permit 9630 ^65000:4_0:194_0:126$ ip community-list expanded c1 permit 9631 ^65000:4_0:194_0:127$ ip community-list expanded c1 permit 9632 ^65000:4_0:194_0:128$ ip community-list expanded c1 permit 9633 ^65000:4_0:194_0:129$ ip community-list expanded c1 permit 9634 ^65000:4_0:194_0:130$ ip community-list expanded c1 permit 9635 ^65000:4_0:194_0:131$ ip community-list expanded c1 permit 9636 ^65000:4_0:194_0:132$ ip community-list expanded c1 permit 9637 ^65000:4_0:194_0:133$ ip community-list expanded c1 permit 9638 ^65000:4_0:194_0:134$ ip community-list expanded c1 permit 9639 ^65000:4_0:194_0:135$ ip community-list expanded c1 permit 9640 ^65000:4_0:194_0:136$ ip community-list expanded c1 permit 9641 ^65000:4_0:194_0:137$ ip community-list expanded c1 permit 9642 ^65000:4_0:194_0:138$ ip community-list expanded c1 permit 9643 ^65000:4_0:194_0:139$ ip community-list expanded c1 permit 9644 ^65000:4_0:194_0:140$ ip community-list expanded c1 permit 9645 ^65000:4_0:194_0:141$ ip community-list expanded c1 permit 9646 ^65000:4_0:194_0:142$ ip community-list expanded c1 permit 9647 ^65000:4_0:194_0:143$ ip community-list expanded c1 permit 9648 ^65000:4_0:194_0:144$ ip community-list expanded c1 permit 9649 ^65000:4_0:194_0:145$ ip community-list expanded c1 permit 9650 ^65000:4_0:194_0:146$ ip community-list expanded c1 permit 9651 ^65000:4_0:194_0:147$ ip community-list expanded c1 permit 9652 ^65000:4_0:194_0:148$ ip community-list expanded c1 permit 9653 ^65000:4_0:194_0:149$ ip community-list expanded c1 permit 9654 ^65000:4_0:194_0:150$ ip community-list expanded c1 permit 9655 ^65000:4_0:194_0:151$ ip community-list expanded c1 permit 9656 ^65000:4_0:194_0:152$ ip community-list expanded c1 permit 9657 ^65000:4_0:194_0:153$ ip community-list expanded c1 permit 9658 ^65000:4_0:194_0:154$ ip community-list expanded c1 permit 9659 ^65000:4_0:194_0:155$ ip community-list expanded c1 permit 9660 ^65000:4_0:194_0:156$ ip community-list expanded c1 permit 9661 ^65000:4_0:194_0:157$ ip community-list expanded c1 permit 9662 ^65000:4_0:194_0:158$ ip community-list expanded c1 permit 9663 ^65000:4_0:194_0:159$ ip community-list expanded c1 permit 9664 ^65000:4_0:194_0:160$ ip community-list expanded c1 permit 9665 ^65000:4_0:194_0:161$ ip community-list expanded c1 permit 9666 ^65000:4_0:194_0:162$ ip community-list expanded c1 permit 9667 ^65000:4_0:194_0:163$ ip community-list expanded c1 permit 9668 ^65000:4_0:194_0:164$ ip community-list expanded c1 permit 9669 ^65000:4_0:194_0:165$ ip community-list expanded c1 permit 9670 ^65000:4_0:194_0:166$ ip community-list expanded c1 permit 9671 ^65000:4_0:194_0:167$ ip community-list expanded c1 permit 9672 ^65000:4_0:194_0:168$ ip community-list expanded c1 permit 9673 ^65000:4_0:194_0:169$ ip community-list expanded c1 permit 9674 ^65000:4_0:194_0:170$ ip community-list expanded c1 permit 9675 ^65000:4_0:194_0:171$ ip community-list expanded c1 permit 9676 ^65000:4_0:194_0:172$ ip community-list expanded c1 permit 9677 ^65000:4_0:194_0:173$ ip community-list expanded c1 permit 9678 ^65000:4_0:194_0:174$ ip community-list expanded c1 permit 9679 ^65000:4_0:194_0:175$ ip community-list expanded c1 permit 9680 ^65000:4_0:194_0:176$ ip community-list expanded c1 permit 9681 ^65000:4_0:194_0:177$ ip community-list expanded c1 permit 9682 ^65000:4_0:194_0:178$ ip community-list expanded c1 permit 9683 ^65000:4_0:194_0:179$ ip community-list expanded c1 permit 9684 ^65000:4_0:194_0:180$ ip community-list expanded c1 permit 9685 ^65000:4_0:194_0:181$ ip community-list expanded c1 permit 9686 ^65000:4_0:194_0:182$ ip community-list expanded c1 permit 9687 ^65000:4_0:194_0:183$ ip community-list expanded c1 permit 9688 ^65000:4_0:194_0:184$ ip community-list expanded c1 permit 9689 ^65000:4_0:194_0:185$ ip community-list expanded c1 permit 9690 ^65000:4_0:194_0:186$ ip community-list expanded c1 permit 9691 ^65000:4_0:194_0:187$ ip community-list expanded c1 permit 9692 ^65000:4_0:194_0:188$ ip community-list expanded c1 permit 9693 ^65000:4_0:194_0:189$ ip community-list expanded c1 permit 9694 ^65000:4_0:194_0:190$ ip community-list expanded c1 permit 9695 ^65000:4_0:194_0:191$ ip community-list expanded c1 permit 9696 ^65000:4_0:194_0:192$ ip community-list expanded c1 permit 9697 ^65000:3_0:194_0:193$ ip community-list expanded c1 permit 9698 ^65000:4_0:194_0:193$ ip community-list expanded c1 permit 9699 ^65000:4_0:194_0:194$ ip community-list expanded c1 permit 9700 ^65000:4_0:195_0:98$ ip community-list expanded c1 permit 9701 ^65000:4_0:195_0:99$ ip community-list expanded c1 permit 9702 ^65000:4_0:195_0:100$ ip community-list expanded c1 permit 9703 ^65000:4_0:195_0:101$ ip community-list expanded c1 permit 9704 ^65000:4_0:195_0:102$ ip community-list expanded c1 permit 9705 ^65000:4_0:195_0:103$ ip community-list expanded c1 permit 9706 ^65000:4_0:195_0:104$ ip community-list expanded c1 permit 9707 ^65000:4_0:195_0:105$ ip community-list expanded c1 permit 9708 ^65000:4_0:195_0:106$ ip community-list expanded c1 permit 9709 ^65000:4_0:195_0:107$ ip community-list expanded c1 permit 9710 ^65000:4_0:195_0:108$ ip community-list expanded c1 permit 9711 ^65000:4_0:195_0:109$ ip community-list expanded c1 permit 9712 ^65000:4_0:195_0:110$ ip community-list expanded c1 permit 9713 ^65000:4_0:195_0:111$ ip community-list expanded c1 permit 9714 ^65000:4_0:195_0:112$ ip community-list expanded c1 permit 9715 ^65000:4_0:195_0:113$ ip community-list expanded c1 permit 9716 ^65000:4_0:195_0:114$ ip community-list expanded c1 permit 9717 ^65000:4_0:195_0:115$ ip community-list expanded c1 permit 9718 ^65000:4_0:195_0:116$ ip community-list expanded c1 permit 9719 ^65000:4_0:195_0:117$ ip community-list expanded c1 permit 9720 ^65000:4_0:195_0:118$ ip community-list expanded c1 permit 9721 ^65000:4_0:195_0:119$ ip community-list expanded c1 permit 9722 ^65000:4_0:195_0:120$ ip community-list expanded c1 permit 9723 ^65000:4_0:195_0:121$ ip community-list expanded c1 permit 9724 ^65000:4_0:195_0:122$ ip community-list expanded c1 permit 9725 ^65000:4_0:195_0:123$ ip community-list expanded c1 permit 9726 ^65000:4_0:195_0:124$ ip community-list expanded c1 permit 9727 ^65000:4_0:195_0:125$ ip community-list expanded c1 permit 9728 ^65000:4_0:195_0:126$ ip community-list expanded c1 permit 9729 ^65000:4_0:195_0:127$ ip community-list expanded c1 permit 9730 ^65000:4_0:195_0:128$ ip community-list expanded c1 permit 9731 ^65000:4_0:195_0:129$ ip community-list expanded c1 permit 9732 ^65000:4_0:195_0:130$ ip community-list expanded c1 permit 9733 ^65000:4_0:195_0:131$ ip community-list expanded c1 permit 9734 ^65000:4_0:195_0:132$ ip community-list expanded c1 permit 9735 ^65000:4_0:195_0:133$ ip community-list expanded c1 permit 9736 ^65000:4_0:195_0:134$ ip community-list expanded c1 permit 9737 ^65000:4_0:195_0:135$ ip community-list expanded c1 permit 9738 ^65000:4_0:195_0:136$ ip community-list expanded c1 permit 9739 ^65000:4_0:195_0:137$ ip community-list expanded c1 permit 9740 ^65000:4_0:195_0:138$ ip community-list expanded c1 permit 9741 ^65000:4_0:195_0:139$ ip community-list expanded c1 permit 9742 ^65000:4_0:195_0:140$ ip community-list expanded c1 permit 9743 ^65000:4_0:195_0:141$ ip community-list expanded c1 permit 9744 ^65000:4_0:195_0:142$ ip community-list expanded c1 permit 9745 ^65000:4_0:195_0:143$ ip community-list expanded c1 permit 9746 ^65000:4_0:195_0:144$ ip community-list expanded c1 permit 9747 ^65000:4_0:195_0:145$ ip community-list expanded c1 permit 9748 ^65000:4_0:195_0:146$ ip community-list expanded c1 permit 9749 ^65000:4_0:195_0:147$ ip community-list expanded c1 permit 9750 ^65000:4_0:195_0:148$ ip community-list expanded c1 permit 9751 ^65000:4_0:195_0:149$ ip community-list expanded c1 permit 9752 ^65000:4_0:195_0:150$ ip community-list expanded c1 permit 9753 ^65000:4_0:195_0:151$ ip community-list expanded c1 permit 9754 ^65000:4_0:195_0:152$ ip community-list expanded c1 permit 9755 ^65000:4_0:195_0:153$ ip community-list expanded c1 permit 9756 ^65000:4_0:195_0:154$ ip community-list expanded c1 permit 9757 ^65000:4_0:195_0:155$ ip community-list expanded c1 permit 9758 ^65000:4_0:195_0:156$ ip community-list expanded c1 permit 9759 ^65000:4_0:195_0:157$ ip community-list expanded c1 permit 9760 ^65000:4_0:195_0:158$ ip community-list expanded c1 permit 9761 ^65000:4_0:195_0:159$ ip community-list expanded c1 permit 9762 ^65000:4_0:195_0:160$ ip community-list expanded c1 permit 9763 ^65000:4_0:195_0:161$ ip community-list expanded c1 permit 9764 ^65000:4_0:195_0:162$ ip community-list expanded c1 permit 9765 ^65000:4_0:195_0:163$ ip community-list expanded c1 permit 9766 ^65000:4_0:195_0:164$ ip community-list expanded c1 permit 9767 ^65000:4_0:195_0:165$ ip community-list expanded c1 permit 9768 ^65000:4_0:195_0:166$ ip community-list expanded c1 permit 9769 ^65000:4_0:195_0:167$ ip community-list expanded c1 permit 9770 ^65000:4_0:195_0:168$ ip community-list expanded c1 permit 9771 ^65000:4_0:195_0:169$ ip community-list expanded c1 permit 9772 ^65000:4_0:195_0:170$ ip community-list expanded c1 permit 9773 ^65000:4_0:195_0:171$ ip community-list expanded c1 permit 9774 ^65000:4_0:195_0:172$ ip community-list expanded c1 permit 9775 ^65000:4_0:195_0:173$ ip community-list expanded c1 permit 9776 ^65000:4_0:195_0:174$ ip community-list expanded c1 permit 9777 ^65000:4_0:195_0:175$ ip community-list expanded c1 permit 9778 ^65000:4_0:195_0:176$ ip community-list expanded c1 permit 9779 ^65000:4_0:195_0:177$ ip community-list expanded c1 permit 9780 ^65000:4_0:195_0:178$ ip community-list expanded c1 permit 9781 ^65000:4_0:195_0:179$ ip community-list expanded c1 permit 9782 ^65000:4_0:195_0:180$ ip community-list expanded c1 permit 9783 ^65000:4_0:195_0:181$ ip community-list expanded c1 permit 9784 ^65000:4_0:195_0:182$ ip community-list expanded c1 permit 9785 ^65000:4_0:195_0:183$ ip community-list expanded c1 permit 9786 ^65000:4_0:195_0:184$ ip community-list expanded c1 permit 9787 ^65000:4_0:195_0:185$ ip community-list expanded c1 permit 9788 ^65000:4_0:195_0:186$ ip community-list expanded c1 permit 9789 ^65000:4_0:195_0:187$ ip community-list expanded c1 permit 9790 ^65000:4_0:195_0:188$ ip community-list expanded c1 permit 9791 ^65000:4_0:195_0:189$ ip community-list expanded c1 permit 9792 ^65000:4_0:195_0:190$ ip community-list expanded c1 permit 9793 ^65000:4_0:195_0:191$ ip community-list expanded c1 permit 9794 ^65000:4_0:195_0:192$ ip community-list expanded c1 permit 9795 ^65000:4_0:195_0:193$ ip community-list expanded c1 permit 9796 ^65000:3_0:195_0:194$ ip community-list expanded c1 permit 9797 ^65000:4_0:195_0:194$ ip community-list expanded c1 permit 9798 ^65000:4_0:195_0:195$ ip community-list expanded c1 permit 9799 ^65000:4_0:196_0:99$ ip community-list expanded c1 permit 9800 ^65000:4_0:196_0:100$ ip community-list expanded c1 permit 9801 ^65000:4_0:196_0:101$ ip community-list expanded c1 permit 9802 ^65000:4_0:196_0:102$ ip community-list expanded c1 permit 9803 ^65000:4_0:196_0:103$ ip community-list expanded c1 permit 9804 ^65000:4_0:196_0:104$ ip community-list expanded c1 permit 9805 ^65000:4_0:196_0:105$ ip community-list expanded c1 permit 9806 ^65000:4_0:196_0:106$ ip community-list expanded c1 permit 9807 ^65000:4_0:196_0:107$ ip community-list expanded c1 permit 9808 ^65000:4_0:196_0:108$ ip community-list expanded c1 permit 9809 ^65000:4_0:196_0:109$ ip community-list expanded c1 permit 9810 ^65000:4_0:196_0:110$ ip community-list expanded c1 permit 9811 ^65000:4_0:196_0:111$ ip community-list expanded c1 permit 9812 ^65000:4_0:196_0:112$ ip community-list expanded c1 permit 9813 ^65000:4_0:196_0:113$ ip community-list expanded c1 permit 9814 ^65000:4_0:196_0:114$ ip community-list expanded c1 permit 9815 ^65000:4_0:196_0:115$ ip community-list expanded c1 permit 9816 ^65000:4_0:196_0:116$ ip community-list expanded c1 permit 9817 ^65000:4_0:196_0:117$ ip community-list expanded c1 permit 9818 ^65000:4_0:196_0:118$ ip community-list expanded c1 permit 9819 ^65000:4_0:196_0:119$ ip community-list expanded c1 permit 9820 ^65000:4_0:196_0:120$ ip community-list expanded c1 permit 9821 ^65000:4_0:196_0:121$ ip community-list expanded c1 permit 9822 ^65000:4_0:196_0:122$ ip community-list expanded c1 permit 9823 ^65000:4_0:196_0:123$ ip community-list expanded c1 permit 9824 ^65000:4_0:196_0:124$ ip community-list expanded c1 permit 9825 ^65000:4_0:196_0:125$ ip community-list expanded c1 permit 9826 ^65000:4_0:196_0:126$ ip community-list expanded c1 permit 9827 ^65000:4_0:196_0:127$ ip community-list expanded c1 permit 9828 ^65000:4_0:196_0:128$ ip community-list expanded c1 permit 9829 ^65000:4_0:196_0:129$ ip community-list expanded c1 permit 9830 ^65000:4_0:196_0:130$ ip community-list expanded c1 permit 9831 ^65000:4_0:196_0:131$ ip community-list expanded c1 permit 9832 ^65000:4_0:196_0:132$ ip community-list expanded c1 permit 9833 ^65000:4_0:196_0:133$ ip community-list expanded c1 permit 9834 ^65000:4_0:196_0:134$ ip community-list expanded c1 permit 9835 ^65000:4_0:196_0:135$ ip community-list expanded c1 permit 9836 ^65000:4_0:196_0:136$ ip community-list expanded c1 permit 9837 ^65000:4_0:196_0:137$ ip community-list expanded c1 permit 9838 ^65000:4_0:196_0:138$ ip community-list expanded c1 permit 9839 ^65000:4_0:196_0:139$ ip community-list expanded c1 permit 9840 ^65000:4_0:196_0:140$ ip community-list expanded c1 permit 9841 ^65000:4_0:196_0:141$ ip community-list expanded c1 permit 9842 ^65000:4_0:196_0:142$ ip community-list expanded c1 permit 9843 ^65000:4_0:196_0:143$ ip community-list expanded c1 permit 9844 ^65000:4_0:196_0:144$ ip community-list expanded c1 permit 9845 ^65000:4_0:196_0:145$ ip community-list expanded c1 permit 9846 ^65000:4_0:196_0:146$ ip community-list expanded c1 permit 9847 ^65000:4_0:196_0:147$ ip community-list expanded c1 permit 9848 ^65000:4_0:196_0:148$ ip community-list expanded c1 permit 9849 ^65000:4_0:196_0:149$ ip community-list expanded c1 permit 9850 ^65000:4_0:196_0:150$ ip community-list expanded c1 permit 9851 ^65000:4_0:196_0:151$ ip community-list expanded c1 permit 9852 ^65000:4_0:196_0:152$ ip community-list expanded c1 permit 9853 ^65000:4_0:196_0:153$ ip community-list expanded c1 permit 9854 ^65000:4_0:196_0:154$ ip community-list expanded c1 permit 9855 ^65000:4_0:196_0:155$ ip community-list expanded c1 permit 9856 ^65000:4_0:196_0:156$ ip community-list expanded c1 permit 9857 ^65000:4_0:196_0:157$ ip community-list expanded c1 permit 9858 ^65000:4_0:196_0:158$ ip community-list expanded c1 permit 9859 ^65000:4_0:196_0:159$ ip community-list expanded c1 permit 9860 ^65000:4_0:196_0:160$ ip community-list expanded c1 permit 9861 ^65000:4_0:196_0:161$ ip community-list expanded c1 permit 9862 ^65000:4_0:196_0:162$ ip community-list expanded c1 permit 9863 ^65000:4_0:196_0:163$ ip community-list expanded c1 permit 9864 ^65000:4_0:196_0:164$ ip community-list expanded c1 permit 9865 ^65000:4_0:196_0:165$ ip community-list expanded c1 permit 9866 ^65000:4_0:196_0:166$ ip community-list expanded c1 permit 9867 ^65000:4_0:196_0:167$ ip community-list expanded c1 permit 9868 ^65000:4_0:196_0:168$ ip community-list expanded c1 permit 9869 ^65000:4_0:196_0:169$ ip community-list expanded c1 permit 9870 ^65000:4_0:196_0:170$ ip community-list expanded c1 permit 9871 ^65000:4_0:196_0:171$ ip community-list expanded c1 permit 9872 ^65000:4_0:196_0:172$ ip community-list expanded c1 permit 9873 ^65000:4_0:196_0:173$ ip community-list expanded c1 permit 9874 ^65000:4_0:196_0:174$ ip community-list expanded c1 permit 9875 ^65000:4_0:196_0:175$ ip community-list expanded c1 permit 9876 ^65000:4_0:196_0:176$ ip community-list expanded c1 permit 9877 ^65000:4_0:196_0:177$ ip community-list expanded c1 permit 9878 ^65000:4_0:196_0:178$ ip community-list expanded c1 permit 9879 ^65000:4_0:196_0:179$ ip community-list expanded c1 permit 9880 ^65000:4_0:196_0:180$ ip community-list expanded c1 permit 9881 ^65000:4_0:196_0:181$ ip community-list expanded c1 permit 9882 ^65000:4_0:196_0:182$ ip community-list expanded c1 permit 9883 ^65000:4_0:196_0:183$ ip community-list expanded c1 permit 9884 ^65000:4_0:196_0:184$ ip community-list expanded c1 permit 9885 ^65000:4_0:196_0:185$ ip community-list expanded c1 permit 9886 ^65000:4_0:196_0:186$ ip community-list expanded c1 permit 9887 ^65000:4_0:196_0:187$ ip community-list expanded c1 permit 9888 ^65000:4_0:196_0:188$ ip community-list expanded c1 permit 9889 ^65000:4_0:196_0:189$ ip community-list expanded c1 permit 9890 ^65000:4_0:196_0:190$ ip community-list expanded c1 permit 9891 ^65000:4_0:196_0:191$ ip community-list expanded c1 permit 9892 ^65000:4_0:196_0:192$ ip community-list expanded c1 permit 9893 ^65000:4_0:196_0:193$ ip community-list expanded c1 permit 9894 ^65000:4_0:196_0:194$ ip community-list expanded c1 permit 9895 ^65000:3_0:196_0:195$ ip community-list expanded c1 permit 9896 ^65000:4_0:196_0:195$ ip community-list expanded c1 permit 9897 ^65000:4_0:196_0:196$ ip community-list expanded c1 permit 9898 ^65000:4_0:197_0:99$ ip community-list expanded c1 permit 9899 ^65000:4_0:197_0:100$ ip community-list expanded c1 permit 9900 ^65000:4_0:197_0:101$ ip community-list expanded c1 permit 9901 ^65000:4_0:197_0:102$ ip community-list expanded c1 permit 9902 ^65000:4_0:197_0:103$ ip community-list expanded c1 permit 9903 ^65000:4_0:197_0:104$ ip community-list expanded c1 permit 9904 ^65000:4_0:197_0:105$ ip community-list expanded c1 permit 9905 ^65000:4_0:197_0:106$ ip community-list expanded c1 permit 9906 ^65000:4_0:197_0:107$ ip community-list expanded c1 permit 9907 ^65000:4_0:197_0:108$ ip community-list expanded c1 permit 9908 ^65000:4_0:197_0:109$ ip community-list expanded c1 permit 9909 ^65000:4_0:197_0:110$ ip community-list expanded c1 permit 9910 ^65000:4_0:197_0:111$ ip community-list expanded c1 permit 9911 ^65000:4_0:197_0:112$ ip community-list expanded c1 permit 9912 ^65000:4_0:197_0:113$ ip community-list expanded c1 permit 9913 ^65000:4_0:197_0:114$ ip community-list expanded c1 permit 9914 ^65000:4_0:197_0:115$ ip community-list expanded c1 permit 9915 ^65000:4_0:197_0:116$ ip community-list expanded c1 permit 9916 ^65000:4_0:197_0:117$ ip community-list expanded c1 permit 9917 ^65000:4_0:197_0:118$ ip community-list expanded c1 permit 9918 ^65000:4_0:197_0:119$ ip community-list expanded c1 permit 9919 ^65000:4_0:197_0:120$ ip community-list expanded c1 permit 9920 ^65000:4_0:197_0:121$ ip community-list expanded c1 permit 9921 ^65000:4_0:197_0:122$ ip community-list expanded c1 permit 9922 ^65000:4_0:197_0:123$ ip community-list expanded c1 permit 9923 ^65000:4_0:197_0:124$ ip community-list expanded c1 permit 9924 ^65000:4_0:197_0:125$ ip community-list expanded c1 permit 9925 ^65000:4_0:197_0:126$ ip community-list expanded c1 permit 9926 ^65000:4_0:197_0:127$ ip community-list expanded c1 permit 9927 ^65000:4_0:197_0:128$ ip community-list expanded c1 permit 9928 ^65000:4_0:197_0:129$ ip community-list expanded c1 permit 9929 ^65000:4_0:197_0:130$ ip community-list expanded c1 permit 9930 ^65000:4_0:197_0:131$ ip community-list expanded c1 permit 9931 ^65000:4_0:197_0:132$ ip community-list expanded c1 permit 9932 ^65000:4_0:197_0:133$ ip community-list expanded c1 permit 9933 ^65000:4_0:197_0:134$ ip community-list expanded c1 permit 9934 ^65000:4_0:197_0:135$ ip community-list expanded c1 permit 9935 ^65000:4_0:197_0:136$ ip community-list expanded c1 permit 9936 ^65000:4_0:197_0:137$ ip community-list expanded c1 permit 9937 ^65000:4_0:197_0:138$ ip community-list expanded c1 permit 9938 ^65000:4_0:197_0:139$ ip community-list expanded c1 permit 9939 ^65000:4_0:197_0:140$ ip community-list expanded c1 permit 9940 ^65000:4_0:197_0:141$ ip community-list expanded c1 permit 9941 ^65000:4_0:197_0:142$ ip community-list expanded c1 permit 9942 ^65000:4_0:197_0:143$ ip community-list expanded c1 permit 9943 ^65000:4_0:197_0:144$ ip community-list expanded c1 permit 9944 ^65000:4_0:197_0:145$ ip community-list expanded c1 permit 9945 ^65000:4_0:197_0:146$ ip community-list expanded c1 permit 9946 ^65000:4_0:197_0:147$ ip community-list expanded c1 permit 9947 ^65000:4_0:197_0:148$ ip community-list expanded c1 permit 9948 ^65000:4_0:197_0:149$ ip community-list expanded c1 permit 9949 ^65000:4_0:197_0:150$ ip community-list expanded c1 permit 9950 ^65000:4_0:197_0:151$ ip community-list expanded c1 permit 9951 ^65000:4_0:197_0:152$ ip community-list expanded c1 permit 9952 ^65000:4_0:197_0:153$ ip community-list expanded c1 permit 9953 ^65000:4_0:197_0:154$ ip community-list expanded c1 permit 9954 ^65000:4_0:197_0:155$ ip community-list expanded c1 permit 9955 ^65000:4_0:197_0:156$ ip community-list expanded c1 permit 9956 ^65000:4_0:197_0:157$ ip community-list expanded c1 permit 9957 ^65000:4_0:197_0:158$ ip community-list expanded c1 permit 9958 ^65000:4_0:197_0:159$ ip community-list expanded c1 permit 9959 ^65000:4_0:197_0:160$ ip community-list expanded c1 permit 9960 ^65000:4_0:197_0:161$ ip community-list expanded c1 permit 9961 ^65000:4_0:197_0:162$ ip community-list expanded c1 permit 9962 ^65000:4_0:197_0:163$ ip community-list expanded c1 permit 9963 ^65000:4_0:197_0:164$ ip community-list expanded c1 permit 9964 ^65000:4_0:197_0:165$ ip community-list expanded c1 permit 9965 ^65000:4_0:197_0:166$ ip community-list expanded c1 permit 9966 ^65000:4_0:197_0:167$ ip community-list expanded c1 permit 9967 ^65000:4_0:197_0:168$ ip community-list expanded c1 permit 9968 ^65000:4_0:197_0:169$ ip community-list expanded c1 permit 9969 ^65000:4_0:197_0:170$ ip community-list expanded c1 permit 9970 ^65000:4_0:197_0:171$ ip community-list expanded c1 permit 9971 ^65000:4_0:197_0:172$ ip community-list expanded c1 permit 9972 ^65000:4_0:197_0:173$ ip community-list expanded c1 permit 9973 ^65000:4_0:197_0:174$ ip community-list expanded c1 permit 9974 ^65000:4_0:197_0:175$ ip community-list expanded c1 permit 9975 ^65000:4_0:197_0:176$ ip community-list expanded c1 permit 9976 ^65000:4_0:197_0:177$ ip community-list expanded c1 permit 9977 ^65000:4_0:197_0:178$ ip community-list expanded c1 permit 9978 ^65000:4_0:197_0:179$ ip community-list expanded c1 permit 9979 ^65000:4_0:197_0:180$ ip community-list expanded c1 permit 9980 ^65000:4_0:197_0:181$ ip community-list expanded c1 permit 9981 ^65000:4_0:197_0:182$ ip community-list expanded c1 permit 9982 ^65000:4_0:197_0:183$ ip community-list expanded c1 permit 9983 ^65000:4_0:197_0:184$ ip community-list expanded c1 permit 9984 ^65000:4_0:197_0:185$ ip community-list expanded c1 permit 9985 ^65000:4_0:197_0:186$ ip community-list expanded c1 permit 9986 ^65000:4_0:197_0:187$ ip community-list expanded c1 permit 9987 ^65000:4_0:197_0:188$ ip community-list expanded c1 permit 9988 ^65000:4_0:197_0:189$ ip community-list expanded c1 permit 9989 ^65000:4_0:197_0:190$ ip community-list expanded c1 permit 9990 ^65000:4_0:197_0:191$ ip community-list expanded c1 permit 9991 ^65000:4_0:197_0:192$ ip community-list expanded c1 permit 9992 ^65000:4_0:197_0:193$ ip community-list expanded c1 permit 9993 ^65000:4_0:197_0:194$ ip community-list expanded c1 permit 9994 ^65000:4_0:197_0:195$ ip community-list expanded c1 permit 9995 ^65000:3_0:197_0:196$ ip community-list expanded c1 permit 9996 ^65000:4_0:197_0:196$ ip community-list expanded c1 permit 9997 ^65000:4_0:197_0:197$ ip community-list expanded c1 permit 9998 ^65000:4_0:198_0:100$ ip community-list expanded c1 permit 9999 ^65000:4_0:198_0:101$ ip community-list expanded c1 permit 10000 ^65000:4_0:198_0:102$ ip community-list expanded c1 permit 10001 ^65000:4_0:198_0:103$ ip community-list expanded c1 permit 10002 ^65000:4_0:198_0:104$ ip community-list expanded c1 permit 10003 ^65000:4_0:198_0:105$ ip community-list expanded c1 permit 10004 ^65000:4_0:198_0:106$ ip community-list expanded c1 permit 10005 ^65000:4_0:198_0:107$ ip community-list expanded c1 permit 10006 ^65000:4_0:198_0:108$ ip community-list expanded c1 permit 10007 ^65000:4_0:198_0:109$ ip community-list expanded c1 permit 10008 ^65000:4_0:198_0:110$ ip community-list expanded c1 permit 10009 ^65000:4_0:198_0:111$ ip community-list expanded c1 permit 10010 ^65000:4_0:198_0:112$ ip community-list expanded c1 permit 10011 ^65000:4_0:198_0:113$ ip community-list expanded c1 permit 10012 ^65000:4_0:198_0:114$ ip community-list expanded c1 permit 10013 ^65000:4_0:198_0:115$ ip community-list expanded c1 permit 10014 ^65000:4_0:198_0:116$ ip community-list expanded c1 permit 10015 ^65000:4_0:198_0:117$ ip community-list expanded c1 permit 10016 ^65000:4_0:198_0:118$ ip community-list expanded c1 permit 10017 ^65000:4_0:198_0:119$ ip community-list expanded c1 permit 10018 ^65000:4_0:198_0:120$ ip community-list expanded c1 permit 10019 ^65000:4_0:198_0:121$ ip community-list expanded c1 permit 10020 ^65000:4_0:198_0:122$ ip community-list expanded c1 permit 10021 ^65000:4_0:198_0:123$ ip community-list expanded c1 permit 10022 ^65000:4_0:198_0:124$ ip community-list expanded c1 permit 10023 ^65000:4_0:198_0:125$ ip community-list expanded c1 permit 10024 ^65000:4_0:198_0:126$ ip community-list expanded c1 permit 10025 ^65000:4_0:198_0:127$ ip community-list expanded c1 permit 10026 ^65000:4_0:198_0:128$ ip community-list expanded c1 permit 10027 ^65000:4_0:198_0:129$ ip community-list expanded c1 permit 10028 ^65000:4_0:198_0:130$ ip community-list expanded c1 permit 10029 ^65000:4_0:198_0:131$ ip community-list expanded c1 permit 10030 ^65000:4_0:198_0:132$ ip community-list expanded c1 permit 10031 ^65000:4_0:198_0:133$ ip community-list expanded c1 permit 10032 ^65000:4_0:198_0:134$ ip community-list expanded c1 permit 10033 ^65000:4_0:198_0:135$ ip community-list expanded c1 permit 10034 ^65000:4_0:198_0:136$ ip community-list expanded c1 permit 10035 ^65000:4_0:198_0:137$ ip community-list expanded c1 permit 10036 ^65000:4_0:198_0:138$ ip community-list expanded c1 permit 10037 ^65000:4_0:198_0:139$ ip community-list expanded c1 permit 10038 ^65000:4_0:198_0:140$ ip community-list expanded c1 permit 10039 ^65000:4_0:198_0:141$ ip community-list expanded c1 permit 10040 ^65000:4_0:198_0:142$ ip community-list expanded c1 permit 10041 ^65000:4_0:198_0:143$ ip community-list expanded c1 permit 10042 ^65000:4_0:198_0:144$ ip community-list expanded c1 permit 10043 ^65000:4_0:198_0:145$ ip community-list expanded c1 permit 10044 ^65000:4_0:198_0:146$ ip community-list expanded c1 permit 10045 ^65000:4_0:198_0:147$ ip community-list expanded c1 permit 10046 ^65000:4_0:198_0:148$ ip community-list expanded c1 permit 10047 ^65000:4_0:198_0:149$ ip community-list expanded c1 permit 10048 ^65000:4_0:198_0:150$ ip community-list expanded c1 permit 10049 ^65000:4_0:198_0:151$ ip community-list expanded c1 permit 10050 ^65000:4_0:198_0:152$ ip community-list expanded c1 permit 10051 ^65000:4_0:198_0:153$ ip community-list expanded c1 permit 10052 ^65000:4_0:198_0:154$ ip community-list expanded c1 permit 10053 ^65000:4_0:198_0:155$ ip community-list expanded c1 permit 10054 ^65000:4_0:198_0:156$ ip community-list expanded c1 permit 10055 ^65000:4_0:198_0:157$ ip community-list expanded c1 permit 10056 ^65000:4_0:198_0:158$ ip community-list expanded c1 permit 10057 ^65000:4_0:198_0:159$ ip community-list expanded c1 permit 10058 ^65000:4_0:198_0:160$ ip community-list expanded c1 permit 10059 ^65000:4_0:198_0:161$ ip community-list expanded c1 permit 10060 ^65000:4_0:198_0:162$ ip community-list expanded c1 permit 10061 ^65000:4_0:198_0:163$ ip community-list expanded c1 permit 10062 ^65000:4_0:198_0:164$ ip community-list expanded c1 permit 10063 ^65000:4_0:198_0:165$ ip community-list expanded c1 permit 10064 ^65000:4_0:198_0:166$ ip community-list expanded c1 permit 10065 ^65000:4_0:198_0:167$ ip community-list expanded c1 permit 10066 ^65000:4_0:198_0:168$ ip community-list expanded c1 permit 10067 ^65000:4_0:198_0:169$ ip community-list expanded c1 permit 10068 ^65000:4_0:198_0:170$ ip community-list expanded c1 permit 10069 ^65000:4_0:198_0:171$ ip community-list expanded c1 permit 10070 ^65000:4_0:198_0:172$ ip community-list expanded c1 permit 10071 ^65000:4_0:198_0:173$ ip community-list expanded c1 permit 10072 ^65000:4_0:198_0:174$ ip community-list expanded c1 permit 10073 ^65000:4_0:198_0:175$ ip community-list expanded c1 permit 10074 ^65000:4_0:198_0:176$ ip community-list expanded c1 permit 10075 ^65000:4_0:198_0:177$ ip community-list expanded c1 permit 10076 ^65000:4_0:198_0:178$ ip community-list expanded c1 permit 10077 ^65000:4_0:198_0:179$ ip community-list expanded c1 permit 10078 ^65000:4_0:198_0:180$ ip community-list expanded c1 permit 10079 ^65000:4_0:198_0:181$ ip community-list expanded c1 permit 10080 ^65000:4_0:198_0:182$ ip community-list expanded c1 permit 10081 ^65000:4_0:198_0:183$ ip community-list expanded c1 permit 10082 ^65000:4_0:198_0:184$ ip community-list expanded c1 permit 10083 ^65000:4_0:198_0:185$ ip community-list expanded c1 permit 10084 ^65000:4_0:198_0:186$ ip community-list expanded c1 permit 10085 ^65000:4_0:198_0:187$ ip community-list expanded c1 permit 10086 ^65000:4_0:198_0:188$ ip community-list expanded c1 permit 10087 ^65000:4_0:198_0:189$ ip community-list expanded c1 permit 10088 ^65000:4_0:198_0:190$ ip community-list expanded c1 permit 10089 ^65000:4_0:198_0:191$ ip community-list expanded c1 permit 10090 ^65000:4_0:198_0:192$ ip community-list expanded c1 permit 10091 ^65000:4_0:198_0:193$ ip community-list expanded c1 permit 10092 ^65000:4_0:198_0:194$ ip community-list expanded c1 permit 10093 ^65000:4_0:198_0:195$ ip community-list expanded c1 permit 10094 ^65000:4_0:198_0:196$ ip community-list expanded c1 permit 10095 ^65000:3_0:198_0:197$ ip community-list expanded c1 permit 10096 ^65000:4_0:198_0:197$ ip community-list expanded c1 permit 10097 ^65000:4_0:198_0:198$ ip community-list expanded c1 permit 10098 ^65000:4_0:199_0:100$ ip community-list expanded c1 permit 10099 ^65000:4_0:199_0:101$ ip community-list expanded c1 permit 10100 ^65000:4_0:199_0:102$ ip community-list expanded c1 permit 10101 ^65000:4_0:199_0:103$ ip community-list expanded c1 permit 10102 ^65000:4_0:199_0:104$ ip community-list expanded c1 permit 10103 ^65000:4_0:199_0:105$ ip community-list expanded c1 permit 10104 ^65000:4_0:199_0:106$ ip community-list expanded c1 permit 10105 ^65000:4_0:199_0:107$ ip community-list expanded c1 permit 10106 ^65000:4_0:199_0:108$ ip community-list expanded c1 permit 10107 ^65000:4_0:199_0:109$ ip community-list expanded c1 permit 10108 ^65000:4_0:199_0:110$ ip community-list expanded c1 permit 10109 ^65000:4_0:199_0:111$ ip community-list expanded c1 permit 10110 ^65000:4_0:199_0:112$ ip community-list expanded c1 permit 10111 ^65000:4_0:199_0:113$ ip community-list expanded c1 permit 10112 ^65000:4_0:199_0:114$ ip community-list expanded c1 permit 10113 ^65000:4_0:199_0:115$ ip community-list expanded c1 permit 10114 ^65000:4_0:199_0:116$ ip community-list expanded c1 permit 10115 ^65000:4_0:199_0:117$ ip community-list expanded c1 permit 10116 ^65000:4_0:199_0:118$ ip community-list expanded c1 permit 10117 ^65000:4_0:199_0:119$ ip community-list expanded c1 permit 10118 ^65000:4_0:199_0:120$ ip community-list expanded c1 permit 10119 ^65000:4_0:199_0:121$ ip community-list expanded c1 permit 10120 ^65000:4_0:199_0:122$ ip community-list expanded c1 permit 10121 ^65000:4_0:199_0:123$ ip community-list expanded c1 permit 10122 ^65000:4_0:199_0:124$ ip community-list expanded c1 permit 10123 ^65000:4_0:199_0:125$ ip community-list expanded c1 permit 10124 ^65000:4_0:199_0:126$ ip community-list expanded c1 permit 10125 ^65000:4_0:199_0:127$ ip community-list expanded c1 permit 10126 ^65000:4_0:199_0:128$ ip community-list expanded c1 permit 10127 ^65000:4_0:199_0:129$ ip community-list expanded c1 permit 10128 ^65000:4_0:199_0:130$ ip community-list expanded c1 permit 10129 ^65000:4_0:199_0:131$ ip community-list expanded c1 permit 10130 ^65000:4_0:199_0:132$ ip community-list expanded c1 permit 10131 ^65000:4_0:199_0:133$ ip community-list expanded c1 permit 10132 ^65000:4_0:199_0:134$ ip community-list expanded c1 permit 10133 ^65000:4_0:199_0:135$ ip community-list expanded c1 permit 10134 ^65000:4_0:199_0:136$ ip community-list expanded c1 permit 10135 ^65000:4_0:199_0:137$ ip community-list expanded c1 permit 10136 ^65000:4_0:199_0:138$ ip community-list expanded c1 permit 10137 ^65000:4_0:199_0:139$ ip community-list expanded c1 permit 10138 ^65000:4_0:199_0:140$ ip community-list expanded c1 permit 10139 ^65000:4_0:199_0:141$ ip community-list expanded c1 permit 10140 ^65000:4_0:199_0:142$ ip community-list expanded c1 permit 10141 ^65000:4_0:199_0:143$ ip community-list expanded c1 permit 10142 ^65000:4_0:199_0:144$ ip community-list expanded c1 permit 10143 ^65000:4_0:199_0:145$ ip community-list expanded c1 permit 10144 ^65000:4_0:199_0:146$ ip community-list expanded c1 permit 10145 ^65000:4_0:199_0:147$ ip community-list expanded c1 permit 10146 ^65000:4_0:199_0:148$ ip community-list expanded c1 permit 10147 ^65000:4_0:199_0:149$ ip community-list expanded c1 permit 10148 ^65000:4_0:199_0:150$ ip community-list expanded c1 permit 10149 ^65000:4_0:199_0:151$ ip community-list expanded c1 permit 10150 ^65000:4_0:199_0:152$ ip community-list expanded c1 permit 10151 ^65000:4_0:199_0:153$ ip community-list expanded c1 permit 10152 ^65000:4_0:199_0:154$ ip community-list expanded c1 permit 10153 ^65000:4_0:199_0:155$ ip community-list expanded c1 permit 10154 ^65000:4_0:199_0:156$ ip community-list expanded c1 permit 10155 ^65000:4_0:199_0:157$ ip community-list expanded c1 permit 10156 ^65000:4_0:199_0:158$ ip community-list expanded c1 permit 10157 ^65000:4_0:199_0:159$ ip community-list expanded c1 permit 10158 ^65000:4_0:199_0:160$ ip community-list expanded c1 permit 10159 ^65000:4_0:199_0:161$ ip community-list expanded c1 permit 10160 ^65000:4_0:199_0:162$ ip community-list expanded c1 permit 10161 ^65000:4_0:199_0:163$ ip community-list expanded c1 permit 10162 ^65000:4_0:199_0:164$ ip community-list expanded c1 permit 10163 ^65000:4_0:199_0:165$ ip community-list expanded c1 permit 10164 ^65000:4_0:199_0:166$ ip community-list expanded c1 permit 10165 ^65000:4_0:199_0:167$ ip community-list expanded c1 permit 10166 ^65000:4_0:199_0:168$ ip community-list expanded c1 permit 10167 ^65000:4_0:199_0:169$ ip community-list expanded c1 permit 10168 ^65000:4_0:199_0:170$ ip community-list expanded c1 permit 10169 ^65000:4_0:199_0:171$ ip community-list expanded c1 permit 10170 ^65000:4_0:199_0:172$ ip community-list expanded c1 permit 10171 ^65000:4_0:199_0:173$ ip community-list expanded c1 permit 10172 ^65000:4_0:199_0:174$ ip community-list expanded c1 permit 10173 ^65000:4_0:199_0:175$ ip community-list expanded c1 permit 10174 ^65000:4_0:199_0:176$ ip community-list expanded c1 permit 10175 ^65000:4_0:199_0:177$ ip community-list expanded c1 permit 10176 ^65000:4_0:199_0:178$ ip community-list expanded c1 permit 10177 ^65000:4_0:199_0:179$ ip community-list expanded c1 permit 10178 ^65000:4_0:199_0:180$ ip community-list expanded c1 permit 10179 ^65000:4_0:199_0:181$ ip community-list expanded c1 permit 10180 ^65000:4_0:199_0:182$ ip community-list expanded c1 permit 10181 ^65000:4_0:199_0:183$ ip community-list expanded c1 permit 10182 ^65000:4_0:199_0:184$ ip community-list expanded c1 permit 10183 ^65000:4_0:199_0:185$ ip community-list expanded c1 permit 10184 ^65000:4_0:199_0:186$ ip community-list expanded c1 permit 10185 ^65000:4_0:199_0:187$ ip community-list expanded c1 permit 10186 ^65000:4_0:199_0:188$ ip community-list expanded c1 permit 10187 ^65000:4_0:199_0:189$ ip community-list expanded c1 permit 10188 ^65000:4_0:199_0:190$ ip community-list expanded c1 permit 10189 ^65000:4_0:199_0:191$ ip community-list expanded c1 permit 10190 ^65000:4_0:199_0:192$ ip community-list expanded c1 permit 10191 ^65000:4_0:199_0:193$ ip community-list expanded c1 permit 10192 ^65000:4_0:199_0:194$ ip community-list expanded c1 permit 10193 ^65000:4_0:199_0:195$ ip community-list expanded c1 permit 10194 ^65000:4_0:199_0:196$ ip community-list expanded c1 permit 10195 ^65000:4_0:199_0:197$ ip community-list expanded c1 permit 10196 ^65000:3_0:199_0:198$ ip community-list expanded c1 permit 10197 ^65000:4_0:199_0:198$ ip community-list expanded c1 permit 10198 ^65000:4_0:199_0:199$ ip community-list expanded c1 permit 10199 ^65000:4_0:200_0:101$ ip community-list expanded c1 permit 10200 ^65000:4_0:200_0:102$ ip community-list expanded c1 permit 10201 ^65000:4_0:200_0:103$ ip community-list expanded c1 permit 10202 ^65000:4_0:200_0:104$ ip community-list expanded c1 permit 10203 ^65000:4_0:200_0:105$ ip community-list expanded c1 permit 10204 ^65000:4_0:200_0:106$ ip community-list expanded c1 permit 10205 ^65000:4_0:200_0:107$ ip community-list expanded c1 permit 10206 ^65000:4_0:200_0:108$ ip community-list expanded c1 permit 10207 ^65000:4_0:200_0:109$ ip community-list expanded c1 permit 10208 ^65000:4_0:200_0:110$ ip community-list expanded c1 permit 10209 ^65000:4_0:200_0:111$ ip community-list expanded c1 permit 10210 ^65000:4_0:200_0:112$ ip community-list expanded c1 permit 10211 ^65000:4_0:200_0:113$ ip community-list expanded c1 permit 10212 ^65000:4_0:200_0:114$ ip community-list expanded c1 permit 10213 ^65000:4_0:200_0:115$ ip community-list expanded c1 permit 10214 ^65000:4_0:200_0:116$ ip community-list expanded c1 permit 10215 ^65000:4_0:200_0:117$ ip community-list expanded c1 permit 10216 ^65000:4_0:200_0:118$ ip community-list expanded c1 permit 10217 ^65000:4_0:200_0:119$ ip community-list expanded c1 permit 10218 ^65000:4_0:200_0:120$ ip community-list expanded c1 permit 10219 ^65000:4_0:200_0:121$ ip community-list expanded c1 permit 10220 ^65000:4_0:200_0:122$ ip community-list expanded c1 permit 10221 ^65000:4_0:200_0:123$ ip community-list expanded c1 permit 10222 ^65000:4_0:200_0:124$ ip community-list expanded c1 permit 10223 ^65000:4_0:200_0:125$ ip community-list expanded c1 permit 10224 ^65000:4_0:200_0:126$ ip community-list expanded c1 permit 10225 ^65000:4_0:200_0:127$ ip community-list expanded c1 permit 10226 ^65000:4_0:200_0:128$ ip community-list expanded c1 permit 10227 ^65000:4_0:200_0:129$ ip community-list expanded c1 permit 10228 ^65000:4_0:200_0:130$ ip community-list expanded c1 permit 10229 ^65000:4_0:200_0:131$ ip community-list expanded c1 permit 10230 ^65000:4_0:200_0:132$ ip community-list expanded c1 permit 10231 ^65000:4_0:200_0:133$ ip community-list expanded c1 permit 10232 ^65000:4_0:200_0:134$ ip community-list expanded c1 permit 10233 ^65000:4_0:200_0:135$ ip community-list expanded c1 permit 10234 ^65000:4_0:200_0:136$ ip community-list expanded c1 permit 10235 ^65000:4_0:200_0:137$ ip community-list expanded c1 permit 10236 ^65000:4_0:200_0:138$ ip community-list expanded c1 permit 10237 ^65000:4_0:200_0:139$ ip community-list expanded c1 permit 10238 ^65000:4_0:200_0:140$ ip community-list expanded c1 permit 10239 ^65000:4_0:200_0:141$ ip community-list expanded c1 permit 10240 ^65000:4_0:200_0:142$ ip community-list expanded c1 permit 10241 ^65000:4_0:200_0:143$ ip community-list expanded c1 permit 10242 ^65000:4_0:200_0:144$ ip community-list expanded c1 permit 10243 ^65000:4_0:200_0:145$ ip community-list expanded c1 permit 10244 ^65000:4_0:200_0:146$ ip community-list expanded c1 permit 10245 ^65000:4_0:200_0:147$ ip community-list expanded c1 permit 10246 ^65000:4_0:200_0:148$ ip community-list expanded c1 permit 10247 ^65000:4_0:200_0:149$ ip community-list expanded c1 permit 10248 ^65000:4_0:200_0:150$ ip community-list expanded c1 permit 10249 ^65000:4_0:200_0:151$ ip community-list expanded c1 permit 10250 ^65000:4_0:200_0:152$ ip community-list expanded c1 permit 10251 ^65000:4_0:200_0:153$ ip community-list expanded c1 permit 10252 ^65000:4_0:200_0:154$ ip community-list expanded c1 permit 10253 ^65000:4_0:200_0:155$ ip community-list expanded c1 permit 10254 ^65000:4_0:200_0:156$ ip community-list expanded c1 permit 10255 ^65000:4_0:200_0:157$ ip community-list expanded c1 permit 10256 ^65000:4_0:200_0:158$ ip community-list expanded c1 permit 10257 ^65000:4_0:200_0:159$ ip community-list expanded c1 permit 10258 ^65000:4_0:200_0:160$ ip community-list expanded c1 permit 10259 ^65000:4_0:200_0:161$ ip community-list expanded c1 permit 10260 ^65000:4_0:200_0:162$ ip community-list expanded c1 permit 10261 ^65000:4_0:200_0:163$ ip community-list expanded c1 permit 10262 ^65000:4_0:200_0:164$ ip community-list expanded c1 permit 10263 ^65000:4_0:200_0:165$ ip community-list expanded c1 permit 10264 ^65000:4_0:200_0:166$ ip community-list expanded c1 permit 10265 ^65000:4_0:200_0:167$ ip community-list expanded c1 permit 10266 ^65000:4_0:200_0:168$ ip community-list expanded c1 permit 10267 ^65000:4_0:200_0:169$ ip community-list expanded c1 permit 10268 ^65000:4_0:200_0:170$ ip community-list expanded c1 permit 10269 ^65000:4_0:200_0:171$ ip community-list expanded c1 permit 10270 ^65000:4_0:200_0:172$ ip community-list expanded c1 permit 10271 ^65000:4_0:200_0:173$ ip community-list expanded c1 permit 10272 ^65000:4_0:200_0:174$ ip community-list expanded c1 permit 10273 ^65000:4_0:200_0:175$ ip community-list expanded c1 permit 10274 ^65000:4_0:200_0:176$ ip community-list expanded c1 permit 10275 ^65000:4_0:200_0:177$ ip community-list expanded c1 permit 10276 ^65000:4_0:200_0:178$ ip community-list expanded c1 permit 10277 ^65000:4_0:200_0:179$ ip community-list expanded c1 permit 10278 ^65000:4_0:200_0:180$ ip community-list expanded c1 permit 10279 ^65000:4_0:200_0:181$ ip community-list expanded c1 permit 10280 ^65000:4_0:200_0:182$ ip community-list expanded c1 permit 10281 ^65000:4_0:200_0:183$ ip community-list expanded c1 permit 10282 ^65000:4_0:200_0:184$ ip community-list expanded c1 permit 10283 ^65000:4_0:200_0:185$ ip community-list expanded c1 permit 10284 ^65000:4_0:200_0:186$ ip community-list expanded c1 permit 10285 ^65000:4_0:200_0:187$ ip community-list expanded c1 permit 10286 ^65000:4_0:200_0:188$ ip community-list expanded c1 permit 10287 ^65000:4_0:200_0:189$ ip community-list expanded c1 permit 10288 ^65000:4_0:200_0:190$ ip community-list expanded c1 permit 10289 ^65000:4_0:200_0:191$ ip community-list expanded c1 permit 10290 ^65000:4_0:200_0:192$ ip community-list expanded c1 permit 10291 ^65000:4_0:200_0:193$ ip community-list expanded c1 permit 10292 ^65000:4_0:200_0:194$ ip community-list expanded c1 permit 10293 ^65000:4_0:200_0:195$ ip community-list expanded c1 permit 10294 ^65000:4_0:200_0:196$ ip community-list expanded c1 permit 10295 ^65000:4_0:200_0:197$ ip community-list expanded c1 permit 10296 ^65000:4_0:200_0:198$ ip community-list expanded c1 permit 10297 ^65000:3_0:200_0:199$ ip community-list expanded c1 permit 10298 ^65000:4_0:200_0:199$ ip community-list expanded c1 permit 10299 ^65000:4_0:200_0:200$ ip community-list expanded c1 permit 10300 ^65000:4_0:201_0:101$ ip community-list expanded c1 permit 10301 ^65000:4_0:201_0:102$ ip community-list expanded c1 permit 10302 ^65000:4_0:201_0:103$ ip community-list expanded c1 permit 10303 ^65000:4_0:201_0:104$ ip community-list expanded c1 permit 10304 ^65000:4_0:201_0:105$ ip community-list expanded c1 permit 10305 ^65000:4_0:201_0:106$ ip community-list expanded c1 permit 10306 ^65000:4_0:201_0:107$ ip community-list expanded c1 permit 10307 ^65000:4_0:201_0:108$ ip community-list expanded c1 permit 10308 ^65000:4_0:201_0:109$ ip community-list expanded c1 permit 10309 ^65000:4_0:201_0:110$ ip community-list expanded c1 permit 10310 ^65000:4_0:201_0:111$ ip community-list expanded c1 permit 10311 ^65000:4_0:201_0:112$ ip community-list expanded c1 permit 10312 ^65000:4_0:201_0:113$ ip community-list expanded c1 permit 10313 ^65000:4_0:201_0:114$ ip community-list expanded c1 permit 10314 ^65000:4_0:201_0:115$ ip community-list expanded c1 permit 10315 ^65000:4_0:201_0:116$ ip community-list expanded c1 permit 10316 ^65000:4_0:201_0:117$ ip community-list expanded c1 permit 10317 ^65000:4_0:201_0:118$ ip community-list expanded c1 permit 10318 ^65000:4_0:201_0:119$ ip community-list expanded c1 permit 10319 ^65000:4_0:201_0:120$ ip community-list expanded c1 permit 10320 ^65000:4_0:201_0:121$ ip community-list expanded c1 permit 10321 ^65000:4_0:201_0:122$ ip community-list expanded c1 permit 10322 ^65000:4_0:201_0:123$ ip community-list expanded c1 permit 10323 ^65000:4_0:201_0:124$ ip community-list expanded c1 permit 10324 ^65000:4_0:201_0:125$ ip community-list expanded c1 permit 10325 ^65000:4_0:201_0:126$ ip community-list expanded c1 permit 10326 ^65000:4_0:201_0:127$ ip community-list expanded c1 permit 10327 ^65000:4_0:201_0:128$ ip community-list expanded c1 permit 10328 ^65000:4_0:201_0:129$ ip community-list expanded c1 permit 10329 ^65000:4_0:201_0:130$ ip community-list expanded c1 permit 10330 ^65000:4_0:201_0:131$ ip community-list expanded c1 permit 10331 ^65000:4_0:201_0:132$ ip community-list expanded c1 permit 10332 ^65000:4_0:201_0:133$ ip community-list expanded c1 permit 10333 ^65000:4_0:201_0:134$ ip community-list expanded c1 permit 10334 ^65000:4_0:201_0:135$ ip community-list expanded c1 permit 10335 ^65000:4_0:201_0:136$ ip community-list expanded c1 permit 10336 ^65000:4_0:201_0:137$ ip community-list expanded c1 permit 10337 ^65000:4_0:201_0:138$ ip community-list expanded c1 permit 10338 ^65000:4_0:201_0:139$ ip community-list expanded c1 permit 10339 ^65000:4_0:201_0:140$ ip community-list expanded c1 permit 10340 ^65000:4_0:201_0:141$ ip community-list expanded c1 permit 10341 ^65000:4_0:201_0:142$ ip community-list expanded c1 permit 10342 ^65000:4_0:201_0:143$ ip community-list expanded c1 permit 10343 ^65000:4_0:201_0:144$ ip community-list expanded c1 permit 10344 ^65000:4_0:201_0:145$ ip community-list expanded c1 permit 10345 ^65000:4_0:201_0:146$ ip community-list expanded c1 permit 10346 ^65000:4_0:201_0:147$ ip community-list expanded c1 permit 10347 ^65000:4_0:201_0:148$ ip community-list expanded c1 permit 10348 ^65000:4_0:201_0:149$ ip community-list expanded c1 permit 10349 ^65000:4_0:201_0:150$ ip community-list expanded c1 permit 10350 ^65000:4_0:201_0:151$ ip community-list expanded c1 permit 10351 ^65000:4_0:201_0:152$ ip community-list expanded c1 permit 10352 ^65000:4_0:201_0:153$ ip community-list expanded c1 permit 10353 ^65000:4_0:201_0:154$ ip community-list expanded c1 permit 10354 ^65000:4_0:201_0:155$ ip community-list expanded c1 permit 10355 ^65000:4_0:201_0:156$ ip community-list expanded c1 permit 10356 ^65000:4_0:201_0:157$ ip community-list expanded c1 permit 10357 ^65000:4_0:201_0:158$ ip community-list expanded c1 permit 10358 ^65000:4_0:201_0:159$ ip community-list expanded c1 permit 10359 ^65000:4_0:201_0:160$ ip community-list expanded c1 permit 10360 ^65000:4_0:201_0:161$ ip community-list expanded c1 permit 10361 ^65000:4_0:201_0:162$ ip community-list expanded c1 permit 10362 ^65000:4_0:201_0:163$ ip community-list expanded c1 permit 10363 ^65000:4_0:201_0:164$ ip community-list expanded c1 permit 10364 ^65000:4_0:201_0:165$ ip community-list expanded c1 permit 10365 ^65000:4_0:201_0:166$ ip community-list expanded c1 permit 10366 ^65000:4_0:201_0:167$ ip community-list expanded c1 permit 10367 ^65000:4_0:201_0:168$ ip community-list expanded c1 permit 10368 ^65000:4_0:201_0:169$ ip community-list expanded c1 permit 10369 ^65000:4_0:201_0:170$ ip community-list expanded c1 permit 10370 ^65000:4_0:201_0:171$ ip community-list expanded c1 permit 10371 ^65000:4_0:201_0:172$ ip community-list expanded c1 permit 10372 ^65000:4_0:201_0:173$ ip community-list expanded c1 permit 10373 ^65000:4_0:201_0:174$ ip community-list expanded c1 permit 10374 ^65000:4_0:201_0:175$ ip community-list expanded c1 permit 10375 ^65000:4_0:201_0:176$ ip community-list expanded c1 permit 10376 ^65000:4_0:201_0:177$ ip community-list expanded c1 permit 10377 ^65000:4_0:201_0:178$ ip community-list expanded c1 permit 10378 ^65000:4_0:201_0:179$ ip community-list expanded c1 permit 10379 ^65000:4_0:201_0:180$ ip community-list expanded c1 permit 10380 ^65000:4_0:201_0:181$ ip community-list expanded c1 permit 10381 ^65000:4_0:201_0:182$ ip community-list expanded c1 permit 10382 ^65000:4_0:201_0:183$ ip community-list expanded c1 permit 10383 ^65000:4_0:201_0:184$ ip community-list expanded c1 permit 10384 ^65000:4_0:201_0:185$ ip community-list expanded c1 permit 10385 ^65000:4_0:201_0:186$ ip community-list expanded c1 permit 10386 ^65000:4_0:201_0:187$ ip community-list expanded c1 permit 10387 ^65000:4_0:201_0:188$ ip community-list expanded c1 permit 10388 ^65000:4_0:201_0:189$ ip community-list expanded c1 permit 10389 ^65000:4_0:201_0:190$ ip community-list expanded c1 permit 10390 ^65000:4_0:201_0:191$ ip community-list expanded c1 permit 10391 ^65000:4_0:201_0:192$ ip community-list expanded c1 permit 10392 ^65000:4_0:201_0:193$ ip community-list expanded c1 permit 10393 ^65000:4_0:201_0:194$ ip community-list expanded c1 permit 10394 ^65000:4_0:201_0:195$ ip community-list expanded c1 permit 10395 ^65000:4_0:201_0:196$ ip community-list expanded c1 permit 10396 ^65000:4_0:201_0:197$ ip community-list expanded c1 permit 10397 ^65000:4_0:201_0:198$ ip community-list expanded c1 permit 10398 ^65000:4_0:201_0:199$ ip community-list expanded c1 permit 10399 ^65000:3_0:201_0:200$ ip community-list expanded c1 permit 10400 ^65000:4_0:201_0:200$ ip community-list expanded c1 permit 10401 ^65000:4_0:201_0:201$ ip community-list expanded c1 permit 10402 ^65000:4_0:202_0:102$ ip community-list expanded c1 permit 10403 ^65000:4_0:202_0:103$ ip community-list expanded c1 permit 10404 ^65000:4_0:202_0:104$ ip community-list expanded c1 permit 10405 ^65000:4_0:202_0:105$ ip community-list expanded c1 permit 10406 ^65000:4_0:202_0:106$ ip community-list expanded c1 permit 10407 ^65000:4_0:202_0:107$ ip community-list expanded c1 permit 10408 ^65000:4_0:202_0:108$ ip community-list expanded c1 permit 10409 ^65000:4_0:202_0:109$ ip community-list expanded c1 permit 10410 ^65000:4_0:202_0:110$ ip community-list expanded c1 permit 10411 ^65000:4_0:202_0:111$ ip community-list expanded c1 permit 10412 ^65000:4_0:202_0:112$ ip community-list expanded c1 permit 10413 ^65000:4_0:202_0:113$ ip community-list expanded c1 permit 10414 ^65000:4_0:202_0:114$ ip community-list expanded c1 permit 10415 ^65000:4_0:202_0:115$ ip community-list expanded c1 permit 10416 ^65000:4_0:202_0:116$ ip community-list expanded c1 permit 10417 ^65000:4_0:202_0:117$ ip community-list expanded c1 permit 10418 ^65000:4_0:202_0:118$ ip community-list expanded c1 permit 10419 ^65000:4_0:202_0:119$ ip community-list expanded c1 permit 10420 ^65000:4_0:202_0:120$ ip community-list expanded c1 permit 10421 ^65000:4_0:202_0:121$ ip community-list expanded c1 permit 10422 ^65000:4_0:202_0:122$ ip community-list expanded c1 permit 10423 ^65000:4_0:202_0:123$ ip community-list expanded c1 permit 10424 ^65000:4_0:202_0:124$ ip community-list expanded c1 permit 10425 ^65000:4_0:202_0:125$ ip community-list expanded c1 permit 10426 ^65000:4_0:202_0:126$ ip community-list expanded c1 permit 10427 ^65000:4_0:202_0:127$ ip community-list expanded c1 permit 10428 ^65000:4_0:202_0:128$ ip community-list expanded c1 permit 10429 ^65000:4_0:202_0:129$ ip community-list expanded c1 permit 10430 ^65000:4_0:202_0:130$ ip community-list expanded c1 permit 10431 ^65000:4_0:202_0:131$ ip community-list expanded c1 permit 10432 ^65000:4_0:202_0:132$ ip community-list expanded c1 permit 10433 ^65000:4_0:202_0:133$ ip community-list expanded c1 permit 10434 ^65000:4_0:202_0:134$ ip community-list expanded c1 permit 10435 ^65000:4_0:202_0:135$ ip community-list expanded c1 permit 10436 ^65000:4_0:202_0:136$ ip community-list expanded c1 permit 10437 ^65000:4_0:202_0:137$ ip community-list expanded c1 permit 10438 ^65000:4_0:202_0:138$ ip community-list expanded c1 permit 10439 ^65000:4_0:202_0:139$ ip community-list expanded c1 permit 10440 ^65000:4_0:202_0:140$ ip community-list expanded c1 permit 10441 ^65000:4_0:202_0:141$ ip community-list expanded c1 permit 10442 ^65000:4_0:202_0:142$ ip community-list expanded c1 permit 10443 ^65000:4_0:202_0:143$ ip community-list expanded c1 permit 10444 ^65000:4_0:202_0:144$ ip community-list expanded c1 permit 10445 ^65000:4_0:202_0:145$ ip community-list expanded c1 permit 10446 ^65000:4_0:202_0:146$ ip community-list expanded c1 permit 10447 ^65000:4_0:202_0:147$ ip community-list expanded c1 permit 10448 ^65000:4_0:202_0:148$ ip community-list expanded c1 permit 10449 ^65000:4_0:202_0:149$ ip community-list expanded c1 permit 10450 ^65000:4_0:202_0:150$ ip community-list expanded c1 permit 10451 ^65000:4_0:202_0:151$ ip community-list expanded c1 permit 10452 ^65000:4_0:202_0:152$ ip community-list expanded c1 permit 10453 ^65000:4_0:202_0:153$ ip community-list expanded c1 permit 10454 ^65000:4_0:202_0:154$ ip community-list expanded c1 permit 10455 ^65000:4_0:202_0:155$ ip community-list expanded c1 permit 10456 ^65000:4_0:202_0:156$ ip community-list expanded c1 permit 10457 ^65000:4_0:202_0:157$ ip community-list expanded c1 permit 10458 ^65000:4_0:202_0:158$ ip community-list expanded c1 permit 10459 ^65000:4_0:202_0:159$ ip community-list expanded c1 permit 10460 ^65000:4_0:202_0:160$ ip community-list expanded c1 permit 10461 ^65000:4_0:202_0:161$ ip community-list expanded c1 permit 10462 ^65000:4_0:202_0:162$ ip community-list expanded c1 permit 10463 ^65000:4_0:202_0:163$ ip community-list expanded c1 permit 10464 ^65000:4_0:202_0:164$ ip community-list expanded c1 permit 10465 ^65000:4_0:202_0:165$ ip community-list expanded c1 permit 10466 ^65000:4_0:202_0:166$ ip community-list expanded c1 permit 10467 ^65000:4_0:202_0:167$ ip community-list expanded c1 permit 10468 ^65000:4_0:202_0:168$ ip community-list expanded c1 permit 10469 ^65000:4_0:202_0:169$ ip community-list expanded c1 permit 10470 ^65000:4_0:202_0:170$ ip community-list expanded c1 permit 10471 ^65000:4_0:202_0:171$ ip community-list expanded c1 permit 10472 ^65000:4_0:202_0:172$ ip community-list expanded c1 permit 10473 ^65000:4_0:202_0:173$ ip community-list expanded c1 permit 10474 ^65000:4_0:202_0:174$ ip community-list expanded c1 permit 10475 ^65000:4_0:202_0:175$ ip community-list expanded c1 permit 10476 ^65000:4_0:202_0:176$ ip community-list expanded c1 permit 10477 ^65000:4_0:202_0:177$ ip community-list expanded c1 permit 10478 ^65000:4_0:202_0:178$ ip community-list expanded c1 permit 10479 ^65000:4_0:202_0:179$ ip community-list expanded c1 permit 10480 ^65000:4_0:202_0:180$ ip community-list expanded c1 permit 10481 ^65000:4_0:202_0:181$ ip community-list expanded c1 permit 10482 ^65000:4_0:202_0:182$ ip community-list expanded c1 permit 10483 ^65000:4_0:202_0:183$ ip community-list expanded c1 permit 10484 ^65000:4_0:202_0:184$ ip community-list expanded c1 permit 10485 ^65000:4_0:202_0:185$ ip community-list expanded c1 permit 10486 ^65000:4_0:202_0:186$ ip community-list expanded c1 permit 10487 ^65000:4_0:202_0:187$ ip community-list expanded c1 permit 10488 ^65000:4_0:202_0:188$ ip community-list expanded c1 permit 10489 ^65000:4_0:202_0:189$ ip community-list expanded c1 permit 10490 ^65000:4_0:202_0:190$ ip community-list expanded c1 permit 10491 ^65000:4_0:202_0:191$ ip community-list expanded c1 permit 10492 ^65000:4_0:202_0:192$ ip community-list expanded c1 permit 10493 ^65000:4_0:202_0:193$ ip community-list expanded c1 permit 10494 ^65000:4_0:202_0:194$ ip community-list expanded c1 permit 10495 ^65000:4_0:202_0:195$ ip community-list expanded c1 permit 10496 ^65000:4_0:202_0:196$ ip community-list expanded c1 permit 10497 ^65000:4_0:202_0:197$ ip community-list expanded c1 permit 10498 ^65000:4_0:202_0:198$ ip community-list expanded c1 permit 10499 ^65000:4_0:202_0:199$ ip community-list expanded c1 permit 10500 ^65000:4_0:202_0:200$ ip community-list expanded c1 permit 10501 ^65000:3_0:202_0:201$ ip community-list expanded c1 permit 10502 ^65000:4_0:202_0:201$ ip community-list expanded c1 permit 10503 ^65000:4_0:202_0:202$ ip community-list expanded c1 permit 10504 ^65000:4_0:203_0:102$ ip community-list expanded c1 permit 10505 ^65000:4_0:203_0:103$ ip community-list expanded c1 permit 10506 ^65000:4_0:203_0:104$ ip community-list expanded c1 permit 10507 ^65000:4_0:203_0:105$ ip community-list expanded c1 permit 10508 ^65000:4_0:203_0:106$ ip community-list expanded c1 permit 10509 ^65000:4_0:203_0:107$ ip community-list expanded c1 permit 10510 ^65000:4_0:203_0:108$ ip community-list expanded c1 permit 10511 ^65000:4_0:203_0:109$ ip community-list expanded c1 permit 10512 ^65000:4_0:203_0:110$ ip community-list expanded c1 permit 10513 ^65000:4_0:203_0:111$ ip community-list expanded c1 permit 10514 ^65000:4_0:203_0:112$ ip community-list expanded c1 permit 10515 ^65000:4_0:203_0:113$ ip community-list expanded c1 permit 10516 ^65000:4_0:203_0:114$ ip community-list expanded c1 permit 10517 ^65000:4_0:203_0:115$ ip community-list expanded c1 permit 10518 ^65000:4_0:203_0:116$ ip community-list expanded c1 permit 10519 ^65000:4_0:203_0:117$ ip community-list expanded c1 permit 10520 ^65000:4_0:203_0:118$ ip community-list expanded c1 permit 10521 ^65000:4_0:203_0:119$ ip community-list expanded c1 permit 10522 ^65000:4_0:203_0:120$ ip community-list expanded c1 permit 10523 ^65000:4_0:203_0:121$ ip community-list expanded c1 permit 10524 ^65000:4_0:203_0:122$ ip community-list expanded c1 permit 10525 ^65000:4_0:203_0:123$ ip community-list expanded c1 permit 10526 ^65000:4_0:203_0:124$ ip community-list expanded c1 permit 10527 ^65000:4_0:203_0:125$ ip community-list expanded c1 permit 10528 ^65000:4_0:203_0:126$ ip community-list expanded c1 permit 10529 ^65000:4_0:203_0:127$ ip community-list expanded c1 permit 10530 ^65000:4_0:203_0:128$ ip community-list expanded c1 permit 10531 ^65000:4_0:203_0:129$ ip community-list expanded c1 permit 10532 ^65000:4_0:203_0:130$ ip community-list expanded c1 permit 10533 ^65000:4_0:203_0:131$ ip community-list expanded c1 permit 10534 ^65000:4_0:203_0:132$ ip community-list expanded c1 permit 10535 ^65000:4_0:203_0:133$ ip community-list expanded c1 permit 10536 ^65000:4_0:203_0:134$ ip community-list expanded c1 permit 10537 ^65000:4_0:203_0:135$ ip community-list expanded c1 permit 10538 ^65000:4_0:203_0:136$ ip community-list expanded c1 permit 10539 ^65000:4_0:203_0:137$ ip community-list expanded c1 permit 10540 ^65000:4_0:203_0:138$ ip community-list expanded c1 permit 10541 ^65000:4_0:203_0:139$ ip community-list expanded c1 permit 10542 ^65000:4_0:203_0:140$ ip community-list expanded c1 permit 10543 ^65000:4_0:203_0:141$ ip community-list expanded c1 permit 10544 ^65000:4_0:203_0:142$ ip community-list expanded c1 permit 10545 ^65000:4_0:203_0:143$ ip community-list expanded c1 permit 10546 ^65000:4_0:203_0:144$ ip community-list expanded c1 permit 10547 ^65000:4_0:203_0:145$ ip community-list expanded c1 permit 10548 ^65000:4_0:203_0:146$ ip community-list expanded c1 permit 10549 ^65000:4_0:203_0:147$ ip community-list expanded c1 permit 10550 ^65000:4_0:203_0:148$ ip community-list expanded c1 permit 10551 ^65000:4_0:203_0:149$ ip community-list expanded c1 permit 10552 ^65000:4_0:203_0:150$ ip community-list expanded c1 permit 10553 ^65000:4_0:203_0:151$ ip community-list expanded c1 permit 10554 ^65000:4_0:203_0:152$ ip community-list expanded c1 permit 10555 ^65000:4_0:203_0:153$ ip community-list expanded c1 permit 10556 ^65000:4_0:203_0:154$ ip community-list expanded c1 permit 10557 ^65000:4_0:203_0:155$ ip community-list expanded c1 permit 10558 ^65000:4_0:203_0:156$ ip community-list expanded c1 permit 10559 ^65000:4_0:203_0:157$ ip community-list expanded c1 permit 10560 ^65000:4_0:203_0:158$ ip community-list expanded c1 permit 10561 ^65000:4_0:203_0:159$ ip community-list expanded c1 permit 10562 ^65000:4_0:203_0:160$ ip community-list expanded c1 permit 10563 ^65000:4_0:203_0:161$ ip community-list expanded c1 permit 10564 ^65000:4_0:203_0:162$ ip community-list expanded c1 permit 10565 ^65000:4_0:203_0:163$ ip community-list expanded c1 permit 10566 ^65000:4_0:203_0:164$ ip community-list expanded c1 permit 10567 ^65000:4_0:203_0:165$ ip community-list expanded c1 permit 10568 ^65000:4_0:203_0:166$ ip community-list expanded c1 permit 10569 ^65000:4_0:203_0:167$ ip community-list expanded c1 permit 10570 ^65000:4_0:203_0:168$ ip community-list expanded c1 permit 10571 ^65000:4_0:203_0:169$ ip community-list expanded c1 permit 10572 ^65000:4_0:203_0:170$ ip community-list expanded c1 permit 10573 ^65000:4_0:203_0:171$ ip community-list expanded c1 permit 10574 ^65000:4_0:203_0:172$ ip community-list expanded c1 permit 10575 ^65000:4_0:203_0:173$ ip community-list expanded c1 permit 10576 ^65000:4_0:203_0:174$ ip community-list expanded c1 permit 10577 ^65000:4_0:203_0:175$ ip community-list expanded c1 permit 10578 ^65000:4_0:203_0:176$ ip community-list expanded c1 permit 10579 ^65000:4_0:203_0:177$ ip community-list expanded c1 permit 10580 ^65000:4_0:203_0:178$ ip community-list expanded c1 permit 10581 ^65000:4_0:203_0:179$ ip community-list expanded c1 permit 10582 ^65000:4_0:203_0:180$ ip community-list expanded c1 permit 10583 ^65000:4_0:203_0:181$ ip community-list expanded c1 permit 10584 ^65000:4_0:203_0:182$ ip community-list expanded c1 permit 10585 ^65000:4_0:203_0:183$ ip community-list expanded c1 permit 10586 ^65000:4_0:203_0:184$ ip community-list expanded c1 permit 10587 ^65000:4_0:203_0:185$ ip community-list expanded c1 permit 10588 ^65000:4_0:203_0:186$ ip community-list expanded c1 permit 10589 ^65000:4_0:203_0:187$ ip community-list expanded c1 permit 10590 ^65000:4_0:203_0:188$ ip community-list expanded c1 permit 10591 ^65000:4_0:203_0:189$ ip community-list expanded c1 permit 10592 ^65000:4_0:203_0:190$ ip community-list expanded c1 permit 10593 ^65000:4_0:203_0:191$ ip community-list expanded c1 permit 10594 ^65000:4_0:203_0:192$ ip community-list expanded c1 permit 10595 ^65000:4_0:203_0:193$ ip community-list expanded c1 permit 10596 ^65000:4_0:203_0:194$ ip community-list expanded c1 permit 10597 ^65000:4_0:203_0:195$ ip community-list expanded c1 permit 10598 ^65000:4_0:203_0:196$ ip community-list expanded c1 permit 10599 ^65000:4_0:203_0:197$ ip community-list expanded c1 permit 10600 ^65000:4_0:203_0:198$ ip community-list expanded c1 permit 10601 ^65000:4_0:203_0:199$ ip community-list expanded c1 permit 10602 ^65000:4_0:203_0:200$ ip community-list expanded c1 permit 10603 ^65000:4_0:203_0:201$ ip community-list expanded c1 permit 10604 ^65000:3_0:203_0:202$ ip community-list expanded c1 permit 10605 ^65000:4_0:203_0:202$ ip community-list expanded c1 permit 10606 ^65000:4_0:203_0:203$ ip community-list expanded c1 permit 10607 ^65000:4_0:204_0:103$ ip community-list expanded c1 permit 10608 ^65000:4_0:204_0:104$ ip community-list expanded c1 permit 10609 ^65000:4_0:204_0:105$ ip community-list expanded c1 permit 10610 ^65000:4_0:204_0:106$ ip community-list expanded c1 permit 10611 ^65000:4_0:204_0:107$ ip community-list expanded c1 permit 10612 ^65000:4_0:204_0:108$ ip community-list expanded c1 permit 10613 ^65000:4_0:204_0:109$ ip community-list expanded c1 permit 10614 ^65000:4_0:204_0:110$ ip community-list expanded c1 permit 10615 ^65000:4_0:204_0:111$ ip community-list expanded c1 permit 10616 ^65000:4_0:204_0:112$ ip community-list expanded c1 permit 10617 ^65000:4_0:204_0:113$ ip community-list expanded c1 permit 10618 ^65000:4_0:204_0:114$ ip community-list expanded c1 permit 10619 ^65000:4_0:204_0:115$ ip community-list expanded c1 permit 10620 ^65000:4_0:204_0:116$ ip community-list expanded c1 permit 10621 ^65000:4_0:204_0:117$ ip community-list expanded c1 permit 10622 ^65000:4_0:204_0:118$ ip community-list expanded c1 permit 10623 ^65000:4_0:204_0:119$ ip community-list expanded c1 permit 10624 ^65000:4_0:204_0:120$ ip community-list expanded c1 permit 10625 ^65000:4_0:204_0:121$ ip community-list expanded c1 permit 10626 ^65000:4_0:204_0:122$ ip community-list expanded c1 permit 10627 ^65000:4_0:204_0:123$ ip community-list expanded c1 permit 10628 ^65000:4_0:204_0:124$ ip community-list expanded c1 permit 10629 ^65000:4_0:204_0:125$ ip community-list expanded c1 permit 10630 ^65000:4_0:204_0:126$ ip community-list expanded c1 permit 10631 ^65000:4_0:204_0:127$ ip community-list expanded c1 permit 10632 ^65000:4_0:204_0:128$ ip community-list expanded c1 permit 10633 ^65000:4_0:204_0:129$ ip community-list expanded c1 permit 10634 ^65000:4_0:204_0:130$ ip community-list expanded c1 permit 10635 ^65000:4_0:204_0:131$ ip community-list expanded c1 permit 10636 ^65000:4_0:204_0:132$ ip community-list expanded c1 permit 10637 ^65000:4_0:204_0:133$ ip community-list expanded c1 permit 10638 ^65000:4_0:204_0:134$ ip community-list expanded c1 permit 10639 ^65000:4_0:204_0:135$ ip community-list expanded c1 permit 10640 ^65000:4_0:204_0:136$ ip community-list expanded c1 permit 10641 ^65000:4_0:204_0:137$ ip community-list expanded c1 permit 10642 ^65000:4_0:204_0:138$ ip community-list expanded c1 permit 10643 ^65000:4_0:204_0:139$ ip community-list expanded c1 permit 10644 ^65000:4_0:204_0:140$ ip community-list expanded c1 permit 10645 ^65000:4_0:204_0:141$ ip community-list expanded c1 permit 10646 ^65000:4_0:204_0:142$ ip community-list expanded c1 permit 10647 ^65000:4_0:204_0:143$ ip community-list expanded c1 permit 10648 ^65000:4_0:204_0:144$ ip community-list expanded c1 permit 10649 ^65000:4_0:204_0:145$ ip community-list expanded c1 permit 10650 ^65000:4_0:204_0:146$ ip community-list expanded c1 permit 10651 ^65000:4_0:204_0:147$ ip community-list expanded c1 permit 10652 ^65000:4_0:204_0:148$ ip community-list expanded c1 permit 10653 ^65000:4_0:204_0:149$ ip community-list expanded c1 permit 10654 ^65000:4_0:204_0:150$ ip community-list expanded c1 permit 10655 ^65000:4_0:204_0:151$ ip community-list expanded c1 permit 10656 ^65000:4_0:204_0:152$ ip community-list expanded c1 permit 10657 ^65000:4_0:204_0:153$ ip community-list expanded c1 permit 10658 ^65000:4_0:204_0:154$ ip community-list expanded c1 permit 10659 ^65000:4_0:204_0:155$ ip community-list expanded c1 permit 10660 ^65000:4_0:204_0:156$ ip community-list expanded c1 permit 10661 ^65000:4_0:204_0:157$ ip community-list expanded c1 permit 10662 ^65000:4_0:204_0:158$ ip community-list expanded c1 permit 10663 ^65000:4_0:204_0:159$ ip community-list expanded c1 permit 10664 ^65000:4_0:204_0:160$ ip community-list expanded c1 permit 10665 ^65000:4_0:204_0:161$ ip community-list expanded c1 permit 10666 ^65000:4_0:204_0:162$ ip community-list expanded c1 permit 10667 ^65000:4_0:204_0:163$ ip community-list expanded c1 permit 10668 ^65000:4_0:204_0:164$ ip community-list expanded c1 permit 10669 ^65000:4_0:204_0:165$ ip community-list expanded c1 permit 10670 ^65000:4_0:204_0:166$ ip community-list expanded c1 permit 10671 ^65000:4_0:204_0:167$ ip community-list expanded c1 permit 10672 ^65000:4_0:204_0:168$ ip community-list expanded c1 permit 10673 ^65000:4_0:204_0:169$ ip community-list expanded c1 permit 10674 ^65000:4_0:204_0:170$ ip community-list expanded c1 permit 10675 ^65000:4_0:204_0:171$ ip community-list expanded c1 permit 10676 ^65000:4_0:204_0:172$ ip community-list expanded c1 permit 10677 ^65000:4_0:204_0:173$ ip community-list expanded c1 permit 10678 ^65000:4_0:204_0:174$ ip community-list expanded c1 permit 10679 ^65000:4_0:204_0:175$ ip community-list expanded c1 permit 10680 ^65000:4_0:204_0:176$ ip community-list expanded c1 permit 10681 ^65000:4_0:204_0:177$ ip community-list expanded c1 permit 10682 ^65000:4_0:204_0:178$ ip community-list expanded c1 permit 10683 ^65000:4_0:204_0:179$ ip community-list expanded c1 permit 10684 ^65000:4_0:204_0:180$ ip community-list expanded c1 permit 10685 ^65000:4_0:204_0:181$ ip community-list expanded c1 permit 10686 ^65000:4_0:204_0:182$ ip community-list expanded c1 permit 10687 ^65000:4_0:204_0:183$ ip community-list expanded c1 permit 10688 ^65000:4_0:204_0:184$ ip community-list expanded c1 permit 10689 ^65000:4_0:204_0:185$ ip community-list expanded c1 permit 10690 ^65000:4_0:204_0:186$ ip community-list expanded c1 permit 10691 ^65000:4_0:204_0:187$ ip community-list expanded c1 permit 10692 ^65000:4_0:204_0:188$ ip community-list expanded c1 permit 10693 ^65000:4_0:204_0:189$ ip community-list expanded c1 permit 10694 ^65000:4_0:204_0:190$ ip community-list expanded c1 permit 10695 ^65000:4_0:204_0:191$ ip community-list expanded c1 permit 10696 ^65000:4_0:204_0:192$ ip community-list expanded c1 permit 10697 ^65000:4_0:204_0:193$ ip community-list expanded c1 permit 10698 ^65000:4_0:204_0:194$ ip community-list expanded c1 permit 10699 ^65000:4_0:204_0:195$ ip community-list expanded c1 permit 10700 ^65000:4_0:204_0:196$ ip community-list expanded c1 permit 10701 ^65000:4_0:204_0:197$ ip community-list expanded c1 permit 10702 ^65000:4_0:204_0:198$ ip community-list expanded c1 permit 10703 ^65000:4_0:204_0:199$ ip community-list expanded c1 permit 10704 ^65000:4_0:204_0:200$ ip community-list expanded c1 permit 10705 ^65000:4_0:204_0:201$ ip community-list expanded c1 permit 10706 ^65000:4_0:204_0:202$ ip community-list expanded c1 permit 10707 ^65000:3_0:204_0:203$ ip community-list expanded c1 permit 10708 ^65000:4_0:204_0:203$ ip community-list expanded c1 permit 10709 ^65000:4_0:204_0:204$ ip community-list expanded c1 permit 10710 ^65000:4_0:205_0:103$ ip community-list expanded c1 permit 10711 ^65000:4_0:205_0:104$ ip community-list expanded c1 permit 10712 ^65000:4_0:205_0:105$ ip community-list expanded c1 permit 10713 ^65000:4_0:205_0:106$ ip community-list expanded c1 permit 10714 ^65000:4_0:205_0:107$ ip community-list expanded c1 permit 10715 ^65000:4_0:205_0:108$ ip community-list expanded c1 permit 10716 ^65000:4_0:205_0:109$ ip community-list expanded c1 permit 10717 ^65000:4_0:205_0:110$ ip community-list expanded c1 permit 10718 ^65000:4_0:205_0:111$ ip community-list expanded c1 permit 10719 ^65000:4_0:205_0:112$ ip community-list expanded c1 permit 10720 ^65000:4_0:205_0:113$ ip community-list expanded c1 permit 10721 ^65000:4_0:205_0:114$ ip community-list expanded c1 permit 10722 ^65000:4_0:205_0:115$ ip community-list expanded c1 permit 10723 ^65000:4_0:205_0:116$ ip community-list expanded c1 permit 10724 ^65000:4_0:205_0:117$ ip community-list expanded c1 permit 10725 ^65000:4_0:205_0:118$ ip community-list expanded c1 permit 10726 ^65000:4_0:205_0:119$ ip community-list expanded c1 permit 10727 ^65000:4_0:205_0:120$ ip community-list expanded c1 permit 10728 ^65000:4_0:205_0:121$ ip community-list expanded c1 permit 10729 ^65000:4_0:205_0:122$ ip community-list expanded c1 permit 10730 ^65000:4_0:205_0:123$ ip community-list expanded c1 permit 10731 ^65000:4_0:205_0:124$ ip community-list expanded c1 permit 10732 ^65000:4_0:205_0:125$ ip community-list expanded c1 permit 10733 ^65000:4_0:205_0:126$ ip community-list expanded c1 permit 10734 ^65000:4_0:205_0:127$ ip community-list expanded c1 permit 10735 ^65000:4_0:205_0:128$ ip community-list expanded c1 permit 10736 ^65000:4_0:205_0:129$ ip community-list expanded c1 permit 10737 ^65000:4_0:205_0:130$ ip community-list expanded c1 permit 10738 ^65000:4_0:205_0:131$ ip community-list expanded c1 permit 10739 ^65000:4_0:205_0:132$ ip community-list expanded c1 permit 10740 ^65000:4_0:205_0:133$ ip community-list expanded c1 permit 10741 ^65000:4_0:205_0:134$ ip community-list expanded c1 permit 10742 ^65000:4_0:205_0:135$ ip community-list expanded c1 permit 10743 ^65000:4_0:205_0:136$ ip community-list expanded c1 permit 10744 ^65000:4_0:205_0:137$ ip community-list expanded c1 permit 10745 ^65000:4_0:205_0:138$ ip community-list expanded c1 permit 10746 ^65000:4_0:205_0:139$ ip community-list expanded c1 permit 10747 ^65000:4_0:205_0:140$ ip community-list expanded c1 permit 10748 ^65000:4_0:205_0:141$ ip community-list expanded c1 permit 10749 ^65000:4_0:205_0:142$ ip community-list expanded c1 permit 10750 ^65000:4_0:205_0:143$ ip community-list expanded c1 permit 10751 ^65000:4_0:205_0:144$ ip community-list expanded c1 permit 10752 ^65000:4_0:205_0:145$ ip community-list expanded c1 permit 10753 ^65000:4_0:205_0:146$ ip community-list expanded c1 permit 10754 ^65000:4_0:205_0:147$ ip community-list expanded c1 permit 10755 ^65000:4_0:205_0:148$ ip community-list expanded c1 permit 10756 ^65000:4_0:205_0:149$ ip community-list expanded c1 permit 10757 ^65000:4_0:205_0:150$ ip community-list expanded c1 permit 10758 ^65000:4_0:205_0:151$ ip community-list expanded c1 permit 10759 ^65000:4_0:205_0:152$ ip community-list expanded c1 permit 10760 ^65000:4_0:205_0:153$ ip community-list expanded c1 permit 10761 ^65000:4_0:205_0:154$ ip community-list expanded c1 permit 10762 ^65000:4_0:205_0:155$ ip community-list expanded c1 permit 10763 ^65000:4_0:205_0:156$ ip community-list expanded c1 permit 10764 ^65000:4_0:205_0:157$ ip community-list expanded c1 permit 10765 ^65000:4_0:205_0:158$ ip community-list expanded c1 permit 10766 ^65000:4_0:205_0:159$ ip community-list expanded c1 permit 10767 ^65000:4_0:205_0:160$ ip community-list expanded c1 permit 10768 ^65000:4_0:205_0:161$ ip community-list expanded c1 permit 10769 ^65000:4_0:205_0:162$ ip community-list expanded c1 permit 10770 ^65000:4_0:205_0:163$ ip community-list expanded c1 permit 10771 ^65000:4_0:205_0:164$ ip community-list expanded c1 permit 10772 ^65000:4_0:205_0:165$ ip community-list expanded c1 permit 10773 ^65000:4_0:205_0:166$ ip community-list expanded c1 permit 10774 ^65000:4_0:205_0:167$ ip community-list expanded c1 permit 10775 ^65000:4_0:205_0:168$ ip community-list expanded c1 permit 10776 ^65000:4_0:205_0:169$ ip community-list expanded c1 permit 10777 ^65000:4_0:205_0:170$ ip community-list expanded c1 permit 10778 ^65000:4_0:205_0:171$ ip community-list expanded c1 permit 10779 ^65000:4_0:205_0:172$ ip community-list expanded c1 permit 10780 ^65000:4_0:205_0:173$ ip community-list expanded c1 permit 10781 ^65000:4_0:205_0:174$ ip community-list expanded c1 permit 10782 ^65000:4_0:205_0:175$ ip community-list expanded c1 permit 10783 ^65000:4_0:205_0:176$ ip community-list expanded c1 permit 10784 ^65000:4_0:205_0:177$ ip community-list expanded c1 permit 10785 ^65000:4_0:205_0:178$ ip community-list expanded c1 permit 10786 ^65000:4_0:205_0:179$ ip community-list expanded c1 permit 10787 ^65000:4_0:205_0:180$ ip community-list expanded c1 permit 10788 ^65000:4_0:205_0:181$ ip community-list expanded c1 permit 10789 ^65000:4_0:205_0:182$ ip community-list expanded c1 permit 10790 ^65000:4_0:205_0:183$ ip community-list expanded c1 permit 10791 ^65000:4_0:205_0:184$ ip community-list expanded c1 permit 10792 ^65000:4_0:205_0:185$ ip community-list expanded c1 permit 10793 ^65000:4_0:205_0:186$ ip community-list expanded c1 permit 10794 ^65000:4_0:205_0:187$ ip community-list expanded c1 permit 10795 ^65000:4_0:205_0:188$ ip community-list expanded c1 permit 10796 ^65000:4_0:205_0:189$ ip community-list expanded c1 permit 10797 ^65000:4_0:205_0:190$ ip community-list expanded c1 permit 10798 ^65000:4_0:205_0:191$ ip community-list expanded c1 permit 10799 ^65000:4_0:205_0:192$ ip community-list expanded c1 permit 10800 ^65000:4_0:205_0:193$ ip community-list expanded c1 permit 10801 ^65000:4_0:205_0:194$ ip community-list expanded c1 permit 10802 ^65000:4_0:205_0:195$ ip community-list expanded c1 permit 10803 ^65000:4_0:205_0:196$ ip community-list expanded c1 permit 10804 ^65000:4_0:205_0:197$ ip community-list expanded c1 permit 10805 ^65000:4_0:205_0:198$ ip community-list expanded c1 permit 10806 ^65000:4_0:205_0:199$ ip community-list expanded c1 permit 10807 ^65000:4_0:205_0:200$ ip community-list expanded c1 permit 10808 ^65000:4_0:205_0:201$ ip community-list expanded c1 permit 10809 ^65000:4_0:205_0:202$ ip community-list expanded c1 permit 10810 ^65000:4_0:205_0:203$ ip community-list expanded c1 permit 10811 ^65000:3_0:205_0:204$ ip community-list expanded c1 permit 10812 ^65000:4_0:205_0:204$ ip community-list expanded c1 permit 10813 ^65000:4_0:205_0:205$ ip community-list expanded c1 permit 10814 ^65000:4_0:206_0:104$ ip community-list expanded c1 permit 10815 ^65000:4_0:206_0:105$ ip community-list expanded c1 permit 10816 ^65000:4_0:206_0:106$ ip community-list expanded c1 permit 10817 ^65000:4_0:206_0:107$ ip community-list expanded c1 permit 10818 ^65000:4_0:206_0:108$ ip community-list expanded c1 permit 10819 ^65000:4_0:206_0:109$ ip community-list expanded c1 permit 10820 ^65000:4_0:206_0:110$ ip community-list expanded c1 permit 10821 ^65000:4_0:206_0:111$ ip community-list expanded c1 permit 10822 ^65000:4_0:206_0:112$ ip community-list expanded c1 permit 10823 ^65000:4_0:206_0:113$ ip community-list expanded c1 permit 10824 ^65000:4_0:206_0:114$ ip community-list expanded c1 permit 10825 ^65000:4_0:206_0:115$ ip community-list expanded c1 permit 10826 ^65000:4_0:206_0:116$ ip community-list expanded c1 permit 10827 ^65000:4_0:206_0:117$ ip community-list expanded c1 permit 10828 ^65000:4_0:206_0:118$ ip community-list expanded c1 permit 10829 ^65000:4_0:206_0:119$ ip community-list expanded c1 permit 10830 ^65000:4_0:206_0:120$ ip community-list expanded c1 permit 10831 ^65000:4_0:206_0:121$ ip community-list expanded c1 permit 10832 ^65000:4_0:206_0:122$ ip community-list expanded c1 permit 10833 ^65000:4_0:206_0:123$ ip community-list expanded c1 permit 10834 ^65000:4_0:206_0:124$ ip community-list expanded c1 permit 10835 ^65000:4_0:206_0:125$ ip community-list expanded c1 permit 10836 ^65000:4_0:206_0:126$ ip community-list expanded c1 permit 10837 ^65000:4_0:206_0:127$ ip community-list expanded c1 permit 10838 ^65000:4_0:206_0:128$ ip community-list expanded c1 permit 10839 ^65000:4_0:206_0:129$ ip community-list expanded c1 permit 10840 ^65000:4_0:206_0:130$ ip community-list expanded c1 permit 10841 ^65000:4_0:206_0:131$ ip community-list expanded c1 permit 10842 ^65000:4_0:206_0:132$ ip community-list expanded c1 permit 10843 ^65000:4_0:206_0:133$ ip community-list expanded c1 permit 10844 ^65000:4_0:206_0:134$ ip community-list expanded c1 permit 10845 ^65000:4_0:206_0:135$ ip community-list expanded c1 permit 10846 ^65000:4_0:206_0:136$ ip community-list expanded c1 permit 10847 ^65000:4_0:206_0:137$ ip community-list expanded c1 permit 10848 ^65000:4_0:206_0:138$ ip community-list expanded c1 permit 10849 ^65000:4_0:206_0:139$ ip community-list expanded c1 permit 10850 ^65000:4_0:206_0:140$ ip community-list expanded c1 permit 10851 ^65000:4_0:206_0:141$ ip community-list expanded c1 permit 10852 ^65000:4_0:206_0:142$ ip community-list expanded c1 permit 10853 ^65000:4_0:206_0:143$ ip community-list expanded c1 permit 10854 ^65000:4_0:206_0:144$ ip community-list expanded c1 permit 10855 ^65000:4_0:206_0:145$ ip community-list expanded c1 permit 10856 ^65000:4_0:206_0:146$ ip community-list expanded c1 permit 10857 ^65000:4_0:206_0:147$ ip community-list expanded c1 permit 10858 ^65000:4_0:206_0:148$ ip community-list expanded c1 permit 10859 ^65000:4_0:206_0:149$ ip community-list expanded c1 permit 10860 ^65000:4_0:206_0:150$ ip community-list expanded c1 permit 10861 ^65000:4_0:206_0:151$ ip community-list expanded c1 permit 10862 ^65000:4_0:206_0:152$ ip community-list expanded c1 permit 10863 ^65000:4_0:206_0:153$ ip community-list expanded c1 permit 10864 ^65000:4_0:206_0:154$ ip community-list expanded c1 permit 10865 ^65000:4_0:206_0:155$ ip community-list expanded c1 permit 10866 ^65000:4_0:206_0:156$ ip community-list expanded c1 permit 10867 ^65000:4_0:206_0:157$ ip community-list expanded c1 permit 10868 ^65000:4_0:206_0:158$ ip community-list expanded c1 permit 10869 ^65000:4_0:206_0:159$ ip community-list expanded c1 permit 10870 ^65000:4_0:206_0:160$ ip community-list expanded c1 permit 10871 ^65000:4_0:206_0:161$ ip community-list expanded c1 permit 10872 ^65000:4_0:206_0:162$ ip community-list expanded c1 permit 10873 ^65000:4_0:206_0:163$ ip community-list expanded c1 permit 10874 ^65000:4_0:206_0:164$ ip community-list expanded c1 permit 10875 ^65000:4_0:206_0:165$ ip community-list expanded c1 permit 10876 ^65000:4_0:206_0:166$ ip community-list expanded c1 permit 10877 ^65000:4_0:206_0:167$ ip community-list expanded c1 permit 10878 ^65000:4_0:206_0:168$ ip community-list expanded c1 permit 10879 ^65000:4_0:206_0:169$ ip community-list expanded c1 permit 10880 ^65000:4_0:206_0:170$ ip community-list expanded c1 permit 10881 ^65000:4_0:206_0:171$ ip community-list expanded c1 permit 10882 ^65000:4_0:206_0:172$ ip community-list expanded c1 permit 10883 ^65000:4_0:206_0:173$ ip community-list expanded c1 permit 10884 ^65000:4_0:206_0:174$ ip community-list expanded c1 permit 10885 ^65000:4_0:206_0:175$ ip community-list expanded c1 permit 10886 ^65000:4_0:206_0:176$ ip community-list expanded c1 permit 10887 ^65000:4_0:206_0:177$ ip community-list expanded c1 permit 10888 ^65000:4_0:206_0:178$ ip community-list expanded c1 permit 10889 ^65000:4_0:206_0:179$ ip community-list expanded c1 permit 10890 ^65000:4_0:206_0:180$ ip community-list expanded c1 permit 10891 ^65000:4_0:206_0:181$ ip community-list expanded c1 permit 10892 ^65000:4_0:206_0:182$ ip community-list expanded c1 permit 10893 ^65000:4_0:206_0:183$ ip community-list expanded c1 permit 10894 ^65000:4_0:206_0:184$ ip community-list expanded c1 permit 10895 ^65000:4_0:206_0:185$ ip community-list expanded c1 permit 10896 ^65000:4_0:206_0:186$ ip community-list expanded c1 permit 10897 ^65000:4_0:206_0:187$ ip community-list expanded c1 permit 10898 ^65000:4_0:206_0:188$ ip community-list expanded c1 permit 10899 ^65000:4_0:206_0:189$ ip community-list expanded c1 permit 10900 ^65000:4_0:206_0:190$ ip community-list expanded c1 permit 10901 ^65000:4_0:206_0:191$ ip community-list expanded c1 permit 10902 ^65000:4_0:206_0:192$ ip community-list expanded c1 permit 10903 ^65000:4_0:206_0:193$ ip community-list expanded c1 permit 10904 ^65000:4_0:206_0:194$ ip community-list expanded c1 permit 10905 ^65000:4_0:206_0:195$ ip community-list expanded c1 permit 10906 ^65000:4_0:206_0:196$ ip community-list expanded c1 permit 10907 ^65000:4_0:206_0:197$ ip community-list expanded c1 permit 10908 ^65000:4_0:206_0:198$ ip community-list expanded c1 permit 10909 ^65000:4_0:206_0:199$ ip community-list expanded c1 permit 10910 ^65000:4_0:206_0:200$ ip community-list expanded c1 permit 10911 ^65000:4_0:206_0:201$ ip community-list expanded c1 permit 10912 ^65000:4_0:206_0:202$ ip community-list expanded c1 permit 10913 ^65000:4_0:206_0:203$ ip community-list expanded c1 permit 10914 ^65000:4_0:206_0:204$ ip community-list expanded c1 permit 10915 ^65000:3_0:206_0:205$ ip community-list expanded c1 permit 10916 ^65000:4_0:206_0:205$ ip community-list expanded c1 permit 10917 ^65000:4_0:206_0:206$ ip community-list expanded c1 permit 10918 ^65000:4_0:207_0:104$ ip community-list expanded c1 permit 10919 ^65000:4_0:207_0:105$ ip community-list expanded c1 permit 10920 ^65000:4_0:207_0:106$ ip community-list expanded c1 permit 10921 ^65000:4_0:207_0:107$ ip community-list expanded c1 permit 10922 ^65000:4_0:207_0:108$ ip community-list expanded c1 permit 10923 ^65000:4_0:207_0:109$ ip community-list expanded c1 permit 10924 ^65000:4_0:207_0:110$ ip community-list expanded c1 permit 10925 ^65000:4_0:207_0:111$ ip community-list expanded c1 permit 10926 ^65000:4_0:207_0:112$ ip community-list expanded c1 permit 10927 ^65000:4_0:207_0:113$ ip community-list expanded c1 permit 10928 ^65000:4_0:207_0:114$ ip community-list expanded c1 permit 10929 ^65000:4_0:207_0:115$ ip community-list expanded c1 permit 10930 ^65000:4_0:207_0:116$ ip community-list expanded c1 permit 10931 ^65000:4_0:207_0:117$ ip community-list expanded c1 permit 10932 ^65000:4_0:207_0:118$ ip community-list expanded c1 permit 10933 ^65000:4_0:207_0:119$ ip community-list expanded c1 permit 10934 ^65000:4_0:207_0:120$ ip community-list expanded c1 permit 10935 ^65000:4_0:207_0:121$ ip community-list expanded c1 permit 10936 ^65000:4_0:207_0:122$ ip community-list expanded c1 permit 10937 ^65000:4_0:207_0:123$ ip community-list expanded c1 permit 10938 ^65000:4_0:207_0:124$ ip community-list expanded c1 permit 10939 ^65000:4_0:207_0:125$ ip community-list expanded c1 permit 10940 ^65000:4_0:207_0:126$ ip community-list expanded c1 permit 10941 ^65000:4_0:207_0:127$ ip community-list expanded c1 permit 10942 ^65000:4_0:207_0:128$ ip community-list expanded c1 permit 10943 ^65000:4_0:207_0:129$ ip community-list expanded c1 permit 10944 ^65000:4_0:207_0:130$ ip community-list expanded c1 permit 10945 ^65000:4_0:207_0:131$ ip community-list expanded c1 permit 10946 ^65000:4_0:207_0:132$ ip community-list expanded c1 permit 10947 ^65000:4_0:207_0:133$ ip community-list expanded c1 permit 10948 ^65000:4_0:207_0:134$ ip community-list expanded c1 permit 10949 ^65000:4_0:207_0:135$ ip community-list expanded c1 permit 10950 ^65000:4_0:207_0:136$ ip community-list expanded c1 permit 10951 ^65000:4_0:207_0:137$ ip community-list expanded c1 permit 10952 ^65000:4_0:207_0:138$ ip community-list expanded c1 permit 10953 ^65000:4_0:207_0:139$ ip community-list expanded c1 permit 10954 ^65000:4_0:207_0:140$ ip community-list expanded c1 permit 10955 ^65000:4_0:207_0:141$ ip community-list expanded c1 permit 10956 ^65000:4_0:207_0:142$ ip community-list expanded c1 permit 10957 ^65000:4_0:207_0:143$ ip community-list expanded c1 permit 10958 ^65000:4_0:207_0:144$ ip community-list expanded c1 permit 10959 ^65000:4_0:207_0:145$ ip community-list expanded c1 permit 10960 ^65000:4_0:207_0:146$ ip community-list expanded c1 permit 10961 ^65000:4_0:207_0:147$ ip community-list expanded c1 permit 10962 ^65000:4_0:207_0:148$ ip community-list expanded c1 permit 10963 ^65000:4_0:207_0:149$ ip community-list expanded c1 permit 10964 ^65000:4_0:207_0:150$ ip community-list expanded c1 permit 10965 ^65000:4_0:207_0:151$ ip community-list expanded c1 permit 10966 ^65000:4_0:207_0:152$ ip community-list expanded c1 permit 10967 ^65000:4_0:207_0:153$ ip community-list expanded c1 permit 10968 ^65000:4_0:207_0:154$ ip community-list expanded c1 permit 10969 ^65000:4_0:207_0:155$ ip community-list expanded c1 permit 10970 ^65000:4_0:207_0:156$ ip community-list expanded c1 permit 10971 ^65000:4_0:207_0:157$ ip community-list expanded c1 permit 10972 ^65000:4_0:207_0:158$ ip community-list expanded c1 permit 10973 ^65000:4_0:207_0:159$ ip community-list expanded c1 permit 10974 ^65000:4_0:207_0:160$ ip community-list expanded c1 permit 10975 ^65000:4_0:207_0:161$ ip community-list expanded c1 permit 10976 ^65000:4_0:207_0:162$ ip community-list expanded c1 permit 10977 ^65000:4_0:207_0:163$ ip community-list expanded c1 permit 10978 ^65000:4_0:207_0:164$ ip community-list expanded c1 permit 10979 ^65000:4_0:207_0:165$ ip community-list expanded c1 permit 10980 ^65000:4_0:207_0:166$ ip community-list expanded c1 permit 10981 ^65000:4_0:207_0:167$ ip community-list expanded c1 permit 10982 ^65000:4_0:207_0:168$ ip community-list expanded c1 permit 10983 ^65000:4_0:207_0:169$ ip community-list expanded c1 permit 10984 ^65000:4_0:207_0:170$ ip community-list expanded c1 permit 10985 ^65000:4_0:207_0:171$ ip community-list expanded c1 permit 10986 ^65000:4_0:207_0:172$ ip community-list expanded c1 permit 10987 ^65000:4_0:207_0:173$ ip community-list expanded c1 permit 10988 ^65000:4_0:207_0:174$ ip community-list expanded c1 permit 10989 ^65000:4_0:207_0:175$ ip community-list expanded c1 permit 10990 ^65000:4_0:207_0:176$ ip community-list expanded c1 permit 10991 ^65000:4_0:207_0:177$ ip community-list expanded c1 permit 10992 ^65000:4_0:207_0:178$ ip community-list expanded c1 permit 10993 ^65000:4_0:207_0:179$ ip community-list expanded c1 permit 10994 ^65000:4_0:207_0:180$ ip community-list expanded c1 permit 10995 ^65000:4_0:207_0:181$ ip community-list expanded c1 permit 10996 ^65000:4_0:207_0:182$ ip community-list expanded c1 permit 10997 ^65000:4_0:207_0:183$ ip community-list expanded c1 permit 10998 ^65000:4_0:207_0:184$ ip community-list expanded c1 permit 10999 ^65000:4_0:207_0:185$ ip community-list expanded c1 permit 11000 ^65000:4_0:207_0:186$ ip community-list expanded c1 permit 11001 ^65000:4_0:207_0:187$ ip community-list expanded c1 permit 11002 ^65000:4_0:207_0:188$ ip community-list expanded c1 permit 11003 ^65000:4_0:207_0:189$ ip community-list expanded c1 permit 11004 ^65000:4_0:207_0:190$ ip community-list expanded c1 permit 11005 ^65000:4_0:207_0:191$ ip community-list expanded c1 permit 11006 ^65000:4_0:207_0:192$ ip community-list expanded c1 permit 11007 ^65000:4_0:207_0:193$ ip community-list expanded c1 permit 11008 ^65000:4_0:207_0:194$ ip community-list expanded c1 permit 11009 ^65000:4_0:207_0:195$ ip community-list expanded c1 permit 11010 ^65000:4_0:207_0:196$ ip community-list expanded c1 permit 11011 ^65000:4_0:207_0:197$ ip community-list expanded c1 permit 11012 ^65000:4_0:207_0:198$ ip community-list expanded c1 permit 11013 ^65000:4_0:207_0:199$ ip community-list expanded c1 permit 11014 ^65000:4_0:207_0:200$ ip community-list expanded c1 permit 11015 ^65000:4_0:207_0:201$ ip community-list expanded c1 permit 11016 ^65000:4_0:207_0:202$ ip community-list expanded c1 permit 11017 ^65000:4_0:207_0:203$ ip community-list expanded c1 permit 11018 ^65000:4_0:207_0:204$ ip community-list expanded c1 permit 11019 ^65000:4_0:207_0:205$ ip community-list expanded c1 permit 11020 ^65000:3_0:207_0:206$ ip community-list expanded c1 permit 11021 ^65000:4_0:207_0:206$ ip community-list expanded c1 permit 11022 ^65000:4_0:207_0:207$ ip community-list expanded c1 permit 11023 ^65000:4_0:208_0:105$ ip community-list expanded c1 permit 11024 ^65000:4_0:208_0:106$ ip community-list expanded c1 permit 11025 ^65000:4_0:208_0:107$ ip community-list expanded c1 permit 11026 ^65000:4_0:208_0:108$ ip community-list expanded c1 permit 11027 ^65000:4_0:208_0:109$ ip community-list expanded c1 permit 11028 ^65000:4_0:208_0:110$ ip community-list expanded c1 permit 11029 ^65000:4_0:208_0:111$ ip community-list expanded c1 permit 11030 ^65000:4_0:208_0:112$ ip community-list expanded c1 permit 11031 ^65000:4_0:208_0:113$ ip community-list expanded c1 permit 11032 ^65000:4_0:208_0:114$ ip community-list expanded c1 permit 11033 ^65000:4_0:208_0:115$ ip community-list expanded c1 permit 11034 ^65000:4_0:208_0:116$ ip community-list expanded c1 permit 11035 ^65000:4_0:208_0:117$ ip community-list expanded c1 permit 11036 ^65000:4_0:208_0:118$ ip community-list expanded c1 permit 11037 ^65000:4_0:208_0:119$ ip community-list expanded c1 permit 11038 ^65000:4_0:208_0:120$ ip community-list expanded c1 permit 11039 ^65000:4_0:208_0:121$ ip community-list expanded c1 permit 11040 ^65000:4_0:208_0:122$ ip community-list expanded c1 permit 11041 ^65000:4_0:208_0:123$ ip community-list expanded c1 permit 11042 ^65000:4_0:208_0:124$ ip community-list expanded c1 permit 11043 ^65000:4_0:208_0:125$ ip community-list expanded c1 permit 11044 ^65000:4_0:208_0:126$ ip community-list expanded c1 permit 11045 ^65000:4_0:208_0:127$ ip community-list expanded c1 permit 11046 ^65000:4_0:208_0:128$ ip community-list expanded c1 permit 11047 ^65000:4_0:208_0:129$ ip community-list expanded c1 permit 11048 ^65000:4_0:208_0:130$ ip community-list expanded c1 permit 11049 ^65000:4_0:208_0:131$ ip community-list expanded c1 permit 11050 ^65000:4_0:208_0:132$ ip community-list expanded c1 permit 11051 ^65000:4_0:208_0:133$ ip community-list expanded c1 permit 11052 ^65000:4_0:208_0:134$ ip community-list expanded c1 permit 11053 ^65000:4_0:208_0:135$ ip community-list expanded c1 permit 11054 ^65000:4_0:208_0:136$ ip community-list expanded c1 permit 11055 ^65000:4_0:208_0:137$ ip community-list expanded c1 permit 11056 ^65000:4_0:208_0:138$ ip community-list expanded c1 permit 11057 ^65000:4_0:208_0:139$ ip community-list expanded c1 permit 11058 ^65000:4_0:208_0:140$ ip community-list expanded c1 permit 11059 ^65000:4_0:208_0:141$ ip community-list expanded c1 permit 11060 ^65000:4_0:208_0:142$ ip community-list expanded c1 permit 11061 ^65000:4_0:208_0:143$ ip community-list expanded c1 permit 11062 ^65000:4_0:208_0:144$ ip community-list expanded c1 permit 11063 ^65000:4_0:208_0:145$ ip community-list expanded c1 permit 11064 ^65000:4_0:208_0:146$ ip community-list expanded c1 permit 11065 ^65000:4_0:208_0:147$ ip community-list expanded c1 permit 11066 ^65000:4_0:208_0:148$ ip community-list expanded c1 permit 11067 ^65000:4_0:208_0:149$ ip community-list expanded c1 permit 11068 ^65000:4_0:208_0:150$ ip community-list expanded c1 permit 11069 ^65000:4_0:208_0:151$ ip community-list expanded c1 permit 11070 ^65000:4_0:208_0:152$ ip community-list expanded c1 permit 11071 ^65000:4_0:208_0:153$ ip community-list expanded c1 permit 11072 ^65000:4_0:208_0:154$ ip community-list expanded c1 permit 11073 ^65000:4_0:208_0:155$ ip community-list expanded c1 permit 11074 ^65000:4_0:208_0:156$ ip community-list expanded c1 permit 11075 ^65000:4_0:208_0:157$ ip community-list expanded c1 permit 11076 ^65000:4_0:208_0:158$ ip community-list expanded c1 permit 11077 ^65000:4_0:208_0:159$ ip community-list expanded c1 permit 11078 ^65000:4_0:208_0:160$ ip community-list expanded c1 permit 11079 ^65000:4_0:208_0:161$ ip community-list expanded c1 permit 11080 ^65000:4_0:208_0:162$ ip community-list expanded c1 permit 11081 ^65000:4_0:208_0:163$ ip community-list expanded c1 permit 11082 ^65000:4_0:208_0:164$ ip community-list expanded c1 permit 11083 ^65000:4_0:208_0:165$ ip community-list expanded c1 permit 11084 ^65000:4_0:208_0:166$ ip community-list expanded c1 permit 11085 ^65000:4_0:208_0:167$ ip community-list expanded c1 permit 11086 ^65000:4_0:208_0:168$ ip community-list expanded c1 permit 11087 ^65000:4_0:208_0:169$ ip community-list expanded c1 permit 11088 ^65000:4_0:208_0:170$ ip community-list expanded c1 permit 11089 ^65000:4_0:208_0:171$ ip community-list expanded c1 permit 11090 ^65000:4_0:208_0:172$ ip community-list expanded c1 permit 11091 ^65000:4_0:208_0:173$ ip community-list expanded c1 permit 11092 ^65000:4_0:208_0:174$ ip community-list expanded c1 permit 11093 ^65000:4_0:208_0:175$ ip community-list expanded c1 permit 11094 ^65000:4_0:208_0:176$ ip community-list expanded c1 permit 11095 ^65000:4_0:208_0:177$ ip community-list expanded c1 permit 11096 ^65000:4_0:208_0:178$ ip community-list expanded c1 permit 11097 ^65000:4_0:208_0:179$ ip community-list expanded c1 permit 11098 ^65000:4_0:208_0:180$ ip community-list expanded c1 permit 11099 ^65000:4_0:208_0:181$ ip community-list expanded c1 permit 11100 ^65000:4_0:208_0:182$ ip community-list expanded c1 permit 11101 ^65000:4_0:208_0:183$ ip community-list expanded c1 permit 11102 ^65000:4_0:208_0:184$ ip community-list expanded c1 permit 11103 ^65000:4_0:208_0:185$ ip community-list expanded c1 permit 11104 ^65000:4_0:208_0:186$ ip community-list expanded c1 permit 11105 ^65000:4_0:208_0:187$ ip community-list expanded c1 permit 11106 ^65000:4_0:208_0:188$ ip community-list expanded c1 permit 11107 ^65000:4_0:208_0:189$ ip community-list expanded c1 permit 11108 ^65000:4_0:208_0:190$ ip community-list expanded c1 permit 11109 ^65000:4_0:208_0:191$ ip community-list expanded c1 permit 11110 ^65000:4_0:208_0:192$ ip community-list expanded c1 permit 11111 ^65000:4_0:208_0:193$ ip community-list expanded c1 permit 11112 ^65000:4_0:208_0:194$ ip community-list expanded c1 permit 11113 ^65000:4_0:208_0:195$ ip community-list expanded c1 permit 11114 ^65000:4_0:208_0:196$ ip community-list expanded c1 permit 11115 ^65000:4_0:208_0:197$ ip community-list expanded c1 permit 11116 ^65000:4_0:208_0:198$ ip community-list expanded c1 permit 11117 ^65000:4_0:208_0:199$ ip community-list expanded c1 permit 11118 ^65000:4_0:208_0:200$ ip community-list expanded c1 permit 11119 ^65000:4_0:208_0:201$ ip community-list expanded c1 permit 11120 ^65000:4_0:208_0:202$ ip community-list expanded c1 permit 11121 ^65000:4_0:208_0:203$ ip community-list expanded c1 permit 11122 ^65000:4_0:208_0:204$ ip community-list expanded c1 permit 11123 ^65000:4_0:208_0:205$ ip community-list expanded c1 permit 11124 ^65000:4_0:208_0:206$ ip community-list expanded c1 permit 11125 ^65000:3_0:208_0:207$ ip community-list expanded c1 permit 11126 ^65000:4_0:208_0:207$ ip community-list expanded c1 permit 11127 ^65000:4_0:208_0:208$ ip community-list expanded c1 permit 11128 ^65000:4_0:209_0:105$ ip community-list expanded c1 permit 11129 ^65000:4_0:209_0:106$ ip community-list expanded c1 permit 11130 ^65000:4_0:209_0:107$ ip community-list expanded c1 permit 11131 ^65000:4_0:209_0:108$ ip community-list expanded c1 permit 11132 ^65000:4_0:209_0:109$ ip community-list expanded c1 permit 11133 ^65000:4_0:209_0:110$ ip community-list expanded c1 permit 11134 ^65000:4_0:209_0:111$ ip community-list expanded c1 permit 11135 ^65000:4_0:209_0:112$ ip community-list expanded c1 permit 11136 ^65000:4_0:209_0:113$ ip community-list expanded c1 permit 11137 ^65000:4_0:209_0:114$ ip community-list expanded c1 permit 11138 ^65000:4_0:209_0:115$ ip community-list expanded c1 permit 11139 ^65000:4_0:209_0:116$ ip community-list expanded c1 permit 11140 ^65000:4_0:209_0:117$ ip community-list expanded c1 permit 11141 ^65000:4_0:209_0:118$ ip community-list expanded c1 permit 11142 ^65000:4_0:209_0:119$ ip community-list expanded c1 permit 11143 ^65000:4_0:209_0:120$ ip community-list expanded c1 permit 11144 ^65000:4_0:209_0:121$ ip community-list expanded c1 permit 11145 ^65000:4_0:209_0:122$ ip community-list expanded c1 permit 11146 ^65000:4_0:209_0:123$ ip community-list expanded c1 permit 11147 ^65000:4_0:209_0:124$ ip community-list expanded c1 permit 11148 ^65000:4_0:209_0:125$ ip community-list expanded c1 permit 11149 ^65000:4_0:209_0:126$ ip community-list expanded c1 permit 11150 ^65000:4_0:209_0:127$ ip community-list expanded c1 permit 11151 ^65000:4_0:209_0:128$ ip community-list expanded c1 permit 11152 ^65000:4_0:209_0:129$ ip community-list expanded c1 permit 11153 ^65000:4_0:209_0:130$ ip community-list expanded c1 permit 11154 ^65000:4_0:209_0:131$ ip community-list expanded c1 permit 11155 ^65000:4_0:209_0:132$ ip community-list expanded c1 permit 11156 ^65000:4_0:209_0:133$ ip community-list expanded c1 permit 11157 ^65000:4_0:209_0:134$ ip community-list expanded c1 permit 11158 ^65000:4_0:209_0:135$ ip community-list expanded c1 permit 11159 ^65000:4_0:209_0:136$ ip community-list expanded c1 permit 11160 ^65000:4_0:209_0:137$ ip community-list expanded c1 permit 11161 ^65000:4_0:209_0:138$ ip community-list expanded c1 permit 11162 ^65000:4_0:209_0:139$ ip community-list expanded c1 permit 11163 ^65000:4_0:209_0:140$ ip community-list expanded c1 permit 11164 ^65000:4_0:209_0:141$ ip community-list expanded c1 permit 11165 ^65000:4_0:209_0:142$ ip community-list expanded c1 permit 11166 ^65000:4_0:209_0:143$ ip community-list expanded c1 permit 11167 ^65000:4_0:209_0:144$ ip community-list expanded c1 permit 11168 ^65000:4_0:209_0:145$ ip community-list expanded c1 permit 11169 ^65000:4_0:209_0:146$ ip community-list expanded c1 permit 11170 ^65000:4_0:209_0:147$ ip community-list expanded c1 permit 11171 ^65000:4_0:209_0:148$ ip community-list expanded c1 permit 11172 ^65000:4_0:209_0:149$ ip community-list expanded c1 permit 11173 ^65000:4_0:209_0:150$ ip community-list expanded c1 permit 11174 ^65000:4_0:209_0:151$ ip community-list expanded c1 permit 11175 ^65000:4_0:209_0:152$ ip community-list expanded c1 permit 11176 ^65000:4_0:209_0:153$ ip community-list expanded c1 permit 11177 ^65000:4_0:209_0:154$ ip community-list expanded c1 permit 11178 ^65000:4_0:209_0:155$ ip community-list expanded c1 permit 11179 ^65000:4_0:209_0:156$ ip community-list expanded c1 permit 11180 ^65000:4_0:209_0:157$ ip community-list expanded c1 permit 11181 ^65000:4_0:209_0:158$ ip community-list expanded c1 permit 11182 ^65000:4_0:209_0:159$ ip community-list expanded c1 permit 11183 ^65000:4_0:209_0:160$ ip community-list expanded c1 permit 11184 ^65000:4_0:209_0:161$ ip community-list expanded c1 permit 11185 ^65000:4_0:209_0:162$ ip community-list expanded c1 permit 11186 ^65000:4_0:209_0:163$ ip community-list expanded c1 permit 11187 ^65000:4_0:209_0:164$ ip community-list expanded c1 permit 11188 ^65000:4_0:209_0:165$ ip community-list expanded c1 permit 11189 ^65000:4_0:209_0:166$ ip community-list expanded c1 permit 11190 ^65000:4_0:209_0:167$ ip community-list expanded c1 permit 11191 ^65000:4_0:209_0:168$ ip community-list expanded c1 permit 11192 ^65000:4_0:209_0:169$ ip community-list expanded c1 permit 11193 ^65000:4_0:209_0:170$ ip community-list expanded c1 permit 11194 ^65000:4_0:209_0:171$ ip community-list expanded c1 permit 11195 ^65000:4_0:209_0:172$ ip community-list expanded c1 permit 11196 ^65000:4_0:209_0:173$ ip community-list expanded c1 permit 11197 ^65000:4_0:209_0:174$ ip community-list expanded c1 permit 11198 ^65000:4_0:209_0:175$ ip community-list expanded c1 permit 11199 ^65000:4_0:209_0:176$ ip community-list expanded c1 permit 11200 ^65000:4_0:209_0:177$ ip community-list expanded c1 permit 11201 ^65000:4_0:209_0:178$ ip community-list expanded c1 permit 11202 ^65000:4_0:209_0:179$ ip community-list expanded c1 permit 11203 ^65000:4_0:209_0:180$ ip community-list expanded c1 permit 11204 ^65000:4_0:209_0:181$ ip community-list expanded c1 permit 11205 ^65000:4_0:209_0:182$ ip community-list expanded c1 permit 11206 ^65000:4_0:209_0:183$ ip community-list expanded c1 permit 11207 ^65000:4_0:209_0:184$ ip community-list expanded c1 permit 11208 ^65000:4_0:209_0:185$ ip community-list expanded c1 permit 11209 ^65000:4_0:209_0:186$ ip community-list expanded c1 permit 11210 ^65000:4_0:209_0:187$ ip community-list expanded c1 permit 11211 ^65000:4_0:209_0:188$ ip community-list expanded c1 permit 11212 ^65000:4_0:209_0:189$ ip community-list expanded c1 permit 11213 ^65000:4_0:209_0:190$ ip community-list expanded c1 permit 11214 ^65000:4_0:209_0:191$ ip community-list expanded c1 permit 11215 ^65000:4_0:209_0:192$ ip community-list expanded c1 permit 11216 ^65000:4_0:209_0:193$ ip community-list expanded c1 permit 11217 ^65000:4_0:209_0:194$ ip community-list expanded c1 permit 11218 ^65000:4_0:209_0:195$ ip community-list expanded c1 permit 11219 ^65000:4_0:209_0:196$ ip community-list expanded c1 permit 11220 ^65000:4_0:209_0:197$ ip community-list expanded c1 permit 11221 ^65000:4_0:209_0:198$ ip community-list expanded c1 permit 11222 ^65000:4_0:209_0:199$ ip community-list expanded c1 permit 11223 ^65000:4_0:209_0:200$ ip community-list expanded c1 permit 11224 ^65000:4_0:209_0:201$ ip community-list expanded c1 permit 11225 ^65000:4_0:209_0:202$ ip community-list expanded c1 permit 11226 ^65000:4_0:209_0:203$ ip community-list expanded c1 permit 11227 ^65000:4_0:209_0:204$ ip community-list expanded c1 permit 11228 ^65000:4_0:209_0:205$ ip community-list expanded c1 permit 11229 ^65000:4_0:209_0:206$ ip community-list expanded c1 permit 11230 ^65000:4_0:209_0:207$ ip community-list expanded c1 permit 11231 ^65000:3_0:209_0:208$ ip community-list expanded c1 permit 11232 ^65000:4_0:209_0:208$ ip community-list expanded c1 permit 11233 ^65000:4_0:209_0:209$ ip community-list expanded c1 permit 11234 ^65000:4_0:210_0:106$ ip community-list expanded c1 permit 11235 ^65000:4_0:210_0:107$ ip community-list expanded c1 permit 11236 ^65000:4_0:210_0:108$ ip community-list expanded c1 permit 11237 ^65000:4_0:210_0:109$ ip community-list expanded c1 permit 11238 ^65000:4_0:210_0:110$ ip community-list expanded c1 permit 11239 ^65000:4_0:210_0:111$ ip community-list expanded c1 permit 11240 ^65000:4_0:210_0:112$ ip community-list expanded c1 permit 11241 ^65000:4_0:210_0:113$ ip community-list expanded c1 permit 11242 ^65000:4_0:210_0:114$ ip community-list expanded c1 permit 11243 ^65000:4_0:210_0:115$ ip community-list expanded c1 permit 11244 ^65000:4_0:210_0:116$ ip community-list expanded c1 permit 11245 ^65000:4_0:210_0:117$ ip community-list expanded c1 permit 11246 ^65000:4_0:210_0:118$ ip community-list expanded c1 permit 11247 ^65000:4_0:210_0:119$ ip community-list expanded c1 permit 11248 ^65000:4_0:210_0:120$ ip community-list expanded c1 permit 11249 ^65000:4_0:210_0:121$ ip community-list expanded c1 permit 11250 ^65000:4_0:210_0:122$ ip community-list expanded c1 permit 11251 ^65000:4_0:210_0:123$ ip community-list expanded c1 permit 11252 ^65000:4_0:210_0:124$ ip community-list expanded c1 permit 11253 ^65000:4_0:210_0:125$ ip community-list expanded c1 permit 11254 ^65000:4_0:210_0:126$ ip community-list expanded c1 permit 11255 ^65000:4_0:210_0:127$ ip community-list expanded c1 permit 11256 ^65000:4_0:210_0:128$ ip community-list expanded c1 permit 11257 ^65000:4_0:210_0:129$ ip community-list expanded c1 permit 11258 ^65000:4_0:210_0:130$ ip community-list expanded c1 permit 11259 ^65000:4_0:210_0:131$ ip community-list expanded c1 permit 11260 ^65000:4_0:210_0:132$ ip community-list expanded c1 permit 11261 ^65000:4_0:210_0:133$ ip community-list expanded c1 permit 11262 ^65000:4_0:210_0:134$ ip community-list expanded c1 permit 11263 ^65000:4_0:210_0:135$ ip community-list expanded c1 permit 11264 ^65000:4_0:210_0:136$ ip community-list expanded c1 permit 11265 ^65000:4_0:210_0:137$ ip community-list expanded c1 permit 11266 ^65000:4_0:210_0:138$ ip community-list expanded c1 permit 11267 ^65000:4_0:210_0:139$ ip community-list expanded c1 permit 11268 ^65000:4_0:210_0:140$ ip community-list expanded c1 permit 11269 ^65000:4_0:210_0:141$ ip community-list expanded c1 permit 11270 ^65000:4_0:210_0:142$ ip community-list expanded c1 permit 11271 ^65000:4_0:210_0:143$ ip community-list expanded c1 permit 11272 ^65000:4_0:210_0:144$ ip community-list expanded c1 permit 11273 ^65000:4_0:210_0:145$ ip community-list expanded c1 permit 11274 ^65000:4_0:210_0:146$ ip community-list expanded c1 permit 11275 ^65000:4_0:210_0:147$ ip community-list expanded c1 permit 11276 ^65000:4_0:210_0:148$ ip community-list expanded c1 permit 11277 ^65000:4_0:210_0:149$ ip community-list expanded c1 permit 11278 ^65000:4_0:210_0:150$ ip community-list expanded c1 permit 11279 ^65000:4_0:210_0:151$ ip community-list expanded c1 permit 11280 ^65000:4_0:210_0:152$ ip community-list expanded c1 permit 11281 ^65000:4_0:210_0:153$ ip community-list expanded c1 permit 11282 ^65000:4_0:210_0:154$ ip community-list expanded c1 permit 11283 ^65000:4_0:210_0:155$ ip community-list expanded c1 permit 11284 ^65000:4_0:210_0:156$ ip community-list expanded c1 permit 11285 ^65000:4_0:210_0:157$ ip community-list expanded c1 permit 11286 ^65000:4_0:210_0:158$ ip community-list expanded c1 permit 11287 ^65000:4_0:210_0:159$ ip community-list expanded c1 permit 11288 ^65000:4_0:210_0:160$ ip community-list expanded c1 permit 11289 ^65000:4_0:210_0:161$ ip community-list expanded c1 permit 11290 ^65000:4_0:210_0:162$ ip community-list expanded c1 permit 11291 ^65000:4_0:210_0:163$ ip community-list expanded c1 permit 11292 ^65000:4_0:210_0:164$ ip community-list expanded c1 permit 11293 ^65000:4_0:210_0:165$ ip community-list expanded c1 permit 11294 ^65000:4_0:210_0:166$ ip community-list expanded c1 permit 11295 ^65000:4_0:210_0:167$ ip community-list expanded c1 permit 11296 ^65000:4_0:210_0:168$ ip community-list expanded c1 permit 11297 ^65000:4_0:210_0:169$ ip community-list expanded c1 permit 11298 ^65000:4_0:210_0:170$ ip community-list expanded c1 permit 11299 ^65000:4_0:210_0:171$ ip community-list expanded c1 permit 11300 ^65000:4_0:210_0:172$ ip community-list expanded c1 permit 11301 ^65000:4_0:210_0:173$ ip community-list expanded c1 permit 11302 ^65000:4_0:210_0:174$ ip community-list expanded c1 permit 11303 ^65000:4_0:210_0:175$ ip community-list expanded c1 permit 11304 ^65000:4_0:210_0:176$ ip community-list expanded c1 permit 11305 ^65000:4_0:210_0:177$ ip community-list expanded c1 permit 11306 ^65000:4_0:210_0:178$ ip community-list expanded c1 permit 11307 ^65000:4_0:210_0:179$ ip community-list expanded c1 permit 11308 ^65000:4_0:210_0:180$ ip community-list expanded c1 permit 11309 ^65000:4_0:210_0:181$ ip community-list expanded c1 permit 11310 ^65000:4_0:210_0:182$ ip community-list expanded c1 permit 11311 ^65000:4_0:210_0:183$ ip community-list expanded c1 permit 11312 ^65000:4_0:210_0:184$ ip community-list expanded c1 permit 11313 ^65000:4_0:210_0:185$ ip community-list expanded c1 permit 11314 ^65000:4_0:210_0:186$ ip community-list expanded c1 permit 11315 ^65000:4_0:210_0:187$ ip community-list expanded c1 permit 11316 ^65000:4_0:210_0:188$ ip community-list expanded c1 permit 11317 ^65000:4_0:210_0:189$ ip community-list expanded c1 permit 11318 ^65000:4_0:210_0:190$ ip community-list expanded c1 permit 11319 ^65000:4_0:210_0:191$ ip community-list expanded c1 permit 11320 ^65000:4_0:210_0:192$ ip community-list expanded c1 permit 11321 ^65000:4_0:210_0:193$ ip community-list expanded c1 permit 11322 ^65000:4_0:210_0:194$ ip community-list expanded c1 permit 11323 ^65000:4_0:210_0:195$ ip community-list expanded c1 permit 11324 ^65000:4_0:210_0:196$ ip community-list expanded c1 permit 11325 ^65000:4_0:210_0:197$ ip community-list expanded c1 permit 11326 ^65000:4_0:210_0:198$ ip community-list expanded c1 permit 11327 ^65000:4_0:210_0:199$ ip community-list expanded c1 permit 11328 ^65000:4_0:210_0:200$ ip community-list expanded c1 permit 11329 ^65000:4_0:210_0:201$ ip community-list expanded c1 permit 11330 ^65000:4_0:210_0:202$ ip community-list expanded c1 permit 11331 ^65000:4_0:210_0:203$ ip community-list expanded c1 permit 11332 ^65000:4_0:210_0:204$ ip community-list expanded c1 permit 11333 ^65000:4_0:210_0:205$ ip community-list expanded c1 permit 11334 ^65000:4_0:210_0:206$ ip community-list expanded c1 permit 11335 ^65000:4_0:210_0:207$ ip community-list expanded c1 permit 11336 ^65000:4_0:210_0:208$ ip community-list expanded c1 permit 11337 ^65000:3_0:210_0:209$ ip community-list expanded c1 permit 11338 ^65000:4_0:210_0:209$ ip community-list expanded c1 permit 11339 ^65000:4_0:210_0:210$ ip community-list expanded c1 permit 11340 ^65000:4_0:211_0:106$ ip community-list expanded c1 permit 11341 ^65000:4_0:211_0:107$ ip community-list expanded c1 permit 11342 ^65000:4_0:211_0:108$ ip community-list expanded c1 permit 11343 ^65000:4_0:211_0:109$ ip community-list expanded c1 permit 11344 ^65000:4_0:211_0:110$ ip community-list expanded c1 permit 11345 ^65000:4_0:211_0:111$ ip community-list expanded c1 permit 11346 ^65000:4_0:211_0:112$ ip community-list expanded c1 permit 11347 ^65000:4_0:211_0:113$ ip community-list expanded c1 permit 11348 ^65000:4_0:211_0:114$ ip community-list expanded c1 permit 11349 ^65000:4_0:211_0:115$ ip community-list expanded c1 permit 11350 ^65000:4_0:211_0:116$ ip community-list expanded c1 permit 11351 ^65000:4_0:211_0:117$ ip community-list expanded c1 permit 11352 ^65000:4_0:211_0:118$ ip community-list expanded c1 permit 11353 ^65000:4_0:211_0:119$ ip community-list expanded c1 permit 11354 ^65000:4_0:211_0:120$ ip community-list expanded c1 permit 11355 ^65000:4_0:211_0:121$ ip community-list expanded c1 permit 11356 ^65000:4_0:211_0:122$ ip community-list expanded c1 permit 11357 ^65000:4_0:211_0:123$ ip community-list expanded c1 permit 11358 ^65000:4_0:211_0:124$ ip community-list expanded c1 permit 11359 ^65000:4_0:211_0:125$ ip community-list expanded c1 permit 11360 ^65000:4_0:211_0:126$ ip community-list expanded c1 permit 11361 ^65000:4_0:211_0:127$ ip community-list expanded c1 permit 11362 ^65000:4_0:211_0:128$ ip community-list expanded c1 permit 11363 ^65000:4_0:211_0:129$ ip community-list expanded c1 permit 11364 ^65000:4_0:211_0:130$ ip community-list expanded c1 permit 11365 ^65000:4_0:211_0:131$ ip community-list expanded c1 permit 11366 ^65000:4_0:211_0:132$ ip community-list expanded c1 permit 11367 ^65000:4_0:211_0:133$ ip community-list expanded c1 permit 11368 ^65000:4_0:211_0:134$ ip community-list expanded c1 permit 11369 ^65000:4_0:211_0:135$ ip community-list expanded c1 permit 11370 ^65000:4_0:211_0:136$ ip community-list expanded c1 permit 11371 ^65000:4_0:211_0:137$ ip community-list expanded c1 permit 11372 ^65000:4_0:211_0:138$ ip community-list expanded c1 permit 11373 ^65000:4_0:211_0:139$ ip community-list expanded c1 permit 11374 ^65000:4_0:211_0:140$ ip community-list expanded c1 permit 11375 ^65000:4_0:211_0:141$ ip community-list expanded c1 permit 11376 ^65000:4_0:211_0:142$ ip community-list expanded c1 permit 11377 ^65000:4_0:211_0:143$ ip community-list expanded c1 permit 11378 ^65000:4_0:211_0:144$ ip community-list expanded c1 permit 11379 ^65000:4_0:211_0:145$ ip community-list expanded c1 permit 11380 ^65000:4_0:211_0:146$ ip community-list expanded c1 permit 11381 ^65000:4_0:211_0:147$ ip community-list expanded c1 permit 11382 ^65000:4_0:211_0:148$ ip community-list expanded c1 permit 11383 ^65000:4_0:211_0:149$ ip community-list expanded c1 permit 11384 ^65000:4_0:211_0:150$ ip community-list expanded c1 permit 11385 ^65000:4_0:211_0:151$ ip community-list expanded c1 permit 11386 ^65000:4_0:211_0:152$ ip community-list expanded c1 permit 11387 ^65000:4_0:211_0:153$ ip community-list expanded c1 permit 11388 ^65000:4_0:211_0:154$ ip community-list expanded c1 permit 11389 ^65000:4_0:211_0:155$ ip community-list expanded c1 permit 11390 ^65000:4_0:211_0:156$ ip community-list expanded c1 permit 11391 ^65000:4_0:211_0:157$ ip community-list expanded c1 permit 11392 ^65000:4_0:211_0:158$ ip community-list expanded c1 permit 11393 ^65000:4_0:211_0:159$ ip community-list expanded c1 permit 11394 ^65000:4_0:211_0:160$ ip community-list expanded c1 permit 11395 ^65000:4_0:211_0:161$ ip community-list expanded c1 permit 11396 ^65000:4_0:211_0:162$ ip community-list expanded c1 permit 11397 ^65000:4_0:211_0:163$ ip community-list expanded c1 permit 11398 ^65000:4_0:211_0:164$ ip community-list expanded c1 permit 11399 ^65000:4_0:211_0:165$ ip community-list expanded c1 permit 11400 ^65000:4_0:211_0:166$ ip community-list expanded c1 permit 11401 ^65000:4_0:211_0:167$ ip community-list expanded c1 permit 11402 ^65000:4_0:211_0:168$ ip community-list expanded c1 permit 11403 ^65000:4_0:211_0:169$ ip community-list expanded c1 permit 11404 ^65000:4_0:211_0:170$ ip community-list expanded c1 permit 11405 ^65000:4_0:211_0:171$ ip community-list expanded c1 permit 11406 ^65000:4_0:211_0:172$ ip community-list expanded c1 permit 11407 ^65000:4_0:211_0:173$ ip community-list expanded c1 permit 11408 ^65000:4_0:211_0:174$ ip community-list expanded c1 permit 11409 ^65000:4_0:211_0:175$ ip community-list expanded c1 permit 11410 ^65000:4_0:211_0:176$ ip community-list expanded c1 permit 11411 ^65000:4_0:211_0:177$ ip community-list expanded c1 permit 11412 ^65000:4_0:211_0:178$ ip community-list expanded c1 permit 11413 ^65000:4_0:211_0:179$ ip community-list expanded c1 permit 11414 ^65000:4_0:211_0:180$ ip community-list expanded c1 permit 11415 ^65000:4_0:211_0:181$ ip community-list expanded c1 permit 11416 ^65000:4_0:211_0:182$ ip community-list expanded c1 permit 11417 ^65000:4_0:211_0:183$ ip community-list expanded c1 permit 11418 ^65000:4_0:211_0:184$ ip community-list expanded c1 permit 11419 ^65000:4_0:211_0:185$ ip community-list expanded c1 permit 11420 ^65000:4_0:211_0:186$ ip community-list expanded c1 permit 11421 ^65000:4_0:211_0:187$ ip community-list expanded c1 permit 11422 ^65000:4_0:211_0:188$ ip community-list expanded c1 permit 11423 ^65000:4_0:211_0:189$ ip community-list expanded c1 permit 11424 ^65000:4_0:211_0:190$ ip community-list expanded c1 permit 11425 ^65000:4_0:211_0:191$ ip community-list expanded c1 permit 11426 ^65000:4_0:211_0:192$ ip community-list expanded c1 permit 11427 ^65000:4_0:211_0:193$ ip community-list expanded c1 permit 11428 ^65000:4_0:211_0:194$ ip community-list expanded c1 permit 11429 ^65000:4_0:211_0:195$ ip community-list expanded c1 permit 11430 ^65000:4_0:211_0:196$ ip community-list expanded c1 permit 11431 ^65000:4_0:211_0:197$ ip community-list expanded c1 permit 11432 ^65000:4_0:211_0:198$ ip community-list expanded c1 permit 11433 ^65000:4_0:211_0:199$ ip community-list expanded c1 permit 11434 ^65000:4_0:211_0:200$ ip community-list expanded c1 permit 11435 ^65000:4_0:211_0:201$ ip community-list expanded c1 permit 11436 ^65000:4_0:211_0:202$ ip community-list expanded c1 permit 11437 ^65000:4_0:211_0:203$ ip community-list expanded c1 permit 11438 ^65000:4_0:211_0:204$ ip community-list expanded c1 permit 11439 ^65000:4_0:211_0:205$ ip community-list expanded c1 permit 11440 ^65000:4_0:211_0:206$ ip community-list expanded c1 permit 11441 ^65000:4_0:211_0:207$ ip community-list expanded c1 permit 11442 ^65000:4_0:211_0:208$ ip community-list expanded c1 permit 11443 ^65000:4_0:211_0:209$ ip community-list expanded c1 permit 11444 ^65000:3_0:211_0:210$ ip community-list expanded c1 permit 11445 ^65000:4_0:211_0:210$ ip community-list expanded c1 permit 11446 ^65000:4_0:211_0:211$ ip community-list expanded c1 permit 11447 ^65000:4_0:212_0:107$ ip community-list expanded c1 permit 11448 ^65000:4_0:212_0:108$ ip community-list expanded c1 permit 11449 ^65000:4_0:212_0:109$ ip community-list expanded c1 permit 11450 ^65000:4_0:212_0:110$ ip community-list expanded c1 permit 11451 ^65000:4_0:212_0:111$ ip community-list expanded c1 permit 11452 ^65000:4_0:212_0:112$ ip community-list expanded c1 permit 11453 ^65000:4_0:212_0:113$ ip community-list expanded c1 permit 11454 ^65000:4_0:212_0:114$ ip community-list expanded c1 permit 11455 ^65000:4_0:212_0:115$ ip community-list expanded c1 permit 11456 ^65000:4_0:212_0:116$ ip community-list expanded c1 permit 11457 ^65000:4_0:212_0:117$ ip community-list expanded c1 permit 11458 ^65000:4_0:212_0:118$ ip community-list expanded c1 permit 11459 ^65000:4_0:212_0:119$ ip community-list expanded c1 permit 11460 ^65000:4_0:212_0:120$ ip community-list expanded c1 permit 11461 ^65000:4_0:212_0:121$ ip community-list expanded c1 permit 11462 ^65000:4_0:212_0:122$ ip community-list expanded c1 permit 11463 ^65000:4_0:212_0:123$ ip community-list expanded c1 permit 11464 ^65000:4_0:212_0:124$ ip community-list expanded c1 permit 11465 ^65000:4_0:212_0:125$ ip community-list expanded c1 permit 11466 ^65000:4_0:212_0:126$ ip community-list expanded c1 permit 11467 ^65000:4_0:212_0:127$ ip community-list expanded c1 permit 11468 ^65000:4_0:212_0:128$ ip community-list expanded c1 permit 11469 ^65000:4_0:212_0:129$ ip community-list expanded c1 permit 11470 ^65000:4_0:212_0:130$ ip community-list expanded c1 permit 11471 ^65000:4_0:212_0:131$ ip community-list expanded c1 permit 11472 ^65000:4_0:212_0:132$ ip community-list expanded c1 permit 11473 ^65000:4_0:212_0:133$ ip community-list expanded c1 permit 11474 ^65000:4_0:212_0:134$ ip community-list expanded c1 permit 11475 ^65000:4_0:212_0:135$ ip community-list expanded c1 permit 11476 ^65000:4_0:212_0:136$ ip community-list expanded c1 permit 11477 ^65000:4_0:212_0:137$ ip community-list expanded c1 permit 11478 ^65000:4_0:212_0:138$ ip community-list expanded c1 permit 11479 ^65000:4_0:212_0:139$ ip community-list expanded c1 permit 11480 ^65000:4_0:212_0:140$ ip community-list expanded c1 permit 11481 ^65000:4_0:212_0:141$ ip community-list expanded c1 permit 11482 ^65000:4_0:212_0:142$ ip community-list expanded c1 permit 11483 ^65000:4_0:212_0:143$ ip community-list expanded c1 permit 11484 ^65000:4_0:212_0:144$ ip community-list expanded c1 permit 11485 ^65000:4_0:212_0:145$ ip community-list expanded c1 permit 11486 ^65000:4_0:212_0:146$ ip community-list expanded c1 permit 11487 ^65000:4_0:212_0:147$ ip community-list expanded c1 permit 11488 ^65000:4_0:212_0:148$ ip community-list expanded c1 permit 11489 ^65000:4_0:212_0:149$ ip community-list expanded c1 permit 11490 ^65000:4_0:212_0:150$ ip community-list expanded c1 permit 11491 ^65000:4_0:212_0:151$ ip community-list expanded c1 permit 11492 ^65000:4_0:212_0:152$ ip community-list expanded c1 permit 11493 ^65000:4_0:212_0:153$ ip community-list expanded c1 permit 11494 ^65000:4_0:212_0:154$ ip community-list expanded c1 permit 11495 ^65000:4_0:212_0:155$ ip community-list expanded c1 permit 11496 ^65000:4_0:212_0:156$ ip community-list expanded c1 permit 11497 ^65000:4_0:212_0:157$ ip community-list expanded c1 permit 11498 ^65000:4_0:212_0:158$ ip community-list expanded c1 permit 11499 ^65000:4_0:212_0:159$ ip community-list expanded c1 permit 11500 ^65000:4_0:212_0:160$ ip community-list expanded c1 permit 11501 ^65000:4_0:212_0:161$ ip community-list expanded c1 permit 11502 ^65000:4_0:212_0:162$ ip community-list expanded c1 permit 11503 ^65000:4_0:212_0:163$ ip community-list expanded c1 permit 11504 ^65000:4_0:212_0:164$ ip community-list expanded c1 permit 11505 ^65000:4_0:212_0:165$ ip community-list expanded c1 permit 11506 ^65000:4_0:212_0:166$ ip community-list expanded c1 permit 11507 ^65000:4_0:212_0:167$ ip community-list expanded c1 permit 11508 ^65000:4_0:212_0:168$ ip community-list expanded c1 permit 11509 ^65000:4_0:212_0:169$ ip community-list expanded c1 permit 11510 ^65000:4_0:212_0:170$ ip community-list expanded c1 permit 11511 ^65000:4_0:212_0:171$ ip community-list expanded c1 permit 11512 ^65000:4_0:212_0:172$ ip community-list expanded c1 permit 11513 ^65000:4_0:212_0:173$ ip community-list expanded c1 permit 11514 ^65000:4_0:212_0:174$ ip community-list expanded c1 permit 11515 ^65000:4_0:212_0:175$ ip community-list expanded c1 permit 11516 ^65000:4_0:212_0:176$ ip community-list expanded c1 permit 11517 ^65000:4_0:212_0:177$ ip community-list expanded c1 permit 11518 ^65000:4_0:212_0:178$ ip community-list expanded c1 permit 11519 ^65000:4_0:212_0:179$ ip community-list expanded c1 permit 11520 ^65000:4_0:212_0:180$ ip community-list expanded c1 permit 11521 ^65000:4_0:212_0:181$ ip community-list expanded c1 permit 11522 ^65000:4_0:212_0:182$ ip community-list expanded c1 permit 11523 ^65000:4_0:212_0:183$ ip community-list expanded c1 permit 11524 ^65000:4_0:212_0:184$ ip community-list expanded c1 permit 11525 ^65000:4_0:212_0:185$ ip community-list expanded c1 permit 11526 ^65000:4_0:212_0:186$ ip community-list expanded c1 permit 11527 ^65000:4_0:212_0:187$ ip community-list expanded c1 permit 11528 ^65000:4_0:212_0:188$ ip community-list expanded c1 permit 11529 ^65000:4_0:212_0:189$ ip community-list expanded c1 permit 11530 ^65000:4_0:212_0:190$ ip community-list expanded c1 permit 11531 ^65000:4_0:212_0:191$ ip community-list expanded c1 permit 11532 ^65000:4_0:212_0:192$ ip community-list expanded c1 permit 11533 ^65000:4_0:212_0:193$ ip community-list expanded c1 permit 11534 ^65000:4_0:212_0:194$ ip community-list expanded c1 permit 11535 ^65000:4_0:212_0:195$ ip community-list expanded c1 permit 11536 ^65000:4_0:212_0:196$ ip community-list expanded c1 permit 11537 ^65000:4_0:212_0:197$ ip community-list expanded c1 permit 11538 ^65000:4_0:212_0:198$ ip community-list expanded c1 permit 11539 ^65000:4_0:212_0:199$ ip community-list expanded c1 permit 11540 ^65000:4_0:212_0:200$ ip community-list expanded c1 permit 11541 ^65000:4_0:212_0:201$ ip community-list expanded c1 permit 11542 ^65000:4_0:212_0:202$ ip community-list expanded c1 permit 11543 ^65000:4_0:212_0:203$ ip community-list expanded c1 permit 11544 ^65000:4_0:212_0:204$ ip community-list expanded c1 permit 11545 ^65000:4_0:212_0:205$ ip community-list expanded c1 permit 11546 ^65000:4_0:212_0:206$ ip community-list expanded c1 permit 11547 ^65000:4_0:212_0:207$ ip community-list expanded c1 permit 11548 ^65000:4_0:212_0:208$ ip community-list expanded c1 permit 11549 ^65000:4_0:212_0:209$ ip community-list expanded c1 permit 11550 ^65000:4_0:212_0:210$ ip community-list expanded c1 permit 11551 ^65000:3_0:212_0:211$ ip community-list expanded c1 permit 11552 ^65000:4_0:212_0:211$ ip community-list expanded c1 permit 11553 ^65000:4_0:212_0:212$ ip community-list expanded c1 permit 11554 ^65000:4_0:213_0:107$ ip community-list expanded c1 permit 11555 ^65000:4_0:213_0:108$ ip community-list expanded c1 permit 11556 ^65000:4_0:213_0:109$ ip community-list expanded c1 permit 11557 ^65000:4_0:213_0:110$ ip community-list expanded c1 permit 11558 ^65000:4_0:213_0:111$ ip community-list expanded c1 permit 11559 ^65000:4_0:213_0:112$ ip community-list expanded c1 permit 11560 ^65000:4_0:213_0:113$ ip community-list expanded c1 permit 11561 ^65000:4_0:213_0:114$ ip community-list expanded c1 permit 11562 ^65000:4_0:213_0:115$ ip community-list expanded c1 permit 11563 ^65000:4_0:213_0:116$ ip community-list expanded c1 permit 11564 ^65000:4_0:213_0:117$ ip community-list expanded c1 permit 11565 ^65000:4_0:213_0:118$ ip community-list expanded c1 permit 11566 ^65000:4_0:213_0:119$ ip community-list expanded c1 permit 11567 ^65000:4_0:213_0:120$ ip community-list expanded c1 permit 11568 ^65000:4_0:213_0:121$ ip community-list expanded c1 permit 11569 ^65000:4_0:213_0:122$ ip community-list expanded c1 permit 11570 ^65000:4_0:213_0:123$ ip community-list expanded c1 permit 11571 ^65000:4_0:213_0:124$ ip community-list expanded c1 permit 11572 ^65000:4_0:213_0:125$ ip community-list expanded c1 permit 11573 ^65000:4_0:213_0:126$ ip community-list expanded c1 permit 11574 ^65000:4_0:213_0:127$ ip community-list expanded c1 permit 11575 ^65000:4_0:213_0:128$ ip community-list expanded c1 permit 11576 ^65000:4_0:213_0:129$ ip community-list expanded c1 permit 11577 ^65000:4_0:213_0:130$ ip community-list expanded c1 permit 11578 ^65000:4_0:213_0:131$ ip community-list expanded c1 permit 11579 ^65000:4_0:213_0:132$ ip community-list expanded c1 permit 11580 ^65000:4_0:213_0:133$ ip community-list expanded c1 permit 11581 ^65000:4_0:213_0:134$ ip community-list expanded c1 permit 11582 ^65000:4_0:213_0:135$ ip community-list expanded c1 permit 11583 ^65000:4_0:213_0:136$ ip community-list expanded c1 permit 11584 ^65000:4_0:213_0:137$ ip community-list expanded c1 permit 11585 ^65000:4_0:213_0:138$ ip community-list expanded c1 permit 11586 ^65000:4_0:213_0:139$ ip community-list expanded c1 permit 11587 ^65000:4_0:213_0:140$ ip community-list expanded c1 permit 11588 ^65000:4_0:213_0:141$ ip community-list expanded c1 permit 11589 ^65000:4_0:213_0:142$ ip community-list expanded c1 permit 11590 ^65000:4_0:213_0:143$ ip community-list expanded c1 permit 11591 ^65000:4_0:213_0:144$ ip community-list expanded c1 permit 11592 ^65000:4_0:213_0:145$ ip community-list expanded c1 permit 11593 ^65000:4_0:213_0:146$ ip community-list expanded c1 permit 11594 ^65000:4_0:213_0:147$ ip community-list expanded c1 permit 11595 ^65000:4_0:213_0:148$ ip community-list expanded c1 permit 11596 ^65000:4_0:213_0:149$ ip community-list expanded c1 permit 11597 ^65000:4_0:213_0:150$ ip community-list expanded c1 permit 11598 ^65000:4_0:213_0:151$ ip community-list expanded c1 permit 11599 ^65000:4_0:213_0:152$ ip community-list expanded c1 permit 11600 ^65000:4_0:213_0:153$ ip community-list expanded c1 permit 11601 ^65000:4_0:213_0:154$ ip community-list expanded c1 permit 11602 ^65000:4_0:213_0:155$ ip community-list expanded c1 permit 11603 ^65000:4_0:213_0:156$ ip community-list expanded c1 permit 11604 ^65000:4_0:213_0:157$ ip community-list expanded c1 permit 11605 ^65000:4_0:213_0:158$ ip community-list expanded c1 permit 11606 ^65000:4_0:213_0:159$ ip community-list expanded c1 permit 11607 ^65000:4_0:213_0:160$ ip community-list expanded c1 permit 11608 ^65000:4_0:213_0:161$ ip community-list expanded c1 permit 11609 ^65000:4_0:213_0:162$ ip community-list expanded c1 permit 11610 ^65000:4_0:213_0:163$ ip community-list expanded c1 permit 11611 ^65000:4_0:213_0:164$ ip community-list expanded c1 permit 11612 ^65000:4_0:213_0:165$ ip community-list expanded c1 permit 11613 ^65000:4_0:213_0:166$ ip community-list expanded c1 permit 11614 ^65000:4_0:213_0:167$ ip community-list expanded c1 permit 11615 ^65000:4_0:213_0:168$ ip community-list expanded c1 permit 11616 ^65000:4_0:213_0:169$ ip community-list expanded c1 permit 11617 ^65000:4_0:213_0:170$ ip community-list expanded c1 permit 11618 ^65000:4_0:213_0:171$ ip community-list expanded c1 permit 11619 ^65000:4_0:213_0:172$ ip community-list expanded c1 permit 11620 ^65000:4_0:213_0:173$ ip community-list expanded c1 permit 11621 ^65000:4_0:213_0:174$ ip community-list expanded c1 permit 11622 ^65000:4_0:213_0:175$ ip community-list expanded c1 permit 11623 ^65000:4_0:213_0:176$ ip community-list expanded c1 permit 11624 ^65000:4_0:213_0:177$ ip community-list expanded c1 permit 11625 ^65000:4_0:213_0:178$ ip community-list expanded c1 permit 11626 ^65000:4_0:213_0:179$ ip community-list expanded c1 permit 11627 ^65000:4_0:213_0:180$ ip community-list expanded c1 permit 11628 ^65000:4_0:213_0:181$ ip community-list expanded c1 permit 11629 ^65000:4_0:213_0:182$ ip community-list expanded c1 permit 11630 ^65000:4_0:213_0:183$ ip community-list expanded c1 permit 11631 ^65000:4_0:213_0:184$ ip community-list expanded c1 permit 11632 ^65000:4_0:213_0:185$ ip community-list expanded c1 permit 11633 ^65000:4_0:213_0:186$ ip community-list expanded c1 permit 11634 ^65000:4_0:213_0:187$ ip community-list expanded c1 permit 11635 ^65000:4_0:213_0:188$ ip community-list expanded c1 permit 11636 ^65000:4_0:213_0:189$ ip community-list expanded c1 permit 11637 ^65000:4_0:213_0:190$ ip community-list expanded c1 permit 11638 ^65000:4_0:213_0:191$ ip community-list expanded c1 permit 11639 ^65000:4_0:213_0:192$ ip community-list expanded c1 permit 11640 ^65000:4_0:213_0:193$ ip community-list expanded c1 permit 11641 ^65000:4_0:213_0:194$ ip community-list expanded c1 permit 11642 ^65000:4_0:213_0:195$ ip community-list expanded c1 permit 11643 ^65000:4_0:213_0:196$ ip community-list expanded c1 permit 11644 ^65000:4_0:213_0:197$ ip community-list expanded c1 permit 11645 ^65000:4_0:213_0:198$ ip community-list expanded c1 permit 11646 ^65000:4_0:213_0:199$ ip community-list expanded c1 permit 11647 ^65000:4_0:213_0:200$ ip community-list expanded c1 permit 11648 ^65000:4_0:213_0:201$ ip community-list expanded c1 permit 11649 ^65000:4_0:213_0:202$ ip community-list expanded c1 permit 11650 ^65000:4_0:213_0:203$ ip community-list expanded c1 permit 11651 ^65000:4_0:213_0:204$ ip community-list expanded c1 permit 11652 ^65000:4_0:213_0:205$ ip community-list expanded c1 permit 11653 ^65000:4_0:213_0:206$ ip community-list expanded c1 permit 11654 ^65000:4_0:213_0:207$ ip community-list expanded c1 permit 11655 ^65000:4_0:213_0:208$ ip community-list expanded c1 permit 11656 ^65000:4_0:213_0:209$ ip community-list expanded c1 permit 11657 ^65000:4_0:213_0:210$ ip community-list expanded c1 permit 11658 ^65000:4_0:213_0:211$ ip community-list expanded c1 permit 11659 ^65000:3_0:213_0:212$ ip community-list expanded c1 permit 11660 ^65000:4_0:213_0:212$ ip community-list expanded c1 permit 11661 ^65000:4_0:213_0:213$ ip community-list expanded c1 permit 11662 ^65000:4_0:214_0:108$ ip community-list expanded c1 permit 11663 ^65000:4_0:214_0:109$ ip community-list expanded c1 permit 11664 ^65000:4_0:214_0:110$ ip community-list expanded c1 permit 11665 ^65000:4_0:214_0:111$ ip community-list expanded c1 permit 11666 ^65000:4_0:214_0:112$ ip community-list expanded c1 permit 11667 ^65000:4_0:214_0:113$ ip community-list expanded c1 permit 11668 ^65000:4_0:214_0:114$ ip community-list expanded c1 permit 11669 ^65000:4_0:214_0:115$ ip community-list expanded c1 permit 11670 ^65000:4_0:214_0:116$ ip community-list expanded c1 permit 11671 ^65000:4_0:214_0:117$ ip community-list expanded c1 permit 11672 ^65000:4_0:214_0:118$ ip community-list expanded c1 permit 11673 ^65000:4_0:214_0:119$ ip community-list expanded c1 permit 11674 ^65000:4_0:214_0:120$ ip community-list expanded c1 permit 11675 ^65000:4_0:214_0:121$ ip community-list expanded c1 permit 11676 ^65000:4_0:214_0:122$ ip community-list expanded c1 permit 11677 ^65000:4_0:214_0:123$ ip community-list expanded c1 permit 11678 ^65000:4_0:214_0:124$ ip community-list expanded c1 permit 11679 ^65000:4_0:214_0:125$ ip community-list expanded c1 permit 11680 ^65000:4_0:214_0:126$ ip community-list expanded c1 permit 11681 ^65000:4_0:214_0:127$ ip community-list expanded c1 permit 11682 ^65000:4_0:214_0:128$ ip community-list expanded c1 permit 11683 ^65000:4_0:214_0:129$ ip community-list expanded c1 permit 11684 ^65000:4_0:214_0:130$ ip community-list expanded c1 permit 11685 ^65000:4_0:214_0:131$ ip community-list expanded c1 permit 11686 ^65000:4_0:214_0:132$ ip community-list expanded c1 permit 11687 ^65000:4_0:214_0:133$ ip community-list expanded c1 permit 11688 ^65000:4_0:214_0:134$ ip community-list expanded c1 permit 11689 ^65000:4_0:214_0:135$ ip community-list expanded c1 permit 11690 ^65000:4_0:214_0:136$ ip community-list expanded c1 permit 11691 ^65000:4_0:214_0:137$ ip community-list expanded c1 permit 11692 ^65000:4_0:214_0:138$ ip community-list expanded c1 permit 11693 ^65000:4_0:214_0:139$ ip community-list expanded c1 permit 11694 ^65000:4_0:214_0:140$ ip community-list expanded c1 permit 11695 ^65000:4_0:214_0:141$ ip community-list expanded c1 permit 11696 ^65000:4_0:214_0:142$ ip community-list expanded c1 permit 11697 ^65000:4_0:214_0:143$ ip community-list expanded c1 permit 11698 ^65000:4_0:214_0:144$ ip community-list expanded c1 permit 11699 ^65000:4_0:214_0:145$ ip community-list expanded c1 permit 11700 ^65000:4_0:214_0:146$ ip community-list expanded c1 permit 11701 ^65000:4_0:214_0:147$ ip community-list expanded c1 permit 11702 ^65000:4_0:214_0:148$ ip community-list expanded c1 permit 11703 ^65000:4_0:214_0:149$ ip community-list expanded c1 permit 11704 ^65000:4_0:214_0:150$ ip community-list expanded c1 permit 11705 ^65000:4_0:214_0:151$ ip community-list expanded c1 permit 11706 ^65000:4_0:214_0:152$ ip community-list expanded c1 permit 11707 ^65000:4_0:214_0:153$ ip community-list expanded c1 permit 11708 ^65000:4_0:214_0:154$ ip community-list expanded c1 permit 11709 ^65000:4_0:214_0:155$ ip community-list expanded c1 permit 11710 ^65000:4_0:214_0:156$ ip community-list expanded c1 permit 11711 ^65000:4_0:214_0:157$ ip community-list expanded c1 permit 11712 ^65000:4_0:214_0:158$ ip community-list expanded c1 permit 11713 ^65000:4_0:214_0:159$ ip community-list expanded c1 permit 11714 ^65000:4_0:214_0:160$ ip community-list expanded c1 permit 11715 ^65000:4_0:214_0:161$ ip community-list expanded c1 permit 11716 ^65000:4_0:214_0:162$ ip community-list expanded c1 permit 11717 ^65000:4_0:214_0:163$ ip community-list expanded c1 permit 11718 ^65000:4_0:214_0:164$ ip community-list expanded c1 permit 11719 ^65000:4_0:214_0:165$ ip community-list expanded c1 permit 11720 ^65000:4_0:214_0:166$ ip community-list expanded c1 permit 11721 ^65000:4_0:214_0:167$ ip community-list expanded c1 permit 11722 ^65000:4_0:214_0:168$ ip community-list expanded c1 permit 11723 ^65000:4_0:214_0:169$ ip community-list expanded c1 permit 11724 ^65000:4_0:214_0:170$ ip community-list expanded c1 permit 11725 ^65000:4_0:214_0:171$ ip community-list expanded c1 permit 11726 ^65000:4_0:214_0:172$ ip community-list expanded c1 permit 11727 ^65000:4_0:214_0:173$ ip community-list expanded c1 permit 11728 ^65000:4_0:214_0:174$ ip community-list expanded c1 permit 11729 ^65000:4_0:214_0:175$ ip community-list expanded c1 permit 11730 ^65000:4_0:214_0:176$ ip community-list expanded c1 permit 11731 ^65000:4_0:214_0:177$ ip community-list expanded c1 permit 11732 ^65000:4_0:214_0:178$ ip community-list expanded c1 permit 11733 ^65000:4_0:214_0:179$ ip community-list expanded c1 permit 11734 ^65000:4_0:214_0:180$ ip community-list expanded c1 permit 11735 ^65000:4_0:214_0:181$ ip community-list expanded c1 permit 11736 ^65000:4_0:214_0:182$ ip community-list expanded c1 permit 11737 ^65000:4_0:214_0:183$ ip community-list expanded c1 permit 11738 ^65000:4_0:214_0:184$ ip community-list expanded c1 permit 11739 ^65000:4_0:214_0:185$ ip community-list expanded c1 permit 11740 ^65000:4_0:214_0:186$ ip community-list expanded c1 permit 11741 ^65000:4_0:214_0:187$ ip community-list expanded c1 permit 11742 ^65000:4_0:214_0:188$ ip community-list expanded c1 permit 11743 ^65000:4_0:214_0:189$ ip community-list expanded c1 permit 11744 ^65000:4_0:214_0:190$ ip community-list expanded c1 permit 11745 ^65000:4_0:214_0:191$ ip community-list expanded c1 permit 11746 ^65000:4_0:214_0:192$ ip community-list expanded c1 permit 11747 ^65000:4_0:214_0:193$ ip community-list expanded c1 permit 11748 ^65000:4_0:214_0:194$ ip community-list expanded c1 permit 11749 ^65000:4_0:214_0:195$ ip community-list expanded c1 permit 11750 ^65000:4_0:214_0:196$ ip community-list expanded c1 permit 11751 ^65000:4_0:214_0:197$ ip community-list expanded c1 permit 11752 ^65000:4_0:214_0:198$ ip community-list expanded c1 permit 11753 ^65000:4_0:214_0:199$ ip community-list expanded c1 permit 11754 ^65000:4_0:214_0:200$ ip community-list expanded c1 permit 11755 ^65000:4_0:214_0:201$ ip community-list expanded c1 permit 11756 ^65000:4_0:214_0:202$ ip community-list expanded c1 permit 11757 ^65000:4_0:214_0:203$ ip community-list expanded c1 permit 11758 ^65000:4_0:214_0:204$ ip community-list expanded c1 permit 11759 ^65000:4_0:214_0:205$ ip community-list expanded c1 permit 11760 ^65000:4_0:214_0:206$ ip community-list expanded c1 permit 11761 ^65000:4_0:214_0:207$ ip community-list expanded c1 permit 11762 ^65000:4_0:214_0:208$ ip community-list expanded c1 permit 11763 ^65000:4_0:214_0:209$ ip community-list expanded c1 permit 11764 ^65000:4_0:214_0:210$ ip community-list expanded c1 permit 11765 ^65000:4_0:214_0:211$ ip community-list expanded c1 permit 11766 ^65000:4_0:214_0:212$ ip community-list expanded c1 permit 11767 ^65000:3_0:214_0:213$ ip community-list expanded c1 permit 11768 ^65000:4_0:214_0:213$ ip community-list expanded c1 permit 11769 ^65000:4_0:214_0:214$ ip community-list expanded c1 permit 11770 ^65000:4_0:215_0:108$ ip community-list expanded c1 permit 11771 ^65000:4_0:215_0:109$ ip community-list expanded c1 permit 11772 ^65000:4_0:215_0:110$ ip community-list expanded c1 permit 11773 ^65000:4_0:215_0:111$ ip community-list expanded c1 permit 11774 ^65000:4_0:215_0:112$ ip community-list expanded c1 permit 11775 ^65000:4_0:215_0:113$ ip community-list expanded c1 permit 11776 ^65000:4_0:215_0:114$ ip community-list expanded c1 permit 11777 ^65000:4_0:215_0:115$ ip community-list expanded c1 permit 11778 ^65000:4_0:215_0:116$ ip community-list expanded c1 permit 11779 ^65000:4_0:215_0:117$ ip community-list expanded c1 permit 11780 ^65000:4_0:215_0:118$ ip community-list expanded c1 permit 11781 ^65000:4_0:215_0:119$ ip community-list expanded c1 permit 11782 ^65000:4_0:215_0:120$ ip community-list expanded c1 permit 11783 ^65000:4_0:215_0:121$ ip community-list expanded c1 permit 11784 ^65000:4_0:215_0:122$ ip community-list expanded c1 permit 11785 ^65000:4_0:215_0:123$ ip community-list expanded c1 permit 11786 ^65000:4_0:215_0:124$ ip community-list expanded c1 permit 11787 ^65000:4_0:215_0:125$ ip community-list expanded c1 permit 11788 ^65000:4_0:215_0:126$ ip community-list expanded c1 permit 11789 ^65000:4_0:215_0:127$ ip community-list expanded c1 permit 11790 ^65000:4_0:215_0:128$ ip community-list expanded c1 permit 11791 ^65000:4_0:215_0:129$ ip community-list expanded c1 permit 11792 ^65000:4_0:215_0:130$ ip community-list expanded c1 permit 11793 ^65000:4_0:215_0:131$ ip community-list expanded c1 permit 11794 ^65000:4_0:215_0:132$ ip community-list expanded c1 permit 11795 ^65000:4_0:215_0:133$ ip community-list expanded c1 permit 11796 ^65000:4_0:215_0:134$ ip community-list expanded c1 permit 11797 ^65000:4_0:215_0:135$ ip community-list expanded c1 permit 11798 ^65000:4_0:215_0:136$ ip community-list expanded c1 permit 11799 ^65000:4_0:215_0:137$ ip community-list expanded c1 permit 11800 ^65000:4_0:215_0:138$ ip community-list expanded c1 permit 11801 ^65000:4_0:215_0:139$ ip community-list expanded c1 permit 11802 ^65000:4_0:215_0:140$ ip community-list expanded c1 permit 11803 ^65000:4_0:215_0:141$ ip community-list expanded c1 permit 11804 ^65000:4_0:215_0:142$ ip community-list expanded c1 permit 11805 ^65000:4_0:215_0:143$ ip community-list expanded c1 permit 11806 ^65000:4_0:215_0:144$ ip community-list expanded c1 permit 11807 ^65000:4_0:215_0:145$ ip community-list expanded c1 permit 11808 ^65000:4_0:215_0:146$ ip community-list expanded c1 permit 11809 ^65000:4_0:215_0:147$ ip community-list expanded c1 permit 11810 ^65000:4_0:215_0:148$ ip community-list expanded c1 permit 11811 ^65000:4_0:215_0:149$ ip community-list expanded c1 permit 11812 ^65000:4_0:215_0:150$ ip community-list expanded c1 permit 11813 ^65000:4_0:215_0:151$ ip community-list expanded c1 permit 11814 ^65000:4_0:215_0:152$ ip community-list expanded c1 permit 11815 ^65000:4_0:215_0:153$ ip community-list expanded c1 permit 11816 ^65000:4_0:215_0:154$ ip community-list expanded c1 permit 11817 ^65000:4_0:215_0:155$ ip community-list expanded c1 permit 11818 ^65000:4_0:215_0:156$ ip community-list expanded c1 permit 11819 ^65000:4_0:215_0:157$ ip community-list expanded c1 permit 11820 ^65000:4_0:215_0:158$ ip community-list expanded c1 permit 11821 ^65000:4_0:215_0:159$ ip community-list expanded c1 permit 11822 ^65000:4_0:215_0:160$ ip community-list expanded c1 permit 11823 ^65000:4_0:215_0:161$ ip community-list expanded c1 permit 11824 ^65000:4_0:215_0:162$ ip community-list expanded c1 permit 11825 ^65000:4_0:215_0:163$ ip community-list expanded c1 permit 11826 ^65000:4_0:215_0:164$ ip community-list expanded c1 permit 11827 ^65000:4_0:215_0:165$ ip community-list expanded c1 permit 11828 ^65000:4_0:215_0:166$ ip community-list expanded c1 permit 11829 ^65000:4_0:215_0:167$ ip community-list expanded c1 permit 11830 ^65000:4_0:215_0:168$ ip community-list expanded c1 permit 11831 ^65000:4_0:215_0:169$ ip community-list expanded c1 permit 11832 ^65000:4_0:215_0:170$ ip community-list expanded c1 permit 11833 ^65000:4_0:215_0:171$ ip community-list expanded c1 permit 11834 ^65000:4_0:215_0:172$ ip community-list expanded c1 permit 11835 ^65000:4_0:215_0:173$ ip community-list expanded c1 permit 11836 ^65000:4_0:215_0:174$ ip community-list expanded c1 permit 11837 ^65000:4_0:215_0:175$ ip community-list expanded c1 permit 11838 ^65000:4_0:215_0:176$ ip community-list expanded c1 permit 11839 ^65000:4_0:215_0:177$ ip community-list expanded c1 permit 11840 ^65000:4_0:215_0:178$ ip community-list expanded c1 permit 11841 ^65000:4_0:215_0:179$ ip community-list expanded c1 permit 11842 ^65000:4_0:215_0:180$ ip community-list expanded c1 permit 11843 ^65000:4_0:215_0:181$ ip community-list expanded c1 permit 11844 ^65000:4_0:215_0:182$ ip community-list expanded c1 permit 11845 ^65000:4_0:215_0:183$ ip community-list expanded c1 permit 11846 ^65000:4_0:215_0:184$ ip community-list expanded c1 permit 11847 ^65000:4_0:215_0:185$ ip community-list expanded c1 permit 11848 ^65000:4_0:215_0:186$ ip community-list expanded c1 permit 11849 ^65000:4_0:215_0:187$ ip community-list expanded c1 permit 11850 ^65000:4_0:215_0:188$ ip community-list expanded c1 permit 11851 ^65000:4_0:215_0:189$ ip community-list expanded c1 permit 11852 ^65000:4_0:215_0:190$ ip community-list expanded c1 permit 11853 ^65000:4_0:215_0:191$ ip community-list expanded c1 permit 11854 ^65000:4_0:215_0:192$ ip community-list expanded c1 permit 11855 ^65000:4_0:215_0:193$ ip community-list expanded c1 permit 11856 ^65000:4_0:215_0:194$ ip community-list expanded c1 permit 11857 ^65000:4_0:215_0:195$ ip community-list expanded c1 permit 11858 ^65000:4_0:215_0:196$ ip community-list expanded c1 permit 11859 ^65000:4_0:215_0:197$ ip community-list expanded c1 permit 11860 ^65000:4_0:215_0:198$ ip community-list expanded c1 permit 11861 ^65000:4_0:215_0:199$ ip community-list expanded c1 permit 11862 ^65000:4_0:215_0:200$ ip community-list expanded c1 permit 11863 ^65000:4_0:215_0:201$ ip community-list expanded c1 permit 11864 ^65000:4_0:215_0:202$ ip community-list expanded c1 permit 11865 ^65000:4_0:215_0:203$ ip community-list expanded c1 permit 11866 ^65000:4_0:215_0:204$ ip community-list expanded c1 permit 11867 ^65000:4_0:215_0:205$ ip community-list expanded c1 permit 11868 ^65000:4_0:215_0:206$ ip community-list expanded c1 permit 11869 ^65000:4_0:215_0:207$ ip community-list expanded c1 permit 11870 ^65000:4_0:215_0:208$ ip community-list expanded c1 permit 11871 ^65000:4_0:215_0:209$ ip community-list expanded c1 permit 11872 ^65000:4_0:215_0:210$ ip community-list expanded c1 permit 11873 ^65000:4_0:215_0:211$ ip community-list expanded c1 permit 11874 ^65000:4_0:215_0:212$ ip community-list expanded c1 permit 11875 ^65000:4_0:215_0:213$ ip community-list expanded c1 permit 11876 ^65000:3_0:215_0:214$ ip community-list expanded c1 permit 11877 ^65000:4_0:215_0:214$ ip community-list expanded c1 permit 11878 ^65000:4_0:215_0:215$ ip community-list expanded c1 permit 11879 ^65000:4_0:216_0:109$ ip community-list expanded c1 permit 11880 ^65000:4_0:216_0:110$ ip community-list expanded c1 permit 11881 ^65000:4_0:216_0:111$ ip community-list expanded c1 permit 11882 ^65000:4_0:216_0:112$ ip community-list expanded c1 permit 11883 ^65000:4_0:216_0:113$ ip community-list expanded c1 permit 11884 ^65000:4_0:216_0:114$ ip community-list expanded c1 permit 11885 ^65000:4_0:216_0:115$ ip community-list expanded c1 permit 11886 ^65000:4_0:216_0:116$ ip community-list expanded c1 permit 11887 ^65000:4_0:216_0:117$ ip community-list expanded c1 permit 11888 ^65000:4_0:216_0:118$ ip community-list expanded c1 permit 11889 ^65000:4_0:216_0:119$ ip community-list expanded c1 permit 11890 ^65000:4_0:216_0:120$ ip community-list expanded c1 permit 11891 ^65000:4_0:216_0:121$ ip community-list expanded c1 permit 11892 ^65000:4_0:216_0:122$ ip community-list expanded c1 permit 11893 ^65000:4_0:216_0:123$ ip community-list expanded c1 permit 11894 ^65000:4_0:216_0:124$ ip community-list expanded c1 permit 11895 ^65000:4_0:216_0:125$ ip community-list expanded c1 permit 11896 ^65000:4_0:216_0:126$ ip community-list expanded c1 permit 11897 ^65000:4_0:216_0:127$ ip community-list expanded c1 permit 11898 ^65000:4_0:216_0:128$ ip community-list expanded c1 permit 11899 ^65000:4_0:216_0:129$ ip community-list expanded c1 permit 11900 ^65000:4_0:216_0:130$ ip community-list expanded c1 permit 11901 ^65000:4_0:216_0:131$ ip community-list expanded c1 permit 11902 ^65000:4_0:216_0:132$ ip community-list expanded c1 permit 11903 ^65000:4_0:216_0:133$ ip community-list expanded c1 permit 11904 ^65000:4_0:216_0:134$ ip community-list expanded c1 permit 11905 ^65000:4_0:216_0:135$ ip community-list expanded c1 permit 11906 ^65000:4_0:216_0:136$ ip community-list expanded c1 permit 11907 ^65000:4_0:216_0:137$ ip community-list expanded c1 permit 11908 ^65000:4_0:216_0:138$ ip community-list expanded c1 permit 11909 ^65000:4_0:216_0:139$ ip community-list expanded c1 permit 11910 ^65000:4_0:216_0:140$ ip community-list expanded c1 permit 11911 ^65000:4_0:216_0:141$ ip community-list expanded c1 permit 11912 ^65000:4_0:216_0:142$ ip community-list expanded c1 permit 11913 ^65000:4_0:216_0:143$ ip community-list expanded c1 permit 11914 ^65000:4_0:216_0:144$ ip community-list expanded c1 permit 11915 ^65000:4_0:216_0:145$ ip community-list expanded c1 permit 11916 ^65000:4_0:216_0:146$ ip community-list expanded c1 permit 11917 ^65000:4_0:216_0:147$ ip community-list expanded c1 permit 11918 ^65000:4_0:216_0:148$ ip community-list expanded c1 permit 11919 ^65000:4_0:216_0:149$ ip community-list expanded c1 permit 11920 ^65000:4_0:216_0:150$ ip community-list expanded c1 permit 11921 ^65000:4_0:216_0:151$ ip community-list expanded c1 permit 11922 ^65000:4_0:216_0:152$ ip community-list expanded c1 permit 11923 ^65000:4_0:216_0:153$ ip community-list expanded c1 permit 11924 ^65000:4_0:216_0:154$ ip community-list expanded c1 permit 11925 ^65000:4_0:216_0:155$ ip community-list expanded c1 permit 11926 ^65000:4_0:216_0:156$ ip community-list expanded c1 permit 11927 ^65000:4_0:216_0:157$ ip community-list expanded c1 permit 11928 ^65000:4_0:216_0:158$ ip community-list expanded c1 permit 11929 ^65000:4_0:216_0:159$ ip community-list expanded c1 permit 11930 ^65000:4_0:216_0:160$ ip community-list expanded c1 permit 11931 ^65000:4_0:216_0:161$ ip community-list expanded c1 permit 11932 ^65000:4_0:216_0:162$ ip community-list expanded c1 permit 11933 ^65000:4_0:216_0:163$ ip community-list expanded c1 permit 11934 ^65000:4_0:216_0:164$ ip community-list expanded c1 permit 11935 ^65000:4_0:216_0:165$ ip community-list expanded c1 permit 11936 ^65000:4_0:216_0:166$ ip community-list expanded c1 permit 11937 ^65000:4_0:216_0:167$ ip community-list expanded c1 permit 11938 ^65000:4_0:216_0:168$ ip community-list expanded c1 permit 11939 ^65000:4_0:216_0:169$ ip community-list expanded c1 permit 11940 ^65000:4_0:216_0:170$ ip community-list expanded c1 permit 11941 ^65000:4_0:216_0:171$ ip community-list expanded c1 permit 11942 ^65000:4_0:216_0:172$ ip community-list expanded c1 permit 11943 ^65000:4_0:216_0:173$ ip community-list expanded c1 permit 11944 ^65000:4_0:216_0:174$ ip community-list expanded c1 permit 11945 ^65000:4_0:216_0:175$ ip community-list expanded c1 permit 11946 ^65000:4_0:216_0:176$ ip community-list expanded c1 permit 11947 ^65000:4_0:216_0:177$ ip community-list expanded c1 permit 11948 ^65000:4_0:216_0:178$ ip community-list expanded c1 permit 11949 ^65000:4_0:216_0:179$ ip community-list expanded c1 permit 11950 ^65000:4_0:216_0:180$ ip community-list expanded c1 permit 11951 ^65000:4_0:216_0:181$ ip community-list expanded c1 permit 11952 ^65000:4_0:216_0:182$ ip community-list expanded c1 permit 11953 ^65000:4_0:216_0:183$ ip community-list expanded c1 permit 11954 ^65000:4_0:216_0:184$ ip community-list expanded c1 permit 11955 ^65000:4_0:216_0:185$ ip community-list expanded c1 permit 11956 ^65000:4_0:216_0:186$ ip community-list expanded c1 permit 11957 ^65000:4_0:216_0:187$ ip community-list expanded c1 permit 11958 ^65000:4_0:216_0:188$ ip community-list expanded c1 permit 11959 ^65000:4_0:216_0:189$ ip community-list expanded c1 permit 11960 ^65000:4_0:216_0:190$ ip community-list expanded c1 permit 11961 ^65000:4_0:216_0:191$ ip community-list expanded c1 permit 11962 ^65000:4_0:216_0:192$ ip community-list expanded c1 permit 11963 ^65000:4_0:216_0:193$ ip community-list expanded c1 permit 11964 ^65000:4_0:216_0:194$ ip community-list expanded c1 permit 11965 ^65000:4_0:216_0:195$ ip community-list expanded c1 permit 11966 ^65000:4_0:216_0:196$ ip community-list expanded c1 permit 11967 ^65000:4_0:216_0:197$ ip community-list expanded c1 permit 11968 ^65000:4_0:216_0:198$ ip community-list expanded c1 permit 11969 ^65000:4_0:216_0:199$ ip community-list expanded c1 permit 11970 ^65000:4_0:216_0:200$ ip community-list expanded c1 permit 11971 ^65000:4_0:216_0:201$ ip community-list expanded c1 permit 11972 ^65000:4_0:216_0:202$ ip community-list expanded c1 permit 11973 ^65000:4_0:216_0:203$ ip community-list expanded c1 permit 11974 ^65000:4_0:216_0:204$ ip community-list expanded c1 permit 11975 ^65000:4_0:216_0:205$ ip community-list expanded c1 permit 11976 ^65000:4_0:216_0:206$ ip community-list expanded c1 permit 11977 ^65000:4_0:216_0:207$ ip community-list expanded c1 permit 11978 ^65000:4_0:216_0:208$ ip community-list expanded c1 permit 11979 ^65000:4_0:216_0:209$ ip community-list expanded c1 permit 11980 ^65000:4_0:216_0:210$ ip community-list expanded c1 permit 11981 ^65000:4_0:216_0:211$ ip community-list expanded c1 permit 11982 ^65000:4_0:216_0:212$ ip community-list expanded c1 permit 11983 ^65000:4_0:216_0:213$ ip community-list expanded c1 permit 11984 ^65000:4_0:216_0:214$ ip community-list expanded c1 permit 11985 ^65000:3_0:216_0:215$ ip community-list expanded c1 permit 11986 ^65000:4_0:216_0:215$ ip community-list expanded c1 permit 11987 ^65000:4_0:216_0:216$ ip community-list expanded c1 permit 11988 ^65000:4_0:217_0:109$ ip community-list expanded c1 permit 11989 ^65000:4_0:217_0:110$ ip community-list expanded c1 permit 11990 ^65000:4_0:217_0:111$ ip community-list expanded c1 permit 11991 ^65000:4_0:217_0:112$ ip community-list expanded c1 permit 11992 ^65000:4_0:217_0:113$ ip community-list expanded c1 permit 11993 ^65000:4_0:217_0:114$ ip community-list expanded c1 permit 11994 ^65000:4_0:217_0:115$ ip community-list expanded c1 permit 11995 ^65000:4_0:217_0:116$ ip community-list expanded c1 permit 11996 ^65000:4_0:217_0:117$ ip community-list expanded c1 permit 11997 ^65000:4_0:217_0:118$ ip community-list expanded c1 permit 11998 ^65000:4_0:217_0:119$ ip community-list expanded c1 permit 11999 ^65000:4_0:217_0:120$ ip community-list expanded c1 permit 12000 ^65000:4_0:217_0:121$ ip community-list expanded c1 permit 12001 ^65000:4_0:217_0:122$ ip community-list expanded c1 permit 12002 ^65000:4_0:217_0:123$ ip community-list expanded c1 permit 12003 ^65000:4_0:217_0:124$ ip community-list expanded c1 permit 12004 ^65000:4_0:217_0:125$ ip community-list expanded c1 permit 12005 ^65000:4_0:217_0:126$ ip community-list expanded c1 permit 12006 ^65000:4_0:217_0:127$ ip community-list expanded c1 permit 12007 ^65000:4_0:217_0:128$ ip community-list expanded c1 permit 12008 ^65000:4_0:217_0:129$ ip community-list expanded c1 permit 12009 ^65000:4_0:217_0:130$ ip community-list expanded c1 permit 12010 ^65000:4_0:217_0:131$ ip community-list expanded c1 permit 12011 ^65000:4_0:217_0:132$ ip community-list expanded c1 permit 12012 ^65000:4_0:217_0:133$ ip community-list expanded c1 permit 12013 ^65000:4_0:217_0:134$ ip community-list expanded c1 permit 12014 ^65000:4_0:217_0:135$ ip community-list expanded c1 permit 12015 ^65000:4_0:217_0:136$ ip community-list expanded c1 permit 12016 ^65000:4_0:217_0:137$ ip community-list expanded c1 permit 12017 ^65000:4_0:217_0:138$ ip community-list expanded c1 permit 12018 ^65000:4_0:217_0:139$ ip community-list expanded c1 permit 12019 ^65000:4_0:217_0:140$ ip community-list expanded c1 permit 12020 ^65000:4_0:217_0:141$ ip community-list expanded c1 permit 12021 ^65000:4_0:217_0:142$ ip community-list expanded c1 permit 12022 ^65000:4_0:217_0:143$ ip community-list expanded c1 permit 12023 ^65000:4_0:217_0:144$ ip community-list expanded c1 permit 12024 ^65000:4_0:217_0:145$ ip community-list expanded c1 permit 12025 ^65000:4_0:217_0:146$ ip community-list expanded c1 permit 12026 ^65000:4_0:217_0:147$ ip community-list expanded c1 permit 12027 ^65000:4_0:217_0:148$ ip community-list expanded c1 permit 12028 ^65000:4_0:217_0:149$ ip community-list expanded c1 permit 12029 ^65000:4_0:217_0:150$ ip community-list expanded c1 permit 12030 ^65000:4_0:217_0:151$ ip community-list expanded c1 permit 12031 ^65000:4_0:217_0:152$ ip community-list expanded c1 permit 12032 ^65000:4_0:217_0:153$ ip community-list expanded c1 permit 12033 ^65000:4_0:217_0:154$ ip community-list expanded c1 permit 12034 ^65000:4_0:217_0:155$ ip community-list expanded c1 permit 12035 ^65000:4_0:217_0:156$ ip community-list expanded c1 permit 12036 ^65000:4_0:217_0:157$ ip community-list expanded c1 permit 12037 ^65000:4_0:217_0:158$ ip community-list expanded c1 permit 12038 ^65000:4_0:217_0:159$ ip community-list expanded c1 permit 12039 ^65000:4_0:217_0:160$ ip community-list expanded c1 permit 12040 ^65000:4_0:217_0:161$ ip community-list expanded c1 permit 12041 ^65000:4_0:217_0:162$ ip community-list expanded c1 permit 12042 ^65000:4_0:217_0:163$ ip community-list expanded c1 permit 12043 ^65000:4_0:217_0:164$ ip community-list expanded c1 permit 12044 ^65000:4_0:217_0:165$ ip community-list expanded c1 permit 12045 ^65000:4_0:217_0:166$ ip community-list expanded c1 permit 12046 ^65000:4_0:217_0:167$ ip community-list expanded c1 permit 12047 ^65000:4_0:217_0:168$ ip community-list expanded c1 permit 12048 ^65000:4_0:217_0:169$ ip community-list expanded c1 permit 12049 ^65000:4_0:217_0:170$ ip community-list expanded c1 permit 12050 ^65000:4_0:217_0:171$ ip community-list expanded c1 permit 12051 ^65000:4_0:217_0:172$ ip community-list expanded c1 permit 12052 ^65000:4_0:217_0:173$ ip community-list expanded c1 permit 12053 ^65000:4_0:217_0:174$ ip community-list expanded c1 permit 12054 ^65000:4_0:217_0:175$ ip community-list expanded c1 permit 12055 ^65000:4_0:217_0:176$ ip community-list expanded c1 permit 12056 ^65000:4_0:217_0:177$ ip community-list expanded c1 permit 12057 ^65000:4_0:217_0:178$ ip community-list expanded c1 permit 12058 ^65000:4_0:217_0:179$ ip community-list expanded c1 permit 12059 ^65000:4_0:217_0:180$ ip community-list expanded c1 permit 12060 ^65000:4_0:217_0:181$ ip community-list expanded c1 permit 12061 ^65000:4_0:217_0:182$ ip community-list expanded c1 permit 12062 ^65000:4_0:217_0:183$ ip community-list expanded c1 permit 12063 ^65000:4_0:217_0:184$ ip community-list expanded c1 permit 12064 ^65000:4_0:217_0:185$ ip community-list expanded c1 permit 12065 ^65000:4_0:217_0:186$ ip community-list expanded c1 permit 12066 ^65000:4_0:217_0:187$ ip community-list expanded c1 permit 12067 ^65000:4_0:217_0:188$ ip community-list expanded c1 permit 12068 ^65000:4_0:217_0:189$ ip community-list expanded c1 permit 12069 ^65000:4_0:217_0:190$ ip community-list expanded c1 permit 12070 ^65000:4_0:217_0:191$ ip community-list expanded c1 permit 12071 ^65000:4_0:217_0:192$ ip community-list expanded c1 permit 12072 ^65000:4_0:217_0:193$ ip community-list expanded c1 permit 12073 ^65000:4_0:217_0:194$ ip community-list expanded c1 permit 12074 ^65000:4_0:217_0:195$ ip community-list expanded c1 permit 12075 ^65000:4_0:217_0:196$ ip community-list expanded c1 permit 12076 ^65000:4_0:217_0:197$ ip community-list expanded c1 permit 12077 ^65000:4_0:217_0:198$ ip community-list expanded c1 permit 12078 ^65000:4_0:217_0:199$ ip community-list expanded c1 permit 12079 ^65000:4_0:217_0:200$ ip community-list expanded c1 permit 12080 ^65000:4_0:217_0:201$ ip community-list expanded c1 permit 12081 ^65000:4_0:217_0:202$ ip community-list expanded c1 permit 12082 ^65000:4_0:217_0:203$ ip community-list expanded c1 permit 12083 ^65000:4_0:217_0:204$ ip community-list expanded c1 permit 12084 ^65000:4_0:217_0:205$ ip community-list expanded c1 permit 12085 ^65000:4_0:217_0:206$ ip community-list expanded c1 permit 12086 ^65000:4_0:217_0:207$ ip community-list expanded c1 permit 12087 ^65000:4_0:217_0:208$ ip community-list expanded c1 permit 12088 ^65000:4_0:217_0:209$ ip community-list expanded c1 permit 12089 ^65000:4_0:217_0:210$ ip community-list expanded c1 permit 12090 ^65000:4_0:217_0:211$ ip community-list expanded c1 permit 12091 ^65000:4_0:217_0:212$ ip community-list expanded c1 permit 12092 ^65000:4_0:217_0:213$ ip community-list expanded c1 permit 12093 ^65000:4_0:217_0:214$ ip community-list expanded c1 permit 12094 ^65000:4_0:217_0:215$ ip community-list expanded c1 permit 12095 ^65000:3_0:217_0:216$ ip community-list expanded c1 permit 12096 ^65000:4_0:217_0:216$ ip community-list expanded c1 permit 12097 ^65000:4_0:217_0:217$ ip community-list expanded c1 permit 12098 ^65000:4_0:218_0:110$ ip community-list expanded c1 permit 12099 ^65000:4_0:218_0:111$ ip community-list expanded c1 permit 12100 ^65000:4_0:218_0:112$ ip community-list expanded c1 permit 12101 ^65000:4_0:218_0:113$ ip community-list expanded c1 permit 12102 ^65000:4_0:218_0:114$ ip community-list expanded c1 permit 12103 ^65000:4_0:218_0:115$ ip community-list expanded c1 permit 12104 ^65000:4_0:218_0:116$ ip community-list expanded c1 permit 12105 ^65000:4_0:218_0:117$ ip community-list expanded c1 permit 12106 ^65000:4_0:218_0:118$ ip community-list expanded c1 permit 12107 ^65000:4_0:218_0:119$ ip community-list expanded c1 permit 12108 ^65000:4_0:218_0:120$ ip community-list expanded c1 permit 12109 ^65000:4_0:218_0:121$ ip community-list expanded c1 permit 12110 ^65000:4_0:218_0:122$ ip community-list expanded c1 permit 12111 ^65000:4_0:218_0:123$ ip community-list expanded c1 permit 12112 ^65000:4_0:218_0:124$ ip community-list expanded c1 permit 12113 ^65000:4_0:218_0:125$ ip community-list expanded c1 permit 12114 ^65000:4_0:218_0:126$ ip community-list expanded c1 permit 12115 ^65000:4_0:218_0:127$ ip community-list expanded c1 permit 12116 ^65000:4_0:218_0:128$ ip community-list expanded c1 permit 12117 ^65000:4_0:218_0:129$ ip community-list expanded c1 permit 12118 ^65000:4_0:218_0:130$ ip community-list expanded c1 permit 12119 ^65000:4_0:218_0:131$ ip community-list expanded c1 permit 12120 ^65000:4_0:218_0:132$ ip community-list expanded c1 permit 12121 ^65000:4_0:218_0:133$ ip community-list expanded c1 permit 12122 ^65000:4_0:218_0:134$ ip community-list expanded c1 permit 12123 ^65000:4_0:218_0:135$ ip community-list expanded c1 permit 12124 ^65000:4_0:218_0:136$ ip community-list expanded c1 permit 12125 ^65000:4_0:218_0:137$ ip community-list expanded c1 permit 12126 ^65000:4_0:218_0:138$ ip community-list expanded c1 permit 12127 ^65000:4_0:218_0:139$ ip community-list expanded c1 permit 12128 ^65000:4_0:218_0:140$ ip community-list expanded c1 permit 12129 ^65000:4_0:218_0:141$ ip community-list expanded c1 permit 12130 ^65000:4_0:218_0:142$ ip community-list expanded c1 permit 12131 ^65000:4_0:218_0:143$ ip community-list expanded c1 permit 12132 ^65000:4_0:218_0:144$ ip community-list expanded c1 permit 12133 ^65000:4_0:218_0:145$ ip community-list expanded c1 permit 12134 ^65000:4_0:218_0:146$ ip community-list expanded c1 permit 12135 ^65000:4_0:218_0:147$ ip community-list expanded c1 permit 12136 ^65000:4_0:218_0:148$ ip community-list expanded c1 permit 12137 ^65000:4_0:218_0:149$ ip community-list expanded c1 permit 12138 ^65000:4_0:218_0:150$ ip community-list expanded c1 permit 12139 ^65000:4_0:218_0:151$ ip community-list expanded c1 permit 12140 ^65000:4_0:218_0:152$ ip community-list expanded c1 permit 12141 ^65000:4_0:218_0:153$ ip community-list expanded c1 permit 12142 ^65000:4_0:218_0:154$ ip community-list expanded c1 permit 12143 ^65000:4_0:218_0:155$ ip community-list expanded c1 permit 12144 ^65000:4_0:218_0:156$ ip community-list expanded c1 permit 12145 ^65000:4_0:218_0:157$ ip community-list expanded c1 permit 12146 ^65000:4_0:218_0:158$ ip community-list expanded c1 permit 12147 ^65000:4_0:218_0:159$ ip community-list expanded c1 permit 12148 ^65000:4_0:218_0:160$ ip community-list expanded c1 permit 12149 ^65000:4_0:218_0:161$ ip community-list expanded c1 permit 12150 ^65000:4_0:218_0:162$ ip community-list expanded c1 permit 12151 ^65000:4_0:218_0:163$ ip community-list expanded c1 permit 12152 ^65000:4_0:218_0:164$ ip community-list expanded c1 permit 12153 ^65000:4_0:218_0:165$ ip community-list expanded c1 permit 12154 ^65000:4_0:218_0:166$ ip community-list expanded c1 permit 12155 ^65000:4_0:218_0:167$ ip community-list expanded c1 permit 12156 ^65000:4_0:218_0:168$ ip community-list expanded c1 permit 12157 ^65000:4_0:218_0:169$ ip community-list expanded c1 permit 12158 ^65000:4_0:218_0:170$ ip community-list expanded c1 permit 12159 ^65000:4_0:218_0:171$ ip community-list expanded c1 permit 12160 ^65000:4_0:218_0:172$ ip community-list expanded c1 permit 12161 ^65000:4_0:218_0:173$ ip community-list expanded c1 permit 12162 ^65000:4_0:218_0:174$ ip community-list expanded c1 permit 12163 ^65000:4_0:218_0:175$ ip community-list expanded c1 permit 12164 ^65000:4_0:218_0:176$ ip community-list expanded c1 permit 12165 ^65000:4_0:218_0:177$ ip community-list expanded c1 permit 12166 ^65000:4_0:218_0:178$ ip community-list expanded c1 permit 12167 ^65000:4_0:218_0:179$ ip community-list expanded c1 permit 12168 ^65000:4_0:218_0:180$ ip community-list expanded c1 permit 12169 ^65000:4_0:218_0:181$ ip community-list expanded c1 permit 12170 ^65000:4_0:218_0:182$ ip community-list expanded c1 permit 12171 ^65000:4_0:218_0:183$ ip community-list expanded c1 permit 12172 ^65000:4_0:218_0:184$ ip community-list expanded c1 permit 12173 ^65000:4_0:218_0:185$ ip community-list expanded c1 permit 12174 ^65000:4_0:218_0:186$ ip community-list expanded c1 permit 12175 ^65000:4_0:218_0:187$ ip community-list expanded c1 permit 12176 ^65000:4_0:218_0:188$ ip community-list expanded c1 permit 12177 ^65000:4_0:218_0:189$ ip community-list expanded c1 permit 12178 ^65000:4_0:218_0:190$ ip community-list expanded c1 permit 12179 ^65000:4_0:218_0:191$ ip community-list expanded c1 permit 12180 ^65000:4_0:218_0:192$ ip community-list expanded c1 permit 12181 ^65000:4_0:218_0:193$ ip community-list expanded c1 permit 12182 ^65000:4_0:218_0:194$ ip community-list expanded c1 permit 12183 ^65000:4_0:218_0:195$ ip community-list expanded c1 permit 12184 ^65000:4_0:218_0:196$ ip community-list expanded c1 permit 12185 ^65000:4_0:218_0:197$ ip community-list expanded c1 permit 12186 ^65000:4_0:218_0:198$ ip community-list expanded c1 permit 12187 ^65000:4_0:218_0:199$ ip community-list expanded c1 permit 12188 ^65000:4_0:218_0:200$ ip community-list expanded c1 permit 12189 ^65000:4_0:218_0:201$ ip community-list expanded c1 permit 12190 ^65000:4_0:218_0:202$ ip community-list expanded c1 permit 12191 ^65000:4_0:218_0:203$ ip community-list expanded c1 permit 12192 ^65000:4_0:218_0:204$ ip community-list expanded c1 permit 12193 ^65000:4_0:218_0:205$ ip community-list expanded c1 permit 12194 ^65000:4_0:218_0:206$ ip community-list expanded c1 permit 12195 ^65000:4_0:218_0:207$ ip community-list expanded c1 permit 12196 ^65000:4_0:218_0:208$ ip community-list expanded c1 permit 12197 ^65000:4_0:218_0:209$ ip community-list expanded c1 permit 12198 ^65000:4_0:218_0:210$ ip community-list expanded c1 permit 12199 ^65000:4_0:218_0:211$ ip community-list expanded c1 permit 12200 ^65000:4_0:218_0:212$ ip community-list expanded c1 permit 12201 ^65000:4_0:218_0:213$ ip community-list expanded c1 permit 12202 ^65000:4_0:218_0:214$ ip community-list expanded c1 permit 12203 ^65000:4_0:218_0:215$ ip community-list expanded c1 permit 12204 ^65000:4_0:218_0:216$ ip community-list expanded c1 permit 12205 ^65000:3_0:218_0:217$ ip community-list expanded c1 permit 12206 ^65000:4_0:218_0:217$ ip community-list expanded c1 permit 12207 ^65000:4_0:218_0:218$ ip community-list expanded c1 permit 12208 ^65000:4_0:219_0:110$ ip community-list expanded c1 permit 12209 ^65000:4_0:219_0:111$ ip community-list expanded c1 permit 12210 ^65000:4_0:219_0:112$ ip community-list expanded c1 permit 12211 ^65000:4_0:219_0:113$ ip community-list expanded c1 permit 12212 ^65000:4_0:219_0:114$ ip community-list expanded c1 permit 12213 ^65000:4_0:219_0:115$ ip community-list expanded c1 permit 12214 ^65000:4_0:219_0:116$ ip community-list expanded c1 permit 12215 ^65000:4_0:219_0:117$ ip community-list expanded c1 permit 12216 ^65000:4_0:219_0:118$ ip community-list expanded c1 permit 12217 ^65000:4_0:219_0:119$ ip community-list expanded c1 permit 12218 ^65000:4_0:219_0:120$ ip community-list expanded c1 permit 12219 ^65000:4_0:219_0:121$ ip community-list expanded c1 permit 12220 ^65000:4_0:219_0:122$ ip community-list expanded c1 permit 12221 ^65000:4_0:219_0:123$ ip community-list expanded c1 permit 12222 ^65000:4_0:219_0:124$ ip community-list expanded c1 permit 12223 ^65000:4_0:219_0:125$ ip community-list expanded c1 permit 12224 ^65000:4_0:219_0:126$ ip community-list expanded c1 permit 12225 ^65000:4_0:219_0:127$ ip community-list expanded c1 permit 12226 ^65000:4_0:219_0:128$ ip community-list expanded c1 permit 12227 ^65000:4_0:219_0:129$ ip community-list expanded c1 permit 12228 ^65000:4_0:219_0:130$ ip community-list expanded c1 permit 12229 ^65000:4_0:219_0:131$ ip community-list expanded c1 permit 12230 ^65000:4_0:219_0:132$ ip community-list expanded c1 permit 12231 ^65000:4_0:219_0:133$ ip community-list expanded c1 permit 12232 ^65000:4_0:219_0:134$ ip community-list expanded c1 permit 12233 ^65000:4_0:219_0:135$ ip community-list expanded c1 permit 12234 ^65000:4_0:219_0:136$ ip community-list expanded c1 permit 12235 ^65000:4_0:219_0:137$ ip community-list expanded c1 permit 12236 ^65000:4_0:219_0:138$ ip community-list expanded c1 permit 12237 ^65000:4_0:219_0:139$ ip community-list expanded c1 permit 12238 ^65000:4_0:219_0:140$ ip community-list expanded c1 permit 12239 ^65000:4_0:219_0:141$ ip community-list expanded c1 permit 12240 ^65000:4_0:219_0:142$ ip community-list expanded c1 permit 12241 ^65000:4_0:219_0:143$ ip community-list expanded c1 permit 12242 ^65000:4_0:219_0:144$ ip community-list expanded c1 permit 12243 ^65000:4_0:219_0:145$ ip community-list expanded c1 permit 12244 ^65000:4_0:219_0:146$ ip community-list expanded c1 permit 12245 ^65000:4_0:219_0:147$ ip community-list expanded c1 permit 12246 ^65000:4_0:219_0:148$ ip community-list expanded c1 permit 12247 ^65000:4_0:219_0:149$ ip community-list expanded c1 permit 12248 ^65000:4_0:219_0:150$ ip community-list expanded c1 permit 12249 ^65000:4_0:219_0:151$ ip community-list expanded c1 permit 12250 ^65000:4_0:219_0:152$ ip community-list expanded c1 permit 12251 ^65000:4_0:219_0:153$ ip community-list expanded c1 permit 12252 ^65000:4_0:219_0:154$ ip community-list expanded c1 permit 12253 ^65000:4_0:219_0:155$ ip community-list expanded c1 permit 12254 ^65000:4_0:219_0:156$ ip community-list expanded c1 permit 12255 ^65000:4_0:219_0:157$ ip community-list expanded c1 permit 12256 ^65000:4_0:219_0:158$ ip community-list expanded c1 permit 12257 ^65000:4_0:219_0:159$ ip community-list expanded c1 permit 12258 ^65000:4_0:219_0:160$ ip community-list expanded c1 permit 12259 ^65000:4_0:219_0:161$ ip community-list expanded c1 permit 12260 ^65000:4_0:219_0:162$ ip community-list expanded c1 permit 12261 ^65000:4_0:219_0:163$ ip community-list expanded c1 permit 12262 ^65000:4_0:219_0:164$ ip community-list expanded c1 permit 12263 ^65000:4_0:219_0:165$ ip community-list expanded c1 permit 12264 ^65000:4_0:219_0:166$ ip community-list expanded c1 permit 12265 ^65000:4_0:219_0:167$ ip community-list expanded c1 permit 12266 ^65000:4_0:219_0:168$ ip community-list expanded c1 permit 12267 ^65000:4_0:219_0:169$ ip community-list expanded c1 permit 12268 ^65000:4_0:219_0:170$ ip community-list expanded c1 permit 12269 ^65000:4_0:219_0:171$ ip community-list expanded c1 permit 12270 ^65000:4_0:219_0:172$ ip community-list expanded c1 permit 12271 ^65000:4_0:219_0:173$ ip community-list expanded c1 permit 12272 ^65000:4_0:219_0:174$ ip community-list expanded c1 permit 12273 ^65000:4_0:219_0:175$ ip community-list expanded c1 permit 12274 ^65000:4_0:219_0:176$ ip community-list expanded c1 permit 12275 ^65000:4_0:219_0:177$ ip community-list expanded c1 permit 12276 ^65000:4_0:219_0:178$ ip community-list expanded c1 permit 12277 ^65000:4_0:219_0:179$ ip community-list expanded c1 permit 12278 ^65000:4_0:219_0:180$ ip community-list expanded c1 permit 12279 ^65000:4_0:219_0:181$ ip community-list expanded c1 permit 12280 ^65000:4_0:219_0:182$ ip community-list expanded c1 permit 12281 ^65000:4_0:219_0:183$ ip community-list expanded c1 permit 12282 ^65000:4_0:219_0:184$ ip community-list expanded c1 permit 12283 ^65000:4_0:219_0:185$ ip community-list expanded c1 permit 12284 ^65000:4_0:219_0:186$ ip community-list expanded c1 permit 12285 ^65000:4_0:219_0:187$ ip community-list expanded c1 permit 12286 ^65000:4_0:219_0:188$ ip community-list expanded c1 permit 12287 ^65000:4_0:219_0:189$ ip community-list expanded c1 permit 12288 ^65000:4_0:219_0:190$ ip community-list expanded c1 permit 12289 ^65000:4_0:219_0:191$ ip community-list expanded c1 permit 12290 ^65000:4_0:219_0:192$ ip community-list expanded c1 permit 12291 ^65000:4_0:219_0:193$ ip community-list expanded c1 permit 12292 ^65000:4_0:219_0:194$ ip community-list expanded c1 permit 12293 ^65000:4_0:219_0:195$ ip community-list expanded c1 permit 12294 ^65000:4_0:219_0:196$ ip community-list expanded c1 permit 12295 ^65000:4_0:219_0:197$ ip community-list expanded c1 permit 12296 ^65000:4_0:219_0:198$ ip community-list expanded c1 permit 12297 ^65000:4_0:219_0:199$ ip community-list expanded c1 permit 12298 ^65000:4_0:219_0:200$ ip community-list expanded c1 permit 12299 ^65000:4_0:219_0:201$ ip community-list expanded c1 permit 12300 ^65000:4_0:219_0:202$ ip community-list expanded c1 permit 12301 ^65000:4_0:219_0:203$ ip community-list expanded c1 permit 12302 ^65000:4_0:219_0:204$ ip community-list expanded c1 permit 12303 ^65000:4_0:219_0:205$ ip community-list expanded c1 permit 12304 ^65000:4_0:219_0:206$ ip community-list expanded c1 permit 12305 ^65000:4_0:219_0:207$ ip community-list expanded c1 permit 12306 ^65000:4_0:219_0:208$ ip community-list expanded c1 permit 12307 ^65000:4_0:219_0:209$ ip community-list expanded c1 permit 12308 ^65000:4_0:219_0:210$ ip community-list expanded c1 permit 12309 ^65000:4_0:219_0:211$ ip community-list expanded c1 permit 12310 ^65000:4_0:219_0:212$ ip community-list expanded c1 permit 12311 ^65000:4_0:219_0:213$ ip community-list expanded c1 permit 12312 ^65000:4_0:219_0:214$ ip community-list expanded c1 permit 12313 ^65000:4_0:219_0:215$ ip community-list expanded c1 permit 12314 ^65000:4_0:219_0:216$ ip community-list expanded c1 permit 12315 ^65000:4_0:219_0:217$ ip community-list expanded c1 permit 12316 ^65000:3_0:219_0:218$ ip community-list expanded c1 permit 12317 ^65000:4_0:219_0:218$ ip community-list expanded c1 permit 12318 ^65000:4_0:219_0:219$ ip community-list expanded c1 permit 12319 ^65000:4_0:220_0:111$ ip community-list expanded c1 permit 12320 ^65000:4_0:220_0:112$ ip community-list expanded c1 permit 12321 ^65000:4_0:220_0:113$ ip community-list expanded c1 permit 12322 ^65000:4_0:220_0:114$ ip community-list expanded c1 permit 12323 ^65000:4_0:220_0:115$ ip community-list expanded c1 permit 12324 ^65000:4_0:220_0:116$ ip community-list expanded c1 permit 12325 ^65000:4_0:220_0:117$ ip community-list expanded c1 permit 12326 ^65000:4_0:220_0:118$ ip community-list expanded c1 permit 12327 ^65000:4_0:220_0:119$ ip community-list expanded c1 permit 12328 ^65000:4_0:220_0:120$ ip community-list expanded c1 permit 12329 ^65000:4_0:220_0:121$ ip community-list expanded c1 permit 12330 ^65000:4_0:220_0:122$ ip community-list expanded c1 permit 12331 ^65000:4_0:220_0:123$ ip community-list expanded c1 permit 12332 ^65000:4_0:220_0:124$ ip community-list expanded c1 permit 12333 ^65000:4_0:220_0:125$ ip community-list expanded c1 permit 12334 ^65000:4_0:220_0:126$ ip community-list expanded c1 permit 12335 ^65000:4_0:220_0:127$ ip community-list expanded c1 permit 12336 ^65000:4_0:220_0:128$ ip community-list expanded c1 permit 12337 ^65000:4_0:220_0:129$ ip community-list expanded c1 permit 12338 ^65000:4_0:220_0:130$ ip community-list expanded c1 permit 12339 ^65000:4_0:220_0:131$ ip community-list expanded c1 permit 12340 ^65000:4_0:220_0:132$ ip community-list expanded c1 permit 12341 ^65000:4_0:220_0:133$ ip community-list expanded c1 permit 12342 ^65000:4_0:220_0:134$ ip community-list expanded c1 permit 12343 ^65000:4_0:220_0:135$ ip community-list expanded c1 permit 12344 ^65000:4_0:220_0:136$ ip community-list expanded c1 permit 12345 ^65000:4_0:220_0:137$ ip community-list expanded c1 permit 12346 ^65000:4_0:220_0:138$ ip community-list expanded c1 permit 12347 ^65000:4_0:220_0:139$ ip community-list expanded c1 permit 12348 ^65000:4_0:220_0:140$ ip community-list expanded c1 permit 12349 ^65000:4_0:220_0:141$ ip community-list expanded c1 permit 12350 ^65000:4_0:220_0:142$ ip community-list expanded c1 permit 12351 ^65000:4_0:220_0:143$ ip community-list expanded c1 permit 12352 ^65000:4_0:220_0:144$ ip community-list expanded c1 permit 12353 ^65000:4_0:220_0:145$ ip community-list expanded c1 permit 12354 ^65000:4_0:220_0:146$ ip community-list expanded c1 permit 12355 ^65000:4_0:220_0:147$ ip community-list expanded c1 permit 12356 ^65000:4_0:220_0:148$ ip community-list expanded c1 permit 12357 ^65000:4_0:220_0:149$ ip community-list expanded c1 permit 12358 ^65000:4_0:220_0:150$ ip community-list expanded c1 permit 12359 ^65000:4_0:220_0:151$ ip community-list expanded c1 permit 12360 ^65000:4_0:220_0:152$ ip community-list expanded c1 permit 12361 ^65000:4_0:220_0:153$ ip community-list expanded c1 permit 12362 ^65000:4_0:220_0:154$ ip community-list expanded c1 permit 12363 ^65000:4_0:220_0:155$ ip community-list expanded c1 permit 12364 ^65000:4_0:220_0:156$ ip community-list expanded c1 permit 12365 ^65000:4_0:220_0:157$ ip community-list expanded c1 permit 12366 ^65000:4_0:220_0:158$ ip community-list expanded c1 permit 12367 ^65000:4_0:220_0:159$ ip community-list expanded c1 permit 12368 ^65000:4_0:220_0:160$ ip community-list expanded c1 permit 12369 ^65000:4_0:220_0:161$ ip community-list expanded c1 permit 12370 ^65000:4_0:220_0:162$ ip community-list expanded c1 permit 12371 ^65000:4_0:220_0:163$ ip community-list expanded c1 permit 12372 ^65000:4_0:220_0:164$ ip community-list expanded c1 permit 12373 ^65000:4_0:220_0:165$ ip community-list expanded c1 permit 12374 ^65000:4_0:220_0:166$ ip community-list expanded c1 permit 12375 ^65000:4_0:220_0:167$ ip community-list expanded c1 permit 12376 ^65000:4_0:220_0:168$ ip community-list expanded c1 permit 12377 ^65000:4_0:220_0:169$ ip community-list expanded c1 permit 12378 ^65000:4_0:220_0:170$ ip community-list expanded c1 permit 12379 ^65000:4_0:220_0:171$ ip community-list expanded c1 permit 12380 ^65000:4_0:220_0:172$ ip community-list expanded c1 permit 12381 ^65000:4_0:220_0:173$ ip community-list expanded c1 permit 12382 ^65000:4_0:220_0:174$ ip community-list expanded c1 permit 12383 ^65000:4_0:220_0:175$ ip community-list expanded c1 permit 12384 ^65000:4_0:220_0:176$ ip community-list expanded c1 permit 12385 ^65000:4_0:220_0:177$ ip community-list expanded c1 permit 12386 ^65000:4_0:220_0:178$ ip community-list expanded c1 permit 12387 ^65000:4_0:220_0:179$ ip community-list expanded c1 permit 12388 ^65000:4_0:220_0:180$ ip community-list expanded c1 permit 12389 ^65000:4_0:220_0:181$ ip community-list expanded c1 permit 12390 ^65000:4_0:220_0:182$ ip community-list expanded c1 permit 12391 ^65000:4_0:220_0:183$ ip community-list expanded c1 permit 12392 ^65000:4_0:220_0:184$ ip community-list expanded c1 permit 12393 ^65000:4_0:220_0:185$ ip community-list expanded c1 permit 12394 ^65000:4_0:220_0:186$ ip community-list expanded c1 permit 12395 ^65000:4_0:220_0:187$ ip community-list expanded c1 permit 12396 ^65000:4_0:220_0:188$ ip community-list expanded c1 permit 12397 ^65000:4_0:220_0:189$ ip community-list expanded c1 permit 12398 ^65000:4_0:220_0:190$ ip community-list expanded c1 permit 12399 ^65000:4_0:220_0:191$ ip community-list expanded c1 permit 12400 ^65000:4_0:220_0:192$ ip community-list expanded c1 permit 12401 ^65000:4_0:220_0:193$ ip community-list expanded c1 permit 12402 ^65000:4_0:220_0:194$ ip community-list expanded c1 permit 12403 ^65000:4_0:220_0:195$ ip community-list expanded c1 permit 12404 ^65000:4_0:220_0:196$ ip community-list expanded c1 permit 12405 ^65000:4_0:220_0:197$ ip community-list expanded c1 permit 12406 ^65000:4_0:220_0:198$ ip community-list expanded c1 permit 12407 ^65000:4_0:220_0:199$ ip community-list expanded c1 permit 12408 ^65000:4_0:220_0:200$ ip community-list expanded c1 permit 12409 ^65000:4_0:220_0:201$ ip community-list expanded c1 permit 12410 ^65000:4_0:220_0:202$ ip community-list expanded c1 permit 12411 ^65000:4_0:220_0:203$ ip community-list expanded c1 permit 12412 ^65000:4_0:220_0:204$ ip community-list expanded c1 permit 12413 ^65000:4_0:220_0:205$ ip community-list expanded c1 permit 12414 ^65000:4_0:220_0:206$ ip community-list expanded c1 permit 12415 ^65000:4_0:220_0:207$ ip community-list expanded c1 permit 12416 ^65000:4_0:220_0:208$ ip community-list expanded c1 permit 12417 ^65000:4_0:220_0:209$ ip community-list expanded c1 permit 12418 ^65000:4_0:220_0:210$ ip community-list expanded c1 permit 12419 ^65000:4_0:220_0:211$ ip community-list expanded c1 permit 12420 ^65000:4_0:220_0:212$ ip community-list expanded c1 permit 12421 ^65000:4_0:220_0:213$ ip community-list expanded c1 permit 12422 ^65000:4_0:220_0:214$ ip community-list expanded c1 permit 12423 ^65000:4_0:220_0:215$ ip community-list expanded c1 permit 12424 ^65000:4_0:220_0:216$ ip community-list expanded c1 permit 12425 ^65000:4_0:220_0:217$ ip community-list expanded c1 permit 12426 ^65000:4_0:220_0:218$ ip community-list expanded c1 permit 12427 ^65000:3_0:220_0:219$ ip community-list expanded c1 permit 12428 ^65000:4_0:220_0:219$ ip community-list expanded c1 permit 12429 ^65000:4_0:220_0:220$ ip community-list expanded c1 permit 12430 ^65000:4_0:221_0:111$ ip community-list expanded c1 permit 12431 ^65000:4_0:221_0:112$ ip community-list expanded c1 permit 12432 ^65000:4_0:221_0:113$ ip community-list expanded c1 permit 12433 ^65000:4_0:221_0:114$ ip community-list expanded c1 permit 12434 ^65000:4_0:221_0:115$ ip community-list expanded c1 permit 12435 ^65000:4_0:221_0:116$ ip community-list expanded c1 permit 12436 ^65000:4_0:221_0:117$ ip community-list expanded c1 permit 12437 ^65000:4_0:221_0:118$ ip community-list expanded c1 permit 12438 ^65000:4_0:221_0:119$ ip community-list expanded c1 permit 12439 ^65000:4_0:221_0:120$ ip community-list expanded c1 permit 12440 ^65000:4_0:221_0:121$ ip community-list expanded c1 permit 12441 ^65000:4_0:221_0:122$ ip community-list expanded c1 permit 12442 ^65000:4_0:221_0:123$ ip community-list expanded c1 permit 12443 ^65000:4_0:221_0:124$ ip community-list expanded c1 permit 12444 ^65000:4_0:221_0:125$ ip community-list expanded c1 permit 12445 ^65000:4_0:221_0:126$ ip community-list expanded c1 permit 12446 ^65000:4_0:221_0:127$ ip community-list expanded c1 permit 12447 ^65000:4_0:221_0:128$ ip community-list expanded c1 permit 12448 ^65000:4_0:221_0:129$ ip community-list expanded c1 permit 12449 ^65000:4_0:221_0:130$ ip community-list expanded c1 permit 12450 ^65000:4_0:221_0:131$ ip community-list expanded c1 permit 12451 ^65000:4_0:221_0:132$ ip community-list expanded c1 permit 12452 ^65000:4_0:221_0:133$ ip community-list expanded c1 permit 12453 ^65000:4_0:221_0:134$ ip community-list expanded c1 permit 12454 ^65000:4_0:221_0:135$ ip community-list expanded c1 permit 12455 ^65000:4_0:221_0:136$ ip community-list expanded c1 permit 12456 ^65000:4_0:221_0:137$ ip community-list expanded c1 permit 12457 ^65000:4_0:221_0:138$ ip community-list expanded c1 permit 12458 ^65000:4_0:221_0:139$ ip community-list expanded c1 permit 12459 ^65000:4_0:221_0:140$ ip community-list expanded c1 permit 12460 ^65000:4_0:221_0:141$ ip community-list expanded c1 permit 12461 ^65000:4_0:221_0:142$ ip community-list expanded c1 permit 12462 ^65000:4_0:221_0:143$ ip community-list expanded c1 permit 12463 ^65000:4_0:221_0:144$ ip community-list expanded c1 permit 12464 ^65000:4_0:221_0:145$ ip community-list expanded c1 permit 12465 ^65000:4_0:221_0:146$ ip community-list expanded c1 permit 12466 ^65000:4_0:221_0:147$ ip community-list expanded c1 permit 12467 ^65000:4_0:221_0:148$ ip community-list expanded c1 permit 12468 ^65000:4_0:221_0:149$ ip community-list expanded c1 permit 12469 ^65000:4_0:221_0:150$ ip community-list expanded c1 permit 12470 ^65000:4_0:221_0:151$ ip community-list expanded c1 permit 12471 ^65000:4_0:221_0:152$ ip community-list expanded c1 permit 12472 ^65000:4_0:221_0:153$ ip community-list expanded c1 permit 12473 ^65000:4_0:221_0:154$ ip community-list expanded c1 permit 12474 ^65000:4_0:221_0:155$ ip community-list expanded c1 permit 12475 ^65000:4_0:221_0:156$ ip community-list expanded c1 permit 12476 ^65000:4_0:221_0:157$ ip community-list expanded c1 permit 12477 ^65000:4_0:221_0:158$ ip community-list expanded c1 permit 12478 ^65000:4_0:221_0:159$ ip community-list expanded c1 permit 12479 ^65000:4_0:221_0:160$ ip community-list expanded c1 permit 12480 ^65000:4_0:221_0:161$ ip community-list expanded c1 permit 12481 ^65000:4_0:221_0:162$ ip community-list expanded c1 permit 12482 ^65000:4_0:221_0:163$ ip community-list expanded c1 permit 12483 ^65000:4_0:221_0:164$ ip community-list expanded c1 permit 12484 ^65000:4_0:221_0:165$ ip community-list expanded c1 permit 12485 ^65000:4_0:221_0:166$ ip community-list expanded c1 permit 12486 ^65000:4_0:221_0:167$ ip community-list expanded c1 permit 12487 ^65000:4_0:221_0:168$ ip community-list expanded c1 permit 12488 ^65000:4_0:221_0:169$ ip community-list expanded c1 permit 12489 ^65000:4_0:221_0:170$ ip community-list expanded c1 permit 12490 ^65000:4_0:221_0:171$ ip community-list expanded c1 permit 12491 ^65000:4_0:221_0:172$ ip community-list expanded c1 permit 12492 ^65000:4_0:221_0:173$ ip community-list expanded c1 permit 12493 ^65000:4_0:221_0:174$ ip community-list expanded c1 permit 12494 ^65000:4_0:221_0:175$ ip community-list expanded c1 permit 12495 ^65000:4_0:221_0:176$ ip community-list expanded c1 permit 12496 ^65000:4_0:221_0:177$ ip community-list expanded c1 permit 12497 ^65000:4_0:221_0:178$ ip community-list expanded c1 permit 12498 ^65000:4_0:221_0:179$ ip community-list expanded c1 permit 12499 ^65000:4_0:221_0:180$ ip community-list expanded c1 permit 12500 ^65000:4_0:221_0:181$ ip community-list expanded c1 permit 12501 ^65000:4_0:221_0:182$ ip community-list expanded c1 permit 12502 ^65000:4_0:221_0:183$ ip community-list expanded c1 permit 12503 ^65000:4_0:221_0:184$ ip community-list expanded c1 permit 12504 ^65000:4_0:221_0:185$ ip community-list expanded c1 permit 12505 ^65000:4_0:221_0:186$ ip community-list expanded c1 permit 12506 ^65000:4_0:221_0:187$ ip community-list expanded c1 permit 12507 ^65000:4_0:221_0:188$ ip community-list expanded c1 permit 12508 ^65000:4_0:221_0:189$ ip community-list expanded c1 permit 12509 ^65000:4_0:221_0:190$ ip community-list expanded c1 permit 12510 ^65000:4_0:221_0:191$ ip community-list expanded c1 permit 12511 ^65000:4_0:221_0:192$ ip community-list expanded c1 permit 12512 ^65000:4_0:221_0:193$ ip community-list expanded c1 permit 12513 ^65000:4_0:221_0:194$ ip community-list expanded c1 permit 12514 ^65000:4_0:221_0:195$ ip community-list expanded c1 permit 12515 ^65000:4_0:221_0:196$ ip community-list expanded c1 permit 12516 ^65000:4_0:221_0:197$ ip community-list expanded c1 permit 12517 ^65000:4_0:221_0:198$ ip community-list expanded c1 permit 12518 ^65000:4_0:221_0:199$ ip community-list expanded c1 permit 12519 ^65000:4_0:221_0:200$ ip community-list expanded c1 permit 12520 ^65000:4_0:221_0:201$ ip community-list expanded c1 permit 12521 ^65000:4_0:221_0:202$ ip community-list expanded c1 permit 12522 ^65000:4_0:221_0:203$ ip community-list expanded c1 permit 12523 ^65000:4_0:221_0:204$ ip community-list expanded c1 permit 12524 ^65000:4_0:221_0:205$ ip community-list expanded c1 permit 12525 ^65000:4_0:221_0:206$ ip community-list expanded c1 permit 12526 ^65000:4_0:221_0:207$ ip community-list expanded c1 permit 12527 ^65000:4_0:221_0:208$ ip community-list expanded c1 permit 12528 ^65000:4_0:221_0:209$ ip community-list expanded c1 permit 12529 ^65000:4_0:221_0:210$ ip community-list expanded c1 permit 12530 ^65000:4_0:221_0:211$ ip community-list expanded c1 permit 12531 ^65000:4_0:221_0:212$ ip community-list expanded c1 permit 12532 ^65000:4_0:221_0:213$ ip community-list expanded c1 permit 12533 ^65000:4_0:221_0:214$ ip community-list expanded c1 permit 12534 ^65000:4_0:221_0:215$ ip community-list expanded c1 permit 12535 ^65000:4_0:221_0:216$ ip community-list expanded c1 permit 12536 ^65000:4_0:221_0:217$ ip community-list expanded c1 permit 12537 ^65000:4_0:221_0:218$ ip community-list expanded c1 permit 12538 ^65000:4_0:221_0:219$ ip community-list expanded c1 permit 12539 ^65000:3_0:221_0:220$ ip community-list expanded c1 permit 12540 ^65000:4_0:221_0:220$ ip community-list expanded c1 permit 12541 ^65000:4_0:221_0:221$ ip community-list expanded c1 permit 12542 ^65000:4_0:222_0:112$ ip community-list expanded c1 permit 12543 ^65000:4_0:222_0:113$ ip community-list expanded c1 permit 12544 ^65000:4_0:222_0:114$ ip community-list expanded c1 permit 12545 ^65000:4_0:222_0:115$ ip community-list expanded c1 permit 12546 ^65000:4_0:222_0:116$ ip community-list expanded c1 permit 12547 ^65000:4_0:222_0:117$ ip community-list expanded c1 permit 12548 ^65000:4_0:222_0:118$ ip community-list expanded c1 permit 12549 ^65000:4_0:222_0:119$ ip community-list expanded c1 permit 12550 ^65000:4_0:222_0:120$ ip community-list expanded c1 permit 12551 ^65000:4_0:222_0:121$ ip community-list expanded c1 permit 12552 ^65000:4_0:222_0:122$ ip community-list expanded c1 permit 12553 ^65000:4_0:222_0:123$ ip community-list expanded c1 permit 12554 ^65000:4_0:222_0:124$ ip community-list expanded c1 permit 12555 ^65000:4_0:222_0:125$ ip community-list expanded c1 permit 12556 ^65000:4_0:222_0:126$ ip community-list expanded c1 permit 12557 ^65000:4_0:222_0:127$ ip community-list expanded c1 permit 12558 ^65000:4_0:222_0:128$ ip community-list expanded c1 permit 12559 ^65000:4_0:222_0:129$ ip community-list expanded c1 permit 12560 ^65000:4_0:222_0:130$ ip community-list expanded c1 permit 12561 ^65000:4_0:222_0:131$ ip community-list expanded c1 permit 12562 ^65000:4_0:222_0:132$ ip community-list expanded c1 permit 12563 ^65000:4_0:222_0:133$ ip community-list expanded c1 permit 12564 ^65000:4_0:222_0:134$ ip community-list expanded c1 permit 12565 ^65000:4_0:222_0:135$ ip community-list expanded c1 permit 12566 ^65000:4_0:222_0:136$ ip community-list expanded c1 permit 12567 ^65000:4_0:222_0:137$ ip community-list expanded c1 permit 12568 ^65000:4_0:222_0:138$ ip community-list expanded c1 permit 12569 ^65000:4_0:222_0:139$ ip community-list expanded c1 permit 12570 ^65000:4_0:222_0:140$ ip community-list expanded c1 permit 12571 ^65000:4_0:222_0:141$ ip community-list expanded c1 permit 12572 ^65000:4_0:222_0:142$ ip community-list expanded c1 permit 12573 ^65000:4_0:222_0:143$ ip community-list expanded c1 permit 12574 ^65000:4_0:222_0:144$ ip community-list expanded c1 permit 12575 ^65000:4_0:222_0:145$ ip community-list expanded c1 permit 12576 ^65000:4_0:222_0:146$ ip community-list expanded c1 permit 12577 ^65000:4_0:222_0:147$ ip community-list expanded c1 permit 12578 ^65000:4_0:222_0:148$ ip community-list expanded c1 permit 12579 ^65000:4_0:222_0:149$ ip community-list expanded c1 permit 12580 ^65000:4_0:222_0:150$ ip community-list expanded c1 permit 12581 ^65000:4_0:222_0:151$ ip community-list expanded c1 permit 12582 ^65000:4_0:222_0:152$ ip community-list expanded c1 permit 12583 ^65000:4_0:222_0:153$ ip community-list expanded c1 permit 12584 ^65000:4_0:222_0:154$ ip community-list expanded c1 permit 12585 ^65000:4_0:222_0:155$ ip community-list expanded c1 permit 12586 ^65000:4_0:222_0:156$ ip community-list expanded c1 permit 12587 ^65000:4_0:222_0:157$ ip community-list expanded c1 permit 12588 ^65000:4_0:222_0:158$ ip community-list expanded c1 permit 12589 ^65000:4_0:222_0:159$ ip community-list expanded c1 permit 12590 ^65000:4_0:222_0:160$ ip community-list expanded c1 permit 12591 ^65000:4_0:222_0:161$ ip community-list expanded c1 permit 12592 ^65000:4_0:222_0:162$ ip community-list expanded c1 permit 12593 ^65000:4_0:222_0:163$ ip community-list expanded c1 permit 12594 ^65000:4_0:222_0:164$ ip community-list expanded c1 permit 12595 ^65000:4_0:222_0:165$ ip community-list expanded c1 permit 12596 ^65000:4_0:222_0:166$ ip community-list expanded c1 permit 12597 ^65000:4_0:222_0:167$ ip community-list expanded c1 permit 12598 ^65000:4_0:222_0:168$ ip community-list expanded c1 permit 12599 ^65000:4_0:222_0:169$ ip community-list expanded c1 permit 12600 ^65000:4_0:222_0:170$ ip community-list expanded c1 permit 12601 ^65000:4_0:222_0:171$ ip community-list expanded c1 permit 12602 ^65000:4_0:222_0:172$ ip community-list expanded c1 permit 12603 ^65000:4_0:222_0:173$ ip community-list expanded c1 permit 12604 ^65000:4_0:222_0:174$ ip community-list expanded c1 permit 12605 ^65000:4_0:222_0:175$ ip community-list expanded c1 permit 12606 ^65000:4_0:222_0:176$ ip community-list expanded c1 permit 12607 ^65000:4_0:222_0:177$ ip community-list expanded c1 permit 12608 ^65000:4_0:222_0:178$ ip community-list expanded c1 permit 12609 ^65000:4_0:222_0:179$ ip community-list expanded c1 permit 12610 ^65000:4_0:222_0:180$ ip community-list expanded c1 permit 12611 ^65000:4_0:222_0:181$ ip community-list expanded c1 permit 12612 ^65000:4_0:222_0:182$ ip community-list expanded c1 permit 12613 ^65000:4_0:222_0:183$ ip community-list expanded c1 permit 12614 ^65000:4_0:222_0:184$ ip community-list expanded c1 permit 12615 ^65000:4_0:222_0:185$ ip community-list expanded c1 permit 12616 ^65000:4_0:222_0:186$ ip community-list expanded c1 permit 12617 ^65000:4_0:222_0:187$ ip community-list expanded c1 permit 12618 ^65000:4_0:222_0:188$ ip community-list expanded c1 permit 12619 ^65000:4_0:222_0:189$ ip community-list expanded c1 permit 12620 ^65000:4_0:222_0:190$ ip community-list expanded c1 permit 12621 ^65000:4_0:222_0:191$ ip community-list expanded c1 permit 12622 ^65000:4_0:222_0:192$ ip community-list expanded c1 permit 12623 ^65000:4_0:222_0:193$ ip community-list expanded c1 permit 12624 ^65000:4_0:222_0:194$ ip community-list expanded c1 permit 12625 ^65000:4_0:222_0:195$ ip community-list expanded c1 permit 12626 ^65000:4_0:222_0:196$ ip community-list expanded c1 permit 12627 ^65000:4_0:222_0:197$ ip community-list expanded c1 permit 12628 ^65000:4_0:222_0:198$ ip community-list expanded c1 permit 12629 ^65000:4_0:222_0:199$ ip community-list expanded c1 permit 12630 ^65000:4_0:222_0:200$ ip community-list expanded c1 permit 12631 ^65000:4_0:222_0:201$ ip community-list expanded c1 permit 12632 ^65000:4_0:222_0:202$ ip community-list expanded c1 permit 12633 ^65000:4_0:222_0:203$ ip community-list expanded c1 permit 12634 ^65000:4_0:222_0:204$ ip community-list expanded c1 permit 12635 ^65000:4_0:222_0:205$ ip community-list expanded c1 permit 12636 ^65000:4_0:222_0:206$ ip community-list expanded c1 permit 12637 ^65000:4_0:222_0:207$ ip community-list expanded c1 permit 12638 ^65000:4_0:222_0:208$ ip community-list expanded c1 permit 12639 ^65000:4_0:222_0:209$ ip community-list expanded c1 permit 12640 ^65000:4_0:222_0:210$ ip community-list expanded c1 permit 12641 ^65000:4_0:222_0:211$ ip community-list expanded c1 permit 12642 ^65000:4_0:222_0:212$ ip community-list expanded c1 permit 12643 ^65000:4_0:222_0:213$ ip community-list expanded c1 permit 12644 ^65000:4_0:222_0:214$ ip community-list expanded c1 permit 12645 ^65000:4_0:222_0:215$ ip community-list expanded c1 permit 12646 ^65000:4_0:222_0:216$ ip community-list expanded c1 permit 12647 ^65000:4_0:222_0:217$ ip community-list expanded c1 permit 12648 ^65000:4_0:222_0:218$ ip community-list expanded c1 permit 12649 ^65000:4_0:222_0:219$ ip community-list expanded c1 permit 12650 ^65000:4_0:222_0:220$ ip community-list expanded c1 permit 12651 ^65000:3_0:222_0:221$ ip community-list expanded c1 permit 12652 ^65000:4_0:222_0:221$ ip community-list expanded c1 permit 12653 ^65000:4_0:222_0:222$ ip community-list expanded c1 permit 12654 ^65000:4_0:223_0:112$ ip community-list expanded c1 permit 12655 ^65000:4_0:223_0:113$ ip community-list expanded c1 permit 12656 ^65000:4_0:223_0:114$ ip community-list expanded c1 permit 12657 ^65000:4_0:223_0:115$ ip community-list expanded c1 permit 12658 ^65000:4_0:223_0:116$ ip community-list expanded c1 permit 12659 ^65000:4_0:223_0:117$ ip community-list expanded c1 permit 12660 ^65000:4_0:223_0:118$ ip community-list expanded c1 permit 12661 ^65000:4_0:223_0:119$ ip community-list expanded c1 permit 12662 ^65000:4_0:223_0:120$ ip community-list expanded c1 permit 12663 ^65000:4_0:223_0:121$ ip community-list expanded c1 permit 12664 ^65000:4_0:223_0:122$ ip community-list expanded c1 permit 12665 ^65000:4_0:223_0:123$ ip community-list expanded c1 permit 12666 ^65000:4_0:223_0:124$ ip community-list expanded c1 permit 12667 ^65000:4_0:223_0:125$ ip community-list expanded c1 permit 12668 ^65000:4_0:223_0:126$ ip community-list expanded c1 permit 12669 ^65000:4_0:223_0:127$ ip community-list expanded c1 permit 12670 ^65000:4_0:223_0:128$ ip community-list expanded c1 permit 12671 ^65000:4_0:223_0:129$ ip community-list expanded c1 permit 12672 ^65000:4_0:223_0:130$ ip community-list expanded c1 permit 12673 ^65000:4_0:223_0:131$ ip community-list expanded c1 permit 12674 ^65000:4_0:223_0:132$ ip community-list expanded c1 permit 12675 ^65000:4_0:223_0:133$ ip community-list expanded c1 permit 12676 ^65000:4_0:223_0:134$ ip community-list expanded c1 permit 12677 ^65000:4_0:223_0:135$ ip community-list expanded c1 permit 12678 ^65000:4_0:223_0:136$ ip community-list expanded c1 permit 12679 ^65000:4_0:223_0:137$ ip community-list expanded c1 permit 12680 ^65000:4_0:223_0:138$ ip community-list expanded c1 permit 12681 ^65000:4_0:223_0:139$ ip community-list expanded c1 permit 12682 ^65000:4_0:223_0:140$ ip community-list expanded c1 permit 12683 ^65000:4_0:223_0:141$ ip community-list expanded c1 permit 12684 ^65000:4_0:223_0:142$ ip community-list expanded c1 permit 12685 ^65000:4_0:223_0:143$ ip community-list expanded c1 permit 12686 ^65000:4_0:223_0:144$ ip community-list expanded c1 permit 12687 ^65000:4_0:223_0:145$ ip community-list expanded c1 permit 12688 ^65000:4_0:223_0:146$ ip community-list expanded c1 permit 12689 ^65000:4_0:223_0:147$ ip community-list expanded c1 permit 12690 ^65000:4_0:223_0:148$ ip community-list expanded c1 permit 12691 ^65000:4_0:223_0:149$ ip community-list expanded c1 permit 12692 ^65000:4_0:223_0:150$ ip community-list expanded c1 permit 12693 ^65000:4_0:223_0:151$ ip community-list expanded c1 permit 12694 ^65000:4_0:223_0:152$ ip community-list expanded c1 permit 12695 ^65000:4_0:223_0:153$ ip community-list expanded c1 permit 12696 ^65000:4_0:223_0:154$ ip community-list expanded c1 permit 12697 ^65000:4_0:223_0:155$ ip community-list expanded c1 permit 12698 ^65000:4_0:223_0:156$ ip community-list expanded c1 permit 12699 ^65000:4_0:223_0:157$ ip community-list expanded c1 permit 12700 ^65000:4_0:223_0:158$ ip community-list expanded c1 permit 12701 ^65000:4_0:223_0:159$ ip community-list expanded c1 permit 12702 ^65000:4_0:223_0:160$ ip community-list expanded c1 permit 12703 ^65000:4_0:223_0:161$ ip community-list expanded c1 permit 12704 ^65000:4_0:223_0:162$ ip community-list expanded c1 permit 12705 ^65000:4_0:223_0:163$ ip community-list expanded c1 permit 12706 ^65000:4_0:223_0:164$ ip community-list expanded c1 permit 12707 ^65000:4_0:223_0:165$ ip community-list expanded c1 permit 12708 ^65000:4_0:223_0:166$ ip community-list expanded c1 permit 12709 ^65000:4_0:223_0:167$ ip community-list expanded c1 permit 12710 ^65000:4_0:223_0:168$ ip community-list expanded c1 permit 12711 ^65000:4_0:223_0:169$ ip community-list expanded c1 permit 12712 ^65000:4_0:223_0:170$ ip community-list expanded c1 permit 12713 ^65000:4_0:223_0:171$ ip community-list expanded c1 permit 12714 ^65000:4_0:223_0:172$ ip community-list expanded c1 permit 12715 ^65000:4_0:223_0:173$ ip community-list expanded c1 permit 12716 ^65000:4_0:223_0:174$ ip community-list expanded c1 permit 12717 ^65000:4_0:223_0:175$ ip community-list expanded c1 permit 12718 ^65000:4_0:223_0:176$ ip community-list expanded c1 permit 12719 ^65000:4_0:223_0:177$ ip community-list expanded c1 permit 12720 ^65000:4_0:223_0:178$ ip community-list expanded c1 permit 12721 ^65000:4_0:223_0:179$ ip community-list expanded c1 permit 12722 ^65000:4_0:223_0:180$ ip community-list expanded c1 permit 12723 ^65000:4_0:223_0:181$ ip community-list expanded c1 permit 12724 ^65000:4_0:223_0:182$ ip community-list expanded c1 permit 12725 ^65000:4_0:223_0:183$ ip community-list expanded c1 permit 12726 ^65000:4_0:223_0:184$ ip community-list expanded c1 permit 12727 ^65000:4_0:223_0:185$ ip community-list expanded c1 permit 12728 ^65000:4_0:223_0:186$ ip community-list expanded c1 permit 12729 ^65000:4_0:223_0:187$ ip community-list expanded c1 permit 12730 ^65000:4_0:223_0:188$ ip community-list expanded c1 permit 12731 ^65000:4_0:223_0:189$ ip community-list expanded c1 permit 12732 ^65000:4_0:223_0:190$ ip community-list expanded c1 permit 12733 ^65000:4_0:223_0:191$ ip community-list expanded c1 permit 12734 ^65000:4_0:223_0:192$ ip community-list expanded c1 permit 12735 ^65000:4_0:223_0:193$ ip community-list expanded c1 permit 12736 ^65000:4_0:223_0:194$ ip community-list expanded c1 permit 12737 ^65000:4_0:223_0:195$ ip community-list expanded c1 permit 12738 ^65000:4_0:223_0:196$ ip community-list expanded c1 permit 12739 ^65000:4_0:223_0:197$ ip community-list expanded c1 permit 12740 ^65000:4_0:223_0:198$ ip community-list expanded c1 permit 12741 ^65000:4_0:223_0:199$ ip community-list expanded c1 permit 12742 ^65000:4_0:223_0:200$ ip community-list expanded c1 permit 12743 ^65000:4_0:223_0:201$ ip community-list expanded c1 permit 12744 ^65000:4_0:223_0:202$ ip community-list expanded c1 permit 12745 ^65000:4_0:223_0:203$ ip community-list expanded c1 permit 12746 ^65000:4_0:223_0:204$ ip community-list expanded c1 permit 12747 ^65000:4_0:223_0:205$ ip community-list expanded c1 permit 12748 ^65000:4_0:223_0:206$ ip community-list expanded c1 permit 12749 ^65000:4_0:223_0:207$ ip community-list expanded c1 permit 12750 ^65000:4_0:223_0:208$ ip community-list expanded c1 permit 12751 ^65000:4_0:223_0:209$ ip community-list expanded c1 permit 12752 ^65000:4_0:223_0:210$ ip community-list expanded c1 permit 12753 ^65000:4_0:223_0:211$ ip community-list expanded c1 permit 12754 ^65000:4_0:223_0:212$ ip community-list expanded c1 permit 12755 ^65000:4_0:223_0:213$ ip community-list expanded c1 permit 12756 ^65000:4_0:223_0:214$ ip community-list expanded c1 permit 12757 ^65000:4_0:223_0:215$ ip community-list expanded c1 permit 12758 ^65000:4_0:223_0:216$ ip community-list expanded c1 permit 12759 ^65000:4_0:223_0:217$ ip community-list expanded c1 permit 12760 ^65000:4_0:223_0:218$ ip community-list expanded c1 permit 12761 ^65000:4_0:223_0:219$ ip community-list expanded c1 permit 12762 ^65000:4_0:223_0:220$ ip community-list expanded c1 permit 12763 ^65000:4_0:223_0:221$ ip community-list expanded c1 permit 12764 ^65000:3_0:223_0:222$ ip community-list expanded c1 permit 12765 ^65000:4_0:223_0:222$ ip community-list expanded c1 permit 12766 ^65000:4_0:223_0:223$ ip community-list expanded c1 permit 12767 ^65000:4_0:224_0:113$ ip community-list expanded c1 permit 12768 ^65000:4_0:224_0:114$ ip community-list expanded c1 permit 12769 ^65000:4_0:224_0:115$ ip community-list expanded c1 permit 12770 ^65000:4_0:224_0:116$ ip community-list expanded c1 permit 12771 ^65000:4_0:224_0:117$ ip community-list expanded c1 permit 12772 ^65000:4_0:224_0:118$ ip community-list expanded c1 permit 12773 ^65000:4_0:224_0:119$ ip community-list expanded c1 permit 12774 ^65000:4_0:224_0:120$ ip community-list expanded c1 permit 12775 ^65000:4_0:224_0:121$ ip community-list expanded c1 permit 12776 ^65000:4_0:224_0:122$ ip community-list expanded c1 permit 12777 ^65000:4_0:224_0:123$ ip community-list expanded c1 permit 12778 ^65000:4_0:224_0:124$ ip community-list expanded c1 permit 12779 ^65000:4_0:224_0:125$ ip community-list expanded c1 permit 12780 ^65000:4_0:224_0:126$ ip community-list expanded c1 permit 12781 ^65000:4_0:224_0:127$ ip community-list expanded c1 permit 12782 ^65000:4_0:224_0:128$ ip community-list expanded c1 permit 12783 ^65000:4_0:224_0:129$ ip community-list expanded c1 permit 12784 ^65000:4_0:224_0:130$ ip community-list expanded c1 permit 12785 ^65000:4_0:224_0:131$ ip community-list expanded c1 permit 12786 ^65000:4_0:224_0:132$ ip community-list expanded c1 permit 12787 ^65000:4_0:224_0:133$ ip community-list expanded c1 permit 12788 ^65000:4_0:224_0:134$ ip community-list expanded c1 permit 12789 ^65000:4_0:224_0:135$ ip community-list expanded c1 permit 12790 ^65000:4_0:224_0:136$ ip community-list expanded c1 permit 12791 ^65000:4_0:224_0:137$ ip community-list expanded c1 permit 12792 ^65000:4_0:224_0:138$ ip community-list expanded c1 permit 12793 ^65000:4_0:224_0:139$ ip community-list expanded c1 permit 12794 ^65000:4_0:224_0:140$ ip community-list expanded c1 permit 12795 ^65000:4_0:224_0:141$ ip community-list expanded c1 permit 12796 ^65000:4_0:224_0:142$ ip community-list expanded c1 permit 12797 ^65000:4_0:224_0:143$ ip community-list expanded c1 permit 12798 ^65000:4_0:224_0:144$ ip community-list expanded c1 permit 12799 ^65000:4_0:224_0:145$ ip community-list expanded c1 permit 12800 ^65000:4_0:224_0:146$ ip community-list expanded c1 permit 12801 ^65000:4_0:224_0:147$ ip community-list expanded c1 permit 12802 ^65000:4_0:224_0:148$ ip community-list expanded c1 permit 12803 ^65000:4_0:224_0:149$ ip community-list expanded c1 permit 12804 ^65000:4_0:224_0:150$ ip community-list expanded c1 permit 12805 ^65000:4_0:224_0:151$ ip community-list expanded c1 permit 12806 ^65000:4_0:224_0:152$ ip community-list expanded c1 permit 12807 ^65000:4_0:224_0:153$ ip community-list expanded c1 permit 12808 ^65000:4_0:224_0:154$ ip community-list expanded c1 permit 12809 ^65000:4_0:224_0:155$ ip community-list expanded c1 permit 12810 ^65000:4_0:224_0:156$ ip community-list expanded c1 permit 12811 ^65000:4_0:224_0:157$ ip community-list expanded c1 permit 12812 ^65000:4_0:224_0:158$ ip community-list expanded c1 permit 12813 ^65000:4_0:224_0:159$ ip community-list expanded c1 permit 12814 ^65000:4_0:224_0:160$ ip community-list expanded c1 permit 12815 ^65000:4_0:224_0:161$ ip community-list expanded c1 permit 12816 ^65000:4_0:224_0:162$ ip community-list expanded c1 permit 12817 ^65000:4_0:224_0:163$ ip community-list expanded c1 permit 12818 ^65000:4_0:224_0:164$ ip community-list expanded c1 permit 12819 ^65000:4_0:224_0:165$ ip community-list expanded c1 permit 12820 ^65000:4_0:224_0:166$ ip community-list expanded c1 permit 12821 ^65000:4_0:224_0:167$ ip community-list expanded c1 permit 12822 ^65000:4_0:224_0:168$ ip community-list expanded c1 permit 12823 ^65000:4_0:224_0:169$ ip community-list expanded c1 permit 12824 ^65000:4_0:224_0:170$ ip community-list expanded c1 permit 12825 ^65000:4_0:224_0:171$ ip community-list expanded c1 permit 12826 ^65000:4_0:224_0:172$ ip community-list expanded c1 permit 12827 ^65000:4_0:224_0:173$ ip community-list expanded c1 permit 12828 ^65000:4_0:224_0:174$ ip community-list expanded c1 permit 12829 ^65000:4_0:224_0:175$ ip community-list expanded c1 permit 12830 ^65000:4_0:224_0:176$ ip community-list expanded c1 permit 12831 ^65000:4_0:224_0:177$ ip community-list expanded c1 permit 12832 ^65000:4_0:224_0:178$ ip community-list expanded c1 permit 12833 ^65000:4_0:224_0:179$ ip community-list expanded c1 permit 12834 ^65000:4_0:224_0:180$ ip community-list expanded c1 permit 12835 ^65000:4_0:224_0:181$ ip community-list expanded c1 permit 12836 ^65000:4_0:224_0:182$ ip community-list expanded c1 permit 12837 ^65000:4_0:224_0:183$ ip community-list expanded c1 permit 12838 ^65000:4_0:224_0:184$ ip community-list expanded c1 permit 12839 ^65000:4_0:224_0:185$ ip community-list expanded c1 permit 12840 ^65000:4_0:224_0:186$ ip community-list expanded c1 permit 12841 ^65000:4_0:224_0:187$ ip community-list expanded c1 permit 12842 ^65000:4_0:224_0:188$ ip community-list expanded c1 permit 12843 ^65000:4_0:224_0:189$ ip community-list expanded c1 permit 12844 ^65000:4_0:224_0:190$ ip community-list expanded c1 permit 12845 ^65000:4_0:224_0:191$ ip community-list expanded c1 permit 12846 ^65000:4_0:224_0:192$ ip community-list expanded c1 permit 12847 ^65000:4_0:224_0:193$ ip community-list expanded c1 permit 12848 ^65000:4_0:224_0:194$ ip community-list expanded c1 permit 12849 ^65000:4_0:224_0:195$ ip community-list expanded c1 permit 12850 ^65000:4_0:224_0:196$ ip community-list expanded c1 permit 12851 ^65000:4_0:224_0:197$ ip community-list expanded c1 permit 12852 ^65000:4_0:224_0:198$ ip community-list expanded c1 permit 12853 ^65000:4_0:224_0:199$ ip community-list expanded c1 permit 12854 ^65000:4_0:224_0:200$ ip community-list expanded c1 permit 12855 ^65000:4_0:224_0:201$ ip community-list expanded c1 permit 12856 ^65000:4_0:224_0:202$ ip community-list expanded c1 permit 12857 ^65000:4_0:224_0:203$ ip community-list expanded c1 permit 12858 ^65000:4_0:224_0:204$ ip community-list expanded c1 permit 12859 ^65000:4_0:224_0:205$ ip community-list expanded c1 permit 12860 ^65000:4_0:224_0:206$ ip community-list expanded c1 permit 12861 ^65000:4_0:224_0:207$ ip community-list expanded c1 permit 12862 ^65000:4_0:224_0:208$ ip community-list expanded c1 permit 12863 ^65000:4_0:224_0:209$ ip community-list expanded c1 permit 12864 ^65000:4_0:224_0:210$ ip community-list expanded c1 permit 12865 ^65000:4_0:224_0:211$ ip community-list expanded c1 permit 12866 ^65000:4_0:224_0:212$ ip community-list expanded c1 permit 12867 ^65000:4_0:224_0:213$ ip community-list expanded c1 permit 12868 ^65000:4_0:224_0:214$ ip community-list expanded c1 permit 12869 ^65000:4_0:224_0:215$ ip community-list expanded c1 permit 12870 ^65000:4_0:224_0:216$ ip community-list expanded c1 permit 12871 ^65000:4_0:224_0:217$ ip community-list expanded c1 permit 12872 ^65000:4_0:224_0:218$ ip community-list expanded c1 permit 12873 ^65000:4_0:224_0:219$ ip community-list expanded c1 permit 12874 ^65000:4_0:224_0:220$ ip community-list expanded c1 permit 12875 ^65000:4_0:224_0:221$ ip community-list expanded c1 permit 12876 ^65000:4_0:224_0:222$ ip community-list expanded c1 permit 12877 ^65000:3_0:224_0:223$ ip community-list expanded c1 permit 12878 ^65000:4_0:224_0:223$ ip community-list expanded c1 permit 12879 ^65000:4_0:224_0:224$ ip community-list expanded c1 permit 12880 ^65000:4_0:225_0:113$ ip community-list expanded c1 permit 12881 ^65000:4_0:225_0:114$ ip community-list expanded c1 permit 12882 ^65000:4_0:225_0:115$ ip community-list expanded c1 permit 12883 ^65000:4_0:225_0:116$ ip community-list expanded c1 permit 12884 ^65000:4_0:225_0:117$ ip community-list expanded c1 permit 12885 ^65000:4_0:225_0:118$ ip community-list expanded c1 permit 12886 ^65000:4_0:225_0:119$ ip community-list expanded c1 permit 12887 ^65000:4_0:225_0:120$ ip community-list expanded c1 permit 12888 ^65000:4_0:225_0:121$ ip community-list expanded c1 permit 12889 ^65000:4_0:225_0:122$ ip community-list expanded c1 permit 12890 ^65000:4_0:225_0:123$ ip community-list expanded c1 permit 12891 ^65000:4_0:225_0:124$ ip community-list expanded c1 permit 12892 ^65000:4_0:225_0:125$ ip community-list expanded c1 permit 12893 ^65000:4_0:225_0:126$ ip community-list expanded c1 permit 12894 ^65000:4_0:225_0:127$ ip community-list expanded c1 permit 12895 ^65000:4_0:225_0:128$ ip community-list expanded c1 permit 12896 ^65000:4_0:225_0:129$ ip community-list expanded c1 permit 12897 ^65000:4_0:225_0:130$ ip community-list expanded c1 permit 12898 ^65000:4_0:225_0:131$ ip community-list expanded c1 permit 12899 ^65000:4_0:225_0:132$ ip community-list expanded c1 permit 12900 ^65000:4_0:225_0:133$ ip community-list expanded c1 permit 12901 ^65000:4_0:225_0:134$ ip community-list expanded c1 permit 12902 ^65000:4_0:225_0:135$ ip community-list expanded c1 permit 12903 ^65000:4_0:225_0:136$ ip community-list expanded c1 permit 12904 ^65000:4_0:225_0:137$ ip community-list expanded c1 permit 12905 ^65000:4_0:225_0:138$ ip community-list expanded c1 permit 12906 ^65000:4_0:225_0:139$ ip community-list expanded c1 permit 12907 ^65000:4_0:225_0:140$ ip community-list expanded c1 permit 12908 ^65000:4_0:225_0:141$ ip community-list expanded c1 permit 12909 ^65000:4_0:225_0:142$ ip community-list expanded c1 permit 12910 ^65000:4_0:225_0:143$ ip community-list expanded c1 permit 12911 ^65000:4_0:225_0:144$ ip community-list expanded c1 permit 12912 ^65000:4_0:225_0:145$ ip community-list expanded c1 permit 12913 ^65000:4_0:225_0:146$ ip community-list expanded c1 permit 12914 ^65000:4_0:225_0:147$ ip community-list expanded c1 permit 12915 ^65000:4_0:225_0:148$ ip community-list expanded c1 permit 12916 ^65000:4_0:225_0:149$ ip community-list expanded c1 permit 12917 ^65000:4_0:225_0:150$ ip community-list expanded c1 permit 12918 ^65000:4_0:225_0:151$ ip community-list expanded c1 permit 12919 ^65000:4_0:225_0:152$ ip community-list expanded c1 permit 12920 ^65000:4_0:225_0:153$ ip community-list expanded c1 permit 12921 ^65000:4_0:225_0:154$ ip community-list expanded c1 permit 12922 ^65000:4_0:225_0:155$ ip community-list expanded c1 permit 12923 ^65000:4_0:225_0:156$ ip community-list expanded c1 permit 12924 ^65000:4_0:225_0:157$ ip community-list expanded c1 permit 12925 ^65000:4_0:225_0:158$ ip community-list expanded c1 permit 12926 ^65000:4_0:225_0:159$ ip community-list expanded c1 permit 12927 ^65000:4_0:225_0:160$ ip community-list expanded c1 permit 12928 ^65000:4_0:225_0:161$ ip community-list expanded c1 permit 12929 ^65000:4_0:225_0:162$ ip community-list expanded c1 permit 12930 ^65000:4_0:225_0:163$ ip community-list expanded c1 permit 12931 ^65000:4_0:225_0:164$ ip community-list expanded c1 permit 12932 ^65000:4_0:225_0:165$ ip community-list expanded c1 permit 12933 ^65000:4_0:225_0:166$ ip community-list expanded c1 permit 12934 ^65000:4_0:225_0:167$ ip community-list expanded c1 permit 12935 ^65000:4_0:225_0:168$ ip community-list expanded c1 permit 12936 ^65000:4_0:225_0:169$ ip community-list expanded c1 permit 12937 ^65000:4_0:225_0:170$ ip community-list expanded c1 permit 12938 ^65000:4_0:225_0:171$ ip community-list expanded c1 permit 12939 ^65000:4_0:225_0:172$ ip community-list expanded c1 permit 12940 ^65000:4_0:225_0:173$ ip community-list expanded c1 permit 12941 ^65000:4_0:225_0:174$ ip community-list expanded c1 permit 12942 ^65000:4_0:225_0:175$ ip community-list expanded c1 permit 12943 ^65000:4_0:225_0:176$ ip community-list expanded c1 permit 12944 ^65000:4_0:225_0:177$ ip community-list expanded c1 permit 12945 ^65000:4_0:225_0:178$ ip community-list expanded c1 permit 12946 ^65000:4_0:225_0:179$ ip community-list expanded c1 permit 12947 ^65000:4_0:225_0:180$ ip community-list expanded c1 permit 12948 ^65000:4_0:225_0:181$ ip community-list expanded c1 permit 12949 ^65000:4_0:225_0:182$ ip community-list expanded c1 permit 12950 ^65000:4_0:225_0:183$ ip community-list expanded c1 permit 12951 ^65000:4_0:225_0:184$ ip community-list expanded c1 permit 12952 ^65000:4_0:225_0:185$ ip community-list expanded c1 permit 12953 ^65000:4_0:225_0:186$ ip community-list expanded c1 permit 12954 ^65000:4_0:225_0:187$ ip community-list expanded c1 permit 12955 ^65000:4_0:225_0:188$ ip community-list expanded c1 permit 12956 ^65000:4_0:225_0:189$ ip community-list expanded c1 permit 12957 ^65000:4_0:225_0:190$ ip community-list expanded c1 permit 12958 ^65000:4_0:225_0:191$ ip community-list expanded c1 permit 12959 ^65000:4_0:225_0:192$ ip community-list expanded c1 permit 12960 ^65000:4_0:225_0:193$ ip community-list expanded c1 permit 12961 ^65000:4_0:225_0:194$ ip community-list expanded c1 permit 12962 ^65000:4_0:225_0:195$ ip community-list expanded c1 permit 12963 ^65000:4_0:225_0:196$ ip community-list expanded c1 permit 12964 ^65000:4_0:225_0:197$ ip community-list expanded c1 permit 12965 ^65000:4_0:225_0:198$ ip community-list expanded c1 permit 12966 ^65000:4_0:225_0:199$ ip community-list expanded c1 permit 12967 ^65000:4_0:225_0:200$ ip community-list expanded c1 permit 12968 ^65000:4_0:225_0:201$ ip community-list expanded c1 permit 12969 ^65000:4_0:225_0:202$ ip community-list expanded c1 permit 12970 ^65000:4_0:225_0:203$ ip community-list expanded c1 permit 12971 ^65000:4_0:225_0:204$ ip community-list expanded c1 permit 12972 ^65000:4_0:225_0:205$ ip community-list expanded c1 permit 12973 ^65000:4_0:225_0:206$ ip community-list expanded c1 permit 12974 ^65000:4_0:225_0:207$ ip community-list expanded c1 permit 12975 ^65000:4_0:225_0:208$ ip community-list expanded c1 permit 12976 ^65000:4_0:225_0:209$ ip community-list expanded c1 permit 12977 ^65000:4_0:225_0:210$ ip community-list expanded c1 permit 12978 ^65000:4_0:225_0:211$ ip community-list expanded c1 permit 12979 ^65000:4_0:225_0:212$ ip community-list expanded c1 permit 12980 ^65000:4_0:225_0:213$ ip community-list expanded c1 permit 12981 ^65000:4_0:225_0:214$ ip community-list expanded c1 permit 12982 ^65000:4_0:225_0:215$ ip community-list expanded c1 permit 12983 ^65000:4_0:225_0:216$ ip community-list expanded c1 permit 12984 ^65000:4_0:225_0:217$ ip community-list expanded c1 permit 12985 ^65000:4_0:225_0:218$ ip community-list expanded c1 permit 12986 ^65000:4_0:225_0:219$ ip community-list expanded c1 permit 12987 ^65000:4_0:225_0:220$ ip community-list expanded c1 permit 12988 ^65000:4_0:225_0:221$ ip community-list expanded c1 permit 12989 ^65000:4_0:225_0:222$ ip community-list expanded c1 permit 12990 ^65000:4_0:225_0:223$ ip community-list expanded c1 permit 12991 ^65000:3_0:225_0:224$ ip community-list expanded c1 permit 12992 ^65000:4_0:225_0:224$ ip community-list expanded c1 permit 12993 ^65000:4_0:225_0:225$ ip community-list expanded c1 permit 12994 ^65000:4_0:226_0:114$ ip community-list expanded c1 permit 12995 ^65000:4_0:226_0:115$ ip community-list expanded c1 permit 12996 ^65000:4_0:226_0:116$ ip community-list expanded c1 permit 12997 ^65000:4_0:226_0:117$ ip community-list expanded c1 permit 12998 ^65000:4_0:226_0:118$ ip community-list expanded c1 permit 12999 ^65000:4_0:226_0:119$ ip community-list expanded c1 permit 13000 ^65000:4_0:226_0:120$ ip community-list expanded c1 permit 13001 ^65000:4_0:226_0:121$ ip community-list expanded c1 permit 13002 ^65000:4_0:226_0:122$ ip community-list expanded c1 permit 13003 ^65000:4_0:226_0:123$ ip community-list expanded c1 permit 13004 ^65000:4_0:226_0:124$ ip community-list expanded c1 permit 13005 ^65000:4_0:226_0:125$ ip community-list expanded c1 permit 13006 ^65000:4_0:226_0:126$ ip community-list expanded c1 permit 13007 ^65000:4_0:226_0:127$ ip community-list expanded c1 permit 13008 ^65000:4_0:226_0:128$ ip community-list expanded c1 permit 13009 ^65000:4_0:226_0:129$ ip community-list expanded c1 permit 13010 ^65000:4_0:226_0:130$ ip community-list expanded c1 permit 13011 ^65000:4_0:226_0:131$ ip community-list expanded c1 permit 13012 ^65000:4_0:226_0:132$ ip community-list expanded c1 permit 13013 ^65000:4_0:226_0:133$ ip community-list expanded c1 permit 13014 ^65000:4_0:226_0:134$ ip community-list expanded c1 permit 13015 ^65000:4_0:226_0:135$ ip community-list expanded c1 permit 13016 ^65000:4_0:226_0:136$ ip community-list expanded c1 permit 13017 ^65000:4_0:226_0:137$ ip community-list expanded c1 permit 13018 ^65000:4_0:226_0:138$ ip community-list expanded c1 permit 13019 ^65000:4_0:226_0:139$ ip community-list expanded c1 permit 13020 ^65000:4_0:226_0:140$ ip community-list expanded c1 permit 13021 ^65000:4_0:226_0:141$ ip community-list expanded c1 permit 13022 ^65000:4_0:226_0:142$ ip community-list expanded c1 permit 13023 ^65000:4_0:226_0:143$ ip community-list expanded c1 permit 13024 ^65000:4_0:226_0:144$ ip community-list expanded c1 permit 13025 ^65000:4_0:226_0:145$ ip community-list expanded c1 permit 13026 ^65000:4_0:226_0:146$ ip community-list expanded c1 permit 13027 ^65000:4_0:226_0:147$ ip community-list expanded c1 permit 13028 ^65000:4_0:226_0:148$ ip community-list expanded c1 permit 13029 ^65000:4_0:226_0:149$ ip community-list expanded c1 permit 13030 ^65000:4_0:226_0:150$ ip community-list expanded c1 permit 13031 ^65000:4_0:226_0:151$ ip community-list expanded c1 permit 13032 ^65000:4_0:226_0:152$ ip community-list expanded c1 permit 13033 ^65000:4_0:226_0:153$ ip community-list expanded c1 permit 13034 ^65000:4_0:226_0:154$ ip community-list expanded c1 permit 13035 ^65000:4_0:226_0:155$ ip community-list expanded c1 permit 13036 ^65000:4_0:226_0:156$ ip community-list expanded c1 permit 13037 ^65000:4_0:226_0:157$ ip community-list expanded c1 permit 13038 ^65000:4_0:226_0:158$ ip community-list expanded c1 permit 13039 ^65000:4_0:226_0:159$ ip community-list expanded c1 permit 13040 ^65000:4_0:226_0:160$ ip community-list expanded c1 permit 13041 ^65000:4_0:226_0:161$ ip community-list expanded c1 permit 13042 ^65000:4_0:226_0:162$ ip community-list expanded c1 permit 13043 ^65000:4_0:226_0:163$ ip community-list expanded c1 permit 13044 ^65000:4_0:226_0:164$ ip community-list expanded c1 permit 13045 ^65000:4_0:226_0:165$ ip community-list expanded c1 permit 13046 ^65000:4_0:226_0:166$ ip community-list expanded c1 permit 13047 ^65000:4_0:226_0:167$ ip community-list expanded c1 permit 13048 ^65000:4_0:226_0:168$ ip community-list expanded c1 permit 13049 ^65000:4_0:226_0:169$ ip community-list expanded c1 permit 13050 ^65000:4_0:226_0:170$ ip community-list expanded c1 permit 13051 ^65000:4_0:226_0:171$ ip community-list expanded c1 permit 13052 ^65000:4_0:226_0:172$ ip community-list expanded c1 permit 13053 ^65000:4_0:226_0:173$ ip community-list expanded c1 permit 13054 ^65000:4_0:226_0:174$ ip community-list expanded c1 permit 13055 ^65000:4_0:226_0:175$ ip community-list expanded c1 permit 13056 ^65000:4_0:226_0:176$ ip community-list expanded c1 permit 13057 ^65000:4_0:226_0:177$ ip community-list expanded c1 permit 13058 ^65000:4_0:226_0:178$ ip community-list expanded c1 permit 13059 ^65000:4_0:226_0:179$ ip community-list expanded c1 permit 13060 ^65000:4_0:226_0:180$ ip community-list expanded c1 permit 13061 ^65000:4_0:226_0:181$ ip community-list expanded c1 permit 13062 ^65000:4_0:226_0:182$ ip community-list expanded c1 permit 13063 ^65000:4_0:226_0:183$ ip community-list expanded c1 permit 13064 ^65000:4_0:226_0:184$ ip community-list expanded c1 permit 13065 ^65000:4_0:226_0:185$ ip community-list expanded c1 permit 13066 ^65000:4_0:226_0:186$ ip community-list expanded c1 permit 13067 ^65000:4_0:226_0:187$ ip community-list expanded c1 permit 13068 ^65000:4_0:226_0:188$ ip community-list expanded c1 permit 13069 ^65000:4_0:226_0:189$ ip community-list expanded c1 permit 13070 ^65000:4_0:226_0:190$ ip community-list expanded c1 permit 13071 ^65000:4_0:226_0:191$ ip community-list expanded c1 permit 13072 ^65000:4_0:226_0:192$ ip community-list expanded c1 permit 13073 ^65000:4_0:226_0:193$ ip community-list expanded c1 permit 13074 ^65000:4_0:226_0:194$ ip community-list expanded c1 permit 13075 ^65000:4_0:226_0:195$ ip community-list expanded c1 permit 13076 ^65000:4_0:226_0:196$ ip community-list expanded c1 permit 13077 ^65000:4_0:226_0:197$ ip community-list expanded c1 permit 13078 ^65000:4_0:226_0:198$ ip community-list expanded c1 permit 13079 ^65000:4_0:226_0:199$ ip community-list expanded c1 permit 13080 ^65000:4_0:226_0:200$ ip community-list expanded c1 permit 13081 ^65000:4_0:226_0:201$ ip community-list expanded c1 permit 13082 ^65000:4_0:226_0:202$ ip community-list expanded c1 permit 13083 ^65000:4_0:226_0:203$ ip community-list expanded c1 permit 13084 ^65000:4_0:226_0:204$ ip community-list expanded c1 permit 13085 ^65000:4_0:226_0:205$ ip community-list expanded c1 permit 13086 ^65000:4_0:226_0:206$ ip community-list expanded c1 permit 13087 ^65000:4_0:226_0:207$ ip community-list expanded c1 permit 13088 ^65000:4_0:226_0:208$ ip community-list expanded c1 permit 13089 ^65000:4_0:226_0:209$ ip community-list expanded c1 permit 13090 ^65000:4_0:226_0:210$ ip community-list expanded c1 permit 13091 ^65000:4_0:226_0:211$ ip community-list expanded c1 permit 13092 ^65000:4_0:226_0:212$ ip community-list expanded c1 permit 13093 ^65000:4_0:226_0:213$ ip community-list expanded c1 permit 13094 ^65000:4_0:226_0:214$ ip community-list expanded c1 permit 13095 ^65000:4_0:226_0:215$ ip community-list expanded c1 permit 13096 ^65000:4_0:226_0:216$ ip community-list expanded c1 permit 13097 ^65000:4_0:226_0:217$ ip community-list expanded c1 permit 13098 ^65000:4_0:226_0:218$ ip community-list expanded c1 permit 13099 ^65000:4_0:226_0:219$ ip community-list expanded c1 permit 13100 ^65000:4_0:226_0:220$ ip community-list expanded c1 permit 13101 ^65000:4_0:226_0:221$ ip community-list expanded c1 permit 13102 ^65000:4_0:226_0:222$ ip community-list expanded c1 permit 13103 ^65000:4_0:226_0:223$ ip community-list expanded c1 permit 13104 ^65000:4_0:226_0:224$ ip community-list expanded c1 permit 13105 ^65000:3_0:226_0:225$ ip community-list expanded c1 permit 13106 ^65000:4_0:226_0:225$ ip community-list expanded c1 permit 13107 ^65000:4_0:226_0:226$ ip community-list expanded c1 permit 13108 ^65000:4_0:227_0:114$ ip community-list expanded c1 permit 13109 ^65000:4_0:227_0:115$ ip community-list expanded c1 permit 13110 ^65000:4_0:227_0:116$ ip community-list expanded c1 permit 13111 ^65000:4_0:227_0:117$ ip community-list expanded c1 permit 13112 ^65000:4_0:227_0:118$ ip community-list expanded c1 permit 13113 ^65000:4_0:227_0:119$ ip community-list expanded c1 permit 13114 ^65000:4_0:227_0:120$ ip community-list expanded c1 permit 13115 ^65000:4_0:227_0:121$ ip community-list expanded c1 permit 13116 ^65000:4_0:227_0:122$ ip community-list expanded c1 permit 13117 ^65000:4_0:227_0:123$ ip community-list expanded c1 permit 13118 ^65000:4_0:227_0:124$ ip community-list expanded c1 permit 13119 ^65000:4_0:227_0:125$ ip community-list expanded c1 permit 13120 ^65000:4_0:227_0:126$ ip community-list expanded c1 permit 13121 ^65000:4_0:227_0:127$ ip community-list expanded c1 permit 13122 ^65000:4_0:227_0:128$ ip community-list expanded c1 permit 13123 ^65000:4_0:227_0:129$ ip community-list expanded c1 permit 13124 ^65000:4_0:227_0:130$ ip community-list expanded c1 permit 13125 ^65000:4_0:227_0:131$ ip community-list expanded c1 permit 13126 ^65000:4_0:227_0:132$ ip community-list expanded c1 permit 13127 ^65000:4_0:227_0:133$ ip community-list expanded c1 permit 13128 ^65000:4_0:227_0:134$ ip community-list expanded c1 permit 13129 ^65000:4_0:227_0:135$ ip community-list expanded c1 permit 13130 ^65000:4_0:227_0:136$ ip community-list expanded c1 permit 13131 ^65000:4_0:227_0:137$ ip community-list expanded c1 permit 13132 ^65000:4_0:227_0:138$ ip community-list expanded c1 permit 13133 ^65000:4_0:227_0:139$ ip community-list expanded c1 permit 13134 ^65000:4_0:227_0:140$ ip community-list expanded c1 permit 13135 ^65000:4_0:227_0:141$ ip community-list expanded c1 permit 13136 ^65000:4_0:227_0:142$ ip community-list expanded c1 permit 13137 ^65000:4_0:227_0:143$ ip community-list expanded c1 permit 13138 ^65000:4_0:227_0:144$ ip community-list expanded c1 permit 13139 ^65000:4_0:227_0:145$ ip community-list expanded c1 permit 13140 ^65000:4_0:227_0:146$ ip community-list expanded c1 permit 13141 ^65000:4_0:227_0:147$ ip community-list expanded c1 permit 13142 ^65000:4_0:227_0:148$ ip community-list expanded c1 permit 13143 ^65000:4_0:227_0:149$ ip community-list expanded c1 permit 13144 ^65000:4_0:227_0:150$ ip community-list expanded c1 permit 13145 ^65000:4_0:227_0:151$ ip community-list expanded c1 permit 13146 ^65000:4_0:227_0:152$ ip community-list expanded c1 permit 13147 ^65000:4_0:227_0:153$ ip community-list expanded c1 permit 13148 ^65000:4_0:227_0:154$ ip community-list expanded c1 permit 13149 ^65000:4_0:227_0:155$ ip community-list expanded c1 permit 13150 ^65000:4_0:227_0:156$ ip community-list expanded c1 permit 13151 ^65000:4_0:227_0:157$ ip community-list expanded c1 permit 13152 ^65000:4_0:227_0:158$ ip community-list expanded c1 permit 13153 ^65000:4_0:227_0:159$ ip community-list expanded c1 permit 13154 ^65000:4_0:227_0:160$ ip community-list expanded c1 permit 13155 ^65000:4_0:227_0:161$ ip community-list expanded c1 permit 13156 ^65000:4_0:227_0:162$ ip community-list expanded c1 permit 13157 ^65000:4_0:227_0:163$ ip community-list expanded c1 permit 13158 ^65000:4_0:227_0:164$ ip community-list expanded c1 permit 13159 ^65000:4_0:227_0:165$ ip community-list expanded c1 permit 13160 ^65000:4_0:227_0:166$ ip community-list expanded c1 permit 13161 ^65000:4_0:227_0:167$ ip community-list expanded c1 permit 13162 ^65000:4_0:227_0:168$ ip community-list expanded c1 permit 13163 ^65000:4_0:227_0:169$ ip community-list expanded c1 permit 13164 ^65000:4_0:227_0:170$ ip community-list expanded c1 permit 13165 ^65000:4_0:227_0:171$ ip community-list expanded c1 permit 13166 ^65000:4_0:227_0:172$ ip community-list expanded c1 permit 13167 ^65000:4_0:227_0:173$ ip community-list expanded c1 permit 13168 ^65000:4_0:227_0:174$ ip community-list expanded c1 permit 13169 ^65000:4_0:227_0:175$ ip community-list expanded c1 permit 13170 ^65000:4_0:227_0:176$ ip community-list expanded c1 permit 13171 ^65000:4_0:227_0:177$ ip community-list expanded c1 permit 13172 ^65000:4_0:227_0:178$ ip community-list expanded c1 permit 13173 ^65000:4_0:227_0:179$ ip community-list expanded c1 permit 13174 ^65000:4_0:227_0:180$ ip community-list expanded c1 permit 13175 ^65000:4_0:227_0:181$ ip community-list expanded c1 permit 13176 ^65000:4_0:227_0:182$ ip community-list expanded c1 permit 13177 ^65000:4_0:227_0:183$ ip community-list expanded c1 permit 13178 ^65000:4_0:227_0:184$ ip community-list expanded c1 permit 13179 ^65000:4_0:227_0:185$ ip community-list expanded c1 permit 13180 ^65000:4_0:227_0:186$ ip community-list expanded c1 permit 13181 ^65000:4_0:227_0:187$ ip community-list expanded c1 permit 13182 ^65000:4_0:227_0:188$ ip community-list expanded c1 permit 13183 ^65000:4_0:227_0:189$ ip community-list expanded c1 permit 13184 ^65000:4_0:227_0:190$ ip community-list expanded c1 permit 13185 ^65000:4_0:227_0:191$ ip community-list expanded c1 permit 13186 ^65000:4_0:227_0:192$ ip community-list expanded c1 permit 13187 ^65000:4_0:227_0:193$ ip community-list expanded c1 permit 13188 ^65000:4_0:227_0:194$ ip community-list expanded c1 permit 13189 ^65000:4_0:227_0:195$ ip community-list expanded c1 permit 13190 ^65000:4_0:227_0:196$ ip community-list expanded c1 permit 13191 ^65000:4_0:227_0:197$ ip community-list expanded c1 permit 13192 ^65000:4_0:227_0:198$ ip community-list expanded c1 permit 13193 ^65000:4_0:227_0:199$ ip community-list expanded c1 permit 13194 ^65000:4_0:227_0:200$ ip community-list expanded c1 permit 13195 ^65000:4_0:227_0:201$ ip community-list expanded c1 permit 13196 ^65000:4_0:227_0:202$ ip community-list expanded c1 permit 13197 ^65000:4_0:227_0:203$ ip community-list expanded c1 permit 13198 ^65000:4_0:227_0:204$ ip community-list expanded c1 permit 13199 ^65000:4_0:227_0:205$ ip community-list expanded c1 permit 13200 ^65000:4_0:227_0:206$ ip community-list expanded c1 permit 13201 ^65000:4_0:227_0:207$ ip community-list expanded c1 permit 13202 ^65000:4_0:227_0:208$ ip community-list expanded c1 permit 13203 ^65000:4_0:227_0:209$ ip community-list expanded c1 permit 13204 ^65000:4_0:227_0:210$ ip community-list expanded c1 permit 13205 ^65000:4_0:227_0:211$ ip community-list expanded c1 permit 13206 ^65000:4_0:227_0:212$ ip community-list expanded c1 permit 13207 ^65000:4_0:227_0:213$ ip community-list expanded c1 permit 13208 ^65000:4_0:227_0:214$ ip community-list expanded c1 permit 13209 ^65000:4_0:227_0:215$ ip community-list expanded c1 permit 13210 ^65000:4_0:227_0:216$ ip community-list expanded c1 permit 13211 ^65000:4_0:227_0:217$ ip community-list expanded c1 permit 13212 ^65000:4_0:227_0:218$ ip community-list expanded c1 permit 13213 ^65000:4_0:227_0:219$ ip community-list expanded c1 permit 13214 ^65000:4_0:227_0:220$ ip community-list expanded c1 permit 13215 ^65000:4_0:227_0:221$ ip community-list expanded c1 permit 13216 ^65000:4_0:227_0:222$ ip community-list expanded c1 permit 13217 ^65000:4_0:227_0:223$ ip community-list expanded c1 permit 13218 ^65000:4_0:227_0:224$ ip community-list expanded c1 permit 13219 ^65000:4_0:227_0:225$ ip community-list expanded c1 permit 13220 ^65000:3_0:227_0:226$ ip community-list expanded c1 permit 13221 ^65000:4_0:227_0:226$ ip community-list expanded c1 permit 13222 ^65000:4_0:227_0:227$ ip community-list expanded c1 permit 13223 ^65000:4_0:228_0:115$ ip community-list expanded c1 permit 13224 ^65000:4_0:228_0:116$ ip community-list expanded c1 permit 13225 ^65000:4_0:228_0:117$ ip community-list expanded c1 permit 13226 ^65000:4_0:228_0:118$ ip community-list expanded c1 permit 13227 ^65000:4_0:228_0:119$ ip community-list expanded c1 permit 13228 ^65000:4_0:228_0:120$ ip community-list expanded c1 permit 13229 ^65000:4_0:228_0:121$ ip community-list expanded c1 permit 13230 ^65000:4_0:228_0:122$ ip community-list expanded c1 permit 13231 ^65000:4_0:228_0:123$ ip community-list expanded c1 permit 13232 ^65000:4_0:228_0:124$ ip community-list expanded c1 permit 13233 ^65000:4_0:228_0:125$ ip community-list expanded c1 permit 13234 ^65000:4_0:228_0:126$ ip community-list expanded c1 permit 13235 ^65000:4_0:228_0:127$ ip community-list expanded c1 permit 13236 ^65000:4_0:228_0:128$ ip community-list expanded c1 permit 13237 ^65000:4_0:228_0:129$ ip community-list expanded c1 permit 13238 ^65000:4_0:228_0:130$ ip community-list expanded c1 permit 13239 ^65000:4_0:228_0:131$ ip community-list expanded c1 permit 13240 ^65000:4_0:228_0:132$ ip community-list expanded c1 permit 13241 ^65000:4_0:228_0:133$ ip community-list expanded c1 permit 13242 ^65000:4_0:228_0:134$ ip community-list expanded c1 permit 13243 ^65000:4_0:228_0:135$ ip community-list expanded c1 permit 13244 ^65000:4_0:228_0:136$ ip community-list expanded c1 permit 13245 ^65000:4_0:228_0:137$ ip community-list expanded c1 permit 13246 ^65000:4_0:228_0:138$ ip community-list expanded c1 permit 13247 ^65000:4_0:228_0:139$ ip community-list expanded c1 permit 13248 ^65000:4_0:228_0:140$ ip community-list expanded c1 permit 13249 ^65000:4_0:228_0:141$ ip community-list expanded c1 permit 13250 ^65000:4_0:228_0:142$ ip community-list expanded c1 permit 13251 ^65000:4_0:228_0:143$ ip community-list expanded c1 permit 13252 ^65000:4_0:228_0:144$ ip community-list expanded c1 permit 13253 ^65000:4_0:228_0:145$ ip community-list expanded c1 permit 13254 ^65000:4_0:228_0:146$ ip community-list expanded c1 permit 13255 ^65000:4_0:228_0:147$ ip community-list expanded c1 permit 13256 ^65000:4_0:228_0:148$ ip community-list expanded c1 permit 13257 ^65000:4_0:228_0:149$ ip community-list expanded c1 permit 13258 ^65000:4_0:228_0:150$ ip community-list expanded c1 permit 13259 ^65000:4_0:228_0:151$ ip community-list expanded c1 permit 13260 ^65000:4_0:228_0:152$ ip community-list expanded c1 permit 13261 ^65000:4_0:228_0:153$ ip community-list expanded c1 permit 13262 ^65000:4_0:228_0:154$ ip community-list expanded c1 permit 13263 ^65000:4_0:228_0:155$ ip community-list expanded c1 permit 13264 ^65000:4_0:228_0:156$ ip community-list expanded c1 permit 13265 ^65000:4_0:228_0:157$ ip community-list expanded c1 permit 13266 ^65000:4_0:228_0:158$ ip community-list expanded c1 permit 13267 ^65000:4_0:228_0:159$ ip community-list expanded c1 permit 13268 ^65000:4_0:228_0:160$ ip community-list expanded c1 permit 13269 ^65000:4_0:228_0:161$ ip community-list expanded c1 permit 13270 ^65000:4_0:228_0:162$ ip community-list expanded c1 permit 13271 ^65000:4_0:228_0:163$ ip community-list expanded c1 permit 13272 ^65000:4_0:228_0:164$ ip community-list expanded c1 permit 13273 ^65000:4_0:228_0:165$ ip community-list expanded c1 permit 13274 ^65000:4_0:228_0:166$ ip community-list expanded c1 permit 13275 ^65000:4_0:228_0:167$ ip community-list expanded c1 permit 13276 ^65000:4_0:228_0:168$ ip community-list expanded c1 permit 13277 ^65000:4_0:228_0:169$ ip community-list expanded c1 permit 13278 ^65000:4_0:228_0:170$ ip community-list expanded c1 permit 13279 ^65000:4_0:228_0:171$ ip community-list expanded c1 permit 13280 ^65000:4_0:228_0:172$ ip community-list expanded c1 permit 13281 ^65000:4_0:228_0:173$ ip community-list expanded c1 permit 13282 ^65000:4_0:228_0:174$ ip community-list expanded c1 permit 13283 ^65000:4_0:228_0:175$ ip community-list expanded c1 permit 13284 ^65000:4_0:228_0:176$ ip community-list expanded c1 permit 13285 ^65000:4_0:228_0:177$ ip community-list expanded c1 permit 13286 ^65000:4_0:228_0:178$ ip community-list expanded c1 permit 13287 ^65000:4_0:228_0:179$ ip community-list expanded c1 permit 13288 ^65000:4_0:228_0:180$ ip community-list expanded c1 permit 13289 ^65000:4_0:228_0:181$ ip community-list expanded c1 permit 13290 ^65000:4_0:228_0:182$ ip community-list expanded c1 permit 13291 ^65000:4_0:228_0:183$ ip community-list expanded c1 permit 13292 ^65000:4_0:228_0:184$ ip community-list expanded c1 permit 13293 ^65000:4_0:228_0:185$ ip community-list expanded c1 permit 13294 ^65000:4_0:228_0:186$ ip community-list expanded c1 permit 13295 ^65000:4_0:228_0:187$ ip community-list expanded c1 permit 13296 ^65000:4_0:228_0:188$ ip community-list expanded c1 permit 13297 ^65000:4_0:228_0:189$ ip community-list expanded c1 permit 13298 ^65000:4_0:228_0:190$ ip community-list expanded c1 permit 13299 ^65000:4_0:228_0:191$ ip community-list expanded c1 permit 13300 ^65000:4_0:228_0:192$ ip community-list expanded c1 permit 13301 ^65000:4_0:228_0:193$ ip community-list expanded c1 permit 13302 ^65000:4_0:228_0:194$ ip community-list expanded c1 permit 13303 ^65000:4_0:228_0:195$ ip community-list expanded c1 permit 13304 ^65000:4_0:228_0:196$ ip community-list expanded c1 permit 13305 ^65000:4_0:228_0:197$ ip community-list expanded c1 permit 13306 ^65000:4_0:228_0:198$ ip community-list expanded c1 permit 13307 ^65000:4_0:228_0:199$ ip community-list expanded c1 permit 13308 ^65000:4_0:228_0:200$ ip community-list expanded c1 permit 13309 ^65000:4_0:228_0:201$ ip community-list expanded c1 permit 13310 ^65000:4_0:228_0:202$ ip community-list expanded c1 permit 13311 ^65000:4_0:228_0:203$ ip community-list expanded c1 permit 13312 ^65000:4_0:228_0:204$ ip community-list expanded c1 permit 13313 ^65000:4_0:228_0:205$ ip community-list expanded c1 permit 13314 ^65000:4_0:228_0:206$ ip community-list expanded c1 permit 13315 ^65000:4_0:228_0:207$ ip community-list expanded c1 permit 13316 ^65000:4_0:228_0:208$ ip community-list expanded c1 permit 13317 ^65000:4_0:228_0:209$ ip community-list expanded c1 permit 13318 ^65000:4_0:228_0:210$ ip community-list expanded c1 permit 13319 ^65000:4_0:228_0:211$ ip community-list expanded c1 permit 13320 ^65000:4_0:228_0:212$ ip community-list expanded c1 permit 13321 ^65000:4_0:228_0:213$ ip community-list expanded c1 permit 13322 ^65000:4_0:228_0:214$ ip community-list expanded c1 permit 13323 ^65000:4_0:228_0:215$ ip community-list expanded c1 permit 13324 ^65000:4_0:228_0:216$ ip community-list expanded c1 permit 13325 ^65000:4_0:228_0:217$ ip community-list expanded c1 permit 13326 ^65000:4_0:228_0:218$ ip community-list expanded c1 permit 13327 ^65000:4_0:228_0:219$ ip community-list expanded c1 permit 13328 ^65000:4_0:228_0:220$ ip community-list expanded c1 permit 13329 ^65000:4_0:228_0:221$ ip community-list expanded c1 permit 13330 ^65000:4_0:228_0:222$ ip community-list expanded c1 permit 13331 ^65000:4_0:228_0:223$ ip community-list expanded c1 permit 13332 ^65000:4_0:228_0:224$ ip community-list expanded c1 permit 13333 ^65000:4_0:228_0:225$ ip community-list expanded c1 permit 13334 ^65000:4_0:228_0:226$ ip community-list expanded c1 permit 13335 ^65000:3_0:228_0:227$ ip community-list expanded c1 permit 13336 ^65000:4_0:228_0:227$ ip community-list expanded c1 permit 13337 ^65000:4_0:228_0:228$ ip community-list expanded c1 permit 13338 ^65000:4_0:229_0:115$ ip community-list expanded c1 permit 13339 ^65000:4_0:229_0:116$ ip community-list expanded c1 permit 13340 ^65000:4_0:229_0:117$ ip community-list expanded c1 permit 13341 ^65000:4_0:229_0:118$ ip community-list expanded c1 permit 13342 ^65000:4_0:229_0:119$ ip community-list expanded c1 permit 13343 ^65000:4_0:229_0:120$ ip community-list expanded c1 permit 13344 ^65000:4_0:229_0:121$ ip community-list expanded c1 permit 13345 ^65000:4_0:229_0:122$ ip community-list expanded c1 permit 13346 ^65000:4_0:229_0:123$ ip community-list expanded c1 permit 13347 ^65000:4_0:229_0:124$ ip community-list expanded c1 permit 13348 ^65000:4_0:229_0:125$ ip community-list expanded c1 permit 13349 ^65000:4_0:229_0:126$ ip community-list expanded c1 permit 13350 ^65000:4_0:229_0:127$ ip community-list expanded c1 permit 13351 ^65000:4_0:229_0:128$ ip community-list expanded c1 permit 13352 ^65000:4_0:229_0:129$ ip community-list expanded c1 permit 13353 ^65000:4_0:229_0:130$ ip community-list expanded c1 permit 13354 ^65000:4_0:229_0:131$ ip community-list expanded c1 permit 13355 ^65000:4_0:229_0:132$ ip community-list expanded c1 permit 13356 ^65000:4_0:229_0:133$ ip community-list expanded c1 permit 13357 ^65000:4_0:229_0:134$ ip community-list expanded c1 permit 13358 ^65000:4_0:229_0:135$ ip community-list expanded c1 permit 13359 ^65000:4_0:229_0:136$ ip community-list expanded c1 permit 13360 ^65000:4_0:229_0:137$ ip community-list expanded c1 permit 13361 ^65000:4_0:229_0:138$ ip community-list expanded c1 permit 13362 ^65000:4_0:229_0:139$ ip community-list expanded c1 permit 13363 ^65000:4_0:229_0:140$ ip community-list expanded c1 permit 13364 ^65000:4_0:229_0:141$ ip community-list expanded c1 permit 13365 ^65000:4_0:229_0:142$ ip community-list expanded c1 permit 13366 ^65000:4_0:229_0:143$ ip community-list expanded c1 permit 13367 ^65000:4_0:229_0:144$ ip community-list expanded c1 permit 13368 ^65000:4_0:229_0:145$ ip community-list expanded c1 permit 13369 ^65000:4_0:229_0:146$ ip community-list expanded c1 permit 13370 ^65000:4_0:229_0:147$ ip community-list expanded c1 permit 13371 ^65000:4_0:229_0:148$ ip community-list expanded c1 permit 13372 ^65000:4_0:229_0:149$ ip community-list expanded c1 permit 13373 ^65000:4_0:229_0:150$ ip community-list expanded c1 permit 13374 ^65000:4_0:229_0:151$ ip community-list expanded c1 permit 13375 ^65000:4_0:229_0:152$ ip community-list expanded c1 permit 13376 ^65000:4_0:229_0:153$ ip community-list expanded c1 permit 13377 ^65000:4_0:229_0:154$ ip community-list expanded c1 permit 13378 ^65000:4_0:229_0:155$ ip community-list expanded c1 permit 13379 ^65000:4_0:229_0:156$ ip community-list expanded c1 permit 13380 ^65000:4_0:229_0:157$ ip community-list expanded c1 permit 13381 ^65000:4_0:229_0:158$ ip community-list expanded c1 permit 13382 ^65000:4_0:229_0:159$ ip community-list expanded c1 permit 13383 ^65000:4_0:229_0:160$ ip community-list expanded c1 permit 13384 ^65000:4_0:229_0:161$ ip community-list expanded c1 permit 13385 ^65000:4_0:229_0:162$ ip community-list expanded c1 permit 13386 ^65000:4_0:229_0:163$ ip community-list expanded c1 permit 13387 ^65000:4_0:229_0:164$ ip community-list expanded c1 permit 13388 ^65000:4_0:229_0:165$ ip community-list expanded c1 permit 13389 ^65000:4_0:229_0:166$ ip community-list expanded c1 permit 13390 ^65000:4_0:229_0:167$ ip community-list expanded c1 permit 13391 ^65000:4_0:229_0:168$ ip community-list expanded c1 permit 13392 ^65000:4_0:229_0:169$ ip community-list expanded c1 permit 13393 ^65000:4_0:229_0:170$ ip community-list expanded c1 permit 13394 ^65000:4_0:229_0:171$ ip community-list expanded c1 permit 13395 ^65000:4_0:229_0:172$ ip community-list expanded c1 permit 13396 ^65000:4_0:229_0:173$ ip community-list expanded c1 permit 13397 ^65000:4_0:229_0:174$ ip community-list expanded c1 permit 13398 ^65000:4_0:229_0:175$ ip community-list expanded c1 permit 13399 ^65000:4_0:229_0:176$ ip community-list expanded c1 permit 13400 ^65000:4_0:229_0:177$ ip community-list expanded c1 permit 13401 ^65000:4_0:229_0:178$ ip community-list expanded c1 permit 13402 ^65000:4_0:229_0:179$ ip community-list expanded c1 permit 13403 ^65000:4_0:229_0:180$ ip community-list expanded c1 permit 13404 ^65000:4_0:229_0:181$ ip community-list expanded c1 permit 13405 ^65000:4_0:229_0:182$ ip community-list expanded c1 permit 13406 ^65000:4_0:229_0:183$ ip community-list expanded c1 permit 13407 ^65000:4_0:229_0:184$ ip community-list expanded c1 permit 13408 ^65000:4_0:229_0:185$ ip community-list expanded c1 permit 13409 ^65000:4_0:229_0:186$ ip community-list expanded c1 permit 13410 ^65000:4_0:229_0:187$ ip community-list expanded c1 permit 13411 ^65000:4_0:229_0:188$ ip community-list expanded c1 permit 13412 ^65000:4_0:229_0:189$ ip community-list expanded c1 permit 13413 ^65000:4_0:229_0:190$ ip community-list expanded c1 permit 13414 ^65000:4_0:229_0:191$ ip community-list expanded c1 permit 13415 ^65000:4_0:229_0:192$ ip community-list expanded c1 permit 13416 ^65000:4_0:229_0:193$ ip community-list expanded c1 permit 13417 ^65000:4_0:229_0:194$ ip community-list expanded c1 permit 13418 ^65000:4_0:229_0:195$ ip community-list expanded c1 permit 13419 ^65000:4_0:229_0:196$ ip community-list expanded c1 permit 13420 ^65000:4_0:229_0:197$ ip community-list expanded c1 permit 13421 ^65000:4_0:229_0:198$ ip community-list expanded c1 permit 13422 ^65000:4_0:229_0:199$ ip community-list expanded c1 permit 13423 ^65000:4_0:229_0:200$ ip community-list expanded c1 permit 13424 ^65000:4_0:229_0:201$ ip community-list expanded c1 permit 13425 ^65000:4_0:229_0:202$ ip community-list expanded c1 permit 13426 ^65000:4_0:229_0:203$ ip community-list expanded c1 permit 13427 ^65000:4_0:229_0:204$ ip community-list expanded c1 permit 13428 ^65000:4_0:229_0:205$ ip community-list expanded c1 permit 13429 ^65000:4_0:229_0:206$ ip community-list expanded c1 permit 13430 ^65000:4_0:229_0:207$ ip community-list expanded c1 permit 13431 ^65000:4_0:229_0:208$ ip community-list expanded c1 permit 13432 ^65000:4_0:229_0:209$ ip community-list expanded c1 permit 13433 ^65000:4_0:229_0:210$ ip community-list expanded c1 permit 13434 ^65000:4_0:229_0:211$ ip community-list expanded c1 permit 13435 ^65000:4_0:229_0:212$ ip community-list expanded c1 permit 13436 ^65000:4_0:229_0:213$ ip community-list expanded c1 permit 13437 ^65000:4_0:229_0:214$ ip community-list expanded c1 permit 13438 ^65000:4_0:229_0:215$ ip community-list expanded c1 permit 13439 ^65000:4_0:229_0:216$ ip community-list expanded c1 permit 13440 ^65000:4_0:229_0:217$ ip community-list expanded c1 permit 13441 ^65000:4_0:229_0:218$ ip community-list expanded c1 permit 13442 ^65000:4_0:229_0:219$ ip community-list expanded c1 permit 13443 ^65000:4_0:229_0:220$ ip community-list expanded c1 permit 13444 ^65000:4_0:229_0:221$ ip community-list expanded c1 permit 13445 ^65000:4_0:229_0:222$ ip community-list expanded c1 permit 13446 ^65000:4_0:229_0:223$ ip community-list expanded c1 permit 13447 ^65000:4_0:229_0:224$ ip community-list expanded c1 permit 13448 ^65000:4_0:229_0:225$ ip community-list expanded c1 permit 13449 ^65000:4_0:229_0:226$ ip community-list expanded c1 permit 13450 ^65000:4_0:229_0:227$ ip community-list expanded c1 permit 13451 ^65000:3_0:229_0:228$ ip community-list expanded c1 permit 13452 ^65000:4_0:229_0:228$ ip community-list expanded c1 permit 13453 ^65000:4_0:229_0:229$ ip community-list expanded c1 permit 13454 ^65000:4_0:230_0:116$ ip community-list expanded c1 permit 13455 ^65000:4_0:230_0:117$ ip community-list expanded c1 permit 13456 ^65000:4_0:230_0:118$ ip community-list expanded c1 permit 13457 ^65000:4_0:230_0:119$ ip community-list expanded c1 permit 13458 ^65000:4_0:230_0:120$ ip community-list expanded c1 permit 13459 ^65000:4_0:230_0:121$ ip community-list expanded c1 permit 13460 ^65000:4_0:230_0:122$ ip community-list expanded c1 permit 13461 ^65000:4_0:230_0:123$ ip community-list expanded c1 permit 13462 ^65000:4_0:230_0:124$ ip community-list expanded c1 permit 13463 ^65000:4_0:230_0:125$ ip community-list expanded c1 permit 13464 ^65000:4_0:230_0:126$ ip community-list expanded c1 permit 13465 ^65000:4_0:230_0:127$ ip community-list expanded c1 permit 13466 ^65000:4_0:230_0:128$ ip community-list expanded c1 permit 13467 ^65000:4_0:230_0:129$ ip community-list expanded c1 permit 13468 ^65000:4_0:230_0:130$ ip community-list expanded c1 permit 13469 ^65000:4_0:230_0:131$ ip community-list expanded c1 permit 13470 ^65000:4_0:230_0:132$ ip community-list expanded c1 permit 13471 ^65000:4_0:230_0:133$ ip community-list expanded c1 permit 13472 ^65000:4_0:230_0:134$ ip community-list expanded c1 permit 13473 ^65000:4_0:230_0:135$ ip community-list expanded c1 permit 13474 ^65000:4_0:230_0:136$ ip community-list expanded c1 permit 13475 ^65000:4_0:230_0:137$ ip community-list expanded c1 permit 13476 ^65000:4_0:230_0:138$ ip community-list expanded c1 permit 13477 ^65000:4_0:230_0:139$ ip community-list expanded c1 permit 13478 ^65000:4_0:230_0:140$ ip community-list expanded c1 permit 13479 ^65000:4_0:230_0:141$ ip community-list expanded c1 permit 13480 ^65000:4_0:230_0:142$ ip community-list expanded c1 permit 13481 ^65000:4_0:230_0:143$ ip community-list expanded c1 permit 13482 ^65000:4_0:230_0:144$ ip community-list expanded c1 permit 13483 ^65000:4_0:230_0:145$ ip community-list expanded c1 permit 13484 ^65000:4_0:230_0:146$ ip community-list expanded c1 permit 13485 ^65000:4_0:230_0:147$ ip community-list expanded c1 permit 13486 ^65000:4_0:230_0:148$ ip community-list expanded c1 permit 13487 ^65000:4_0:230_0:149$ ip community-list expanded c1 permit 13488 ^65000:4_0:230_0:150$ ip community-list expanded c1 permit 13489 ^65000:4_0:230_0:151$ ip community-list expanded c1 permit 13490 ^65000:4_0:230_0:152$ ip community-list expanded c1 permit 13491 ^65000:4_0:230_0:153$ ip community-list expanded c1 permit 13492 ^65000:4_0:230_0:154$ ip community-list expanded c1 permit 13493 ^65000:4_0:230_0:155$ ip community-list expanded c1 permit 13494 ^65000:4_0:230_0:156$ ip community-list expanded c1 permit 13495 ^65000:4_0:230_0:157$ ip community-list expanded c1 permit 13496 ^65000:4_0:230_0:158$ ip community-list expanded c1 permit 13497 ^65000:4_0:230_0:159$ ip community-list expanded c1 permit 13498 ^65000:4_0:230_0:160$ ip community-list expanded c1 permit 13499 ^65000:4_0:230_0:161$ ip community-list expanded c1 permit 13500 ^65000:4_0:230_0:162$ ip community-list expanded c1 permit 13501 ^65000:4_0:230_0:163$ ip community-list expanded c1 permit 13502 ^65000:4_0:230_0:164$ ip community-list expanded c1 permit 13503 ^65000:4_0:230_0:165$ ip community-list expanded c1 permit 13504 ^65000:4_0:230_0:166$ ip community-list expanded c1 permit 13505 ^65000:4_0:230_0:167$ ip community-list expanded c1 permit 13506 ^65000:4_0:230_0:168$ ip community-list expanded c1 permit 13507 ^65000:4_0:230_0:169$ ip community-list expanded c1 permit 13508 ^65000:4_0:230_0:170$ ip community-list expanded c1 permit 13509 ^65000:4_0:230_0:171$ ip community-list expanded c1 permit 13510 ^65000:4_0:230_0:172$ ip community-list expanded c1 permit 13511 ^65000:4_0:230_0:173$ ip community-list expanded c1 permit 13512 ^65000:4_0:230_0:174$ ip community-list expanded c1 permit 13513 ^65000:4_0:230_0:175$ ip community-list expanded c1 permit 13514 ^65000:4_0:230_0:176$ ip community-list expanded c1 permit 13515 ^65000:4_0:230_0:177$ ip community-list expanded c1 permit 13516 ^65000:4_0:230_0:178$ ip community-list expanded c1 permit 13517 ^65000:4_0:230_0:179$ ip community-list expanded c1 permit 13518 ^65000:4_0:230_0:180$ ip community-list expanded c1 permit 13519 ^65000:4_0:230_0:181$ ip community-list expanded c1 permit 13520 ^65000:4_0:230_0:182$ ip community-list expanded c1 permit 13521 ^65000:4_0:230_0:183$ ip community-list expanded c1 permit 13522 ^65000:4_0:230_0:184$ ip community-list expanded c1 permit 13523 ^65000:4_0:230_0:185$ ip community-list expanded c1 permit 13524 ^65000:4_0:230_0:186$ ip community-list expanded c1 permit 13525 ^65000:4_0:230_0:187$ ip community-list expanded c1 permit 13526 ^65000:4_0:230_0:188$ ip community-list expanded c1 permit 13527 ^65000:4_0:230_0:189$ ip community-list expanded c1 permit 13528 ^65000:4_0:230_0:190$ ip community-list expanded c1 permit 13529 ^65000:4_0:230_0:191$ ip community-list expanded c1 permit 13530 ^65000:4_0:230_0:192$ ip community-list expanded c1 permit 13531 ^65000:4_0:230_0:193$ ip community-list expanded c1 permit 13532 ^65000:4_0:230_0:194$ ip community-list expanded c1 permit 13533 ^65000:4_0:230_0:195$ ip community-list expanded c1 permit 13534 ^65000:4_0:230_0:196$ ip community-list expanded c1 permit 13535 ^65000:4_0:230_0:197$ ip community-list expanded c1 permit 13536 ^65000:4_0:230_0:198$ ip community-list expanded c1 permit 13537 ^65000:4_0:230_0:199$ ip community-list expanded c1 permit 13538 ^65000:4_0:230_0:200$ ip community-list expanded c1 permit 13539 ^65000:4_0:230_0:201$ ip community-list expanded c1 permit 13540 ^65000:4_0:230_0:202$ ip community-list expanded c1 permit 13541 ^65000:4_0:230_0:203$ ip community-list expanded c1 permit 13542 ^65000:4_0:230_0:204$ ip community-list expanded c1 permit 13543 ^65000:4_0:230_0:205$ ip community-list expanded c1 permit 13544 ^65000:4_0:230_0:206$ ip community-list expanded c1 permit 13545 ^65000:4_0:230_0:207$ ip community-list expanded c1 permit 13546 ^65000:4_0:230_0:208$ ip community-list expanded c1 permit 13547 ^65000:4_0:230_0:209$ ip community-list expanded c1 permit 13548 ^65000:4_0:230_0:210$ ip community-list expanded c1 permit 13549 ^65000:4_0:230_0:211$ ip community-list expanded c1 permit 13550 ^65000:4_0:230_0:212$ ip community-list expanded c1 permit 13551 ^65000:4_0:230_0:213$ ip community-list expanded c1 permit 13552 ^65000:4_0:230_0:214$ ip community-list expanded c1 permit 13553 ^65000:4_0:230_0:215$ ip community-list expanded c1 permit 13554 ^65000:4_0:230_0:216$ ip community-list expanded c1 permit 13555 ^65000:4_0:230_0:217$ ip community-list expanded c1 permit 13556 ^65000:4_0:230_0:218$ ip community-list expanded c1 permit 13557 ^65000:4_0:230_0:219$ ip community-list expanded c1 permit 13558 ^65000:4_0:230_0:220$ ip community-list expanded c1 permit 13559 ^65000:4_0:230_0:221$ ip community-list expanded c1 permit 13560 ^65000:4_0:230_0:222$ ip community-list expanded c1 permit 13561 ^65000:4_0:230_0:223$ ip community-list expanded c1 permit 13562 ^65000:4_0:230_0:224$ ip community-list expanded c1 permit 13563 ^65000:4_0:230_0:225$ ip community-list expanded c1 permit 13564 ^65000:4_0:230_0:226$ ip community-list expanded c1 permit 13565 ^65000:4_0:230_0:227$ ip community-list expanded c1 permit 13566 ^65000:4_0:230_0:228$ ip community-list expanded c1 permit 13567 ^65000:3_0:230_0:229$ ip community-list expanded c1 permit 13568 ^65000:4_0:230_0:229$ ip community-list expanded c1 permit 13569 ^65000:4_0:230_0:230$ ip community-list expanded c1 permit 13570 ^65000:4_0:231_0:116$ ip community-list expanded c1 permit 13571 ^65000:4_0:231_0:117$ ip community-list expanded c1 permit 13572 ^65000:4_0:231_0:118$ ip community-list expanded c1 permit 13573 ^65000:4_0:231_0:119$ ip community-list expanded c1 permit 13574 ^65000:4_0:231_0:120$ ip community-list expanded c1 permit 13575 ^65000:4_0:231_0:121$ ip community-list expanded c1 permit 13576 ^65000:4_0:231_0:122$ ip community-list expanded c1 permit 13577 ^65000:4_0:231_0:123$ ip community-list expanded c1 permit 13578 ^65000:4_0:231_0:124$ ip community-list expanded c1 permit 13579 ^65000:4_0:231_0:125$ ip community-list expanded c1 permit 13580 ^65000:4_0:231_0:126$ ip community-list expanded c1 permit 13581 ^65000:4_0:231_0:127$ ip community-list expanded c1 permit 13582 ^65000:4_0:231_0:128$ ip community-list expanded c1 permit 13583 ^65000:4_0:231_0:129$ ip community-list expanded c1 permit 13584 ^65000:4_0:231_0:130$ ip community-list expanded c1 permit 13585 ^65000:4_0:231_0:131$ ip community-list expanded c1 permit 13586 ^65000:4_0:231_0:132$ ip community-list expanded c1 permit 13587 ^65000:4_0:231_0:133$ ip community-list expanded c1 permit 13588 ^65000:4_0:231_0:134$ ip community-list expanded c1 permit 13589 ^65000:4_0:231_0:135$ ip community-list expanded c1 permit 13590 ^65000:4_0:231_0:136$ ip community-list expanded c1 permit 13591 ^65000:4_0:231_0:137$ ip community-list expanded c1 permit 13592 ^65000:4_0:231_0:138$ ip community-list expanded c1 permit 13593 ^65000:4_0:231_0:139$ ip community-list expanded c1 permit 13594 ^65000:4_0:231_0:140$ ip community-list expanded c1 permit 13595 ^65000:4_0:231_0:141$ ip community-list expanded c1 permit 13596 ^65000:4_0:231_0:142$ ip community-list expanded c1 permit 13597 ^65000:4_0:231_0:143$ ip community-list expanded c1 permit 13598 ^65000:4_0:231_0:144$ ip community-list expanded c1 permit 13599 ^65000:4_0:231_0:145$ ip community-list expanded c1 permit 13600 ^65000:4_0:231_0:146$ ip community-list expanded c1 permit 13601 ^65000:4_0:231_0:147$ ip community-list expanded c1 permit 13602 ^65000:4_0:231_0:148$ ip community-list expanded c1 permit 13603 ^65000:4_0:231_0:149$ ip community-list expanded c1 permit 13604 ^65000:4_0:231_0:150$ ip community-list expanded c1 permit 13605 ^65000:4_0:231_0:151$ ip community-list expanded c1 permit 13606 ^65000:4_0:231_0:152$ ip community-list expanded c1 permit 13607 ^65000:4_0:231_0:153$ ip community-list expanded c1 permit 13608 ^65000:4_0:231_0:154$ ip community-list expanded c1 permit 13609 ^65000:4_0:231_0:155$ ip community-list expanded c1 permit 13610 ^65000:4_0:231_0:156$ ip community-list expanded c1 permit 13611 ^65000:4_0:231_0:157$ ip community-list expanded c1 permit 13612 ^65000:4_0:231_0:158$ ip community-list expanded c1 permit 13613 ^65000:4_0:231_0:159$ ip community-list expanded c1 permit 13614 ^65000:4_0:231_0:160$ ip community-list expanded c1 permit 13615 ^65000:4_0:231_0:161$ ip community-list expanded c1 permit 13616 ^65000:4_0:231_0:162$ ip community-list expanded c1 permit 13617 ^65000:4_0:231_0:163$ ip community-list expanded c1 permit 13618 ^65000:4_0:231_0:164$ ip community-list expanded c1 permit 13619 ^65000:4_0:231_0:165$ ip community-list expanded c1 permit 13620 ^65000:4_0:231_0:166$ ip community-list expanded c1 permit 13621 ^65000:4_0:231_0:167$ ip community-list expanded c1 permit 13622 ^65000:4_0:231_0:168$ ip community-list expanded c1 permit 13623 ^65000:4_0:231_0:169$ ip community-list expanded c1 permit 13624 ^65000:4_0:231_0:170$ ip community-list expanded c1 permit 13625 ^65000:4_0:231_0:171$ ip community-list expanded c1 permit 13626 ^65000:4_0:231_0:172$ ip community-list expanded c1 permit 13627 ^65000:4_0:231_0:173$ ip community-list expanded c1 permit 13628 ^65000:4_0:231_0:174$ ip community-list expanded c1 permit 13629 ^65000:4_0:231_0:175$ ip community-list expanded c1 permit 13630 ^65000:4_0:231_0:176$ ip community-list expanded c1 permit 13631 ^65000:4_0:231_0:177$ ip community-list expanded c1 permit 13632 ^65000:4_0:231_0:178$ ip community-list expanded c1 permit 13633 ^65000:4_0:231_0:179$ ip community-list expanded c1 permit 13634 ^65000:4_0:231_0:180$ ip community-list expanded c1 permit 13635 ^65000:4_0:231_0:181$ ip community-list expanded c1 permit 13636 ^65000:4_0:231_0:182$ ip community-list expanded c1 permit 13637 ^65000:4_0:231_0:183$ ip community-list expanded c1 permit 13638 ^65000:4_0:231_0:184$ ip community-list expanded c1 permit 13639 ^65000:4_0:231_0:185$ ip community-list expanded c1 permit 13640 ^65000:4_0:231_0:186$ ip community-list expanded c1 permit 13641 ^65000:4_0:231_0:187$ ip community-list expanded c1 permit 13642 ^65000:4_0:231_0:188$ ip community-list expanded c1 permit 13643 ^65000:4_0:231_0:189$ ip community-list expanded c1 permit 13644 ^65000:4_0:231_0:190$ ip community-list expanded c1 permit 13645 ^65000:4_0:231_0:191$ ip community-list expanded c1 permit 13646 ^65000:4_0:231_0:192$ ip community-list expanded c1 permit 13647 ^65000:4_0:231_0:193$ ip community-list expanded c1 permit 13648 ^65000:4_0:231_0:194$ ip community-list expanded c1 permit 13649 ^65000:4_0:231_0:195$ ip community-list expanded c1 permit 13650 ^65000:4_0:231_0:196$ ip community-list expanded c1 permit 13651 ^65000:4_0:231_0:197$ ip community-list expanded c1 permit 13652 ^65000:4_0:231_0:198$ ip community-list expanded c1 permit 13653 ^65000:4_0:231_0:199$ ip community-list expanded c1 permit 13654 ^65000:4_0:231_0:200$ ip community-list expanded c1 permit 13655 ^65000:4_0:231_0:201$ ip community-list expanded c1 permit 13656 ^65000:4_0:231_0:202$ ip community-list expanded c1 permit 13657 ^65000:4_0:231_0:203$ ip community-list expanded c1 permit 13658 ^65000:4_0:231_0:204$ ip community-list expanded c1 permit 13659 ^65000:4_0:231_0:205$ ip community-list expanded c1 permit 13660 ^65000:4_0:231_0:206$ ip community-list expanded c1 permit 13661 ^65000:4_0:231_0:207$ ip community-list expanded c1 permit 13662 ^65000:4_0:231_0:208$ ip community-list expanded c1 permit 13663 ^65000:4_0:231_0:209$ ip community-list expanded c1 permit 13664 ^65000:4_0:231_0:210$ ip community-list expanded c1 permit 13665 ^65000:4_0:231_0:211$ ip community-list expanded c1 permit 13666 ^65000:4_0:231_0:212$ ip community-list expanded c1 permit 13667 ^65000:4_0:231_0:213$ ip community-list expanded c1 permit 13668 ^65000:4_0:231_0:214$ ip community-list expanded c1 permit 13669 ^65000:4_0:231_0:215$ ip community-list expanded c1 permit 13670 ^65000:4_0:231_0:216$ ip community-list expanded c1 permit 13671 ^65000:4_0:231_0:217$ ip community-list expanded c1 permit 13672 ^65000:4_0:231_0:218$ ip community-list expanded c1 permit 13673 ^65000:4_0:231_0:219$ ip community-list expanded c1 permit 13674 ^65000:4_0:231_0:220$ ip community-list expanded c1 permit 13675 ^65000:4_0:231_0:221$ ip community-list expanded c1 permit 13676 ^65000:4_0:231_0:222$ ip community-list expanded c1 permit 13677 ^65000:4_0:231_0:223$ ip community-list expanded c1 permit 13678 ^65000:4_0:231_0:224$ ip community-list expanded c1 permit 13679 ^65000:4_0:231_0:225$ ip community-list expanded c1 permit 13680 ^65000:4_0:231_0:226$ ip community-list expanded c1 permit 13681 ^65000:4_0:231_0:227$ ip community-list expanded c1 permit 13682 ^65000:4_0:231_0:228$ ip community-list expanded c1 permit 13683 ^65000:4_0:231_0:229$ ip community-list expanded c1 permit 13684 ^65000:3_0:231_0:230$ ip community-list expanded c1 permit 13685 ^65000:4_0:231_0:230$ ip community-list expanded c1 permit 13686 ^65000:4_0:231_0:231$ ip community-list expanded c1 permit 13687 ^65000:4_0:232_0:117$ ip community-list expanded c1 permit 13688 ^65000:4_0:232_0:118$ ip community-list expanded c1 permit 13689 ^65000:4_0:232_0:119$ ip community-list expanded c1 permit 13690 ^65000:4_0:232_0:120$ ip community-list expanded c1 permit 13691 ^65000:4_0:232_0:121$ ip community-list expanded c1 permit 13692 ^65000:4_0:232_0:122$ ip community-list expanded c1 permit 13693 ^65000:4_0:232_0:123$ ip community-list expanded c1 permit 13694 ^65000:4_0:232_0:124$ ip community-list expanded c1 permit 13695 ^65000:4_0:232_0:125$ ip community-list expanded c1 permit 13696 ^65000:4_0:232_0:126$ ip community-list expanded c1 permit 13697 ^65000:4_0:232_0:127$ ip community-list expanded c1 permit 13698 ^65000:4_0:232_0:128$ ip community-list expanded c1 permit 13699 ^65000:4_0:232_0:129$ ip community-list expanded c1 permit 13700 ^65000:4_0:232_0:130$ ip community-list expanded c1 permit 13701 ^65000:4_0:232_0:131$ ip community-list expanded c1 permit 13702 ^65000:4_0:232_0:132$ ip community-list expanded c1 permit 13703 ^65000:4_0:232_0:133$ ip community-list expanded c1 permit 13704 ^65000:4_0:232_0:134$ ip community-list expanded c1 permit 13705 ^65000:4_0:232_0:135$ ip community-list expanded c1 permit 13706 ^65000:4_0:232_0:136$ ip community-list expanded c1 permit 13707 ^65000:4_0:232_0:137$ ip community-list expanded c1 permit 13708 ^65000:4_0:232_0:138$ ip community-list expanded c1 permit 13709 ^65000:4_0:232_0:139$ ip community-list expanded c1 permit 13710 ^65000:4_0:232_0:140$ ip community-list expanded c1 permit 13711 ^65000:4_0:232_0:141$ ip community-list expanded c1 permit 13712 ^65000:4_0:232_0:142$ ip community-list expanded c1 permit 13713 ^65000:4_0:232_0:143$ ip community-list expanded c1 permit 13714 ^65000:4_0:232_0:144$ ip community-list expanded c1 permit 13715 ^65000:4_0:232_0:145$ ip community-list expanded c1 permit 13716 ^65000:4_0:232_0:146$ ip community-list expanded c1 permit 13717 ^65000:4_0:232_0:147$ ip community-list expanded c1 permit 13718 ^65000:4_0:232_0:148$ ip community-list expanded c1 permit 13719 ^65000:4_0:232_0:149$ ip community-list expanded c1 permit 13720 ^65000:4_0:232_0:150$ ip community-list expanded c1 permit 13721 ^65000:4_0:232_0:151$ ip community-list expanded c1 permit 13722 ^65000:4_0:232_0:152$ ip community-list expanded c1 permit 13723 ^65000:4_0:232_0:153$ ip community-list expanded c1 permit 13724 ^65000:4_0:232_0:154$ ip community-list expanded c1 permit 13725 ^65000:4_0:232_0:155$ ip community-list expanded c1 permit 13726 ^65000:4_0:232_0:156$ ip community-list expanded c1 permit 13727 ^65000:4_0:232_0:157$ ip community-list expanded c1 permit 13728 ^65000:4_0:232_0:158$ ip community-list expanded c1 permit 13729 ^65000:4_0:232_0:159$ ip community-list expanded c1 permit 13730 ^65000:4_0:232_0:160$ ip community-list expanded c1 permit 13731 ^65000:4_0:232_0:161$ ip community-list expanded c1 permit 13732 ^65000:4_0:232_0:162$ ip community-list expanded c1 permit 13733 ^65000:4_0:232_0:163$ ip community-list expanded c1 permit 13734 ^65000:4_0:232_0:164$ ip community-list expanded c1 permit 13735 ^65000:4_0:232_0:165$ ip community-list expanded c1 permit 13736 ^65000:4_0:232_0:166$ ip community-list expanded c1 permit 13737 ^65000:4_0:232_0:167$ ip community-list expanded c1 permit 13738 ^65000:4_0:232_0:168$ ip community-list expanded c1 permit 13739 ^65000:4_0:232_0:169$ ip community-list expanded c1 permit 13740 ^65000:4_0:232_0:170$ ip community-list expanded c1 permit 13741 ^65000:4_0:232_0:171$ ip community-list expanded c1 permit 13742 ^65000:4_0:232_0:172$ ip community-list expanded c1 permit 13743 ^65000:4_0:232_0:173$ ip community-list expanded c1 permit 13744 ^65000:4_0:232_0:174$ ip community-list expanded c1 permit 13745 ^65000:4_0:232_0:175$ ip community-list expanded c1 permit 13746 ^65000:4_0:232_0:176$ ip community-list expanded c1 permit 13747 ^65000:4_0:232_0:177$ ip community-list expanded c1 permit 13748 ^65000:4_0:232_0:178$ ip community-list expanded c1 permit 13749 ^65000:4_0:232_0:179$ ip community-list expanded c1 permit 13750 ^65000:4_0:232_0:180$ ip community-list expanded c1 permit 13751 ^65000:4_0:232_0:181$ ip community-list expanded c1 permit 13752 ^65000:4_0:232_0:182$ ip community-list expanded c1 permit 13753 ^65000:4_0:232_0:183$ ip community-list expanded c1 permit 13754 ^65000:4_0:232_0:184$ ip community-list expanded c1 permit 13755 ^65000:4_0:232_0:185$ ip community-list expanded c1 permit 13756 ^65000:4_0:232_0:186$ ip community-list expanded c1 permit 13757 ^65000:4_0:232_0:187$ ip community-list expanded c1 permit 13758 ^65000:4_0:232_0:188$ ip community-list expanded c1 permit 13759 ^65000:4_0:232_0:189$ ip community-list expanded c1 permit 13760 ^65000:4_0:232_0:190$ ip community-list expanded c1 permit 13761 ^65000:4_0:232_0:191$ ip community-list expanded c1 permit 13762 ^65000:4_0:232_0:192$ ip community-list expanded c1 permit 13763 ^65000:4_0:232_0:193$ ip community-list expanded c1 permit 13764 ^65000:4_0:232_0:194$ ip community-list expanded c1 permit 13765 ^65000:4_0:232_0:195$ ip community-list expanded c1 permit 13766 ^65000:4_0:232_0:196$ ip community-list expanded c1 permit 13767 ^65000:4_0:232_0:197$ ip community-list expanded c1 permit 13768 ^65000:4_0:232_0:198$ ip community-list expanded c1 permit 13769 ^65000:4_0:232_0:199$ ip community-list expanded c1 permit 13770 ^65000:4_0:232_0:200$ ip community-list expanded c1 permit 13771 ^65000:4_0:232_0:201$ ip community-list expanded c1 permit 13772 ^65000:4_0:232_0:202$ ip community-list expanded c1 permit 13773 ^65000:4_0:232_0:203$ ip community-list expanded c1 permit 13774 ^65000:4_0:232_0:204$ ip community-list expanded c1 permit 13775 ^65000:4_0:232_0:205$ ip community-list expanded c1 permit 13776 ^65000:4_0:232_0:206$ ip community-list expanded c1 permit 13777 ^65000:4_0:232_0:207$ ip community-list expanded c1 permit 13778 ^65000:4_0:232_0:208$ ip community-list expanded c1 permit 13779 ^65000:4_0:232_0:209$ ip community-list expanded c1 permit 13780 ^65000:4_0:232_0:210$ ip community-list expanded c1 permit 13781 ^65000:4_0:232_0:211$ ip community-list expanded c1 permit 13782 ^65000:4_0:232_0:212$ ip community-list expanded c1 permit 13783 ^65000:4_0:232_0:213$ ip community-list expanded c1 permit 13784 ^65000:4_0:232_0:214$ ip community-list expanded c1 permit 13785 ^65000:4_0:232_0:215$ ip community-list expanded c1 permit 13786 ^65000:4_0:232_0:216$ ip community-list expanded c1 permit 13787 ^65000:4_0:232_0:217$ ip community-list expanded c1 permit 13788 ^65000:4_0:232_0:218$ ip community-list expanded c1 permit 13789 ^65000:4_0:232_0:219$ ip community-list expanded c1 permit 13790 ^65000:4_0:232_0:220$ ip community-list expanded c1 permit 13791 ^65000:4_0:232_0:221$ ip community-list expanded c1 permit 13792 ^65000:4_0:232_0:222$ ip community-list expanded c1 permit 13793 ^65000:4_0:232_0:223$ ip community-list expanded c1 permit 13794 ^65000:4_0:232_0:224$ ip community-list expanded c1 permit 13795 ^65000:4_0:232_0:225$ ip community-list expanded c1 permit 13796 ^65000:4_0:232_0:226$ ip community-list expanded c1 permit 13797 ^65000:4_0:232_0:227$ ip community-list expanded c1 permit 13798 ^65000:4_0:232_0:228$ ip community-list expanded c1 permit 13799 ^65000:4_0:232_0:229$ ip community-list expanded c1 permit 13800 ^65000:4_0:232_0:230$ ip community-list expanded c1 permit 13801 ^65000:3_0:232_0:231$ ip community-list expanded c1 permit 13802 ^65000:4_0:232_0:231$ ip community-list expanded c1 permit 13803 ^65000:4_0:232_0:232$ ip community-list expanded c1 permit 13804 ^65000:4_0:233_0:117$ ip community-list expanded c1 permit 13805 ^65000:4_0:233_0:118$ ip community-list expanded c1 permit 13806 ^65000:4_0:233_0:119$ ip community-list expanded c1 permit 13807 ^65000:4_0:233_0:120$ ip community-list expanded c1 permit 13808 ^65000:4_0:233_0:121$ ip community-list expanded c1 permit 13809 ^65000:4_0:233_0:122$ ip community-list expanded c1 permit 13810 ^65000:4_0:233_0:123$ ip community-list expanded c1 permit 13811 ^65000:4_0:233_0:124$ ip community-list expanded c1 permit 13812 ^65000:4_0:233_0:125$ ip community-list expanded c1 permit 13813 ^65000:4_0:233_0:126$ ip community-list expanded c1 permit 13814 ^65000:4_0:233_0:127$ ip community-list expanded c1 permit 13815 ^65000:4_0:233_0:128$ ip community-list expanded c1 permit 13816 ^65000:4_0:233_0:129$ ip community-list expanded c1 permit 13817 ^65000:4_0:233_0:130$ ip community-list expanded c1 permit 13818 ^65000:4_0:233_0:131$ ip community-list expanded c1 permit 13819 ^65000:4_0:233_0:132$ ip community-list expanded c1 permit 13820 ^65000:4_0:233_0:133$ ip community-list expanded c1 permit 13821 ^65000:4_0:233_0:134$ ip community-list expanded c1 permit 13822 ^65000:4_0:233_0:135$ ip community-list expanded c1 permit 13823 ^65000:4_0:233_0:136$ ip community-list expanded c1 permit 13824 ^65000:4_0:233_0:137$ ip community-list expanded c1 permit 13825 ^65000:4_0:233_0:138$ ip community-list expanded c1 permit 13826 ^65000:4_0:233_0:139$ ip community-list expanded c1 permit 13827 ^65000:4_0:233_0:140$ ip community-list expanded c1 permit 13828 ^65000:4_0:233_0:141$ ip community-list expanded c1 permit 13829 ^65000:4_0:233_0:142$ ip community-list expanded c1 permit 13830 ^65000:4_0:233_0:143$ ip community-list expanded c1 permit 13831 ^65000:4_0:233_0:144$ ip community-list expanded c1 permit 13832 ^65000:4_0:233_0:145$ ip community-list expanded c1 permit 13833 ^65000:4_0:233_0:146$ ip community-list expanded c1 permit 13834 ^65000:4_0:233_0:147$ ip community-list expanded c1 permit 13835 ^65000:4_0:233_0:148$ ip community-list expanded c1 permit 13836 ^65000:4_0:233_0:149$ ip community-list expanded c1 permit 13837 ^65000:4_0:233_0:150$ ip community-list expanded c1 permit 13838 ^65000:4_0:233_0:151$ ip community-list expanded c1 permit 13839 ^65000:4_0:233_0:152$ ip community-list expanded c1 permit 13840 ^65000:4_0:233_0:153$ ip community-list expanded c1 permit 13841 ^65000:4_0:233_0:154$ ip community-list expanded c1 permit 13842 ^65000:4_0:233_0:155$ ip community-list expanded c1 permit 13843 ^65000:4_0:233_0:156$ ip community-list expanded c1 permit 13844 ^65000:4_0:233_0:157$ ip community-list expanded c1 permit 13845 ^65000:4_0:233_0:158$ ip community-list expanded c1 permit 13846 ^65000:4_0:233_0:159$ ip community-list expanded c1 permit 13847 ^65000:4_0:233_0:160$ ip community-list expanded c1 permit 13848 ^65000:4_0:233_0:161$ ip community-list expanded c1 permit 13849 ^65000:4_0:233_0:162$ ip community-list expanded c1 permit 13850 ^65000:4_0:233_0:163$ ip community-list expanded c1 permit 13851 ^65000:4_0:233_0:164$ ip community-list expanded c1 permit 13852 ^65000:4_0:233_0:165$ ip community-list expanded c1 permit 13853 ^65000:4_0:233_0:166$ ip community-list expanded c1 permit 13854 ^65000:4_0:233_0:167$ ip community-list expanded c1 permit 13855 ^65000:4_0:233_0:168$ ip community-list expanded c1 permit 13856 ^65000:4_0:233_0:169$ ip community-list expanded c1 permit 13857 ^65000:4_0:233_0:170$ ip community-list expanded c1 permit 13858 ^65000:4_0:233_0:171$ ip community-list expanded c1 permit 13859 ^65000:4_0:233_0:172$ ip community-list expanded c1 permit 13860 ^65000:4_0:233_0:173$ ip community-list expanded c1 permit 13861 ^65000:4_0:233_0:174$ ip community-list expanded c1 permit 13862 ^65000:4_0:233_0:175$ ip community-list expanded c1 permit 13863 ^65000:4_0:233_0:176$ ip community-list expanded c1 permit 13864 ^65000:4_0:233_0:177$ ip community-list expanded c1 permit 13865 ^65000:4_0:233_0:178$ ip community-list expanded c1 permit 13866 ^65000:4_0:233_0:179$ ip community-list expanded c1 permit 13867 ^65000:4_0:233_0:180$ ip community-list expanded c1 permit 13868 ^65000:4_0:233_0:181$ ip community-list expanded c1 permit 13869 ^65000:4_0:233_0:182$ ip community-list expanded c1 permit 13870 ^65000:4_0:233_0:183$ ip community-list expanded c1 permit 13871 ^65000:4_0:233_0:184$ ip community-list expanded c1 permit 13872 ^65000:4_0:233_0:185$ ip community-list expanded c1 permit 13873 ^65000:4_0:233_0:186$ ip community-list expanded c1 permit 13874 ^65000:4_0:233_0:187$ ip community-list expanded c1 permit 13875 ^65000:4_0:233_0:188$ ip community-list expanded c1 permit 13876 ^65000:4_0:233_0:189$ ip community-list expanded c1 permit 13877 ^65000:4_0:233_0:190$ ip community-list expanded c1 permit 13878 ^65000:4_0:233_0:191$ ip community-list expanded c1 permit 13879 ^65000:4_0:233_0:192$ ip community-list expanded c1 permit 13880 ^65000:4_0:233_0:193$ ip community-list expanded c1 permit 13881 ^65000:4_0:233_0:194$ ip community-list expanded c1 permit 13882 ^65000:4_0:233_0:195$ ip community-list expanded c1 permit 13883 ^65000:4_0:233_0:196$ ip community-list expanded c1 permit 13884 ^65000:4_0:233_0:197$ ip community-list expanded c1 permit 13885 ^65000:4_0:233_0:198$ ip community-list expanded c1 permit 13886 ^65000:4_0:233_0:199$ ip community-list expanded c1 permit 13887 ^65000:4_0:233_0:200$ ip community-list expanded c1 permit 13888 ^65000:4_0:233_0:201$ ip community-list expanded c1 permit 13889 ^65000:4_0:233_0:202$ ip community-list expanded c1 permit 13890 ^65000:4_0:233_0:203$ ip community-list expanded c1 permit 13891 ^65000:4_0:233_0:204$ ip community-list expanded c1 permit 13892 ^65000:4_0:233_0:205$ ip community-list expanded c1 permit 13893 ^65000:4_0:233_0:206$ ip community-list expanded c1 permit 13894 ^65000:4_0:233_0:207$ ip community-list expanded c1 permit 13895 ^65000:4_0:233_0:208$ ip community-list expanded c1 permit 13896 ^65000:4_0:233_0:209$ ip community-list expanded c1 permit 13897 ^65000:4_0:233_0:210$ ip community-list expanded c1 permit 13898 ^65000:4_0:233_0:211$ ip community-list expanded c1 permit 13899 ^65000:4_0:233_0:212$ ip community-list expanded c1 permit 13900 ^65000:4_0:233_0:213$ ip community-list expanded c1 permit 13901 ^65000:4_0:233_0:214$ ip community-list expanded c1 permit 13902 ^65000:4_0:233_0:215$ ip community-list expanded c1 permit 13903 ^65000:4_0:233_0:216$ ip community-list expanded c1 permit 13904 ^65000:4_0:233_0:217$ ip community-list expanded c1 permit 13905 ^65000:4_0:233_0:218$ ip community-list expanded c1 permit 13906 ^65000:4_0:233_0:219$ ip community-list expanded c1 permit 13907 ^65000:4_0:233_0:220$ ip community-list expanded c1 permit 13908 ^65000:4_0:233_0:221$ ip community-list expanded c1 permit 13909 ^65000:4_0:233_0:222$ ip community-list expanded c1 permit 13910 ^65000:4_0:233_0:223$ ip community-list expanded c1 permit 13911 ^65000:4_0:233_0:224$ ip community-list expanded c1 permit 13912 ^65000:4_0:233_0:225$ ip community-list expanded c1 permit 13913 ^65000:4_0:233_0:226$ ip community-list expanded c1 permit 13914 ^65000:4_0:233_0:227$ ip community-list expanded c1 permit 13915 ^65000:4_0:233_0:228$ ip community-list expanded c1 permit 13916 ^65000:4_0:233_0:229$ ip community-list expanded c1 permit 13917 ^65000:4_0:233_0:230$ ip community-list expanded c1 permit 13918 ^65000:4_0:233_0:231$ ip community-list expanded c1 permit 13919 ^65000:3_0:233_0:232$ ip community-list expanded c1 permit 13920 ^65000:4_0:233_0:232$ ip community-list expanded c1 permit 13921 ^65000:4_0:233_0:233$ ip community-list expanded c1 permit 13922 ^65000:4_0:234_0:118$ ip community-list expanded c1 permit 13923 ^65000:4_0:234_0:119$ ip community-list expanded c1 permit 13924 ^65000:4_0:234_0:120$ ip community-list expanded c1 permit 13925 ^65000:4_0:234_0:121$ ip community-list expanded c1 permit 13926 ^65000:4_0:234_0:122$ ip community-list expanded c1 permit 13927 ^65000:4_0:234_0:123$ ip community-list expanded c1 permit 13928 ^65000:4_0:234_0:124$ ip community-list expanded c1 permit 13929 ^65000:4_0:234_0:125$ ip community-list expanded c1 permit 13930 ^65000:4_0:234_0:126$ ip community-list expanded c1 permit 13931 ^65000:4_0:234_0:127$ ip community-list expanded c1 permit 13932 ^65000:4_0:234_0:128$ ip community-list expanded c1 permit 13933 ^65000:4_0:234_0:129$ ip community-list expanded c1 permit 13934 ^65000:4_0:234_0:130$ ip community-list expanded c1 permit 13935 ^65000:4_0:234_0:131$ ip community-list expanded c1 permit 13936 ^65000:4_0:234_0:132$ ip community-list expanded c1 permit 13937 ^65000:4_0:234_0:133$ ip community-list expanded c1 permit 13938 ^65000:4_0:234_0:134$ ip community-list expanded c1 permit 13939 ^65000:4_0:234_0:135$ ip community-list expanded c1 permit 13940 ^65000:4_0:234_0:136$ ip community-list expanded c1 permit 13941 ^65000:4_0:234_0:137$ ip community-list expanded c1 permit 13942 ^65000:4_0:234_0:138$ ip community-list expanded c1 permit 13943 ^65000:4_0:234_0:139$ ip community-list expanded c1 permit 13944 ^65000:4_0:234_0:140$ ip community-list expanded c1 permit 13945 ^65000:4_0:234_0:141$ ip community-list expanded c1 permit 13946 ^65000:4_0:234_0:142$ ip community-list expanded c1 permit 13947 ^65000:4_0:234_0:143$ ip community-list expanded c1 permit 13948 ^65000:4_0:234_0:144$ ip community-list expanded c1 permit 13949 ^65000:4_0:234_0:145$ ip community-list expanded c1 permit 13950 ^65000:4_0:234_0:146$ ip community-list expanded c1 permit 13951 ^65000:4_0:234_0:147$ ip community-list expanded c1 permit 13952 ^65000:4_0:234_0:148$ ip community-list expanded c1 permit 13953 ^65000:4_0:234_0:149$ ip community-list expanded c1 permit 13954 ^65000:4_0:234_0:150$ ip community-list expanded c1 permit 13955 ^65000:4_0:234_0:151$ ip community-list expanded c1 permit 13956 ^65000:4_0:234_0:152$ ip community-list expanded c1 permit 13957 ^65000:4_0:234_0:153$ ip community-list expanded c1 permit 13958 ^65000:4_0:234_0:154$ ip community-list expanded c1 permit 13959 ^65000:4_0:234_0:155$ ip community-list expanded c1 permit 13960 ^65000:4_0:234_0:156$ ip community-list expanded c1 permit 13961 ^65000:4_0:234_0:157$ ip community-list expanded c1 permit 13962 ^65000:4_0:234_0:158$ ip community-list expanded c1 permit 13963 ^65000:4_0:234_0:159$ ip community-list expanded c1 permit 13964 ^65000:4_0:234_0:160$ ip community-list expanded c1 permit 13965 ^65000:4_0:234_0:161$ ip community-list expanded c1 permit 13966 ^65000:4_0:234_0:162$ ip community-list expanded c1 permit 13967 ^65000:4_0:234_0:163$ ip community-list expanded c1 permit 13968 ^65000:4_0:234_0:164$ ip community-list expanded c1 permit 13969 ^65000:4_0:234_0:165$ ip community-list expanded c1 permit 13970 ^65000:4_0:234_0:166$ ip community-list expanded c1 permit 13971 ^65000:4_0:234_0:167$ ip community-list expanded c1 permit 13972 ^65000:4_0:234_0:168$ ip community-list expanded c1 permit 13973 ^65000:4_0:234_0:169$ ip community-list expanded c1 permit 13974 ^65000:4_0:234_0:170$ ip community-list expanded c1 permit 13975 ^65000:4_0:234_0:171$ ip community-list expanded c1 permit 13976 ^65000:4_0:234_0:172$ ip community-list expanded c1 permit 13977 ^65000:4_0:234_0:173$ ip community-list expanded c1 permit 13978 ^65000:4_0:234_0:174$ ip community-list expanded c1 permit 13979 ^65000:4_0:234_0:175$ ip community-list expanded c1 permit 13980 ^65000:4_0:234_0:176$ ip community-list expanded c1 permit 13981 ^65000:4_0:234_0:177$ ip community-list expanded c1 permit 13982 ^65000:4_0:234_0:178$ ip community-list expanded c1 permit 13983 ^65000:4_0:234_0:179$ ip community-list expanded c1 permit 13984 ^65000:4_0:234_0:180$ ip community-list expanded c1 permit 13985 ^65000:4_0:234_0:181$ ip community-list expanded c1 permit 13986 ^65000:4_0:234_0:182$ ip community-list expanded c1 permit 13987 ^65000:4_0:234_0:183$ ip community-list expanded c1 permit 13988 ^65000:4_0:234_0:184$ ip community-list expanded c1 permit 13989 ^65000:4_0:234_0:185$ ip community-list expanded c1 permit 13990 ^65000:4_0:234_0:186$ ip community-list expanded c1 permit 13991 ^65000:4_0:234_0:187$ ip community-list expanded c1 permit 13992 ^65000:4_0:234_0:188$ ip community-list expanded c1 permit 13993 ^65000:4_0:234_0:189$ ip community-list expanded c1 permit 13994 ^65000:4_0:234_0:190$ ip community-list expanded c1 permit 13995 ^65000:4_0:234_0:191$ ip community-list expanded c1 permit 13996 ^65000:4_0:234_0:192$ ip community-list expanded c1 permit 13997 ^65000:4_0:234_0:193$ ip community-list expanded c1 permit 13998 ^65000:4_0:234_0:194$ ip community-list expanded c1 permit 13999 ^65000:4_0:234_0:195$ ip community-list expanded c1 permit 14000 ^65000:4_0:234_0:196$ ip community-list expanded c1 permit 14001 ^65000:4_0:234_0:197$ ip community-list expanded c1 permit 14002 ^65000:4_0:234_0:198$ ip community-list expanded c1 permit 14003 ^65000:4_0:234_0:199$ ip community-list expanded c1 permit 14004 ^65000:4_0:234_0:200$ ip community-list expanded c1 permit 14005 ^65000:4_0:234_0:201$ ip community-list expanded c1 permit 14006 ^65000:4_0:234_0:202$ ip community-list expanded c1 permit 14007 ^65000:4_0:234_0:203$ ip community-list expanded c1 permit 14008 ^65000:4_0:234_0:204$ ip community-list expanded c1 permit 14009 ^65000:4_0:234_0:205$ ip community-list expanded c1 permit 14010 ^65000:4_0:234_0:206$ ip community-list expanded c1 permit 14011 ^65000:4_0:234_0:207$ ip community-list expanded c1 permit 14012 ^65000:4_0:234_0:208$ ip community-list expanded c1 permit 14013 ^65000:4_0:234_0:209$ ip community-list expanded c1 permit 14014 ^65000:4_0:234_0:210$ ip community-list expanded c1 permit 14015 ^65000:4_0:234_0:211$ ip community-list expanded c1 permit 14016 ^65000:4_0:234_0:212$ ip community-list expanded c1 permit 14017 ^65000:4_0:234_0:213$ ip community-list expanded c1 permit 14018 ^65000:4_0:234_0:214$ ip community-list expanded c1 permit 14019 ^65000:4_0:234_0:215$ ip community-list expanded c1 permit 14020 ^65000:4_0:234_0:216$ ip community-list expanded c1 permit 14021 ^65000:4_0:234_0:217$ ip community-list expanded c1 permit 14022 ^65000:4_0:234_0:218$ ip community-list expanded c1 permit 14023 ^65000:4_0:234_0:219$ ip community-list expanded c1 permit 14024 ^65000:4_0:234_0:220$ ip community-list expanded c1 permit 14025 ^65000:4_0:234_0:221$ ip community-list expanded c1 permit 14026 ^65000:4_0:234_0:222$ ip community-list expanded c1 permit 14027 ^65000:4_0:234_0:223$ ip community-list expanded c1 permit 14028 ^65000:4_0:234_0:224$ ip community-list expanded c1 permit 14029 ^65000:4_0:234_0:225$ ip community-list expanded c1 permit 14030 ^65000:4_0:234_0:226$ ip community-list expanded c1 permit 14031 ^65000:4_0:234_0:227$ ip community-list expanded c1 permit 14032 ^65000:4_0:234_0:228$ ip community-list expanded c1 permit 14033 ^65000:4_0:234_0:229$ ip community-list expanded c1 permit 14034 ^65000:4_0:234_0:230$ ip community-list expanded c1 permit 14035 ^65000:4_0:234_0:231$ ip community-list expanded c1 permit 14036 ^65000:4_0:234_0:232$ ip community-list expanded c1 permit 14037 ^65000:3_0:234_0:233$ ip community-list expanded c1 permit 14038 ^65000:4_0:234_0:233$ ip community-list expanded c1 permit 14039 ^65000:4_0:234_0:234$ ip community-list expanded c1 permit 14040 ^65000:4_0:235_0:118$ ip community-list expanded c1 permit 14041 ^65000:4_0:235_0:119$ ip community-list expanded c1 permit 14042 ^65000:4_0:235_0:120$ ip community-list expanded c1 permit 14043 ^65000:4_0:235_0:121$ ip community-list expanded c1 permit 14044 ^65000:4_0:235_0:122$ ip community-list expanded c1 permit 14045 ^65000:4_0:235_0:123$ ip community-list expanded c1 permit 14046 ^65000:4_0:235_0:124$ ip community-list expanded c1 permit 14047 ^65000:4_0:235_0:125$ ip community-list expanded c1 permit 14048 ^65000:4_0:235_0:126$ ip community-list expanded c1 permit 14049 ^65000:4_0:235_0:127$ ip community-list expanded c1 permit 14050 ^65000:4_0:235_0:128$ ip community-list expanded c1 permit 14051 ^65000:4_0:235_0:129$ ip community-list expanded c1 permit 14052 ^65000:4_0:235_0:130$ ip community-list expanded c1 permit 14053 ^65000:4_0:235_0:131$ ip community-list expanded c1 permit 14054 ^65000:4_0:235_0:132$ ip community-list expanded c1 permit 14055 ^65000:4_0:235_0:133$ ip community-list expanded c1 permit 14056 ^65000:4_0:235_0:134$ ip community-list expanded c1 permit 14057 ^65000:4_0:235_0:135$ ip community-list expanded c1 permit 14058 ^65000:4_0:235_0:136$ ip community-list expanded c1 permit 14059 ^65000:4_0:235_0:137$ ip community-list expanded c1 permit 14060 ^65000:4_0:235_0:138$ ip community-list expanded c1 permit 14061 ^65000:4_0:235_0:139$ ip community-list expanded c1 permit 14062 ^65000:4_0:235_0:140$ ip community-list expanded c1 permit 14063 ^65000:4_0:235_0:141$ ip community-list expanded c1 permit 14064 ^65000:4_0:235_0:142$ ip community-list expanded c1 permit 14065 ^65000:4_0:235_0:143$ ip community-list expanded c1 permit 14066 ^65000:4_0:235_0:144$ ip community-list expanded c1 permit 14067 ^65000:4_0:235_0:145$ ip community-list expanded c1 permit 14068 ^65000:4_0:235_0:146$ ip community-list expanded c1 permit 14069 ^65000:4_0:235_0:147$ ip community-list expanded c1 permit 14070 ^65000:4_0:235_0:148$ ip community-list expanded c1 permit 14071 ^65000:4_0:235_0:149$ ip community-list expanded c1 permit 14072 ^65000:4_0:235_0:150$ ip community-list expanded c1 permit 14073 ^65000:4_0:235_0:151$ ip community-list expanded c1 permit 14074 ^65000:4_0:235_0:152$ ip community-list expanded c1 permit 14075 ^65000:4_0:235_0:153$ ip community-list expanded c1 permit 14076 ^65000:4_0:235_0:154$ ip community-list expanded c1 permit 14077 ^65000:4_0:235_0:155$ ip community-list expanded c1 permit 14078 ^65000:4_0:235_0:156$ ip community-list expanded c1 permit 14079 ^65000:4_0:235_0:157$ ip community-list expanded c1 permit 14080 ^65000:4_0:235_0:158$ ip community-list expanded c1 permit 14081 ^65000:4_0:235_0:159$ ip community-list expanded c1 permit 14082 ^65000:4_0:235_0:160$ ip community-list expanded c1 permit 14083 ^65000:4_0:235_0:161$ ip community-list expanded c1 permit 14084 ^65000:4_0:235_0:162$ ip community-list expanded c1 permit 14085 ^65000:4_0:235_0:163$ ip community-list expanded c1 permit 14086 ^65000:4_0:235_0:164$ ip community-list expanded c1 permit 14087 ^65000:4_0:235_0:165$ ip community-list expanded c1 permit 14088 ^65000:4_0:235_0:166$ ip community-list expanded c1 permit 14089 ^65000:4_0:235_0:167$ ip community-list expanded c1 permit 14090 ^65000:4_0:235_0:168$ ip community-list expanded c1 permit 14091 ^65000:4_0:235_0:169$ ip community-list expanded c1 permit 14092 ^65000:4_0:235_0:170$ ip community-list expanded c1 permit 14093 ^65000:4_0:235_0:171$ ip community-list expanded c1 permit 14094 ^65000:4_0:235_0:172$ ip community-list expanded c1 permit 14095 ^65000:4_0:235_0:173$ ip community-list expanded c1 permit 14096 ^65000:4_0:235_0:174$ ip community-list expanded c1 permit 14097 ^65000:4_0:235_0:175$ ip community-list expanded c1 permit 14098 ^65000:4_0:235_0:176$ ip community-list expanded c1 permit 14099 ^65000:4_0:235_0:177$ ip community-list expanded c1 permit 14100 ^65000:4_0:235_0:178$ ip community-list expanded c1 permit 14101 ^65000:4_0:235_0:179$ ip community-list expanded c1 permit 14102 ^65000:4_0:235_0:180$ ip community-list expanded c1 permit 14103 ^65000:4_0:235_0:181$ ip community-list expanded c1 permit 14104 ^65000:4_0:235_0:182$ ip community-list expanded c1 permit 14105 ^65000:4_0:235_0:183$ ip community-list expanded c1 permit 14106 ^65000:4_0:235_0:184$ ip community-list expanded c1 permit 14107 ^65000:4_0:235_0:185$ ip community-list expanded c1 permit 14108 ^65000:4_0:235_0:186$ ip community-list expanded c1 permit 14109 ^65000:4_0:235_0:187$ ip community-list expanded c1 permit 14110 ^65000:4_0:235_0:188$ ip community-list expanded c1 permit 14111 ^65000:4_0:235_0:189$ ip community-list expanded c1 permit 14112 ^65000:4_0:235_0:190$ ip community-list expanded c1 permit 14113 ^65000:4_0:235_0:191$ ip community-list expanded c1 permit 14114 ^65000:4_0:235_0:192$ ip community-list expanded c1 permit 14115 ^65000:4_0:235_0:193$ ip community-list expanded c1 permit 14116 ^65000:4_0:235_0:194$ ip community-list expanded c1 permit 14117 ^65000:4_0:235_0:195$ ip community-list expanded c1 permit 14118 ^65000:4_0:235_0:196$ ip community-list expanded c1 permit 14119 ^65000:4_0:235_0:197$ ip community-list expanded c1 permit 14120 ^65000:4_0:235_0:198$ ip community-list expanded c1 permit 14121 ^65000:4_0:235_0:199$ ip community-list expanded c1 permit 14122 ^65000:4_0:235_0:200$ ip community-list expanded c1 permit 14123 ^65000:4_0:235_0:201$ ip community-list expanded c1 permit 14124 ^65000:4_0:235_0:202$ ip community-list expanded c1 permit 14125 ^65000:4_0:235_0:203$ ip community-list expanded c1 permit 14126 ^65000:4_0:235_0:204$ ip community-list expanded c1 permit 14127 ^65000:4_0:235_0:205$ ip community-list expanded c1 permit 14128 ^65000:4_0:235_0:206$ ip community-list expanded c1 permit 14129 ^65000:4_0:235_0:207$ ip community-list expanded c1 permit 14130 ^65000:4_0:235_0:208$ ip community-list expanded c1 permit 14131 ^65000:4_0:235_0:209$ ip community-list expanded c1 permit 14132 ^65000:4_0:235_0:210$ ip community-list expanded c1 permit 14133 ^65000:4_0:235_0:211$ ip community-list expanded c1 permit 14134 ^65000:4_0:235_0:212$ ip community-list expanded c1 permit 14135 ^65000:4_0:235_0:213$ ip community-list expanded c1 permit 14136 ^65000:4_0:235_0:214$ ip community-list expanded c1 permit 14137 ^65000:4_0:235_0:215$ ip community-list expanded c1 permit 14138 ^65000:4_0:235_0:216$ ip community-list expanded c1 permit 14139 ^65000:4_0:235_0:217$ ip community-list expanded c1 permit 14140 ^65000:4_0:235_0:218$ ip community-list expanded c1 permit 14141 ^65000:4_0:235_0:219$ ip community-list expanded c1 permit 14142 ^65000:4_0:235_0:220$ ip community-list expanded c1 permit 14143 ^65000:4_0:235_0:221$ ip community-list expanded c1 permit 14144 ^65000:4_0:235_0:222$ ip community-list expanded c1 permit 14145 ^65000:4_0:235_0:223$ ip community-list expanded c1 permit 14146 ^65000:4_0:235_0:224$ ip community-list expanded c1 permit 14147 ^65000:4_0:235_0:225$ ip community-list expanded c1 permit 14148 ^65000:4_0:235_0:226$ ip community-list expanded c1 permit 14149 ^65000:4_0:235_0:227$ ip community-list expanded c1 permit 14150 ^65000:4_0:235_0:228$ ip community-list expanded c1 permit 14151 ^65000:4_0:235_0:229$ ip community-list expanded c1 permit 14152 ^65000:4_0:235_0:230$ ip community-list expanded c1 permit 14153 ^65000:4_0:235_0:231$ ip community-list expanded c1 permit 14154 ^65000:4_0:235_0:232$ ip community-list expanded c1 permit 14155 ^65000:4_0:235_0:233$ ip community-list expanded c1 permit 14156 ^65000:3_0:235_0:234$ ip community-list expanded c1 permit 14157 ^65000:4_0:235_0:234$ ip community-list expanded c1 permit 14158 ^65000:4_0:235_0:235$ ip community-list expanded c1 permit 14159 ^65000:4_0:236_0:119$ ip community-list expanded c1 permit 14160 ^65000:4_0:236_0:120$ ip community-list expanded c1 permit 14161 ^65000:4_0:236_0:121$ ip community-list expanded c1 permit 14162 ^65000:4_0:236_0:122$ ip community-list expanded c1 permit 14163 ^65000:4_0:236_0:123$ ip community-list expanded c1 permit 14164 ^65000:4_0:236_0:124$ ip community-list expanded c1 permit 14165 ^65000:4_0:236_0:125$ ip community-list expanded c1 permit 14166 ^65000:4_0:236_0:126$ ip community-list expanded c1 permit 14167 ^65000:4_0:236_0:127$ ip community-list expanded c1 permit 14168 ^65000:4_0:236_0:128$ ip community-list expanded c1 permit 14169 ^65000:4_0:236_0:129$ ip community-list expanded c1 permit 14170 ^65000:4_0:236_0:130$ ip community-list expanded c1 permit 14171 ^65000:4_0:236_0:131$ ip community-list expanded c1 permit 14172 ^65000:4_0:236_0:132$ ip community-list expanded c1 permit 14173 ^65000:4_0:236_0:133$ ip community-list expanded c1 permit 14174 ^65000:4_0:236_0:134$ ip community-list expanded c1 permit 14175 ^65000:4_0:236_0:135$ ip community-list expanded c1 permit 14176 ^65000:4_0:236_0:136$ ip community-list expanded c1 permit 14177 ^65000:4_0:236_0:137$ ip community-list expanded c1 permit 14178 ^65000:4_0:236_0:138$ ip community-list expanded c1 permit 14179 ^65000:4_0:236_0:139$ ip community-list expanded c1 permit 14180 ^65000:4_0:236_0:140$ ip community-list expanded c1 permit 14181 ^65000:4_0:236_0:141$ ip community-list expanded c1 permit 14182 ^65000:4_0:236_0:142$ ip community-list expanded c1 permit 14183 ^65000:4_0:236_0:143$ ip community-list expanded c1 permit 14184 ^65000:4_0:236_0:144$ ip community-list expanded c1 permit 14185 ^65000:4_0:236_0:145$ ip community-list expanded c1 permit 14186 ^65000:4_0:236_0:146$ ip community-list expanded c1 permit 14187 ^65000:4_0:236_0:147$ ip community-list expanded c1 permit 14188 ^65000:4_0:236_0:148$ ip community-list expanded c1 permit 14189 ^65000:4_0:236_0:149$ ip community-list expanded c1 permit 14190 ^65000:4_0:236_0:150$ ip community-list expanded c1 permit 14191 ^65000:4_0:236_0:151$ ip community-list expanded c1 permit 14192 ^65000:4_0:236_0:152$ ip community-list expanded c1 permit 14193 ^65000:4_0:236_0:153$ ip community-list expanded c1 permit 14194 ^65000:4_0:236_0:154$ ip community-list expanded c1 permit 14195 ^65000:4_0:236_0:155$ ip community-list expanded c1 permit 14196 ^65000:4_0:236_0:156$ ip community-list expanded c1 permit 14197 ^65000:4_0:236_0:157$ ip community-list expanded c1 permit 14198 ^65000:4_0:236_0:158$ ip community-list expanded c1 permit 14199 ^65000:4_0:236_0:159$ ip community-list expanded c1 permit 14200 ^65000:4_0:236_0:160$ ip community-list expanded c1 permit 14201 ^65000:4_0:236_0:161$ ip community-list expanded c1 permit 14202 ^65000:4_0:236_0:162$ ip community-list expanded c1 permit 14203 ^65000:4_0:236_0:163$ ip community-list expanded c1 permit 14204 ^65000:4_0:236_0:164$ ip community-list expanded c1 permit 14205 ^65000:4_0:236_0:165$ ip community-list expanded c1 permit 14206 ^65000:4_0:236_0:166$ ip community-list expanded c1 permit 14207 ^65000:4_0:236_0:167$ ip community-list expanded c1 permit 14208 ^65000:4_0:236_0:168$ ip community-list expanded c1 permit 14209 ^65000:4_0:236_0:169$ ip community-list expanded c1 permit 14210 ^65000:4_0:236_0:170$ ip community-list expanded c1 permit 14211 ^65000:4_0:236_0:171$ ip community-list expanded c1 permit 14212 ^65000:4_0:236_0:172$ ip community-list expanded c1 permit 14213 ^65000:4_0:236_0:173$ ip community-list expanded c1 permit 14214 ^65000:4_0:236_0:174$ ip community-list expanded c1 permit 14215 ^65000:4_0:236_0:175$ ip community-list expanded c1 permit 14216 ^65000:4_0:236_0:176$ ip community-list expanded c1 permit 14217 ^65000:4_0:236_0:177$ ip community-list expanded c1 permit 14218 ^65000:4_0:236_0:178$ ip community-list expanded c1 permit 14219 ^65000:4_0:236_0:179$ ip community-list expanded c1 permit 14220 ^65000:4_0:236_0:180$ ip community-list expanded c1 permit 14221 ^65000:4_0:236_0:181$ ip community-list expanded c1 permit 14222 ^65000:4_0:236_0:182$ ip community-list expanded c1 permit 14223 ^65000:4_0:236_0:183$ ip community-list expanded c1 permit 14224 ^65000:4_0:236_0:184$ ip community-list expanded c1 permit 14225 ^65000:4_0:236_0:185$ ip community-list expanded c1 permit 14226 ^65000:4_0:236_0:186$ ip community-list expanded c1 permit 14227 ^65000:4_0:236_0:187$ ip community-list expanded c1 permit 14228 ^65000:4_0:236_0:188$ ip community-list expanded c1 permit 14229 ^65000:4_0:236_0:189$ ip community-list expanded c1 permit 14230 ^65000:4_0:236_0:190$ ip community-list expanded c1 permit 14231 ^65000:4_0:236_0:191$ ip community-list expanded c1 permit 14232 ^65000:4_0:236_0:192$ ip community-list expanded c1 permit 14233 ^65000:4_0:236_0:193$ ip community-list expanded c1 permit 14234 ^65000:4_0:236_0:194$ ip community-list expanded c1 permit 14235 ^65000:4_0:236_0:195$ ip community-list expanded c1 permit 14236 ^65000:4_0:236_0:196$ ip community-list expanded c1 permit 14237 ^65000:4_0:236_0:197$ ip community-list expanded c1 permit 14238 ^65000:4_0:236_0:198$ ip community-list expanded c1 permit 14239 ^65000:4_0:236_0:199$ ip community-list expanded c1 permit 14240 ^65000:4_0:236_0:200$ ip community-list expanded c1 permit 14241 ^65000:4_0:236_0:201$ ip community-list expanded c1 permit 14242 ^65000:4_0:236_0:202$ ip community-list expanded c1 permit 14243 ^65000:4_0:236_0:203$ ip community-list expanded c1 permit 14244 ^65000:4_0:236_0:204$ ip community-list expanded c1 permit 14245 ^65000:4_0:236_0:205$ ip community-list expanded c1 permit 14246 ^65000:4_0:236_0:206$ ip community-list expanded c1 permit 14247 ^65000:4_0:236_0:207$ ip community-list expanded c1 permit 14248 ^65000:4_0:236_0:208$ ip community-list expanded c1 permit 14249 ^65000:4_0:236_0:209$ ip community-list expanded c1 permit 14250 ^65000:4_0:236_0:210$ ip community-list expanded c1 permit 14251 ^65000:4_0:236_0:211$ ip community-list expanded c1 permit 14252 ^65000:4_0:236_0:212$ ip community-list expanded c1 permit 14253 ^65000:4_0:236_0:213$ ip community-list expanded c1 permit 14254 ^65000:4_0:236_0:214$ ip community-list expanded c1 permit 14255 ^65000:4_0:236_0:215$ ip community-list expanded c1 permit 14256 ^65000:4_0:236_0:216$ ip community-list expanded c1 permit 14257 ^65000:4_0:236_0:217$ ip community-list expanded c1 permit 14258 ^65000:4_0:236_0:218$ ip community-list expanded c1 permit 14259 ^65000:4_0:236_0:219$ ip community-list expanded c1 permit 14260 ^65000:4_0:236_0:220$ ip community-list expanded c1 permit 14261 ^65000:4_0:236_0:221$ ip community-list expanded c1 permit 14262 ^65000:4_0:236_0:222$ ip community-list expanded c1 permit 14263 ^65000:4_0:236_0:223$ ip community-list expanded c1 permit 14264 ^65000:4_0:236_0:224$ ip community-list expanded c1 permit 14265 ^65000:4_0:236_0:225$ ip community-list expanded c1 permit 14266 ^65000:4_0:236_0:226$ ip community-list expanded c1 permit 14267 ^65000:4_0:236_0:227$ ip community-list expanded c1 permit 14268 ^65000:4_0:236_0:228$ ip community-list expanded c1 permit 14269 ^65000:4_0:236_0:229$ ip community-list expanded c1 permit 14270 ^65000:4_0:236_0:230$ ip community-list expanded c1 permit 14271 ^65000:4_0:236_0:231$ ip community-list expanded c1 permit 14272 ^65000:4_0:236_0:232$ ip community-list expanded c1 permit 14273 ^65000:4_0:236_0:233$ ip community-list expanded c1 permit 14274 ^65000:4_0:236_0:234$ ip community-list expanded c1 permit 14275 ^65000:3_0:236_0:235$ ip community-list expanded c1 permit 14276 ^65000:4_0:236_0:235$ ip community-list expanded c1 permit 14277 ^65000:4_0:236_0:236$ ip community-list expanded c1 permit 14278 ^65000:4_0:237_0:119$ ip community-list expanded c1 permit 14279 ^65000:4_0:237_0:120$ ip community-list expanded c1 permit 14280 ^65000:4_0:237_0:121$ ip community-list expanded c1 permit 14281 ^65000:4_0:237_0:122$ ip community-list expanded c1 permit 14282 ^65000:4_0:237_0:123$ ip community-list expanded c1 permit 14283 ^65000:4_0:237_0:124$ ip community-list expanded c1 permit 14284 ^65000:4_0:237_0:125$ ip community-list expanded c1 permit 14285 ^65000:4_0:237_0:126$ ip community-list expanded c1 permit 14286 ^65000:4_0:237_0:127$ ip community-list expanded c1 permit 14287 ^65000:4_0:237_0:128$ ip community-list expanded c1 permit 14288 ^65000:4_0:237_0:129$ ip community-list expanded c1 permit 14289 ^65000:4_0:237_0:130$ ip community-list expanded c1 permit 14290 ^65000:4_0:237_0:131$ ip community-list expanded c1 permit 14291 ^65000:4_0:237_0:132$ ip community-list expanded c1 permit 14292 ^65000:4_0:237_0:133$ ip community-list expanded c1 permit 14293 ^65000:4_0:237_0:134$ ip community-list expanded c1 permit 14294 ^65000:4_0:237_0:135$ ip community-list expanded c1 permit 14295 ^65000:4_0:237_0:136$ ip community-list expanded c1 permit 14296 ^65000:4_0:237_0:137$ ip community-list expanded c1 permit 14297 ^65000:4_0:237_0:138$ ip community-list expanded c1 permit 14298 ^65000:4_0:237_0:139$ ip community-list expanded c1 permit 14299 ^65000:4_0:237_0:140$ ip community-list expanded c1 permit 14300 ^65000:4_0:237_0:141$ ip community-list expanded c1 permit 14301 ^65000:4_0:237_0:142$ ip community-list expanded c1 permit 14302 ^65000:4_0:237_0:143$ ip community-list expanded c1 permit 14303 ^65000:4_0:237_0:144$ ip community-list expanded c1 permit 14304 ^65000:4_0:237_0:145$ ip community-list expanded c1 permit 14305 ^65000:4_0:237_0:146$ ip community-list expanded c1 permit 14306 ^65000:4_0:237_0:147$ ip community-list expanded c1 permit 14307 ^65000:4_0:237_0:148$ ip community-list expanded c1 permit 14308 ^65000:4_0:237_0:149$ ip community-list expanded c1 permit 14309 ^65000:4_0:237_0:150$ ip community-list expanded c1 permit 14310 ^65000:4_0:237_0:151$ ip community-list expanded c1 permit 14311 ^65000:4_0:237_0:152$ ip community-list expanded c1 permit 14312 ^65000:4_0:237_0:153$ ip community-list expanded c1 permit 14313 ^65000:4_0:237_0:154$ ip community-list expanded c1 permit 14314 ^65000:4_0:237_0:155$ ip community-list expanded c1 permit 14315 ^65000:4_0:237_0:156$ ip community-list expanded c1 permit 14316 ^65000:4_0:237_0:157$ ip community-list expanded c1 permit 14317 ^65000:4_0:237_0:158$ ip community-list expanded c1 permit 14318 ^65000:4_0:237_0:159$ ip community-list expanded c1 permit 14319 ^65000:4_0:237_0:160$ ip community-list expanded c1 permit 14320 ^65000:4_0:237_0:161$ ip community-list expanded c1 permit 14321 ^65000:4_0:237_0:162$ ip community-list expanded c1 permit 14322 ^65000:4_0:237_0:163$ ip community-list expanded c1 permit 14323 ^65000:4_0:237_0:164$ ip community-list expanded c1 permit 14324 ^65000:4_0:237_0:165$ ip community-list expanded c1 permit 14325 ^65000:4_0:237_0:166$ ip community-list expanded c1 permit 14326 ^65000:4_0:237_0:167$ ip community-list expanded c1 permit 14327 ^65000:4_0:237_0:168$ ip community-list expanded c1 permit 14328 ^65000:4_0:237_0:169$ ip community-list expanded c1 permit 14329 ^65000:4_0:237_0:170$ ip community-list expanded c1 permit 14330 ^65000:4_0:237_0:171$ ip community-list expanded c1 permit 14331 ^65000:4_0:237_0:172$ ip community-list expanded c1 permit 14332 ^65000:4_0:237_0:173$ ip community-list expanded c1 permit 14333 ^65000:4_0:237_0:174$ ip community-list expanded c1 permit 14334 ^65000:4_0:237_0:175$ ip community-list expanded c1 permit 14335 ^65000:4_0:237_0:176$ ip community-list expanded c1 permit 14336 ^65000:4_0:237_0:177$ ip community-list expanded c1 permit 14337 ^65000:4_0:237_0:178$ ip community-list expanded c1 permit 14338 ^65000:4_0:237_0:179$ ip community-list expanded c1 permit 14339 ^65000:4_0:237_0:180$ ip community-list expanded c1 permit 14340 ^65000:4_0:237_0:181$ ip community-list expanded c1 permit 14341 ^65000:4_0:237_0:182$ ip community-list expanded c1 permit 14342 ^65000:4_0:237_0:183$ ip community-list expanded c1 permit 14343 ^65000:4_0:237_0:184$ ip community-list expanded c1 permit 14344 ^65000:4_0:237_0:185$ ip community-list expanded c1 permit 14345 ^65000:4_0:237_0:186$ ip community-list expanded c1 permit 14346 ^65000:4_0:237_0:187$ ip community-list expanded c1 permit 14347 ^65000:4_0:237_0:188$ ip community-list expanded c1 permit 14348 ^65000:4_0:237_0:189$ ip community-list expanded c1 permit 14349 ^65000:4_0:237_0:190$ ip community-list expanded c1 permit 14350 ^65000:4_0:237_0:191$ ip community-list expanded c1 permit 14351 ^65000:4_0:237_0:192$ ip community-list expanded c1 permit 14352 ^65000:4_0:237_0:193$ ip community-list expanded c1 permit 14353 ^65000:4_0:237_0:194$ ip community-list expanded c1 permit 14354 ^65000:4_0:237_0:195$ ip community-list expanded c1 permit 14355 ^65000:4_0:237_0:196$ ip community-list expanded c1 permit 14356 ^65000:4_0:237_0:197$ ip community-list expanded c1 permit 14357 ^65000:4_0:237_0:198$ ip community-list expanded c1 permit 14358 ^65000:4_0:237_0:199$ ip community-list expanded c1 permit 14359 ^65000:4_0:237_0:200$ ip community-list expanded c1 permit 14360 ^65000:4_0:237_0:201$ ip community-list expanded c1 permit 14361 ^65000:4_0:237_0:202$ ip community-list expanded c1 permit 14362 ^65000:4_0:237_0:203$ ip community-list expanded c1 permit 14363 ^65000:4_0:237_0:204$ ip community-list expanded c1 permit 14364 ^65000:4_0:237_0:205$ ip community-list expanded c1 permit 14365 ^65000:4_0:237_0:206$ ip community-list expanded c1 permit 14366 ^65000:4_0:237_0:207$ ip community-list expanded c1 permit 14367 ^65000:4_0:237_0:208$ ip community-list expanded c1 permit 14368 ^65000:4_0:237_0:209$ ip community-list expanded c1 permit 14369 ^65000:4_0:237_0:210$ ip community-list expanded c1 permit 14370 ^65000:4_0:237_0:211$ ip community-list expanded c1 permit 14371 ^65000:4_0:237_0:212$ ip community-list expanded c1 permit 14372 ^65000:4_0:237_0:213$ ip community-list expanded c1 permit 14373 ^65000:4_0:237_0:214$ ip community-list expanded c1 permit 14374 ^65000:4_0:237_0:215$ ip community-list expanded c1 permit 14375 ^65000:4_0:237_0:216$ ip community-list expanded c1 permit 14376 ^65000:4_0:237_0:217$ ip community-list expanded c1 permit 14377 ^65000:4_0:237_0:218$ ip community-list expanded c1 permit 14378 ^65000:4_0:237_0:219$ ip community-list expanded c1 permit 14379 ^65000:4_0:237_0:220$ ip community-list expanded c1 permit 14380 ^65000:4_0:237_0:221$ ip community-list expanded c1 permit 14381 ^65000:4_0:237_0:222$ ip community-list expanded c1 permit 14382 ^65000:4_0:237_0:223$ ip community-list expanded c1 permit 14383 ^65000:4_0:237_0:224$ ip community-list expanded c1 permit 14384 ^65000:4_0:237_0:225$ ip community-list expanded c1 permit 14385 ^65000:4_0:237_0:226$ ip community-list expanded c1 permit 14386 ^65000:4_0:237_0:227$ ip community-list expanded c1 permit 14387 ^65000:4_0:237_0:228$ ip community-list expanded c1 permit 14388 ^65000:4_0:237_0:229$ ip community-list expanded c1 permit 14389 ^65000:4_0:237_0:230$ ip community-list expanded c1 permit 14390 ^65000:4_0:237_0:231$ ip community-list expanded c1 permit 14391 ^65000:4_0:237_0:232$ ip community-list expanded c1 permit 14392 ^65000:4_0:237_0:233$ ip community-list expanded c1 permit 14393 ^65000:4_0:237_0:234$ ip community-list expanded c1 permit 14394 ^65000:4_0:237_0:235$ ip community-list expanded c1 permit 14395 ^65000:3_0:237_0:236$ ip community-list expanded c1 permit 14396 ^65000:4_0:237_0:236$ ip community-list expanded c1 permit 14397 ^65000:4_0:237_0:237$ ip community-list expanded c1 permit 14398 ^65000:4_0:238_0:120$ ip community-list expanded c1 permit 14399 ^65000:4_0:238_0:121$ ip community-list expanded c1 permit 14400 ^65000:4_0:238_0:122$ ip community-list expanded c1 permit 14401 ^65000:4_0:238_0:123$ ip community-list expanded c1 permit 14402 ^65000:4_0:238_0:124$ ip community-list expanded c1 permit 14403 ^65000:4_0:238_0:125$ ip community-list expanded c1 permit 14404 ^65000:4_0:238_0:126$ ip community-list expanded c1 permit 14405 ^65000:4_0:238_0:127$ ip community-list expanded c1 permit 14406 ^65000:4_0:238_0:128$ ip community-list expanded c1 permit 14407 ^65000:4_0:238_0:129$ ip community-list expanded c1 permit 14408 ^65000:4_0:238_0:130$ ip community-list expanded c1 permit 14409 ^65000:4_0:238_0:131$ ip community-list expanded c1 permit 14410 ^65000:4_0:238_0:132$ ip community-list expanded c1 permit 14411 ^65000:4_0:238_0:133$ ip community-list expanded c1 permit 14412 ^65000:4_0:238_0:134$ ip community-list expanded c1 permit 14413 ^65000:4_0:238_0:135$ ip community-list expanded c1 permit 14414 ^65000:4_0:238_0:136$ ip community-list expanded c1 permit 14415 ^65000:4_0:238_0:137$ ip community-list expanded c1 permit 14416 ^65000:4_0:238_0:138$ ip community-list expanded c1 permit 14417 ^65000:4_0:238_0:139$ ip community-list expanded c1 permit 14418 ^65000:4_0:238_0:140$ ip community-list expanded c1 permit 14419 ^65000:4_0:238_0:141$ ip community-list expanded c1 permit 14420 ^65000:4_0:238_0:142$ ip community-list expanded c1 permit 14421 ^65000:4_0:238_0:143$ ip community-list expanded c1 permit 14422 ^65000:4_0:238_0:144$ ip community-list expanded c1 permit 14423 ^65000:4_0:238_0:145$ ip community-list expanded c1 permit 14424 ^65000:4_0:238_0:146$ ip community-list expanded c1 permit 14425 ^65000:4_0:238_0:147$ ip community-list expanded c1 permit 14426 ^65000:4_0:238_0:148$ ip community-list expanded c1 permit 14427 ^65000:4_0:238_0:149$ ip community-list expanded c1 permit 14428 ^65000:4_0:238_0:150$ ip community-list expanded c1 permit 14429 ^65000:4_0:238_0:151$ ip community-list expanded c1 permit 14430 ^65000:4_0:238_0:152$ ip community-list expanded c1 permit 14431 ^65000:4_0:238_0:153$ ip community-list expanded c1 permit 14432 ^65000:4_0:238_0:154$ ip community-list expanded c1 permit 14433 ^65000:4_0:238_0:155$ ip community-list expanded c1 permit 14434 ^65000:4_0:238_0:156$ ip community-list expanded c1 permit 14435 ^65000:4_0:238_0:157$ ip community-list expanded c1 permit 14436 ^65000:4_0:238_0:158$ ip community-list expanded c1 permit 14437 ^65000:4_0:238_0:159$ ip community-list expanded c1 permit 14438 ^65000:4_0:238_0:160$ ip community-list expanded c1 permit 14439 ^65000:4_0:238_0:161$ ip community-list expanded c1 permit 14440 ^65000:4_0:238_0:162$ ip community-list expanded c1 permit 14441 ^65000:4_0:238_0:163$ ip community-list expanded c1 permit 14442 ^65000:4_0:238_0:164$ ip community-list expanded c1 permit 14443 ^65000:4_0:238_0:165$ ip community-list expanded c1 permit 14444 ^65000:4_0:238_0:166$ ip community-list expanded c1 permit 14445 ^65000:4_0:238_0:167$ ip community-list expanded c1 permit 14446 ^65000:4_0:238_0:168$ ip community-list expanded c1 permit 14447 ^65000:4_0:238_0:169$ ip community-list expanded c1 permit 14448 ^65000:4_0:238_0:170$ ip community-list expanded c1 permit 14449 ^65000:4_0:238_0:171$ ip community-list expanded c1 permit 14450 ^65000:4_0:238_0:172$ ip community-list expanded c1 permit 14451 ^65000:4_0:238_0:173$ ip community-list expanded c1 permit 14452 ^65000:4_0:238_0:174$ ip community-list expanded c1 permit 14453 ^65000:4_0:238_0:175$ ip community-list expanded c1 permit 14454 ^65000:4_0:238_0:176$ ip community-list expanded c1 permit 14455 ^65000:4_0:238_0:177$ ip community-list expanded c1 permit 14456 ^65000:4_0:238_0:178$ ip community-list expanded c1 permit 14457 ^65000:4_0:238_0:179$ ip community-list expanded c1 permit 14458 ^65000:4_0:238_0:180$ ip community-list expanded c1 permit 14459 ^65000:4_0:238_0:181$ ip community-list expanded c1 permit 14460 ^65000:4_0:238_0:182$ ip community-list expanded c1 permit 14461 ^65000:4_0:238_0:183$ ip community-list expanded c1 permit 14462 ^65000:4_0:238_0:184$ ip community-list expanded c1 permit 14463 ^65000:4_0:238_0:185$ ip community-list expanded c1 permit 14464 ^65000:4_0:238_0:186$ ip community-list expanded c1 permit 14465 ^65000:4_0:238_0:187$ ip community-list expanded c1 permit 14466 ^65000:4_0:238_0:188$ ip community-list expanded c1 permit 14467 ^65000:4_0:238_0:189$ ip community-list expanded c1 permit 14468 ^65000:4_0:238_0:190$ ip community-list expanded c1 permit 14469 ^65000:4_0:238_0:191$ ip community-list expanded c1 permit 14470 ^65000:4_0:238_0:192$ ip community-list expanded c1 permit 14471 ^65000:4_0:238_0:193$ ip community-list expanded c1 permit 14472 ^65000:4_0:238_0:194$ ip community-list expanded c1 permit 14473 ^65000:4_0:238_0:195$ ip community-list expanded c1 permit 14474 ^65000:4_0:238_0:196$ ip community-list expanded c1 permit 14475 ^65000:4_0:238_0:197$ ip community-list expanded c1 permit 14476 ^65000:4_0:238_0:198$ ip community-list expanded c1 permit 14477 ^65000:4_0:238_0:199$ ip community-list expanded c1 permit 14478 ^65000:4_0:238_0:200$ ip community-list expanded c1 permit 14479 ^65000:4_0:238_0:201$ ip community-list expanded c1 permit 14480 ^65000:4_0:238_0:202$ ip community-list expanded c1 permit 14481 ^65000:4_0:238_0:203$ ip community-list expanded c1 permit 14482 ^65000:4_0:238_0:204$ ip community-list expanded c1 permit 14483 ^65000:4_0:238_0:205$ ip community-list expanded c1 permit 14484 ^65000:4_0:238_0:206$ ip community-list expanded c1 permit 14485 ^65000:4_0:238_0:207$ ip community-list expanded c1 permit 14486 ^65000:4_0:238_0:208$ ip community-list expanded c1 permit 14487 ^65000:4_0:238_0:209$ ip community-list expanded c1 permit 14488 ^65000:4_0:238_0:210$ ip community-list expanded c1 permit 14489 ^65000:4_0:238_0:211$ ip community-list expanded c1 permit 14490 ^65000:4_0:238_0:212$ ip community-list expanded c1 permit 14491 ^65000:4_0:238_0:213$ ip community-list expanded c1 permit 14492 ^65000:4_0:238_0:214$ ip community-list expanded c1 permit 14493 ^65000:4_0:238_0:215$ ip community-list expanded c1 permit 14494 ^65000:4_0:238_0:216$ ip community-list expanded c1 permit 14495 ^65000:4_0:238_0:217$ ip community-list expanded c1 permit 14496 ^65000:4_0:238_0:218$ ip community-list expanded c1 permit 14497 ^65000:4_0:238_0:219$ ip community-list expanded c1 permit 14498 ^65000:4_0:238_0:220$ ip community-list expanded c1 permit 14499 ^65000:4_0:238_0:221$ ip community-list expanded c1 permit 14500 ^65000:4_0:238_0:222$ ip community-list expanded c1 permit 14501 ^65000:4_0:238_0:223$ ip community-list expanded c1 permit 14502 ^65000:4_0:238_0:224$ ip community-list expanded c1 permit 14503 ^65000:4_0:238_0:225$ ip community-list expanded c1 permit 14504 ^65000:4_0:238_0:226$ ip community-list expanded c1 permit 14505 ^65000:4_0:238_0:227$ ip community-list expanded c1 permit 14506 ^65000:4_0:238_0:228$ ip community-list expanded c1 permit 14507 ^65000:4_0:238_0:229$ ip community-list expanded c1 permit 14508 ^65000:4_0:238_0:230$ ip community-list expanded c1 permit 14509 ^65000:4_0:238_0:231$ ip community-list expanded c1 permit 14510 ^65000:4_0:238_0:232$ ip community-list expanded c1 permit 14511 ^65000:4_0:238_0:233$ ip community-list expanded c1 permit 14512 ^65000:4_0:238_0:234$ ip community-list expanded c1 permit 14513 ^65000:4_0:238_0:235$ ip community-list expanded c1 permit 14514 ^65000:4_0:238_0:236$ ip community-list expanded c1 permit 14515 ^65000:3_0:238_0:237$ ip community-list expanded c1 permit 14516 ^65000:4_0:238_0:237$ ip community-list expanded c1 permit 14517 ^65000:4_0:238_0:238$ ip community-list expanded c1 permit 14518 ^65000:4_0:239_0:120$ ip community-list expanded c1 permit 14519 ^65000:4_0:239_0:121$ ip community-list expanded c1 permit 14520 ^65000:4_0:239_0:122$ ip community-list expanded c1 permit 14521 ^65000:4_0:239_0:123$ ip community-list expanded c1 permit 14522 ^65000:4_0:239_0:124$ ip community-list expanded c1 permit 14523 ^65000:4_0:239_0:125$ ip community-list expanded c1 permit 14524 ^65000:4_0:239_0:126$ ip community-list expanded c1 permit 14525 ^65000:4_0:239_0:127$ ip community-list expanded c1 permit 14526 ^65000:4_0:239_0:128$ ip community-list expanded c1 permit 14527 ^65000:4_0:239_0:129$ ip community-list expanded c1 permit 14528 ^65000:4_0:239_0:130$ ip community-list expanded c1 permit 14529 ^65000:4_0:239_0:131$ ip community-list expanded c1 permit 14530 ^65000:4_0:239_0:132$ ip community-list expanded c1 permit 14531 ^65000:4_0:239_0:133$ ip community-list expanded c1 permit 14532 ^65000:4_0:239_0:134$ ip community-list expanded c1 permit 14533 ^65000:4_0:239_0:135$ ip community-list expanded c1 permit 14534 ^65000:4_0:239_0:136$ ip community-list expanded c1 permit 14535 ^65000:4_0:239_0:137$ ip community-list expanded c1 permit 14536 ^65000:4_0:239_0:138$ ip community-list expanded c1 permit 14537 ^65000:4_0:239_0:139$ ip community-list expanded c1 permit 14538 ^65000:4_0:239_0:140$ ip community-list expanded c1 permit 14539 ^65000:4_0:239_0:141$ ip community-list expanded c1 permit 14540 ^65000:4_0:239_0:142$ ip community-list expanded c1 permit 14541 ^65000:4_0:239_0:143$ ip community-list expanded c1 permit 14542 ^65000:4_0:239_0:144$ ip community-list expanded c1 permit 14543 ^65000:4_0:239_0:145$ ip community-list expanded c1 permit 14544 ^65000:4_0:239_0:146$ ip community-list expanded c1 permit 14545 ^65000:4_0:239_0:147$ ip community-list expanded c1 permit 14546 ^65000:4_0:239_0:148$ ip community-list expanded c1 permit 14547 ^65000:4_0:239_0:149$ ip community-list expanded c1 permit 14548 ^65000:4_0:239_0:150$ ip community-list expanded c1 permit 14549 ^65000:4_0:239_0:151$ ip community-list expanded c1 permit 14550 ^65000:4_0:239_0:152$ ip community-list expanded c1 permit 14551 ^65000:4_0:239_0:153$ ip community-list expanded c1 permit 14552 ^65000:4_0:239_0:154$ ip community-list expanded c1 permit 14553 ^65000:4_0:239_0:155$ ip community-list expanded c1 permit 14554 ^65000:4_0:239_0:156$ ip community-list expanded c1 permit 14555 ^65000:4_0:239_0:157$ ip community-list expanded c1 permit 14556 ^65000:4_0:239_0:158$ ip community-list expanded c1 permit 14557 ^65000:4_0:239_0:159$ ip community-list expanded c1 permit 14558 ^65000:4_0:239_0:160$ ip community-list expanded c1 permit 14559 ^65000:4_0:239_0:161$ ip community-list expanded c1 permit 14560 ^65000:4_0:239_0:162$ ip community-list expanded c1 permit 14561 ^65000:4_0:239_0:163$ ip community-list expanded c1 permit 14562 ^65000:4_0:239_0:164$ ip community-list expanded c1 permit 14563 ^65000:4_0:239_0:165$ ip community-list expanded c1 permit 14564 ^65000:4_0:239_0:166$ ip community-list expanded c1 permit 14565 ^65000:4_0:239_0:167$ ip community-list expanded c1 permit 14566 ^65000:4_0:239_0:168$ ip community-list expanded c1 permit 14567 ^65000:4_0:239_0:169$ ip community-list expanded c1 permit 14568 ^65000:4_0:239_0:170$ ip community-list expanded c1 permit 14569 ^65000:4_0:239_0:171$ ip community-list expanded c1 permit 14570 ^65000:4_0:239_0:172$ ip community-list expanded c1 permit 14571 ^65000:4_0:239_0:173$ ip community-list expanded c1 permit 14572 ^65000:4_0:239_0:174$ ip community-list expanded c1 permit 14573 ^65000:4_0:239_0:175$ ip community-list expanded c1 permit 14574 ^65000:4_0:239_0:176$ ip community-list expanded c1 permit 14575 ^65000:4_0:239_0:177$ ip community-list expanded c1 permit 14576 ^65000:4_0:239_0:178$ ip community-list expanded c1 permit 14577 ^65000:4_0:239_0:179$ ip community-list expanded c1 permit 14578 ^65000:4_0:239_0:180$ ip community-list expanded c1 permit 14579 ^65000:4_0:239_0:181$ ip community-list expanded c1 permit 14580 ^65000:4_0:239_0:182$ ip community-list expanded c1 permit 14581 ^65000:4_0:239_0:183$ ip community-list expanded c1 permit 14582 ^65000:4_0:239_0:184$ ip community-list expanded c1 permit 14583 ^65000:4_0:239_0:185$ ip community-list expanded c1 permit 14584 ^65000:4_0:239_0:186$ ip community-list expanded c1 permit 14585 ^65000:4_0:239_0:187$ ip community-list expanded c1 permit 14586 ^65000:4_0:239_0:188$ ip community-list expanded c1 permit 14587 ^65000:4_0:239_0:189$ ip community-list expanded c1 permit 14588 ^65000:4_0:239_0:190$ ip community-list expanded c1 permit 14589 ^65000:4_0:239_0:191$ ip community-list expanded c1 permit 14590 ^65000:4_0:239_0:192$ ip community-list expanded c1 permit 14591 ^65000:4_0:239_0:193$ ip community-list expanded c1 permit 14592 ^65000:4_0:239_0:194$ ip community-list expanded c1 permit 14593 ^65000:4_0:239_0:195$ ip community-list expanded c1 permit 14594 ^65000:4_0:239_0:196$ ip community-list expanded c1 permit 14595 ^65000:4_0:239_0:197$ ip community-list expanded c1 permit 14596 ^65000:4_0:239_0:198$ ip community-list expanded c1 permit 14597 ^65000:4_0:239_0:199$ ip community-list expanded c1 permit 14598 ^65000:4_0:239_0:200$ ip community-list expanded c1 permit 14599 ^65000:4_0:239_0:201$ ip community-list expanded c1 permit 14600 ^65000:4_0:239_0:202$ ip community-list expanded c1 permit 14601 ^65000:4_0:239_0:203$ ip community-list expanded c1 permit 14602 ^65000:4_0:239_0:204$ ip community-list expanded c1 permit 14603 ^65000:4_0:239_0:205$ ip community-list expanded c1 permit 14604 ^65000:4_0:239_0:206$ ip community-list expanded c1 permit 14605 ^65000:4_0:239_0:207$ ip community-list expanded c1 permit 14606 ^65000:4_0:239_0:208$ ip community-list expanded c1 permit 14607 ^65000:4_0:239_0:209$ ip community-list expanded c1 permit 14608 ^65000:4_0:239_0:210$ ip community-list expanded c1 permit 14609 ^65000:4_0:239_0:211$ ip community-list expanded c1 permit 14610 ^65000:4_0:239_0:212$ ip community-list expanded c1 permit 14611 ^65000:4_0:239_0:213$ ip community-list expanded c1 permit 14612 ^65000:4_0:239_0:214$ ip community-list expanded c1 permit 14613 ^65000:4_0:239_0:215$ ip community-list expanded c1 permit 14614 ^65000:4_0:239_0:216$ ip community-list expanded c1 permit 14615 ^65000:4_0:239_0:217$ ip community-list expanded c1 permit 14616 ^65000:4_0:239_0:218$ ip community-list expanded c1 permit 14617 ^65000:4_0:239_0:219$ ip community-list expanded c1 permit 14618 ^65000:4_0:239_0:220$ ip community-list expanded c1 permit 14619 ^65000:4_0:239_0:221$ ip community-list expanded c1 permit 14620 ^65000:4_0:239_0:222$ ip community-list expanded c1 permit 14621 ^65000:4_0:239_0:223$ ip community-list expanded c1 permit 14622 ^65000:4_0:239_0:224$ ip community-list expanded c1 permit 14623 ^65000:4_0:239_0:225$ ip community-list expanded c1 permit 14624 ^65000:4_0:239_0:226$ ip community-list expanded c1 permit 14625 ^65000:4_0:239_0:227$ ip community-list expanded c1 permit 14626 ^65000:4_0:239_0:228$ ip community-list expanded c1 permit 14627 ^65000:4_0:239_0:229$ ip community-list expanded c1 permit 14628 ^65000:4_0:239_0:230$ ip community-list expanded c1 permit 14629 ^65000:4_0:239_0:231$ ip community-list expanded c1 permit 14630 ^65000:4_0:239_0:232$ ip community-list expanded c1 permit 14631 ^65000:4_0:239_0:233$ ip community-list expanded c1 permit 14632 ^65000:4_0:239_0:234$ ip community-list expanded c1 permit 14633 ^65000:4_0:239_0:235$ ip community-list expanded c1 permit 14634 ^65000:4_0:239_0:236$ ip community-list expanded c1 permit 14635 ^65000:4_0:239_0:237$ ip community-list expanded c1 permit 14636 ^65000:3_0:239_0:238$ ip community-list expanded c1 permit 14637 ^65000:4_0:239_0:238$ ip community-list expanded c1 permit 14638 ^65000:4_0:239_0:239$ ip community-list expanded c1 permit 14639 ^65000:4_0:240_0:121$ ip community-list expanded c1 permit 14640 ^65000:4_0:240_0:122$ ip community-list expanded c1 permit 14641 ^65000:4_0:240_0:123$ ip community-list expanded c1 permit 14642 ^65000:4_0:240_0:124$ ip community-list expanded c1 permit 14643 ^65000:4_0:240_0:125$ ip community-list expanded c1 permit 14644 ^65000:4_0:240_0:126$ ip community-list expanded c1 permit 14645 ^65000:4_0:240_0:127$ ip community-list expanded c1 permit 14646 ^65000:4_0:240_0:128$ ip community-list expanded c1 permit 14647 ^65000:4_0:240_0:129$ ip community-list expanded c1 permit 14648 ^65000:4_0:240_0:130$ ip community-list expanded c1 permit 14649 ^65000:4_0:240_0:131$ ip community-list expanded c1 permit 14650 ^65000:4_0:240_0:132$ ip community-list expanded c1 permit 14651 ^65000:4_0:240_0:133$ ip community-list expanded c1 permit 14652 ^65000:4_0:240_0:134$ ip community-list expanded c1 permit 14653 ^65000:4_0:240_0:135$ ip community-list expanded c1 permit 14654 ^65000:4_0:240_0:136$ ip community-list expanded c1 permit 14655 ^65000:4_0:240_0:137$ ip community-list expanded c1 permit 14656 ^65000:4_0:240_0:138$ ip community-list expanded c1 permit 14657 ^65000:4_0:240_0:139$ ip community-list expanded c1 permit 14658 ^65000:4_0:240_0:140$ ip community-list expanded c1 permit 14659 ^65000:4_0:240_0:141$ ip community-list expanded c1 permit 14660 ^65000:4_0:240_0:142$ ip community-list expanded c1 permit 14661 ^65000:4_0:240_0:143$ ip community-list expanded c1 permit 14662 ^65000:4_0:240_0:144$ ip community-list expanded c1 permit 14663 ^65000:4_0:240_0:145$ ip community-list expanded c1 permit 14664 ^65000:4_0:240_0:146$ ip community-list expanded c1 permit 14665 ^65000:4_0:240_0:147$ ip community-list expanded c1 permit 14666 ^65000:4_0:240_0:148$ ip community-list expanded c1 permit 14667 ^65000:4_0:240_0:149$ ip community-list expanded c1 permit 14668 ^65000:4_0:240_0:150$ ip community-list expanded c1 permit 14669 ^65000:4_0:240_0:151$ ip community-list expanded c1 permit 14670 ^65000:4_0:240_0:152$ ip community-list expanded c1 permit 14671 ^65000:4_0:240_0:153$ ip community-list expanded c1 permit 14672 ^65000:4_0:240_0:154$ ip community-list expanded c1 permit 14673 ^65000:4_0:240_0:155$ ip community-list expanded c1 permit 14674 ^65000:4_0:240_0:156$ ip community-list expanded c1 permit 14675 ^65000:4_0:240_0:157$ ip community-list expanded c1 permit 14676 ^65000:4_0:240_0:158$ ip community-list expanded c1 permit 14677 ^65000:4_0:240_0:159$ ip community-list expanded c1 permit 14678 ^65000:4_0:240_0:160$ ip community-list expanded c1 permit 14679 ^65000:4_0:240_0:161$ ip community-list expanded c1 permit 14680 ^65000:4_0:240_0:162$ ip community-list expanded c1 permit 14681 ^65000:4_0:240_0:163$ ip community-list expanded c1 permit 14682 ^65000:4_0:240_0:164$ ip community-list expanded c1 permit 14683 ^65000:4_0:240_0:165$ ip community-list expanded c1 permit 14684 ^65000:4_0:240_0:166$ ip community-list expanded c1 permit 14685 ^65000:4_0:240_0:167$ ip community-list expanded c1 permit 14686 ^65000:4_0:240_0:168$ ip community-list expanded c1 permit 14687 ^65000:4_0:240_0:169$ ip community-list expanded c1 permit 14688 ^65000:4_0:240_0:170$ ip community-list expanded c1 permit 14689 ^65000:4_0:240_0:171$ ip community-list expanded c1 permit 14690 ^65000:4_0:240_0:172$ ip community-list expanded c1 permit 14691 ^65000:4_0:240_0:173$ ip community-list expanded c1 permit 14692 ^65000:4_0:240_0:174$ ip community-list expanded c1 permit 14693 ^65000:4_0:240_0:175$ ip community-list expanded c1 permit 14694 ^65000:4_0:240_0:176$ ip community-list expanded c1 permit 14695 ^65000:4_0:240_0:177$ ip community-list expanded c1 permit 14696 ^65000:4_0:240_0:178$ ip community-list expanded c1 permit 14697 ^65000:4_0:240_0:179$ ip community-list expanded c1 permit 14698 ^65000:4_0:240_0:180$ ip community-list expanded c1 permit 14699 ^65000:4_0:240_0:181$ ip community-list expanded c1 permit 14700 ^65000:4_0:240_0:182$ ip community-list expanded c1 permit 14701 ^65000:4_0:240_0:183$ ip community-list expanded c1 permit 14702 ^65000:4_0:240_0:184$ ip community-list expanded c1 permit 14703 ^65000:4_0:240_0:185$ ip community-list expanded c1 permit 14704 ^65000:4_0:240_0:186$ ip community-list expanded c1 permit 14705 ^65000:4_0:240_0:187$ ip community-list expanded c1 permit 14706 ^65000:4_0:240_0:188$ ip community-list expanded c1 permit 14707 ^65000:4_0:240_0:189$ ip community-list expanded c1 permit 14708 ^65000:4_0:240_0:190$ ip community-list expanded c1 permit 14709 ^65000:4_0:240_0:191$ ip community-list expanded c1 permit 14710 ^65000:4_0:240_0:192$ ip community-list expanded c1 permit 14711 ^65000:4_0:240_0:193$ ip community-list expanded c1 permit 14712 ^65000:4_0:240_0:194$ ip community-list expanded c1 permit 14713 ^65000:4_0:240_0:195$ ip community-list expanded c1 permit 14714 ^65000:4_0:240_0:196$ ip community-list expanded c1 permit 14715 ^65000:4_0:240_0:197$ ip community-list expanded c1 permit 14716 ^65000:4_0:240_0:198$ ip community-list expanded c1 permit 14717 ^65000:4_0:240_0:199$ ip community-list expanded c1 permit 14718 ^65000:4_0:240_0:200$ ip community-list expanded c1 permit 14719 ^65000:4_0:240_0:201$ ip community-list expanded c1 permit 14720 ^65000:4_0:240_0:202$ ip community-list expanded c1 permit 14721 ^65000:4_0:240_0:203$ ip community-list expanded c1 permit 14722 ^65000:4_0:240_0:204$ ip community-list expanded c1 permit 14723 ^65000:4_0:240_0:205$ ip community-list expanded c1 permit 14724 ^65000:4_0:240_0:206$ ip community-list expanded c1 permit 14725 ^65000:4_0:240_0:207$ ip community-list expanded c1 permit 14726 ^65000:4_0:240_0:208$ ip community-list expanded c1 permit 14727 ^65000:4_0:240_0:209$ ip community-list expanded c1 permit 14728 ^65000:4_0:240_0:210$ ip community-list expanded c1 permit 14729 ^65000:4_0:240_0:211$ ip community-list expanded c1 permit 14730 ^65000:4_0:240_0:212$ ip community-list expanded c1 permit 14731 ^65000:4_0:240_0:213$ ip community-list expanded c1 permit 14732 ^65000:4_0:240_0:214$ ip community-list expanded c1 permit 14733 ^65000:4_0:240_0:215$ ip community-list expanded c1 permit 14734 ^65000:4_0:240_0:216$ ip community-list expanded c1 permit 14735 ^65000:4_0:240_0:217$ ip community-list expanded c1 permit 14736 ^65000:4_0:240_0:218$ ip community-list expanded c1 permit 14737 ^65000:4_0:240_0:219$ ip community-list expanded c1 permit 14738 ^65000:4_0:240_0:220$ ip community-list expanded c1 permit 14739 ^65000:4_0:240_0:221$ ip community-list expanded c1 permit 14740 ^65000:4_0:240_0:222$ ip community-list expanded c1 permit 14741 ^65000:4_0:240_0:223$ ip community-list expanded c1 permit 14742 ^65000:4_0:240_0:224$ ip community-list expanded c1 permit 14743 ^65000:4_0:240_0:225$ ip community-list expanded c1 permit 14744 ^65000:4_0:240_0:226$ ip community-list expanded c1 permit 14745 ^65000:4_0:240_0:227$ ip community-list expanded c1 permit 14746 ^65000:4_0:240_0:228$ ip community-list expanded c1 permit 14747 ^65000:4_0:240_0:229$ ip community-list expanded c1 permit 14748 ^65000:4_0:240_0:230$ ip community-list expanded c1 permit 14749 ^65000:4_0:240_0:231$ ip community-list expanded c1 permit 14750 ^65000:4_0:240_0:232$ ip community-list expanded c1 permit 14751 ^65000:4_0:240_0:233$ ip community-list expanded c1 permit 14752 ^65000:4_0:240_0:234$ ip community-list expanded c1 permit 14753 ^65000:4_0:240_0:235$ ip community-list expanded c1 permit 14754 ^65000:4_0:240_0:236$ ip community-list expanded c1 permit 14755 ^65000:4_0:240_0:237$ ip community-list expanded c1 permit 14756 ^65000:4_0:240_0:238$ ip community-list expanded c1 permit 14757 ^65000:3_0:240_0:239$ ip community-list expanded c1 permit 14758 ^65000:4_0:240_0:239$ ip community-list expanded c1 permit 14759 ^65000:4_0:240_0:240$ ip community-list expanded c1 permit 14760 ^65000:4_0:241_0:121$ ip community-list expanded c1 permit 14761 ^65000:4_0:241_0:122$ ip community-list expanded c1 permit 14762 ^65000:4_0:241_0:123$ ip community-list expanded c1 permit 14763 ^65000:4_0:241_0:124$ ip community-list expanded c1 permit 14764 ^65000:4_0:241_0:125$ ip community-list expanded c1 permit 14765 ^65000:4_0:241_0:126$ ip community-list expanded c1 permit 14766 ^65000:4_0:241_0:127$ ip community-list expanded c1 permit 14767 ^65000:4_0:241_0:128$ ip community-list expanded c1 permit 14768 ^65000:4_0:241_0:129$ ip community-list expanded c1 permit 14769 ^65000:4_0:241_0:130$ ip community-list expanded c1 permit 14770 ^65000:4_0:241_0:131$ ip community-list expanded c1 permit 14771 ^65000:4_0:241_0:132$ ip community-list expanded c1 permit 14772 ^65000:4_0:241_0:133$ ip community-list expanded c1 permit 14773 ^65000:4_0:241_0:134$ ip community-list expanded c1 permit 14774 ^65000:4_0:241_0:135$ ip community-list expanded c1 permit 14775 ^65000:4_0:241_0:136$ ip community-list expanded c1 permit 14776 ^65000:4_0:241_0:137$ ip community-list expanded c1 permit 14777 ^65000:4_0:241_0:138$ ip community-list expanded c1 permit 14778 ^65000:4_0:241_0:139$ ip community-list expanded c1 permit 14779 ^65000:4_0:241_0:140$ ip community-list expanded c1 permit 14780 ^65000:4_0:241_0:141$ ip community-list expanded c1 permit 14781 ^65000:4_0:241_0:142$ ip community-list expanded c1 permit 14782 ^65000:4_0:241_0:143$ ip community-list expanded c1 permit 14783 ^65000:4_0:241_0:144$ ip community-list expanded c1 permit 14784 ^65000:4_0:241_0:145$ ip community-list expanded c1 permit 14785 ^65000:4_0:241_0:146$ ip community-list expanded c1 permit 14786 ^65000:4_0:241_0:147$ ip community-list expanded c1 permit 14787 ^65000:4_0:241_0:148$ ip community-list expanded c1 permit 14788 ^65000:4_0:241_0:149$ ip community-list expanded c1 permit 14789 ^65000:4_0:241_0:150$ ip community-list expanded c1 permit 14790 ^65000:4_0:241_0:151$ ip community-list expanded c1 permit 14791 ^65000:4_0:241_0:152$ ip community-list expanded c1 permit 14792 ^65000:4_0:241_0:153$ ip community-list expanded c1 permit 14793 ^65000:4_0:241_0:154$ ip community-list expanded c1 permit 14794 ^65000:4_0:241_0:155$ ip community-list expanded c1 permit 14795 ^65000:4_0:241_0:156$ ip community-list expanded c1 permit 14796 ^65000:4_0:241_0:157$ ip community-list expanded c1 permit 14797 ^65000:4_0:241_0:158$ ip community-list expanded c1 permit 14798 ^65000:4_0:241_0:159$ ip community-list expanded c1 permit 14799 ^65000:4_0:241_0:160$ ip community-list expanded c1 permit 14800 ^65000:4_0:241_0:161$ ip community-list expanded c1 permit 14801 ^65000:4_0:241_0:162$ ip community-list expanded c1 permit 14802 ^65000:4_0:241_0:163$ ip community-list expanded c1 permit 14803 ^65000:4_0:241_0:164$ ip community-list expanded c1 permit 14804 ^65000:4_0:241_0:165$ ip community-list expanded c1 permit 14805 ^65000:4_0:241_0:166$ ip community-list expanded c1 permit 14806 ^65000:4_0:241_0:167$ ip community-list expanded c1 permit 14807 ^65000:4_0:241_0:168$ ip community-list expanded c1 permit 14808 ^65000:4_0:241_0:169$ ip community-list expanded c1 permit 14809 ^65000:4_0:241_0:170$ ip community-list expanded c1 permit 14810 ^65000:4_0:241_0:171$ ip community-list expanded c1 permit 14811 ^65000:4_0:241_0:172$ ip community-list expanded c1 permit 14812 ^65000:4_0:241_0:173$ ip community-list expanded c1 permit 14813 ^65000:4_0:241_0:174$ ip community-list expanded c1 permit 14814 ^65000:4_0:241_0:175$ ip community-list expanded c1 permit 14815 ^65000:4_0:241_0:176$ ip community-list expanded c1 permit 14816 ^65000:4_0:241_0:177$ ip community-list expanded c1 permit 14817 ^65000:4_0:241_0:178$ ip community-list expanded c1 permit 14818 ^65000:4_0:241_0:179$ ip community-list expanded c1 permit 14819 ^65000:4_0:241_0:180$ ip community-list expanded c1 permit 14820 ^65000:4_0:241_0:181$ ip community-list expanded c1 permit 14821 ^65000:4_0:241_0:182$ ip community-list expanded c1 permit 14822 ^65000:4_0:241_0:183$ ip community-list expanded c1 permit 14823 ^65000:4_0:241_0:184$ ip community-list expanded c1 permit 14824 ^65000:4_0:241_0:185$ ip community-list expanded c1 permit 14825 ^65000:4_0:241_0:186$ ip community-list expanded c1 permit 14826 ^65000:4_0:241_0:187$ ip community-list expanded c1 permit 14827 ^65000:4_0:241_0:188$ ip community-list expanded c1 permit 14828 ^65000:4_0:241_0:189$ ip community-list expanded c1 permit 14829 ^65000:4_0:241_0:190$ ip community-list expanded c1 permit 14830 ^65000:4_0:241_0:191$ ip community-list expanded c1 permit 14831 ^65000:4_0:241_0:192$ ip community-list expanded c1 permit 14832 ^65000:4_0:241_0:193$ ip community-list expanded c1 permit 14833 ^65000:4_0:241_0:194$ ip community-list expanded c1 permit 14834 ^65000:4_0:241_0:195$ ip community-list expanded c1 permit 14835 ^65000:4_0:241_0:196$ ip community-list expanded c1 permit 14836 ^65000:4_0:241_0:197$ ip community-list expanded c1 permit 14837 ^65000:4_0:241_0:198$ ip community-list expanded c1 permit 14838 ^65000:4_0:241_0:199$ ip community-list expanded c1 permit 14839 ^65000:4_0:241_0:200$ ip community-list expanded c1 permit 14840 ^65000:4_0:241_0:201$ ip community-list expanded c1 permit 14841 ^65000:4_0:241_0:202$ ip community-list expanded c1 permit 14842 ^65000:4_0:241_0:203$ ip community-list expanded c1 permit 14843 ^65000:4_0:241_0:204$ ip community-list expanded c1 permit 14844 ^65000:4_0:241_0:205$ ip community-list expanded c1 permit 14845 ^65000:4_0:241_0:206$ ip community-list expanded c1 permit 14846 ^65000:4_0:241_0:207$ ip community-list expanded c1 permit 14847 ^65000:4_0:241_0:208$ ip community-list expanded c1 permit 14848 ^65000:4_0:241_0:209$ ip community-list expanded c1 permit 14849 ^65000:4_0:241_0:210$ ip community-list expanded c1 permit 14850 ^65000:4_0:241_0:211$ ip community-list expanded c1 permit 14851 ^65000:4_0:241_0:212$ ip community-list expanded c1 permit 14852 ^65000:4_0:241_0:213$ ip community-list expanded c1 permit 14853 ^65000:4_0:241_0:214$ ip community-list expanded c1 permit 14854 ^65000:4_0:241_0:215$ ip community-list expanded c1 permit 14855 ^65000:4_0:241_0:216$ ip community-list expanded c1 permit 14856 ^65000:4_0:241_0:217$ ip community-list expanded c1 permit 14857 ^65000:4_0:241_0:218$ ip community-list expanded c1 permit 14858 ^65000:4_0:241_0:219$ ip community-list expanded c1 permit 14859 ^65000:4_0:241_0:220$ ip community-list expanded c1 permit 14860 ^65000:4_0:241_0:221$ ip community-list expanded c1 permit 14861 ^65000:4_0:241_0:222$ ip community-list expanded c1 permit 14862 ^65000:4_0:241_0:223$ ip community-list expanded c1 permit 14863 ^65000:4_0:241_0:224$ ip community-list expanded c1 permit 14864 ^65000:4_0:241_0:225$ ip community-list expanded c1 permit 14865 ^65000:4_0:241_0:226$ ip community-list expanded c1 permit 14866 ^65000:4_0:241_0:227$ ip community-list expanded c1 permit 14867 ^65000:4_0:241_0:228$ ip community-list expanded c1 permit 14868 ^65000:4_0:241_0:229$ ip community-list expanded c1 permit 14869 ^65000:4_0:241_0:230$ ip community-list expanded c1 permit 14870 ^65000:4_0:241_0:231$ ip community-list expanded c1 permit 14871 ^65000:4_0:241_0:232$ ip community-list expanded c1 permit 14872 ^65000:4_0:241_0:233$ ip community-list expanded c1 permit 14873 ^65000:4_0:241_0:234$ ip community-list expanded c1 permit 14874 ^65000:4_0:241_0:235$ ip community-list expanded c1 permit 14875 ^65000:4_0:241_0:236$ ip community-list expanded c1 permit 14876 ^65000:4_0:241_0:237$ ip community-list expanded c1 permit 14877 ^65000:4_0:241_0:238$ ip community-list expanded c1 permit 14878 ^65000:4_0:241_0:239$ ip community-list expanded c1 permit 14879 ^65000:3_0:241_0:240$ ip community-list expanded c1 permit 14880 ^65000:4_0:241_0:240$ ip community-list expanded c1 permit 14881 ^65000:4_0:241_0:241$ ip community-list expanded c1 permit 14882 ^65000:4_0:242_0:122$ ip community-list expanded c1 permit 14883 ^65000:4_0:242_0:123$ ip community-list expanded c1 permit 14884 ^65000:4_0:242_0:124$ ip community-list expanded c1 permit 14885 ^65000:4_0:242_0:125$ ip community-list expanded c1 permit 14886 ^65000:4_0:242_0:126$ ip community-list expanded c1 permit 14887 ^65000:4_0:242_0:127$ ip community-list expanded c1 permit 14888 ^65000:4_0:242_0:128$ ip community-list expanded c1 permit 14889 ^65000:4_0:242_0:129$ ip community-list expanded c1 permit 14890 ^65000:4_0:242_0:130$ ip community-list expanded c1 permit 14891 ^65000:4_0:242_0:131$ ip community-list expanded c1 permit 14892 ^65000:4_0:242_0:132$ ip community-list expanded c1 permit 14893 ^65000:4_0:242_0:133$ ip community-list expanded c1 permit 14894 ^65000:4_0:242_0:134$ ip community-list expanded c1 permit 14895 ^65000:4_0:242_0:135$ ip community-list expanded c1 permit 14896 ^65000:4_0:242_0:136$ ip community-list expanded c1 permit 14897 ^65000:4_0:242_0:137$ ip community-list expanded c1 permit 14898 ^65000:4_0:242_0:138$ ip community-list expanded c1 permit 14899 ^65000:4_0:242_0:139$ ip community-list expanded c1 permit 14900 ^65000:4_0:242_0:140$ ip community-list expanded c1 permit 14901 ^65000:4_0:242_0:141$ ip community-list expanded c1 permit 14902 ^65000:4_0:242_0:142$ ip community-list expanded c1 permit 14903 ^65000:4_0:242_0:143$ ip community-list expanded c1 permit 14904 ^65000:4_0:242_0:144$ ip community-list expanded c1 permit 14905 ^65000:4_0:242_0:145$ ip community-list expanded c1 permit 14906 ^65000:4_0:242_0:146$ ip community-list expanded c1 permit 14907 ^65000:4_0:242_0:147$ ip community-list expanded c1 permit 14908 ^65000:4_0:242_0:148$ ip community-list expanded c1 permit 14909 ^65000:4_0:242_0:149$ ip community-list expanded c1 permit 14910 ^65000:4_0:242_0:150$ ip community-list expanded c1 permit 14911 ^65000:4_0:242_0:151$ ip community-list expanded c1 permit 14912 ^65000:4_0:242_0:152$ ip community-list expanded c1 permit 14913 ^65000:4_0:242_0:153$ ip community-list expanded c1 permit 14914 ^65000:4_0:242_0:154$ ip community-list expanded c1 permit 14915 ^65000:4_0:242_0:155$ ip community-list expanded c1 permit 14916 ^65000:4_0:242_0:156$ ip community-list expanded c1 permit 14917 ^65000:4_0:242_0:157$ ip community-list expanded c1 permit 14918 ^65000:4_0:242_0:158$ ip community-list expanded c1 permit 14919 ^65000:4_0:242_0:159$ ip community-list expanded c1 permit 14920 ^65000:4_0:242_0:160$ ip community-list expanded c1 permit 14921 ^65000:4_0:242_0:161$ ip community-list expanded c1 permit 14922 ^65000:4_0:242_0:162$ ip community-list expanded c1 permit 14923 ^65000:4_0:242_0:163$ ip community-list expanded c1 permit 14924 ^65000:4_0:242_0:164$ ip community-list expanded c1 permit 14925 ^65000:4_0:242_0:165$ ip community-list expanded c1 permit 14926 ^65000:4_0:242_0:166$ ip community-list expanded c1 permit 14927 ^65000:4_0:242_0:167$ ip community-list expanded c1 permit 14928 ^65000:4_0:242_0:168$ ip community-list expanded c1 permit 14929 ^65000:4_0:242_0:169$ ip community-list expanded c1 permit 14930 ^65000:4_0:242_0:170$ ip community-list expanded c1 permit 14931 ^65000:4_0:242_0:171$ ip community-list expanded c1 permit 14932 ^65000:4_0:242_0:172$ ip community-list expanded c1 permit 14933 ^65000:4_0:242_0:173$ ip community-list expanded c1 permit 14934 ^65000:4_0:242_0:174$ ip community-list expanded c1 permit 14935 ^65000:4_0:242_0:175$ ip community-list expanded c1 permit 14936 ^65000:4_0:242_0:176$ ip community-list expanded c1 permit 14937 ^65000:4_0:242_0:177$ ip community-list expanded c1 permit 14938 ^65000:4_0:242_0:178$ ip community-list expanded c1 permit 14939 ^65000:4_0:242_0:179$ ip community-list expanded c1 permit 14940 ^65000:4_0:242_0:180$ ip community-list expanded c1 permit 14941 ^65000:4_0:242_0:181$ ip community-list expanded c1 permit 14942 ^65000:4_0:242_0:182$ ip community-list expanded c1 permit 14943 ^65000:4_0:242_0:183$ ip community-list expanded c1 permit 14944 ^65000:4_0:242_0:184$ ip community-list expanded c1 permit 14945 ^65000:4_0:242_0:185$ ip community-list expanded c1 permit 14946 ^65000:4_0:242_0:186$ ip community-list expanded c1 permit 14947 ^65000:4_0:242_0:187$ ip community-list expanded c1 permit 14948 ^65000:4_0:242_0:188$ ip community-list expanded c1 permit 14949 ^65000:4_0:242_0:189$ ip community-list expanded c1 permit 14950 ^65000:4_0:242_0:190$ ip community-list expanded c1 permit 14951 ^65000:4_0:242_0:191$ ip community-list expanded c1 permit 14952 ^65000:4_0:242_0:192$ ip community-list expanded c1 permit 14953 ^65000:4_0:242_0:193$ ip community-list expanded c1 permit 14954 ^65000:4_0:242_0:194$ ip community-list expanded c1 permit 14955 ^65000:4_0:242_0:195$ ip community-list expanded c1 permit 14956 ^65000:4_0:242_0:196$ ip community-list expanded c1 permit 14957 ^65000:4_0:242_0:197$ ip community-list expanded c1 permit 14958 ^65000:4_0:242_0:198$ ip community-list expanded c1 permit 14959 ^65000:4_0:242_0:199$ ip community-list expanded c1 permit 14960 ^65000:4_0:242_0:200$ ip community-list expanded c1 permit 14961 ^65000:4_0:242_0:201$ ip community-list expanded c1 permit 14962 ^65000:4_0:242_0:202$ ip community-list expanded c1 permit 14963 ^65000:4_0:242_0:203$ ip community-list expanded c1 permit 14964 ^65000:4_0:242_0:204$ ip community-list expanded c1 permit 14965 ^65000:4_0:242_0:205$ ip community-list expanded c1 permit 14966 ^65000:4_0:242_0:206$ ip community-list expanded c1 permit 14967 ^65000:4_0:242_0:207$ ip community-list expanded c1 permit 14968 ^65000:4_0:242_0:208$ ip community-list expanded c1 permit 14969 ^65000:4_0:242_0:209$ ip community-list expanded c1 permit 14970 ^65000:4_0:242_0:210$ ip community-list expanded c1 permit 14971 ^65000:4_0:242_0:211$ ip community-list expanded c1 permit 14972 ^65000:4_0:242_0:212$ ip community-list expanded c1 permit 14973 ^65000:4_0:242_0:213$ ip community-list expanded c1 permit 14974 ^65000:4_0:242_0:214$ ip community-list expanded c1 permit 14975 ^65000:4_0:242_0:215$ ip community-list expanded c1 permit 14976 ^65000:4_0:242_0:216$ ip community-list expanded c1 permit 14977 ^65000:4_0:242_0:217$ ip community-list expanded c1 permit 14978 ^65000:4_0:242_0:218$ ip community-list expanded c1 permit 14979 ^65000:4_0:242_0:219$ ip community-list expanded c1 permit 14980 ^65000:4_0:242_0:220$ ip community-list expanded c1 permit 14981 ^65000:4_0:242_0:221$ ip community-list expanded c1 permit 14982 ^65000:4_0:242_0:222$ ip community-list expanded c1 permit 14983 ^65000:4_0:242_0:223$ ip community-list expanded c1 permit 14984 ^65000:4_0:242_0:224$ ip community-list expanded c1 permit 14985 ^65000:4_0:242_0:225$ ip community-list expanded c1 permit 14986 ^65000:4_0:242_0:226$ ip community-list expanded c1 permit 14987 ^65000:4_0:242_0:227$ ip community-list expanded c1 permit 14988 ^65000:4_0:242_0:228$ ip community-list expanded c1 permit 14989 ^65000:4_0:242_0:229$ ip community-list expanded c1 permit 14990 ^65000:4_0:242_0:230$ ip community-list expanded c1 permit 14991 ^65000:4_0:242_0:231$ ip community-list expanded c1 permit 14992 ^65000:4_0:242_0:232$ ip community-list expanded c1 permit 14993 ^65000:4_0:242_0:233$ ip community-list expanded c1 permit 14994 ^65000:4_0:242_0:234$ ip community-list expanded c1 permit 14995 ^65000:4_0:242_0:235$ ip community-list expanded c1 permit 14996 ^65000:4_0:242_0:236$ ip community-list expanded c1 permit 14997 ^65000:4_0:242_0:237$ ip community-list expanded c1 permit 14998 ^65000:4_0:242_0:238$ ip community-list expanded c1 permit 14999 ^65000:4_0:242_0:239$ ip community-list expanded c1 permit 15000 ^65000:4_0:242_0:240$ ip community-list expanded c1 permit 15001 ^65000:3_0:242_0:241$ ip community-list expanded c1 permit 15002 ^65000:4_0:242_0:241$ ip community-list expanded c1 permit 15003 ^65000:4_0:242_0:242$ ip community-list expanded c1 permit 15004 ^65000:4_0:243_0:122$ ip community-list expanded c1 permit 15005 ^65000:4_0:243_0:123$ ip community-list expanded c1 permit 15006 ^65000:4_0:243_0:124$ ip community-list expanded c1 permit 15007 ^65000:4_0:243_0:125$ ip community-list expanded c1 permit 15008 ^65000:4_0:243_0:126$ ip community-list expanded c1 permit 15009 ^65000:4_0:243_0:127$ ip community-list expanded c1 permit 15010 ^65000:4_0:243_0:128$ ip community-list expanded c1 permit 15011 ^65000:4_0:243_0:129$ ip community-list expanded c1 permit 15012 ^65000:4_0:243_0:130$ ip community-list expanded c1 permit 15013 ^65000:4_0:243_0:131$ ip community-list expanded c1 permit 15014 ^65000:4_0:243_0:132$ ip community-list expanded c1 permit 15015 ^65000:4_0:243_0:133$ ip community-list expanded c1 permit 15016 ^65000:4_0:243_0:134$ ip community-list expanded c1 permit 15017 ^65000:4_0:243_0:135$ ip community-list expanded c1 permit 15018 ^65000:4_0:243_0:136$ ip community-list expanded c1 permit 15019 ^65000:4_0:243_0:137$ ip community-list expanded c1 permit 15020 ^65000:4_0:243_0:138$ ip community-list expanded c1 permit 15021 ^65000:4_0:243_0:139$ ip community-list expanded c1 permit 15022 ^65000:4_0:243_0:140$ ip community-list expanded c1 permit 15023 ^65000:4_0:243_0:141$ ip community-list expanded c1 permit 15024 ^65000:4_0:243_0:142$ ip community-list expanded c1 permit 15025 ^65000:4_0:243_0:143$ ip community-list expanded c1 permit 15026 ^65000:4_0:243_0:144$ ip community-list expanded c1 permit 15027 ^65000:4_0:243_0:145$ ip community-list expanded c1 permit 15028 ^65000:4_0:243_0:146$ ip community-list expanded c1 permit 15029 ^65000:4_0:243_0:147$ ip community-list expanded c1 permit 15030 ^65000:4_0:243_0:148$ ip community-list expanded c1 permit 15031 ^65000:4_0:243_0:149$ ip community-list expanded c1 permit 15032 ^65000:4_0:243_0:150$ ip community-list expanded c1 permit 15033 ^65000:4_0:243_0:151$ ip community-list expanded c1 permit 15034 ^65000:4_0:243_0:152$ ip community-list expanded c1 permit 15035 ^65000:4_0:243_0:153$ ip community-list expanded c1 permit 15036 ^65000:4_0:243_0:154$ ip community-list expanded c1 permit 15037 ^65000:4_0:243_0:155$ ip community-list expanded c1 permit 15038 ^65000:4_0:243_0:156$ ip community-list expanded c1 permit 15039 ^65000:4_0:243_0:157$ ip community-list expanded c1 permit 15040 ^65000:4_0:243_0:158$ ip community-list expanded c1 permit 15041 ^65000:4_0:243_0:159$ ip community-list expanded c1 permit 15042 ^65000:4_0:243_0:160$ ip community-list expanded c1 permit 15043 ^65000:4_0:243_0:161$ ip community-list expanded c1 permit 15044 ^65000:4_0:243_0:162$ ip community-list expanded c1 permit 15045 ^65000:4_0:243_0:163$ ip community-list expanded c1 permit 15046 ^65000:4_0:243_0:164$ ip community-list expanded c1 permit 15047 ^65000:4_0:243_0:165$ ip community-list expanded c1 permit 15048 ^65000:4_0:243_0:166$ ip community-list expanded c1 permit 15049 ^65000:4_0:243_0:167$ ip community-list expanded c1 permit 15050 ^65000:4_0:243_0:168$ ip community-list expanded c1 permit 15051 ^65000:4_0:243_0:169$ ip community-list expanded c1 permit 15052 ^65000:4_0:243_0:170$ ip community-list expanded c1 permit 15053 ^65000:4_0:243_0:171$ ip community-list expanded c1 permit 15054 ^65000:4_0:243_0:172$ ip community-list expanded c1 permit 15055 ^65000:4_0:243_0:173$ ip community-list expanded c1 permit 15056 ^65000:4_0:243_0:174$ ip community-list expanded c1 permit 15057 ^65000:4_0:243_0:175$ ip community-list expanded c1 permit 15058 ^65000:4_0:243_0:176$ ip community-list expanded c1 permit 15059 ^65000:4_0:243_0:177$ ip community-list expanded c1 permit 15060 ^65000:4_0:243_0:178$ ip community-list expanded c1 permit 15061 ^65000:4_0:243_0:179$ ip community-list expanded c1 permit 15062 ^65000:4_0:243_0:180$ ip community-list expanded c1 permit 15063 ^65000:4_0:243_0:181$ ip community-list expanded c1 permit 15064 ^65000:4_0:243_0:182$ ip community-list expanded c1 permit 15065 ^65000:4_0:243_0:183$ ip community-list expanded c1 permit 15066 ^65000:4_0:243_0:184$ ip community-list expanded c1 permit 15067 ^65000:4_0:243_0:185$ ip community-list expanded c1 permit 15068 ^65000:4_0:243_0:186$ ip community-list expanded c1 permit 15069 ^65000:4_0:243_0:187$ ip community-list expanded c1 permit 15070 ^65000:4_0:243_0:188$ ip community-list expanded c1 permit 15071 ^65000:4_0:243_0:189$ ip community-list expanded c1 permit 15072 ^65000:4_0:243_0:190$ ip community-list expanded c1 permit 15073 ^65000:4_0:243_0:191$ ip community-list expanded c1 permit 15074 ^65000:4_0:243_0:192$ ip community-list expanded c1 permit 15075 ^65000:4_0:243_0:193$ ip community-list expanded c1 permit 15076 ^65000:4_0:243_0:194$ ip community-list expanded c1 permit 15077 ^65000:4_0:243_0:195$ ip community-list expanded c1 permit 15078 ^65000:4_0:243_0:196$ ip community-list expanded c1 permit 15079 ^65000:4_0:243_0:197$ ip community-list expanded c1 permit 15080 ^65000:4_0:243_0:198$ ip community-list expanded c1 permit 15081 ^65000:4_0:243_0:199$ ip community-list expanded c1 permit 15082 ^65000:4_0:243_0:200$ ip community-list expanded c1 permit 15083 ^65000:4_0:243_0:201$ ip community-list expanded c1 permit 15084 ^65000:4_0:243_0:202$ ip community-list expanded c1 permit 15085 ^65000:4_0:243_0:203$ ip community-list expanded c1 permit 15086 ^65000:4_0:243_0:204$ ip community-list expanded c1 permit 15087 ^65000:4_0:243_0:205$ ip community-list expanded c1 permit 15088 ^65000:4_0:243_0:206$ ip community-list expanded c1 permit 15089 ^65000:4_0:243_0:207$ ip community-list expanded c1 permit 15090 ^65000:4_0:243_0:208$ ip community-list expanded c1 permit 15091 ^65000:4_0:243_0:209$ ip community-list expanded c1 permit 15092 ^65000:4_0:243_0:210$ ip community-list expanded c1 permit 15093 ^65000:4_0:243_0:211$ ip community-list expanded c1 permit 15094 ^65000:4_0:243_0:212$ ip community-list expanded c1 permit 15095 ^65000:4_0:243_0:213$ ip community-list expanded c1 permit 15096 ^65000:4_0:243_0:214$ ip community-list expanded c1 permit 15097 ^65000:4_0:243_0:215$ ip community-list expanded c1 permit 15098 ^65000:4_0:243_0:216$ ip community-list expanded c1 permit 15099 ^65000:4_0:243_0:217$ ip community-list expanded c1 permit 15100 ^65000:4_0:243_0:218$ ip community-list expanded c1 permit 15101 ^65000:4_0:243_0:219$ ip community-list expanded c1 permit 15102 ^65000:4_0:243_0:220$ ip community-list expanded c1 permit 15103 ^65000:4_0:243_0:221$ ip community-list expanded c1 permit 15104 ^65000:4_0:243_0:222$ ip community-list expanded c1 permit 15105 ^65000:4_0:243_0:223$ ip community-list expanded c1 permit 15106 ^65000:4_0:243_0:224$ ip community-list expanded c1 permit 15107 ^65000:4_0:243_0:225$ ip community-list expanded c1 permit 15108 ^65000:4_0:243_0:226$ ip community-list expanded c1 permit 15109 ^65000:4_0:243_0:227$ ip community-list expanded c1 permit 15110 ^65000:4_0:243_0:228$ ip community-list expanded c1 permit 15111 ^65000:4_0:243_0:229$ ip community-list expanded c1 permit 15112 ^65000:4_0:243_0:230$ ip community-list expanded c1 permit 15113 ^65000:4_0:243_0:231$ ip community-list expanded c1 permit 15114 ^65000:4_0:243_0:232$ ip community-list expanded c1 permit 15115 ^65000:4_0:243_0:233$ ip community-list expanded c1 permit 15116 ^65000:4_0:243_0:234$ ip community-list expanded c1 permit 15117 ^65000:4_0:243_0:235$ ip community-list expanded c1 permit 15118 ^65000:4_0:243_0:236$ ip community-list expanded c1 permit 15119 ^65000:4_0:243_0:237$ ip community-list expanded c1 permit 15120 ^65000:4_0:243_0:238$ ip community-list expanded c1 permit 15121 ^65000:4_0:243_0:239$ ip community-list expanded c1 permit 15122 ^65000:4_0:243_0:240$ ip community-list expanded c1 permit 15123 ^65000:4_0:243_0:241$ ip community-list expanded c1 permit 15124 ^65000:3_0:243_0:242$ ip community-list expanded c1 permit 15125 ^65000:4_0:243_0:242$ ip community-list expanded c1 permit 15126 ^65000:4_0:243_0:243$ ip community-list expanded c1 permit 15127 ^65000:4_0:244_0:123$ ip community-list expanded c1 permit 15128 ^65000:4_0:244_0:124$ ip community-list expanded c1 permit 15129 ^65000:4_0:244_0:125$ ip community-list expanded c1 permit 15130 ^65000:4_0:244_0:126$ ip community-list expanded c1 permit 15131 ^65000:4_0:244_0:127$ ip community-list expanded c1 permit 15132 ^65000:4_0:244_0:128$ ip community-list expanded c1 permit 15133 ^65000:4_0:244_0:129$ ip community-list expanded c1 permit 15134 ^65000:4_0:244_0:130$ ip community-list expanded c1 permit 15135 ^65000:4_0:244_0:131$ ip community-list expanded c1 permit 15136 ^65000:4_0:244_0:132$ ip community-list expanded c1 permit 15137 ^65000:4_0:244_0:133$ ip community-list expanded c1 permit 15138 ^65000:4_0:244_0:134$ ip community-list expanded c1 permit 15139 ^65000:4_0:244_0:135$ ip community-list expanded c1 permit 15140 ^65000:4_0:244_0:136$ ip community-list expanded c1 permit 15141 ^65000:4_0:244_0:137$ ip community-list expanded c1 permit 15142 ^65000:4_0:244_0:138$ ip community-list expanded c1 permit 15143 ^65000:4_0:244_0:139$ ip community-list expanded c1 permit 15144 ^65000:4_0:244_0:140$ ip community-list expanded c1 permit 15145 ^65000:4_0:244_0:141$ ip community-list expanded c1 permit 15146 ^65000:4_0:244_0:142$ ip community-list expanded c1 permit 15147 ^65000:4_0:244_0:143$ ip community-list expanded c1 permit 15148 ^65000:4_0:244_0:144$ ip community-list expanded c1 permit 15149 ^65000:4_0:244_0:145$ ip community-list expanded c1 permit 15150 ^65000:4_0:244_0:146$ ip community-list expanded c1 permit 15151 ^65000:4_0:244_0:147$ ip community-list expanded c1 permit 15152 ^65000:4_0:244_0:148$ ip community-list expanded c1 permit 15153 ^65000:4_0:244_0:149$ ip community-list expanded c1 permit 15154 ^65000:4_0:244_0:150$ ip community-list expanded c1 permit 15155 ^65000:4_0:244_0:151$ ip community-list expanded c1 permit 15156 ^65000:4_0:244_0:152$ ip community-list expanded c1 permit 15157 ^65000:4_0:244_0:153$ ip community-list expanded c1 permit 15158 ^65000:4_0:244_0:154$ ip community-list expanded c1 permit 15159 ^65000:4_0:244_0:155$ ip community-list expanded c1 permit 15160 ^65000:4_0:244_0:156$ ip community-list expanded c1 permit 15161 ^65000:4_0:244_0:157$ ip community-list expanded c1 permit 15162 ^65000:4_0:244_0:158$ ip community-list expanded c1 permit 15163 ^65000:4_0:244_0:159$ ip community-list expanded c1 permit 15164 ^65000:4_0:244_0:160$ ip community-list expanded c1 permit 15165 ^65000:4_0:244_0:161$ ip community-list expanded c1 permit 15166 ^65000:4_0:244_0:162$ ip community-list expanded c1 permit 15167 ^65000:4_0:244_0:163$ ip community-list expanded c1 permit 15168 ^65000:4_0:244_0:164$ ip community-list expanded c1 permit 15169 ^65000:4_0:244_0:165$ ip community-list expanded c1 permit 15170 ^65000:4_0:244_0:166$ ip community-list expanded c1 permit 15171 ^65000:4_0:244_0:167$ ip community-list expanded c1 permit 15172 ^65000:4_0:244_0:168$ ip community-list expanded c1 permit 15173 ^65000:4_0:244_0:169$ ip community-list expanded c1 permit 15174 ^65000:4_0:244_0:170$ ip community-list expanded c1 permit 15175 ^65000:4_0:244_0:171$ ip community-list expanded c1 permit 15176 ^65000:4_0:244_0:172$ ip community-list expanded c1 permit 15177 ^65000:4_0:244_0:173$ ip community-list expanded c1 permit 15178 ^65000:4_0:244_0:174$ ip community-list expanded c1 permit 15179 ^65000:4_0:244_0:175$ ip community-list expanded c1 permit 15180 ^65000:4_0:244_0:176$ ip community-list expanded c1 permit 15181 ^65000:4_0:244_0:177$ ip community-list expanded c1 permit 15182 ^65000:4_0:244_0:178$ ip community-list expanded c1 permit 15183 ^65000:4_0:244_0:179$ ip community-list expanded c1 permit 15184 ^65000:4_0:244_0:180$ ip community-list expanded c1 permit 15185 ^65000:4_0:244_0:181$ ip community-list expanded c1 permit 15186 ^65000:4_0:244_0:182$ ip community-list expanded c1 permit 15187 ^65000:4_0:244_0:183$ ip community-list expanded c1 permit 15188 ^65000:4_0:244_0:184$ ip community-list expanded c1 permit 15189 ^65000:4_0:244_0:185$ ip community-list expanded c1 permit 15190 ^65000:4_0:244_0:186$ ip community-list expanded c1 permit 15191 ^65000:4_0:244_0:187$ ip community-list expanded c1 permit 15192 ^65000:4_0:244_0:188$ ip community-list expanded c1 permit 15193 ^65000:4_0:244_0:189$ ip community-list expanded c1 permit 15194 ^65000:4_0:244_0:190$ ip community-list expanded c1 permit 15195 ^65000:4_0:244_0:191$ ip community-list expanded c1 permit 15196 ^65000:4_0:244_0:192$ ip community-list expanded c1 permit 15197 ^65000:4_0:244_0:193$ ip community-list expanded c1 permit 15198 ^65000:4_0:244_0:194$ ip community-list expanded c1 permit 15199 ^65000:4_0:244_0:195$ ip community-list expanded c1 permit 15200 ^65000:4_0:244_0:196$ ip community-list expanded c1 permit 15201 ^65000:4_0:244_0:197$ ip community-list expanded c1 permit 15202 ^65000:4_0:244_0:198$ ip community-list expanded c1 permit 15203 ^65000:4_0:244_0:199$ ip community-list expanded c1 permit 15204 ^65000:4_0:244_0:200$ ip community-list expanded c1 permit 15205 ^65000:4_0:244_0:201$ ip community-list expanded c1 permit 15206 ^65000:4_0:244_0:202$ ip community-list expanded c1 permit 15207 ^65000:4_0:244_0:203$ ip community-list expanded c1 permit 15208 ^65000:4_0:244_0:204$ ip community-list expanded c1 permit 15209 ^65000:4_0:244_0:205$ ip community-list expanded c1 permit 15210 ^65000:4_0:244_0:206$ ip community-list expanded c1 permit 15211 ^65000:4_0:244_0:207$ ip community-list expanded c1 permit 15212 ^65000:4_0:244_0:208$ ip community-list expanded c1 permit 15213 ^65000:4_0:244_0:209$ ip community-list expanded c1 permit 15214 ^65000:4_0:244_0:210$ ip community-list expanded c1 permit 15215 ^65000:4_0:244_0:211$ ip community-list expanded c1 permit 15216 ^65000:4_0:244_0:212$ ip community-list expanded c1 permit 15217 ^65000:4_0:244_0:213$ ip community-list expanded c1 permit 15218 ^65000:4_0:244_0:214$ ip community-list expanded c1 permit 15219 ^65000:4_0:244_0:215$ ip community-list expanded c1 permit 15220 ^65000:4_0:244_0:216$ ip community-list expanded c1 permit 15221 ^65000:4_0:244_0:217$ ip community-list expanded c1 permit 15222 ^65000:4_0:244_0:218$ ip community-list expanded c1 permit 15223 ^65000:4_0:244_0:219$ ip community-list expanded c1 permit 15224 ^65000:4_0:244_0:220$ ip community-list expanded c1 permit 15225 ^65000:4_0:244_0:221$ ip community-list expanded c1 permit 15226 ^65000:4_0:244_0:222$ ip community-list expanded c1 permit 15227 ^65000:4_0:244_0:223$ ip community-list expanded c1 permit 15228 ^65000:4_0:244_0:224$ ip community-list expanded c1 permit 15229 ^65000:4_0:244_0:225$ ip community-list expanded c1 permit 15230 ^65000:4_0:244_0:226$ ip community-list expanded c1 permit 15231 ^65000:4_0:244_0:227$ ip community-list expanded c1 permit 15232 ^65000:4_0:244_0:228$ ip community-list expanded c1 permit 15233 ^65000:4_0:244_0:229$ ip community-list expanded c1 permit 15234 ^65000:4_0:244_0:230$ ip community-list expanded c1 permit 15235 ^65000:4_0:244_0:231$ ip community-list expanded c1 permit 15236 ^65000:4_0:244_0:232$ ip community-list expanded c1 permit 15237 ^65000:4_0:244_0:233$ ip community-list expanded c1 permit 15238 ^65000:4_0:244_0:234$ ip community-list expanded c1 permit 15239 ^65000:4_0:244_0:235$ ip community-list expanded c1 permit 15240 ^65000:4_0:244_0:236$ ip community-list expanded c1 permit 15241 ^65000:4_0:244_0:237$ ip community-list expanded c1 permit 15242 ^65000:4_0:244_0:238$ ip community-list expanded c1 permit 15243 ^65000:4_0:244_0:239$ ip community-list expanded c1 permit 15244 ^65000:4_0:244_0:240$ ip community-list expanded c1 permit 15245 ^65000:4_0:244_0:241$ ip community-list expanded c1 permit 15246 ^65000:4_0:244_0:242$ ip community-list expanded c1 permit 15247 ^65000:3_0:244_0:243$ ip community-list expanded c1 permit 15248 ^65000:4_0:244_0:243$ ip community-list expanded c1 permit 15249 ^65000:4_0:244_0:244$ ip community-list expanded c1 permit 15250 ^65000:4_0:245_0:123$ ip community-list expanded c1 permit 15251 ^65000:4_0:245_0:124$ ip community-list expanded c1 permit 15252 ^65000:4_0:245_0:125$ ip community-list expanded c1 permit 15253 ^65000:4_0:245_0:126$ ip community-list expanded c1 permit 15254 ^65000:4_0:245_0:127$ ip community-list expanded c1 permit 15255 ^65000:4_0:245_0:128$ ip community-list expanded c1 permit 15256 ^65000:4_0:245_0:129$ ip community-list expanded c1 permit 15257 ^65000:4_0:245_0:130$ ip community-list expanded c1 permit 15258 ^65000:4_0:245_0:131$ ip community-list expanded c1 permit 15259 ^65000:4_0:245_0:132$ ip community-list expanded c1 permit 15260 ^65000:4_0:245_0:133$ ip community-list expanded c1 permit 15261 ^65000:4_0:245_0:134$ ip community-list expanded c1 permit 15262 ^65000:4_0:245_0:135$ ip community-list expanded c1 permit 15263 ^65000:4_0:245_0:136$ ip community-list expanded c1 permit 15264 ^65000:4_0:245_0:137$ ip community-list expanded c1 permit 15265 ^65000:4_0:245_0:138$ ip community-list expanded c1 permit 15266 ^65000:4_0:245_0:139$ ip community-list expanded c1 permit 15267 ^65000:4_0:245_0:140$ ip community-list expanded c1 permit 15268 ^65000:4_0:245_0:141$ ip community-list expanded c1 permit 15269 ^65000:4_0:245_0:142$ ip community-list expanded c1 permit 15270 ^65000:4_0:245_0:143$ ip community-list expanded c1 permit 15271 ^65000:4_0:245_0:144$ ip community-list expanded c1 permit 15272 ^65000:4_0:245_0:145$ ip community-list expanded c1 permit 15273 ^65000:4_0:245_0:146$ ip community-list expanded c1 permit 15274 ^65000:4_0:245_0:147$ ip community-list expanded c1 permit 15275 ^65000:4_0:245_0:148$ ip community-list expanded c1 permit 15276 ^65000:4_0:245_0:149$ ip community-list expanded c1 permit 15277 ^65000:4_0:245_0:150$ ip community-list expanded c1 permit 15278 ^65000:4_0:245_0:151$ ip community-list expanded c1 permit 15279 ^65000:4_0:245_0:152$ ip community-list expanded c1 permit 15280 ^65000:4_0:245_0:153$ ip community-list expanded c1 permit 15281 ^65000:4_0:245_0:154$ ip community-list expanded c1 permit 15282 ^65000:4_0:245_0:155$ ip community-list expanded c1 permit 15283 ^65000:4_0:245_0:156$ ip community-list expanded c1 permit 15284 ^65000:4_0:245_0:157$ ip community-list expanded c1 permit 15285 ^65000:4_0:245_0:158$ ip community-list expanded c1 permit 15286 ^65000:4_0:245_0:159$ ip community-list expanded c1 permit 15287 ^65000:4_0:245_0:160$ ip community-list expanded c1 permit 15288 ^65000:4_0:245_0:161$ ip community-list expanded c1 permit 15289 ^65000:4_0:245_0:162$ ip community-list expanded c1 permit 15290 ^65000:4_0:245_0:163$ ip community-list expanded c1 permit 15291 ^65000:4_0:245_0:164$ ip community-list expanded c1 permit 15292 ^65000:4_0:245_0:165$ ip community-list expanded c1 permit 15293 ^65000:4_0:245_0:166$ ip community-list expanded c1 permit 15294 ^65000:4_0:245_0:167$ ip community-list expanded c1 permit 15295 ^65000:4_0:245_0:168$ ip community-list expanded c1 permit 15296 ^65000:4_0:245_0:169$ ip community-list expanded c1 permit 15297 ^65000:4_0:245_0:170$ ip community-list expanded c1 permit 15298 ^65000:4_0:245_0:171$ ip community-list expanded c1 permit 15299 ^65000:4_0:245_0:172$ ip community-list expanded c1 permit 15300 ^65000:4_0:245_0:173$ ip community-list expanded c1 permit 15301 ^65000:4_0:245_0:174$ ip community-list expanded c1 permit 15302 ^65000:4_0:245_0:175$ ip community-list expanded c1 permit 15303 ^65000:4_0:245_0:176$ ip community-list expanded c1 permit 15304 ^65000:4_0:245_0:177$ ip community-list expanded c1 permit 15305 ^65000:4_0:245_0:178$ ip community-list expanded c1 permit 15306 ^65000:4_0:245_0:179$ ip community-list expanded c1 permit 15307 ^65000:4_0:245_0:180$ ip community-list expanded c1 permit 15308 ^65000:4_0:245_0:181$ ip community-list expanded c1 permit 15309 ^65000:4_0:245_0:182$ ip community-list expanded c1 permit 15310 ^65000:4_0:245_0:183$ ip community-list expanded c1 permit 15311 ^65000:4_0:245_0:184$ ip community-list expanded c1 permit 15312 ^65000:4_0:245_0:185$ ip community-list expanded c1 permit 15313 ^65000:4_0:245_0:186$ ip community-list expanded c1 permit 15314 ^65000:4_0:245_0:187$ ip community-list expanded c1 permit 15315 ^65000:4_0:245_0:188$ ip community-list expanded c1 permit 15316 ^65000:4_0:245_0:189$ ip community-list expanded c1 permit 15317 ^65000:4_0:245_0:190$ ip community-list expanded c1 permit 15318 ^65000:4_0:245_0:191$ ip community-list expanded c1 permit 15319 ^65000:4_0:245_0:192$ ip community-list expanded c1 permit 15320 ^65000:4_0:245_0:193$ ip community-list expanded c1 permit 15321 ^65000:4_0:245_0:194$ ip community-list expanded c1 permit 15322 ^65000:4_0:245_0:195$ ip community-list expanded c1 permit 15323 ^65000:4_0:245_0:196$ ip community-list expanded c1 permit 15324 ^65000:4_0:245_0:197$ ip community-list expanded c1 permit 15325 ^65000:4_0:245_0:198$ ip community-list expanded c1 permit 15326 ^65000:4_0:245_0:199$ ip community-list expanded c1 permit 15327 ^65000:4_0:245_0:200$ ip community-list expanded c1 permit 15328 ^65000:4_0:245_0:201$ ip community-list expanded c1 permit 15329 ^65000:4_0:245_0:202$ ip community-list expanded c1 permit 15330 ^65000:4_0:245_0:203$ ip community-list expanded c1 permit 15331 ^65000:4_0:245_0:204$ ip community-list expanded c1 permit 15332 ^65000:4_0:245_0:205$ ip community-list expanded c1 permit 15333 ^65000:4_0:245_0:206$ ip community-list expanded c1 permit 15334 ^65000:4_0:245_0:207$ ip community-list expanded c1 permit 15335 ^65000:4_0:245_0:208$ ip community-list expanded c1 permit 15336 ^65000:4_0:245_0:209$ ip community-list expanded c1 permit 15337 ^65000:4_0:245_0:210$ ip community-list expanded c1 permit 15338 ^65000:4_0:245_0:211$ ip community-list expanded c1 permit 15339 ^65000:4_0:245_0:212$ ip community-list expanded c1 permit 15340 ^65000:4_0:245_0:213$ ip community-list expanded c1 permit 15341 ^65000:4_0:245_0:214$ ip community-list expanded c1 permit 15342 ^65000:4_0:245_0:215$ ip community-list expanded c1 permit 15343 ^65000:4_0:245_0:216$ ip community-list expanded c1 permit 15344 ^65000:4_0:245_0:217$ ip community-list expanded c1 permit 15345 ^65000:4_0:245_0:218$ ip community-list expanded c1 permit 15346 ^65000:4_0:245_0:219$ ip community-list expanded c1 permit 15347 ^65000:4_0:245_0:220$ ip community-list expanded c1 permit 15348 ^65000:4_0:245_0:221$ ip community-list expanded c1 permit 15349 ^65000:4_0:245_0:222$ ip community-list expanded c1 permit 15350 ^65000:4_0:245_0:223$ ip community-list expanded c1 permit 15351 ^65000:4_0:245_0:224$ ip community-list expanded c1 permit 15352 ^65000:4_0:245_0:225$ ip community-list expanded c1 permit 15353 ^65000:4_0:245_0:226$ ip community-list expanded c1 permit 15354 ^65000:4_0:245_0:227$ ip community-list expanded c1 permit 15355 ^65000:4_0:245_0:228$ ip community-list expanded c1 permit 15356 ^65000:4_0:245_0:229$ ip community-list expanded c1 permit 15357 ^65000:4_0:245_0:230$ ip community-list expanded c1 permit 15358 ^65000:4_0:245_0:231$ ip community-list expanded c1 permit 15359 ^65000:4_0:245_0:232$ ip community-list expanded c1 permit 15360 ^65000:4_0:245_0:233$ ip community-list expanded c1 permit 15361 ^65000:4_0:245_0:234$ ip community-list expanded c1 permit 15362 ^65000:4_0:245_0:235$ ip community-list expanded c1 permit 15363 ^65000:4_0:245_0:236$ ip community-list expanded c1 permit 15364 ^65000:4_0:245_0:237$ ip community-list expanded c1 permit 15365 ^65000:4_0:245_0:238$ ip community-list expanded c1 permit 15366 ^65000:4_0:245_0:239$ ip community-list expanded c1 permit 15367 ^65000:4_0:245_0:240$ ip community-list expanded c1 permit 15368 ^65000:4_0:245_0:241$ ip community-list expanded c1 permit 15369 ^65000:4_0:245_0:242$ ip community-list expanded c1 permit 15370 ^65000:4_0:245_0:243$ ip community-list expanded c1 permit 15371 ^65000:3_0:245_0:244$ ip community-list expanded c1 permit 15372 ^65000:4_0:245_0:244$ ip community-list expanded c1 permit 15373 ^65000:4_0:245_0:245$ ip community-list expanded c1 permit 15374 ^65000:4_0:246_0:124$ ip community-list expanded c1 permit 15375 ^65000:4_0:246_0:125$ ip community-list expanded c1 permit 15376 ^65000:4_0:246_0:126$ ip community-list expanded c1 permit 15377 ^65000:4_0:246_0:127$ ip community-list expanded c1 permit 15378 ^65000:4_0:246_0:128$ ip community-list expanded c1 permit 15379 ^65000:4_0:246_0:129$ ip community-list expanded c1 permit 15380 ^65000:4_0:246_0:130$ ip community-list expanded c1 permit 15381 ^65000:4_0:246_0:131$ ip community-list expanded c1 permit 15382 ^65000:4_0:246_0:132$ ip community-list expanded c1 permit 15383 ^65000:4_0:246_0:133$ ip community-list expanded c1 permit 15384 ^65000:4_0:246_0:134$ ip community-list expanded c1 permit 15385 ^65000:4_0:246_0:135$ ip community-list expanded c1 permit 15386 ^65000:4_0:246_0:136$ ip community-list expanded c1 permit 15387 ^65000:4_0:246_0:137$ ip community-list expanded c1 permit 15388 ^65000:4_0:246_0:138$ ip community-list expanded c1 permit 15389 ^65000:4_0:246_0:139$ ip community-list expanded c1 permit 15390 ^65000:4_0:246_0:140$ ip community-list expanded c1 permit 15391 ^65000:4_0:246_0:141$ ip community-list expanded c1 permit 15392 ^65000:4_0:246_0:142$ ip community-list expanded c1 permit 15393 ^65000:4_0:246_0:143$ ip community-list expanded c1 permit 15394 ^65000:4_0:246_0:144$ ip community-list expanded c1 permit 15395 ^65000:4_0:246_0:145$ ip community-list expanded c1 permit 15396 ^65000:4_0:246_0:146$ ip community-list expanded c1 permit 15397 ^65000:4_0:246_0:147$ ip community-list expanded c1 permit 15398 ^65000:4_0:246_0:148$ ip community-list expanded c1 permit 15399 ^65000:4_0:246_0:149$ ip community-list expanded c1 permit 15400 ^65000:4_0:246_0:150$ ip community-list expanded c1 permit 15401 ^65000:4_0:246_0:151$ ip community-list expanded c1 permit 15402 ^65000:4_0:246_0:152$ ip community-list expanded c1 permit 15403 ^65000:4_0:246_0:153$ ip community-list expanded c1 permit 15404 ^65000:4_0:246_0:154$ ip community-list expanded c1 permit 15405 ^65000:4_0:246_0:155$ ip community-list expanded c1 permit 15406 ^65000:4_0:246_0:156$ ip community-list expanded c1 permit 15407 ^65000:4_0:246_0:157$ ip community-list expanded c1 permit 15408 ^65000:4_0:246_0:158$ ip community-list expanded c1 permit 15409 ^65000:4_0:246_0:159$ ip community-list expanded c1 permit 15410 ^65000:4_0:246_0:160$ ip community-list expanded c1 permit 15411 ^65000:4_0:246_0:161$ ip community-list expanded c1 permit 15412 ^65000:4_0:246_0:162$ ip community-list expanded c1 permit 15413 ^65000:4_0:246_0:163$ ip community-list expanded c1 permit 15414 ^65000:4_0:246_0:164$ ip community-list expanded c1 permit 15415 ^65000:4_0:246_0:165$ ip community-list expanded c1 permit 15416 ^65000:4_0:246_0:166$ ip community-list expanded c1 permit 15417 ^65000:4_0:246_0:167$ ip community-list expanded c1 permit 15418 ^65000:4_0:246_0:168$ ip community-list expanded c1 permit 15419 ^65000:4_0:246_0:169$ ip community-list expanded c1 permit 15420 ^65000:4_0:246_0:170$ ip community-list expanded c1 permit 15421 ^65000:4_0:246_0:171$ ip community-list expanded c1 permit 15422 ^65000:4_0:246_0:172$ ip community-list expanded c1 permit 15423 ^65000:4_0:246_0:173$ ip community-list expanded c1 permit 15424 ^65000:4_0:246_0:174$ ip community-list expanded c1 permit 15425 ^65000:4_0:246_0:175$ ip community-list expanded c1 permit 15426 ^65000:4_0:246_0:176$ ip community-list expanded c1 permit 15427 ^65000:4_0:246_0:177$ ip community-list expanded c1 permit 15428 ^65000:4_0:246_0:178$ ip community-list expanded c1 permit 15429 ^65000:4_0:246_0:179$ ip community-list expanded c1 permit 15430 ^65000:4_0:246_0:180$ ip community-list expanded c1 permit 15431 ^65000:4_0:246_0:181$ ip community-list expanded c1 permit 15432 ^65000:4_0:246_0:182$ ip community-list expanded c1 permit 15433 ^65000:4_0:246_0:183$ ip community-list expanded c1 permit 15434 ^65000:4_0:246_0:184$ ip community-list expanded c1 permit 15435 ^65000:4_0:246_0:185$ ip community-list expanded c1 permit 15436 ^65000:4_0:246_0:186$ ip community-list expanded c1 permit 15437 ^65000:4_0:246_0:187$ ip community-list expanded c1 permit 15438 ^65000:4_0:246_0:188$ ip community-list expanded c1 permit 15439 ^65000:4_0:246_0:189$ ip community-list expanded c1 permit 15440 ^65000:4_0:246_0:190$ ip community-list expanded c1 permit 15441 ^65000:4_0:246_0:191$ ip community-list expanded c1 permit 15442 ^65000:4_0:246_0:192$ ip community-list expanded c1 permit 15443 ^65000:4_0:246_0:193$ ip community-list expanded c1 permit 15444 ^65000:4_0:246_0:194$ ip community-list expanded c1 permit 15445 ^65000:4_0:246_0:195$ ip community-list expanded c1 permit 15446 ^65000:4_0:246_0:196$ ip community-list expanded c1 permit 15447 ^65000:4_0:246_0:197$ ip community-list expanded c1 permit 15448 ^65000:4_0:246_0:198$ ip community-list expanded c1 permit 15449 ^65000:4_0:246_0:199$ ip community-list expanded c1 permit 15450 ^65000:4_0:246_0:200$ ip community-list expanded c1 permit 15451 ^65000:4_0:246_0:201$ ip community-list expanded c1 permit 15452 ^65000:4_0:246_0:202$ ip community-list expanded c1 permit 15453 ^65000:4_0:246_0:203$ ip community-list expanded c1 permit 15454 ^65000:4_0:246_0:204$ ip community-list expanded c1 permit 15455 ^65000:4_0:246_0:205$ ip community-list expanded c1 permit 15456 ^65000:4_0:246_0:206$ ip community-list expanded c1 permit 15457 ^65000:4_0:246_0:207$ ip community-list expanded c1 permit 15458 ^65000:4_0:246_0:208$ ip community-list expanded c1 permit 15459 ^65000:4_0:246_0:209$ ip community-list expanded c1 permit 15460 ^65000:4_0:246_0:210$ ip community-list expanded c1 permit 15461 ^65000:4_0:246_0:211$ ip community-list expanded c1 permit 15462 ^65000:4_0:246_0:212$ ip community-list expanded c1 permit 15463 ^65000:4_0:246_0:213$ ip community-list expanded c1 permit 15464 ^65000:4_0:246_0:214$ ip community-list expanded c1 permit 15465 ^65000:4_0:246_0:215$ ip community-list expanded c1 permit 15466 ^65000:4_0:246_0:216$ ip community-list expanded c1 permit 15467 ^65000:4_0:246_0:217$ ip community-list expanded c1 permit 15468 ^65000:4_0:246_0:218$ ip community-list expanded c1 permit 15469 ^65000:4_0:246_0:219$ ip community-list expanded c1 permit 15470 ^65000:4_0:246_0:220$ ip community-list expanded c1 permit 15471 ^65000:4_0:246_0:221$ ip community-list expanded c1 permit 15472 ^65000:4_0:246_0:222$ ip community-list expanded c1 permit 15473 ^65000:4_0:246_0:223$ ip community-list expanded c1 permit 15474 ^65000:4_0:246_0:224$ ip community-list expanded c1 permit 15475 ^65000:4_0:246_0:225$ ip community-list expanded c1 permit 15476 ^65000:4_0:246_0:226$ ip community-list expanded c1 permit 15477 ^65000:4_0:246_0:227$ ip community-list expanded c1 permit 15478 ^65000:4_0:246_0:228$ ip community-list expanded c1 permit 15479 ^65000:4_0:246_0:229$ ip community-list expanded c1 permit 15480 ^65000:4_0:246_0:230$ ip community-list expanded c1 permit 15481 ^65000:4_0:246_0:231$ ip community-list expanded c1 permit 15482 ^65000:4_0:246_0:232$ ip community-list expanded c1 permit 15483 ^65000:4_0:246_0:233$ ip community-list expanded c1 permit 15484 ^65000:4_0:246_0:234$ ip community-list expanded c1 permit 15485 ^65000:4_0:246_0:235$ ip community-list expanded c1 permit 15486 ^65000:4_0:246_0:236$ ip community-list expanded c1 permit 15487 ^65000:4_0:246_0:237$ ip community-list expanded c1 permit 15488 ^65000:4_0:246_0:238$ ip community-list expanded c1 permit 15489 ^65000:4_0:246_0:239$ ip community-list expanded c1 permit 15490 ^65000:4_0:246_0:240$ ip community-list expanded c1 permit 15491 ^65000:4_0:246_0:241$ ip community-list expanded c1 permit 15492 ^65000:4_0:246_0:242$ ip community-list expanded c1 permit 15493 ^65000:4_0:246_0:243$ ip community-list expanded c1 permit 15494 ^65000:4_0:246_0:244$ ip community-list expanded c1 permit 15495 ^65000:3_0:246_0:245$ ip community-list expanded c1 permit 15496 ^65000:4_0:246_0:245$ ip community-list expanded c1 permit 15497 ^65000:4_0:246_0:246$ ip community-list expanded c1 permit 15498 ^65000:4_0:247_0:124$ ip community-list expanded c1 permit 15499 ^65000:4_0:247_0:125$ ip community-list expanded c1 permit 15500 ^65000:4_0:247_0:126$ ip community-list expanded c1 permit 15501 ^65000:4_0:247_0:127$ ip community-list expanded c1 permit 15502 ^65000:4_0:247_0:128$ ip community-list expanded c1 permit 15503 ^65000:4_0:247_0:129$ ip community-list expanded c1 permit 15504 ^65000:4_0:247_0:130$ ip community-list expanded c1 permit 15505 ^65000:4_0:247_0:131$ ip community-list expanded c1 permit 15506 ^65000:4_0:247_0:132$ ip community-list expanded c1 permit 15507 ^65000:4_0:247_0:133$ ip community-list expanded c1 permit 15508 ^65000:4_0:247_0:134$ ip community-list expanded c1 permit 15509 ^65000:4_0:247_0:135$ ip community-list expanded c1 permit 15510 ^65000:4_0:247_0:136$ ip community-list expanded c1 permit 15511 ^65000:4_0:247_0:137$ ip community-list expanded c1 permit 15512 ^65000:4_0:247_0:138$ ip community-list expanded c1 permit 15513 ^65000:4_0:247_0:139$ ip community-list expanded c1 permit 15514 ^65000:4_0:247_0:140$ ip community-list expanded c1 permit 15515 ^65000:4_0:247_0:141$ ip community-list expanded c1 permit 15516 ^65000:4_0:247_0:142$ ip community-list expanded c1 permit 15517 ^65000:4_0:247_0:143$ ip community-list expanded c1 permit 15518 ^65000:4_0:247_0:144$ ip community-list expanded c1 permit 15519 ^65000:4_0:247_0:145$ ip community-list expanded c1 permit 15520 ^65000:4_0:247_0:146$ ip community-list expanded c1 permit 15521 ^65000:4_0:247_0:147$ ip community-list expanded c1 permit 15522 ^65000:4_0:247_0:148$ ip community-list expanded c1 permit 15523 ^65000:4_0:247_0:149$ ip community-list expanded c1 permit 15524 ^65000:4_0:247_0:150$ ip community-list expanded c1 permit 15525 ^65000:4_0:247_0:151$ ip community-list expanded c1 permit 15526 ^65000:4_0:247_0:152$ ip community-list expanded c1 permit 15527 ^65000:4_0:247_0:153$ ip community-list expanded c1 permit 15528 ^65000:4_0:247_0:154$ ip community-list expanded c1 permit 15529 ^65000:4_0:247_0:155$ ip community-list expanded c1 permit 15530 ^65000:4_0:247_0:156$ ip community-list expanded c1 permit 15531 ^65000:4_0:247_0:157$ ip community-list expanded c1 permit 15532 ^65000:4_0:247_0:158$ ip community-list expanded c1 permit 15533 ^65000:4_0:247_0:159$ ip community-list expanded c1 permit 15534 ^65000:4_0:247_0:160$ ip community-list expanded c1 permit 15535 ^65000:4_0:247_0:161$ ip community-list expanded c1 permit 15536 ^65000:4_0:247_0:162$ ip community-list expanded c1 permit 15537 ^65000:4_0:247_0:163$ ip community-list expanded c1 permit 15538 ^65000:4_0:247_0:164$ ip community-list expanded c1 permit 15539 ^65000:4_0:247_0:165$ ip community-list expanded c1 permit 15540 ^65000:4_0:247_0:166$ ip community-list expanded c1 permit 15541 ^65000:4_0:247_0:167$ ip community-list expanded c1 permit 15542 ^65000:4_0:247_0:168$ ip community-list expanded c1 permit 15543 ^65000:4_0:247_0:169$ ip community-list expanded c1 permit 15544 ^65000:4_0:247_0:170$ ip community-list expanded c1 permit 15545 ^65000:4_0:247_0:171$ ip community-list expanded c1 permit 15546 ^65000:4_0:247_0:172$ ip community-list expanded c1 permit 15547 ^65000:4_0:247_0:173$ ip community-list expanded c1 permit 15548 ^65000:4_0:247_0:174$ ip community-list expanded c1 permit 15549 ^65000:4_0:247_0:175$ ip community-list expanded c1 permit 15550 ^65000:4_0:247_0:176$ ip community-list expanded c1 permit 15551 ^65000:4_0:247_0:177$ ip community-list expanded c1 permit 15552 ^65000:4_0:247_0:178$ ip community-list expanded c1 permit 15553 ^65000:4_0:247_0:179$ ip community-list expanded c1 permit 15554 ^65000:4_0:247_0:180$ ip community-list expanded c1 permit 15555 ^65000:4_0:247_0:181$ ip community-list expanded c1 permit 15556 ^65000:4_0:247_0:182$ ip community-list expanded c1 permit 15557 ^65000:4_0:247_0:183$ ip community-list expanded c1 permit 15558 ^65000:4_0:247_0:184$ ip community-list expanded c1 permit 15559 ^65000:4_0:247_0:185$ ip community-list expanded c1 permit 15560 ^65000:4_0:247_0:186$ ip community-list expanded c1 permit 15561 ^65000:4_0:247_0:187$ ip community-list expanded c1 permit 15562 ^65000:4_0:247_0:188$ ip community-list expanded c1 permit 15563 ^65000:4_0:247_0:189$ ip community-list expanded c1 permit 15564 ^65000:4_0:247_0:190$ ip community-list expanded c1 permit 15565 ^65000:4_0:247_0:191$ ip community-list expanded c1 permit 15566 ^65000:4_0:247_0:192$ ip community-list expanded c1 permit 15567 ^65000:4_0:247_0:193$ ip community-list expanded c1 permit 15568 ^65000:4_0:247_0:194$ ip community-list expanded c1 permit 15569 ^65000:4_0:247_0:195$ ip community-list expanded c1 permit 15570 ^65000:4_0:247_0:196$ ip community-list expanded c1 permit 15571 ^65000:4_0:247_0:197$ ip community-list expanded c1 permit 15572 ^65000:4_0:247_0:198$ ip community-list expanded c1 permit 15573 ^65000:4_0:247_0:199$ ip community-list expanded c1 permit 15574 ^65000:4_0:247_0:200$ ip community-list expanded c1 permit 15575 ^65000:4_0:247_0:201$ ip community-list expanded c1 permit 15576 ^65000:4_0:247_0:202$ ip community-list expanded c1 permit 15577 ^65000:4_0:247_0:203$ ip community-list expanded c1 permit 15578 ^65000:4_0:247_0:204$ ip community-list expanded c1 permit 15579 ^65000:4_0:247_0:205$ ip community-list expanded c1 permit 15580 ^65000:4_0:247_0:206$ ip community-list expanded c1 permit 15581 ^65000:4_0:247_0:207$ ip community-list expanded c1 permit 15582 ^65000:4_0:247_0:208$ ip community-list expanded c1 permit 15583 ^65000:4_0:247_0:209$ ip community-list expanded c1 permit 15584 ^65000:4_0:247_0:210$ ip community-list expanded c1 permit 15585 ^65000:4_0:247_0:211$ ip community-list expanded c1 permit 15586 ^65000:4_0:247_0:212$ ip community-list expanded c1 permit 15587 ^65000:4_0:247_0:213$ ip community-list expanded c1 permit 15588 ^65000:4_0:247_0:214$ ip community-list expanded c1 permit 15589 ^65000:4_0:247_0:215$ ip community-list expanded c1 permit 15590 ^65000:4_0:247_0:216$ ip community-list expanded c1 permit 15591 ^65000:4_0:247_0:217$ ip community-list expanded c1 permit 15592 ^65000:4_0:247_0:218$ ip community-list expanded c1 permit 15593 ^65000:4_0:247_0:219$ ip community-list expanded c1 permit 15594 ^65000:4_0:247_0:220$ ip community-list expanded c1 permit 15595 ^65000:4_0:247_0:221$ ip community-list expanded c1 permit 15596 ^65000:4_0:247_0:222$ ip community-list expanded c1 permit 15597 ^65000:4_0:247_0:223$ ip community-list expanded c1 permit 15598 ^65000:4_0:247_0:224$ ip community-list expanded c1 permit 15599 ^65000:4_0:247_0:225$ ip community-list expanded c1 permit 15600 ^65000:4_0:247_0:226$ ip community-list expanded c1 permit 15601 ^65000:4_0:247_0:227$ ip community-list expanded c1 permit 15602 ^65000:4_0:247_0:228$ ip community-list expanded c1 permit 15603 ^65000:4_0:247_0:229$ ip community-list expanded c1 permit 15604 ^65000:4_0:247_0:230$ ip community-list expanded c1 permit 15605 ^65000:4_0:247_0:231$ ip community-list expanded c1 permit 15606 ^65000:4_0:247_0:232$ ip community-list expanded c1 permit 15607 ^65000:4_0:247_0:233$ ip community-list expanded c1 permit 15608 ^65000:4_0:247_0:234$ ip community-list expanded c1 permit 15609 ^65000:4_0:247_0:235$ ip community-list expanded c1 permit 15610 ^65000:4_0:247_0:236$ ip community-list expanded c1 permit 15611 ^65000:4_0:247_0:237$ ip community-list expanded c1 permit 15612 ^65000:4_0:247_0:238$ ip community-list expanded c1 permit 15613 ^65000:4_0:247_0:239$ ip community-list expanded c1 permit 15614 ^65000:4_0:247_0:240$ ip community-list expanded c1 permit 15615 ^65000:4_0:247_0:241$ ip community-list expanded c1 permit 15616 ^65000:4_0:247_0:242$ ip community-list expanded c1 permit 15617 ^65000:4_0:247_0:243$ ip community-list expanded c1 permit 15618 ^65000:4_0:247_0:244$ ip community-list expanded c1 permit 15619 ^65000:4_0:247_0:245$ ip community-list expanded c1 permit 15620 ^65000:3_0:247_0:246$ ip community-list expanded c1 permit 15621 ^65000:4_0:247_0:246$ ip community-list expanded c1 permit 15622 ^65000:4_0:247_0:247$ ip community-list expanded c1 permit 15623 ^65000:4_0:248_0:125$ ip community-list expanded c1 permit 15624 ^65000:4_0:248_0:126$ ip community-list expanded c1 permit 15625 ^65000:4_0:248_0:127$ ip community-list expanded c1 permit 15626 ^65000:4_0:248_0:128$ ip community-list expanded c1 permit 15627 ^65000:4_0:248_0:129$ ip community-list expanded c1 permit 15628 ^65000:4_0:248_0:130$ ip community-list expanded c1 permit 15629 ^65000:4_0:248_0:131$ ip community-list expanded c1 permit 15630 ^65000:4_0:248_0:132$ ip community-list expanded c1 permit 15631 ^65000:4_0:248_0:133$ ip community-list expanded c1 permit 15632 ^65000:4_0:248_0:134$ ip community-list expanded c1 permit 15633 ^65000:4_0:248_0:135$ ip community-list expanded c1 permit 15634 ^65000:4_0:248_0:136$ ip community-list expanded c1 permit 15635 ^65000:4_0:248_0:137$ ip community-list expanded c1 permit 15636 ^65000:4_0:248_0:138$ ip community-list expanded c1 permit 15637 ^65000:4_0:248_0:139$ ip community-list expanded c1 permit 15638 ^65000:4_0:248_0:140$ ip community-list expanded c1 permit 15639 ^65000:4_0:248_0:141$ ip community-list expanded c1 permit 15640 ^65000:4_0:248_0:142$ ip community-list expanded c1 permit 15641 ^65000:4_0:248_0:143$ ip community-list expanded c1 permit 15642 ^65000:4_0:248_0:144$ ip community-list expanded c1 permit 15643 ^65000:4_0:248_0:145$ ip community-list expanded c1 permit 15644 ^65000:4_0:248_0:146$ ip community-list expanded c1 permit 15645 ^65000:4_0:248_0:147$ ip community-list expanded c1 permit 15646 ^65000:4_0:248_0:148$ ip community-list expanded c1 permit 15647 ^65000:4_0:248_0:149$ ip community-list expanded c1 permit 15648 ^65000:4_0:248_0:150$ ip community-list expanded c1 permit 15649 ^65000:4_0:248_0:151$ ip community-list expanded c1 permit 15650 ^65000:4_0:248_0:152$ ip community-list expanded c1 permit 15651 ^65000:4_0:248_0:153$ ip community-list expanded c1 permit 15652 ^65000:4_0:248_0:154$ ip community-list expanded c1 permit 15653 ^65000:4_0:248_0:155$ ip community-list expanded c1 permit 15654 ^65000:4_0:248_0:156$ ip community-list expanded c1 permit 15655 ^65000:4_0:248_0:157$ ip community-list expanded c1 permit 15656 ^65000:4_0:248_0:158$ ip community-list expanded c1 permit 15657 ^65000:4_0:248_0:159$ ip community-list expanded c1 permit 15658 ^65000:4_0:248_0:160$ ip community-list expanded c1 permit 15659 ^65000:4_0:248_0:161$ ip community-list expanded c1 permit 15660 ^65000:4_0:248_0:162$ ip community-list expanded c1 permit 15661 ^65000:4_0:248_0:163$ ip community-list expanded c1 permit 15662 ^65000:4_0:248_0:164$ ip community-list expanded c1 permit 15663 ^65000:4_0:248_0:165$ ip community-list expanded c1 permit 15664 ^65000:4_0:248_0:166$ ip community-list expanded c1 permit 15665 ^65000:4_0:248_0:167$ ip community-list expanded c1 permit 15666 ^65000:4_0:248_0:168$ ip community-list expanded c1 permit 15667 ^65000:4_0:248_0:169$ ip community-list expanded c1 permit 15668 ^65000:4_0:248_0:170$ ip community-list expanded c1 permit 15669 ^65000:4_0:248_0:171$ ip community-list expanded c1 permit 15670 ^65000:4_0:248_0:172$ ip community-list expanded c1 permit 15671 ^65000:4_0:248_0:173$ ip community-list expanded c1 permit 15672 ^65000:4_0:248_0:174$ ip community-list expanded c1 permit 15673 ^65000:4_0:248_0:175$ ip community-list expanded c1 permit 15674 ^65000:4_0:248_0:176$ ip community-list expanded c1 permit 15675 ^65000:4_0:248_0:177$ ip community-list expanded c1 permit 15676 ^65000:4_0:248_0:178$ ip community-list expanded c1 permit 15677 ^65000:4_0:248_0:179$ ip community-list expanded c1 permit 15678 ^65000:4_0:248_0:180$ ip community-list expanded c1 permit 15679 ^65000:4_0:248_0:181$ ip community-list expanded c1 permit 15680 ^65000:4_0:248_0:182$ ip community-list expanded c1 permit 15681 ^65000:4_0:248_0:183$ ip community-list expanded c1 permit 15682 ^65000:4_0:248_0:184$ ip community-list expanded c1 permit 15683 ^65000:4_0:248_0:185$ ip community-list expanded c1 permit 15684 ^65000:4_0:248_0:186$ ip community-list expanded c1 permit 15685 ^65000:4_0:248_0:187$ ip community-list expanded c1 permit 15686 ^65000:4_0:248_0:188$ ip community-list expanded c1 permit 15687 ^65000:4_0:248_0:189$ ip community-list expanded c1 permit 15688 ^65000:4_0:248_0:190$ ip community-list expanded c1 permit 15689 ^65000:4_0:248_0:191$ ip community-list expanded c1 permit 15690 ^65000:4_0:248_0:192$ ip community-list expanded c1 permit 15691 ^65000:4_0:248_0:193$ ip community-list expanded c1 permit 15692 ^65000:4_0:248_0:194$ ip community-list expanded c1 permit 15693 ^65000:4_0:248_0:195$ ip community-list expanded c1 permit 15694 ^65000:4_0:248_0:196$ ip community-list expanded c1 permit 15695 ^65000:4_0:248_0:197$ ip community-list expanded c1 permit 15696 ^65000:4_0:248_0:198$ ip community-list expanded c1 permit 15697 ^65000:4_0:248_0:199$ ip community-list expanded c1 permit 15698 ^65000:4_0:248_0:200$ ip community-list expanded c1 permit 15699 ^65000:4_0:248_0:201$ ip community-list expanded c1 permit 15700 ^65000:4_0:248_0:202$ ip community-list expanded c1 permit 15701 ^65000:4_0:248_0:203$ ip community-list expanded c1 permit 15702 ^65000:4_0:248_0:204$ ip community-list expanded c1 permit 15703 ^65000:4_0:248_0:205$ ip community-list expanded c1 permit 15704 ^65000:4_0:248_0:206$ ip community-list expanded c1 permit 15705 ^65000:4_0:248_0:207$ ip community-list expanded c1 permit 15706 ^65000:4_0:248_0:208$ ip community-list expanded c1 permit 15707 ^65000:4_0:248_0:209$ ip community-list expanded c1 permit 15708 ^65000:4_0:248_0:210$ ip community-list expanded c1 permit 15709 ^65000:4_0:248_0:211$ ip community-list expanded c1 permit 15710 ^65000:4_0:248_0:212$ ip community-list expanded c1 permit 15711 ^65000:4_0:248_0:213$ ip community-list expanded c1 permit 15712 ^65000:4_0:248_0:214$ ip community-list expanded c1 permit 15713 ^65000:4_0:248_0:215$ ip community-list expanded c1 permit 15714 ^65000:4_0:248_0:216$ ip community-list expanded c1 permit 15715 ^65000:4_0:248_0:217$ ip community-list expanded c1 permit 15716 ^65000:4_0:248_0:218$ ip community-list expanded c1 permit 15717 ^65000:4_0:248_0:219$ ip community-list expanded c1 permit 15718 ^65000:4_0:248_0:220$ ip community-list expanded c1 permit 15719 ^65000:4_0:248_0:221$ ip community-list expanded c1 permit 15720 ^65000:4_0:248_0:222$ ip community-list expanded c1 permit 15721 ^65000:4_0:248_0:223$ ip community-list expanded c1 permit 15722 ^65000:4_0:248_0:224$ ip community-list expanded c1 permit 15723 ^65000:4_0:248_0:225$ ip community-list expanded c1 permit 15724 ^65000:4_0:248_0:226$ ip community-list expanded c1 permit 15725 ^65000:4_0:248_0:227$ ip community-list expanded c1 permit 15726 ^65000:4_0:248_0:228$ ip community-list expanded c1 permit 15727 ^65000:4_0:248_0:229$ ip community-list expanded c1 permit 15728 ^65000:4_0:248_0:230$ ip community-list expanded c1 permit 15729 ^65000:4_0:248_0:231$ ip community-list expanded c1 permit 15730 ^65000:4_0:248_0:232$ ip community-list expanded c1 permit 15731 ^65000:4_0:248_0:233$ ip community-list expanded c1 permit 15732 ^65000:4_0:248_0:234$ ip community-list expanded c1 permit 15733 ^65000:4_0:248_0:235$ ip community-list expanded c1 permit 15734 ^65000:4_0:248_0:236$ ip community-list expanded c1 permit 15735 ^65000:4_0:248_0:237$ ip community-list expanded c1 permit 15736 ^65000:4_0:248_0:238$ ip community-list expanded c1 permit 15737 ^65000:4_0:248_0:239$ ip community-list expanded c1 permit 15738 ^65000:4_0:248_0:240$ ip community-list expanded c1 permit 15739 ^65000:4_0:248_0:241$ ip community-list expanded c1 permit 15740 ^65000:4_0:248_0:242$ ip community-list expanded c1 permit 15741 ^65000:4_0:248_0:243$ ip community-list expanded c1 permit 15742 ^65000:4_0:248_0:244$ ip community-list expanded c1 permit 15743 ^65000:4_0:248_0:245$ ip community-list expanded c1 permit 15744 ^65000:4_0:248_0:246$ ip community-list expanded c1 permit 15745 ^65000:3_0:248_0:247$ ip community-list expanded c1 permit 15746 ^65000:4_0:248_0:247$ ip community-list expanded c1 permit 15747 ^65000:4_0:248_0:248$ ip community-list expanded c1 permit 15748 ^65000:4_0:249_0:125$ ip community-list expanded c1 permit 15749 ^65000:4_0:249_0:126$ ip community-list expanded c1 permit 15750 ^65000:4_0:249_0:127$ ip community-list expanded c1 permit 15751 ^65000:4_0:249_0:128$ ip community-list expanded c1 permit 15752 ^65000:4_0:249_0:129$ ip community-list expanded c1 permit 15753 ^65000:4_0:249_0:130$ ip community-list expanded c1 permit 15754 ^65000:4_0:249_0:131$ ip community-list expanded c1 permit 15755 ^65000:4_0:249_0:132$ ip community-list expanded c1 permit 15756 ^65000:4_0:249_0:133$ ip community-list expanded c1 permit 15757 ^65000:4_0:249_0:134$ ip community-list expanded c1 permit 15758 ^65000:4_0:249_0:135$ ip community-list expanded c1 permit 15759 ^65000:4_0:249_0:136$ ip community-list expanded c1 permit 15760 ^65000:4_0:249_0:137$ ip community-list expanded c1 permit 15761 ^65000:4_0:249_0:138$ ip community-list expanded c1 permit 15762 ^65000:4_0:249_0:139$ ip community-list expanded c1 permit 15763 ^65000:4_0:249_0:140$ ip community-list expanded c1 permit 15764 ^65000:4_0:249_0:141$ ip community-list expanded c1 permit 15765 ^65000:4_0:249_0:142$ ip community-list expanded c1 permit 15766 ^65000:4_0:249_0:143$ ip community-list expanded c1 permit 15767 ^65000:4_0:249_0:144$ ip community-list expanded c1 permit 15768 ^65000:4_0:249_0:145$ ip community-list expanded c1 permit 15769 ^65000:4_0:249_0:146$ ip community-list expanded c1 permit 15770 ^65000:4_0:249_0:147$ ip community-list expanded c1 permit 15771 ^65000:4_0:249_0:148$ ip community-list expanded c1 permit 15772 ^65000:4_0:249_0:149$ ip community-list expanded c1 permit 15773 ^65000:4_0:249_0:150$ ip community-list expanded c1 permit 15774 ^65000:4_0:249_0:151$ ip community-list expanded c1 permit 15775 ^65000:4_0:249_0:152$ ip community-list expanded c1 permit 15776 ^65000:4_0:249_0:153$ ip community-list expanded c1 permit 15777 ^65000:4_0:249_0:154$ ip community-list expanded c1 permit 15778 ^65000:4_0:249_0:155$ ip community-list expanded c1 permit 15779 ^65000:4_0:249_0:156$ ip community-list expanded c1 permit 15780 ^65000:4_0:249_0:157$ ip community-list expanded c1 permit 15781 ^65000:4_0:249_0:158$ ip community-list expanded c1 permit 15782 ^65000:4_0:249_0:159$ ip community-list expanded c1 permit 15783 ^65000:4_0:249_0:160$ ip community-list expanded c1 permit 15784 ^65000:4_0:249_0:161$ ip community-list expanded c1 permit 15785 ^65000:4_0:249_0:162$ ip community-list expanded c1 permit 15786 ^65000:4_0:249_0:163$ ip community-list expanded c1 permit 15787 ^65000:4_0:249_0:164$ ip community-list expanded c1 permit 15788 ^65000:4_0:249_0:165$ ip community-list expanded c1 permit 15789 ^65000:4_0:249_0:166$ ip community-list expanded c1 permit 15790 ^65000:4_0:249_0:167$ ip community-list expanded c1 permit 15791 ^65000:4_0:249_0:168$ ip community-list expanded c1 permit 15792 ^65000:4_0:249_0:169$ ip community-list expanded c1 permit 15793 ^65000:4_0:249_0:170$ ip community-list expanded c1 permit 15794 ^65000:4_0:249_0:171$ ip community-list expanded c1 permit 15795 ^65000:4_0:249_0:172$ ip community-list expanded c1 permit 15796 ^65000:4_0:249_0:173$ ip community-list expanded c1 permit 15797 ^65000:4_0:249_0:174$ ip community-list expanded c1 permit 15798 ^65000:4_0:249_0:175$ ip community-list expanded c1 permit 15799 ^65000:4_0:249_0:176$ ip community-list expanded c1 permit 15800 ^65000:4_0:249_0:177$ ip community-list expanded c1 permit 15801 ^65000:4_0:249_0:178$ ip community-list expanded c1 permit 15802 ^65000:4_0:249_0:179$ ip community-list expanded c1 permit 15803 ^65000:4_0:249_0:180$ ip community-list expanded c1 permit 15804 ^65000:4_0:249_0:181$ ip community-list expanded c1 permit 15805 ^65000:4_0:249_0:182$ ip community-list expanded c1 permit 15806 ^65000:4_0:249_0:183$ ip community-list expanded c1 permit 15807 ^65000:4_0:249_0:184$ ip community-list expanded c1 permit 15808 ^65000:4_0:249_0:185$ ip community-list expanded c1 permit 15809 ^65000:4_0:249_0:186$ ip community-list expanded c1 permit 15810 ^65000:4_0:249_0:187$ ip community-list expanded c1 permit 15811 ^65000:4_0:249_0:188$ ip community-list expanded c1 permit 15812 ^65000:4_0:249_0:189$ ip community-list expanded c1 permit 15813 ^65000:4_0:249_0:190$ ip community-list expanded c1 permit 15814 ^65000:4_0:249_0:191$ ip community-list expanded c1 permit 15815 ^65000:4_0:249_0:192$ ip community-list expanded c1 permit 15816 ^65000:4_0:249_0:193$ ip community-list expanded c1 permit 15817 ^65000:4_0:249_0:194$ ip community-list expanded c1 permit 15818 ^65000:4_0:249_0:195$ ip community-list expanded c1 permit 15819 ^65000:4_0:249_0:196$ ip community-list expanded c1 permit 15820 ^65000:4_0:249_0:197$ ip community-list expanded c1 permit 15821 ^65000:4_0:249_0:198$ ip community-list expanded c1 permit 15822 ^65000:4_0:249_0:199$ ip community-list expanded c1 permit 15823 ^65000:4_0:249_0:200$ ip community-list expanded c1 permit 15824 ^65000:4_0:249_0:201$ ip community-list expanded c1 permit 15825 ^65000:4_0:249_0:202$ ip community-list expanded c1 permit 15826 ^65000:4_0:249_0:203$ ip community-list expanded c1 permit 15827 ^65000:4_0:249_0:204$ ip community-list expanded c1 permit 15828 ^65000:4_0:249_0:205$ ip community-list expanded c1 permit 15829 ^65000:4_0:249_0:206$ ip community-list expanded c1 permit 15830 ^65000:4_0:249_0:207$ ip community-list expanded c1 permit 15831 ^65000:4_0:249_0:208$ ip community-list expanded c1 permit 15832 ^65000:4_0:249_0:209$ ip community-list expanded c1 permit 15833 ^65000:4_0:249_0:210$ ip community-list expanded c1 permit 15834 ^65000:4_0:249_0:211$ ip community-list expanded c1 permit 15835 ^65000:4_0:249_0:212$ ip community-list expanded c1 permit 15836 ^65000:4_0:249_0:213$ ip community-list expanded c1 permit 15837 ^65000:4_0:249_0:214$ ip community-list expanded c1 permit 15838 ^65000:4_0:249_0:215$ ip community-list expanded c1 permit 15839 ^65000:4_0:249_0:216$ ip community-list expanded c1 permit 15840 ^65000:4_0:249_0:217$ ip community-list expanded c1 permit 15841 ^65000:4_0:249_0:218$ ip community-list expanded c1 permit 15842 ^65000:4_0:249_0:219$ ip community-list expanded c1 permit 15843 ^65000:4_0:249_0:220$ ip community-list expanded c1 permit 15844 ^65000:4_0:249_0:221$ ip community-list expanded c1 permit 15845 ^65000:4_0:249_0:222$ ip community-list expanded c1 permit 15846 ^65000:4_0:249_0:223$ ip community-list expanded c1 permit 15847 ^65000:4_0:249_0:224$ ip community-list expanded c1 permit 15848 ^65000:4_0:249_0:225$ ip community-list expanded c1 permit 15849 ^65000:4_0:249_0:226$ ip community-list expanded c1 permit 15850 ^65000:4_0:249_0:227$ ip community-list expanded c1 permit 15851 ^65000:4_0:249_0:228$ ip community-list expanded c1 permit 15852 ^65000:4_0:249_0:229$ ip community-list expanded c1 permit 15853 ^65000:4_0:249_0:230$ ip community-list expanded c1 permit 15854 ^65000:4_0:249_0:231$ ip community-list expanded c1 permit 15855 ^65000:4_0:249_0:232$ ip community-list expanded c1 permit 15856 ^65000:4_0:249_0:233$ ip community-list expanded c1 permit 15857 ^65000:4_0:249_0:234$ ip community-list expanded c1 permit 15858 ^65000:4_0:249_0:235$ ip community-list expanded c1 permit 15859 ^65000:4_0:249_0:236$ ip community-list expanded c1 permit 15860 ^65000:4_0:249_0:237$ ip community-list expanded c1 permit 15861 ^65000:4_0:249_0:238$ ip community-list expanded c1 permit 15862 ^65000:4_0:249_0:239$ ip community-list expanded c1 permit 15863 ^65000:4_0:249_0:240$ ip community-list expanded c1 permit 15864 ^65000:4_0:249_0:241$ ip community-list expanded c1 permit 15865 ^65000:4_0:249_0:242$ ip community-list expanded c1 permit 15866 ^65000:4_0:249_0:243$ ip community-list expanded c1 permit 15867 ^65000:4_0:249_0:244$ ip community-list expanded c1 permit 15868 ^65000:4_0:249_0:245$ ip community-list expanded c1 permit 15869 ^65000:4_0:249_0:246$ ip community-list expanded c1 permit 15870 ^65000:4_0:249_0:247$ ip community-list expanded c1 permit 15871 ^65000:3_0:249_0:248$ ip community-list expanded c1 permit 15872 ^65000:4_0:249_0:248$ ip community-list expanded c1 permit 15873 ^65000:4_0:249_0:249$ ip community-list expanded c1 permit 15874 ^65000:4_0:250_0:126$ ip community-list expanded c1 permit 15875 ^65000:4_0:250_0:127$ ip community-list expanded c1 permit 15876 ^65000:4_0:250_0:128$ ip community-list expanded c1 permit 15877 ^65000:4_0:250_0:129$ ip community-list expanded c1 permit 15878 ^65000:4_0:250_0:130$ ip community-list expanded c1 permit 15879 ^65000:4_0:250_0:131$ ip community-list expanded c1 permit 15880 ^65000:4_0:250_0:132$ ip community-list expanded c1 permit 15881 ^65000:4_0:250_0:133$ ip community-list expanded c1 permit 15882 ^65000:4_0:250_0:134$ ip community-list expanded c1 permit 15883 ^65000:4_0:250_0:135$ ip community-list expanded c1 permit 15884 ^65000:4_0:250_0:136$ ip community-list expanded c1 permit 15885 ^65000:4_0:250_0:137$ ip community-list expanded c1 permit 15886 ^65000:4_0:250_0:138$ ip community-list expanded c1 permit 15887 ^65000:4_0:250_0:139$ ip community-list expanded c1 permit 15888 ^65000:4_0:250_0:140$ ip community-list expanded c1 permit 15889 ^65000:4_0:250_0:141$ ip community-list expanded c1 permit 15890 ^65000:4_0:250_0:142$ ip community-list expanded c1 permit 15891 ^65000:4_0:250_0:143$ ip community-list expanded c1 permit 15892 ^65000:4_0:250_0:144$ ip community-list expanded c1 permit 15893 ^65000:4_0:250_0:145$ ip community-list expanded c1 permit 15894 ^65000:4_0:250_0:146$ ip community-list expanded c1 permit 15895 ^65000:4_0:250_0:147$ ip community-list expanded c1 permit 15896 ^65000:4_0:250_0:148$ ip community-list expanded c1 permit 15897 ^65000:4_0:250_0:149$ ip community-list expanded c1 permit 15898 ^65000:4_0:250_0:150$ ip community-list expanded c1 permit 15899 ^65000:4_0:250_0:151$ ip community-list expanded c1 permit 15900 ^65000:4_0:250_0:152$ ip community-list expanded c1 permit 15901 ^65000:4_0:250_0:153$ ip community-list expanded c1 permit 15902 ^65000:4_0:250_0:154$ ip community-list expanded c1 permit 15903 ^65000:4_0:250_0:155$ ip community-list expanded c1 permit 15904 ^65000:4_0:250_0:156$ ip community-list expanded c1 permit 15905 ^65000:4_0:250_0:157$ ip community-list expanded c1 permit 15906 ^65000:4_0:250_0:158$ ip community-list expanded c1 permit 15907 ^65000:4_0:250_0:159$ ip community-list expanded c1 permit 15908 ^65000:4_0:250_0:160$ ip community-list expanded c1 permit 15909 ^65000:4_0:250_0:161$ ip community-list expanded c1 permit 15910 ^65000:4_0:250_0:162$ ip community-list expanded c1 permit 15911 ^65000:4_0:250_0:163$ ip community-list expanded c1 permit 15912 ^65000:4_0:250_0:164$ ip community-list expanded c1 permit 15913 ^65000:4_0:250_0:165$ ip community-list expanded c1 permit 15914 ^65000:4_0:250_0:166$ ip community-list expanded c1 permit 15915 ^65000:4_0:250_0:167$ ip community-list expanded c1 permit 15916 ^65000:4_0:250_0:168$ ip community-list expanded c1 permit 15917 ^65000:4_0:250_0:169$ ip community-list expanded c1 permit 15918 ^65000:4_0:250_0:170$ ip community-list expanded c1 permit 15919 ^65000:4_0:250_0:171$ ip community-list expanded c1 permit 15920 ^65000:4_0:250_0:172$ ip community-list expanded c1 permit 15921 ^65000:4_0:250_0:173$ ip community-list expanded c1 permit 15922 ^65000:4_0:250_0:174$ ip community-list expanded c1 permit 15923 ^65000:4_0:250_0:175$ ip community-list expanded c1 permit 15924 ^65000:4_0:250_0:176$ ip community-list expanded c1 permit 15925 ^65000:4_0:250_0:177$ ip community-list expanded c1 permit 15926 ^65000:4_0:250_0:178$ ip community-list expanded c1 permit 15927 ^65000:4_0:250_0:179$ ip community-list expanded c1 permit 15928 ^65000:4_0:250_0:180$ ip community-list expanded c1 permit 15929 ^65000:4_0:250_0:181$ ip community-list expanded c1 permit 15930 ^65000:4_0:250_0:182$ ip community-list expanded c1 permit 15931 ^65000:4_0:250_0:183$ ip community-list expanded c1 permit 15932 ^65000:4_0:250_0:184$ ip community-list expanded c1 permit 15933 ^65000:4_0:250_0:185$ ip community-list expanded c1 permit 15934 ^65000:4_0:250_0:186$ ip community-list expanded c1 permit 15935 ^65000:4_0:250_0:187$ ip community-list expanded c1 permit 15936 ^65000:4_0:250_0:188$ ip community-list expanded c1 permit 15937 ^65000:4_0:250_0:189$ ip community-list expanded c1 permit 15938 ^65000:4_0:250_0:190$ ip community-list expanded c1 permit 15939 ^65000:4_0:250_0:191$ ip community-list expanded c1 permit 15940 ^65000:4_0:250_0:192$ ip community-list expanded c1 permit 15941 ^65000:4_0:250_0:193$ ip community-list expanded c1 permit 15942 ^65000:4_0:250_0:194$ ip community-list expanded c1 permit 15943 ^65000:4_0:250_0:195$ ip community-list expanded c1 permit 15944 ^65000:4_0:250_0:196$ ip community-list expanded c1 permit 15945 ^65000:4_0:250_0:197$ ip community-list expanded c1 permit 15946 ^65000:4_0:250_0:198$ ip community-list expanded c1 permit 15947 ^65000:4_0:250_0:199$ ip community-list expanded c1 permit 15948 ^65000:4_0:250_0:200$ ip community-list expanded c1 permit 15949 ^65000:4_0:250_0:201$ ip community-list expanded c1 permit 15950 ^65000:4_0:250_0:202$ ip community-list expanded c1 permit 15951 ^65000:4_0:250_0:203$ ip community-list expanded c1 permit 15952 ^65000:4_0:250_0:204$ ip community-list expanded c1 permit 15953 ^65000:4_0:250_0:205$ ip community-list expanded c1 permit 15954 ^65000:4_0:250_0:206$ ip community-list expanded c1 permit 15955 ^65000:4_0:250_0:207$ ip community-list expanded c1 permit 15956 ^65000:4_0:250_0:208$ ip community-list expanded c1 permit 15957 ^65000:4_0:250_0:209$ ip community-list expanded c1 permit 15958 ^65000:4_0:250_0:210$ ip community-list expanded c1 permit 15959 ^65000:4_0:250_0:211$ ip community-list expanded c1 permit 15960 ^65000:4_0:250_0:212$ ip community-list expanded c1 permit 15961 ^65000:4_0:250_0:213$ ip community-list expanded c1 permit 15962 ^65000:4_0:250_0:214$ ip community-list expanded c1 permit 15963 ^65000:4_0:250_0:215$ ip community-list expanded c1 permit 15964 ^65000:4_0:250_0:216$ ip community-list expanded c1 permit 15965 ^65000:4_0:250_0:217$ ip community-list expanded c1 permit 15966 ^65000:4_0:250_0:218$ ip community-list expanded c1 permit 15967 ^65000:4_0:250_0:219$ ip community-list expanded c1 permit 15968 ^65000:4_0:250_0:220$ ip community-list expanded c1 permit 15969 ^65000:4_0:250_0:221$ ip community-list expanded c1 permit 15970 ^65000:4_0:250_0:222$ ip community-list expanded c1 permit 15971 ^65000:4_0:250_0:223$ ip community-list expanded c1 permit 15972 ^65000:4_0:250_0:224$ ip community-list expanded c1 permit 15973 ^65000:4_0:250_0:225$ ip community-list expanded c1 permit 15974 ^65000:4_0:250_0:226$ ip community-list expanded c1 permit 15975 ^65000:4_0:250_0:227$ ip community-list expanded c1 permit 15976 ^65000:4_0:250_0:228$ ip community-list expanded c1 permit 15977 ^65000:4_0:250_0:229$ ip community-list expanded c1 permit 15978 ^65000:4_0:250_0:230$ ip community-list expanded c1 permit 15979 ^65000:4_0:250_0:231$ ip community-list expanded c1 permit 15980 ^65000:4_0:250_0:232$ ip community-list expanded c1 permit 15981 ^65000:4_0:250_0:233$ ip community-list expanded c1 permit 15982 ^65000:4_0:250_0:234$ ip community-list expanded c1 permit 15983 ^65000:4_0:250_0:235$ ip community-list expanded c1 permit 15984 ^65000:4_0:250_0:236$ ip community-list expanded c1 permit 15985 ^65000:4_0:250_0:237$ ip community-list expanded c1 permit 15986 ^65000:4_0:250_0:238$ ip community-list expanded c1 permit 15987 ^65000:4_0:250_0:239$ ip community-list expanded c1 permit 15988 ^65000:4_0:250_0:240$ ip community-list expanded c1 permit 15989 ^65000:4_0:250_0:241$ ip community-list expanded c1 permit 15990 ^65000:4_0:250_0:242$ ip community-list expanded c1 permit 15991 ^65000:4_0:250_0:243$ ip community-list expanded c1 permit 15992 ^65000:4_0:250_0:244$ ip community-list expanded c1 permit 15993 ^65000:4_0:250_0:245$ ip community-list expanded c1 permit 15994 ^65000:4_0:250_0:246$ ip community-list expanded c1 permit 15995 ^65000:4_0:250_0:247$ ip community-list expanded c1 permit 15996 ^65000:4_0:250_0:248$ ip community-list expanded c1 permit 15997 ^65000:3_0:250_0:249$ ip community-list expanded c1 permit 15998 ^65000:4_0:250_0:249$ ip community-list expanded c1 permit 15999 ^65000:4_0:250_0:250$ ip community-list expanded c1 permit 16000 ^65000:4_0:251_0:126$ ip community-list expanded c1 permit 16001 ^65000:4_0:251_0:127$ ip community-list expanded c1 permit 16002 ^65000:4_0:251_0:128$ ip community-list expanded c1 permit 16003 ^65000:4_0:251_0:129$ ip community-list expanded c1 permit 16004 ^65000:4_0:251_0:130$ ip community-list expanded c1 permit 16005 ^65000:4_0:251_0:131$ ip community-list expanded c1 permit 16006 ^65000:4_0:251_0:132$ ip community-list expanded c1 permit 16007 ^65000:4_0:251_0:133$ ip community-list expanded c1 permit 16008 ^65000:4_0:251_0:134$ ip community-list expanded c1 permit 16009 ^65000:4_0:251_0:135$ ip community-list expanded c1 permit 16010 ^65000:4_0:251_0:136$ ip community-list expanded c1 permit 16011 ^65000:4_0:251_0:137$ ip community-list expanded c1 permit 16012 ^65000:4_0:251_0:138$ ip community-list expanded c1 permit 16013 ^65000:4_0:251_0:139$ ip community-list expanded c1 permit 16014 ^65000:4_0:251_0:140$ ip community-list expanded c1 permit 16015 ^65000:4_0:251_0:141$ ip community-list expanded c1 permit 16016 ^65000:4_0:251_0:142$ ip community-list expanded c1 permit 16017 ^65000:4_0:251_0:143$ ip community-list expanded c1 permit 16018 ^65000:4_0:251_0:144$ ip community-list expanded c1 permit 16019 ^65000:4_0:251_0:145$ ip community-list expanded c1 permit 16020 ^65000:4_0:251_0:146$ ip community-list expanded c1 permit 16021 ^65000:4_0:251_0:147$ ip community-list expanded c1 permit 16022 ^65000:4_0:251_0:148$ ip community-list expanded c1 permit 16023 ^65000:4_0:251_0:149$ ip community-list expanded c1 permit 16024 ^65000:4_0:251_0:150$ ip community-list expanded c1 permit 16025 ^65000:4_0:251_0:151$ ip community-list expanded c1 permit 16026 ^65000:4_0:251_0:152$ ip community-list expanded c1 permit 16027 ^65000:4_0:251_0:153$ ip community-list expanded c1 permit 16028 ^65000:4_0:251_0:154$ ip community-list expanded c1 permit 16029 ^65000:4_0:251_0:155$ ip community-list expanded c1 permit 16030 ^65000:4_0:251_0:156$ ip community-list expanded c1 permit 16031 ^65000:4_0:251_0:157$ ip community-list expanded c1 permit 16032 ^65000:4_0:251_0:158$ ip community-list expanded c1 permit 16033 ^65000:4_0:251_0:159$ ip community-list expanded c1 permit 16034 ^65000:4_0:251_0:160$ ip community-list expanded c1 permit 16035 ^65000:4_0:251_0:161$ ip community-list expanded c1 permit 16036 ^65000:4_0:251_0:162$ ip community-list expanded c1 permit 16037 ^65000:4_0:251_0:163$ ip community-list expanded c1 permit 16038 ^65000:4_0:251_0:164$ ip community-list expanded c1 permit 16039 ^65000:4_0:251_0:165$ ip community-list expanded c1 permit 16040 ^65000:4_0:251_0:166$ ip community-list expanded c1 permit 16041 ^65000:4_0:251_0:167$ ip community-list expanded c1 permit 16042 ^65000:4_0:251_0:168$ ip community-list expanded c1 permit 16043 ^65000:4_0:251_0:169$ ip community-list expanded c1 permit 16044 ^65000:4_0:251_0:170$ ip community-list expanded c1 permit 16045 ^65000:4_0:251_0:171$ ip community-list expanded c1 permit 16046 ^65000:4_0:251_0:172$ ip community-list expanded c1 permit 16047 ^65000:4_0:251_0:173$ ip community-list expanded c1 permit 16048 ^65000:4_0:251_0:174$ ip community-list expanded c1 permit 16049 ^65000:4_0:251_0:175$ ip community-list expanded c1 permit 16050 ^65000:4_0:251_0:176$ ip community-list expanded c1 permit 16051 ^65000:4_0:251_0:177$ ip community-list expanded c1 permit 16052 ^65000:4_0:251_0:178$ ip community-list expanded c1 permit 16053 ^65000:4_0:251_0:179$ ip community-list expanded c1 permit 16054 ^65000:4_0:251_0:180$ ip community-list expanded c1 permit 16055 ^65000:4_0:251_0:181$ ip community-list expanded c1 permit 16056 ^65000:4_0:251_0:182$ ip community-list expanded c1 permit 16057 ^65000:4_0:251_0:183$ ip community-list expanded c1 permit 16058 ^65000:4_0:251_0:184$ ip community-list expanded c1 permit 16059 ^65000:4_0:251_0:185$ ip community-list expanded c1 permit 16060 ^65000:4_0:251_0:186$ ip community-list expanded c1 permit 16061 ^65000:4_0:251_0:187$ ip community-list expanded c1 permit 16062 ^65000:4_0:251_0:188$ ip community-list expanded c1 permit 16063 ^65000:4_0:251_0:189$ ip community-list expanded c1 permit 16064 ^65000:4_0:251_0:190$ ip community-list expanded c1 permit 16065 ^65000:4_0:251_0:191$ ip community-list expanded c1 permit 16066 ^65000:4_0:251_0:192$ ip community-list expanded c1 permit 16067 ^65000:4_0:251_0:193$ ip community-list expanded c1 permit 16068 ^65000:4_0:251_0:194$ ip community-list expanded c1 permit 16069 ^65000:4_0:251_0:195$ ip community-list expanded c1 permit 16070 ^65000:4_0:251_0:196$ ip community-list expanded c1 permit 16071 ^65000:4_0:251_0:197$ ip community-list expanded c1 permit 16072 ^65000:4_0:251_0:198$ ip community-list expanded c1 permit 16073 ^65000:4_0:251_0:199$ ip community-list expanded c1 permit 16074 ^65000:4_0:251_0:200$ ip community-list expanded c1 permit 16075 ^65000:4_0:251_0:201$ ip community-list expanded c1 permit 16076 ^65000:4_0:251_0:202$ ip community-list expanded c1 permit 16077 ^65000:4_0:251_0:203$ ip community-list expanded c1 permit 16078 ^65000:4_0:251_0:204$ ip community-list expanded c1 permit 16079 ^65000:4_0:251_0:205$ ip community-list expanded c1 permit 16080 ^65000:4_0:251_0:206$ ip community-list expanded c1 permit 16081 ^65000:4_0:251_0:207$ ip community-list expanded c1 permit 16082 ^65000:4_0:251_0:208$ ip community-list expanded c1 permit 16083 ^65000:4_0:251_0:209$ ip community-list expanded c1 permit 16084 ^65000:4_0:251_0:210$ ip community-list expanded c1 permit 16085 ^65000:4_0:251_0:211$ ip community-list expanded c1 permit 16086 ^65000:4_0:251_0:212$ ip community-list expanded c1 permit 16087 ^65000:4_0:251_0:213$ ip community-list expanded c1 permit 16088 ^65000:4_0:251_0:214$ ip community-list expanded c1 permit 16089 ^65000:4_0:251_0:215$ ip community-list expanded c1 permit 16090 ^65000:4_0:251_0:216$ ip community-list expanded c1 permit 16091 ^65000:4_0:251_0:217$ ip community-list expanded c1 permit 16092 ^65000:4_0:251_0:218$ ip community-list expanded c1 permit 16093 ^65000:4_0:251_0:219$ ip community-list expanded c1 permit 16094 ^65000:4_0:251_0:220$ ip community-list expanded c1 permit 16095 ^65000:4_0:251_0:221$ ip community-list expanded c1 permit 16096 ^65000:4_0:251_0:222$ ip community-list expanded c1 permit 16097 ^65000:4_0:251_0:223$ ip community-list expanded c1 permit 16098 ^65000:4_0:251_0:224$ ip community-list expanded c1 permit 16099 ^65000:4_0:251_0:225$ ip community-list expanded c1 permit 16100 ^65000:4_0:251_0:226$ ip community-list expanded c1 permit 16101 ^65000:4_0:251_0:227$ ip community-list expanded c1 permit 16102 ^65000:4_0:251_0:228$ ip community-list expanded c1 permit 16103 ^65000:4_0:251_0:229$ ip community-list expanded c1 permit 16104 ^65000:4_0:251_0:230$ ip community-list expanded c1 permit 16105 ^65000:4_0:251_0:231$ ip community-list expanded c1 permit 16106 ^65000:4_0:251_0:232$ ip community-list expanded c1 permit 16107 ^65000:4_0:251_0:233$ ip community-list expanded c1 permit 16108 ^65000:4_0:251_0:234$ ip community-list expanded c1 permit 16109 ^65000:4_0:251_0:235$ ip community-list expanded c1 permit 16110 ^65000:4_0:251_0:236$ ip community-list expanded c1 permit 16111 ^65000:4_0:251_0:237$ ip community-list expanded c1 permit 16112 ^65000:4_0:251_0:238$ ip community-list expanded c1 permit 16113 ^65000:4_0:251_0:239$ ip community-list expanded c1 permit 16114 ^65000:4_0:251_0:240$ ip community-list expanded c1 permit 16115 ^65000:4_0:251_0:241$ ip community-list expanded c1 permit 16116 ^65000:4_0:251_0:242$ ip community-list expanded c1 permit 16117 ^65000:4_0:251_0:243$ ip community-list expanded c1 permit 16118 ^65000:4_0:251_0:244$ ip community-list expanded c1 permit 16119 ^65000:4_0:251_0:245$ ip community-list expanded c1 permit 16120 ^65000:4_0:251_0:246$ ip community-list expanded c1 permit 16121 ^65000:4_0:251_0:247$ ip community-list expanded c1 permit 16122 ^65000:4_0:251_0:248$ ip community-list expanded c1 permit 16123 ^65000:4_0:251_0:249$ ip community-list expanded c1 permit 16124 ^65000:3_0:251_0:250$ ip community-list expanded c1 permit 16125 ^65000:4_0:251_0:250$ ip community-list expanded c1 permit 16126 ^65000:4_0:251_0:251$ ip community-list expanded c1 permit 16127 ^65000:4_0:252_0:127$ ip community-list expanded c1 permit 16128 ^65000:4_0:252_0:128$ ip community-list expanded c1 permit 16129 ^65000:4_0:252_0:129$ ip community-list expanded c1 permit 16130 ^65000:4_0:252_0:130$ ip community-list expanded c1 permit 16131 ^65000:4_0:252_0:131$ ip community-list expanded c1 permit 16132 ^65000:4_0:252_0:132$ ip community-list expanded c1 permit 16133 ^65000:4_0:252_0:133$ ip community-list expanded c1 permit 16134 ^65000:4_0:252_0:134$ ip community-list expanded c1 permit 16135 ^65000:4_0:252_0:135$ ip community-list expanded c1 permit 16136 ^65000:4_0:252_0:136$ ip community-list expanded c1 permit 16137 ^65000:4_0:252_0:137$ ip community-list expanded c1 permit 16138 ^65000:4_0:252_0:138$ ip community-list expanded c1 permit 16139 ^65000:4_0:252_0:139$ ip community-list expanded c1 permit 16140 ^65000:4_0:252_0:140$ ip community-list expanded c1 permit 16141 ^65000:4_0:252_0:141$ ip community-list expanded c1 permit 16142 ^65000:4_0:252_0:142$ ip community-list expanded c1 permit 16143 ^65000:4_0:252_0:143$ ip community-list expanded c1 permit 16144 ^65000:4_0:252_0:144$ ip community-list expanded c1 permit 16145 ^65000:4_0:252_0:145$ ip community-list expanded c1 permit 16146 ^65000:4_0:252_0:146$ ip community-list expanded c1 permit 16147 ^65000:4_0:252_0:147$ ip community-list expanded c1 permit 16148 ^65000:4_0:252_0:148$ ip community-list expanded c1 permit 16149 ^65000:4_0:252_0:149$ ip community-list expanded c1 permit 16150 ^65000:4_0:252_0:150$ ip community-list expanded c1 permit 16151 ^65000:4_0:252_0:151$ ip community-list expanded c1 permit 16152 ^65000:4_0:252_0:152$ ip community-list expanded c1 permit 16153 ^65000:4_0:252_0:153$ ip community-list expanded c1 permit 16154 ^65000:4_0:252_0:154$ ip community-list expanded c1 permit 16155 ^65000:4_0:252_0:155$ ip community-list expanded c1 permit 16156 ^65000:4_0:252_0:156$ ip community-list expanded c1 permit 16157 ^65000:4_0:252_0:157$ ip community-list expanded c1 permit 16158 ^65000:4_0:252_0:158$ ip community-list expanded c1 permit 16159 ^65000:4_0:252_0:159$ ip community-list expanded c1 permit 16160 ^65000:4_0:252_0:160$ ip community-list expanded c1 permit 16161 ^65000:4_0:252_0:161$ ip community-list expanded c1 permit 16162 ^65000:4_0:252_0:162$ ip community-list expanded c1 permit 16163 ^65000:4_0:252_0:163$ ip community-list expanded c1 permit 16164 ^65000:4_0:252_0:164$ ip community-list expanded c1 permit 16165 ^65000:4_0:252_0:165$ ip community-list expanded c1 permit 16166 ^65000:4_0:252_0:166$ ip community-list expanded c1 permit 16167 ^65000:4_0:252_0:167$ ip community-list expanded c1 permit 16168 ^65000:4_0:252_0:168$ ip community-list expanded c1 permit 16169 ^65000:4_0:252_0:169$ ip community-list expanded c1 permit 16170 ^65000:4_0:252_0:170$ ip community-list expanded c1 permit 16171 ^65000:4_0:252_0:171$ ip community-list expanded c1 permit 16172 ^65000:4_0:252_0:172$ ip community-list expanded c1 permit 16173 ^65000:4_0:252_0:173$ ip community-list expanded c1 permit 16174 ^65000:4_0:252_0:174$ ip community-list expanded c1 permit 16175 ^65000:4_0:252_0:175$ ip community-list expanded c1 permit 16176 ^65000:4_0:252_0:176$ ip community-list expanded c1 permit 16177 ^65000:4_0:252_0:177$ ip community-list expanded c1 permit 16178 ^65000:4_0:252_0:178$ ip community-list expanded c1 permit 16179 ^65000:4_0:252_0:179$ ip community-list expanded c1 permit 16180 ^65000:4_0:252_0:180$ ip community-list expanded c1 permit 16181 ^65000:4_0:252_0:181$ ip community-list expanded c1 permit 16182 ^65000:4_0:252_0:182$ ip community-list expanded c1 permit 16183 ^65000:4_0:252_0:183$ ip community-list expanded c1 permit 16184 ^65000:4_0:252_0:184$ ip community-list expanded c1 permit 16185 ^65000:4_0:252_0:185$ ip community-list expanded c1 permit 16186 ^65000:4_0:252_0:186$ ip community-list expanded c1 permit 16187 ^65000:4_0:252_0:187$ ip community-list expanded c1 permit 16188 ^65000:4_0:252_0:188$ ip community-list expanded c1 permit 16189 ^65000:4_0:252_0:189$ ip community-list expanded c1 permit 16190 ^65000:4_0:252_0:190$ ip community-list expanded c1 permit 16191 ^65000:4_0:252_0:191$ ip community-list expanded c1 permit 16192 ^65000:4_0:252_0:192$ ip community-list expanded c1 permit 16193 ^65000:4_0:252_0:193$ ip community-list expanded c1 permit 16194 ^65000:4_0:252_0:194$ ip community-list expanded c1 permit 16195 ^65000:4_0:252_0:195$ ip community-list expanded c1 permit 16196 ^65000:4_0:252_0:196$ ip community-list expanded c1 permit 16197 ^65000:4_0:252_0:197$ ip community-list expanded c1 permit 16198 ^65000:4_0:252_0:198$ ip community-list expanded c1 permit 16199 ^65000:4_0:252_0:199$ ip community-list expanded c1 permit 16200 ^65000:4_0:252_0:200$ ip community-list expanded c1 permit 16201 ^65000:4_0:252_0:201$ ip community-list expanded c1 permit 16202 ^65000:4_0:252_0:202$ ip community-list expanded c1 permit 16203 ^65000:4_0:252_0:203$ ip community-list expanded c1 permit 16204 ^65000:4_0:252_0:204$ ip community-list expanded c1 permit 16205 ^65000:4_0:252_0:205$ ip community-list expanded c1 permit 16206 ^65000:4_0:252_0:206$ ip community-list expanded c1 permit 16207 ^65000:4_0:252_0:207$ ip community-list expanded c1 permit 16208 ^65000:4_0:252_0:208$ ip community-list expanded c1 permit 16209 ^65000:4_0:252_0:209$ ip community-list expanded c1 permit 16210 ^65000:4_0:252_0:210$ ip community-list expanded c1 permit 16211 ^65000:4_0:252_0:211$ ip community-list expanded c1 permit 16212 ^65000:4_0:252_0:212$ ip community-list expanded c1 permit 16213 ^65000:4_0:252_0:213$ ip community-list expanded c1 permit 16214 ^65000:4_0:252_0:214$ ip community-list expanded c1 permit 16215 ^65000:4_0:252_0:215$ ip community-list expanded c1 permit 16216 ^65000:4_0:252_0:216$ ip community-list expanded c1 permit 16217 ^65000:4_0:252_0:217$ ip community-list expanded c1 permit 16218 ^65000:4_0:252_0:218$ ip community-list expanded c1 permit 16219 ^65000:4_0:252_0:219$ ip community-list expanded c1 permit 16220 ^65000:4_0:252_0:220$ ip community-list expanded c1 permit 16221 ^65000:4_0:252_0:221$ ip community-list expanded c1 permit 16222 ^65000:4_0:252_0:222$ ip community-list expanded c1 permit 16223 ^65000:4_0:252_0:223$ ip community-list expanded c1 permit 16224 ^65000:4_0:252_0:224$ ip community-list expanded c1 permit 16225 ^65000:4_0:252_0:225$ ip community-list expanded c1 permit 16226 ^65000:4_0:252_0:226$ ip community-list expanded c1 permit 16227 ^65000:4_0:252_0:227$ ip community-list expanded c1 permit 16228 ^65000:4_0:252_0:228$ ip community-list expanded c1 permit 16229 ^65000:4_0:252_0:229$ ip community-list expanded c1 permit 16230 ^65000:4_0:252_0:230$ ip community-list expanded c1 permit 16231 ^65000:4_0:252_0:231$ ip community-list expanded c1 permit 16232 ^65000:4_0:252_0:232$ ip community-list expanded c1 permit 16233 ^65000:4_0:252_0:233$ ip community-list expanded c1 permit 16234 ^65000:4_0:252_0:234$ ip community-list expanded c1 permit 16235 ^65000:4_0:252_0:235$ ip community-list expanded c1 permit 16236 ^65000:4_0:252_0:236$ ip community-list expanded c1 permit 16237 ^65000:4_0:252_0:237$ ip community-list expanded c1 permit 16238 ^65000:4_0:252_0:238$ ip community-list expanded c1 permit 16239 ^65000:4_0:252_0:239$ ip community-list expanded c1 permit 16240 ^65000:4_0:252_0:240$ ip community-list expanded c1 permit 16241 ^65000:4_0:252_0:241$ ip community-list expanded c1 permit 16242 ^65000:4_0:252_0:242$ ip community-list expanded c1 permit 16243 ^65000:4_0:252_0:243$ ip community-list expanded c1 permit 16244 ^65000:4_0:252_0:244$ ip community-list expanded c1 permit 16245 ^65000:4_0:252_0:245$ ip community-list expanded c1 permit 16246 ^65000:4_0:252_0:246$ ip community-list expanded c1 permit 16247 ^65000:4_0:252_0:247$ ip community-list expanded c1 permit 16248 ^65000:4_0:252_0:248$ ip community-list expanded c1 permit 16249 ^65000:4_0:252_0:249$ ip community-list expanded c1 permit 16250 ^65000:4_0:252_0:250$ ip community-list expanded c1 permit 16251 ^65000:3_0:252_0:251$ ip community-list expanded c1 permit 16252 ^65000:4_0:252_0:251$ ip community-list expanded c1 permit 16253 ^65000:4_0:252_0:252$ ip community-list expanded c1 permit 16254 ^65000:4_0:253_0:127$ ip community-list expanded c1 permit 16255 ^65000:4_0:253_0:128$ ip community-list expanded c1 permit 16256 ^65000:4_0:253_0:129$ ip community-list expanded c1 permit 16257 ^65000:4_0:253_0:130$ ip community-list expanded c1 permit 16258 ^65000:4_0:253_0:131$ ip community-list expanded c1 permit 16259 ^65000:4_0:253_0:132$ ip community-list expanded c1 permit 16260 ^65000:4_0:253_0:133$ ip community-list expanded c1 permit 16261 ^65000:4_0:253_0:134$ ip community-list expanded c1 permit 16262 ^65000:4_0:253_0:135$ ip community-list expanded c1 permit 16263 ^65000:4_0:253_0:136$ ip community-list expanded c1 permit 16264 ^65000:4_0:253_0:137$ ip community-list expanded c1 permit 16265 ^65000:4_0:253_0:138$ ip community-list expanded c1 permit 16266 ^65000:4_0:253_0:139$ ip community-list expanded c1 permit 16267 ^65000:4_0:253_0:140$ ip community-list expanded c1 permit 16268 ^65000:4_0:253_0:141$ ip community-list expanded c1 permit 16269 ^65000:4_0:253_0:142$ ip community-list expanded c1 permit 16270 ^65000:4_0:253_0:143$ ip community-list expanded c1 permit 16271 ^65000:4_0:253_0:144$ ip community-list expanded c1 permit 16272 ^65000:4_0:253_0:145$ ip community-list expanded c1 permit 16273 ^65000:4_0:253_0:146$ ip community-list expanded c1 permit 16274 ^65000:4_0:253_0:147$ ip community-list expanded c1 permit 16275 ^65000:4_0:253_0:148$ ip community-list expanded c1 permit 16276 ^65000:4_0:253_0:149$ ip community-list expanded c1 permit 16277 ^65000:4_0:253_0:150$ ip community-list expanded c1 permit 16278 ^65000:4_0:253_0:151$ ip community-list expanded c1 permit 16279 ^65000:4_0:253_0:152$ ip community-list expanded c1 permit 16280 ^65000:4_0:253_0:153$ ip community-list expanded c1 permit 16281 ^65000:4_0:253_0:154$ ip community-list expanded c1 permit 16282 ^65000:4_0:253_0:155$ ip community-list expanded c1 permit 16283 ^65000:4_0:253_0:156$ ip community-list expanded c1 permit 16284 ^65000:4_0:253_0:157$ ip community-list expanded c1 permit 16285 ^65000:4_0:253_0:158$ ip community-list expanded c1 permit 16286 ^65000:4_0:253_0:159$ ip community-list expanded c1 permit 16287 ^65000:4_0:253_0:160$ ip community-list expanded c1 permit 16288 ^65000:4_0:253_0:161$ ip community-list expanded c1 permit 16289 ^65000:4_0:253_0:162$ ip community-list expanded c1 permit 16290 ^65000:4_0:253_0:163$ ip community-list expanded c1 permit 16291 ^65000:4_0:253_0:164$ ip community-list expanded c1 permit 16292 ^65000:4_0:253_0:165$ ip community-list expanded c1 permit 16293 ^65000:4_0:253_0:166$ ip community-list expanded c1 permit 16294 ^65000:4_0:253_0:167$ ip community-list expanded c1 permit 16295 ^65000:4_0:253_0:168$ ip community-list expanded c1 permit 16296 ^65000:4_0:253_0:169$ ip community-list expanded c1 permit 16297 ^65000:4_0:253_0:170$ ip community-list expanded c1 permit 16298 ^65000:4_0:253_0:171$ ip community-list expanded c1 permit 16299 ^65000:4_0:253_0:172$ ip community-list expanded c1 permit 16300 ^65000:4_0:253_0:173$ ip community-list expanded c1 permit 16301 ^65000:4_0:253_0:174$ ip community-list expanded c1 permit 16302 ^65000:4_0:253_0:175$ ip community-list expanded c1 permit 16303 ^65000:4_0:253_0:176$ ip community-list expanded c1 permit 16304 ^65000:4_0:253_0:177$ ip community-list expanded c1 permit 16305 ^65000:4_0:253_0:178$ ip community-list expanded c1 permit 16306 ^65000:4_0:253_0:179$ ip community-list expanded c1 permit 16307 ^65000:4_0:253_0:180$ ip community-list expanded c1 permit 16308 ^65000:4_0:253_0:181$ ip community-list expanded c1 permit 16309 ^65000:4_0:253_0:182$ ip community-list expanded c1 permit 16310 ^65000:4_0:253_0:183$ ip community-list expanded c1 permit 16311 ^65000:4_0:253_0:184$ ip community-list expanded c1 permit 16312 ^65000:4_0:253_0:185$ ip community-list expanded c1 permit 16313 ^65000:4_0:253_0:186$ ip community-list expanded c1 permit 16314 ^65000:4_0:253_0:187$ ip community-list expanded c1 permit 16315 ^65000:4_0:253_0:188$ ip community-list expanded c1 permit 16316 ^65000:4_0:253_0:189$ ip community-list expanded c1 permit 16317 ^65000:4_0:253_0:190$ ip community-list expanded c1 permit 16318 ^65000:4_0:253_0:191$ ip community-list expanded c1 permit 16319 ^65000:4_0:253_0:192$ ip community-list expanded c1 permit 16320 ^65000:4_0:253_0:193$ ip community-list expanded c1 permit 16321 ^65000:4_0:253_0:194$ ip community-list expanded c1 permit 16322 ^65000:4_0:253_0:195$ ip community-list expanded c1 permit 16323 ^65000:4_0:253_0:196$ ip community-list expanded c1 permit 16324 ^65000:4_0:253_0:197$ ip community-list expanded c1 permit 16325 ^65000:4_0:253_0:198$ ip community-list expanded c1 permit 16326 ^65000:4_0:253_0:199$ ip community-list expanded c1 permit 16327 ^65000:4_0:253_0:200$ ip community-list expanded c1 permit 16328 ^65000:4_0:253_0:201$ ip community-list expanded c1 permit 16329 ^65000:4_0:253_0:202$ ip community-list expanded c1 permit 16330 ^65000:4_0:253_0:203$ ip community-list expanded c1 permit 16331 ^65000:4_0:253_0:204$ ip community-list expanded c1 permit 16332 ^65000:4_0:253_0:205$ ip community-list expanded c1 permit 16333 ^65000:4_0:253_0:206$ ip community-list expanded c1 permit 16334 ^65000:4_0:253_0:207$ ip community-list expanded c1 permit 16335 ^65000:4_0:253_0:208$ ip community-list expanded c1 permit 16336 ^65000:4_0:253_0:209$ ip community-list expanded c1 permit 16337 ^65000:4_0:253_0:210$ ip community-list expanded c1 permit 16338 ^65000:4_0:253_0:211$ ip community-list expanded c1 permit 16339 ^65000:4_0:253_0:212$ ip community-list expanded c1 permit 16340 ^65000:4_0:253_0:213$ ip community-list expanded c1 permit 16341 ^65000:4_0:253_0:214$ ip community-list expanded c1 permit 16342 ^65000:4_0:253_0:215$ ip community-list expanded c1 permit 16343 ^65000:4_0:253_0:216$ ip community-list expanded c1 permit 16344 ^65000:4_0:253_0:217$ ip community-list expanded c1 permit 16345 ^65000:4_0:253_0:218$ ip community-list expanded c1 permit 16346 ^65000:4_0:253_0:219$ ip community-list expanded c1 permit 16347 ^65000:4_0:253_0:220$ ip community-list expanded c1 permit 16348 ^65000:4_0:253_0:221$ ip community-list expanded c1 permit 16349 ^65000:4_0:253_0:222$ ip community-list expanded c1 permit 16350 ^65000:4_0:253_0:223$ ip community-list expanded c1 permit 16351 ^65000:4_0:253_0:224$ ip community-list expanded c1 permit 16352 ^65000:4_0:253_0:225$ ip community-list expanded c1 permit 16353 ^65000:4_0:253_0:226$ ip community-list expanded c1 permit 16354 ^65000:4_0:253_0:227$ ip community-list expanded c1 permit 16355 ^65000:4_0:253_0:228$ ip community-list expanded c1 permit 16356 ^65000:4_0:253_0:229$ ip community-list expanded c1 permit 16357 ^65000:4_0:253_0:230$ ip community-list expanded c1 permit 16358 ^65000:4_0:253_0:231$ ip community-list expanded c1 permit 16359 ^65000:4_0:253_0:232$ ip community-list expanded c1 permit 16360 ^65000:4_0:253_0:233$ ip community-list expanded c1 permit 16361 ^65000:4_0:253_0:234$ ip community-list expanded c1 permit 16362 ^65000:4_0:253_0:235$ ip community-list expanded c1 permit 16363 ^65000:4_0:253_0:236$ ip community-list expanded c1 permit 16364 ^65000:4_0:253_0:237$ ip community-list expanded c1 permit 16365 ^65000:4_0:253_0:238$ ip community-list expanded c1 permit 16366 ^65000:4_0:253_0:239$ ip community-list expanded c1 permit 16367 ^65000:4_0:253_0:240$ ip community-list expanded c1 permit 16368 ^65000:4_0:253_0:241$ ip community-list expanded c1 permit 16369 ^65000:4_0:253_0:242$ ip community-list expanded c1 permit 16370 ^65000:4_0:253_0:243$ ip community-list expanded c1 permit 16371 ^65000:4_0:253_0:244$ ip community-list expanded c1 permit 16372 ^65000:4_0:253_0:245$ ip community-list expanded c1 permit 16373 ^65000:4_0:253_0:246$ ip community-list expanded c1 permit 16374 ^65000:4_0:253_0:247$ ip community-list expanded c1 permit 16375 ^65000:4_0:253_0:248$ ip community-list expanded c1 permit 16376 ^65000:4_0:253_0:249$ ip community-list expanded c1 permit 16377 ^65000:4_0:253_0:250$ ip community-list expanded c1 permit 16378 ^65000:4_0:253_0:251$ ip community-list expanded c1 permit 16379 ^65000:3_0:253_0:252$ ip community-list expanded c1 permit 16380 ^65000:4_0:253_0:252$ ip community-list expanded c1 permit 16381 ^65000:4_0:253_0:253$ ip community-list expanded c1 permit 16382 ^65000:4_0:254_0:128$ ip community-list expanded c1 permit 16383 ^65000:4_0:254_0:129$ ip community-list expanded c1 permit 16384 ^65000:4_0:254_0:130$ ip community-list expanded c1 permit 16385 ^65000:4_0:254_0:131$ ip community-list expanded c1 permit 16386 ^65000:4_0:254_0:132$ ip community-list expanded c1 permit 16387 ^65000:4_0:254_0:133$ ip community-list expanded c1 permit 16388 ^65000:4_0:254_0:134$ ip community-list expanded c1 permit 16389 ^65000:4_0:254_0:135$ ip community-list expanded c1 permit 16390 ^65000:4_0:254_0:136$ ip community-list expanded c1 permit 16391 ^65000:4_0:254_0:137$ ip community-list expanded c1 permit 16392 ^65000:4_0:254_0:138$ ip community-list expanded c1 permit 16393 ^65000:4_0:254_0:139$ ip community-list expanded c1 permit 16394 ^65000:4_0:254_0:140$ ip community-list expanded c1 permit 16395 ^65000:4_0:254_0:141$ ip community-list expanded c1 permit 16396 ^65000:4_0:254_0:142$ ip community-list expanded c1 permit 16397 ^65000:4_0:254_0:143$ ip community-list expanded c1 permit 16398 ^65000:4_0:254_0:144$ ip community-list expanded c1 permit 16399 ^65000:4_0:254_0:145$ ip community-list expanded c1 permit 16400 ^65000:4_0:254_0:146$ ip community-list expanded c1 permit 16401 ^65000:4_0:254_0:147$ ip community-list expanded c1 permit 16402 ^65000:4_0:254_0:148$ ip community-list expanded c1 permit 16403 ^65000:4_0:254_0:149$ ip community-list expanded c1 permit 16404 ^65000:4_0:254_0:150$ ip community-list expanded c1 permit 16405 ^65000:4_0:254_0:151$ ip community-list expanded c1 permit 16406 ^65000:4_0:254_0:152$ ip community-list expanded c1 permit 16407 ^65000:4_0:254_0:153$ ip community-list expanded c1 permit 16408 ^65000:4_0:254_0:154$ ip community-list expanded c1 permit 16409 ^65000:4_0:254_0:155$ ip community-list expanded c1 permit 16410 ^65000:4_0:254_0:156$ ip community-list expanded c1 permit 16411 ^65000:4_0:254_0:157$ ip community-list expanded c1 permit 16412 ^65000:4_0:254_0:158$ ip community-list expanded c1 permit 16413 ^65000:4_0:254_0:159$ ip community-list expanded c1 permit 16414 ^65000:4_0:254_0:160$ ip community-list expanded c1 permit 16415 ^65000:4_0:254_0:161$ ip community-list expanded c1 permit 16416 ^65000:4_0:254_0:162$ ip community-list expanded c1 permit 16417 ^65000:4_0:254_0:163$ ip community-list expanded c1 permit 16418 ^65000:4_0:254_0:164$ ip community-list expanded c1 permit 16419 ^65000:4_0:254_0:165$ ip community-list expanded c1 permit 16420 ^65000:4_0:254_0:166$ ip community-list expanded c1 permit 16421 ^65000:4_0:254_0:167$ ip community-list expanded c1 permit 16422 ^65000:4_0:254_0:168$ ip community-list expanded c1 permit 16423 ^65000:4_0:254_0:169$ ip community-list expanded c1 permit 16424 ^65000:4_0:254_0:170$ ip community-list expanded c1 permit 16425 ^65000:4_0:254_0:171$ ip community-list expanded c1 permit 16426 ^65000:4_0:254_0:172$ ip community-list expanded c1 permit 16427 ^65000:4_0:254_0:173$ ip community-list expanded c1 permit 16428 ^65000:4_0:254_0:174$ ip community-list expanded c1 permit 16429 ^65000:4_0:254_0:175$ ip community-list expanded c1 permit 16430 ^65000:4_0:254_0:176$ ip community-list expanded c1 permit 16431 ^65000:4_0:254_0:177$ ip community-list expanded c1 permit 16432 ^65000:4_0:254_0:178$ ip community-list expanded c1 permit 16433 ^65000:4_0:254_0:179$ ip community-list expanded c1 permit 16434 ^65000:4_0:254_0:180$ ip community-list expanded c1 permit 16435 ^65000:4_0:254_0:181$ ip community-list expanded c1 permit 16436 ^65000:4_0:254_0:182$ ip community-list expanded c1 permit 16437 ^65000:4_0:254_0:183$ ip community-list expanded c1 permit 16438 ^65000:4_0:254_0:184$ ip community-list expanded c1 permit 16439 ^65000:4_0:254_0:185$ ip community-list expanded c1 permit 16440 ^65000:4_0:254_0:186$ ip community-list expanded c1 permit 16441 ^65000:4_0:254_0:187$ ip community-list expanded c1 permit 16442 ^65000:4_0:254_0:188$ ip community-list expanded c1 permit 16443 ^65000:4_0:254_0:189$ ip community-list expanded c1 permit 16444 ^65000:4_0:254_0:190$ ip community-list expanded c1 permit 16445 ^65000:4_0:254_0:191$ ip community-list expanded c1 permit 16446 ^65000:4_0:254_0:192$ ip community-list expanded c1 permit 16447 ^65000:4_0:254_0:193$ ip community-list expanded c1 permit 16448 ^65000:4_0:254_0:194$ ip community-list expanded c1 permit 16449 ^65000:4_0:254_0:195$ ip community-list expanded c1 permit 16450 ^65000:4_0:254_0:196$ ip community-list expanded c1 permit 16451 ^65000:4_0:254_0:197$ ip community-list expanded c1 permit 16452 ^65000:4_0:254_0:198$ ip community-list expanded c1 permit 16453 ^65000:4_0:254_0:199$ ip community-list expanded c1 permit 16454 ^65000:4_0:254_0:200$ ip community-list expanded c1 permit 16455 ^65000:4_0:254_0:201$ ip community-list expanded c1 permit 16456 ^65000:4_0:254_0:202$ ip community-list expanded c1 permit 16457 ^65000:4_0:254_0:203$ ip community-list expanded c1 permit 16458 ^65000:4_0:254_0:204$ ip community-list expanded c1 permit 16459 ^65000:4_0:254_0:205$ ip community-list expanded c1 permit 16460 ^65000:4_0:254_0:206$ ip community-list expanded c1 permit 16461 ^65000:4_0:254_0:207$ ip community-list expanded c1 permit 16462 ^65000:4_0:254_0:208$ ip community-list expanded c1 permit 16463 ^65000:4_0:254_0:209$ ip community-list expanded c1 permit 16464 ^65000:4_0:254_0:210$ ip community-list expanded c1 permit 16465 ^65000:4_0:254_0:211$ ip community-list expanded c1 permit 16466 ^65000:4_0:254_0:212$ ip community-list expanded c1 permit 16467 ^65000:4_0:254_0:213$ ip community-list expanded c1 permit 16468 ^65000:4_0:254_0:214$ ip community-list expanded c1 permit 16469 ^65000:4_0:254_0:215$ ip community-list expanded c1 permit 16470 ^65000:4_0:254_0:216$ ip community-list expanded c1 permit 16471 ^65000:4_0:254_0:217$ ip community-list expanded c1 permit 16472 ^65000:4_0:254_0:218$ ip community-list expanded c1 permit 16473 ^65000:4_0:254_0:219$ ip community-list expanded c1 permit 16474 ^65000:4_0:254_0:220$ ip community-list expanded c1 permit 16475 ^65000:4_0:254_0:221$ ip community-list expanded c1 permit 16476 ^65000:4_0:254_0:222$ ip community-list expanded c1 permit 16477 ^65000:4_0:254_0:223$ ip community-list expanded c1 permit 16478 ^65000:4_0:254_0:224$ ip community-list expanded c1 permit 16479 ^65000:4_0:254_0:225$ ip community-list expanded c1 permit 16480 ^65000:4_0:254_0:226$ ip community-list expanded c1 permit 16481 ^65000:4_0:254_0:227$ ip community-list expanded c1 permit 16482 ^65000:4_0:254_0:228$ ip community-list expanded c1 permit 16483 ^65000:4_0:254_0:229$ ip community-list expanded c1 permit 16484 ^65000:4_0:254_0:230$ ip community-list expanded c1 permit 16485 ^65000:4_0:254_0:231$ ip community-list expanded c1 permit 16486 ^65000:4_0:254_0:232$ ip community-list expanded c1 permit 16487 ^65000:4_0:254_0:233$ ip community-list expanded c1 permit 16488 ^65000:4_0:254_0:234$ ip community-list expanded c1 permit 16489 ^65000:4_0:254_0:235$ ip community-list expanded c1 permit 16490 ^65000:4_0:254_0:236$ ip community-list expanded c1 permit 16491 ^65000:4_0:254_0:237$ ip community-list expanded c1 permit 16492 ^65000:4_0:254_0:238$ ip community-list expanded c1 permit 16493 ^65000:4_0:254_0:239$ ip community-list expanded c1 permit 16494 ^65000:4_0:254_0:240$ ip community-list expanded c1 permit 16495 ^65000:4_0:254_0:241$ ip community-list expanded c1 permit 16496 ^65000:4_0:254_0:242$ ip community-list expanded c1 permit 16497 ^65000:4_0:254_0:243$ ip community-list expanded c1 permit 16498 ^65000:4_0:254_0:244$ ip community-list expanded c1 permit 16499 ^65000:4_0:254_0:245$ ip community-list expanded c1 permit 16500 ^65000:4_0:254_0:246$ ip community-list expanded c1 permit 16501 ^65000:4_0:254_0:247$ ip community-list expanded c1 permit 16502 ^65000:4_0:254_0:248$ ip community-list expanded c1 permit 16503 ^65000:4_0:254_0:249$ ip community-list expanded c1 permit 16504 ^65000:4_0:254_0:250$ ip community-list expanded c1 permit 16505 ^65000:4_0:254_0:251$ ip community-list expanded c1 permit 16506 ^65000:4_0:254_0:252$ ip community-list expanded c1 permit 16507 ^65000:3_0:254_0:253$ ip community-list expanded c1 permit 16508 ^65000:4_0:254_0:253$ ip community-list expanded c1 permit 16509 ^65000:4_0:254_0:254$ ip community-list expanded c1 permit 16510 ^65000:4_0:255_0:128$ ip community-list expanded c1 permit 16511 ^65000:4_0:255_0:129$ ip community-list expanded c1 permit 16512 ^65000:4_0:255_0:130$ ip community-list expanded c1 permit 16513 ^65000:4_0:255_0:131$ ip community-list expanded c1 permit 16514 ^65000:4_0:255_0:132$ ip community-list expanded c1 permit 16515 ^65000:4_0:255_0:133$ ip community-list expanded c1 permit 16516 ^65000:4_0:255_0:134$ ip community-list expanded c1 permit 16517 ^65000:4_0:255_0:135$ ip community-list expanded c1 permit 16518 ^65000:4_0:255_0:136$ ip community-list expanded c1 permit 16519 ^65000:4_0:255_0:137$ ip community-list expanded c1 permit 16520 ^65000:4_0:255_0:138$ ip community-list expanded c1 permit 16521 ^65000:4_0:255_0:139$ ip community-list expanded c1 permit 16522 ^65000:4_0:255_0:140$ ip community-list expanded c1 permit 16523 ^65000:4_0:255_0:141$ ip community-list expanded c1 permit 16524 ^65000:4_0:255_0:142$ ip community-list expanded c1 permit 16525 ^65000:4_0:255_0:143$ ip community-list expanded c1 permit 16526 ^65000:4_0:255_0:144$ ip community-list expanded c1 permit 16527 ^65000:4_0:255_0:145$ ip community-list expanded c1 permit 16528 ^65000:4_0:255_0:146$ ip community-list expanded c1 permit 16529 ^65000:4_0:255_0:147$ ip community-list expanded c1 permit 16530 ^65000:4_0:255_0:148$ ip community-list expanded c1 permit 16531 ^65000:4_0:255_0:149$ ip community-list expanded c1 permit 16532 ^65000:4_0:255_0:150$ ip community-list expanded c1 permit 16533 ^65000:4_0:255_0:151$ ip community-list expanded c1 permit 16534 ^65000:4_0:255_0:152$ ip community-list expanded c1 permit 16535 ^65000:4_0:255_0:153$ ip community-list expanded c1 permit 16536 ^65000:4_0:255_0:154$ ip community-list expanded c1 permit 16537 ^65000:4_0:255_0:155$ ip community-list expanded c1 permit 16538 ^65000:4_0:255_0:156$ ip community-list expanded c1 permit 16539 ^65000:4_0:255_0:157$ ip community-list expanded c1 permit 16540 ^65000:4_0:255_0:158$ ip community-list expanded c1 permit 16541 ^65000:4_0:255_0:159$ ip community-list expanded c1 permit 16542 ^65000:4_0:255_0:160$ ip community-list expanded c1 permit 16543 ^65000:4_0:255_0:161$ ip community-list expanded c1 permit 16544 ^65000:4_0:255_0:162$ ip community-list expanded c1 permit 16545 ^65000:4_0:255_0:163$ ip community-list expanded c1 permit 16546 ^65000:4_0:255_0:164$ ip community-list expanded c1 permit 16547 ^65000:4_0:255_0:165$ ip community-list expanded c1 permit 16548 ^65000:4_0:255_0:166$ ip community-list expanded c1 permit 16549 ^65000:4_0:255_0:167$ ip community-list expanded c1 permit 16550 ^65000:4_0:255_0:168$ ip community-list expanded c1 permit 16551 ^65000:4_0:255_0:169$ ip community-list expanded c1 permit 16552 ^65000:4_0:255_0:170$ ip community-list expanded c1 permit 16553 ^65000:4_0:255_0:171$ ip community-list expanded c1 permit 16554 ^65000:4_0:255_0:172$ ip community-list expanded c1 permit 16555 ^65000:4_0:255_0:173$ ip community-list expanded c1 permit 16556 ^65000:4_0:255_0:174$ ip community-list expanded c1 permit 16557 ^65000:4_0:255_0:175$ ip community-list expanded c1 permit 16558 ^65000:4_0:255_0:176$ ip community-list expanded c1 permit 16559 ^65000:4_0:255_0:177$ ip community-list expanded c1 permit 16560 ^65000:4_0:255_0:178$ ip community-list expanded c1 permit 16561 ^65000:4_0:255_0:179$ ip community-list expanded c1 permit 16562 ^65000:4_0:255_0:180$ ip community-list expanded c1 permit 16563 ^65000:4_0:255_0:181$ ip community-list expanded c1 permit 16564 ^65000:4_0:255_0:182$ ip community-list expanded c1 permit 16565 ^65000:4_0:255_0:183$ ip community-list expanded c1 permit 16566 ^65000:4_0:255_0:184$ ip community-list expanded c1 permit 16567 ^65000:4_0:255_0:185$ ip community-list expanded c1 permit 16568 ^65000:4_0:255_0:186$ ip community-list expanded c1 permit 16569 ^65000:4_0:255_0:187$ ip community-list expanded c1 permit 16570 ^65000:4_0:255_0:188$ ip community-list expanded c1 permit 16571 ^65000:4_0:255_0:189$ ip community-list expanded c1 permit 16572 ^65000:4_0:255_0:190$ ip community-list expanded c1 permit 16573 ^65000:4_0:255_0:191$ ip community-list expanded c1 permit 16574 ^65000:4_0:255_0:192$ ip community-list expanded c1 permit 16575 ^65000:4_0:255_0:193$ ip community-list expanded c1 permit 16576 ^65000:4_0:255_0:194$ ip community-list expanded c1 permit 16577 ^65000:4_0:255_0:195$ ip community-list expanded c1 permit 16578 ^65000:4_0:255_0:196$ ip community-list expanded c1 permit 16579 ^65000:4_0:255_0:197$ ip community-list expanded c1 permit 16580 ^65000:4_0:255_0:198$ ip community-list expanded c1 permit 16581 ^65000:4_0:255_0:199$ ip community-list expanded c1 permit 16582 ^65000:4_0:255_0:200$ ip community-list expanded c1 permit 16583 ^65000:4_0:255_0:201$ ip community-list expanded c1 permit 16584 ^65000:4_0:255_0:202$ ip community-list expanded c1 permit 16585 ^65000:4_0:255_0:203$ ip community-list expanded c1 permit 16586 ^65000:4_0:255_0:204$ ip community-list expanded c1 permit 16587 ^65000:4_0:255_0:205$ ip community-list expanded c1 permit 16588 ^65000:4_0:255_0:206$ ip community-list expanded c1 permit 16589 ^65000:4_0:255_0:207$ ip community-list expanded c1 permit 16590 ^65000:4_0:255_0:208$ ip community-list expanded c1 permit 16591 ^65000:4_0:255_0:209$ ip community-list expanded c1 permit 16592 ^65000:4_0:255_0:210$ ip community-list expanded c1 permit 16593 ^65000:4_0:255_0:211$ ip community-list expanded c1 permit 16594 ^65000:4_0:255_0:212$ ip community-list expanded c1 permit 16595 ^65000:4_0:255_0:213$ ip community-list expanded c1 permit 16596 ^65000:4_0:255_0:214$ ip community-list expanded c1 permit 16597 ^65000:4_0:255_0:215$ ip community-list expanded c1 permit 16598 ^65000:4_0:255_0:216$ ip community-list expanded c1 permit 16599 ^65000:4_0:255_0:217$ ip community-list expanded c1 permit 16600 ^65000:4_0:255_0:218$ ip community-list expanded c1 permit 16601 ^65000:4_0:255_0:219$ ip community-list expanded c1 permit 16602 ^65000:4_0:255_0:220$ ip community-list expanded c1 permit 16603 ^65000:4_0:255_0:221$ ip community-list expanded c1 permit 16604 ^65000:4_0:255_0:222$ ip community-list expanded c1 permit 16605 ^65000:4_0:255_0:223$ ip community-list expanded c1 permit 16606 ^65000:4_0:255_0:224$ ip community-list expanded c1 permit 16607 ^65000:4_0:255_0:225$ ip community-list expanded c1 permit 16608 ^65000:4_0:255_0:226$ ip community-list expanded c1 permit 16609 ^65000:4_0:255_0:227$ ip community-list expanded c1 permit 16610 ^65000:4_0:255_0:228$ ip community-list expanded c1 permit 16611 ^65000:4_0:255_0:229$ ip community-list expanded c1 permit 16612 ^65000:4_0:255_0:230$ ip community-list expanded c1 permit 16613 ^65000:4_0:255_0:231$ ip community-list expanded c1 permit 16614 ^65000:4_0:255_0:232$ ip community-list expanded c1 permit 16615 ^65000:4_0:255_0:233$ ip community-list expanded c1 permit 16616 ^65000:4_0:255_0:234$ ip community-list expanded c1 permit 16617 ^65000:4_0:255_0:235$ ip community-list expanded c1 permit 16618 ^65000:4_0:255_0:236$ ip community-list expanded c1 permit 16619 ^65000:4_0:255_0:237$ ip community-list expanded c1 permit 16620 ^65000:4_0:255_0:238$ ip community-list expanded c1 permit 16621 ^65000:4_0:255_0:239$ ip community-list expanded c1 permit 16622 ^65000:4_0:255_0:240$ ip community-list expanded c1 permit 16623 ^65000:4_0:255_0:241$ ip community-list expanded c1 permit 16624 ^65000:4_0:255_0:242$ ip community-list expanded c1 permit 16625 ^65000:4_0:255_0:243$ ip community-list expanded c1 permit 16626 ^65000:4_0:255_0:244$ ip community-list expanded c1 permit 16627 ^65000:4_0:255_0:245$ ip community-list expanded c1 permit 16628 ^65000:4_0:255_0:246$ ip community-list expanded c1 permit 16629 ^65000:4_0:255_0:247$ ip community-list expanded c1 permit 16630 ^65000:4_0:255_0:248$ ip community-list expanded c1 permit 16631 ^65000:4_0:255_0:249$ ip community-list expanded c1 permit 16632 ^65000:4_0:255_0:250$ ip community-list expanded c1 permit 16633 ^65000:4_0:255_0:251$ ip community-list expanded c1 permit 16634 ^65000:4_0:255_0:252$ ip community-list expanded c1 permit 16635 ^65000:4_0:255_0:253$ ip community-list expanded c1 permit 16636 ^65000:3_0:255_0:254$ ip community-list expanded c1 permit 16637 ^65000:4_0:255_0:254$ ip community-list expanded c1 permit 16638 ^65000:4_0:255_0:255$ ip community-list expanded c1 permit 16639 ^65000:4_0:256_0:129$ ip community-list expanded c1 permit 16640 ^65000:4_0:256_0:130$ ip community-list expanded c1 permit 16641 ^65000:4_0:256_0:131$ ip community-list expanded c1 permit 16642 ^65000:4_0:256_0:132$ ip community-list expanded c1 permit 16643 ^65000:4_0:256_0:133$ ip community-list expanded c1 permit 16644 ^65000:4_0:256_0:134$ ip community-list expanded c1 permit 16645 ^65000:4_0:256_0:135$ ip community-list expanded c1 permit 16646 ^65000:4_0:256_0:136$ ip community-list expanded c1 permit 16647 ^65000:4_0:256_0:137$ ip community-list expanded c1 permit 16648 ^65000:4_0:256_0:138$ ip community-list expanded c1 permit 16649 ^65000:4_0:256_0:139$ ip community-list expanded c1 permit 16650 ^65000:4_0:256_0:140$ ip community-list expanded c1 permit 16651 ^65000:4_0:256_0:141$ ip community-list expanded c1 permit 16652 ^65000:4_0:256_0:142$ ip community-list expanded c1 permit 16653 ^65000:4_0:256_0:143$ ip community-list expanded c1 permit 16654 ^65000:4_0:256_0:144$ ip community-list expanded c1 permit 16655 ^65000:4_0:256_0:145$ ip community-list expanded c1 permit 16656 ^65000:4_0:256_0:146$ ip community-list expanded c1 permit 16657 ^65000:4_0:256_0:147$ ip community-list expanded c1 permit 16658 ^65000:4_0:256_0:148$ ip community-list expanded c1 permit 16659 ^65000:4_0:256_0:149$ ip community-list expanded c1 permit 16660 ^65000:4_0:256_0:150$ ip community-list expanded c1 permit 16661 ^65000:4_0:256_0:151$ ip community-list expanded c1 permit 16662 ^65000:4_0:256_0:152$ ip community-list expanded c1 permit 16663 ^65000:4_0:256_0:153$ ip community-list expanded c1 permit 16664 ^65000:4_0:256_0:154$ ip community-list expanded c1 permit 16665 ^65000:4_0:256_0:155$ ip community-list expanded c1 permit 16666 ^65000:4_0:256_0:156$ ip community-list expanded c1 permit 16667 ^65000:4_0:256_0:157$ ip community-list expanded c1 permit 16668 ^65000:4_0:256_0:158$ ip community-list expanded c1 permit 16669 ^65000:4_0:256_0:159$ ip community-list expanded c1 permit 16670 ^65000:4_0:256_0:160$ ip community-list expanded c1 permit 16671 ^65000:4_0:256_0:161$ ip community-list expanded c1 permit 16672 ^65000:4_0:256_0:162$ ip community-list expanded c1 permit 16673 ^65000:4_0:256_0:163$ ip community-list expanded c1 permit 16674 ^65000:4_0:256_0:164$ ip community-list expanded c1 permit 16675 ^65000:4_0:256_0:165$ ip community-list expanded c1 permit 16676 ^65000:4_0:256_0:166$ ip community-list expanded c1 permit 16677 ^65000:4_0:256_0:167$ ip community-list expanded c1 permit 16678 ^65000:4_0:256_0:168$ ip community-list expanded c1 permit 16679 ^65000:4_0:256_0:169$ ip community-list expanded c1 permit 16680 ^65000:4_0:256_0:170$ ip community-list expanded c1 permit 16681 ^65000:4_0:256_0:171$ ip community-list expanded c1 permit 16682 ^65000:4_0:256_0:172$ ip community-list expanded c1 permit 16683 ^65000:4_0:256_0:173$ ip community-list expanded c1 permit 16684 ^65000:4_0:256_0:174$ ip community-list expanded c1 permit 16685 ^65000:4_0:256_0:175$ ip community-list expanded c1 permit 16686 ^65000:4_0:256_0:176$ ip community-list expanded c1 permit 16687 ^65000:4_0:256_0:177$ ip community-list expanded c1 permit 16688 ^65000:4_0:256_0:178$ ip community-list expanded c1 permit 16689 ^65000:4_0:256_0:179$ ip community-list expanded c1 permit 16690 ^65000:4_0:256_0:180$ ip community-list expanded c1 permit 16691 ^65000:4_0:256_0:181$ ip community-list expanded c1 permit 16692 ^65000:4_0:256_0:182$ ip community-list expanded c1 permit 16693 ^65000:4_0:256_0:183$ ip community-list expanded c1 permit 16694 ^65000:4_0:256_0:184$ ip community-list expanded c1 permit 16695 ^65000:4_0:256_0:185$ ip community-list expanded c1 permit 16696 ^65000:4_0:256_0:186$ ip community-list expanded c1 permit 16697 ^65000:4_0:256_0:187$ ip community-list expanded c1 permit 16698 ^65000:4_0:256_0:188$ ip community-list expanded c1 permit 16699 ^65000:4_0:256_0:189$ ip community-list expanded c1 permit 16700 ^65000:4_0:256_0:190$ ip community-list expanded c1 permit 16701 ^65000:4_0:256_0:191$ ip community-list expanded c1 permit 16702 ^65000:4_0:256_0:192$ ip community-list expanded c1 permit 16703 ^65000:4_0:256_0:193$ ip community-list expanded c1 permit 16704 ^65000:4_0:256_0:194$ ip community-list expanded c1 permit 16705 ^65000:4_0:256_0:195$ ip community-list expanded c1 permit 16706 ^65000:4_0:256_0:196$ ip community-list expanded c1 permit 16707 ^65000:4_0:256_0:197$ ip community-list expanded c1 permit 16708 ^65000:4_0:256_0:198$ ip community-list expanded c1 permit 16709 ^65000:4_0:256_0:199$ ip community-list expanded c1 permit 16710 ^65000:4_0:256_0:200$ ip community-list expanded c1 permit 16711 ^65000:4_0:256_0:201$ ip community-list expanded c1 permit 16712 ^65000:4_0:256_0:202$ ip community-list expanded c1 permit 16713 ^65000:4_0:256_0:203$ ip community-list expanded c1 permit 16714 ^65000:4_0:256_0:204$ ip community-list expanded c1 permit 16715 ^65000:4_0:256_0:205$ ip community-list expanded c1 permit 16716 ^65000:4_0:256_0:206$ ip community-list expanded c1 permit 16717 ^65000:4_0:256_0:207$ ip community-list expanded c1 permit 16718 ^65000:4_0:256_0:208$ ip community-list expanded c1 permit 16719 ^65000:4_0:256_0:209$ ip community-list expanded c1 permit 16720 ^65000:4_0:256_0:210$ ip community-list expanded c1 permit 16721 ^65000:4_0:256_0:211$ ip community-list expanded c1 permit 16722 ^65000:4_0:256_0:212$ ip community-list expanded c1 permit 16723 ^65000:4_0:256_0:213$ ip community-list expanded c1 permit 16724 ^65000:4_0:256_0:214$ ip community-list expanded c1 permit 16725 ^65000:4_0:256_0:215$ ip community-list expanded c1 permit 16726 ^65000:4_0:256_0:216$ ip community-list expanded c1 permit 16727 ^65000:4_0:256_0:217$ ip community-list expanded c1 permit 16728 ^65000:4_0:256_0:218$ ip community-list expanded c1 permit 16729 ^65000:4_0:256_0:219$ ip community-list expanded c1 permit 16730 ^65000:4_0:256_0:220$ ip community-list expanded c1 permit 16731 ^65000:4_0:256_0:221$ ip community-list expanded c1 permit 16732 ^65000:4_0:256_0:222$ ip community-list expanded c1 permit 16733 ^65000:4_0:256_0:223$ ip community-list expanded c1 permit 16734 ^65000:4_0:256_0:224$ ip community-list expanded c1 permit 16735 ^65000:4_0:256_0:225$ ip community-list expanded c1 permit 16736 ^65000:4_0:256_0:226$ ip community-list expanded c1 permit 16737 ^65000:4_0:256_0:227$ ip community-list expanded c1 permit 16738 ^65000:4_0:256_0:228$ ip community-list expanded c1 permit 16739 ^65000:4_0:256_0:229$ ip community-list expanded c1 permit 16740 ^65000:4_0:256_0:230$ ip community-list expanded c1 permit 16741 ^65000:4_0:256_0:231$ ip community-list expanded c1 permit 16742 ^65000:4_0:256_0:232$ ip community-list expanded c1 permit 16743 ^65000:4_0:256_0:233$ ip community-list expanded c1 permit 16744 ^65000:4_0:256_0:234$ ip community-list expanded c1 permit 16745 ^65000:4_0:256_0:235$ ip community-list expanded c1 permit 16746 ^65000:4_0:256_0:236$ ip community-list expanded c1 permit 16747 ^65000:4_0:256_0:237$ ip community-list expanded c1 permit 16748 ^65000:4_0:256_0:238$ ip community-list expanded c1 permit 16749 ^65000:4_0:256_0:239$ ip community-list expanded c1 permit 16750 ^65000:4_0:256_0:240$ ip community-list expanded c1 permit 16751 ^65000:4_0:256_0:241$ ip community-list expanded c1 permit 16752 ^65000:4_0:256_0:242$ ip community-list expanded c1 permit 16753 ^65000:4_0:256_0:243$ ip community-list expanded c1 permit 16754 ^65000:4_0:256_0:244$ ip community-list expanded c1 permit 16755 ^65000:4_0:256_0:245$ ip community-list expanded c1 permit 16756 ^65000:4_0:256_0:246$ ip community-list expanded c1 permit 16757 ^65000:4_0:256_0:247$ ip community-list expanded c1 permit 16758 ^65000:4_0:256_0:248$ ip community-list expanded c1 permit 16759 ^65000:4_0:256_0:249$ ip community-list expanded c1 permit 16760 ^65000:4_0:256_0:250$ ip community-list expanded c1 permit 16761 ^65000:4_0:256_0:251$ ip community-list expanded c1 permit 16762 ^65000:4_0:256_0:252$ ip community-list expanded c1 permit 16763 ^65000:4_0:256_0:253$ ip community-list expanded c1 permit 16764 ^65000:4_0:256_0:254$ ip community-list expanded c1 permit 16765 ^65000:3_0:256_0:255$ ip community-list expanded c1 permit 16766 ^65000:4_0:256_0:255$ ip community-list expanded c1 permit 16767 ^65000:4_0:256_0:256$ route-map calculator permit 20600 match community 2_1_1 c4_1_1 c3_2_1 c4_2_2 c3_3_2 set community 0:1 route-map calculator permit 20601 match community c4_3_2 c4_3_3 c3_4_3 c4_4_3 c4_4_4 set community 0:1 route-map calculator permit 20602 match community c4_5_3 c3_5_4 c4_5_4 c4_5_5 c4_6_4 set community 0:1 route-map calculator permit 20603 match community c3_6_5 c4_6_5 c4_6_6 c4_7_4 c4_7_5 set community 0:1 route-map calculator permit 20604 match community c3_7_6 c4_7_6 c4_7_7 c4_8_5 c4_8_6 set community 0:1 route-map calculator permit 20605 match community c3_8_7 c4_8_7 c4_8_8 c4_9_5 c4_9_6 set community 0:1 route-map calculator permit 20606 match community c4_9_7 c3_9_8 c4_9_8 c4_9_9 c4_10_6 set community 0:1 route-map calculator permit 20607 match community c4_10_7 c4_10_8 c3_10_9 c4_10_9 c4_10_10 set community 0:1 route-map calculator permit 20608 match community c4_11_6 c4_11_7 c4_11_8 c4_11_9 c3_11_10 set community 0:1 route-map calculator permit 20609 match community c4_11_10 c4_11_11 c4_12_7 c4_12_8 c4_12_9 set community 0:1 route-map calculator permit 20610 match community c4_12_10 c3_12_11 c4_12_11 c4_12_12 c4_13_7 set community 0:1 route-map calculator permit 20611 match community c4_13_8 c4_13_9 c4_13_10 c4_13_11 c3_13_12 set community 0:1 route-map calculator permit 20612 match community c4_13_12 c4_13_13 c4_14_8 c4_14_9 c4_14_10 set community 0:1 route-map calculator permit 20613 match community c4_14_11 c4_14_12 c3_14_13 c4_14_13 c4_14_14 set community 0:1 route-map calculator permit 20614 match community c4_15_8 c4_15_9 c4_15_10 c4_15_11 c4_15_12 set community 0:1 route-map calculator permit 20615 match community c4_15_13 c3_15_14 c4_15_14 c4_15_15 c4_16_9 set community 0:1 route-map calculator permit 20616 match community c4_16_10 c4_16_11 c4_16_12 c4_16_13 c4_16_14 set community 0:1 route-map calculator permit 20617 match community c3_16_15 c4_16_15 c4_16_16 c4_17_9 c4_17_10 set community 0:1 route-map calculator permit 20618 match community c4_17_11 c4_17_12 c4_17_13 c4_17_14 c4_17_15 set community 0:1 route-map calculator permit 20619 match community c3_17_16 c4_17_16 c4_17_17 c4_18_10 c4_18_11 set community 0:1 route-map calculator permit 20620 match community c4_18_12 c4_18_13 c4_18_14 c4_18_15 c4_18_16 set community 0:1 route-map calculator permit 20621 match community c3_18_17 c4_18_17 c4_18_18 c4_19_10 c4_19_11 set community 0:1 route-map calculator permit 20622 match community c4_19_12 c4_19_13 c4_19_14 c4_19_15 c4_19_16 set community 0:1 route-map calculator permit 20623 match community c4_19_17 c3_19_18 c4_19_18 c4_19_19 c4_20_11 set community 0:1 route-map calculator permit 20624 match community c4_20_12 c4_20_13 c4_20_14 c4_20_15 c4_20_16 set community 0:1 route-map calculator permit 20625 match community c4_20_17 c4_20_18 c3_20_19 c4_20_19 c4_20_20 set community 0:1 route-map calculator permit 20626 match community c4_21_11 c4_21_12 c4_21_13 c4_21_14 c4_21_15 set community 0:1 route-map calculator permit 20627 match community c4_21_16 c4_21_17 c4_21_18 c4_21_19 c3_21_20 set community 0:1 route-map calculator permit 20628 match community c4_21_20 c4_21_21 c4_22_12 c4_22_13 c4_22_14 set community 0:1 route-map calculator permit 20629 match community c4_22_15 c4_22_16 c4_22_17 c4_22_18 c4_22_19 set community 0:1 route-map calculator permit 20630 match community c4_22_20 c3_22_21 c4_22_21 c4_22_22 c4_23_12 set community 0:1 route-map calculator permit 20631 match community c4_23_13 c4_23_14 c4_23_15 c4_23_16 c4_23_17 set community 0:1 route-map calculator permit 20632 match community c4_23_18 c4_23_19 c4_23_20 c4_23_21 c3_23_22 set community 0:1 route-map calculator permit 20633 match community c4_23_22 c4_23_23 c4_24_13 c4_24_14 c4_24_15 set community 0:1 route-map calculator permit 20634 match community c4_24_16 c4_24_17 c4_24_18 c4_24_19 c4_24_20 set community 0:1 route-map calculator permit 20635 match community c4_24_21 c4_24_22 c3_24_23 c4_24_23 c4_24_24 set community 0:1 route-map calculator permit 20636 match community c4_25_13 c4_25_14 c4_25_15 c4_25_16 c4_25_17 set community 0:1 route-map calculator permit 20637 match community c4_25_18 c4_25_19 c4_25_20 c4_25_21 c4_25_22 set community 0:1 route-map calculator permit 20638 match community c4_25_23 c3_25_24 c4_25_24 c4_25_25 c4_26_14 set community 0:1 route-map calculator permit 20639 match community c4_26_15 c4_26_16 c4_26_17 c4_26_18 c4_26_19 set community 0:1 route-map calculator permit 20640 match community c4_26_20 c4_26_21 c4_26_22 c4_26_23 c4_26_24 set community 0:1 route-map calculator permit 20641 match community c3_26_25 c4_26_25 c4_26_26 c4_27_14 c4_27_15 set community 0:1 route-map calculator permit 20642 match community c4_27_16 c4_27_17 c4_27_18 c4_27_19 c4_27_20 set community 0:1 route-map calculator permit 20643 match community c4_27_21 c4_27_22 c4_27_23 c4_27_24 c4_27_25 set community 0:1 route-map calculator permit 20644 match community c3_27_26 c4_27_26 c4_27_27 c4_28_15 c4_28_16 set community 0:1 route-map calculator permit 20645 match community c4_28_17 c4_28_18 c4_28_19 c4_28_20 c4_28_21 set community 0:1 route-map calculator permit 20646 match community c4_28_22 c4_28_23 c4_28_24 c4_28_25 c4_28_26 set community 0:1 route-map calculator permit 20647 match community c3_28_27 c4_28_27 c4_28_28 c4_29_15 c4_29_16 set community 0:1 route-map calculator permit 20648 match community c4_29_17 c4_29_18 c4_29_19 c4_29_20 c4_29_21 set community 0:1 route-map calculator permit 20649 match community c4_29_22 c4_29_23 c4_29_24 c4_29_25 c4_29_26 set community 0:1 route-map calculator permit 20650 match community c4_29_27 c3_29_28 c4_29_28 c4_29_29 c4_30_16 set community 0:1 route-map calculator permit 20651 match community c4_30_17 c4_30_18 c4_30_19 c4_30_20 c4_30_21 set community 0:1 route-map calculator permit 20652 match community c4_30_22 c4_30_23 c4_30_24 c4_30_25 c4_30_26 set community 0:1 route-map calculator permit 20653 match community c4_30_27 c4_30_28 c3_30_29 c4_30_29 c4_30_30 set community 0:1 route-map calculator permit 20654 match community c4_31_16 c4_31_17 c4_31_18 c4_31_19 c4_31_20 set community 0:1 route-map calculator permit 20655 match community c4_31_21 c4_31_22 c4_31_23 c4_31_24 c4_31_25 set community 0:1 route-map calculator permit 20656 match community c4_31_26 c4_31_27 c4_31_28 c4_31_29 c3_31_30 set community 0:1 route-map calculator permit 20657 match community c4_31_30 c4_31_31 c4_32_17 c4_32_18 c4_32_19 set community 0:1 route-map calculator permit 20658 match community c4_32_20 c4_32_21 c4_32_22 c4_32_23 c4_32_24 set community 0:1 route-map calculator permit 20659 match community c4_32_25 c4_32_26 c4_32_27 c4_32_28 c4_32_29 set community 0:1 route-map calculator permit 20660 match community c4_32_30 c3_32_31 c4_32_31 c4_32_32 c4_33_17 set community 0:1 route-map calculator permit 20661 match community c4_33_18 c4_33_19 c4_33_20 c4_33_21 c4_33_22 set community 0:1 route-map calculator permit 20662 match community c4_33_23 c4_33_24 c4_33_25 c4_33_26 c4_33_27 set community 0:1 route-map calculator permit 20663 match community c4_33_28 c4_33_29 c4_33_30 c4_33_31 c3_33_32 set community 0:1 route-map calculator permit 20664 match community c4_33_32 c4_33_33 c4_34_18 c4_34_19 c4_34_20 set community 0:1 route-map calculator permit 20665 match community c4_34_21 c4_34_22 c4_34_23 c4_34_24 c4_34_25 set community 0:1 route-map calculator permit 20666 match community c4_34_26 c4_34_27 c4_34_28 c4_34_29 c4_34_30 set community 0:1 route-map calculator permit 20667 match community c4_34_31 c4_34_32 c3_34_33 c4_34_33 c4_34_34 set community 0:1 route-map calculator permit 20668 match community c4_35_18 c4_35_19 c4_35_20 c4_35_21 c4_35_22 set community 0:1 route-map calculator permit 20669 match community c4_35_23 c4_35_24 c4_35_25 c4_35_26 c4_35_27 set community 0:1 route-map calculator permit 20670 match community c4_35_28 c4_35_29 c4_35_30 c4_35_31 c4_35_32 set community 0:1 route-map calculator permit 20671 match community c4_35_33 c3_35_34 c4_35_34 c4_35_35 c4_36_19 set community 0:1 route-map calculator permit 20672 match community c4_36_20 c4_36_21 c4_36_22 c4_36_23 c4_36_24 set community 0:1 route-map calculator permit 20673 match community c4_36_25 c4_36_26 c4_36_27 c4_36_28 c4_36_29 set community 0:1 route-map calculator permit 20674 match community c4_36_30 c4_36_31 c4_36_32 c4_36_33 c4_36_34 set community 0:1 route-map calculator permit 20675 match community c3_36_35 c4_36_35 c4_36_36 c4_37_19 c4_37_20 set community 0:1 route-map calculator permit 20676 match community c4_37_21 c4_37_22 c4_37_23 c4_37_24 c4_37_25 set community 0:1 route-map calculator permit 20677 match community c4_37_26 c4_37_27 c4_37_28 c4_37_29 c4_37_30 set community 0:1 route-map calculator permit 20678 match community c4_37_31 c4_37_32 c4_37_33 c4_37_34 c4_37_35 set community 0:1 route-map calculator permit 20679 match community c3_37_36 c4_37_36 c4_37_37 c4_38_20 c4_38_21 set community 0:1 route-map calculator permit 20680 match community c4_38_22 c4_38_23 c4_38_24 c4_38_25 c4_38_26 set community 0:1 route-map calculator permit 20681 match community c4_38_27 c4_38_28 c4_38_29 c4_38_30 c4_38_31 set community 0:1 route-map calculator permit 20682 match community c4_38_32 c4_38_33 c4_38_34 c4_38_35 c4_38_36 set community 0:1 route-map calculator permit 20683 match community c3_38_37 c4_38_37 c4_38_38 c4_39_20 c4_39_21 set community 0:1 route-map calculator permit 20684 match community c4_39_22 c4_39_23 c4_39_24 c4_39_25 c4_39_26 set community 0:1 route-map calculator permit 20685 match community c4_39_27 c4_39_28 c4_39_29 c4_39_30 c4_39_31 set community 0:1 route-map calculator permit 20686 match community c4_39_32 c4_39_33 c4_39_34 c4_39_35 c4_39_36 set community 0:1 route-map calculator permit 20687 match community c4_39_37 c3_39_38 c4_39_38 c4_39_39 c4_40_21 set community 0:1 route-map calculator permit 20688 match community c4_40_22 c4_40_23 c4_40_24 c4_40_25 c4_40_26 set community 0:1 route-map calculator permit 20689 match community c4_40_27 c4_40_28 c4_40_29 c4_40_30 c4_40_31 set community 0:1 route-map calculator permit 20690 match community c4_40_32 c4_40_33 c4_40_34 c4_40_35 c4_40_36 set community 0:1 route-map calculator permit 20691 match community c4_40_37 c4_40_38 c3_40_39 c4_40_39 c4_40_40 set community 0:1 route-map calculator permit 20692 match community c4_41_21 c4_41_22 c4_41_23 c4_41_24 c4_41_25 set community 0:1 route-map calculator permit 20693 match community c4_41_26 c4_41_27 c4_41_28 c4_41_29 c4_41_30 set community 0:1 route-map calculator permit 20694 match community c4_41_31 c4_41_32 c4_41_33 c4_41_34 c4_41_35 set community 0:1 route-map calculator permit 20695 match community c4_41_36 c4_41_37 c4_41_38 c4_41_39 c3_41_40 set community 0:1 route-map calculator permit 20696 match community c4_41_40 c4_41_41 c4_42_22 c4_42_23 c4_42_24 set community 0:1 route-map calculator permit 20697 match community c4_42_25 c4_42_26 c4_42_27 c4_42_28 c4_42_29 set community 0:1 route-map calculator permit 20698 match community c4_42_30 c4_42_31 c4_42_32 c4_42_33 c4_42_34 set community 0:1 route-map calculator permit 20699 match community c4_42_35 c4_42_36 c4_42_37 c4_42_38 c4_42_39 set community 0:1 route-map calculator permit 20700 match community c4_42_40 c3_42_41 c4_42_41 c4_42_42 c4_43_22 set community 0:1 route-map calculator permit 20701 match community c4_43_23 c4_43_24 c4_43_25 c4_43_26 c4_43_27 set community 0:1 route-map calculator permit 20702 match community c4_43_28 c4_43_29 c4_43_30 c4_43_31 c4_43_32 set community 0:1 route-map calculator permit 20703 match community c4_43_33 c4_43_34 c4_43_35 c4_43_36 c4_43_37 set community 0:1 route-map calculator permit 20704 match community c4_43_38 c4_43_39 c4_43_40 c4_43_41 c3_43_42 set community 0:1 route-map calculator permit 20705 match community c4_43_42 c4_43_43 c4_44_23 c4_44_24 c4_44_25 set community 0:1 route-map calculator permit 20706 match community c4_44_26 c4_44_27 c4_44_28 c4_44_29 c4_44_30 set community 0:1 route-map calculator permit 20707 match community c4_44_31 c4_44_32 c4_44_33 c4_44_34 c4_44_35 set community 0:1 route-map calculator permit 20708 match community c4_44_36 c4_44_37 c4_44_38 c4_44_39 c4_44_40 set community 0:1 route-map calculator permit 20709 match community c4_44_41 c4_44_42 c3_44_43 c4_44_43 c4_44_44 set community 0:1 route-map calculator permit 20710 match community c4_45_23 c4_45_24 c4_45_25 c4_45_26 c4_45_27 set community 0:1 route-map calculator permit 20711 match community c4_45_28 c4_45_29 c4_45_30 c4_45_31 c4_45_32 set community 0:1 route-map calculator permit 20712 match community c4_45_33 c4_45_34 c4_45_35 c4_45_36 c4_45_37 set community 0:1 route-map calculator permit 20713 match community c4_45_38 c4_45_39 c4_45_40 c4_45_41 c4_45_42 set community 0:1 route-map calculator permit 20714 match community c4_45_43 c3_45_44 c4_45_44 c4_45_45 c4_46_24 set community 0:1 route-map calculator permit 20715 match community c4_46_25 c4_46_26 c4_46_27 c4_46_28 c4_46_29 set community 0:1 route-map calculator permit 20716 match community c4_46_30 c4_46_31 c4_46_32 c4_46_33 c4_46_34 set community 0:1 route-map calculator permit 20717 match community c4_46_35 c4_46_36 c4_46_37 c4_46_38 c4_46_39 set community 0:1 route-map calculator permit 20718 match community c4_46_40 c4_46_41 c4_46_42 c4_46_43 c4_46_44 set community 0:1 route-map calculator permit 20719 match community c3_46_45 c4_46_45 c4_46_46 c4_47_24 c4_47_25 set community 0:1 route-map calculator permit 20720 match community c4_47_26 c4_47_27 c4_47_28 c4_47_29 c4_47_30 set community 0:1 route-map calculator permit 20721 match community c4_47_31 c4_47_32 c4_47_33 c4_47_34 c4_47_35 set community 0:1 route-map calculator permit 20722 match community c4_47_36 c4_47_37 c4_47_38 c4_47_39 c4_47_40 set community 0:1 route-map calculator permit 20723 match community c4_47_41 c4_47_42 c4_47_43 c4_47_44 c4_47_45 set community 0:1 route-map calculator permit 20724 match community c3_47_46 c4_47_46 c4_47_47 c4_48_25 c4_48_26 set community 0:1 route-map calculator permit 20725 match community c4_48_27 c4_48_28 c4_48_29 c4_48_30 c4_48_31 set community 0:1 route-map calculator permit 20726 match community c4_48_32 c4_48_33 c4_48_34 c4_48_35 c4_48_36 set community 0:1 route-map calculator permit 20727 match community c4_48_37 c4_48_38 c4_48_39 c4_48_40 c4_48_41 set community 0:1 route-map calculator permit 20728 match community c4_48_42 c4_48_43 c4_48_44 c4_48_45 c4_48_46 set community 0:1 route-map calculator permit 20729 match community c3_48_47 c4_48_47 c4_48_48 c4_49_25 c4_49_26 set community 0:1 route-map calculator permit 20730 match community c4_49_27 c4_49_28 c4_49_29 c4_49_30 c4_49_31 set community 0:1 route-map calculator permit 20731 match community c4_49_32 c4_49_33 c4_49_34 c4_49_35 c4_49_36 set community 0:1 route-map calculator permit 20732 match community c4_49_37 c4_49_38 c4_49_39 c4_49_40 c4_49_41 set community 0:1 route-map calculator permit 20733 match community c4_49_42 c4_49_43 c4_49_44 c4_49_45 c4_49_46 set community 0:1 route-map calculator permit 20734 match community c4_49_47 c3_49_48 c4_49_48 c4_49_49 c4_50_26 set community 0:1 route-map calculator permit 20735 match community c4_50_27 c4_50_28 c4_50_29 c4_50_30 c4_50_31 set community 0:1 route-map calculator permit 20736 match community c4_50_32 c4_50_33 c4_50_34 c4_50_35 c4_50_36 set community 0:1 route-map calculator permit 20737 match community c4_50_37 c4_50_38 c4_50_39 c4_50_40 c4_50_41 set community 0:1 route-map calculator permit 20738 match community c4_50_42 c4_50_43 c4_50_44 c4_50_45 c4_50_46 set community 0:1 route-map calculator permit 20739 match community c4_50_47 c4_50_48 c3_50_49 c4_50_49 c4_50_50 set community 0:1 route-map calculator permit 20740 match community c4_51_26 c4_51_27 c4_51_28 c4_51_29 c4_51_30 set community 0:1 route-map calculator permit 20741 match community c4_51_31 c4_51_32 c4_51_33 c4_51_34 c4_51_35 set community 0:1 route-map calculator permit 20742 match community c4_51_36 c4_51_37 c4_51_38 c4_51_39 c4_51_40 set community 0:1 route-map calculator permit 20743 match community c4_51_41 c4_51_42 c4_51_43 c4_51_44 c4_51_45 set community 0:1 route-map calculator permit 20744 match community c4_51_46 c4_51_47 c4_51_48 c4_51_49 c3_51_50 set community 0:1 route-map calculator permit 20745 match community c4_51_50 c4_51_51 c4_52_27 c4_52_28 c4_52_29 set community 0:1 route-map calculator permit 20746 match community c4_52_30 c4_52_31 c4_52_32 c4_52_33 c4_52_34 set community 0:1 route-map calculator permit 20747 match community c4_52_35 c4_52_36 c4_52_37 c4_52_38 c4_52_39 set community 0:1 route-map calculator permit 20748 match community c4_52_40 c4_52_41 c4_52_42 c4_52_43 c4_52_44 set community 0:1 route-map calculator permit 20749 match community c4_52_45 c4_52_46 c4_52_47 c4_52_48 c4_52_49 set community 0:1 route-map calculator permit 20750 match community c4_52_50 c3_52_51 c4_52_51 c4_52_52 c4_53_27 set community 0:1 route-map calculator permit 20751 match community c4_53_28 c4_53_29 c4_53_30 c4_53_31 c4_53_32 set community 0:1 route-map calculator permit 20752 match community c4_53_33 c4_53_34 c4_53_35 c4_53_36 c4_53_37 set community 0:1 route-map calculator permit 20753 match community c4_53_38 c4_53_39 c4_53_40 c4_53_41 c4_53_42 set community 0:1 route-map calculator permit 20754 match community c4_53_43 c4_53_44 c4_53_45 c4_53_46 c4_53_47 set community 0:1 route-map calculator permit 20755 match community c4_53_48 c4_53_49 c4_53_50 c4_53_51 c3_53_52 set community 0:1 route-map calculator permit 20756 match community c4_53_52 c4_53_53 c4_54_28 c4_54_29 c4_54_30 set community 0:1 route-map calculator permit 20757 match community c4_54_31 c4_54_32 c4_54_33 c4_54_34 c4_54_35 set community 0:1 route-map calculator permit 20758 match community c4_54_36 c4_54_37 c4_54_38 c4_54_39 c4_54_40 set community 0:1 route-map calculator permit 20759 match community c4_54_41 c4_54_42 c4_54_43 c4_54_44 c4_54_45 set community 0:1 route-map calculator permit 20760 match community c4_54_46 c4_54_47 c4_54_48 c4_54_49 c4_54_50 set community 0:1 route-map calculator permit 20761 match community c4_54_51 c4_54_52 c3_54_53 c4_54_53 c4_54_54 set community 0:1 route-map calculator permit 20762 match community c4_55_28 c4_55_29 c4_55_30 c4_55_31 c4_55_32 set community 0:1 route-map calculator permit 20763 match community c4_55_33 c4_55_34 c4_55_35 c4_55_36 c4_55_37 set community 0:1 route-map calculator permit 20764 match community c4_55_38 c4_55_39 c4_55_40 c4_55_41 c4_55_42 set community 0:1 route-map calculator permit 20765 match community c4_55_43 c4_55_44 c4_55_45 c4_55_46 c4_55_47 set community 0:1 route-map calculator permit 20766 match community c4_55_48 c4_55_49 c4_55_50 c4_55_51 c4_55_52 set community 0:1 route-map calculator permit 20767 match community c4_55_53 c3_55_54 c4_55_54 c4_55_55 c4_56_29 set community 0:1 route-map calculator permit 20768 match community c4_56_30 c4_56_31 c4_56_32 c4_56_33 c4_56_34 set community 0:1 route-map calculator permit 20769 match community c4_56_35 c4_56_36 c4_56_37 c4_56_38 c4_56_39 set community 0:1 route-map calculator permit 20770 match community c4_56_40 c4_56_41 c4_56_42 c4_56_43 c4_56_44 set community 0:1 route-map calculator permit 20771 match community c4_56_45 c4_56_46 c4_56_47 c4_56_48 c4_56_49 set community 0:1 route-map calculator permit 20772 match community c4_56_50 c4_56_51 c4_56_52 c4_56_53 c4_56_54 set community 0:1 route-map calculator permit 20773 match community c3_56_55 c4_56_55 c4_56_56 c4_57_29 c4_57_30 set community 0:1 route-map calculator permit 20774 match community c4_57_31 c4_57_32 c4_57_33 c4_57_34 c4_57_35 set community 0:1 route-map calculator permit 20775 match community c4_57_36 c4_57_37 c4_57_38 c4_57_39 c4_57_40 set community 0:1 route-map calculator permit 20776 match community c4_57_41 c4_57_42 c4_57_43 c4_57_44 c4_57_45 set community 0:1 route-map calculator permit 20777 match community c4_57_46 c4_57_47 c4_57_48 c4_57_49 c4_57_50 set community 0:1 route-map calculator permit 20778 match community c4_57_51 c4_57_52 c4_57_53 c4_57_54 c4_57_55 set community 0:1 route-map calculator permit 20779 match community c3_57_56 c4_57_56 c4_57_57 c4_58_30 c4_58_31 set community 0:1 route-map calculator permit 20780 match community c4_58_32 c4_58_33 c4_58_34 c4_58_35 c4_58_36 set community 0:1 route-map calculator permit 20781 match community c4_58_37 c4_58_38 c4_58_39 c4_58_40 c4_58_41 set community 0:1 route-map calculator permit 20782 match community c4_58_42 c4_58_43 c4_58_44 c4_58_45 c4_58_46 set community 0:1 route-map calculator permit 20783 match community c4_58_47 c4_58_48 c4_58_49 c4_58_50 c4_58_51 set community 0:1 route-map calculator permit 20784 match community c4_58_52 c4_58_53 c4_58_54 c4_58_55 c4_58_56 set community 0:1 route-map calculator permit 20785 match community c3_58_57 c4_58_57 c4_58_58 c4_59_30 c4_59_31 set community 0:1 route-map calculator permit 20786 match community c4_59_32 c4_59_33 c4_59_34 c4_59_35 c4_59_36 set community 0:1 route-map calculator permit 20787 match community c4_59_37 c4_59_38 c4_59_39 c4_59_40 c4_59_41 set community 0:1 route-map calculator permit 20788 match community c4_59_42 c4_59_43 c4_59_44 c4_59_45 c4_59_46 set community 0:1 route-map calculator permit 20789 match community c4_59_47 c4_59_48 c4_59_49 c4_59_50 c4_59_51 set community 0:1 route-map calculator permit 20790 match community c4_59_52 c4_59_53 c4_59_54 c4_59_55 c4_59_56 set community 0:1 route-map calculator permit 20791 match community c4_59_57 c3_59_58 c4_59_58 c4_59_59 c4_60_31 set community 0:1 route-map calculator permit 20792 match community c4_60_32 c4_60_33 c4_60_34 c4_60_35 c4_60_36 set community 0:1 route-map calculator permit 20793 match community c4_60_37 c4_60_38 c4_60_39 c4_60_40 c4_60_41 set community 0:1 route-map calculator permit 20794 match community c4_60_42 c4_60_43 c4_60_44 c4_60_45 c4_60_46 set community 0:1 route-map calculator permit 20795 match community c4_60_47 c4_60_48 c4_60_49 c4_60_50 c4_60_51 set community 0:1 route-map calculator permit 20796 match community c4_60_52 c4_60_53 c4_60_54 c4_60_55 c4_60_56 set community 0:1 route-map calculator permit 20797 match community c4_60_57 c4_60_58 c3_60_59 c4_60_59 c4_60_60 set community 0:1 route-map calculator permit 20798 match community c4_61_31 c4_61_32 c4_61_33 c4_61_34 c4_61_35 set community 0:1 route-map calculator permit 20799 match community c4_61_36 c4_61_37 c4_61_38 c4_61_39 c4_61_40 set community 0:1 route-map calculator permit 20800 match community c4_61_41 c4_61_42 c4_61_43 c4_61_44 c4_61_45 set community 0:1 route-map calculator permit 20801 match community c4_61_46 c4_61_47 c4_61_48 c4_61_49 c4_61_50 set community 0:1 route-map calculator permit 20802 match community c4_61_51 c4_61_52 c4_61_53 c4_61_54 c4_61_55 set community 0:1 route-map calculator permit 20803 match community c4_61_56 c4_61_57 c4_61_58 c4_61_59 c3_61_60 set community 0:1 route-map calculator permit 20804 match community c4_61_60 c4_61_61 c4_62_32 c4_62_33 c4_62_34 set community 0:1 route-map calculator permit 20805 match community c4_62_35 c4_62_36 c4_62_37 c4_62_38 c4_62_39 set community 0:1 route-map calculator permit 20806 match community c4_62_40 c4_62_41 c4_62_42 c4_62_43 c4_62_44 set community 0:1 route-map calculator permit 20807 match community c4_62_45 c4_62_46 c4_62_47 c4_62_48 c4_62_49 set community 0:1 route-map calculator permit 20808 match community c4_62_50 c4_62_51 c4_62_52 c4_62_53 c4_62_54 set community 0:1 route-map calculator permit 20809 match community c4_62_55 c4_62_56 c4_62_57 c4_62_58 c4_62_59 set community 0:1 route-map calculator permit 20810 match community c4_62_60 c3_62_61 c4_62_61 c4_62_62 c4_63_32 set community 0:1 route-map calculator permit 20811 match community c4_63_33 c4_63_34 c4_63_35 c4_63_36 c4_63_37 set community 0:1 route-map calculator permit 20812 match community c4_63_38 c4_63_39 c4_63_40 c4_63_41 c4_63_42 set community 0:1 route-map calculator permit 20813 match community c4_63_43 c4_63_44 c4_63_45 c4_63_46 c4_63_47 set community 0:1 route-map calculator permit 20814 match community c4_63_48 c4_63_49 c4_63_50 c4_63_51 c4_63_52 set community 0:1 route-map calculator permit 20815 match community c4_63_53 c4_63_54 c4_63_55 c4_63_56 c4_63_57 set community 0:1 route-map calculator permit 20816 match community c4_63_58 c4_63_59 c4_63_60 c4_63_61 c3_63_62 set community 0:1 route-map calculator permit 20817 match community c4_63_62 c4_63_63 c4_64_33 c4_64_34 c4_64_35 set community 0:1 route-map calculator permit 20818 match community c4_64_36 c4_64_37 c4_64_38 c4_64_39 c4_64_40 set community 0:1 route-map calculator permit 20819 match community c4_64_41 c4_64_42 c4_64_43 c4_64_44 c4_64_45 set community 0:1 route-map calculator permit 20820 match community c4_64_46 c4_64_47 c4_64_48 c4_64_49 c4_64_50 set community 0:1 route-map calculator permit 20821 match community c4_64_51 c4_64_52 c4_64_53 c4_64_54 c4_64_55 set community 0:1 route-map calculator permit 20822 match community c4_64_56 c4_64_57 c4_64_58 c4_64_59 c4_64_60 set community 0:1 route-map calculator permit 20823 match community c4_64_61 c4_64_62 c3_64_63 c4_64_63 c4_64_64 set community 0:1 route-map calculator permit 20824 match community c4_65_33 c4_65_34 c4_65_35 c4_65_36 c4_65_37 set community 0:1 route-map calculator permit 20825 match community c4_65_38 c4_65_39 c4_65_40 c4_65_41 c4_65_42 set community 0:1 route-map calculator permit 20826 match community c4_65_43 c4_65_44 c4_65_45 c4_65_46 c4_65_47 set community 0:1 route-map calculator permit 20827 match community c4_65_48 c4_65_49 c4_65_50 c4_65_51 c4_65_52 set community 0:1 route-map calculator permit 20828 match community c4_65_53 c4_65_54 c4_65_55 c4_65_56 c4_65_57 set community 0:1 route-map calculator permit 20829 match community c4_65_58 c4_65_59 c4_65_60 c4_65_61 c4_65_62 set community 0:1 route-map calculator permit 20830 match community c4_65_63 c3_65_64 c4_65_64 c4_65_65 c4_66_34 set community 0:1 route-map calculator permit 20831 match community c4_66_35 c4_66_36 c4_66_37 c4_66_38 c4_66_39 set community 0:1 route-map calculator permit 20832 match community c4_66_40 c4_66_41 c4_66_42 c4_66_43 c4_66_44 set community 0:1 route-map calculator permit 20833 match community c4_66_45 c4_66_46 c4_66_47 c4_66_48 c4_66_49 set community 0:1 route-map calculator permit 20834 match community c4_66_50 c4_66_51 c4_66_52 c4_66_53 c4_66_54 set community 0:1 route-map calculator permit 20835 match community c4_66_55 c4_66_56 c4_66_57 c4_66_58 c4_66_59 set community 0:1 route-map calculator permit 20836 match community c4_66_60 c4_66_61 c4_66_62 c4_66_63 c4_66_64 set community 0:1 route-map calculator permit 20837 match community c3_66_65 c4_66_65 c4_66_66 c4_67_34 c4_67_35 set community 0:1 route-map calculator permit 20838 match community c4_67_36 c4_67_37 c4_67_38 c4_67_39 c4_67_40 set community 0:1 route-map calculator permit 20839 match community c4_67_41 c4_67_42 c4_67_43 c4_67_44 c4_67_45 set community 0:1 route-map calculator permit 20840 match community c4_67_46 c4_67_47 c4_67_48 c4_67_49 c4_67_50 set community 0:1 route-map calculator permit 20841 match community c4_67_51 c4_67_52 c4_67_53 c4_67_54 c4_67_55 set community 0:1 route-map calculator permit 20842 match community c4_67_56 c4_67_57 c4_67_58 c4_67_59 c4_67_60 set community 0:1 route-map calculator permit 20843 match community c4_67_61 c4_67_62 c4_67_63 c4_67_64 c4_67_65 set community 0:1 route-map calculator permit 20844 match community c3_67_66 c4_67_66 c4_67_67 c4_68_35 c4_68_36 set community 0:1 route-map calculator permit 20845 match community c4_68_37 c4_68_38 c4_68_39 c4_68_40 c4_68_41 set community 0:1 route-map calculator permit 20846 match community c4_68_42 c4_68_43 c4_68_44 c4_68_45 c4_68_46 set community 0:1 route-map calculator permit 20847 match community c4_68_47 c4_68_48 c4_68_49 c4_68_50 c4_68_51 set community 0:1 route-map calculator permit 20848 match community c4_68_52 c4_68_53 c4_68_54 c4_68_55 c4_68_56 set community 0:1 route-map calculator permit 20849 match community c4_68_57 c4_68_58 c4_68_59 c4_68_60 c4_68_61 set community 0:1 route-map calculator permit 20850 match community c4_68_62 c4_68_63 c4_68_64 c4_68_65 c4_68_66 set community 0:1 route-map calculator permit 20851 match community c3_68_67 c4_68_67 c4_68_68 c4_69_35 c4_69_36 set community 0:1 route-map calculator permit 20852 match community c4_69_37 c4_69_38 c4_69_39 c4_69_40 c4_69_41 set community 0:1 route-map calculator permit 20853 match community c4_69_42 c4_69_43 c4_69_44 c4_69_45 c4_69_46 set community 0:1 route-map calculator permit 20854 match community c4_69_47 c4_69_48 c4_69_49 c4_69_50 c4_69_51 set community 0:1 route-map calculator permit 20855 match community c4_69_52 c4_69_53 c4_69_54 c4_69_55 c4_69_56 set community 0:1 route-map calculator permit 20856 match community c4_69_57 c4_69_58 c4_69_59 c4_69_60 c4_69_61 set community 0:1 route-map calculator permit 20857 match community c4_69_62 c4_69_63 c4_69_64 c4_69_65 c4_69_66 set community 0:1 route-map calculator permit 20858 match community c4_69_67 c3_69_68 c4_69_68 c4_69_69 c4_70_36 set community 0:1 route-map calculator permit 20859 match community c4_70_37 c4_70_38 c4_70_39 c4_70_40 c4_70_41 set community 0:1 route-map calculator permit 20860 match community c4_70_42 c4_70_43 c4_70_44 c4_70_45 c4_70_46 set community 0:1 route-map calculator permit 20861 match community c4_70_47 c4_70_48 c4_70_49 c4_70_50 c4_70_51 set community 0:1 route-map calculator permit 20862 match community c4_70_52 c4_70_53 c4_70_54 c4_70_55 c4_70_56 set community 0:1 route-map calculator permit 20863 match community c4_70_57 c4_70_58 c4_70_59 c4_70_60 c4_70_61 set community 0:1 route-map calculator permit 20864 match community c4_70_62 c4_70_63 c4_70_64 c4_70_65 c4_70_66 set community 0:1 route-map calculator permit 20865 match community c4_70_67 c4_70_68 c3_70_69 c4_70_69 c4_70_70 set community 0:1 route-map calculator permit 20866 match community c4_71_36 c4_71_37 c4_71_38 c4_71_39 c4_71_40 set community 0:1 route-map calculator permit 20867 match community c4_71_41 c4_71_42 c4_71_43 c4_71_44 c4_71_45 set community 0:1 route-map calculator permit 20868 match community c4_71_46 c4_71_47 c4_71_48 c4_71_49 c4_71_50 set community 0:1 route-map calculator permit 20869 match community c4_71_51 c4_71_52 c4_71_53 c4_71_54 c4_71_55 set community 0:1 route-map calculator permit 20870 match community c4_71_56 c4_71_57 c4_71_58 c4_71_59 c4_71_60 set community 0:1 route-map calculator permit 20871 match community c4_71_61 c4_71_62 c4_71_63 c4_71_64 c4_71_65 set community 0:1 route-map calculator permit 20872 match community c4_71_66 c4_71_67 c4_71_68 c4_71_69 c3_71_70 set community 0:1 route-map calculator permit 20873 match community c4_71_70 c4_71_71 c4_72_37 c4_72_38 c4_72_39 set community 0:1 route-map calculator permit 20874 match community c4_72_40 c4_72_41 c4_72_42 c4_72_43 c4_72_44 set community 0:1 route-map calculator permit 20875 match community c4_72_45 c4_72_46 c4_72_47 c4_72_48 c4_72_49 set community 0:1 route-map calculator permit 20876 match community c4_72_50 c4_72_51 c4_72_52 c4_72_53 c4_72_54 set community 0:1 route-map calculator permit 20877 match community c4_72_55 c4_72_56 c4_72_57 c4_72_58 c4_72_59 set community 0:1 route-map calculator permit 20878 match community c4_72_60 c4_72_61 c4_72_62 c4_72_63 c4_72_64 set community 0:1 route-map calculator permit 20879 match community c4_72_65 c4_72_66 c4_72_67 c4_72_68 c4_72_69 set community 0:1 route-map calculator permit 20880 match community c4_72_70 c3_72_71 c4_72_71 c4_72_72 c4_73_37 set community 0:1 route-map calculator permit 20881 match community c4_73_38 c4_73_39 c4_73_40 c4_73_41 c4_73_42 set community 0:1 route-map calculator permit 20882 match community c4_73_43 c4_73_44 c4_73_45 c4_73_46 c4_73_47 set community 0:1 route-map calculator permit 20883 match community c4_73_48 c4_73_49 c4_73_50 c4_73_51 c4_73_52 set community 0:1 route-map calculator permit 20884 match community c4_73_53 c4_73_54 c4_73_55 c4_73_56 c4_73_57 set community 0:1 route-map calculator permit 20885 match community c4_73_58 c4_73_59 c4_73_60 c4_73_61 c4_73_62 set community 0:1 route-map calculator permit 20886 match community c4_73_63 c4_73_64 c4_73_65 c4_73_66 c4_73_67 set community 0:1 route-map calculator permit 20887 match community c4_73_68 c4_73_69 c4_73_70 c4_73_71 c3_73_72 set community 0:1 route-map calculator permit 20888 match community c4_73_72 c4_73_73 c4_74_38 c4_74_39 c4_74_40 set community 0:1 route-map calculator permit 20889 match community c4_74_41 c4_74_42 c4_74_43 c4_74_44 c4_74_45 set community 0:1 route-map calculator permit 20890 match community c4_74_46 c4_74_47 c4_74_48 c4_74_49 c4_74_50 set community 0:1 route-map calculator permit 20891 match community c4_74_51 c4_74_52 c4_74_53 c4_74_54 c4_74_55 set community 0:1 route-map calculator permit 20892 match community c4_74_56 c4_74_57 c4_74_58 c4_74_59 c4_74_60 set community 0:1 route-map calculator permit 20893 match community c4_74_61 c4_74_62 c4_74_63 c4_74_64 c4_74_65 set community 0:1 route-map calculator permit 20894 match community c4_74_66 c4_74_67 c4_74_68 c4_74_69 c4_74_70 set community 0:1 route-map calculator permit 20895 match community c4_74_71 c4_74_72 c3_74_73 c4_74_73 c4_74_74 set community 0:1 route-map calculator permit 20896 match community c4_75_38 c4_75_39 c4_75_40 c4_75_41 c4_75_42 set community 0:1 route-map calculator permit 20897 match community c4_75_43 c4_75_44 c4_75_45 c4_75_46 c4_75_47 set community 0:1 route-map calculator permit 20898 match community c4_75_48 c4_75_49 c4_75_50 c4_75_51 c4_75_52 set community 0:1 route-map calculator permit 20899 match community c4_75_53 c4_75_54 c4_75_55 c4_75_56 c4_75_57 set community 0:1 route-map calculator permit 20900 match community c4_75_58 c4_75_59 c4_75_60 c4_75_61 c4_75_62 set community 0:1 route-map calculator permit 20901 match community c4_75_63 c4_75_64 c4_75_65 c4_75_66 c4_75_67 set community 0:1 route-map calculator permit 20902 match community c4_75_68 c4_75_69 c4_75_70 c4_75_71 c4_75_72 set community 0:1 route-map calculator permit 20903 match community c4_75_73 c3_75_74 c4_75_74 c4_75_75 c4_76_39 set community 0:1 route-map calculator permit 20904 match community c4_76_40 c4_76_41 c4_76_42 c4_76_43 c4_76_44 set community 0:1 route-map calculator permit 20905 match community c4_76_45 c4_76_46 c4_76_47 c4_76_48 c4_76_49 set community 0:1 route-map calculator permit 20906 match community c4_76_50 c4_76_51 c4_76_52 c4_76_53 c4_76_54 set community 0:1 route-map calculator permit 20907 match community c4_76_55 c4_76_56 c4_76_57 c4_76_58 c4_76_59 set community 0:1 route-map calculator permit 20908 match community c4_76_60 c4_76_61 c4_76_62 c4_76_63 c4_76_64 set community 0:1 route-map calculator permit 20909 match community c4_76_65 c4_76_66 c4_76_67 c4_76_68 c4_76_69 set community 0:1 route-map calculator permit 20910 match community c4_76_70 c4_76_71 c4_76_72 c4_76_73 c4_76_74 set community 0:1 route-map calculator permit 20911 match community c3_76_75 c4_76_75 c4_76_76 c4_77_39 c4_77_40 set community 0:1 route-map calculator permit 20912 match community c4_77_41 c4_77_42 c4_77_43 c4_77_44 c4_77_45 set community 0:1 route-map calculator permit 20913 match community c4_77_46 c4_77_47 c4_77_48 c4_77_49 c4_77_50 set community 0:1 route-map calculator permit 20914 match community c4_77_51 c4_77_52 c4_77_53 c4_77_54 c4_77_55 set community 0:1 route-map calculator permit 20915 match community c4_77_56 c4_77_57 c4_77_58 c4_77_59 c4_77_60 set community 0:1 route-map calculator permit 20916 match community c4_77_61 c4_77_62 c4_77_63 c4_77_64 c4_77_65 set community 0:1 route-map calculator permit 20917 match community c4_77_66 c4_77_67 c4_77_68 c4_77_69 c4_77_70 set community 0:1 route-map calculator permit 20918 match community c4_77_71 c4_77_72 c4_77_73 c4_77_74 c4_77_75 set community 0:1 route-map calculator permit 20919 match community c3_77_76 c4_77_76 c4_77_77 c4_78_40 c4_78_41 set community 0:1 route-map calculator permit 20920 match community c4_78_42 c4_78_43 c4_78_44 c4_78_45 c4_78_46 set community 0:1 route-map calculator permit 20921 match community c4_78_47 c4_78_48 c4_78_49 c4_78_50 c4_78_51 set community 0:1 route-map calculator permit 20922 match community c4_78_52 c4_78_53 c4_78_54 c4_78_55 c4_78_56 set community 0:1 route-map calculator permit 20923 match community c4_78_57 c4_78_58 c4_78_59 c4_78_60 c4_78_61 set community 0:1 route-map calculator permit 20924 match community c4_78_62 c4_78_63 c4_78_64 c4_78_65 c4_78_66 set community 0:1 route-map calculator permit 20925 match community c4_78_67 c4_78_68 c4_78_69 c4_78_70 c4_78_71 set community 0:1 route-map calculator permit 20926 match community c4_78_72 c4_78_73 c4_78_74 c4_78_75 c4_78_76 set community 0:1 route-map calculator permit 20927 match community c3_78_77 c4_78_77 c4_78_78 c4_79_40 c4_79_41 set community 0:1 route-map calculator permit 20928 match community c4_79_42 c4_79_43 c4_79_44 c4_79_45 c4_79_46 set community 0:1 route-map calculator permit 20929 match community c4_79_47 c4_79_48 c4_79_49 c4_79_50 c4_79_51 set community 0:1 route-map calculator permit 20930 match community c4_79_52 c4_79_53 c4_79_54 c4_79_55 c4_79_56 set community 0:1 route-map calculator permit 20931 match community c4_79_57 c4_79_58 c4_79_59 c4_79_60 c4_79_61 set community 0:1 route-map calculator permit 20932 match community c4_79_62 c4_79_63 c4_79_64 c4_79_65 c4_79_66 set community 0:1 route-map calculator permit 20933 match community c4_79_67 c4_79_68 c4_79_69 c4_79_70 c4_79_71 set community 0:1 route-map calculator permit 20934 match community c4_79_72 c4_79_73 c4_79_74 c4_79_75 c4_79_76 set community 0:1 route-map calculator permit 20935 match community c4_79_77 c3_79_78 c4_79_78 c4_79_79 c4_80_41 set community 0:1 route-map calculator permit 20936 match community c4_80_42 c4_80_43 c4_80_44 c4_80_45 c4_80_46 set community 0:1 route-map calculator permit 20937 match community c4_80_47 c4_80_48 c4_80_49 c4_80_50 c4_80_51 set community 0:1 route-map calculator permit 20938 match community c4_80_52 c4_80_53 c4_80_54 c4_80_55 c4_80_56 set community 0:1 route-map calculator permit 20939 match community c4_80_57 c4_80_58 c4_80_59 c4_80_60 c4_80_61 set community 0:1 route-map calculator permit 20940 match community c4_80_62 c4_80_63 c4_80_64 c4_80_65 c4_80_66 set community 0:1 route-map calculator permit 20941 match community c4_80_67 c4_80_68 c4_80_69 c4_80_70 c4_80_71 set community 0:1 route-map calculator permit 20942 match community c4_80_72 c4_80_73 c4_80_74 c4_80_75 c4_80_76 set community 0:1 route-map calculator permit 20943 match community c4_80_77 c4_80_78 c3_80_79 c4_80_79 c4_80_80 set community 0:1 route-map calculator permit 20944 match community c4_81_41 c4_81_42 c4_81_43 c4_81_44 c4_81_45 set community 0:1 route-map calculator permit 20945 match community c4_81_46 c4_81_47 c4_81_48 c4_81_49 c4_81_50 set community 0:1 route-map calculator permit 20946 match community c4_81_51 c4_81_52 c4_81_53 c4_81_54 c4_81_55 set community 0:1 route-map calculator permit 20947 match community c4_81_56 c4_81_57 c4_81_58 c4_81_59 c4_81_60 set community 0:1 route-map calculator permit 20948 match community c4_81_61 c4_81_62 c4_81_63 c4_81_64 c4_81_65 set community 0:1 route-map calculator permit 20949 match community c4_81_66 c4_81_67 c4_81_68 c4_81_69 c4_81_70 set community 0:1 route-map calculator permit 20950 match community c4_81_71 c4_81_72 c4_81_73 c4_81_74 c4_81_75 set community 0:1 route-map calculator permit 20951 match community c4_81_76 c4_81_77 c4_81_78 c4_81_79 c3_81_80 set community 0:1 route-map calculator permit 20952 match community c4_81_80 c4_81_81 c4_82_42 c4_82_43 c4_82_44 set community 0:1 route-map calculator permit 20953 match community c4_82_45 c4_82_46 c4_82_47 c4_82_48 c4_82_49 set community 0:1 route-map calculator permit 20954 match community c4_82_50 c4_82_51 c4_82_52 c4_82_53 c4_82_54 set community 0:1 route-map calculator permit 20955 match community c4_82_55 c4_82_56 c4_82_57 c4_82_58 c4_82_59 set community 0:1 route-map calculator permit 20956 match community c4_82_60 c4_82_61 c4_82_62 c4_82_63 c4_82_64 set community 0:1 route-map calculator permit 20957 match community c4_82_65 c4_82_66 c4_82_67 c4_82_68 c4_82_69 set community 0:1 route-map calculator permit 20958 match community c4_82_70 c4_82_71 c4_82_72 c4_82_73 c4_82_74 set community 0:1 route-map calculator permit 20959 match community c4_82_75 c4_82_76 c4_82_77 c4_82_78 c4_82_79 set community 0:1 route-map calculator permit 20960 match community c4_82_80 c3_82_81 c4_82_81 c4_82_82 c4_83_42 set community 0:1 route-map calculator permit 20961 match community c4_83_43 c4_83_44 c4_83_45 c4_83_46 c4_83_47 set community 0:1 route-map calculator permit 20962 match community c4_83_48 c4_83_49 c4_83_50 c4_83_51 c4_83_52 set community 0:1 route-map calculator permit 20963 match community c4_83_53 c4_83_54 c4_83_55 c4_83_56 c4_83_57 set community 0:1 route-map calculator permit 20964 match community c4_83_58 c4_83_59 c4_83_60 c4_83_61 c4_83_62 set community 0:1 route-map calculator permit 20965 match community c4_83_63 c4_83_64 c4_83_65 c4_83_66 c4_83_67 set community 0:1 route-map calculator permit 20966 match community c4_83_68 c4_83_69 c4_83_70 c4_83_71 c4_83_72 set community 0:1 route-map calculator permit 20967 match community c4_83_73 c4_83_74 c4_83_75 c4_83_76 c4_83_77 set community 0:1 route-map calculator permit 20968 match community c4_83_78 c4_83_79 c4_83_80 c4_83_81 c3_83_82 set community 0:1 route-map calculator permit 20969 match community c4_83_82 c4_83_83 c4_84_43 c4_84_44 c4_84_45 set community 0:1 route-map calculator permit 20970 match community c4_84_46 c4_84_47 c4_84_48 c4_84_49 c4_84_50 set community 0:1 route-map calculator permit 20971 match community c4_84_51 c4_84_52 c4_84_53 c4_84_54 c4_84_55 set community 0:1 route-map calculator permit 20972 match community c4_84_56 c4_84_57 c4_84_58 c4_84_59 c4_84_60 set community 0:1 route-map calculator permit 20973 match community c4_84_61 c4_84_62 c4_84_63 c4_84_64 c4_84_65 set community 0:1 route-map calculator permit 20974 match community c4_84_66 c4_84_67 c4_84_68 c4_84_69 c4_84_70 set community 0:1 route-map calculator permit 20975 match community c4_84_71 c4_84_72 c4_84_73 c4_84_74 c4_84_75 set community 0:1 route-map calculator permit 20976 match community c4_84_76 c4_84_77 c4_84_78 c4_84_79 c4_84_80 set community 0:1 route-map calculator permit 20977 match community c4_84_81 c4_84_82 c3_84_83 c4_84_83 c4_84_84 set community 0:1 route-map calculator permit 20978 match community c4_85_43 c4_85_44 c4_85_45 c4_85_46 c4_85_47 set community 0:1 route-map calculator permit 20979 match community c4_85_48 c4_85_49 c4_85_50 c4_85_51 c4_85_52 set community 0:1 route-map calculator permit 20980 match community c4_85_53 c4_85_54 c4_85_55 c4_85_56 c4_85_57 set community 0:1 route-map calculator permit 20981 match community c4_85_58 c4_85_59 c4_85_60 c4_85_61 c4_85_62 set community 0:1 route-map calculator permit 20982 match community c4_85_63 c4_85_64 c4_85_65 c4_85_66 c4_85_67 set community 0:1 route-map calculator permit 20983 match community c4_85_68 c4_85_69 c4_85_70 c4_85_71 c4_85_72 set community 0:1 route-map calculator permit 20984 match community c4_85_73 c4_85_74 c4_85_75 c4_85_76 c4_85_77 set community 0:1 route-map calculator permit 20985 match community c4_85_78 c4_85_79 c4_85_80 c4_85_81 c4_85_82 set community 0:1 route-map calculator permit 20986 match community c4_85_83 c3_85_84 c4_85_84 c4_85_85 c4_86_44 set community 0:1 route-map calculator permit 20987 match community c4_86_45 c4_86_46 c4_86_47 c4_86_48 c4_86_49 set community 0:1 route-map calculator permit 20988 match community c4_86_50 c4_86_51 c4_86_52 c4_86_53 c4_86_54 set community 0:1 route-map calculator permit 20989 match community c4_86_55 c4_86_56 c4_86_57 c4_86_58 c4_86_59 set community 0:1 route-map calculator permit 20990 match community c4_86_60 c4_86_61 c4_86_62 c4_86_63 c4_86_64 set community 0:1 route-map calculator permit 20991 match community c4_86_65 c4_86_66 c4_86_67 c4_86_68 c4_86_69 set community 0:1 route-map calculator permit 20992 match community c4_86_70 c4_86_71 c4_86_72 c4_86_73 c4_86_74 set community 0:1 route-map calculator permit 20993 match community c4_86_75 c4_86_76 c4_86_77 c4_86_78 c4_86_79 set community 0:1 route-map calculator permit 20994 match community c4_86_80 c4_86_81 c4_86_82 c4_86_83 c4_86_84 set community 0:1 route-map calculator permit 20995 match community c3_86_85 c4_86_85 c4_86_86 c4_87_44 c4_87_45 set community 0:1 route-map calculator permit 20996 match community c4_87_46 c4_87_47 c4_87_48 c4_87_49 c4_87_50 set community 0:1 route-map calculator permit 20997 match community c4_87_51 c4_87_52 c4_87_53 c4_87_54 c4_87_55 set community 0:1 route-map calculator permit 20998 match community c4_87_56 c4_87_57 c4_87_58 c4_87_59 c4_87_60 set community 0:1 route-map calculator permit 20999 match community c4_87_61 c4_87_62 c4_87_63 c4_87_64 c4_87_65 set community 0:1 route-map calculator permit 21000 match community c4_87_66 c4_87_67 c4_87_68 c4_87_69 c4_87_70 set community 0:1 route-map calculator permit 21001 match community c4_87_71 c4_87_72 c4_87_73 c4_87_74 c4_87_75 set community 0:1 route-map calculator permit 21002 match community c4_87_76 c4_87_77 c4_87_78 c4_87_79 c4_87_80 set community 0:1 route-map calculator permit 21003 match community c4_87_81 c4_87_82 c4_87_83 c4_87_84 c4_87_85 set community 0:1 route-map calculator permit 21004 match community c3_87_86 c4_87_86 c4_87_87 c4_88_45 c4_88_46 set community 0:1 route-map calculator permit 21005 match community c4_88_47 c4_88_48 c4_88_49 c4_88_50 c4_88_51 set community 0:1 route-map calculator permit 21006 match community c4_88_52 c4_88_53 c4_88_54 c4_88_55 c4_88_56 set community 0:1 route-map calculator permit 21007 match community c4_88_57 c4_88_58 c4_88_59 c4_88_60 c4_88_61 set community 0:1 route-map calculator permit 21008 match community c4_88_62 c4_88_63 c4_88_64 c4_88_65 c4_88_66 set community 0:1 route-map calculator permit 21009 match community c4_88_67 c4_88_68 c4_88_69 c4_88_70 c4_88_71 set community 0:1 route-map calculator permit 21010 match community c4_88_72 c4_88_73 c4_88_74 c4_88_75 c4_88_76 set community 0:1 route-map calculator permit 21011 match community c4_88_77 c4_88_78 c4_88_79 c4_88_80 c4_88_81 set community 0:1 route-map calculator permit 21012 match community c4_88_82 c4_88_83 c4_88_84 c4_88_85 c4_88_86 set community 0:1 route-map calculator permit 21013 match community c3_88_87 c4_88_87 c4_88_88 c4_89_45 c4_89_46 set community 0:1 route-map calculator permit 21014 match community c4_89_47 c4_89_48 c4_89_49 c4_89_50 c4_89_51 set community 0:1 route-map calculator permit 21015 match community c4_89_52 c4_89_53 c4_89_54 c4_89_55 c4_89_56 set community 0:1 route-map calculator permit 21016 match community c4_89_57 c4_89_58 c4_89_59 c4_89_60 c4_89_61 set community 0:1 route-map calculator permit 21017 match community c4_89_62 c4_89_63 c4_89_64 c4_89_65 c4_89_66 set community 0:1 route-map calculator permit 21018 match community c4_89_67 c4_89_68 c4_89_69 c4_89_70 c4_89_71 set community 0:1 route-map calculator permit 21019 match community c4_89_72 c4_89_73 c4_89_74 c4_89_75 c4_89_76 set community 0:1 route-map calculator permit 21020 match community c4_89_77 c4_89_78 c4_89_79 c4_89_80 c4_89_81 set community 0:1 route-map calculator permit 21021 match community c4_89_82 c4_89_83 c4_89_84 c4_89_85 c4_89_86 set community 0:1 route-map calculator permit 21022 match community c4_89_87 c3_89_88 c4_89_88 c4_89_89 c4_90_46 set community 0:1 route-map calculator permit 21023 match community c4_90_47 c4_90_48 c4_90_49 c4_90_50 c4_90_51 set community 0:1 route-map calculator permit 21024 match community c4_90_52 c4_90_53 c4_90_54 c4_90_55 c4_90_56 set community 0:1 route-map calculator permit 21025 match community c4_90_57 c4_90_58 c4_90_59 c4_90_60 c4_90_61 set community 0:1 route-map calculator permit 21026 match community c4_90_62 c4_90_63 c4_90_64 c4_90_65 c4_90_66 set community 0:1 route-map calculator permit 21027 match community c4_90_67 c4_90_68 c4_90_69 c4_90_70 c4_90_71 set community 0:1 route-map calculator permit 21028 match community c4_90_72 c4_90_73 c4_90_74 c4_90_75 c4_90_76 set community 0:1 route-map calculator permit 21029 match community c4_90_77 c4_90_78 c4_90_79 c4_90_80 c4_90_81 set community 0:1 route-map calculator permit 21030 match community c4_90_82 c4_90_83 c4_90_84 c4_90_85 c4_90_86 set community 0:1 route-map calculator permit 21031 match community c4_90_87 c4_90_88 c3_90_89 c4_90_89 c4_90_90 set community 0:1 route-map calculator permit 21032 match community c4_91_46 c4_91_47 c4_91_48 c4_91_49 c4_91_50 set community 0:1 route-map calculator permit 21033 match community c4_91_51 c4_91_52 c4_91_53 c4_91_54 c4_91_55 set community 0:1 route-map calculator permit 21034 match community c4_91_56 c4_91_57 c4_91_58 c4_91_59 c4_91_60 set community 0:1 route-map calculator permit 21035 match community c4_91_61 c4_91_62 c4_91_63 c4_91_64 c4_91_65 set community 0:1 route-map calculator permit 21036 match community c4_91_66 c4_91_67 c4_91_68 c4_91_69 c4_91_70 set community 0:1 route-map calculator permit 21037 match community c4_91_71 c4_91_72 c4_91_73 c4_91_74 c4_91_75 set community 0:1 route-map calculator permit 21038 match community c4_91_76 c4_91_77 c4_91_78 c4_91_79 c4_91_80 set community 0:1 route-map calculator permit 21039 match community c4_91_81 c4_91_82 c4_91_83 c4_91_84 c4_91_85 set community 0:1 route-map calculator permit 21040 match community c4_91_86 c4_91_87 c4_91_88 c4_91_89 c3_91_90 set community 0:1 route-map calculator permit 21041 match community c4_91_90 c4_91_91 c4_92_47 c4_92_48 c4_92_49 set community 0:1 route-map calculator permit 21042 match community c4_92_50 c4_92_51 c4_92_52 c4_92_53 c4_92_54 set community 0:1 route-map calculator permit 21043 match community c4_92_55 c4_92_56 c4_92_57 c4_92_58 c4_92_59 set community 0:1 route-map calculator permit 21044 match community c4_92_60 c4_92_61 c4_92_62 c4_92_63 c4_92_64 set community 0:1 route-map calculator permit 21045 match community c4_92_65 c4_92_66 c4_92_67 c4_92_68 c4_92_69 set community 0:1 route-map calculator permit 21046 match community c4_92_70 c4_92_71 c4_92_72 c4_92_73 c4_92_74 set community 0:1 route-map calculator permit 21047 match community c4_92_75 c4_92_76 c4_92_77 c4_92_78 c4_92_79 set community 0:1 route-map calculator permit 21048 match community c4_92_80 c4_92_81 c4_92_82 c4_92_83 c4_92_84 set community 0:1 route-map calculator permit 21049 match community c4_92_85 c4_92_86 c4_92_87 c4_92_88 c4_92_89 set community 0:1 route-map calculator permit 21050 match community c4_92_90 c3_92_91 c4_92_91 c4_92_92 c4_93_47 set community 0:1 route-map calculator permit 21051 match community c4_93_48 c4_93_49 c4_93_50 c4_93_51 c4_93_52 set community 0:1 route-map calculator permit 21052 match community c4_93_53 c4_93_54 c4_93_55 c4_93_56 c4_93_57 set community 0:1 route-map calculator permit 21053 match community c4_93_58 c4_93_59 c4_93_60 c4_93_61 c4_93_62 set community 0:1 route-map calculator permit 21054 match community c4_93_63 c4_93_64 c4_93_65 c4_93_66 c4_93_67 set community 0:1 route-map calculator permit 21055 match community c4_93_68 c4_93_69 c4_93_70 c4_93_71 c4_93_72 set community 0:1 route-map calculator permit 21056 match community c4_93_73 c4_93_74 c4_93_75 c4_93_76 c4_93_77 set community 0:1 route-map calculator permit 21057 match community c4_93_78 c4_93_79 c4_93_80 c4_93_81 c4_93_82 set community 0:1 route-map calculator permit 21058 match community c4_93_83 c4_93_84 c4_93_85 c4_93_86 c4_93_87 set community 0:1 route-map calculator permit 21059 match community c4_93_88 c4_93_89 c4_93_90 c4_93_91 c3_93_92 set community 0:1 route-map calculator permit 21060 match community c4_93_92 c4_93_93 c4_94_48 c4_94_49 c4_94_50 set community 0:1 route-map calculator permit 21061 match community c4_94_51 c4_94_52 c4_94_53 c4_94_54 c4_94_55 set community 0:1 route-map calculator permit 21062 match community c4_94_56 c4_94_57 c4_94_58 c4_94_59 c4_94_60 set community 0:1 route-map calculator permit 21063 match community c4_94_61 c4_94_62 c4_94_63 c4_94_64 c4_94_65 set community 0:1 route-map calculator permit 21064 match community c4_94_66 c4_94_67 c4_94_68 c4_94_69 c4_94_70 set community 0:1 route-map calculator permit 21065 match community c4_94_71 c4_94_72 c4_94_73 c4_94_74 c4_94_75 set community 0:1 route-map calculator permit 21066 match community c4_94_76 c4_94_77 c4_94_78 c4_94_79 c4_94_80 set community 0:1 route-map calculator permit 21067 match community c4_94_81 c4_94_82 c4_94_83 c4_94_84 c4_94_85 set community 0:1 route-map calculator permit 21068 match community c4_94_86 c4_94_87 c4_94_88 c4_94_89 c4_94_90 set community 0:1 route-map calculator permit 21069 match community c4_94_91 c4_94_92 c3_94_93 c4_94_93 c4_94_94 set community 0:1 route-map calculator permit 21070 match community c4_95_48 c4_95_49 c4_95_50 c4_95_51 c4_95_52 set community 0:1 route-map calculator permit 21071 match community c4_95_53 c4_95_54 c4_95_55 c4_95_56 c4_95_57 set community 0:1 route-map calculator permit 21072 match community c4_95_58 c4_95_59 c4_95_60 c4_95_61 c4_95_62 set community 0:1 route-map calculator permit 21073 match community c4_95_63 c4_95_64 c4_95_65 c4_95_66 c4_95_67 set community 0:1 route-map calculator permit 21074 match community c4_95_68 c4_95_69 c4_95_70 c4_95_71 c4_95_72 set community 0:1 route-map calculator permit 21075 match community c4_95_73 c4_95_74 c4_95_75 c4_95_76 c4_95_77 set community 0:1 route-map calculator permit 21076 match community c4_95_78 c4_95_79 c4_95_80 c4_95_81 c4_95_82 set community 0:1 route-map calculator permit 21077 match community c4_95_83 c4_95_84 c4_95_85 c4_95_86 c4_95_87 set community 0:1 route-map calculator permit 21078 match community c4_95_88 c4_95_89 c4_95_90 c4_95_91 c4_95_92 set community 0:1 route-map calculator permit 21079 match community c4_95_93 c3_95_94 c4_95_94 c4_95_95 c4_96_49 set community 0:1 route-map calculator permit 21080 match community c4_96_50 c4_96_51 c4_96_52 c4_96_53 c4_96_54 set community 0:1 route-map calculator permit 21081 match community c4_96_55 c4_96_56 c4_96_57 c4_96_58 c4_96_59 set community 0:1 route-map calculator permit 21082 match community c4_96_60 c4_96_61 c4_96_62 c4_96_63 c4_96_64 set community 0:1 route-map calculator permit 21083 match community c4_96_65 c4_96_66 c4_96_67 c4_96_68 c4_96_69 set community 0:1 route-map calculator permit 21084 match community c4_96_70 c4_96_71 c4_96_72 c4_96_73 c4_96_74 set community 0:1 route-map calculator permit 21085 match community c4_96_75 c4_96_76 c4_96_77 c4_96_78 c4_96_79 set community 0:1 route-map calculator permit 21086 match community c4_96_80 c4_96_81 c4_96_82 c4_96_83 c4_96_84 set community 0:1 route-map calculator permit 21087 match community c4_96_85 c4_96_86 c4_96_87 c4_96_88 c4_96_89 set community 0:1 route-map calculator permit 21088 match community c4_96_90 c4_96_91 c4_96_92 c4_96_93 c4_96_94 set community 0:1 route-map calculator permit 21089 match community c3_96_95 c4_96_95 c4_96_96 c4_97_49 c4_97_50 set community 0:1 route-map calculator permit 21090 match community c4_97_51 c4_97_52 c4_97_53 c4_97_54 c4_97_55 set community 0:1 route-map calculator permit 21091 match community c4_97_56 c4_97_57 c4_97_58 c4_97_59 c4_97_60 set community 0:1 route-map calculator permit 21092 match community c4_97_61 c4_97_62 c4_97_63 c4_97_64 c4_97_65 set community 0:1 route-map calculator permit 21093 match community c4_97_66 c4_97_67 c4_97_68 c4_97_69 c4_97_70 set community 0:1 route-map calculator permit 21094 match community c4_97_71 c4_97_72 c4_97_73 c4_97_74 c4_97_75 set community 0:1 route-map calculator permit 21095 match community c4_97_76 c4_97_77 c4_97_78 c4_97_79 c4_97_80 set community 0:1 route-map calculator permit 21096 match community c4_97_81 c4_97_82 c4_97_83 c4_97_84 c4_97_85 set community 0:1 route-map calculator permit 21097 match community c4_97_86 c4_97_87 c4_97_88 c4_97_89 c4_97_90 set community 0:1 route-map calculator permit 21098 match community c4_97_91 c4_97_92 c4_97_93 c4_97_94 c4_97_95 set community 0:1 route-map calculator permit 21099 match community c3_97_96 c4_97_96 c4_97_97 c4_98_50 c4_98_51 set community 0:1 route-map calculator permit 21100 match community c4_98_52 c4_98_53 c4_98_54 c4_98_55 c4_98_56 set community 0:1 route-map calculator permit 21101 match community c4_98_57 c4_98_58 c4_98_59 c4_98_60 c4_98_61 set community 0:1 route-map calculator permit 21102 match community c4_98_62 c4_98_63 c4_98_64 c4_98_65 c4_98_66 set community 0:1 route-map calculator permit 21103 match community c4_98_67 c4_98_68 c4_98_69 c4_98_70 c4_98_71 set community 0:1 route-map calculator permit 21104 match community c4_98_72 c4_98_73 c4_98_74 c4_98_75 c4_98_76 set community 0:1 route-map calculator permit 21105 match community c4_98_77 c4_98_78 c4_98_79 c4_98_80 c4_98_81 set community 0:1 route-map calculator permit 21106 match community c4_98_82 c4_98_83 c4_98_84 c4_98_85 c4_98_86 set community 0:1 route-map calculator permit 21107 match community c4_98_87 c4_98_88 c4_98_89 c4_98_90 c4_98_91 set community 0:1 route-map calculator permit 21108 match community c4_98_92 c4_98_93 c4_98_94 c4_98_95 c4_98_96 set community 0:1 route-map calculator permit 21109 match community c3_98_97 c4_98_97 c4_98_98 c4_99_50 c4_99_51 set community 0:1 route-map calculator permit 21110 match community c4_99_52 c4_99_53 c4_99_54 c4_99_55 c4_99_56 set community 0:1 route-map calculator permit 21111 match community c4_99_57 c4_99_58 c4_99_59 c4_99_60 c4_99_61 set community 0:1 route-map calculator permit 21112 match community c4_99_62 c4_99_63 c4_99_64 c4_99_65 c4_99_66 set community 0:1 route-map calculator permit 21113 match community c4_99_67 c4_99_68 c4_99_69 c4_99_70 c4_99_71 set community 0:1 route-map calculator permit 21114 match community c4_99_72 c4_99_73 c4_99_74 c4_99_75 c4_99_76 set community 0:1 route-map calculator permit 21115 match community c4_99_77 c4_99_78 c4_99_79 c4_99_80 c4_99_81 set community 0:1 route-map calculator permit 21116 match community c4_99_82 c4_99_83 c4_99_84 c4_99_85 c4_99_86 set community 0:1 route-map calculator permit 21117 match community c4_99_87 c4_99_88 c4_99_89 c4_99_90 c4_99_91 set community 0:1 route-map calculator permit 21118 match community c4_99_92 c4_99_93 c4_99_94 c4_99_95 c4_99_96 set community 0:1 route-map calculator permit 21119 match community c4_99_97 c3_99_98 c4_99_98 c4_99_99 c4_100_51 set community 0:1 route-map calculator permit 21120 match community c4_100_52 c4_100_53 c4_100_54 c4_100_55 c4_100_56 set community 0:1 route-map calculator permit 21121 match community c4_100_57 c4_100_58 c4_100_59 c4_100_60 c4_100_61 set community 0:1 route-map calculator permit 21122 match community c4_100_62 c4_100_63 c4_100_64 c4_100_65 c4_100_66 set community 0:1 route-map calculator permit 21123 match community c4_100_67 c4_100_68 c4_100_69 c4_100_70 c4_100_71 set community 0:1 route-map calculator permit 21124 match community c4_100_72 c4_100_73 c4_100_74 c4_100_75 c4_100_76 set community 0:1 route-map calculator permit 21125 match community c4_100_77 c4_100_78 c4_100_79 c4_100_80 c4_100_81 set community 0:1 route-map calculator permit 21126 match community c4_100_82 c4_100_83 c4_100_84 c4_100_85 c4_100_86 set community 0:1 route-map calculator permit 21127 match community c4_100_87 c4_100_88 c4_100_89 c4_100_90 c4_100_91 set community 0:1 route-map calculator permit 21128 match community c4_100_92 c4_100_93 c4_100_94 c4_100_95 c4_100_96 set community 0:1 route-map calculator permit 21129 match community c4_100_97 c4_100_98 c3_100_99 c4_100_99 c4_100_100 set community 0:1 route-map calculator permit 21130 match community c4_101_51 c4_101_52 c4_101_53 c4_101_54 c4_101_55 set community 0:1 route-map calculator permit 21131 match community c4_101_56 c4_101_57 c4_101_58 c4_101_59 c4_101_60 set community 0:1 route-map calculator permit 21132 match community c4_101_61 c4_101_62 c4_101_63 c4_101_64 c4_101_65 set community 0:1 route-map calculator permit 21133 match community c4_101_66 c4_101_67 c4_101_68 c4_101_69 c4_101_70 set community 0:1 route-map calculator permit 21134 match community c4_101_71 c4_101_72 c4_101_73 c4_101_74 c4_101_75 set community 0:1 route-map calculator permit 21135 match community c4_101_76 c4_101_77 c4_101_78 c4_101_79 c4_101_80 set community 0:1 route-map calculator permit 21136 match community c4_101_81 c4_101_82 c4_101_83 c4_101_84 c4_101_85 set community 0:1 route-map calculator permit 21137 match community c4_101_86 c4_101_87 c4_101_88 c4_101_89 c4_101_90 set community 0:1 route-map calculator permit 21138 match community c4_101_91 c4_101_92 c4_101_93 c4_101_94 c4_101_95 set community 0:1 route-map calculator permit 21139 match community c4_101_96 c4_101_97 c4_101_98 c4_101_99 c3_101_100 set community 0:1 route-map calculator permit 21140 match community c4_101_100 c4_101_101 c4_102_52 c4_102_53 c4_102_54 set community 0:1 route-map calculator permit 21141 match community c4_102_55 c4_102_56 c4_102_57 c4_102_58 c4_102_59 set community 0:1 route-map calculator permit 21142 match community c4_102_60 c4_102_61 c4_102_62 c4_102_63 c4_102_64 set community 0:1 route-map calculator permit 21143 match community c4_102_65 c4_102_66 c4_102_67 c4_102_68 c4_102_69 set community 0:1 route-map calculator permit 21144 match community c4_102_70 c4_102_71 c4_102_72 c4_102_73 c4_102_74 set community 0:1 route-map calculator permit 21145 match community c4_102_75 c4_102_76 c4_102_77 c4_102_78 c4_102_79 set community 0:1 route-map calculator permit 21146 match community c4_102_80 c4_102_81 c4_102_82 c4_102_83 c4_102_84 set community 0:1 route-map calculator permit 21147 match community c4_102_85 c4_102_86 c4_102_87 c4_102_88 c4_102_89 set community 0:1 route-map calculator permit 21148 match community c4_102_90 c4_102_91 c4_102_92 c4_102_93 c4_102_94 set community 0:1 route-map calculator permit 21149 match community c4_102_95 c4_102_96 c4_102_97 c4_102_98 c4_102_99 set community 0:1 route-map calculator permit 21150 match community c4_102_100 c3_102_101 c4_102_101 c4_102_102 c4_103_52 set community 0:1 route-map calculator permit 21151 match community c4_103_53 c4_103_54 c4_103_55 c4_103_56 c4_103_57 set community 0:1 route-map calculator permit 21152 match community c4_103_58 c4_103_59 c4_103_60 c4_103_61 c4_103_62 set community 0:1 route-map calculator permit 21153 match community c4_103_63 c4_103_64 c4_103_65 c4_103_66 c4_103_67 set community 0:1 route-map calculator permit 21154 match community c4_103_68 c4_103_69 c4_103_70 c4_103_71 c4_103_72 set community 0:1 route-map calculator permit 21155 match community c4_103_73 c4_103_74 c4_103_75 c4_103_76 c4_103_77 set community 0:1 route-map calculator permit 21156 match community c4_103_78 c4_103_79 c4_103_80 c4_103_81 c4_103_82 set community 0:1 route-map calculator permit 21157 match community c4_103_83 c4_103_84 c4_103_85 c4_103_86 c4_103_87 set community 0:1 route-map calculator permit 21158 match community c4_103_88 c4_103_89 c4_103_90 c4_103_91 c4_103_92 set community 0:1 route-map calculator permit 21159 match community c4_103_93 c4_103_94 c4_103_95 c4_103_96 c4_103_97 set community 0:1 route-map calculator permit 21160 match community c4_103_98 c4_103_99 c4_103_100 c4_103_101 c3_103_102 set community 0:1 route-map calculator permit 21161 match community c4_103_102 c4_103_103 c4_104_53 c4_104_54 c4_104_55 set community 0:1 route-map calculator permit 21162 match community c4_104_56 c4_104_57 c4_104_58 c4_104_59 c4_104_60 set community 0:1 route-map calculator permit 21163 match community c4_104_61 c4_104_62 c4_104_63 c4_104_64 c4_104_65 set community 0:1 route-map calculator permit 21164 match community c4_104_66 c4_104_67 c4_104_68 c4_104_69 c4_104_70 set community 0:1 route-map calculator permit 21165 match community c4_104_71 c4_104_72 c4_104_73 c4_104_74 c4_104_75 set community 0:1 route-map calculator permit 21166 match community c4_104_76 c4_104_77 c4_104_78 c4_104_79 c4_104_80 set community 0:1 route-map calculator permit 21167 match community c4_104_81 c4_104_82 c4_104_83 c4_104_84 c4_104_85 set community 0:1 route-map calculator permit 21168 match community c4_104_86 c4_104_87 c4_104_88 c4_104_89 c4_104_90 set community 0:1 route-map calculator permit 21169 match community c4_104_91 c4_104_92 c4_104_93 c4_104_94 c4_104_95 set community 0:1 route-map calculator permit 21170 match community c4_104_96 c4_104_97 c4_104_98 c4_104_99 c4_104_100 set community 0:1 route-map calculator permit 21171 match community c4_104_101 c4_104_102 c3_104_103 c4_104_103 c4_104_104 set community 0:1 route-map calculator permit 21172 match community c4_105_53 c4_105_54 c4_105_55 c4_105_56 c4_105_57 set community 0:1 route-map calculator permit 21173 match community c4_105_58 c4_105_59 c4_105_60 c4_105_61 c4_105_62 set community 0:1 route-map calculator permit 21174 match community c4_105_63 c4_105_64 c4_105_65 c4_105_66 c4_105_67 set community 0:1 route-map calculator permit 21175 match community c4_105_68 c4_105_69 c4_105_70 c4_105_71 c4_105_72 set community 0:1 route-map calculator permit 21176 match community c4_105_73 c4_105_74 c4_105_75 c4_105_76 c4_105_77 set community 0:1 route-map calculator permit 21177 match community c4_105_78 c4_105_79 c4_105_80 c4_105_81 c4_105_82 set community 0:1 route-map calculator permit 21178 match community c4_105_83 c4_105_84 c4_105_85 c4_105_86 c4_105_87 set community 0:1 route-map calculator permit 21179 match community c4_105_88 c4_105_89 c4_105_90 c4_105_91 c4_105_92 set community 0:1 route-map calculator permit 21180 match community c4_105_93 c4_105_94 c4_105_95 c4_105_96 c4_105_97 set community 0:1 route-map calculator permit 21181 match community c4_105_98 c4_105_99 c4_105_100 c4_105_101 c4_105_102 set community 0:1 route-map calculator permit 21182 match community c4_105_103 c3_105_104 c4_105_104 c4_105_105 c4_106_54 set community 0:1 route-map calculator permit 21183 match community c4_106_55 c4_106_56 c4_106_57 c4_106_58 c4_106_59 set community 0:1 route-map calculator permit 21184 match community c4_106_60 c4_106_61 c4_106_62 c4_106_63 c4_106_64 set community 0:1 route-map calculator permit 21185 match community c4_106_65 c4_106_66 c4_106_67 c4_106_68 c4_106_69 set community 0:1 route-map calculator permit 21186 match community c4_106_70 c4_106_71 c4_106_72 c4_106_73 c4_106_74 set community 0:1 route-map calculator permit 21187 match community c4_106_75 c4_106_76 c4_106_77 c4_106_78 c4_106_79 set community 0:1 route-map calculator permit 21188 match community c4_106_80 c4_106_81 c4_106_82 c4_106_83 c4_106_84 set community 0:1 route-map calculator permit 21189 match community c4_106_85 c4_106_86 c4_106_87 c4_106_88 c4_106_89 set community 0:1 route-map calculator permit 21190 match community c4_106_90 c4_106_91 c4_106_92 c4_106_93 c4_106_94 set community 0:1 route-map calculator permit 21191 match community c4_106_95 c4_106_96 c4_106_97 c4_106_98 c4_106_99 set community 0:1 route-map calculator permit 21192 match community c4_106_100 c4_106_101 c4_106_102 c4_106_103 c4_106_104 set community 0:1 route-map calculator permit 21193 match community c3_106_105 c4_106_105 c4_106_106 c4_107_54 c4_107_55 set community 0:1 route-map calculator permit 21194 match community c4_107_56 c4_107_57 c4_107_58 c4_107_59 c4_107_60 set community 0:1 route-map calculator permit 21195 match community c4_107_61 c4_107_62 c4_107_63 c4_107_64 c4_107_65 set community 0:1 route-map calculator permit 21196 match community c4_107_66 c4_107_67 c4_107_68 c4_107_69 c4_107_70 set community 0:1 route-map calculator permit 21197 match community c4_107_71 c4_107_72 c4_107_73 c4_107_74 c4_107_75 set community 0:1 route-map calculator permit 21198 match community c4_107_76 c4_107_77 c4_107_78 c4_107_79 c4_107_80 set community 0:1 route-map calculator permit 21199 match community c4_107_81 c4_107_82 c4_107_83 c4_107_84 c4_107_85 set community 0:1 route-map calculator permit 21200 match community c4_107_86 c4_107_87 c4_107_88 c4_107_89 c4_107_90 set community 0:1 route-map calculator permit 21201 match community c4_107_91 c4_107_92 c4_107_93 c4_107_94 c4_107_95 set community 0:1 route-map calculator permit 21202 match community c4_107_96 c4_107_97 c4_107_98 c4_107_99 c4_107_100 set community 0:1 route-map calculator permit 21203 match community c4_107_101 c4_107_102 c4_107_103 c4_107_104 c4_107_105 set community 0:1 route-map calculator permit 21204 match community c3_107_106 c4_107_106 c4_107_107 c4_108_55 c4_108_56 set community 0:1 route-map calculator permit 21205 match community c4_108_57 c4_108_58 c4_108_59 c4_108_60 c4_108_61 set community 0:1 route-map calculator permit 21206 match community c4_108_62 c4_108_63 c4_108_64 c4_108_65 c4_108_66 set community 0:1 route-map calculator permit 21207 match community c4_108_67 c4_108_68 c4_108_69 c4_108_70 c4_108_71 set community 0:1 route-map calculator permit 21208 match community c4_108_72 c4_108_73 c4_108_74 c4_108_75 c4_108_76 set community 0:1 route-map calculator permit 21209 match community c4_108_77 c4_108_78 c4_108_79 c4_108_80 c4_108_81 set community 0:1 route-map calculator permit 21210 match community c4_108_82 c4_108_83 c4_108_84 c4_108_85 c4_108_86 set community 0:1 route-map calculator permit 21211 match community c4_108_87 c4_108_88 c4_108_89 c4_108_90 c4_108_91 set community 0:1 route-map calculator permit 21212 match community c4_108_92 c4_108_93 c4_108_94 c4_108_95 c4_108_96 set community 0:1 route-map calculator permit 21213 match community c4_108_97 c4_108_98 c4_108_99 c4_108_100 c4_108_101 set community 0:1 route-map calculator permit 21214 match community c4_108_102 c4_108_103 c4_108_104 c4_108_105 c4_108_106 set community 0:1 route-map calculator permit 21215 match community c3_108_107 c4_108_107 c4_108_108 c4_109_55 c4_109_56 set community 0:1 route-map calculator permit 21216 match community c4_109_57 c4_109_58 c4_109_59 c4_109_60 c4_109_61 set community 0:1 route-map calculator permit 21217 match community c4_109_62 c4_109_63 c4_109_64 c4_109_65 c4_109_66 set community 0:1 route-map calculator permit 21218 match community c4_109_67 c4_109_68 c4_109_69 c4_109_70 c4_109_71 set community 0:1 route-map calculator permit 21219 match community c4_109_72 c4_109_73 c4_109_74 c4_109_75 c4_109_76 set community 0:1 route-map calculator permit 21220 match community c4_109_77 c4_109_78 c4_109_79 c4_109_80 c4_109_81 set community 0:1 route-map calculator permit 21221 match community c4_109_82 c4_109_83 c4_109_84 c4_109_85 c4_109_86 set community 0:1 route-map calculator permit 21222 match community c4_109_87 c4_109_88 c4_109_89 c4_109_90 c4_109_91 set community 0:1 route-map calculator permit 21223 match community c4_109_92 c4_109_93 c4_109_94 c4_109_95 c4_109_96 set community 0:1 route-map calculator permit 21224 match community c4_109_97 c4_109_98 c4_109_99 c4_109_100 c4_109_101 set community 0:1 route-map calculator permit 21225 match community c4_109_102 c4_109_103 c4_109_104 c4_109_105 c4_109_106 set community 0:1 route-map calculator permit 21226 match community c4_109_107 c3_109_108 c4_109_108 c4_109_109 c4_110_56 set community 0:1 route-map calculator permit 21227 match community c4_110_57 c4_110_58 c4_110_59 c4_110_60 c4_110_61 set community 0:1 route-map calculator permit 21228 match community c4_110_62 c4_110_63 c4_110_64 c4_110_65 c4_110_66 set community 0:1 route-map calculator permit 21229 match community c4_110_67 c4_110_68 c4_110_69 c4_110_70 c4_110_71 set community 0:1 route-map calculator permit 21230 match community c4_110_72 c4_110_73 c4_110_74 c4_110_75 c4_110_76 set community 0:1 route-map calculator permit 21231 match community c4_110_77 c4_110_78 c4_110_79 c4_110_80 c4_110_81 set community 0:1 route-map calculator permit 21232 match community c4_110_82 c4_110_83 c4_110_84 c4_110_85 c4_110_86 set community 0:1 route-map calculator permit 21233 match community c4_110_87 c4_110_88 c4_110_89 c4_110_90 c4_110_91 set community 0:1 route-map calculator permit 21234 match community c4_110_92 c4_110_93 c4_110_94 c4_110_95 c4_110_96 set community 0:1 route-map calculator permit 21235 match community c4_110_97 c4_110_98 c4_110_99 c4_110_100 c4_110_101 set community 0:1 route-map calculator permit 21236 match community c4_110_102 c4_110_103 c4_110_104 c4_110_105 c4_110_106 set community 0:1 route-map calculator permit 21237 match community c4_110_107 c4_110_108 c3_110_109 c4_110_109 c4_110_110 set community 0:1 route-map calculator permit 21238 match community c4_111_56 c4_111_57 c4_111_58 c4_111_59 c4_111_60 set community 0:1 route-map calculator permit 21239 match community c4_111_61 c4_111_62 c4_111_63 c4_111_64 c4_111_65 set community 0:1 route-map calculator permit 21240 match community c4_111_66 c4_111_67 c4_111_68 c4_111_69 c4_111_70 set community 0:1 route-map calculator permit 21241 match community c4_111_71 c4_111_72 c4_111_73 c4_111_74 c4_111_75 set community 0:1 route-map calculator permit 21242 match community c4_111_76 c4_111_77 c4_111_78 c4_111_79 c4_111_80 set community 0:1 route-map calculator permit 21243 match community c4_111_81 c4_111_82 c4_111_83 c4_111_84 c4_111_85 set community 0:1 route-map calculator permit 21244 match community c4_111_86 c4_111_87 c4_111_88 c4_111_89 c4_111_90 set community 0:1 route-map calculator permit 21245 match community c4_111_91 c4_111_92 c4_111_93 c4_111_94 c4_111_95 set community 0:1 route-map calculator permit 21246 match community c4_111_96 c4_111_97 c4_111_98 c4_111_99 c4_111_100 set community 0:1 route-map calculator permit 21247 match community c4_111_101 c4_111_102 c4_111_103 c4_111_104 c4_111_105 set community 0:1 route-map calculator permit 21248 match community c4_111_106 c4_111_107 c4_111_108 c4_111_109 c3_111_110 set community 0:1 route-map calculator permit 21249 match community c4_111_110 c4_111_111 c4_112_57 c4_112_58 c4_112_59 set community 0:1 route-map calculator permit 21250 match community c4_112_60 c4_112_61 c4_112_62 c4_112_63 c4_112_64 set community 0:1 route-map calculator permit 21251 match community c4_112_65 c4_112_66 c4_112_67 c4_112_68 c4_112_69 set community 0:1 route-map calculator permit 21252 match community c4_112_70 c4_112_71 c4_112_72 c4_112_73 c4_112_74 set community 0:1 route-map calculator permit 21253 match community c4_112_75 c4_112_76 c4_112_77 c4_112_78 c4_112_79 set community 0:1 route-map calculator permit 21254 match community c4_112_80 c4_112_81 c4_112_82 c4_112_83 c4_112_84 set community 0:1 route-map calculator permit 21255 match community c4_112_85 c4_112_86 c4_112_87 c4_112_88 c4_112_89 set community 0:1 route-map calculator permit 21256 match community c4_112_90 c4_112_91 c4_112_92 c4_112_93 c4_112_94 set community 0:1 route-map calculator permit 21257 match community c4_112_95 c4_112_96 c4_112_97 c4_112_98 c4_112_99 set community 0:1 route-map calculator permit 21258 match community c4_112_100 c4_112_101 c4_112_102 c4_112_103 c4_112_104 set community 0:1 route-map calculator permit 21259 match community c4_112_105 c4_112_106 c4_112_107 c4_112_108 c4_112_109 set community 0:1 route-map calculator permit 21260 match community c4_112_110 c3_112_111 c4_112_111 c4_112_112 c4_113_57 set community 0:1 route-map calculator permit 21261 match community c4_113_58 c4_113_59 c4_113_60 c4_113_61 c4_113_62 set community 0:1 route-map calculator permit 21262 match community c4_113_63 c4_113_64 c4_113_65 c4_113_66 c4_113_67 set community 0:1 route-map calculator permit 21263 match community c4_113_68 c4_113_69 c4_113_70 c4_113_71 c4_113_72 set community 0:1 route-map calculator permit 21264 match community c4_113_73 c4_113_74 c4_113_75 c4_113_76 c4_113_77 set community 0:1 route-map calculator permit 21265 match community c4_113_78 c4_113_79 c4_113_80 c4_113_81 c4_113_82 set community 0:1 route-map calculator permit 21266 match community c4_113_83 c4_113_84 c4_113_85 c4_113_86 c4_113_87 set community 0:1 route-map calculator permit 21267 match community c4_113_88 c4_113_89 c4_113_90 c4_113_91 c4_113_92 set community 0:1 route-map calculator permit 21268 match community c4_113_93 c4_113_94 c4_113_95 c4_113_96 c4_113_97 set community 0:1 route-map calculator permit 21269 match community c4_113_98 c4_113_99 c4_113_100 c4_113_101 c4_113_102 set community 0:1 route-map calculator permit 21270 match community c4_113_103 c4_113_104 c4_113_105 c4_113_106 c4_113_107 set community 0:1 route-map calculator permit 21271 match community c4_113_108 c4_113_109 c4_113_110 c4_113_111 c3_113_112 set community 0:1 route-map calculator permit 21272 match community c4_113_112 c4_113_113 c4_114_58 c4_114_59 c4_114_60 set community 0:1 route-map calculator permit 21273 match community c4_114_61 c4_114_62 c4_114_63 c4_114_64 c4_114_65 set community 0:1 route-map calculator permit 21274 match community c4_114_66 c4_114_67 c4_114_68 c4_114_69 c4_114_70 set community 0:1 route-map calculator permit 21275 match community c4_114_71 c4_114_72 c4_114_73 c4_114_74 c4_114_75 set community 0:1 route-map calculator permit 21276 match community c4_114_76 c4_114_77 c4_114_78 c4_114_79 c4_114_80 set community 0:1 route-map calculator permit 21277 match community c4_114_81 c4_114_82 c4_114_83 c4_114_84 c4_114_85 set community 0:1 route-map calculator permit 21278 match community c4_114_86 c4_114_87 c4_114_88 c4_114_89 c4_114_90 set community 0:1 route-map calculator permit 21279 match community c4_114_91 c4_114_92 c4_114_93 c4_114_94 c4_114_95 set community 0:1 route-map calculator permit 21280 match community c4_114_96 c4_114_97 c4_114_98 c4_114_99 c4_114_100 set community 0:1 route-map calculator permit 21281 match community c4_114_101 c4_114_102 c4_114_103 c4_114_104 c4_114_105 set community 0:1 route-map calculator permit 21282 match community c4_114_106 c4_114_107 c4_114_108 c4_114_109 c4_114_110 set community 0:1 route-map calculator permit 21283 match community c4_114_111 c4_114_112 c3_114_113 c4_114_113 c4_114_114 set community 0:1 route-map calculator permit 21284 match community c4_115_58 c4_115_59 c4_115_60 c4_115_61 c4_115_62 set community 0:1 route-map calculator permit 21285 match community c4_115_63 c4_115_64 c4_115_65 c4_115_66 c4_115_67 set community 0:1 route-map calculator permit 21286 match community c4_115_68 c4_115_69 c4_115_70 c4_115_71 c4_115_72 set community 0:1 route-map calculator permit 21287 match community c4_115_73 c4_115_74 c4_115_75 c4_115_76 c4_115_77 set community 0:1 route-map calculator permit 21288 match community c4_115_78 c4_115_79 c4_115_80 c4_115_81 c4_115_82 set community 0:1 route-map calculator permit 21289 match community c4_115_83 c4_115_84 c4_115_85 c4_115_86 c4_115_87 set community 0:1 route-map calculator permit 21290 match community c4_115_88 c4_115_89 c4_115_90 c4_115_91 c4_115_92 set community 0:1 route-map calculator permit 21291 match community c4_115_93 c4_115_94 c4_115_95 c4_115_96 c4_115_97 set community 0:1 route-map calculator permit 21292 match community c4_115_98 c4_115_99 c4_115_100 c4_115_101 c4_115_102 set community 0:1 route-map calculator permit 21293 match community c4_115_103 c4_115_104 c4_115_105 c4_115_106 c4_115_107 set community 0:1 route-map calculator permit 21294 match community c4_115_108 c4_115_109 c4_115_110 c4_115_111 c4_115_112 set community 0:1 route-map calculator permit 21295 match community c4_115_113 c3_115_114 c4_115_114 c4_115_115 c4_116_59 set community 0:1 route-map calculator permit 21296 match community c4_116_60 c4_116_61 c4_116_62 c4_116_63 c4_116_64 set community 0:1 route-map calculator permit 21297 match community c4_116_65 c4_116_66 c4_116_67 c4_116_68 c4_116_69 set community 0:1 route-map calculator permit 21298 match community c4_116_70 c4_116_71 c4_116_72 c4_116_73 c4_116_74 set community 0:1 route-map calculator permit 21299 match community c4_116_75 c4_116_76 c4_116_77 c4_116_78 c4_116_79 set community 0:1 route-map calculator permit 21300 match community c4_116_80 c4_116_81 c4_116_82 c4_116_83 c4_116_84 set community 0:1 route-map calculator permit 21301 match community c4_116_85 c4_116_86 c4_116_87 c4_116_88 c4_116_89 set community 0:1 route-map calculator permit 21302 match community c4_116_90 c4_116_91 c4_116_92 c4_116_93 c4_116_94 set community 0:1 route-map calculator permit 21303 match community c4_116_95 c4_116_96 c4_116_97 c4_116_98 c4_116_99 set community 0:1 route-map calculator permit 21304 match community c4_116_100 c4_116_101 c4_116_102 c4_116_103 c4_116_104 set community 0:1 route-map calculator permit 21305 match community c4_116_105 c4_116_106 c4_116_107 c4_116_108 c4_116_109 set community 0:1 route-map calculator permit 21306 match community c4_116_110 c4_116_111 c4_116_112 c4_116_113 c4_116_114 set community 0:1 route-map calculator permit 21307 match community c3_116_115 c4_116_115 c4_116_116 c4_117_59 c4_117_60 set community 0:1 route-map calculator permit 21308 match community c4_117_61 c4_117_62 c4_117_63 c4_117_64 c4_117_65 set community 0:1 route-map calculator permit 21309 match community c4_117_66 c4_117_67 c4_117_68 c4_117_69 c4_117_70 set community 0:1 route-map calculator permit 21310 match community c4_117_71 c4_117_72 c4_117_73 c4_117_74 c4_117_75 set community 0:1 route-map calculator permit 21311 match community c4_117_76 c4_117_77 c4_117_78 c4_117_79 c4_117_80 set community 0:1 route-map calculator permit 21312 match community c4_117_81 c4_117_82 c4_117_83 c4_117_84 c4_117_85 set community 0:1 route-map calculator permit 21313 match community c4_117_86 c4_117_87 c4_117_88 c4_117_89 c4_117_90 set community 0:1 route-map calculator permit 21314 match community c4_117_91 c4_117_92 c4_117_93 c4_117_94 c4_117_95 set community 0:1 route-map calculator permit 21315 match community c4_117_96 c4_117_97 c4_117_98 c4_117_99 c4_117_100 set community 0:1 route-map calculator permit 21316 match community c4_117_101 c4_117_102 c4_117_103 c4_117_104 c4_117_105 set community 0:1 route-map calculator permit 21317 match community c4_117_106 c4_117_107 c4_117_108 c4_117_109 c4_117_110 set community 0:1 route-map calculator permit 21318 match community c4_117_111 c4_117_112 c4_117_113 c4_117_114 c4_117_115 set community 0:1 route-map calculator permit 21319 match community c3_117_116 c4_117_116 c4_117_117 c4_118_60 c4_118_61 set community 0:1 route-map calculator permit 21320 match community c4_118_62 c4_118_63 c4_118_64 c4_118_65 c4_118_66 set community 0:1 route-map calculator permit 21321 match community c4_118_67 c4_118_68 c4_118_69 c4_118_70 c4_118_71 set community 0:1 route-map calculator permit 21322 match community c4_118_72 c4_118_73 c4_118_74 c4_118_75 c4_118_76 set community 0:1 route-map calculator permit 21323 match community c4_118_77 c4_118_78 c4_118_79 c4_118_80 c4_118_81 set community 0:1 route-map calculator permit 21324 match community c4_118_82 c4_118_83 c4_118_84 c4_118_85 c4_118_86 set community 0:1 route-map calculator permit 21325 match community c4_118_87 c4_118_88 c4_118_89 c4_118_90 c4_118_91 set community 0:1 route-map calculator permit 21326 match community c4_118_92 c4_118_93 c4_118_94 c4_118_95 c4_118_96 set community 0:1 route-map calculator permit 21327 match community c4_118_97 c4_118_98 c4_118_99 c4_118_100 c4_118_101 set community 0:1 route-map calculator permit 21328 match community c4_118_102 c4_118_103 c4_118_104 c4_118_105 c4_118_106 set community 0:1 route-map calculator permit 21329 match community c4_118_107 c4_118_108 c4_118_109 c4_118_110 c4_118_111 set community 0:1 route-map calculator permit 21330 match community c4_118_112 c4_118_113 c4_118_114 c4_118_115 c4_118_116 set community 0:1 route-map calculator permit 21331 match community c3_118_117 c4_118_117 c4_118_118 c4_119_60 c4_119_61 set community 0:1 route-map calculator permit 21332 match community c4_119_62 c4_119_63 c4_119_64 c4_119_65 c4_119_66 set community 0:1 route-map calculator permit 21333 match community c4_119_67 c4_119_68 c4_119_69 c4_119_70 c4_119_71 set community 0:1 route-map calculator permit 21334 match community c4_119_72 c4_119_73 c4_119_74 c4_119_75 c4_119_76 set community 0:1 route-map calculator permit 21335 match community c4_119_77 c4_119_78 c4_119_79 c4_119_80 c4_119_81 set community 0:1 route-map calculator permit 21336 match community c4_119_82 c4_119_83 c4_119_84 c4_119_85 c4_119_86 set community 0:1 route-map calculator permit 21337 match community c4_119_87 c4_119_88 c4_119_89 c4_119_90 c4_119_91 set community 0:1 route-map calculator permit 21338 match community c4_119_92 c4_119_93 c4_119_94 c4_119_95 c4_119_96 set community 0:1 route-map calculator permit 21339 match community c4_119_97 c4_119_98 c4_119_99 c4_119_100 c4_119_101 set community 0:1 route-map calculator permit 21340 match community c4_119_102 c4_119_103 c4_119_104 c4_119_105 c4_119_106 set community 0:1 route-map calculator permit 21341 match community c4_119_107 c4_119_108 c4_119_109 c4_119_110 c4_119_111 set community 0:1 route-map calculator permit 21342 match community c4_119_112 c4_119_113 c4_119_114 c4_119_115 c4_119_116 set community 0:1 route-map calculator permit 21343 match community c4_119_117 c3_119_118 c4_119_118 c4_119_119 c4_120_61 set community 0:1 route-map calculator permit 21344 match community c4_120_62 c4_120_63 c4_120_64 c4_120_65 c4_120_66 set community 0:1 route-map calculator permit 21345 match community c4_120_67 c4_120_68 c4_120_69 c4_120_70 c4_120_71 set community 0:1 route-map calculator permit 21346 match community c4_120_72 c4_120_73 c4_120_74 c4_120_75 c4_120_76 set community 0:1 route-map calculator permit 21347 match community c4_120_77 c4_120_78 c4_120_79 c4_120_80 c4_120_81 set community 0:1 route-map calculator permit 21348 match community c4_120_82 c4_120_83 c4_120_84 c4_120_85 c4_120_86 set community 0:1 route-map calculator permit 21349 match community c4_120_87 c4_120_88 c4_120_89 c4_120_90 c4_120_91 set community 0:1 route-map calculator permit 21350 match community c4_120_92 c4_120_93 c4_120_94 c4_120_95 c4_120_96 set community 0:1 route-map calculator permit 21351 match community c4_120_97 c4_120_98 c4_120_99 c4_120_100 c4_120_101 set community 0:1 route-map calculator permit 21352 match community c4_120_102 c4_120_103 c4_120_104 c4_120_105 c4_120_106 set community 0:1 route-map calculator permit 21353 match community c4_120_107 c4_120_108 c4_120_109 c4_120_110 c4_120_111 set community 0:1 route-map calculator permit 21354 match community c4_120_112 c4_120_113 c4_120_114 c4_120_115 c4_120_116 set community 0:1 route-map calculator permit 21355 match community c4_120_117 c4_120_118 c3_120_119 c4_120_119 c4_120_120 set community 0:1 route-map calculator permit 21356 match community c4_121_61 c4_121_62 c4_121_63 c4_121_64 c4_121_65 set community 0:1 route-map calculator permit 21357 match community c4_121_66 c4_121_67 c4_121_68 c4_121_69 c4_121_70 set community 0:1 route-map calculator permit 21358 match community c4_121_71 c4_121_72 c4_121_73 c4_121_74 c4_121_75 set community 0:1 route-map calculator permit 21359 match community c4_121_76 c4_121_77 c4_121_78 c4_121_79 c4_121_80 set community 0:1 route-map calculator permit 21360 match community c4_121_81 c4_121_82 c4_121_83 c4_121_84 c4_121_85 set community 0:1 route-map calculator permit 21361 match community c4_121_86 c4_121_87 c4_121_88 c4_121_89 c4_121_90 set community 0:1 route-map calculator permit 21362 match community c4_121_91 c4_121_92 c4_121_93 c4_121_94 c4_121_95 set community 0:1 route-map calculator permit 21363 match community c4_121_96 c4_121_97 c4_121_98 c4_121_99 c4_121_100 set community 0:1 route-map calculator permit 21364 match community c4_121_101 c4_121_102 c4_121_103 c4_121_104 c4_121_105 set community 0:1 route-map calculator permit 21365 match community c4_121_106 c4_121_107 c4_121_108 c4_121_109 c4_121_110 set community 0:1 route-map calculator permit 21366 match community c4_121_111 c4_121_112 c4_121_113 c4_121_114 c4_121_115 set community 0:1 route-map calculator permit 21367 match community c4_121_116 c4_121_117 c4_121_118 c4_121_119 c3_121_120 set community 0:1 route-map calculator permit 21368 match community c4_121_120 c4_121_121 c4_122_62 c4_122_63 c4_122_64 set community 0:1 route-map calculator permit 21369 match community c4_122_65 c4_122_66 c4_122_67 c4_122_68 c4_122_69 set community 0:1 route-map calculator permit 21370 match community c4_122_70 c4_122_71 c4_122_72 c4_122_73 c4_122_74 set community 0:1 route-map calculator permit 21371 match community c4_122_75 c4_122_76 c4_122_77 c4_122_78 c4_122_79 set community 0:1 route-map calculator permit 21372 match community c4_122_80 c4_122_81 c4_122_82 c4_122_83 c4_122_84 set community 0:1 route-map calculator permit 21373 match community c4_122_85 c4_122_86 c4_122_87 c4_122_88 c4_122_89 set community 0:1 route-map calculator permit 21374 match community c4_122_90 c4_122_91 c4_122_92 c4_122_93 c4_122_94 set community 0:1 route-map calculator permit 21375 match community c4_122_95 c4_122_96 c4_122_97 c4_122_98 c4_122_99 set community 0:1 route-map calculator permit 21376 match community c4_122_100 c4_122_101 c4_122_102 c4_122_103 c4_122_104 set community 0:1 route-map calculator permit 21377 match community c4_122_105 c4_122_106 c4_122_107 c4_122_108 c4_122_109 set community 0:1 route-map calculator permit 21378 match community c4_122_110 c4_122_111 c4_122_112 c4_122_113 c4_122_114 set community 0:1 route-map calculator permit 21379 match community c4_122_115 c4_122_116 c4_122_117 c4_122_118 c4_122_119 set community 0:1 route-map calculator permit 21380 match community c4_122_120 c3_122_121 c4_122_121 c4_122_122 c4_123_62 set community 0:1 route-map calculator permit 21381 match community c4_123_63 c4_123_64 c4_123_65 c4_123_66 c4_123_67 set community 0:1 route-map calculator permit 21382 match community c4_123_68 c4_123_69 c4_123_70 c4_123_71 c4_123_72 set community 0:1 route-map calculator permit 21383 match community c4_123_73 c4_123_74 c4_123_75 c4_123_76 c4_123_77 set community 0:1 route-map calculator permit 21384 match community c4_123_78 c4_123_79 c4_123_80 c4_123_81 c4_123_82 set community 0:1 route-map calculator permit 21385 match community c4_123_83 c4_123_84 c4_123_85 c4_123_86 c4_123_87 set community 0:1 route-map calculator permit 21386 match community c4_123_88 c4_123_89 c4_123_90 c4_123_91 c4_123_92 set community 0:1 route-map calculator permit 21387 match community c4_123_93 c4_123_94 c4_123_95 c4_123_96 c4_123_97 set community 0:1 route-map calculator permit 21388 match community c4_123_98 c4_123_99 c4_123_100 c4_123_101 c4_123_102 set community 0:1 route-map calculator permit 21389 match community c4_123_103 c4_123_104 c4_123_105 c4_123_106 c4_123_107 set community 0:1 route-map calculator permit 21390 match community c4_123_108 c4_123_109 c4_123_110 c4_123_111 c4_123_112 set community 0:1 route-map calculator permit 21391 match community c4_123_113 c4_123_114 c4_123_115 c4_123_116 c4_123_117 set community 0:1 route-map calculator permit 21392 match community c4_123_118 c4_123_119 c4_123_120 c4_123_121 c3_123_122 set community 0:1 route-map calculator permit 21393 match community c4_123_122 c4_123_123 c4_124_63 c4_124_64 c4_124_65 set community 0:1 route-map calculator permit 21394 match community c4_124_66 c4_124_67 c4_124_68 c4_124_69 c4_124_70 set community 0:1 route-map calculator permit 21395 match community c4_124_71 c4_124_72 c4_124_73 c4_124_74 c4_124_75 set community 0:1 route-map calculator permit 21396 match community c4_124_76 c4_124_77 c4_124_78 c4_124_79 c4_124_80 set community 0:1 route-map calculator permit 21397 match community c4_124_81 c4_124_82 c4_124_83 c4_124_84 c4_124_85 set community 0:1 route-map calculator permit 21398 match community c4_124_86 c4_124_87 c4_124_88 c4_124_89 c4_124_90 set community 0:1 route-map calculator permit 21399 match community c4_124_91 c4_124_92 c4_124_93 c4_124_94 c4_124_95 set community 0:1 route-map calculator permit 21400 match community c4_124_96 c4_124_97 c4_124_98 c4_124_99 c4_124_100 set community 0:1 route-map calculator permit 21401 match community c4_124_101 c4_124_102 c4_124_103 c4_124_104 c4_124_105 set community 0:1 route-map calculator permit 21402 match community c4_124_106 c4_124_107 c4_124_108 c4_124_109 c4_124_110 set community 0:1 route-map calculator permit 21403 match community c4_124_111 c4_124_112 c4_124_113 c4_124_114 c4_124_115 set community 0:1 route-map calculator permit 21404 match community c4_124_116 c4_124_117 c4_124_118 c4_124_119 c4_124_120 set community 0:1 route-map calculator permit 21405 match community c4_124_121 c4_124_122 c3_124_123 c4_124_123 c4_124_124 set community 0:1 route-map calculator permit 21406 match community c4_125_63 c4_125_64 c4_125_65 c4_125_66 c4_125_67 set community 0:1 route-map calculator permit 21407 match community c4_125_68 c4_125_69 c4_125_70 c4_125_71 c4_125_72 set community 0:1 route-map calculator permit 21408 match community c4_125_73 c4_125_74 c4_125_75 c4_125_76 c4_125_77 set community 0:1 route-map calculator permit 21409 match community c4_125_78 c4_125_79 c4_125_80 c4_125_81 c4_125_82 set community 0:1 route-map calculator permit 21410 match community c4_125_83 c4_125_84 c4_125_85 c4_125_86 c4_125_87 set community 0:1 route-map calculator permit 21411 match community c4_125_88 c4_125_89 c4_125_90 c4_125_91 c4_125_92 set community 0:1 route-map calculator permit 21412 match community c4_125_93 c4_125_94 c4_125_95 c4_125_96 c4_125_97 set community 0:1 route-map calculator permit 21413 match community c4_125_98 c4_125_99 c4_125_100 c4_125_101 c4_125_102 set community 0:1 route-map calculator permit 21414 match community c4_125_103 c4_125_104 c4_125_105 c4_125_106 c4_125_107 set community 0:1 route-map calculator permit 21415 match community c4_125_108 c4_125_109 c4_125_110 c4_125_111 c4_125_112 set community 0:1 route-map calculator permit 21416 match community c4_125_113 c4_125_114 c4_125_115 c4_125_116 c4_125_117 set community 0:1 route-map calculator permit 21417 match community c4_125_118 c4_125_119 c4_125_120 c4_125_121 c4_125_122 set community 0:1 route-map calculator permit 21418 match community c4_125_123 c3_125_124 c4_125_124 c4_125_125 c4_126_64 set community 0:1 route-map calculator permit 21419 match community c4_126_65 c4_126_66 c4_126_67 c4_126_68 c4_126_69 set community 0:1 route-map calculator permit 21420 match community c4_126_70 c4_126_71 c4_126_72 c4_126_73 c4_126_74 set community 0:1 route-map calculator permit 21421 match community c4_126_75 c4_126_76 c4_126_77 c4_126_78 c4_126_79 set community 0:1 route-map calculator permit 21422 match community c4_126_80 c4_126_81 c4_126_82 c4_126_83 c4_126_84 set community 0:1 route-map calculator permit 21423 match community c4_126_85 c4_126_86 c4_126_87 c4_126_88 c4_126_89 set community 0:1 route-map calculator permit 21424 match community c4_126_90 c4_126_91 c4_126_92 c4_126_93 c4_126_94 set community 0:1 route-map calculator permit 21425 match community c4_126_95 c4_126_96 c4_126_97 c4_126_98 c4_126_99 set community 0:1 route-map calculator permit 21426 match community c4_126_100 c4_126_101 c4_126_102 c4_126_103 c4_126_104 set community 0:1 route-map calculator permit 21427 match community c4_126_105 c4_126_106 c4_126_107 c4_126_108 c4_126_109 set community 0:1 route-map calculator permit 21428 match community c4_126_110 c4_126_111 c4_126_112 c4_126_113 c4_126_114 set community 0:1 route-map calculator permit 21429 match community c4_126_115 c4_126_116 c4_126_117 c4_126_118 c4_126_119 set community 0:1 route-map calculator permit 21430 match community c4_126_120 c4_126_121 c4_126_122 c4_126_123 c4_126_124 set community 0:1 route-map calculator permit 21431 match community c3_126_125 c4_126_125 c4_126_126 c4_127_64 c4_127_65 set community 0:1 route-map calculator permit 21432 match community c4_127_66 c4_127_67 c4_127_68 c4_127_69 c4_127_70 set community 0:1 route-map calculator permit 21433 match community c4_127_71 c4_127_72 c4_127_73 c4_127_74 c4_127_75 set community 0:1 route-map calculator permit 21434 match community c4_127_76 c4_127_77 c4_127_78 c4_127_79 c4_127_80 set community 0:1 route-map calculator permit 21435 match community c4_127_81 c4_127_82 c4_127_83 c4_127_84 c4_127_85 set community 0:1 route-map calculator permit 21436 match community c4_127_86 c4_127_87 c4_127_88 c4_127_89 c4_127_90 set community 0:1 route-map calculator permit 21437 match community c4_127_91 c4_127_92 c4_127_93 c4_127_94 c4_127_95 set community 0:1 route-map calculator permit 21438 match community c4_127_96 c4_127_97 c4_127_98 c4_127_99 c4_127_100 set community 0:1 route-map calculator permit 21439 match community c4_127_101 c4_127_102 c4_127_103 c4_127_104 c4_127_105 set community 0:1 route-map calculator permit 21440 match community c4_127_106 c4_127_107 c4_127_108 c4_127_109 c4_127_110 set community 0:1 route-map calculator permit 21441 match community c4_127_111 c4_127_112 c4_127_113 c4_127_114 c4_127_115 set community 0:1 route-map calculator permit 21442 match community c4_127_116 c4_127_117 c4_127_118 c4_127_119 c4_127_120 set community 0:1 route-map calculator permit 21443 match community c4_127_121 c4_127_122 c4_127_123 c4_127_124 c4_127_125 set community 0:1 route-map calculator permit 21444 match community c3_127_126 c4_127_126 c4_127_127 c4_128_65 c4_128_66 set community 0:1 route-map calculator permit 21445 match community c4_128_67 c4_128_68 c4_128_69 c4_128_70 c4_128_71 set community 0:1 route-map calculator permit 21446 match community c4_128_72 c4_128_73 c4_128_74 c4_128_75 c4_128_76 set community 0:1 route-map calculator permit 21447 match community c4_128_77 c4_128_78 c4_128_79 c4_128_80 c4_128_81 set community 0:1 route-map calculator permit 21448 match community c4_128_82 c4_128_83 c4_128_84 c4_128_85 c4_128_86 set community 0:1 route-map calculator permit 21449 match community c4_128_87 c4_128_88 c4_128_89 c4_128_90 c4_128_91 set community 0:1 route-map calculator permit 21450 match community c4_128_92 c4_128_93 c4_128_94 c4_128_95 c4_128_96 set community 0:1 route-map calculator permit 21451 match community c4_128_97 c4_128_98 c4_128_99 c4_128_100 c4_128_101 set community 0:1 route-map calculator permit 21452 match community c4_128_102 c4_128_103 c4_128_104 c4_128_105 c4_128_106 set community 0:1 route-map calculator permit 21453 match community c4_128_107 c4_128_108 c4_128_109 c4_128_110 c4_128_111 set community 0:1 route-map calculator permit 21454 match community c4_128_112 c4_128_113 c4_128_114 c4_128_115 c4_128_116 set community 0:1 route-map calculator permit 21455 match community c4_128_117 c4_128_118 c4_128_119 c4_128_120 c4_128_121 set community 0:1 route-map calculator permit 21456 match community c4_128_122 c4_128_123 c4_128_124 c4_128_125 c4_128_126 set community 0:1 route-map calculator permit 21457 match community c3_128_127 c4_128_127 c4_128_128 c4_129_65 c4_129_66 set community 0:1 route-map calculator permit 21458 match community c4_129_67 c4_129_68 c4_129_69 c4_129_70 c4_129_71 set community 0:1 route-map calculator permit 21459 match community c4_129_72 c4_129_73 c4_129_74 c4_129_75 c4_129_76 set community 0:1 route-map calculator permit 21460 match community c4_129_77 c4_129_78 c4_129_79 c4_129_80 c4_129_81 set community 0:1 route-map calculator permit 21461 match community c4_129_82 c4_129_83 c4_129_84 c4_129_85 c4_129_86 set community 0:1 route-map calculator permit 21462 match community c4_129_87 c4_129_88 c4_129_89 c4_129_90 c4_129_91 set community 0:1 route-map calculator permit 21463 match community c4_129_92 c4_129_93 c4_129_94 c4_129_95 c4_129_96 set community 0:1 route-map calculator permit 21464 match community c4_129_97 c4_129_98 c4_129_99 c4_129_100 c4_129_101 set community 0:1 route-map calculator permit 21465 match community c4_129_102 c4_129_103 c4_129_104 c4_129_105 c4_129_106 set community 0:1 route-map calculator permit 21466 match community c4_129_107 c4_129_108 c4_129_109 c4_129_110 c4_129_111 set community 0:1 route-map calculator permit 21467 match community c4_129_112 c4_129_113 c4_129_114 c4_129_115 c4_129_116 set community 0:1 route-map calculator permit 21468 match community c4_129_117 c4_129_118 c4_129_119 c4_129_120 c4_129_121 set community 0:1 route-map calculator permit 21469 match community c4_129_122 c4_129_123 c4_129_124 c4_129_125 c4_129_126 set community 0:1 route-map calculator permit 21470 match community c4_129_127 c3_129_128 c4_129_128 c4_129_129 c4_130_66 set community 0:1 route-map calculator permit 21471 match community c4_130_67 c4_130_68 c4_130_69 c4_130_70 c4_130_71 set community 0:1 route-map calculator permit 21472 match community c4_130_72 c4_130_73 c4_130_74 c4_130_75 c4_130_76 set community 0:1 route-map calculator permit 21473 match community c4_130_77 c4_130_78 c4_130_79 c4_130_80 c4_130_81 set community 0:1 route-map calculator permit 21474 match community c4_130_82 c4_130_83 c4_130_84 c4_130_85 c4_130_86 set community 0:1 route-map calculator permit 21475 match community c4_130_87 c4_130_88 c4_130_89 c4_130_90 c4_130_91 set community 0:1 route-map calculator permit 21476 match community c4_130_92 c4_130_93 c4_130_94 c4_130_95 c4_130_96 set community 0:1 route-map calculator permit 21477 match community c4_130_97 c4_130_98 c4_130_99 c4_130_100 c4_130_101 set community 0:1 route-map calculator permit 21478 match community c4_130_102 c4_130_103 c4_130_104 c4_130_105 c4_130_106 set community 0:1 route-map calculator permit 21479 match community c4_130_107 c4_130_108 c4_130_109 c4_130_110 c4_130_111 set community 0:1 route-map calculator permit 21480 match community c4_130_112 c4_130_113 c4_130_114 c4_130_115 c4_130_116 set community 0:1 route-map calculator permit 21481 match community c4_130_117 c4_130_118 c4_130_119 c4_130_120 c4_130_121 set community 0:1 route-map calculator permit 21482 match community c4_130_122 c4_130_123 c4_130_124 c4_130_125 c4_130_126 set community 0:1 route-map calculator permit 21483 match community c4_130_127 c4_130_128 c3_130_129 c4_130_129 c4_130_130 set community 0:1 route-map calculator permit 21484 match community c4_131_66 c4_131_67 c4_131_68 c4_131_69 c4_131_70 set community 0:1 route-map calculator permit 21485 match community c4_131_71 c4_131_72 c4_131_73 c4_131_74 c4_131_75 set community 0:1 route-map calculator permit 21486 match community c4_131_76 c4_131_77 c4_131_78 c4_131_79 c4_131_80 set community 0:1 route-map calculator permit 21487 match community c4_131_81 c4_131_82 c4_131_83 c4_131_84 c4_131_85 set community 0:1 route-map calculator permit 21488 match community c4_131_86 c4_131_87 c4_131_88 c4_131_89 c4_131_90 set community 0:1 route-map calculator permit 21489 match community c4_131_91 c4_131_92 c4_131_93 c4_131_94 c4_131_95 set community 0:1 route-map calculator permit 21490 match community c4_131_96 c4_131_97 c4_131_98 c4_131_99 c4_131_100 set community 0:1 route-map calculator permit 21491 match community c4_131_101 c4_131_102 c4_131_103 c4_131_104 c4_131_105 set community 0:1 route-map calculator permit 21492 match community c4_131_106 c4_131_107 c4_131_108 c4_131_109 c4_131_110 set community 0:1 route-map calculator permit 21493 match community c4_131_111 c4_131_112 c4_131_113 c4_131_114 c4_131_115 set community 0:1 route-map calculator permit 21494 match community c4_131_116 c4_131_117 c4_131_118 c4_131_119 c4_131_120 set community 0:1 route-map calculator permit 21495 match community c4_131_121 c4_131_122 c4_131_123 c4_131_124 c4_131_125 set community 0:1 route-map calculator permit 21496 match community c4_131_126 c4_131_127 c4_131_128 c4_131_129 c3_131_130 set community 0:1 route-map calculator permit 21497 match community c4_131_130 c4_131_131 c4_132_67 c4_132_68 c4_132_69 set community 0:1 route-map calculator permit 21498 match community c4_132_70 c4_132_71 c4_132_72 c4_132_73 c4_132_74 set community 0:1 route-map calculator permit 21499 match community c4_132_75 c4_132_76 c4_132_77 c4_132_78 c4_132_79 set community 0:1 route-map calculator permit 21500 match community c4_132_80 c4_132_81 c4_132_82 c4_132_83 c4_132_84 set community 0:1 route-map calculator permit 21501 match community c4_132_85 c4_132_86 c4_132_87 c4_132_88 c4_132_89 set community 0:1 route-map calculator permit 21502 match community c4_132_90 c4_132_91 c4_132_92 c4_132_93 c4_132_94 set community 0:1 route-map calculator permit 21503 match community c4_132_95 c4_132_96 c4_132_97 c4_132_98 c4_132_99 set community 0:1 route-map calculator permit 21504 match community c4_132_100 c4_132_101 c4_132_102 c4_132_103 c4_132_104 set community 0:1 route-map calculator permit 21505 match community c4_132_105 c4_132_106 c4_132_107 c4_132_108 c4_132_109 set community 0:1 route-map calculator permit 21506 match community c4_132_110 c4_132_111 c4_132_112 c4_132_113 c4_132_114 set community 0:1 route-map calculator permit 21507 match community c4_132_115 c4_132_116 c4_132_117 c4_132_118 c4_132_119 set community 0:1 route-map calculator permit 21508 match community c4_132_120 c4_132_121 c4_132_122 c4_132_123 c4_132_124 set community 0:1 route-map calculator permit 21509 match community c4_132_125 c4_132_126 c4_132_127 c4_132_128 c4_132_129 set community 0:1 route-map calculator permit 21510 match community c4_132_130 c3_132_131 c4_132_131 c4_132_132 c4_133_67 set community 0:1 route-map calculator permit 21511 match community c4_133_68 c4_133_69 c4_133_70 c4_133_71 c4_133_72 set community 0:1 route-map calculator permit 21512 match community c4_133_73 c4_133_74 c4_133_75 c4_133_76 c4_133_77 set community 0:1 route-map calculator permit 21513 match community c4_133_78 c4_133_79 c4_133_80 c4_133_81 c4_133_82 set community 0:1 route-map calculator permit 21514 match community c4_133_83 c4_133_84 c4_133_85 c4_133_86 c4_133_87 set community 0:1 route-map calculator permit 21515 match community c4_133_88 c4_133_89 c4_133_90 c4_133_91 c4_133_92 set community 0:1 route-map calculator permit 21516 match community c4_133_93 c4_133_94 c4_133_95 c4_133_96 c4_133_97 set community 0:1 route-map calculator permit 21517 match community c4_133_98 c4_133_99 c4_133_100 c4_133_101 c4_133_102 set community 0:1 route-map calculator permit 21518 match community c4_133_103 c4_133_104 c4_133_105 c4_133_106 c4_133_107 set community 0:1 route-map calculator permit 21519 match community c4_133_108 c4_133_109 c4_133_110 c4_133_111 c4_133_112 set community 0:1 route-map calculator permit 21520 match community c4_133_113 c4_133_114 c4_133_115 c4_133_116 c4_133_117 set community 0:1 route-map calculator permit 21521 match community c4_133_118 c4_133_119 c4_133_120 c4_133_121 c4_133_122 set community 0:1 route-map calculator permit 21522 match community c4_133_123 c4_133_124 c4_133_125 c4_133_126 c4_133_127 set community 0:1 route-map calculator permit 21523 match community c4_133_128 c4_133_129 c4_133_130 c4_133_131 c3_133_132 set community 0:1 route-map calculator permit 21524 match community c4_133_132 c4_133_133 c4_134_68 c4_134_69 c4_134_70 set community 0:1 route-map calculator permit 21525 match community c4_134_71 c4_134_72 c4_134_73 c4_134_74 c4_134_75 set community 0:1 route-map calculator permit 21526 match community c4_134_76 c4_134_77 c4_134_78 c4_134_79 c4_134_80 set community 0:1 route-map calculator permit 21527 match community c4_134_81 c4_134_82 c4_134_83 c4_134_84 c4_134_85 set community 0:1 route-map calculator permit 21528 match community c4_134_86 c4_134_87 c4_134_88 c4_134_89 c4_134_90 set community 0:1 route-map calculator permit 21529 match community c4_134_91 c4_134_92 c4_134_93 c4_134_94 c4_134_95 set community 0:1 route-map calculator permit 21530 match community c4_134_96 c4_134_97 c4_134_98 c4_134_99 c4_134_100 set community 0:1 route-map calculator permit 21531 match community c4_134_101 c4_134_102 c4_134_103 c4_134_104 c4_134_105 set community 0:1 route-map calculator permit 21532 match community c4_134_106 c4_134_107 c4_134_108 c4_134_109 c4_134_110 set community 0:1 route-map calculator permit 21533 match community c4_134_111 c4_134_112 c4_134_113 c4_134_114 c4_134_115 set community 0:1 route-map calculator permit 21534 match community c4_134_116 c4_134_117 c4_134_118 c4_134_119 c4_134_120 set community 0:1 route-map calculator permit 21535 match community c4_134_121 c4_134_122 c4_134_123 c4_134_124 c4_134_125 set community 0:1 route-map calculator permit 21536 match community c4_134_126 c4_134_127 c4_134_128 c4_134_129 c4_134_130 set community 0:1 route-map calculator permit 21537 match community c4_134_131 c4_134_132 c3_134_133 c4_134_133 c4_134_134 set community 0:1 route-map calculator permit 21538 match community c4_135_68 c4_135_69 c4_135_70 c4_135_71 c4_135_72 set community 0:1 route-map calculator permit 21539 match community c4_135_73 c4_135_74 c4_135_75 c4_135_76 c4_135_77 set community 0:1 route-map calculator permit 21540 match community c4_135_78 c4_135_79 c4_135_80 c4_135_81 c4_135_82 set community 0:1 route-map calculator permit 21541 match community c4_135_83 c4_135_84 c4_135_85 c4_135_86 c4_135_87 set community 0:1 route-map calculator permit 21542 match community c4_135_88 c4_135_89 c4_135_90 c4_135_91 c4_135_92 set community 0:1 route-map calculator permit 21543 match community c4_135_93 c4_135_94 c4_135_95 c4_135_96 c4_135_97 set community 0:1 route-map calculator permit 21544 match community c4_135_98 c4_135_99 c4_135_100 c4_135_101 c4_135_102 set community 0:1 route-map calculator permit 21545 match community c4_135_103 c4_135_104 c4_135_105 c4_135_106 c4_135_107 set community 0:1 route-map calculator permit 21546 match community c4_135_108 c4_135_109 c4_135_110 c4_135_111 c4_135_112 set community 0:1 route-map calculator permit 21547 match community c4_135_113 c4_135_114 c4_135_115 c4_135_116 c4_135_117 set community 0:1 route-map calculator permit 21548 match community c4_135_118 c4_135_119 c4_135_120 c4_135_121 c4_135_122 set community 0:1 route-map calculator permit 21549 match community c4_135_123 c4_135_124 c4_135_125 c4_135_126 c4_135_127 set community 0:1 route-map calculator permit 21550 match community c4_135_128 c4_135_129 c4_135_130 c4_135_131 c4_135_132 set community 0:1 route-map calculator permit 21551 match community c4_135_133 c3_135_134 c4_135_134 c4_135_135 c4_136_69 set community 0:1 route-map calculator permit 21552 match community c4_136_70 c4_136_71 c4_136_72 c4_136_73 c4_136_74 set community 0:1 route-map calculator permit 21553 match community c4_136_75 c4_136_76 c4_136_77 c4_136_78 c4_136_79 set community 0:1 route-map calculator permit 21554 match community c4_136_80 c4_136_81 c4_136_82 c4_136_83 c4_136_84 set community 0:1 route-map calculator permit 21555 match community c4_136_85 c4_136_86 c4_136_87 c4_136_88 c4_136_89 set community 0:1 route-map calculator permit 21556 match community c4_136_90 c4_136_91 c4_136_92 c4_136_93 c4_136_94 set community 0:1 route-map calculator permit 21557 match community c4_136_95 c4_136_96 c4_136_97 c4_136_98 c4_136_99 set community 0:1 route-map calculator permit 21558 match community c4_136_100 c4_136_101 c4_136_102 c4_136_103 c4_136_104 set community 0:1 route-map calculator permit 21559 match community c4_136_105 c4_136_106 c4_136_107 c4_136_108 c4_136_109 set community 0:1 route-map calculator permit 21560 match community c4_136_110 c4_136_111 c4_136_112 c4_136_113 c4_136_114 set community 0:1 route-map calculator permit 21561 match community c4_136_115 c4_136_116 c4_136_117 c4_136_118 c4_136_119 set community 0:1 route-map calculator permit 21562 match community c4_136_120 c4_136_121 c4_136_122 c4_136_123 c4_136_124 set community 0:1 route-map calculator permit 21563 match community c4_136_125 c4_136_126 c4_136_127 c4_136_128 c4_136_129 set community 0:1 route-map calculator permit 21564 match community c4_136_130 c4_136_131 c4_136_132 c4_136_133 c4_136_134 set community 0:1 route-map calculator permit 21565 match community c3_136_135 c4_136_135 c4_136_136 c4_137_69 c4_137_70 set community 0:1 route-map calculator permit 21566 match community c4_137_71 c4_137_72 c4_137_73 c4_137_74 c4_137_75 set community 0:1 route-map calculator permit 21567 match community c4_137_76 c4_137_77 c4_137_78 c4_137_79 c4_137_80 set community 0:1 route-map calculator permit 21568 match community c4_137_81 c4_137_82 c4_137_83 c4_137_84 c4_137_85 set community 0:1 route-map calculator permit 21569 match community c4_137_86 c4_137_87 c4_137_88 c4_137_89 c4_137_90 set community 0:1 route-map calculator permit 21570 match community c4_137_91 c4_137_92 c4_137_93 c4_137_94 c4_137_95 set community 0:1 route-map calculator permit 21571 match community c4_137_96 c4_137_97 c4_137_98 c4_137_99 c4_137_100 set community 0:1 route-map calculator permit 21572 match community c4_137_101 c4_137_102 c4_137_103 c4_137_104 c4_137_105 set community 0:1 route-map calculator permit 21573 match community c4_137_106 c4_137_107 c4_137_108 c4_137_109 c4_137_110 set community 0:1 route-map calculator permit 21574 match community c4_137_111 c4_137_112 c4_137_113 c4_137_114 c4_137_115 set community 0:1 route-map calculator permit 21575 match community c4_137_116 c4_137_117 c4_137_118 c4_137_119 c4_137_120 set community 0:1 route-map calculator permit 21576 match community c4_137_121 c4_137_122 c4_137_123 c4_137_124 c4_137_125 set community 0:1 route-map calculator permit 21577 match community c4_137_126 c4_137_127 c4_137_128 c4_137_129 c4_137_130 set community 0:1 route-map calculator permit 21578 match community c4_137_131 c4_137_132 c4_137_133 c4_137_134 c4_137_135 set community 0:1 route-map calculator permit 21579 match community c3_137_136 c4_137_136 c4_137_137 c4_138_70 c4_138_71 set community 0:1 route-map calculator permit 21580 match community c4_138_72 c4_138_73 c4_138_74 c4_138_75 c4_138_76 set community 0:1 route-map calculator permit 21581 match community c4_138_77 c4_138_78 c4_138_79 c4_138_80 c4_138_81 set community 0:1 route-map calculator permit 21582 match community c4_138_82 c4_138_83 c4_138_84 c4_138_85 c4_138_86 set community 0:1 route-map calculator permit 21583 match community c4_138_87 c4_138_88 c4_138_89 c4_138_90 c4_138_91 set community 0:1 route-map calculator permit 21584 match community c4_138_92 c4_138_93 c4_138_94 c4_138_95 c4_138_96 set community 0:1 route-map calculator permit 21585 match community c4_138_97 c4_138_98 c4_138_99 c4_138_100 c4_138_101 set community 0:1 route-map calculator permit 21586 match community c4_138_102 c4_138_103 c4_138_104 c4_138_105 c4_138_106 set community 0:1 route-map calculator permit 21587 match community c4_138_107 c4_138_108 c4_138_109 c4_138_110 c4_138_111 set community 0:1 route-map calculator permit 21588 match community c4_138_112 c4_138_113 c4_138_114 c4_138_115 c4_138_116 set community 0:1 route-map calculator permit 21589 match community c4_138_117 c4_138_118 c4_138_119 c4_138_120 c4_138_121 set community 0:1 route-map calculator permit 21590 match community c4_138_122 c4_138_123 c4_138_124 c4_138_125 c4_138_126 set community 0:1 route-map calculator permit 21591 match community c4_138_127 c4_138_128 c4_138_129 c4_138_130 c4_138_131 set community 0:1 route-map calculator permit 21592 match community c4_138_132 c4_138_133 c4_138_134 c4_138_135 c4_138_136 set community 0:1 route-map calculator permit 21593 match community c3_138_137 c4_138_137 c4_138_138 c4_139_70 c4_139_71 set community 0:1 route-map calculator permit 21594 match community c4_139_72 c4_139_73 c4_139_74 c4_139_75 c4_139_76 set community 0:1 route-map calculator permit 21595 match community c4_139_77 c4_139_78 c4_139_79 c4_139_80 c4_139_81 set community 0:1 route-map calculator permit 21596 match community c4_139_82 c4_139_83 c4_139_84 c4_139_85 c4_139_86 set community 0:1 route-map calculator permit 21597 match community c4_139_87 c4_139_88 c4_139_89 c4_139_90 c4_139_91 set community 0:1 route-map calculator permit 21598 match community c4_139_92 c4_139_93 c4_139_94 c4_139_95 c4_139_96 set community 0:1 route-map calculator permit 21599 match community c4_139_97 c4_139_98 c4_139_99 c4_139_100 c4_139_101 set community 0:1 route-map calculator permit 21600 match community c4_139_102 c4_139_103 c4_139_104 c4_139_105 c4_139_106 set community 0:1 route-map calculator permit 21601 match community c4_139_107 c4_139_108 c4_139_109 c4_139_110 c4_139_111 set community 0:1 route-map calculator permit 21602 match community c4_139_112 c4_139_113 c4_139_114 c4_139_115 c4_139_116 set community 0:1 route-map calculator permit 21603 match community c4_139_117 c4_139_118 c4_139_119 c4_139_120 c4_139_121 set community 0:1 route-map calculator permit 21604 match community c4_139_122 c4_139_123 c4_139_124 c4_139_125 c4_139_126 set community 0:1 route-map calculator permit 21605 match community c4_139_127 c4_139_128 c4_139_129 c4_139_130 c4_139_131 set community 0:1 route-map calculator permit 21606 match community c4_139_132 c4_139_133 c4_139_134 c4_139_135 c4_139_136 set community 0:1 route-map calculator permit 21607 match community c4_139_137 c3_139_138 c4_139_138 c4_139_139 c4_140_71 set community 0:1 route-map calculator permit 21608 match community c4_140_72 c4_140_73 c4_140_74 c4_140_75 c4_140_76 set community 0:1 route-map calculator permit 21609 match community c4_140_77 c4_140_78 c4_140_79 c4_140_80 c4_140_81 set community 0:1 route-map calculator permit 21610 match community c4_140_82 c4_140_83 c4_140_84 c4_140_85 c4_140_86 set community 0:1 route-map calculator permit 21611 match community c4_140_87 c4_140_88 c4_140_89 c4_140_90 c4_140_91 set community 0:1 route-map calculator permit 21612 match community c4_140_92 c4_140_93 c4_140_94 c4_140_95 c4_140_96 set community 0:1 route-map calculator permit 21613 match community c4_140_97 c4_140_98 c4_140_99 c4_140_100 c4_140_101 set community 0:1 route-map calculator permit 21614 match community c4_140_102 c4_140_103 c4_140_104 c4_140_105 c4_140_106 set community 0:1 route-map calculator permit 21615 match community c4_140_107 c4_140_108 c4_140_109 c4_140_110 c4_140_111 set community 0:1 route-map calculator permit 21616 match community c4_140_112 c4_140_113 c4_140_114 c4_140_115 c4_140_116 set community 0:1 route-map calculator permit 21617 match community c4_140_117 c4_140_118 c4_140_119 c4_140_120 c4_140_121 set community 0:1 route-map calculator permit 21618 match community c4_140_122 c4_140_123 c4_140_124 c4_140_125 c4_140_126 set community 0:1 route-map calculator permit 21619 match community c4_140_127 c4_140_128 c4_140_129 c4_140_130 c4_140_131 set community 0:1 route-map calculator permit 21620 match community c4_140_132 c4_140_133 c4_140_134 c4_140_135 c4_140_136 set community 0:1 route-map calculator permit 21621 match community c4_140_137 c4_140_138 c3_140_139 c4_140_139 c4_140_140 set community 0:1 route-map calculator permit 21622 match community c4_141_71 c4_141_72 c4_141_73 c4_141_74 c4_141_75 set community 0:1 route-map calculator permit 21623 match community c4_141_76 c4_141_77 c4_141_78 c4_141_79 c4_141_80 set community 0:1 route-map calculator permit 21624 match community c4_141_81 c4_141_82 c4_141_83 c4_141_84 c4_141_85 set community 0:1 route-map calculator permit 21625 match community c4_141_86 c4_141_87 c4_141_88 c4_141_89 c4_141_90 set community 0:1 route-map calculator permit 21626 match community c4_141_91 c4_141_92 c4_141_93 c4_141_94 c4_141_95 set community 0:1 route-map calculator permit 21627 match community c4_141_96 c4_141_97 c4_141_98 c4_141_99 c4_141_100 set community 0:1 route-map calculator permit 21628 match community c4_141_101 c4_141_102 c4_141_103 c4_141_104 c4_141_105 set community 0:1 route-map calculator permit 21629 match community c4_141_106 c4_141_107 c4_141_108 c4_141_109 c4_141_110 set community 0:1 route-map calculator permit 21630 match community c4_141_111 c4_141_112 c4_141_113 c4_141_114 c4_141_115 set community 0:1 route-map calculator permit 21631 match community c4_141_116 c4_141_117 c4_141_118 c4_141_119 c4_141_120 set community 0:1 route-map calculator permit 21632 match community c4_141_121 c4_141_122 c4_141_123 c4_141_124 c4_141_125 set community 0:1 route-map calculator permit 21633 match community c4_141_126 c4_141_127 c4_141_128 c4_141_129 c4_141_130 set community 0:1 route-map calculator permit 21634 match community c4_141_131 c4_141_132 c4_141_133 c4_141_134 c4_141_135 set community 0:1 route-map calculator permit 21635 match community c4_141_136 c4_141_137 c4_141_138 c4_141_139 c3_141_140 set community 0:1 route-map calculator permit 21636 match community c4_141_140 c4_141_141 c4_142_72 c4_142_73 c4_142_74 set community 0:1 route-map calculator permit 21637 match community c4_142_75 c4_142_76 c4_142_77 c4_142_78 c4_142_79 set community 0:1 route-map calculator permit 21638 match community c4_142_80 c4_142_81 c4_142_82 c4_142_83 c4_142_84 set community 0:1 route-map calculator permit 21639 match community c4_142_85 c4_142_86 c4_142_87 c4_142_88 c4_142_89 set community 0:1 route-map calculator permit 21640 match community c4_142_90 c4_142_91 c4_142_92 c4_142_93 c4_142_94 set community 0:1 route-map calculator permit 21641 match community c4_142_95 c4_142_96 c4_142_97 c4_142_98 c4_142_99 set community 0:1 route-map calculator permit 21642 match community c4_142_100 c4_142_101 c4_142_102 c4_142_103 c4_142_104 set community 0:1 route-map calculator permit 21643 match community c4_142_105 c4_142_106 c4_142_107 c4_142_108 c4_142_109 set community 0:1 route-map calculator permit 21644 match community c4_142_110 c4_142_111 c4_142_112 c4_142_113 c4_142_114 set community 0:1 route-map calculator permit 21645 match community c4_142_115 c4_142_116 c4_142_117 c4_142_118 c4_142_119 set community 0:1 route-map calculator permit 21646 match community c4_142_120 c4_142_121 c4_142_122 c4_142_123 c4_142_124 set community 0:1 route-map calculator permit 21647 match community c4_142_125 c4_142_126 c4_142_127 c4_142_128 c4_142_129 set community 0:1 route-map calculator permit 21648 match community c4_142_130 c4_142_131 c4_142_132 c4_142_133 c4_142_134 set community 0:1 route-map calculator permit 21649 match community c4_142_135 c4_142_136 c4_142_137 c4_142_138 c4_142_139 set community 0:1 route-map calculator permit 21650 match community c4_142_140 c3_142_141 c4_142_141 c4_142_142 c4_143_72 set community 0:1 route-map calculator permit 21651 match community c4_143_73 c4_143_74 c4_143_75 c4_143_76 c4_143_77 set community 0:1 route-map calculator permit 21652 match community c4_143_78 c4_143_79 c4_143_80 c4_143_81 c4_143_82 set community 0:1 route-map calculator permit 21653 match community c4_143_83 c4_143_84 c4_143_85 c4_143_86 c4_143_87 set community 0:1 route-map calculator permit 21654 match community c4_143_88 c4_143_89 c4_143_90 c4_143_91 c4_143_92 set community 0:1 route-map calculator permit 21655 match community c4_143_93 c4_143_94 c4_143_95 c4_143_96 c4_143_97 set community 0:1 route-map calculator permit 21656 match community c4_143_98 c4_143_99 c4_143_100 c4_143_101 c4_143_102 set community 0:1 route-map calculator permit 21657 match community c4_143_103 c4_143_104 c4_143_105 c4_143_106 c4_143_107 set community 0:1 route-map calculator permit 21658 match community c4_143_108 c4_143_109 c4_143_110 c4_143_111 c4_143_112 set community 0:1 route-map calculator permit 21659 match community c4_143_113 c4_143_114 c4_143_115 c4_143_116 c4_143_117 set community 0:1 route-map calculator permit 21660 match community c4_143_118 c4_143_119 c4_143_120 c4_143_121 c4_143_122 set community 0:1 route-map calculator permit 21661 match community c4_143_123 c4_143_124 c4_143_125 c4_143_126 c4_143_127 set community 0:1 route-map calculator permit 21662 match community c4_143_128 c4_143_129 c4_143_130 c4_143_131 c4_143_132 set community 0:1 route-map calculator permit 21663 match community c4_143_133 c4_143_134 c4_143_135 c4_143_136 c4_143_137 set community 0:1 route-map calculator permit 21664 match community c4_143_138 c4_143_139 c4_143_140 c4_143_141 c3_143_142 set community 0:1 route-map calculator permit 21665 match community c4_143_142 c4_143_143 c4_144_73 c4_144_74 c4_144_75 set community 0:1 route-map calculator permit 21666 match community c4_144_76 c4_144_77 c4_144_78 c4_144_79 c4_144_80 set community 0:1 route-map calculator permit 21667 match community c4_144_81 c4_144_82 c4_144_83 c4_144_84 c4_144_85 set community 0:1 route-map calculator permit 21668 match community c4_144_86 c4_144_87 c4_144_88 c4_144_89 c4_144_90 set community 0:1 route-map calculator permit 21669 match community c4_144_91 c4_144_92 c4_144_93 c4_144_94 c4_144_95 set community 0:1 route-map calculator permit 21670 match community c4_144_96 c4_144_97 c4_144_98 c4_144_99 c4_144_100 set community 0:1 route-map calculator permit 21671 match community c4_144_101 c4_144_102 c4_144_103 c4_144_104 c4_144_105 set community 0:1 route-map calculator permit 21672 match community c4_144_106 c4_144_107 c4_144_108 c4_144_109 c4_144_110 set community 0:1 route-map calculator permit 21673 match community c4_144_111 c4_144_112 c4_144_113 c4_144_114 c4_144_115 set community 0:1 route-map calculator permit 21674 match community c4_144_116 c4_144_117 c4_144_118 c4_144_119 c4_144_120 set community 0:1 route-map calculator permit 21675 match community c4_144_121 c4_144_122 c4_144_123 c4_144_124 c4_144_125 set community 0:1 route-map calculator permit 21676 match community c4_144_126 c4_144_127 c4_144_128 c4_144_129 c4_144_130 set community 0:1 route-map calculator permit 21677 match community c4_144_131 c4_144_132 c4_144_133 c4_144_134 c4_144_135 set community 0:1 route-map calculator permit 21678 match community c4_144_136 c4_144_137 c4_144_138 c4_144_139 c4_144_140 set community 0:1 route-map calculator permit 21679 match community c4_144_141 c4_144_142 c3_144_143 c4_144_143 c4_144_144 set community 0:1 route-map calculator permit 21680 match community c4_145_73 c4_145_74 c4_145_75 c4_145_76 c4_145_77 set community 0:1 route-map calculator permit 21681 match community c4_145_78 c4_145_79 c4_145_80 c4_145_81 c4_145_82 set community 0:1 route-map calculator permit 21682 match community c4_145_83 c4_145_84 c4_145_85 c4_145_86 c4_145_87 set community 0:1 route-map calculator permit 21683 match community c4_145_88 c4_145_89 c4_145_90 c4_145_91 c4_145_92 set community 0:1 route-map calculator permit 21684 match community c4_145_93 c4_145_94 c4_145_95 c4_145_96 c4_145_97 set community 0:1 route-map calculator permit 21685 match community c4_145_98 c4_145_99 c4_145_100 c4_145_101 c4_145_102 set community 0:1 route-map calculator permit 21686 match community c4_145_103 c4_145_104 c4_145_105 c4_145_106 c4_145_107 set community 0:1 route-map calculator permit 21687 match community c4_145_108 c4_145_109 c4_145_110 c4_145_111 c4_145_112 set community 0:1 route-map calculator permit 21688 match community c4_145_113 c4_145_114 c4_145_115 c4_145_116 c4_145_117 set community 0:1 route-map calculator permit 21689 match community c4_145_118 c4_145_119 c4_145_120 c4_145_121 c4_145_122 set community 0:1 route-map calculator permit 21690 match community c4_145_123 c4_145_124 c4_145_125 c4_145_126 c4_145_127 set community 0:1 route-map calculator permit 21691 match community c4_145_128 c4_145_129 c4_145_130 c4_145_131 c4_145_132 set community 0:1 route-map calculator permit 21692 match community c4_145_133 c4_145_134 c4_145_135 c4_145_136 c4_145_137 set community 0:1 route-map calculator permit 21693 match community c4_145_138 c4_145_139 c4_145_140 c4_145_141 c4_145_142 set community 0:1 route-map calculator permit 21694 match community c4_145_143 c3_145_144 c4_145_144 c4_145_145 c4_146_74 set community 0:1 route-map calculator permit 21695 match community c4_146_75 c4_146_76 c4_146_77 c4_146_78 c4_146_79 set community 0:1 route-map calculator permit 21696 match community c4_146_80 c4_146_81 c4_146_82 c4_146_83 c4_146_84 set community 0:1 route-map calculator permit 21697 match community c4_146_85 c4_146_86 c4_146_87 c4_146_88 c4_146_89 set community 0:1 route-map calculator permit 21698 match community c4_146_90 c4_146_91 c4_146_92 c4_146_93 c4_146_94 set community 0:1 route-map calculator permit 21699 match community c4_146_95 c4_146_96 c4_146_97 c4_146_98 c4_146_99 set community 0:1 route-map calculator permit 21700 match community c4_146_100 c4_146_101 c4_146_102 c4_146_103 c4_146_104 set community 0:1 route-map calculator permit 21701 match community c4_146_105 c4_146_106 c4_146_107 c4_146_108 c4_146_109 set community 0:1 route-map calculator permit 21702 match community c4_146_110 c4_146_111 c4_146_112 c4_146_113 c4_146_114 set community 0:1 route-map calculator permit 21703 match community c4_146_115 c4_146_116 c4_146_117 c4_146_118 c4_146_119 set community 0:1 route-map calculator permit 21704 match community c4_146_120 c4_146_121 c4_146_122 c4_146_123 c4_146_124 set community 0:1 route-map calculator permit 21705 match community c4_146_125 c4_146_126 c4_146_127 c4_146_128 c4_146_129 set community 0:1 route-map calculator permit 21706 match community c4_146_130 c4_146_131 c4_146_132 c4_146_133 c4_146_134 set community 0:1 route-map calculator permit 21707 match community c4_146_135 c4_146_136 c4_146_137 c4_146_138 c4_146_139 set community 0:1 route-map calculator permit 21708 match community c4_146_140 c4_146_141 c4_146_142 c4_146_143 c4_146_144 set community 0:1 route-map calculator permit 21709 match community c3_146_145 c4_146_145 c4_146_146 c4_147_74 c4_147_75 set community 0:1 route-map calculator permit 21710 match community c4_147_76 c4_147_77 c4_147_78 c4_147_79 c4_147_80 set community 0:1 route-map calculator permit 21711 match community c4_147_81 c4_147_82 c4_147_83 c4_147_84 c4_147_85 set community 0:1 route-map calculator permit 21712 match community c4_147_86 c4_147_87 c4_147_88 c4_147_89 c4_147_90 set community 0:1 route-map calculator permit 21713 match community c4_147_91 c4_147_92 c4_147_93 c4_147_94 c4_147_95 set community 0:1 route-map calculator permit 21714 match community c4_147_96 c4_147_97 c4_147_98 c4_147_99 c4_147_100 set community 0:1 route-map calculator permit 21715 match community c4_147_101 c4_147_102 c4_147_103 c4_147_104 c4_147_105 set community 0:1 route-map calculator permit 21716 match community c4_147_106 c4_147_107 c4_147_108 c4_147_109 c4_147_110 set community 0:1 route-map calculator permit 21717 match community c4_147_111 c4_147_112 c4_147_113 c4_147_114 c4_147_115 set community 0:1 route-map calculator permit 21718 match community c4_147_116 c4_147_117 c4_147_118 c4_147_119 c4_147_120 set community 0:1 route-map calculator permit 21719 match community c4_147_121 c4_147_122 c4_147_123 c4_147_124 c4_147_125 set community 0:1 route-map calculator permit 21720 match community c4_147_126 c4_147_127 c4_147_128 c4_147_129 c4_147_130 set community 0:1 route-map calculator permit 21721 match community c4_147_131 c4_147_132 c4_147_133 c4_147_134 c4_147_135 set community 0:1 route-map calculator permit 21722 match community c4_147_136 c4_147_137 c4_147_138 c4_147_139 c4_147_140 set community 0:1 route-map calculator permit 21723 match community c4_147_141 c4_147_142 c4_147_143 c4_147_144 c4_147_145 set community 0:1 route-map calculator permit 21724 match community c3_147_146 c4_147_146 c4_147_147 c4_148_75 c4_148_76 set community 0:1 route-map calculator permit 21725 match community c4_148_77 c4_148_78 c4_148_79 c4_148_80 c4_148_81 set community 0:1 route-map calculator permit 21726 match community c4_148_82 c4_148_83 c4_148_84 c4_148_85 c4_148_86 set community 0:1 route-map calculator permit 21727 match community c4_148_87 c4_148_88 c4_148_89 c4_148_90 c4_148_91 set community 0:1 route-map calculator permit 21728 match community c4_148_92 c4_148_93 c4_148_94 c4_148_95 c4_148_96 set community 0:1 route-map calculator permit 21729 match community c4_148_97 c4_148_98 c4_148_99 c4_148_100 c4_148_101 set community 0:1 route-map calculator permit 21730 match community c4_148_102 c4_148_103 c4_148_104 c4_148_105 c4_148_106 set community 0:1 route-map calculator permit 21731 match community c4_148_107 c4_148_108 c4_148_109 c4_148_110 c4_148_111 set community 0:1 route-map calculator permit 21732 match community c4_148_112 c4_148_113 c4_148_114 c4_148_115 c4_148_116 set community 0:1 route-map calculator permit 21733 match community c4_148_117 c4_148_118 c4_148_119 c4_148_120 c4_148_121 set community 0:1 route-map calculator permit 21734 match community c4_148_122 c4_148_123 c4_148_124 c4_148_125 c4_148_126 set community 0:1 route-map calculator permit 21735 match community c4_148_127 c4_148_128 c4_148_129 c4_148_130 c4_148_131 set community 0:1 route-map calculator permit 21736 match community c4_148_132 c4_148_133 c4_148_134 c4_148_135 c4_148_136 set community 0:1 route-map calculator permit 21737 match community c4_148_137 c4_148_138 c4_148_139 c4_148_140 c4_148_141 set community 0:1 route-map calculator permit 21738 match community c4_148_142 c4_148_143 c4_148_144 c4_148_145 c4_148_146 set community 0:1 route-map calculator permit 21739 match community c3_148_147 c4_148_147 c4_148_148 c4_149_75 c4_149_76 set community 0:1 route-map calculator permit 21740 match community c4_149_77 c4_149_78 c4_149_79 c4_149_80 c4_149_81 set community 0:1 route-map calculator permit 21741 match community c4_149_82 c4_149_83 c4_149_84 c4_149_85 c4_149_86 set community 0:1 route-map calculator permit 21742 match community c4_149_87 c4_149_88 c4_149_89 c4_149_90 c4_149_91 set community 0:1 route-map calculator permit 21743 match community c4_149_92 c4_149_93 c4_149_94 c4_149_95 c4_149_96 set community 0:1 route-map calculator permit 21744 match community c4_149_97 c4_149_98 c4_149_99 c4_149_100 c4_149_101 set community 0:1 route-map calculator permit 21745 match community c4_149_102 c4_149_103 c4_149_104 c4_149_105 c4_149_106 set community 0:1 route-map calculator permit 21746 match community c4_149_107 c4_149_108 c4_149_109 c4_149_110 c4_149_111 set community 0:1 route-map calculator permit 21747 match community c4_149_112 c4_149_113 c4_149_114 c4_149_115 c4_149_116 set community 0:1 route-map calculator permit 21748 match community c4_149_117 c4_149_118 c4_149_119 c4_149_120 c4_149_121 set community 0:1 route-map calculator permit 21749 match community c4_149_122 c4_149_123 c4_149_124 c4_149_125 c4_149_126 set community 0:1 route-map calculator permit 21750 match community c4_149_127 c4_149_128 c4_149_129 c4_149_130 c4_149_131 set community 0:1 route-map calculator permit 21751 match community c4_149_132 c4_149_133 c4_149_134 c4_149_135 c4_149_136 set community 0:1 route-map calculator permit 21752 match community c4_149_137 c4_149_138 c4_149_139 c4_149_140 c4_149_141 set community 0:1 route-map calculator permit 21753 match community c4_149_142 c4_149_143 c4_149_144 c4_149_145 c4_149_146 set community 0:1 route-map calculator permit 21754 match community c4_149_147 c3_149_148 c4_149_148 c4_149_149 c4_150_76 set community 0:1 route-map calculator permit 21755 match community c4_150_77 c4_150_78 c4_150_79 c4_150_80 c4_150_81 set community 0:1 route-map calculator permit 21756 match community c4_150_82 c4_150_83 c4_150_84 c4_150_85 c4_150_86 set community 0:1 route-map calculator permit 21757 match community c4_150_87 c4_150_88 c4_150_89 c4_150_90 c4_150_91 set community 0:1 route-map calculator permit 21758 match community c4_150_92 c4_150_93 c4_150_94 c4_150_95 c4_150_96 set community 0:1 route-map calculator permit 21759 match community c4_150_97 c4_150_98 c4_150_99 c4_150_100 c4_150_101 set community 0:1 route-map calculator permit 21760 match community c4_150_102 c4_150_103 c4_150_104 c4_150_105 c4_150_106 set community 0:1 route-map calculator permit 21761 match community c4_150_107 c4_150_108 c4_150_109 c4_150_110 c4_150_111 set community 0:1 route-map calculator permit 21762 match community c4_150_112 c4_150_113 c4_150_114 c4_150_115 c4_150_116 set community 0:1 route-map calculator permit 21763 match community c4_150_117 c4_150_118 c4_150_119 c4_150_120 c4_150_121 set community 0:1 route-map calculator permit 21764 match community c4_150_122 c4_150_123 c4_150_124 c4_150_125 c4_150_126 set community 0:1 route-map calculator permit 21765 match community c4_150_127 c4_150_128 c4_150_129 c4_150_130 c4_150_131 set community 0:1 route-map calculator permit 21766 match community c4_150_132 c4_150_133 c4_150_134 c4_150_135 c4_150_136 set community 0:1 route-map calculator permit 21767 match community c4_150_137 c4_150_138 c4_150_139 c4_150_140 c4_150_141 set community 0:1 route-map calculator permit 21768 match community c4_150_142 c4_150_143 c4_150_144 c4_150_145 c4_150_146 set community 0:1 route-map calculator permit 21769 match community c4_150_147 c4_150_148 c3_150_149 c4_150_149 c4_150_150 set community 0:1 route-map calculator permit 21770 match community c4_151_76 c4_151_77 c4_151_78 c4_151_79 c4_151_80 set community 0:1 route-map calculator permit 21771 match community c4_151_81 c4_151_82 c4_151_83 c4_151_84 c4_151_85 set community 0:1 route-map calculator permit 21772 match community c4_151_86 c4_151_87 c4_151_88 c4_151_89 c4_151_90 set community 0:1 route-map calculator permit 21773 match community c4_151_91 c4_151_92 c4_151_93 c4_151_94 c4_151_95 set community 0:1 route-map calculator permit 21774 match community c4_151_96 c4_151_97 c4_151_98 c4_151_99 c4_151_100 set community 0:1 route-map calculator permit 21775 match community c4_151_101 c4_151_102 c4_151_103 c4_151_104 c4_151_105 set community 0:1 route-map calculator permit 21776 match community c4_151_106 c4_151_107 c4_151_108 c4_151_109 c4_151_110 set community 0:1 route-map calculator permit 21777 match community c4_151_111 c4_151_112 c4_151_113 c4_151_114 c4_151_115 set community 0:1 route-map calculator permit 21778 match community c4_151_116 c4_151_117 c4_151_118 c4_151_119 c4_151_120 set community 0:1 route-map calculator permit 21779 match community c4_151_121 c4_151_122 c4_151_123 c4_151_124 c4_151_125 set community 0:1 route-map calculator permit 21780 match community c4_151_126 c4_151_127 c4_151_128 c4_151_129 c4_151_130 set community 0:1 route-map calculator permit 21781 match community c4_151_131 c4_151_132 c4_151_133 c4_151_134 c4_151_135 set community 0:1 route-map calculator permit 21782 match community c4_151_136 c4_151_137 c4_151_138 c4_151_139 c4_151_140 set community 0:1 route-map calculator permit 21783 match community c4_151_141 c4_151_142 c4_151_143 c4_151_144 c4_151_145 set community 0:1 route-map calculator permit 21784 match community c4_151_146 c4_151_147 c4_151_148 c4_151_149 c3_151_150 set community 0:1 route-map calculator permit 21785 match community c4_151_150 c4_151_151 c4_152_77 c4_152_78 c4_152_79 set community 0:1 route-map calculator permit 21786 match community c4_152_80 c4_152_81 c4_152_82 c4_152_83 c4_152_84 set community 0:1 route-map calculator permit 21787 match community c4_152_85 c4_152_86 c4_152_87 c4_152_88 c4_152_89 set community 0:1 route-map calculator permit 21788 match community c4_152_90 c4_152_91 c4_152_92 c4_152_93 c4_152_94 set community 0:1 route-map calculator permit 21789 match community c4_152_95 c4_152_96 c4_152_97 c4_152_98 c4_152_99 set community 0:1 route-map calculator permit 21790 match community c4_152_100 c4_152_101 c4_152_102 c4_152_103 c4_152_104 set community 0:1 route-map calculator permit 21791 match community c4_152_105 c4_152_106 c4_152_107 c4_152_108 c4_152_109 set community 0:1 route-map calculator permit 21792 match community c4_152_110 c4_152_111 c4_152_112 c4_152_113 c4_152_114 set community 0:1 route-map calculator permit 21793 match community c4_152_115 c4_152_116 c4_152_117 c4_152_118 c4_152_119 set community 0:1 route-map calculator permit 21794 match community c4_152_120 c4_152_121 c4_152_122 c4_152_123 c4_152_124 set community 0:1 route-map calculator permit 21795 match community c4_152_125 c4_152_126 c4_152_127 c4_152_128 c4_152_129 set community 0:1 route-map calculator permit 21796 match community c4_152_130 c4_152_131 c4_152_132 c4_152_133 c4_152_134 set community 0:1 route-map calculator permit 21797 match community c4_152_135 c4_152_136 c4_152_137 c4_152_138 c4_152_139 set community 0:1 route-map calculator permit 21798 match community c4_152_140 c4_152_141 c4_152_142 c4_152_143 c4_152_144 set community 0:1 route-map calculator permit 21799 match community c4_152_145 c4_152_146 c4_152_147 c4_152_148 c4_152_149 set community 0:1 route-map calculator permit 21800 match community c4_152_150 c3_152_151 c4_152_151 c4_152_152 c4_153_77 set community 0:1 route-map calculator permit 21801 match community c4_153_78 c4_153_79 c4_153_80 c4_153_81 c4_153_82 set community 0:1 route-map calculator permit 21802 match community c4_153_83 c4_153_84 c4_153_85 c4_153_86 c4_153_87 set community 0:1 route-map calculator permit 21803 match community c4_153_88 c4_153_89 c4_153_90 c4_153_91 c4_153_92 set community 0:1 route-map calculator permit 21804 match community c4_153_93 c4_153_94 c4_153_95 c4_153_96 c4_153_97 set community 0:1 route-map calculator permit 21805 match community c4_153_98 c4_153_99 c4_153_100 c4_153_101 c4_153_102 set community 0:1 route-map calculator permit 21806 match community c4_153_103 c4_153_104 c4_153_105 c4_153_106 c4_153_107 set community 0:1 route-map calculator permit 21807 match community c4_153_108 c4_153_109 c4_153_110 c4_153_111 c4_153_112 set community 0:1 route-map calculator permit 21808 match community c4_153_113 c4_153_114 c4_153_115 c4_153_116 c4_153_117 set community 0:1 route-map calculator permit 21809 match community c4_153_118 c4_153_119 c4_153_120 c4_153_121 c4_153_122 set community 0:1 route-map calculator permit 21810 match community c4_153_123 c4_153_124 c4_153_125 c4_153_126 c4_153_127 set community 0:1 route-map calculator permit 21811 match community c4_153_128 c4_153_129 c4_153_130 c4_153_131 c4_153_132 set community 0:1 route-map calculator permit 21812 match community c4_153_133 c4_153_134 c4_153_135 c4_153_136 c4_153_137 set community 0:1 route-map calculator permit 21813 match community c4_153_138 c4_153_139 c4_153_140 c4_153_141 c4_153_142 set community 0:1 route-map calculator permit 21814 match community c4_153_143 c4_153_144 c4_153_145 c4_153_146 c4_153_147 set community 0:1 route-map calculator permit 21815 match community c4_153_148 c4_153_149 c4_153_150 c4_153_151 c3_153_152 set community 0:1 route-map calculator permit 21816 match community c4_153_152 c4_153_153 c4_154_78 c4_154_79 c4_154_80 set community 0:1 route-map calculator permit 21817 match community c4_154_81 c4_154_82 c4_154_83 c4_154_84 c4_154_85 set community 0:1 route-map calculator permit 21818 match community c4_154_86 c4_154_87 c4_154_88 c4_154_89 c4_154_90 set community 0:1 route-map calculator permit 21819 match community c4_154_91 c4_154_92 c4_154_93 c4_154_94 c4_154_95 set community 0:1 route-map calculator permit 21820 match community c4_154_96 c4_154_97 c4_154_98 c4_154_99 c4_154_100 set community 0:1 route-map calculator permit 21821 match community c4_154_101 c4_154_102 c4_154_103 c4_154_104 c4_154_105 set community 0:1 route-map calculator permit 21822 match community c4_154_106 c4_154_107 c4_154_108 c4_154_109 c4_154_110 set community 0:1 route-map calculator permit 21823 match community c4_154_111 c4_154_112 c4_154_113 c4_154_114 c4_154_115 set community 0:1 route-map calculator permit 21824 match community c4_154_116 c4_154_117 c4_154_118 c4_154_119 c4_154_120 set community 0:1 route-map calculator permit 21825 match community c4_154_121 c4_154_122 c4_154_123 c4_154_124 c4_154_125 set community 0:1 route-map calculator permit 21826 match community c4_154_126 c4_154_127 c4_154_128 c4_154_129 c4_154_130 set community 0:1 route-map calculator permit 21827 match community c4_154_131 c4_154_132 c4_154_133 c4_154_134 c4_154_135 set community 0:1 route-map calculator permit 21828 match community c4_154_136 c4_154_137 c4_154_138 c4_154_139 c4_154_140 set community 0:1 route-map calculator permit 21829 match community c4_154_141 c4_154_142 c4_154_143 c4_154_144 c4_154_145 set community 0:1 route-map calculator permit 21830 match community c4_154_146 c4_154_147 c4_154_148 c4_154_149 c4_154_150 set community 0:1 route-map calculator permit 21831 match community c4_154_151 c4_154_152 c3_154_153 c4_154_153 c4_154_154 set community 0:1 route-map calculator permit 21832 match community c4_155_78 c4_155_79 c4_155_80 c4_155_81 c4_155_82 set community 0:1 route-map calculator permit 21833 match community c4_155_83 c4_155_84 c4_155_85 c4_155_86 c4_155_87 set community 0:1 route-map calculator permit 21834 match community c4_155_88 c4_155_89 c4_155_90 c4_155_91 c4_155_92 set community 0:1 route-map calculator permit 21835 match community c4_155_93 c4_155_94 c4_155_95 c4_155_96 c4_155_97 set community 0:1 route-map calculator permit 21836 match community c4_155_98 c4_155_99 c4_155_100 c4_155_101 c4_155_102 set community 0:1 route-map calculator permit 21837 match community c4_155_103 c4_155_104 c4_155_105 c4_155_106 c4_155_107 set community 0:1 route-map calculator permit 21838 match community c4_155_108 c4_155_109 c4_155_110 c4_155_111 c4_155_112 set community 0:1 route-map calculator permit 21839 match community c4_155_113 c4_155_114 c4_155_115 c4_155_116 c4_155_117 set community 0:1 route-map calculator permit 21840 match community c4_155_118 c4_155_119 c4_155_120 c4_155_121 c4_155_122 set community 0:1 route-map calculator permit 21841 match community c4_155_123 c4_155_124 c4_155_125 c4_155_126 c4_155_127 set community 0:1 route-map calculator permit 21842 match community c4_155_128 c4_155_129 c4_155_130 c4_155_131 c4_155_132 set community 0:1 route-map calculator permit 21843 match community c4_155_133 c4_155_134 c4_155_135 c4_155_136 c4_155_137 set community 0:1 route-map calculator permit 21844 match community c4_155_138 c4_155_139 c4_155_140 c4_155_141 c4_155_142 set community 0:1 route-map calculator permit 21845 match community c4_155_143 c4_155_144 c4_155_145 c4_155_146 c4_155_147 set community 0:1 route-map calculator permit 21846 match community c4_155_148 c4_155_149 c4_155_150 c4_155_151 c4_155_152 set community 0:1 route-map calculator permit 21847 match community c4_155_153 c3_155_154 c4_155_154 c4_155_155 c4_156_79 set community 0:1 route-map calculator permit 21848 match community c4_156_80 c4_156_81 c4_156_82 c4_156_83 c4_156_84 set community 0:1 route-map calculator permit 21849 match community c4_156_85 c4_156_86 c4_156_87 c4_156_88 c4_156_89 set community 0:1 route-map calculator permit 21850 match community c4_156_90 c4_156_91 c4_156_92 c4_156_93 c4_156_94 set community 0:1 route-map calculator permit 21851 match community c4_156_95 c4_156_96 c4_156_97 c4_156_98 c4_156_99 set community 0:1 route-map calculator permit 21852 match community c4_156_100 c4_156_101 c4_156_102 c4_156_103 c4_156_104 set community 0:1 route-map calculator permit 21853 match community c4_156_105 c4_156_106 c4_156_107 c4_156_108 c4_156_109 set community 0:1 route-map calculator permit 21854 match community c4_156_110 c4_156_111 c4_156_112 c4_156_113 c4_156_114 set community 0:1 route-map calculator permit 21855 match community c4_156_115 c4_156_116 c4_156_117 c4_156_118 c4_156_119 set community 0:1 route-map calculator permit 21856 match community c4_156_120 c4_156_121 c4_156_122 c4_156_123 c4_156_124 set community 0:1 route-map calculator permit 21857 match community c4_156_125 c4_156_126 c4_156_127 c4_156_128 c4_156_129 set community 0:1 route-map calculator permit 21858 match community c4_156_130 c4_156_131 c4_156_132 c4_156_133 c4_156_134 set community 0:1 route-map calculator permit 21859 match community c4_156_135 c4_156_136 c4_156_137 c4_156_138 c4_156_139 set community 0:1 route-map calculator permit 21860 match community c4_156_140 c4_156_141 c4_156_142 c4_156_143 c4_156_144 set community 0:1 route-map calculator permit 21861 match community c4_156_145 c4_156_146 c4_156_147 c4_156_148 c4_156_149 set community 0:1 route-map calculator permit 21862 match community c4_156_150 c4_156_151 c4_156_152 c4_156_153 c4_156_154 set community 0:1 route-map calculator permit 21863 match community c3_156_155 c4_156_155 c4_156_156 c4_157_79 c4_157_80 set community 0:1 route-map calculator permit 21864 match community c4_157_81 c4_157_82 c4_157_83 c4_157_84 c4_157_85 set community 0:1 route-map calculator permit 21865 match community c4_157_86 c4_157_87 c4_157_88 c4_157_89 c4_157_90 set community 0:1 route-map calculator permit 21866 match community c4_157_91 c4_157_92 c4_157_93 c4_157_94 c4_157_95 set community 0:1 route-map calculator permit 21867 match community c4_157_96 c4_157_97 c4_157_98 c4_157_99 c4_157_100 set community 0:1 route-map calculator permit 21868 match community c4_157_101 c4_157_102 c4_157_103 c4_157_104 c4_157_105 set community 0:1 route-map calculator permit 21869 match community c4_157_106 c4_157_107 c4_157_108 c4_157_109 c4_157_110 set community 0:1 route-map calculator permit 21870 match community c4_157_111 c4_157_112 c4_157_113 c4_157_114 c4_157_115 set community 0:1 route-map calculator permit 21871 match community c4_157_116 c4_157_117 c4_157_118 c4_157_119 c4_157_120 set community 0:1 route-map calculator permit 21872 match community c4_157_121 c4_157_122 c4_157_123 c4_157_124 c4_157_125 set community 0:1 route-map calculator permit 21873 match community c4_157_126 c4_157_127 c4_157_128 c4_157_129 c4_157_130 set community 0:1 route-map calculator permit 21874 match community c4_157_131 c4_157_132 c4_157_133 c4_157_134 c4_157_135 set community 0:1 route-map calculator permit 21875 match community c4_157_136 c4_157_137 c4_157_138 c4_157_139 c4_157_140 set community 0:1 route-map calculator permit 21876 match community c4_157_141 c4_157_142 c4_157_143 c4_157_144 c4_157_145 set community 0:1 route-map calculator permit 21877 match community c4_157_146 c4_157_147 c4_157_148 c4_157_149 c4_157_150 set community 0:1 route-map calculator permit 21878 match community c4_157_151 c4_157_152 c4_157_153 c4_157_154 c4_157_155 set community 0:1 route-map calculator permit 21879 match community c3_157_156 c4_157_156 c4_157_157 c4_158_80 c4_158_81 set community 0:1 route-map calculator permit 21880 match community c4_158_82 c4_158_83 c4_158_84 c4_158_85 c4_158_86 set community 0:1 route-map calculator permit 21881 match community c4_158_87 c4_158_88 c4_158_89 c4_158_90 c4_158_91 set community 0:1 route-map calculator permit 21882 match community c4_158_92 c4_158_93 c4_158_94 c4_158_95 c4_158_96 set community 0:1 route-map calculator permit 21883 match community c4_158_97 c4_158_98 c4_158_99 c4_158_100 c4_158_101 set community 0:1 route-map calculator permit 21884 match community c4_158_102 c4_158_103 c4_158_104 c4_158_105 c4_158_106 set community 0:1 route-map calculator permit 21885 match community c4_158_107 c4_158_108 c4_158_109 c4_158_110 c4_158_111 set community 0:1 route-map calculator permit 21886 match community c4_158_112 c4_158_113 c4_158_114 c4_158_115 c4_158_116 set community 0:1 route-map calculator permit 21887 match community c4_158_117 c4_158_118 c4_158_119 c4_158_120 c4_158_121 set community 0:1 route-map calculator permit 21888 match community c4_158_122 c4_158_123 c4_158_124 c4_158_125 c4_158_126 set community 0:1 route-map calculator permit 21889 match community c4_158_127 c4_158_128 c4_158_129 c4_158_130 c4_158_131 set community 0:1 route-map calculator permit 21890 match community c4_158_132 c4_158_133 c4_158_134 c4_158_135 c4_158_136 set community 0:1 route-map calculator permit 21891 match community c4_158_137 c4_158_138 c4_158_139 c4_158_140 c4_158_141 set community 0:1 route-map calculator permit 21892 match community c4_158_142 c4_158_143 c4_158_144 c4_158_145 c4_158_146 set community 0:1 route-map calculator permit 21893 match community c4_158_147 c4_158_148 c4_158_149 c4_158_150 c4_158_151 set community 0:1 route-map calculator permit 21894 match community c4_158_152 c4_158_153 c4_158_154 c4_158_155 c4_158_156 set community 0:1 route-map calculator permit 21895 match community c3_158_157 c4_158_157 c4_158_158 c4_159_80 c4_159_81 set community 0:1 route-map calculator permit 21896 match community c4_159_82 c4_159_83 c4_159_84 c4_159_85 c4_159_86 set community 0:1 route-map calculator permit 21897 match community c4_159_87 c4_159_88 c4_159_89 c4_159_90 c4_159_91 set community 0:1 route-map calculator permit 21898 match community c4_159_92 c4_159_93 c4_159_94 c4_159_95 c4_159_96 set community 0:1 route-map calculator permit 21899 match community c4_159_97 c4_159_98 c4_159_99 c4_159_100 c4_159_101 set community 0:1 route-map calculator permit 21900 match community c4_159_102 c4_159_103 c4_159_104 c4_159_105 c4_159_106 set community 0:1 route-map calculator permit 21901 match community c4_159_107 c4_159_108 c4_159_109 c4_159_110 c4_159_111 set community 0:1 route-map calculator permit 21902 match community c4_159_112 c4_159_113 c4_159_114 c4_159_115 c4_159_116 set community 0:1 route-map calculator permit 21903 match community c4_159_117 c4_159_118 c4_159_119 c4_159_120 c4_159_121 set community 0:1 route-map calculator permit 21904 match community c4_159_122 c4_159_123 c4_159_124 c4_159_125 c4_159_126 set community 0:1 route-map calculator permit 21905 match community c4_159_127 c4_159_128 c4_159_129 c4_159_130 c4_159_131 set community 0:1 route-map calculator permit 21906 match community c4_159_132 c4_159_133 c4_159_134 c4_159_135 c4_159_136 set community 0:1 route-map calculator permit 21907 match community c4_159_137 c4_159_138 c4_159_139 c4_159_140 c4_159_141 set community 0:1 route-map calculator permit 21908 match community c4_159_142 c4_159_143 c4_159_144 c4_159_145 c4_159_146 set community 0:1 route-map calculator permit 21909 match community c4_159_147 c4_159_148 c4_159_149 c4_159_150 c4_159_151 set community 0:1 route-map calculator permit 21910 match community c4_159_152 c4_159_153 c4_159_154 c4_159_155 c4_159_156 set community 0:1 route-map calculator permit 21911 match community c4_159_157 c3_159_158 c4_159_158 c4_159_159 c4_160_81 set community 0:1 route-map calculator permit 21912 match community c4_160_82 c4_160_83 c4_160_84 c4_160_85 c4_160_86 set community 0:1 route-map calculator permit 21913 match community c4_160_87 c4_160_88 c4_160_89 c4_160_90 c4_160_91 set community 0:1 route-map calculator permit 21914 match community c4_160_92 c4_160_93 c4_160_94 c4_160_95 c4_160_96 set community 0:1 route-map calculator permit 21915 match community c4_160_97 c4_160_98 c4_160_99 c4_160_100 c4_160_101 set community 0:1 route-map calculator permit 21916 match community c4_160_102 c4_160_103 c4_160_104 c4_160_105 c4_160_106 set community 0:1 route-map calculator permit 21917 match community c4_160_107 c4_160_108 c4_160_109 c4_160_110 c4_160_111 set community 0:1 route-map calculator permit 21918 match community c4_160_112 c4_160_113 c4_160_114 c4_160_115 c4_160_116 set community 0:1 route-map calculator permit 21919 match community c4_160_117 c4_160_118 c4_160_119 c4_160_120 c4_160_121 set community 0:1 route-map calculator permit 21920 match community c4_160_122 c4_160_123 c4_160_124 c4_160_125 c4_160_126 set community 0:1 route-map calculator permit 21921 match community c4_160_127 c4_160_128 c4_160_129 c4_160_130 c4_160_131 set community 0:1 route-map calculator permit 21922 match community c4_160_132 c4_160_133 c4_160_134 c4_160_135 c4_160_136 set community 0:1 route-map calculator permit 21923 match community c4_160_137 c4_160_138 c4_160_139 c4_160_140 c4_160_141 set community 0:1 route-map calculator permit 21924 match community c4_160_142 c4_160_143 c4_160_144 c4_160_145 c4_160_146 set community 0:1 route-map calculator permit 21925 match community c4_160_147 c4_160_148 c4_160_149 c4_160_150 c4_160_151 set community 0:1 route-map calculator permit 21926 match community c4_160_152 c4_160_153 c4_160_154 c4_160_155 c4_160_156 set community 0:1 route-map calculator permit 21927 match community c4_160_157 c4_160_158 c3_160_159 c4_160_159 c4_160_160 set community 0:1 route-map calculator permit 21928 match community c4_161_81 c4_161_82 c4_161_83 c4_161_84 c4_161_85 set community 0:1 route-map calculator permit 21929 match community c4_161_86 c4_161_87 c4_161_88 c4_161_89 c4_161_90 set community 0:1 route-map calculator permit 21930 match community c4_161_91 c4_161_92 c4_161_93 c4_161_94 c4_161_95 set community 0:1 route-map calculator permit 21931 match community c4_161_96 c4_161_97 c4_161_98 c4_161_99 c4_161_100 set community 0:1 route-map calculator permit 21932 match community c4_161_101 c4_161_102 c4_161_103 c4_161_104 c4_161_105 set community 0:1 route-map calculator permit 21933 match community c4_161_106 c4_161_107 c4_161_108 c4_161_109 c4_161_110 set community 0:1 route-map calculator permit 21934 match community c4_161_111 c4_161_112 c4_161_113 c4_161_114 c4_161_115 set community 0:1 route-map calculator permit 21935 match community c4_161_116 c4_161_117 c4_161_118 c4_161_119 c4_161_120 set community 0:1 route-map calculator permit 21936 match community c4_161_121 c4_161_122 c4_161_123 c4_161_124 c4_161_125 set community 0:1 route-map calculator permit 21937 match community c4_161_126 c4_161_127 c4_161_128 c4_161_129 c4_161_130 set community 0:1 route-map calculator permit 21938 match community c4_161_131 c4_161_132 c4_161_133 c4_161_134 c4_161_135 set community 0:1 route-map calculator permit 21939 match community c4_161_136 c4_161_137 c4_161_138 c4_161_139 c4_161_140 set community 0:1 route-map calculator permit 21940 match community c4_161_141 c4_161_142 c4_161_143 c4_161_144 c4_161_145 set community 0:1 route-map calculator permit 21941 match community c4_161_146 c4_161_147 c4_161_148 c4_161_149 c4_161_150 set community 0:1 route-map calculator permit 21942 match community c4_161_151 c4_161_152 c4_161_153 c4_161_154 c4_161_155 set community 0:1 route-map calculator permit 21943 match community c4_161_156 c4_161_157 c4_161_158 c4_161_159 c3_161_160 set community 0:1 route-map calculator permit 21944 match community c4_161_160 c4_161_161 c4_162_82 c4_162_83 c4_162_84 set community 0:1 route-map calculator permit 21945 match community c4_162_85 c4_162_86 c4_162_87 c4_162_88 c4_162_89 set community 0:1 route-map calculator permit 21946 match community c4_162_90 c4_162_91 c4_162_92 c4_162_93 c4_162_94 set community 0:1 route-map calculator permit 21947 match community c4_162_95 c4_162_96 c4_162_97 c4_162_98 c4_162_99 set community 0:1 route-map calculator permit 21948 match community c4_162_100 c4_162_101 c4_162_102 c4_162_103 c4_162_104 set community 0:1 route-map calculator permit 21949 match community c4_162_105 c4_162_106 c4_162_107 c4_162_108 c4_162_109 set community 0:1 route-map calculator permit 21950 match community c4_162_110 c4_162_111 c4_162_112 c4_162_113 c4_162_114 set community 0:1 route-map calculator permit 21951 match community c4_162_115 c4_162_116 c4_162_117 c4_162_118 c4_162_119 set community 0:1 route-map calculator permit 21952 match community c4_162_120 c4_162_121 c4_162_122 c4_162_123 c4_162_124 set community 0:1 route-map calculator permit 21953 match community c4_162_125 c4_162_126 c4_162_127 c4_162_128 c4_162_129 set community 0:1 route-map calculator permit 21954 match community c4_162_130 c4_162_131 c4_162_132 c4_162_133 c4_162_134 set community 0:1 route-map calculator permit 21955 match community c4_162_135 c4_162_136 c4_162_137 c4_162_138 c4_162_139 set community 0:1 route-map calculator permit 21956 match community c4_162_140 c4_162_141 c4_162_142 c4_162_143 c4_162_144 set community 0:1 route-map calculator permit 21957 match community c4_162_145 c4_162_146 c4_162_147 c4_162_148 c4_162_149 set community 0:1 route-map calculator permit 21958 match community c4_162_150 c4_162_151 c4_162_152 c4_162_153 c4_162_154 set community 0:1 route-map calculator permit 21959 match community c4_162_155 c4_162_156 c4_162_157 c4_162_158 c4_162_159 set community 0:1 route-map calculator permit 21960 match community c4_162_160 c3_162_161 c4_162_161 c4_162_162 c4_163_82 set community 0:1 route-map calculator permit 21961 match community c4_163_83 c4_163_84 c4_163_85 c4_163_86 c4_163_87 set community 0:1 route-map calculator permit 21962 match community c4_163_88 c4_163_89 c4_163_90 c4_163_91 c4_163_92 set community 0:1 route-map calculator permit 21963 match community c4_163_93 c4_163_94 c4_163_95 c4_163_96 c4_163_97 set community 0:1 route-map calculator permit 21964 match community c4_163_98 c4_163_99 c4_163_100 c4_163_101 c4_163_102 set community 0:1 route-map calculator permit 21965 match community c4_163_103 c4_163_104 c4_163_105 c4_163_106 c4_163_107 set community 0:1 route-map calculator permit 21966 match community c4_163_108 c4_163_109 c4_163_110 c4_163_111 c4_163_112 set community 0:1 route-map calculator permit 21967 match community c4_163_113 c4_163_114 c4_163_115 c4_163_116 c4_163_117 set community 0:1 route-map calculator permit 21968 match community c4_163_118 c4_163_119 c4_163_120 c4_163_121 c4_163_122 set community 0:1 route-map calculator permit 21969 match community c4_163_123 c4_163_124 c4_163_125 c4_163_126 c4_163_127 set community 0:1 route-map calculator permit 21970 match community c4_163_128 c4_163_129 c4_163_130 c4_163_131 c4_163_132 set community 0:1 route-map calculator permit 21971 match community c4_163_133 c4_163_134 c4_163_135 c4_163_136 c4_163_137 set community 0:1 route-map calculator permit 21972 match community c4_163_138 c4_163_139 c4_163_140 c4_163_141 c4_163_142 set community 0:1 route-map calculator permit 21973 match community c4_163_143 c4_163_144 c4_163_145 c4_163_146 c4_163_147 set community 0:1 route-map calculator permit 21974 match community c4_163_148 c4_163_149 c4_163_150 c4_163_151 c4_163_152 set community 0:1 route-map calculator permit 21975 match community c4_163_153 c4_163_154 c4_163_155 c4_163_156 c4_163_157 set community 0:1 route-map calculator permit 21976 match community c4_163_158 c4_163_159 c4_163_160 c4_163_161 c3_163_162 set community 0:1 route-map calculator permit 21977 match community c4_163_162 c4_163_163 c4_164_83 c4_164_84 c4_164_85 set community 0:1 route-map calculator permit 21978 match community c4_164_86 c4_164_87 c4_164_88 c4_164_89 c4_164_90 set community 0:1 route-map calculator permit 21979 match community c4_164_91 c4_164_92 c4_164_93 c4_164_94 c4_164_95 set community 0:1 route-map calculator permit 21980 match community c4_164_96 c4_164_97 c4_164_98 c4_164_99 c4_164_100 set community 0:1 route-map calculator permit 21981 match community c4_164_101 c4_164_102 c4_164_103 c4_164_104 c4_164_105 set community 0:1 route-map calculator permit 21982 match community c4_164_106 c4_164_107 c4_164_108 c4_164_109 c4_164_110 set community 0:1 route-map calculator permit 21983 match community c4_164_111 c4_164_112 c4_164_113 c4_164_114 c4_164_115 set community 0:1 route-map calculator permit 21984 match community c4_164_116 c4_164_117 c4_164_118 c4_164_119 c4_164_120 set community 0:1 route-map calculator permit 21985 match community c4_164_121 c4_164_122 c4_164_123 c4_164_124 c4_164_125 set community 0:1 route-map calculator permit 21986 match community c4_164_126 c4_164_127 c4_164_128 c4_164_129 c4_164_130 set community 0:1 route-map calculator permit 21987 match community c4_164_131 c4_164_132 c4_164_133 c4_164_134 c4_164_135 set community 0:1 route-map calculator permit 21988 match community c4_164_136 c4_164_137 c4_164_138 c4_164_139 c4_164_140 set community 0:1 route-map calculator permit 21989 match community c4_164_141 c4_164_142 c4_164_143 c4_164_144 c4_164_145 set community 0:1 route-map calculator permit 21990 match community c4_164_146 c4_164_147 c4_164_148 c4_164_149 c4_164_150 set community 0:1 route-map calculator permit 21991 match community c4_164_151 c4_164_152 c4_164_153 c4_164_154 c4_164_155 set community 0:1 route-map calculator permit 21992 match community c4_164_156 c4_164_157 c4_164_158 c4_164_159 c4_164_160 set community 0:1 route-map calculator permit 21993 match community c4_164_161 c4_164_162 c3_164_163 c4_164_163 c4_164_164 set community 0:1 route-map calculator permit 21994 match community c4_165_83 c4_165_84 c4_165_85 c4_165_86 c4_165_87 set community 0:1 route-map calculator permit 21995 match community c4_165_88 c4_165_89 c4_165_90 c4_165_91 c4_165_92 set community 0:1 route-map calculator permit 21996 match community c4_165_93 c4_165_94 c4_165_95 c4_165_96 c4_165_97 set community 0:1 route-map calculator permit 21997 match community c4_165_98 c4_165_99 c4_165_100 c4_165_101 c4_165_102 set community 0:1 route-map calculator permit 21998 match community c4_165_103 c4_165_104 c4_165_105 c4_165_106 c4_165_107 set community 0:1 route-map calculator permit 21999 match community c4_165_108 c4_165_109 c4_165_110 c4_165_111 c4_165_112 set community 0:1 route-map calculator permit 22000 match community c4_165_113 c4_165_114 c4_165_115 c4_165_116 c4_165_117 set community 0:1 route-map calculator permit 22001 match community c4_165_118 c4_165_119 c4_165_120 c4_165_121 c4_165_122 set community 0:1 route-map calculator permit 22002 match community c4_165_123 c4_165_124 c4_165_125 c4_165_126 c4_165_127 set community 0:1 route-map calculator permit 22003 match community c4_165_128 c4_165_129 c4_165_130 c4_165_131 c4_165_132 set community 0:1 route-map calculator permit 22004 match community c4_165_133 c4_165_134 c4_165_135 c4_165_136 c4_165_137 set community 0:1 route-map calculator permit 22005 match community c4_165_138 c4_165_139 c4_165_140 c4_165_141 c4_165_142 set community 0:1 route-map calculator permit 22006 match community c4_165_143 c4_165_144 c4_165_145 c4_165_146 c4_165_147 set community 0:1 route-map calculator permit 22007 match community c4_165_148 c4_165_149 c4_165_150 c4_165_151 c4_165_152 set community 0:1 route-map calculator permit 22008 match community c4_165_153 c4_165_154 c4_165_155 c4_165_156 c4_165_157 set community 0:1 route-map calculator permit 22009 match community c4_165_158 c4_165_159 c4_165_160 c4_165_161 c4_165_162 set community 0:1 route-map calculator permit 22010 match community c4_165_163 c3_165_164 c4_165_164 c4_165_165 c4_166_84 set community 0:1 route-map calculator permit 22011 match community c4_166_85 c4_166_86 c4_166_87 c4_166_88 c4_166_89 set community 0:1 route-map calculator permit 22012 match community c4_166_90 c4_166_91 c4_166_92 c4_166_93 c4_166_94 set community 0:1 route-map calculator permit 22013 match community c4_166_95 c4_166_96 c4_166_97 c4_166_98 c4_166_99 set community 0:1 route-map calculator permit 22014 match community c4_166_100 c4_166_101 c4_166_102 c4_166_103 c4_166_104 set community 0:1 route-map calculator permit 22015 match community c4_166_105 c4_166_106 c4_166_107 c4_166_108 c4_166_109 set community 0:1 route-map calculator permit 22016 match community c4_166_110 c4_166_111 c4_166_112 c4_166_113 c4_166_114 set community 0:1 route-map calculator permit 22017 match community c4_166_115 c4_166_116 c4_166_117 c4_166_118 c4_166_119 set community 0:1 route-map calculator permit 22018 match community c4_166_120 c4_166_121 c4_166_122 c4_166_123 c4_166_124 set community 0:1 route-map calculator permit 22019 match community c4_166_125 c4_166_126 c4_166_127 c4_166_128 c4_166_129 set community 0:1 route-map calculator permit 22020 match community c4_166_130 c4_166_131 c4_166_132 c4_166_133 c4_166_134 set community 0:1 route-map calculator permit 22021 match community c4_166_135 c4_166_136 c4_166_137 c4_166_138 c4_166_139 set community 0:1 route-map calculator permit 22022 match community c4_166_140 c4_166_141 c4_166_142 c4_166_143 c4_166_144 set community 0:1 route-map calculator permit 22023 match community c4_166_145 c4_166_146 c4_166_147 c4_166_148 c4_166_149 set community 0:1 route-map calculator permit 22024 match community c4_166_150 c4_166_151 c4_166_152 c4_166_153 c4_166_154 set community 0:1 route-map calculator permit 22025 match community c4_166_155 c4_166_156 c4_166_157 c4_166_158 c4_166_159 set community 0:1 route-map calculator permit 22026 match community c4_166_160 c4_166_161 c4_166_162 c4_166_163 c4_166_164 set community 0:1 route-map calculator permit 22027 match community c3_166_165 c4_166_165 c4_166_166 c4_167_84 c4_167_85 set community 0:1 route-map calculator permit 22028 match community c4_167_86 c4_167_87 c4_167_88 c4_167_89 c4_167_90 set community 0:1 route-map calculator permit 22029 match community c4_167_91 c4_167_92 c4_167_93 c4_167_94 c4_167_95 set community 0:1 route-map calculator permit 22030 match community c4_167_96 c4_167_97 c4_167_98 c4_167_99 c4_167_100 set community 0:1 route-map calculator permit 22031 match community c4_167_101 c4_167_102 c4_167_103 c4_167_104 c4_167_105 set community 0:1 route-map calculator permit 22032 match community c4_167_106 c4_167_107 c4_167_108 c4_167_109 c4_167_110 set community 0:1 route-map calculator permit 22033 match community c4_167_111 c4_167_112 c4_167_113 c4_167_114 c4_167_115 set community 0:1 route-map calculator permit 22034 match community c4_167_116 c4_167_117 c4_167_118 c4_167_119 c4_167_120 set community 0:1 route-map calculator permit 22035 match community c4_167_121 c4_167_122 c4_167_123 c4_167_124 c4_167_125 set community 0:1 route-map calculator permit 22036 match community c4_167_126 c4_167_127 c4_167_128 c4_167_129 c4_167_130 set community 0:1 route-map calculator permit 22037 match community c4_167_131 c4_167_132 c4_167_133 c4_167_134 c4_167_135 set community 0:1 route-map calculator permit 22038 match community c4_167_136 c4_167_137 c4_167_138 c4_167_139 c4_167_140 set community 0:1 route-map calculator permit 22039 match community c4_167_141 c4_167_142 c4_167_143 c4_167_144 c4_167_145 set community 0:1 route-map calculator permit 22040 match community c4_167_146 c4_167_147 c4_167_148 c4_167_149 c4_167_150 set community 0:1 route-map calculator permit 22041 match community c4_167_151 c4_167_152 c4_167_153 c4_167_154 c4_167_155 set community 0:1 route-map calculator permit 22042 match community c4_167_156 c4_167_157 c4_167_158 c4_167_159 c4_167_160 set community 0:1 route-map calculator permit 22043 match community c4_167_161 c4_167_162 c4_167_163 c4_167_164 c4_167_165 set community 0:1 route-map calculator permit 22044 match community c3_167_166 c4_167_166 c4_167_167 c4_168_85 c4_168_86 set community 0:1 route-map calculator permit 22045 match community c4_168_87 c4_168_88 c4_168_89 c4_168_90 c4_168_91 set community 0:1 route-map calculator permit 22046 match community c4_168_92 c4_168_93 c4_168_94 c4_168_95 c4_168_96 set community 0:1 route-map calculator permit 22047 match community c4_168_97 c4_168_98 c4_168_99 c4_168_100 c4_168_101 set community 0:1 route-map calculator permit 22048 match community c4_168_102 c4_168_103 c4_168_104 c4_168_105 c4_168_106 set community 0:1 route-map calculator permit 22049 match community c4_168_107 c4_168_108 c4_168_109 c4_168_110 c4_168_111 set community 0:1 route-map calculator permit 22050 match community c4_168_112 c4_168_113 c4_168_114 c4_168_115 c4_168_116 set community 0:1 route-map calculator permit 22051 match community c4_168_117 c4_168_118 c4_168_119 c4_168_120 c4_168_121 set community 0:1 route-map calculator permit 22052 match community c4_168_122 c4_168_123 c4_168_124 c4_168_125 c4_168_126 set community 0:1 route-map calculator permit 22053 match community c4_168_127 c4_168_128 c4_168_129 c4_168_130 c4_168_131 set community 0:1 route-map calculator permit 22054 match community c4_168_132 c4_168_133 c4_168_134 c4_168_135 c4_168_136 set community 0:1 route-map calculator permit 22055 match community c4_168_137 c4_168_138 c4_168_139 c4_168_140 c4_168_141 set community 0:1 route-map calculator permit 22056 match community c4_168_142 c4_168_143 c4_168_144 c4_168_145 c4_168_146 set community 0:1 route-map calculator permit 22057 match community c4_168_147 c4_168_148 c4_168_149 c4_168_150 c4_168_151 set community 0:1 route-map calculator permit 22058 match community c4_168_152 c4_168_153 c4_168_154 c4_168_155 c4_168_156 set community 0:1 route-map calculator permit 22059 match community c4_168_157 c4_168_158 c4_168_159 c4_168_160 c4_168_161 set community 0:1 route-map calculator permit 22060 match community c4_168_162 c4_168_163 c4_168_164 c4_168_165 c4_168_166 set community 0:1 route-map calculator permit 22061 match community c3_168_167 c4_168_167 c4_168_168 c4_169_85 c4_169_86 set community 0:1 route-map calculator permit 22062 match community c4_169_87 c4_169_88 c4_169_89 c4_169_90 c4_169_91 set community 0:1 route-map calculator permit 22063 match community c4_169_92 c4_169_93 c4_169_94 c4_169_95 c4_169_96 set community 0:1 route-map calculator permit 22064 match community c4_169_97 c4_169_98 c4_169_99 c4_169_100 c4_169_101 set community 0:1 route-map calculator permit 22065 match community c4_169_102 c4_169_103 c4_169_104 c4_169_105 c4_169_106 set community 0:1 route-map calculator permit 22066 match community c4_169_107 c4_169_108 c4_169_109 c4_169_110 c4_169_111 set community 0:1 route-map calculator permit 22067 match community c4_169_112 c4_169_113 c4_169_114 c4_169_115 c4_169_116 set community 0:1 route-map calculator permit 22068 match community c4_169_117 c4_169_118 c4_169_119 c4_169_120 c4_169_121 set community 0:1 route-map calculator permit 22069 match community c4_169_122 c4_169_123 c4_169_124 c4_169_125 c4_169_126 set community 0:1 route-map calculator permit 22070 match community c4_169_127 c4_169_128 c4_169_129 c4_169_130 c4_169_131 set community 0:1 route-map calculator permit 22071 match community c4_169_132 c4_169_133 c4_169_134 c4_169_135 c4_169_136 set community 0:1 route-map calculator permit 22072 match community c4_169_137 c4_169_138 c4_169_139 c4_169_140 c4_169_141 set community 0:1 route-map calculator permit 22073 match community c4_169_142 c4_169_143 c4_169_144 c4_169_145 c4_169_146 set community 0:1 route-map calculator permit 22074 match community c4_169_147 c4_169_148 c4_169_149 c4_169_150 c4_169_151 set community 0:1 route-map calculator permit 22075 match community c4_169_152 c4_169_153 c4_169_154 c4_169_155 c4_169_156 set community 0:1 route-map calculator permit 22076 match community c4_169_157 c4_169_158 c4_169_159 c4_169_160 c4_169_161 set community 0:1 route-map calculator permit 22077 match community c4_169_162 c4_169_163 c4_169_164 c4_169_165 c4_169_166 set community 0:1 route-map calculator permit 22078 match community c4_169_167 c3_169_168 c4_169_168 c4_169_169 c4_170_86 set community 0:1 route-map calculator permit 22079 match community c4_170_87 c4_170_88 c4_170_89 c4_170_90 c4_170_91 set community 0:1 route-map calculator permit 22080 match community c4_170_92 c4_170_93 c4_170_94 c4_170_95 c4_170_96 set community 0:1 route-map calculator permit 22081 match community c4_170_97 c4_170_98 c4_170_99 c4_170_100 c4_170_101 set community 0:1 route-map calculator permit 22082 match community c4_170_102 c4_170_103 c4_170_104 c4_170_105 c4_170_106 set community 0:1 route-map calculator permit 22083 match community c4_170_107 c4_170_108 c4_170_109 c4_170_110 c4_170_111 set community 0:1 route-map calculator permit 22084 match community c4_170_112 c4_170_113 c4_170_114 c4_170_115 c4_170_116 set community 0:1 route-map calculator permit 22085 match community c4_170_117 c4_170_118 c4_170_119 c4_170_120 c4_170_121 set community 0:1 route-map calculator permit 22086 match community c4_170_122 c4_170_123 c4_170_124 c4_170_125 c4_170_126 set community 0:1 route-map calculator permit 22087 match community c4_170_127 c4_170_128 c4_170_129 c4_170_130 c4_170_131 set community 0:1 route-map calculator permit 22088 match community c4_170_132 c4_170_133 c4_170_134 c4_170_135 c4_170_136 set community 0:1 route-map calculator permit 22089 match community c4_170_137 c4_170_138 c4_170_139 c4_170_140 c4_170_141 set community 0:1 route-map calculator permit 22090 match community c4_170_142 c4_170_143 c4_170_144 c4_170_145 c4_170_146 set community 0:1 route-map calculator permit 22091 match community c4_170_147 c4_170_148 c4_170_149 c4_170_150 c4_170_151 set community 0:1 route-map calculator permit 22092 match community c4_170_152 c4_170_153 c4_170_154 c4_170_155 c4_170_156 set community 0:1 route-map calculator permit 22093 match community c4_170_157 c4_170_158 c4_170_159 c4_170_160 c4_170_161 set community 0:1 route-map calculator permit 22094 match community c4_170_162 c4_170_163 c4_170_164 c4_170_165 c4_170_166 set community 0:1 route-map calculator permit 22095 match community c4_170_167 c4_170_168 c3_170_169 c4_170_169 c4_170_170 set community 0:1 route-map calculator permit 22096 match community c4_171_86 c4_171_87 c4_171_88 c4_171_89 c4_171_90 set community 0:1 route-map calculator permit 22097 match community c4_171_91 c4_171_92 c4_171_93 c4_171_94 c4_171_95 set community 0:1 route-map calculator permit 22098 match community c4_171_96 c4_171_97 c4_171_98 c4_171_99 c4_171_100 set community 0:1 route-map calculator permit 22099 match community c4_171_101 c4_171_102 c4_171_103 c4_171_104 c4_171_105 set community 0:1 route-map calculator permit 22100 match community c4_171_106 c4_171_107 c4_171_108 c4_171_109 c4_171_110 set community 0:1 route-map calculator permit 22101 match community c4_171_111 c4_171_112 c4_171_113 c4_171_114 c4_171_115 set community 0:1 route-map calculator permit 22102 match community c4_171_116 c4_171_117 c4_171_118 c4_171_119 c4_171_120 set community 0:1 route-map calculator permit 22103 match community c4_171_121 c4_171_122 c4_171_123 c4_171_124 c4_171_125 set community 0:1 route-map calculator permit 22104 match community c4_171_126 c4_171_127 c4_171_128 c4_171_129 c4_171_130 set community 0:1 route-map calculator permit 22105 match community c4_171_131 c4_171_132 c4_171_133 c4_171_134 c4_171_135 set community 0:1 route-map calculator permit 22106 match community c4_171_136 c4_171_137 c4_171_138 c4_171_139 c4_171_140 set community 0:1 route-map calculator permit 22107 match community c4_171_141 c4_171_142 c4_171_143 c4_171_144 c4_171_145 set community 0:1 route-map calculator permit 22108 match community c4_171_146 c4_171_147 c4_171_148 c4_171_149 c4_171_150 set community 0:1 route-map calculator permit 22109 match community c4_171_151 c4_171_152 c4_171_153 c4_171_154 c4_171_155 set community 0:1 route-map calculator permit 22110 match community c4_171_156 c4_171_157 c4_171_158 c4_171_159 c4_171_160 set community 0:1 route-map calculator permit 22111 match community c4_171_161 c4_171_162 c4_171_163 c4_171_164 c4_171_165 set community 0:1 route-map calculator permit 22112 match community c4_171_166 c4_171_167 c4_171_168 c4_171_169 c3_171_170 set community 0:1 route-map calculator permit 22113 match community c4_171_170 c4_171_171 c4_172_87 c4_172_88 c4_172_89 set community 0:1 route-map calculator permit 22114 match community c4_172_90 c4_172_91 c4_172_92 c4_172_93 c4_172_94 set community 0:1 route-map calculator permit 22115 match community c4_172_95 c4_172_96 c4_172_97 c4_172_98 c4_172_99 set community 0:1 route-map calculator permit 22116 match community c4_172_100 c4_172_101 c4_172_102 c4_172_103 c4_172_104 set community 0:1 route-map calculator permit 22117 match community c4_172_105 c4_172_106 c4_172_107 c4_172_108 c4_172_109 set community 0:1 route-map calculator permit 22118 match community c4_172_110 c4_172_111 c4_172_112 c4_172_113 c4_172_114 set community 0:1 route-map calculator permit 22119 match community c4_172_115 c4_172_116 c4_172_117 c4_172_118 c4_172_119 set community 0:1 route-map calculator permit 22120 match community c4_172_120 c4_172_121 c4_172_122 c4_172_123 c4_172_124 set community 0:1 route-map calculator permit 22121 match community c4_172_125 c4_172_126 c4_172_127 c4_172_128 c4_172_129 set community 0:1 route-map calculator permit 22122 match community c4_172_130 c4_172_131 c4_172_132 c4_172_133 c4_172_134 set community 0:1 route-map calculator permit 22123 match community c4_172_135 c4_172_136 c4_172_137 c4_172_138 c4_172_139 set community 0:1 route-map calculator permit 22124 match community c4_172_140 c4_172_141 c4_172_142 c4_172_143 c4_172_144 set community 0:1 route-map calculator permit 22125 match community c4_172_145 c4_172_146 c4_172_147 c4_172_148 c4_172_149 set community 0:1 route-map calculator permit 22126 match community c4_172_150 c4_172_151 c4_172_152 c4_172_153 c4_172_154 set community 0:1 route-map calculator permit 22127 match community c4_172_155 c4_172_156 c4_172_157 c4_172_158 c4_172_159 set community 0:1 route-map calculator permit 22128 match community c4_172_160 c4_172_161 c4_172_162 c4_172_163 c4_172_164 set community 0:1 route-map calculator permit 22129 match community c4_172_165 c4_172_166 c4_172_167 c4_172_168 c4_172_169 set community 0:1 route-map calculator permit 22130 match community c4_172_170 c3_172_171 c4_172_171 c4_172_172 c4_173_87 set community 0:1 route-map calculator permit 22131 match community c4_173_88 c4_173_89 c4_173_90 c4_173_91 c4_173_92 set community 0:1 route-map calculator permit 22132 match community c4_173_93 c4_173_94 c4_173_95 c4_173_96 c4_173_97 set community 0:1 route-map calculator permit 22133 match community c4_173_98 c4_173_99 c4_173_100 c4_173_101 c4_173_102 set community 0:1 route-map calculator permit 22134 match community c4_173_103 c4_173_104 c4_173_105 c4_173_106 c4_173_107 set community 0:1 route-map calculator permit 22135 match community c4_173_108 c4_173_109 c4_173_110 c4_173_111 c4_173_112 set community 0:1 route-map calculator permit 22136 match community c4_173_113 c4_173_114 c4_173_115 c4_173_116 c4_173_117 set community 0:1 route-map calculator permit 22137 match community c4_173_118 c4_173_119 c4_173_120 c4_173_121 c4_173_122 set community 0:1 route-map calculator permit 22138 match community c4_173_123 c4_173_124 c4_173_125 c4_173_126 c4_173_127 set community 0:1 route-map calculator permit 22139 match community c4_173_128 c4_173_129 c4_173_130 c4_173_131 c4_173_132 set community 0:1 route-map calculator permit 22140 match community c4_173_133 c4_173_134 c4_173_135 c4_173_136 c4_173_137 set community 0:1 route-map calculator permit 22141 match community c4_173_138 c4_173_139 c4_173_140 c4_173_141 c4_173_142 set community 0:1 route-map calculator permit 22142 match community c4_173_143 c4_173_144 c4_173_145 c4_173_146 c4_173_147 set community 0:1 route-map calculator permit 22143 match community c4_173_148 c4_173_149 c4_173_150 c4_173_151 c4_173_152 set community 0:1 route-map calculator permit 22144 match community c4_173_153 c4_173_154 c4_173_155 c4_173_156 c4_173_157 set community 0:1 route-map calculator permit 22145 match community c4_173_158 c4_173_159 c4_173_160 c4_173_161 c4_173_162 set community 0:1 route-map calculator permit 22146 match community c4_173_163 c4_173_164 c4_173_165 c4_173_166 c4_173_167 set community 0:1 route-map calculator permit 22147 match community c4_173_168 c4_173_169 c4_173_170 c4_173_171 c3_173_172 set community 0:1 route-map calculator permit 22148 match community c4_173_172 c4_173_173 c4_174_88 c4_174_89 c4_174_90 set community 0:1 route-map calculator permit 22149 match community c4_174_91 c4_174_92 c4_174_93 c4_174_94 c4_174_95 set community 0:1 route-map calculator permit 22150 match community c4_174_96 c4_174_97 c4_174_98 c4_174_99 c4_174_100 set community 0:1 route-map calculator permit 22151 match community c4_174_101 c4_174_102 c4_174_103 c4_174_104 c4_174_105 set community 0:1 route-map calculator permit 22152 match community c4_174_106 c4_174_107 c4_174_108 c4_174_109 c4_174_110 set community 0:1 route-map calculator permit 22153 match community c4_174_111 c4_174_112 c4_174_113 c4_174_114 c4_174_115 set community 0:1 route-map calculator permit 22154 match community c4_174_116 c4_174_117 c4_174_118 c4_174_119 c4_174_120 set community 0:1 route-map calculator permit 22155 match community c4_174_121 c4_174_122 c4_174_123 c4_174_124 c4_174_125 set community 0:1 route-map calculator permit 22156 match community c4_174_126 c4_174_127 c4_174_128 c4_174_129 c4_174_130 set community 0:1 route-map calculator permit 22157 match community c4_174_131 c4_174_132 c4_174_133 c4_174_134 c4_174_135 set community 0:1 route-map calculator permit 22158 match community c4_174_136 c4_174_137 c4_174_138 c4_174_139 c4_174_140 set community 0:1 route-map calculator permit 22159 match community c4_174_141 c4_174_142 c4_174_143 c4_174_144 c4_174_145 set community 0:1 route-map calculator permit 22160 match community c4_174_146 c4_174_147 c4_174_148 c4_174_149 c4_174_150 set community 0:1 route-map calculator permit 22161 match community c4_174_151 c4_174_152 c4_174_153 c4_174_154 c4_174_155 set community 0:1 route-map calculator permit 22162 match community c4_174_156 c4_174_157 c4_174_158 c4_174_159 c4_174_160 set community 0:1 route-map calculator permit 22163 match community c4_174_161 c4_174_162 c4_174_163 c4_174_164 c4_174_165 set community 0:1 route-map calculator permit 22164 match community c4_174_166 c4_174_167 c4_174_168 c4_174_169 c4_174_170 set community 0:1 route-map calculator permit 22165 match community c4_174_171 c4_174_172 c3_174_173 c4_174_173 c4_174_174 set community 0:1 route-map calculator permit 22166 match community c4_175_88 c4_175_89 c4_175_90 c4_175_91 c4_175_92 set community 0:1 route-map calculator permit 22167 match community c4_175_93 c4_175_94 c4_175_95 c4_175_96 c4_175_97 set community 0:1 route-map calculator permit 22168 match community c4_175_98 c4_175_99 c4_175_100 c4_175_101 c4_175_102 set community 0:1 route-map calculator permit 22169 match community c4_175_103 c4_175_104 c4_175_105 c4_175_106 c4_175_107 set community 0:1 route-map calculator permit 22170 match community c4_175_108 c4_175_109 c4_175_110 c4_175_111 c4_175_112 set community 0:1 route-map calculator permit 22171 match community c4_175_113 c4_175_114 c4_175_115 c4_175_116 c4_175_117 set community 0:1 route-map calculator permit 22172 match community c4_175_118 c4_175_119 c4_175_120 c4_175_121 c4_175_122 set community 0:1 route-map calculator permit 22173 match community c4_175_123 c4_175_124 c4_175_125 c4_175_126 c4_175_127 set community 0:1 route-map calculator permit 22174 match community c4_175_128 c4_175_129 c4_175_130 c4_175_131 c4_175_132 set community 0:1 route-map calculator permit 22175 match community c4_175_133 c4_175_134 c4_175_135 c4_175_136 c4_175_137 set community 0:1 route-map calculator permit 22176 match community c4_175_138 c4_175_139 c4_175_140 c4_175_141 c4_175_142 set community 0:1 route-map calculator permit 22177 match community c4_175_143 c4_175_144 c4_175_145 c4_175_146 c4_175_147 set community 0:1 route-map calculator permit 22178 match community c4_175_148 c4_175_149 c4_175_150 c4_175_151 c4_175_152 set community 0:1 route-map calculator permit 22179 match community c4_175_153 c4_175_154 c4_175_155 c4_175_156 c4_175_157 set community 0:1 route-map calculator permit 22180 match community c4_175_158 c4_175_159 c4_175_160 c4_175_161 c4_175_162 set community 0:1 route-map calculator permit 22181 match community c4_175_163 c4_175_164 c4_175_165 c4_175_166 c4_175_167 set community 0:1 route-map calculator permit 22182 match community c4_175_168 c4_175_169 c4_175_170 c4_175_171 c4_175_172 set community 0:1 route-map calculator permit 22183 match community c4_175_173 c3_175_174 c4_175_174 c4_175_175 c4_176_89 set community 0:1 route-map calculator permit 22184 match community c4_176_90 c4_176_91 c4_176_92 c4_176_93 c4_176_94 set community 0:1 route-map calculator permit 22185 match community c4_176_95 c4_176_96 c4_176_97 c4_176_98 c4_176_99 set community 0:1 route-map calculator permit 22186 match community c4_176_100 c4_176_101 c4_176_102 c4_176_103 c4_176_104 set community 0:1 route-map calculator permit 22187 match community c4_176_105 c4_176_106 c4_176_107 c4_176_108 c4_176_109 set community 0:1 route-map calculator permit 22188 match community c4_176_110 c4_176_111 c4_176_112 c4_176_113 c4_176_114 set community 0:1 route-map calculator permit 22189 match community c4_176_115 c4_176_116 c4_176_117 c4_176_118 c4_176_119 set community 0:1 route-map calculator permit 22190 match community c4_176_120 c4_176_121 c4_176_122 c4_176_123 c4_176_124 set community 0:1 route-map calculator permit 22191 match community c4_176_125 c4_176_126 c4_176_127 c4_176_128 c4_176_129 set community 0:1 route-map calculator permit 22192 match community c4_176_130 c4_176_131 c4_176_132 c4_176_133 c4_176_134 set community 0:1 route-map calculator permit 22193 match community c4_176_135 c4_176_136 c4_176_137 c4_176_138 c4_176_139 set community 0:1 route-map calculator permit 22194 match community c4_176_140 c4_176_141 c4_176_142 c4_176_143 c4_176_144 set community 0:1 route-map calculator permit 22195 match community c4_176_145 c4_176_146 c4_176_147 c4_176_148 c4_176_149 set community 0:1 route-map calculator permit 22196 match community c4_176_150 c4_176_151 c4_176_152 c4_176_153 c4_176_154 set community 0:1 route-map calculator permit 22197 match community c4_176_155 c4_176_156 c4_176_157 c4_176_158 c4_176_159 set community 0:1 route-map calculator permit 22198 match community c4_176_160 c4_176_161 c4_176_162 c4_176_163 c4_176_164 set community 0:1 route-map calculator permit 22199 match community c4_176_165 c4_176_166 c4_176_167 c4_176_168 c4_176_169 set community 0:1 route-map calculator permit 22200 match community c4_176_170 c4_176_171 c4_176_172 c4_176_173 c4_176_174 set community 0:1 route-map calculator permit 22201 match community c3_176_175 c4_176_175 c4_176_176 c4_177_89 c4_177_90 set community 0:1 route-map calculator permit 22202 match community c4_177_91 c4_177_92 c4_177_93 c4_177_94 c4_177_95 set community 0:1 route-map calculator permit 22203 match community c4_177_96 c4_177_97 c4_177_98 c4_177_99 c4_177_100 set community 0:1 route-map calculator permit 22204 match community c4_177_101 c4_177_102 c4_177_103 c4_177_104 c4_177_105 set community 0:1 route-map calculator permit 22205 match community c4_177_106 c4_177_107 c4_177_108 c4_177_109 c4_177_110 set community 0:1 route-map calculator permit 22206 match community c4_177_111 c4_177_112 c4_177_113 c4_177_114 c4_177_115 set community 0:1 route-map calculator permit 22207 match community c4_177_116 c4_177_117 c4_177_118 c4_177_119 c4_177_120 set community 0:1 route-map calculator permit 22208 match community c4_177_121 c4_177_122 c4_177_123 c4_177_124 c4_177_125 set community 0:1 route-map calculator permit 22209 match community c4_177_126 c4_177_127 c4_177_128 c4_177_129 c4_177_130 set community 0:1 route-map calculator permit 22210 match community c4_177_131 c4_177_132 c4_177_133 c4_177_134 c4_177_135 set community 0:1 route-map calculator permit 22211 match community c4_177_136 c4_177_137 c4_177_138 c4_177_139 c4_177_140 set community 0:1 route-map calculator permit 22212 match community c4_177_141 c4_177_142 c4_177_143 c4_177_144 c4_177_145 set community 0:1 route-map calculator permit 22213 match community c4_177_146 c4_177_147 c4_177_148 c4_177_149 c4_177_150 set community 0:1 route-map calculator permit 22214 match community c4_177_151 c4_177_152 c4_177_153 c4_177_154 c4_177_155 set community 0:1 route-map calculator permit 22215 match community c4_177_156 c4_177_157 c4_177_158 c4_177_159 c4_177_160 set community 0:1 route-map calculator permit 22216 match community c4_177_161 c4_177_162 c4_177_163 c4_177_164 c4_177_165 set community 0:1 route-map calculator permit 22217 match community c4_177_166 c4_177_167 c4_177_168 c4_177_169 c4_177_170 set community 0:1 route-map calculator permit 22218 match community c4_177_171 c4_177_172 c4_177_173 c4_177_174 c4_177_175 set community 0:1 route-map calculator permit 22219 match community c3_177_176 c4_177_176 c4_177_177 c4_178_90 c4_178_91 set community 0:1 route-map calculator permit 22220 match community c4_178_92 c4_178_93 c4_178_94 c4_178_95 c4_178_96 set community 0:1 route-map calculator permit 22221 match community c4_178_97 c4_178_98 c4_178_99 c4_178_100 c4_178_101 set community 0:1 route-map calculator permit 22222 match community c4_178_102 c4_178_103 c4_178_104 c4_178_105 c4_178_106 set community 0:1 route-map calculator permit 22223 match community c4_178_107 c4_178_108 c4_178_109 c4_178_110 c4_178_111 set community 0:1 route-map calculator permit 22224 match community c4_178_112 c4_178_113 c4_178_114 c4_178_115 c4_178_116 set community 0:1 route-map calculator permit 22225 match community c4_178_117 c4_178_118 c4_178_119 c4_178_120 c4_178_121 set community 0:1 route-map calculator permit 22226 match community c4_178_122 c4_178_123 c4_178_124 c4_178_125 c4_178_126 set community 0:1 route-map calculator permit 22227 match community c4_178_127 c4_178_128 c4_178_129 c4_178_130 c4_178_131 set community 0:1 route-map calculator permit 22228 match community c4_178_132 c4_178_133 c4_178_134 c4_178_135 c4_178_136 set community 0:1 route-map calculator permit 22229 match community c4_178_137 c4_178_138 c4_178_139 c4_178_140 c4_178_141 set community 0:1 route-map calculator permit 22230 match community c4_178_142 c4_178_143 c4_178_144 c4_178_145 c4_178_146 set community 0:1 route-map calculator permit 22231 match community c4_178_147 c4_178_148 c4_178_149 c4_178_150 c4_178_151 set community 0:1 route-map calculator permit 22232 match community c4_178_152 c4_178_153 c4_178_154 c4_178_155 c4_178_156 set community 0:1 route-map calculator permit 22233 match community c4_178_157 c4_178_158 c4_178_159 c4_178_160 c4_178_161 set community 0:1 route-map calculator permit 22234 match community c4_178_162 c4_178_163 c4_178_164 c4_178_165 c4_178_166 set community 0:1 route-map calculator permit 22235 match community c4_178_167 c4_178_168 c4_178_169 c4_178_170 c4_178_171 set community 0:1 route-map calculator permit 22236 match community c4_178_172 c4_178_173 c4_178_174 c4_178_175 c4_178_176 set community 0:1 route-map calculator permit 22237 match community c3_178_177 c4_178_177 c4_178_178 c4_179_90 c4_179_91 set community 0:1 route-map calculator permit 22238 match community c4_179_92 c4_179_93 c4_179_94 c4_179_95 c4_179_96 set community 0:1 route-map calculator permit 22239 match community c4_179_97 c4_179_98 c4_179_99 c4_179_100 c4_179_101 set community 0:1 route-map calculator permit 22240 match community c4_179_102 c4_179_103 c4_179_104 c4_179_105 c4_179_106 set community 0:1 route-map calculator permit 22241 match community c4_179_107 c4_179_108 c4_179_109 c4_179_110 c4_179_111 set community 0:1 route-map calculator permit 22242 match community c4_179_112 c4_179_113 c4_179_114 c4_179_115 c4_179_116 set community 0:1 route-map calculator permit 22243 match community c4_179_117 c4_179_118 c4_179_119 c4_179_120 c4_179_121 set community 0:1 route-map calculator permit 22244 match community c4_179_122 c4_179_123 c4_179_124 c4_179_125 c4_179_126 set community 0:1 route-map calculator permit 22245 match community c4_179_127 c4_179_128 c4_179_129 c4_179_130 c4_179_131 set community 0:1 route-map calculator permit 22246 match community c4_179_132 c4_179_133 c4_179_134 c4_179_135 c4_179_136 set community 0:1 route-map calculator permit 22247 match community c4_179_137 c4_179_138 c4_179_139 c4_179_140 c4_179_141 set community 0:1 route-map calculator permit 22248 match community c4_179_142 c4_179_143 c4_179_144 c4_179_145 c4_179_146 set community 0:1 route-map calculator permit 22249 match community c4_179_147 c4_179_148 c4_179_149 c4_179_150 c4_179_151 set community 0:1 route-map calculator permit 22250 match community c4_179_152 c4_179_153 c4_179_154 c4_179_155 c4_179_156 set community 0:1 route-map calculator permit 22251 match community c4_179_157 c4_179_158 c4_179_159 c4_179_160 c4_179_161 set community 0:1 route-map calculator permit 22252 match community c4_179_162 c4_179_163 c4_179_164 c4_179_165 c4_179_166 set community 0:1 route-map calculator permit 22253 match community c4_179_167 c4_179_168 c4_179_169 c4_179_170 c4_179_171 set community 0:1 route-map calculator permit 22254 match community c4_179_172 c4_179_173 c4_179_174 c4_179_175 c4_179_176 set community 0:1 route-map calculator permit 22255 match community c4_179_177 c3_179_178 c4_179_178 c4_179_179 c4_180_91 set community 0:1 route-map calculator permit 22256 match community c4_180_92 c4_180_93 c4_180_94 c4_180_95 c4_180_96 set community 0:1 route-map calculator permit 22257 match community c4_180_97 c4_180_98 c4_180_99 c4_180_100 c4_180_101 set community 0:1 route-map calculator permit 22258 match community c4_180_102 c4_180_103 c4_180_104 c4_180_105 c4_180_106 set community 0:1 route-map calculator permit 22259 match community c4_180_107 c4_180_108 c4_180_109 c4_180_110 c4_180_111 set community 0:1 route-map calculator permit 22260 match community c4_180_112 c4_180_113 c4_180_114 c4_180_115 c4_180_116 set community 0:1 route-map calculator permit 22261 match community c4_180_117 c4_180_118 c4_180_119 c4_180_120 c4_180_121 set community 0:1 route-map calculator permit 22262 match community c4_180_122 c4_180_123 c4_180_124 c4_180_125 c4_180_126 set community 0:1 route-map calculator permit 22263 match community c4_180_127 c4_180_128 c4_180_129 c4_180_130 c4_180_131 set community 0:1 route-map calculator permit 22264 match community c4_180_132 c4_180_133 c4_180_134 c4_180_135 c4_180_136 set community 0:1 route-map calculator permit 22265 match community c4_180_137 c4_180_138 c4_180_139 c4_180_140 c4_180_141 set community 0:1 route-map calculator permit 22266 match community c4_180_142 c4_180_143 c4_180_144 c4_180_145 c4_180_146 set community 0:1 route-map calculator permit 22267 match community c4_180_147 c4_180_148 c4_180_149 c4_180_150 c4_180_151 set community 0:1 route-map calculator permit 22268 match community c4_180_152 c4_180_153 c4_180_154 c4_180_155 c4_180_156 set community 0:1 route-map calculator permit 22269 match community c4_180_157 c4_180_158 c4_180_159 c4_180_160 c4_180_161 set community 0:1 route-map calculator permit 22270 match community c4_180_162 c4_180_163 c4_180_164 c4_180_165 c4_180_166 set community 0:1 route-map calculator permit 22271 match community c4_180_167 c4_180_168 c4_180_169 c4_180_170 c4_180_171 set community 0:1 route-map calculator permit 22272 match community c4_180_172 c4_180_173 c4_180_174 c4_180_175 c4_180_176 set community 0:1 route-map calculator permit 22273 match community c4_180_177 c4_180_178 c3_180_179 c4_180_179 c4_180_180 set community 0:1 route-map calculator permit 22274 match community c4_181_91 c4_181_92 c4_181_93 c4_181_94 c4_181_95 set community 0:1 route-map calculator permit 22275 match community c4_181_96 c4_181_97 c4_181_98 c4_181_99 c4_181_100 set community 0:1 route-map calculator permit 22276 match community c4_181_101 c4_181_102 c4_181_103 c4_181_104 c4_181_105 set community 0:1 route-map calculator permit 22277 match community c4_181_106 c4_181_107 c4_181_108 c4_181_109 c4_181_110 set community 0:1 route-map calculator permit 22278 match community c4_181_111 c4_181_112 c4_181_113 c4_181_114 c4_181_115 set community 0:1 route-map calculator permit 22279 match community c4_181_116 c4_181_117 c4_181_118 c4_181_119 c4_181_120 set community 0:1 route-map calculator permit 22280 match community c4_181_121 c4_181_122 c4_181_123 c4_181_124 c4_181_125 set community 0:1 route-map calculator permit 22281 match community c4_181_126 c4_181_127 c4_181_128 c4_181_129 c4_181_130 set community 0:1 route-map calculator permit 22282 match community c4_181_131 c4_181_132 c4_181_133 c4_181_134 c4_181_135 set community 0:1 route-map calculator permit 22283 match community c4_181_136 c4_181_137 c4_181_138 c4_181_139 c4_181_140 set community 0:1 route-map calculator permit 22284 match community c4_181_141 c4_181_142 c4_181_143 c4_181_144 c4_181_145 set community 0:1 route-map calculator permit 22285 match community c4_181_146 c4_181_147 c4_181_148 c4_181_149 c4_181_150 set community 0:1 route-map calculator permit 22286 match community c4_181_151 c4_181_152 c4_181_153 c4_181_154 c4_181_155 set community 0:1 route-map calculator permit 22287 match community c4_181_156 c4_181_157 c4_181_158 c4_181_159 c4_181_160 set community 0:1 route-map calculator permit 22288 match community c4_181_161 c4_181_162 c4_181_163 c4_181_164 c4_181_165 set community 0:1 route-map calculator permit 22289 match community c4_181_166 c4_181_167 c4_181_168 c4_181_169 c4_181_170 set community 0:1 route-map calculator permit 22290 match community c4_181_171 c4_181_172 c4_181_173 c4_181_174 c4_181_175 set community 0:1 route-map calculator permit 22291 match community c4_181_176 c4_181_177 c4_181_178 c4_181_179 c3_181_180 set community 0:1 route-map calculator permit 22292 match community c4_181_180 c4_181_181 c4_182_92 c4_182_93 c4_182_94 set community 0:1 route-map calculator permit 22293 match community c4_182_95 c4_182_96 c4_182_97 c4_182_98 c4_182_99 set community 0:1 route-map calculator permit 22294 match community c4_182_100 c4_182_101 c4_182_102 c4_182_103 c4_182_104 set community 0:1 route-map calculator permit 22295 match community c4_182_105 c4_182_106 c4_182_107 c4_182_108 c4_182_109 set community 0:1 route-map calculator permit 22296 match community c4_182_110 c4_182_111 c4_182_112 c4_182_113 c4_182_114 set community 0:1 route-map calculator permit 22297 match community c4_182_115 c4_182_116 c4_182_117 c4_182_118 c4_182_119 set community 0:1 route-map calculator permit 22298 match community c4_182_120 c4_182_121 c4_182_122 c4_182_123 c4_182_124 set community 0:1 route-map calculator permit 22299 match community c4_182_125 c4_182_126 c4_182_127 c4_182_128 c4_182_129 set community 0:1 route-map calculator permit 22300 match community c4_182_130 c4_182_131 c4_182_132 c4_182_133 c4_182_134 set community 0:1 route-map calculator permit 22301 match community c4_182_135 c4_182_136 c4_182_137 c4_182_138 c4_182_139 set community 0:1 route-map calculator permit 22302 match community c4_182_140 c4_182_141 c4_182_142 c4_182_143 c4_182_144 set community 0:1 route-map calculator permit 22303 match community c4_182_145 c4_182_146 c4_182_147 c4_182_148 c4_182_149 set community 0:1 route-map calculator permit 22304 match community c4_182_150 c4_182_151 c4_182_152 c4_182_153 c4_182_154 set community 0:1 route-map calculator permit 22305 match community c4_182_155 c4_182_156 c4_182_157 c4_182_158 c4_182_159 set community 0:1 route-map calculator permit 22306 match community c4_182_160 c4_182_161 c4_182_162 c4_182_163 c4_182_164 set community 0:1 route-map calculator permit 22307 match community c4_182_165 c4_182_166 c4_182_167 c4_182_168 c4_182_169 set community 0:1 route-map calculator permit 22308 match community c4_182_170 c4_182_171 c4_182_172 c4_182_173 c4_182_174 set community 0:1 route-map calculator permit 22309 match community c4_182_175 c4_182_176 c4_182_177 c4_182_178 c4_182_179 set community 0:1 route-map calculator permit 22310 match community c4_182_180 c3_182_181 c4_182_181 c4_182_182 c4_183_92 set community 0:1 route-map calculator permit 22311 match community c4_183_93 c4_183_94 c4_183_95 c4_183_96 c4_183_97 set community 0:1 route-map calculator permit 22312 match community c4_183_98 c4_183_99 c4_183_100 c4_183_101 c4_183_102 set community 0:1 route-map calculator permit 22313 match community c4_183_103 c4_183_104 c4_183_105 c4_183_106 c4_183_107 set community 0:1 route-map calculator permit 22314 match community c4_183_108 c4_183_109 c4_183_110 c4_183_111 c4_183_112 set community 0:1 route-map calculator permit 22315 match community c4_183_113 c4_183_114 c4_183_115 c4_183_116 c4_183_117 set community 0:1 route-map calculator permit 22316 match community c4_183_118 c4_183_119 c4_183_120 c4_183_121 c4_183_122 set community 0:1 route-map calculator permit 22317 match community c4_183_123 c4_183_124 c4_183_125 c4_183_126 c4_183_127 set community 0:1 route-map calculator permit 22318 match community c4_183_128 c4_183_129 c4_183_130 c4_183_131 c4_183_132 set community 0:1 route-map calculator permit 22319 match community c4_183_133 c4_183_134 c4_183_135 c4_183_136 c4_183_137 set community 0:1 route-map calculator permit 22320 match community c4_183_138 c4_183_139 c4_183_140 c4_183_141 c4_183_142 set community 0:1 route-map calculator permit 22321 match community c4_183_143 c4_183_144 c4_183_145 c4_183_146 c4_183_147 set community 0:1 route-map calculator permit 22322 match community c4_183_148 c4_183_149 c4_183_150 c4_183_151 c4_183_152 set community 0:1 route-map calculator permit 22323 match community c4_183_153 c4_183_154 c4_183_155 c4_183_156 c4_183_157 set community 0:1 route-map calculator permit 22324 match community c4_183_158 c4_183_159 c4_183_160 c4_183_161 c4_183_162 set community 0:1 route-map calculator permit 22325 match community c4_183_163 c4_183_164 c4_183_165 c4_183_166 c4_183_167 set community 0:1 route-map calculator permit 22326 match community c4_183_168 c4_183_169 c4_183_170 c4_183_171 c4_183_172 set community 0:1 route-map calculator permit 22327 match community c4_183_173 c4_183_174 c4_183_175 c4_183_176 c4_183_177 set community 0:1 route-map calculator permit 22328 match community c4_183_178 c4_183_179 c4_183_180 c4_183_181 c3_183_182 set community 0:1 route-map calculator permit 22329 match community c4_183_182 c4_183_183 c4_184_93 c4_184_94 c4_184_95 set community 0:1 route-map calculator permit 22330 match community c4_184_96 c4_184_97 c4_184_98 c4_184_99 c4_184_100 set community 0:1 route-map calculator permit 22331 match community c4_184_101 c4_184_102 c4_184_103 c4_184_104 c4_184_105 set community 0:1 route-map calculator permit 22332 match community c4_184_106 c4_184_107 c4_184_108 c4_184_109 c4_184_110 set community 0:1 route-map calculator permit 22333 match community c4_184_111 c4_184_112 c4_184_113 c4_184_114 c4_184_115 set community 0:1 route-map calculator permit 22334 match community c4_184_116 c4_184_117 c4_184_118 c4_184_119 c4_184_120 set community 0:1 route-map calculator permit 22335 match community c4_184_121 c4_184_122 c4_184_123 c4_184_124 c4_184_125 set community 0:1 route-map calculator permit 22336 match community c4_184_126 c4_184_127 c4_184_128 c4_184_129 c4_184_130 set community 0:1 route-map calculator permit 22337 match community c4_184_131 c4_184_132 c4_184_133 c4_184_134 c4_184_135 set community 0:1 route-map calculator permit 22338 match community c4_184_136 c4_184_137 c4_184_138 c4_184_139 c4_184_140 set community 0:1 route-map calculator permit 22339 match community c4_184_141 c4_184_142 c4_184_143 c4_184_144 c4_184_145 set community 0:1 route-map calculator permit 22340 match community c4_184_146 c4_184_147 c4_184_148 c4_184_149 c4_184_150 set community 0:1 route-map calculator permit 22341 match community c4_184_151 c4_184_152 c4_184_153 c4_184_154 c4_184_155 set community 0:1 route-map calculator permit 22342 match community c4_184_156 c4_184_157 c4_184_158 c4_184_159 c4_184_160 set community 0:1 route-map calculator permit 22343 match community c4_184_161 c4_184_162 c4_184_163 c4_184_164 c4_184_165 set community 0:1 route-map calculator permit 22344 match community c4_184_166 c4_184_167 c4_184_168 c4_184_169 c4_184_170 set community 0:1 route-map calculator permit 22345 match community c4_184_171 c4_184_172 c4_184_173 c4_184_174 c4_184_175 set community 0:1 route-map calculator permit 22346 match community c4_184_176 c4_184_177 c4_184_178 c4_184_179 c4_184_180 set community 0:1 route-map calculator permit 22347 match community c4_184_181 c4_184_182 c3_184_183 c4_184_183 c4_184_184 set community 0:1 route-map calculator permit 22348 match community c4_185_93 c4_185_94 c4_185_95 c4_185_96 c4_185_97 set community 0:1 route-map calculator permit 22349 match community c4_185_98 c4_185_99 c4_185_100 c4_185_101 c4_185_102 set community 0:1 route-map calculator permit 22350 match community c4_185_103 c4_185_104 c4_185_105 c4_185_106 c4_185_107 set community 0:1 route-map calculator permit 22351 match community c4_185_108 c4_185_109 c4_185_110 c4_185_111 c4_185_112 set community 0:1 route-map calculator permit 22352 match community c4_185_113 c4_185_114 c4_185_115 c4_185_116 c4_185_117 set community 0:1 route-map calculator permit 22353 match community c4_185_118 c4_185_119 c4_185_120 c4_185_121 c4_185_122 set community 0:1 route-map calculator permit 22354 match community c4_185_123 c4_185_124 c4_185_125 c4_185_126 c4_185_127 set community 0:1 route-map calculator permit 22355 match community c4_185_128 c4_185_129 c4_185_130 c4_185_131 c4_185_132 set community 0:1 route-map calculator permit 22356 match community c4_185_133 c4_185_134 c4_185_135 c4_185_136 c4_185_137 set community 0:1 route-map calculator permit 22357 match community c4_185_138 c4_185_139 c4_185_140 c4_185_141 c4_185_142 set community 0:1 route-map calculator permit 22358 match community c4_185_143 c4_185_144 c4_185_145 c4_185_146 c4_185_147 set community 0:1 route-map calculator permit 22359 match community c4_185_148 c4_185_149 c4_185_150 c4_185_151 c4_185_152 set community 0:1 route-map calculator permit 22360 match community c4_185_153 c4_185_154 c4_185_155 c4_185_156 c4_185_157 set community 0:1 route-map calculator permit 22361 match community c4_185_158 c4_185_159 c4_185_160 c4_185_161 c4_185_162 set community 0:1 route-map calculator permit 22362 match community c4_185_163 c4_185_164 c4_185_165 c4_185_166 c4_185_167 set community 0:1 route-map calculator permit 22363 match community c4_185_168 c4_185_169 c4_185_170 c4_185_171 c4_185_172 set community 0:1 route-map calculator permit 22364 match community c4_185_173 c4_185_174 c4_185_175 c4_185_176 c4_185_177 set community 0:1 route-map calculator permit 22365 match community c4_185_178 c4_185_179 c4_185_180 c4_185_181 c4_185_182 set community 0:1 route-map calculator permit 22366 match community c4_185_183 c3_185_184 c4_185_184 c4_185_185 c4_186_94 set community 0:1 route-map calculator permit 22367 match community c4_186_95 c4_186_96 c4_186_97 c4_186_98 c4_186_99 set community 0:1 route-map calculator permit 22368 match community c4_186_100 c4_186_101 c4_186_102 c4_186_103 c4_186_104 set community 0:1 route-map calculator permit 22369 match community c4_186_105 c4_186_106 c4_186_107 c4_186_108 c4_186_109 set community 0:1 route-map calculator permit 22370 match community c4_186_110 c4_186_111 c4_186_112 c4_186_113 c4_186_114 set community 0:1 route-map calculator permit 22371 match community c4_186_115 c4_186_116 c4_186_117 c4_186_118 c4_186_119 set community 0:1 route-map calculator permit 22372 match community c4_186_120 c4_186_121 c4_186_122 c4_186_123 c4_186_124 set community 0:1 route-map calculator permit 22373 match community c4_186_125 c4_186_126 c4_186_127 c4_186_128 c4_186_129 set community 0:1 route-map calculator permit 22374 match community c4_186_130 c4_186_131 c4_186_132 c4_186_133 c4_186_134 set community 0:1 route-map calculator permit 22375 match community c4_186_135 c4_186_136 c4_186_137 c4_186_138 c4_186_139 set community 0:1 route-map calculator permit 22376 match community c4_186_140 c4_186_141 c4_186_142 c4_186_143 c4_186_144 set community 0:1 route-map calculator permit 22377 match community c4_186_145 c4_186_146 c4_186_147 c4_186_148 c4_186_149 set community 0:1 route-map calculator permit 22378 match community c4_186_150 c4_186_151 c4_186_152 c4_186_153 c4_186_154 set community 0:1 route-map calculator permit 22379 match community c4_186_155 c4_186_156 c4_186_157 c4_186_158 c4_186_159 set community 0:1 route-map calculator permit 22380 match community c4_186_160 c4_186_161 c4_186_162 c4_186_163 c4_186_164 set community 0:1 route-map calculator permit 22381 match community c4_186_165 c4_186_166 c4_186_167 c4_186_168 c4_186_169 set community 0:1 route-map calculator permit 22382 match community c4_186_170 c4_186_171 c4_186_172 c4_186_173 c4_186_174 set community 0:1 route-map calculator permit 22383 match community c4_186_175 c4_186_176 c4_186_177 c4_186_178 c4_186_179 set community 0:1 route-map calculator permit 22384 match community c4_186_180 c4_186_181 c4_186_182 c4_186_183 c4_186_184 set community 0:1 route-map calculator permit 22385 match community c3_186_185 c4_186_185 c4_186_186 c4_187_94 c4_187_95 set community 0:1 route-map calculator permit 22386 match community c4_187_96 c4_187_97 c4_187_98 c4_187_99 c4_187_100 set community 0:1 route-map calculator permit 22387 match community c4_187_101 c4_187_102 c4_187_103 c4_187_104 c4_187_105 set community 0:1 route-map calculator permit 22388 match community c4_187_106 c4_187_107 c4_187_108 c4_187_109 c4_187_110 set community 0:1 route-map calculator permit 22389 match community c4_187_111 c4_187_112 c4_187_113 c4_187_114 c4_187_115 set community 0:1 route-map calculator permit 22390 match community c4_187_116 c4_187_117 c4_187_118 c4_187_119 c4_187_120 set community 0:1 route-map calculator permit 22391 match community c4_187_121 c4_187_122 c4_187_123 c4_187_124 c4_187_125 set community 0:1 route-map calculator permit 22392 match community c4_187_126 c4_187_127 c4_187_128 c4_187_129 c4_187_130 set community 0:1 route-map calculator permit 22393 match community c4_187_131 c4_187_132 c4_187_133 c4_187_134 c4_187_135 set community 0:1 route-map calculator permit 22394 match community c4_187_136 c4_187_137 c4_187_138 c4_187_139 c4_187_140 set community 0:1 route-map calculator permit 22395 match community c4_187_141 c4_187_142 c4_187_143 c4_187_144 c4_187_145 set community 0:1 route-map calculator permit 22396 match community c4_187_146 c4_187_147 c4_187_148 c4_187_149 c4_187_150 set community 0:1 route-map calculator permit 22397 match community c4_187_151 c4_187_152 c4_187_153 c4_187_154 c4_187_155 set community 0:1 route-map calculator permit 22398 match community c4_187_156 c4_187_157 c4_187_158 c4_187_159 c4_187_160 set community 0:1 route-map calculator permit 22399 match community c4_187_161 c4_187_162 c4_187_163 c4_187_164 c4_187_165 set community 0:1 route-map calculator permit 22400 match community c4_187_166 c4_187_167 c4_187_168 c4_187_169 c4_187_170 set community 0:1 route-map calculator permit 22401 match community c4_187_171 c4_187_172 c4_187_173 c4_187_174 c4_187_175 set community 0:1 route-map calculator permit 22402 match community c4_187_176 c4_187_177 c4_187_178 c4_187_179 c4_187_180 set community 0:1 route-map calculator permit 22403 match community c4_187_181 c4_187_182 c4_187_183 c4_187_184 c4_187_185 set community 0:1 route-map calculator permit 22404 match community c3_187_186 c4_187_186 c4_187_187 c4_188_95 c4_188_96 set community 0:1 route-map calculator permit 22405 match community c4_188_97 c4_188_98 c4_188_99 c4_188_100 c4_188_101 set community 0:1 route-map calculator permit 22406 match community c4_188_102 c4_188_103 c4_188_104 c4_188_105 c4_188_106 set community 0:1 route-map calculator permit 22407 match community c4_188_107 c4_188_108 c4_188_109 c4_188_110 c4_188_111 set community 0:1 route-map calculator permit 22408 match community c4_188_112 c4_188_113 c4_188_114 c4_188_115 c4_188_116 set community 0:1 route-map calculator permit 22409 match community c4_188_117 c4_188_118 c4_188_119 c4_188_120 c4_188_121 set community 0:1 route-map calculator permit 22410 match community c4_188_122 c4_188_123 c4_188_124 c4_188_125 c4_188_126 set community 0:1 route-map calculator permit 22411 match community c4_188_127 c4_188_128 c4_188_129 c4_188_130 c4_188_131 set community 0:1 route-map calculator permit 22412 match community c4_188_132 c4_188_133 c4_188_134 c4_188_135 c4_188_136 set community 0:1 route-map calculator permit 22413 match community c4_188_137 c4_188_138 c4_188_139 c4_188_140 c4_188_141 set community 0:1 route-map calculator permit 22414 match community c4_188_142 c4_188_143 c4_188_144 c4_188_145 c4_188_146 set community 0:1 route-map calculator permit 22415 match community c4_188_147 c4_188_148 c4_188_149 c4_188_150 c4_188_151 set community 0:1 route-map calculator permit 22416 match community c4_188_152 c4_188_153 c4_188_154 c4_188_155 c4_188_156 set community 0:1 route-map calculator permit 22417 match community c4_188_157 c4_188_158 c4_188_159 c4_188_160 c4_188_161 set community 0:1 route-map calculator permit 22418 match community c4_188_162 c4_188_163 c4_188_164 c4_188_165 c4_188_166 set community 0:1 route-map calculator permit 22419 match community c4_188_167 c4_188_168 c4_188_169 c4_188_170 c4_188_171 set community 0:1 route-map calculator permit 22420 match community c4_188_172 c4_188_173 c4_188_174 c4_188_175 c4_188_176 set community 0:1 route-map calculator permit 22421 match community c4_188_177 c4_188_178 c4_188_179 c4_188_180 c4_188_181 set community 0:1 route-map calculator permit 22422 match community c4_188_182 c4_188_183 c4_188_184 c4_188_185 c4_188_186 set community 0:1 route-map calculator permit 22423 match community c3_188_187 c4_188_187 c4_188_188 c4_189_95 c4_189_96 set community 0:1 route-map calculator permit 22424 match community c4_189_97 c4_189_98 c4_189_99 c4_189_100 c4_189_101 set community 0:1 route-map calculator permit 22425 match community c4_189_102 c4_189_103 c4_189_104 c4_189_105 c4_189_106 set community 0:1 route-map calculator permit 22426 match community c4_189_107 c4_189_108 c4_189_109 c4_189_110 c4_189_111 set community 0:1 route-map calculator permit 22427 match community c4_189_112 c4_189_113 c4_189_114 c4_189_115 c4_189_116 set community 0:1 route-map calculator permit 22428 match community c4_189_117 c4_189_118 c4_189_119 c4_189_120 c4_189_121 set community 0:1 route-map calculator permit 22429 match community c4_189_122 c4_189_123 c4_189_124 c4_189_125 c4_189_126 set community 0:1 route-map calculator permit 22430 match community c4_189_127 c4_189_128 c4_189_129 c4_189_130 c4_189_131 set community 0:1 route-map calculator permit 22431 match community c4_189_132 c4_189_133 c4_189_134 c4_189_135 c4_189_136 set community 0:1 route-map calculator permit 22432 match community c4_189_137 c4_189_138 c4_189_139 c4_189_140 c4_189_141 set community 0:1 route-map calculator permit 22433 match community c4_189_142 c4_189_143 c4_189_144 c4_189_145 c4_189_146 set community 0:1 route-map calculator permit 22434 match community c4_189_147 c4_189_148 c4_189_149 c4_189_150 c4_189_151 set community 0:1 route-map calculator permit 22435 match community c4_189_152 c4_189_153 c4_189_154 c4_189_155 c4_189_156 set community 0:1 route-map calculator permit 22436 match community c4_189_157 c4_189_158 c4_189_159 c4_189_160 c4_189_161 set community 0:1 route-map calculator permit 22437 match community c4_189_162 c4_189_163 c4_189_164 c4_189_165 c4_189_166 set community 0:1 route-map calculator permit 22438 match community c4_189_167 c4_189_168 c4_189_169 c4_189_170 c4_189_171 set community 0:1 route-map calculator permit 22439 match community c4_189_172 c4_189_173 c4_189_174 c4_189_175 c4_189_176 set community 0:1 route-map calculator permit 22440 match community c4_189_177 c4_189_178 c4_189_179 c4_189_180 c4_189_181 set community 0:1 route-map calculator permit 22441 match community c4_189_182 c4_189_183 c4_189_184 c4_189_185 c4_189_186 set community 0:1 route-map calculator permit 22442 match community c4_189_187 c3_189_188 c4_189_188 c4_189_189 c4_190_96 set community 0:1 route-map calculator permit 22443 match community c4_190_97 c4_190_98 c4_190_99 c4_190_100 c4_190_101 set community 0:1 route-map calculator permit 22444 match community c4_190_102 c4_190_103 c4_190_104 c4_190_105 c4_190_106 set community 0:1 route-map calculator permit 22445 match community c4_190_107 c4_190_108 c4_190_109 c4_190_110 c4_190_111 set community 0:1 route-map calculator permit 22446 match community c4_190_112 c4_190_113 c4_190_114 c4_190_115 c4_190_116 set community 0:1 route-map calculator permit 22447 match community c4_190_117 c4_190_118 c4_190_119 c4_190_120 c4_190_121 set community 0:1 route-map calculator permit 22448 match community c4_190_122 c4_190_123 c4_190_124 c4_190_125 c4_190_126 set community 0:1 route-map calculator permit 22449 match community c4_190_127 c4_190_128 c4_190_129 c4_190_130 c4_190_131 set community 0:1 route-map calculator permit 22450 match community c4_190_132 c4_190_133 c4_190_134 c4_190_135 c4_190_136 set community 0:1 route-map calculator permit 22451 match community c4_190_137 c4_190_138 c4_190_139 c4_190_140 c4_190_141 set community 0:1 route-map calculator permit 22452 match community c4_190_142 c4_190_143 c4_190_144 c4_190_145 c4_190_146 set community 0:1 route-map calculator permit 22453 match community c4_190_147 c4_190_148 c4_190_149 c4_190_150 c4_190_151 set community 0:1 route-map calculator permit 22454 match community c4_190_152 c4_190_153 c4_190_154 c4_190_155 c4_190_156 set community 0:1 route-map calculator permit 22455 match community c4_190_157 c4_190_158 c4_190_159 c4_190_160 c4_190_161 set community 0:1 route-map calculator permit 22456 match community c4_190_162 c4_190_163 c4_190_164 c4_190_165 c4_190_166 set community 0:1 route-map calculator permit 22457 match community c4_190_167 c4_190_168 c4_190_169 c4_190_170 c4_190_171 set community 0:1 route-map calculator permit 22458 match community c4_190_172 c4_190_173 c4_190_174 c4_190_175 c4_190_176 set community 0:1 route-map calculator permit 22459 match community c4_190_177 c4_190_178 c4_190_179 c4_190_180 c4_190_181 set community 0:1 route-map calculator permit 22460 match community c4_190_182 c4_190_183 c4_190_184 c4_190_185 c4_190_186 set community 0:1 route-map calculator permit 22461 match community c4_190_187 c4_190_188 c3_190_189 c4_190_189 c4_190_190 set community 0:1 route-map calculator permit 22462 match community c4_191_96 c4_191_97 c4_191_98 c4_191_99 c4_191_100 set community 0:1 route-map calculator permit 22463 match community c4_191_101 c4_191_102 c4_191_103 c4_191_104 c4_191_105 set community 0:1 route-map calculator permit 22464 match community c4_191_106 c4_191_107 c4_191_108 c4_191_109 c4_191_110 set community 0:1 route-map calculator permit 22465 match community c4_191_111 c4_191_112 c4_191_113 c4_191_114 c4_191_115 set community 0:1 route-map calculator permit 22466 match community c4_191_116 c4_191_117 c4_191_118 c4_191_119 c4_191_120 set community 0:1 route-map calculator permit 22467 match community c4_191_121 c4_191_122 c4_191_123 c4_191_124 c4_191_125 set community 0:1 route-map calculator permit 22468 match community c4_191_126 c4_191_127 c4_191_128 c4_191_129 c4_191_130 set community 0:1 route-map calculator permit 22469 match community c4_191_131 c4_191_132 c4_191_133 c4_191_134 c4_191_135 set community 0:1 route-map calculator permit 22470 match community c4_191_136 c4_191_137 c4_191_138 c4_191_139 c4_191_140 set community 0:1 route-map calculator permit 22471 match community c4_191_141 c4_191_142 c4_191_143 c4_191_144 c4_191_145 set community 0:1 route-map calculator permit 22472 match community c4_191_146 c4_191_147 c4_191_148 c4_191_149 c4_191_150 set community 0:1 route-map calculator permit 22473 match community c4_191_151 c4_191_152 c4_191_153 c4_191_154 c4_191_155 set community 0:1 route-map calculator permit 22474 match community c4_191_156 c4_191_157 c4_191_158 c4_191_159 c4_191_160 set community 0:1 route-map calculator permit 22475 match community c4_191_161 c4_191_162 c4_191_163 c4_191_164 c4_191_165 set community 0:1 route-map calculator permit 22476 match community c4_191_166 c4_191_167 c4_191_168 c4_191_169 c4_191_170 set community 0:1 route-map calculator permit 22477 match community c4_191_171 c4_191_172 c4_191_173 c4_191_174 c4_191_175 set community 0:1 route-map calculator permit 22478 match community c4_191_176 c4_191_177 c4_191_178 c4_191_179 c4_191_180 set community 0:1 route-map calculator permit 22479 match community c4_191_181 c4_191_182 c4_191_183 c4_191_184 c4_191_185 set community 0:1 route-map calculator permit 22480 match community c4_191_186 c4_191_187 c4_191_188 c4_191_189 c3_191_190 set community 0:1 route-map calculator permit 22481 match community c4_191_190 c4_191_191 c4_192_97 c4_192_98 c4_192_99 set community 0:1 route-map calculator permit 22482 match community c4_192_100 c4_192_101 c4_192_102 c4_192_103 c4_192_104 set community 0:1 route-map calculator permit 22483 match community c4_192_105 c4_192_106 c4_192_107 c4_192_108 c4_192_109 set community 0:1 route-map calculator permit 22484 match community c4_192_110 c4_192_111 c4_192_112 c4_192_113 c4_192_114 set community 0:1 route-map calculator permit 22485 match community c4_192_115 c4_192_116 c4_192_117 c4_192_118 c4_192_119 set community 0:1 route-map calculator permit 22486 match community c4_192_120 c4_192_121 c4_192_122 c4_192_123 c4_192_124 set community 0:1 route-map calculator permit 22487 match community c4_192_125 c4_192_126 c4_192_127 c4_192_128 c4_192_129 set community 0:1 route-map calculator permit 22488 match community c4_192_130 c4_192_131 c4_192_132 c4_192_133 c4_192_134 set community 0:1 route-map calculator permit 22489 match community c4_192_135 c4_192_136 c4_192_137 c4_192_138 c4_192_139 set community 0:1 route-map calculator permit 22490 match community c4_192_140 c4_192_141 c4_192_142 c4_192_143 c4_192_144 set community 0:1 route-map calculator permit 22491 match community c4_192_145 c4_192_146 c4_192_147 c4_192_148 c4_192_149 set community 0:1 route-map calculator permit 22492 match community c4_192_150 c4_192_151 c4_192_152 c4_192_153 c4_192_154 set community 0:1 route-map calculator permit 22493 match community c4_192_155 c4_192_156 c4_192_157 c4_192_158 c4_192_159 set community 0:1 route-map calculator permit 22494 match community c4_192_160 c4_192_161 c4_192_162 c4_192_163 c4_192_164 set community 0:1 route-map calculator permit 22495 match community c4_192_165 c4_192_166 c4_192_167 c4_192_168 c4_192_169 set community 0:1 route-map calculator permit 22496 match community c4_192_170 c4_192_171 c4_192_172 c4_192_173 c4_192_174 set community 0:1 route-map calculator permit 22497 match community c4_192_175 c4_192_176 c4_192_177 c4_192_178 c4_192_179 set community 0:1 route-map calculator permit 22498 match community c4_192_180 c4_192_181 c4_192_182 c4_192_183 c4_192_184 set community 0:1 route-map calculator permit 22499 match community c4_192_185 c4_192_186 c4_192_187 c4_192_188 c4_192_189 set community 0:1 route-map calculator permit 22500 match community c4_192_190 c3_192_191 c4_192_191 c4_192_192 c4_193_97 set community 0:1 route-map calculator permit 22501 match community c4_193_98 c4_193_99 c4_193_100 c4_193_101 c4_193_102 set community 0:1 route-map calculator permit 22502 match community c4_193_103 c4_193_104 c4_193_105 c4_193_106 c4_193_107 set community 0:1 route-map calculator permit 22503 match community c4_193_108 c4_193_109 c4_193_110 c4_193_111 c4_193_112 set community 0:1 route-map calculator permit 22504 match community c4_193_113 c4_193_114 c4_193_115 c4_193_116 c4_193_117 set community 0:1 route-map calculator permit 22505 match community c4_193_118 c4_193_119 c4_193_120 c4_193_121 c4_193_122 set community 0:1 route-map calculator permit 22506 match community c4_193_123 c4_193_124 c4_193_125 c4_193_126 c4_193_127 set community 0:1 route-map calculator permit 22507 match community c4_193_128 c4_193_129 c4_193_130 c4_193_131 c4_193_132 set community 0:1 route-map calculator permit 22508 match community c4_193_133 c4_193_134 c4_193_135 c4_193_136 c4_193_137 set community 0:1 route-map calculator permit 22509 match community c4_193_138 c4_193_139 c4_193_140 c4_193_141 c4_193_142 set community 0:1 route-map calculator permit 22510 match community c4_193_143 c4_193_144 c4_193_145 c4_193_146 c4_193_147 set community 0:1 route-map calculator permit 22511 match community c4_193_148 c4_193_149 c4_193_150 c4_193_151 c4_193_152 set community 0:1 route-map calculator permit 22512 match community c4_193_153 c4_193_154 c4_193_155 c4_193_156 c4_193_157 set community 0:1 route-map calculator permit 22513 match community c4_193_158 c4_193_159 c4_193_160 c4_193_161 c4_193_162 set community 0:1 route-map calculator permit 22514 match community c4_193_163 c4_193_164 c4_193_165 c4_193_166 c4_193_167 set community 0:1 route-map calculator permit 22515 match community c4_193_168 c4_193_169 c4_193_170 c4_193_171 c4_193_172 set community 0:1 route-map calculator permit 22516 match community c4_193_173 c4_193_174 c4_193_175 c4_193_176 c4_193_177 set community 0:1 route-map calculator permit 22517 match community c4_193_178 c4_193_179 c4_193_180 c4_193_181 c4_193_182 set community 0:1 route-map calculator permit 22518 match community c4_193_183 c4_193_184 c4_193_185 c4_193_186 c4_193_187 set community 0:1 route-map calculator permit 22519 match community c4_193_188 c4_193_189 c4_193_190 c4_193_191 c3_193_192 set community 0:1 route-map calculator permit 22520 match community c4_193_192 c4_193_193 c4_194_98 c4_194_99 c4_194_100 set community 0:1 route-map calculator permit 22521 match community c4_194_101 c4_194_102 c4_194_103 c4_194_104 c4_194_105 set community 0:1 route-map calculator permit 22522 match community c4_194_106 c4_194_107 c4_194_108 c4_194_109 c4_194_110 set community 0:1 route-map calculator permit 22523 match community c4_194_111 c4_194_112 c4_194_113 c4_194_114 c4_194_115 set community 0:1 route-map calculator permit 22524 match community c4_194_116 c4_194_117 c4_194_118 c4_194_119 c4_194_120 set community 0:1 route-map calculator permit 22525 match community c4_194_121 c4_194_122 c4_194_123 c4_194_124 c4_194_125 set community 0:1 route-map calculator permit 22526 match community c4_194_126 c4_194_127 c4_194_128 c4_194_129 c4_194_130 set community 0:1 route-map calculator permit 22527 match community c4_194_131 c4_194_132 c4_194_133 c4_194_134 c4_194_135 set community 0:1 route-map calculator permit 22528 match community c4_194_136 c4_194_137 c4_194_138 c4_194_139 c4_194_140 set community 0:1 route-map calculator permit 22529 match community c4_194_141 c4_194_142 c4_194_143 c4_194_144 c4_194_145 set community 0:1 route-map calculator permit 22530 match community c4_194_146 c4_194_147 c4_194_148 c4_194_149 c4_194_150 set community 0:1 route-map calculator permit 22531 match community c4_194_151 c4_194_152 c4_194_153 c4_194_154 c4_194_155 set community 0:1 route-map calculator permit 22532 match community c4_194_156 c4_194_157 c4_194_158 c4_194_159 c4_194_160 set community 0:1 route-map calculator permit 22533 match community c4_194_161 c4_194_162 c4_194_163 c4_194_164 c4_194_165 set community 0:1 route-map calculator permit 22534 match community c4_194_166 c4_194_167 c4_194_168 c4_194_169 c4_194_170 set community 0:1 route-map calculator permit 22535 match community c4_194_171 c4_194_172 c4_194_173 c4_194_174 c4_194_175 set community 0:1 route-map calculator permit 22536 match community c4_194_176 c4_194_177 c4_194_178 c4_194_179 c4_194_180 set community 0:1 route-map calculator permit 22537 match community c4_194_181 c4_194_182 c4_194_183 c4_194_184 c4_194_185 set community 0:1 route-map calculator permit 22538 match community c4_194_186 c4_194_187 c4_194_188 c4_194_189 c4_194_190 set community 0:1 route-map calculator permit 22539 match community c4_194_191 c4_194_192 c3_194_193 c4_194_193 c4_194_194 set community 0:1 route-map calculator permit 22540 match community c4_195_98 c4_195_99 c4_195_100 c4_195_101 c4_195_102 set community 0:1 route-map calculator permit 22541 match community c4_195_103 c4_195_104 c4_195_105 c4_195_106 c4_195_107 set community 0:1 route-map calculator permit 22542 match community c4_195_108 c4_195_109 c4_195_110 c4_195_111 c4_195_112 set community 0:1 route-map calculator permit 22543 match community c4_195_113 c4_195_114 c4_195_115 c4_195_116 c4_195_117 set community 0:1 route-map calculator permit 22544 match community c4_195_118 c4_195_119 c4_195_120 c4_195_121 c4_195_122 set community 0:1 route-map calculator permit 22545 match community c4_195_123 c4_195_124 c4_195_125 c4_195_126 c4_195_127 set community 0:1 route-map calculator permit 22546 match community c4_195_128 c4_195_129 c4_195_130 c4_195_131 c4_195_132 set community 0:1 route-map calculator permit 22547 match community c4_195_133 c4_195_134 c4_195_135 c4_195_136 c4_195_137 set community 0:1 route-map calculator permit 22548 match community c4_195_138 c4_195_139 c4_195_140 c4_195_141 c4_195_142 set community 0:1 route-map calculator permit 22549 match community c4_195_143 c4_195_144 c4_195_145 c4_195_146 c4_195_147 set community 0:1 route-map calculator permit 22550 match community c4_195_148 c4_195_149 c4_195_150 c4_195_151 c4_195_152 set community 0:1 route-map calculator permit 22551 match community c4_195_153 c4_195_154 c4_195_155 c4_195_156 c4_195_157 set community 0:1 route-map calculator permit 22552 match community c4_195_158 c4_195_159 c4_195_160 c4_195_161 c4_195_162 set community 0:1 route-map calculator permit 22553 match community c4_195_163 c4_195_164 c4_195_165 c4_195_166 c4_195_167 set community 0:1 route-map calculator permit 22554 match community c4_195_168 c4_195_169 c4_195_170 c4_195_171 c4_195_172 set community 0:1 route-map calculator permit 22555 match community c4_195_173 c4_195_174 c4_195_175 c4_195_176 c4_195_177 set community 0:1 route-map calculator permit 22556 match community c4_195_178 c4_195_179 c4_195_180 c4_195_181 c4_195_182 set community 0:1 route-map calculator permit 22557 match community c4_195_183 c4_195_184 c4_195_185 c4_195_186 c4_195_187 set community 0:1 route-map calculator permit 22558 match community c4_195_188 c4_195_189 c4_195_190 c4_195_191 c4_195_192 set community 0:1 route-map calculator permit 22559 match community c4_195_193 c3_195_194 c4_195_194 c4_195_195 c4_196_99 set community 0:1 route-map calculator permit 22560 match community c4_196_100 c4_196_101 c4_196_102 c4_196_103 c4_196_104 set community 0:1 route-map calculator permit 22561 match community c4_196_105 c4_196_106 c4_196_107 c4_196_108 c4_196_109 set community 0:1 route-map calculator permit 22562 match community c4_196_110 c4_196_111 c4_196_112 c4_196_113 c4_196_114 set community 0:1 route-map calculator permit 22563 match community c4_196_115 c4_196_116 c4_196_117 c4_196_118 c4_196_119 set community 0:1 route-map calculator permit 22564 match community c4_196_120 c4_196_121 c4_196_122 c4_196_123 c4_196_124 set community 0:1 route-map calculator permit 22565 match community c4_196_125 c4_196_126 c4_196_127 c4_196_128 c4_196_129 set community 0:1 route-map calculator permit 22566 match community c4_196_130 c4_196_131 c4_196_132 c4_196_133 c4_196_134 set community 0:1 route-map calculator permit 22567 match community c4_196_135 c4_196_136 c4_196_137 c4_196_138 c4_196_139 set community 0:1 route-map calculator permit 22568 match community c4_196_140 c4_196_141 c4_196_142 c4_196_143 c4_196_144 set community 0:1 route-map calculator permit 22569 match community c4_196_145 c4_196_146 c4_196_147 c4_196_148 c4_196_149 set community 0:1 route-map calculator permit 22570 match community c4_196_150 c4_196_151 c4_196_152 c4_196_153 c4_196_154 set community 0:1 route-map calculator permit 22571 match community c4_196_155 c4_196_156 c4_196_157 c4_196_158 c4_196_159 set community 0:1 route-map calculator permit 22572 match community c4_196_160 c4_196_161 c4_196_162 c4_196_163 c4_196_164 set community 0:1 route-map calculator permit 22573 match community c4_196_165 c4_196_166 c4_196_167 c4_196_168 c4_196_169 set community 0:1 route-map calculator permit 22574 match community c4_196_170 c4_196_171 c4_196_172 c4_196_173 c4_196_174 set community 0:1 route-map calculator permit 22575 match community c4_196_175 c4_196_176 c4_196_177 c4_196_178 c4_196_179 set community 0:1 route-map calculator permit 22576 match community c4_196_180 c4_196_181 c4_196_182 c4_196_183 c4_196_184 set community 0:1 route-map calculator permit 22577 match community c4_196_185 c4_196_186 c4_196_187 c4_196_188 c4_196_189 set community 0:1 route-map calculator permit 22578 match community c4_196_190 c4_196_191 c4_196_192 c4_196_193 c4_196_194 set community 0:1 route-map calculator permit 22579 match community c3_196_195 c4_196_195 c4_196_196 c4_197_99 c4_197_100 set community 0:1 route-map calculator permit 22580 match community c4_197_101 c4_197_102 c4_197_103 c4_197_104 c4_197_105 set community 0:1 route-map calculator permit 22581 match community c4_197_106 c4_197_107 c4_197_108 c4_197_109 c4_197_110 set community 0:1 route-map calculator permit 22582 match community c4_197_111 c4_197_112 c4_197_113 c4_197_114 c4_197_115 set community 0:1 route-map calculator permit 22583 match community c4_197_116 c4_197_117 c4_197_118 c4_197_119 c4_197_120 set community 0:1 route-map calculator permit 22584 match community c4_197_121 c4_197_122 c4_197_123 c4_197_124 c4_197_125 set community 0:1 route-map calculator permit 22585 match community c4_197_126 c4_197_127 c4_197_128 c4_197_129 c4_197_130 set community 0:1 route-map calculator permit 22586 match community c4_197_131 c4_197_132 c4_197_133 c4_197_134 c4_197_135 set community 0:1 route-map calculator permit 22587 match community c4_197_136 c4_197_137 c4_197_138 c4_197_139 c4_197_140 set community 0:1 route-map calculator permit 22588 match community c4_197_141 c4_197_142 c4_197_143 c4_197_144 c4_197_145 set community 0:1 route-map calculator permit 22589 match community c4_197_146 c4_197_147 c4_197_148 c4_197_149 c4_197_150 set community 0:1 route-map calculator permit 22590 match community c4_197_151 c4_197_152 c4_197_153 c4_197_154 c4_197_155 set community 0:1 route-map calculator permit 22591 match community c4_197_156 c4_197_157 c4_197_158 c4_197_159 c4_197_160 set community 0:1 route-map calculator permit 22592 match community c4_197_161 c4_197_162 c4_197_163 c4_197_164 c4_197_165 set community 0:1 route-map calculator permit 22593 match community c4_197_166 c4_197_167 c4_197_168 c4_197_169 c4_197_170 set community 0:1 route-map calculator permit 22594 match community c4_197_171 c4_197_172 c4_197_173 c4_197_174 c4_197_175 set community 0:1 route-map calculator permit 22595 match community c4_197_176 c4_197_177 c4_197_178 c4_197_179 c4_197_180 set community 0:1 route-map calculator permit 22596 match community c4_197_181 c4_197_182 c4_197_183 c4_197_184 c4_197_185 set community 0:1 route-map calculator permit 22597 match community c4_197_186 c4_197_187 c4_197_188 c4_197_189 c4_197_190 set community 0:1 route-map calculator permit 22598 match community c4_197_191 c4_197_192 c4_197_193 c4_197_194 c4_197_195 set community 0:1 route-map calculator permit 22599 match community c3_197_196 c4_197_196 c4_197_197 c4_198_100 c4_198_101 set community 0:1 route-map calculator permit 22600 match community c4_198_102 c4_198_103 c4_198_104 c4_198_105 c4_198_106 set community 0:1 route-map calculator permit 22601 match community c4_198_107 c4_198_108 c4_198_109 c4_198_110 c4_198_111 set community 0:1 route-map calculator permit 22602 match community c4_198_112 c4_198_113 c4_198_114 c4_198_115 c4_198_116 set community 0:1 route-map calculator permit 22603 match community c4_198_117 c4_198_118 c4_198_119 c4_198_120 c4_198_121 set community 0:1 route-map calculator permit 22604 match community c4_198_122 c4_198_123 c4_198_124 c4_198_125 c4_198_126 set community 0:1 route-map calculator permit 22605 match community c4_198_127 c4_198_128 c4_198_129 c4_198_130 c4_198_131 set community 0:1 route-map calculator permit 22606 match community c4_198_132 c4_198_133 c4_198_134 c4_198_135 c4_198_136 set community 0:1 route-map calculator permit 22607 match community c4_198_137 c4_198_138 c4_198_139 c4_198_140 c4_198_141 set community 0:1 route-map calculator permit 22608 match community c4_198_142 c4_198_143 c4_198_144 c4_198_145 c4_198_146 set community 0:1 route-map calculator permit 22609 match community c4_198_147 c4_198_148 c4_198_149 c4_198_150 c4_198_151 set community 0:1 route-map calculator permit 22610 match community c4_198_152 c4_198_153 c4_198_154 c4_198_155 c4_198_156 set community 0:1 route-map calculator permit 22611 match community c4_198_157 c4_198_158 c4_198_159 c4_198_160 c4_198_161 set community 0:1 route-map calculator permit 22612 match community c4_198_162 c4_198_163 c4_198_164 c4_198_165 c4_198_166 set community 0:1 route-map calculator permit 22613 match community c4_198_167 c4_198_168 c4_198_169 c4_198_170 c4_198_171 set community 0:1 route-map calculator permit 22614 match community c4_198_172 c4_198_173 c4_198_174 c4_198_175 c4_198_176 set community 0:1 route-map calculator permit 22615 match community c4_198_177 c4_198_178 c4_198_179 c4_198_180 c4_198_181 set community 0:1 route-map calculator permit 22616 match community c4_198_182 c4_198_183 c4_198_184 c4_198_185 c4_198_186 set community 0:1 route-map calculator permit 22617 match community c4_198_187 c4_198_188 c4_198_189 c4_198_190 c4_198_191 set community 0:1 route-map calculator permit 22618 match community c4_198_192 c4_198_193 c4_198_194 c4_198_195 c4_198_196 set community 0:1 route-map calculator permit 22619 match community c3_198_197 c4_198_197 c4_198_198 c4_199_100 c4_199_101 set community 0:1 route-map calculator permit 22620 match community c4_199_102 c4_199_103 c4_199_104 c4_199_105 c4_199_106 set community 0:1 route-map calculator permit 22621 match community c4_199_107 c4_199_108 c4_199_109 c4_199_110 c4_199_111 set community 0:1 route-map calculator permit 22622 match community c4_199_112 c4_199_113 c4_199_114 c4_199_115 c4_199_116 set community 0:1 route-map calculator permit 22623 match community c4_199_117 c4_199_118 c4_199_119 c4_199_120 c4_199_121 set community 0:1 route-map calculator permit 22624 match community c4_199_122 c4_199_123 c4_199_124 c4_199_125 c4_199_126 set community 0:1 route-map calculator permit 22625 match community c4_199_127 c4_199_128 c4_199_129 c4_199_130 c4_199_131 set community 0:1 route-map calculator permit 22626 match community c4_199_132 c4_199_133 c4_199_134 c4_199_135 c4_199_136 set community 0:1 route-map calculator permit 22627 match community c4_199_137 c4_199_138 c4_199_139 c4_199_140 c4_199_141 set community 0:1 route-map calculator permit 22628 match community c4_199_142 c4_199_143 c4_199_144 c4_199_145 c4_199_146 set community 0:1 route-map calculator permit 22629 match community c4_199_147 c4_199_148 c4_199_149 c4_199_150 c4_199_151 set community 0:1 route-map calculator permit 22630 match community c4_199_152 c4_199_153 c4_199_154 c4_199_155 c4_199_156 set community 0:1 route-map calculator permit 22631 match community c4_199_157 c4_199_158 c4_199_159 c4_199_160 c4_199_161 set community 0:1 route-map calculator permit 22632 match community c4_199_162 c4_199_163 c4_199_164 c4_199_165 c4_199_166 set community 0:1 route-map calculator permit 22633 match community c4_199_167 c4_199_168 c4_199_169 c4_199_170 c4_199_171 set community 0:1 route-map calculator permit 22634 match community c4_199_172 c4_199_173 c4_199_174 c4_199_175 c4_199_176 set community 0:1 route-map calculator permit 22635 match community c4_199_177 c4_199_178 c4_199_179 c4_199_180 c4_199_181 set community 0:1 route-map calculator permit 22636 match community c4_199_182 c4_199_183 c4_199_184 c4_199_185 c4_199_186 set community 0:1 route-map calculator permit 22637 match community c4_199_187 c4_199_188 c4_199_189 c4_199_190 c4_199_191 set community 0:1 route-map calculator permit 22638 match community c4_199_192 c4_199_193 c4_199_194 c4_199_195 c4_199_196 set community 0:1 route-map calculator permit 22639 match community c4_199_197 c3_199_198 c4_199_198 c4_199_199 c4_200_101 set community 0:1 route-map calculator permit 22640 match community c4_200_102 c4_200_103 c4_200_104 c4_200_105 c4_200_106 set community 0:1 route-map calculator permit 22641 match community c4_200_107 c4_200_108 c4_200_109 c4_200_110 c4_200_111 set community 0:1 route-map calculator permit 22642 match community c4_200_112 c4_200_113 c4_200_114 c4_200_115 c4_200_116 set community 0:1 route-map calculator permit 22643 match community c4_200_117 c4_200_118 c4_200_119 c4_200_120 c4_200_121 set community 0:1 route-map calculator permit 22644 match community c4_200_122 c4_200_123 c4_200_124 c4_200_125 c4_200_126 set community 0:1 route-map calculator permit 22645 match community c4_200_127 c4_200_128 c4_200_129 c4_200_130 c4_200_131 set community 0:1 route-map calculator permit 22646 match community c4_200_132 c4_200_133 c4_200_134 c4_200_135 c4_200_136 set community 0:1 route-map calculator permit 22647 match community c4_200_137 c4_200_138 c4_200_139 c4_200_140 c4_200_141 set community 0:1 route-map calculator permit 22648 match community c4_200_142 c4_200_143 c4_200_144 c4_200_145 c4_200_146 set community 0:1 route-map calculator permit 22649 match community c4_200_147 c4_200_148 c4_200_149 c4_200_150 c4_200_151 set community 0:1 route-map calculator permit 22650 match community c4_200_152 c4_200_153 c4_200_154 c4_200_155 c4_200_156 set community 0:1 route-map calculator permit 22651 match community c4_200_157 c4_200_158 c4_200_159 c4_200_160 c4_200_161 set community 0:1 route-map calculator permit 22652 match community c4_200_162 c4_200_163 c4_200_164 c4_200_165 c4_200_166 set community 0:1 route-map calculator permit 22653 match community c4_200_167 c4_200_168 c4_200_169 c4_200_170 c4_200_171 set community 0:1 route-map calculator permit 22654 match community c4_200_172 c4_200_173 c4_200_174 c4_200_175 c4_200_176 set community 0:1 route-map calculator permit 22655 match community c4_200_177 c4_200_178 c4_200_179 c4_200_180 c4_200_181 set community 0:1 route-map calculator permit 22656 match community c4_200_182 c4_200_183 c4_200_184 c4_200_185 c4_200_186 set community 0:1 route-map calculator permit 22657 match community c4_200_187 c4_200_188 c4_200_189 c4_200_190 c4_200_191 set community 0:1 route-map calculator permit 22658 match community c4_200_192 c4_200_193 c4_200_194 c4_200_195 c4_200_196 set community 0:1 route-map calculator permit 22659 match community c4_200_197 c4_200_198 c3_200_199 c4_200_199 c4_200_200 set community 0:1 route-map calculator permit 22660 match community c4_201_101 c4_201_102 c4_201_103 c4_201_104 c4_201_105 set community 0:1 route-map calculator permit 22661 match community c4_201_106 c4_201_107 c4_201_108 c4_201_109 c4_201_110 set community 0:1 route-map calculator permit 22662 match community c4_201_111 c4_201_112 c4_201_113 c4_201_114 c4_201_115 set community 0:1 route-map calculator permit 22663 match community c4_201_116 c4_201_117 c4_201_118 c4_201_119 c4_201_120 set community 0:1 route-map calculator permit 22664 match community c4_201_121 c4_201_122 c4_201_123 c4_201_124 c4_201_125 set community 0:1 route-map calculator permit 22665 match community c4_201_126 c4_201_127 c4_201_128 c4_201_129 c4_201_130 set community 0:1 route-map calculator permit 22666 match community c4_201_131 c4_201_132 c4_201_133 c4_201_134 c4_201_135 set community 0:1 route-map calculator permit 22667 match community c4_201_136 c4_201_137 c4_201_138 c4_201_139 c4_201_140 set community 0:1 route-map calculator permit 22668 match community c4_201_141 c4_201_142 c4_201_143 c4_201_144 c4_201_145 set community 0:1 route-map calculator permit 22669 match community c4_201_146 c4_201_147 c4_201_148 c4_201_149 c4_201_150 set community 0:1 route-map calculator permit 22670 match community c4_201_151 c4_201_152 c4_201_153 c4_201_154 c4_201_155 set community 0:1 route-map calculator permit 22671 match community c4_201_156 c4_201_157 c4_201_158 c4_201_159 c4_201_160 set community 0:1 route-map calculator permit 22672 match community c4_201_161 c4_201_162 c4_201_163 c4_201_164 c4_201_165 set community 0:1 route-map calculator permit 22673 match community c4_201_166 c4_201_167 c4_201_168 c4_201_169 c4_201_170 set community 0:1 route-map calculator permit 22674 match community c4_201_171 c4_201_172 c4_201_173 c4_201_174 c4_201_175 set community 0:1 route-map calculator permit 22675 match community c4_201_176 c4_201_177 c4_201_178 c4_201_179 c4_201_180 set community 0:1 route-map calculator permit 22676 match community c4_201_181 c4_201_182 c4_201_183 c4_201_184 c4_201_185 set community 0:1 route-map calculator permit 22677 match community c4_201_186 c4_201_187 c4_201_188 c4_201_189 c4_201_190 set community 0:1 route-map calculator permit 22678 match community c4_201_191 c4_201_192 c4_201_193 c4_201_194 c4_201_195 set community 0:1 route-map calculator permit 22679 match community c4_201_196 c4_201_197 c4_201_198 c4_201_199 c3_201_200 set community 0:1 route-map calculator permit 22680 match community c4_201_200 c4_201_201 c4_202_102 c4_202_103 c4_202_104 set community 0:1 route-map calculator permit 22681 match community c4_202_105 c4_202_106 c4_202_107 c4_202_108 c4_202_109 set community 0:1 route-map calculator permit 22682 match community c4_202_110 c4_202_111 c4_202_112 c4_202_113 c4_202_114 set community 0:1 route-map calculator permit 22683 match community c4_202_115 c4_202_116 c4_202_117 c4_202_118 c4_202_119 set community 0:1 route-map calculator permit 22684 match community c4_202_120 c4_202_121 c4_202_122 c4_202_123 c4_202_124 set community 0:1 route-map calculator permit 22685 match community c4_202_125 c4_202_126 c4_202_127 c4_202_128 c4_202_129 set community 0:1 route-map calculator permit 22686 match community c4_202_130 c4_202_131 c4_202_132 c4_202_133 c4_202_134 set community 0:1 route-map calculator permit 22687 match community c4_202_135 c4_202_136 c4_202_137 c4_202_138 c4_202_139 set community 0:1 route-map calculator permit 22688 match community c4_202_140 c4_202_141 c4_202_142 c4_202_143 c4_202_144 set community 0:1 route-map calculator permit 22689 match community c4_202_145 c4_202_146 c4_202_147 c4_202_148 c4_202_149 set community 0:1 route-map calculator permit 22690 match community c4_202_150 c4_202_151 c4_202_152 c4_202_153 c4_202_154 set community 0:1 route-map calculator permit 22691 match community c4_202_155 c4_202_156 c4_202_157 c4_202_158 c4_202_159 set community 0:1 route-map calculator permit 22692 match community c4_202_160 c4_202_161 c4_202_162 c4_202_163 c4_202_164 set community 0:1 route-map calculator permit 22693 match community c4_202_165 c4_202_166 c4_202_167 c4_202_168 c4_202_169 set community 0:1 route-map calculator permit 22694 match community c4_202_170 c4_202_171 c4_202_172 c4_202_173 c4_202_174 set community 0:1 route-map calculator permit 22695 match community c4_202_175 c4_202_176 c4_202_177 c4_202_178 c4_202_179 set community 0:1 route-map calculator permit 22696 match community c4_202_180 c4_202_181 c4_202_182 c4_202_183 c4_202_184 set community 0:1 route-map calculator permit 22697 match community c4_202_185 c4_202_186 c4_202_187 c4_202_188 c4_202_189 set community 0:1 route-map calculator permit 22698 match community c4_202_190 c4_202_191 c4_202_192 c4_202_193 c4_202_194 set community 0:1 route-map calculator permit 22699 match community c4_202_195 c4_202_196 c4_202_197 c4_202_198 c4_202_199 set community 0:1 route-map calculator permit 22700 match community c4_202_200 c3_202_201 c4_202_201 c4_202_202 c4_203_102 set community 0:1 route-map calculator permit 22701 match community c4_203_103 c4_203_104 c4_203_105 c4_203_106 c4_203_107 set community 0:1 route-map calculator permit 22702 match community c4_203_108 c4_203_109 c4_203_110 c4_203_111 c4_203_112 set community 0:1 route-map calculator permit 22703 match community c4_203_113 c4_203_114 c4_203_115 c4_203_116 c4_203_117 set community 0:1 route-map calculator permit 22704 match community c4_203_118 c4_203_119 c4_203_120 c4_203_121 c4_203_122 set community 0:1 route-map calculator permit 22705 match community c4_203_123 c4_203_124 c4_203_125 c4_203_126 c4_203_127 set community 0:1 route-map calculator permit 22706 match community c4_203_128 c4_203_129 c4_203_130 c4_203_131 c4_203_132 set community 0:1 route-map calculator permit 22707 match community c4_203_133 c4_203_134 c4_203_135 c4_203_136 c4_203_137 set community 0:1 route-map calculator permit 22708 match community c4_203_138 c4_203_139 c4_203_140 c4_203_141 c4_203_142 set community 0:1 route-map calculator permit 22709 match community c4_203_143 c4_203_144 c4_203_145 c4_203_146 c4_203_147 set community 0:1 route-map calculator permit 22710 match community c4_203_148 c4_203_149 c4_203_150 c4_203_151 c4_203_152 set community 0:1 route-map calculator permit 22711 match community c4_203_153 c4_203_154 c4_203_155 c4_203_156 c4_203_157 set community 0:1 route-map calculator permit 22712 match community c4_203_158 c4_203_159 c4_203_160 c4_203_161 c4_203_162 set community 0:1 route-map calculator permit 22713 match community c4_203_163 c4_203_164 c4_203_165 c4_203_166 c4_203_167 set community 0:1 route-map calculator permit 22714 match community c4_203_168 c4_203_169 c4_203_170 c4_203_171 c4_203_172 set community 0:1 route-map calculator permit 22715 match community c4_203_173 c4_203_174 c4_203_175 c4_203_176 c4_203_177 set community 0:1 route-map calculator permit 22716 match community c4_203_178 c4_203_179 c4_203_180 c4_203_181 c4_203_182 set community 0:1 route-map calculator permit 22717 match community c4_203_183 c4_203_184 c4_203_185 c4_203_186 c4_203_187 set community 0:1 route-map calculator permit 22718 match community c4_203_188 c4_203_189 c4_203_190 c4_203_191 c4_203_192 set community 0:1 route-map calculator permit 22719 match community c4_203_193 c4_203_194 c4_203_195 c4_203_196 c4_203_197 set community 0:1 route-map calculator permit 22720 match community c4_203_198 c4_203_199 c4_203_200 c4_203_201 c3_203_202 set community 0:1 route-map calculator permit 22721 match community c4_203_202 c4_203_203 c4_204_103 c4_204_104 c4_204_105 set community 0:1 route-map calculator permit 22722 match community c4_204_106 c4_204_107 c4_204_108 c4_204_109 c4_204_110 set community 0:1 route-map calculator permit 22723 match community c4_204_111 c4_204_112 c4_204_113 c4_204_114 c4_204_115 set community 0:1 route-map calculator permit 22724 match community c4_204_116 c4_204_117 c4_204_118 c4_204_119 c4_204_120 set community 0:1 route-map calculator permit 22725 match community c4_204_121 c4_204_122 c4_204_123 c4_204_124 c4_204_125 set community 0:1 route-map calculator permit 22726 match community c4_204_126 c4_204_127 c4_204_128 c4_204_129 c4_204_130 set community 0:1 route-map calculator permit 22727 match community c4_204_131 c4_204_132 c4_204_133 c4_204_134 c4_204_135 set community 0:1 route-map calculator permit 22728 match community c4_204_136 c4_204_137 c4_204_138 c4_204_139 c4_204_140 set community 0:1 route-map calculator permit 22729 match community c4_204_141 c4_204_142 c4_204_143 c4_204_144 c4_204_145 set community 0:1 route-map calculator permit 22730 match community c4_204_146 c4_204_147 c4_204_148 c4_204_149 c4_204_150 set community 0:1 route-map calculator permit 22731 match community c4_204_151 c4_204_152 c4_204_153 c4_204_154 c4_204_155 set community 0:1 route-map calculator permit 22732 match community c4_204_156 c4_204_157 c4_204_158 c4_204_159 c4_204_160 set community 0:1 route-map calculator permit 22733 match community c4_204_161 c4_204_162 c4_204_163 c4_204_164 c4_204_165 set community 0:1 route-map calculator permit 22734 match community c4_204_166 c4_204_167 c4_204_168 c4_204_169 c4_204_170 set community 0:1 route-map calculator permit 22735 match community c4_204_171 c4_204_172 c4_204_173 c4_204_174 c4_204_175 set community 0:1 route-map calculator permit 22736 match community c4_204_176 c4_204_177 c4_204_178 c4_204_179 c4_204_180 set community 0:1 route-map calculator permit 22737 match community c4_204_181 c4_204_182 c4_204_183 c4_204_184 c4_204_185 set community 0:1 route-map calculator permit 22738 match community c4_204_186 c4_204_187 c4_204_188 c4_204_189 c4_204_190 set community 0:1 route-map calculator permit 22739 match community c4_204_191 c4_204_192 c4_204_193 c4_204_194 c4_204_195 set community 0:1 route-map calculator permit 22740 match community c4_204_196 c4_204_197 c4_204_198 c4_204_199 c4_204_200 set community 0:1 route-map calculator permit 22741 match community c4_204_201 c4_204_202 c3_204_203 c4_204_203 c4_204_204 set community 0:1 route-map calculator permit 22742 match community c4_205_103 c4_205_104 c4_205_105 c4_205_106 c4_205_107 set community 0:1 route-map calculator permit 22743 match community c4_205_108 c4_205_109 c4_205_110 c4_205_111 c4_205_112 set community 0:1 route-map calculator permit 22744 match community c4_205_113 c4_205_114 c4_205_115 c4_205_116 c4_205_117 set community 0:1 route-map calculator permit 22745 match community c4_205_118 c4_205_119 c4_205_120 c4_205_121 c4_205_122 set community 0:1 route-map calculator permit 22746 match community c4_205_123 c4_205_124 c4_205_125 c4_205_126 c4_205_127 set community 0:1 route-map calculator permit 22747 match community c4_205_128 c4_205_129 c4_205_130 c4_205_131 c4_205_132 set community 0:1 route-map calculator permit 22748 match community c4_205_133 c4_205_134 c4_205_135 c4_205_136 c4_205_137 set community 0:1 route-map calculator permit 22749 match community c4_205_138 c4_205_139 c4_205_140 c4_205_141 c4_205_142 set community 0:1 route-map calculator permit 22750 match community c4_205_143 c4_205_144 c4_205_145 c4_205_146 c4_205_147 set community 0:1 route-map calculator permit 22751 match community c4_205_148 c4_205_149 c4_205_150 c4_205_151 c4_205_152 set community 0:1 route-map calculator permit 22752 match community c4_205_153 c4_205_154 c4_205_155 c4_205_156 c4_205_157 set community 0:1 route-map calculator permit 22753 match community c4_205_158 c4_205_159 c4_205_160 c4_205_161 c4_205_162 set community 0:1 route-map calculator permit 22754 match community c4_205_163 c4_205_164 c4_205_165 c4_205_166 c4_205_167 set community 0:1 route-map calculator permit 22755 match community c4_205_168 c4_205_169 c4_205_170 c4_205_171 c4_205_172 set community 0:1 route-map calculator permit 22756 match community c4_205_173 c4_205_174 c4_205_175 c4_205_176 c4_205_177 set community 0:1 route-map calculator permit 22757 match community c4_205_178 c4_205_179 c4_205_180 c4_205_181 c4_205_182 set community 0:1 route-map calculator permit 22758 match community c4_205_183 c4_205_184 c4_205_185 c4_205_186 c4_205_187 set community 0:1 route-map calculator permit 22759 match community c4_205_188 c4_205_189 c4_205_190 c4_205_191 c4_205_192 set community 0:1 route-map calculator permit 22760 match community c4_205_193 c4_205_194 c4_205_195 c4_205_196 c4_205_197 set community 0:1 route-map calculator permit 22761 match community c4_205_198 c4_205_199 c4_205_200 c4_205_201 c4_205_202 set community 0:1 route-map calculator permit 22762 match community c4_205_203 c3_205_204 c4_205_204 c4_205_205 c4_206_104 set community 0:1 route-map calculator permit 22763 match community c4_206_105 c4_206_106 c4_206_107 c4_206_108 c4_206_109 set community 0:1 route-map calculator permit 22764 match community c4_206_110 c4_206_111 c4_206_112 c4_206_113 c4_206_114 set community 0:1 route-map calculator permit 22765 match community c4_206_115 c4_206_116 c4_206_117 c4_206_118 c4_206_119 set community 0:1 route-map calculator permit 22766 match community c4_206_120 c4_206_121 c4_206_122 c4_206_123 c4_206_124 set community 0:1 route-map calculator permit 22767 match community c4_206_125 c4_206_126 c4_206_127 c4_206_128 c4_206_129 set community 0:1 route-map calculator permit 22768 match community c4_206_130 c4_206_131 c4_206_132 c4_206_133 c4_206_134 set community 0:1 route-map calculator permit 22769 match community c4_206_135 c4_206_136 c4_206_137 c4_206_138 c4_206_139 set community 0:1 route-map calculator permit 22770 match community c4_206_140 c4_206_141 c4_206_142 c4_206_143 c4_206_144 set community 0:1 route-map calculator permit 22771 match community c4_206_145 c4_206_146 c4_206_147 c4_206_148 c4_206_149 set community 0:1 route-map calculator permit 22772 match community c4_206_150 c4_206_151 c4_206_152 c4_206_153 c4_206_154 set community 0:1 route-map calculator permit 22773 match community c4_206_155 c4_206_156 c4_206_157 c4_206_158 c4_206_159 set community 0:1 route-map calculator permit 22774 match community c4_206_160 c4_206_161 c4_206_162 c4_206_163 c4_206_164 set community 0:1 route-map calculator permit 22775 match community c4_206_165 c4_206_166 c4_206_167 c4_206_168 c4_206_169 set community 0:1 route-map calculator permit 22776 match community c4_206_170 c4_206_171 c4_206_172 c4_206_173 c4_206_174 set community 0:1 route-map calculator permit 22777 match community c4_206_175 c4_206_176 c4_206_177 c4_206_178 c4_206_179 set community 0:1 route-map calculator permit 22778 match community c4_206_180 c4_206_181 c4_206_182 c4_206_183 c4_206_184 set community 0:1 route-map calculator permit 22779 match community c4_206_185 c4_206_186 c4_206_187 c4_206_188 c4_206_189 set community 0:1 route-map calculator permit 22780 match community c4_206_190 c4_206_191 c4_206_192 c4_206_193 c4_206_194 set community 0:1 route-map calculator permit 22781 match community c4_206_195 c4_206_196 c4_206_197 c4_206_198 c4_206_199 set community 0:1 route-map calculator permit 22782 match community c4_206_200 c4_206_201 c4_206_202 c4_206_203 c4_206_204 set community 0:1 route-map calculator permit 22783 match community c3_206_205 c4_206_205 c4_206_206 c4_207_104 c4_207_105 set community 0:1 route-map calculator permit 22784 match community c4_207_106 c4_207_107 c4_207_108 c4_207_109 c4_207_110 set community 0:1 route-map calculator permit 22785 match community c4_207_111 c4_207_112 c4_207_113 c4_207_114 c4_207_115 set community 0:1 route-map calculator permit 22786 match community c4_207_116 c4_207_117 c4_207_118 c4_207_119 c4_207_120 set community 0:1 route-map calculator permit 22787 match community c4_207_121 c4_207_122 c4_207_123 c4_207_124 c4_207_125 set community 0:1 route-map calculator permit 22788 match community c4_207_126 c4_207_127 c4_207_128 c4_207_129 c4_207_130 set community 0:1 route-map calculator permit 22789 match community c4_207_131 c4_207_132 c4_207_133 c4_207_134 c4_207_135 set community 0:1 route-map calculator permit 22790 match community c4_207_136 c4_207_137 c4_207_138 c4_207_139 c4_207_140 set community 0:1 route-map calculator permit 22791 match community c4_207_141 c4_207_142 c4_207_143 c4_207_144 c4_207_145 set community 0:1 route-map calculator permit 22792 match community c4_207_146 c4_207_147 c4_207_148 c4_207_149 c4_207_150 set community 0:1 route-map calculator permit 22793 match community c4_207_151 c4_207_152 c4_207_153 c4_207_154 c4_207_155 set community 0:1 route-map calculator permit 22794 match community c4_207_156 c4_207_157 c4_207_158 c4_207_159 c4_207_160 set community 0:1 route-map calculator permit 22795 match community c4_207_161 c4_207_162 c4_207_163 c4_207_164 c4_207_165 set community 0:1 route-map calculator permit 22796 match community c4_207_166 c4_207_167 c4_207_168 c4_207_169 c4_207_170 set community 0:1 route-map calculator permit 22797 match community c4_207_171 c4_207_172 c4_207_173 c4_207_174 c4_207_175 set community 0:1 route-map calculator permit 22798 match community c4_207_176 c4_207_177 c4_207_178 c4_207_179 c4_207_180 set community 0:1 route-map calculator permit 22799 match community c4_207_181 c4_207_182 c4_207_183 c4_207_184 c4_207_185 set community 0:1 route-map calculator permit 22800 match community c4_207_186 c4_207_187 c4_207_188 c4_207_189 c4_207_190 set community 0:1 route-map calculator permit 22801 match community c4_207_191 c4_207_192 c4_207_193 c4_207_194 c4_207_195 set community 0:1 route-map calculator permit 22802 match community c4_207_196 c4_207_197 c4_207_198 c4_207_199 c4_207_200 set community 0:1 route-map calculator permit 22803 match community c4_207_201 c4_207_202 c4_207_203 c4_207_204 c4_207_205 set community 0:1 route-map calculator permit 22804 match community c3_207_206 c4_207_206 c4_207_207 c4_208_105 c4_208_106 set community 0:1 route-map calculator permit 22805 match community c4_208_107 c4_208_108 c4_208_109 c4_208_110 c4_208_111 set community 0:1 route-map calculator permit 22806 match community c4_208_112 c4_208_113 c4_208_114 c4_208_115 c4_208_116 set community 0:1 route-map calculator permit 22807 match community c4_208_117 c4_208_118 c4_208_119 c4_208_120 c4_208_121 set community 0:1 route-map calculator permit 22808 match community c4_208_122 c4_208_123 c4_208_124 c4_208_125 c4_208_126 set community 0:1 route-map calculator permit 22809 match community c4_208_127 c4_208_128 c4_208_129 c4_208_130 c4_208_131 set community 0:1 route-map calculator permit 22810 match community c4_208_132 c4_208_133 c4_208_134 c4_208_135 c4_208_136 set community 0:1 route-map calculator permit 22811 match community c4_208_137 c4_208_138 c4_208_139 c4_208_140 c4_208_141 set community 0:1 route-map calculator permit 22812 match community c4_208_142 c4_208_143 c4_208_144 c4_208_145 c4_208_146 set community 0:1 route-map calculator permit 22813 match community c4_208_147 c4_208_148 c4_208_149 c4_208_150 c4_208_151 set community 0:1 route-map calculator permit 22814 match community c4_208_152 c4_208_153 c4_208_154 c4_208_155 c4_208_156 set community 0:1 route-map calculator permit 22815 match community c4_208_157 c4_208_158 c4_208_159 c4_208_160 c4_208_161 set community 0:1 route-map calculator permit 22816 match community c4_208_162 c4_208_163 c4_208_164 c4_208_165 c4_208_166 set community 0:1 route-map calculator permit 22817 match community c4_208_167 c4_208_168 c4_208_169 c4_208_170 c4_208_171 set community 0:1 route-map calculator permit 22818 match community c4_208_172 c4_208_173 c4_208_174 c4_208_175 c4_208_176 set community 0:1 route-map calculator permit 22819 match community c4_208_177 c4_208_178 c4_208_179 c4_208_180 c4_208_181 set community 0:1 route-map calculator permit 22820 match community c4_208_182 c4_208_183 c4_208_184 c4_208_185 c4_208_186 set community 0:1 route-map calculator permit 22821 match community c4_208_187 c4_208_188 c4_208_189 c4_208_190 c4_208_191 set community 0:1 route-map calculator permit 22822 match community c4_208_192 c4_208_193 c4_208_194 c4_208_195 c4_208_196 set community 0:1 route-map calculator permit 22823 match community c4_208_197 c4_208_198 c4_208_199 c4_208_200 c4_208_201 set community 0:1 route-map calculator permit 22824 match community c4_208_202 c4_208_203 c4_208_204 c4_208_205 c4_208_206 set community 0:1 route-map calculator permit 22825 match community c3_208_207 c4_208_207 c4_208_208 c4_209_105 c4_209_106 set community 0:1 route-map calculator permit 22826 match community c4_209_107 c4_209_108 c4_209_109 c4_209_110 c4_209_111 set community 0:1 route-map calculator permit 22827 match community c4_209_112 c4_209_113 c4_209_114 c4_209_115 c4_209_116 set community 0:1 route-map calculator permit 22828 match community c4_209_117 c4_209_118 c4_209_119 c4_209_120 c4_209_121 set community 0:1 route-map calculator permit 22829 match community c4_209_122 c4_209_123 c4_209_124 c4_209_125 c4_209_126 set community 0:1 route-map calculator permit 22830 match community c4_209_127 c4_209_128 c4_209_129 c4_209_130 c4_209_131 set community 0:1 route-map calculator permit 22831 match community c4_209_132 c4_209_133 c4_209_134 c4_209_135 c4_209_136 set community 0:1 route-map calculator permit 22832 match community c4_209_137 c4_209_138 c4_209_139 c4_209_140 c4_209_141 set community 0:1 route-map calculator permit 22833 match community c4_209_142 c4_209_143 c4_209_144 c4_209_145 c4_209_146 set community 0:1 route-map calculator permit 22834 match community c4_209_147 c4_209_148 c4_209_149 c4_209_150 c4_209_151 set community 0:1 route-map calculator permit 22835 match community c4_209_152 c4_209_153 c4_209_154 c4_209_155 c4_209_156 set community 0:1 route-map calculator permit 22836 match community c4_209_157 c4_209_158 c4_209_159 c4_209_160 c4_209_161 set community 0:1 route-map calculator permit 22837 match community c4_209_162 c4_209_163 c4_209_164 c4_209_165 c4_209_166 set community 0:1 route-map calculator permit 22838 match community c4_209_167 c4_209_168 c4_209_169 c4_209_170 c4_209_171 set community 0:1 route-map calculator permit 22839 match community c4_209_172 c4_209_173 c4_209_174 c4_209_175 c4_209_176 set community 0:1 route-map calculator permit 22840 match community c4_209_177 c4_209_178 c4_209_179 c4_209_180 c4_209_181 set community 0:1 route-map calculator permit 22841 match community c4_209_182 c4_209_183 c4_209_184 c4_209_185 c4_209_186 set community 0:1 route-map calculator permit 22842 match community c4_209_187 c4_209_188 c4_209_189 c4_209_190 c4_209_191 set community 0:1 route-map calculator permit 22843 match community c4_209_192 c4_209_193 c4_209_194 c4_209_195 c4_209_196 set community 0:1 route-map calculator permit 22844 match community c4_209_197 c4_209_198 c4_209_199 c4_209_200 c4_209_201 set community 0:1 route-map calculator permit 22845 match community c4_209_202 c4_209_203 c4_209_204 c4_209_205 c4_209_206 set community 0:1 route-map calculator permit 22846 match community c4_209_207 c3_209_208 c4_209_208 c4_209_209 c4_210_106 set community 0:1 route-map calculator permit 22847 match community c4_210_107 c4_210_108 c4_210_109 c4_210_110 c4_210_111 set community 0:1 route-map calculator permit 22848 match community c4_210_112 c4_210_113 c4_210_114 c4_210_115 c4_210_116 set community 0:1 route-map calculator permit 22849 match community c4_210_117 c4_210_118 c4_210_119 c4_210_120 c4_210_121 set community 0:1 route-map calculator permit 22850 match community c4_210_122 c4_210_123 c4_210_124 c4_210_125 c4_210_126 set community 0:1 route-map calculator permit 22851 match community c4_210_127 c4_210_128 c4_210_129 c4_210_130 c4_210_131 set community 0:1 route-map calculator permit 22852 match community c4_210_132 c4_210_133 c4_210_134 c4_210_135 c4_210_136 set community 0:1 route-map calculator permit 22853 match community c4_210_137 c4_210_138 c4_210_139 c4_210_140 c4_210_141 set community 0:1 route-map calculator permit 22854 match community c4_210_142 c4_210_143 c4_210_144 c4_210_145 c4_210_146 set community 0:1 route-map calculator permit 22855 match community c4_210_147 c4_210_148 c4_210_149 c4_210_150 c4_210_151 set community 0:1 route-map calculator permit 22856 match community c4_210_152 c4_210_153 c4_210_154 c4_210_155 c4_210_156 set community 0:1 route-map calculator permit 22857 match community c4_210_157 c4_210_158 c4_210_159 c4_210_160 c4_210_161 set community 0:1 route-map calculator permit 22858 match community c4_210_162 c4_210_163 c4_210_164 c4_210_165 c4_210_166 set community 0:1 route-map calculator permit 22859 match community c4_210_167 c4_210_168 c4_210_169 c4_210_170 c4_210_171 set community 0:1 route-map calculator permit 22860 match community c4_210_172 c4_210_173 c4_210_174 c4_210_175 c4_210_176 set community 0:1 route-map calculator permit 22861 match community c4_210_177 c4_210_178 c4_210_179 c4_210_180 c4_210_181 set community 0:1 route-map calculator permit 22862 match community c4_210_182 c4_210_183 c4_210_184 c4_210_185 c4_210_186 set community 0:1 route-map calculator permit 22863 match community c4_210_187 c4_210_188 c4_210_189 c4_210_190 c4_210_191 set community 0:1 route-map calculator permit 22864 match community c4_210_192 c4_210_193 c4_210_194 c4_210_195 c4_210_196 set community 0:1 route-map calculator permit 22865 match community c4_210_197 c4_210_198 c4_210_199 c4_210_200 c4_210_201 set community 0:1 route-map calculator permit 22866 match community c4_210_202 c4_210_203 c4_210_204 c4_210_205 c4_210_206 set community 0:1 route-map calculator permit 22867 match community c4_210_207 c4_210_208 c3_210_209 c4_210_209 c4_210_210 set community 0:1 route-map calculator permit 22868 match community c4_211_106 c4_211_107 c4_211_108 c4_211_109 c4_211_110 set community 0:1 route-map calculator permit 22869 match community c4_211_111 c4_211_112 c4_211_113 c4_211_114 c4_211_115 set community 0:1 route-map calculator permit 22870 match community c4_211_116 c4_211_117 c4_211_118 c4_211_119 c4_211_120 set community 0:1 route-map calculator permit 22871 match community c4_211_121 c4_211_122 c4_211_123 c4_211_124 c4_211_125 set community 0:1 route-map calculator permit 22872 match community c4_211_126 c4_211_127 c4_211_128 c4_211_129 c4_211_130 set community 0:1 route-map calculator permit 22873 match community c4_211_131 c4_211_132 c4_211_133 c4_211_134 c4_211_135 set community 0:1 route-map calculator permit 22874 match community c4_211_136 c4_211_137 c4_211_138 c4_211_139 c4_211_140 set community 0:1 route-map calculator permit 22875 match community c4_211_141 c4_211_142 c4_211_143 c4_211_144 c4_211_145 set community 0:1 route-map calculator permit 22876 match community c4_211_146 c4_211_147 c4_211_148 c4_211_149 c4_211_150 set community 0:1 route-map calculator permit 22877 match community c4_211_151 c4_211_152 c4_211_153 c4_211_154 c4_211_155 set community 0:1 route-map calculator permit 22878 match community c4_211_156 c4_211_157 c4_211_158 c4_211_159 c4_211_160 set community 0:1 route-map calculator permit 22879 match community c4_211_161 c4_211_162 c4_211_163 c4_211_164 c4_211_165 set community 0:1 route-map calculator permit 22880 match community c4_211_166 c4_211_167 c4_211_168 c4_211_169 c4_211_170 set community 0:1 route-map calculator permit 22881 match community c4_211_171 c4_211_172 c4_211_173 c4_211_174 c4_211_175 set community 0:1 route-map calculator permit 22882 match community c4_211_176 c4_211_177 c4_211_178 c4_211_179 c4_211_180 set community 0:1 route-map calculator permit 22883 match community c4_211_181 c4_211_182 c4_211_183 c4_211_184 c4_211_185 set community 0:1 route-map calculator permit 22884 match community c4_211_186 c4_211_187 c4_211_188 c4_211_189 c4_211_190 set community 0:1 route-map calculator permit 22885 match community c4_211_191 c4_211_192 c4_211_193 c4_211_194 c4_211_195 set community 0:1 route-map calculator permit 22886 match community c4_211_196 c4_211_197 c4_211_198 c4_211_199 c4_211_200 set community 0:1 route-map calculator permit 22887 match community c4_211_201 c4_211_202 c4_211_203 c4_211_204 c4_211_205 set community 0:1 route-map calculator permit 22888 match community c4_211_206 c4_211_207 c4_211_208 c4_211_209 c3_211_210 set community 0:1 route-map calculator permit 22889 match community c4_211_210 c4_211_211 c4_212_107 c4_212_108 c4_212_109 set community 0:1 route-map calculator permit 22890 match community c4_212_110 c4_212_111 c4_212_112 c4_212_113 c4_212_114 set community 0:1 route-map calculator permit 22891 match community c4_212_115 c4_212_116 c4_212_117 c4_212_118 c4_212_119 set community 0:1 route-map calculator permit 22892 match community c4_212_120 c4_212_121 c4_212_122 c4_212_123 c4_212_124 set community 0:1 route-map calculator permit 22893 match community c4_212_125 c4_212_126 c4_212_127 c4_212_128 c4_212_129 set community 0:1 route-map calculator permit 22894 match community c4_212_130 c4_212_131 c4_212_132 c4_212_133 c4_212_134 set community 0:1 route-map calculator permit 22895 match community c4_212_135 c4_212_136 c4_212_137 c4_212_138 c4_212_139 set community 0:1 route-map calculator permit 22896 match community c4_212_140 c4_212_141 c4_212_142 c4_212_143 c4_212_144 set community 0:1 route-map calculator permit 22897 match community c4_212_145 c4_212_146 c4_212_147 c4_212_148 c4_212_149 set community 0:1 route-map calculator permit 22898 match community c4_212_150 c4_212_151 c4_212_152 c4_212_153 c4_212_154 set community 0:1 route-map calculator permit 22899 match community c4_212_155 c4_212_156 c4_212_157 c4_212_158 c4_212_159 set community 0:1 route-map calculator permit 22900 match community c4_212_160 c4_212_161 c4_212_162 c4_212_163 c4_212_164 set community 0:1 route-map calculator permit 22901 match community c4_212_165 c4_212_166 c4_212_167 c4_212_168 c4_212_169 set community 0:1 route-map calculator permit 22902 match community c4_212_170 c4_212_171 c4_212_172 c4_212_173 c4_212_174 set community 0:1 route-map calculator permit 22903 match community c4_212_175 c4_212_176 c4_212_177 c4_212_178 c4_212_179 set community 0:1 route-map calculator permit 22904 match community c4_212_180 c4_212_181 c4_212_182 c4_212_183 c4_212_184 set community 0:1 route-map calculator permit 22905 match community c4_212_185 c4_212_186 c4_212_187 c4_212_188 c4_212_189 set community 0:1 route-map calculator permit 22906 match community c4_212_190 c4_212_191 c4_212_192 c4_212_193 c4_212_194 set community 0:1 route-map calculator permit 22907 match community c4_212_195 c4_212_196 c4_212_197 c4_212_198 c4_212_199 set community 0:1 route-map calculator permit 22908 match community c4_212_200 c4_212_201 c4_212_202 c4_212_203 c4_212_204 set community 0:1 route-map calculator permit 22909 match community c4_212_205 c4_212_206 c4_212_207 c4_212_208 c4_212_209 set community 0:1 route-map calculator permit 22910 match community c4_212_210 c3_212_211 c4_212_211 c4_212_212 c4_213_107 set community 0:1 route-map calculator permit 22911 match community c4_213_108 c4_213_109 c4_213_110 c4_213_111 c4_213_112 set community 0:1 route-map calculator permit 22912 match community c4_213_113 c4_213_114 c4_213_115 c4_213_116 c4_213_117 set community 0:1 route-map calculator permit 22913 match community c4_213_118 c4_213_119 c4_213_120 c4_213_121 c4_213_122 set community 0:1 route-map calculator permit 22914 match community c4_213_123 c4_213_124 c4_213_125 c4_213_126 c4_213_127 set community 0:1 route-map calculator permit 22915 match community c4_213_128 c4_213_129 c4_213_130 c4_213_131 c4_213_132 set community 0:1 route-map calculator permit 22916 match community c4_213_133 c4_213_134 c4_213_135 c4_213_136 c4_213_137 set community 0:1 route-map calculator permit 22917 match community c4_213_138 c4_213_139 c4_213_140 c4_213_141 c4_213_142 set community 0:1 route-map calculator permit 22918 match community c4_213_143 c4_213_144 c4_213_145 c4_213_146 c4_213_147 set community 0:1 route-map calculator permit 22919 match community c4_213_148 c4_213_149 c4_213_150 c4_213_151 c4_213_152 set community 0:1 route-map calculator permit 22920 match community c4_213_153 c4_213_154 c4_213_155 c4_213_156 c4_213_157 set community 0:1 route-map calculator permit 22921 match community c4_213_158 c4_213_159 c4_213_160 c4_213_161 c4_213_162 set community 0:1 route-map calculator permit 22922 match community c4_213_163 c4_213_164 c4_213_165 c4_213_166 c4_213_167 set community 0:1 route-map calculator permit 22923 match community c4_213_168 c4_213_169 c4_213_170 c4_213_171 c4_213_172 set community 0:1 route-map calculator permit 22924 match community c4_213_173 c4_213_174 c4_213_175 c4_213_176 c4_213_177 set community 0:1 route-map calculator permit 22925 match community c4_213_178 c4_213_179 c4_213_180 c4_213_181 c4_213_182 set community 0:1 route-map calculator permit 22926 match community c4_213_183 c4_213_184 c4_213_185 c4_213_186 c4_213_187 set community 0:1 route-map calculator permit 22927 match community c4_213_188 c4_213_189 c4_213_190 c4_213_191 c4_213_192 set community 0:1 route-map calculator permit 22928 match community c4_213_193 c4_213_194 c4_213_195 c4_213_196 c4_213_197 set community 0:1 route-map calculator permit 22929 match community c4_213_198 c4_213_199 c4_213_200 c4_213_201 c4_213_202 set community 0:1 route-map calculator permit 22930 match community c4_213_203 c4_213_204 c4_213_205 c4_213_206 c4_213_207 set community 0:1 route-map calculator permit 22931 match community c4_213_208 c4_213_209 c4_213_210 c4_213_211 c3_213_212 set community 0:1 route-map calculator permit 22932 match community c4_213_212 c4_213_213 c4_214_108 c4_214_109 c4_214_110 set community 0:1 route-map calculator permit 22933 match community c4_214_111 c4_214_112 c4_214_113 c4_214_114 c4_214_115 set community 0:1 route-map calculator permit 22934 match community c4_214_116 c4_214_117 c4_214_118 c4_214_119 c4_214_120 set community 0:1 route-map calculator permit 22935 match community c4_214_121 c4_214_122 c4_214_123 c4_214_124 c4_214_125 set community 0:1 route-map calculator permit 22936 match community c4_214_126 c4_214_127 c4_214_128 c4_214_129 c4_214_130 set community 0:1 route-map calculator permit 22937 match community c4_214_131 c4_214_132 c4_214_133 c4_214_134 c4_214_135 set community 0:1 route-map calculator permit 22938 match community c4_214_136 c4_214_137 c4_214_138 c4_214_139 c4_214_140 set community 0:1 route-map calculator permit 22939 match community c4_214_141 c4_214_142 c4_214_143 c4_214_144 c4_214_145 set community 0:1 route-map calculator permit 22940 match community c4_214_146 c4_214_147 c4_214_148 c4_214_149 c4_214_150 set community 0:1 route-map calculator permit 22941 match community c4_214_151 c4_214_152 c4_214_153 c4_214_154 c4_214_155 set community 0:1 route-map calculator permit 22942 match community c4_214_156 c4_214_157 c4_214_158 c4_214_159 c4_214_160 set community 0:1 route-map calculator permit 22943 match community c4_214_161 c4_214_162 c4_214_163 c4_214_164 c4_214_165 set community 0:1 route-map calculator permit 22944 match community c4_214_166 c4_214_167 c4_214_168 c4_214_169 c4_214_170 set community 0:1 route-map calculator permit 22945 match community c4_214_171 c4_214_172 c4_214_173 c4_214_174 c4_214_175 set community 0:1 route-map calculator permit 22946 match community c4_214_176 c4_214_177 c4_214_178 c4_214_179 c4_214_180 set community 0:1 route-map calculator permit 22947 match community c4_214_181 c4_214_182 c4_214_183 c4_214_184 c4_214_185 set community 0:1 route-map calculator permit 22948 match community c4_214_186 c4_214_187 c4_214_188 c4_214_189 c4_214_190 set community 0:1 route-map calculator permit 22949 match community c4_214_191 c4_214_192 c4_214_193 c4_214_194 c4_214_195 set community 0:1 route-map calculator permit 22950 match community c4_214_196 c4_214_197 c4_214_198 c4_214_199 c4_214_200 set community 0:1 route-map calculator permit 22951 match community c4_214_201 c4_214_202 c4_214_203 c4_214_204 c4_214_205 set community 0:1 route-map calculator permit 22952 match community c4_214_206 c4_214_207 c4_214_208 c4_214_209 c4_214_210 set community 0:1 route-map calculator permit 22953 match community c4_214_211 c4_214_212 c3_214_213 c4_214_213 c4_214_214 set community 0:1 route-map calculator permit 22954 match community c4_215_108 c4_215_109 c4_215_110 c4_215_111 c4_215_112 set community 0:1 route-map calculator permit 22955 match community c4_215_113 c4_215_114 c4_215_115 c4_215_116 c4_215_117 set community 0:1 route-map calculator permit 22956 match community c4_215_118 c4_215_119 c4_215_120 c4_215_121 c4_215_122 set community 0:1 route-map calculator permit 22957 match community c4_215_123 c4_215_124 c4_215_125 c4_215_126 c4_215_127 set community 0:1 route-map calculator permit 22958 match community c4_215_128 c4_215_129 c4_215_130 c4_215_131 c4_215_132 set community 0:1 route-map calculator permit 22959 match community c4_215_133 c4_215_134 c4_215_135 c4_215_136 c4_215_137 set community 0:1 route-map calculator permit 22960 match community c4_215_138 c4_215_139 c4_215_140 c4_215_141 c4_215_142 set community 0:1 route-map calculator permit 22961 match community c4_215_143 c4_215_144 c4_215_145 c4_215_146 c4_215_147 set community 0:1 route-map calculator permit 22962 match community c4_215_148 c4_215_149 c4_215_150 c4_215_151 c4_215_152 set community 0:1 route-map calculator permit 22963 match community c4_215_153 c4_215_154 c4_215_155 c4_215_156 c4_215_157 set community 0:1 route-map calculator permit 22964 match community c4_215_158 c4_215_159 c4_215_160 c4_215_161 c4_215_162 set community 0:1 route-map calculator permit 22965 match community c4_215_163 c4_215_164 c4_215_165 c4_215_166 c4_215_167 set community 0:1 route-map calculator permit 22966 match community c4_215_168 c4_215_169 c4_215_170 c4_215_171 c4_215_172 set community 0:1 route-map calculator permit 22967 match community c4_215_173 c4_215_174 c4_215_175 c4_215_176 c4_215_177 set community 0:1 route-map calculator permit 22968 match community c4_215_178 c4_215_179 c4_215_180 c4_215_181 c4_215_182 set community 0:1 route-map calculator permit 22969 match community c4_215_183 c4_215_184 c4_215_185 c4_215_186 c4_215_187 set community 0:1 route-map calculator permit 22970 match community c4_215_188 c4_215_189 c4_215_190 c4_215_191 c4_215_192 set community 0:1 route-map calculator permit 22971 match community c4_215_193 c4_215_194 c4_215_195 c4_215_196 c4_215_197 set community 0:1 route-map calculator permit 22972 match community c4_215_198 c4_215_199 c4_215_200 c4_215_201 c4_215_202 set community 0:1 route-map calculator permit 22973 match community c4_215_203 c4_215_204 c4_215_205 c4_215_206 c4_215_207 set community 0:1 route-map calculator permit 22974 match community c4_215_208 c4_215_209 c4_215_210 c4_215_211 c4_215_212 set community 0:1 route-map calculator permit 22975 match community c4_215_213 c3_215_214 c4_215_214 c4_215_215 c4_216_109 set community 0:1 route-map calculator permit 22976 match community c4_216_110 c4_216_111 c4_216_112 c4_216_113 c4_216_114 set community 0:1 route-map calculator permit 22977 match community c4_216_115 c4_216_116 c4_216_117 c4_216_118 c4_216_119 set community 0:1 route-map calculator permit 22978 match community c4_216_120 c4_216_121 c4_216_122 c4_216_123 c4_216_124 set community 0:1 route-map calculator permit 22979 match community c4_216_125 c4_216_126 c4_216_127 c4_216_128 c4_216_129 set community 0:1 route-map calculator permit 22980 match community c4_216_130 c4_216_131 c4_216_132 c4_216_133 c4_216_134 set community 0:1 route-map calculator permit 22981 match community c4_216_135 c4_216_136 c4_216_137 c4_216_138 c4_216_139 set community 0:1 route-map calculator permit 22982 match community c4_216_140 c4_216_141 c4_216_142 c4_216_143 c4_216_144 set community 0:1 route-map calculator permit 22983 match community c4_216_145 c4_216_146 c4_216_147 c4_216_148 c4_216_149 set community 0:1 route-map calculator permit 22984 match community c4_216_150 c4_216_151 c4_216_152 c4_216_153 c4_216_154 set community 0:1 route-map calculator permit 22985 match community c4_216_155 c4_216_156 c4_216_157 c4_216_158 c4_216_159 set community 0:1 route-map calculator permit 22986 match community c4_216_160 c4_216_161 c4_216_162 c4_216_163 c4_216_164 set community 0:1 route-map calculator permit 22987 match community c4_216_165 c4_216_166 c4_216_167 c4_216_168 c4_216_169 set community 0:1 route-map calculator permit 22988 match community c4_216_170 c4_216_171 c4_216_172 c4_216_173 c4_216_174 set community 0:1 route-map calculator permit 22989 match community c4_216_175 c4_216_176 c4_216_177 c4_216_178 c4_216_179 set community 0:1 route-map calculator permit 22990 match community c4_216_180 c4_216_181 c4_216_182 c4_216_183 c4_216_184 set community 0:1 route-map calculator permit 22991 match community c4_216_185 c4_216_186 c4_216_187 c4_216_188 c4_216_189 set community 0:1 route-map calculator permit 22992 match community c4_216_190 c4_216_191 c4_216_192 c4_216_193 c4_216_194 set community 0:1 route-map calculator permit 22993 match community c4_216_195 c4_216_196 c4_216_197 c4_216_198 c4_216_199 set community 0:1 route-map calculator permit 22994 match community c4_216_200 c4_216_201 c4_216_202 c4_216_203 c4_216_204 set community 0:1 route-map calculator permit 22995 match community c4_216_205 c4_216_206 c4_216_207 c4_216_208 c4_216_209 set community 0:1 route-map calculator permit 22996 match community c4_216_210 c4_216_211 c4_216_212 c4_216_213 c4_216_214 set community 0:1 route-map calculator permit 22997 match community c3_216_215 c4_216_215 c4_216_216 c4_217_109 c4_217_110 set community 0:1 route-map calculator permit 22998 match community c4_217_111 c4_217_112 c4_217_113 c4_217_114 c4_217_115 set community 0:1 route-map calculator permit 22999 match community c4_217_116 c4_217_117 c4_217_118 c4_217_119 c4_217_120 set community 0:1 route-map calculator permit 23000 match community c4_217_121 c4_217_122 c4_217_123 c4_217_124 c4_217_125 set community 0:1 route-map calculator permit 23001 match community c4_217_126 c4_217_127 c4_217_128 c4_217_129 c4_217_130 set community 0:1 route-map calculator permit 23002 match community c4_217_131 c4_217_132 c4_217_133 c4_217_134 c4_217_135 set community 0:1 route-map calculator permit 23003 match community c4_217_136 c4_217_137 c4_217_138 c4_217_139 c4_217_140 set community 0:1 route-map calculator permit 23004 match community c4_217_141 c4_217_142 c4_217_143 c4_217_144 c4_217_145 set community 0:1 route-map calculator permit 23005 match community c4_217_146 c4_217_147 c4_217_148 c4_217_149 c4_217_150 set community 0:1 route-map calculator permit 23006 match community c4_217_151 c4_217_152 c4_217_153 c4_217_154 c4_217_155 set community 0:1 route-map calculator permit 23007 match community c4_217_156 c4_217_157 c4_217_158 c4_217_159 c4_217_160 set community 0:1 route-map calculator permit 23008 match community c4_217_161 c4_217_162 c4_217_163 c4_217_164 c4_217_165 set community 0:1 route-map calculator permit 23009 match community c4_217_166 c4_217_167 c4_217_168 c4_217_169 c4_217_170 set community 0:1 route-map calculator permit 23010 match community c4_217_171 c4_217_172 c4_217_173 c4_217_174 c4_217_175 set community 0:1 route-map calculator permit 23011 match community c4_217_176 c4_217_177 c4_217_178 c4_217_179 c4_217_180 set community 0:1 route-map calculator permit 23012 match community c4_217_181 c4_217_182 c4_217_183 c4_217_184 c4_217_185 set community 0:1 route-map calculator permit 23013 match community c4_217_186 c4_217_187 c4_217_188 c4_217_189 c4_217_190 set community 0:1 route-map calculator permit 23014 match community c4_217_191 c4_217_192 c4_217_193 c4_217_194 c4_217_195 set community 0:1 route-map calculator permit 23015 match community c4_217_196 c4_217_197 c4_217_198 c4_217_199 c4_217_200 set community 0:1 route-map calculator permit 23016 match community c4_217_201 c4_217_202 c4_217_203 c4_217_204 c4_217_205 set community 0:1 route-map calculator permit 23017 match community c4_217_206 c4_217_207 c4_217_208 c4_217_209 c4_217_210 set community 0:1 route-map calculator permit 23018 match community c4_217_211 c4_217_212 c4_217_213 c4_217_214 c4_217_215 set community 0:1 route-map calculator permit 23019 match community c3_217_216 c4_217_216 c4_217_217 c4_218_110 c4_218_111 set community 0:1 route-map calculator permit 23020 match community c4_218_112 c4_218_113 c4_218_114 c4_218_115 c4_218_116 set community 0:1 route-map calculator permit 23021 match community c4_218_117 c4_218_118 c4_218_119 c4_218_120 c4_218_121 set community 0:1 route-map calculator permit 23022 match community c4_218_122 c4_218_123 c4_218_124 c4_218_125 c4_218_126 set community 0:1 route-map calculator permit 23023 match community c4_218_127 c4_218_128 c4_218_129 c4_218_130 c4_218_131 set community 0:1 route-map calculator permit 23024 match community c4_218_132 c4_218_133 c4_218_134 c4_218_135 c4_218_136 set community 0:1 route-map calculator permit 23025 match community c4_218_137 c4_218_138 c4_218_139 c4_218_140 c4_218_141 set community 0:1 route-map calculator permit 23026 match community c4_218_142 c4_218_143 c4_218_144 c4_218_145 c4_218_146 set community 0:1 route-map calculator permit 23027 match community c4_218_147 c4_218_148 c4_218_149 c4_218_150 c4_218_151 set community 0:1 route-map calculator permit 23028 match community c4_218_152 c4_218_153 c4_218_154 c4_218_155 c4_218_156 set community 0:1 route-map calculator permit 23029 match community c4_218_157 c4_218_158 c4_218_159 c4_218_160 c4_218_161 set community 0:1 route-map calculator permit 23030 match community c4_218_162 c4_218_163 c4_218_164 c4_218_165 c4_218_166 set community 0:1 route-map calculator permit 23031 match community c4_218_167 c4_218_168 c4_218_169 c4_218_170 c4_218_171 set community 0:1 route-map calculator permit 23032 match community c4_218_172 c4_218_173 c4_218_174 c4_218_175 c4_218_176 set community 0:1 route-map calculator permit 23033 match community c4_218_177 c4_218_178 c4_218_179 c4_218_180 c4_218_181 set community 0:1 route-map calculator permit 23034 match community c4_218_182 c4_218_183 c4_218_184 c4_218_185 c4_218_186 set community 0:1 route-map calculator permit 23035 match community c4_218_187 c4_218_188 c4_218_189 c4_218_190 c4_218_191 set community 0:1 route-map calculator permit 23036 match community c4_218_192 c4_218_193 c4_218_194 c4_218_195 c4_218_196 set community 0:1 route-map calculator permit 23037 match community c4_218_197 c4_218_198 c4_218_199 c4_218_200 c4_218_201 set community 0:1 route-map calculator permit 23038 match community c4_218_202 c4_218_203 c4_218_204 c4_218_205 c4_218_206 set community 0:1 route-map calculator permit 23039 match community c4_218_207 c4_218_208 c4_218_209 c4_218_210 c4_218_211 set community 0:1 route-map calculator permit 23040 match community c4_218_212 c4_218_213 c4_218_214 c4_218_215 c4_218_216 set community 0:1 route-map calculator permit 23041 match community c3_218_217 c4_218_217 c4_218_218 c4_219_110 c4_219_111 set community 0:1 route-map calculator permit 23042 match community c4_219_112 c4_219_113 c4_219_114 c4_219_115 c4_219_116 set community 0:1 route-map calculator permit 23043 match community c4_219_117 c4_219_118 c4_219_119 c4_219_120 c4_219_121 set community 0:1 route-map calculator permit 23044 match community c4_219_122 c4_219_123 c4_219_124 c4_219_125 c4_219_126 set community 0:1 route-map calculator permit 23045 match community c4_219_127 c4_219_128 c4_219_129 c4_219_130 c4_219_131 set community 0:1 route-map calculator permit 23046 match community c4_219_132 c4_219_133 c4_219_134 c4_219_135 c4_219_136 set community 0:1 route-map calculator permit 23047 match community c4_219_137 c4_219_138 c4_219_139 c4_219_140 c4_219_141 set community 0:1 route-map calculator permit 23048 match community c4_219_142 c4_219_143 c4_219_144 c4_219_145 c4_219_146 set community 0:1 route-map calculator permit 23049 match community c4_219_147 c4_219_148 c4_219_149 c4_219_150 c4_219_151 set community 0:1 route-map calculator permit 23050 match community c4_219_152 c4_219_153 c4_219_154 c4_219_155 c4_219_156 set community 0:1 route-map calculator permit 23051 match community c4_219_157 c4_219_158 c4_219_159 c4_219_160 c4_219_161 set community 0:1 route-map calculator permit 23052 match community c4_219_162 c4_219_163 c4_219_164 c4_219_165 c4_219_166 set community 0:1 route-map calculator permit 23053 match community c4_219_167 c4_219_168 c4_219_169 c4_219_170 c4_219_171 set community 0:1 route-map calculator permit 23054 match community c4_219_172 c4_219_173 c4_219_174 c4_219_175 c4_219_176 set community 0:1 route-map calculator permit 23055 match community c4_219_177 c4_219_178 c4_219_179 c4_219_180 c4_219_181 set community 0:1 route-map calculator permit 23056 match community c4_219_182 c4_219_183 c4_219_184 c4_219_185 c4_219_186 set community 0:1 route-map calculator permit 23057 match community c4_219_187 c4_219_188 c4_219_189 c4_219_190 c4_219_191 set community 0:1 route-map calculator permit 23058 match community c4_219_192 c4_219_193 c4_219_194 c4_219_195 c4_219_196 set community 0:1 route-map calculator permit 23059 match community c4_219_197 c4_219_198 c4_219_199 c4_219_200 c4_219_201 set community 0:1 route-map calculator permit 23060 match community c4_219_202 c4_219_203 c4_219_204 c4_219_205 c4_219_206 set community 0:1 route-map calculator permit 23061 match community c4_219_207 c4_219_208 c4_219_209 c4_219_210 c4_219_211 set community 0:1 route-map calculator permit 23062 match community c4_219_212 c4_219_213 c4_219_214 c4_219_215 c4_219_216 set community 0:1 route-map calculator permit 23063 match community c4_219_217 c3_219_218 c4_219_218 c4_219_219 c4_220_111 set community 0:1 route-map calculator permit 23064 match community c4_220_112 c4_220_113 c4_220_114 c4_220_115 c4_220_116 set community 0:1 route-map calculator permit 23065 match community c4_220_117 c4_220_118 c4_220_119 c4_220_120 c4_220_121 set community 0:1 route-map calculator permit 23066 match community c4_220_122 c4_220_123 c4_220_124 c4_220_125 c4_220_126 set community 0:1 route-map calculator permit 23067 match community c4_220_127 c4_220_128 c4_220_129 c4_220_130 c4_220_131 set community 0:1 route-map calculator permit 23068 match community c4_220_132 c4_220_133 c4_220_134 c4_220_135 c4_220_136 set community 0:1 route-map calculator permit 23069 match community c4_220_137 c4_220_138 c4_220_139 c4_220_140 c4_220_141 set community 0:1 route-map calculator permit 23070 match community c4_220_142 c4_220_143 c4_220_144 c4_220_145 c4_220_146 set community 0:1 route-map calculator permit 23071 match community c4_220_147 c4_220_148 c4_220_149 c4_220_150 c4_220_151 set community 0:1 route-map calculator permit 23072 match community c4_220_152 c4_220_153 c4_220_154 c4_220_155 c4_220_156 set community 0:1 route-map calculator permit 23073 match community c4_220_157 c4_220_158 c4_220_159 c4_220_160 c4_220_161 set community 0:1 route-map calculator permit 23074 match community c4_220_162 c4_220_163 c4_220_164 c4_220_165 c4_220_166 set community 0:1 route-map calculator permit 23075 match community c4_220_167 c4_220_168 c4_220_169 c4_220_170 c4_220_171 set community 0:1 route-map calculator permit 23076 match community c4_220_172 c4_220_173 c4_220_174 c4_220_175 c4_220_176 set community 0:1 route-map calculator permit 23077 match community c4_220_177 c4_220_178 c4_220_179 c4_220_180 c4_220_181 set community 0:1 route-map calculator permit 23078 match community c4_220_182 c4_220_183 c4_220_184 c4_220_185 c4_220_186 set community 0:1 route-map calculator permit 23079 match community c4_220_187 c4_220_188 c4_220_189 c4_220_190 c4_220_191 set community 0:1 route-map calculator permit 23080 match community c4_220_192 c4_220_193 c4_220_194 c4_220_195 c4_220_196 set community 0:1 route-map calculator permit 23081 match community c4_220_197 c4_220_198 c4_220_199 c4_220_200 c4_220_201 set community 0:1 route-map calculator permit 23082 match community c4_220_202 c4_220_203 c4_220_204 c4_220_205 c4_220_206 set community 0:1 route-map calculator permit 23083 match community c4_220_207 c4_220_208 c4_220_209 c4_220_210 c4_220_211 set community 0:1 route-map calculator permit 23084 match community c4_220_212 c4_220_213 c4_220_214 c4_220_215 c4_220_216 set community 0:1 route-map calculator permit 23085 match community c4_220_217 c4_220_218 c3_220_219 c4_220_219 c4_220_220 set community 0:1 route-map calculator permit 23086 match community c4_221_111 c4_221_112 c4_221_113 c4_221_114 c4_221_115 set community 0:1 route-map calculator permit 23087 match community c4_221_116 c4_221_117 c4_221_118 c4_221_119 c4_221_120 set community 0:1 route-map calculator permit 23088 match community c4_221_121 c4_221_122 c4_221_123 c4_221_124 c4_221_125 set community 0:1 route-map calculator permit 23089 match community c4_221_126 c4_221_127 c4_221_128 c4_221_129 c4_221_130 set community 0:1 route-map calculator permit 23090 match community c4_221_131 c4_221_132 c4_221_133 c4_221_134 c4_221_135 set community 0:1 route-map calculator permit 23091 match community c4_221_136 c4_221_137 c4_221_138 c4_221_139 c4_221_140 set community 0:1 route-map calculator permit 23092 match community c4_221_141 c4_221_142 c4_221_143 c4_221_144 c4_221_145 set community 0:1 route-map calculator permit 23093 match community c4_221_146 c4_221_147 c4_221_148 c4_221_149 c4_221_150 set community 0:1 route-map calculator permit 23094 match community c4_221_151 c4_221_152 c4_221_153 c4_221_154 c4_221_155 set community 0:1 route-map calculator permit 23095 match community c4_221_156 c4_221_157 c4_221_158 c4_221_159 c4_221_160 set community 0:1 route-map calculator permit 23096 match community c4_221_161 c4_221_162 c4_221_163 c4_221_164 c4_221_165 set community 0:1 route-map calculator permit 23097 match community c4_221_166 c4_221_167 c4_221_168 c4_221_169 c4_221_170 set community 0:1 route-map calculator permit 23098 match community c4_221_171 c4_221_172 c4_221_173 c4_221_174 c4_221_175 set community 0:1 route-map calculator permit 23099 match community c4_221_176 c4_221_177 c4_221_178 c4_221_179 c4_221_180 set community 0:1 route-map calculator permit 23100 match community c4_221_181 c4_221_182 c4_221_183 c4_221_184 c4_221_185 set community 0:1 route-map calculator permit 23101 match community c4_221_186 c4_221_187 c4_221_188 c4_221_189 c4_221_190 set community 0:1 route-map calculator permit 23102 match community c4_221_191 c4_221_192 c4_221_193 c4_221_194 c4_221_195 set community 0:1 route-map calculator permit 23103 match community c4_221_196 c4_221_197 c4_221_198 c4_221_199 c4_221_200 set community 0:1 route-map calculator permit 23104 match community c4_221_201 c4_221_202 c4_221_203 c4_221_204 c4_221_205 set community 0:1 route-map calculator permit 23105 match community c4_221_206 c4_221_207 c4_221_208 c4_221_209 c4_221_210 set community 0:1 route-map calculator permit 23106 match community c4_221_211 c4_221_212 c4_221_213 c4_221_214 c4_221_215 set community 0:1 route-map calculator permit 23107 match community c4_221_216 c4_221_217 c4_221_218 c4_221_219 c3_221_220 set community 0:1 route-map calculator permit 23108 match community c4_221_220 c4_221_221 c4_222_112 c4_222_113 c4_222_114 set community 0:1 route-map calculator permit 23109 match community c4_222_115 c4_222_116 c4_222_117 c4_222_118 c4_222_119 set community 0:1 route-map calculator permit 23110 match community c4_222_120 c4_222_121 c4_222_122 c4_222_123 c4_222_124 set community 0:1 route-map calculator permit 23111 match community c4_222_125 c4_222_126 c4_222_127 c4_222_128 c4_222_129 set community 0:1 route-map calculator permit 23112 match community c4_222_130 c4_222_131 c4_222_132 c4_222_133 c4_222_134 set community 0:1 route-map calculator permit 23113 match community c4_222_135 c4_222_136 c4_222_137 c4_222_138 c4_222_139 set community 0:1 route-map calculator permit 23114 match community c4_222_140 c4_222_141 c4_222_142 c4_222_143 c4_222_144 set community 0:1 route-map calculator permit 23115 match community c4_222_145 c4_222_146 c4_222_147 c4_222_148 c4_222_149 set community 0:1 route-map calculator permit 23116 match community c4_222_150 c4_222_151 c4_222_152 c4_222_153 c4_222_154 set community 0:1 route-map calculator permit 23117 match community c4_222_155 c4_222_156 c4_222_157 c4_222_158 c4_222_159 set community 0:1 route-map calculator permit 23118 match community c4_222_160 c4_222_161 c4_222_162 c4_222_163 c4_222_164 set community 0:1 route-map calculator permit 23119 match community c4_222_165 c4_222_166 c4_222_167 c4_222_168 c4_222_169 set community 0:1 route-map calculator permit 23120 match community c4_222_170 c4_222_171 c4_222_172 c4_222_173 c4_222_174 set community 0:1 route-map calculator permit 23121 match community c4_222_175 c4_222_176 c4_222_177 c4_222_178 c4_222_179 set community 0:1 route-map calculator permit 23122 match community c4_222_180 c4_222_181 c4_222_182 c4_222_183 c4_222_184 set community 0:1 route-map calculator permit 23123 match community c4_222_185 c4_222_186 c4_222_187 c4_222_188 c4_222_189 set community 0:1 route-map calculator permit 23124 match community c4_222_190 c4_222_191 c4_222_192 c4_222_193 c4_222_194 set community 0:1 route-map calculator permit 23125 match community c4_222_195 c4_222_196 c4_222_197 c4_222_198 c4_222_199 set community 0:1 route-map calculator permit 23126 match community c4_222_200 c4_222_201 c4_222_202 c4_222_203 c4_222_204 set community 0:1 route-map calculator permit 23127 match community c4_222_205 c4_222_206 c4_222_207 c4_222_208 c4_222_209 set community 0:1 route-map calculator permit 23128 match community c4_222_210 c4_222_211 c4_222_212 c4_222_213 c4_222_214 set community 0:1 route-map calculator permit 23129 match community c4_222_215 c4_222_216 c4_222_217 c4_222_218 c4_222_219 set community 0:1 route-map calculator permit 23130 match community c4_222_220 c3_222_221 c4_222_221 c4_222_222 c4_223_112 set community 0:1 route-map calculator permit 23131 match community c4_223_113 c4_223_114 c4_223_115 c4_223_116 c4_223_117 set community 0:1 route-map calculator permit 23132 match community c4_223_118 c4_223_119 c4_223_120 c4_223_121 c4_223_122 set community 0:1 route-map calculator permit 23133 match community c4_223_123 c4_223_124 c4_223_125 c4_223_126 c4_223_127 set community 0:1 route-map calculator permit 23134 match community c4_223_128 c4_223_129 c4_223_130 c4_223_131 c4_223_132 set community 0:1 route-map calculator permit 23135 match community c4_223_133 c4_223_134 c4_223_135 c4_223_136 c4_223_137 set community 0:1 route-map calculator permit 23136 match community c4_223_138 c4_223_139 c4_223_140 c4_223_141 c4_223_142 set community 0:1 route-map calculator permit 23137 match community c4_223_143 c4_223_144 c4_223_145 c4_223_146 c4_223_147 set community 0:1 route-map calculator permit 23138 match community c4_223_148 c4_223_149 c4_223_150 c4_223_151 c4_223_152 set community 0:1 route-map calculator permit 23139 match community c4_223_153 c4_223_154 c4_223_155 c4_223_156 c4_223_157 set community 0:1 route-map calculator permit 23140 match community c4_223_158 c4_223_159 c4_223_160 c4_223_161 c4_223_162 set community 0:1 route-map calculator permit 23141 match community c4_223_163 c4_223_164 c4_223_165 c4_223_166 c4_223_167 set community 0:1 route-map calculator permit 23142 match community c4_223_168 c4_223_169 c4_223_170 c4_223_171 c4_223_172 set community 0:1 route-map calculator permit 23143 match community c4_223_173 c4_223_174 c4_223_175 c4_223_176 c4_223_177 set community 0:1 route-map calculator permit 23144 match community c4_223_178 c4_223_179 c4_223_180 c4_223_181 c4_223_182 set community 0:1 route-map calculator permit 23145 match community c4_223_183 c4_223_184 c4_223_185 c4_223_186 c4_223_187 set community 0:1 route-map calculator permit 23146 match community c4_223_188 c4_223_189 c4_223_190 c4_223_191 c4_223_192 set community 0:1 route-map calculator permit 23147 match community c4_223_193 c4_223_194 c4_223_195 c4_223_196 c4_223_197 set community 0:1 route-map calculator permit 23148 match community c4_223_198 c4_223_199 c4_223_200 c4_223_201 c4_223_202 set community 0:1 route-map calculator permit 23149 match community c4_223_203 c4_223_204 c4_223_205 c4_223_206 c4_223_207 set community 0:1 route-map calculator permit 23150 match community c4_223_208 c4_223_209 c4_223_210 c4_223_211 c4_223_212 set community 0:1 route-map calculator permit 23151 match community c4_223_213 c4_223_214 c4_223_215 c4_223_216 c4_223_217 set community 0:1 route-map calculator permit 23152 match community c4_223_218 c4_223_219 c4_223_220 c4_223_221 c3_223_222 set community 0:1 route-map calculator permit 23153 match community c4_223_222 c4_223_223 c4_224_113 c4_224_114 c4_224_115 set community 0:1 route-map calculator permit 23154 match community c4_224_116 c4_224_117 c4_224_118 c4_224_119 c4_224_120 set community 0:1 route-map calculator permit 23155 match community c4_224_121 c4_224_122 c4_224_123 c4_224_124 c4_224_125 set community 0:1 route-map calculator permit 23156 match community c4_224_126 c4_224_127 c4_224_128 c4_224_129 c4_224_130 set community 0:1 route-map calculator permit 23157 match community c4_224_131 c4_224_132 c4_224_133 c4_224_134 c4_224_135 set community 0:1 route-map calculator permit 23158 match community c4_224_136 c4_224_137 c4_224_138 c4_224_139 c4_224_140 set community 0:1 route-map calculator permit 23159 match community c4_224_141 c4_224_142 c4_224_143 c4_224_144 c4_224_145 set community 0:1 route-map calculator permit 23160 match community c4_224_146 c4_224_147 c4_224_148 c4_224_149 c4_224_150 set community 0:1 route-map calculator permit 23161 match community c4_224_151 c4_224_152 c4_224_153 c4_224_154 c4_224_155 set community 0:1 route-map calculator permit 23162 match community c4_224_156 c4_224_157 c4_224_158 c4_224_159 c4_224_160 set community 0:1 route-map calculator permit 23163 match community c4_224_161 c4_224_162 c4_224_163 c4_224_164 c4_224_165 set community 0:1 route-map calculator permit 23164 match community c4_224_166 c4_224_167 c4_224_168 c4_224_169 c4_224_170 set community 0:1 route-map calculator permit 23165 match community c4_224_171 c4_224_172 c4_224_173 c4_224_174 c4_224_175 set community 0:1 route-map calculator permit 23166 match community c4_224_176 c4_224_177 c4_224_178 c4_224_179 c4_224_180 set community 0:1 route-map calculator permit 23167 match community c4_224_181 c4_224_182 c4_224_183 c4_224_184 c4_224_185 set community 0:1 route-map calculator permit 23168 match community c4_224_186 c4_224_187 c4_224_188 c4_224_189 c4_224_190 set community 0:1 route-map calculator permit 23169 match community c4_224_191 c4_224_192 c4_224_193 c4_224_194 c4_224_195 set community 0:1 route-map calculator permit 23170 match community c4_224_196 c4_224_197 c4_224_198 c4_224_199 c4_224_200 set community 0:1 route-map calculator permit 23171 match community c4_224_201 c4_224_202 c4_224_203 c4_224_204 c4_224_205 set community 0:1 route-map calculator permit 23172 match community c4_224_206 c4_224_207 c4_224_208 c4_224_209 c4_224_210 set community 0:1 route-map calculator permit 23173 match community c4_224_211 c4_224_212 c4_224_213 c4_224_214 c4_224_215 set community 0:1 route-map calculator permit 23174 match community c4_224_216 c4_224_217 c4_224_218 c4_224_219 c4_224_220 set community 0:1 route-map calculator permit 23175 match community c4_224_221 c4_224_222 c3_224_223 c4_224_223 c4_224_224 set community 0:1 route-map calculator permit 23176 match community c4_225_113 c4_225_114 c4_225_115 c4_225_116 c4_225_117 set community 0:1 route-map calculator permit 23177 match community c4_225_118 c4_225_119 c4_225_120 c4_225_121 c4_225_122 set community 0:1 route-map calculator permit 23178 match community c4_225_123 c4_225_124 c4_225_125 c4_225_126 c4_225_127 set community 0:1 route-map calculator permit 23179 match community c4_225_128 c4_225_129 c4_225_130 c4_225_131 c4_225_132 set community 0:1 route-map calculator permit 23180 match community c4_225_133 c4_225_134 c4_225_135 c4_225_136 c4_225_137 set community 0:1 route-map calculator permit 23181 match community c4_225_138 c4_225_139 c4_225_140 c4_225_141 c4_225_142 set community 0:1 route-map calculator permit 23182 match community c4_225_143 c4_225_144 c4_225_145 c4_225_146 c4_225_147 set community 0:1 route-map calculator permit 23183 match community c4_225_148 c4_225_149 c4_225_150 c4_225_151 c4_225_152 set community 0:1 route-map calculator permit 23184 match community c4_225_153 c4_225_154 c4_225_155 c4_225_156 c4_225_157 set community 0:1 route-map calculator permit 23185 match community c4_225_158 c4_225_159 c4_225_160 c4_225_161 c4_225_162 set community 0:1 route-map calculator permit 23186 match community c4_225_163 c4_225_164 c4_225_165 c4_225_166 c4_225_167 set community 0:1 route-map calculator permit 23187 match community c4_225_168 c4_225_169 c4_225_170 c4_225_171 c4_225_172 set community 0:1 route-map calculator permit 23188 match community c4_225_173 c4_225_174 c4_225_175 c4_225_176 c4_225_177 set community 0:1 route-map calculator permit 23189 match community c4_225_178 c4_225_179 c4_225_180 c4_225_181 c4_225_182 set community 0:1 route-map calculator permit 23190 match community c4_225_183 c4_225_184 c4_225_185 c4_225_186 c4_225_187 set community 0:1 route-map calculator permit 23191 match community c4_225_188 c4_225_189 c4_225_190 c4_225_191 c4_225_192 set community 0:1 route-map calculator permit 23192 match community c4_225_193 c4_225_194 c4_225_195 c4_225_196 c4_225_197 set community 0:1 route-map calculator permit 23193 match community c4_225_198 c4_225_199 c4_225_200 c4_225_201 c4_225_202 set community 0:1 route-map calculator permit 23194 match community c4_225_203 c4_225_204 c4_225_205 c4_225_206 c4_225_207 set community 0:1 route-map calculator permit 23195 match community c4_225_208 c4_225_209 c4_225_210 c4_225_211 c4_225_212 set community 0:1 route-map calculator permit 23196 match community c4_225_213 c4_225_214 c4_225_215 c4_225_216 c4_225_217 set community 0:1 route-map calculator permit 23197 match community c4_225_218 c4_225_219 c4_225_220 c4_225_221 c4_225_222 set community 0:1 route-map calculator permit 23198 match community c4_225_223 c3_225_224 c4_225_224 c4_225_225 c4_226_114 set community 0:1 route-map calculator permit 23199 match community c4_226_115 c4_226_116 c4_226_117 c4_226_118 c4_226_119 set community 0:1 route-map calculator permit 23200 match community c4_226_120 c4_226_121 c4_226_122 c4_226_123 c4_226_124 set community 0:1 route-map calculator permit 23201 match community c4_226_125 c4_226_126 c4_226_127 c4_226_128 c4_226_129 set community 0:1 route-map calculator permit 23202 match community c4_226_130 c4_226_131 c4_226_132 c4_226_133 c4_226_134 set community 0:1 route-map calculator permit 23203 match community c4_226_135 c4_226_136 c4_226_137 c4_226_138 c4_226_139 set community 0:1 route-map calculator permit 23204 match community c4_226_140 c4_226_141 c4_226_142 c4_226_143 c4_226_144 set community 0:1 route-map calculator permit 23205 match community c4_226_145 c4_226_146 c4_226_147 c4_226_148 c4_226_149 set community 0:1 route-map calculator permit 23206 match community c4_226_150 c4_226_151 c4_226_152 c4_226_153 c4_226_154 set community 0:1 route-map calculator permit 23207 match community c4_226_155 c4_226_156 c4_226_157 c4_226_158 c4_226_159 set community 0:1 route-map calculator permit 23208 match community c4_226_160 c4_226_161 c4_226_162 c4_226_163 c4_226_164 set community 0:1 route-map calculator permit 23209 match community c4_226_165 c4_226_166 c4_226_167 c4_226_168 c4_226_169 set community 0:1 route-map calculator permit 23210 match community c4_226_170 c4_226_171 c4_226_172 c4_226_173 c4_226_174 set community 0:1 route-map calculator permit 23211 match community c4_226_175 c4_226_176 c4_226_177 c4_226_178 c4_226_179 set community 0:1 route-map calculator permit 23212 match community c4_226_180 c4_226_181 c4_226_182 c4_226_183 c4_226_184 set community 0:1 route-map calculator permit 23213 match community c4_226_185 c4_226_186 c4_226_187 c4_226_188 c4_226_189 set community 0:1 route-map calculator permit 23214 match community c4_226_190 c4_226_191 c4_226_192 c4_226_193 c4_226_194 set community 0:1 route-map calculator permit 23215 match community c4_226_195 c4_226_196 c4_226_197 c4_226_198 c4_226_199 set community 0:1 route-map calculator permit 23216 match community c4_226_200 c4_226_201 c4_226_202 c4_226_203 c4_226_204 set community 0:1 route-map calculator permit 23217 match community c4_226_205 c4_226_206 c4_226_207 c4_226_208 c4_226_209 set community 0:1 route-map calculator permit 23218 match community c4_226_210 c4_226_211 c4_226_212 c4_226_213 c4_226_214 set community 0:1 route-map calculator permit 23219 match community c4_226_215 c4_226_216 c4_226_217 c4_226_218 c4_226_219 set community 0:1 route-map calculator permit 23220 match community c4_226_220 c4_226_221 c4_226_222 c4_226_223 c4_226_224 set community 0:1 route-map calculator permit 23221 match community c3_226_225 c4_226_225 c4_226_226 c4_227_114 c4_227_115 set community 0:1 route-map calculator permit 23222 match community c4_227_116 c4_227_117 c4_227_118 c4_227_119 c4_227_120 set community 0:1 route-map calculator permit 23223 match community c4_227_121 c4_227_122 c4_227_123 c4_227_124 c4_227_125 set community 0:1 route-map calculator permit 23224 match community c4_227_126 c4_227_127 c4_227_128 c4_227_129 c4_227_130 set community 0:1 route-map calculator permit 23225 match community c4_227_131 c4_227_132 c4_227_133 c4_227_134 c4_227_135 set community 0:1 route-map calculator permit 23226 match community c4_227_136 c4_227_137 c4_227_138 c4_227_139 c4_227_140 set community 0:1 route-map calculator permit 23227 match community c4_227_141 c4_227_142 c4_227_143 c4_227_144 c4_227_145 set community 0:1 route-map calculator permit 23228 match community c4_227_146 c4_227_147 c4_227_148 c4_227_149 c4_227_150 set community 0:1 route-map calculator permit 23229 match community c4_227_151 c4_227_152 c4_227_153 c4_227_154 c4_227_155 set community 0:1 route-map calculator permit 23230 match community c4_227_156 c4_227_157 c4_227_158 c4_227_159 c4_227_160 set community 0:1 route-map calculator permit 23231 match community c4_227_161 c4_227_162 c4_227_163 c4_227_164 c4_227_165 set community 0:1 route-map calculator permit 23232 match community c4_227_166 c4_227_167 c4_227_168 c4_227_169 c4_227_170 set community 0:1 route-map calculator permit 23233 match community c4_227_171 c4_227_172 c4_227_173 c4_227_174 c4_227_175 set community 0:1 route-map calculator permit 23234 match community c4_227_176 c4_227_177 c4_227_178 c4_227_179 c4_227_180 set community 0:1 route-map calculator permit 23235 match community c4_227_181 c4_227_182 c4_227_183 c4_227_184 c4_227_185 set community 0:1 route-map calculator permit 23236 match community c4_227_186 c4_227_187 c4_227_188 c4_227_189 c4_227_190 set community 0:1 route-map calculator permit 23237 match community c4_227_191 c4_227_192 c4_227_193 c4_227_194 c4_227_195 set community 0:1 route-map calculator permit 23238 match community c4_227_196 c4_227_197 c4_227_198 c4_227_199 c4_227_200 set community 0:1 route-map calculator permit 23239 match community c4_227_201 c4_227_202 c4_227_203 c4_227_204 c4_227_205 set community 0:1 route-map calculator permit 23240 match community c4_227_206 c4_227_207 c4_227_208 c4_227_209 c4_227_210 set community 0:1 route-map calculator permit 23241 match community c4_227_211 c4_227_212 c4_227_213 c4_227_214 c4_227_215 set community 0:1 route-map calculator permit 23242 match community c4_227_216 c4_227_217 c4_227_218 c4_227_219 c4_227_220 set community 0:1 route-map calculator permit 23243 match community c4_227_221 c4_227_222 c4_227_223 c4_227_224 c4_227_225 set community 0:1 route-map calculator permit 23244 match community c3_227_226 c4_227_226 c4_227_227 c4_228_115 c4_228_116 set community 0:1 route-map calculator permit 23245 match community c4_228_117 c4_228_118 c4_228_119 c4_228_120 c4_228_121 set community 0:1 route-map calculator permit 23246 match community c4_228_122 c4_228_123 c4_228_124 c4_228_125 c4_228_126 set community 0:1 route-map calculator permit 23247 match community c4_228_127 c4_228_128 c4_228_129 c4_228_130 c4_228_131 set community 0:1 route-map calculator permit 23248 match community c4_228_132 c4_228_133 c4_228_134 c4_228_135 c4_228_136 set community 0:1 route-map calculator permit 23249 match community c4_228_137 c4_228_138 c4_228_139 c4_228_140 c4_228_141 set community 0:1 route-map calculator permit 23250 match community c4_228_142 c4_228_143 c4_228_144 c4_228_145 c4_228_146 set community 0:1 route-map calculator permit 23251 match community c4_228_147 c4_228_148 c4_228_149 c4_228_150 c4_228_151 set community 0:1 route-map calculator permit 23252 match community c4_228_152 c4_228_153 c4_228_154 c4_228_155 c4_228_156 set community 0:1 route-map calculator permit 23253 match community c4_228_157 c4_228_158 c4_228_159 c4_228_160 c4_228_161 set community 0:1 route-map calculator permit 23254 match community c4_228_162 c4_228_163 c4_228_164 c4_228_165 c4_228_166 set community 0:1 route-map calculator permit 23255 match community c4_228_167 c4_228_168 c4_228_169 c4_228_170 c4_228_171 set community 0:1 route-map calculator permit 23256 match community c4_228_172 c4_228_173 c4_228_174 c4_228_175 c4_228_176 set community 0:1 route-map calculator permit 23257 match community c4_228_177 c4_228_178 c4_228_179 c4_228_180 c4_228_181 set community 0:1 route-map calculator permit 23258 match community c4_228_182 c4_228_183 c4_228_184 c4_228_185 c4_228_186 set community 0:1 route-map calculator permit 23259 match community c4_228_187 c4_228_188 c4_228_189 c4_228_190 c4_228_191 set community 0:1 route-map calculator permit 23260 match community c4_228_192 c4_228_193 c4_228_194 c4_228_195 c4_228_196 set community 0:1 route-map calculator permit 23261 match community c4_228_197 c4_228_198 c4_228_199 c4_228_200 c4_228_201 set community 0:1 route-map calculator permit 23262 match community c4_228_202 c4_228_203 c4_228_204 c4_228_205 c4_228_206 set community 0:1 route-map calculator permit 23263 match community c4_228_207 c4_228_208 c4_228_209 c4_228_210 c4_228_211 set community 0:1 route-map calculator permit 23264 match community c4_228_212 c4_228_213 c4_228_214 c4_228_215 c4_228_216 set community 0:1 route-map calculator permit 23265 match community c4_228_217 c4_228_218 c4_228_219 c4_228_220 c4_228_221 set community 0:1 route-map calculator permit 23266 match community c4_228_222 c4_228_223 c4_228_224 c4_228_225 c4_228_226 set community 0:1 route-map calculator permit 23267 match community c3_228_227 c4_228_227 c4_228_228 c4_229_115 c4_229_116 set community 0:1 route-map calculator permit 23268 match community c4_229_117 c4_229_118 c4_229_119 c4_229_120 c4_229_121 set community 0:1 route-map calculator permit 23269 match community c4_229_122 c4_229_123 c4_229_124 c4_229_125 c4_229_126 set community 0:1 route-map calculator permit 23270 match community c4_229_127 c4_229_128 c4_229_129 c4_229_130 c4_229_131 set community 0:1 route-map calculator permit 23271 match community c4_229_132 c4_229_133 c4_229_134 c4_229_135 c4_229_136 set community 0:1 route-map calculator permit 23272 match community c4_229_137 c4_229_138 c4_229_139 c4_229_140 c4_229_141 set community 0:1 route-map calculator permit 23273 match community c4_229_142 c4_229_143 c4_229_144 c4_229_145 c4_229_146 set community 0:1 route-map calculator permit 23274 match community c4_229_147 c4_229_148 c4_229_149 c4_229_150 c4_229_151 set community 0:1 route-map calculator permit 23275 match community c4_229_152 c4_229_153 c4_229_154 c4_229_155 c4_229_156 set community 0:1 route-map calculator permit 23276 match community c4_229_157 c4_229_158 c4_229_159 c4_229_160 c4_229_161 set community 0:1 route-map calculator permit 23277 match community c4_229_162 c4_229_163 c4_229_164 c4_229_165 c4_229_166 set community 0:1 route-map calculator permit 23278 match community c4_229_167 c4_229_168 c4_229_169 c4_229_170 c4_229_171 set community 0:1 route-map calculator permit 23279 match community c4_229_172 c4_229_173 c4_229_174 c4_229_175 c4_229_176 set community 0:1 route-map calculator permit 23280 match community c4_229_177 c4_229_178 c4_229_179 c4_229_180 c4_229_181 set community 0:1 route-map calculator permit 23281 match community c4_229_182 c4_229_183 c4_229_184 c4_229_185 c4_229_186 set community 0:1 route-map calculator permit 23282 match community c4_229_187 c4_229_188 c4_229_189 c4_229_190 c4_229_191 set community 0:1 route-map calculator permit 23283 match community c4_229_192 c4_229_193 c4_229_194 c4_229_195 c4_229_196 set community 0:1 route-map calculator permit 23284 match community c4_229_197 c4_229_198 c4_229_199 c4_229_200 c4_229_201 set community 0:1 route-map calculator permit 23285 match community c4_229_202 c4_229_203 c4_229_204 c4_229_205 c4_229_206 set community 0:1 route-map calculator permit 23286 match community c4_229_207 c4_229_208 c4_229_209 c4_229_210 c4_229_211 set community 0:1 route-map calculator permit 23287 match community c4_229_212 c4_229_213 c4_229_214 c4_229_215 c4_229_216 set community 0:1 route-map calculator permit 23288 match community c4_229_217 c4_229_218 c4_229_219 c4_229_220 c4_229_221 set community 0:1 route-map calculator permit 23289 match community c4_229_222 c4_229_223 c4_229_224 c4_229_225 c4_229_226 set community 0:1 route-map calculator permit 23290 match community c4_229_227 c3_229_228 c4_229_228 c4_229_229 c4_230_116 set community 0:1 route-map calculator permit 23291 match community c4_230_117 c4_230_118 c4_230_119 c4_230_120 c4_230_121 set community 0:1 route-map calculator permit 23292 match community c4_230_122 c4_230_123 c4_230_124 c4_230_125 c4_230_126 set community 0:1 route-map calculator permit 23293 match community c4_230_127 c4_230_128 c4_230_129 c4_230_130 c4_230_131 set community 0:1 route-map calculator permit 23294 match community c4_230_132 c4_230_133 c4_230_134 c4_230_135 c4_230_136 set community 0:1 route-map calculator permit 23295 match community c4_230_137 c4_230_138 c4_230_139 c4_230_140 c4_230_141 set community 0:1 route-map calculator permit 23296 match community c4_230_142 c4_230_143 c4_230_144 c4_230_145 c4_230_146 set community 0:1 route-map calculator permit 23297 match community c4_230_147 c4_230_148 c4_230_149 c4_230_150 c4_230_151 set community 0:1 route-map calculator permit 23298 match community c4_230_152 c4_230_153 c4_230_154 c4_230_155 c4_230_156 set community 0:1 route-map calculator permit 23299 match community c4_230_157 c4_230_158 c4_230_159 c4_230_160 c4_230_161 set community 0:1 route-map calculator permit 23300 match community c4_230_162 c4_230_163 c4_230_164 c4_230_165 c4_230_166 set community 0:1 route-map calculator permit 23301 match community c4_230_167 c4_230_168 c4_230_169 c4_230_170 c4_230_171 set community 0:1 route-map calculator permit 23302 match community c4_230_172 c4_230_173 c4_230_174 c4_230_175 c4_230_176 set community 0:1 route-map calculator permit 23303 match community c4_230_177 c4_230_178 c4_230_179 c4_230_180 c4_230_181 set community 0:1 route-map calculator permit 23304 match community c4_230_182 c4_230_183 c4_230_184 c4_230_185 c4_230_186 set community 0:1 route-map calculator permit 23305 match community c4_230_187 c4_230_188 c4_230_189 c4_230_190 c4_230_191 set community 0:1 route-map calculator permit 23306 match community c4_230_192 c4_230_193 c4_230_194 c4_230_195 c4_230_196 set community 0:1 route-map calculator permit 23307 match community c4_230_197 c4_230_198 c4_230_199 c4_230_200 c4_230_201 set community 0:1 route-map calculator permit 23308 match community c4_230_202 c4_230_203 c4_230_204 c4_230_205 c4_230_206 set community 0:1 route-map calculator permit 23309 match community c4_230_207 c4_230_208 c4_230_209 c4_230_210 c4_230_211 set community 0:1 route-map calculator permit 23310 match community c4_230_212 c4_230_213 c4_230_214 c4_230_215 c4_230_216 set community 0:1 route-map calculator permit 23311 match community c4_230_217 c4_230_218 c4_230_219 c4_230_220 c4_230_221 set community 0:1 route-map calculator permit 23312 match community c4_230_222 c4_230_223 c4_230_224 c4_230_225 c4_230_226 set community 0:1 route-map calculator permit 23313 match community c4_230_227 c4_230_228 c3_230_229 c4_230_229 c4_230_230 set community 0:1 route-map calculator permit 23314 match community c4_231_116 c4_231_117 c4_231_118 c4_231_119 c4_231_120 set community 0:1 route-map calculator permit 23315 match community c4_231_121 c4_231_122 c4_231_123 c4_231_124 c4_231_125 set community 0:1 route-map calculator permit 23316 match community c4_231_126 c4_231_127 c4_231_128 c4_231_129 c4_231_130 set community 0:1 route-map calculator permit 23317 match community c4_231_131 c4_231_132 c4_231_133 c4_231_134 c4_231_135 set community 0:1 route-map calculator permit 23318 match community c4_231_136 c4_231_137 c4_231_138 c4_231_139 c4_231_140 set community 0:1 route-map calculator permit 23319 match community c4_231_141 c4_231_142 c4_231_143 c4_231_144 c4_231_145 set community 0:1 route-map calculator permit 23320 match community c4_231_146 c4_231_147 c4_231_148 c4_231_149 c4_231_150 set community 0:1 route-map calculator permit 23321 match community c4_231_151 c4_231_152 c4_231_153 c4_231_154 c4_231_155 set community 0:1 route-map calculator permit 23322 match community c4_231_156 c4_231_157 c4_231_158 c4_231_159 c4_231_160 set community 0:1 route-map calculator permit 23323 match community c4_231_161 c4_231_162 c4_231_163 c4_231_164 c4_231_165 set community 0:1 route-map calculator permit 23324 match community c4_231_166 c4_231_167 c4_231_168 c4_231_169 c4_231_170 set community 0:1 route-map calculator permit 23325 match community c4_231_171 c4_231_172 c4_231_173 c4_231_174 c4_231_175 set community 0:1 route-map calculator permit 23326 match community c4_231_176 c4_231_177 c4_231_178 c4_231_179 c4_231_180 set community 0:1 route-map calculator permit 23327 match community c4_231_181 c4_231_182 c4_231_183 c4_231_184 c4_231_185 set community 0:1 route-map calculator permit 23328 match community c4_231_186 c4_231_187 c4_231_188 c4_231_189 c4_231_190 set community 0:1 route-map calculator permit 23329 match community c4_231_191 c4_231_192 c4_231_193 c4_231_194 c4_231_195 set community 0:1 route-map calculator permit 23330 match community c4_231_196 c4_231_197 c4_231_198 c4_231_199 c4_231_200 set community 0:1 route-map calculator permit 23331 match community c4_231_201 c4_231_202 c4_231_203 c4_231_204 c4_231_205 set community 0:1 route-map calculator permit 23332 match community c4_231_206 c4_231_207 c4_231_208 c4_231_209 c4_231_210 set community 0:1 route-map calculator permit 23333 match community c4_231_211 c4_231_212 c4_231_213 c4_231_214 c4_231_215 set community 0:1 route-map calculator permit 23334 match community c4_231_216 c4_231_217 c4_231_218 c4_231_219 c4_231_220 set community 0:1 route-map calculator permit 23335 match community c4_231_221 c4_231_222 c4_231_223 c4_231_224 c4_231_225 set community 0:1 route-map calculator permit 23336 match community c4_231_226 c4_231_227 c4_231_228 c4_231_229 c3_231_230 set community 0:1 route-map calculator permit 23337 match community c4_231_230 c4_231_231 c4_232_117 c4_232_118 c4_232_119 set community 0:1 route-map calculator permit 23338 match community c4_232_120 c4_232_121 c4_232_122 c4_232_123 c4_232_124 set community 0:1 route-map calculator permit 23339 match community c4_232_125 c4_232_126 c4_232_127 c4_232_128 c4_232_129 set community 0:1 route-map calculator permit 23340 match community c4_232_130 c4_232_131 c4_232_132 c4_232_133 c4_232_134 set community 0:1 route-map calculator permit 23341 match community c4_232_135 c4_232_136 c4_232_137 c4_232_138 c4_232_139 set community 0:1 route-map calculator permit 23342 match community c4_232_140 c4_232_141 c4_232_142 c4_232_143 c4_232_144 set community 0:1 route-map calculator permit 23343 match community c4_232_145 c4_232_146 c4_232_147 c4_232_148 c4_232_149 set community 0:1 route-map calculator permit 23344 match community c4_232_150 c4_232_151 c4_232_152 c4_232_153 c4_232_154 set community 0:1 route-map calculator permit 23345 match community c4_232_155 c4_232_156 c4_232_157 c4_232_158 c4_232_159 set community 0:1 route-map calculator permit 23346 match community c4_232_160 c4_232_161 c4_232_162 c4_232_163 c4_232_164 set community 0:1 route-map calculator permit 23347 match community c4_232_165 c4_232_166 c4_232_167 c4_232_168 c4_232_169 set community 0:1 route-map calculator permit 23348 match community c4_232_170 c4_232_171 c4_232_172 c4_232_173 c4_232_174 set community 0:1 route-map calculator permit 23349 match community c4_232_175 c4_232_176 c4_232_177 c4_232_178 c4_232_179 set community 0:1 route-map calculator permit 23350 match community c4_232_180 c4_232_181 c4_232_182 c4_232_183 c4_232_184 set community 0:1 route-map calculator permit 23351 match community c4_232_185 c4_232_186 c4_232_187 c4_232_188 c4_232_189 set community 0:1 route-map calculator permit 23352 match community c4_232_190 c4_232_191 c4_232_192 c4_232_193 c4_232_194 set community 0:1 route-map calculator permit 23353 match community c4_232_195 c4_232_196 c4_232_197 c4_232_198 c4_232_199 set community 0:1 route-map calculator permit 23354 match community c4_232_200 c4_232_201 c4_232_202 c4_232_203 c4_232_204 set community 0:1 route-map calculator permit 23355 match community c4_232_205 c4_232_206 c4_232_207 c4_232_208 c4_232_209 set community 0:1 route-map calculator permit 23356 match community c4_232_210 c4_232_211 c4_232_212 c4_232_213 c4_232_214 set community 0:1 route-map calculator permit 23357 match community c4_232_215 c4_232_216 c4_232_217 c4_232_218 c4_232_219 set community 0:1 route-map calculator permit 23358 match community c4_232_220 c4_232_221 c4_232_222 c4_232_223 c4_232_224 set community 0:1 route-map calculator permit 23359 match community c4_232_225 c4_232_226 c4_232_227 c4_232_228 c4_232_229 set community 0:1 route-map calculator permit 23360 match community c4_232_230 c3_232_231 c4_232_231 c4_232_232 c4_233_117 set community 0:1 route-map calculator permit 23361 match community c4_233_118 c4_233_119 c4_233_120 c4_233_121 c4_233_122 set community 0:1 route-map calculator permit 23362 match community c4_233_123 c4_233_124 c4_233_125 c4_233_126 c4_233_127 set community 0:1 route-map calculator permit 23363 match community c4_233_128 c4_233_129 c4_233_130 c4_233_131 c4_233_132 set community 0:1 route-map calculator permit 23364 match community c4_233_133 c4_233_134 c4_233_135 c4_233_136 c4_233_137 set community 0:1 route-map calculator permit 23365 match community c4_233_138 c4_233_139 c4_233_140 c4_233_141 c4_233_142 set community 0:1 route-map calculator permit 23366 match community c4_233_143 c4_233_144 c4_233_145 c4_233_146 c4_233_147 set community 0:1 route-map calculator permit 23367 match community c4_233_148 c4_233_149 c4_233_150 c4_233_151 c4_233_152 set community 0:1 route-map calculator permit 23368 match community c4_233_153 c4_233_154 c4_233_155 c4_233_156 c4_233_157 set community 0:1 route-map calculator permit 23369 match community c4_233_158 c4_233_159 c4_233_160 c4_233_161 c4_233_162 set community 0:1 route-map calculator permit 23370 match community c4_233_163 c4_233_164 c4_233_165 c4_233_166 c4_233_167 set community 0:1 route-map calculator permit 23371 match community c4_233_168 c4_233_169 c4_233_170 c4_233_171 c4_233_172 set community 0:1 route-map calculator permit 23372 match community c4_233_173 c4_233_174 c4_233_175 c4_233_176 c4_233_177 set community 0:1 route-map calculator permit 23373 match community c4_233_178 c4_233_179 c4_233_180 c4_233_181 c4_233_182 set community 0:1 route-map calculator permit 23374 match community c4_233_183 c4_233_184 c4_233_185 c4_233_186 c4_233_187 set community 0:1 route-map calculator permit 23375 match community c4_233_188 c4_233_189 c4_233_190 c4_233_191 c4_233_192 set community 0:1 route-map calculator permit 23376 match community c4_233_193 c4_233_194 c4_233_195 c4_233_196 c4_233_197 set community 0:1 route-map calculator permit 23377 match community c4_233_198 c4_233_199 c4_233_200 c4_233_201 c4_233_202 set community 0:1 route-map calculator permit 23378 match community c4_233_203 c4_233_204 c4_233_205 c4_233_206 c4_233_207 set community 0:1 route-map calculator permit 23379 match community c4_233_208 c4_233_209 c4_233_210 c4_233_211 c4_233_212 set community 0:1 route-map calculator permit 23380 match community c4_233_213 c4_233_214 c4_233_215 c4_233_216 c4_233_217 set community 0:1 route-map calculator permit 23381 match community c4_233_218 c4_233_219 c4_233_220 c4_233_221 c4_233_222 set community 0:1 route-map calculator permit 23382 match community c4_233_223 c4_233_224 c4_233_225 c4_233_226 c4_233_227 set community 0:1 route-map calculator permit 23383 match community c4_233_228 c4_233_229 c4_233_230 c4_233_231 c3_233_232 set community 0:1 route-map calculator permit 23384 match community c4_233_232 c4_233_233 c4_234_118 c4_234_119 c4_234_120 set community 0:1 route-map calculator permit 23385 match community c4_234_121 c4_234_122 c4_234_123 c4_234_124 c4_234_125 set community 0:1 route-map calculator permit 23386 match community c4_234_126 c4_234_127 c4_234_128 c4_234_129 c4_234_130 set community 0:1 route-map calculator permit 23387 match community c4_234_131 c4_234_132 c4_234_133 c4_234_134 c4_234_135 set community 0:1 route-map calculator permit 23388 match community c4_234_136 c4_234_137 c4_234_138 c4_234_139 c4_234_140 set community 0:1 route-map calculator permit 23389 match community c4_234_141 c4_234_142 c4_234_143 c4_234_144 c4_234_145 set community 0:1 route-map calculator permit 23390 match community c4_234_146 c4_234_147 c4_234_148 c4_234_149 c4_234_150 set community 0:1 route-map calculator permit 23391 match community c4_234_151 c4_234_152 c4_234_153 c4_234_154 c4_234_155 set community 0:1 route-map calculator permit 23392 match community c4_234_156 c4_234_157 c4_234_158 c4_234_159 c4_234_160 set community 0:1 route-map calculator permit 23393 match community c4_234_161 c4_234_162 c4_234_163 c4_234_164 c4_234_165 set community 0:1 route-map calculator permit 23394 match community c4_234_166 c4_234_167 c4_234_168 c4_234_169 c4_234_170 set community 0:1 route-map calculator permit 23395 match community c4_234_171 c4_234_172 c4_234_173 c4_234_174 c4_234_175 set community 0:1 route-map calculator permit 23396 match community c4_234_176 c4_234_177 c4_234_178 c4_234_179 c4_234_180 set community 0:1 route-map calculator permit 23397 match community c4_234_181 c4_234_182 c4_234_183 c4_234_184 c4_234_185 set community 0:1 route-map calculator permit 23398 match community c4_234_186 c4_234_187 c4_234_188 c4_234_189 c4_234_190 set community 0:1 route-map calculator permit 23399 match community c4_234_191 c4_234_192 c4_234_193 c4_234_194 c4_234_195 set community 0:1 route-map calculator permit 23400 match community c4_234_196 c4_234_197 c4_234_198 c4_234_199 c4_234_200 set community 0:1 route-map calculator permit 23401 match community c4_234_201 c4_234_202 c4_234_203 c4_234_204 c4_234_205 set community 0:1 route-map calculator permit 23402 match community c4_234_206 c4_234_207 c4_234_208 c4_234_209 c4_234_210 set community 0:1 route-map calculator permit 23403 match community c4_234_211 c4_234_212 c4_234_213 c4_234_214 c4_234_215 set community 0:1 route-map calculator permit 23404 match community c4_234_216 c4_234_217 c4_234_218 c4_234_219 c4_234_220 set community 0:1 route-map calculator permit 23405 match community c4_234_221 c4_234_222 c4_234_223 c4_234_224 c4_234_225 set community 0:1 route-map calculator permit 23406 match community c4_234_226 c4_234_227 c4_234_228 c4_234_229 c4_234_230 set community 0:1 route-map calculator permit 23407 match community c4_234_231 c4_234_232 c3_234_233 c4_234_233 c4_234_234 set community 0:1 route-map calculator permit 23408 match community c4_235_118 c4_235_119 c4_235_120 c4_235_121 c4_235_122 set community 0:1 route-map calculator permit 23409 match community c4_235_123 c4_235_124 c4_235_125 c4_235_126 c4_235_127 set community 0:1 route-map calculator permit 23410 match community c4_235_128 c4_235_129 c4_235_130 c4_235_131 c4_235_132 set community 0:1 route-map calculator permit 23411 match community c4_235_133 c4_235_134 c4_235_135 c4_235_136 c4_235_137 set community 0:1 route-map calculator permit 23412 match community c4_235_138 c4_235_139 c4_235_140 c4_235_141 c4_235_142 set community 0:1 route-map calculator permit 23413 match community c4_235_143 c4_235_144 c4_235_145 c4_235_146 c4_235_147 set community 0:1 route-map calculator permit 23414 match community c4_235_148 c4_235_149 c4_235_150 c4_235_151 c4_235_152 set community 0:1 route-map calculator permit 23415 match community c4_235_153 c4_235_154 c4_235_155 c4_235_156 c4_235_157 set community 0:1 route-map calculator permit 23416 match community c4_235_158 c4_235_159 c4_235_160 c4_235_161 c4_235_162 set community 0:1 route-map calculator permit 23417 match community c4_235_163 c4_235_164 c4_235_165 c4_235_166 c4_235_167 set community 0:1 route-map calculator permit 23418 match community c4_235_168 c4_235_169 c4_235_170 c4_235_171 c4_235_172 set community 0:1 route-map calculator permit 23419 match community c4_235_173 c4_235_174 c4_235_175 c4_235_176 c4_235_177 set community 0:1 route-map calculator permit 23420 match community c4_235_178 c4_235_179 c4_235_180 c4_235_181 c4_235_182 set community 0:1 route-map calculator permit 23421 match community c4_235_183 c4_235_184 c4_235_185 c4_235_186 c4_235_187 set community 0:1 route-map calculator permit 23422 match community c4_235_188 c4_235_189 c4_235_190 c4_235_191 c4_235_192 set community 0:1 route-map calculator permit 23423 match community c4_235_193 c4_235_194 c4_235_195 c4_235_196 c4_235_197 set community 0:1 route-map calculator permit 23424 match community c4_235_198 c4_235_199 c4_235_200 c4_235_201 c4_235_202 set community 0:1 route-map calculator permit 23425 match community c4_235_203 c4_235_204 c4_235_205 c4_235_206 c4_235_207 set community 0:1 route-map calculator permit 23426 match community c4_235_208 c4_235_209 c4_235_210 c4_235_211 c4_235_212 set community 0:1 route-map calculator permit 23427 match community c4_235_213 c4_235_214 c4_235_215 c4_235_216 c4_235_217 set community 0:1 route-map calculator permit 23428 match community c4_235_218 c4_235_219 c4_235_220 c4_235_221 c4_235_222 set community 0:1 route-map calculator permit 23429 match community c4_235_223 c4_235_224 c4_235_225 c4_235_226 c4_235_227 set community 0:1 route-map calculator permit 23430 match community c4_235_228 c4_235_229 c4_235_230 c4_235_231 c4_235_232 set community 0:1 route-map calculator permit 23431 match community c4_235_233 c3_235_234 c4_235_234 c4_235_235 c4_236_119 set community 0:1 route-map calculator permit 23432 match community c4_236_120 c4_236_121 c4_236_122 c4_236_123 c4_236_124 set community 0:1 route-map calculator permit 23433 match community c4_236_125 c4_236_126 c4_236_127 c4_236_128 c4_236_129 set community 0:1 route-map calculator permit 23434 match community c4_236_130 c4_236_131 c4_236_132 c4_236_133 c4_236_134 set community 0:1 route-map calculator permit 23435 match community c4_236_135 c4_236_136 c4_236_137 c4_236_138 c4_236_139 set community 0:1 route-map calculator permit 23436 match community c4_236_140 c4_236_141 c4_236_142 c4_236_143 c4_236_144 set community 0:1 route-map calculator permit 23437 match community c4_236_145 c4_236_146 c4_236_147 c4_236_148 c4_236_149 set community 0:1 route-map calculator permit 23438 match community c4_236_150 c4_236_151 c4_236_152 c4_236_153 c4_236_154 set community 0:1 route-map calculator permit 23439 match community c4_236_155 c4_236_156 c4_236_157 c4_236_158 c4_236_159 set community 0:1 route-map calculator permit 23440 match community c4_236_160 c4_236_161 c4_236_162 c4_236_163 c4_236_164 set community 0:1 route-map calculator permit 23441 match community c4_236_165 c4_236_166 c4_236_167 c4_236_168 c4_236_169 set community 0:1 route-map calculator permit 23442 match community c4_236_170 c4_236_171 c4_236_172 c4_236_173 c4_236_174 set community 0:1 route-map calculator permit 23443 match community c4_236_175 c4_236_176 c4_236_177 c4_236_178 c4_236_179 set community 0:1 route-map calculator permit 23444 match community c4_236_180 c4_236_181 c4_236_182 c4_236_183 c4_236_184 set community 0:1 route-map calculator permit 23445 match community c4_236_185 c4_236_186 c4_236_187 c4_236_188 c4_236_189 set community 0:1 route-map calculator permit 23446 match community c4_236_190 c4_236_191 c4_236_192 c4_236_193 c4_236_194 set community 0:1 route-map calculator permit 23447 match community c4_236_195 c4_236_196 c4_236_197 c4_236_198 c4_236_199 set community 0:1 route-map calculator permit 23448 match community c4_236_200 c4_236_201 c4_236_202 c4_236_203 c4_236_204 set community 0:1 route-map calculator permit 23449 match community c4_236_205 c4_236_206 c4_236_207 c4_236_208 c4_236_209 set community 0:1 route-map calculator permit 23450 match community c4_236_210 c4_236_211 c4_236_212 c4_236_213 c4_236_214 set community 0:1 route-map calculator permit 23451 match community c4_236_215 c4_236_216 c4_236_217 c4_236_218 c4_236_219 set community 0:1 route-map calculator permit 23452 match community c4_236_220 c4_236_221 c4_236_222 c4_236_223 c4_236_224 set community 0:1 route-map calculator permit 23453 match community c4_236_225 c4_236_226 c4_236_227 c4_236_228 c4_236_229 set community 0:1 route-map calculator permit 23454 match community c4_236_230 c4_236_231 c4_236_232 c4_236_233 c4_236_234 set community 0:1 route-map calculator permit 23455 match community c3_236_235 c4_236_235 c4_236_236 c4_237_119 c4_237_120 set community 0:1 route-map calculator permit 23456 match community c4_237_121 c4_237_122 c4_237_123 c4_237_124 c4_237_125 set community 0:1 route-map calculator permit 23457 match community c4_237_126 c4_237_127 c4_237_128 c4_237_129 c4_237_130 set community 0:1 route-map calculator permit 23458 match community c4_237_131 c4_237_132 c4_237_133 c4_237_134 c4_237_135 set community 0:1 route-map calculator permit 23459 match community c4_237_136 c4_237_137 c4_237_138 c4_237_139 c4_237_140 set community 0:1 route-map calculator permit 23460 match community c4_237_141 c4_237_142 c4_237_143 c4_237_144 c4_237_145 set community 0:1 route-map calculator permit 23461 match community c4_237_146 c4_237_147 c4_237_148 c4_237_149 c4_237_150 set community 0:1 route-map calculator permit 23462 match community c4_237_151 c4_237_152 c4_237_153 c4_237_154 c4_237_155 set community 0:1 route-map calculator permit 23463 match community c4_237_156 c4_237_157 c4_237_158 c4_237_159 c4_237_160 set community 0:1 route-map calculator permit 23464 match community c4_237_161 c4_237_162 c4_237_163 c4_237_164 c4_237_165 set community 0:1 route-map calculator permit 23465 match community c4_237_166 c4_237_167 c4_237_168 c4_237_169 c4_237_170 set community 0:1 route-map calculator permit 23466 match community c4_237_171 c4_237_172 c4_237_173 c4_237_174 c4_237_175 set community 0:1 route-map calculator permit 23467 match community c4_237_176 c4_237_177 c4_237_178 c4_237_179 c4_237_180 set community 0:1 route-map calculator permit 23468 match community c4_237_181 c4_237_182 c4_237_183 c4_237_184 c4_237_185 set community 0:1 route-map calculator permit 23469 match community c4_237_186 c4_237_187 c4_237_188 c4_237_189 c4_237_190 set community 0:1 route-map calculator permit 23470 match community c4_237_191 c4_237_192 c4_237_193 c4_237_194 c4_237_195 set community 0:1 route-map calculator permit 23471 match community c4_237_196 c4_237_197 c4_237_198 c4_237_199 c4_237_200 set community 0:1 route-map calculator permit 23472 match community c4_237_201 c4_237_202 c4_237_203 c4_237_204 c4_237_205 set community 0:1 route-map calculator permit 23473 match community c4_237_206 c4_237_207 c4_237_208 c4_237_209 c4_237_210 set community 0:1 route-map calculator permit 23474 match community c4_237_211 c4_237_212 c4_237_213 c4_237_214 c4_237_215 set community 0:1 route-map calculator permit 23475 match community c4_237_216 c4_237_217 c4_237_218 c4_237_219 c4_237_220 set community 0:1 route-map calculator permit 23476 match community c4_237_221 c4_237_222 c4_237_223 c4_237_224 c4_237_225 set community 0:1 route-map calculator permit 23477 match community c4_237_226 c4_237_227 c4_237_228 c4_237_229 c4_237_230 set community 0:1 route-map calculator permit 23478 match community c4_237_231 c4_237_232 c4_237_233 c4_237_234 c4_237_235 set community 0:1 route-map calculator permit 23479 match community c3_237_236 c4_237_236 c4_237_237 c4_238_120 c4_238_121 set community 0:1 route-map calculator permit 23480 match community c4_238_122 c4_238_123 c4_238_124 c4_238_125 c4_238_126 set community 0:1 route-map calculator permit 23481 match community c4_238_127 c4_238_128 c4_238_129 c4_238_130 c4_238_131 set community 0:1 route-map calculator permit 23482 match community c4_238_132 c4_238_133 c4_238_134 c4_238_135 c4_238_136 set community 0:1 route-map calculator permit 23483 match community c4_238_137 c4_238_138 c4_238_139 c4_238_140 c4_238_141 set community 0:1 route-map calculator permit 23484 match community c4_238_142 c4_238_143 c4_238_144 c4_238_145 c4_238_146 set community 0:1 route-map calculator permit 23485 match community c4_238_147 c4_238_148 c4_238_149 c4_238_150 c4_238_151 set community 0:1 route-map calculator permit 23486 match community c4_238_152 c4_238_153 c4_238_154 c4_238_155 c4_238_156 set community 0:1 route-map calculator permit 23487 match community c4_238_157 c4_238_158 c4_238_159 c4_238_160 c4_238_161 set community 0:1 route-map calculator permit 23488 match community c4_238_162 c4_238_163 c4_238_164 c4_238_165 c4_238_166 set community 0:1 route-map calculator permit 23489 match community c4_238_167 c4_238_168 c4_238_169 c4_238_170 c4_238_171 set community 0:1 route-map calculator permit 23490 match community c4_238_172 c4_238_173 c4_238_174 c4_238_175 c4_238_176 set community 0:1 route-map calculator permit 23491 match community c4_238_177 c4_238_178 c4_238_179 c4_238_180 c4_238_181 set community 0:1 route-map calculator permit 23492 match community c4_238_182 c4_238_183 c4_238_184 c4_238_185 c4_238_186 set community 0:1 route-map calculator permit 23493 match community c4_238_187 c4_238_188 c4_238_189 c4_238_190 c4_238_191 set community 0:1 route-map calculator permit 23494 match community c4_238_192 c4_238_193 c4_238_194 c4_238_195 c4_238_196 set community 0:1 route-map calculator permit 23495 match community c4_238_197 c4_238_198 c4_238_199 c4_238_200 c4_238_201 set community 0:1 route-map calculator permit 23496 match community c4_238_202 c4_238_203 c4_238_204 c4_238_205 c4_238_206 set community 0:1 route-map calculator permit 23497 match community c4_238_207 c4_238_208 c4_238_209 c4_238_210 c4_238_211 set community 0:1 route-map calculator permit 23498 match community c4_238_212 c4_238_213 c4_238_214 c4_238_215 c4_238_216 set community 0:1 route-map calculator permit 23499 match community c4_238_217 c4_238_218 c4_238_219 c4_238_220 c4_238_221 set community 0:1 route-map calculator permit 23500 match community c4_238_222 c4_238_223 c4_238_224 c4_238_225 c4_238_226 set community 0:1 route-map calculator permit 23501 match community c4_238_227 c4_238_228 c4_238_229 c4_238_230 c4_238_231 set community 0:1 route-map calculator permit 23502 match community c4_238_232 c4_238_233 c4_238_234 c4_238_235 c4_238_236 set community 0:1 route-map calculator permit 23503 match community c3_238_237 c4_238_237 c4_238_238 c4_239_120 c4_239_121 set community 0:1 route-map calculator permit 23504 match community c4_239_122 c4_239_123 c4_239_124 c4_239_125 c4_239_126 set community 0:1 route-map calculator permit 23505 match community c4_239_127 c4_239_128 c4_239_129 c4_239_130 c4_239_131 set community 0:1 route-map calculator permit 23506 match community c4_239_132 c4_239_133 c4_239_134 c4_239_135 c4_239_136 set community 0:1 route-map calculator permit 23507 match community c4_239_137 c4_239_138 c4_239_139 c4_239_140 c4_239_141 set community 0:1 route-map calculator permit 23508 match community c4_239_142 c4_239_143 c4_239_144 c4_239_145 c4_239_146 set community 0:1 route-map calculator permit 23509 match community c4_239_147 c4_239_148 c4_239_149 c4_239_150 c4_239_151 set community 0:1 route-map calculator permit 23510 match community c4_239_152 c4_239_153 c4_239_154 c4_239_155 c4_239_156 set community 0:1 route-map calculator permit 23511 match community c4_239_157 c4_239_158 c4_239_159 c4_239_160 c4_239_161 set community 0:1 route-map calculator permit 23512 match community c4_239_162 c4_239_163 c4_239_164 c4_239_165 c4_239_166 set community 0:1 route-map calculator permit 23513 match community c4_239_167 c4_239_168 c4_239_169 c4_239_170 c4_239_171 set community 0:1 route-map calculator permit 23514 match community c4_239_172 c4_239_173 c4_239_174 c4_239_175 c4_239_176 set community 0:1 route-map calculator permit 23515 match community c4_239_177 c4_239_178 c4_239_179 c4_239_180 c4_239_181 set community 0:1 route-map calculator permit 23516 match community c4_239_182 c4_239_183 c4_239_184 c4_239_185 c4_239_186 set community 0:1 route-map calculator permit 23517 match community c4_239_187 c4_239_188 c4_239_189 c4_239_190 c4_239_191 set community 0:1 route-map calculator permit 23518 match community c4_239_192 c4_239_193 c4_239_194 c4_239_195 c4_239_196 set community 0:1 route-map calculator permit 23519 match community c4_239_197 c4_239_198 c4_239_199 c4_239_200 c4_239_201 set community 0:1 route-map calculator permit 23520 match community c4_239_202 c4_239_203 c4_239_204 c4_239_205 c4_239_206 set community 0:1 route-map calculator permit 23521 match community c4_239_207 c4_239_208 c4_239_209 c4_239_210 c4_239_211 set community 0:1 route-map calculator permit 23522 match community c4_239_212 c4_239_213 c4_239_214 c4_239_215 c4_239_216 set community 0:1 route-map calculator permit 23523 match community c4_239_217 c4_239_218 c4_239_219 c4_239_220 c4_239_221 set community 0:1 route-map calculator permit 23524 match community c4_239_222 c4_239_223 c4_239_224 c4_239_225 c4_239_226 set community 0:1 route-map calculator permit 23525 match community c4_239_227 c4_239_228 c4_239_229 c4_239_230 c4_239_231 set community 0:1 route-map calculator permit 23526 match community c4_239_232 c4_239_233 c4_239_234 c4_239_235 c4_239_236 set community 0:1 route-map calculator permit 23527 match community c4_239_237 c3_239_238 c4_239_238 c4_239_239 c4_240_121 set community 0:1 route-map calculator permit 23528 match community c4_240_122 c4_240_123 c4_240_124 c4_240_125 c4_240_126 set community 0:1 route-map calculator permit 23529 match community c4_240_127 c4_240_128 c4_240_129 c4_240_130 c4_240_131 set community 0:1 route-map calculator permit 23530 match community c4_240_132 c4_240_133 c4_240_134 c4_240_135 c4_240_136 set community 0:1 route-map calculator permit 23531 match community c4_240_137 c4_240_138 c4_240_139 c4_240_140 c4_240_141 set community 0:1 route-map calculator permit 23532 match community c4_240_142 c4_240_143 c4_240_144 c4_240_145 c4_240_146 set community 0:1 route-map calculator permit 23533 match community c4_240_147 c4_240_148 c4_240_149 c4_240_150 c4_240_151 set community 0:1 route-map calculator permit 23534 match community c4_240_152 c4_240_153 c4_240_154 c4_240_155 c4_240_156 set community 0:1 route-map calculator permit 23535 match community c4_240_157 c4_240_158 c4_240_159 c4_240_160 c4_240_161 set community 0:1 route-map calculator permit 23536 match community c4_240_162 c4_240_163 c4_240_164 c4_240_165 c4_240_166 set community 0:1 route-map calculator permit 23537 match community c4_240_167 c4_240_168 c4_240_169 c4_240_170 c4_240_171 set community 0:1 route-map calculator permit 23538 match community c4_240_172 c4_240_173 c4_240_174 c4_240_175 c4_240_176 set community 0:1 route-map calculator permit 23539 match community c4_240_177 c4_240_178 c4_240_179 c4_240_180 c4_240_181 set community 0:1 route-map calculator permit 23540 match community c4_240_182 c4_240_183 c4_240_184 c4_240_185 c4_240_186 set community 0:1 route-map calculator permit 23541 match community c4_240_187 c4_240_188 c4_240_189 c4_240_190 c4_240_191 set community 0:1 route-map calculator permit 23542 match community c4_240_192 c4_240_193 c4_240_194 c4_240_195 c4_240_196 set community 0:1 route-map calculator permit 23543 match community c4_240_197 c4_240_198 c4_240_199 c4_240_200 c4_240_201 set community 0:1 route-map calculator permit 23544 match community c4_240_202 c4_240_203 c4_240_204 c4_240_205 c4_240_206 set community 0:1 route-map calculator permit 23545 match community c4_240_207 c4_240_208 c4_240_209 c4_240_210 c4_240_211 set community 0:1 route-map calculator permit 23546 match community c4_240_212 c4_240_213 c4_240_214 c4_240_215 c4_240_216 set community 0:1 route-map calculator permit 23547 match community c4_240_217 c4_240_218 c4_240_219 c4_240_220 c4_240_221 set community 0:1 route-map calculator permit 23548 match community c4_240_222 c4_240_223 c4_240_224 c4_240_225 c4_240_226 set community 0:1 route-map calculator permit 23549 match community c4_240_227 c4_240_228 c4_240_229 c4_240_230 c4_240_231 set community 0:1 route-map calculator permit 23550 match community c4_240_232 c4_240_233 c4_240_234 c4_240_235 c4_240_236 set community 0:1 route-map calculator permit 23551 match community c4_240_237 c4_240_238 c3_240_239 c4_240_239 c4_240_240 set community 0:1 route-map calculator permit 23552 match community c4_241_121 c4_241_122 c4_241_123 c4_241_124 c4_241_125 set community 0:1 route-map calculator permit 23553 match community c4_241_126 c4_241_127 c4_241_128 c4_241_129 c4_241_130 set community 0:1 route-map calculator permit 23554 match community c4_241_131 c4_241_132 c4_241_133 c4_241_134 c4_241_135 set community 0:1 route-map calculator permit 23555 match community c4_241_136 c4_241_137 c4_241_138 c4_241_139 c4_241_140 set community 0:1 route-map calculator permit 23556 match community c4_241_141 c4_241_142 c4_241_143 c4_241_144 c4_241_145 set community 0:1 route-map calculator permit 23557 match community c4_241_146 c4_241_147 c4_241_148 c4_241_149 c4_241_150 set community 0:1 route-map calculator permit 23558 match community c4_241_151 c4_241_152 c4_241_153 c4_241_154 c4_241_155 set community 0:1 route-map calculator permit 23559 match community c4_241_156 c4_241_157 c4_241_158 c4_241_159 c4_241_160 set community 0:1 route-map calculator permit 23560 match community c4_241_161 c4_241_162 c4_241_163 c4_241_164 c4_241_165 set community 0:1 route-map calculator permit 23561 match community c4_241_166 c4_241_167 c4_241_168 c4_241_169 c4_241_170 set community 0:1 route-map calculator permit 23562 match community c4_241_171 c4_241_172 c4_241_173 c4_241_174 c4_241_175 set community 0:1 route-map calculator permit 23563 match community c4_241_176 c4_241_177 c4_241_178 c4_241_179 c4_241_180 set community 0:1 route-map calculator permit 23564 match community c4_241_181 c4_241_182 c4_241_183 c4_241_184 c4_241_185 set community 0:1 route-map calculator permit 23565 match community c4_241_186 c4_241_187 c4_241_188 c4_241_189 c4_241_190 set community 0:1 route-map calculator permit 23566 match community c4_241_191 c4_241_192 c4_241_193 c4_241_194 c4_241_195 set community 0:1 route-map calculator permit 23567 match community c4_241_196 c4_241_197 c4_241_198 c4_241_199 c4_241_200 set community 0:1 route-map calculator permit 23568 match community c4_241_201 c4_241_202 c4_241_203 c4_241_204 c4_241_205 set community 0:1 route-map calculator permit 23569 match community c4_241_206 c4_241_207 c4_241_208 c4_241_209 c4_241_210 set community 0:1 route-map calculator permit 23570 match community c4_241_211 c4_241_212 c4_241_213 c4_241_214 c4_241_215 set community 0:1 route-map calculator permit 23571 match community c4_241_216 c4_241_217 c4_241_218 c4_241_219 c4_241_220 set community 0:1 route-map calculator permit 23572 match community c4_241_221 c4_241_222 c4_241_223 c4_241_224 c4_241_225 set community 0:1 route-map calculator permit 23573 match community c4_241_226 c4_241_227 c4_241_228 c4_241_229 c4_241_230 set community 0:1 route-map calculator permit 23574 match community c4_241_231 c4_241_232 c4_241_233 c4_241_234 c4_241_235 set community 0:1 route-map calculator permit 23575 match community c4_241_236 c4_241_237 c4_241_238 c4_241_239 c3_241_240 set community 0:1 route-map calculator permit 23576 match community c4_241_240 c4_241_241 c4_242_122 c4_242_123 c4_242_124 set community 0:1 route-map calculator permit 23577 match community c4_242_125 c4_242_126 c4_242_127 c4_242_128 c4_242_129 set community 0:1 route-map calculator permit 23578 match community c4_242_130 c4_242_131 c4_242_132 c4_242_133 c4_242_134 set community 0:1 route-map calculator permit 23579 match community c4_242_135 c4_242_136 c4_242_137 c4_242_138 c4_242_139 set community 0:1 route-map calculator permit 23580 match community c4_242_140 c4_242_141 c4_242_142 c4_242_143 c4_242_144 set community 0:1 route-map calculator permit 23581 match community c4_242_145 c4_242_146 c4_242_147 c4_242_148 c4_242_149 set community 0:1 route-map calculator permit 23582 match community c4_242_150 c4_242_151 c4_242_152 c4_242_153 c4_242_154 set community 0:1 route-map calculator permit 23583 match community c4_242_155 c4_242_156 c4_242_157 c4_242_158 c4_242_159 set community 0:1 route-map calculator permit 23584 match community c4_242_160 c4_242_161 c4_242_162 c4_242_163 c4_242_164 set community 0:1 route-map calculator permit 23585 match community c4_242_165 c4_242_166 c4_242_167 c4_242_168 c4_242_169 set community 0:1 route-map calculator permit 23586 match community c4_242_170 c4_242_171 c4_242_172 c4_242_173 c4_242_174 set community 0:1 route-map calculator permit 23587 match community c4_242_175 c4_242_176 c4_242_177 c4_242_178 c4_242_179 set community 0:1 route-map calculator permit 23588 match community c4_242_180 c4_242_181 c4_242_182 c4_242_183 c4_242_184 set community 0:1 route-map calculator permit 23589 match community c4_242_185 c4_242_186 c4_242_187 c4_242_188 c4_242_189 set community 0:1 route-map calculator permit 23590 match community c4_242_190 c4_242_191 c4_242_192 c4_242_193 c4_242_194 set community 0:1 route-map calculator permit 23591 match community c4_242_195 c4_242_196 c4_242_197 c4_242_198 c4_242_199 set community 0:1 route-map calculator permit 23592 match community c4_242_200 c4_242_201 c4_242_202 c4_242_203 c4_242_204 set community 0:1 route-map calculator permit 23593 match community c4_242_205 c4_242_206 c4_242_207 c4_242_208 c4_242_209 set community 0:1 route-map calculator permit 23594 match community c4_242_210 c4_242_211 c4_242_212 c4_242_213 c4_242_214 set community 0:1 route-map calculator permit 23595 match community c4_242_215 c4_242_216 c4_242_217 c4_242_218 c4_242_219 set community 0:1 route-map calculator permit 23596 match community c4_242_220 c4_242_221 c4_242_222 c4_242_223 c4_242_224 set community 0:1 route-map calculator permit 23597 match community c4_242_225 c4_242_226 c4_242_227 c4_242_228 c4_242_229 set community 0:1 route-map calculator permit 23598 match community c4_242_230 c4_242_231 c4_242_232 c4_242_233 c4_242_234 set community 0:1 route-map calculator permit 23599 match community c4_242_235 c4_242_236 c4_242_237 c4_242_238 c4_242_239 set community 0:1 route-map calculator permit 23600 match community c4_242_240 c3_242_241 c4_242_241 c4_242_242 c4_243_122 set community 0:1 route-map calculator permit 23601 match community c4_243_123 c4_243_124 c4_243_125 c4_243_126 c4_243_127 set community 0:1 route-map calculator permit 23602 match community c4_243_128 c4_243_129 c4_243_130 c4_243_131 c4_243_132 set community 0:1 route-map calculator permit 23603 match community c4_243_133 c4_243_134 c4_243_135 c4_243_136 c4_243_137 set community 0:1 route-map calculator permit 23604 match community c4_243_138 c4_243_139 c4_243_140 c4_243_141 c4_243_142 set community 0:1 route-map calculator permit 23605 match community c4_243_143 c4_243_144 c4_243_145 c4_243_146 c4_243_147 set community 0:1 route-map calculator permit 23606 match community c4_243_148 c4_243_149 c4_243_150 c4_243_151 c4_243_152 set community 0:1 route-map calculator permit 23607 match community c4_243_153 c4_243_154 c4_243_155 c4_243_156 c4_243_157 set community 0:1 route-map calculator permit 23608 match community c4_243_158 c4_243_159 c4_243_160 c4_243_161 c4_243_162 set community 0:1 route-map calculator permit 23609 match community c4_243_163 c4_243_164 c4_243_165 c4_243_166 c4_243_167 set community 0:1 route-map calculator permit 23610 match community c4_243_168 c4_243_169 c4_243_170 c4_243_171 c4_243_172 set community 0:1 route-map calculator permit 23611 match community c4_243_173 c4_243_174 c4_243_175 c4_243_176 c4_243_177 set community 0:1 route-map calculator permit 23612 match community c4_243_178 c4_243_179 c4_243_180 c4_243_181 c4_243_182 set community 0:1 route-map calculator permit 23613 match community c4_243_183 c4_243_184 c4_243_185 c4_243_186 c4_243_187 set community 0:1 route-map calculator permit 23614 match community c4_243_188 c4_243_189 c4_243_190 c4_243_191 c4_243_192 set community 0:1 route-map calculator permit 23615 match community c4_243_193 c4_243_194 c4_243_195 c4_243_196 c4_243_197 set community 0:1 route-map calculator permit 23616 match community c4_243_198 c4_243_199 c4_243_200 c4_243_201 c4_243_202 set community 0:1 route-map calculator permit 23617 match community c4_243_203 c4_243_204 c4_243_205 c4_243_206 c4_243_207 set community 0:1 route-map calculator permit 23618 match community c4_243_208 c4_243_209 c4_243_210 c4_243_211 c4_243_212 set community 0:1 route-map calculator permit 23619 match community c4_243_213 c4_243_214 c4_243_215 c4_243_216 c4_243_217 set community 0:1 route-map calculator permit 23620 match community c4_243_218 c4_243_219 c4_243_220 c4_243_221 c4_243_222 set community 0:1 route-map calculator permit 23621 match community c4_243_223 c4_243_224 c4_243_225 c4_243_226 c4_243_227 set community 0:1 route-map calculator permit 23622 match community c4_243_228 c4_243_229 c4_243_230 c4_243_231 c4_243_232 set community 0:1 route-map calculator permit 23623 match community c4_243_233 c4_243_234 c4_243_235 c4_243_236 c4_243_237 set community 0:1 route-map calculator permit 23624 match community c4_243_238 c4_243_239 c4_243_240 c4_243_241 c3_243_242 set community 0:1 route-map calculator permit 23625 match community c4_243_242 c4_243_243 c4_244_123 c4_244_124 c4_244_125 set community 0:1 route-map calculator permit 23626 match community c4_244_126 c4_244_127 c4_244_128 c4_244_129 c4_244_130 set community 0:1 route-map calculator permit 23627 match community c4_244_131 c4_244_132 c4_244_133 c4_244_134 c4_244_135 set community 0:1 route-map calculator permit 23628 match community c4_244_136 c4_244_137 c4_244_138 c4_244_139 c4_244_140 set community 0:1 route-map calculator permit 23629 match community c4_244_141 c4_244_142 c4_244_143 c4_244_144 c4_244_145 set community 0:1 route-map calculator permit 23630 match community c4_244_146 c4_244_147 c4_244_148 c4_244_149 c4_244_150 set community 0:1 route-map calculator permit 23631 match community c4_244_151 c4_244_152 c4_244_153 c4_244_154 c4_244_155 set community 0:1 route-map calculator permit 23632 match community c4_244_156 c4_244_157 c4_244_158 c4_244_159 c4_244_160 set community 0:1 route-map calculator permit 23633 match community c4_244_161 c4_244_162 c4_244_163 c4_244_164 c4_244_165 set community 0:1 route-map calculator permit 23634 match community c4_244_166 c4_244_167 c4_244_168 c4_244_169 c4_244_170 set community 0:1 route-map calculator permit 23635 match community c4_244_171 c4_244_172 c4_244_173 c4_244_174 c4_244_175 set community 0:1 route-map calculator permit 23636 match community c4_244_176 c4_244_177 c4_244_178 c4_244_179 c4_244_180 set community 0:1 route-map calculator permit 23637 match community c4_244_181 c4_244_182 c4_244_183 c4_244_184 c4_244_185 set community 0:1 route-map calculator permit 23638 match community c4_244_186 c4_244_187 c4_244_188 c4_244_189 c4_244_190 set community 0:1 route-map calculator permit 23639 match community c4_244_191 c4_244_192 c4_244_193 c4_244_194 c4_244_195 set community 0:1 route-map calculator permit 23640 match community c4_244_196 c4_244_197 c4_244_198 c4_244_199 c4_244_200 set community 0:1 route-map calculator permit 23641 match community c4_244_201 c4_244_202 c4_244_203 c4_244_204 c4_244_205 set community 0:1 route-map calculator permit 23642 match community c4_244_206 c4_244_207 c4_244_208 c4_244_209 c4_244_210 set community 0:1 route-map calculator permit 23643 match community c4_244_211 c4_244_212 c4_244_213 c4_244_214 c4_244_215 set community 0:1 route-map calculator permit 23644 match community c4_244_216 c4_244_217 c4_244_218 c4_244_219 c4_244_220 set community 0:1 route-map calculator permit 23645 match community c4_244_221 c4_244_222 c4_244_223 c4_244_224 c4_244_225 set community 0:1 route-map calculator permit 23646 match community c4_244_226 c4_244_227 c4_244_228 c4_244_229 c4_244_230 set community 0:1 route-map calculator permit 23647 match community c4_244_231 c4_244_232 c4_244_233 c4_244_234 c4_244_235 set community 0:1 route-map calculator permit 23648 match community c4_244_236 c4_244_237 c4_244_238 c4_244_239 c4_244_240 set community 0:1 route-map calculator permit 23649 match community c4_244_241 c4_244_242 c3_244_243 c4_244_243 c4_244_244 set community 0:1 route-map calculator permit 23650 match community c4_245_123 c4_245_124 c4_245_125 c4_245_126 c4_245_127 set community 0:1 route-map calculator permit 23651 match community c4_245_128 c4_245_129 c4_245_130 c4_245_131 c4_245_132 set community 0:1 route-map calculator permit 23652 match community c4_245_133 c4_245_134 c4_245_135 c4_245_136 c4_245_137 set community 0:1 route-map calculator permit 23653 match community c4_245_138 c4_245_139 c4_245_140 c4_245_141 c4_245_142 set community 0:1 route-map calculator permit 23654 match community c4_245_143 c4_245_144 c4_245_145 c4_245_146 c4_245_147 set community 0:1 route-map calculator permit 23655 match community c4_245_148 c4_245_149 c4_245_150 c4_245_151 c4_245_152 set community 0:1 route-map calculator permit 23656 match community c4_245_153 c4_245_154 c4_245_155 c4_245_156 c4_245_157 set community 0:1 route-map calculator permit 23657 match community c4_245_158 c4_245_159 c4_245_160 c4_245_161 c4_245_162 set community 0:1 route-map calculator permit 23658 match community c4_245_163 c4_245_164 c4_245_165 c4_245_166 c4_245_167 set community 0:1 route-map calculator permit 23659 match community c4_245_168 c4_245_169 c4_245_170 c4_245_171 c4_245_172 set community 0:1 route-map calculator permit 23660 match community c4_245_173 c4_245_174 c4_245_175 c4_245_176 c4_245_177 set community 0:1 route-map calculator permit 23661 match community c4_245_178 c4_245_179 c4_245_180 c4_245_181 c4_245_182 set community 0:1 route-map calculator permit 23662 match community c4_245_183 c4_245_184 c4_245_185 c4_245_186 c4_245_187 set community 0:1 route-map calculator permit 23663 match community c4_245_188 c4_245_189 c4_245_190 c4_245_191 c4_245_192 set community 0:1 route-map calculator permit 23664 match community c4_245_193 c4_245_194 c4_245_195 c4_245_196 c4_245_197 set community 0:1 route-map calculator permit 23665 match community c4_245_198 c4_245_199 c4_245_200 c4_245_201 c4_245_202 set community 0:1 route-map calculator permit 23666 match community c4_245_203 c4_245_204 c4_245_205 c4_245_206 c4_245_207 set community 0:1 route-map calculator permit 23667 match community c4_245_208 c4_245_209 c4_245_210 c4_245_211 c4_245_212 set community 0:1 route-map calculator permit 23668 match community c4_245_213 c4_245_214 c4_245_215 c4_245_216 c4_245_217 set community 0:1 route-map calculator permit 23669 match community c4_245_218 c4_245_219 c4_245_220 c4_245_221 c4_245_222 set community 0:1 route-map calculator permit 23670 match community c4_245_223 c4_245_224 c4_245_225 c4_245_226 c4_245_227 set community 0:1 route-map calculator permit 23671 match community c4_245_228 c4_245_229 c4_245_230 c4_245_231 c4_245_232 set community 0:1 route-map calculator permit 23672 match community c4_245_233 c4_245_234 c4_245_235 c4_245_236 c4_245_237 set community 0:1 route-map calculator permit 23673 match community c4_245_238 c4_245_239 c4_245_240 c4_245_241 c4_245_242 set community 0:1 route-map calculator permit 23674 match community c4_245_243 c3_245_244 c4_245_244 c4_245_245 c4_246_124 set community 0:1 route-map calculator permit 23675 match community c4_246_125 c4_246_126 c4_246_127 c4_246_128 c4_246_129 set community 0:1 route-map calculator permit 23676 match community c4_246_130 c4_246_131 c4_246_132 c4_246_133 c4_246_134 set community 0:1 route-map calculator permit 23677 match community c4_246_135 c4_246_136 c4_246_137 c4_246_138 c4_246_139 set community 0:1 route-map calculator permit 23678 match community c4_246_140 c4_246_141 c4_246_142 c4_246_143 c4_246_144 set community 0:1 route-map calculator permit 23679 match community c4_246_145 c4_246_146 c4_246_147 c4_246_148 c4_246_149 set community 0:1 route-map calculator permit 23680 match community c4_246_150 c4_246_151 c4_246_152 c4_246_153 c4_246_154 set community 0:1 route-map calculator permit 23681 match community c4_246_155 c4_246_156 c4_246_157 c4_246_158 c4_246_159 set community 0:1 route-map calculator permit 23682 match community c4_246_160 c4_246_161 c4_246_162 c4_246_163 c4_246_164 set community 0:1 route-map calculator permit 23683 match community c4_246_165 c4_246_166 c4_246_167 c4_246_168 c4_246_169 set community 0:1 route-map calculator permit 23684 match community c4_246_170 c4_246_171 c4_246_172 c4_246_173 c4_246_174 set community 0:1 route-map calculator permit 23685 match community c4_246_175 c4_246_176 c4_246_177 c4_246_178 c4_246_179 set community 0:1 route-map calculator permit 23686 match community c4_246_180 c4_246_181 c4_246_182 c4_246_183 c4_246_184 set community 0:1 route-map calculator permit 23687 match community c4_246_185 c4_246_186 c4_246_187 c4_246_188 c4_246_189 set community 0:1 route-map calculator permit 23688 match community c4_246_190 c4_246_191 c4_246_192 c4_246_193 c4_246_194 set community 0:1 route-map calculator permit 23689 match community c4_246_195 c4_246_196 c4_246_197 c4_246_198 c4_246_199 set community 0:1 route-map calculator permit 23690 match community c4_246_200 c4_246_201 c4_246_202 c4_246_203 c4_246_204 set community 0:1 route-map calculator permit 23691 match community c4_246_205 c4_246_206 c4_246_207 c4_246_208 c4_246_209 set community 0:1 route-map calculator permit 23692 match community c4_246_210 c4_246_211 c4_246_212 c4_246_213 c4_246_214 set community 0:1 route-map calculator permit 23693 match community c4_246_215 c4_246_216 c4_246_217 c4_246_218 c4_246_219 set community 0:1 route-map calculator permit 23694 match community c4_246_220 c4_246_221 c4_246_222 c4_246_223 c4_246_224 set community 0:1 route-map calculator permit 23695 match community c4_246_225 c4_246_226 c4_246_227 c4_246_228 c4_246_229 set community 0:1 route-map calculator permit 23696 match community c4_246_230 c4_246_231 c4_246_232 c4_246_233 c4_246_234 set community 0:1 route-map calculator permit 23697 match community c4_246_235 c4_246_236 c4_246_237 c4_246_238 c4_246_239 set community 0:1 route-map calculator permit 23698 match community c4_246_240 c4_246_241 c4_246_242 c4_246_243 c4_246_244 set community 0:1 route-map calculator permit 23699 match community c3_246_245 c4_246_245 c4_246_246 c4_247_124 c4_247_125 set community 0:1 route-map calculator permit 23700 match community c4_247_126 c4_247_127 c4_247_128 c4_247_129 c4_247_130 set community 0:1 route-map calculator permit 23701 match community c4_247_131 c4_247_132 c4_247_133 c4_247_134 c4_247_135 set community 0:1 route-map calculator permit 23702 match community c4_247_136 c4_247_137 c4_247_138 c4_247_139 c4_247_140 set community 0:1 route-map calculator permit 23703 match community c4_247_141 c4_247_142 c4_247_143 c4_247_144 c4_247_145 set community 0:1 route-map calculator permit 23704 match community c4_247_146 c4_247_147 c4_247_148 c4_247_149 c4_247_150 set community 0:1 route-map calculator permit 23705 match community c4_247_151 c4_247_152 c4_247_153 c4_247_154 c4_247_155 set community 0:1 route-map calculator permit 23706 match community c4_247_156 c4_247_157 c4_247_158 c4_247_159 c4_247_160 set community 0:1 route-map calculator permit 23707 match community c4_247_161 c4_247_162 c4_247_163 c4_247_164 c4_247_165 set community 0:1 route-map calculator permit 23708 match community c4_247_166 c4_247_167 c4_247_168 c4_247_169 c4_247_170 set community 0:1 route-map calculator permit 23709 match community c4_247_171 c4_247_172 c4_247_173 c4_247_174 c4_247_175 set community 0:1 route-map calculator permit 23710 match community c4_247_176 c4_247_177 c4_247_178 c4_247_179 c4_247_180 set community 0:1 route-map calculator permit 23711 match community c4_247_181 c4_247_182 c4_247_183 c4_247_184 c4_247_185 set community 0:1 route-map calculator permit 23712 match community c4_247_186 c4_247_187 c4_247_188 c4_247_189 c4_247_190 set community 0:1 route-map calculator permit 23713 match community c4_247_191 c4_247_192 c4_247_193 c4_247_194 c4_247_195 set community 0:1 route-map calculator permit 23714 match community c4_247_196 c4_247_197 c4_247_198 c4_247_199 c4_247_200 set community 0:1 route-map calculator permit 23715 match community c4_247_201 c4_247_202 c4_247_203 c4_247_204 c4_247_205 set community 0:1 route-map calculator permit 23716 match community c4_247_206 c4_247_207 c4_247_208 c4_247_209 c4_247_210 set community 0:1 route-map calculator permit 23717 match community c4_247_211 c4_247_212 c4_247_213 c4_247_214 c4_247_215 set community 0:1 route-map calculator permit 23718 match community c4_247_216 c4_247_217 c4_247_218 c4_247_219 c4_247_220 set community 0:1 route-map calculator permit 23719 match community c4_247_221 c4_247_222 c4_247_223 c4_247_224 c4_247_225 set community 0:1 route-map calculator permit 23720 match community c4_247_226 c4_247_227 c4_247_228 c4_247_229 c4_247_230 set community 0:1 route-map calculator permit 23721 match community c4_247_231 c4_247_232 c4_247_233 c4_247_234 c4_247_235 set community 0:1 route-map calculator permit 23722 match community c4_247_236 c4_247_237 c4_247_238 c4_247_239 c4_247_240 set community 0:1 route-map calculator permit 23723 match community c4_247_241 c4_247_242 c4_247_243 c4_247_244 c4_247_245 set community 0:1 route-map calculator permit 23724 match community c3_247_246 c4_247_246 c4_247_247 c4_248_125 c4_248_126 set community 0:1 route-map calculator permit 23725 match community c4_248_127 c4_248_128 c4_248_129 c4_248_130 c4_248_131 set community 0:1 route-map calculator permit 23726 match community c4_248_132 c4_248_133 c4_248_134 c4_248_135 c4_248_136 set community 0:1 route-map calculator permit 23727 match community c4_248_137 c4_248_138 c4_248_139 c4_248_140 c4_248_141 set community 0:1 route-map calculator permit 23728 match community c4_248_142 c4_248_143 c4_248_144 c4_248_145 c4_248_146 set community 0:1 route-map calculator permit 23729 match community c4_248_147 c4_248_148 c4_248_149 c4_248_150 c4_248_151 set community 0:1 route-map calculator permit 23730 match community c4_248_152 c4_248_153 c4_248_154 c4_248_155 c4_248_156 set community 0:1 route-map calculator permit 23731 match community c4_248_157 c4_248_158 c4_248_159 c4_248_160 c4_248_161 set community 0:1 route-map calculator permit 23732 match community c4_248_162 c4_248_163 c4_248_164 c4_248_165 c4_248_166 set community 0:1 route-map calculator permit 23733 match community c4_248_167 c4_248_168 c4_248_169 c4_248_170 c4_248_171 set community 0:1 route-map calculator permit 23734 match community c4_248_172 c4_248_173 c4_248_174 c4_248_175 c4_248_176 set community 0:1 route-map calculator permit 23735 match community c4_248_177 c4_248_178 c4_248_179 c4_248_180 c4_248_181 set community 0:1 route-map calculator permit 23736 match community c4_248_182 c4_248_183 c4_248_184 c4_248_185 c4_248_186 set community 0:1 route-map calculator permit 23737 match community c4_248_187 c4_248_188 c4_248_189 c4_248_190 c4_248_191 set community 0:1 route-map calculator permit 23738 match community c4_248_192 c4_248_193 c4_248_194 c4_248_195 c4_248_196 set community 0:1 route-map calculator permit 23739 match community c4_248_197 c4_248_198 c4_248_199 c4_248_200 c4_248_201 set community 0:1 route-map calculator permit 23740 match community c4_248_202 c4_248_203 c4_248_204 c4_248_205 c4_248_206 set community 0:1 route-map calculator permit 23741 match community c4_248_207 c4_248_208 c4_248_209 c4_248_210 c4_248_211 set community 0:1 route-map calculator permit 23742 match community c4_248_212 c4_248_213 c4_248_214 c4_248_215 c4_248_216 set community 0:1 route-map calculator permit 23743 match community c4_248_217 c4_248_218 c4_248_219 c4_248_220 c4_248_221 set community 0:1 route-map calculator permit 23744 match community c4_248_222 c4_248_223 c4_248_224 c4_248_225 c4_248_226 set community 0:1 route-map calculator permit 23745 match community c4_248_227 c4_248_228 c4_248_229 c4_248_230 c4_248_231 set community 0:1 route-map calculator permit 23746 match community c4_248_232 c4_248_233 c4_248_234 c4_248_235 c4_248_236 set community 0:1 route-map calculator permit 23747 match community c4_248_237 c4_248_238 c4_248_239 c4_248_240 c4_248_241 set community 0:1 route-map calculator permit 23748 match community c4_248_242 c4_248_243 c4_248_244 c4_248_245 c4_248_246 set community 0:1 route-map calculator permit 23749 match community c3_248_247 c4_248_247 c4_248_248 c4_249_125 c4_249_126 set community 0:1 route-map calculator permit 23750 match community c4_249_127 c4_249_128 c4_249_129 c4_249_130 c4_249_131 set community 0:1 route-map calculator permit 23751 match community c4_249_132 c4_249_133 c4_249_134 c4_249_135 c4_249_136 set community 0:1 route-map calculator permit 23752 match community c4_249_137 c4_249_138 c4_249_139 c4_249_140 c4_249_141 set community 0:1 route-map calculator permit 23753 match community c4_249_142 c4_249_143 c4_249_144 c4_249_145 c4_249_146 set community 0:1 route-map calculator permit 23754 match community c4_249_147 c4_249_148 c4_249_149 c4_249_150 c4_249_151 set community 0:1 route-map calculator permit 23755 match community c4_249_152 c4_249_153 c4_249_154 c4_249_155 c4_249_156 set community 0:1 route-map calculator permit 23756 match community c4_249_157 c4_249_158 c4_249_159 c4_249_160 c4_249_161 set community 0:1 route-map calculator permit 23757 match community c4_249_162 c4_249_163 c4_249_164 c4_249_165 c4_249_166 set community 0:1 route-map calculator permit 23758 match community c4_249_167 c4_249_168 c4_249_169 c4_249_170 c4_249_171 set community 0:1 route-map calculator permit 23759 match community c4_249_172 c4_249_173 c4_249_174 c4_249_175 c4_249_176 set community 0:1 route-map calculator permit 23760 match community c4_249_177 c4_249_178 c4_249_179 c4_249_180 c4_249_181 set community 0:1 route-map calculator permit 23761 match community c4_249_182 c4_249_183 c4_249_184 c4_249_185 c4_249_186 set community 0:1 route-map calculator permit 23762 match community c4_249_187 c4_249_188 c4_249_189 c4_249_190 c4_249_191 set community 0:1 route-map calculator permit 23763 match community c4_249_192 c4_249_193 c4_249_194 c4_249_195 c4_249_196 set community 0:1 route-map calculator permit 23764 match community c4_249_197 c4_249_198 c4_249_199 c4_249_200 c4_249_201 set community 0:1 route-map calculator permit 23765 match community c4_249_202 c4_249_203 c4_249_204 c4_249_205 c4_249_206 set community 0:1 route-map calculator permit 23766 match community c4_249_207 c4_249_208 c4_249_209 c4_249_210 c4_249_211 set community 0:1 route-map calculator permit 23767 match community c4_249_212 c4_249_213 c4_249_214 c4_249_215 c4_249_216 set community 0:1 route-map calculator permit 23768 match community c4_249_217 c4_249_218 c4_249_219 c4_249_220 c4_249_221 set community 0:1 route-map calculator permit 23769 match community c4_249_222 c4_249_223 c4_249_224 c4_249_225 c4_249_226 set community 0:1 route-map calculator permit 23770 match community c4_249_227 c4_249_228 c4_249_229 c4_249_230 c4_249_231 set community 0:1 route-map calculator permit 23771 match community c4_249_232 c4_249_233 c4_249_234 c4_249_235 c4_249_236 set community 0:1 route-map calculator permit 23772 match community c4_249_237 c4_249_238 c4_249_239 c4_249_240 c4_249_241 set community 0:1 route-map calculator permit 23773 match community c4_249_242 c4_249_243 c4_249_244 c4_249_245 c4_249_246 set community 0:1 route-map calculator permit 23774 match community c4_249_247 c3_249_248 c4_249_248 c4_249_249 c4_250_126 set community 0:1 route-map calculator permit 23775 match community c4_250_127 c4_250_128 c4_250_129 c4_250_130 c4_250_131 set community 0:1 route-map calculator permit 23776 match community c4_250_132 c4_250_133 c4_250_134 c4_250_135 c4_250_136 set community 0:1 route-map calculator permit 23777 match community c4_250_137 c4_250_138 c4_250_139 c4_250_140 c4_250_141 set community 0:1 route-map calculator permit 23778 match community c4_250_142 c4_250_143 c4_250_144 c4_250_145 c4_250_146 set community 0:1 route-map calculator permit 23779 match community c4_250_147 c4_250_148 c4_250_149 c4_250_150 c4_250_151 set community 0:1 route-map calculator permit 23780 match community c4_250_152 c4_250_153 c4_250_154 c4_250_155 c4_250_156 set community 0:1 route-map calculator permit 23781 match community c4_250_157 c4_250_158 c4_250_159 c4_250_160 c4_250_161 set community 0:1 route-map calculator permit 23782 match community c4_250_162 c4_250_163 c4_250_164 c4_250_165 c4_250_166 set community 0:1 route-map calculator permit 23783 match community c4_250_167 c4_250_168 c4_250_169 c4_250_170 c4_250_171 set community 0:1 route-map calculator permit 23784 match community c4_250_172 c4_250_173 c4_250_174 c4_250_175 c4_250_176 set community 0:1 route-map calculator permit 23785 match community c4_250_177 c4_250_178 c4_250_179 c4_250_180 c4_250_181 set community 0:1 route-map calculator permit 23786 match community c4_250_182 c4_250_183 c4_250_184 c4_250_185 c4_250_186 set community 0:1 route-map calculator permit 23787 match community c4_250_187 c4_250_188 c4_250_189 c4_250_190 c4_250_191 set community 0:1 route-map calculator permit 23788 match community c4_250_192 c4_250_193 c4_250_194 c4_250_195 c4_250_196 set community 0:1 route-map calculator permit 23789 match community c4_250_197 c4_250_198 c4_250_199 c4_250_200 c4_250_201 set community 0:1 route-map calculator permit 23790 match community c4_250_202 c4_250_203 c4_250_204 c4_250_205 c4_250_206 set community 0:1 route-map calculator permit 23791 match community c4_250_207 c4_250_208 c4_250_209 c4_250_210 c4_250_211 set community 0:1 route-map calculator permit 23792 match community c4_250_212 c4_250_213 c4_250_214 c4_250_215 c4_250_216 set community 0:1 route-map calculator permit 23793 match community c4_250_217 c4_250_218 c4_250_219 c4_250_220 c4_250_221 set community 0:1 route-map calculator permit 23794 match community c4_250_222 c4_250_223 c4_250_224 c4_250_225 c4_250_226 set community 0:1 route-map calculator permit 23795 match community c4_250_227 c4_250_228 c4_250_229 c4_250_230 c4_250_231 set community 0:1 route-map calculator permit 23796 match community c4_250_232 c4_250_233 c4_250_234 c4_250_235 c4_250_236 set community 0:1 route-map calculator permit 23797 match community c4_250_237 c4_250_238 c4_250_239 c4_250_240 c4_250_241 set community 0:1 route-map calculator permit 23798 match community c4_250_242 c4_250_243 c4_250_244 c4_250_245 c4_250_246 set community 0:1 route-map calculator permit 23799 match community c4_250_247 c4_250_248 c3_250_249 c4_250_249 c4_250_250 set community 0:1 route-map calculator permit 23800 match community c4_251_126 c4_251_127 c4_251_128 c4_251_129 c4_251_130 set community 0:1 route-map calculator permit 23801 match community c4_251_131 c4_251_132 c4_251_133 c4_251_134 c4_251_135 set community 0:1 route-map calculator permit 23802 match community c4_251_136 c4_251_137 c4_251_138 c4_251_139 c4_251_140 set community 0:1 route-map calculator permit 23803 match community c4_251_141 c4_251_142 c4_251_143 c4_251_144 c4_251_145 set community 0:1 route-map calculator permit 23804 match community c4_251_146 c4_251_147 c4_251_148 c4_251_149 c4_251_150 set community 0:1 route-map calculator permit 23805 match community c4_251_151 c4_251_152 c4_251_153 c4_251_154 c4_251_155 set community 0:1 route-map calculator permit 23806 match community c4_251_156 c4_251_157 c4_251_158 c4_251_159 c4_251_160 set community 0:1 route-map calculator permit 23807 match community c4_251_161 c4_251_162 c4_251_163 c4_251_164 c4_251_165 set community 0:1 route-map calculator permit 23808 match community c4_251_166 c4_251_167 c4_251_168 c4_251_169 c4_251_170 set community 0:1 route-map calculator permit 23809 match community c4_251_171 c4_251_172 c4_251_173 c4_251_174 c4_251_175 set community 0:1 route-map calculator permit 23810 match community c4_251_176 c4_251_177 c4_251_178 c4_251_179 c4_251_180 set community 0:1 route-map calculator permit 23811 match community c4_251_181 c4_251_182 c4_251_183 c4_251_184 c4_251_185 set community 0:1 route-map calculator permit 23812 match community c4_251_186 c4_251_187 c4_251_188 c4_251_189 c4_251_190 set community 0:1 route-map calculator permit 23813 match community c4_251_191 c4_251_192 c4_251_193 c4_251_194 c4_251_195 set community 0:1 route-map calculator permit 23814 match community c4_251_196 c4_251_197 c4_251_198 c4_251_199 c4_251_200 set community 0:1 route-map calculator permit 23815 match community c4_251_201 c4_251_202 c4_251_203 c4_251_204 c4_251_205 set community 0:1 route-map calculator permit 23816 match community c4_251_206 c4_251_207 c4_251_208 c4_251_209 c4_251_210 set community 0:1 route-map calculator permit 23817 match community c4_251_211 c4_251_212 c4_251_213 c4_251_214 c4_251_215 set community 0:1 route-map calculator permit 23818 match community c4_251_216 c4_251_217 c4_251_218 c4_251_219 c4_251_220 set community 0:1 route-map calculator permit 23819 match community c4_251_221 c4_251_222 c4_251_223 c4_251_224 c4_251_225 set community 0:1 route-map calculator permit 23820 match community c4_251_226 c4_251_227 c4_251_228 c4_251_229 c4_251_230 set community 0:1 route-map calculator permit 23821 match community c4_251_231 c4_251_232 c4_251_233 c4_251_234 c4_251_235 set community 0:1 route-map calculator permit 23822 match community c4_251_236 c4_251_237 c4_251_238 c4_251_239 c4_251_240 set community 0:1 route-map calculator permit 23823 match community c4_251_241 c4_251_242 c4_251_243 c4_251_244 c4_251_245 set community 0:1 route-map calculator permit 23824 match community c4_251_246 c4_251_247 c4_251_248 c4_251_249 c3_251_250 set community 0:1 route-map calculator permit 23825 match community c4_251_250 c4_251_251 c4_252_127 c4_252_128 c4_252_129 set community 0:1 route-map calculator permit 23826 match community c4_252_130 c4_252_131 c4_252_132 c4_252_133 c4_252_134 set community 0:1 route-map calculator permit 23827 match community c4_252_135 c4_252_136 c4_252_137 c4_252_138 c4_252_139 set community 0:1 route-map calculator permit 23828 match community c4_252_140 c4_252_141 c4_252_142 c4_252_143 c4_252_144 set community 0:1 route-map calculator permit 23829 match community c4_252_145 c4_252_146 c4_252_147 c4_252_148 c4_252_149 set community 0:1 route-map calculator permit 23830 match community c4_252_150 c4_252_151 c4_252_152 c4_252_153 c4_252_154 set community 0:1 route-map calculator permit 23831 match community c4_252_155 c4_252_156 c4_252_157 c4_252_158 c4_252_159 set community 0:1 route-map calculator permit 23832 match community c4_252_160 c4_252_161 c4_252_162 c4_252_163 c4_252_164 set community 0:1 route-map calculator permit 23833 match community c4_252_165 c4_252_166 c4_252_167 c4_252_168 c4_252_169 set community 0:1 route-map calculator permit 23834 match community c4_252_170 c4_252_171 c4_252_172 c4_252_173 c4_252_174 set community 0:1 route-map calculator permit 23835 match community c4_252_175 c4_252_176 c4_252_177 c4_252_178 c4_252_179 set community 0:1 route-map calculator permit 23836 match community c4_252_180 c4_252_181 c4_252_182 c4_252_183 c4_252_184 set community 0:1 route-map calculator permit 23837 match community c4_252_185 c4_252_186 c4_252_187 c4_252_188 c4_252_189 set community 0:1 route-map calculator permit 23838 match community c4_252_190 c4_252_191 c4_252_192 c4_252_193 c4_252_194 set community 0:1 route-map calculator permit 23839 match community c4_252_195 c4_252_196 c4_252_197 c4_252_198 c4_252_199 set community 0:1 route-map calculator permit 23840 match community c4_252_200 c4_252_201 c4_252_202 c4_252_203 c4_252_204 set community 0:1 route-map calculator permit 23841 match community c4_252_205 c4_252_206 c4_252_207 c4_252_208 c4_252_209 set community 0:1 route-map calculator permit 23842 match community c4_252_210 c4_252_211 c4_252_212 c4_252_213 c4_252_214 set community 0:1 route-map calculator permit 23843 match community c4_252_215 c4_252_216 c4_252_217 c4_252_218 c4_252_219 set community 0:1 route-map calculator permit 23844 match community c4_252_220 c4_252_221 c4_252_222 c4_252_223 c4_252_224 set community 0:1 route-map calculator permit 23845 match community c4_252_225 c4_252_226 c4_252_227 c4_252_228 c4_252_229 set community 0:1 route-map calculator permit 23846 match community c4_252_230 c4_252_231 c4_252_232 c4_252_233 c4_252_234 set community 0:1 route-map calculator permit 23847 match community c4_252_235 c4_252_236 c4_252_237 c4_252_238 c4_252_239 set community 0:1 route-map calculator permit 23848 match community c4_252_240 c4_252_241 c4_252_242 c4_252_243 c4_252_244 set community 0:1 route-map calculator permit 23849 match community c4_252_245 c4_252_246 c4_252_247 c4_252_248 c4_252_249 set community 0:1 route-map calculator permit 23850 match community c4_252_250 c3_252_251 c4_252_251 c4_252_252 c4_253_127 set community 0:1 route-map calculator permit 23851 match community c4_253_128 c4_253_129 c4_253_130 c4_253_131 c4_253_132 set community 0:1 route-map calculator permit 23852 match community c4_253_133 c4_253_134 c4_253_135 c4_253_136 c4_253_137 set community 0:1 route-map calculator permit 23853 match community c4_253_138 c4_253_139 c4_253_140 c4_253_141 c4_253_142 set community 0:1 route-map calculator permit 23854 match community c4_253_143 c4_253_144 c4_253_145 c4_253_146 c4_253_147 set community 0:1 route-map calculator permit 23855 match community c4_253_148 c4_253_149 c4_253_150 c4_253_151 c4_253_152 set community 0:1 route-map calculator permit 23856 match community c4_253_153 c4_253_154 c4_253_155 c4_253_156 c4_253_157 set community 0:1 route-map calculator permit 23857 match community c4_253_158 c4_253_159 c4_253_160 c4_253_161 c4_253_162 set community 0:1 route-map calculator permit 23858 match community c4_253_163 c4_253_164 c4_253_165 c4_253_166 c4_253_167 set community 0:1 route-map calculator permit 23859 match community c4_253_168 c4_253_169 c4_253_170 c4_253_171 c4_253_172 set community 0:1 route-map calculator permit 23860 match community c4_253_173 c4_253_174 c4_253_175 c4_253_176 c4_253_177 set community 0:1 route-map calculator permit 23861 match community c4_253_178 c4_253_179 c4_253_180 c4_253_181 c4_253_182 set community 0:1 route-map calculator permit 23862 match community c4_253_183 c4_253_184 c4_253_185 c4_253_186 c4_253_187 set community 0:1 route-map calculator permit 23863 match community c4_253_188 c4_253_189 c4_253_190 c4_253_191 c4_253_192 set community 0:1 route-map calculator permit 23864 match community c4_253_193 c4_253_194 c4_253_195 c4_253_196 c4_253_197 set community 0:1 route-map calculator permit 23865 match community c4_253_198 c4_253_199 c4_253_200 c4_253_201 c4_253_202 set community 0:1 route-map calculator permit 23866 match community c4_253_203 c4_253_204 c4_253_205 c4_253_206 c4_253_207 set community 0:1 route-map calculator permit 23867 match community c4_253_208 c4_253_209 c4_253_210 c4_253_211 c4_253_212 set community 0:1 route-map calculator permit 23868 match community c4_253_213 c4_253_214 c4_253_215 c4_253_216 c4_253_217 set community 0:1 route-map calculator permit 23869 match community c4_253_218 c4_253_219 c4_253_220 c4_253_221 c4_253_222 set community 0:1 route-map calculator permit 23870 match community c4_253_223 c4_253_224 c4_253_225 c4_253_226 c4_253_227 set community 0:1 route-map calculator permit 23871 match community c4_253_228 c4_253_229 c4_253_230 c4_253_231 c4_253_232 set community 0:1 route-map calculator permit 23872 match community c4_253_233 c4_253_234 c4_253_235 c4_253_236 c4_253_237 set community 0:1 route-map calculator permit 23873 match community c4_253_238 c4_253_239 c4_253_240 c4_253_241 c4_253_242 set community 0:1 route-map calculator permit 23874 match community c4_253_243 c4_253_244 c4_253_245 c4_253_246 c4_253_247 set community 0:1 route-map calculator permit 23875 match community c4_253_248 c4_253_249 c4_253_250 c4_253_251 c3_253_252 set community 0:1 route-map calculator permit 23876 match community c4_253_252 c4_253_253 c4_254_128 c4_254_129 c4_254_130 set community 0:1 route-map calculator permit 23877 match community c4_254_131 c4_254_132 c4_254_133 c4_254_134 c4_254_135 set community 0:1 route-map calculator permit 23878 match community c4_254_136 c4_254_137 c4_254_138 c4_254_139 c4_254_140 set community 0:1 route-map calculator permit 23879 match community c4_254_141 c4_254_142 c4_254_143 c4_254_144 c4_254_145 set community 0:1 route-map calculator permit 23880 match community c4_254_146 c4_254_147 c4_254_148 c4_254_149 c4_254_150 set community 0:1 route-map calculator permit 23881 match community c4_254_151 c4_254_152 c4_254_153 c4_254_154 c4_254_155 set community 0:1 route-map calculator permit 23882 match community c4_254_156 c4_254_157 c4_254_158 c4_254_159 c4_254_160 set community 0:1 route-map calculator permit 23883 match community c4_254_161 c4_254_162 c4_254_163 c4_254_164 c4_254_165 set community 0:1 route-map calculator permit 23884 match community c4_254_166 c4_254_167 c4_254_168 c4_254_169 c4_254_170 set community 0:1 route-map calculator permit 23885 match community c4_254_171 c4_254_172 c4_254_173 c4_254_174 c4_254_175 set community 0:1 route-map calculator permit 23886 match community c4_254_176 c4_254_177 c4_254_178 c4_254_179 c4_254_180 set community 0:1 route-map calculator permit 23887 match community c4_254_181 c4_254_182 c4_254_183 c4_254_184 c4_254_185 set community 0:1 route-map calculator permit 23888 match community c4_254_186 c4_254_187 c4_254_188 c4_254_189 c4_254_190 set community 0:1 route-map calculator permit 23889 match community c4_254_191 c4_254_192 c4_254_193 c4_254_194 c4_254_195 set community 0:1 route-map calculator permit 23890 match community c4_254_196 c4_254_197 c4_254_198 c4_254_199 c4_254_200 set community 0:1 route-map calculator permit 23891 match community c4_254_201 c4_254_202 c4_254_203 c4_254_204 c4_254_205 set community 0:1 route-map calculator permit 23892 match community c4_254_206 c4_254_207 c4_254_208 c4_254_209 c4_254_210 set community 0:1 route-map calculator permit 23893 match community c4_254_211 c4_254_212 c4_254_213 c4_254_214 c4_254_215 set community 0:1 route-map calculator permit 23894 match community c4_254_216 c4_254_217 c4_254_218 c4_254_219 c4_254_220 set community 0:1 route-map calculator permit 23895 match community c4_254_221 c4_254_222 c4_254_223 c4_254_224 c4_254_225 set community 0:1 route-map calculator permit 23896 match community c4_254_226 c4_254_227 c4_254_228 c4_254_229 c4_254_230 set community 0:1 route-map calculator permit 23897 match community c4_254_231 c4_254_232 c4_254_233 c4_254_234 c4_254_235 set community 0:1 route-map calculator permit 23898 match community c4_254_236 c4_254_237 c4_254_238 c4_254_239 c4_254_240 set community 0:1 route-map calculator permit 23899 match community c4_254_241 c4_254_242 c4_254_243 c4_254_244 c4_254_245 set community 0:1 route-map calculator permit 23900 match community c4_254_246 c4_254_247 c4_254_248 c4_254_249 c4_254_250 set community 0:1 route-map calculator permit 23901 match community c4_254_251 c4_254_252 c3_254_253 c4_254_253 c4_254_254 set community 0:1 route-map calculator permit 23902 match community c4_255_128 c4_255_129 c4_255_130 c4_255_131 c4_255_132 set community 0:1 route-map calculator permit 23903 match community c4_255_133 c4_255_134 c4_255_135 c4_255_136 c4_255_137 set community 0:1 route-map calculator permit 23904 match community c4_255_138 c4_255_139 c4_255_140 c4_255_141 c4_255_142 set community 0:1 route-map calculator permit 23905 match community c4_255_143 c4_255_144 c4_255_145 c4_255_146 c4_255_147 set community 0:1 route-map calculator permit 23906 match community c4_255_148 c4_255_149 c4_255_150 c4_255_151 c4_255_152 set community 0:1 route-map calculator permit 23907 match community c4_255_153 c4_255_154 c4_255_155 c4_255_156 c4_255_157 set community 0:1 route-map calculator permit 23908 match community c4_255_158 c4_255_159 c4_255_160 c4_255_161 c4_255_162 set community 0:1 route-map calculator permit 23909 match community c4_255_163 c4_255_164 c4_255_165 c4_255_166 c4_255_167 set community 0:1 route-map calculator permit 23910 match community c4_255_168 c4_255_169 c4_255_170 c4_255_171 c4_255_172 set community 0:1 route-map calculator permit 23911 match community c4_255_173 c4_255_174 c4_255_175 c4_255_176 c4_255_177 set community 0:1 route-map calculator permit 23912 match community c4_255_178 c4_255_179 c4_255_180 c4_255_181 c4_255_182 set community 0:1 route-map calculator permit 23913 match community c4_255_183 c4_255_184 c4_255_185 c4_255_186 c4_255_187 set community 0:1 route-map calculator permit 23914 match community c4_255_188 c4_255_189 c4_255_190 c4_255_191 c4_255_192 set community 0:1 route-map calculator permit 23915 match community c4_255_193 c4_255_194 c4_255_195 c4_255_196 c4_255_197 set community 0:1 route-map calculator permit 23916 match community c4_255_198 c4_255_199 c4_255_200 c4_255_201 c4_255_202 set community 0:1 route-map calculator permit 23917 match community c4_255_203 c4_255_204 c4_255_205 c4_255_206 c4_255_207 set community 0:1 route-map calculator permit 23918 match community c4_255_208 c4_255_209 c4_255_210 c4_255_211 c4_255_212 set community 0:1 route-map calculator permit 23919 match community c4_255_213 c4_255_214 c4_255_215 c4_255_216 c4_255_217 set community 0:1 route-map calculator permit 23920 match community c4_255_218 c4_255_219 c4_255_220 c4_255_221 c4_255_222 set community 0:1 route-map calculator permit 23921 match community c4_255_223 c4_255_224 c4_255_225 c4_255_226 c4_255_227 set community 0:1 route-map calculator permit 23922 match community c4_255_228 c4_255_229 c4_255_230 c4_255_231 c4_255_232 set community 0:1 route-map calculator permit 23923 match community c4_255_233 c4_255_234 c4_255_235 c4_255_236 c4_255_237 set community 0:1 route-map calculator permit 23924 match community c4_255_238 c4_255_239 c4_255_240 c4_255_241 c4_255_242 set community 0:1 route-map calculator permit 23925 match community c4_255_243 c4_255_244 c4_255_245 c4_255_246 c4_255_247 set community 0:1 route-map calculator permit 23926 match community c4_255_248 c4_255_249 c4_255_250 c4_255_251 c4_255_252 set community 0:1 route-map calculator permit 23927 match community c4_255_253 c3_255_254 c4_255_254 c4_255_255 c4_256_129 set community 0:1 route-map calculator permit 23928 match community c4_256_130 c4_256_131 c4_256_132 c4_256_133 c4_256_134 set community 0:1 route-map calculator permit 23929 match community c4_256_135 c4_256_136 c4_256_137 c4_256_138 c4_256_139 set community 0:1 route-map calculator permit 23930 match community c4_256_140 c4_256_141 c4_256_142 c4_256_143 c4_256_144 set community 0:1 route-map calculator permit 23931 match community c4_256_145 c4_256_146 c4_256_147 c4_256_148 c4_256_149 set community 0:1 route-map calculator permit 23932 match community c4_256_150 c4_256_151 c4_256_152 c4_256_153 c4_256_154 set community 0:1 route-map calculator permit 23933 match community c4_256_155 c4_256_156 c4_256_157 c4_256_158 c4_256_159 set community 0:1 route-map calculator permit 23934 match community c4_256_160 c4_256_161 c4_256_162 c4_256_163 c4_256_164 set community 0:1 route-map calculator permit 23935 match community c4_256_165 c4_256_166 c4_256_167 c4_256_168 c4_256_169 set community 0:1 route-map calculator permit 23936 match community c4_256_170 c4_256_171 c4_256_172 c4_256_173 c4_256_174 set community 0:1 route-map calculator permit 23937 match community c4_256_175 c4_256_176 c4_256_177 c4_256_178 c4_256_179 set community 0:1 route-map calculator permit 23938 match community c4_256_180 c4_256_181 c4_256_182 c4_256_183 c4_256_184 set community 0:1 route-map calculator permit 23939 match community c4_256_185 c4_256_186 c4_256_187 c4_256_188 c4_256_189 set community 0:1 route-map calculator permit 23940 match community c4_256_190 c4_256_191 c4_256_192 c4_256_193 c4_256_194 set community 0:1 route-map calculator permit 23941 match community c4_256_195 c4_256_196 c4_256_197 c4_256_198 c4_256_199 set community 0:1 route-map calculator permit 23942 match community c4_256_200 c4_256_201 c4_256_202 c4_256_203 c4_256_204 set community 0:1 route-map calculator permit 23943 match community c4_256_205 c4_256_206 c4_256_207 c4_256_208 c4_256_209 set community 0:1 route-map calculator permit 23944 match community c4_256_210 c4_256_211 c4_256_212 c4_256_213 c4_256_214 set community 0:1 route-map calculator permit 23945 match community c4_256_215 c4_256_216 c4_256_217 c4_256_218 c4_256_219 set community 0:1 route-map calculator permit 23946 match community c4_256_220 c4_256_221 c4_256_222 c4_256_223 c4_256_224 set community 0:1 route-map calculator permit 23947 match community c4_256_225 c4_256_226 c4_256_227 c4_256_228 c4_256_229 set community 0:1 route-map calculator permit 23948 match community c4_256_230 c4_256_231 c4_256_232 c4_256_233 c4_256_234 set community 0:1 route-map calculator permit 23949 match community c4_256_235 c4_256_236 c4_256_237 c4_256_238 c4_256_239 set community 0:1 route-map calculator permit 23950 match community c4_256_240 c4_256_241 c4_256_242 c4_256_243 c4_256_244 set community 0:1 route-map calculator permit 23951 match community c4_256_245 c4_256_246 c4_256_247 c4_256_248 c4_256_249 set community 0:1 route-map calculator permit 23952 match community c4_256_250 c4_256_251 c4_256_252 c4_256_253 c4_256_254 set community 0:1 route-map calculator permit 23953 match community c3_256_255 c4_256_255 c4_256_256 set community 0:1 ip community-list standard 2_161_201 permit 65000:2 0:161 0:201 route-map calculator permit 23954 match community 2_161_201 set community 0:32361 ip community-list standard 2_113_249 permit 65000:2 0:113 0:249 route-map calculator permit 23955 match community 2_113_249 set community 0:28137 ip community-list standard 2_166_221 permit 65000:2 0:166 0:221 route-map calculator permit 23956 match community 2_166_221 set community 0:36686 ip community-list standard 2_88_251 permit 65000:2 0:88 0:251 route-map calculator permit 23957 match community 2_88_251 set community 0:22088 ip community-list standard 2_19_43 permit 65000:2 0:19 0:43 route-map calculator permit 23958 match community 2_19_43 set community 0:817 ip community-list standard 2_110_227 permit 65000:2 0:110 0:227 route-map calculator permit 23959 match community 2_110_227 set community 0:24970 ip community-list standard 2_64_241 permit 65000:2 0:64 0:241 route-map calculator permit 23960 match community 2_64_241 set community 0:15424 ip community-list standard 2_77_121 permit 65000:2 0:77 0:121 route-map calculator permit 23961 match community 2_77_121 set community 0:9317 ip community-list standard 2_67_211 permit 65000:2 0:67 0:211 route-map calculator permit 23962 match community 2_67_211 set community 0:14137 ip community-list standard 2_59_233 permit 65000:2 0:59 0:233 route-map calculator permit 23963 match community 2_59_233 set community 0:13747 ip community-list standard 2_146_208 permit 65000:2 0:146 0:208 route-map calculator permit 23964 match community 2_146_208 set community 0:30368 ip community-list standard 2_80_243 permit 65000:2 0:80 0:243 ip community-list standard 2_81_240 permit 65000:2 0:81 0:240 ip community-list standard 2_90_216 permit 65000:2 0:90 0:216 ip community-list standard 2_108_180 permit 65000:2 0:108 0:180 ip community-list standard 2_120_162 permit 65000:2 0:120 0:162 ip community-list standard 2_135_144 permit 65000:2 0:135 0:144 route-map calculator permit 23965 match community 2_80_243 2_81_240 2_90_216 2_108_180 2_120_162 set community 0:19440 route-map calculator permit 23966 match community 2_135_144 set community 0:19440 ip community-list standard 2_63_178 permit 65000:2 0:63 0:178 ip community-list standard 2_89_126 permit 65000:2 0:89 0:126 route-map calculator permit 23967 match community 2_63_178 2_89_126 set community 0:11214 ip community-list standard 2_103_113 permit 65000:2 0:103 0:113 route-map calculator permit 23968 match community 2_103_113 set community 0:11639 ip community-list standard 2_42_226 permit 65000:2 0:42 0:226 ip community-list standard 2_84_113 permit 65000:2 0:84 0:113 route-map calculator permit 23969 match community 2_42_226 2_84_113 set community 0:9492 ip community-list standard 2_73_221 permit 65000:2 0:73 0:221 route-map calculator permit 23970 match community 2_73_221 set community 0:16133 ip community-list standard 2_5_255 permit 65000:2 0:5 0:255 ip community-list standard 2_15_85 permit 65000:2 0:15 0:85 ip community-list standard 2_17_75 permit 65000:2 0:17 0:75 ip community-list standard 2_25_51 permit 65000:2 0:25 0:51 route-map calculator permit 23971 match community 2_5_255 2_15_85 2_17_75 2_25_51 set community 0:1275 ip community-list standard 2_11_71 permit 65000:2 0:11 0:71 route-map calculator permit 23972 match community 2_11_71 set community 0:781 ip community-list standard 2_101_221 permit 65000:2 0:101 0:221 route-map calculator permit 23973 match community 2_101_221 set community 0:22321 ip community-list standard 2_137_201 permit 65000:2 0:137 0:201 route-map calculator permit 23974 match community 2_137_201 set community 0:27537 ip community-list standard 2_42_203 permit 65000:2 0:42 0:203 ip community-list standard 2_49_174 permit 65000:2 0:49 0:174 ip community-list standard 2_58_147 permit 65000:2 0:58 0:147 ip community-list standard 2_87_98 permit 65000:2 0:87 0:98 route-map calculator permit 23975 match community 2_42_203 2_49_174 2_58_147 2_87_98 set community 0:8526 ip community-list standard 2_101_209 permit 65000:2 0:101 0:209 route-map calculator permit 23976 match community 2_101_209 set community 0:21109 ip community-list standard 2_215_217 permit 65000:2 0:215 0:217 route-map calculator permit 23977 match community 2_215_217 set community 0:46655 ip community-list standard 2_151_156 permit 65000:2 0:151 0:156 route-map calculator permit 23978 match community 2_151_156 set community 0:23556 ip community-list standard 2_49_137 permit 65000:2 0:49 0:137 route-map calculator permit 23979 match community 2_49_137 set community 0:6713 ip community-list standard 2_108_181 permit 65000:2 0:108 0:181 route-map calculator permit 23980 match community 2_108_181 set community 0:19548 ip community-list standard 2_189_252 permit 65000:2 0:189 0:252 ip community-list standard 2_196_243 permit 65000:2 0:196 0:243 route-map calculator permit 23981 match community 2_189_252 2_196_243 set community 0:47628 ip community-list standard 2_174_207 permit 65000:2 0:174 0:207 route-map calculator permit 23982 match community 2_174_207 set community 0:36018 ip community-list standard 2_99_197 permit 65000:2 0:99 0:197 route-map calculator permit 23983 match community 2_99_197 set community 0:19503 ip community-list standard 2_15_95 permit 65000:2 0:15 0:95 ip community-list standard 2_19_75 permit 65000:2 0:19 0:75 ip community-list standard 2_25_57 permit 65000:2 0:25 0:57 route-map calculator permit 23984 match community 2_15_95 2_19_75 2_25_57 set community 0:1425 ip community-list standard 2_120_229 permit 65000:2 0:120 0:229 route-map calculator permit 23985 match community 2_120_229 set community 0:27480 ip community-list standard 2_68_148 permit 65000:2 0:68 0:148 ip community-list standard 2_74_136 permit 65000:2 0:74 0:136 route-map calculator permit 23986 match community 2_68_148 2_74_136 set community 0:10064 ip community-list standard 2_113_133 permit 65000:2 0:113 0:133 route-map calculator permit 23987 match community 2_113_133 set community 0:15029 ip community-list standard 2_204_229 permit 65000:2 0:204 0:229 route-map calculator permit 23988 match community 2_204_229 set community 0:46716 ip community-list standard 2_2_174 permit 65000:2 0:2 0:174 ip community-list standard 2_3_116 permit 65000:2 0:3 0:116 ip community-list standard 2_4_87 permit 65000:2 0:4 0:87 ip community-list standard 2_6_58 permit 65000:2 0:6 0:58 ip community-list standard 2_12_29 permit 65000:2 0:12 0:29 ip community-list standard 1_92_256 permit 65000:1 0:92 0:256 ip community-list standard 1_93_255 permit 65000:1 0:93 0:255 ip community-list standard 1_94_254 permit 65000:1 0:94 0:254 ip community-list standard 1_95_253 permit 65000:1 0:95 0:253 ip community-list standard 1_96_252 permit 65000:1 0:96 0:252 ip community-list standard 1_97_251 permit 65000:1 0:97 0:251 ip community-list standard 1_98_250 permit 65000:1 0:98 0:250 ip community-list standard 1_99_249 permit 65000:1 0:99 0:249 ip community-list standard 1_100_248 permit 65000:1 0:100 0:248 ip community-list standard 1_101_247 permit 65000:1 0:101 0:247 ip community-list standard 1_102_246 permit 65000:1 0:102 0:246 ip community-list standard 1_103_245 permit 65000:1 0:103 0:245 ip community-list standard 1_104_244 permit 65000:1 0:104 0:244 ip community-list standard 1_105_243 permit 65000:1 0:105 0:243 ip community-list standard 1_106_242 permit 65000:1 0:106 0:242 ip community-list standard 1_107_241 permit 65000:1 0:107 0:241 ip community-list standard 1_108_240 permit 65000:1 0:108 0:240 ip community-list standard 1_109_239 permit 65000:1 0:109 0:239 ip community-list standard 1_110_238 permit 65000:1 0:110 0:238 ip community-list standard 1_111_237 permit 65000:1 0:111 0:237 ip community-list standard 1_112_236 permit 65000:1 0:112 0:236 ip community-list standard 1_113_235 permit 65000:1 0:113 0:235 ip community-list standard 1_114_234 permit 65000:1 0:114 0:234 ip community-list standard 1_115_233 permit 65000:1 0:115 0:233 ip community-list standard 1_116_232 permit 65000:1 0:116 0:232 ip community-list standard 1_117_231 permit 65000:1 0:117 0:231 ip community-list standard 1_118_230 permit 65000:1 0:118 0:230 ip community-list standard 1_119_229 permit 65000:1 0:119 0:229 ip community-list standard 1_120_228 permit 65000:1 0:120 0:228 ip community-list standard 1_121_227 permit 65000:1 0:121 0:227 ip community-list standard 1_122_226 permit 65000:1 0:122 0:226 ip community-list standard 1_123_225 permit 65000:1 0:123 0:225 ip community-list standard 1_124_224 permit 65000:1 0:124 0:224 ip community-list standard 1_125_223 permit 65000:1 0:125 0:223 ip community-list standard 1_126_222 permit 65000:1 0:126 0:222 ip community-list standard 1_127_221 permit 65000:1 0:127 0:221 ip community-list standard 1_128_220 permit 65000:1 0:128 0:220 ip community-list standard 1_129_219 permit 65000:1 0:129 0:219 ip community-list standard 1_130_218 permit 65000:1 0:130 0:218 ip community-list standard 1_131_217 permit 65000:1 0:131 0:217 ip community-list standard 1_132_216 permit 65000:1 0:132 0:216 ip community-list standard 1_133_215 permit 65000:1 0:133 0:215 ip community-list standard 1_134_214 permit 65000:1 0:134 0:214 ip community-list standard 1_135_213 permit 65000:1 0:135 0:213 ip community-list standard 1_136_212 permit 65000:1 0:136 0:212 ip community-list standard 1_137_211 permit 65000:1 0:137 0:211 ip community-list standard 1_138_210 permit 65000:1 0:138 0:210 ip community-list standard 1_139_209 permit 65000:1 0:139 0:209 ip community-list standard 1_140_208 permit 65000:1 0:140 0:208 ip community-list standard 1_141_207 permit 65000:1 0:141 0:207 ip community-list standard 1_142_206 permit 65000:1 0:142 0:206 ip community-list standard 1_143_205 permit 65000:1 0:143 0:205 ip community-list standard 1_144_204 permit 65000:1 0:144 0:204 ip community-list standard 1_145_203 permit 65000:1 0:145 0:203 ip community-list standard 1_146_202 permit 65000:1 0:146 0:202 ip community-list standard 1_147_201 permit 65000:1 0:147 0:201 ip community-list standard 1_148_200 permit 65000:1 0:148 0:200 ip community-list standard 1_149_199 permit 65000:1 0:149 0:199 ip community-list standard 1_150_198 permit 65000:1 0:150 0:198 ip community-list standard 1_151_197 permit 65000:1 0:151 0:197 ip community-list standard 1_152_196 permit 65000:1 0:152 0:196 ip community-list standard 1_153_195 permit 65000:1 0:153 0:195 ip community-list standard 1_154_194 permit 65000:1 0:154 0:194 ip community-list standard 1_155_193 permit 65000:1 0:155 0:193 ip community-list standard 1_156_192 permit 65000:1 0:156 0:192 ip community-list standard 1_157_191 permit 65000:1 0:157 0:191 ip community-list standard 1_158_190 permit 65000:1 0:158 0:190 ip community-list standard 1_159_189 permit 65000:1 0:159 0:189 ip community-list standard 1_160_188 permit 65000:1 0:160 0:188 ip community-list standard 1_161_187 permit 65000:1 0:161 0:187 ip community-list standard 1_162_186 permit 65000:1 0:162 0:186 ip community-list standard 1_163_185 permit 65000:1 0:163 0:185 ip community-list standard 1_164_184 permit 65000:1 0:164 0:184 ip community-list standard 1_165_183 permit 65000:1 0:165 0:183 ip community-list standard 1_166_182 permit 65000:1 0:166 0:182 ip community-list standard 1_167_181 permit 65000:1 0:167 0:181 ip community-list standard 1_168_180 permit 65000:1 0:168 0:180 ip community-list standard 1_169_179 permit 65000:1 0:169 0:179 ip community-list standard 1_170_178 permit 65000:1 0:170 0:178 ip community-list standard 1_171_177 permit 65000:1 0:171 0:177 ip community-list standard 1_172_176 permit 65000:1 0:172 0:176 ip community-list standard 1_173_175 permit 65000:1 0:173 0:175 ip community-list standard 1_174_174 permit 65000:1 0:174 0:174 route-map calculator permit 23989 match community 2_2_174 2_3_116 2_4_87 2_6_58 2_12_29 set community 0:348 route-map calculator permit 23990 match community 1_92_256 1_93_255 1_94_254 1_95_253 1_96_252 set community 0:348 route-map calculator permit 23991 match community 1_97_251 1_98_250 1_99_249 1_100_248 1_101_247 set community 0:348 route-map calculator permit 23992 match community 1_102_246 1_103_245 1_104_244 1_105_243 1_106_242 set community 0:348 route-map calculator permit 23993 match community 1_107_241 1_108_240 1_109_239 1_110_238 1_111_237 set community 0:348 route-map calculator permit 23994 match community 1_112_236 1_113_235 1_114_234 1_115_233 1_116_232 set community 0:348 route-map calculator permit 23995 match community 1_117_231 1_118_230 1_119_229 1_120_228 1_121_227 set community 0:348 route-map calculator permit 23996 match community 1_122_226 1_123_225 1_124_224 1_125_223 1_126_222 set community 0:348 route-map calculator permit 23997 match community 1_127_221 1_128_220 1_129_219 1_130_218 1_131_217 set community 0:348 route-map calculator permit 23998 match community 1_132_216 1_133_215 1_134_214 1_135_213 1_136_212 set community 0:348 route-map calculator permit 23999 match community 1_137_211 1_138_210 1_139_209 1_140_208 1_141_207 set community 0:348 route-map calculator permit 24000 match community 1_142_206 1_143_205 1_144_204 1_145_203 1_146_202 set community 0:348 route-map calculator permit 24001 match community 1_147_201 1_148_200 1_149_199 1_150_198 1_151_197 set community 0:348 route-map calculator permit 24002 match community 1_152_196 1_153_195 1_154_194 1_155_193 1_156_192 set community 0:348 route-map calculator permit 24003 match community 1_157_191 1_158_190 1_159_189 1_160_188 1_161_187 set community 0:348 route-map calculator permit 24004 match community 1_162_186 1_163_185 1_164_184 1_165_183 1_166_182 set community 0:348 route-map calculator permit 24005 match community 1_167_181 1_168_180 1_169_179 1_170_178 1_171_177 set community 0:348 route-map calculator permit 24006 match community 1_172_176 1_173_175 1_174_174 set community 0:348 ip community-list standard 2_30_206 permit 65000:2 0:30 0:206 ip community-list standard 2_60_103 permit 65000:2 0:60 0:103 route-map calculator permit 24007 match community 2_30_206 2_60_103 set community 0:6180 ip community-list standard 2_4_198 permit 65000:2 0:4 0:198 ip community-list standard 2_6_132 permit 65000:2 0:6 0:132 ip community-list standard 2_8_99 permit 65000:2 0:8 0:99 ip community-list standard 2_9_88 permit 65000:2 0:9 0:88 ip community-list standard 2_11_72 permit 65000:2 0:11 0:72 ip community-list standard 2_12_66 permit 65000:2 0:12 0:66 ip community-list standard 2_18_44 permit 65000:2 0:18 0:44 ip community-list standard 2_22_36 permit 65000:2 0:22 0:36 ip community-list standard 2_24_33 permit 65000:2 0:24 0:33 route-map calculator permit 24008 match community 2_4_198 2_6_132 2_8_99 2_9_88 2_11_72 set community 0:792 route-map calculator permit 24009 match community 2_12_66 2_18_44 2_22_36 2_24_33 set community 0:792 ip community-list standard 2_186_206 permit 65000:2 0:186 0:206 route-map calculator permit 24010 match community 2_186_206 set community 0:38316 ip community-list standard 2_133_161 permit 65000:2 0:133 0:161 route-map calculator permit 24011 match community 2_133_161 set community 0:21413 ip community-list standard 2_167_251 permit 65000:2 0:167 0:251 route-map calculator permit 24012 match community 2_167_251 set community 0:41917 ip community-list standard 2_143_148 permit 65000:2 0:143 0:148 route-map calculator permit 24013 match community 2_143_148 set community 0:21164 ip community-list standard 2_141_208 permit 65000:2 0:141 0:208 ip community-list standard 2_156_188 permit 65000:2 0:156 0:188 route-map calculator permit 24014 match community 2_141_208 2_156_188 set community 0:29328 ip community-list standard 2_123_211 permit 65000:2 0:123 0:211 route-map calculator permit 24015 match community 2_123_211 set community 0:25953 ip community-list standard 2_127_239 permit 65000:2 0:127 0:239 route-map calculator permit 24016 match community 2_127_239 set community 0:30353 ip community-list standard 2_96_245 permit 65000:2 0:96 0:245 ip community-list standard 2_98_240 permit 65000:2 0:98 0:240 ip community-list standard 2_105_224 permit 65000:2 0:105 0:224 ip community-list standard 2_112_210 permit 65000:2 0:112 0:210 ip community-list standard 2_120_196 permit 65000:2 0:120 0:196 ip community-list standard 2_140_168 permit 65000:2 0:140 0:168 ip community-list standard 2_147_160 permit 65000:2 0:147 0:160 route-map calculator permit 24017 match community 2_96_245 2_98_240 2_105_224 2_112_210 2_120_196 set community 0:23520 route-map calculator permit 24018 match community 2_140_168 2_147_160 set community 0:23520 ip community-list standard 2_193_226 permit 65000:2 0:193 0:226 route-map calculator permit 24019 match community 2_193_226 set community 0:43618 ip community-list standard 2_135_242 permit 65000:2 0:135 0:242 ip community-list standard 2_165_198 permit 65000:2 0:165 0:198 route-map calculator permit 24020 match community 2_135_242 2_165_198 set community 0:32670 ip community-list standard 2_163_199 permit 65000:2 0:163 0:199 route-map calculator permit 24021 match community 2_163_199 set community 0:32437 ip community-list standard 2_89_155 permit 65000:2 0:89 0:155 route-map calculator permit 24022 match community 2_89_155 set community 0:13795 ip community-list standard 2_107_197 permit 65000:2 0:107 0:197 route-map calculator permit 24023 match community 2_107_197 set community 0:21079 ip community-list standard 2_8_254 permit 65000:2 0:8 0:254 ip community-list standard 2_16_127 permit 65000:2 0:16 0:127 route-map calculator permit 24024 match community 2_8_254 2_16_127 set community 0:2032 ip community-list standard 2_194_227 permit 65000:2 0:194 0:227 route-map calculator permit 24025 match community 2_194_227 set community 0:44038 ip community-list standard 2_23_145 permit 65000:2 0:23 0:145 ip community-list standard 2_29_115 permit 65000:2 0:29 0:115 route-map calculator permit 24026 match community 2_23_145 2_29_115 set community 0:3335 ip community-list standard 2_104_195 permit 65000:2 0:104 0:195 ip community-list standard 2_120_169 permit 65000:2 0:120 0:169 ip community-list standard 2_130_156 permit 65000:2 0:130 0:156 route-map calculator permit 24027 match community 2_104_195 2_120_169 2_130_156 set community 0:20280 ip community-list standard 2_59_107 permit 65000:2 0:59 0:107 route-map calculator permit 24028 match community 2_59_107 set community 0:6313 ip community-list standard 2_196_241 permit 65000:2 0:196 0:241 route-map calculator permit 24029 match community 2_196_241 set community 0:47236 ip community-list standard 2_18_141 permit 65000:2 0:18 0:141 ip community-list standard 2_27_94 permit 65000:2 0:27 0:94 ip community-list standard 2_47_54 permit 65000:2 0:47 0:54 route-map calculator permit 24030 match community 2_18_141 2_27_94 2_47_54 set community 0:2538 ip community-list standard 2_152_214 permit 65000:2 0:152 0:214 route-map calculator permit 24031 match community 2_152_214 set community 0:32528 ip community-list standard 2_2_131 permit 65000:2 0:2 0:131 ip community-list standard 1_6_256 permit 65000:1 0:6 0:256 ip community-list standard 1_7_255 permit 65000:1 0:7 0:255 ip community-list standard 1_8_254 permit 65000:1 0:8 0:254 ip community-list standard 1_9_253 permit 65000:1 0:9 0:253 ip community-list standard 1_10_252 permit 65000:1 0:10 0:252 ip community-list standard 1_11_251 permit 65000:1 0:11 0:251 ip community-list standard 1_12_250 permit 65000:1 0:12 0:250 ip community-list standard 1_13_249 permit 65000:1 0:13 0:249 ip community-list standard 1_14_248 permit 65000:1 0:14 0:248 ip community-list standard 1_15_247 permit 65000:1 0:15 0:247 ip community-list standard 1_16_246 permit 65000:1 0:16 0:246 ip community-list standard 1_17_245 permit 65000:1 0:17 0:245 ip community-list standard 1_18_244 permit 65000:1 0:18 0:244 ip community-list standard 1_19_243 permit 65000:1 0:19 0:243 ip community-list standard 1_20_242 permit 65000:1 0:20 0:242 ip community-list standard 1_21_241 permit 65000:1 0:21 0:241 ip community-list standard 1_22_240 permit 65000:1 0:22 0:240 ip community-list standard 1_23_239 permit 65000:1 0:23 0:239 ip community-list standard 1_24_238 permit 65000:1 0:24 0:238 ip community-list standard 1_25_237 permit 65000:1 0:25 0:237 ip community-list standard 1_26_236 permit 65000:1 0:26 0:236 ip community-list standard 1_27_235 permit 65000:1 0:27 0:235 ip community-list standard 1_28_234 permit 65000:1 0:28 0:234 ip community-list standard 1_29_233 permit 65000:1 0:29 0:233 ip community-list standard 1_30_232 permit 65000:1 0:30 0:232 ip community-list standard 1_31_231 permit 65000:1 0:31 0:231 ip community-list standard 1_32_230 permit 65000:1 0:32 0:230 ip community-list standard 1_33_229 permit 65000:1 0:33 0:229 ip community-list standard 1_34_228 permit 65000:1 0:34 0:228 ip community-list standard 1_35_227 permit 65000:1 0:35 0:227 ip community-list standard 1_36_226 permit 65000:1 0:36 0:226 ip community-list standard 1_37_225 permit 65000:1 0:37 0:225 ip community-list standard 1_38_224 permit 65000:1 0:38 0:224 ip community-list standard 1_39_223 permit 65000:1 0:39 0:223 ip community-list standard 1_40_222 permit 65000:1 0:40 0:222 ip community-list standard 1_41_221 permit 65000:1 0:41 0:221 ip community-list standard 1_42_220 permit 65000:1 0:42 0:220 ip community-list standard 1_43_219 permit 65000:1 0:43 0:219 ip community-list standard 1_44_218 permit 65000:1 0:44 0:218 ip community-list standard 1_45_217 permit 65000:1 0:45 0:217 ip community-list standard 1_46_216 permit 65000:1 0:46 0:216 ip community-list standard 1_47_215 permit 65000:1 0:47 0:215 ip community-list standard 1_48_214 permit 65000:1 0:48 0:214 ip community-list standard 1_49_213 permit 65000:1 0:49 0:213 ip community-list standard 1_50_212 permit 65000:1 0:50 0:212 ip community-list standard 1_51_211 permit 65000:1 0:51 0:211 ip community-list standard 1_52_210 permit 65000:1 0:52 0:210 ip community-list standard 1_53_209 permit 65000:1 0:53 0:209 ip community-list standard 1_54_208 permit 65000:1 0:54 0:208 ip community-list standard 1_55_207 permit 65000:1 0:55 0:207 ip community-list standard 1_56_206 permit 65000:1 0:56 0:206 ip community-list standard 1_57_205 permit 65000:1 0:57 0:205 ip community-list standard 1_58_204 permit 65000:1 0:58 0:204 ip community-list standard 1_59_203 permit 65000:1 0:59 0:203 ip community-list standard 1_60_202 permit 65000:1 0:60 0:202 ip community-list standard 1_61_201 permit 65000:1 0:61 0:201 ip community-list standard 1_62_200 permit 65000:1 0:62 0:200 ip community-list standard 1_63_199 permit 65000:1 0:63 0:199 ip community-list standard 1_64_198 permit 65000:1 0:64 0:198 ip community-list standard 1_65_197 permit 65000:1 0:65 0:197 ip community-list standard 1_66_196 permit 65000:1 0:66 0:196 ip community-list standard 1_67_195 permit 65000:1 0:67 0:195 ip community-list standard 1_68_194 permit 65000:1 0:68 0:194 ip community-list standard 1_69_193 permit 65000:1 0:69 0:193 ip community-list standard 1_70_192 permit 65000:1 0:70 0:192 ip community-list standard 1_71_191 permit 65000:1 0:71 0:191 ip community-list standard 1_72_190 permit 65000:1 0:72 0:190 ip community-list standard 1_73_189 permit 65000:1 0:73 0:189 ip community-list standard 1_74_188 permit 65000:1 0:74 0:188 ip community-list standard 1_75_187 permit 65000:1 0:75 0:187 ip community-list standard 1_76_186 permit 65000:1 0:76 0:186 ip community-list standard 1_77_185 permit 65000:1 0:77 0:185 ip community-list standard 1_78_184 permit 65000:1 0:78 0:184 ip community-list standard 1_79_183 permit 65000:1 0:79 0:183 ip community-list standard 1_80_182 permit 65000:1 0:80 0:182 ip community-list standard 1_81_181 permit 65000:1 0:81 0:181 ip community-list standard 1_82_180 permit 65000:1 0:82 0:180 ip community-list standard 1_83_179 permit 65000:1 0:83 0:179 ip community-list standard 1_84_178 permit 65000:1 0:84 0:178 ip community-list standard 1_85_177 permit 65000:1 0:85 0:177 ip community-list standard 1_86_176 permit 65000:1 0:86 0:176 ip community-list standard 1_87_175 permit 65000:1 0:87 0:175 ip community-list standard 1_88_174 permit 65000:1 0:88 0:174 ip community-list standard 1_89_173 permit 65000:1 0:89 0:173 ip community-list standard 1_90_172 permit 65000:1 0:90 0:172 ip community-list standard 1_91_171 permit 65000:1 0:91 0:171 ip community-list standard 1_92_170 permit 65000:1 0:92 0:170 ip community-list standard 1_93_169 permit 65000:1 0:93 0:169 ip community-list standard 1_94_168 permit 65000:1 0:94 0:168 ip community-list standard 1_95_167 permit 65000:1 0:95 0:167 ip community-list standard 1_96_166 permit 65000:1 0:96 0:166 ip community-list standard 1_97_165 permit 65000:1 0:97 0:165 ip community-list standard 1_98_164 permit 65000:1 0:98 0:164 ip community-list standard 1_99_163 permit 65000:1 0:99 0:163 ip community-list standard 1_100_162 permit 65000:1 0:100 0:162 ip community-list standard 1_101_161 permit 65000:1 0:101 0:161 ip community-list standard 1_102_160 permit 65000:1 0:102 0:160 ip community-list standard 1_103_159 permit 65000:1 0:103 0:159 ip community-list standard 1_104_158 permit 65000:1 0:104 0:158 ip community-list standard 1_105_157 permit 65000:1 0:105 0:157 ip community-list standard 1_106_156 permit 65000:1 0:106 0:156 ip community-list standard 1_107_155 permit 65000:1 0:107 0:155 ip community-list standard 1_108_154 permit 65000:1 0:108 0:154 ip community-list standard 1_109_153 permit 65000:1 0:109 0:153 ip community-list standard 1_110_152 permit 65000:1 0:110 0:152 ip community-list standard 1_111_151 permit 65000:1 0:111 0:151 ip community-list standard 1_112_150 permit 65000:1 0:112 0:150 ip community-list standard 1_113_149 permit 65000:1 0:113 0:149 ip community-list standard 1_114_148 permit 65000:1 0:114 0:148 ip community-list standard 1_115_147 permit 65000:1 0:115 0:147 ip community-list standard 1_116_146 permit 65000:1 0:116 0:146 ip community-list standard 1_117_145 permit 65000:1 0:117 0:145 ip community-list standard 1_118_144 permit 65000:1 0:118 0:144 ip community-list standard 1_119_143 permit 65000:1 0:119 0:143 ip community-list standard 1_120_142 permit 65000:1 0:120 0:142 ip community-list standard 1_121_141 permit 65000:1 0:121 0:141 ip community-list standard 1_122_140 permit 65000:1 0:122 0:140 ip community-list standard 1_123_139 permit 65000:1 0:123 0:139 ip community-list standard 1_124_138 permit 65000:1 0:124 0:138 ip community-list standard 1_125_137 permit 65000:1 0:125 0:137 ip community-list standard 1_126_136 permit 65000:1 0:126 0:136 ip community-list standard 1_127_135 permit 65000:1 0:127 0:135 ip community-list standard 1_128_134 permit 65000:1 0:128 0:134 ip community-list standard 1_129_133 permit 65000:1 0:129 0:133 ip community-list standard 1_130_132 permit 65000:1 0:130 0:132 ip community-list standard 1_131_131 permit 65000:1 0:131 0:131 route-map calculator permit 24032 match community 2_2_131 1_6_256 1_7_255 1_8_254 1_9_253 set community 0:262 route-map calculator permit 24033 match community 1_10_252 1_11_251 1_12_250 1_13_249 1_14_248 set community 0:262 route-map calculator permit 24034 match community 1_15_247 1_16_246 1_17_245 1_18_244 1_19_243 set community 0:262 route-map calculator permit 24035 match community 1_20_242 1_21_241 1_22_240 1_23_239 1_24_238 set community 0:262 route-map calculator permit 24036 match community 1_25_237 1_26_236 1_27_235 1_28_234 1_29_233 set community 0:262 route-map calculator permit 24037 match community 1_30_232 1_31_231 1_32_230 1_33_229 1_34_228 set community 0:262 route-map calculator permit 24038 match community 1_35_227 1_36_226 1_37_225 1_38_224 1_39_223 set community 0:262 route-map calculator permit 24039 match community 1_40_222 1_41_221 1_42_220 1_43_219 1_44_218 set community 0:262 route-map calculator permit 24040 match community 1_45_217 1_46_216 1_47_215 1_48_214 1_49_213 set community 0:262 route-map calculator permit 24041 match community 1_50_212 1_51_211 1_52_210 1_53_209 1_54_208 set community 0:262 route-map calculator permit 24042 match community 1_55_207 1_56_206 1_57_205 1_58_204 1_59_203 set community 0:262 route-map calculator permit 24043 match community 1_60_202 1_61_201 1_62_200 1_63_199 1_64_198 set community 0:262 route-map calculator permit 24044 match community 1_65_197 1_66_196 1_67_195 1_68_194 1_69_193 set community 0:262 route-map calculator permit 24045 match community 1_70_192 1_71_191 1_72_190 1_73_189 1_74_188 set community 0:262 route-map calculator permit 24046 match community 1_75_187 1_76_186 1_77_185 1_78_184 1_79_183 set community 0:262 route-map calculator permit 24047 match community 1_80_182 1_81_181 1_82_180 1_83_179 1_84_178 set community 0:262 route-map calculator permit 24048 match community 1_85_177 1_86_176 1_87_175 1_88_174 1_89_173 set community 0:262 route-map calculator permit 24049 match community 1_90_172 1_91_171 1_92_170 1_93_169 1_94_168 set community 0:262 route-map calculator permit 24050 match community 1_95_167 1_96_166 1_97_165 1_98_164 1_99_163 set community 0:262 route-map calculator permit 24051 match community 1_100_162 1_101_161 1_102_160 1_103_159 1_104_158 set community 0:262 route-map calculator permit 24052 match community 1_105_157 1_106_156 1_107_155 1_108_154 1_109_153 set community 0:262 route-map calculator permit 24053 match community 1_110_152 1_111_151 1_112_150 1_113_149 1_114_148 set community 0:262 route-map calculator permit 24054 match community 1_115_147 1_116_146 1_117_145 1_118_144 1_119_143 set community 0:262 route-map calculator permit 24055 match community 1_120_142 1_121_141 1_122_140 1_123_139 1_124_138 set community 0:262 route-map calculator permit 24056 match community 1_125_137 1_126_136 1_127_135 1_128_134 1_129_133 set community 0:262 route-map calculator permit 24057 match community 1_130_132 1_131_131 set community 0:262 ip community-list standard 2_58_178 permit 65000:2 0:58 0:178 ip community-list standard 2_89_116 permit 65000:2 0:89 0:116 route-map calculator permit 24058 match community 2_58_178 2_89_116 set community 0:10324 ip community-list standard 2_141_153 permit 65000:2 0:141 0:153 route-map calculator permit 24059 match community 2_141_153 set community 0:21573 ip community-list standard 2_243_256 permit 65000:2 0:243 0:256 route-map calculator permit 24060 match community 2_243_256 set community 0:62208 ip community-list standard 2_177_197 permit 65000:2 0:177 0:197 route-map calculator permit 24061 match community 2_177_197 set community 0:34869 ip community-list standard 2_147_181 permit 65000:2 0:147 0:181 route-map calculator permit 24062 match community 2_147_181 set community 0:26607 ip community-list standard 2_15_255 permit 65000:2 0:15 0:255 ip community-list standard 2_17_225 permit 65000:2 0:17 0:225 ip community-list standard 2_25_153 permit 65000:2 0:25 0:153 ip community-list standard 2_45_85 permit 65000:2 0:45 0:85 ip community-list standard 2_51_75 permit 65000:2 0:51 0:75 route-map calculator permit 24063 match community 2_15_255 2_17_225 2_25_153 2_45_85 2_51_75 set community 0:3825 ip community-list standard 2_49_177 permit 65000:2 0:49 0:177 ip community-list standard 2_59_147 permit 65000:2 0:59 0:147 route-map calculator permit 24064 match community 2_49_177 2_59_147 set community 0:8673 ip community-list standard 2_20_224 permit 65000:2 0:20 0:224 ip community-list standard 2_28_160 permit 65000:2 0:28 0:160 ip community-list standard 2_32_140 permit 65000:2 0:32 0:140 ip community-list standard 2_35_128 permit 65000:2 0:35 0:128 ip community-list standard 2_40_112 permit 65000:2 0:40 0:112 ip community-list standard 2_56_80 permit 65000:2 0:56 0:80 ip community-list standard 2_64_70 permit 65000:2 0:64 0:70 route-map calculator permit 24065 match community 2_20_224 2_28_160 2_32_140 2_35_128 2_40_112 set community 0:4480 route-map calculator permit 24066 match community 2_56_80 2_64_70 set community 0:4480 ip community-list standard 2_169_226 permit 65000:2 0:169 0:226 route-map calculator permit 24067 match community 2_169_226 set community 0:38194 ip community-list standard 2_34_233 permit 65000:2 0:34 0:233 route-map calculator permit 24068 match community 2_34_233 set community 0:7922 ip community-list standard 2_66_240 permit 65000:2 0:66 0:240 ip community-list standard 2_72_220 permit 65000:2 0:72 0:220 ip community-list standard 2_80_198 permit 65000:2 0:80 0:198 ip community-list standard 2_88_180 permit 65000:2 0:88 0:180 ip community-list standard 2_90_176 permit 65000:2 0:90 0:176 ip community-list standard 2_96_165 permit 65000:2 0:96 0:165 ip community-list standard 2_99_160 permit 65000:2 0:99 0:160 ip community-list standard 2_110_144 permit 65000:2 0:110 0:144 ip community-list standard 2_120_132 permit 65000:2 0:120 0:132 route-map calculator permit 24069 match community 2_66_240 2_72_220 2_80_198 2_88_180 2_90_176 set community 0:15840 route-map calculator permit 24070 match community 2_96_165 2_99_160 2_110_144 2_120_132 set community 0:15840 ip community-list standard 2_77_211 permit 65000:2 0:77 0:211 route-map calculator permit 24071 match community 2_77_211 set community 0:16247 ip community-list standard 2_185_189 permit 65000:2 0:185 0:189 route-map calculator permit 24072 match community 2_185_189 set community 0:34965 ip community-list standard 2_151_179 permit 65000:2 0:151 0:179 route-map calculator permit 24073 match community 2_151_179 set community 0:27029 ip community-list standard 2_25_73 permit 65000:2 0:25 0:73 route-map calculator permit 24074 match community 2_25_73 set community 0:1825 ip community-list standard 2_111_123 permit 65000:2 0:111 0:123 route-map calculator permit 24075 match community 2_111_123 set community 0:13653 ip community-list standard 2_105_256 permit 65000:2 0:105 0:256 ip community-list standard 2_112_240 permit 65000:2 0:112 0:240 ip community-list standard 2_120_224 permit 65000:2 0:120 0:224 ip community-list standard 2_128_210 permit 65000:2 0:128 0:210 ip community-list standard 2_140_192 permit 65000:2 0:140 0:192 ip community-list standard 2_160_168 permit 65000:2 0:160 0:168 route-map calculator permit 24076 match community 2_105_256 2_112_240 2_120_224 2_128_210 2_140_192 set community 0:26880 route-map calculator permit 24077 match community 2_160_168 set community 0:26880 ip community-list standard 2_63_127 permit 65000:2 0:63 0:127 route-map calculator permit 24078 match community 2_63_127 set community 0:8001 ip community-list standard 2_207_213 permit 65000:2 0:207 0:213 route-map calculator permit 24079 match community 2_207_213 set community 0:44091 ip community-list standard 2_5_205 permit 65000:2 0:5 0:205 ip community-list standard 2_25_41 permit 65000:2 0:25 0:41 route-map calculator permit 24080 match community 2_5_205 2_25_41 set community 0:1025 ip community-list standard 2_29_43 permit 65000:2 0:29 0:43 route-map calculator permit 24081 match community 2_29_43 set community 0:1247 ip community-list standard 2_131_150 permit 65000:2 0:131 0:150 route-map calculator permit 24082 match community 2_131_150 set community 0:19650 ip community-list standard 2_179_221 permit 65000:2 0:179 0:221 route-map calculator permit 24083 match community 2_179_221 set community 0:39559 ip community-list standard 2_25_89 permit 65000:2 0:25 0:89 route-map calculator permit 24084 match community 2_25_89 set community 0:2225 ip community-list standard 2_109_161 permit 65000:2 0:109 0:161 route-map calculator permit 24085 match community 2_109_161 set community 0:17549 ip community-list standard 2_144_251 permit 65000:2 0:144 0:251 route-map calculator permit 24086 match community 2_144_251 set community 0:36144 ip community-list standard 1_1_56 permit 65000:1 0:1 0:56 ip community-list standard 2_1_57 permit 65000:2 0:1 0:57 ip community-list standard 1_2_55 permit 65000:1 0:2 0:55 ip community-list standard 2_3_19 permit 65000:2 0:3 0:19 ip community-list standard 1_3_54 permit 65000:1 0:3 0:54 ip community-list standard 1_4_53 permit 65000:1 0:4 0:53 ip community-list standard 1_5_52 permit 65000:1 0:5 0:52 ip community-list standard 1_6_51 permit 65000:1 0:6 0:51 ip community-list standard 1_7_50 permit 65000:1 0:7 0:50 ip community-list standard 1_8_49 permit 65000:1 0:8 0:49 ip community-list standard 1_9_48 permit 65000:1 0:9 0:48 ip community-list standard 1_10_47 permit 65000:1 0:10 0:47 ip community-list standard 1_11_46 permit 65000:1 0:11 0:46 ip community-list standard 1_12_45 permit 65000:1 0:12 0:45 ip community-list standard 1_13_44 permit 65000:1 0:13 0:44 ip community-list standard 1_14_43 permit 65000:1 0:14 0:43 ip community-list standard 1_15_42 permit 65000:1 0:15 0:42 ip community-list standard 1_16_41 permit 65000:1 0:16 0:41 ip community-list standard 1_17_40 permit 65000:1 0:17 0:40 ip community-list standard 1_18_39 permit 65000:1 0:18 0:39 ip community-list standard 1_19_38 permit 65000:1 0:19 0:38 ip community-list standard 1_20_37 permit 65000:1 0:20 0:37 ip community-list standard 1_21_36 permit 65000:1 0:21 0:36 ip community-list standard 1_22_35 permit 65000:1 0:22 0:35 ip community-list standard 1_23_34 permit 65000:1 0:23 0:34 ip community-list standard 1_24_33 permit 65000:1 0:24 0:33 ip community-list standard 1_25_32 permit 65000:1 0:25 0:32 ip community-list standard 1_26_31 permit 65000:1 0:26 0:31 ip community-list standard 1_27_30 permit 65000:1 0:27 0:30 ip community-list standard 1_28_29 permit 65000:1 0:28 0:29 ip community-list expanded c57 permit 1 ^65000:4_0:57_0:1$ ip community-list expanded c57 permit 2 ^65000:3_0:58_0:1$ ip community-list expanded c57 permit 3 ^65000:3_0:59_0:2$ ip community-list expanded c57 permit 4 ^65000:3_0:60_0:3$ ip community-list expanded c57 permit 5 ^65000:3_0:61_0:4$ ip community-list expanded c57 permit 6 ^65000:3_0:62_0:5$ ip community-list expanded c57 permit 7 ^65000:3_0:63_0:6$ ip community-list expanded c57 permit 8 ^65000:3_0:64_0:7$ ip community-list expanded c57 permit 9 ^65000:3_0:65_0:8$ ip community-list expanded c57 permit 10 ^65000:3_0:66_0:9$ ip community-list expanded c57 permit 11 ^65000:3_0:67_0:10$ ip community-list expanded c57 permit 12 ^65000:3_0:68_0:11$ ip community-list expanded c57 permit 13 ^65000:3_0:69_0:12$ ip community-list expanded c57 permit 14 ^65000:3_0:70_0:13$ ip community-list expanded c57 permit 15 ^65000:3_0:71_0:14$ ip community-list expanded c57 permit 16 ^65000:3_0:72_0:15$ ip community-list expanded c57 permit 17 ^65000:3_0:73_0:16$ ip community-list expanded c57 permit 18 ^65000:3_0:74_0:17$ ip community-list expanded c57 permit 19 ^65000:3_0:75_0:18$ ip community-list expanded c57 permit 20 ^65000:3_0:76_0:19$ ip community-list expanded c57 permit 21 ^65000:3_0:77_0:20$ ip community-list expanded c57 permit 22 ^65000:3_0:78_0:21$ ip community-list expanded c57 permit 23 ^65000:3_0:79_0:22$ ip community-list expanded c57 permit 24 ^65000:3_0:80_0:23$ ip community-list expanded c57 permit 25 ^65000:3_0:81_0:24$ ip community-list expanded c57 permit 26 ^65000:3_0:82_0:25$ ip community-list expanded c57 permit 27 ^65000:3_0:83_0:26$ ip community-list expanded c57 permit 28 ^65000:3_0:84_0:27$ ip community-list expanded c57 permit 29 ^65000:3_0:85_0:28$ ip community-list expanded c57 permit 30 ^65000:3_0:86_0:29$ ip community-list expanded c57 permit 31 ^65000:3_0:87_0:30$ ip community-list expanded c57 permit 32 ^65000:3_0:88_0:31$ ip community-list expanded c57 permit 33 ^65000:3_0:89_0:32$ ip community-list expanded c57 permit 34 ^65000:3_0:90_0:33$ ip community-list expanded c57 permit 35 ^65000:3_0:91_0:34$ ip community-list expanded c57 permit 36 ^65000:3_0:92_0:35$ ip community-list expanded c57 permit 37 ^65000:3_0:93_0:36$ ip community-list expanded c57 permit 38 ^65000:3_0:94_0:37$ ip community-list expanded c57 permit 39 ^65000:3_0:95_0:38$ ip community-list expanded c57 permit 40 ^65000:3_0:96_0:39$ ip community-list expanded c57 permit 41 ^65000:3_0:97_0:40$ ip community-list expanded c57 permit 42 ^65000:3_0:98_0:41$ ip community-list expanded c57 permit 43 ^65000:3_0:99_0:42$ ip community-list expanded c57 permit 44 ^65000:3_0:100_0:43$ ip community-list expanded c57 permit 45 ^65000:3_0:101_0:44$ ip community-list expanded c57 permit 46 ^65000:3_0:102_0:45$ ip community-list expanded c57 permit 47 ^65000:3_0:103_0:46$ ip community-list expanded c57 permit 48 ^65000:3_0:104_0:47$ ip community-list expanded c57 permit 49 ^65000:3_0:105_0:48$ ip community-list expanded c57 permit 50 ^65000:3_0:106_0:49$ ip community-list expanded c57 permit 51 ^65000:3_0:107_0:50$ ip community-list expanded c57 permit 52 ^65000:3_0:108_0:51$ ip community-list expanded c57 permit 53 ^65000:3_0:109_0:52$ ip community-list expanded c57 permit 54 ^65000:3_0:110_0:53$ ip community-list expanded c57 permit 55 ^65000:3_0:111_0:54$ ip community-list expanded c57 permit 56 ^65000:3_0:112_0:55$ ip community-list expanded c57 permit 57 ^65000:3_0:113_0:56$ ip community-list expanded c57 permit 58 ^65000:4_0:114_0:2$ ip community-list expanded c57 permit 59 ^65000:3_0:114_0:57$ ip community-list expanded c57 permit 60 ^65000:4_0:115_0:2$ ip community-list expanded c57 permit 61 ^65000:3_0:115_0:58$ ip community-list expanded c57 permit 62 ^65000:3_0:116_0:59$ ip community-list expanded c57 permit 63 ^65000:3_0:117_0:60$ ip community-list expanded c57 permit 64 ^65000:3_0:118_0:61$ ip community-list expanded c57 permit 65 ^65000:3_0:119_0:62$ ip community-list expanded c57 permit 66 ^65000:3_0:120_0:63$ ip community-list expanded c57 permit 67 ^65000:3_0:121_0:64$ ip community-list expanded c57 permit 68 ^65000:3_0:122_0:65$ ip community-list expanded c57 permit 69 ^65000:3_0:123_0:66$ ip community-list expanded c57 permit 70 ^65000:3_0:124_0:67$ ip community-list expanded c57 permit 71 ^65000:3_0:125_0:68$ ip community-list expanded c57 permit 72 ^65000:3_0:126_0:69$ ip community-list expanded c57 permit 73 ^65000:3_0:127_0:70$ ip community-list expanded c57 permit 74 ^65000:3_0:128_0:71$ ip community-list expanded c57 permit 75 ^65000:3_0:129_0:72$ ip community-list expanded c57 permit 76 ^65000:3_0:130_0:73$ ip community-list expanded c57 permit 77 ^65000:3_0:131_0:74$ ip community-list expanded c57 permit 78 ^65000:3_0:132_0:75$ ip community-list expanded c57 permit 79 ^65000:3_0:133_0:76$ ip community-list expanded c57 permit 80 ^65000:3_0:134_0:77$ ip community-list expanded c57 permit 81 ^65000:3_0:135_0:78$ ip community-list expanded c57 permit 82 ^65000:3_0:136_0:79$ ip community-list expanded c57 permit 83 ^65000:3_0:137_0:80$ ip community-list expanded c57 permit 84 ^65000:3_0:138_0:81$ ip community-list expanded c57 permit 85 ^65000:3_0:139_0:82$ ip community-list expanded c57 permit 86 ^65000:3_0:140_0:83$ ip community-list expanded c57 permit 87 ^65000:3_0:141_0:84$ ip community-list expanded c57 permit 88 ^65000:3_0:142_0:85$ ip community-list expanded c57 permit 89 ^65000:3_0:143_0:86$ ip community-list expanded c57 permit 90 ^65000:3_0:144_0:87$ ip community-list expanded c57 permit 91 ^65000:3_0:145_0:88$ ip community-list expanded c57 permit 92 ^65000:3_0:146_0:89$ ip community-list expanded c57 permit 93 ^65000:3_0:147_0:90$ ip community-list expanded c57 permit 94 ^65000:3_0:148_0:91$ ip community-list expanded c57 permit 95 ^65000:3_0:149_0:92$ ip community-list expanded c57 permit 96 ^65000:3_0:150_0:93$ ip community-list expanded c57 permit 97 ^65000:3_0:151_0:94$ ip community-list expanded c57 permit 98 ^65000:3_0:152_0:95$ ip community-list expanded c57 permit 99 ^65000:3_0:153_0:96$ ip community-list expanded c57 permit 100 ^65000:3_0:154_0:97$ ip community-list expanded c57 permit 101 ^65000:3_0:155_0:98$ ip community-list expanded c57 permit 102 ^65000:3_0:156_0:99$ ip community-list expanded c57 permit 103 ^65000:3_0:157_0:100$ ip community-list expanded c57 permit 104 ^65000:3_0:158_0:101$ ip community-list expanded c57 permit 105 ^65000:3_0:159_0:102$ ip community-list expanded c57 permit 106 ^65000:3_0:160_0:103$ ip community-list expanded c57 permit 107 ^65000:3_0:161_0:104$ ip community-list expanded c57 permit 108 ^65000:3_0:162_0:105$ ip community-list expanded c57 permit 109 ^65000:3_0:163_0:106$ ip community-list expanded c57 permit 110 ^65000:3_0:164_0:107$ ip community-list expanded c57 permit 111 ^65000:3_0:165_0:108$ ip community-list expanded c57 permit 112 ^65000:3_0:166_0:109$ ip community-list expanded c57 permit 113 ^65000:3_0:167_0:110$ ip community-list expanded c57 permit 114 ^65000:3_0:168_0:111$ ip community-list expanded c57 permit 115 ^65000:3_0:169_0:112$ ip community-list expanded c57 permit 116 ^65000:3_0:170_0:113$ ip community-list expanded c57 permit 117 ^65000:4_0:171_0:3$ ip community-list expanded c57 permit 118 ^65000:3_0:171_0:114$ ip community-list expanded c57 permit 119 ^65000:4_0:172_0:3$ ip community-list expanded c57 permit 120 ^65000:3_0:172_0:115$ ip community-list expanded c57 permit 121 ^65000:4_0:173_0:3$ ip community-list expanded c57 permit 122 ^65000:3_0:173_0:116$ ip community-list expanded c57 permit 123 ^65000:3_0:174_0:117$ ip community-list expanded c57 permit 124 ^65000:3_0:175_0:118$ ip community-list expanded c57 permit 125 ^65000:3_0:176_0:119$ ip community-list expanded c57 permit 126 ^65000:3_0:177_0:120$ ip community-list expanded c57 permit 127 ^65000:3_0:178_0:121$ ip community-list expanded c57 permit 128 ^65000:3_0:179_0:122$ ip community-list expanded c57 permit 129 ^65000:3_0:180_0:123$ ip community-list expanded c57 permit 130 ^65000:3_0:181_0:124$ ip community-list expanded c57 permit 131 ^65000:3_0:182_0:125$ ip community-list expanded c57 permit 132 ^65000:3_0:183_0:126$ ip community-list expanded c57 permit 133 ^65000:3_0:184_0:127$ ip community-list expanded c57 permit 134 ^65000:3_0:185_0:128$ ip community-list expanded c57 permit 135 ^65000:3_0:186_0:129$ ip community-list expanded c57 permit 136 ^65000:3_0:187_0:130$ ip community-list expanded c57 permit 137 ^65000:3_0:188_0:131$ ip community-list expanded c57 permit 138 ^65000:3_0:189_0:132$ ip community-list expanded c57 permit 139 ^65000:3_0:190_0:133$ ip community-list expanded c57 permit 140 ^65000:3_0:191_0:134$ ip community-list expanded c57 permit 141 ^65000:3_0:192_0:135$ ip community-list expanded c57 permit 142 ^65000:3_0:193_0:136$ ip community-list expanded c57 permit 143 ^65000:3_0:194_0:137$ ip community-list expanded c57 permit 144 ^65000:3_0:195_0:138$ ip community-list expanded c57 permit 145 ^65000:3_0:196_0:139$ ip community-list expanded c57 permit 146 ^65000:3_0:197_0:140$ ip community-list expanded c57 permit 147 ^65000:3_0:198_0:141$ ip community-list expanded c57 permit 148 ^65000:3_0:199_0:142$ ip community-list expanded c57 permit 149 ^65000:3_0:200_0:143$ ip community-list expanded c57 permit 150 ^65000:3_0:201_0:144$ ip community-list expanded c57 permit 151 ^65000:3_0:202_0:145$ ip community-list expanded c57 permit 152 ^65000:3_0:203_0:146$ ip community-list expanded c57 permit 153 ^65000:3_0:204_0:147$ ip community-list expanded c57 permit 154 ^65000:3_0:205_0:148$ ip community-list expanded c57 permit 155 ^65000:3_0:206_0:149$ ip community-list expanded c57 permit 156 ^65000:3_0:207_0:150$ ip community-list expanded c57 permit 157 ^65000:3_0:208_0:151$ ip community-list expanded c57 permit 158 ^65000:3_0:209_0:152$ ip community-list expanded c57 permit 159 ^65000:3_0:210_0:153$ ip community-list expanded c57 permit 160 ^65000:3_0:211_0:154$ ip community-list expanded c57 permit 161 ^65000:3_0:212_0:155$ ip community-list expanded c57 permit 162 ^65000:3_0:213_0:156$ ip community-list expanded c57 permit 163 ^65000:3_0:214_0:157$ ip community-list expanded c57 permit 164 ^65000:3_0:215_0:158$ ip community-list expanded c57 permit 165 ^65000:3_0:216_0:159$ ip community-list expanded c57 permit 166 ^65000:3_0:217_0:160$ ip community-list expanded c57 permit 167 ^65000:3_0:218_0:161$ ip community-list expanded c57 permit 168 ^65000:3_0:219_0:162$ ip community-list expanded c57 permit 169 ^65000:3_0:220_0:163$ ip community-list expanded c57 permit 170 ^65000:3_0:221_0:164$ ip community-list expanded c57 permit 171 ^65000:3_0:222_0:165$ ip community-list expanded c57 permit 172 ^65000:3_0:223_0:166$ ip community-list expanded c57 permit 173 ^65000:3_0:224_0:167$ ip community-list expanded c57 permit 174 ^65000:3_0:225_0:168$ ip community-list expanded c57 permit 175 ^65000:3_0:226_0:169$ ip community-list expanded c57 permit 176 ^65000:3_0:227_0:170$ ip community-list expanded c57 permit 177 ^65000:4_0:228_0:4$ ip community-list expanded c57 permit 178 ^65000:3_0:228_0:171$ ip community-list expanded c57 permit 179 ^65000:4_0:229_0:4$ ip community-list expanded c57 permit 180 ^65000:3_0:229_0:172$ ip community-list expanded c57 permit 181 ^65000:4_0:230_0:4$ ip community-list expanded c57 permit 182 ^65000:3_0:230_0:173$ ip community-list expanded c57 permit 183 ^65000:4_0:231_0:4$ ip community-list expanded c57 permit 184 ^65000:3_0:231_0:174$ ip community-list expanded c57 permit 185 ^65000:3_0:232_0:175$ ip community-list expanded c57 permit 186 ^65000:3_0:233_0:176$ ip community-list expanded c57 permit 187 ^65000:3_0:234_0:177$ ip community-list expanded c57 permit 188 ^65000:3_0:235_0:178$ ip community-list expanded c57 permit 189 ^65000:3_0:236_0:179$ ip community-list expanded c57 permit 190 ^65000:3_0:237_0:180$ ip community-list expanded c57 permit 191 ^65000:3_0:238_0:181$ ip community-list expanded c57 permit 192 ^65000:3_0:239_0:182$ ip community-list expanded c57 permit 193 ^65000:3_0:240_0:183$ ip community-list expanded c57 permit 194 ^65000:3_0:241_0:184$ ip community-list expanded c57 permit 195 ^65000:3_0:242_0:185$ ip community-list expanded c57 permit 196 ^65000:3_0:243_0:186$ ip community-list expanded c57 permit 197 ^65000:3_0:244_0:187$ ip community-list expanded c57 permit 198 ^65000:3_0:245_0:188$ ip community-list expanded c57 permit 199 ^65000:3_0:246_0:189$ ip community-list expanded c57 permit 200 ^65000:3_0:247_0:190$ ip community-list expanded c57 permit 201 ^65000:3_0:248_0:191$ ip community-list expanded c57 permit 202 ^65000:3_0:249_0:192$ ip community-list expanded c57 permit 203 ^65000:3_0:250_0:193$ ip community-list expanded c57 permit 204 ^65000:3_0:251_0:194$ ip community-list expanded c57 permit 205 ^65000:3_0:252_0:195$ ip community-list expanded c57 permit 206 ^65000:3_0:253_0:196$ ip community-list expanded c57 permit 207 ^65000:3_0:254_0:197$ ip community-list expanded c57 permit 208 ^65000:3_0:255_0:198$ ip community-list expanded c57 permit 209 ^65000:3_0:256_0:199$ route-map calculator permit 24087 match community 1_1_56 2_1_57 1_2_55 2_3_19 1_3_54 set community 0:57 route-map calculator permit 24088 match community 1_4_53 1_5_52 1_6_51 1_7_50 1_8_49 set community 0:57 route-map calculator permit 24089 match community 1_9_48 1_10_47 1_11_46 1_12_45 1_13_44 set community 0:57 route-map calculator permit 24090 match community 1_14_43 1_15_42 1_16_41 1_17_40 1_18_39 set community 0:57 route-map calculator permit 24091 match community 1_19_38 1_20_37 1_21_36 1_22_35 1_23_34 set community 0:57 route-map calculator permit 24092 match community 1_24_33 1_25_32 1_26_31 1_27_30 1_28_29 set community 0:57 route-map calculator permit 24093 match community c4_57_1 c3_58_1 c3_59_2 c3_60_3 c3_61_4 set community 0:57 route-map calculator permit 24094 match community c3_62_5 c3_63_6 c3_64_7 c3_65_8 c3_66_9 set community 0:57 route-map calculator permit 24095 match community c3_67_10 c3_68_11 c3_69_12 c3_70_13 c3_71_14 set community 0:57 route-map calculator permit 24096 match community c3_72_15 c3_73_16 c3_74_17 c3_75_18 c3_76_19 set community 0:57 route-map calculator permit 24097 match community c3_77_20 c3_78_21 c3_79_22 c3_80_23 c3_81_24 set community 0:57 route-map calculator permit 24098 match community c3_82_25 c3_83_26 c3_84_27 c3_85_28 c3_86_29 set community 0:57 route-map calculator permit 24099 match community c3_87_30 c3_88_31 c3_89_32 c3_90_33 c3_91_34 set community 0:57 route-map calculator permit 24100 match community c3_92_35 c3_93_36 c3_94_37 c3_95_38 c3_96_39 set community 0:57 route-map calculator permit 24101 match community c3_97_40 c3_98_41 c3_99_42 c3_100_43 c3_101_44 set community 0:57 route-map calculator permit 24102 match community c3_102_45 c3_103_46 c3_104_47 c3_105_48 c3_106_49 set community 0:57 route-map calculator permit 24103 match community c3_107_50 c3_108_51 c3_109_52 c3_110_53 c3_111_54 set community 0:57 route-map calculator permit 24104 match community c3_112_55 c3_113_56 c4_114_2 c3_114_57 c4_115_2 set community 0:57 route-map calculator permit 24105 match community c3_115_58 c3_116_59 c3_117_60 c3_118_61 c3_119_62 set community 0:57 route-map calculator permit 24106 match community c3_120_63 c3_121_64 c3_122_65 c3_123_66 c3_124_67 set community 0:57 route-map calculator permit 24107 match community c3_125_68 c3_126_69 c3_127_70 c3_128_71 c3_129_72 set community 0:57 route-map calculator permit 24108 match community c3_130_73 c3_131_74 c3_132_75 c3_133_76 c3_134_77 set community 0:57 route-map calculator permit 24109 match community c3_135_78 c3_136_79 c3_137_80 c3_138_81 c3_139_82 set community 0:57 route-map calculator permit 24110 match community c3_140_83 c3_141_84 c3_142_85 c3_143_86 c3_144_87 set community 0:57 route-map calculator permit 24111 match community c3_145_88 c3_146_89 c3_147_90 c3_148_91 c3_149_92 set community 0:57 route-map calculator permit 24112 match community c3_150_93 c3_151_94 c3_152_95 c3_153_96 c3_154_97 set community 0:57 route-map calculator permit 24113 match community c3_155_98 c3_156_99 c3_157_100 c3_158_101 c3_159_102 set community 0:57 route-map calculator permit 24114 match community c3_160_103 c3_161_104 c3_162_105 c3_163_106 c3_164_107 set community 0:57 route-map calculator permit 24115 match community c3_165_108 c3_166_109 c3_167_110 c3_168_111 c3_169_112 set community 0:57 route-map calculator permit 24116 match community c3_170_113 c4_171_3 c3_171_114 c4_172_3 c3_172_115 set community 0:57 route-map calculator permit 24117 match community c4_173_3 c3_173_116 c3_174_117 c3_175_118 c3_176_119 set community 0:57 route-map calculator permit 24118 match community c3_177_120 c3_178_121 c3_179_122 c3_180_123 c3_181_124 set community 0:57 route-map calculator permit 24119 match community c3_182_125 c3_183_126 c3_184_127 c3_185_128 c3_186_129 set community 0:57 route-map calculator permit 24120 match community c3_187_130 c3_188_131 c3_189_132 c3_190_133 c3_191_134 set community 0:57 route-map calculator permit 24121 match community c3_192_135 c3_193_136 c3_194_137 c3_195_138 c3_196_139 set community 0:57 route-map calculator permit 24122 match community c3_197_140 c3_198_141 c3_199_142 c3_200_143 c3_201_144 set community 0:57 route-map calculator permit 24123 match community c3_202_145 c3_203_146 c3_204_147 c3_205_148 c3_206_149 set community 0:57 route-map calculator permit 24124 match community c3_207_150 c3_208_151 c3_209_152 c3_210_153 c3_211_154 set community 0:57 route-map calculator permit 24125 match community c3_212_155 c3_213_156 c3_214_157 c3_215_158 c3_216_159 set community 0:57 route-map calculator permit 24126 match community c3_217_160 c3_218_161 c3_219_162 c3_220_163 c3_221_164 set community 0:57 route-map calculator permit 24127 match community c3_222_165 c3_223_166 c3_224_167 c3_225_168 c3_226_169 set community 0:57 route-map calculator permit 24128 match community c3_227_170 c4_228_4 c3_228_171 c4_229_4 c3_229_172 set community 0:57 route-map calculator permit 24129 match community c4_230_4 c3_230_173 c4_231_4 c3_231_174 c3_232_175 set community 0:57 route-map calculator permit 24130 match community c3_233_176 c3_234_177 c3_235_178 c3_236_179 c3_237_180 set community 0:57 route-map calculator permit 24131 match community c3_238_181 c3_239_182 c3_240_183 c3_241_184 c3_242_185 set community 0:57 route-map calculator permit 24132 match community c3_243_186 c3_244_187 c3_245_188 c3_246_189 c3_247_190 set community 0:57 route-map calculator permit 24133 match community c3_248_191 c3_249_192 c3_250_193 c3_251_194 c3_252_195 set community 0:57 route-map calculator permit 24134 match community c3_253_196 c3_254_197 c3_255_198 c3_256_199 set community 0:57 ip community-list standard 2_82_131 permit 65000:2 0:82 0:131 route-map calculator permit 24135 match community 2_82_131 set community 0:10742 ip community-list standard 2_99_246 permit 65000:2 0:99 0:246 ip community-list standard 2_123_198 permit 65000:2 0:123 0:198 route-map calculator permit 24136 match community 2_99_246 2_123_198 set community 0:24354 ip community-list standard 2_151_254 permit 65000:2 0:151 0:254 route-map calculator permit 24137 match community 2_151_254 set community 0:38354 ip community-list standard 2_203_241 permit 65000:2 0:203 0:241 route-map calculator permit 24138 match community 2_203_241 set community 0:48923 ip community-list standard 2_232_237 permit 65000:2 0:232 0:237 route-map calculator permit 24139 match community 2_232_237 set community 0:54984 ip community-list standard 2_7_153 permit 65000:2 0:7 0:153 ip community-list standard 2_9_119 permit 65000:2 0:9 0:119 ip community-list standard 2_17_63 permit 65000:2 0:17 0:63 ip community-list standard 2_21_51 permit 65000:2 0:21 0:51 route-map calculator permit 24140 match community 2_7_153 2_9_119 2_17_63 2_21_51 set community 0:1071 ip community-list standard 2_142_175 permit 65000:2 0:142 0:175 route-map calculator permit 24141 match community 2_142_175 set community 0:24850 ip community-list standard 2_14_217 permit 65000:2 0:14 0:217 ip community-list standard 2_31_98 permit 65000:2 0:31 0:98 ip community-list standard 2_49_62 permit 65000:2 0:49 0:62 route-map calculator permit 24142 match community 2_14_217 2_31_98 2_49_62 set community 0:3038 ip community-list standard 2_57_177 permit 65000:2 0:57 0:177 ip community-list standard 2_59_171 permit 65000:2 0:59 0:171 route-map calculator permit 24143 match community 2_57_177 2_59_171 set community 0:10089 ip community-list standard 2_93_171 permit 65000:2 0:93 0:171 route-map calculator permit 24144 match community 2_93_171 set community 0:15903 ip community-list standard 2_207_211 permit 65000:2 0:207 0:211 route-map calculator permit 24145 match community 2_207_211 set community 0:43677 ip community-list standard 2_69_238 permit 65000:2 0:69 0:238 ip community-list standard 2_102_161 permit 65000:2 0:102 0:161 ip community-list standard 2_119_138 permit 65000:2 0:119 0:138 route-map calculator permit 24146 match community 2_69_238 2_102_161 2_119_138 set community 0:16422 ip community-list standard 2_85_236 permit 65000:2 0:85 0:236 ip community-list standard 2_118_170 permit 65000:2 0:118 0:170 route-map calculator permit 24147 match community 2_85_236 2_118_170 set community 0:20060 ip community-list standard 2_51_177 permit 65000:2 0:51 0:177 ip community-list standard 2_59_153 permit 65000:2 0:59 0:153 route-map calculator permit 24148 match community 2_51_177 2_59_153 set community 0:9027 ip community-list standard 2_201_235 permit 65000:2 0:201 0:235 route-map calculator permit 24149 match community 2_201_235 set community 0:47235 ip community-list standard 2_21_214 permit 65000:2 0:21 0:214 ip community-list standard 2_42_107 permit 65000:2 0:42 0:107 route-map calculator permit 24150 match community 2_21_214 2_42_107 set community 0:4494 ip community-list standard 2_238_238 permit 65000:2 0:238 0:238 route-map calculator permit 24151 match community 2_238_238 set community 0:56644 ip community-list standard 1_15_256 permit 65000:1 0:15 0:256 ip community-list standard 1_16_255 permit 65000:1 0:16 0:255 ip community-list standard 1_17_254 permit 65000:1 0:17 0:254 ip community-list standard 1_18_253 permit 65000:1 0:18 0:253 ip community-list standard 1_19_252 permit 65000:1 0:19 0:252 ip community-list standard 1_20_251 permit 65000:1 0:20 0:251 ip community-list standard 1_21_250 permit 65000:1 0:21 0:250 ip community-list standard 1_22_249 permit 65000:1 0:22 0:249 ip community-list standard 1_23_248 permit 65000:1 0:23 0:248 ip community-list standard 1_24_247 permit 65000:1 0:24 0:247 ip community-list standard 1_25_246 permit 65000:1 0:25 0:246 ip community-list standard 1_26_245 permit 65000:1 0:26 0:245 ip community-list standard 1_27_244 permit 65000:1 0:27 0:244 ip community-list standard 1_28_243 permit 65000:1 0:28 0:243 ip community-list standard 1_29_242 permit 65000:1 0:29 0:242 ip community-list standard 1_30_241 permit 65000:1 0:30 0:241 ip community-list standard 1_31_240 permit 65000:1 0:31 0:240 ip community-list standard 1_32_239 permit 65000:1 0:32 0:239 ip community-list standard 1_33_238 permit 65000:1 0:33 0:238 ip community-list standard 1_34_237 permit 65000:1 0:34 0:237 ip community-list standard 1_35_236 permit 65000:1 0:35 0:236 ip community-list standard 1_36_235 permit 65000:1 0:36 0:235 ip community-list standard 1_37_234 permit 65000:1 0:37 0:234 ip community-list standard 1_38_233 permit 65000:1 0:38 0:233 ip community-list standard 1_39_232 permit 65000:1 0:39 0:232 ip community-list standard 1_40_231 permit 65000:1 0:40 0:231 ip community-list standard 1_41_230 permit 65000:1 0:41 0:230 ip community-list standard 1_42_229 permit 65000:1 0:42 0:229 ip community-list standard 1_43_228 permit 65000:1 0:43 0:228 ip community-list standard 1_44_227 permit 65000:1 0:44 0:227 ip community-list standard 1_45_226 permit 65000:1 0:45 0:226 ip community-list standard 1_46_225 permit 65000:1 0:46 0:225 ip community-list standard 1_47_224 permit 65000:1 0:47 0:224 ip community-list standard 1_48_223 permit 65000:1 0:48 0:223 ip community-list standard 1_49_222 permit 65000:1 0:49 0:222 ip community-list standard 1_50_221 permit 65000:1 0:50 0:221 ip community-list standard 1_51_220 permit 65000:1 0:51 0:220 ip community-list standard 1_52_219 permit 65000:1 0:52 0:219 ip community-list standard 1_53_218 permit 65000:1 0:53 0:218 ip community-list standard 1_54_217 permit 65000:1 0:54 0:217 ip community-list standard 1_55_216 permit 65000:1 0:55 0:216 ip community-list standard 1_56_215 permit 65000:1 0:56 0:215 ip community-list standard 1_57_214 permit 65000:1 0:57 0:214 ip community-list standard 1_58_213 permit 65000:1 0:58 0:213 ip community-list standard 1_59_212 permit 65000:1 0:59 0:212 ip community-list standard 1_60_211 permit 65000:1 0:60 0:211 ip community-list standard 1_61_210 permit 65000:1 0:61 0:210 ip community-list standard 1_62_209 permit 65000:1 0:62 0:209 ip community-list standard 1_63_208 permit 65000:1 0:63 0:208 ip community-list standard 1_64_207 permit 65000:1 0:64 0:207 ip community-list standard 1_65_206 permit 65000:1 0:65 0:206 ip community-list standard 1_66_205 permit 65000:1 0:66 0:205 ip community-list standard 1_67_204 permit 65000:1 0:67 0:204 ip community-list standard 1_68_203 permit 65000:1 0:68 0:203 ip community-list standard 1_69_202 permit 65000:1 0:69 0:202 ip community-list standard 1_70_201 permit 65000:1 0:70 0:201 ip community-list standard 1_71_200 permit 65000:1 0:71 0:200 ip community-list standard 1_72_199 permit 65000:1 0:72 0:199 ip community-list standard 1_73_198 permit 65000:1 0:73 0:198 ip community-list standard 1_74_197 permit 65000:1 0:74 0:197 ip community-list standard 1_75_196 permit 65000:1 0:75 0:196 ip community-list standard 1_76_195 permit 65000:1 0:76 0:195 ip community-list standard 1_77_194 permit 65000:1 0:77 0:194 ip community-list standard 1_78_193 permit 65000:1 0:78 0:193 ip community-list standard 1_79_192 permit 65000:1 0:79 0:192 ip community-list standard 1_80_191 permit 65000:1 0:80 0:191 ip community-list standard 1_81_190 permit 65000:1 0:81 0:190 ip community-list standard 1_82_189 permit 65000:1 0:82 0:189 ip community-list standard 1_83_188 permit 65000:1 0:83 0:188 ip community-list standard 1_84_187 permit 65000:1 0:84 0:187 ip community-list standard 1_85_186 permit 65000:1 0:85 0:186 ip community-list standard 1_86_185 permit 65000:1 0:86 0:185 ip community-list standard 1_87_184 permit 65000:1 0:87 0:184 ip community-list standard 1_88_183 permit 65000:1 0:88 0:183 ip community-list standard 1_89_182 permit 65000:1 0:89 0:182 ip community-list standard 1_90_181 permit 65000:1 0:90 0:181 ip community-list standard 1_91_180 permit 65000:1 0:91 0:180 ip community-list standard 1_92_179 permit 65000:1 0:92 0:179 ip community-list standard 1_93_178 permit 65000:1 0:93 0:178 ip community-list standard 1_94_177 permit 65000:1 0:94 0:177 ip community-list standard 1_95_176 permit 65000:1 0:95 0:176 ip community-list standard 1_96_175 permit 65000:1 0:96 0:175 ip community-list standard 1_97_174 permit 65000:1 0:97 0:174 ip community-list standard 1_98_173 permit 65000:1 0:98 0:173 ip community-list standard 1_99_172 permit 65000:1 0:99 0:172 ip community-list standard 1_100_171 permit 65000:1 0:100 0:171 ip community-list standard 1_101_170 permit 65000:1 0:101 0:170 ip community-list standard 1_102_169 permit 65000:1 0:102 0:169 ip community-list standard 1_103_168 permit 65000:1 0:103 0:168 ip community-list standard 1_104_167 permit 65000:1 0:104 0:167 ip community-list standard 1_105_166 permit 65000:1 0:105 0:166 ip community-list standard 1_106_165 permit 65000:1 0:106 0:165 ip community-list standard 1_107_164 permit 65000:1 0:107 0:164 ip community-list standard 1_108_163 permit 65000:1 0:108 0:163 ip community-list standard 1_109_162 permit 65000:1 0:109 0:162 ip community-list standard 1_110_161 permit 65000:1 0:110 0:161 ip community-list standard 1_111_160 permit 65000:1 0:111 0:160 ip community-list standard 1_112_159 permit 65000:1 0:112 0:159 ip community-list standard 1_113_158 permit 65000:1 0:113 0:158 ip community-list standard 1_114_157 permit 65000:1 0:114 0:157 ip community-list standard 1_115_156 permit 65000:1 0:115 0:156 ip community-list standard 1_116_155 permit 65000:1 0:116 0:155 ip community-list standard 1_117_154 permit 65000:1 0:117 0:154 ip community-list standard 1_118_153 permit 65000:1 0:118 0:153 ip community-list standard 1_119_152 permit 65000:1 0:119 0:152 ip community-list standard 1_120_151 permit 65000:1 0:120 0:151 ip community-list standard 1_121_150 permit 65000:1 0:121 0:150 ip community-list standard 1_122_149 permit 65000:1 0:122 0:149 ip community-list standard 1_123_148 permit 65000:1 0:123 0:148 ip community-list standard 1_124_147 permit 65000:1 0:124 0:147 ip community-list standard 1_125_146 permit 65000:1 0:125 0:146 ip community-list standard 1_126_145 permit 65000:1 0:126 0:145 ip community-list standard 1_127_144 permit 65000:1 0:127 0:144 ip community-list standard 1_128_143 permit 65000:1 0:128 0:143 ip community-list standard 1_129_142 permit 65000:1 0:129 0:142 ip community-list standard 1_130_141 permit 65000:1 0:130 0:141 ip community-list standard 1_131_140 permit 65000:1 0:131 0:140 ip community-list standard 1_132_139 permit 65000:1 0:132 0:139 ip community-list standard 1_133_138 permit 65000:1 0:133 0:138 ip community-list standard 1_134_137 permit 65000:1 0:134 0:137 ip community-list standard 1_135_136 permit 65000:1 0:135 0:136 route-map calculator permit 24152 match community 1_15_256 1_16_255 1_17_254 1_18_253 1_19_252 set community 0:271 route-map calculator permit 24153 match community 1_20_251 1_21_250 1_22_249 1_23_248 1_24_247 set community 0:271 route-map calculator permit 24154 match community 1_25_246 1_26_245 1_27_244 1_28_243 1_29_242 set community 0:271 route-map calculator permit 24155 match community 1_30_241 1_31_240 1_32_239 1_33_238 1_34_237 set community 0:271 route-map calculator permit 24156 match community 1_35_236 1_36_235 1_37_234 1_38_233 1_39_232 set community 0:271 route-map calculator permit 24157 match community 1_40_231 1_41_230 1_42_229 1_43_228 1_44_227 set community 0:271 route-map calculator permit 24158 match community 1_45_226 1_46_225 1_47_224 1_48_223 1_49_222 set community 0:271 route-map calculator permit 24159 match community 1_50_221 1_51_220 1_52_219 1_53_218 1_54_217 set community 0:271 route-map calculator permit 24160 match community 1_55_216 1_56_215 1_57_214 1_58_213 1_59_212 set community 0:271 route-map calculator permit 24161 match community 1_60_211 1_61_210 1_62_209 1_63_208 1_64_207 set community 0:271 route-map calculator permit 24162 match community 1_65_206 1_66_205 1_67_204 1_68_203 1_69_202 set community 0:271 route-map calculator permit 24163 match community 1_70_201 1_71_200 1_72_199 1_73_198 1_74_197 set community 0:271 route-map calculator permit 24164 match community 1_75_196 1_76_195 1_77_194 1_78_193 1_79_192 set community 0:271 route-map calculator permit 24165 match community 1_80_191 1_81_190 1_82_189 1_83_188 1_84_187 set community 0:271 route-map calculator permit 24166 match community 1_85_186 1_86_185 1_87_184 1_88_183 1_89_182 set community 0:271 route-map calculator permit 24167 match community 1_90_181 1_91_180 1_92_179 1_93_178 1_94_177 set community 0:271 route-map calculator permit 24168 match community 1_95_176 1_96_175 1_97_174 1_98_173 1_99_172 set community 0:271 route-map calculator permit 24169 match community 1_100_171 1_101_170 1_102_169 1_103_168 1_104_167 set community 0:271 route-map calculator permit 24170 match community 1_105_166 1_106_165 1_107_164 1_108_163 1_109_162 set community 0:271 route-map calculator permit 24171 match community 1_110_161 1_111_160 1_112_159 1_113_158 1_114_157 set community 0:271 route-map calculator permit 24172 match community 1_115_156 1_116_155 1_117_154 1_118_153 1_119_152 set community 0:271 route-map calculator permit 24173 match community 1_120_151 1_121_150 1_122_149 1_123_148 1_124_147 set community 0:271 route-map calculator permit 24174 match community 1_125_146 1_126_145 1_127_144 1_128_143 1_129_142 set community 0:271 route-map calculator permit 24175 match community 1_130_141 1_131_140 1_132_139 1_133_138 1_134_137 set community 0:271 route-map calculator permit 24176 match community 1_135_136 set community 0:271 ip community-list standard 2_122_161 permit 65000:2 0:122 0:161 route-map calculator permit 24177 match community 2_122_161 set community 0:19642 ip community-list standard 2_31_129 permit 65000:2 0:31 0:129 ip community-list standard 2_43_93 permit 65000:2 0:43 0:93 route-map calculator permit 24178 match community 2_31_129 2_43_93 set community 0:3999 ip community-list standard 2_64_199 permit 65000:2 0:64 0:199 route-map calculator permit 24179 match community 2_64_199 set community 0:12736 ip community-list standard 2_199_251 permit 65000:2 0:199 0:251 route-map calculator permit 24180 match community 2_199_251 set community 0:49949 ip community-list standard 2_36_230 permit 65000:2 0:36 0:230 ip community-list standard 2_40_207 permit 65000:2 0:40 0:207 ip community-list standard 2_45_184 permit 65000:2 0:45 0:184 ip community-list standard 2_46_180 permit 65000:2 0:46 0:180 ip community-list standard 2_60_138 permit 65000:2 0:60 0:138 ip community-list standard 2_69_120 permit 65000:2 0:69 0:120 ip community-list standard 2_72_115 permit 65000:2 0:72 0:115 ip community-list standard 2_90_92 permit 65000:2 0:90 0:92 route-map calculator permit 24181 match community 2_36_230 2_40_207 2_45_184 2_46_180 2_60_138 set community 0:8280 route-map calculator permit 24182 match community 2_69_120 2_72_115 2_90_92 set community 0:8280 ip community-list standard 2_233_241 permit 65000:2 0:233 0:241 route-map calculator permit 24183 match community 2_233_241 set community 0:56153 ip community-list standard 2_202_220 permit 65000:2 0:202 0:220 route-map calculator permit 24184 match community 2_202_220 set community 0:44440 ip community-list standard 2_181_230 permit 65000:2 0:181 0:230 route-map calculator permit 24185 match community 2_181_230 set community 0:41630 ip community-list standard 2_147_239 permit 65000:2 0:147 0:239 route-map calculator permit 24186 match community 2_147_239 set community 0:35133 ip community-list standard 2_118_189 permit 65000:2 0:118 0:189 ip community-list standard 2_126_177 permit 65000:2 0:126 0:177 route-map calculator permit 24187 match community 2_118_189 2_126_177 set community 0:22302 ip community-list standard 2_122_185 permit 65000:2 0:122 0:185 route-map calculator permit 24188 match community 2_122_185 set community 0:22570 ip community-list standard 2_206_245 permit 65000:2 0:206 0:245 route-map calculator permit 24189 match community 2_206_245 set community 0:50470 ip community-list standard 2_51_178 permit 65000:2 0:51 0:178 ip community-list standard 2_89_102 permit 65000:2 0:89 0:102 route-map calculator permit 24190 match community 2_51_178 2_89_102 set community 0:9078 ip community-list standard 2_45_97 permit 65000:2 0:45 0:97 route-map calculator permit 24191 match community 2_45_97 set community 0:4365 ip community-list standard 2_34_139 permit 65000:2 0:34 0:139 route-map calculator permit 24192 match community 2_34_139 set community 0:4726 ip community-list standard 2_164_199 permit 65000:2 0:164 0:199 route-map calculator permit 24193 match community 2_164_199 set community 0:32636 ip community-list standard 2_214_246 permit 65000:2 0:214 0:246 route-map calculator permit 24194 match community 2_214_246 set community 0:52644 ip community-list standard 2_82_223 permit 65000:2 0:82 0:223 route-map calculator permit 24195 match community 2_82_223 set community 0:18286 ip community-list standard 2_86_208 permit 65000:2 0:86 0:208 ip community-list standard 2_104_172 permit 65000:2 0:104 0:172 route-map calculator permit 24196 match community 2_86_208 2_104_172 set community 0:17888 ip community-list standard 2_204_223 permit 65000:2 0:204 0:223 route-map calculator permit 24197 match community 2_204_223 set community 0:45492 ip community-list standard 2_144_256 permit 65000:2 0:144 0:256 ip community-list standard 2_192_192 permit 65000:2 0:192 0:192 route-map calculator permit 24198 match community 2_144_256 2_192_192 set community 0:36864 ip community-list standard 2_14_209 permit 65000:2 0:14 0:209 ip community-list standard 2_19_154 permit 65000:2 0:19 0:154 ip community-list standard 2_22_133 permit 65000:2 0:22 0:133 ip community-list standard 2_38_77 permit 65000:2 0:38 0:77 route-map calculator permit 24199 match community 2_14_209 2_19_154 2_22_133 2_38_77 set community 0:2926 ip community-list standard 2_11_175 permit 65000:2 0:11 0:175 ip community-list standard 2_25_77 permit 65000:2 0:25 0:77 ip community-list standard 2_35_55 permit 65000:2 0:35 0:55 route-map calculator permit 24200 match community 2_11_175 2_25_77 2_35_55 set community 0:1925 ip community-list standard 2_153_191 permit 65000:2 0:153 0:191 route-map calculator permit 24201 match community 2_153_191 set community 0:29223 ip community-list standard 2_215_223 permit 65000:2 0:215 0:223 route-map calculator permit 24202 match community 2_215_223 set community 0:47945 ip community-list standard 2_142_181 permit 65000:2 0:142 0:181 route-map calculator permit 24203 match community 2_142_181 set community 0:25702 ip community-list standard 2_137_209 permit 65000:2 0:137 0:209 route-map calculator permit 24204 match community 2_137_209 set community 0:28633 ip community-list standard 2_7_252 permit 65000:2 0:7 0:252 ip community-list standard 2_9_196 permit 65000:2 0:9 0:196 ip community-list standard 2_12_147 permit 65000:2 0:12 0:147 ip community-list standard 2_14_126 permit 65000:2 0:14 0:126 ip community-list standard 2_18_98 permit 65000:2 0:18 0:98 ip community-list standard 2_21_84 permit 65000:2 0:21 0:84 ip community-list standard 2_28_63 permit 65000:2 0:28 0:63 ip community-list standard 2_36_49 permit 65000:2 0:36 0:49 ip community-list standard 2_42_42 permit 65000:2 0:42 0:42 route-map calculator permit 24205 match community 2_7_252 2_9_196 2_12_147 2_14_126 2_18_98 set community 0:1764 route-map calculator permit 24206 match community 2_21_84 2_28_63 2_36_49 2_42_42 set community 0:1764 ip community-list standard 2_43_91 permit 65000:2 0:43 0:91 route-map calculator permit 24207 match community 2_43_91 set community 0:3913 ip community-list standard 2_86_241 permit 65000:2 0:86 0:241 route-map calculator permit 24208 match community 2_86_241 set community 0:20726 ip community-list standard 2_220_229 permit 65000:2 0:220 0:229 route-map calculator permit 24209 match community 2_220_229 set community 0:50380 ip community-list standard 2_6_176 permit 65000:2 0:6 0:176 ip community-list standard 2_8_132 permit 65000:2 0:8 0:132 ip community-list standard 2_11_96 permit 65000:2 0:11 0:96 ip community-list standard 2_12_88 permit 65000:2 0:12 0:88 ip community-list standard 2_16_66 permit 65000:2 0:16 0:66 ip community-list standard 2_22_48 permit 65000:2 0:22 0:48 ip community-list standard 2_24_44 permit 65000:2 0:24 0:44 ip community-list standard 2_32_33 permit 65000:2 0:32 0:33 route-map calculator permit 24210 match community 2_6_176 2_8_132 2_11_96 2_12_88 2_16_66 set community 0:1056 route-map calculator permit 24211 match community 2_22_48 2_24_44 2_32_33 set community 0:1056 ip community-list standard 2_189_247 permit 65000:2 0:189 0:247 route-map calculator permit 24212 match community 2_189_247 set community 0:46683 ip community-list standard 2_44_182 permit 65000:2 0:44 0:182 ip community-list standard 2_52_154 permit 65000:2 0:52 0:154 ip community-list standard 2_56_143 permit 65000:2 0:56 0:143 ip community-list standard 2_77_104 permit 65000:2 0:77 0:104 ip community-list standard 2_88_91 permit 65000:2 0:88 0:91 route-map calculator permit 24213 match community 2_44_182 2_52_154 2_56_143 2_77_104 2_88_91 set community 0:8008 ip community-list standard 2_156_208 permit 65000:2 0:156 0:208 ip community-list standard 2_169_192 permit 65000:2 0:169 0:192 route-map calculator permit 24214 match community 2_156_208 2_169_192 set community 0:32448 ip community-list standard 2_181_209 permit 65000:2 0:181 0:209 route-map calculator permit 24215 match community 2_181_209 set community 0:37829 ip community-list standard 2_80_151 permit 65000:2 0:80 0:151 route-map calculator permit 24216 match community 2_80_151 set community 0:12080 ip community-list standard 2_5_220 permit 65000:2 0:5 0:220 ip community-list standard 2_10_110 permit 65000:2 0:10 0:110 ip community-list standard 2_11_100 permit 65000:2 0:11 0:100 ip community-list standard 2_20_55 permit 65000:2 0:20 0:55 ip community-list standard 2_22_50 permit 65000:2 0:22 0:50 ip community-list standard 2_25_44 permit 65000:2 0:25 0:44 route-map calculator permit 24217 match community 2_5_220 2_10_110 2_11_100 2_20_55 2_22_50 set community 0:1100 route-map calculator permit 24218 match community 2_25_44 set community 0:1100 ip community-list standard 2_14_228 permit 65000:2 0:14 0:228 ip community-list standard 2_19_168 permit 65000:2 0:19 0:168 ip community-list standard 2_21_152 permit 65000:2 0:21 0:152 ip community-list standard 2_24_133 permit 65000:2 0:24 0:133 ip community-list standard 2_28_114 permit 65000:2 0:28 0:114 ip community-list standard 2_38_84 permit 65000:2 0:38 0:84 ip community-list standard 2_42_76 permit 65000:2 0:42 0:76 ip community-list standard 2_56_57 permit 65000:2 0:56 0:57 route-map calculator permit 24219 match community 2_14_228 2_19_168 2_21_152 2_24_133 2_28_114 set community 0:3192 route-map calculator permit 24220 match community 2_38_84 2_42_76 2_56_57 set community 0:3192 ip community-list standard 2_222_234 permit 65000:2 0:222 0:234 route-map calculator permit 24221 match community 2_222_234 set community 0:51948 ip community-list standard 2_70_211 permit 65000:2 0:70 0:211 route-map calculator permit 24222 match community 2_70_211 set community 0:14770 ip community-list standard 2_75_223 permit 65000:2 0:75 0:223 route-map calculator permit 24223 match community 2_75_223 set community 0:16725 ip community-list standard 2_92_179 permit 65000:2 0:92 0:179 route-map calculator permit 24224 match community 2_92_179 set community 0:16468 ip community-list standard 2_166_230 permit 65000:2 0:166 0:230 route-map calculator permit 24225 match community 2_166_230 set community 0:38180 ip community-list standard 2_218_255 permit 65000:2 0:218 0:255 route-map calculator permit 24226 match community 2_218_255 set community 0:55590 ip community-list standard 2_183_237 permit 65000:2 0:183 0:237 route-map calculator permit 24227 match community 2_183_237 set community 0:43371 ip community-list standard 2_2_182 permit 65000:2 0:2 0:182 ip community-list standard 2_4_91 permit 65000:2 0:4 0:91 ip community-list standard 2_7_52 permit 65000:2 0:7 0:52 ip community-list standard 2_13_28 permit 65000:2 0:13 0:28 ip community-list standard 2_14_26 permit 65000:2 0:14 0:26 ip community-list standard 1_108_256 permit 65000:1 0:108 0:256 ip community-list standard 1_109_255 permit 65000:1 0:109 0:255 ip community-list standard 1_110_254 permit 65000:1 0:110 0:254 ip community-list standard 1_111_253 permit 65000:1 0:111 0:253 ip community-list standard 1_112_252 permit 65000:1 0:112 0:252 ip community-list standard 1_113_251 permit 65000:1 0:113 0:251 ip community-list standard 1_114_250 permit 65000:1 0:114 0:250 ip community-list standard 1_115_249 permit 65000:1 0:115 0:249 ip community-list standard 1_116_248 permit 65000:1 0:116 0:248 ip community-list standard 1_117_247 permit 65000:1 0:117 0:247 ip community-list standard 1_118_246 permit 65000:1 0:118 0:246 ip community-list standard 1_119_245 permit 65000:1 0:119 0:245 ip community-list standard 1_120_244 permit 65000:1 0:120 0:244 ip community-list standard 1_121_243 permit 65000:1 0:121 0:243 ip community-list standard 1_122_242 permit 65000:1 0:122 0:242 ip community-list standard 1_123_241 permit 65000:1 0:123 0:241 ip community-list standard 1_124_240 permit 65000:1 0:124 0:240 ip community-list standard 1_125_239 permit 65000:1 0:125 0:239 ip community-list standard 1_126_238 permit 65000:1 0:126 0:238 ip community-list standard 1_127_237 permit 65000:1 0:127 0:237 ip community-list standard 1_128_236 permit 65000:1 0:128 0:236 ip community-list standard 1_129_235 permit 65000:1 0:129 0:235 ip community-list standard 1_130_234 permit 65000:1 0:130 0:234 ip community-list standard 1_131_233 permit 65000:1 0:131 0:233 ip community-list standard 1_132_232 permit 65000:1 0:132 0:232 ip community-list standard 1_133_231 permit 65000:1 0:133 0:231 ip community-list standard 1_134_230 permit 65000:1 0:134 0:230 ip community-list standard 1_135_229 permit 65000:1 0:135 0:229 ip community-list standard 1_136_228 permit 65000:1 0:136 0:228 ip community-list standard 1_137_227 permit 65000:1 0:137 0:227 ip community-list standard 1_138_226 permit 65000:1 0:138 0:226 ip community-list standard 1_139_225 permit 65000:1 0:139 0:225 ip community-list standard 1_140_224 permit 65000:1 0:140 0:224 ip community-list standard 1_141_223 permit 65000:1 0:141 0:223 ip community-list standard 1_142_222 permit 65000:1 0:142 0:222 ip community-list standard 1_143_221 permit 65000:1 0:143 0:221 ip community-list standard 1_144_220 permit 65000:1 0:144 0:220 ip community-list standard 1_145_219 permit 65000:1 0:145 0:219 ip community-list standard 1_146_218 permit 65000:1 0:146 0:218 ip community-list standard 1_147_217 permit 65000:1 0:147 0:217 ip community-list standard 1_148_216 permit 65000:1 0:148 0:216 ip community-list standard 1_149_215 permit 65000:1 0:149 0:215 ip community-list standard 1_150_214 permit 65000:1 0:150 0:214 ip community-list standard 1_151_213 permit 65000:1 0:151 0:213 ip community-list standard 1_152_212 permit 65000:1 0:152 0:212 ip community-list standard 1_153_211 permit 65000:1 0:153 0:211 ip community-list standard 1_154_210 permit 65000:1 0:154 0:210 ip community-list standard 1_155_209 permit 65000:1 0:155 0:209 ip community-list standard 1_156_208 permit 65000:1 0:156 0:208 ip community-list standard 1_157_207 permit 65000:1 0:157 0:207 ip community-list standard 1_158_206 permit 65000:1 0:158 0:206 ip community-list standard 1_159_205 permit 65000:1 0:159 0:205 ip community-list standard 1_160_204 permit 65000:1 0:160 0:204 ip community-list standard 1_161_203 permit 65000:1 0:161 0:203 ip community-list standard 1_162_202 permit 65000:1 0:162 0:202 ip community-list standard 1_163_201 permit 65000:1 0:163 0:201 ip community-list standard 1_164_200 permit 65000:1 0:164 0:200 ip community-list standard 1_165_199 permit 65000:1 0:165 0:199 ip community-list standard 1_166_198 permit 65000:1 0:166 0:198 ip community-list standard 1_167_197 permit 65000:1 0:167 0:197 ip community-list standard 1_168_196 permit 65000:1 0:168 0:196 ip community-list standard 1_169_195 permit 65000:1 0:169 0:195 ip community-list standard 1_170_194 permit 65000:1 0:170 0:194 ip community-list standard 1_171_193 permit 65000:1 0:171 0:193 ip community-list standard 1_172_192 permit 65000:1 0:172 0:192 ip community-list standard 1_173_191 permit 65000:1 0:173 0:191 ip community-list standard 1_174_190 permit 65000:1 0:174 0:190 ip community-list standard 1_175_189 permit 65000:1 0:175 0:189 ip community-list standard 1_176_188 permit 65000:1 0:176 0:188 ip community-list standard 1_177_187 permit 65000:1 0:177 0:187 ip community-list standard 1_178_186 permit 65000:1 0:178 0:186 ip community-list standard 1_179_185 permit 65000:1 0:179 0:185 ip community-list standard 1_180_184 permit 65000:1 0:180 0:184 ip community-list standard 1_181_183 permit 65000:1 0:181 0:183 ip community-list standard 1_182_182 permit 65000:1 0:182 0:182 route-map calculator permit 24228 match community 2_2_182 2_4_91 2_7_52 2_13_28 2_14_26 set community 0:364 route-map calculator permit 24229 match community 1_108_256 1_109_255 1_110_254 1_111_253 1_112_252 set community 0:364 route-map calculator permit 24230 match community 1_113_251 1_114_250 1_115_249 1_116_248 1_117_247 set community 0:364 route-map calculator permit 24231 match community 1_118_246 1_119_245 1_120_244 1_121_243 1_122_242 set community 0:364 route-map calculator permit 24232 match community 1_123_241 1_124_240 1_125_239 1_126_238 1_127_237 set community 0:364 route-map calculator permit 24233 match community 1_128_236 1_129_235 1_130_234 1_131_233 1_132_232 set community 0:364 route-map calculator permit 24234 match community 1_133_231 1_134_230 1_135_229 1_136_228 1_137_227 set community 0:364 route-map calculator permit 24235 match community 1_138_226 1_139_225 1_140_224 1_141_223 1_142_222 set community 0:364 route-map calculator permit 24236 match community 1_143_221 1_144_220 1_145_219 1_146_218 1_147_217 set community 0:364 route-map calculator permit 24237 match community 1_148_216 1_149_215 1_150_214 1_151_213 1_152_212 set community 0:364 route-map calculator permit 24238 match community 1_153_211 1_154_210 1_155_209 1_156_208 1_157_207 set community 0:364 route-map calculator permit 24239 match community 1_158_206 1_159_205 1_160_204 1_161_203 1_162_202 set community 0:364 route-map calculator permit 24240 match community 1_163_201 1_164_200 1_165_199 1_166_198 1_167_197 set community 0:364 route-map calculator permit 24241 match community 1_168_196 1_169_195 1_170_194 1_171_193 1_172_192 set community 0:364 route-map calculator permit 24242 match community 1_173_191 1_174_190 1_175_189 1_176_188 1_177_187 set community 0:364 route-map calculator permit 24243 match community 1_178_186 1_179_185 1_180_184 1_181_183 1_182_182 set community 0:364 ip community-list standard 2_120_191 permit 65000:2 0:120 0:191 route-map calculator permit 24244 match community 2_120_191 set community 0:22920 ip community-list standard 2_184_228 permit 65000:2 0:184 0:228 route-map calculator permit 24245 match community 2_184_228 set community 0:41952 ip community-list standard 2_32_247 permit 65000:2 0:32 0:247 ip community-list standard 2_38_208 permit 65000:2 0:38 0:208 ip community-list standard 2_52_152 permit 65000:2 0:52 0:152 ip community-list standard 2_76_104 permit 65000:2 0:76 0:104 route-map calculator permit 24246 match community 2_32_247 2_38_208 2_52_152 2_76_104 set community 0:7904 ip community-list standard 2_91_220 permit 65000:2 0:91 0:220 ip community-list standard 2_110_182 permit 65000:2 0:110 0:182 ip community-list standard 2_130_154 permit 65000:2 0:130 0:154 ip community-list standard 2_140_143 permit 65000:2 0:140 0:143 route-map calculator permit 24247 match community 2_91_220 2_110_182 2_130_154 2_140_143 set community 0:20020 ip community-list standard 2_30_245 permit 65000:2 0:30 0:245 ip community-list standard 2_35_210 permit 65000:2 0:35 0:210 ip community-list standard 2_42_175 permit 65000:2 0:42 0:175 ip community-list standard 2_49_150 permit 65000:2 0:49 0:150 ip community-list standard 2_50_147 permit 65000:2 0:50 0:147 ip community-list standard 2_70_105 permit 65000:2 0:70 0:105 ip community-list standard 2_75_98 permit 65000:2 0:75 0:98 route-map calculator permit 24248 match community 2_30_245 2_35_210 2_42_175 2_49_150 2_50_147 set community 0:7350 route-map calculator permit 24249 match community 2_70_105 2_75_98 set community 0:7350 ip community-list standard 2_177_211 permit 65000:2 0:177 0:211 route-map calculator permit 24250 match community 2_177_211 set community 0:37347 ip community-list standard 2_138_238 permit 65000:2 0:138 0:238 ip community-list standard 2_161_204 permit 65000:2 0:161 0:204 route-map calculator permit 24251 match community 2_138_238 2_161_204 set community 0:32844 ip community-list standard 2_125_183 permit 65000:2 0:125 0:183 route-map calculator permit 24252 match community 2_125_183 set community 0:22875 ip community-list standard 2_13_221 permit 65000:2 0:13 0:221 ip community-list standard 2_17_169 permit 65000:2 0:17 0:169 route-map calculator permit 24253 match community 2_13_221 2_17_169 set community 0:2873 ip community-list standard 2_79_83 permit 65000:2 0:79 0:83 route-map calculator permit 24254 match community 2_79_83 set community 0:6557 ip community-list standard 2_45_246 permit 65000:2 0:45 0:246 ip community-list standard 2_54_205 permit 65000:2 0:54 0:205 ip community-list standard 2_82_135 permit 65000:2 0:82 0:135 ip community-list standard 2_90_123 permit 65000:2 0:90 0:123 route-map calculator permit 24255 match community 2_45_246 2_54_205 2_82_135 2_90_123 set community 0:11070 ip community-list standard 2_122_179 permit 65000:2 0:122 0:179 route-map calculator permit 24256 match community 2_122_179 set community 0:21838 ip community-list standard 2_36_218 permit 65000:2 0:36 0:218 ip community-list standard 2_72_109 permit 65000:2 0:72 0:109 route-map calculator permit 24257 match community 2_36_218 2_72_109 set community 0:7848 ip community-list standard 2_167_220 permit 65000:2 0:167 0:220 route-map calculator permit 24258 match community 2_167_220 set community 0:36740 ip community-list standard 2_206_248 permit 65000:2 0:206 0:248 route-map calculator permit 24259 match community 2_206_248 set community 0:51088 ip community-list standard 2_31_159 permit 65000:2 0:31 0:159 ip community-list standard 2_53_93 permit 65000:2 0:53 0:93 route-map calculator permit 24260 match community 2_31_159 2_53_93 set community 0:4929 ip community-list standard 2_133_177 permit 65000:2 0:133 0:177 route-map calculator permit 24261 match community 2_133_177 set community 0:23541 ip community-list standard 2_58_174 permit 65000:2 0:58 0:174 ip community-list standard 2_87_116 permit 65000:2 0:87 0:116 route-map calculator permit 24262 match community 2_58_174 2_87_116 set community 0:10092 ip community-list standard 2_71_211 permit 65000:2 0:71 0:211 route-map calculator permit 24263 match community 2_71_211 set community 0:14981 ip community-list standard 2_4_237 permit 65000:2 0:4 0:237 ip community-list standard 2_6_158 permit 65000:2 0:6 0:158 ip community-list standard 2_12_79 permit 65000:2 0:12 0:79 route-map calculator permit 24264 match community 2_4_237 2_6_158 2_12_79 set community 0:948 ip community-list standard 2_200_247 permit 65000:2 0:200 0:247 route-map calculator permit 24265 match community 2_200_247 set community 0:49400 ip community-list standard 2_44_241 permit 65000:2 0:44 0:241 route-map calculator permit 24266 match community 2_44_241 set community 0:10604 ip community-list standard 2_137_232 permit 65000:2 0:137 0:232 route-map calculator permit 24267 match community 2_137_232 set community 0:31784 ip community-list standard 2_166_215 permit 65000:2 0:166 0:215 route-map calculator permit 24268 match community 2_166_215 set community 0:35690 ip community-list standard 2_62_225 permit 65000:2 0:62 0:225 ip community-list standard 2_75_186 permit 65000:2 0:75 0:186 ip community-list standard 2_90_155 permit 65000:2 0:90 0:155 ip community-list standard 2_93_150 permit 65000:2 0:93 0:150 route-map calculator permit 24269 match community 2_62_225 2_75_186 2_90_155 2_93_150 set community 0:13950 ip community-list standard 2_110_205 permit 65000:2 0:110 0:205 route-map calculator permit 24270 match community 2_110_205 set community 0:22550 ip community-list standard 2_94_198 permit 65000:2 0:94 0:198 ip community-list standard 2_99_188 permit 65000:2 0:99 0:188 ip community-list standard 2_132_141 permit 65000:2 0:132 0:141 route-map calculator permit 24271 match community 2_94_198 2_99_188 2_132_141 set community 0:18612 ip community-list standard 2_190_194 permit 65000:2 0:190 0:194 route-map calculator permit 24272 match community 2_190_194 set community 0:36860 ip community-list standard 2_159_246 permit 65000:2 0:159 0:246 route-map calculator permit 24273 match community 2_159_246 set community 0:39114 ip community-list standard 2_26_182 permit 65000:2 0:26 0:182 ip community-list standard 2_28_169 permit 65000:2 0:28 0:169 ip community-list standard 2_52_91 permit 65000:2 0:52 0:91 route-map calculator permit 24274 match community 2_26_182 2_28_169 2_52_91 set community 0:4732 ip community-list standard 2_95_115 permit 65000:2 0:95 0:115 route-map calculator permit 24275 match community 2_95_115 set community 0:10925 ip community-list standard 2_173_231 permit 65000:2 0:173 0:231 route-map calculator permit 24276 match community 2_173_231 set community 0:39963 ip community-list standard 2_57_167 permit 65000:2 0:57 0:167 route-map calculator permit 24277 match community 2_57_167 set community 0:9519 ip community-list standard 1_1_222 permit 65000:1 0:1 0:222 ip community-list standard 2_1_223 permit 65000:2 0:1 0:223 ip community-list standard 1_2_221 permit 65000:1 0:2 0:221 ip community-list standard 1_3_220 permit 65000:1 0:3 0:220 ip community-list standard 1_4_219 permit 65000:1 0:4 0:219 ip community-list standard 1_5_218 permit 65000:1 0:5 0:218 ip community-list standard 1_6_217 permit 65000:1 0:6 0:217 ip community-list standard 1_7_216 permit 65000:1 0:7 0:216 ip community-list standard 1_8_215 permit 65000:1 0:8 0:215 ip community-list standard 1_9_214 permit 65000:1 0:9 0:214 ip community-list standard 1_10_213 permit 65000:1 0:10 0:213 ip community-list standard 1_11_212 permit 65000:1 0:11 0:212 ip community-list standard 1_12_211 permit 65000:1 0:12 0:211 ip community-list standard 1_13_210 permit 65000:1 0:13 0:210 ip community-list standard 1_14_209 permit 65000:1 0:14 0:209 ip community-list standard 1_15_208 permit 65000:1 0:15 0:208 ip community-list standard 1_16_207 permit 65000:1 0:16 0:207 ip community-list standard 1_17_206 permit 65000:1 0:17 0:206 ip community-list standard 1_18_205 permit 65000:1 0:18 0:205 ip community-list standard 1_19_204 permit 65000:1 0:19 0:204 ip community-list standard 1_20_203 permit 65000:1 0:20 0:203 ip community-list standard 1_21_202 permit 65000:1 0:21 0:202 ip community-list standard 1_22_201 permit 65000:1 0:22 0:201 ip community-list standard 1_23_200 permit 65000:1 0:23 0:200 ip community-list standard 1_24_199 permit 65000:1 0:24 0:199 ip community-list standard 1_25_198 permit 65000:1 0:25 0:198 ip community-list standard 1_26_197 permit 65000:1 0:26 0:197 ip community-list standard 1_27_196 permit 65000:1 0:27 0:196 ip community-list standard 1_28_195 permit 65000:1 0:28 0:195 ip community-list standard 1_29_194 permit 65000:1 0:29 0:194 ip community-list standard 1_30_193 permit 65000:1 0:30 0:193 ip community-list standard 1_31_192 permit 65000:1 0:31 0:192 ip community-list standard 1_32_191 permit 65000:1 0:32 0:191 ip community-list standard 1_33_190 permit 65000:1 0:33 0:190 ip community-list standard 1_34_189 permit 65000:1 0:34 0:189 ip community-list standard 1_35_188 permit 65000:1 0:35 0:188 ip community-list standard 1_36_187 permit 65000:1 0:36 0:187 ip community-list standard 1_37_186 permit 65000:1 0:37 0:186 ip community-list standard 1_38_185 permit 65000:1 0:38 0:185 ip community-list standard 1_39_184 permit 65000:1 0:39 0:184 ip community-list standard 1_40_183 permit 65000:1 0:40 0:183 ip community-list standard 1_41_182 permit 65000:1 0:41 0:182 ip community-list standard 1_42_181 permit 65000:1 0:42 0:181 ip community-list standard 1_43_180 permit 65000:1 0:43 0:180 ip community-list standard 1_44_179 permit 65000:1 0:44 0:179 ip community-list standard 1_45_178 permit 65000:1 0:45 0:178 ip community-list standard 1_46_177 permit 65000:1 0:46 0:177 ip community-list standard 1_47_176 permit 65000:1 0:47 0:176 ip community-list standard 1_48_175 permit 65000:1 0:48 0:175 ip community-list standard 1_49_174 permit 65000:1 0:49 0:174 ip community-list standard 1_50_173 permit 65000:1 0:50 0:173 ip community-list standard 1_51_172 permit 65000:1 0:51 0:172 ip community-list standard 1_52_171 permit 65000:1 0:52 0:171 ip community-list standard 1_53_170 permit 65000:1 0:53 0:170 ip community-list standard 1_54_169 permit 65000:1 0:54 0:169 ip community-list standard 1_55_168 permit 65000:1 0:55 0:168 ip community-list standard 1_56_167 permit 65000:1 0:56 0:167 ip community-list standard 1_57_166 permit 65000:1 0:57 0:166 ip community-list standard 1_58_165 permit 65000:1 0:58 0:165 ip community-list standard 1_59_164 permit 65000:1 0:59 0:164 ip community-list standard 1_60_163 permit 65000:1 0:60 0:163 ip community-list standard 1_61_162 permit 65000:1 0:61 0:162 ip community-list standard 1_62_161 permit 65000:1 0:62 0:161 ip community-list standard 1_63_160 permit 65000:1 0:63 0:160 ip community-list standard 1_64_159 permit 65000:1 0:64 0:159 ip community-list standard 1_65_158 permit 65000:1 0:65 0:158 ip community-list standard 1_66_157 permit 65000:1 0:66 0:157 ip community-list standard 1_67_156 permit 65000:1 0:67 0:156 ip community-list standard 1_68_155 permit 65000:1 0:68 0:155 ip community-list standard 1_69_154 permit 65000:1 0:69 0:154 ip community-list standard 1_70_153 permit 65000:1 0:70 0:153 ip community-list standard 1_71_152 permit 65000:1 0:71 0:152 ip community-list standard 1_72_151 permit 65000:1 0:72 0:151 ip community-list standard 1_73_150 permit 65000:1 0:73 0:150 ip community-list standard 1_74_149 permit 65000:1 0:74 0:149 ip community-list standard 1_75_148 permit 65000:1 0:75 0:148 ip community-list standard 1_76_147 permit 65000:1 0:76 0:147 ip community-list standard 1_77_146 permit 65000:1 0:77 0:146 ip community-list standard 1_78_145 permit 65000:1 0:78 0:145 ip community-list standard 1_79_144 permit 65000:1 0:79 0:144 ip community-list standard 1_80_143 permit 65000:1 0:80 0:143 ip community-list standard 1_81_142 permit 65000:1 0:81 0:142 ip community-list standard 1_82_141 permit 65000:1 0:82 0:141 ip community-list standard 1_83_140 permit 65000:1 0:83 0:140 ip community-list standard 1_84_139 permit 65000:1 0:84 0:139 ip community-list standard 1_85_138 permit 65000:1 0:85 0:138 ip community-list standard 1_86_137 permit 65000:1 0:86 0:137 ip community-list standard 1_87_136 permit 65000:1 0:87 0:136 ip community-list standard 1_88_135 permit 65000:1 0:88 0:135 ip community-list standard 1_89_134 permit 65000:1 0:89 0:134 ip community-list standard 1_90_133 permit 65000:1 0:90 0:133 ip community-list standard 1_91_132 permit 65000:1 0:91 0:132 ip community-list standard 1_92_131 permit 65000:1 0:92 0:131 ip community-list standard 1_93_130 permit 65000:1 0:93 0:130 ip community-list standard 1_94_129 permit 65000:1 0:94 0:129 ip community-list standard 1_95_128 permit 65000:1 0:95 0:128 ip community-list standard 1_96_127 permit 65000:1 0:96 0:127 ip community-list standard 1_97_126 permit 65000:1 0:97 0:126 ip community-list standard 1_98_125 permit 65000:1 0:98 0:125 ip community-list standard 1_99_124 permit 65000:1 0:99 0:124 ip community-list standard 1_100_123 permit 65000:1 0:100 0:123 ip community-list standard 1_101_122 permit 65000:1 0:101 0:122 ip community-list standard 1_102_121 permit 65000:1 0:102 0:121 ip community-list standard 1_103_120 permit 65000:1 0:103 0:120 ip community-list standard 1_104_119 permit 65000:1 0:104 0:119 ip community-list standard 1_105_118 permit 65000:1 0:105 0:118 ip community-list standard 1_106_117 permit 65000:1 0:106 0:117 ip community-list standard 1_107_116 permit 65000:1 0:107 0:116 ip community-list standard 1_108_115 permit 65000:1 0:108 0:115 ip community-list standard 1_109_114 permit 65000:1 0:109 0:114 ip community-list standard 1_110_113 permit 65000:1 0:110 0:113 ip community-list standard 1_111_112 permit 65000:1 0:111 0:112 ip community-list expanded c223 permit 1 ^65000:4_0:223_0:1$ ip community-list expanded c223 permit 2 ^65000:3_0:224_0:1$ ip community-list expanded c223 permit 3 ^65000:3_0:225_0:2$ ip community-list expanded c223 permit 4 ^65000:3_0:226_0:3$ ip community-list expanded c223 permit 5 ^65000:3_0:227_0:4$ ip community-list expanded c223 permit 6 ^65000:3_0:228_0:5$ ip community-list expanded c223 permit 7 ^65000:3_0:229_0:6$ ip community-list expanded c223 permit 8 ^65000:3_0:230_0:7$ ip community-list expanded c223 permit 9 ^65000:3_0:231_0:8$ ip community-list expanded c223 permit 10 ^65000:3_0:232_0:9$ ip community-list expanded c223 permit 11 ^65000:3_0:233_0:10$ ip community-list expanded c223 permit 12 ^65000:3_0:234_0:11$ ip community-list expanded c223 permit 13 ^65000:3_0:235_0:12$ ip community-list expanded c223 permit 14 ^65000:3_0:236_0:13$ ip community-list expanded c223 permit 15 ^65000:3_0:237_0:14$ ip community-list expanded c223 permit 16 ^65000:3_0:238_0:15$ ip community-list expanded c223 permit 17 ^65000:3_0:239_0:16$ ip community-list expanded c223 permit 18 ^65000:3_0:240_0:17$ ip community-list expanded c223 permit 19 ^65000:3_0:241_0:18$ ip community-list expanded c223 permit 20 ^65000:3_0:242_0:19$ ip community-list expanded c223 permit 21 ^65000:3_0:243_0:20$ ip community-list expanded c223 permit 22 ^65000:3_0:244_0:21$ ip community-list expanded c223 permit 23 ^65000:3_0:245_0:22$ ip community-list expanded c223 permit 24 ^65000:3_0:246_0:23$ ip community-list expanded c223 permit 25 ^65000:3_0:247_0:24$ ip community-list expanded c223 permit 26 ^65000:3_0:248_0:25$ ip community-list expanded c223 permit 27 ^65000:3_0:249_0:26$ ip community-list expanded c223 permit 28 ^65000:3_0:250_0:27$ ip community-list expanded c223 permit 29 ^65000:3_0:251_0:28$ ip community-list expanded c223 permit 30 ^65000:3_0:252_0:29$ ip community-list expanded c223 permit 31 ^65000:3_0:253_0:30$ ip community-list expanded c223 permit 32 ^65000:3_0:254_0:31$ ip community-list expanded c223 permit 33 ^65000:3_0:255_0:32$ ip community-list expanded c223 permit 34 ^65000:3_0:256_0:33$ route-map calculator permit 24278 match community 1_1_222 2_1_223 1_2_221 1_3_220 1_4_219 set community 0:223 route-map calculator permit 24279 match community 1_5_218 1_6_217 1_7_216 1_8_215 1_9_214 set community 0:223 route-map calculator permit 24280 match community 1_10_213 1_11_212 1_12_211 1_13_210 1_14_209 set community 0:223 route-map calculator permit 24281 match community 1_15_208 1_16_207 1_17_206 1_18_205 1_19_204 set community 0:223 route-map calculator permit 24282 match community 1_20_203 1_21_202 1_22_201 1_23_200 1_24_199 set community 0:223 route-map calculator permit 24283 match community 1_25_198 1_26_197 1_27_196 1_28_195 1_29_194 set community 0:223 route-map calculator permit 24284 match community 1_30_193 1_31_192 1_32_191 1_33_190 1_34_189 set community 0:223 route-map calculator permit 24285 match community 1_35_188 1_36_187 1_37_186 1_38_185 1_39_184 set community 0:223 route-map calculator permit 24286 match community 1_40_183 1_41_182 1_42_181 1_43_180 1_44_179 set community 0:223 route-map calculator permit 24287 match community 1_45_178 1_46_177 1_47_176 1_48_175 1_49_174 set community 0:223 route-map calculator permit 24288 match community 1_50_173 1_51_172 1_52_171 1_53_170 1_54_169 set community 0:223 route-map calculator permit 24289 match community 1_55_168 1_56_167 1_57_166 1_58_165 1_59_164 set community 0:223 route-map calculator permit 24290 match community 1_60_163 1_61_162 1_62_161 1_63_160 1_64_159 set community 0:223 route-map calculator permit 24291 match community 1_65_158 1_66_157 1_67_156 1_68_155 1_69_154 set community 0:223 route-map calculator permit 24292 match community 1_70_153 1_71_152 1_72_151 1_73_150 1_74_149 set community 0:223 route-map calculator permit 24293 match community 1_75_148 1_76_147 1_77_146 1_78_145 1_79_144 set community 0:223 route-map calculator permit 24294 match community 1_80_143 1_81_142 1_82_141 1_83_140 1_84_139 set community 0:223 route-map calculator permit 24295 match community 1_85_138 1_86_137 1_87_136 1_88_135 1_89_134 set community 0:223 route-map calculator permit 24296 match community 1_90_133 1_91_132 1_92_131 1_93_130 1_94_129 set community 0:223 route-map calculator permit 24297 match community 1_95_128 1_96_127 1_97_126 1_98_125 1_99_124 set community 0:223 route-map calculator permit 24298 match community 1_100_123 1_101_122 1_102_121 1_103_120 1_104_119 set community 0:223 route-map calculator permit 24299 match community 1_105_118 1_106_117 1_107_116 1_108_115 1_109_114 set community 0:223 route-map calculator permit 24300 match community 1_110_113 1_111_112 c4_223_1 c3_224_1 c3_225_2 set community 0:223 route-map calculator permit 24301 match community c3_226_3 c3_227_4 c3_228_5 c3_229_6 c3_230_7 set community 0:223 route-map calculator permit 24302 match community c3_231_8 c3_232_9 c3_233_10 c3_234_11 c3_235_12 set community 0:223 route-map calculator permit 24303 match community c3_236_13 c3_237_14 c3_238_15 c3_239_16 c3_240_17 set community 0:223 route-map calculator permit 24304 match community c3_241_18 c3_242_19 c3_243_20 c3_244_21 c3_245_22 set community 0:223 route-map calculator permit 24305 match community c3_246_23 c3_247_24 c3_248_25 c3_249_26 c3_250_27 set community 0:223 route-map calculator permit 24306 match community c3_251_28 c3_252_29 c3_253_30 c3_254_31 c3_255_32 set community 0:223 route-map calculator permit 24307 match community c3_256_33 set community 0:223 ip community-list standard 2_119_173 permit 65000:2 0:119 0:173 route-map calculator permit 24308 match community 2_119_173 set community 0:20587 ip community-list standard 2_148_152 permit 65000:2 0:148 0:152 route-map calculator permit 24309 match community 2_148_152 set community 0:22496 ip community-list standard 2_19_87 permit 65000:2 0:19 0:87 ip community-list standard 2_29_57 permit 65000:2 0:29 0:57 route-map calculator permit 24310 match community 2_19_87 2_29_57 set community 0:1653 ip community-list standard 2_217_256 permit 65000:2 0:217 0:256 ip community-list standard 2_224_248 permit 65000:2 0:224 0:248 route-map calculator permit 24311 match community 2_217_256 2_224_248 set community 0:55552 ip community-list standard 1_117_256 permit 65000:1 0:117 0:256 ip community-list standard 1_118_255 permit 65000:1 0:118 0:255 ip community-list standard 1_119_254 permit 65000:1 0:119 0:254 ip community-list standard 1_120_253 permit 65000:1 0:120 0:253 ip community-list standard 1_121_252 permit 65000:1 0:121 0:252 ip community-list standard 1_122_251 permit 65000:1 0:122 0:251 ip community-list standard 1_123_250 permit 65000:1 0:123 0:250 ip community-list standard 1_124_249 permit 65000:1 0:124 0:249 ip community-list standard 1_125_248 permit 65000:1 0:125 0:248 ip community-list standard 1_126_247 permit 65000:1 0:126 0:247 ip community-list standard 1_127_246 permit 65000:1 0:127 0:246 ip community-list standard 1_128_245 permit 65000:1 0:128 0:245 ip community-list standard 1_129_244 permit 65000:1 0:129 0:244 ip community-list standard 1_130_243 permit 65000:1 0:130 0:243 ip community-list standard 1_131_242 permit 65000:1 0:131 0:242 ip community-list standard 1_132_241 permit 65000:1 0:132 0:241 ip community-list standard 1_133_240 permit 65000:1 0:133 0:240 ip community-list standard 1_134_239 permit 65000:1 0:134 0:239 ip community-list standard 1_135_238 permit 65000:1 0:135 0:238 ip community-list standard 1_136_237 permit 65000:1 0:136 0:237 ip community-list standard 1_137_236 permit 65000:1 0:137 0:236 ip community-list standard 1_138_235 permit 65000:1 0:138 0:235 ip community-list standard 1_139_234 permit 65000:1 0:139 0:234 ip community-list standard 1_140_233 permit 65000:1 0:140 0:233 ip community-list standard 1_141_232 permit 65000:1 0:141 0:232 ip community-list standard 1_142_231 permit 65000:1 0:142 0:231 ip community-list standard 1_143_230 permit 65000:1 0:143 0:230 ip community-list standard 1_144_229 permit 65000:1 0:144 0:229 ip community-list standard 1_145_228 permit 65000:1 0:145 0:228 ip community-list standard 1_146_227 permit 65000:1 0:146 0:227 ip community-list standard 1_147_226 permit 65000:1 0:147 0:226 ip community-list standard 1_148_225 permit 65000:1 0:148 0:225 ip community-list standard 1_149_224 permit 65000:1 0:149 0:224 ip community-list standard 1_150_223 permit 65000:1 0:150 0:223 ip community-list standard 1_151_222 permit 65000:1 0:151 0:222 ip community-list standard 1_152_221 permit 65000:1 0:152 0:221 ip community-list standard 1_153_220 permit 65000:1 0:153 0:220 ip community-list standard 1_154_219 permit 65000:1 0:154 0:219 ip community-list standard 1_155_218 permit 65000:1 0:155 0:218 ip community-list standard 1_156_217 permit 65000:1 0:156 0:217 ip community-list standard 1_157_216 permit 65000:1 0:157 0:216 ip community-list standard 1_158_215 permit 65000:1 0:158 0:215 ip community-list standard 1_159_214 permit 65000:1 0:159 0:214 ip community-list standard 1_160_213 permit 65000:1 0:160 0:213 ip community-list standard 1_161_212 permit 65000:1 0:161 0:212 ip community-list standard 1_162_211 permit 65000:1 0:162 0:211 ip community-list standard 1_163_210 permit 65000:1 0:163 0:210 ip community-list standard 1_164_209 permit 65000:1 0:164 0:209 ip community-list standard 1_165_208 permit 65000:1 0:165 0:208 ip community-list standard 1_166_207 permit 65000:1 0:166 0:207 ip community-list standard 1_167_206 permit 65000:1 0:167 0:206 ip community-list standard 1_168_205 permit 65000:1 0:168 0:205 ip community-list standard 1_169_204 permit 65000:1 0:169 0:204 ip community-list standard 1_170_203 permit 65000:1 0:170 0:203 ip community-list standard 1_171_202 permit 65000:1 0:171 0:202 ip community-list standard 1_172_201 permit 65000:1 0:172 0:201 ip community-list standard 1_173_200 permit 65000:1 0:173 0:200 ip community-list standard 1_174_199 permit 65000:1 0:174 0:199 ip community-list standard 1_175_198 permit 65000:1 0:175 0:198 ip community-list standard 1_176_197 permit 65000:1 0:176 0:197 ip community-list standard 1_177_196 permit 65000:1 0:177 0:196 ip community-list standard 1_178_195 permit 65000:1 0:178 0:195 ip community-list standard 1_179_194 permit 65000:1 0:179 0:194 ip community-list standard 1_180_193 permit 65000:1 0:180 0:193 ip community-list standard 1_181_192 permit 65000:1 0:181 0:192 ip community-list standard 1_182_191 permit 65000:1 0:182 0:191 ip community-list standard 1_183_190 permit 65000:1 0:183 0:190 ip community-list standard 1_184_189 permit 65000:1 0:184 0:189 ip community-list standard 1_185_188 permit 65000:1 0:185 0:188 ip community-list standard 1_186_187 permit 65000:1 0:186 0:187 route-map calculator permit 24312 match community 1_117_256 1_118_255 1_119_254 1_120_253 1_121_252 set community 0:373 route-map calculator permit 24313 match community 1_122_251 1_123_250 1_124_249 1_125_248 1_126_247 set community 0:373 route-map calculator permit 24314 match community 1_127_246 1_128_245 1_129_244 1_130_243 1_131_242 set community 0:373 route-map calculator permit 24315 match community 1_132_241 1_133_240 1_134_239 1_135_238 1_136_237 set community 0:373 route-map calculator permit 24316 match community 1_137_236 1_138_235 1_139_234 1_140_233 1_141_232 set community 0:373 route-map calculator permit 24317 match community 1_142_231 1_143_230 1_144_229 1_145_228 1_146_227 set community 0:373 route-map calculator permit 24318 match community 1_147_226 1_148_225 1_149_224 1_150_223 1_151_222 set community 0:373 route-map calculator permit 24319 match community 1_152_221 1_153_220 1_154_219 1_155_218 1_156_217 set community 0:373 route-map calculator permit 24320 match community 1_157_216 1_158_215 1_159_214 1_160_213 1_161_212 set community 0:373 route-map calculator permit 24321 match community 1_162_211 1_163_210 1_164_209 1_165_208 1_166_207 set community 0:373 route-map calculator permit 24322 match community 1_167_206 1_168_205 1_169_204 1_170_203 1_171_202 set community 0:373 route-map calculator permit 24323 match community 1_172_201 1_173_200 1_174_199 1_175_198 1_176_197 set community 0:373 route-map calculator permit 24324 match community 1_177_196 1_178_195 1_179_194 1_180_193 1_181_192 set community 0:373 route-map calculator permit 24325 match community 1_182_191 1_183_190 1_184_189 1_185_188 1_186_187 set community 0:373 ip community-list standard 2_202_205 permit 65000:2 0:202 0:205 route-map calculator permit 24326 match community 2_202_205 set community 0:41410 ip community-list standard 2_149_184 permit 65000:2 0:149 0:184 route-map calculator permit 24327 match community 2_149_184 set community 0:27416 ip community-list standard 2_76_217 permit 65000:2 0:76 0:217 ip community-list standard 2_124_133 permit 65000:2 0:124 0:133 route-map calculator permit 24328 match community 2_76_217 2_124_133 set community 0:16492 ip community-list standard 2_20_134 permit 65000:2 0:20 0:134 ip community-list standard 2_40_67 permit 65000:2 0:40 0:67 route-map calculator permit 24329 match community 2_20_134 2_40_67 set community 0:2680 ip community-list standard 2_102_187 permit 65000:2 0:102 0:187 route-map calculator permit 24330 match community 2_102_187 set community 0:19074 ip community-list standard 2_155_236 permit 65000:2 0:155 0:236 route-map calculator permit 24331 match community 2_155_236 set community 0:36580 ip community-list standard 2_48_216 permit 65000:2 0:48 0:216 ip community-list standard 2_54_192 permit 65000:2 0:54 0:192 ip community-list standard 2_64_162 permit 65000:2 0:64 0:162 ip community-list standard 2_72_144 permit 65000:2 0:72 0:144 ip community-list standard 2_81_128 permit 65000:2 0:81 0:128 ip community-list standard 2_96_108 permit 65000:2 0:96 0:108 route-map calculator permit 24332 match community 2_48_216 2_54_192 2_64_162 2_72_144 2_81_128 set community 0:10368 route-map calculator permit 24333 match community 2_96_108 set community 0:10368 ip community-list standard 2_208_230 permit 65000:2 0:208 0:230 route-map calculator permit 24334 match community 2_208_230 set community 0:47840 ip community-list standard 2_193_204 permit 65000:2 0:193 0:204 route-map calculator permit 24335 match community 2_193_204 set community 0:39372 ip community-list standard 2_181_219 permit 65000:2 0:181 0:219 route-map calculator permit 24336 match community 2_181_219 set community 0:39639 ip community-list standard 2_38_233 permit 65000:2 0:38 0:233 route-map calculator permit 24337 match community 2_38_233 set community 0:8854 ip community-list standard 2_6_129 permit 65000:2 0:6 0:129 ip community-list standard 2_9_86 permit 65000:2 0:9 0:86 ip community-list standard 2_18_43 permit 65000:2 0:18 0:43 route-map calculator permit 24338 match community 2_6_129 2_9_86 2_18_43 set community 0:774 ip community-list standard 2_2_229 permit 65000:2 0:2 0:229 ip community-list standard 1_202_256 permit 65000:1 0:202 0:256 ip community-list standard 1_203_255 permit 65000:1 0:203 0:255 ip community-list standard 1_204_254 permit 65000:1 0:204 0:254 ip community-list standard 1_205_253 permit 65000:1 0:205 0:253 ip community-list standard 1_206_252 permit 65000:1 0:206 0:252 ip community-list standard 1_207_251 permit 65000:1 0:207 0:251 ip community-list standard 1_208_250 permit 65000:1 0:208 0:250 ip community-list standard 1_209_249 permit 65000:1 0:209 0:249 ip community-list standard 1_210_248 permit 65000:1 0:210 0:248 ip community-list standard 1_211_247 permit 65000:1 0:211 0:247 ip community-list standard 1_212_246 permit 65000:1 0:212 0:246 ip community-list standard 1_213_245 permit 65000:1 0:213 0:245 ip community-list standard 1_214_244 permit 65000:1 0:214 0:244 ip community-list standard 1_215_243 permit 65000:1 0:215 0:243 ip community-list standard 1_216_242 permit 65000:1 0:216 0:242 ip community-list standard 1_217_241 permit 65000:1 0:217 0:241 ip community-list standard 1_218_240 permit 65000:1 0:218 0:240 ip community-list standard 1_219_239 permit 65000:1 0:219 0:239 ip community-list standard 1_220_238 permit 65000:1 0:220 0:238 ip community-list standard 1_221_237 permit 65000:1 0:221 0:237 ip community-list standard 1_222_236 permit 65000:1 0:222 0:236 ip community-list standard 1_223_235 permit 65000:1 0:223 0:235 ip community-list standard 1_224_234 permit 65000:1 0:224 0:234 ip community-list standard 1_225_233 permit 65000:1 0:225 0:233 ip community-list standard 1_226_232 permit 65000:1 0:226 0:232 ip community-list standard 1_227_231 permit 65000:1 0:227 0:231 ip community-list standard 1_228_230 permit 65000:1 0:228 0:230 ip community-list standard 1_229_229 permit 65000:1 0:229 0:229 route-map calculator permit 24339 match community 2_2_229 1_202_256 1_203_255 1_204_254 1_205_253 set community 0:458 route-map calculator permit 24340 match community 1_206_252 1_207_251 1_208_250 1_209_249 1_210_248 set community 0:458 route-map calculator permit 24341 match community 1_211_247 1_212_246 1_213_245 1_214_244 1_215_243 set community 0:458 route-map calculator permit 24342 match community 1_216_242 1_217_241 1_218_240 1_219_239 1_220_238 set community 0:458 route-map calculator permit 24343 match community 1_221_237 1_222_236 1_223_235 1_224_234 1_225_233 set community 0:458 route-map calculator permit 24344 match community 1_226_232 1_227_231 1_228_230 1_229_229 set community 0:458 ip community-list standard 2_175_256 permit 65000:2 0:175 0:256 ip community-list standard 2_200_224 permit 65000:2 0:200 0:224 route-map calculator permit 24345 match community 2_175_256 2_200_224 set community 0:44800 ip community-list standard 2_63_214 permit 65000:2 0:63 0:214 ip community-list standard 2_107_126 permit 65000:2 0:107 0:126 route-map calculator permit 24346 match community 2_63_214 2_107_126 set community 0:13482 ip community-list standard 2_218_229 permit 65000:2 0:218 0:229 route-map calculator permit 24347 match community 2_218_229 set community 0:49922 ip community-list standard 2_179_189 permit 65000:2 0:179 0:189 route-map calculator permit 24348 match community 2_179_189 set community 0:33831 ip community-list standard 2_23_83 permit 65000:2 0:23 0:83 route-map calculator permit 24349 match community 2_23_83 set community 0:1909 ip community-list standard 2_32_246 permit 65000:2 0:32 0:246 ip community-list standard 2_41_192 permit 65000:2 0:41 0:192 ip community-list standard 2_48_164 permit 65000:2 0:48 0:164 ip community-list standard 2_64_123 permit 65000:2 0:64 0:123 ip community-list standard 2_82_96 permit 65000:2 0:82 0:96 route-map calculator permit 24350 match community 2_32_246 2_41_192 2_48_164 2_64_123 2_82_96 set community 0:7872 ip community-list standard 2_143_188 permit 65000:2 0:143 0:188 route-map calculator permit 24351 match community 2_143_188 set community 0:26884 ip community-list standard 2_6_237 permit 65000:2 0:6 0:237 ip community-list standard 2_9_158 permit 65000:2 0:9 0:158 ip community-list standard 2_18_79 permit 65000:2 0:18 0:79 route-map calculator permit 24352 match community 2_6_237 2_9_158 2_18_79 set community 0:1422 ip community-list standard 2_52_155 permit 65000:2 0:52 0:155 ip community-list standard 2_62_130 permit 65000:2 0:62 0:130 ip community-list standard 2_65_124 permit 65000:2 0:65 0:124 route-map calculator permit 24353 match community 2_52_155 2_62_130 2_65_124 set community 0:8060 ip community-list standard 2_37_199 permit 65000:2 0:37 0:199 route-map calculator permit 24354 match community 2_37_199 set community 0:7363 ip community-list standard 2_225_253 permit 65000:2 0:225 0:253 route-map calculator permit 24355 match community 2_225_253 set community 0:56925 ip community-list standard 2_91_244 permit 65000:2 0:91 0:244 ip community-list standard 2_122_182 permit 65000:2 0:122 0:182 route-map calculator permit 24356 match community 2_91_244 2_122_182 set community 0:22204 ip community-list standard 2_154_249 permit 65000:2 0:154 0:249 ip community-list standard 2_166_231 permit 65000:2 0:166 0:231 route-map calculator permit 24357 match community 2_154_249 2_166_231 set community 0:38346 ip community-list standard 2_106_203 permit 65000:2 0:106 0:203 route-map calculator permit 24358 match community 2_106_203 set community 0:21518 ip community-list standard 2_152_172 permit 65000:2 0:152 0:172 route-map calculator permit 24359 match community 2_152_172 set community 0:26144 ip community-list standard 2_140_250 permit 65000:2 0:140 0:250 ip community-list standard 2_175_200 permit 65000:2 0:175 0:200 route-map calculator permit 24360 match community 2_140_250 2_175_200 set community 0:35000 ip community-list standard 2_16_179 permit 65000:2 0:16 0:179 route-map calculator permit 24361 match community 2_16_179 set community 0:2864 ip community-list standard 2_45_203 permit 65000:2 0:45 0:203 ip community-list standard 2_63_145 permit 65000:2 0:63 0:145 ip community-list standard 2_87_105 permit 65000:2 0:87 0:105 route-map calculator permit 24362 match community 2_45_203 2_63_145 2_87_105 set community 0:9135 ip community-list standard 2_41_143 permit 65000:2 0:41 0:143 route-map calculator permit 24363 match community 2_41_143 set community 0:5863 ip community-list standard 2_152_179 permit 65000:2 0:152 0:179 route-map calculator permit 24364 match community 2_152_179 set community 0:27208 ip community-list standard 2_37_41 permit 65000:2 0:37 0:41 route-map calculator permit 24365 match community 2_37_41 set community 0:1517 ip community-list standard 2_26_185 permit 65000:2 0:26 0:185 ip community-list standard 2_37_130 permit 65000:2 0:37 0:130 ip community-list standard 2_65_74 permit 65000:2 0:65 0:74 route-map calculator permit 24366 match community 2_26_185 2_37_130 2_65_74 set community 0:4810 ip community-list standard 2_165_252 permit 65000:2 0:165 0:252 ip community-list standard 2_180_231 permit 65000:2 0:180 0:231 ip community-list standard 2_189_220 permit 65000:2 0:189 0:220 ip community-list standard 2_198_210 permit 65000:2 0:198 0:210 route-map calculator permit 24367 match community 2_165_252 2_180_231 2_189_220 2_198_210 set community 0:41580 ip community-list standard 2_155_251 permit 65000:2 0:155 0:251 route-map calculator permit 24368 match community 2_155_251 set community 0:38905 ip community-list standard 2_191_191 permit 65000:2 0:191 0:191 route-map calculator permit 24369 match community 2_191_191 set community 0:36481 ip community-list standard 2_172_206 permit 65000:2 0:172 0:206 route-map calculator permit 24370 match community 2_172_206 set community 0:35432 ip community-list standard 2_2_166 permit 65000:2 0:2 0:166 ip community-list standard 2_4_83 permit 65000:2 0:4 0:83 ip community-list standard 1_76_256 permit 65000:1 0:76 0:256 ip community-list standard 1_77_255 permit 65000:1 0:77 0:255 ip community-list standard 1_78_254 permit 65000:1 0:78 0:254 ip community-list standard 1_79_253 permit 65000:1 0:79 0:253 ip community-list standard 1_80_252 permit 65000:1 0:80 0:252 ip community-list standard 1_81_251 permit 65000:1 0:81 0:251 ip community-list standard 1_82_250 permit 65000:1 0:82 0:250 ip community-list standard 1_83_249 permit 65000:1 0:83 0:249 ip community-list standard 1_84_248 permit 65000:1 0:84 0:248 ip community-list standard 1_85_247 permit 65000:1 0:85 0:247 ip community-list standard 1_86_246 permit 65000:1 0:86 0:246 ip community-list standard 1_87_245 permit 65000:1 0:87 0:245 ip community-list standard 1_88_244 permit 65000:1 0:88 0:244 ip community-list standard 1_89_243 permit 65000:1 0:89 0:243 ip community-list standard 1_90_242 permit 65000:1 0:90 0:242 ip community-list standard 1_91_241 permit 65000:1 0:91 0:241 ip community-list standard 1_92_240 permit 65000:1 0:92 0:240 ip community-list standard 1_93_239 permit 65000:1 0:93 0:239 ip community-list standard 1_94_238 permit 65000:1 0:94 0:238 ip community-list standard 1_95_237 permit 65000:1 0:95 0:237 ip community-list standard 1_96_236 permit 65000:1 0:96 0:236 ip community-list standard 1_97_235 permit 65000:1 0:97 0:235 ip community-list standard 1_98_234 permit 65000:1 0:98 0:234 ip community-list standard 1_99_233 permit 65000:1 0:99 0:233 ip community-list standard 1_100_232 permit 65000:1 0:100 0:232 ip community-list standard 1_101_231 permit 65000:1 0:101 0:231 ip community-list standard 1_102_230 permit 65000:1 0:102 0:230 ip community-list standard 1_103_229 permit 65000:1 0:103 0:229 ip community-list standard 1_104_228 permit 65000:1 0:104 0:228 ip community-list standard 1_105_227 permit 65000:1 0:105 0:227 ip community-list standard 1_106_226 permit 65000:1 0:106 0:226 ip community-list standard 1_107_225 permit 65000:1 0:107 0:225 ip community-list standard 1_108_224 permit 65000:1 0:108 0:224 ip community-list standard 1_109_223 permit 65000:1 0:109 0:223 ip community-list standard 1_110_222 permit 65000:1 0:110 0:222 ip community-list standard 1_111_221 permit 65000:1 0:111 0:221 ip community-list standard 1_112_220 permit 65000:1 0:112 0:220 ip community-list standard 1_113_219 permit 65000:1 0:113 0:219 ip community-list standard 1_114_218 permit 65000:1 0:114 0:218 ip community-list standard 1_115_217 permit 65000:1 0:115 0:217 ip community-list standard 1_116_216 permit 65000:1 0:116 0:216 ip community-list standard 1_117_215 permit 65000:1 0:117 0:215 ip community-list standard 1_118_214 permit 65000:1 0:118 0:214 ip community-list standard 1_119_213 permit 65000:1 0:119 0:213 ip community-list standard 1_120_212 permit 65000:1 0:120 0:212 ip community-list standard 1_121_211 permit 65000:1 0:121 0:211 ip community-list standard 1_122_210 permit 65000:1 0:122 0:210 ip community-list standard 1_123_209 permit 65000:1 0:123 0:209 ip community-list standard 1_124_208 permit 65000:1 0:124 0:208 ip community-list standard 1_125_207 permit 65000:1 0:125 0:207 ip community-list standard 1_126_206 permit 65000:1 0:126 0:206 ip community-list standard 1_127_205 permit 65000:1 0:127 0:205 ip community-list standard 1_128_204 permit 65000:1 0:128 0:204 ip community-list standard 1_129_203 permit 65000:1 0:129 0:203 ip community-list standard 1_130_202 permit 65000:1 0:130 0:202 ip community-list standard 1_131_201 permit 65000:1 0:131 0:201 ip community-list standard 1_132_200 permit 65000:1 0:132 0:200 ip community-list standard 1_133_199 permit 65000:1 0:133 0:199 ip community-list standard 1_134_198 permit 65000:1 0:134 0:198 ip community-list standard 1_135_197 permit 65000:1 0:135 0:197 ip community-list standard 1_136_196 permit 65000:1 0:136 0:196 ip community-list standard 1_137_195 permit 65000:1 0:137 0:195 ip community-list standard 1_138_194 permit 65000:1 0:138 0:194 ip community-list standard 1_139_193 permit 65000:1 0:139 0:193 ip community-list standard 1_140_192 permit 65000:1 0:140 0:192 ip community-list standard 1_141_191 permit 65000:1 0:141 0:191 ip community-list standard 1_142_190 permit 65000:1 0:142 0:190 ip community-list standard 1_143_189 permit 65000:1 0:143 0:189 ip community-list standard 1_144_188 permit 65000:1 0:144 0:188 ip community-list standard 1_145_187 permit 65000:1 0:145 0:187 ip community-list standard 1_146_186 permit 65000:1 0:146 0:186 ip community-list standard 1_147_185 permit 65000:1 0:147 0:185 ip community-list standard 1_148_184 permit 65000:1 0:148 0:184 ip community-list standard 1_149_183 permit 65000:1 0:149 0:183 ip community-list standard 1_150_182 permit 65000:1 0:150 0:182 ip community-list standard 1_151_181 permit 65000:1 0:151 0:181 ip community-list standard 1_152_180 permit 65000:1 0:152 0:180 ip community-list standard 1_153_179 permit 65000:1 0:153 0:179 ip community-list standard 1_154_178 permit 65000:1 0:154 0:178 ip community-list standard 1_155_177 permit 65000:1 0:155 0:177 ip community-list standard 1_156_176 permit 65000:1 0:156 0:176 ip community-list standard 1_157_175 permit 65000:1 0:157 0:175 ip community-list standard 1_158_174 permit 65000:1 0:158 0:174 ip community-list standard 1_159_173 permit 65000:1 0:159 0:173 ip community-list standard 1_160_172 permit 65000:1 0:160 0:172 ip community-list standard 1_161_171 permit 65000:1 0:161 0:171 ip community-list standard 1_162_170 permit 65000:1 0:162 0:170 ip community-list standard 1_163_169 permit 65000:1 0:163 0:169 ip community-list standard 1_164_168 permit 65000:1 0:164 0:168 ip community-list standard 1_165_167 permit 65000:1 0:165 0:167 ip community-list standard 1_166_166 permit 65000:1 0:166 0:166 route-map calculator permit 24371 match community 2_2_166 2_4_83 1_76_256 1_77_255 1_78_254 set community 0:332 route-map calculator permit 24372 match community 1_79_253 1_80_252 1_81_251 1_82_250 1_83_249 set community 0:332 route-map calculator permit 24373 match community 1_84_248 1_85_247 1_86_246 1_87_245 1_88_244 set community 0:332 route-map calculator permit 24374 match community 1_89_243 1_90_242 1_91_241 1_92_240 1_93_239 set community 0:332 route-map calculator permit 24375 match community 1_94_238 1_95_237 1_96_236 1_97_235 1_98_234 set community 0:332 route-map calculator permit 24376 match community 1_99_233 1_100_232 1_101_231 1_102_230 1_103_229 set community 0:332 route-map calculator permit 24377 match community 1_104_228 1_105_227 1_106_226 1_107_225 1_108_224 set community 0:332 route-map calculator permit 24378 match community 1_109_223 1_110_222 1_111_221 1_112_220 1_113_219 set community 0:332 route-map calculator permit 24379 match community 1_114_218 1_115_217 1_116_216 1_117_215 1_118_214 set community 0:332 route-map calculator permit 24380 match community 1_119_213 1_120_212 1_121_211 1_122_210 1_123_209 set community 0:332 route-map calculator permit 24381 match community 1_124_208 1_125_207 1_126_206 1_127_205 1_128_204 set community 0:332 route-map calculator permit 24382 match community 1_129_203 1_130_202 1_131_201 1_132_200 1_133_199 set community 0:332 route-map calculator permit 24383 match community 1_134_198 1_135_197 1_136_196 1_137_195 1_138_194 set community 0:332 route-map calculator permit 24384 match community 1_139_193 1_140_192 1_141_191 1_142_190 1_143_189 set community 0:332 route-map calculator permit 24385 match community 1_144_188 1_145_187 1_146_186 1_147_185 1_148_184 set community 0:332 route-map calculator permit 24386 match community 1_149_183 1_150_182 1_151_181 1_152_180 1_153_179 set community 0:332 route-map calculator permit 24387 match community 1_154_178 1_155_177 1_156_176 1_157_175 1_158_174 set community 0:332 route-map calculator permit 24388 match community 1_159_173 1_160_172 1_161_171 1_162_170 1_163_169 set community 0:332 route-map calculator permit 24389 match community 1_164_168 1_165_167 1_166_166 set community 0:332 ip community-list standard 2_228_247 permit 65000:2 0:228 0:247 route-map calculator permit 24390 match community 2_228_247 set community 0:56316 ip community-list standard 2_230_236 permit 65000:2 0:230 0:236 route-map calculator permit 24391 match community 2_230_236 set community 0:54280 ip community-list standard 2_111_113 permit 65000:2 0:111 0:113 route-map calculator permit 24392 match community 2_111_113 set community 0:12543 ip community-list standard 2_87_165 permit 65000:2 0:87 0:165 ip community-list standard 2_99_145 permit 65000:2 0:99 0:145 route-map calculator permit 24393 match community 2_87_165 2_99_145 set community 0:14355 ip community-list standard 2_178_213 permit 65000:2 0:178 0:213 route-map calculator permit 24394 match community 2_178_213 set community 0:37914 ip community-list standard 2_133_190 permit 65000:2 0:133 0:190 route-map calculator permit 24395 match community 2_133_190 set community 0:25270 ip community-list standard 2_125_151 permit 65000:2 0:125 0:151 route-map calculator permit 24396 match community 2_125_151 set community 0:18875 ip community-list standard 2_194_194 permit 65000:2 0:194 0:194 route-map calculator permit 24397 match community 2_194_194 set community 0:37636 ip community-list standard 2_190_211 permit 65000:2 0:190 0:211 route-map calculator permit 24398 match community 2_190_211 set community 0:40090 ip community-list standard 2_89_211 permit 65000:2 0:89 0:211 route-map calculator permit 24399 match community 2_89_211 set community 0:18779 ip community-list standard 2_177_210 permit 65000:2 0:177 0:210 route-map calculator permit 24400 match community 2_177_210 set community 0:37170 ip community-list standard 2_52_185 permit 65000:2 0:52 0:185 ip community-list standard 2_65_148 permit 65000:2 0:65 0:148 ip community-list standard 2_74_130 permit 65000:2 0:74 0:130 route-map calculator permit 24401 match community 2_52_185 2_65_148 2_74_130 set community 0:9620 ip community-list standard 2_99_107 permit 65000:2 0:99 0:107 route-map calculator permit 24402 match community 2_99_107 set community 0:10593 ip community-list standard 2_140_227 permit 65000:2 0:140 0:227 route-map calculator permit 24403 match community 2_140_227 set community 0:31780 ip community-list standard 1_1_244 permit 65000:1 0:1 0:244 ip community-list standard 2_1_245 permit 65000:2 0:1 0:245 ip community-list standard 1_2_243 permit 65000:1 0:2 0:243 ip community-list standard 1_3_242 permit 65000:1 0:3 0:242 ip community-list standard 1_4_241 permit 65000:1 0:4 0:241 ip community-list standard 2_5_49 permit 65000:2 0:5 0:49 ip community-list standard 1_5_240 permit 65000:1 0:5 0:240 ip community-list standard 1_6_239 permit 65000:1 0:6 0:239 ip community-list standard 2_7_35 permit 65000:2 0:7 0:35 ip community-list standard 1_7_238 permit 65000:1 0:7 0:238 ip community-list standard 1_8_237 permit 65000:1 0:8 0:237 ip community-list standard 1_9_236 permit 65000:1 0:9 0:236 ip community-list standard 1_10_235 permit 65000:1 0:10 0:235 ip community-list standard 1_11_234 permit 65000:1 0:11 0:234 ip community-list standard 1_12_233 permit 65000:1 0:12 0:233 ip community-list standard 1_13_232 permit 65000:1 0:13 0:232 ip community-list standard 1_14_231 permit 65000:1 0:14 0:231 ip community-list standard 1_15_230 permit 65000:1 0:15 0:230 ip community-list standard 1_16_229 permit 65000:1 0:16 0:229 ip community-list standard 1_17_228 permit 65000:1 0:17 0:228 ip community-list standard 1_18_227 permit 65000:1 0:18 0:227 ip community-list standard 1_19_226 permit 65000:1 0:19 0:226 ip community-list standard 1_20_225 permit 65000:1 0:20 0:225 ip community-list standard 1_21_224 permit 65000:1 0:21 0:224 ip community-list standard 1_22_223 permit 65000:1 0:22 0:223 ip community-list standard 1_23_222 permit 65000:1 0:23 0:222 ip community-list standard 1_24_221 permit 65000:1 0:24 0:221 ip community-list standard 1_25_220 permit 65000:1 0:25 0:220 ip community-list standard 1_26_219 permit 65000:1 0:26 0:219 ip community-list standard 1_27_218 permit 65000:1 0:27 0:218 ip community-list standard 1_28_217 permit 65000:1 0:28 0:217 ip community-list standard 1_29_216 permit 65000:1 0:29 0:216 ip community-list standard 1_30_215 permit 65000:1 0:30 0:215 ip community-list standard 1_31_214 permit 65000:1 0:31 0:214 ip community-list standard 1_32_213 permit 65000:1 0:32 0:213 ip community-list standard 1_33_212 permit 65000:1 0:33 0:212 ip community-list standard 1_34_211 permit 65000:1 0:34 0:211 ip community-list standard 1_35_210 permit 65000:1 0:35 0:210 ip community-list standard 1_36_209 permit 65000:1 0:36 0:209 ip community-list standard 1_37_208 permit 65000:1 0:37 0:208 ip community-list standard 1_38_207 permit 65000:1 0:38 0:207 ip community-list standard 1_39_206 permit 65000:1 0:39 0:206 ip community-list standard 1_40_205 permit 65000:1 0:40 0:205 ip community-list standard 1_41_204 permit 65000:1 0:41 0:204 ip community-list standard 1_42_203 permit 65000:1 0:42 0:203 ip community-list standard 1_43_202 permit 65000:1 0:43 0:202 ip community-list standard 1_44_201 permit 65000:1 0:44 0:201 ip community-list standard 1_45_200 permit 65000:1 0:45 0:200 ip community-list standard 1_46_199 permit 65000:1 0:46 0:199 ip community-list standard 1_47_198 permit 65000:1 0:47 0:198 ip community-list standard 1_48_197 permit 65000:1 0:48 0:197 ip community-list standard 1_49_196 permit 65000:1 0:49 0:196 ip community-list standard 1_50_195 permit 65000:1 0:50 0:195 ip community-list standard 1_51_194 permit 65000:1 0:51 0:194 ip community-list standard 1_52_193 permit 65000:1 0:52 0:193 ip community-list standard 1_53_192 permit 65000:1 0:53 0:192 ip community-list standard 1_54_191 permit 65000:1 0:54 0:191 ip community-list standard 1_55_190 permit 65000:1 0:55 0:190 ip community-list standard 1_56_189 permit 65000:1 0:56 0:189 ip community-list standard 1_57_188 permit 65000:1 0:57 0:188 ip community-list standard 1_58_187 permit 65000:1 0:58 0:187 ip community-list standard 1_59_186 permit 65000:1 0:59 0:186 ip community-list standard 1_60_185 permit 65000:1 0:60 0:185 ip community-list standard 1_61_184 permit 65000:1 0:61 0:184 ip community-list standard 1_62_183 permit 65000:1 0:62 0:183 ip community-list standard 1_63_182 permit 65000:1 0:63 0:182 ip community-list standard 1_64_181 permit 65000:1 0:64 0:181 ip community-list standard 1_65_180 permit 65000:1 0:65 0:180 ip community-list standard 1_66_179 permit 65000:1 0:66 0:179 ip community-list standard 1_67_178 permit 65000:1 0:67 0:178 ip community-list standard 1_68_177 permit 65000:1 0:68 0:177 ip community-list standard 1_69_176 permit 65000:1 0:69 0:176 ip community-list standard 1_70_175 permit 65000:1 0:70 0:175 ip community-list standard 1_71_174 permit 65000:1 0:71 0:174 ip community-list standard 1_72_173 permit 65000:1 0:72 0:173 ip community-list standard 1_73_172 permit 65000:1 0:73 0:172 ip community-list standard 1_74_171 permit 65000:1 0:74 0:171 ip community-list standard 1_75_170 permit 65000:1 0:75 0:170 ip community-list standard 1_76_169 permit 65000:1 0:76 0:169 ip community-list standard 1_77_168 permit 65000:1 0:77 0:168 ip community-list standard 1_78_167 permit 65000:1 0:78 0:167 ip community-list standard 1_79_166 permit 65000:1 0:79 0:166 ip community-list standard 1_80_165 permit 65000:1 0:80 0:165 ip community-list standard 1_81_164 permit 65000:1 0:81 0:164 ip community-list standard 1_82_163 permit 65000:1 0:82 0:163 ip community-list standard 1_83_162 permit 65000:1 0:83 0:162 ip community-list standard 1_84_161 permit 65000:1 0:84 0:161 ip community-list standard 1_85_160 permit 65000:1 0:85 0:160 ip community-list standard 1_86_159 permit 65000:1 0:86 0:159 ip community-list standard 1_87_158 permit 65000:1 0:87 0:158 ip community-list standard 1_88_157 permit 65000:1 0:88 0:157 ip community-list standard 1_89_156 permit 65000:1 0:89 0:156 ip community-list standard 1_90_155 permit 65000:1 0:90 0:155 ip community-list standard 1_91_154 permit 65000:1 0:91 0:154 ip community-list standard 1_92_153 permit 65000:1 0:92 0:153 ip community-list standard 1_93_152 permit 65000:1 0:93 0:152 ip community-list standard 1_94_151 permit 65000:1 0:94 0:151 ip community-list standard 1_95_150 permit 65000:1 0:95 0:150 ip community-list standard 1_96_149 permit 65000:1 0:96 0:149 ip community-list standard 1_97_148 permit 65000:1 0:97 0:148 ip community-list standard 1_98_147 permit 65000:1 0:98 0:147 ip community-list standard 1_99_146 permit 65000:1 0:99 0:146 ip community-list standard 1_100_145 permit 65000:1 0:100 0:145 ip community-list standard 1_101_144 permit 65000:1 0:101 0:144 ip community-list standard 1_102_143 permit 65000:1 0:102 0:143 ip community-list standard 1_103_142 permit 65000:1 0:103 0:142 ip community-list standard 1_104_141 permit 65000:1 0:104 0:141 ip community-list standard 1_105_140 permit 65000:1 0:105 0:140 ip community-list standard 1_106_139 permit 65000:1 0:106 0:139 ip community-list standard 1_107_138 permit 65000:1 0:107 0:138 ip community-list standard 1_108_137 permit 65000:1 0:108 0:137 ip community-list standard 1_109_136 permit 65000:1 0:109 0:136 ip community-list standard 1_110_135 permit 65000:1 0:110 0:135 ip community-list standard 1_111_134 permit 65000:1 0:111 0:134 ip community-list standard 1_112_133 permit 65000:1 0:112 0:133 ip community-list standard 1_113_132 permit 65000:1 0:113 0:132 ip community-list standard 1_114_131 permit 65000:1 0:114 0:131 ip community-list standard 1_115_130 permit 65000:1 0:115 0:130 ip community-list standard 1_116_129 permit 65000:1 0:116 0:129 ip community-list standard 1_117_128 permit 65000:1 0:117 0:128 ip community-list standard 1_118_127 permit 65000:1 0:118 0:127 ip community-list standard 1_119_126 permit 65000:1 0:119 0:126 ip community-list standard 1_120_125 permit 65000:1 0:120 0:125 ip community-list standard 1_121_124 permit 65000:1 0:121 0:124 ip community-list standard 1_122_123 permit 65000:1 0:122 0:123 ip community-list expanded c245 permit 1 ^65000:4_0:245_0:1$ ip community-list expanded c245 permit 2 ^65000:3_0:246_0:1$ ip community-list expanded c245 permit 3 ^65000:3_0:247_0:2$ ip community-list expanded c245 permit 4 ^65000:3_0:248_0:3$ ip community-list expanded c245 permit 5 ^65000:3_0:249_0:4$ ip community-list expanded c245 permit 6 ^65000:3_0:250_0:5$ ip community-list expanded c245 permit 7 ^65000:3_0:251_0:6$ ip community-list expanded c245 permit 8 ^65000:3_0:252_0:7$ ip community-list expanded c245 permit 9 ^65000:3_0:253_0:8$ ip community-list expanded c245 permit 10 ^65000:3_0:254_0:9$ ip community-list expanded c245 permit 11 ^65000:3_0:255_0:10$ ip community-list expanded c245 permit 12 ^65000:3_0:256_0:11$ route-map calculator permit 24404 match community 1_1_244 2_1_245 1_2_243 1_3_242 1_4_241 set community 0:245 route-map calculator permit 24405 match community 2_5_49 1_5_240 1_6_239 2_7_35 1_7_238 set community 0:245 route-map calculator permit 24406 match community 1_8_237 1_9_236 1_10_235 1_11_234 1_12_233 set community 0:245 route-map calculator permit 24407 match community 1_13_232 1_14_231 1_15_230 1_16_229 1_17_228 set community 0:245 route-map calculator permit 24408 match community 1_18_227 1_19_226 1_20_225 1_21_224 1_22_223 set community 0:245 route-map calculator permit 24409 match community 1_23_222 1_24_221 1_25_220 1_26_219 1_27_218 set community 0:245 route-map calculator permit 24410 match community 1_28_217 1_29_216 1_30_215 1_31_214 1_32_213 set community 0:245 route-map calculator permit 24411 match community 1_33_212 1_34_211 1_35_210 1_36_209 1_37_208 set community 0:245 route-map calculator permit 24412 match community 1_38_207 1_39_206 1_40_205 1_41_204 1_42_203 set community 0:245 route-map calculator permit 24413 match community 1_43_202 1_44_201 1_45_200 1_46_199 1_47_198 set community 0:245 route-map calculator permit 24414 match community 1_48_197 1_49_196 1_50_195 1_51_194 1_52_193 set community 0:245 route-map calculator permit 24415 match community 1_53_192 1_54_191 1_55_190 1_56_189 1_57_188 set community 0:245 route-map calculator permit 24416 match community 1_58_187 1_59_186 1_60_185 1_61_184 1_62_183 set community 0:245 route-map calculator permit 24417 match community 1_63_182 1_64_181 1_65_180 1_66_179 1_67_178 set community 0:245 route-map calculator permit 24418 match community 1_68_177 1_69_176 1_70_175 1_71_174 1_72_173 set community 0:245 route-map calculator permit 24419 match community 1_73_172 1_74_171 1_75_170 1_76_169 1_77_168 set community 0:245 route-map calculator permit 24420 match community 1_78_167 1_79_166 1_80_165 1_81_164 1_82_163 set community 0:245 route-map calculator permit 24421 match community 1_83_162 1_84_161 1_85_160 1_86_159 1_87_158 set community 0:245 route-map calculator permit 24422 match community 1_88_157 1_89_156 1_90_155 1_91_154 1_92_153 set community 0:245 route-map calculator permit 24423 match community 1_93_152 1_94_151 1_95_150 1_96_149 1_97_148 set community 0:245 route-map calculator permit 24424 match community 1_98_147 1_99_146 1_100_145 1_101_144 1_102_143 set community 0:245 route-map calculator permit 24425 match community 1_103_142 1_104_141 1_105_140 1_106_139 1_107_138 set community 0:245 route-map calculator permit 24426 match community 1_108_137 1_109_136 1_110_135 1_111_134 1_112_133 set community 0:245 route-map calculator permit 24427 match community 1_113_132 1_114_131 1_115_130 1_116_129 1_117_128 set community 0:245 route-map calculator permit 24428 match community 1_118_127 1_119_126 1_120_125 1_121_124 1_122_123 set community 0:245 route-map calculator permit 24429 match community c4_245_1 c3_246_1 c3_247_2 c3_248_3 c3_249_4 set community 0:245 route-map calculator permit 24430 match community c3_250_5 c3_251_6 c3_252_7 c3_253_8 c3_254_9 set community 0:245 route-map calculator permit 24431 match community c3_255_10 c3_256_11 set community 0:245 ip community-list standard 2_117_163 permit 65000:2 0:117 0:163 route-map calculator permit 24432 match community 2_117_163 set community 0:19071 ip community-list standard 2_139_198 permit 65000:2 0:139 0:198 route-map calculator permit 24433 match community 2_139_198 set community 0:27522 ip community-list standard 2_17_211 permit 65000:2 0:17 0:211 route-map calculator permit 24434 match community 2_17_211 set community 0:3587 ip community-list standard 2_201_210 permit 65000:2 0:201 0:210 route-map calculator permit 24435 match community 2_201_210 set community 0:42210 ip community-list standard 2_141_181 permit 65000:2 0:141 0:181 route-map calculator permit 24436 match community 2_141_181 set community 0:25521 ip community-list standard 2_177_240 permit 65000:2 0:177 0:240 ip community-list standard 2_180_236 permit 65000:2 0:180 0:236 route-map calculator permit 24437 match community 2_177_240 2_180_236 set community 0:42480 ip community-list standard 2_3_149 permit 65000:2 0:3 0:149 ip community-list standard 1_191_256 permit 65000:1 0:191 0:256 ip community-list standard 1_192_255 permit 65000:1 0:192 0:255 ip community-list standard 1_193_254 permit 65000:1 0:193 0:254 ip community-list standard 1_194_253 permit 65000:1 0:194 0:253 ip community-list standard 1_195_252 permit 65000:1 0:195 0:252 ip community-list standard 1_196_251 permit 65000:1 0:196 0:251 ip community-list standard 1_197_250 permit 65000:1 0:197 0:250 ip community-list standard 1_198_249 permit 65000:1 0:198 0:249 ip community-list standard 1_199_248 permit 65000:1 0:199 0:248 ip community-list standard 1_200_247 permit 65000:1 0:200 0:247 ip community-list standard 1_201_246 permit 65000:1 0:201 0:246 ip community-list standard 1_202_245 permit 65000:1 0:202 0:245 ip community-list standard 1_203_244 permit 65000:1 0:203 0:244 ip community-list standard 1_204_243 permit 65000:1 0:204 0:243 ip community-list standard 1_205_242 permit 65000:1 0:205 0:242 ip community-list standard 1_206_241 permit 65000:1 0:206 0:241 ip community-list standard 1_207_240 permit 65000:1 0:207 0:240 ip community-list standard 1_208_239 permit 65000:1 0:208 0:239 ip community-list standard 1_209_238 permit 65000:1 0:209 0:238 ip community-list standard 1_210_237 permit 65000:1 0:210 0:237 ip community-list standard 1_211_236 permit 65000:1 0:211 0:236 ip community-list standard 1_212_235 permit 65000:1 0:212 0:235 ip community-list standard 1_213_234 permit 65000:1 0:213 0:234 ip community-list standard 1_214_233 permit 65000:1 0:214 0:233 ip community-list standard 1_215_232 permit 65000:1 0:215 0:232 ip community-list standard 1_216_231 permit 65000:1 0:216 0:231 ip community-list standard 1_217_230 permit 65000:1 0:217 0:230 ip community-list standard 1_218_229 permit 65000:1 0:218 0:229 ip community-list standard 1_219_228 permit 65000:1 0:219 0:228 ip community-list standard 1_220_227 permit 65000:1 0:220 0:227 ip community-list standard 1_221_226 permit 65000:1 0:221 0:226 ip community-list standard 1_222_225 permit 65000:1 0:222 0:225 ip community-list standard 1_223_224 permit 65000:1 0:223 0:224 route-map calculator permit 24438 match community 2_3_149 1_191_256 1_192_255 1_193_254 1_194_253 set community 0:447 route-map calculator permit 24439 match community 1_195_252 1_196_251 1_197_250 1_198_249 1_199_248 set community 0:447 route-map calculator permit 24440 match community 1_200_247 1_201_246 1_202_245 1_203_244 1_204_243 set community 0:447 route-map calculator permit 24441 match community 1_205_242 1_206_241 1_207_240 1_208_239 1_209_238 set community 0:447 route-map calculator permit 24442 match community 1_210_237 1_211_236 1_212_235 1_213_234 1_214_233 set community 0:447 route-map calculator permit 24443 match community 1_215_232 1_216_231 1_217_230 1_218_229 1_219_228 set community 0:447 route-map calculator permit 24444 match community 1_220_227 1_221_226 1_222_225 1_223_224 set community 0:447 ip community-list standard 2_225_248 permit 65000:2 0:225 0:248 route-map calculator permit 24445 match community 2_225_248 set community 0:55800 ip community-list standard 2_45_89 permit 65000:2 0:45 0:89 route-map calculator permit 24446 match community 2_45_89 set community 0:4005 ip community-list standard 2_107_129 permit 65000:2 0:107 0:129 route-map calculator permit 24447 match community 2_107_129 set community 0:13803 ip community-list standard 2_103_211 permit 65000:2 0:103 0:211 route-map calculator permit 24448 match community 2_103_211 set community 0:21733 ip community-list standard 2_130_241 permit 65000:2 0:130 0:241 route-map calculator permit 24449 match community 2_130_241 set community 0:31330 ip community-list standard 2_155_171 permit 65000:2 0:155 0:171 route-map calculator permit 24450 match community 2_155_171 set community 0:26505 ip community-list standard 2_147_191 permit 65000:2 0:147 0:191 route-map calculator permit 24451 match community 2_147_191 set community 0:28077 ip community-list standard 2_199_242 permit 65000:2 0:199 0:242 route-map calculator permit 24452 match community 2_199_242 set community 0:48158 ip community-list standard 2_17_220 permit 65000:2 0:17 0:220 ip community-list standard 2_20_187 permit 65000:2 0:20 0:187 ip community-list standard 2_22_170 permit 65000:2 0:22 0:170 ip community-list standard 2_34_110 permit 65000:2 0:34 0:110 ip community-list standard 2_44_85 permit 65000:2 0:44 0:85 ip community-list standard 2_55_68 permit 65000:2 0:55 0:68 route-map calculator permit 24453 match community 2_17_220 2_20_187 2_22_170 2_34_110 2_44_85 set community 0:3740 route-map calculator permit 24454 match community 2_55_68 set community 0:3740 ip community-list standard 2_79_101 permit 65000:2 0:79 0:101 route-map calculator permit 24455 match community 2_79_101 set community 0:7979 ip community-list standard 2_205_232 permit 65000:2 0:205 0:232 route-map calculator permit 24456 match community 2_205_232 set community 0:47560 ip community-list standard 2_151_174 permit 65000:2 0:151 0:174 route-map calculator permit 24457 match community 2_151_174 set community 0:26274 ip community-list standard 2_140_222 permit 65000:2 0:140 0:222 ip community-list standard 2_148_210 permit 65000:2 0:148 0:210 ip community-list standard 2_168_185 permit 65000:2 0:168 0:185 route-map calculator permit 24458 match community 2_140_222 2_148_210 2_168_185 set community 0:31080 ip community-list standard 2_182_237 permit 65000:2 0:182 0:237 route-map calculator permit 24459 match community 2_182_237 set community 0:43134 ip community-list standard 2_163_164 permit 65000:2 0:163 0:164 route-map calculator permit 24460 match community 2_163_164 set community 0:26732 ip community-list standard 2_112_250 permit 65000:2 0:112 0:250 ip community-list standard 2_125_224 permit 65000:2 0:125 0:224 ip community-list standard 2_140_200 permit 65000:2 0:140 0:200 ip community-list standard 2_160_175 permit 65000:2 0:160 0:175 route-map calculator permit 24461 match community 2_112_250 2_125_224 2_140_200 2_160_175 set community 0:28000 ip community-list standard 2_92_233 permit 65000:2 0:92 0:233 route-map calculator permit 24462 match community 2_92_233 set community 0:21436 ip community-list standard 1_1_135 permit 65000:1 0:1 0:135 ip community-list standard 2_1_136 permit 65000:2 0:1 0:136 ip community-list standard 2_2_68 permit 65000:2 0:2 0:68 ip community-list standard 1_2_134 permit 65000:1 0:2 0:134 ip community-list standard 1_3_133 permit 65000:1 0:3 0:133 ip community-list standard 2_4_34 permit 65000:2 0:4 0:34 ip community-list standard 1_4_132 permit 65000:1 0:4 0:132 ip community-list standard 1_5_131 permit 65000:1 0:5 0:131 ip community-list standard 1_6_130 permit 65000:1 0:6 0:130 ip community-list standard 1_7_129 permit 65000:1 0:7 0:129 ip community-list standard 2_8_17 permit 65000:2 0:8 0:17 ip community-list standard 1_8_128 permit 65000:1 0:8 0:128 ip community-list standard 1_9_127 permit 65000:1 0:9 0:127 ip community-list standard 1_10_126 permit 65000:1 0:10 0:126 ip community-list standard 1_11_125 permit 65000:1 0:11 0:125 ip community-list standard 1_12_124 permit 65000:1 0:12 0:124 ip community-list standard 1_13_123 permit 65000:1 0:13 0:123 ip community-list standard 1_14_122 permit 65000:1 0:14 0:122 ip community-list standard 1_15_121 permit 65000:1 0:15 0:121 ip community-list standard 1_16_120 permit 65000:1 0:16 0:120 ip community-list standard 1_17_119 permit 65000:1 0:17 0:119 ip community-list standard 1_18_118 permit 65000:1 0:18 0:118 ip community-list standard 1_19_117 permit 65000:1 0:19 0:117 ip community-list standard 1_20_116 permit 65000:1 0:20 0:116 ip community-list standard 1_21_115 permit 65000:1 0:21 0:115 ip community-list standard 1_22_114 permit 65000:1 0:22 0:114 ip community-list standard 1_23_113 permit 65000:1 0:23 0:113 ip community-list standard 1_24_112 permit 65000:1 0:24 0:112 ip community-list standard 1_25_111 permit 65000:1 0:25 0:111 ip community-list standard 1_26_110 permit 65000:1 0:26 0:110 ip community-list standard 1_27_109 permit 65000:1 0:27 0:109 ip community-list standard 1_28_108 permit 65000:1 0:28 0:108 ip community-list standard 1_29_107 permit 65000:1 0:29 0:107 ip community-list standard 1_30_106 permit 65000:1 0:30 0:106 ip community-list standard 1_31_105 permit 65000:1 0:31 0:105 ip community-list standard 1_32_104 permit 65000:1 0:32 0:104 ip community-list standard 1_33_103 permit 65000:1 0:33 0:103 ip community-list standard 1_34_102 permit 65000:1 0:34 0:102 ip community-list standard 1_35_101 permit 65000:1 0:35 0:101 ip community-list standard 1_36_100 permit 65000:1 0:36 0:100 ip community-list standard 1_37_99 permit 65000:1 0:37 0:99 ip community-list standard 1_38_98 permit 65000:1 0:38 0:98 ip community-list standard 1_39_97 permit 65000:1 0:39 0:97 ip community-list standard 1_40_96 permit 65000:1 0:40 0:96 ip community-list standard 1_41_95 permit 65000:1 0:41 0:95 ip community-list standard 1_42_94 permit 65000:1 0:42 0:94 ip community-list standard 1_43_93 permit 65000:1 0:43 0:93 ip community-list standard 1_44_92 permit 65000:1 0:44 0:92 ip community-list standard 1_45_91 permit 65000:1 0:45 0:91 ip community-list standard 1_46_90 permit 65000:1 0:46 0:90 ip community-list standard 1_47_89 permit 65000:1 0:47 0:89 ip community-list standard 1_48_88 permit 65000:1 0:48 0:88 ip community-list standard 1_49_87 permit 65000:1 0:49 0:87 ip community-list standard 1_50_86 permit 65000:1 0:50 0:86 ip community-list standard 1_51_85 permit 65000:1 0:51 0:85 ip community-list standard 1_52_84 permit 65000:1 0:52 0:84 ip community-list standard 1_53_83 permit 65000:1 0:53 0:83 ip community-list standard 1_54_82 permit 65000:1 0:54 0:82 ip community-list standard 1_55_81 permit 65000:1 0:55 0:81 ip community-list standard 1_56_80 permit 65000:1 0:56 0:80 ip community-list standard 1_57_79 permit 65000:1 0:57 0:79 ip community-list standard 1_58_78 permit 65000:1 0:58 0:78 ip community-list standard 1_59_77 permit 65000:1 0:59 0:77 ip community-list standard 1_60_76 permit 65000:1 0:60 0:76 ip community-list standard 1_61_75 permit 65000:1 0:61 0:75 ip community-list standard 1_62_74 permit 65000:1 0:62 0:74 ip community-list standard 1_63_73 permit 65000:1 0:63 0:73 ip community-list standard 1_64_72 permit 65000:1 0:64 0:72 ip community-list standard 1_65_71 permit 65000:1 0:65 0:71 ip community-list standard 1_66_70 permit 65000:1 0:66 0:70 ip community-list standard 1_67_69 permit 65000:1 0:67 0:69 ip community-list standard 1_68_68 permit 65000:1 0:68 0:68 ip community-list expanded c136 permit 1 ^65000:4_0:136_0:1$ ip community-list expanded c136 permit 2 ^65000:3_0:137_0:1$ ip community-list expanded c136 permit 3 ^65000:3_0:138_0:2$ ip community-list expanded c136 permit 4 ^65000:3_0:139_0:3$ ip community-list expanded c136 permit 5 ^65000:3_0:140_0:4$ ip community-list expanded c136 permit 6 ^65000:3_0:141_0:5$ ip community-list expanded c136 permit 7 ^65000:3_0:142_0:6$ ip community-list expanded c136 permit 8 ^65000:3_0:143_0:7$ ip community-list expanded c136 permit 9 ^65000:3_0:144_0:8$ ip community-list expanded c136 permit 10 ^65000:3_0:145_0:9$ ip community-list expanded c136 permit 11 ^65000:3_0:146_0:10$ ip community-list expanded c136 permit 12 ^65000:3_0:147_0:11$ ip community-list expanded c136 permit 13 ^65000:3_0:148_0:12$ ip community-list expanded c136 permit 14 ^65000:3_0:149_0:13$ ip community-list expanded c136 permit 15 ^65000:3_0:150_0:14$ ip community-list expanded c136 permit 16 ^65000:3_0:151_0:15$ ip community-list expanded c136 permit 17 ^65000:3_0:152_0:16$ ip community-list expanded c136 permit 18 ^65000:3_0:153_0:17$ ip community-list expanded c136 permit 19 ^65000:3_0:154_0:18$ ip community-list expanded c136 permit 20 ^65000:3_0:155_0:19$ ip community-list expanded c136 permit 21 ^65000:3_0:156_0:20$ ip community-list expanded c136 permit 22 ^65000:3_0:157_0:21$ ip community-list expanded c136 permit 23 ^65000:3_0:158_0:22$ ip community-list expanded c136 permit 24 ^65000:3_0:159_0:23$ ip community-list expanded c136 permit 25 ^65000:3_0:160_0:24$ ip community-list expanded c136 permit 26 ^65000:3_0:161_0:25$ ip community-list expanded c136 permit 27 ^65000:3_0:162_0:26$ ip community-list expanded c136 permit 28 ^65000:3_0:163_0:27$ ip community-list expanded c136 permit 29 ^65000:3_0:164_0:28$ ip community-list expanded c136 permit 30 ^65000:3_0:165_0:29$ ip community-list expanded c136 permit 31 ^65000:3_0:166_0:30$ ip community-list expanded c136 permit 32 ^65000:3_0:167_0:31$ ip community-list expanded c136 permit 33 ^65000:3_0:168_0:32$ ip community-list expanded c136 permit 34 ^65000:3_0:169_0:33$ ip community-list expanded c136 permit 35 ^65000:3_0:170_0:34$ ip community-list expanded c136 permit 36 ^65000:3_0:171_0:35$ ip community-list expanded c136 permit 37 ^65000:3_0:172_0:36$ ip community-list expanded c136 permit 38 ^65000:3_0:173_0:37$ ip community-list expanded c136 permit 39 ^65000:3_0:174_0:38$ ip community-list expanded c136 permit 40 ^65000:3_0:175_0:39$ ip community-list expanded c136 permit 41 ^65000:3_0:176_0:40$ ip community-list expanded c136 permit 42 ^65000:3_0:177_0:41$ ip community-list expanded c136 permit 43 ^65000:3_0:178_0:42$ ip community-list expanded c136 permit 44 ^65000:3_0:179_0:43$ ip community-list expanded c136 permit 45 ^65000:3_0:180_0:44$ ip community-list expanded c136 permit 46 ^65000:3_0:181_0:45$ ip community-list expanded c136 permit 47 ^65000:3_0:182_0:46$ ip community-list expanded c136 permit 48 ^65000:3_0:183_0:47$ ip community-list expanded c136 permit 49 ^65000:3_0:184_0:48$ ip community-list expanded c136 permit 50 ^65000:3_0:185_0:49$ ip community-list expanded c136 permit 51 ^65000:3_0:186_0:50$ ip community-list expanded c136 permit 52 ^65000:3_0:187_0:51$ ip community-list expanded c136 permit 53 ^65000:3_0:188_0:52$ ip community-list expanded c136 permit 54 ^65000:3_0:189_0:53$ ip community-list expanded c136 permit 55 ^65000:3_0:190_0:54$ ip community-list expanded c136 permit 56 ^65000:3_0:191_0:55$ ip community-list expanded c136 permit 57 ^65000:3_0:192_0:56$ ip community-list expanded c136 permit 58 ^65000:3_0:193_0:57$ ip community-list expanded c136 permit 59 ^65000:3_0:194_0:58$ ip community-list expanded c136 permit 60 ^65000:3_0:195_0:59$ ip community-list expanded c136 permit 61 ^65000:3_0:196_0:60$ ip community-list expanded c136 permit 62 ^65000:3_0:197_0:61$ ip community-list expanded c136 permit 63 ^65000:3_0:198_0:62$ ip community-list expanded c136 permit 64 ^65000:3_0:199_0:63$ ip community-list expanded c136 permit 65 ^65000:3_0:200_0:64$ ip community-list expanded c136 permit 66 ^65000:3_0:201_0:65$ ip community-list expanded c136 permit 67 ^65000:3_0:202_0:66$ ip community-list expanded c136 permit 68 ^65000:3_0:203_0:67$ ip community-list expanded c136 permit 69 ^65000:3_0:204_0:68$ ip community-list expanded c136 permit 70 ^65000:3_0:205_0:69$ ip community-list expanded c136 permit 71 ^65000:3_0:206_0:70$ ip community-list expanded c136 permit 72 ^65000:3_0:207_0:71$ ip community-list expanded c136 permit 73 ^65000:3_0:208_0:72$ ip community-list expanded c136 permit 74 ^65000:3_0:209_0:73$ ip community-list expanded c136 permit 75 ^65000:3_0:210_0:74$ ip community-list expanded c136 permit 76 ^65000:3_0:211_0:75$ ip community-list expanded c136 permit 77 ^65000:3_0:212_0:76$ ip community-list expanded c136 permit 78 ^65000:3_0:213_0:77$ ip community-list expanded c136 permit 79 ^65000:3_0:214_0:78$ ip community-list expanded c136 permit 80 ^65000:3_0:215_0:79$ ip community-list expanded c136 permit 81 ^65000:3_0:216_0:80$ ip community-list expanded c136 permit 82 ^65000:3_0:217_0:81$ ip community-list expanded c136 permit 83 ^65000:3_0:218_0:82$ ip community-list expanded c136 permit 84 ^65000:3_0:219_0:83$ ip community-list expanded c136 permit 85 ^65000:3_0:220_0:84$ ip community-list expanded c136 permit 86 ^65000:3_0:221_0:85$ ip community-list expanded c136 permit 87 ^65000:3_0:222_0:86$ ip community-list expanded c136 permit 88 ^65000:3_0:223_0:87$ ip community-list expanded c136 permit 89 ^65000:3_0:224_0:88$ ip community-list expanded c136 permit 90 ^65000:3_0:225_0:89$ ip community-list expanded c136 permit 91 ^65000:3_0:226_0:90$ ip community-list expanded c136 permit 92 ^65000:3_0:227_0:91$ ip community-list expanded c136 permit 93 ^65000:3_0:228_0:92$ ip community-list expanded c136 permit 94 ^65000:3_0:229_0:93$ ip community-list expanded c136 permit 95 ^65000:3_0:230_0:94$ ip community-list expanded c136 permit 96 ^65000:3_0:231_0:95$ ip community-list expanded c136 permit 97 ^65000:3_0:232_0:96$ ip community-list expanded c136 permit 98 ^65000:3_0:233_0:97$ ip community-list expanded c136 permit 99 ^65000:3_0:234_0:98$ ip community-list expanded c136 permit 100 ^65000:3_0:235_0:99$ ip community-list expanded c136 permit 101 ^65000:3_0:236_0:100$ ip community-list expanded c136 permit 102 ^65000:3_0:237_0:101$ ip community-list expanded c136 permit 103 ^65000:3_0:238_0:102$ ip community-list expanded c136 permit 104 ^65000:3_0:239_0:103$ ip community-list expanded c136 permit 105 ^65000:3_0:240_0:104$ ip community-list expanded c136 permit 106 ^65000:3_0:241_0:105$ ip community-list expanded c136 permit 107 ^65000:3_0:242_0:106$ ip community-list expanded c136 permit 108 ^65000:3_0:243_0:107$ ip community-list expanded c136 permit 109 ^65000:3_0:244_0:108$ ip community-list expanded c136 permit 110 ^65000:3_0:245_0:109$ ip community-list expanded c136 permit 111 ^65000:3_0:246_0:110$ ip community-list expanded c136 permit 112 ^65000:3_0:247_0:111$ ip community-list expanded c136 permit 113 ^65000:3_0:248_0:112$ ip community-list expanded c136 permit 114 ^65000:3_0:249_0:113$ ip community-list expanded c136 permit 115 ^65000:3_0:250_0:114$ ip community-list expanded c136 permit 116 ^65000:3_0:251_0:115$ ip community-list expanded c136 permit 117 ^65000:3_0:252_0:116$ ip community-list expanded c136 permit 118 ^65000:3_0:253_0:117$ ip community-list expanded c136 permit 119 ^65000:3_0:254_0:118$ ip community-list expanded c136 permit 120 ^65000:3_0:255_0:119$ ip community-list expanded c136 permit 121 ^65000:3_0:256_0:120$ route-map calculator permit 24463 match community 1_1_135 2_1_136 2_2_68 1_2_134 1_3_133 set community 0:136 route-map calculator permit 24464 match community 2_4_34 1_4_132 1_5_131 1_6_130 1_7_129 set community 0:136 route-map calculator permit 24465 match community 2_8_17 1_8_128 1_9_127 1_10_126 1_11_125 set community 0:136 route-map calculator permit 24466 match community 1_12_124 1_13_123 1_14_122 1_15_121 1_16_120 set community 0:136 route-map calculator permit 24467 match community 1_17_119 1_18_118 1_19_117 1_20_116 1_21_115 set community 0:136 route-map calculator permit 24468 match community 1_22_114 1_23_113 1_24_112 1_25_111 1_26_110 set community 0:136 route-map calculator permit 24469 match community 1_27_109 1_28_108 1_29_107 1_30_106 1_31_105 set community 0:136 route-map calculator permit 24470 match community 1_32_104 1_33_103 1_34_102 1_35_101 1_36_100 set community 0:136 route-map calculator permit 24471 match community 1_37_99 1_38_98 1_39_97 1_40_96 1_41_95 set community 0:136 route-map calculator permit 24472 match community 1_42_94 1_43_93 1_44_92 1_45_91 1_46_90 set community 0:136 route-map calculator permit 24473 match community 1_47_89 1_48_88 1_49_87 1_50_86 1_51_85 set community 0:136 route-map calculator permit 24474 match community 1_52_84 1_53_83 1_54_82 1_55_81 1_56_80 set community 0:136 route-map calculator permit 24475 match community 1_57_79 1_58_78 1_59_77 1_60_76 1_61_75 set community 0:136 route-map calculator permit 24476 match community 1_62_74 1_63_73 1_64_72 1_65_71 1_66_70 set community 0:136 route-map calculator permit 24477 match community 1_67_69 1_68_68 c4_136_1 c3_137_1 c3_138_2 set community 0:136 route-map calculator permit 24478 match community c3_139_3 c3_140_4 c3_141_5 c3_142_6 c3_143_7 set community 0:136 route-map calculator permit 24479 match community c3_144_8 c3_145_9 c3_146_10 c3_147_11 c3_148_12 set community 0:136 route-map calculator permit 24480 match community c3_149_13 c3_150_14 c3_151_15 c3_152_16 c3_153_17 set community 0:136 route-map calculator permit 24481 match community c3_154_18 c3_155_19 c3_156_20 c3_157_21 c3_158_22 set community 0:136 route-map calculator permit 24482 match community c3_159_23 c3_160_24 c3_161_25 c3_162_26 c3_163_27 set community 0:136 route-map calculator permit 24483 match community c3_164_28 c3_165_29 c3_166_30 c3_167_31 c3_168_32 set community 0:136 route-map calculator permit 24484 match community c3_169_33 c3_170_34 c3_171_35 c3_172_36 c3_173_37 set community 0:136 route-map calculator permit 24485 match community c3_174_38 c3_175_39 c3_176_40 c3_177_41 c3_178_42 set community 0:136 route-map calculator permit 24486 match community c3_179_43 c3_180_44 c3_181_45 c3_182_46 c3_183_47 set community 0:136 route-map calculator permit 24487 match community c3_184_48 c3_185_49 c3_186_50 c3_187_51 c3_188_52 set community 0:136 route-map calculator permit 24488 match community c3_189_53 c3_190_54 c3_191_55 c3_192_56 c3_193_57 set community 0:136 route-map calculator permit 24489 match community c3_194_58 c3_195_59 c3_196_60 c3_197_61 c3_198_62 set community 0:136 route-map calculator permit 24490 match community c3_199_63 c3_200_64 c3_201_65 c3_202_66 c3_203_67 set community 0:136 route-map calculator permit 24491 match community c3_204_68 c3_205_69 c3_206_70 c3_207_71 c3_208_72 set community 0:136 route-map calculator permit 24492 match community c3_209_73 c3_210_74 c3_211_75 c3_212_76 c3_213_77 set community 0:136 route-map calculator permit 24493 match community c3_214_78 c3_215_79 c3_216_80 c3_217_81 c3_218_82 set community 0:136 route-map calculator permit 24494 match community c3_219_83 c3_220_84 c3_221_85 c3_222_86 c3_223_87 set community 0:136 route-map calculator permit 24495 match community c3_224_88 c3_225_89 c3_226_90 c3_227_91 c3_228_92 set community 0:136 route-map calculator permit 24496 match community c3_229_93 c3_230_94 c3_231_95 c3_232_96 c3_233_97 set community 0:136 route-map calculator permit 24497 match community c3_234_98 c3_235_99 c3_236_100 c3_237_101 c3_238_102 set community 0:136 route-map calculator permit 24498 match community c3_239_103 c3_240_104 c3_241_105 c3_242_106 c3_243_107 set community 0:136 route-map calculator permit 24499 match community c3_244_108 c3_245_109 c3_246_110 c3_247_111 c3_248_112 set community 0:136 route-map calculator permit 24500 match community c3_249_113 c3_250_114 c3_251_115 c3_252_116 c3_253_117 set community 0:136 route-map calculator permit 24501 match community c3_254_118 c3_255_119 c3_256_120 set community 0:136 ip community-list standard 2_135_246 permit 65000:2 0:135 0:246 ip community-list standard 2_162_205 permit 65000:2 0:162 0:205 route-map calculator permit 24502 match community 2_135_246 2_162_205 set community 0:33210 ip community-list standard 2_76_209 permit 65000:2 0:76 0:209 route-map calculator permit 24503 match community 2_76_209 set community 0:15884 ip community-list standard 2_13_184 permit 65000:2 0:13 0:184 ip community-list standard 2_23_104 permit 65000:2 0:23 0:104 ip community-list standard 2_26_92 permit 65000:2 0:26 0:92 ip community-list standard 2_46_52 permit 65000:2 0:46 0:52 route-map calculator permit 24504 match community 2_13_184 2_23_104 2_26_92 2_46_52 set community 0:2392 ip community-list standard 2_116_197 permit 65000:2 0:116 0:197 route-map calculator permit 24505 match community 2_116_197 set community 0:22852 ip community-list standard 2_155_179 permit 65000:2 0:155 0:179 route-map calculator permit 24506 match community 2_155_179 set community 0:27745 ip community-list standard 2_31_134 permit 65000:2 0:31 0:134 ip community-list standard 2_62_67 permit 65000:2 0:62 0:67 route-map calculator permit 24507 match community 2_31_134 2_62_67 set community 0:4154 ip community-list standard 2_31_113 permit 65000:2 0:31 0:113 route-map calculator permit 24508 match community 2_31_113 set community 0:3503 ip community-list standard 2_203_235 permit 65000:2 0:203 0:235 route-map calculator permit 24509 match community 2_203_235 set community 0:47705 ip community-list standard 1_1_227 permit 65000:1 0:1 0:227 ip community-list standard 2_1_228 permit 65000:2 0:1 0:228 ip community-list standard 2_2_114 permit 65000:2 0:2 0:114 ip community-list standard 1_2_226 permit 65000:1 0:2 0:226 ip community-list standard 2_3_76 permit 65000:2 0:3 0:76 ip community-list standard 1_3_225 permit 65000:1 0:3 0:225 ip community-list standard 2_4_57 permit 65000:2 0:4 0:57 ip community-list standard 1_4_224 permit 65000:1 0:4 0:224 ip community-list standard 1_5_223 permit 65000:1 0:5 0:223 ip community-list standard 2_6_38 permit 65000:2 0:6 0:38 ip community-list standard 1_6_222 permit 65000:1 0:6 0:222 ip community-list standard 1_7_221 permit 65000:1 0:7 0:221 ip community-list standard 1_8_220 permit 65000:1 0:8 0:220 ip community-list standard 1_9_219 permit 65000:1 0:9 0:219 ip community-list standard 1_10_218 permit 65000:1 0:10 0:218 ip community-list standard 1_11_217 permit 65000:1 0:11 0:217 ip community-list standard 2_12_19 permit 65000:2 0:12 0:19 ip community-list standard 1_12_216 permit 65000:1 0:12 0:216 ip community-list standard 1_13_215 permit 65000:1 0:13 0:215 ip community-list standard 1_14_214 permit 65000:1 0:14 0:214 ip community-list standard 1_15_213 permit 65000:1 0:15 0:213 ip community-list standard 1_16_212 permit 65000:1 0:16 0:212 ip community-list standard 1_17_211 permit 65000:1 0:17 0:211 ip community-list standard 1_18_210 permit 65000:1 0:18 0:210 ip community-list standard 1_19_209 permit 65000:1 0:19 0:209 ip community-list standard 1_20_208 permit 65000:1 0:20 0:208 ip community-list standard 1_21_207 permit 65000:1 0:21 0:207 ip community-list standard 1_22_206 permit 65000:1 0:22 0:206 ip community-list standard 1_23_205 permit 65000:1 0:23 0:205 ip community-list standard 1_24_204 permit 65000:1 0:24 0:204 ip community-list standard 1_25_203 permit 65000:1 0:25 0:203 ip community-list standard 1_26_202 permit 65000:1 0:26 0:202 ip community-list standard 1_27_201 permit 65000:1 0:27 0:201 ip community-list standard 1_28_200 permit 65000:1 0:28 0:200 ip community-list standard 1_29_199 permit 65000:1 0:29 0:199 ip community-list standard 1_30_198 permit 65000:1 0:30 0:198 ip community-list standard 1_31_197 permit 65000:1 0:31 0:197 ip community-list standard 1_32_196 permit 65000:1 0:32 0:196 ip community-list standard 1_33_195 permit 65000:1 0:33 0:195 ip community-list standard 1_34_194 permit 65000:1 0:34 0:194 ip community-list standard 1_35_193 permit 65000:1 0:35 0:193 ip community-list standard 1_36_192 permit 65000:1 0:36 0:192 ip community-list standard 1_37_191 permit 65000:1 0:37 0:191 ip community-list standard 1_38_190 permit 65000:1 0:38 0:190 ip community-list standard 1_39_189 permit 65000:1 0:39 0:189 ip community-list standard 1_40_188 permit 65000:1 0:40 0:188 ip community-list standard 1_41_187 permit 65000:1 0:41 0:187 ip community-list standard 1_42_186 permit 65000:1 0:42 0:186 ip community-list standard 1_43_185 permit 65000:1 0:43 0:185 ip community-list standard 1_44_184 permit 65000:1 0:44 0:184 ip community-list standard 1_45_183 permit 65000:1 0:45 0:183 ip community-list standard 1_46_182 permit 65000:1 0:46 0:182 ip community-list standard 1_47_181 permit 65000:1 0:47 0:181 ip community-list standard 1_48_180 permit 65000:1 0:48 0:180 ip community-list standard 1_49_179 permit 65000:1 0:49 0:179 ip community-list standard 1_50_178 permit 65000:1 0:50 0:178 ip community-list standard 1_51_177 permit 65000:1 0:51 0:177 ip community-list standard 1_52_176 permit 65000:1 0:52 0:176 ip community-list standard 1_53_175 permit 65000:1 0:53 0:175 ip community-list standard 1_54_174 permit 65000:1 0:54 0:174 ip community-list standard 1_55_173 permit 65000:1 0:55 0:173 ip community-list standard 1_56_172 permit 65000:1 0:56 0:172 ip community-list standard 1_57_171 permit 65000:1 0:57 0:171 ip community-list standard 1_58_170 permit 65000:1 0:58 0:170 ip community-list standard 1_59_169 permit 65000:1 0:59 0:169 ip community-list standard 1_60_168 permit 65000:1 0:60 0:168 ip community-list standard 1_61_167 permit 65000:1 0:61 0:167 ip community-list standard 1_62_166 permit 65000:1 0:62 0:166 ip community-list standard 1_63_165 permit 65000:1 0:63 0:165 ip community-list standard 1_64_164 permit 65000:1 0:64 0:164 ip community-list standard 1_65_163 permit 65000:1 0:65 0:163 ip community-list standard 1_66_162 permit 65000:1 0:66 0:162 ip community-list standard 1_67_161 permit 65000:1 0:67 0:161 ip community-list standard 1_68_160 permit 65000:1 0:68 0:160 ip community-list standard 1_69_159 permit 65000:1 0:69 0:159 ip community-list standard 1_70_158 permit 65000:1 0:70 0:158 ip community-list standard 1_71_157 permit 65000:1 0:71 0:157 ip community-list standard 1_72_156 permit 65000:1 0:72 0:156 ip community-list standard 1_73_155 permit 65000:1 0:73 0:155 ip community-list standard 1_74_154 permit 65000:1 0:74 0:154 ip community-list standard 1_75_153 permit 65000:1 0:75 0:153 ip community-list standard 1_76_152 permit 65000:1 0:76 0:152 ip community-list standard 1_77_151 permit 65000:1 0:77 0:151 ip community-list standard 1_78_150 permit 65000:1 0:78 0:150 ip community-list standard 1_79_149 permit 65000:1 0:79 0:149 ip community-list standard 1_80_148 permit 65000:1 0:80 0:148 ip community-list standard 1_81_147 permit 65000:1 0:81 0:147 ip community-list standard 1_82_146 permit 65000:1 0:82 0:146 ip community-list standard 1_83_145 permit 65000:1 0:83 0:145 ip community-list standard 1_84_144 permit 65000:1 0:84 0:144 ip community-list standard 1_85_143 permit 65000:1 0:85 0:143 ip community-list standard 1_86_142 permit 65000:1 0:86 0:142 ip community-list standard 1_87_141 permit 65000:1 0:87 0:141 ip community-list standard 1_88_140 permit 65000:1 0:88 0:140 ip community-list standard 1_89_139 permit 65000:1 0:89 0:139 ip community-list standard 1_90_138 permit 65000:1 0:90 0:138 ip community-list standard 1_91_137 permit 65000:1 0:91 0:137 ip community-list standard 1_92_136 permit 65000:1 0:92 0:136 ip community-list standard 1_93_135 permit 65000:1 0:93 0:135 ip community-list standard 1_94_134 permit 65000:1 0:94 0:134 ip community-list standard 1_95_133 permit 65000:1 0:95 0:133 ip community-list standard 1_96_132 permit 65000:1 0:96 0:132 ip community-list standard 1_97_131 permit 65000:1 0:97 0:131 ip community-list standard 1_98_130 permit 65000:1 0:98 0:130 ip community-list standard 1_99_129 permit 65000:1 0:99 0:129 ip community-list standard 1_100_128 permit 65000:1 0:100 0:128 ip community-list standard 1_101_127 permit 65000:1 0:101 0:127 ip community-list standard 1_102_126 permit 65000:1 0:102 0:126 ip community-list standard 1_103_125 permit 65000:1 0:103 0:125 ip community-list standard 1_104_124 permit 65000:1 0:104 0:124 ip community-list standard 1_105_123 permit 65000:1 0:105 0:123 ip community-list standard 1_106_122 permit 65000:1 0:106 0:122 ip community-list standard 1_107_121 permit 65000:1 0:107 0:121 ip community-list standard 1_108_120 permit 65000:1 0:108 0:120 ip community-list standard 1_109_119 permit 65000:1 0:109 0:119 ip community-list standard 1_110_118 permit 65000:1 0:110 0:118 ip community-list standard 1_111_117 permit 65000:1 0:111 0:117 ip community-list standard 1_112_116 permit 65000:1 0:112 0:116 ip community-list standard 1_113_115 permit 65000:1 0:113 0:115 ip community-list standard 1_114_114 permit 65000:1 0:114 0:114 ip community-list expanded c228 permit 1 ^65000:4_0:228_0:1$ ip community-list expanded c228 permit 2 ^65000:3_0:229_0:1$ ip community-list expanded c228 permit 3 ^65000:3_0:230_0:2$ ip community-list expanded c228 permit 4 ^65000:3_0:231_0:3$ ip community-list expanded c228 permit 5 ^65000:3_0:232_0:4$ ip community-list expanded c228 permit 6 ^65000:3_0:233_0:5$ ip community-list expanded c228 permit 7 ^65000:3_0:234_0:6$ ip community-list expanded c228 permit 8 ^65000:3_0:235_0:7$ ip community-list expanded c228 permit 9 ^65000:3_0:236_0:8$ ip community-list expanded c228 permit 10 ^65000:3_0:237_0:9$ ip community-list expanded c228 permit 11 ^65000:3_0:238_0:10$ ip community-list expanded c228 permit 12 ^65000:3_0:239_0:11$ ip community-list expanded c228 permit 13 ^65000:3_0:240_0:12$ ip community-list expanded c228 permit 14 ^65000:3_0:241_0:13$ ip community-list expanded c228 permit 15 ^65000:3_0:242_0:14$ ip community-list expanded c228 permit 16 ^65000:3_0:243_0:15$ ip community-list expanded c228 permit 17 ^65000:3_0:244_0:16$ ip community-list expanded c228 permit 18 ^65000:3_0:245_0:17$ ip community-list expanded c228 permit 19 ^65000:3_0:246_0:18$ ip community-list expanded c228 permit 20 ^65000:3_0:247_0:19$ ip community-list expanded c228 permit 21 ^65000:3_0:248_0:20$ ip community-list expanded c228 permit 22 ^65000:3_0:249_0:21$ ip community-list expanded c228 permit 23 ^65000:3_0:250_0:22$ ip community-list expanded c228 permit 24 ^65000:3_0:251_0:23$ ip community-list expanded c228 permit 25 ^65000:3_0:252_0:24$ ip community-list expanded c228 permit 26 ^65000:3_0:253_0:25$ ip community-list expanded c228 permit 27 ^65000:3_0:254_0:26$ ip community-list expanded c228 permit 28 ^65000:3_0:255_0:27$ ip community-list expanded c228 permit 29 ^65000:3_0:256_0:28$ route-map calculator permit 24510 match community 1_1_227 2_1_228 2_2_114 1_2_226 2_3_76 set community 0:228 route-map calculator permit 24511 match community 1_3_225 2_4_57 1_4_224 1_5_223 2_6_38 set community 0:228 route-map calculator permit 24512 match community 1_6_222 1_7_221 1_8_220 1_9_219 1_10_218 set community 0:228 route-map calculator permit 24513 match community 1_11_217 2_12_19 1_12_216 1_13_215 1_14_214 set community 0:228 route-map calculator permit 24514 match community 1_15_213 1_16_212 1_17_211 1_18_210 1_19_209 set community 0:228 route-map calculator permit 24515 match community 1_20_208 1_21_207 1_22_206 1_23_205 1_24_204 set community 0:228 route-map calculator permit 24516 match community 1_25_203 1_26_202 1_27_201 1_28_200 1_29_199 set community 0:228 route-map calculator permit 24517 match community 1_30_198 1_31_197 1_32_196 1_33_195 1_34_194 set community 0:228 route-map calculator permit 24518 match community 1_35_193 1_36_192 1_37_191 1_38_190 1_39_189 set community 0:228 route-map calculator permit 24519 match community 1_40_188 1_41_187 1_42_186 1_43_185 1_44_184 set community 0:228 route-map calculator permit 24520 match community 1_45_183 1_46_182 1_47_181 1_48_180 1_49_179 set community 0:228 route-map calculator permit 24521 match community 1_50_178 1_51_177 1_52_176 1_53_175 1_54_174 set community 0:228 route-map calculator permit 24522 match community 1_55_173 1_56_172 1_57_171 1_58_170 1_59_169 set community 0:228 route-map calculator permit 24523 match community 1_60_168 1_61_167 1_62_166 1_63_165 1_64_164 set community 0:228 route-map calculator permit 24524 match community 1_65_163 1_66_162 1_67_161 1_68_160 1_69_159 set community 0:228 route-map calculator permit 24525 match community 1_70_158 1_71_157 1_72_156 1_73_155 1_74_154 set community 0:228 route-map calculator permit 24526 match community 1_75_153 1_76_152 1_77_151 1_78_150 1_79_149 set community 0:228 route-map calculator permit 24527 match community 1_80_148 1_81_147 1_82_146 1_83_145 1_84_144 set community 0:228 route-map calculator permit 24528 match community 1_85_143 1_86_142 1_87_141 1_88_140 1_89_139 set community 0:228 route-map calculator permit 24529 match community 1_90_138 1_91_137 1_92_136 1_93_135 1_94_134 set community 0:228 route-map calculator permit 24530 match community 1_95_133 1_96_132 1_97_131 1_98_130 1_99_129 set community 0:228 route-map calculator permit 24531 match community 1_100_128 1_101_127 1_102_126 1_103_125 1_104_124 set community 0:228 route-map calculator permit 24532 match community 1_105_123 1_106_122 1_107_121 1_108_120 1_109_119 set community 0:228 route-map calculator permit 24533 match community 1_110_118 1_111_117 1_112_116 1_113_115 1_114_114 set community 0:228 route-map calculator permit 24534 match community c4_228_1 c3_229_1 c3_230_2 c3_231_3 c3_232_4 set community 0:228 route-map calculator permit 24535 match community c3_233_5 c3_234_6 c3_235_7 c3_236_8 c3_237_9 set community 0:228 route-map calculator permit 24536 match community c3_238_10 c3_239_11 c3_240_12 c3_241_13 c3_242_14 set community 0:228 route-map calculator permit 24537 match community c3_243_15 c3_244_16 c3_245_17 c3_246_18 c3_247_19 set community 0:228 route-map calculator permit 24538 match community c3_248_20 c3_249_21 c3_250_22 c3_251_23 c3_252_24 set community 0:228 route-map calculator permit 24539 match community c3_253_25 c3_254_26 c3_255_27 c3_256_28 set community 0:228 ip community-list standard 2_167_182 permit 65000:2 0:167 0:182 route-map calculator permit 24540 match community 2_167_182 set community 0:30394 ip community-list standard 2_110_253 permit 65000:2 0:110 0:253 ip community-list standard 2_115_242 permit 65000:2 0:115 0:242 ip community-list standard 2_121_230 permit 65000:2 0:121 0:230 route-map calculator permit 24541 match community 2_110_253 2_115_242 2_121_230 set community 0:27830 ip community-list standard 2_146_224 permit 65000:2 0:146 0:224 route-map calculator permit 24542 match community 2_146_224 set community 0:32704 ip community-list standard 2_4_226 permit 65000:2 0:4 0:226 ip community-list standard 2_8_113 permit 65000:2 0:8 0:113 route-map calculator permit 24543 match community 2_4_226 2_8_113 set community 0:904 ip community-list standard 2_69_131 permit 65000:2 0:69 0:131 route-map calculator permit 24544 match community 2_69_131 set community 0:9039 ip community-list standard 2_41_218 permit 65000:2 0:41 0:218 ip community-list standard 2_82_109 permit 65000:2 0:82 0:109 route-map calculator permit 24545 match community 2_41_218 2_82_109 set community 0:8938 ip community-list standard 2_72_206 permit 65000:2 0:72 0:206 ip community-list standard 2_103_144 permit 65000:2 0:103 0:144 route-map calculator permit 24546 match community 2_72_206 2_103_144 set community 0:14832 ip community-list standard 2_67_203 permit 65000:2 0:67 0:203 route-map calculator permit 24547 match community 2_67_203 set community 0:13601 ip community-list standard 2_98_201 permit 65000:2 0:98 0:201 ip community-list standard 2_134_147 permit 65000:2 0:134 0:147 route-map calculator permit 24548 match community 2_98_201 2_134_147 set community 0:19698 ip community-list standard 2_21_235 permit 65000:2 0:21 0:235 ip community-list standard 2_35_141 permit 65000:2 0:35 0:141 ip community-list standard 2_47_105 permit 65000:2 0:47 0:105 route-map calculator permit 24549 match community 2_21_235 2_35_141 2_47_105 set community 0:4935 ip community-list standard 2_46_237 permit 65000:2 0:46 0:237 ip community-list standard 2_69_158 permit 65000:2 0:69 0:158 ip community-list standard 2_79_138 permit 65000:2 0:79 0:138 route-map calculator permit 24550 match community 2_46_237 2_69_158 2_79_138 set community 0:10902 ip community-list standard 2_50_223 permit 65000:2 0:50 0:223 route-map calculator permit 24551 match community 2_50_223 set community 0:11150 ip community-list standard 2_143_218 permit 65000:2 0:143 0:218 route-map calculator permit 24552 match community 2_143_218 set community 0:31174 ip community-list standard 2_45_247 permit 65000:2 0:45 0:247 ip community-list standard 2_57_195 permit 65000:2 0:57 0:195 ip community-list standard 2_65_171 permit 65000:2 0:65 0:171 ip community-list standard 2_95_117 permit 65000:2 0:95 0:117 route-map calculator permit 24553 match community 2_45_247 2_57_195 2_65_171 2_95_117 set community 0:11115 ip community-list standard 2_238_241 permit 65000:2 0:238 0:241 route-map calculator permit 24554 match community 2_238_241 set community 0:57358 ip community-list standard 2_78_202 permit 65000:2 0:78 0:202 ip community-list standard 2_101_156 permit 65000:2 0:101 0:156 route-map calculator permit 24555 match community 2_78_202 2_101_156 set community 0:15756 ip community-list standard 2_164_211 permit 65000:2 0:164 0:211 route-map calculator permit 24556 match community 2_164_211 set community 0:34604 ip community-list standard 2_101_206 permit 65000:2 0:101 0:206 ip community-list standard 2_103_202 permit 65000:2 0:103 0:202 route-map calculator permit 24557 match community 2_101_206 2_103_202 set community 0:20806 ip community-list standard 2_94_235 permit 65000:2 0:94 0:235 route-map calculator permit 24558 match community 2_94_235 set community 0:22090 ip community-list standard 2_11_86 permit 65000:2 0:11 0:86 ip community-list standard 2_22_43 permit 65000:2 0:22 0:43 route-map calculator permit 24559 match community 2_11_86 2_22_43 set community 0:946 ip community-list standard 2_135_244 permit 65000:2 0:135 0:244 ip community-list standard 2_180_183 permit 65000:2 0:180 0:183 route-map calculator permit 24560 match community 2_135_244 2_180_183 set community 0:32940 ip community-list standard 2_11_89 permit 65000:2 0:11 0:89 route-map calculator permit 24561 match community 2_11_89 set community 0:979 ip community-list standard 2_91_246 permit 65000:2 0:91 0:246 ip community-list standard 2_123_182 permit 65000:2 0:123 0:182 route-map calculator permit 24562 match community 2_91_246 2_123_182 set community 0:22386 ip community-list standard 2_67_142 permit 65000:2 0:67 0:142 ip community-list standard 2_71_134 permit 65000:2 0:71 0:134 route-map calculator permit 24563 match community 2_67_142 2_71_134 set community 0:9514 ip community-list standard 2_50_186 permit 65000:2 0:50 0:186 ip community-list standard 2_60_155 permit 65000:2 0:60 0:155 ip community-list standard 2_62_150 permit 65000:2 0:62 0:150 ip community-list standard 2_75_124 permit 65000:2 0:75 0:124 ip community-list standard 2_93_100 permit 65000:2 0:93 0:100 route-map calculator permit 24564 match community 2_50_186 2_60_155 2_62_150 2_75_124 2_93_100 set community 0:9300 ip community-list standard 2_52_220 permit 65000:2 0:52 0:220 ip community-list standard 2_55_208 permit 65000:2 0:55 0:208 ip community-list standard 2_65_176 permit 65000:2 0:65 0:176 ip community-list standard 2_80_143 permit 65000:2 0:80 0:143 ip community-list standard 2_88_130 permit 65000:2 0:88 0:130 ip community-list standard 2_104_110 permit 65000:2 0:104 0:110 route-map calculator permit 24565 match community 2_52_220 2_55_208 2_65_176 2_80_143 2_88_130 set community 0:11440 route-map calculator permit 24566 match community 2_104_110 set community 0:11440 ip community-list standard 2_48_137 permit 65000:2 0:48 0:137 route-map calculator permit 24567 match community 2_48_137 set community 0:6576 ip community-list standard 2_43_253 permit 65000:2 0:43 0:253 route-map calculator permit 24568 match community 2_43_253 set community 0:10879 ip community-list standard 2_57_201 permit 65000:2 0:57 0:201 ip community-list standard 2_67_171 permit 65000:2 0:67 0:171 route-map calculator permit 24569 match community 2_57_201 2_67_171 set community 0:11457 ip community-list standard 2_215_233 permit 65000:2 0:215 0:233 route-map calculator permit 24570 match community 2_215_233 set community 0:50095 ip community-list standard 2_25_142 permit 65000:2 0:25 0:142 ip community-list standard 2_50_71 permit 65000:2 0:50 0:71 route-map calculator permit 24571 match community 2_25_142 2_50_71 set community 0:3550 ip community-list standard 2_61_227 permit 65000:2 0:61 0:227 route-map calculator permit 24572 match community 2_61_227 set community 0:13847 ip community-list standard 2_172_203 permit 65000:2 0:172 0:203 route-map calculator permit 24573 match community 2_172_203 set community 0:34916 ip community-list standard 2_3_129 permit 65000:2 0:3 0:129 ip community-list standard 2_9_43 permit 65000:2 0:9 0:43 ip community-list standard 1_131_256 permit 65000:1 0:131 0:256 ip community-list standard 1_132_255 permit 65000:1 0:132 0:255 ip community-list standard 1_133_254 permit 65000:1 0:133 0:254 ip community-list standard 1_134_253 permit 65000:1 0:134 0:253 ip community-list standard 1_135_252 permit 65000:1 0:135 0:252 ip community-list standard 1_136_251 permit 65000:1 0:136 0:251 ip community-list standard 1_137_250 permit 65000:1 0:137 0:250 ip community-list standard 1_138_249 permit 65000:1 0:138 0:249 ip community-list standard 1_139_248 permit 65000:1 0:139 0:248 ip community-list standard 1_140_247 permit 65000:1 0:140 0:247 ip community-list standard 1_141_246 permit 65000:1 0:141 0:246 ip community-list standard 1_142_245 permit 65000:1 0:142 0:245 ip community-list standard 1_143_244 permit 65000:1 0:143 0:244 ip community-list standard 1_144_243 permit 65000:1 0:144 0:243 ip community-list standard 1_145_242 permit 65000:1 0:145 0:242 ip community-list standard 1_146_241 permit 65000:1 0:146 0:241 ip community-list standard 1_147_240 permit 65000:1 0:147 0:240 ip community-list standard 1_148_239 permit 65000:1 0:148 0:239 ip community-list standard 1_149_238 permit 65000:1 0:149 0:238 ip community-list standard 1_150_237 permit 65000:1 0:150 0:237 ip community-list standard 1_151_236 permit 65000:1 0:151 0:236 ip community-list standard 1_152_235 permit 65000:1 0:152 0:235 ip community-list standard 1_153_234 permit 65000:1 0:153 0:234 ip community-list standard 1_154_233 permit 65000:1 0:154 0:233 ip community-list standard 1_155_232 permit 65000:1 0:155 0:232 ip community-list standard 1_156_231 permit 65000:1 0:156 0:231 ip community-list standard 1_157_230 permit 65000:1 0:157 0:230 ip community-list standard 1_158_229 permit 65000:1 0:158 0:229 ip community-list standard 1_159_228 permit 65000:1 0:159 0:228 ip community-list standard 1_160_227 permit 65000:1 0:160 0:227 ip community-list standard 1_161_226 permit 65000:1 0:161 0:226 ip community-list standard 1_162_225 permit 65000:1 0:162 0:225 ip community-list standard 1_163_224 permit 65000:1 0:163 0:224 ip community-list standard 1_164_223 permit 65000:1 0:164 0:223 ip community-list standard 1_165_222 permit 65000:1 0:165 0:222 ip community-list standard 1_166_221 permit 65000:1 0:166 0:221 ip community-list standard 1_167_220 permit 65000:1 0:167 0:220 ip community-list standard 1_168_219 permit 65000:1 0:168 0:219 ip community-list standard 1_169_218 permit 65000:1 0:169 0:218 ip community-list standard 1_170_217 permit 65000:1 0:170 0:217 ip community-list standard 1_171_216 permit 65000:1 0:171 0:216 ip community-list standard 1_172_215 permit 65000:1 0:172 0:215 ip community-list standard 1_173_214 permit 65000:1 0:173 0:214 ip community-list standard 1_174_213 permit 65000:1 0:174 0:213 ip community-list standard 1_175_212 permit 65000:1 0:175 0:212 ip community-list standard 1_176_211 permit 65000:1 0:176 0:211 ip community-list standard 1_177_210 permit 65000:1 0:177 0:210 ip community-list standard 1_178_209 permit 65000:1 0:178 0:209 ip community-list standard 1_179_208 permit 65000:1 0:179 0:208 ip community-list standard 1_180_207 permit 65000:1 0:180 0:207 ip community-list standard 1_181_206 permit 65000:1 0:181 0:206 ip community-list standard 1_182_205 permit 65000:1 0:182 0:205 ip community-list standard 1_183_204 permit 65000:1 0:183 0:204 ip community-list standard 1_184_203 permit 65000:1 0:184 0:203 ip community-list standard 1_185_202 permit 65000:1 0:185 0:202 ip community-list standard 1_186_201 permit 65000:1 0:186 0:201 ip community-list standard 1_187_200 permit 65000:1 0:187 0:200 ip community-list standard 1_188_199 permit 65000:1 0:188 0:199 ip community-list standard 1_189_198 permit 65000:1 0:189 0:198 ip community-list standard 1_190_197 permit 65000:1 0:190 0:197 ip community-list standard 1_191_196 permit 65000:1 0:191 0:196 ip community-list standard 1_192_195 permit 65000:1 0:192 0:195 ip community-list standard 1_193_194 permit 65000:1 0:193 0:194 route-map calculator permit 24574 match community 2_3_129 2_9_43 1_131_256 1_132_255 1_133_254 set community 0:387 route-map calculator permit 24575 match community 1_134_253 1_135_252 1_136_251 1_137_250 1_138_249 set community 0:387 route-map calculator permit 24576 match community 1_139_248 1_140_247 1_141_246 1_142_245 1_143_244 set community 0:387 route-map calculator permit 24577 match community 1_144_243 1_145_242 1_146_241 1_147_240 1_148_239 set community 0:387 route-map calculator permit 24578 match community 1_149_238 1_150_237 1_151_236 1_152_235 1_153_234 set community 0:387 route-map calculator permit 24579 match community 1_154_233 1_155_232 1_156_231 1_157_230 1_158_229 set community 0:387 route-map calculator permit 24580 match community 1_159_228 1_160_227 1_161_226 1_162_225 1_163_224 set community 0:387 route-map calculator permit 24581 match community 1_164_223 1_165_222 1_166_221 1_167_220 1_168_219 set community 0:387 route-map calculator permit 24582 match community 1_169_218 1_170_217 1_171_216 1_172_215 1_173_214 set community 0:387 route-map calculator permit 24583 match community 1_174_213 1_175_212 1_176_211 1_177_210 1_178_209 set community 0:387 route-map calculator permit 24584 match community 1_179_208 1_180_207 1_181_206 1_182_205 1_183_204 set community 0:387 route-map calculator permit 24585 match community 1_184_203 1_185_202 1_186_201 1_187_200 1_188_199 set community 0:387 route-map calculator permit 24586 match community 1_189_198 1_190_197 1_191_196 1_192_195 1_193_194 set community 0:387 ip community-list standard 2_25_208 permit 65000:2 0:25 0:208 ip community-list standard 2_26_200 permit 65000:2 0:26 0:200 ip community-list standard 2_40_130 permit 65000:2 0:40 0:130 ip community-list standard 2_50_104 permit 65000:2 0:50 0:104 ip community-list standard 2_52_100 permit 65000:2 0:52 0:100 ip community-list standard 2_65_80 permit 65000:2 0:65 0:80 route-map calculator permit 24587 match community 2_25_208 2_26_200 2_40_130 2_50_104 2_52_100 set community 0:5200 route-map calculator permit 24588 match community 2_65_80 set community 0:5200 ip community-list standard 2_153_243 permit 65000:2 0:153 0:243 route-map calculator permit 24589 match community 2_153_243 set community 0:37179 ip community-list standard 2_149_201 permit 65000:2 0:149 0:201 route-map calculator permit 24590 match community 2_149_201 set community 0:29949 ip community-list standard 2_26_181 permit 65000:2 0:26 0:181 route-map calculator permit 24591 match community 2_26_181 set community 0:4706 ip community-list standard 2_7_106 permit 65000:2 0:7 0:106 ip community-list standard 2_14_53 permit 65000:2 0:14 0:53 route-map calculator permit 24592 match community 2_7_106 2_14_53 set community 0:742 ip community-list standard 2_34_191 permit 65000:2 0:34 0:191 route-map calculator permit 24593 match community 2_34_191 set community 0:6494 ip community-list standard 2_40_253 permit 65000:2 0:40 0:253 ip community-list standard 2_44_230 permit 65000:2 0:44 0:230 ip community-list standard 2_46_220 permit 65000:2 0:46 0:220 ip community-list standard 2_55_184 permit 65000:2 0:55 0:184 ip community-list standard 2_88_115 permit 65000:2 0:88 0:115 ip community-list standard 2_92_110 permit 65000:2 0:92 0:110 route-map calculator permit 24594 match community 2_40_253 2_44_230 2_46_220 2_55_184 2_88_115 set community 0:10120 route-map calculator permit 24595 match community 2_92_110 set community 0:10120 ip community-list standard 2_148_237 permit 65000:2 0:148 0:237 ip community-list standard 2_158_222 permit 65000:2 0:158 0:222 route-map calculator permit 24596 match community 2_148_237 2_158_222 set community 0:35076 ip community-list standard 2_31_256 permit 65000:2 0:31 0:256 ip community-list standard 2_32_248 permit 65000:2 0:32 0:248 ip community-list standard 2_62_128 permit 65000:2 0:62 0:128 ip community-list standard 2_64_124 permit 65000:2 0:64 0:124 route-map calculator permit 24597 match community 2_31_256 2_32_248 2_62_128 2_64_124 set community 0:7936 ip community-list standard 1_1_63 permit 65000:1 0:1 0:63 ip community-list standard 2_1_64 permit 65000:2 0:1 0:64 ip community-list standard 2_2_32 permit 65000:2 0:2 0:32 ip community-list standard 1_2_62 permit 65000:1 0:2 0:62 ip community-list standard 1_3_61 permit 65000:1 0:3 0:61 ip community-list standard 2_4_16 permit 65000:2 0:4 0:16 ip community-list standard 1_4_60 permit 65000:1 0:4 0:60 ip community-list standard 1_5_59 permit 65000:1 0:5 0:59 ip community-list standard 1_6_58 permit 65000:1 0:6 0:58 ip community-list standard 1_7_57 permit 65000:1 0:7 0:57 ip community-list standard 2_8_8 permit 65000:2 0:8 0:8 ip community-list standard 1_8_56 permit 65000:1 0:8 0:56 ip community-list standard 1_9_55 permit 65000:1 0:9 0:55 ip community-list standard 1_10_54 permit 65000:1 0:10 0:54 ip community-list standard 1_11_53 permit 65000:1 0:11 0:53 ip community-list standard 1_12_52 permit 65000:1 0:12 0:52 ip community-list standard 1_13_51 permit 65000:1 0:13 0:51 ip community-list standard 1_14_50 permit 65000:1 0:14 0:50 ip community-list standard 1_15_49 permit 65000:1 0:15 0:49 ip community-list standard 1_16_48 permit 65000:1 0:16 0:48 ip community-list standard 1_17_47 permit 65000:1 0:17 0:47 ip community-list standard 1_18_46 permit 65000:1 0:18 0:46 ip community-list standard 1_19_45 permit 65000:1 0:19 0:45 ip community-list standard 1_20_44 permit 65000:1 0:20 0:44 ip community-list standard 1_21_43 permit 65000:1 0:21 0:43 ip community-list standard 1_22_42 permit 65000:1 0:22 0:42 ip community-list standard 1_23_41 permit 65000:1 0:23 0:41 ip community-list standard 1_24_40 permit 65000:1 0:24 0:40 ip community-list standard 1_25_39 permit 65000:1 0:25 0:39 ip community-list standard 1_26_38 permit 65000:1 0:26 0:38 ip community-list standard 1_27_37 permit 65000:1 0:27 0:37 ip community-list standard 1_28_36 permit 65000:1 0:28 0:36 ip community-list standard 1_29_35 permit 65000:1 0:29 0:35 ip community-list standard 1_30_34 permit 65000:1 0:30 0:34 ip community-list standard 1_31_33 permit 65000:1 0:31 0:33 ip community-list standard 1_32_32 permit 65000:1 0:32 0:32 ip community-list expanded c64 permit 1 ^65000:4_0:64_0:1$ ip community-list expanded c64 permit 2 ^65000:3_0:65_0:1$ ip community-list expanded c64 permit 3 ^65000:3_0:66_0:2$ ip community-list expanded c64 permit 4 ^65000:3_0:67_0:3$ ip community-list expanded c64 permit 5 ^65000:3_0:68_0:4$ ip community-list expanded c64 permit 6 ^65000:3_0:69_0:5$ ip community-list expanded c64 permit 7 ^65000:3_0:70_0:6$ ip community-list expanded c64 permit 8 ^65000:3_0:71_0:7$ ip community-list expanded c64 permit 9 ^65000:3_0:72_0:8$ ip community-list expanded c64 permit 10 ^65000:3_0:73_0:9$ ip community-list expanded c64 permit 11 ^65000:3_0:74_0:10$ ip community-list expanded c64 permit 12 ^65000:3_0:75_0:11$ ip community-list expanded c64 permit 13 ^65000:3_0:76_0:12$ ip community-list expanded c64 permit 14 ^65000:3_0:77_0:13$ ip community-list expanded c64 permit 15 ^65000:3_0:78_0:14$ ip community-list expanded c64 permit 16 ^65000:3_0:79_0:15$ ip community-list expanded c64 permit 17 ^65000:3_0:80_0:16$ ip community-list expanded c64 permit 18 ^65000:3_0:81_0:17$ ip community-list expanded c64 permit 19 ^65000:3_0:82_0:18$ ip community-list expanded c64 permit 20 ^65000:3_0:83_0:19$ ip community-list expanded c64 permit 21 ^65000:3_0:84_0:20$ ip community-list expanded c64 permit 22 ^65000:3_0:85_0:21$ ip community-list expanded c64 permit 23 ^65000:3_0:86_0:22$ ip community-list expanded c64 permit 24 ^65000:3_0:87_0:23$ ip community-list expanded c64 permit 25 ^65000:3_0:88_0:24$ ip community-list expanded c64 permit 26 ^65000:3_0:89_0:25$ ip community-list expanded c64 permit 27 ^65000:3_0:90_0:26$ ip community-list expanded c64 permit 28 ^65000:3_0:91_0:27$ ip community-list expanded c64 permit 29 ^65000:3_0:92_0:28$ ip community-list expanded c64 permit 30 ^65000:3_0:93_0:29$ ip community-list expanded c64 permit 31 ^65000:3_0:94_0:30$ ip community-list expanded c64 permit 32 ^65000:3_0:95_0:31$ ip community-list expanded c64 permit 33 ^65000:3_0:96_0:32$ ip community-list expanded c64 permit 34 ^65000:3_0:97_0:33$ ip community-list expanded c64 permit 35 ^65000:3_0:98_0:34$ ip community-list expanded c64 permit 36 ^65000:3_0:99_0:35$ ip community-list expanded c64 permit 37 ^65000:3_0:100_0:36$ ip community-list expanded c64 permit 38 ^65000:3_0:101_0:37$ ip community-list expanded c64 permit 39 ^65000:3_0:102_0:38$ ip community-list expanded c64 permit 40 ^65000:3_0:103_0:39$ ip community-list expanded c64 permit 41 ^65000:3_0:104_0:40$ ip community-list expanded c64 permit 42 ^65000:3_0:105_0:41$ ip community-list expanded c64 permit 43 ^65000:3_0:106_0:42$ ip community-list expanded c64 permit 44 ^65000:3_0:107_0:43$ ip community-list expanded c64 permit 45 ^65000:3_0:108_0:44$ ip community-list expanded c64 permit 46 ^65000:3_0:109_0:45$ ip community-list expanded c64 permit 47 ^65000:3_0:110_0:46$ ip community-list expanded c64 permit 48 ^65000:3_0:111_0:47$ ip community-list expanded c64 permit 49 ^65000:3_0:112_0:48$ ip community-list expanded c64 permit 50 ^65000:3_0:113_0:49$ ip community-list expanded c64 permit 51 ^65000:3_0:114_0:50$ ip community-list expanded c64 permit 52 ^65000:3_0:115_0:51$ ip community-list expanded c64 permit 53 ^65000:3_0:116_0:52$ ip community-list expanded c64 permit 54 ^65000:3_0:117_0:53$ ip community-list expanded c64 permit 55 ^65000:3_0:118_0:54$ ip community-list expanded c64 permit 56 ^65000:3_0:119_0:55$ ip community-list expanded c64 permit 57 ^65000:3_0:120_0:56$ ip community-list expanded c64 permit 58 ^65000:3_0:121_0:57$ ip community-list expanded c64 permit 59 ^65000:3_0:122_0:58$ ip community-list expanded c64 permit 60 ^65000:3_0:123_0:59$ ip community-list expanded c64 permit 61 ^65000:3_0:124_0:60$ ip community-list expanded c64 permit 62 ^65000:3_0:125_0:61$ ip community-list expanded c64 permit 63 ^65000:3_0:126_0:62$ ip community-list expanded c64 permit 64 ^65000:3_0:127_0:63$ ip community-list expanded c64 permit 65 ^65000:4_0:128_0:2$ ip community-list expanded c64 permit 66 ^65000:3_0:128_0:64$ ip community-list expanded c64 permit 67 ^65000:4_0:129_0:2$ ip community-list expanded c64 permit 68 ^65000:3_0:129_0:65$ ip community-list expanded c64 permit 69 ^65000:3_0:130_0:66$ ip community-list expanded c64 permit 70 ^65000:3_0:131_0:67$ ip community-list expanded c64 permit 71 ^65000:3_0:132_0:68$ ip community-list expanded c64 permit 72 ^65000:3_0:133_0:69$ ip community-list expanded c64 permit 73 ^65000:3_0:134_0:70$ ip community-list expanded c64 permit 74 ^65000:3_0:135_0:71$ ip community-list expanded c64 permit 75 ^65000:3_0:136_0:72$ ip community-list expanded c64 permit 76 ^65000:3_0:137_0:73$ ip community-list expanded c64 permit 77 ^65000:3_0:138_0:74$ ip community-list expanded c64 permit 78 ^65000:3_0:139_0:75$ ip community-list expanded c64 permit 79 ^65000:3_0:140_0:76$ ip community-list expanded c64 permit 80 ^65000:3_0:141_0:77$ ip community-list expanded c64 permit 81 ^65000:3_0:142_0:78$ ip community-list expanded c64 permit 82 ^65000:3_0:143_0:79$ ip community-list expanded c64 permit 83 ^65000:3_0:144_0:80$ ip community-list expanded c64 permit 84 ^65000:3_0:145_0:81$ ip community-list expanded c64 permit 85 ^65000:3_0:146_0:82$ ip community-list expanded c64 permit 86 ^65000:3_0:147_0:83$ ip community-list expanded c64 permit 87 ^65000:3_0:148_0:84$ ip community-list expanded c64 permit 88 ^65000:3_0:149_0:85$ ip community-list expanded c64 permit 89 ^65000:3_0:150_0:86$ ip community-list expanded c64 permit 90 ^65000:3_0:151_0:87$ ip community-list expanded c64 permit 91 ^65000:3_0:152_0:88$ ip community-list expanded c64 permit 92 ^65000:3_0:153_0:89$ ip community-list expanded c64 permit 93 ^65000:3_0:154_0:90$ ip community-list expanded c64 permit 94 ^65000:3_0:155_0:91$ ip community-list expanded c64 permit 95 ^65000:3_0:156_0:92$ ip community-list expanded c64 permit 96 ^65000:3_0:157_0:93$ ip community-list expanded c64 permit 97 ^65000:3_0:158_0:94$ ip community-list expanded c64 permit 98 ^65000:3_0:159_0:95$ ip community-list expanded c64 permit 99 ^65000:3_0:160_0:96$ ip community-list expanded c64 permit 100 ^65000:3_0:161_0:97$ ip community-list expanded c64 permit 101 ^65000:3_0:162_0:98$ ip community-list expanded c64 permit 102 ^65000:3_0:163_0:99$ ip community-list expanded c64 permit 103 ^65000:3_0:164_0:100$ ip community-list expanded c64 permit 104 ^65000:3_0:165_0:101$ ip community-list expanded c64 permit 105 ^65000:3_0:166_0:102$ ip community-list expanded c64 permit 106 ^65000:3_0:167_0:103$ ip community-list expanded c64 permit 107 ^65000:3_0:168_0:104$ ip community-list expanded c64 permit 108 ^65000:3_0:169_0:105$ ip community-list expanded c64 permit 109 ^65000:3_0:170_0:106$ ip community-list expanded c64 permit 110 ^65000:3_0:171_0:107$ ip community-list expanded c64 permit 111 ^65000:3_0:172_0:108$ ip community-list expanded c64 permit 112 ^65000:3_0:173_0:109$ ip community-list expanded c64 permit 113 ^65000:3_0:174_0:110$ ip community-list expanded c64 permit 114 ^65000:3_0:175_0:111$ ip community-list expanded c64 permit 115 ^65000:3_0:176_0:112$ ip community-list expanded c64 permit 116 ^65000:3_0:177_0:113$ ip community-list expanded c64 permit 117 ^65000:3_0:178_0:114$ ip community-list expanded c64 permit 118 ^65000:3_0:179_0:115$ ip community-list expanded c64 permit 119 ^65000:3_0:180_0:116$ ip community-list expanded c64 permit 120 ^65000:3_0:181_0:117$ ip community-list expanded c64 permit 121 ^65000:3_0:182_0:118$ ip community-list expanded c64 permit 122 ^65000:3_0:183_0:119$ ip community-list expanded c64 permit 123 ^65000:3_0:184_0:120$ ip community-list expanded c64 permit 124 ^65000:3_0:185_0:121$ ip community-list expanded c64 permit 125 ^65000:3_0:186_0:122$ ip community-list expanded c64 permit 126 ^65000:3_0:187_0:123$ ip community-list expanded c64 permit 127 ^65000:3_0:188_0:124$ ip community-list expanded c64 permit 128 ^65000:3_0:189_0:125$ ip community-list expanded c64 permit 129 ^65000:3_0:190_0:126$ ip community-list expanded c64 permit 130 ^65000:3_0:191_0:127$ ip community-list expanded c64 permit 131 ^65000:4_0:192_0:3$ ip community-list expanded c64 permit 132 ^65000:3_0:192_0:128$ ip community-list expanded c64 permit 133 ^65000:4_0:193_0:3$ ip community-list expanded c64 permit 134 ^65000:3_0:193_0:129$ ip community-list expanded c64 permit 135 ^65000:4_0:194_0:3$ ip community-list expanded c64 permit 136 ^65000:3_0:194_0:130$ ip community-list expanded c64 permit 137 ^65000:3_0:195_0:131$ ip community-list expanded c64 permit 138 ^65000:3_0:196_0:132$ ip community-list expanded c64 permit 139 ^65000:3_0:197_0:133$ ip community-list expanded c64 permit 140 ^65000:3_0:198_0:134$ ip community-list expanded c64 permit 141 ^65000:3_0:199_0:135$ ip community-list expanded c64 permit 142 ^65000:3_0:200_0:136$ ip community-list expanded c64 permit 143 ^65000:3_0:201_0:137$ ip community-list expanded c64 permit 144 ^65000:3_0:202_0:138$ ip community-list expanded c64 permit 145 ^65000:3_0:203_0:139$ ip community-list expanded c64 permit 146 ^65000:3_0:204_0:140$ ip community-list expanded c64 permit 147 ^65000:3_0:205_0:141$ ip community-list expanded c64 permit 148 ^65000:3_0:206_0:142$ ip community-list expanded c64 permit 149 ^65000:3_0:207_0:143$ ip community-list expanded c64 permit 150 ^65000:3_0:208_0:144$ ip community-list expanded c64 permit 151 ^65000:3_0:209_0:145$ ip community-list expanded c64 permit 152 ^65000:3_0:210_0:146$ ip community-list expanded c64 permit 153 ^65000:3_0:211_0:147$ ip community-list expanded c64 permit 154 ^65000:3_0:212_0:148$ ip community-list expanded c64 permit 155 ^65000:3_0:213_0:149$ ip community-list expanded c64 permit 156 ^65000:3_0:214_0:150$ ip community-list expanded c64 permit 157 ^65000:3_0:215_0:151$ ip community-list expanded c64 permit 158 ^65000:3_0:216_0:152$ ip community-list expanded c64 permit 159 ^65000:3_0:217_0:153$ ip community-list expanded c64 permit 160 ^65000:3_0:218_0:154$ ip community-list expanded c64 permit 161 ^65000:3_0:219_0:155$ ip community-list expanded c64 permit 162 ^65000:3_0:220_0:156$ ip community-list expanded c64 permit 163 ^65000:3_0:221_0:157$ ip community-list expanded c64 permit 164 ^65000:3_0:222_0:158$ ip community-list expanded c64 permit 165 ^65000:3_0:223_0:159$ ip community-list expanded c64 permit 166 ^65000:3_0:224_0:160$ ip community-list expanded c64 permit 167 ^65000:3_0:225_0:161$ ip community-list expanded c64 permit 168 ^65000:3_0:226_0:162$ ip community-list expanded c64 permit 169 ^65000:3_0:227_0:163$ ip community-list expanded c64 permit 170 ^65000:3_0:228_0:164$ ip community-list expanded c64 permit 171 ^65000:3_0:229_0:165$ ip community-list expanded c64 permit 172 ^65000:3_0:230_0:166$ ip community-list expanded c64 permit 173 ^65000:3_0:231_0:167$ ip community-list expanded c64 permit 174 ^65000:3_0:232_0:168$ ip community-list expanded c64 permit 175 ^65000:3_0:233_0:169$ ip community-list expanded c64 permit 176 ^65000:3_0:234_0:170$ ip community-list expanded c64 permit 177 ^65000:3_0:235_0:171$ ip community-list expanded c64 permit 178 ^65000:3_0:236_0:172$ ip community-list expanded c64 permit 179 ^65000:3_0:237_0:173$ ip community-list expanded c64 permit 180 ^65000:3_0:238_0:174$ ip community-list expanded c64 permit 181 ^65000:3_0:239_0:175$ ip community-list expanded c64 permit 182 ^65000:3_0:240_0:176$ ip community-list expanded c64 permit 183 ^65000:3_0:241_0:177$ ip community-list expanded c64 permit 184 ^65000:3_0:242_0:178$ ip community-list expanded c64 permit 185 ^65000:3_0:243_0:179$ ip community-list expanded c64 permit 186 ^65000:3_0:244_0:180$ ip community-list expanded c64 permit 187 ^65000:3_0:245_0:181$ ip community-list expanded c64 permit 188 ^65000:3_0:246_0:182$ ip community-list expanded c64 permit 189 ^65000:3_0:247_0:183$ ip community-list expanded c64 permit 190 ^65000:3_0:248_0:184$ ip community-list expanded c64 permit 191 ^65000:3_0:249_0:185$ ip community-list expanded c64 permit 192 ^65000:3_0:250_0:186$ ip community-list expanded c64 permit 193 ^65000:3_0:251_0:187$ ip community-list expanded c64 permit 194 ^65000:3_0:252_0:188$ ip community-list expanded c64 permit 195 ^65000:3_0:253_0:189$ ip community-list expanded c64 permit 196 ^65000:3_0:254_0:190$ ip community-list expanded c64 permit 197 ^65000:3_0:255_0:191$ ip community-list expanded c64 permit 198 ^65000:4_0:256_0:4$ ip community-list expanded c64 permit 199 ^65000:3_0:256_0:192$ route-map calculator permit 24598 match community 1_1_63 2_1_64 2_2_32 1_2_62 1_3_61 set community 0:64 route-map calculator permit 24599 match community 2_4_16 1_4_60 1_5_59 1_6_58 1_7_57 set community 0:64 route-map calculator permit 24600 match community 2_8_8 1_8_56 1_9_55 1_10_54 1_11_53 set community 0:64 route-map calculator permit 24601 match community 1_12_52 1_13_51 1_14_50 1_15_49 1_16_48 set community 0:64 route-map calculator permit 24602 match community 1_17_47 1_18_46 1_19_45 1_20_44 1_21_43 set community 0:64 route-map calculator permit 24603 match community 1_22_42 1_23_41 1_24_40 1_25_39 1_26_38 set community 0:64 route-map calculator permit 24604 match community 1_27_37 1_28_36 1_29_35 1_30_34 1_31_33 set community 0:64 route-map calculator permit 24605 match community 1_32_32 c4_64_1 c3_65_1 c3_66_2 c3_67_3 set community 0:64 route-map calculator permit 24606 match community c3_68_4 c3_69_5 c3_70_6 c3_71_7 c3_72_8 set community 0:64 route-map calculator permit 24607 match community c3_73_9 c3_74_10 c3_75_11 c3_76_12 c3_77_13 set community 0:64 route-map calculator permit 24608 match community c3_78_14 c3_79_15 c3_80_16 c3_81_17 c3_82_18 set community 0:64 route-map calculator permit 24609 match community c3_83_19 c3_84_20 c3_85_21 c3_86_22 c3_87_23 set community 0:64 route-map calculator permit 24610 match community c3_88_24 c3_89_25 c3_90_26 c3_91_27 c3_92_28 set community 0:64 route-map calculator permit 24611 match community c3_93_29 c3_94_30 c3_95_31 c3_96_32 c3_97_33 set community 0:64 route-map calculator permit 24612 match community c3_98_34 c3_99_35 c3_100_36 c3_101_37 c3_102_38 set community 0:64 route-map calculator permit 24613 match community c3_103_39 c3_104_40 c3_105_41 c3_106_42 c3_107_43 set community 0:64 route-map calculator permit 24614 match community c3_108_44 c3_109_45 c3_110_46 c3_111_47 c3_112_48 set community 0:64 route-map calculator permit 24615 match community c3_113_49 c3_114_50 c3_115_51 c3_116_52 c3_117_53 set community 0:64 route-map calculator permit 24616 match community c3_118_54 c3_119_55 c3_120_56 c3_121_57 c3_122_58 set community 0:64 route-map calculator permit 24617 match community c3_123_59 c3_124_60 c3_125_61 c3_126_62 c3_127_63 set community 0:64 route-map calculator permit 24618 match community c4_128_2 c3_128_64 c4_129_2 c3_129_65 c3_130_66 set community 0:64 route-map calculator permit 24619 match community c3_131_67 c3_132_68 c3_133_69 c3_134_70 c3_135_71 set community 0:64 route-map calculator permit 24620 match community c3_136_72 c3_137_73 c3_138_74 c3_139_75 c3_140_76 set community 0:64 route-map calculator permit 24621 match community c3_141_77 c3_142_78 c3_143_79 c3_144_80 c3_145_81 set community 0:64 route-map calculator permit 24622 match community c3_146_82 c3_147_83 c3_148_84 c3_149_85 c3_150_86 set community 0:64 route-map calculator permit 24623 match community c3_151_87 c3_152_88 c3_153_89 c3_154_90 c3_155_91 set community 0:64 route-map calculator permit 24624 match community c3_156_92 c3_157_93 c3_158_94 c3_159_95 c3_160_96 set community 0:64 route-map calculator permit 24625 match community c3_161_97 c3_162_98 c3_163_99 c3_164_100 c3_165_101 set community 0:64 route-map calculator permit 24626 match community c3_166_102 c3_167_103 c3_168_104 c3_169_105 c3_170_106 set community 0:64 route-map calculator permit 24627 match community c3_171_107 c3_172_108 c3_173_109 c3_174_110 c3_175_111 set community 0:64 route-map calculator permit 24628 match community c3_176_112 c3_177_113 c3_178_114 c3_179_115 c3_180_116 set community 0:64 route-map calculator permit 24629 match community c3_181_117 c3_182_118 c3_183_119 c3_184_120 c3_185_121 set community 0:64 route-map calculator permit 24630 match community c3_186_122 c3_187_123 c3_188_124 c3_189_125 c3_190_126 set community 0:64 route-map calculator permit 24631 match community c3_191_127 c4_192_3 c3_192_128 c4_193_3 c3_193_129 set community 0:64 route-map calculator permit 24632 match community c4_194_3 c3_194_130 c3_195_131 c3_196_132 c3_197_133 set community 0:64 route-map calculator permit 24633 match community c3_198_134 c3_199_135 c3_200_136 c3_201_137 c3_202_138 set community 0:64 route-map calculator permit 24634 match community c3_203_139 c3_204_140 c3_205_141 c3_206_142 c3_207_143 set community 0:64 route-map calculator permit 24635 match community c3_208_144 c3_209_145 c3_210_146 c3_211_147 c3_212_148 set community 0:64 route-map calculator permit 24636 match community c3_213_149 c3_214_150 c3_215_151 c3_216_152 c3_217_153 set community 0:64 route-map calculator permit 24637 match community c3_218_154 c3_219_155 c3_220_156 c3_221_157 c3_222_158 set community 0:64 route-map calculator permit 24638 match community c3_223_159 c3_224_160 c3_225_161 c3_226_162 c3_227_163 set community 0:64 route-map calculator permit 24639 match community c3_228_164 c3_229_165 c3_230_166 c3_231_167 c3_232_168 set community 0:64 route-map calculator permit 24640 match community c3_233_169 c3_234_170 c3_235_171 c3_236_172 c3_237_173 set community 0:64 route-map calculator permit 24641 match community c3_238_174 c3_239_175 c3_240_176 c3_241_177 c3_242_178 set community 0:64 route-map calculator permit 24642 match community c3_243_179 c3_244_180 c3_245_181 c3_246_182 c3_247_183 set community 0:64 route-map calculator permit 24643 match community c3_248_184 c3_249_185 c3_250_186 c3_251_187 c3_252_188 set community 0:64 route-map calculator permit 24644 match community c3_253_189 c3_254_190 c3_255_191 c4_256_4 c3_256_192 set community 0:64 ip community-list standard 2_104_181 permit 65000:2 0:104 0:181 route-map calculator permit 24645 match community 2_104_181 set community 0:18824 ip community-list standard 2_193_224 permit 65000:2 0:193 0:224 route-map calculator permit 24646 match community 2_193_224 set community 0:43232 ip community-list standard 2_25_211 permit 65000:2 0:25 0:211 route-map calculator permit 24647 match community 2_25_211 set community 0:5275 ip community-list standard 2_134_196 permit 65000:2 0:134 0:196 route-map calculator permit 24648 match community 2_134_196 set community 0:26264 ip community-list standard 2_201_250 permit 65000:2 0:201 0:250 route-map calculator permit 24649 match community 2_201_250 set community 0:50250 ip community-list standard 2_17_214 permit 65000:2 0:17 0:214 ip community-list standard 2_34_107 permit 65000:2 0:34 0:107 route-map calculator permit 24650 match community 2_17_214 2_34_107 set community 0:3638 ip community-list standard 2_155_193 permit 65000:2 0:155 0:193 route-map calculator permit 24651 match community 2_155_193 set community 0:29915 ip community-list standard 2_78_241 permit 65000:2 0:78 0:241 route-map calculator permit 24652 match community 2_78_241 set community 0:18798 ip community-list standard 2_177_214 permit 65000:2 0:177 0:214 route-map calculator permit 24653 match community 2_177_214 set community 0:37878 ip community-list standard 2_93_245 permit 65000:2 0:93 0:245 ip community-list standard 2_105_217 permit 65000:2 0:105 0:217 ip community-list standard 2_147_155 permit 65000:2 0:147 0:155 route-map calculator permit 24654 match community 2_93_245 2_105_217 2_147_155 set community 0:22785 ip community-list standard 2_90_159 permit 65000:2 0:90 0:159 ip community-list standard 2_106_135 permit 65000:2 0:106 0:135 route-map calculator permit 24655 match community 2_90_159 2_106_135 set community 0:14310 ip community-list standard 2_30_229 permit 65000:2 0:30 0:229 route-map calculator permit 24656 match community 2_30_229 set community 0:6870 ip community-list standard 2_74_246 permit 65000:2 0:74 0:246 ip community-list standard 2_82_222 permit 65000:2 0:82 0:222 ip community-list standard 2_111_164 permit 65000:2 0:111 0:164 ip community-list standard 2_123_148 permit 65000:2 0:123 0:148 route-map calculator permit 24657 match community 2_74_246 2_82_222 2_111_164 2_123_148 set community 0:18204 ip community-list standard 2_38_224 permit 65000:2 0:38 0:224 ip community-list standard 2_56_152 permit 65000:2 0:56 0:152 ip community-list standard 2_64_133 permit 65000:2 0:64 0:133 ip community-list standard 2_76_112 permit 65000:2 0:76 0:112 route-map calculator permit 24658 match community 2_38_224 2_56_152 2_64_133 2_76_112 set community 0:8512 ip community-list standard 2_187_243 permit 65000:2 0:187 0:243 route-map calculator permit 24659 match community 2_187_243 set community 0:45441 ip community-list standard 2_86_236 permit 65000:2 0:86 0:236 ip community-list standard 2_118_172 permit 65000:2 0:118 0:172 route-map calculator permit 24660 match community 2_86_236 2_118_172 set community 0:20296 ip community-list standard 2_19_138 permit 65000:2 0:19 0:138 ip community-list standard 2_23_114 permit 65000:2 0:23 0:114 ip community-list standard 2_38_69 permit 65000:2 0:38 0:69 ip community-list standard 2_46_57 permit 65000:2 0:46 0:57 route-map calculator permit 24661 match community 2_19_138 2_23_114 2_38_69 2_46_57 set community 0:2622 ip community-list standard 2_163_213 permit 65000:2 0:163 0:213 route-map calculator permit 24662 match community 2_163_213 set community 0:34719 ip community-list standard 2_149_239 permit 65000:2 0:149 0:239 route-map calculator permit 24663 match community 2_149_239 set community 0:35611 ip community-list standard 2_154_157 permit 65000:2 0:154 0:157 route-map calculator permit 24664 match community 2_154_157 set community 0:24178 ip community-list standard 2_20_217 permit 65000:2 0:20 0:217 ip community-list standard 2_28_155 permit 65000:2 0:28 0:155 ip community-list standard 2_31_140 permit 65000:2 0:31 0:140 ip community-list standard 2_35_124 permit 65000:2 0:35 0:124 ip community-list standard 2_62_70 permit 65000:2 0:62 0:70 route-map calculator permit 24665 match community 2_20_217 2_28_155 2_31_140 2_35_124 2_62_70 set community 0:4340 ip community-list standard 2_209_239 permit 65000:2 0:209 0:239 route-map calculator permit 24666 match community 2_209_239 set community 0:49951 ip community-list standard 2_8_142 permit 65000:2 0:8 0:142 ip community-list standard 2_16_71 permit 65000:2 0:16 0:71 route-map calculator permit 24667 match community 2_8_142 2_16_71 set community 0:1136 ip community-list standard 2_7_129 permit 65000:2 0:7 0:129 ip community-list standard 2_21_43 permit 65000:2 0:21 0:43 route-map calculator permit 24668 match community 2_7_129 2_21_43 set community 0:903 ip community-list standard 2_86_184 permit 65000:2 0:86 0:184 ip community-list standard 2_92_172 permit 65000:2 0:92 0:172 route-map calculator permit 24669 match community 2_86_184 2_92_172 set community 0:15824 ip community-list standard 2_3_242 permit 65000:2 0:3 0:242 ip community-list standard 2_6_121 permit 65000:2 0:6 0:121 ip community-list standard 2_11_66 permit 65000:2 0:11 0:66 ip community-list standard 2_22_33 permit 65000:2 0:22 0:33 route-map calculator permit 24670 match community 2_3_242 2_6_121 2_11_66 2_22_33 set community 0:726 ip community-list standard 2_200_226 permit 65000:2 0:200 0:226 route-map calculator permit 24671 match community 2_200_226 set community 0:45200 ip community-list standard 2_130_208 permit 65000:2 0:130 0:208 ip community-list standard 2_160_169 permit 65000:2 0:160 0:169 route-map calculator permit 24672 match community 2_130_208 2_160_169 set community 0:27040 ip community-list standard 2_23_109 permit 65000:2 0:23 0:109 route-map calculator permit 24673 match community 2_23_109 set community 0:2507 ip community-list standard 2_189_193 permit 65000:2 0:189 0:193 route-map calculator permit 24674 match community 2_189_193 set community 0:36477 ip community-list standard 1_1_5 permit 65000:1 0:1 0:5 ip community-list standard 2_1_6 permit 65000:2 0:1 0:6 ip community-list standard 2_2_3 permit 65000:2 0:2 0:3 ip community-list standard 1_2_4 permit 65000:1 0:2 0:4 ip community-list standard 1_3_3 permit 65000:1 0:3 0:3 ip community-list expanded c6 permit 1 ^65000:4_0:6_0:1$ ip community-list expanded c6 permit 2 ^65000:3_0:7_0:1$ ip community-list expanded c6 permit 3 ^65000:3_0:8_0:2$ ip community-list expanded c6 permit 4 ^65000:3_0:9_0:3$ ip community-list expanded c6 permit 5 ^65000:3_0:10_0:4$ ip community-list expanded c6 permit 6 ^65000:3_0:11_0:5$ ip community-list expanded c6 permit 7 ^65000:4_0:12_0:2$ ip community-list expanded c6 permit 8 ^65000:3_0:12_0:6$ ip community-list expanded c6 permit 9 ^65000:4_0:13_0:2$ ip community-list expanded c6 permit 10 ^65000:3_0:13_0:7$ ip community-list expanded c6 permit 11 ^65000:3_0:14_0:8$ ip community-list expanded c6 permit 12 ^65000:3_0:15_0:9$ ip community-list expanded c6 permit 13 ^65000:3_0:16_0:10$ ip community-list expanded c6 permit 14 ^65000:3_0:17_0:11$ ip community-list expanded c6 permit 15 ^65000:4_0:18_0:3$ ip community-list expanded c6 permit 16 ^65000:3_0:18_0:12$ ip community-list expanded c6 permit 17 ^65000:4_0:19_0:3$ ip community-list expanded c6 permit 18 ^65000:3_0:19_0:13$ ip community-list expanded c6 permit 19 ^65000:4_0:20_0:3$ ip community-list expanded c6 permit 20 ^65000:3_0:20_0:14$ ip community-list expanded c6 permit 21 ^65000:3_0:21_0:15$ ip community-list expanded c6 permit 22 ^65000:3_0:22_0:16$ ip community-list expanded c6 permit 23 ^65000:3_0:23_0:17$ ip community-list expanded c6 permit 24 ^65000:4_0:24_0:4$ ip community-list expanded c6 permit 25 ^65000:3_0:24_0:18$ ip community-list expanded c6 permit 26 ^65000:4_0:25_0:4$ ip community-list expanded c6 permit 27 ^65000:3_0:25_0:19$ ip community-list expanded c6 permit 28 ^65000:4_0:26_0:4$ ip community-list expanded c6 permit 29 ^65000:3_0:26_0:20$ ip community-list expanded c6 permit 30 ^65000:4_0:27_0:4$ ip community-list expanded c6 permit 31 ^65000:3_0:27_0:21$ ip community-list expanded c6 permit 32 ^65000:3_0:28_0:22$ ip community-list expanded c6 permit 33 ^65000:3_0:29_0:23$ ip community-list expanded c6 permit 34 ^65000:4_0:30_0:5$ ip community-list expanded c6 permit 35 ^65000:3_0:30_0:24$ ip community-list expanded c6 permit 36 ^65000:4_0:31_0:5$ ip community-list expanded c6 permit 37 ^65000:3_0:31_0:25$ ip community-list expanded c6 permit 38 ^65000:4_0:32_0:5$ ip community-list expanded c6 permit 39 ^65000:3_0:32_0:26$ ip community-list expanded c6 permit 40 ^65000:4_0:33_0:5$ ip community-list expanded c6 permit 41 ^65000:3_0:33_0:27$ ip community-list expanded c6 permit 42 ^65000:4_0:34_0:5$ ip community-list expanded c6 permit 43 ^65000:3_0:34_0:28$ ip community-list expanded c6 permit 44 ^65000:3_0:35_0:29$ ip community-list expanded c6 permit 45 ^65000:4_0:36_0:6$ ip community-list expanded c6 permit 46 ^65000:3_0:36_0:30$ ip community-list expanded c6 permit 47 ^65000:4_0:37_0:6$ ip community-list expanded c6 permit 48 ^65000:3_0:37_0:31$ ip community-list expanded c6 permit 49 ^65000:4_0:38_0:6$ ip community-list expanded c6 permit 50 ^65000:3_0:38_0:32$ ip community-list expanded c6 permit 51 ^65000:4_0:39_0:6$ ip community-list expanded c6 permit 52 ^65000:3_0:39_0:33$ ip community-list expanded c6 permit 53 ^65000:4_0:40_0:6$ ip community-list expanded c6 permit 54 ^65000:3_0:40_0:34$ ip community-list expanded c6 permit 55 ^65000:4_0:41_0:6$ ip community-list expanded c6 permit 56 ^65000:3_0:41_0:35$ ip community-list expanded c6 permit 57 ^65000:4_0:42_0:7$ ip community-list expanded c6 permit 58 ^65000:3_0:42_0:36$ ip community-list expanded c6 permit 59 ^65000:4_0:43_0:7$ ip community-list expanded c6 permit 60 ^65000:3_0:43_0:37$ ip community-list expanded c6 permit 61 ^65000:4_0:44_0:7$ ip community-list expanded c6 permit 62 ^65000:3_0:44_0:38$ ip community-list expanded c6 permit 63 ^65000:4_0:45_0:7$ ip community-list expanded c6 permit 64 ^65000:3_0:45_0:39$ ip community-list expanded c6 permit 65 ^65000:4_0:46_0:7$ ip community-list expanded c6 permit 66 ^65000:3_0:46_0:40$ ip community-list expanded c6 permit 67 ^65000:4_0:47_0:7$ ip community-list expanded c6 permit 68 ^65000:3_0:47_0:41$ ip community-list expanded c6 permit 69 ^65000:4_0:48_0:7$ ip community-list expanded c6 permit 70 ^65000:4_0:48_0:8$ ip community-list expanded c6 permit 71 ^65000:3_0:48_0:42$ ip community-list expanded c6 permit 72 ^65000:4_0:49_0:8$ ip community-list expanded c6 permit 73 ^65000:3_0:49_0:43$ ip community-list expanded c6 permit 74 ^65000:4_0:50_0:8$ ip community-list expanded c6 permit 75 ^65000:3_0:50_0:44$ ip community-list expanded c6 permit 76 ^65000:4_0:51_0:8$ ip community-list expanded c6 permit 77 ^65000:3_0:51_0:45$ ip community-list expanded c6 permit 78 ^65000:4_0:52_0:8$ ip community-list expanded c6 permit 79 ^65000:3_0:52_0:46$ ip community-list expanded c6 permit 80 ^65000:4_0:53_0:8$ ip community-list expanded c6 permit 81 ^65000:3_0:53_0:47$ ip community-list expanded c6 permit 82 ^65000:4_0:54_0:8$ ip community-list expanded c6 permit 83 ^65000:4_0:54_0:9$ ip community-list expanded c6 permit 84 ^65000:3_0:54_0:48$ ip community-list expanded c6 permit 85 ^65000:4_0:55_0:8$ ip community-list expanded c6 permit 86 ^65000:4_0:55_0:9$ ip community-list expanded c6 permit 87 ^65000:3_0:55_0:49$ ip community-list expanded c6 permit 88 ^65000:4_0:56_0:9$ ip community-list expanded c6 permit 89 ^65000:3_0:56_0:50$ ip community-list expanded c6 permit 90 ^65000:4_0:57_0:9$ ip community-list expanded c6 permit 91 ^65000:3_0:57_0:51$ ip community-list expanded c6 permit 92 ^65000:4_0:58_0:9$ ip community-list expanded c6 permit 93 ^65000:3_0:58_0:52$ ip community-list expanded c6 permit 94 ^65000:4_0:59_0:9$ ip community-list expanded c6 permit 95 ^65000:3_0:59_0:53$ ip community-list expanded c6 permit 96 ^65000:4_0:60_0:9$ ip community-list expanded c6 permit 97 ^65000:4_0:60_0:10$ ip community-list expanded c6 permit 98 ^65000:3_0:60_0:54$ ip community-list expanded c6 permit 99 ^65000:4_0:61_0:9$ ip community-list expanded c6 permit 100 ^65000:4_0:61_0:10$ ip community-list expanded c6 permit 101 ^65000:3_0:61_0:55$ ip community-list expanded c6 permit 102 ^65000:4_0:62_0:9$ ip community-list expanded c6 permit 103 ^65000:4_0:62_0:10$ ip community-list expanded c6 permit 104 ^65000:3_0:62_0:56$ ip community-list expanded c6 permit 105 ^65000:4_0:63_0:10$ ip community-list expanded c6 permit 106 ^65000:3_0:63_0:57$ ip community-list expanded c6 permit 107 ^65000:4_0:64_0:10$ ip community-list expanded c6 permit 108 ^65000:3_0:64_0:58$ ip community-list expanded c6 permit 109 ^65000:4_0:65_0:10$ ip community-list expanded c6 permit 110 ^65000:3_0:65_0:59$ ip community-list expanded c6 permit 111 ^65000:4_0:66_0:10$ ip community-list expanded c6 permit 112 ^65000:4_0:66_0:11$ ip community-list expanded c6 permit 113 ^65000:3_0:66_0:60$ ip community-list expanded c6 permit 114 ^65000:4_0:67_0:10$ ip community-list expanded c6 permit 115 ^65000:4_0:67_0:11$ ip community-list expanded c6 permit 116 ^65000:3_0:67_0:61$ ip community-list expanded c6 permit 117 ^65000:4_0:68_0:10$ ip community-list expanded c6 permit 118 ^65000:4_0:68_0:11$ ip community-list expanded c6 permit 119 ^65000:3_0:68_0:62$ ip community-list expanded c6 permit 120 ^65000:4_0:69_0:10$ ip community-list expanded c6 permit 121 ^65000:4_0:69_0:11$ ip community-list expanded c6 permit 122 ^65000:3_0:69_0:63$ ip community-list expanded c6 permit 123 ^65000:4_0:70_0:11$ ip community-list expanded c6 permit 124 ^65000:3_0:70_0:64$ ip community-list expanded c6 permit 125 ^65000:4_0:71_0:11$ ip community-list expanded c6 permit 126 ^65000:3_0:71_0:65$ ip community-list expanded c6 permit 127 ^65000:4_0:72_0:11$ ip community-list expanded c6 permit 128 ^65000:4_0:72_0:12$ ip community-list expanded c6 permit 129 ^65000:3_0:72_0:66$ ip community-list expanded c6 permit 130 ^65000:4_0:73_0:11$ ip community-list expanded c6 permit 131 ^65000:4_0:73_0:12$ ip community-list expanded c6 permit 132 ^65000:3_0:73_0:67$ ip community-list expanded c6 permit 133 ^65000:4_0:74_0:11$ ip community-list expanded c6 permit 134 ^65000:4_0:74_0:12$ ip community-list expanded c6 permit 135 ^65000:3_0:74_0:68$ ip community-list expanded c6 permit 136 ^65000:4_0:75_0:11$ ip community-list expanded c6 permit 137 ^65000:4_0:75_0:12$ ip community-list expanded c6 permit 138 ^65000:3_0:75_0:69$ ip community-list expanded c6 permit 139 ^65000:4_0:76_0:11$ ip community-list expanded c6 permit 140 ^65000:4_0:76_0:12$ ip community-list expanded c6 permit 141 ^65000:3_0:76_0:70$ ip community-list expanded c6 permit 142 ^65000:4_0:77_0:12$ ip community-list expanded c6 permit 143 ^65000:3_0:77_0:71$ ip community-list expanded c6 permit 144 ^65000:4_0:78_0:12$ ip community-list expanded c6 permit 145 ^65000:4_0:78_0:13$ ip community-list expanded c6 permit 146 ^65000:3_0:78_0:72$ ip community-list expanded c6 permit 147 ^65000:4_0:79_0:12$ ip community-list expanded c6 permit 148 ^65000:4_0:79_0:13$ ip community-list expanded c6 permit 149 ^65000:3_0:79_0:73$ ip community-list expanded c6 permit 150 ^65000:4_0:80_0:12$ ip community-list expanded c6 permit 151 ^65000:4_0:80_0:13$ ip community-list expanded c6 permit 152 ^65000:3_0:80_0:74$ ip community-list expanded c6 permit 153 ^65000:4_0:81_0:12$ ip community-list expanded c6 permit 154 ^65000:4_0:81_0:13$ ip community-list expanded c6 permit 155 ^65000:3_0:81_0:75$ ip community-list expanded c6 permit 156 ^65000:4_0:82_0:12$ ip community-list expanded c6 permit 157 ^65000:4_0:82_0:13$ ip community-list expanded c6 permit 158 ^65000:3_0:82_0:76$ ip community-list expanded c6 permit 159 ^65000:4_0:83_0:12$ ip community-list expanded c6 permit 160 ^65000:4_0:83_0:13$ ip community-list expanded c6 permit 161 ^65000:3_0:83_0:77$ ip community-list expanded c6 permit 162 ^65000:4_0:84_0:13$ ip community-list expanded c6 permit 163 ^65000:4_0:84_0:14$ ip community-list expanded c6 permit 164 ^65000:3_0:84_0:78$ ip community-list expanded c6 permit 165 ^65000:4_0:85_0:13$ ip community-list expanded c6 permit 166 ^65000:4_0:85_0:14$ ip community-list expanded c6 permit 167 ^65000:3_0:85_0:79$ ip community-list expanded c6 permit 168 ^65000:4_0:86_0:13$ ip community-list expanded c6 permit 169 ^65000:4_0:86_0:14$ ip community-list expanded c6 permit 170 ^65000:3_0:86_0:80$ ip community-list expanded c6 permit 171 ^65000:4_0:87_0:13$ ip community-list expanded c6 permit 172 ^65000:4_0:87_0:14$ ip community-list expanded c6 permit 173 ^65000:3_0:87_0:81$ ip community-list expanded c6 permit 174 ^65000:4_0:88_0:13$ ip community-list expanded c6 permit 175 ^65000:4_0:88_0:14$ ip community-list expanded c6 permit 176 ^65000:3_0:88_0:82$ ip community-list expanded c6 permit 177 ^65000:4_0:89_0:13$ ip community-list expanded c6 permit 178 ^65000:4_0:89_0:14$ ip community-list expanded c6 permit 179 ^65000:3_0:89_0:83$ ip community-list expanded c6 permit 180 ^65000:4_0:90_0:13$ ip community-list expanded c6 permit 181 ^65000:4_0:90_0:14$ ip community-list expanded c6 permit 182 ^65000:4_0:90_0:15$ ip community-list expanded c6 permit 183 ^65000:3_0:90_0:84$ ip community-list expanded c6 permit 184 ^65000:4_0:91_0:14$ ip community-list expanded c6 permit 185 ^65000:4_0:91_0:15$ ip community-list expanded c6 permit 186 ^65000:3_0:91_0:85$ ip community-list expanded c6 permit 187 ^65000:4_0:92_0:14$ ip community-list expanded c6 permit 188 ^65000:4_0:92_0:15$ ip community-list expanded c6 permit 189 ^65000:3_0:92_0:86$ ip community-list expanded c6 permit 190 ^65000:4_0:93_0:14$ ip community-list expanded c6 permit 191 ^65000:4_0:93_0:15$ ip community-list expanded c6 permit 192 ^65000:3_0:93_0:87$ ip community-list expanded c6 permit 193 ^65000:4_0:94_0:14$ ip community-list expanded c6 permit 194 ^65000:4_0:94_0:15$ ip community-list expanded c6 permit 195 ^65000:3_0:94_0:88$ ip community-list expanded c6 permit 196 ^65000:4_0:95_0:14$ ip community-list expanded c6 permit 197 ^65000:4_0:95_0:15$ ip community-list expanded c6 permit 198 ^65000:3_0:95_0:89$ ip community-list expanded c6 permit 199 ^65000:4_0:96_0:14$ ip community-list expanded c6 permit 200 ^65000:4_0:96_0:15$ ip community-list expanded c6 permit 201 ^65000:4_0:96_0:16$ ip community-list expanded c6 permit 202 ^65000:3_0:96_0:90$ ip community-list expanded c6 permit 203 ^65000:4_0:97_0:14$ ip community-list expanded c6 permit 204 ^65000:4_0:97_0:15$ ip community-list expanded c6 permit 205 ^65000:4_0:97_0:16$ ip community-list expanded c6 permit 206 ^65000:3_0:97_0:91$ ip community-list expanded c6 permit 207 ^65000:4_0:98_0:15$ ip community-list expanded c6 permit 208 ^65000:4_0:98_0:16$ ip community-list expanded c6 permit 209 ^65000:3_0:98_0:92$ ip community-list expanded c6 permit 210 ^65000:4_0:99_0:15$ ip community-list expanded c6 permit 211 ^65000:4_0:99_0:16$ ip community-list expanded c6 permit 212 ^65000:3_0:99_0:93$ ip community-list expanded c6 permit 213 ^65000:4_0:100_0:15$ ip community-list expanded c6 permit 214 ^65000:4_0:100_0:16$ ip community-list expanded c6 permit 215 ^65000:3_0:100_0:94$ ip community-list expanded c6 permit 216 ^65000:4_0:101_0:15$ ip community-list expanded c6 permit 217 ^65000:4_0:101_0:16$ ip community-list expanded c6 permit 218 ^65000:3_0:101_0:95$ ip community-list expanded c6 permit 219 ^65000:4_0:102_0:15$ ip community-list expanded c6 permit 220 ^65000:4_0:102_0:16$ ip community-list expanded c6 permit 221 ^65000:4_0:102_0:17$ ip community-list expanded c6 permit 222 ^65000:3_0:102_0:96$ ip community-list expanded c6 permit 223 ^65000:4_0:103_0:15$ ip community-list expanded c6 permit 224 ^65000:4_0:103_0:16$ ip community-list expanded c6 permit 225 ^65000:4_0:103_0:17$ ip community-list expanded c6 permit 226 ^65000:3_0:103_0:97$ ip community-list expanded c6 permit 227 ^65000:4_0:104_0:15$ ip community-list expanded c6 permit 228 ^65000:4_0:104_0:16$ ip community-list expanded c6 permit 229 ^65000:4_0:104_0:17$ ip community-list expanded c6 permit 230 ^65000:3_0:104_0:98$ ip community-list expanded c6 permit 231 ^65000:4_0:105_0:16$ ip community-list expanded c6 permit 232 ^65000:4_0:105_0:17$ ip community-list expanded c6 permit 233 ^65000:3_0:105_0:99$ ip community-list expanded c6 permit 234 ^65000:4_0:106_0:16$ ip community-list expanded c6 permit 235 ^65000:4_0:106_0:17$ ip community-list expanded c6 permit 236 ^65000:3_0:106_0:100$ ip community-list expanded c6 permit 237 ^65000:4_0:107_0:16$ ip community-list expanded c6 permit 238 ^65000:4_0:107_0:17$ ip community-list expanded c6 permit 239 ^65000:3_0:107_0:101$ ip community-list expanded c6 permit 240 ^65000:4_0:108_0:16$ ip community-list expanded c6 permit 241 ^65000:4_0:108_0:17$ ip community-list expanded c6 permit 242 ^65000:4_0:108_0:18$ ip community-list expanded c6 permit 243 ^65000:3_0:108_0:102$ ip community-list expanded c6 permit 244 ^65000:4_0:109_0:16$ ip community-list expanded c6 permit 245 ^65000:4_0:109_0:17$ ip community-list expanded c6 permit 246 ^65000:4_0:109_0:18$ ip community-list expanded c6 permit 247 ^65000:3_0:109_0:103$ ip community-list expanded c6 permit 248 ^65000:4_0:110_0:16$ ip community-list expanded c6 permit 249 ^65000:4_0:110_0:17$ ip community-list expanded c6 permit 250 ^65000:4_0:110_0:18$ ip community-list expanded c6 permit 251 ^65000:3_0:110_0:104$ ip community-list expanded c6 permit 252 ^65000:4_0:111_0:16$ ip community-list expanded c6 permit 253 ^65000:4_0:111_0:17$ ip community-list expanded c6 permit 254 ^65000:4_0:111_0:18$ ip community-list expanded c6 permit 255 ^65000:3_0:111_0:105$ ip community-list expanded c6 permit 256 ^65000:4_0:112_0:17$ ip community-list expanded c6 permit 257 ^65000:4_0:112_0:18$ ip community-list expanded c6 permit 258 ^65000:3_0:112_0:106$ ip community-list expanded c6 permit 259 ^65000:4_0:113_0:17$ ip community-list expanded c6 permit 260 ^65000:4_0:113_0:18$ ip community-list expanded c6 permit 261 ^65000:3_0:113_0:107$ ip community-list expanded c6 permit 262 ^65000:4_0:114_0:17$ ip community-list expanded c6 permit 263 ^65000:4_0:114_0:18$ ip community-list expanded c6 permit 264 ^65000:4_0:114_0:19$ ip community-list expanded c6 permit 265 ^65000:3_0:114_0:108$ ip community-list expanded c6 permit 266 ^65000:4_0:115_0:17$ ip community-list expanded c6 permit 267 ^65000:4_0:115_0:18$ ip community-list expanded c6 permit 268 ^65000:4_0:115_0:19$ ip community-list expanded c6 permit 269 ^65000:3_0:115_0:109$ ip community-list expanded c6 permit 270 ^65000:4_0:116_0:17$ ip community-list expanded c6 permit 271 ^65000:4_0:116_0:18$ ip community-list expanded c6 permit 272 ^65000:4_0:116_0:19$ ip community-list expanded c6 permit 273 ^65000:3_0:116_0:110$ ip community-list expanded c6 permit 274 ^65000:4_0:117_0:17$ ip community-list expanded c6 permit 275 ^65000:4_0:117_0:18$ ip community-list expanded c6 permit 276 ^65000:4_0:117_0:19$ ip community-list expanded c6 permit 277 ^65000:3_0:117_0:111$ ip community-list expanded c6 permit 278 ^65000:4_0:118_0:17$ ip community-list expanded c6 permit 279 ^65000:4_0:118_0:18$ ip community-list expanded c6 permit 280 ^65000:4_0:118_0:19$ ip community-list expanded c6 permit 281 ^65000:3_0:118_0:112$ ip community-list expanded c6 permit 282 ^65000:4_0:119_0:18$ ip community-list expanded c6 permit 283 ^65000:4_0:119_0:19$ ip community-list expanded c6 permit 284 ^65000:3_0:119_0:113$ ip community-list expanded c6 permit 285 ^65000:4_0:120_0:18$ ip community-list expanded c6 permit 286 ^65000:4_0:120_0:19$ ip community-list expanded c6 permit 287 ^65000:4_0:120_0:20$ ip community-list expanded c6 permit 288 ^65000:3_0:120_0:114$ ip community-list expanded c6 permit 289 ^65000:4_0:121_0:18$ ip community-list expanded c6 permit 290 ^65000:4_0:121_0:19$ ip community-list expanded c6 permit 291 ^65000:4_0:121_0:20$ ip community-list expanded c6 permit 292 ^65000:3_0:121_0:115$ ip community-list expanded c6 permit 293 ^65000:4_0:122_0:18$ ip community-list expanded c6 permit 294 ^65000:4_0:122_0:19$ ip community-list expanded c6 permit 295 ^65000:4_0:122_0:20$ ip community-list expanded c6 permit 296 ^65000:3_0:122_0:116$ ip community-list expanded c6 permit 297 ^65000:4_0:123_0:18$ ip community-list expanded c6 permit 298 ^65000:4_0:123_0:19$ ip community-list expanded c6 permit 299 ^65000:4_0:123_0:20$ ip community-list expanded c6 permit 300 ^65000:3_0:123_0:117$ ip community-list expanded c6 permit 301 ^65000:4_0:124_0:18$ ip community-list expanded c6 permit 302 ^65000:4_0:124_0:19$ ip community-list expanded c6 permit 303 ^65000:4_0:124_0:20$ ip community-list expanded c6 permit 304 ^65000:3_0:124_0:118$ ip community-list expanded c6 permit 305 ^65000:4_0:125_0:18$ ip community-list expanded c6 permit 306 ^65000:4_0:125_0:19$ ip community-list expanded c6 permit 307 ^65000:4_0:125_0:20$ ip community-list expanded c6 permit 308 ^65000:3_0:125_0:119$ ip community-list expanded c6 permit 309 ^65000:4_0:126_0:19$ ip community-list expanded c6 permit 310 ^65000:4_0:126_0:20$ ip community-list expanded c6 permit 311 ^65000:4_0:126_0:21$ ip community-list expanded c6 permit 312 ^65000:3_0:126_0:120$ ip community-list expanded c6 permit 313 ^65000:4_0:127_0:19$ ip community-list expanded c6 permit 314 ^65000:4_0:127_0:20$ ip community-list expanded c6 permit 315 ^65000:4_0:127_0:21$ ip community-list expanded c6 permit 316 ^65000:3_0:127_0:121$ ip community-list expanded c6 permit 317 ^65000:4_0:128_0:19$ ip community-list expanded c6 permit 318 ^65000:4_0:128_0:20$ ip community-list expanded c6 permit 319 ^65000:4_0:128_0:21$ ip community-list expanded c6 permit 320 ^65000:3_0:128_0:122$ ip community-list expanded c6 permit 321 ^65000:4_0:129_0:19$ ip community-list expanded c6 permit 322 ^65000:4_0:129_0:20$ ip community-list expanded c6 permit 323 ^65000:4_0:129_0:21$ ip community-list expanded c6 permit 324 ^65000:3_0:129_0:123$ ip community-list expanded c6 permit 325 ^65000:4_0:130_0:19$ ip community-list expanded c6 permit 326 ^65000:4_0:130_0:20$ ip community-list expanded c6 permit 327 ^65000:4_0:130_0:21$ ip community-list expanded c6 permit 328 ^65000:3_0:130_0:124$ ip community-list expanded c6 permit 329 ^65000:4_0:131_0:19$ ip community-list expanded c6 permit 330 ^65000:4_0:131_0:20$ ip community-list expanded c6 permit 331 ^65000:4_0:131_0:21$ ip community-list expanded c6 permit 332 ^65000:3_0:131_0:125$ ip community-list expanded c6 permit 333 ^65000:4_0:132_0:19$ ip community-list expanded c6 permit 334 ^65000:4_0:132_0:20$ ip community-list expanded c6 permit 335 ^65000:4_0:132_0:21$ ip community-list expanded c6 permit 336 ^65000:4_0:132_0:22$ ip community-list expanded c6 permit 337 ^65000:3_0:132_0:126$ ip community-list expanded c6 permit 338 ^65000:4_0:133_0:20$ ip community-list expanded c6 permit 339 ^65000:4_0:133_0:21$ ip community-list expanded c6 permit 340 ^65000:4_0:133_0:22$ ip community-list expanded c6 permit 341 ^65000:3_0:133_0:127$ ip community-list expanded c6 permit 342 ^65000:4_0:134_0:20$ ip community-list expanded c6 permit 343 ^65000:4_0:134_0:21$ ip community-list expanded c6 permit 344 ^65000:4_0:134_0:22$ ip community-list expanded c6 permit 345 ^65000:3_0:134_0:128$ ip community-list expanded c6 permit 346 ^65000:4_0:135_0:20$ ip community-list expanded c6 permit 347 ^65000:4_0:135_0:21$ ip community-list expanded c6 permit 348 ^65000:4_0:135_0:22$ ip community-list expanded c6 permit 349 ^65000:3_0:135_0:129$ ip community-list expanded c6 permit 350 ^65000:4_0:136_0:20$ ip community-list expanded c6 permit 351 ^65000:4_0:136_0:21$ ip community-list expanded c6 permit 352 ^65000:4_0:136_0:22$ ip community-list expanded c6 permit 353 ^65000:3_0:136_0:130$ ip community-list expanded c6 permit 354 ^65000:4_0:137_0:20$ ip community-list expanded c6 permit 355 ^65000:4_0:137_0:21$ ip community-list expanded c6 permit 356 ^65000:4_0:137_0:22$ ip community-list expanded c6 permit 357 ^65000:3_0:137_0:131$ ip community-list expanded c6 permit 358 ^65000:4_0:138_0:20$ ip community-list expanded c6 permit 359 ^65000:4_0:138_0:21$ ip community-list expanded c6 permit 360 ^65000:4_0:138_0:22$ ip community-list expanded c6 permit 361 ^65000:4_0:138_0:23$ ip community-list expanded c6 permit 362 ^65000:3_0:138_0:132$ ip community-list expanded c6 permit 363 ^65000:4_0:139_0:20$ ip community-list expanded c6 permit 364 ^65000:4_0:139_0:21$ ip community-list expanded c6 permit 365 ^65000:4_0:139_0:22$ ip community-list expanded c6 permit 366 ^65000:4_0:139_0:23$ ip community-list expanded c6 permit 367 ^65000:3_0:139_0:133$ ip community-list expanded c6 permit 368 ^65000:4_0:140_0:21$ ip community-list expanded c6 permit 369 ^65000:4_0:140_0:22$ ip community-list expanded c6 permit 370 ^65000:4_0:140_0:23$ ip community-list expanded c6 permit 371 ^65000:3_0:140_0:134$ ip community-list expanded c6 permit 372 ^65000:4_0:141_0:21$ ip community-list expanded c6 permit 373 ^65000:4_0:141_0:22$ ip community-list expanded c6 permit 374 ^65000:4_0:141_0:23$ ip community-list expanded c6 permit 375 ^65000:3_0:141_0:135$ ip community-list expanded c6 permit 376 ^65000:4_0:142_0:21$ ip community-list expanded c6 permit 377 ^65000:4_0:142_0:22$ ip community-list expanded c6 permit 378 ^65000:4_0:142_0:23$ ip community-list expanded c6 permit 379 ^65000:3_0:142_0:136$ ip community-list expanded c6 permit 380 ^65000:4_0:143_0:21$ ip community-list expanded c6 permit 381 ^65000:4_0:143_0:22$ ip community-list expanded c6 permit 382 ^65000:4_0:143_0:23$ ip community-list expanded c6 permit 383 ^65000:3_0:143_0:137$ ip community-list expanded c6 permit 384 ^65000:4_0:144_0:21$ ip community-list expanded c6 permit 385 ^65000:4_0:144_0:22$ ip community-list expanded c6 permit 386 ^65000:4_0:144_0:23$ ip community-list expanded c6 permit 387 ^65000:4_0:144_0:24$ ip community-list expanded c6 permit 388 ^65000:3_0:144_0:138$ ip community-list expanded c6 permit 389 ^65000:4_0:145_0:21$ ip community-list expanded c6 permit 390 ^65000:4_0:145_0:22$ ip community-list expanded c6 permit 391 ^65000:4_0:145_0:23$ ip community-list expanded c6 permit 392 ^65000:4_0:145_0:24$ ip community-list expanded c6 permit 393 ^65000:3_0:145_0:139$ ip community-list expanded c6 permit 394 ^65000:4_0:146_0:21$ ip community-list expanded c6 permit 395 ^65000:4_0:146_0:22$ ip community-list expanded c6 permit 396 ^65000:4_0:146_0:23$ ip community-list expanded c6 permit 397 ^65000:4_0:146_0:24$ ip community-list expanded c6 permit 398 ^65000:3_0:146_0:140$ ip community-list expanded c6 permit 399 ^65000:4_0:147_0:22$ ip community-list expanded c6 permit 400 ^65000:4_0:147_0:23$ ip community-list expanded c6 permit 401 ^65000:4_0:147_0:24$ ip community-list expanded c6 permit 402 ^65000:3_0:147_0:141$ ip community-list expanded c6 permit 403 ^65000:4_0:148_0:22$ ip community-list expanded c6 permit 404 ^65000:4_0:148_0:23$ ip community-list expanded c6 permit 405 ^65000:4_0:148_0:24$ ip community-list expanded c6 permit 406 ^65000:3_0:148_0:142$ ip community-list expanded c6 permit 407 ^65000:4_0:149_0:22$ ip community-list expanded c6 permit 408 ^65000:4_0:149_0:23$ ip community-list expanded c6 permit 409 ^65000:4_0:149_0:24$ ip community-list expanded c6 permit 410 ^65000:3_0:149_0:143$ ip community-list expanded c6 permit 411 ^65000:4_0:150_0:22$ ip community-list expanded c6 permit 412 ^65000:4_0:150_0:23$ ip community-list expanded c6 permit 413 ^65000:4_0:150_0:24$ ip community-list expanded c6 permit 414 ^65000:4_0:150_0:25$ ip community-list expanded c6 permit 415 ^65000:3_0:150_0:144$ ip community-list expanded c6 permit 416 ^65000:4_0:151_0:22$ ip community-list expanded c6 permit 417 ^65000:4_0:151_0:23$ ip community-list expanded c6 permit 418 ^65000:4_0:151_0:24$ ip community-list expanded c6 permit 419 ^65000:4_0:151_0:25$ ip community-list expanded c6 permit 420 ^65000:3_0:151_0:145$ ip community-list expanded c6 permit 421 ^65000:4_0:152_0:22$ ip community-list expanded c6 permit 422 ^65000:4_0:152_0:23$ ip community-list expanded c6 permit 423 ^65000:4_0:152_0:24$ ip community-list expanded c6 permit 424 ^65000:4_0:152_0:25$ ip community-list expanded c6 permit 425 ^65000:3_0:152_0:146$ ip community-list expanded c6 permit 426 ^65000:4_0:153_0:22$ ip community-list expanded c6 permit 427 ^65000:4_0:153_0:23$ ip community-list expanded c6 permit 428 ^65000:4_0:153_0:24$ ip community-list expanded c6 permit 429 ^65000:4_0:153_0:25$ ip community-list expanded c6 permit 430 ^65000:3_0:153_0:147$ ip community-list expanded c6 permit 431 ^65000:4_0:154_0:23$ ip community-list expanded c6 permit 432 ^65000:4_0:154_0:24$ ip community-list expanded c6 permit 433 ^65000:4_0:154_0:25$ ip community-list expanded c6 permit 434 ^65000:3_0:154_0:148$ ip community-list expanded c6 permit 435 ^65000:4_0:155_0:23$ ip community-list expanded c6 permit 436 ^65000:4_0:155_0:24$ ip community-list expanded c6 permit 437 ^65000:4_0:155_0:25$ ip community-list expanded c6 permit 438 ^65000:3_0:155_0:149$ ip community-list expanded c6 permit 439 ^65000:4_0:156_0:23$ ip community-list expanded c6 permit 440 ^65000:4_0:156_0:24$ ip community-list expanded c6 permit 441 ^65000:4_0:156_0:25$ ip community-list expanded c6 permit 442 ^65000:4_0:156_0:26$ ip community-list expanded c6 permit 443 ^65000:3_0:156_0:150$ ip community-list expanded c6 permit 444 ^65000:4_0:157_0:23$ ip community-list expanded c6 permit 445 ^65000:4_0:157_0:24$ ip community-list expanded c6 permit 446 ^65000:4_0:157_0:25$ ip community-list expanded c6 permit 447 ^65000:4_0:157_0:26$ ip community-list expanded c6 permit 448 ^65000:3_0:157_0:151$ ip community-list expanded c6 permit 449 ^65000:4_0:158_0:23$ ip community-list expanded c6 permit 450 ^65000:4_0:158_0:24$ ip community-list expanded c6 permit 451 ^65000:4_0:158_0:25$ ip community-list expanded c6 permit 452 ^65000:4_0:158_0:26$ ip community-list expanded c6 permit 453 ^65000:3_0:158_0:152$ ip community-list expanded c6 permit 454 ^65000:4_0:159_0:23$ ip community-list expanded c6 permit 455 ^65000:4_0:159_0:24$ ip community-list expanded c6 permit 456 ^65000:4_0:159_0:25$ ip community-list expanded c6 permit 457 ^65000:4_0:159_0:26$ ip community-list expanded c6 permit 458 ^65000:3_0:159_0:153$ ip community-list expanded c6 permit 459 ^65000:4_0:160_0:23$ ip community-list expanded c6 permit 460 ^65000:4_0:160_0:24$ ip community-list expanded c6 permit 461 ^65000:4_0:160_0:25$ ip community-list expanded c6 permit 462 ^65000:4_0:160_0:26$ ip community-list expanded c6 permit 463 ^65000:3_0:160_0:154$ ip community-list expanded c6 permit 464 ^65000:4_0:161_0:24$ ip community-list expanded c6 permit 465 ^65000:4_0:161_0:25$ ip community-list expanded c6 permit 466 ^65000:4_0:161_0:26$ ip community-list expanded c6 permit 467 ^65000:3_0:161_0:155$ ip community-list expanded c6 permit 468 ^65000:4_0:162_0:24$ ip community-list expanded c6 permit 469 ^65000:4_0:162_0:25$ ip community-list expanded c6 permit 470 ^65000:4_0:162_0:26$ ip community-list expanded c6 permit 471 ^65000:4_0:162_0:27$ ip community-list expanded c6 permit 472 ^65000:3_0:162_0:156$ ip community-list expanded c6 permit 473 ^65000:4_0:163_0:24$ ip community-list expanded c6 permit 474 ^65000:4_0:163_0:25$ ip community-list expanded c6 permit 475 ^65000:4_0:163_0:26$ ip community-list expanded c6 permit 476 ^65000:4_0:163_0:27$ ip community-list expanded c6 permit 477 ^65000:3_0:163_0:157$ ip community-list expanded c6 permit 478 ^65000:4_0:164_0:24$ ip community-list expanded c6 permit 479 ^65000:4_0:164_0:25$ ip community-list expanded c6 permit 480 ^65000:4_0:164_0:26$ ip community-list expanded c6 permit 481 ^65000:4_0:164_0:27$ ip community-list expanded c6 permit 482 ^65000:3_0:164_0:158$ ip community-list expanded c6 permit 483 ^65000:4_0:165_0:24$ ip community-list expanded c6 permit 484 ^65000:4_0:165_0:25$ ip community-list expanded c6 permit 485 ^65000:4_0:165_0:26$ ip community-list expanded c6 permit 486 ^65000:4_0:165_0:27$ ip community-list expanded c6 permit 487 ^65000:3_0:165_0:159$ ip community-list expanded c6 permit 488 ^65000:4_0:166_0:24$ ip community-list expanded c6 permit 489 ^65000:4_0:166_0:25$ ip community-list expanded c6 permit 490 ^65000:4_0:166_0:26$ ip community-list expanded c6 permit 491 ^65000:4_0:166_0:27$ ip community-list expanded c6 permit 492 ^65000:3_0:166_0:160$ ip community-list expanded c6 permit 493 ^65000:4_0:167_0:24$ ip community-list expanded c6 permit 494 ^65000:4_0:167_0:25$ ip community-list expanded c6 permit 495 ^65000:4_0:167_0:26$ ip community-list expanded c6 permit 496 ^65000:4_0:167_0:27$ ip community-list expanded c6 permit 497 ^65000:3_0:167_0:161$ ip community-list expanded c6 permit 498 ^65000:4_0:168_0:25$ ip community-list expanded c6 permit 499 ^65000:4_0:168_0:26$ ip community-list expanded c6 permit 500 ^65000:4_0:168_0:27$ ip community-list expanded c6 permit 501 ^65000:4_0:168_0:28$ ip community-list expanded c6 permit 502 ^65000:3_0:168_0:162$ ip community-list expanded c6 permit 503 ^65000:4_0:169_0:25$ ip community-list expanded c6 permit 504 ^65000:4_0:169_0:26$ ip community-list expanded c6 permit 505 ^65000:4_0:169_0:27$ ip community-list expanded c6 permit 506 ^65000:4_0:169_0:28$ ip community-list expanded c6 permit 507 ^65000:3_0:169_0:163$ ip community-list expanded c6 permit 508 ^65000:4_0:170_0:25$ ip community-list expanded c6 permit 509 ^65000:4_0:170_0:26$ ip community-list expanded c6 permit 510 ^65000:4_0:170_0:27$ ip community-list expanded c6 permit 511 ^65000:4_0:170_0:28$ ip community-list expanded c6 permit 512 ^65000:3_0:170_0:164$ ip community-list expanded c6 permit 513 ^65000:4_0:171_0:25$ ip community-list expanded c6 permit 514 ^65000:4_0:171_0:26$ ip community-list expanded c6 permit 515 ^65000:4_0:171_0:27$ ip community-list expanded c6 permit 516 ^65000:4_0:171_0:28$ ip community-list expanded c6 permit 517 ^65000:3_0:171_0:165$ ip community-list expanded c6 permit 518 ^65000:4_0:172_0:25$ ip community-list expanded c6 permit 519 ^65000:4_0:172_0:26$ ip community-list expanded c6 permit 520 ^65000:4_0:172_0:27$ ip community-list expanded c6 permit 521 ^65000:4_0:172_0:28$ ip community-list expanded c6 permit 522 ^65000:3_0:172_0:166$ ip community-list expanded c6 permit 523 ^65000:4_0:173_0:25$ ip community-list expanded c6 permit 524 ^65000:4_0:173_0:26$ ip community-list expanded c6 permit 525 ^65000:4_0:173_0:27$ ip community-list expanded c6 permit 526 ^65000:4_0:173_0:28$ ip community-list expanded c6 permit 527 ^65000:3_0:173_0:167$ ip community-list expanded c6 permit 528 ^65000:4_0:174_0:25$ ip community-list expanded c6 permit 529 ^65000:4_0:174_0:26$ ip community-list expanded c6 permit 530 ^65000:4_0:174_0:27$ ip community-list expanded c6 permit 531 ^65000:4_0:174_0:28$ ip community-list expanded c6 permit 532 ^65000:4_0:174_0:29$ ip community-list expanded c6 permit 533 ^65000:3_0:174_0:168$ ip community-list expanded c6 permit 534 ^65000:4_0:175_0:26$ ip community-list expanded c6 permit 535 ^65000:4_0:175_0:27$ ip community-list expanded c6 permit 536 ^65000:4_0:175_0:28$ ip community-list expanded c6 permit 537 ^65000:4_0:175_0:29$ ip community-list expanded c6 permit 538 ^65000:3_0:175_0:169$ ip community-list expanded c6 permit 539 ^65000:4_0:176_0:26$ ip community-list expanded c6 permit 540 ^65000:4_0:176_0:27$ ip community-list expanded c6 permit 541 ^65000:4_0:176_0:28$ ip community-list expanded c6 permit 542 ^65000:4_0:176_0:29$ ip community-list expanded c6 permit 543 ^65000:3_0:176_0:170$ ip community-list expanded c6 permit 544 ^65000:4_0:177_0:26$ ip community-list expanded c6 permit 545 ^65000:4_0:177_0:27$ ip community-list expanded c6 permit 546 ^65000:4_0:177_0:28$ ip community-list expanded c6 permit 547 ^65000:4_0:177_0:29$ ip community-list expanded c6 permit 548 ^65000:3_0:177_0:171$ ip community-list expanded c6 permit 549 ^65000:4_0:178_0:26$ ip community-list expanded c6 permit 550 ^65000:4_0:178_0:27$ ip community-list expanded c6 permit 551 ^65000:4_0:178_0:28$ ip community-list expanded c6 permit 552 ^65000:4_0:178_0:29$ ip community-list expanded c6 permit 553 ^65000:3_0:178_0:172$ ip community-list expanded c6 permit 554 ^65000:4_0:179_0:26$ ip community-list expanded c6 permit 555 ^65000:4_0:179_0:27$ ip community-list expanded c6 permit 556 ^65000:4_0:179_0:28$ ip community-list expanded c6 permit 557 ^65000:4_0:179_0:29$ ip community-list expanded c6 permit 558 ^65000:3_0:179_0:173$ ip community-list expanded c6 permit 559 ^65000:4_0:180_0:26$ ip community-list expanded c6 permit 560 ^65000:4_0:180_0:27$ ip community-list expanded c6 permit 561 ^65000:4_0:180_0:28$ ip community-list expanded c6 permit 562 ^65000:4_0:180_0:29$ ip community-list expanded c6 permit 563 ^65000:4_0:180_0:30$ ip community-list expanded c6 permit 564 ^65000:3_0:180_0:174$ ip community-list expanded c6 permit 565 ^65000:4_0:181_0:26$ ip community-list expanded c6 permit 566 ^65000:4_0:181_0:27$ ip community-list expanded c6 permit 567 ^65000:4_0:181_0:28$ ip community-list expanded c6 permit 568 ^65000:4_0:181_0:29$ ip community-list expanded c6 permit 569 ^65000:4_0:181_0:30$ ip community-list expanded c6 permit 570 ^65000:3_0:181_0:175$ ip community-list expanded c6 permit 571 ^65000:4_0:182_0:27$ ip community-list expanded c6 permit 572 ^65000:4_0:182_0:28$ ip community-list expanded c6 permit 573 ^65000:4_0:182_0:29$ ip community-list expanded c6 permit 574 ^65000:4_0:182_0:30$ ip community-list expanded c6 permit 575 ^65000:3_0:182_0:176$ ip community-list expanded c6 permit 576 ^65000:4_0:183_0:27$ ip community-list expanded c6 permit 577 ^65000:4_0:183_0:28$ ip community-list expanded c6 permit 578 ^65000:4_0:183_0:29$ ip community-list expanded c6 permit 579 ^65000:4_0:183_0:30$ ip community-list expanded c6 permit 580 ^65000:3_0:183_0:177$ ip community-list expanded c6 permit 581 ^65000:4_0:184_0:27$ ip community-list expanded c6 permit 582 ^65000:4_0:184_0:28$ ip community-list expanded c6 permit 583 ^65000:4_0:184_0:29$ ip community-list expanded c6 permit 584 ^65000:4_0:184_0:30$ ip community-list expanded c6 permit 585 ^65000:3_0:184_0:178$ ip community-list expanded c6 permit 586 ^65000:4_0:185_0:27$ ip community-list expanded c6 permit 587 ^65000:4_0:185_0:28$ ip community-list expanded c6 permit 588 ^65000:4_0:185_0:29$ ip community-list expanded c6 permit 589 ^65000:4_0:185_0:30$ ip community-list expanded c6 permit 590 ^65000:3_0:185_0:179$ ip community-list expanded c6 permit 591 ^65000:4_0:186_0:27$ ip community-list expanded c6 permit 592 ^65000:4_0:186_0:28$ ip community-list expanded c6 permit 593 ^65000:4_0:186_0:29$ ip community-list expanded c6 permit 594 ^65000:4_0:186_0:30$ ip community-list expanded c6 permit 595 ^65000:4_0:186_0:31$ ip community-list expanded c6 permit 596 ^65000:3_0:186_0:180$ ip community-list expanded c6 permit 597 ^65000:4_0:187_0:27$ ip community-list expanded c6 permit 598 ^65000:4_0:187_0:28$ ip community-list expanded c6 permit 599 ^65000:4_0:187_0:29$ ip community-list expanded c6 permit 600 ^65000:4_0:187_0:30$ ip community-list expanded c6 permit 601 ^65000:4_0:187_0:31$ ip community-list expanded c6 permit 602 ^65000:3_0:187_0:181$ ip community-list expanded c6 permit 603 ^65000:4_0:188_0:27$ ip community-list expanded c6 permit 604 ^65000:4_0:188_0:28$ ip community-list expanded c6 permit 605 ^65000:4_0:188_0:29$ ip community-list expanded c6 permit 606 ^65000:4_0:188_0:30$ ip community-list expanded c6 permit 607 ^65000:4_0:188_0:31$ ip community-list expanded c6 permit 608 ^65000:3_0:188_0:182$ ip community-list expanded c6 permit 609 ^65000:4_0:189_0:28$ ip community-list expanded c6 permit 610 ^65000:4_0:189_0:29$ ip community-list expanded c6 permit 611 ^65000:4_0:189_0:30$ ip community-list expanded c6 permit 612 ^65000:4_0:189_0:31$ ip community-list expanded c6 permit 613 ^65000:3_0:189_0:183$ ip community-list expanded c6 permit 614 ^65000:4_0:190_0:28$ ip community-list expanded c6 permit 615 ^65000:4_0:190_0:29$ ip community-list expanded c6 permit 616 ^65000:4_0:190_0:30$ ip community-list expanded c6 permit 617 ^65000:4_0:190_0:31$ ip community-list expanded c6 permit 618 ^65000:3_0:190_0:184$ ip community-list expanded c6 permit 619 ^65000:4_0:191_0:28$ ip community-list expanded c6 permit 620 ^65000:4_0:191_0:29$ ip community-list expanded c6 permit 621 ^65000:4_0:191_0:30$ ip community-list expanded c6 permit 622 ^65000:4_0:191_0:31$ ip community-list expanded c6 permit 623 ^65000:3_0:191_0:185$ ip community-list expanded c6 permit 624 ^65000:4_0:192_0:28$ ip community-list expanded c6 permit 625 ^65000:4_0:192_0:29$ ip community-list expanded c6 permit 626 ^65000:4_0:192_0:30$ ip community-list expanded c6 permit 627 ^65000:4_0:192_0:31$ ip community-list expanded c6 permit 628 ^65000:4_0:192_0:32$ ip community-list expanded c6 permit 629 ^65000:3_0:192_0:186$ ip community-list expanded c6 permit 630 ^65000:4_0:193_0:28$ ip community-list expanded c6 permit 631 ^65000:4_0:193_0:29$ ip community-list expanded c6 permit 632 ^65000:4_0:193_0:30$ ip community-list expanded c6 permit 633 ^65000:4_0:193_0:31$ ip community-list expanded c6 permit 634 ^65000:4_0:193_0:32$ ip community-list expanded c6 permit 635 ^65000:3_0:193_0:187$ ip community-list expanded c6 permit 636 ^65000:4_0:194_0:28$ ip community-list expanded c6 permit 637 ^65000:4_0:194_0:29$ ip community-list expanded c6 permit 638 ^65000:4_0:194_0:30$ ip community-list expanded c6 permit 639 ^65000:4_0:194_0:31$ ip community-list expanded c6 permit 640 ^65000:4_0:194_0:32$ ip community-list expanded c6 permit 641 ^65000:3_0:194_0:188$ ip community-list expanded c6 permit 642 ^65000:4_0:195_0:28$ ip community-list expanded c6 permit 643 ^65000:4_0:195_0:29$ ip community-list expanded c6 permit 644 ^65000:4_0:195_0:30$ ip community-list expanded c6 permit 645 ^65000:4_0:195_0:31$ ip community-list expanded c6 permit 646 ^65000:4_0:195_0:32$ ip community-list expanded c6 permit 647 ^65000:3_0:195_0:189$ ip community-list expanded c6 permit 648 ^65000:4_0:196_0:29$ ip community-list expanded c6 permit 649 ^65000:4_0:196_0:30$ ip community-list expanded c6 permit 650 ^65000:4_0:196_0:31$ ip community-list expanded c6 permit 651 ^65000:4_0:196_0:32$ ip community-list expanded c6 permit 652 ^65000:3_0:196_0:190$ ip community-list expanded c6 permit 653 ^65000:4_0:197_0:29$ ip community-list expanded c6 permit 654 ^65000:4_0:197_0:30$ ip community-list expanded c6 permit 655 ^65000:4_0:197_0:31$ ip community-list expanded c6 permit 656 ^65000:4_0:197_0:32$ ip community-list expanded c6 permit 657 ^65000:3_0:197_0:191$ ip community-list expanded c6 permit 658 ^65000:4_0:198_0:29$ ip community-list expanded c6 permit 659 ^65000:4_0:198_0:30$ ip community-list expanded c6 permit 660 ^65000:4_0:198_0:31$ ip community-list expanded c6 permit 661 ^65000:4_0:198_0:32$ ip community-list expanded c6 permit 662 ^65000:4_0:198_0:33$ ip community-list expanded c6 permit 663 ^65000:3_0:198_0:192$ ip community-list expanded c6 permit 664 ^65000:4_0:199_0:29$ ip community-list expanded c6 permit 665 ^65000:4_0:199_0:30$ ip community-list expanded c6 permit 666 ^65000:4_0:199_0:31$ ip community-list expanded c6 permit 667 ^65000:4_0:199_0:32$ ip community-list expanded c6 permit 668 ^65000:4_0:199_0:33$ ip community-list expanded c6 permit 669 ^65000:3_0:199_0:193$ ip community-list expanded c6 permit 670 ^65000:4_0:200_0:29$ ip community-list expanded c6 permit 671 ^65000:4_0:200_0:30$ ip community-list expanded c6 permit 672 ^65000:4_0:200_0:31$ ip community-list expanded c6 permit 673 ^65000:4_0:200_0:32$ ip community-list expanded c6 permit 674 ^65000:4_0:200_0:33$ ip community-list expanded c6 permit 675 ^65000:3_0:200_0:194$ ip community-list expanded c6 permit 676 ^65000:4_0:201_0:29$ ip community-list expanded c6 permit 677 ^65000:4_0:201_0:30$ ip community-list expanded c6 permit 678 ^65000:4_0:201_0:31$ ip community-list expanded c6 permit 679 ^65000:4_0:201_0:32$ ip community-list expanded c6 permit 680 ^65000:4_0:201_0:33$ ip community-list expanded c6 permit 681 ^65000:3_0:201_0:195$ ip community-list expanded c6 permit 682 ^65000:4_0:202_0:29$ ip community-list expanded c6 permit 683 ^65000:4_0:202_0:30$ ip community-list expanded c6 permit 684 ^65000:4_0:202_0:31$ ip community-list expanded c6 permit 685 ^65000:4_0:202_0:32$ ip community-list expanded c6 permit 686 ^65000:4_0:202_0:33$ ip community-list expanded c6 permit 687 ^65000:3_0:202_0:196$ ip community-list expanded c6 permit 688 ^65000:4_0:203_0:30$ ip community-list expanded c6 permit 689 ^65000:4_0:203_0:31$ ip community-list expanded c6 permit 690 ^65000:4_0:203_0:32$ ip community-list expanded c6 permit 691 ^65000:4_0:203_0:33$ ip community-list expanded c6 permit 692 ^65000:3_0:203_0:197$ ip community-list expanded c6 permit 693 ^65000:4_0:204_0:30$ ip community-list expanded c6 permit 694 ^65000:4_0:204_0:31$ ip community-list expanded c6 permit 695 ^65000:4_0:204_0:32$ ip community-list expanded c6 permit 696 ^65000:4_0:204_0:33$ ip community-list expanded c6 permit 697 ^65000:4_0:204_0:34$ ip community-list expanded c6 permit 698 ^65000:3_0:204_0:198$ ip community-list expanded c6 permit 699 ^65000:4_0:205_0:30$ ip community-list expanded c6 permit 700 ^65000:4_0:205_0:31$ ip community-list expanded c6 permit 701 ^65000:4_0:205_0:32$ ip community-list expanded c6 permit 702 ^65000:4_0:205_0:33$ ip community-list expanded c6 permit 703 ^65000:4_0:205_0:34$ ip community-list expanded c6 permit 704 ^65000:3_0:205_0:199$ ip community-list expanded c6 permit 705 ^65000:4_0:206_0:30$ ip community-list expanded c6 permit 706 ^65000:4_0:206_0:31$ ip community-list expanded c6 permit 707 ^65000:4_0:206_0:32$ ip community-list expanded c6 permit 708 ^65000:4_0:206_0:33$ ip community-list expanded c6 permit 709 ^65000:4_0:206_0:34$ ip community-list expanded c6 permit 710 ^65000:3_0:206_0:200$ ip community-list expanded c6 permit 711 ^65000:4_0:207_0:30$ ip community-list expanded c6 permit 712 ^65000:4_0:207_0:31$ ip community-list expanded c6 permit 713 ^65000:4_0:207_0:32$ ip community-list expanded c6 permit 714 ^65000:4_0:207_0:33$ ip community-list expanded c6 permit 715 ^65000:4_0:207_0:34$ ip community-list expanded c6 permit 716 ^65000:3_0:207_0:201$ ip community-list expanded c6 permit 717 ^65000:4_0:208_0:30$ ip community-list expanded c6 permit 718 ^65000:4_0:208_0:31$ ip community-list expanded c6 permit 719 ^65000:4_0:208_0:32$ ip community-list expanded c6 permit 720 ^65000:4_0:208_0:33$ ip community-list expanded c6 permit 721 ^65000:4_0:208_0:34$ ip community-list expanded c6 permit 722 ^65000:3_0:208_0:202$ ip community-list expanded c6 permit 723 ^65000:4_0:209_0:30$ ip community-list expanded c6 permit 724 ^65000:4_0:209_0:31$ ip community-list expanded c6 permit 725 ^65000:4_0:209_0:32$ ip community-list expanded c6 permit 726 ^65000:4_0:209_0:33$ ip community-list expanded c6 permit 727 ^65000:4_0:209_0:34$ ip community-list expanded c6 permit 728 ^65000:3_0:209_0:203$ ip community-list expanded c6 permit 729 ^65000:4_0:210_0:31$ ip community-list expanded c6 permit 730 ^65000:4_0:210_0:32$ ip community-list expanded c6 permit 731 ^65000:4_0:210_0:33$ ip community-list expanded c6 permit 732 ^65000:4_0:210_0:34$ ip community-list expanded c6 permit 733 ^65000:4_0:210_0:35$ ip community-list expanded c6 permit 734 ^65000:3_0:210_0:204$ ip community-list expanded c6 permit 735 ^65000:4_0:211_0:31$ ip community-list expanded c6 permit 736 ^65000:4_0:211_0:32$ ip community-list expanded c6 permit 737 ^65000:4_0:211_0:33$ ip community-list expanded c6 permit 738 ^65000:4_0:211_0:34$ ip community-list expanded c6 permit 739 ^65000:4_0:211_0:35$ ip community-list expanded c6 permit 740 ^65000:3_0:211_0:205$ ip community-list expanded c6 permit 741 ^65000:4_0:212_0:31$ ip community-list expanded c6 permit 742 ^65000:4_0:212_0:32$ ip community-list expanded c6 permit 743 ^65000:4_0:212_0:33$ ip community-list expanded c6 permit 744 ^65000:4_0:212_0:34$ ip community-list expanded c6 permit 745 ^65000:4_0:212_0:35$ ip community-list expanded c6 permit 746 ^65000:3_0:212_0:206$ ip community-list expanded c6 permit 747 ^65000:4_0:213_0:31$ ip community-list expanded c6 permit 748 ^65000:4_0:213_0:32$ ip community-list expanded c6 permit 749 ^65000:4_0:213_0:33$ ip community-list expanded c6 permit 750 ^65000:4_0:213_0:34$ ip community-list expanded c6 permit 751 ^65000:4_0:213_0:35$ ip community-list expanded c6 permit 752 ^65000:3_0:213_0:207$ ip community-list expanded c6 permit 753 ^65000:4_0:214_0:31$ ip community-list expanded c6 permit 754 ^65000:4_0:214_0:32$ ip community-list expanded c6 permit 755 ^65000:4_0:214_0:33$ ip community-list expanded c6 permit 756 ^65000:4_0:214_0:34$ ip community-list expanded c6 permit 757 ^65000:4_0:214_0:35$ ip community-list expanded c6 permit 758 ^65000:3_0:214_0:208$ ip community-list expanded c6 permit 759 ^65000:4_0:215_0:31$ ip community-list expanded c6 permit 760 ^65000:4_0:215_0:32$ ip community-list expanded c6 permit 761 ^65000:4_0:215_0:33$ ip community-list expanded c6 permit 762 ^65000:4_0:215_0:34$ ip community-list expanded c6 permit 763 ^65000:4_0:215_0:35$ ip community-list expanded c6 permit 764 ^65000:3_0:215_0:209$ ip community-list expanded c6 permit 765 ^65000:4_0:216_0:31$ ip community-list expanded c6 permit 766 ^65000:4_0:216_0:32$ ip community-list expanded c6 permit 767 ^65000:4_0:216_0:33$ ip community-list expanded c6 permit 768 ^65000:4_0:216_0:34$ ip community-list expanded c6 permit 769 ^65000:4_0:216_0:35$ ip community-list expanded c6 permit 770 ^65000:4_0:216_0:36$ ip community-list expanded c6 permit 771 ^65000:3_0:216_0:210$ ip community-list expanded c6 permit 772 ^65000:4_0:217_0:32$ ip community-list expanded c6 permit 773 ^65000:4_0:217_0:33$ ip community-list expanded c6 permit 774 ^65000:4_0:217_0:34$ ip community-list expanded c6 permit 775 ^65000:4_0:217_0:35$ ip community-list expanded c6 permit 776 ^65000:4_0:217_0:36$ ip community-list expanded c6 permit 777 ^65000:3_0:217_0:211$ ip community-list expanded c6 permit 778 ^65000:4_0:218_0:32$ ip community-list expanded c6 permit 779 ^65000:4_0:218_0:33$ ip community-list expanded c6 permit 780 ^65000:4_0:218_0:34$ ip community-list expanded c6 permit 781 ^65000:4_0:218_0:35$ ip community-list expanded c6 permit 782 ^65000:4_0:218_0:36$ ip community-list expanded c6 permit 783 ^65000:3_0:218_0:212$ ip community-list expanded c6 permit 784 ^65000:4_0:219_0:32$ ip community-list expanded c6 permit 785 ^65000:4_0:219_0:33$ ip community-list expanded c6 permit 786 ^65000:4_0:219_0:34$ ip community-list expanded c6 permit 787 ^65000:4_0:219_0:35$ ip community-list expanded c6 permit 788 ^65000:4_0:219_0:36$ ip community-list expanded c6 permit 789 ^65000:3_0:219_0:213$ ip community-list expanded c6 permit 790 ^65000:4_0:220_0:32$ ip community-list expanded c6 permit 791 ^65000:4_0:220_0:33$ ip community-list expanded c6 permit 792 ^65000:4_0:220_0:34$ ip community-list expanded c6 permit 793 ^65000:4_0:220_0:35$ ip community-list expanded c6 permit 794 ^65000:4_0:220_0:36$ ip community-list expanded c6 permit 795 ^65000:3_0:220_0:214$ ip community-list expanded c6 permit 796 ^65000:4_0:221_0:32$ ip community-list expanded c6 permit 797 ^65000:4_0:221_0:33$ ip community-list expanded c6 permit 798 ^65000:4_0:221_0:34$ ip community-list expanded c6 permit 799 ^65000:4_0:221_0:35$ ip community-list expanded c6 permit 800 ^65000:4_0:221_0:36$ ip community-list expanded c6 permit 801 ^65000:3_0:221_0:215$ ip community-list expanded c6 permit 802 ^65000:4_0:222_0:32$ ip community-list expanded c6 permit 803 ^65000:4_0:222_0:33$ ip community-list expanded c6 permit 804 ^65000:4_0:222_0:34$ ip community-list expanded c6 permit 805 ^65000:4_0:222_0:35$ ip community-list expanded c6 permit 806 ^65000:4_0:222_0:36$ ip community-list expanded c6 permit 807 ^65000:4_0:222_0:37$ ip community-list expanded c6 permit 808 ^65000:3_0:222_0:216$ ip community-list expanded c6 permit 809 ^65000:4_0:223_0:32$ ip community-list expanded c6 permit 810 ^65000:4_0:223_0:33$ ip community-list expanded c6 permit 811 ^65000:4_0:223_0:34$ ip community-list expanded c6 permit 812 ^65000:4_0:223_0:35$ ip community-list expanded c6 permit 813 ^65000:4_0:223_0:36$ ip community-list expanded c6 permit 814 ^65000:4_0:223_0:37$ ip community-list expanded c6 permit 815 ^65000:3_0:223_0:217$ ip community-list expanded c6 permit 816 ^65000:4_0:224_0:33$ ip community-list expanded c6 permit 817 ^65000:4_0:224_0:34$ ip community-list expanded c6 permit 818 ^65000:4_0:224_0:35$ ip community-list expanded c6 permit 819 ^65000:4_0:224_0:36$ ip community-list expanded c6 permit 820 ^65000:4_0:224_0:37$ ip community-list expanded c6 permit 821 ^65000:3_0:224_0:218$ ip community-list expanded c6 permit 822 ^65000:4_0:225_0:33$ ip community-list expanded c6 permit 823 ^65000:4_0:225_0:34$ ip community-list expanded c6 permit 824 ^65000:4_0:225_0:35$ ip community-list expanded c6 permit 825 ^65000:4_0:225_0:36$ ip community-list expanded c6 permit 826 ^65000:4_0:225_0:37$ ip community-list expanded c6 permit 827 ^65000:3_0:225_0:219$ ip community-list expanded c6 permit 828 ^65000:4_0:226_0:33$ ip community-list expanded c6 permit 829 ^65000:4_0:226_0:34$ ip community-list expanded c6 permit 830 ^65000:4_0:226_0:35$ ip community-list expanded c6 permit 831 ^65000:4_0:226_0:36$ ip community-list expanded c6 permit 832 ^65000:4_0:226_0:37$ ip community-list expanded c6 permit 833 ^65000:3_0:226_0:220$ ip community-list expanded c6 permit 834 ^65000:4_0:227_0:33$ ip community-list expanded c6 permit 835 ^65000:4_0:227_0:34$ ip community-list expanded c6 permit 836 ^65000:4_0:227_0:35$ ip community-list expanded c6 permit 837 ^65000:4_0:227_0:36$ ip community-list expanded c6 permit 838 ^65000:4_0:227_0:37$ ip community-list expanded c6 permit 839 ^65000:3_0:227_0:221$ ip community-list expanded c6 permit 840 ^65000:4_0:228_0:33$ ip community-list expanded c6 permit 841 ^65000:4_0:228_0:34$ ip community-list expanded c6 permit 842 ^65000:4_0:228_0:35$ ip community-list expanded c6 permit 843 ^65000:4_0:228_0:36$ ip community-list expanded c6 permit 844 ^65000:4_0:228_0:37$ ip community-list expanded c6 permit 845 ^65000:4_0:228_0:38$ ip community-list expanded c6 permit 846 ^65000:3_0:228_0:222$ ip community-list expanded c6 permit 847 ^65000:4_0:229_0:33$ ip community-list expanded c6 permit 848 ^65000:4_0:229_0:34$ ip community-list expanded c6 permit 849 ^65000:4_0:229_0:35$ ip community-list expanded c6 permit 850 ^65000:4_0:229_0:36$ ip community-list expanded c6 permit 851 ^65000:4_0:229_0:37$ ip community-list expanded c6 permit 852 ^65000:4_0:229_0:38$ ip community-list expanded c6 permit 853 ^65000:3_0:229_0:223$ ip community-list expanded c6 permit 854 ^65000:4_0:230_0:33$ ip community-list expanded c6 permit 855 ^65000:4_0:230_0:34$ ip community-list expanded c6 permit 856 ^65000:4_0:230_0:35$ ip community-list expanded c6 permit 857 ^65000:4_0:230_0:36$ ip community-list expanded c6 permit 858 ^65000:4_0:230_0:37$ ip community-list expanded c6 permit 859 ^65000:4_0:230_0:38$ ip community-list expanded c6 permit 860 ^65000:3_0:230_0:224$ ip community-list expanded c6 permit 861 ^65000:4_0:231_0:34$ ip community-list expanded c6 permit 862 ^65000:4_0:231_0:35$ ip community-list expanded c6 permit 863 ^65000:4_0:231_0:36$ ip community-list expanded c6 permit 864 ^65000:4_0:231_0:37$ ip community-list expanded c6 permit 865 ^65000:4_0:231_0:38$ ip community-list expanded c6 permit 866 ^65000:3_0:231_0:225$ ip community-list expanded c6 permit 867 ^65000:4_0:232_0:34$ ip community-list expanded c6 permit 868 ^65000:4_0:232_0:35$ ip community-list expanded c6 permit 869 ^65000:4_0:232_0:36$ ip community-list expanded c6 permit 870 ^65000:4_0:232_0:37$ ip community-list expanded c6 permit 871 ^65000:4_0:232_0:38$ ip community-list expanded c6 permit 872 ^65000:3_0:232_0:226$ ip community-list expanded c6 permit 873 ^65000:4_0:233_0:34$ ip community-list expanded c6 permit 874 ^65000:4_0:233_0:35$ ip community-list expanded c6 permit 875 ^65000:4_0:233_0:36$ ip community-list expanded c6 permit 876 ^65000:4_0:233_0:37$ ip community-list expanded c6 permit 877 ^65000:4_0:233_0:38$ ip community-list expanded c6 permit 878 ^65000:3_0:233_0:227$ ip community-list expanded c6 permit 879 ^65000:4_0:234_0:34$ ip community-list expanded c6 permit 880 ^65000:4_0:234_0:35$ ip community-list expanded c6 permit 881 ^65000:4_0:234_0:36$ ip community-list expanded c6 permit 882 ^65000:4_0:234_0:37$ ip community-list expanded c6 permit 883 ^65000:4_0:234_0:38$ ip community-list expanded c6 permit 884 ^65000:4_0:234_0:39$ ip community-list expanded c6 permit 885 ^65000:3_0:234_0:228$ ip community-list expanded c6 permit 886 ^65000:4_0:235_0:34$ ip community-list expanded c6 permit 887 ^65000:4_0:235_0:35$ ip community-list expanded c6 permit 888 ^65000:4_0:235_0:36$ ip community-list expanded c6 permit 889 ^65000:4_0:235_0:37$ ip community-list expanded c6 permit 890 ^65000:4_0:235_0:38$ ip community-list expanded c6 permit 891 ^65000:4_0:235_0:39$ ip community-list expanded c6 permit 892 ^65000:3_0:235_0:229$ ip community-list expanded c6 permit 893 ^65000:4_0:236_0:34$ ip community-list expanded c6 permit 894 ^65000:4_0:236_0:35$ ip community-list expanded c6 permit 895 ^65000:4_0:236_0:36$ ip community-list expanded c6 permit 896 ^65000:4_0:236_0:37$ ip community-list expanded c6 permit 897 ^65000:4_0:236_0:38$ ip community-list expanded c6 permit 898 ^65000:4_0:236_0:39$ ip community-list expanded c6 permit 899 ^65000:3_0:236_0:230$ ip community-list expanded c6 permit 900 ^65000:4_0:237_0:34$ ip community-list expanded c6 permit 901 ^65000:4_0:237_0:35$ ip community-list expanded c6 permit 902 ^65000:4_0:237_0:36$ ip community-list expanded c6 permit 903 ^65000:4_0:237_0:37$ ip community-list expanded c6 permit 904 ^65000:4_0:237_0:38$ ip community-list expanded c6 permit 905 ^65000:4_0:237_0:39$ ip community-list expanded c6 permit 906 ^65000:3_0:237_0:231$ ip community-list expanded c6 permit 907 ^65000:4_0:238_0:35$ ip community-list expanded c6 permit 908 ^65000:4_0:238_0:36$ ip community-list expanded c6 permit 909 ^65000:4_0:238_0:37$ ip community-list expanded c6 permit 910 ^65000:4_0:238_0:38$ ip community-list expanded c6 permit 911 ^65000:4_0:238_0:39$ ip community-list expanded c6 permit 912 ^65000:3_0:238_0:232$ ip community-list expanded c6 permit 913 ^65000:4_0:239_0:35$ ip community-list expanded c6 permit 914 ^65000:4_0:239_0:36$ ip community-list expanded c6 permit 915 ^65000:4_0:239_0:37$ ip community-list expanded c6 permit 916 ^65000:4_0:239_0:38$ ip community-list expanded c6 permit 917 ^65000:4_0:239_0:39$ ip community-list expanded c6 permit 918 ^65000:3_0:239_0:233$ ip community-list expanded c6 permit 919 ^65000:4_0:240_0:35$ ip community-list expanded c6 permit 920 ^65000:4_0:240_0:36$ ip community-list expanded c6 permit 921 ^65000:4_0:240_0:37$ ip community-list expanded c6 permit 922 ^65000:4_0:240_0:38$ ip community-list expanded c6 permit 923 ^65000:4_0:240_0:39$ ip community-list expanded c6 permit 924 ^65000:4_0:240_0:40$ ip community-list expanded c6 permit 925 ^65000:3_0:240_0:234$ ip community-list expanded c6 permit 926 ^65000:4_0:241_0:35$ ip community-list expanded c6 permit 927 ^65000:4_0:241_0:36$ ip community-list expanded c6 permit 928 ^65000:4_0:241_0:37$ ip community-list expanded c6 permit 929 ^65000:4_0:241_0:38$ ip community-list expanded c6 permit 930 ^65000:4_0:241_0:39$ ip community-list expanded c6 permit 931 ^65000:4_0:241_0:40$ ip community-list expanded c6 permit 932 ^65000:3_0:241_0:235$ ip community-list expanded c6 permit 933 ^65000:4_0:242_0:35$ ip community-list expanded c6 permit 934 ^65000:4_0:242_0:36$ ip community-list expanded c6 permit 935 ^65000:4_0:242_0:37$ ip community-list expanded c6 permit 936 ^65000:4_0:242_0:38$ ip community-list expanded c6 permit 937 ^65000:4_0:242_0:39$ ip community-list expanded c6 permit 938 ^65000:4_0:242_0:40$ ip community-list expanded c6 permit 939 ^65000:3_0:242_0:236$ ip community-list expanded c6 permit 940 ^65000:4_0:243_0:35$ ip community-list expanded c6 permit 941 ^65000:4_0:243_0:36$ ip community-list expanded c6 permit 942 ^65000:4_0:243_0:37$ ip community-list expanded c6 permit 943 ^65000:4_0:243_0:38$ ip community-list expanded c6 permit 944 ^65000:4_0:243_0:39$ ip community-list expanded c6 permit 945 ^65000:4_0:243_0:40$ ip community-list expanded c6 permit 946 ^65000:3_0:243_0:237$ ip community-list expanded c6 permit 947 ^65000:4_0:244_0:35$ ip community-list expanded c6 permit 948 ^65000:4_0:244_0:36$ ip community-list expanded c6 permit 949 ^65000:4_0:244_0:37$ ip community-list expanded c6 permit 950 ^65000:4_0:244_0:38$ ip community-list expanded c6 permit 951 ^65000:4_0:244_0:39$ ip community-list expanded c6 permit 952 ^65000:4_0:244_0:40$ ip community-list expanded c6 permit 953 ^65000:3_0:244_0:238$ ip community-list expanded c6 permit 954 ^65000:4_0:245_0:36$ ip community-list expanded c6 permit 955 ^65000:4_0:245_0:37$ ip community-list expanded c6 permit 956 ^65000:4_0:245_0:38$ ip community-list expanded c6 permit 957 ^65000:4_0:245_0:39$ ip community-list expanded c6 permit 958 ^65000:4_0:245_0:40$ ip community-list expanded c6 permit 959 ^65000:3_0:245_0:239$ ip community-list expanded c6 permit 960 ^65000:4_0:246_0:36$ ip community-list expanded c6 permit 961 ^65000:4_0:246_0:37$ ip community-list expanded c6 permit 962 ^65000:4_0:246_0:38$ ip community-list expanded c6 permit 963 ^65000:4_0:246_0:39$ ip community-list expanded c6 permit 964 ^65000:4_0:246_0:40$ ip community-list expanded c6 permit 965 ^65000:4_0:246_0:41$ ip community-list expanded c6 permit 966 ^65000:3_0:246_0:240$ ip community-list expanded c6 permit 967 ^65000:4_0:247_0:36$ ip community-list expanded c6 permit 968 ^65000:4_0:247_0:37$ ip community-list expanded c6 permit 969 ^65000:4_0:247_0:38$ ip community-list expanded c6 permit 970 ^65000:4_0:247_0:39$ ip community-list expanded c6 permit 971 ^65000:4_0:247_0:40$ ip community-list expanded c6 permit 972 ^65000:4_0:247_0:41$ ip community-list expanded c6 permit 973 ^65000:3_0:247_0:241$ ip community-list expanded c6 permit 974 ^65000:4_0:248_0:36$ ip community-list expanded c6 permit 975 ^65000:4_0:248_0:37$ ip community-list expanded c6 permit 976 ^65000:4_0:248_0:38$ ip community-list expanded c6 permit 977 ^65000:4_0:248_0:39$ ip community-list expanded c6 permit 978 ^65000:4_0:248_0:40$ ip community-list expanded c6 permit 979 ^65000:4_0:248_0:41$ ip community-list expanded c6 permit 980 ^65000:3_0:248_0:242$ ip community-list expanded c6 permit 981 ^65000:4_0:249_0:36$ ip community-list expanded c6 permit 982 ^65000:4_0:249_0:37$ ip community-list expanded c6 permit 983 ^65000:4_0:249_0:38$ ip community-list expanded c6 permit 984 ^65000:4_0:249_0:39$ ip community-list expanded c6 permit 985 ^65000:4_0:249_0:40$ ip community-list expanded c6 permit 986 ^65000:4_0:249_0:41$ ip community-list expanded c6 permit 987 ^65000:3_0:249_0:243$ ip community-list expanded c6 permit 988 ^65000:4_0:250_0:36$ ip community-list expanded c6 permit 989 ^65000:4_0:250_0:37$ ip community-list expanded c6 permit 990 ^65000:4_0:250_0:38$ ip community-list expanded c6 permit 991 ^65000:4_0:250_0:39$ ip community-list expanded c6 permit 992 ^65000:4_0:250_0:40$ ip community-list expanded c6 permit 993 ^65000:4_0:250_0:41$ ip community-list expanded c6 permit 994 ^65000:3_0:250_0:244$ ip community-list expanded c6 permit 995 ^65000:4_0:251_0:36$ ip community-list expanded c6 permit 996 ^65000:4_0:251_0:37$ ip community-list expanded c6 permit 997 ^65000:4_0:251_0:38$ ip community-list expanded c6 permit 998 ^65000:4_0:251_0:39$ ip community-list expanded c6 permit 999 ^65000:4_0:251_0:40$ ip community-list expanded c6 permit 1000 ^65000:4_0:251_0:41$ ip community-list expanded c6 permit 1001 ^65000:3_0:251_0:245$ ip community-list expanded c6 permit 1002 ^65000:4_0:252_0:37$ ip community-list expanded c6 permit 1003 ^65000:4_0:252_0:38$ ip community-list expanded c6 permit 1004 ^65000:4_0:252_0:39$ ip community-list expanded c6 permit 1005 ^65000:4_0:252_0:40$ ip community-list expanded c6 permit 1006 ^65000:4_0:252_0:41$ ip community-list expanded c6 permit 1007 ^65000:4_0:252_0:42$ ip community-list expanded c6 permit 1008 ^65000:3_0:252_0:246$ ip community-list expanded c6 permit 1009 ^65000:4_0:253_0:37$ ip community-list expanded c6 permit 1010 ^65000:4_0:253_0:38$ ip community-list expanded c6 permit 1011 ^65000:4_0:253_0:39$ ip community-list expanded c6 permit 1012 ^65000:4_0:253_0:40$ ip community-list expanded c6 permit 1013 ^65000:4_0:253_0:41$ ip community-list expanded c6 permit 1014 ^65000:4_0:253_0:42$ ip community-list expanded c6 permit 1015 ^65000:3_0:253_0:247$ ip community-list expanded c6 permit 1016 ^65000:4_0:254_0:37$ ip community-list expanded c6 permit 1017 ^65000:4_0:254_0:38$ ip community-list expanded c6 permit 1018 ^65000:4_0:254_0:39$ ip community-list expanded c6 permit 1019 ^65000:4_0:254_0:40$ ip community-list expanded c6 permit 1020 ^65000:4_0:254_0:41$ ip community-list expanded c6 permit 1021 ^65000:4_0:254_0:42$ ip community-list expanded c6 permit 1022 ^65000:3_0:254_0:248$ ip community-list expanded c6 permit 1023 ^65000:4_0:255_0:37$ ip community-list expanded c6 permit 1024 ^65000:4_0:255_0:38$ ip community-list expanded c6 permit 1025 ^65000:4_0:255_0:39$ ip community-list expanded c6 permit 1026 ^65000:4_0:255_0:40$ ip community-list expanded c6 permit 1027 ^65000:4_0:255_0:41$ ip community-list expanded c6 permit 1028 ^65000:4_0:255_0:42$ ip community-list expanded c6 permit 1029 ^65000:3_0:255_0:249$ ip community-list expanded c6 permit 1030 ^65000:4_0:256_0:37$ ip community-list expanded c6 permit 1031 ^65000:4_0:256_0:38$ ip community-list expanded c6 permit 1032 ^65000:4_0:256_0:39$ ip community-list expanded c6 permit 1033 ^65000:4_0:256_0:40$ ip community-list expanded c6 permit 1034 ^65000:4_0:256_0:41$ ip community-list expanded c6 permit 1035 ^65000:4_0:256_0:42$ ip community-list expanded c6 permit 1036 ^65000:3_0:256_0:250$ route-map calculator permit 24675 match community 1_1_5 2_1_6 2_2_3 1_2_4 1_3_3 set community 0:6 route-map calculator permit 24676 match community c4_6_1 c3_7_1 c3_8_2 c3_9_3 c3_10_4 set community 0:6 route-map calculator permit 24677 match community c3_11_5 c4_12_2 c3_12_6 c4_13_2 c3_13_7 set community 0:6 route-map calculator permit 24678 match community c3_14_8 c3_15_9 c3_16_10 c3_17_11 c4_18_3 set community 0:6 route-map calculator permit 24679 match community c3_18_12 c4_19_3 c3_19_13 c4_20_3 c3_20_14 set community 0:6 route-map calculator permit 24680 match community c3_21_15 c3_22_16 c3_23_17 c4_24_4 c3_24_18 set community 0:6 route-map calculator permit 24681 match community c4_25_4 c3_25_19 c4_26_4 c3_26_20 c4_27_4 set community 0:6 route-map calculator permit 24682 match community c3_27_21 c3_28_22 c3_29_23 c4_30_5 c3_30_24 set community 0:6 route-map calculator permit 24683 match community c4_31_5 c3_31_25 c4_32_5 c3_32_26 c4_33_5 set community 0:6 route-map calculator permit 24684 match community c3_33_27 c4_34_5 c3_34_28 c3_35_29 c4_36_6 set community 0:6 route-map calculator permit 24685 match community c3_36_30 c4_37_6 c3_37_31 c4_38_6 c3_38_32 set community 0:6 route-map calculator permit 24686 match community c4_39_6 c3_39_33 c4_40_6 c3_40_34 c4_41_6 set community 0:6 route-map calculator permit 24687 match community c3_41_35 c4_42_7 c3_42_36 c4_43_7 c3_43_37 set community 0:6 route-map calculator permit 24688 match community c4_44_7 c3_44_38 c4_45_7 c3_45_39 c4_46_7 set community 0:6 route-map calculator permit 24689 match community c3_46_40 c4_47_7 c3_47_41 c4_48_7 c4_48_8 set community 0:6 route-map calculator permit 24690 match community c3_48_42 c4_49_8 c3_49_43 c4_50_8 c3_50_44 set community 0:6 route-map calculator permit 24691 match community c4_51_8 c3_51_45 c4_52_8 c3_52_46 c4_53_8 set community 0:6 route-map calculator permit 24692 match community c3_53_47 c4_54_8 c4_54_9 c3_54_48 c4_55_8 set community 0:6 route-map calculator permit 24693 match community c4_55_9 c3_55_49 c4_56_9 c3_56_50 c4_57_9 set community 0:6 route-map calculator permit 24694 match community c3_57_51 c4_58_9 c3_58_52 c4_59_9 c3_59_53 set community 0:6 route-map calculator permit 24695 match community c4_60_9 c4_60_10 c3_60_54 c4_61_9 c4_61_10 set community 0:6 route-map calculator permit 24696 match community c3_61_55 c4_62_9 c4_62_10 c3_62_56 c4_63_10 set community 0:6 route-map calculator permit 24697 match community c3_63_57 c4_64_10 c3_64_58 c4_65_10 c3_65_59 set community 0:6 route-map calculator permit 24698 match community c4_66_10 c4_66_11 c3_66_60 c4_67_10 c4_67_11 set community 0:6 route-map calculator permit 24699 match community c3_67_61 c4_68_10 c4_68_11 c3_68_62 c4_69_10 set community 0:6 route-map calculator permit 24700 match community c4_69_11 c3_69_63 c4_70_11 c3_70_64 c4_71_11 set community 0:6 route-map calculator permit 24701 match community c3_71_65 c4_72_11 c4_72_12 c3_72_66 c4_73_11 set community 0:6 route-map calculator permit 24702 match community c4_73_12 c3_73_67 c4_74_11 c4_74_12 c3_74_68 set community 0:6 route-map calculator permit 24703 match community c4_75_11 c4_75_12 c3_75_69 c4_76_11 c4_76_12 set community 0:6 route-map calculator permit 24704 match community c3_76_70 c4_77_12 c3_77_71 c4_78_12 c4_78_13 set community 0:6 route-map calculator permit 24705 match community c3_78_72 c4_79_12 c4_79_13 c3_79_73 c4_80_12 set community 0:6 route-map calculator permit 24706 match community c4_80_13 c3_80_74 c4_81_12 c4_81_13 c3_81_75 set community 0:6 route-map calculator permit 24707 match community c4_82_12 c4_82_13 c3_82_76 c4_83_12 c4_83_13 set community 0:6 route-map calculator permit 24708 match community c3_83_77 c4_84_13 c4_84_14 c3_84_78 c4_85_13 set community 0:6 route-map calculator permit 24709 match community c4_85_14 c3_85_79 c4_86_13 c4_86_14 c3_86_80 set community 0:6 route-map calculator permit 24710 match community c4_87_13 c4_87_14 c3_87_81 c4_88_13 c4_88_14 set community 0:6 route-map calculator permit 24711 match community c3_88_82 c4_89_13 c4_89_14 c3_89_83 c4_90_13 set community 0:6 route-map calculator permit 24712 match community c4_90_14 c4_90_15 c3_90_84 c4_91_14 c4_91_15 set community 0:6 route-map calculator permit 24713 match community c3_91_85 c4_92_14 c4_92_15 c3_92_86 c4_93_14 set community 0:6 route-map calculator permit 24714 match community c4_93_15 c3_93_87 c4_94_14 c4_94_15 c3_94_88 set community 0:6 route-map calculator permit 24715 match community c4_95_14 c4_95_15 c3_95_89 c4_96_14 c4_96_15 set community 0:6 route-map calculator permit 24716 match community c4_96_16 c3_96_90 c4_97_14 c4_97_15 c4_97_16 set community 0:6 route-map calculator permit 24717 match community c3_97_91 c4_98_15 c4_98_16 c3_98_92 c4_99_15 set community 0:6 route-map calculator permit 24718 match community c4_99_16 c3_99_93 c4_100_15 c4_100_16 c3_100_94 set community 0:6 route-map calculator permit 24719 match community c4_101_15 c4_101_16 c3_101_95 c4_102_15 c4_102_16 set community 0:6 route-map calculator permit 24720 match community c4_102_17 c3_102_96 c4_103_15 c4_103_16 c4_103_17 set community 0:6 route-map calculator permit 24721 match community c3_103_97 c4_104_15 c4_104_16 c4_104_17 c3_104_98 set community 0:6 route-map calculator permit 24722 match community c4_105_16 c4_105_17 c3_105_99 c4_106_16 c4_106_17 set community 0:6 route-map calculator permit 24723 match community c3_106_100 c4_107_16 c4_107_17 c3_107_101 c4_108_16 set community 0:6 route-map calculator permit 24724 match community c4_108_17 c4_108_18 c3_108_102 c4_109_16 c4_109_17 set community 0:6 route-map calculator permit 24725 match community c4_109_18 c3_109_103 c4_110_16 c4_110_17 c4_110_18 set community 0:6 route-map calculator permit 24726 match community c3_110_104 c4_111_16 c4_111_17 c4_111_18 c3_111_105 set community 0:6 route-map calculator permit 24727 match community c4_112_17 c4_112_18 c3_112_106 c4_113_17 c4_113_18 set community 0:6 route-map calculator permit 24728 match community c3_113_107 c4_114_17 c4_114_18 c4_114_19 c3_114_108 set community 0:6 route-map calculator permit 24729 match community c4_115_17 c4_115_18 c4_115_19 c3_115_109 c4_116_17 set community 0:6 route-map calculator permit 24730 match community c4_116_18 c4_116_19 c3_116_110 c4_117_17 c4_117_18 set community 0:6 route-map calculator permit 24731 match community c4_117_19 c3_117_111 c4_118_17 c4_118_18 c4_118_19 set community 0:6 route-map calculator permit 24732 match community c3_118_112 c4_119_18 c4_119_19 c3_119_113 c4_120_18 set community 0:6 route-map calculator permit 24733 match community c4_120_19 c4_120_20 c3_120_114 c4_121_18 c4_121_19 set community 0:6 route-map calculator permit 24734 match community c4_121_20 c3_121_115 c4_122_18 c4_122_19 c4_122_20 set community 0:6 route-map calculator permit 24735 match community c3_122_116 c4_123_18 c4_123_19 c4_123_20 c3_123_117 set community 0:6 route-map calculator permit 24736 match community c4_124_18 c4_124_19 c4_124_20 c3_124_118 c4_125_18 set community 0:6 route-map calculator permit 24737 match community c4_125_19 c4_125_20 c3_125_119 c4_126_19 c4_126_20 set community 0:6 route-map calculator permit 24738 match community c4_126_21 c3_126_120 c4_127_19 c4_127_20 c4_127_21 set community 0:6 route-map calculator permit 24739 match community c3_127_121 c4_128_19 c4_128_20 c4_128_21 c3_128_122 set community 0:6 route-map calculator permit 24740 match community c4_129_19 c4_129_20 c4_129_21 c3_129_123 c4_130_19 set community 0:6 route-map calculator permit 24741 match community c4_130_20 c4_130_21 c3_130_124 c4_131_19 c4_131_20 set community 0:6 route-map calculator permit 24742 match community c4_131_21 c3_131_125 c4_132_19 c4_132_20 c4_132_21 set community 0:6 route-map calculator permit 24743 match community c4_132_22 c3_132_126 c4_133_20 c4_133_21 c4_133_22 set community 0:6 route-map calculator permit 24744 match community c3_133_127 c4_134_20 c4_134_21 c4_134_22 c3_134_128 set community 0:6 route-map calculator permit 24745 match community c4_135_20 c4_135_21 c4_135_22 c3_135_129 c4_136_20 set community 0:6 route-map calculator permit 24746 match community c4_136_21 c4_136_22 c3_136_130 c4_137_20 c4_137_21 set community 0:6 route-map calculator permit 24747 match community c4_137_22 c3_137_131 c4_138_20 c4_138_21 c4_138_22 set community 0:6 route-map calculator permit 24748 match community c4_138_23 c3_138_132 c4_139_20 c4_139_21 c4_139_22 set community 0:6 route-map calculator permit 24749 match community c4_139_23 c3_139_133 c4_140_21 c4_140_22 c4_140_23 set community 0:6 route-map calculator permit 24750 match community c3_140_134 c4_141_21 c4_141_22 c4_141_23 c3_141_135 set community 0:6 route-map calculator permit 24751 match community c4_142_21 c4_142_22 c4_142_23 c3_142_136 c4_143_21 set community 0:6 route-map calculator permit 24752 match community c4_143_22 c4_143_23 c3_143_137 c4_144_21 c4_144_22 set community 0:6 route-map calculator permit 24753 match community c4_144_23 c4_144_24 c3_144_138 c4_145_21 c4_145_22 set community 0:6 route-map calculator permit 24754 match community c4_145_23 c4_145_24 c3_145_139 c4_146_21 c4_146_22 set community 0:6 route-map calculator permit 24755 match community c4_146_23 c4_146_24 c3_146_140 c4_147_22 c4_147_23 set community 0:6 route-map calculator permit 24756 match community c4_147_24 c3_147_141 c4_148_22 c4_148_23 c4_148_24 set community 0:6 route-map calculator permit 24757 match community c3_148_142 c4_149_22 c4_149_23 c4_149_24 c3_149_143 set community 0:6 route-map calculator permit 24758 match community c4_150_22 c4_150_23 c4_150_24 c4_150_25 c3_150_144 set community 0:6 route-map calculator permit 24759 match community c4_151_22 c4_151_23 c4_151_24 c4_151_25 c3_151_145 set community 0:6 route-map calculator permit 24760 match community c4_152_22 c4_152_23 c4_152_24 c4_152_25 c3_152_146 set community 0:6 route-map calculator permit 24761 match community c4_153_22 c4_153_23 c4_153_24 c4_153_25 c3_153_147 set community 0:6 route-map calculator permit 24762 match community c4_154_23 c4_154_24 c4_154_25 c3_154_148 c4_155_23 set community 0:6 route-map calculator permit 24763 match community c4_155_24 c4_155_25 c3_155_149 c4_156_23 c4_156_24 set community 0:6 route-map calculator permit 24764 match community c4_156_25 c4_156_26 c3_156_150 c4_157_23 c4_157_24 set community 0:6 route-map calculator permit 24765 match community c4_157_25 c4_157_26 c3_157_151 c4_158_23 c4_158_24 set community 0:6 route-map calculator permit 24766 match community c4_158_25 c4_158_26 c3_158_152 c4_159_23 c4_159_24 set community 0:6 route-map calculator permit 24767 match community c4_159_25 c4_159_26 c3_159_153 c4_160_23 c4_160_24 set community 0:6 route-map calculator permit 24768 match community c4_160_25 c4_160_26 c3_160_154 c4_161_24 c4_161_25 set community 0:6 route-map calculator permit 24769 match community c4_161_26 c3_161_155 c4_162_24 c4_162_25 c4_162_26 set community 0:6 route-map calculator permit 24770 match community c4_162_27 c3_162_156 c4_163_24 c4_163_25 c4_163_26 set community 0:6 route-map calculator permit 24771 match community c4_163_27 c3_163_157 c4_164_24 c4_164_25 c4_164_26 set community 0:6 route-map calculator permit 24772 match community c4_164_27 c3_164_158 c4_165_24 c4_165_25 c4_165_26 set community 0:6 route-map calculator permit 24773 match community c4_165_27 c3_165_159 c4_166_24 c4_166_25 c4_166_26 set community 0:6 route-map calculator permit 24774 match community c4_166_27 c3_166_160 c4_167_24 c4_167_25 c4_167_26 set community 0:6 route-map calculator permit 24775 match community c4_167_27 c3_167_161 c4_168_25 c4_168_26 c4_168_27 set community 0:6 route-map calculator permit 24776 match community c4_168_28 c3_168_162 c4_169_25 c4_169_26 c4_169_27 set community 0:6 route-map calculator permit 24777 match community c4_169_28 c3_169_163 c4_170_25 c4_170_26 c4_170_27 set community 0:6 route-map calculator permit 24778 match community c4_170_28 c3_170_164 c4_171_25 c4_171_26 c4_171_27 set community 0:6 route-map calculator permit 24779 match community c4_171_28 c3_171_165 c4_172_25 c4_172_26 c4_172_27 set community 0:6 route-map calculator permit 24780 match community c4_172_28 c3_172_166 c4_173_25 c4_173_26 c4_173_27 set community 0:6 route-map calculator permit 24781 match community c4_173_28 c3_173_167 c4_174_25 c4_174_26 c4_174_27 set community 0:6 route-map calculator permit 24782 match community c4_174_28 c4_174_29 c3_174_168 c4_175_26 c4_175_27 set community 0:6 route-map calculator permit 24783 match community c4_175_28 c4_175_29 c3_175_169 c4_176_26 c4_176_27 set community 0:6 route-map calculator permit 24784 match community c4_176_28 c4_176_29 c3_176_170 c4_177_26 c4_177_27 set community 0:6 route-map calculator permit 24785 match community c4_177_28 c4_177_29 c3_177_171 c4_178_26 c4_178_27 set community 0:6 route-map calculator permit 24786 match community c4_178_28 c4_178_29 c3_178_172 c4_179_26 c4_179_27 set community 0:6 route-map calculator permit 24787 match community c4_179_28 c4_179_29 c3_179_173 c4_180_26 c4_180_27 set community 0:6 route-map calculator permit 24788 match community c4_180_28 c4_180_29 c4_180_30 c3_180_174 c4_181_26 set community 0:6 route-map calculator permit 24789 match community c4_181_27 c4_181_28 c4_181_29 c4_181_30 c3_181_175 set community 0:6 route-map calculator permit 24790 match community c4_182_27 c4_182_28 c4_182_29 c4_182_30 c3_182_176 set community 0:6 route-map calculator permit 24791 match community c4_183_27 c4_183_28 c4_183_29 c4_183_30 c3_183_177 set community 0:6 route-map calculator permit 24792 match community c4_184_27 c4_184_28 c4_184_29 c4_184_30 c3_184_178 set community 0:6 route-map calculator permit 24793 match community c4_185_27 c4_185_28 c4_185_29 c4_185_30 c3_185_179 set community 0:6 route-map calculator permit 24794 match community c4_186_27 c4_186_28 c4_186_29 c4_186_30 c4_186_31 set community 0:6 route-map calculator permit 24795 match community c3_186_180 c4_187_27 c4_187_28 c4_187_29 c4_187_30 set community 0:6 route-map calculator permit 24796 match community c4_187_31 c3_187_181 c4_188_27 c4_188_28 c4_188_29 set community 0:6 route-map calculator permit 24797 match community c4_188_30 c4_188_31 c3_188_182 c4_189_28 c4_189_29 set community 0:6 route-map calculator permit 24798 match community c4_189_30 c4_189_31 c3_189_183 c4_190_28 c4_190_29 set community 0:6 route-map calculator permit 24799 match community c4_190_30 c4_190_31 c3_190_184 c4_191_28 c4_191_29 set community 0:6 route-map calculator permit 24800 match community c4_191_30 c4_191_31 c3_191_185 c4_192_28 c4_192_29 set community 0:6 route-map calculator permit 24801 match community c4_192_30 c4_192_31 c4_192_32 c3_192_186 c4_193_28 set community 0:6 route-map calculator permit 24802 match community c4_193_29 c4_193_30 c4_193_31 c4_193_32 c3_193_187 set community 0:6 route-map calculator permit 24803 match community c4_194_28 c4_194_29 c4_194_30 c4_194_31 c4_194_32 set community 0:6 route-map calculator permit 24804 match community c3_194_188 c4_195_28 c4_195_29 c4_195_30 c4_195_31 set community 0:6 route-map calculator permit 24805 match community c4_195_32 c3_195_189 c4_196_29 c4_196_30 c4_196_31 set community 0:6 route-map calculator permit 24806 match community c4_196_32 c3_196_190 c4_197_29 c4_197_30 c4_197_31 set community 0:6 route-map calculator permit 24807 match community c4_197_32 c3_197_191 c4_198_29 c4_198_30 c4_198_31 set community 0:6 route-map calculator permit 24808 match community c4_198_32 c4_198_33 c3_198_192 c4_199_29 c4_199_30 set community 0:6 route-map calculator permit 24809 match community c4_199_31 c4_199_32 c4_199_33 c3_199_193 c4_200_29 set community 0:6 route-map calculator permit 24810 match community c4_200_30 c4_200_31 c4_200_32 c4_200_33 c3_200_194 set community 0:6 route-map calculator permit 24811 match community c4_201_29 c4_201_30 c4_201_31 c4_201_32 c4_201_33 set community 0:6 route-map calculator permit 24812 match community c3_201_195 c4_202_29 c4_202_30 c4_202_31 c4_202_32 set community 0:6 route-map calculator permit 24813 match community c4_202_33 c3_202_196 c4_203_30 c4_203_31 c4_203_32 set community 0:6 route-map calculator permit 24814 match community c4_203_33 c3_203_197 c4_204_30 c4_204_31 c4_204_32 set community 0:6 route-map calculator permit 24815 match community c4_204_33 c4_204_34 c3_204_198 c4_205_30 c4_205_31 set community 0:6 route-map calculator permit 24816 match community c4_205_32 c4_205_33 c4_205_34 c3_205_199 c4_206_30 set community 0:6 route-map calculator permit 24817 match community c4_206_31 c4_206_32 c4_206_33 c4_206_34 c3_206_200 set community 0:6 route-map calculator permit 24818 match community c4_207_30 c4_207_31 c4_207_32 c4_207_33 c4_207_34 set community 0:6 route-map calculator permit 24819 match community c3_207_201 c4_208_30 c4_208_31 c4_208_32 c4_208_33 set community 0:6 route-map calculator permit 24820 match community c4_208_34 c3_208_202 c4_209_30 c4_209_31 c4_209_32 set community 0:6 route-map calculator permit 24821 match community c4_209_33 c4_209_34 c3_209_203 c4_210_31 c4_210_32 set community 0:6 route-map calculator permit 24822 match community c4_210_33 c4_210_34 c4_210_35 c3_210_204 c4_211_31 set community 0:6 route-map calculator permit 24823 match community c4_211_32 c4_211_33 c4_211_34 c4_211_35 c3_211_205 set community 0:6 route-map calculator permit 24824 match community c4_212_31 c4_212_32 c4_212_33 c4_212_34 c4_212_35 set community 0:6 route-map calculator permit 24825 match community c3_212_206 c4_213_31 c4_213_32 c4_213_33 c4_213_34 set community 0:6 route-map calculator permit 24826 match community c4_213_35 c3_213_207 c4_214_31 c4_214_32 c4_214_33 set community 0:6 route-map calculator permit 24827 match community c4_214_34 c4_214_35 c3_214_208 c4_215_31 c4_215_32 set community 0:6 route-map calculator permit 24828 match community c4_215_33 c4_215_34 c4_215_35 c3_215_209 c4_216_31 set community 0:6 route-map calculator permit 24829 match community c4_216_32 c4_216_33 c4_216_34 c4_216_35 c4_216_36 set community 0:6 route-map calculator permit 24830 match community c3_216_210 c4_217_32 c4_217_33 c4_217_34 c4_217_35 set community 0:6 route-map calculator permit 24831 match community c4_217_36 c3_217_211 c4_218_32 c4_218_33 c4_218_34 set community 0:6 route-map calculator permit 24832 match community c4_218_35 c4_218_36 c3_218_212 c4_219_32 c4_219_33 set community 0:6 route-map calculator permit 24833 match community c4_219_34 c4_219_35 c4_219_36 c3_219_213 c4_220_32 set community 0:6 route-map calculator permit 24834 match community c4_220_33 c4_220_34 c4_220_35 c4_220_36 c3_220_214 set community 0:6 route-map calculator permit 24835 match community c4_221_32 c4_221_33 c4_221_34 c4_221_35 c4_221_36 set community 0:6 route-map calculator permit 24836 match community c3_221_215 c4_222_32 c4_222_33 c4_222_34 c4_222_35 set community 0:6 route-map calculator permit 24837 match community c4_222_36 c4_222_37 c3_222_216 c4_223_32 c4_223_33 set community 0:6 route-map calculator permit 24838 match community c4_223_34 c4_223_35 c4_223_36 c4_223_37 c3_223_217 set community 0:6 route-map calculator permit 24839 match community c4_224_33 c4_224_34 c4_224_35 c4_224_36 c4_224_37 set community 0:6 route-map calculator permit 24840 match community c3_224_218 c4_225_33 c4_225_34 c4_225_35 c4_225_36 set community 0:6 route-map calculator permit 24841 match community c4_225_37 c3_225_219 c4_226_33 c4_226_34 c4_226_35 set community 0:6 route-map calculator permit 24842 match community c4_226_36 c4_226_37 c3_226_220 c4_227_33 c4_227_34 set community 0:6 route-map calculator permit 24843 match community c4_227_35 c4_227_36 c4_227_37 c3_227_221 c4_228_33 set community 0:6 route-map calculator permit 24844 match community c4_228_34 c4_228_35 c4_228_36 c4_228_37 c4_228_38 set community 0:6 route-map calculator permit 24845 match community c3_228_222 c4_229_33 c4_229_34 c4_229_35 c4_229_36 set community 0:6 route-map calculator permit 24846 match community c4_229_37 c4_229_38 c3_229_223 c4_230_33 c4_230_34 set community 0:6 route-map calculator permit 24847 match community c4_230_35 c4_230_36 c4_230_37 c4_230_38 c3_230_224 set community 0:6 route-map calculator permit 24848 match community c4_231_34 c4_231_35 c4_231_36 c4_231_37 c4_231_38 set community 0:6 route-map calculator permit 24849 match community c3_231_225 c4_232_34 c4_232_35 c4_232_36 c4_232_37 set community 0:6 route-map calculator permit 24850 match community c4_232_38 c3_232_226 c4_233_34 c4_233_35 c4_233_36 set community 0:6 route-map calculator permit 24851 match community c4_233_37 c4_233_38 c3_233_227 c4_234_34 c4_234_35 set community 0:6 route-map calculator permit 24852 match community c4_234_36 c4_234_37 c4_234_38 c4_234_39 c3_234_228 set community 0:6 route-map calculator permit 24853 match community c4_235_34 c4_235_35 c4_235_36 c4_235_37 c4_235_38 set community 0:6 route-map calculator permit 24854 match community c4_235_39 c3_235_229 c4_236_34 c4_236_35 c4_236_36 set community 0:6 route-map calculator permit 24855 match community c4_236_37 c4_236_38 c4_236_39 c3_236_230 c4_237_34 set community 0:6 route-map calculator permit 24856 match community c4_237_35 c4_237_36 c4_237_37 c4_237_38 c4_237_39 set community 0:6 route-map calculator permit 24857 match community c3_237_231 c4_238_35 c4_238_36 c4_238_37 c4_238_38 set community 0:6 route-map calculator permit 24858 match community c4_238_39 c3_238_232 c4_239_35 c4_239_36 c4_239_37 set community 0:6 route-map calculator permit 24859 match community c4_239_38 c4_239_39 c3_239_233 c4_240_35 c4_240_36 set community 0:6 route-map calculator permit 24860 match community c4_240_37 c4_240_38 c4_240_39 c4_240_40 c3_240_234 set community 0:6 route-map calculator permit 24861 match community c4_241_35 c4_241_36 c4_241_37 c4_241_38 c4_241_39 set community 0:6 route-map calculator permit 24862 match community c4_241_40 c3_241_235 c4_242_35 c4_242_36 c4_242_37 set community 0:6 route-map calculator permit 24863 match community c4_242_38 c4_242_39 c4_242_40 c3_242_236 c4_243_35 set community 0:6 route-map calculator permit 24864 match community c4_243_36 c4_243_37 c4_243_38 c4_243_39 c4_243_40 set community 0:6 route-map calculator permit 24865 match community c3_243_237 c4_244_35 c4_244_36 c4_244_37 c4_244_38 set community 0:6 route-map calculator permit 24866 match community c4_244_39 c4_244_40 c3_244_238 c4_245_36 c4_245_37 set community 0:6 route-map calculator permit 24867 match community c4_245_38 c4_245_39 c4_245_40 c3_245_239 c4_246_36 set community 0:6 route-map calculator permit 24868 match community c4_246_37 c4_246_38 c4_246_39 c4_246_40 c4_246_41 set community 0:6 route-map calculator permit 24869 match community c3_246_240 c4_247_36 c4_247_37 c4_247_38 c4_247_39 set community 0:6 route-map calculator permit 24870 match community c4_247_40 c4_247_41 c3_247_241 c4_248_36 c4_248_37 set community 0:6 route-map calculator permit 24871 match community c4_248_38 c4_248_39 c4_248_40 c4_248_41 c3_248_242 set community 0:6 route-map calculator permit 24872 match community c4_249_36 c4_249_37 c4_249_38 c4_249_39 c4_249_40 set community 0:6 route-map calculator permit 24873 match community c4_249_41 c3_249_243 c4_250_36 c4_250_37 c4_250_38 set community 0:6 route-map calculator permit 24874 match community c4_250_39 c4_250_40 c4_250_41 c3_250_244 c4_251_36 set community 0:6 route-map calculator permit 24875 match community c4_251_37 c4_251_38 c4_251_39 c4_251_40 c4_251_41 set community 0:6 route-map calculator permit 24876 match community c3_251_245 c4_252_37 c4_252_38 c4_252_39 c4_252_40 set community 0:6 route-map calculator permit 24877 match community c4_252_41 c4_252_42 c3_252_246 c4_253_37 c4_253_38 set community 0:6 route-map calculator permit 24878 match community c4_253_39 c4_253_40 c4_253_41 c4_253_42 c3_253_247 set community 0:6 route-map calculator permit 24879 match community c4_254_37 c4_254_38 c4_254_39 c4_254_40 c4_254_41 set community 0:6 route-map calculator permit 24880 match community c4_254_42 c3_254_248 c4_255_37 c4_255_38 c4_255_39 set community 0:6 route-map calculator permit 24881 match community c4_255_40 c4_255_41 c4_255_42 c3_255_249 c4_256_37 set community 0:6 route-map calculator permit 24882 match community c4_256_38 c4_256_39 c4_256_40 c4_256_41 c4_256_42 set community 0:6 route-map calculator permit 24883 match community c3_256_250 set community 0:6 ip community-list standard 2_73_77 permit 65000:2 0:73 0:77 route-map calculator permit 24884 match community 2_73_77 set community 0:5621 ip community-list standard 2_89_89 permit 65000:2 0:89 0:89 route-map calculator permit 24885 match community 2_89_89 set community 0:7921 ip community-list standard 2_115_185 permit 65000:2 0:115 0:185 route-map calculator permit 24886 match community 2_115_185 set community 0:21275 ip community-list standard 2_164_217 permit 65000:2 0:164 0:217 route-map calculator permit 24887 match community 2_164_217 set community 0:35588 ip community-list standard 2_32_193 permit 65000:2 0:32 0:193 route-map calculator permit 24888 match community 2_32_193 set community 0:6176 ip community-list standard 2_29_219 permit 65000:2 0:29 0:219 ip community-list standard 2_73_87 permit 65000:2 0:73 0:87 route-map calculator permit 24889 match community 2_29_219 2_73_87 set community 0:6351 ip community-list standard 2_146_214 permit 65000:2 0:146 0:214 route-map calculator permit 24890 match community 2_146_214 set community 0:31244 ip community-list standard 2_73_231 permit 65000:2 0:73 0:231 ip community-list standard 2_77_219 permit 65000:2 0:77 0:219 route-map calculator permit 24891 match community 2_73_231 2_77_219 set community 0:16863 ip community-list standard 2_4_193 permit 65000:2 0:4 0:193 route-map calculator permit 24892 match community 2_4_193 set community 0:772 ip community-list standard 2_8_139 permit 65000:2 0:8 0:139 route-map calculator permit 24893 match community 2_8_139 set community 0:1112 ip community-list standard 2_16_249 permit 65000:2 0:16 0:249 ip community-list standard 2_24_166 permit 65000:2 0:24 0:166 ip community-list standard 2_48_83 permit 65000:2 0:48 0:83 route-map calculator permit 24894 match community 2_16_249 2_24_166 2_48_83 set community 0:3984 ip community-list standard 2_186_251 permit 65000:2 0:186 0:251 route-map calculator permit 24895 match community 2_186_251 set community 0:46686 ip community-list standard 2_129_192 permit 65000:2 0:129 0:192 ip community-list standard 2_144_172 permit 65000:2 0:144 0:172 route-map calculator permit 24896 match community 2_129_192 2_144_172 set community 0:24768 ip community-list standard 2_51_226 permit 65000:2 0:51 0:226 ip community-list standard 2_102_113 permit 65000:2 0:102 0:113 route-map calculator permit 24897 match community 2_51_226 2_102_113 set community 0:11526 ip community-list standard 2_103_233 permit 65000:2 0:103 0:233 route-map calculator permit 24898 match community 2_103_233 set community 0:23999 ip community-list standard 2_145_229 permit 65000:2 0:145 0:229 route-map calculator permit 24899 match community 2_145_229 set community 0:33205 ip community-list standard 2_116_219 permit 65000:2 0:116 0:219 ip community-list standard 2_146_174 permit 65000:2 0:146 0:174 route-map calculator permit 24900 match community 2_116_219 2_146_174 set community 0:25404 ip community-list standard 2_197_241 permit 65000:2 0:197 0:241 route-map calculator permit 24901 match community 2_197_241 set community 0:47477 ip community-list standard 2_40_178 permit 65000:2 0:40 0:178 ip community-list standard 2_80_89 permit 65000:2 0:80 0:89 route-map calculator permit 24902 match community 2_40_178 2_80_89 set community 0:7120 ip community-list standard 2_6_179 permit 65000:2 0:6 0:179 route-map calculator permit 24903 match community 2_6_179 set community 0:1074 ip community-list standard 2_110_191 permit 65000:2 0:110 0:191 route-map calculator permit 24904 match community 2_110_191 set community 0:21010 ip community-list standard 2_132_229 permit 65000:2 0:132 0:229 route-map calculator permit 24905 match community 2_132_229 set community 0:30228 ip community-list standard 2_98_203 permit 65000:2 0:98 0:203 route-map calculator permit 24906 match community 2_98_203 set community 0:19894 ip community-list standard 2_34_181 permit 65000:2 0:34 0:181 route-map calculator permit 24907 match community 2_34_181 set community 0:6154 ip community-list standard 2_234_256 permit 65000:2 0:234 0:256 route-map calculator permit 24908 match community 2_234_256 set community 0:59904 ip community-list standard 2_213_248 permit 65000:2 0:213 0:248 route-map calculator permit 24909 match community 2_213_248 set community 0:52824 ip community-list standard 2_115_211 permit 65000:2 0:115 0:211 route-map calculator permit 24910 match community 2_115_211 set community 0:24265 ip community-list standard 2_73_248 permit 65000:2 0:73 0:248 ip community-list standard 2_124_146 permit 65000:2 0:124 0:146 route-map calculator permit 24911 match community 2_73_248 2_124_146 set community 0:18104 ip community-list standard 2_47_198 permit 65000:2 0:47 0:198 ip community-list standard 2_66_141 permit 65000:2 0:66 0:141 ip community-list standard 2_94_99 permit 65000:2 0:94 0:99 route-map calculator permit 24912 match community 2_47_198 2_66_141 2_94_99 set community 0:9306 ip community-list standard 2_122_157 permit 65000:2 0:122 0:157 route-map calculator permit 24913 match community 2_122_157 set community 0:19154 ip community-list standard 2_169_247 permit 65000:2 0:169 0:247 route-map calculator permit 24914 match community 2_169_247 set community 0:41743 ip community-list standard 2_31_167 permit 65000:2 0:31 0:167 route-map calculator permit 24915 match community 2_31_167 set community 0:5177 ip community-list standard 2_11_94 permit 65000:2 0:11 0:94 ip community-list standard 2_22_47 permit 65000:2 0:22 0:47 route-map calculator permit 24916 match community 2_11_94 2_22_47 set community 0:1034 ip community-list standard 2_67_127 permit 65000:2 0:67 0:127 route-map calculator permit 24917 match community 2_67_127 set community 0:8509 ip community-list standard 2_151_170 permit 65000:2 0:151 0:170 route-map calculator permit 24918 match community 2_151_170 set community 0:25670 ip community-list standard 2_23_113 permit 65000:2 0:23 0:113 route-map calculator permit 24919 match community 2_23_113 set community 0:2599 ip community-list standard 2_63_103 permit 65000:2 0:63 0:103 route-map calculator permit 24920 match community 2_63_103 set community 0:6489 ip community-list standard 2_90_223 permit 65000:2 0:90 0:223 route-map calculator permit 24921 match community 2_90_223 set community 0:20070 ip community-list standard 2_123_187 permit 65000:2 0:123 0:187 route-map calculator permit 24922 match community 2_123_187 set community 0:23001 ip community-list standard 2_177_253 permit 65000:2 0:177 0:253 route-map calculator permit 24923 match community 2_177_253 set community 0:44781 ip community-list standard 2_156_243 permit 65000:2 0:156 0:243 ip community-list standard 2_162_234 permit 65000:2 0:162 0:234 route-map calculator permit 24924 match community 2_156_243 2_162_234 set community 0:37908 ip community-list standard 2_99_241 permit 65000:2 0:99 0:241 route-map calculator permit 24925 match community 2_99_241 set community 0:23859 ip community-list standard 2_185_206 permit 65000:2 0:185 0:206 route-map calculator permit 24926 match community 2_185_206 set community 0:38110 ip community-list standard 2_107_227 permit 65000:2 0:107 0:227 route-map calculator permit 24927 match community 2_107_227 set community 0:24289 ip community-list standard 2_13_53 permit 65000:2 0:13 0:53 route-map calculator permit 24928 match community 2_13_53 set community 0:689 ip community-list standard 2_189_201 permit 65000:2 0:189 0:201 route-map calculator permit 24929 match community 2_189_201 set community 0:37989 ip community-list standard 2_140_213 permit 65000:2 0:140 0:213 ip community-list standard 2_142_210 permit 65000:2 0:142 0:210 route-map calculator permit 24930 match community 2_140_213 2_142_210 set community 0:29820 ip community-list standard 2_188_239 permit 65000:2 0:188 0:239 route-map calculator permit 24931 match community 2_188_239 set community 0:44932 ip community-list standard 2_39_195 permit 65000:2 0:39 0:195 ip community-list standard 2_45_169 permit 65000:2 0:45 0:169 ip community-list standard 2_65_117 permit 65000:2 0:65 0:117 route-map calculator permit 24932 match community 2_39_195 2_45_169 2_65_117 set community 0:7605 ip community-list standard 2_33_202 permit 65000:2 0:33 0:202 ip community-list standard 2_66_101 permit 65000:2 0:66 0:101 route-map calculator permit 24933 match community 2_33_202 2_66_101 set community 0:6666 ip community-list standard 2_45_113 permit 65000:2 0:45 0:113 route-map calculator permit 24934 match community 2_45_113 set community 0:5085 ip community-list standard 2_54_213 permit 65000:2 0:54 0:213 ip community-list standard 2_71_162 permit 65000:2 0:71 0:162 ip community-list standard 2_81_142 permit 65000:2 0:81 0:142 route-map calculator permit 24935 match community 2_54_213 2_71_162 2_81_142 set community 0:11502 ip community-list standard 2_231_245 permit 65000:2 0:231 0:245 route-map calculator permit 24936 match community 2_231_245 set community 0:56595 ip community-list standard 2_134_188 permit 65000:2 0:134 0:188 route-map calculator permit 24937 match community 2_134_188 set community 0:25192 ip community-list standard 2_129_151 permit 65000:2 0:129 0:151 route-map calculator permit 24938 match community 2_129_151 set community 0:19479 ip community-list standard 2_10_130 permit 65000:2 0:10 0:130 ip community-list standard 2_13_100 permit 65000:2 0:13 0:100 ip community-list standard 2_20_65 permit 65000:2 0:20 0:65 ip community-list standard 2_25_52 permit 65000:2 0:25 0:52 ip community-list standard 2_26_50 permit 65000:2 0:26 0:50 route-map calculator permit 24939 match community 2_10_130 2_13_100 2_20_65 2_25_52 2_26_50 set community 0:1300 ip community-list standard 2_92_226 permit 65000:2 0:92 0:226 ip community-list standard 2_113_184 permit 65000:2 0:113 0:184 route-map calculator permit 24940 match community 2_92_226 2_113_184 set community 0:20792 ip community-list standard 2_59_167 permit 65000:2 0:59 0:167 route-map calculator permit 24941 match community 2_59_167 set community 0:9853 ip community-list standard 2_10_230 permit 65000:2 0:10 0:230 ip community-list standard 2_20_115 permit 65000:2 0:20 0:115 ip community-list standard 2_23_100 permit 65000:2 0:23 0:100 ip community-list standard 2_25_92 permit 65000:2 0:25 0:92 ip community-list standard 2_46_50 permit 65000:2 0:46 0:50 route-map calculator permit 24942 match community 2_10_230 2_20_115 2_23_100 2_25_92 2_46_50 set community 0:2300 ip community-list standard 2_73_188 permit 65000:2 0:73 0:188 ip community-list standard 2_94_146 permit 65000:2 0:94 0:146 route-map calculator permit 24943 match community 2_73_188 2_94_146 set community 0:13724 ip community-list standard 2_10_218 permit 65000:2 0:10 0:218 ip community-list standard 2_20_109 permit 65000:2 0:20 0:109 route-map calculator permit 24944 match community 2_10_218 2_20_109 set community 0:2180 ip community-list standard 2_61_234 permit 65000:2 0:61 0:234 ip community-list standard 2_78_183 permit 65000:2 0:78 0:183 ip community-list standard 2_117_122 permit 65000:2 0:117 0:122 route-map calculator permit 24945 match community 2_61_234 2_78_183 2_117_122 set community 0:14274 ip community-list standard 2_247_252 permit 65000:2 0:247 0:252 route-map calculator permit 24946 match community 2_247_252 set community 0:62244 ip community-list standard 2_21_163 permit 65000:2 0:21 0:163 route-map calculator permit 24947 match community 2_21_163 set community 0:3423 ip community-list standard 2_134_200 permit 65000:2 0:134 0:200 route-map calculator permit 24948 match community 2_134_200 set community 0:26800 ip community-list standard 2_76_190 permit 65000:2 0:76 0:190 ip community-list standard 2_95_152 permit 65000:2 0:95 0:152 route-map calculator permit 24949 match community 2_76_190 2_95_152 set community 0:14440 ip community-list standard 2_7_147 permit 65000:2 0:7 0:147 ip community-list standard 2_21_49 permit 65000:2 0:21 0:49 route-map calculator permit 24950 match community 2_7_147 2_21_49 set community 0:1029 ip community-list standard 2_44_197 permit 65000:2 0:44 0:197 route-map calculator permit 24951 match community 2_44_197 set community 0:8668 ip community-list standard 2_178_256 permit 65000:2 0:178 0:256 route-map calculator permit 24952 match community 2_178_256 set community 0:45568 ip community-list standard 2_154_242 permit 65000:2 0:154 0:242 route-map calculator permit 24953 match community 2_154_242 set community 0:37268 ip community-list standard 2_166_232 permit 65000:2 0:166 0:232 route-map calculator permit 24954 match community 2_166_232 set community 0:38512 ip community-list standard 2_138_163 permit 65000:2 0:138 0:163 route-map calculator permit 24955 match community 2_138_163 set community 0:22494 ip community-list standard 2_129_226 permit 65000:2 0:129 0:226 route-map calculator permit 24956 match community 2_129_226 set community 0:29154 ip community-list standard 2_93_163 permit 65000:2 0:93 0:163 route-map calculator permit 24957 match community 2_93_163 set community 0:15159 ip community-list standard 2_103_243 permit 65000:2 0:103 0:243 route-map calculator permit 24958 match community 2_103_243 set community 0:25029 ip community-list standard 2_177_207 permit 65000:2 0:177 0:207 route-map calculator permit 24959 match community 2_177_207 set community 0:36639 ip community-list standard 2_12_181 permit 65000:2 0:12 0:181 route-map calculator permit 24960 match community 2_12_181 set community 0:2172 ip community-list standard 2_131_243 permit 65000:2 0:131 0:243 route-map calculator permit 24961 match community 2_131_243 set community 0:31833 ip community-list standard 2_3_109 permit 65000:2 0:3 0:109 ip community-list standard 1_71_256 permit 65000:1 0:71 0:256 ip community-list standard 1_72_255 permit 65000:1 0:72 0:255 ip community-list standard 1_73_254 permit 65000:1 0:73 0:254 ip community-list standard 1_74_253 permit 65000:1 0:74 0:253 ip community-list standard 1_75_252 permit 65000:1 0:75 0:252 ip community-list standard 1_76_251 permit 65000:1 0:76 0:251 ip community-list standard 1_77_250 permit 65000:1 0:77 0:250 ip community-list standard 1_78_249 permit 65000:1 0:78 0:249 ip community-list standard 1_79_248 permit 65000:1 0:79 0:248 ip community-list standard 1_80_247 permit 65000:1 0:80 0:247 ip community-list standard 1_81_246 permit 65000:1 0:81 0:246 ip community-list standard 1_82_245 permit 65000:1 0:82 0:245 ip community-list standard 1_83_244 permit 65000:1 0:83 0:244 ip community-list standard 1_84_243 permit 65000:1 0:84 0:243 ip community-list standard 1_85_242 permit 65000:1 0:85 0:242 ip community-list standard 1_86_241 permit 65000:1 0:86 0:241 ip community-list standard 1_87_240 permit 65000:1 0:87 0:240 ip community-list standard 1_88_239 permit 65000:1 0:88 0:239 ip community-list standard 1_89_238 permit 65000:1 0:89 0:238 ip community-list standard 1_90_237 permit 65000:1 0:90 0:237 ip community-list standard 1_91_236 permit 65000:1 0:91 0:236 ip community-list standard 1_92_235 permit 65000:1 0:92 0:235 ip community-list standard 1_93_234 permit 65000:1 0:93 0:234 ip community-list standard 1_94_233 permit 65000:1 0:94 0:233 ip community-list standard 1_95_232 permit 65000:1 0:95 0:232 ip community-list standard 1_96_231 permit 65000:1 0:96 0:231 ip community-list standard 1_97_230 permit 65000:1 0:97 0:230 ip community-list standard 1_98_229 permit 65000:1 0:98 0:229 ip community-list standard 1_99_228 permit 65000:1 0:99 0:228 ip community-list standard 1_100_227 permit 65000:1 0:100 0:227 ip community-list standard 1_101_226 permit 65000:1 0:101 0:226 ip community-list standard 1_102_225 permit 65000:1 0:102 0:225 ip community-list standard 1_103_224 permit 65000:1 0:103 0:224 ip community-list standard 1_104_223 permit 65000:1 0:104 0:223 ip community-list standard 1_105_222 permit 65000:1 0:105 0:222 ip community-list standard 1_106_221 permit 65000:1 0:106 0:221 ip community-list standard 1_107_220 permit 65000:1 0:107 0:220 ip community-list standard 1_108_219 permit 65000:1 0:108 0:219 ip community-list standard 1_109_218 permit 65000:1 0:109 0:218 ip community-list standard 1_110_217 permit 65000:1 0:110 0:217 ip community-list standard 1_111_216 permit 65000:1 0:111 0:216 ip community-list standard 1_112_215 permit 65000:1 0:112 0:215 ip community-list standard 1_113_214 permit 65000:1 0:113 0:214 ip community-list standard 1_114_213 permit 65000:1 0:114 0:213 ip community-list standard 1_115_212 permit 65000:1 0:115 0:212 ip community-list standard 1_116_211 permit 65000:1 0:116 0:211 ip community-list standard 1_117_210 permit 65000:1 0:117 0:210 ip community-list standard 1_118_209 permit 65000:1 0:118 0:209 ip community-list standard 1_119_208 permit 65000:1 0:119 0:208 ip community-list standard 1_120_207 permit 65000:1 0:120 0:207 ip community-list standard 1_121_206 permit 65000:1 0:121 0:206 ip community-list standard 1_122_205 permit 65000:1 0:122 0:205 ip community-list standard 1_123_204 permit 65000:1 0:123 0:204 ip community-list standard 1_124_203 permit 65000:1 0:124 0:203 ip community-list standard 1_125_202 permit 65000:1 0:125 0:202 ip community-list standard 1_126_201 permit 65000:1 0:126 0:201 ip community-list standard 1_127_200 permit 65000:1 0:127 0:200 ip community-list standard 1_128_199 permit 65000:1 0:128 0:199 ip community-list standard 1_129_198 permit 65000:1 0:129 0:198 ip community-list standard 1_130_197 permit 65000:1 0:130 0:197 ip community-list standard 1_131_196 permit 65000:1 0:131 0:196 ip community-list standard 1_132_195 permit 65000:1 0:132 0:195 ip community-list standard 1_133_194 permit 65000:1 0:133 0:194 ip community-list standard 1_134_193 permit 65000:1 0:134 0:193 ip community-list standard 1_135_192 permit 65000:1 0:135 0:192 ip community-list standard 1_136_191 permit 65000:1 0:136 0:191 ip community-list standard 1_137_190 permit 65000:1 0:137 0:190 ip community-list standard 1_138_189 permit 65000:1 0:138 0:189 ip community-list standard 1_139_188 permit 65000:1 0:139 0:188 ip community-list standard 1_140_187 permit 65000:1 0:140 0:187 ip community-list standard 1_141_186 permit 65000:1 0:141 0:186 ip community-list standard 1_142_185 permit 65000:1 0:142 0:185 ip community-list standard 1_143_184 permit 65000:1 0:143 0:184 ip community-list standard 1_144_183 permit 65000:1 0:144 0:183 ip community-list standard 1_145_182 permit 65000:1 0:145 0:182 ip community-list standard 1_146_181 permit 65000:1 0:146 0:181 ip community-list standard 1_147_180 permit 65000:1 0:147 0:180 ip community-list standard 1_148_179 permit 65000:1 0:148 0:179 ip community-list standard 1_149_178 permit 65000:1 0:149 0:178 ip community-list standard 1_150_177 permit 65000:1 0:150 0:177 ip community-list standard 1_151_176 permit 65000:1 0:151 0:176 ip community-list standard 1_152_175 permit 65000:1 0:152 0:175 ip community-list standard 1_153_174 permit 65000:1 0:153 0:174 ip community-list standard 1_154_173 permit 65000:1 0:154 0:173 ip community-list standard 1_155_172 permit 65000:1 0:155 0:172 ip community-list standard 1_156_171 permit 65000:1 0:156 0:171 ip community-list standard 1_157_170 permit 65000:1 0:157 0:170 ip community-list standard 1_158_169 permit 65000:1 0:158 0:169 ip community-list standard 1_159_168 permit 65000:1 0:159 0:168 ip community-list standard 1_160_167 permit 65000:1 0:160 0:167 ip community-list standard 1_161_166 permit 65000:1 0:161 0:166 ip community-list standard 1_162_165 permit 65000:1 0:162 0:165 ip community-list standard 1_163_164 permit 65000:1 0:163 0:164 route-map calculator permit 24962 match community 2_3_109 1_71_256 1_72_255 1_73_254 1_74_253 set community 0:327 route-map calculator permit 24963 match community 1_75_252 1_76_251 1_77_250 1_78_249 1_79_248 set community 0:327 route-map calculator permit 24964 match community 1_80_247 1_81_246 1_82_245 1_83_244 1_84_243 set community 0:327 route-map calculator permit 24965 match community 1_85_242 1_86_241 1_87_240 1_88_239 1_89_238 set community 0:327 route-map calculator permit 24966 match community 1_90_237 1_91_236 1_92_235 1_93_234 1_94_233 set community 0:327 route-map calculator permit 24967 match community 1_95_232 1_96_231 1_97_230 1_98_229 1_99_228 set community 0:327 route-map calculator permit 24968 match community 1_100_227 1_101_226 1_102_225 1_103_224 1_104_223 set community 0:327 route-map calculator permit 24969 match community 1_105_222 1_106_221 1_107_220 1_108_219 1_109_218 set community 0:327 route-map calculator permit 24970 match community 1_110_217 1_111_216 1_112_215 1_113_214 1_114_213 set community 0:327 route-map calculator permit 24971 match community 1_115_212 1_116_211 1_117_210 1_118_209 1_119_208 set community 0:327 route-map calculator permit 24972 match community 1_120_207 1_121_206 1_122_205 1_123_204 1_124_203 set community 0:327 route-map calculator permit 24973 match community 1_125_202 1_126_201 1_127_200 1_128_199 1_129_198 set community 0:327 route-map calculator permit 24974 match community 1_130_197 1_131_196 1_132_195 1_133_194 1_134_193 set community 0:327 route-map calculator permit 24975 match community 1_135_192 1_136_191 1_137_190 1_138_189 1_139_188 set community 0:327 route-map calculator permit 24976 match community 1_140_187 1_141_186 1_142_185 1_143_184 1_144_183 set community 0:327 route-map calculator permit 24977 match community 1_145_182 1_146_181 1_147_180 1_148_179 1_149_178 set community 0:327 route-map calculator permit 24978 match community 1_150_177 1_151_176 1_152_175 1_153_174 1_154_173 set community 0:327 route-map calculator permit 24979 match community 1_155_172 1_156_171 1_157_170 1_158_169 1_159_168 set community 0:327 route-map calculator permit 24980 match community 1_160_167 1_161_166 1_162_165 1_163_164 set community 0:327 ip community-list standard 2_11_127 permit 65000:2 0:11 0:127 route-map calculator permit 24981 match community 2_11_127 set community 0:1397 ip community-list standard 2_73_158 permit 65000:2 0:73 0:158 ip community-list standard 2_79_146 permit 65000:2 0:79 0:146 route-map calculator permit 24982 match community 2_73_158 2_79_146 set community 0:11534 ip community-list standard 2_152_194 permit 65000:2 0:152 0:194 route-map calculator permit 24983 match community 2_152_194 set community 0:29488 ip community-list standard 2_31_235 permit 65000:2 0:31 0:235 ip community-list standard 2_47_155 permit 65000:2 0:47 0:155 route-map calculator permit 24984 match community 2_31_235 2_47_155 set community 0:7285 ip community-list standard 2_20_245 permit 65000:2 0:20 0:245 ip community-list standard 2_25_196 permit 65000:2 0:25 0:196 ip community-list standard 2_28_175 permit 65000:2 0:28 0:175 ip community-list standard 2_35_140 permit 65000:2 0:35 0:140 ip community-list standard 2_49_100 permit 65000:2 0:49 0:100 ip community-list standard 2_50_98 permit 65000:2 0:50 0:98 ip community-list standard 2_70_70 permit 65000:2 0:70 0:70 route-map calculator permit 24985 match community 2_20_245 2_25_196 2_28_175 2_35_140 2_49_100 set community 0:4900 route-map calculator permit 24986 match community 2_50_98 2_70_70 set community 0:4900 ip community-list standard 2_65_251 permit 65000:2 0:65 0:251 route-map calculator permit 24987 match community 2_65_251 set community 0:16315 ip community-list standard 2_32_170 permit 65000:2 0:32 0:170 ip community-list standard 2_34_160 permit 65000:2 0:34 0:160 ip community-list standard 2_40_136 permit 65000:2 0:40 0:136 ip community-list standard 2_64_85 permit 65000:2 0:64 0:85 ip community-list standard 2_68_80 permit 65000:2 0:68 0:80 route-map calculator permit 24988 match community 2_32_170 2_34_160 2_40_136 2_64_85 2_68_80 set community 0:5440 ip community-list standard 2_143_178 permit 65000:2 0:143 0:178 route-map calculator permit 24989 match community 2_143_178 set community 0:25454 ip community-list standard 2_85_103 permit 65000:2 0:85 0:103 route-map calculator permit 24990 match community 2_85_103 set community 0:8755 ip community-list standard 2_181_228 permit 65000:2 0:181 0:228 route-map calculator permit 24991 match community 2_181_228 set community 0:41268 ip community-list standard 2_55_239 permit 65000:2 0:55 0:239 route-map calculator permit 24992 match community 2_55_239 set community 0:13145 ip community-list standard 2_175_206 permit 65000:2 0:175 0:206 route-map calculator permit 24993 match community 2_175_206 set community 0:36050 ip community-list standard 2_92_139 permit 65000:2 0:92 0:139 route-map calculator permit 24994 match community 2_92_139 set community 0:12788 ip community-list standard 2_86_209 permit 65000:2 0:86 0:209 route-map calculator permit 24995 match community 2_86_209 set community 0:17974 ip community-list standard 2_56_244 permit 65000:2 0:56 0:244 ip community-list standard 2_61_224 permit 65000:2 0:61 0:224 ip community-list standard 2_112_122 permit 65000:2 0:112 0:122 route-map calculator permit 24996 match community 2_56_244 2_61_224 2_112_122 set community 0:13664 ip community-list standard 2_97_243 permit 65000:2 0:97 0:243 route-map calculator permit 24997 match community 2_97_243 set community 0:23571 ip community-list standard 2_194_252 permit 65000:2 0:194 0:252 route-map calculator permit 24998 match community 2_194_252 set community 0:48888 ip community-list standard 2_178_233 permit 65000:2 0:178 0:233 route-map calculator permit 24999 match community 2_178_233 set community 0:41474 ip community-list standard 2_103_238 permit 65000:2 0:103 0:238 ip community-list standard 2_119_206 permit 65000:2 0:119 0:206 route-map calculator permit 25000 match community 2_103_238 2_119_206 set community 0:24514 ip community-list standard 2_177_242 permit 65000:2 0:177 0:242 route-map calculator permit 25001 match community 2_177_242 set community 0:42834 ip community-list standard 2_201_233 permit 65000:2 0:201 0:233 route-map calculator permit 25002 match community 2_201_233 set community 0:46833 ip community-list standard 2_30_179 permit 65000:2 0:30 0:179 route-map calculator permit 25003 match community 2_30_179 set community 0:5370 ip community-list standard 2_93_149 permit 65000:2 0:93 0:149 route-map calculator permit 25004 match community 2_93_149 set community 0:13857 ip community-list standard 2_12_229 permit 65000:2 0:12 0:229 route-map calculator permit 25005 match community 2_12_229 set community 0:2748 ip community-list standard 2_129_225 permit 65000:2 0:129 0:225 ip community-list standard 2_135_215 permit 65000:2 0:135 0:215 route-map calculator permit 25006 match community 2_129_225 2_135_215 set community 0:29025 ip community-list standard 2_86_149 permit 65000:2 0:86 0:149 route-map calculator permit 25007 match community 2_86_149 set community 0:12814 ip community-list standard 2_24_167 permit 65000:2 0:24 0:167 route-map calculator permit 25008 match community 2_24_167 set community 0:4008 ip community-list standard 2_81_235 permit 65000:2 0:81 0:235 ip community-list standard 2_135_141 permit 65000:2 0:135 0:141 route-map calculator permit 25009 match community 2_81_235 2_135_141 set community 0:19035 ip community-list standard 2_68_244 permit 65000:2 0:68 0:244 ip community-list standard 2_122_136 permit 65000:2 0:122 0:136 route-map calculator permit 25010 match community 2_68_244 2_122_136 set community 0:16592 ip community-list standard 2_83_169 permit 65000:2 0:83 0:169 route-map calculator permit 25011 match community 2_83_169 set community 0:14027 ip community-list standard 2_159_182 permit 65000:2 0:159 0:182 route-map calculator permit 25012 match community 2_159_182 set community 0:28938 ip community-list standard 2_143_202 permit 65000:2 0:143 0:202 route-map calculator permit 25013 match community 2_143_202 set community 0:28886 ip community-list standard 2_69_127 permit 65000:2 0:69 0:127 route-map calculator permit 25014 match community 2_69_127 set community 0:8763 ip community-list standard 2_139_159 permit 65000:2 0:139 0:159 route-map calculator permit 25015 match community 2_139_159 set community 0:22101 ip community-list standard 2_59_185 permit 65000:2 0:59 0:185 route-map calculator permit 25016 match community 2_59_185 set community 0:10915 ip community-list standard 2_98_167 permit 65000:2 0:98 0:167 route-map calculator permit 25017 match community 2_98_167 set community 0:16366 ip community-list standard 2_90_151 permit 65000:2 0:90 0:151 route-map calculator permit 25018 match community 2_90_151 set community 0:13590 ip community-list standard 2_18_202 permit 65000:2 0:18 0:202 ip community-list standard 2_36_101 permit 65000:2 0:36 0:101 route-map calculator permit 25019 match community 2_18_202 2_36_101 set community 0:3636 ip community-list standard 2_46_212 permit 65000:2 0:46 0:212 ip community-list standard 2_53_184 permit 65000:2 0:53 0:184 ip community-list standard 2_92_106 permit 65000:2 0:92 0:106 route-map calculator permit 25020 match community 2_46_212 2_53_184 2_92_106 set community 0:9752 ip community-list standard 2_180_230 permit 65000:2 0:180 0:230 ip community-list standard 2_184_225 permit 65000:2 0:184 0:225 ip community-list standard 2_200_207 permit 65000:2 0:200 0:207 route-map calculator permit 25021 match community 2_180_230 2_184_225 2_200_207 set community 0:41400 ip community-list standard 2_199_200 permit 65000:2 0:199 0:200 route-map calculator permit 25022 match community 2_199_200 set community 0:39800 ip community-list standard 2_211_218 permit 65000:2 0:211 0:218 route-map calculator permit 25023 match community 2_211_218 set community 0:45998 ip community-list standard 2_19_69 permit 65000:2 0:19 0:69 ip community-list standard 2_23_57 permit 65000:2 0:23 0:57 route-map calculator permit 25024 match community 2_19_69 2_23_57 set community 0:1311 ip community-list standard 2_96_256 permit 65000:2 0:96 0:256 ip community-list standard 2_128_192 permit 65000:2 0:128 0:192 route-map calculator permit 25025 match community 2_96_256 2_128_192 set community 0:24576 ip community-list standard 2_73_250 permit 65000:2 0:73 0:250 ip community-list standard 2_125_146 permit 65000:2 0:125 0:146 route-map calculator permit 25026 match community 2_73_250 2_125_146 set community 0:18250 ip community-list standard 2_174_209 permit 65000:2 0:174 0:209 route-map calculator permit 25027 match community 2_174_209 set community 0:36366 ip community-list standard 2_137_151 permit 65000:2 0:137 0:151 route-map calculator permit 25028 match community 2_137_151 set community 0:20687 ip community-list standard 2_203_240 permit 65000:2 0:203 0:240 ip community-list standard 2_210_232 permit 65000:2 0:210 0:232 route-map calculator permit 25029 match community 2_203_240 2_210_232 set community 0:48720 ip community-list standard 2_161_227 permit 65000:2 0:161 0:227 route-map calculator permit 25030 match community 2_161_227 set community 0:36547 ip community-list standard 2_104_246 permit 65000:2 0:104 0:246 ip community-list standard 2_123_208 permit 65000:2 0:123 0:208 ip community-list standard 2_156_164 permit 65000:2 0:156 0:164 route-map calculator permit 25031 match community 2_104_246 2_123_208 2_156_164 set community 0:25584 ip community-list standard 1_1_194 permit 65000:1 0:1 0:194 ip community-list standard 2_1_195 permit 65000:2 0:1 0:195 ip community-list standard 1_2_193 permit 65000:1 0:2 0:193 ip community-list standard 2_3_65 permit 65000:2 0:3 0:65 ip community-list standard 1_3_192 permit 65000:1 0:3 0:192 ip community-list standard 1_4_191 permit 65000:1 0:4 0:191 ip community-list standard 2_5_39 permit 65000:2 0:5 0:39 ip community-list standard 1_5_190 permit 65000:1 0:5 0:190 ip community-list standard 1_6_189 permit 65000:1 0:6 0:189 ip community-list standard 1_7_188 permit 65000:1 0:7 0:188 ip community-list standard 1_8_187 permit 65000:1 0:8 0:187 ip community-list standard 1_9_186 permit 65000:1 0:9 0:186 ip community-list standard 1_10_185 permit 65000:1 0:10 0:185 ip community-list standard 1_11_184 permit 65000:1 0:11 0:184 ip community-list standard 1_12_183 permit 65000:1 0:12 0:183 ip community-list standard 2_13_15 permit 65000:2 0:13 0:15 ip community-list standard 1_13_182 permit 65000:1 0:13 0:182 ip community-list standard 1_14_181 permit 65000:1 0:14 0:181 ip community-list standard 1_15_180 permit 65000:1 0:15 0:180 ip community-list standard 1_16_179 permit 65000:1 0:16 0:179 ip community-list standard 1_17_178 permit 65000:1 0:17 0:178 ip community-list standard 1_18_177 permit 65000:1 0:18 0:177 ip community-list standard 1_19_176 permit 65000:1 0:19 0:176 ip community-list standard 1_20_175 permit 65000:1 0:20 0:175 ip community-list standard 1_21_174 permit 65000:1 0:21 0:174 ip community-list standard 1_22_173 permit 65000:1 0:22 0:173 ip community-list standard 1_23_172 permit 65000:1 0:23 0:172 ip community-list standard 1_24_171 permit 65000:1 0:24 0:171 ip community-list standard 1_25_170 permit 65000:1 0:25 0:170 ip community-list standard 1_26_169 permit 65000:1 0:26 0:169 ip community-list standard 1_27_168 permit 65000:1 0:27 0:168 ip community-list standard 1_28_167 permit 65000:1 0:28 0:167 ip community-list standard 1_29_166 permit 65000:1 0:29 0:166 ip community-list standard 1_30_165 permit 65000:1 0:30 0:165 ip community-list standard 1_31_164 permit 65000:1 0:31 0:164 ip community-list standard 1_32_163 permit 65000:1 0:32 0:163 ip community-list standard 1_33_162 permit 65000:1 0:33 0:162 ip community-list standard 1_34_161 permit 65000:1 0:34 0:161 ip community-list standard 1_35_160 permit 65000:1 0:35 0:160 ip community-list standard 1_36_159 permit 65000:1 0:36 0:159 ip community-list standard 1_37_158 permit 65000:1 0:37 0:158 ip community-list standard 1_38_157 permit 65000:1 0:38 0:157 ip community-list standard 1_39_156 permit 65000:1 0:39 0:156 ip community-list standard 1_40_155 permit 65000:1 0:40 0:155 ip community-list standard 1_41_154 permit 65000:1 0:41 0:154 ip community-list standard 1_42_153 permit 65000:1 0:42 0:153 ip community-list standard 1_43_152 permit 65000:1 0:43 0:152 ip community-list standard 1_44_151 permit 65000:1 0:44 0:151 ip community-list standard 1_45_150 permit 65000:1 0:45 0:150 ip community-list standard 1_46_149 permit 65000:1 0:46 0:149 ip community-list standard 1_47_148 permit 65000:1 0:47 0:148 ip community-list standard 1_48_147 permit 65000:1 0:48 0:147 ip community-list standard 1_49_146 permit 65000:1 0:49 0:146 ip community-list standard 1_50_145 permit 65000:1 0:50 0:145 ip community-list standard 1_51_144 permit 65000:1 0:51 0:144 ip community-list standard 1_52_143 permit 65000:1 0:52 0:143 ip community-list standard 1_53_142 permit 65000:1 0:53 0:142 ip community-list standard 1_54_141 permit 65000:1 0:54 0:141 ip community-list standard 1_55_140 permit 65000:1 0:55 0:140 ip community-list standard 1_56_139 permit 65000:1 0:56 0:139 ip community-list standard 1_57_138 permit 65000:1 0:57 0:138 ip community-list standard 1_58_137 permit 65000:1 0:58 0:137 ip community-list standard 1_59_136 permit 65000:1 0:59 0:136 ip community-list standard 1_60_135 permit 65000:1 0:60 0:135 ip community-list standard 1_61_134 permit 65000:1 0:61 0:134 ip community-list standard 1_62_133 permit 65000:1 0:62 0:133 ip community-list standard 1_63_132 permit 65000:1 0:63 0:132 ip community-list standard 1_64_131 permit 65000:1 0:64 0:131 ip community-list standard 1_65_130 permit 65000:1 0:65 0:130 ip community-list standard 1_66_129 permit 65000:1 0:66 0:129 ip community-list standard 1_67_128 permit 65000:1 0:67 0:128 ip community-list standard 1_68_127 permit 65000:1 0:68 0:127 ip community-list standard 1_69_126 permit 65000:1 0:69 0:126 ip community-list standard 1_70_125 permit 65000:1 0:70 0:125 ip community-list standard 1_71_124 permit 65000:1 0:71 0:124 ip community-list standard 1_72_123 permit 65000:1 0:72 0:123 ip community-list standard 1_73_122 permit 65000:1 0:73 0:122 ip community-list standard 1_74_121 permit 65000:1 0:74 0:121 ip community-list standard 1_75_120 permit 65000:1 0:75 0:120 ip community-list standard 1_76_119 permit 65000:1 0:76 0:119 ip community-list standard 1_77_118 permit 65000:1 0:77 0:118 ip community-list standard 1_78_117 permit 65000:1 0:78 0:117 ip community-list standard 1_79_116 permit 65000:1 0:79 0:116 ip community-list standard 1_80_115 permit 65000:1 0:80 0:115 ip community-list standard 1_81_114 permit 65000:1 0:81 0:114 ip community-list standard 1_82_113 permit 65000:1 0:82 0:113 ip community-list standard 1_83_112 permit 65000:1 0:83 0:112 ip community-list standard 1_84_111 permit 65000:1 0:84 0:111 ip community-list standard 1_85_110 permit 65000:1 0:85 0:110 ip community-list standard 1_86_109 permit 65000:1 0:86 0:109 ip community-list standard 1_87_108 permit 65000:1 0:87 0:108 ip community-list standard 1_88_107 permit 65000:1 0:88 0:107 ip community-list standard 1_89_106 permit 65000:1 0:89 0:106 ip community-list standard 1_90_105 permit 65000:1 0:90 0:105 ip community-list standard 1_91_104 permit 65000:1 0:91 0:104 ip community-list standard 1_92_103 permit 65000:1 0:92 0:103 ip community-list standard 1_93_102 permit 65000:1 0:93 0:102 ip community-list standard 1_94_101 permit 65000:1 0:94 0:101 ip community-list standard 1_95_100 permit 65000:1 0:95 0:100 ip community-list standard 1_96_99 permit 65000:1 0:96 0:99 ip community-list standard 1_97_98 permit 65000:1 0:97 0:98 ip community-list expanded c195 permit 1 ^65000:4_0:195_0:1$ ip community-list expanded c195 permit 2 ^65000:3_0:196_0:1$ ip community-list expanded c195 permit 3 ^65000:3_0:197_0:2$ ip community-list expanded c195 permit 4 ^65000:3_0:198_0:3$ ip community-list expanded c195 permit 5 ^65000:3_0:199_0:4$ ip community-list expanded c195 permit 6 ^65000:3_0:200_0:5$ ip community-list expanded c195 permit 7 ^65000:3_0:201_0:6$ ip community-list expanded c195 permit 8 ^65000:3_0:202_0:7$ ip community-list expanded c195 permit 9 ^65000:3_0:203_0:8$ ip community-list expanded c195 permit 10 ^65000:3_0:204_0:9$ ip community-list expanded c195 permit 11 ^65000:3_0:205_0:10$ ip community-list expanded c195 permit 12 ^65000:3_0:206_0:11$ ip community-list expanded c195 permit 13 ^65000:3_0:207_0:12$ ip community-list expanded c195 permit 14 ^65000:3_0:208_0:13$ ip community-list expanded c195 permit 15 ^65000:3_0:209_0:14$ ip community-list expanded c195 permit 16 ^65000:3_0:210_0:15$ ip community-list expanded c195 permit 17 ^65000:3_0:211_0:16$ ip community-list expanded c195 permit 18 ^65000:3_0:212_0:17$ ip community-list expanded c195 permit 19 ^65000:3_0:213_0:18$ ip community-list expanded c195 permit 20 ^65000:3_0:214_0:19$ ip community-list expanded c195 permit 21 ^65000:3_0:215_0:20$ ip community-list expanded c195 permit 22 ^65000:3_0:216_0:21$ ip community-list expanded c195 permit 23 ^65000:3_0:217_0:22$ ip community-list expanded c195 permit 24 ^65000:3_0:218_0:23$ ip community-list expanded c195 permit 25 ^65000:3_0:219_0:24$ ip community-list expanded c195 permit 26 ^65000:3_0:220_0:25$ ip community-list expanded c195 permit 27 ^65000:3_0:221_0:26$ ip community-list expanded c195 permit 28 ^65000:3_0:222_0:27$ ip community-list expanded c195 permit 29 ^65000:3_0:223_0:28$ ip community-list expanded c195 permit 30 ^65000:3_0:224_0:29$ ip community-list expanded c195 permit 31 ^65000:3_0:225_0:30$ ip community-list expanded c195 permit 32 ^65000:3_0:226_0:31$ ip community-list expanded c195 permit 33 ^65000:3_0:227_0:32$ ip community-list expanded c195 permit 34 ^65000:3_0:228_0:33$ ip community-list expanded c195 permit 35 ^65000:3_0:229_0:34$ ip community-list expanded c195 permit 36 ^65000:3_0:230_0:35$ ip community-list expanded c195 permit 37 ^65000:3_0:231_0:36$ ip community-list expanded c195 permit 38 ^65000:3_0:232_0:37$ ip community-list expanded c195 permit 39 ^65000:3_0:233_0:38$ ip community-list expanded c195 permit 40 ^65000:3_0:234_0:39$ ip community-list expanded c195 permit 41 ^65000:3_0:235_0:40$ ip community-list expanded c195 permit 42 ^65000:3_0:236_0:41$ ip community-list expanded c195 permit 43 ^65000:3_0:237_0:42$ ip community-list expanded c195 permit 44 ^65000:3_0:238_0:43$ ip community-list expanded c195 permit 45 ^65000:3_0:239_0:44$ ip community-list expanded c195 permit 46 ^65000:3_0:240_0:45$ ip community-list expanded c195 permit 47 ^65000:3_0:241_0:46$ ip community-list expanded c195 permit 48 ^65000:3_0:242_0:47$ ip community-list expanded c195 permit 49 ^65000:3_0:243_0:48$ ip community-list expanded c195 permit 50 ^65000:3_0:244_0:49$ ip community-list expanded c195 permit 51 ^65000:3_0:245_0:50$ ip community-list expanded c195 permit 52 ^65000:3_0:246_0:51$ ip community-list expanded c195 permit 53 ^65000:3_0:247_0:52$ ip community-list expanded c195 permit 54 ^65000:3_0:248_0:53$ ip community-list expanded c195 permit 55 ^65000:3_0:249_0:54$ ip community-list expanded c195 permit 56 ^65000:3_0:250_0:55$ ip community-list expanded c195 permit 57 ^65000:3_0:251_0:56$ ip community-list expanded c195 permit 58 ^65000:3_0:252_0:57$ ip community-list expanded c195 permit 59 ^65000:3_0:253_0:58$ ip community-list expanded c195 permit 60 ^65000:3_0:254_0:59$ ip community-list expanded c195 permit 61 ^65000:3_0:255_0:60$ ip community-list expanded c195 permit 62 ^65000:3_0:256_0:61$ route-map calculator permit 25032 match community 1_1_194 2_1_195 1_2_193 2_3_65 1_3_192 set community 0:195 route-map calculator permit 25033 match community 1_4_191 2_5_39 1_5_190 1_6_189 1_7_188 set community 0:195 route-map calculator permit 25034 match community 1_8_187 1_9_186 1_10_185 1_11_184 1_12_183 set community 0:195 route-map calculator permit 25035 match community 2_13_15 1_13_182 1_14_181 1_15_180 1_16_179 set community 0:195 route-map calculator permit 25036 match community 1_17_178 1_18_177 1_19_176 1_20_175 1_21_174 set community 0:195 route-map calculator permit 25037 match community 1_22_173 1_23_172 1_24_171 1_25_170 1_26_169 set community 0:195 route-map calculator permit 25038 match community 1_27_168 1_28_167 1_29_166 1_30_165 1_31_164 set community 0:195 route-map calculator permit 25039 match community 1_32_163 1_33_162 1_34_161 1_35_160 1_36_159 set community 0:195 route-map calculator permit 25040 match community 1_37_158 1_38_157 1_39_156 1_40_155 1_41_154 set community 0:195 route-map calculator permit 25041 match community 1_42_153 1_43_152 1_44_151 1_45_150 1_46_149 set community 0:195 route-map calculator permit 25042 match community 1_47_148 1_48_147 1_49_146 1_50_145 1_51_144 set community 0:195 route-map calculator permit 25043 match community 1_52_143 1_53_142 1_54_141 1_55_140 1_56_139 set community 0:195 route-map calculator permit 25044 match community 1_57_138 1_58_137 1_59_136 1_60_135 1_61_134 set community 0:195 route-map calculator permit 25045 match community 1_62_133 1_63_132 1_64_131 1_65_130 1_66_129 set community 0:195 route-map calculator permit 25046 match community 1_67_128 1_68_127 1_69_126 1_70_125 1_71_124 set community 0:195 route-map calculator permit 25047 match community 1_72_123 1_73_122 1_74_121 1_75_120 1_76_119 set community 0:195 route-map calculator permit 25048 match community 1_77_118 1_78_117 1_79_116 1_80_115 1_81_114 set community 0:195 route-map calculator permit 25049 match community 1_82_113 1_83_112 1_84_111 1_85_110 1_86_109 set community 0:195 route-map calculator permit 25050 match community 1_87_108 1_88_107 1_89_106 1_90_105 1_91_104 set community 0:195 route-map calculator permit 25051 match community 1_92_103 1_93_102 1_94_101 1_95_100 1_96_99 set community 0:195 route-map calculator permit 25052 match community 1_97_98 c4_195_1 c3_196_1 c3_197_2 c3_198_3 set community 0:195 route-map calculator permit 25053 match community c3_199_4 c3_200_5 c3_201_6 c3_202_7 c3_203_8 set community 0:195 route-map calculator permit 25054 match community c3_204_9 c3_205_10 c3_206_11 c3_207_12 c3_208_13 set community 0:195 route-map calculator permit 25055 match community c3_209_14 c3_210_15 c3_211_16 c3_212_17 c3_213_18 set community 0:195 route-map calculator permit 25056 match community c3_214_19 c3_215_20 c3_216_21 c3_217_22 c3_218_23 set community 0:195 route-map calculator permit 25057 match community c3_219_24 c3_220_25 c3_221_26 c3_222_27 c3_223_28 set community 0:195 route-map calculator permit 25058 match community c3_224_29 c3_225_30 c3_226_31 c3_227_32 c3_228_33 set community 0:195 route-map calculator permit 25059 match community c3_229_34 c3_230_35 c3_231_36 c3_232_37 c3_233_38 set community 0:195 route-map calculator permit 25060 match community c3_234_39 c3_235_40 c3_236_41 c3_237_42 c3_238_43 set community 0:195 route-map calculator permit 25061 match community c3_239_44 c3_240_45 c3_241_46 c3_242_47 c3_243_48 set community 0:195 route-map calculator permit 25062 match community c3_244_49 c3_245_50 c3_246_51 c3_247_52 c3_248_53 set community 0:195 route-map calculator permit 25063 match community c3_249_54 c3_250_55 c3_251_56 c3_252_57 c3_253_58 set community 0:195 route-map calculator permit 25064 match community c3_254_59 c3_255_60 c3_256_61 set community 0:195 ip community-list standard 2_242_247 permit 65000:2 0:242 0:247 route-map calculator permit 25065 match community 2_242_247 set community 0:59774 ip community-list standard 2_38_214 permit 65000:2 0:38 0:214 ip community-list standard 2_76_107 permit 65000:2 0:76 0:107 route-map calculator permit 25066 match community 2_38_214 2_76_107 set community 0:8132 ip community-list standard 2_65_219 permit 65000:2 0:65 0:219 ip community-list standard 2_73_195 permit 65000:2 0:73 0:195 route-map calculator permit 25067 match community 2_65_219 2_73_195 set community 0:14235 ip community-list standard 2_47_254 permit 65000:2 0:47 0:254 ip community-list standard 2_94_127 permit 65000:2 0:94 0:127 route-map calculator permit 25068 match community 2_47_254 2_94_127 set community 0:11938 ip community-list standard 2_186_252 permit 65000:2 0:186 0:252 ip community-list standard 2_189_248 permit 65000:2 0:189 0:248 ip community-list standard 2_216_217 permit 65000:2 0:216 0:217 route-map calculator permit 25069 match community 2_186_252 2_189_248 2_216_217 set community 0:46872 ip community-list standard 2_119_250 permit 65000:2 0:119 0:250 ip community-list standard 2_125_238 permit 65000:2 0:125 0:238 ip community-list standard 2_170_175 permit 65000:2 0:170 0:175 route-map calculator permit 25070 match community 2_119_250 2_125_238 2_170_175 set community 0:29750 ip community-list standard 2_161_214 permit 65000:2 0:161 0:214 route-map calculator permit 25071 match community 2_161_214 set community 0:34454 ip community-list standard 2_61_230 permit 65000:2 0:61 0:230 ip community-list standard 2_115_122 permit 65000:2 0:115 0:122 route-map calculator permit 25072 match community 2_61_230 2_115_122 set community 0:14030 ip community-list standard 2_10_170 permit 65000:2 0:10 0:170 ip community-list standard 2_17_100 permit 65000:2 0:17 0:100 ip community-list standard 2_20_85 permit 65000:2 0:20 0:85 ip community-list standard 2_25_68 permit 65000:2 0:25 0:68 ip community-list standard 2_34_50 permit 65000:2 0:34 0:50 route-map calculator permit 25073 match community 2_10_170 2_17_100 2_20_85 2_25_68 2_34_50 set community 0:1700 ip community-list standard 2_124_143 permit 65000:2 0:124 0:143 route-map calculator permit 25074 match community 2_124_143 set community 0:17732 ip community-list standard 2_41_169 permit 65000:2 0:41 0:169 route-map calculator permit 25075 match community 2_41_169 set community 0:6929 ip community-list standard 2_144_229 permit 65000:2 0:144 0:229 route-map calculator permit 25076 match community 2_144_229 set community 0:32976 ip community-list standard 2_125_213 permit 65000:2 0:125 0:213 route-map calculator permit 25077 match community 2_125_213 set community 0:26625 ip community-list standard 2_240_243 permit 65000:2 0:240 0:243 route-map calculator permit 25078 match community 2_240_243 set community 0:58320 ip community-list standard 2_41_149 permit 65000:2 0:41 0:149 route-map calculator permit 25079 match community 2_41_149 set community 0:6109 ip community-list standard 2_29_198 permit 65000:2 0:29 0:198 ip community-list standard 2_33_174 permit 65000:2 0:33 0:174 ip community-list standard 2_58_99 permit 65000:2 0:58 0:99 ip community-list standard 2_66_87 permit 65000:2 0:66 0:87 route-map calculator permit 25080 match community 2_29_198 2_33_174 2_58_99 2_66_87 set community 0:5742 ip community-list standard 2_8_181 permit 65000:2 0:8 0:181 route-map calculator permit 25081 match community 2_8_181 set community 0:1448 ip community-list standard 2_111_181 permit 65000:2 0:111 0:181 route-map calculator permit 25082 match community 2_111_181 set community 0:20091 ip community-list standard 2_71_184 permit 65000:2 0:71 0:184 ip community-list standard 2_92_142 permit 65000:2 0:92 0:142 route-map calculator permit 25083 match community 2_71_184 2_92_142 set community 0:13064 ip community-list standard 2_111_177 permit 65000:2 0:111 0:177 route-map calculator permit 25084 match community 2_111_177 set community 0:19647 ip community-list standard 2_76_133 permit 65000:2 0:76 0:133 route-map calculator permit 25085 match community 2_76_133 set community 0:10108 ip community-list standard 2_63_181 permit 65000:2 0:63 0:181 route-map calculator permit 25086 match community 2_63_181 set community 0:11403 ip community-list standard 2_171_255 permit 65000:2 0:171 0:255 route-map calculator permit 25087 match community 2_171_255 set community 0:43605 ip community-list standard 2_25_256 permit 65000:2 0:25 0:256 ip community-list standard 2_32_200 permit 65000:2 0:32 0:200 ip community-list standard 2_40_160 permit 65000:2 0:40 0:160 ip community-list standard 2_50_128 permit 65000:2 0:50 0:128 ip community-list standard 2_64_100 permit 65000:2 0:64 0:100 ip community-list standard 2_80_80 permit 65000:2 0:80 0:80 route-map calculator permit 25088 match community 2_25_256 2_32_200 2_40_160 2_50_128 2_64_100 set community 0:6400 route-map calculator permit 25089 match community 2_80_80 set community 0:6400 ip community-list standard 2_183_185 permit 65000:2 0:183 0:185 route-map calculator permit 25090 match community 2_183_185 set community 0:33855 ip community-list standard 2_5_183 permit 65000:2 0:5 0:183 ip community-list standard 2_15_61 permit 65000:2 0:15 0:61 route-map calculator permit 25091 match community 2_5_183 2_15_61 set community 0:915 ip community-list standard 2_142_214 permit 65000:2 0:142 0:214 route-map calculator permit 25092 match community 2_142_214 set community 0:30388 ip community-list standard 2_157_207 permit 65000:2 0:157 0:207 route-map calculator permit 25093 match community 2_157_207 set community 0:32499 ip community-list standard 2_125_219 permit 65000:2 0:125 0:219 route-map calculator permit 25094 match community 2_125_219 set community 0:27375 ip community-list standard 2_53_175 permit 65000:2 0:53 0:175 route-map calculator permit 25095 match community 2_53_175 set community 0:9275 ip community-list standard 2_87_247 permit 65000:2 0:87 0:247 route-map calculator permit 25096 match community 2_87_247 set community 0:21489 ip community-list standard 2_59_234 permit 65000:2 0:59 0:234 ip community-list standard 2_78_177 permit 65000:2 0:78 0:177 ip community-list standard 2_117_118 permit 65000:2 0:117 0:118 route-map calculator permit 25097 match community 2_59_234 2_78_177 2_117_118 set community 0:13806 ip community-list standard 2_45_228 permit 65000:2 0:45 0:228 ip community-list standard 2_54_190 permit 65000:2 0:54 0:190 ip community-list standard 2_57_180 permit 65000:2 0:57 0:180 ip community-list standard 2_60_171 permit 65000:2 0:60 0:171 ip community-list standard 2_76_135 permit 65000:2 0:76 0:135 ip community-list standard 2_90_114 permit 65000:2 0:90 0:114 ip community-list standard 2_95_108 permit 65000:2 0:95 0:108 route-map calculator permit 25098 match community 2_45_228 2_54_190 2_57_180 2_60_171 2_76_135 set community 0:10260 route-map calculator permit 25099 match community 2_90_114 2_95_108 set community 0:10260 ip community-list standard 2_161_197 permit 65000:2 0:161 0:197 route-map calculator permit 25100 match community 2_161_197 set community 0:31717 ip community-list standard 2_206_222 permit 65000:2 0:206 0:222 route-map calculator permit 25101 match community 2_206_222 set community 0:45732 ip community-list standard 2_140_220 permit 65000:2 0:140 0:220 ip community-list standard 2_154_200 permit 65000:2 0:154 0:200 ip community-list standard 2_175_176 permit 65000:2 0:175 0:176 route-map calculator permit 25102 match community 2_140_220 2_154_200 2_175_176 set community 0:30800 ip community-list standard 2_18_235 permit 65000:2 0:18 0:235 ip community-list standard 2_30_141 permit 65000:2 0:30 0:141 ip community-list standard 2_45_94 permit 65000:2 0:45 0:94 ip community-list standard 2_47_90 permit 65000:2 0:47 0:90 route-map calculator permit 25103 match community 2_18_235 2_30_141 2_45_94 2_47_90 set community 0:4230 ip community-list standard 2_7_248 permit 65000:2 0:7 0:248 ip community-list standard 2_8_217 permit 65000:2 0:8 0:217 ip community-list standard 2_14_124 permit 65000:2 0:14 0:124 ip community-list standard 2_28_62 permit 65000:2 0:28 0:62 ip community-list standard 2_31_56 permit 65000:2 0:31 0:56 route-map calculator permit 25104 match community 2_7_248 2_8_217 2_14_124 2_28_62 2_31_56 set community 0:1736 ip community-list standard 2_26_193 permit 65000:2 0:26 0:193 route-map calculator permit 25105 match community 2_26_193 set community 0:5018 ip community-list standard 2_27_210 permit 65000:2 0:27 0:210 ip community-list standard 2_30_189 permit 65000:2 0:30 0:189 ip community-list standard 2_35_162 permit 65000:2 0:35 0:162 ip community-list standard 2_42_135 permit 65000:2 0:42 0:135 ip community-list standard 2_45_126 permit 65000:2 0:45 0:126 ip community-list standard 2_54_105 permit 65000:2 0:54 0:105 ip community-list standard 2_63_90 permit 65000:2 0:63 0:90 ip community-list standard 2_70_81 permit 65000:2 0:70 0:81 route-map calculator permit 25106 match community 2_27_210 2_30_189 2_35_162 2_42_135 2_45_126 set community 0:5670 route-map calculator permit 25107 match community 2_54_105 2_63_90 2_70_81 set community 0:5670 ip community-list standard 2_38_249 permit 65000:2 0:38 0:249 ip community-list standard 2_57_166 permit 65000:2 0:57 0:166 ip community-list standard 2_83_114 permit 65000:2 0:83 0:114 route-map calculator permit 25108 match community 2_38_249 2_57_166 2_83_114 set community 0:9462 ip community-list standard 2_107_238 permit 65000:2 0:107 0:238 ip community-list standard 2_119_214 permit 65000:2 0:119 0:214 route-map calculator permit 25109 match community 2_107_238 2_119_214 set community 0:25466 ip community-list standard 2_215_216 permit 65000:2 0:215 0:216 route-map calculator permit 25110 match community 2_215_216 set community 0:46440 ip community-list standard 2_95_238 permit 65000:2 0:95 0:238 ip community-list standard 2_119_190 permit 65000:2 0:119 0:190 ip community-list standard 2_133_170 permit 65000:2 0:133 0:170 route-map calculator permit 25111 match community 2_95_238 2_119_190 2_133_170 set community 0:22610 ip community-list standard 2_146_228 permit 65000:2 0:146 0:228 ip community-list standard 2_152_219 permit 65000:2 0:152 0:219 route-map calculator permit 25112 match community 2_146_228 2_152_219 set community 0:33288 ip community-list standard 2_61_237 permit 65000:2 0:61 0:237 ip community-list standard 2_79_183 permit 65000:2 0:79 0:183 route-map calculator permit 25113 match community 2_61_237 2_79_183 set community 0:14457 ip community-list standard 2_139_226 permit 65000:2 0:139 0:226 route-map calculator permit 25114 match community 2_139_226 set community 0:31414 ip community-list standard 2_30_186 permit 65000:2 0:30 0:186 ip community-list standard 2_31_180 permit 65000:2 0:31 0:180 ip community-list standard 2_36_155 permit 65000:2 0:36 0:155 ip community-list standard 2_45_124 permit 65000:2 0:45 0:124 ip community-list standard 2_60_93 permit 65000:2 0:60 0:93 ip community-list standard 2_62_90 permit 65000:2 0:62 0:90 route-map calculator permit 25115 match community 2_30_186 2_31_180 2_36_155 2_45_124 2_60_93 set community 0:5580 route-map calculator permit 25116 match community 2_62_90 set community 0:5580 ip community-list standard 2_232_252 permit 65000:2 0:232 0:252 route-map calculator permit 25117 match community 2_232_252 set community 0:58464 ip community-list standard 2_150_252 permit 65000:2 0:150 0:252 ip community-list standard 2_168_225 permit 65000:2 0:168 0:225 ip community-list standard 2_175_216 permit 65000:2 0:175 0:216 ip community-list standard 2_180_210 permit 65000:2 0:180 0:210 ip community-list standard 2_189_200 permit 65000:2 0:189 0:200 route-map calculator permit 25118 match community 2_150_252 2_168_225 2_175_216 2_180_210 2_189_200 set community 0:37800 ip community-list standard 2_179_217 permit 65000:2 0:179 0:217 route-map calculator permit 25119 match community 2_179_217 set community 0:38843 ip community-list standard 2_143_194 permit 65000:2 0:143 0:194 route-map calculator permit 25120 match community 2_143_194 set community 0:27742 ip community-list standard 2_107_199 permit 65000:2 0:107 0:199 route-map calculator permit 25121 match community 2_107_199 set community 0:21293 ip community-list standard 2_148_187 permit 65000:2 0:148 0:187 route-map calculator permit 25122 match community 2_148_187 set community 0:27676 ip community-list standard 2_21_208 permit 65000:2 0:21 0:208 ip community-list standard 2_24_182 permit 65000:2 0:24 0:182 ip community-list standard 2_26_168 permit 65000:2 0:26 0:168 ip community-list standard 2_28_156 permit 65000:2 0:28 0:156 ip community-list standard 2_39_112 permit 65000:2 0:39 0:112 ip community-list standard 2_42_104 permit 65000:2 0:42 0:104 ip community-list standard 2_48_91 permit 65000:2 0:48 0:91 ip community-list standard 2_52_84 permit 65000:2 0:52 0:84 ip community-list standard 2_56_78 permit 65000:2 0:56 0:78 route-map calculator permit 25123 match community 2_21_208 2_24_182 2_26_168 2_28_156 2_39_112 set community 0:4368 route-map calculator permit 25124 match community 2_42_104 2_48_91 2_52_84 2_56_78 set community 0:4368 ip community-list standard 2_102_139 permit 65000:2 0:102 0:139 route-map calculator permit 25125 match community 2_102_139 set community 0:14178 ip community-list standard 2_92_219 permit 65000:2 0:92 0:219 ip community-list standard 2_138_146 permit 65000:2 0:138 0:146 route-map calculator permit 25126 match community 2_92_219 2_138_146 set community 0:20148 ip community-list standard 2_157_234 permit 65000:2 0:157 0:234 route-map calculator permit 25127 match community 2_157_234 set community 0:36738 ip community-list standard 2_116_255 permit 65000:2 0:116 0:255 ip community-list standard 2_145_204 permit 65000:2 0:145 0:204 ip community-list standard 2_170_174 permit 65000:2 0:170 0:174 route-map calculator permit 25128 match community 2_116_255 2_145_204 2_170_174 set community 0:29580 ip community-list standard 2_145_248 permit 65000:2 0:145 0:248 ip community-list standard 2_155_232 permit 65000:2 0:155 0:232 route-map calculator permit 25129 match community 2_145_248 2_155_232 set community 0:35960 ip community-list standard 2_211_248 permit 65000:2 0:211 0:248 route-map calculator permit 25130 match community 2_211_248 set community 0:52328 ip community-list standard 2_197_197 permit 65000:2 0:197 0:197 route-map calculator permit 25131 match community 2_197_197 set community 0:38809 ip community-list standard 2_200_255 permit 65000:2 0:200 0:255 ip community-list standard 2_204_250 permit 65000:2 0:204 0:250 route-map calculator permit 25132 match community 2_200_255 2_204_250 set community 0:51000 ip community-list standard 2_231_247 permit 65000:2 0:231 0:247 route-map calculator permit 25133 match community 2_231_247 set community 0:57057 ip community-list standard 2_104_137 permit 65000:2 0:104 0:137 route-map calculator permit 25134 match community 2_104_137 set community 0:14248 ip community-list standard 2_164_197 permit 65000:2 0:164 0:197 route-map calculator permit 25135 match community 2_164_197 set community 0:32308 ip community-list standard 2_88_137 permit 65000:2 0:88 0:137 route-map calculator permit 25136 match community 2_88_137 set community 0:12056 ip community-list standard 2_158_256 permit 65000:2 0:158 0:256 route-map calculator permit 25137 match community 2_158_256 set community 0:40448 ip community-list standard 2_4_236 permit 65000:2 0:4 0:236 ip community-list standard 2_8_118 permit 65000:2 0:8 0:118 ip community-list standard 2_16_59 permit 65000:2 0:16 0:59 route-map calculator permit 25138 match community 2_4_236 2_8_118 2_16_59 set community 0:944 ip community-list standard 2_94_255 permit 65000:2 0:94 0:255 ip community-list standard 2_102_235 permit 65000:2 0:102 0:235 ip community-list standard 2_141_170 permit 65000:2 0:141 0:170 route-map calculator permit 25139 match community 2_94_255 2_102_235 2_141_170 set community 0:23970 ip community-list standard 2_129_198 permit 65000:2 0:129 0:198 route-map calculator permit 25140 match community 2_129_198 set community 0:25542 ip community-list standard 2_26_247 permit 65000:2 0:26 0:247 ip community-list standard 2_38_169 permit 65000:2 0:38 0:169 route-map calculator permit 25141 match community 2_26_247 2_38_169 set community 0:6422 ip community-list standard 2_106_189 permit 65000:2 0:106 0:189 ip community-list standard 2_126_159 permit 65000:2 0:126 0:159 route-map calculator permit 25142 match community 2_106_189 2_126_159 set community 0:20034 ip community-list standard 1_1_3 permit 65000:1 0:1 0:3 ip community-list standard 2_1_4 permit 65000:2 0:1 0:4 ip community-list standard 1_2_2 permit 65000:1 0:2 0:2 ip community-list standard 2_2_2 permit 65000:2 0:2 0:2 ip community-list expanded c4 permit 1 ^65000:4_0:4_0:1$ ip community-list expanded c4 permit 2 ^65000:3_0:5_0:1$ ip community-list expanded c4 permit 3 ^65000:3_0:6_0:2$ ip community-list expanded c4 permit 4 ^65000:3_0:7_0:3$ ip community-list expanded c4 permit 5 ^65000:4_0:8_0:2$ ip community-list expanded c4 permit 6 ^65000:3_0:8_0:4$ ip community-list expanded c4 permit 7 ^65000:4_0:9_0:2$ ip community-list expanded c4 permit 8 ^65000:3_0:9_0:5$ ip community-list expanded c4 permit 9 ^65000:3_0:10_0:6$ ip community-list expanded c4 permit 10 ^65000:3_0:11_0:7$ ip community-list expanded c4 permit 11 ^65000:4_0:12_0:3$ ip community-list expanded c4 permit 12 ^65000:3_0:12_0:8$ ip community-list expanded c4 permit 13 ^65000:4_0:13_0:3$ ip community-list expanded c4 permit 14 ^65000:3_0:13_0:9$ ip community-list expanded c4 permit 15 ^65000:4_0:14_0:3$ ip community-list expanded c4 permit 16 ^65000:3_0:14_0:10$ ip community-list expanded c4 permit 17 ^65000:3_0:15_0:11$ ip community-list expanded c4 permit 18 ^65000:4_0:16_0:4$ ip community-list expanded c4 permit 19 ^65000:3_0:16_0:12$ ip community-list expanded c4 permit 20 ^65000:4_0:17_0:4$ ip community-list expanded c4 permit 21 ^65000:3_0:17_0:13$ ip community-list expanded c4 permit 22 ^65000:4_0:18_0:4$ ip community-list expanded c4 permit 23 ^65000:3_0:18_0:14$ ip community-list expanded c4 permit 24 ^65000:4_0:19_0:4$ ip community-list expanded c4 permit 25 ^65000:3_0:19_0:15$ ip community-list expanded c4 permit 26 ^65000:4_0:20_0:5$ ip community-list expanded c4 permit 27 ^65000:3_0:20_0:16$ ip community-list expanded c4 permit 28 ^65000:4_0:21_0:5$ ip community-list expanded c4 permit 29 ^65000:3_0:21_0:17$ ip community-list expanded c4 permit 30 ^65000:4_0:22_0:5$ ip community-list expanded c4 permit 31 ^65000:3_0:22_0:18$ ip community-list expanded c4 permit 32 ^65000:4_0:23_0:5$ ip community-list expanded c4 permit 33 ^65000:3_0:23_0:19$ ip community-list expanded c4 permit 34 ^65000:4_0:24_0:5$ ip community-list expanded c4 permit 35 ^65000:4_0:24_0:6$ ip community-list expanded c4 permit 36 ^65000:3_0:24_0:20$ ip community-list expanded c4 permit 37 ^65000:4_0:25_0:6$ ip community-list expanded c4 permit 38 ^65000:3_0:25_0:21$ ip community-list expanded c4 permit 39 ^65000:4_0:26_0:6$ ip community-list expanded c4 permit 40 ^65000:3_0:26_0:22$ ip community-list expanded c4 permit 41 ^65000:4_0:27_0:6$ ip community-list expanded c4 permit 42 ^65000:3_0:27_0:23$ ip community-list expanded c4 permit 43 ^65000:4_0:28_0:6$ ip community-list expanded c4 permit 44 ^65000:4_0:28_0:7$ ip community-list expanded c4 permit 45 ^65000:3_0:28_0:24$ ip community-list expanded c4 permit 46 ^65000:4_0:29_0:6$ ip community-list expanded c4 permit 47 ^65000:4_0:29_0:7$ ip community-list expanded c4 permit 48 ^65000:3_0:29_0:25$ ip community-list expanded c4 permit 49 ^65000:4_0:30_0:7$ ip community-list expanded c4 permit 50 ^65000:3_0:30_0:26$ ip community-list expanded c4 permit 51 ^65000:4_0:31_0:7$ ip community-list expanded c4 permit 52 ^65000:3_0:31_0:27$ ip community-list expanded c4 permit 53 ^65000:4_0:32_0:7$ ip community-list expanded c4 permit 54 ^65000:4_0:32_0:8$ ip community-list expanded c4 permit 55 ^65000:3_0:32_0:28$ ip community-list expanded c4 permit 56 ^65000:4_0:33_0:7$ ip community-list expanded c4 permit 57 ^65000:4_0:33_0:8$ ip community-list expanded c4 permit 58 ^65000:3_0:33_0:29$ ip community-list expanded c4 permit 59 ^65000:4_0:34_0:7$ ip community-list expanded c4 permit 60 ^65000:4_0:34_0:8$ ip community-list expanded c4 permit 61 ^65000:3_0:34_0:30$ ip community-list expanded c4 permit 62 ^65000:4_0:35_0:8$ ip community-list expanded c4 permit 63 ^65000:3_0:35_0:31$ ip community-list expanded c4 permit 64 ^65000:4_0:36_0:8$ ip community-list expanded c4 permit 65 ^65000:4_0:36_0:9$ ip community-list expanded c4 permit 66 ^65000:3_0:36_0:32$ ip community-list expanded c4 permit 67 ^65000:4_0:37_0:8$ ip community-list expanded c4 permit 68 ^65000:4_0:37_0:9$ ip community-list expanded c4 permit 69 ^65000:3_0:37_0:33$ ip community-list expanded c4 permit 70 ^65000:4_0:38_0:8$ ip community-list expanded c4 permit 71 ^65000:4_0:38_0:9$ ip community-list expanded c4 permit 72 ^65000:3_0:38_0:34$ ip community-list expanded c4 permit 73 ^65000:4_0:39_0:8$ ip community-list expanded c4 permit 74 ^65000:4_0:39_0:9$ ip community-list expanded c4 permit 75 ^65000:3_0:39_0:35$ ip community-list expanded c4 permit 76 ^65000:4_0:40_0:9$ ip community-list expanded c4 permit 77 ^65000:4_0:40_0:10$ ip community-list expanded c4 permit 78 ^65000:3_0:40_0:36$ ip community-list expanded c4 permit 79 ^65000:4_0:41_0:9$ ip community-list expanded c4 permit 80 ^65000:4_0:41_0:10$ ip community-list expanded c4 permit 81 ^65000:3_0:41_0:37$ ip community-list expanded c4 permit 82 ^65000:4_0:42_0:9$ ip community-list expanded c4 permit 83 ^65000:4_0:42_0:10$ ip community-list expanded c4 permit 84 ^65000:3_0:42_0:38$ ip community-list expanded c4 permit 85 ^65000:4_0:43_0:9$ ip community-list expanded c4 permit 86 ^65000:4_0:43_0:10$ ip community-list expanded c4 permit 87 ^65000:3_0:43_0:39$ ip community-list expanded c4 permit 88 ^65000:4_0:44_0:9$ ip community-list expanded c4 permit 89 ^65000:4_0:44_0:10$ ip community-list expanded c4 permit 90 ^65000:4_0:44_0:11$ ip community-list expanded c4 permit 91 ^65000:3_0:44_0:40$ ip community-list expanded c4 permit 92 ^65000:4_0:45_0:10$ ip community-list expanded c4 permit 93 ^65000:4_0:45_0:11$ ip community-list expanded c4 permit 94 ^65000:3_0:45_0:41$ ip community-list expanded c4 permit 95 ^65000:4_0:46_0:10$ ip community-list expanded c4 permit 96 ^65000:4_0:46_0:11$ ip community-list expanded c4 permit 97 ^65000:3_0:46_0:42$ ip community-list expanded c4 permit 98 ^65000:4_0:47_0:10$ ip community-list expanded c4 permit 99 ^65000:4_0:47_0:11$ ip community-list expanded c4 permit 100 ^65000:3_0:47_0:43$ ip community-list expanded c4 permit 101 ^65000:4_0:48_0:10$ ip community-list expanded c4 permit 102 ^65000:4_0:48_0:11$ ip community-list expanded c4 permit 103 ^65000:4_0:48_0:12$ ip community-list expanded c4 permit 104 ^65000:3_0:48_0:44$ ip community-list expanded c4 permit 105 ^65000:4_0:49_0:10$ ip community-list expanded c4 permit 106 ^65000:4_0:49_0:11$ ip community-list expanded c4 permit 107 ^65000:4_0:49_0:12$ ip community-list expanded c4 permit 108 ^65000:3_0:49_0:45$ ip community-list expanded c4 permit 109 ^65000:4_0:50_0:11$ ip community-list expanded c4 permit 110 ^65000:4_0:50_0:12$ ip community-list expanded c4 permit 111 ^65000:3_0:50_0:46$ ip community-list expanded c4 permit 112 ^65000:4_0:51_0:11$ ip community-list expanded c4 permit 113 ^65000:4_0:51_0:12$ ip community-list expanded c4 permit 114 ^65000:3_0:51_0:47$ ip community-list expanded c4 permit 115 ^65000:4_0:52_0:11$ ip community-list expanded c4 permit 116 ^65000:4_0:52_0:12$ ip community-list expanded c4 permit 117 ^65000:4_0:52_0:13$ ip community-list expanded c4 permit 118 ^65000:3_0:52_0:48$ ip community-list expanded c4 permit 119 ^65000:4_0:53_0:11$ ip community-list expanded c4 permit 120 ^65000:4_0:53_0:12$ ip community-list expanded c4 permit 121 ^65000:4_0:53_0:13$ ip community-list expanded c4 permit 122 ^65000:3_0:53_0:49$ ip community-list expanded c4 permit 123 ^65000:4_0:54_0:11$ ip community-list expanded c4 permit 124 ^65000:4_0:54_0:12$ ip community-list expanded c4 permit 125 ^65000:4_0:54_0:13$ ip community-list expanded c4 permit 126 ^65000:3_0:54_0:50$ ip community-list expanded c4 permit 127 ^65000:4_0:55_0:12$ ip community-list expanded c4 permit 128 ^65000:4_0:55_0:13$ ip community-list expanded c4 permit 129 ^65000:3_0:55_0:51$ ip community-list expanded c4 permit 130 ^65000:4_0:56_0:12$ ip community-list expanded c4 permit 131 ^65000:4_0:56_0:13$ ip community-list expanded c4 permit 132 ^65000:4_0:56_0:14$ ip community-list expanded c4 permit 133 ^65000:3_0:56_0:52$ ip community-list expanded c4 permit 134 ^65000:4_0:57_0:12$ ip community-list expanded c4 permit 135 ^65000:4_0:57_0:13$ ip community-list expanded c4 permit 136 ^65000:4_0:57_0:14$ ip community-list expanded c4 permit 137 ^65000:3_0:57_0:53$ ip community-list expanded c4 permit 138 ^65000:4_0:58_0:12$ ip community-list expanded c4 permit 139 ^65000:4_0:58_0:13$ ip community-list expanded c4 permit 140 ^65000:4_0:58_0:14$ ip community-list expanded c4 permit 141 ^65000:3_0:58_0:54$ ip community-list expanded c4 permit 142 ^65000:4_0:59_0:12$ ip community-list expanded c4 permit 143 ^65000:4_0:59_0:13$ ip community-list expanded c4 permit 144 ^65000:4_0:59_0:14$ ip community-list expanded c4 permit 145 ^65000:3_0:59_0:55$ ip community-list expanded c4 permit 146 ^65000:4_0:60_0:13$ ip community-list expanded c4 permit 147 ^65000:4_0:60_0:14$ ip community-list expanded c4 permit 148 ^65000:4_0:60_0:15$ ip community-list expanded c4 permit 149 ^65000:3_0:60_0:56$ ip community-list expanded c4 permit 150 ^65000:4_0:61_0:13$ ip community-list expanded c4 permit 151 ^65000:4_0:61_0:14$ ip community-list expanded c4 permit 152 ^65000:4_0:61_0:15$ ip community-list expanded c4 permit 153 ^65000:3_0:61_0:57$ ip community-list expanded c4 permit 154 ^65000:4_0:62_0:13$ ip community-list expanded c4 permit 155 ^65000:4_0:62_0:14$ ip community-list expanded c4 permit 156 ^65000:4_0:62_0:15$ ip community-list expanded c4 permit 157 ^65000:3_0:62_0:58$ ip community-list expanded c4 permit 158 ^65000:4_0:63_0:13$ ip community-list expanded c4 permit 159 ^65000:4_0:63_0:14$ ip community-list expanded c4 permit 160 ^65000:4_0:63_0:15$ ip community-list expanded c4 permit 161 ^65000:3_0:63_0:59$ ip community-list expanded c4 permit 162 ^65000:4_0:64_0:13$ ip community-list expanded c4 permit 163 ^65000:4_0:64_0:14$ ip community-list expanded c4 permit 164 ^65000:4_0:64_0:15$ ip community-list expanded c4 permit 165 ^65000:4_0:64_0:16$ ip community-list expanded c4 permit 166 ^65000:3_0:64_0:60$ ip community-list expanded c4 permit 167 ^65000:4_0:65_0:14$ ip community-list expanded c4 permit 168 ^65000:4_0:65_0:15$ ip community-list expanded c4 permit 169 ^65000:4_0:65_0:16$ ip community-list expanded c4 permit 170 ^65000:3_0:65_0:61$ ip community-list expanded c4 permit 171 ^65000:4_0:66_0:14$ ip community-list expanded c4 permit 172 ^65000:4_0:66_0:15$ ip community-list expanded c4 permit 173 ^65000:4_0:66_0:16$ ip community-list expanded c4 permit 174 ^65000:3_0:66_0:62$ ip community-list expanded c4 permit 175 ^65000:4_0:67_0:14$ ip community-list expanded c4 permit 176 ^65000:4_0:67_0:15$ ip community-list expanded c4 permit 177 ^65000:4_0:67_0:16$ ip community-list expanded c4 permit 178 ^65000:3_0:67_0:63$ ip community-list expanded c4 permit 179 ^65000:4_0:68_0:14$ ip community-list expanded c4 permit 180 ^65000:4_0:68_0:15$ ip community-list expanded c4 permit 181 ^65000:4_0:68_0:16$ ip community-list expanded c4 permit 182 ^65000:4_0:68_0:17$ ip community-list expanded c4 permit 183 ^65000:3_0:68_0:64$ ip community-list expanded c4 permit 184 ^65000:4_0:69_0:14$ ip community-list expanded c4 permit 185 ^65000:4_0:69_0:15$ ip community-list expanded c4 permit 186 ^65000:4_0:69_0:16$ ip community-list expanded c4 permit 187 ^65000:4_0:69_0:17$ ip community-list expanded c4 permit 188 ^65000:3_0:69_0:65$ ip community-list expanded c4 permit 189 ^65000:4_0:70_0:15$ ip community-list expanded c4 permit 190 ^65000:4_0:70_0:16$ ip community-list expanded c4 permit 191 ^65000:4_0:70_0:17$ ip community-list expanded c4 permit 192 ^65000:3_0:70_0:66$ ip community-list expanded c4 permit 193 ^65000:4_0:71_0:15$ ip community-list expanded c4 permit 194 ^65000:4_0:71_0:16$ ip community-list expanded c4 permit 195 ^65000:4_0:71_0:17$ ip community-list expanded c4 permit 196 ^65000:3_0:71_0:67$ ip community-list expanded c4 permit 197 ^65000:4_0:72_0:15$ ip community-list expanded c4 permit 198 ^65000:4_0:72_0:16$ ip community-list expanded c4 permit 199 ^65000:4_0:72_0:17$ ip community-list expanded c4 permit 200 ^65000:4_0:72_0:18$ ip community-list expanded c4 permit 201 ^65000:3_0:72_0:68$ ip community-list expanded c4 permit 202 ^65000:4_0:73_0:15$ ip community-list expanded c4 permit 203 ^65000:4_0:73_0:16$ ip community-list expanded c4 permit 204 ^65000:4_0:73_0:17$ ip community-list expanded c4 permit 205 ^65000:4_0:73_0:18$ ip community-list expanded c4 permit 206 ^65000:3_0:73_0:69$ ip community-list expanded c4 permit 207 ^65000:4_0:74_0:15$ ip community-list expanded c4 permit 208 ^65000:4_0:74_0:16$ ip community-list expanded c4 permit 209 ^65000:4_0:74_0:17$ ip community-list expanded c4 permit 210 ^65000:4_0:74_0:18$ ip community-list expanded c4 permit 211 ^65000:3_0:74_0:70$ ip community-list expanded c4 permit 212 ^65000:4_0:75_0:16$ ip community-list expanded c4 permit 213 ^65000:4_0:75_0:17$ ip community-list expanded c4 permit 214 ^65000:4_0:75_0:18$ ip community-list expanded c4 permit 215 ^65000:3_0:75_0:71$ ip community-list expanded c4 permit 216 ^65000:4_0:76_0:16$ ip community-list expanded c4 permit 217 ^65000:4_0:76_0:17$ ip community-list expanded c4 permit 218 ^65000:4_0:76_0:18$ ip community-list expanded c4 permit 219 ^65000:4_0:76_0:19$ ip community-list expanded c4 permit 220 ^65000:3_0:76_0:72$ ip community-list expanded c4 permit 221 ^65000:4_0:77_0:16$ ip community-list expanded c4 permit 222 ^65000:4_0:77_0:17$ ip community-list expanded c4 permit 223 ^65000:4_0:77_0:18$ ip community-list expanded c4 permit 224 ^65000:4_0:77_0:19$ ip community-list expanded c4 permit 225 ^65000:3_0:77_0:73$ ip community-list expanded c4 permit 226 ^65000:4_0:78_0:16$ ip community-list expanded c4 permit 227 ^65000:4_0:78_0:17$ ip community-list expanded c4 permit 228 ^65000:4_0:78_0:18$ ip community-list expanded c4 permit 229 ^65000:4_0:78_0:19$ ip community-list expanded c4 permit 230 ^65000:3_0:78_0:74$ ip community-list expanded c4 permit 231 ^65000:4_0:79_0:16$ ip community-list expanded c4 permit 232 ^65000:4_0:79_0:17$ ip community-list expanded c4 permit 233 ^65000:4_0:79_0:18$ ip community-list expanded c4 permit 234 ^65000:4_0:79_0:19$ ip community-list expanded c4 permit 235 ^65000:3_0:79_0:75$ ip community-list expanded c4 permit 236 ^65000:4_0:80_0:17$ ip community-list expanded c4 permit 237 ^65000:4_0:80_0:18$ ip community-list expanded c4 permit 238 ^65000:4_0:80_0:19$ ip community-list expanded c4 permit 239 ^65000:4_0:80_0:20$ ip community-list expanded c4 permit 240 ^65000:3_0:80_0:76$ ip community-list expanded c4 permit 241 ^65000:4_0:81_0:17$ ip community-list expanded c4 permit 242 ^65000:4_0:81_0:18$ ip community-list expanded c4 permit 243 ^65000:4_0:81_0:19$ ip community-list expanded c4 permit 244 ^65000:4_0:81_0:20$ ip community-list expanded c4 permit 245 ^65000:3_0:81_0:77$ ip community-list expanded c4 permit 246 ^65000:4_0:82_0:17$ ip community-list expanded c4 permit 247 ^65000:4_0:82_0:18$ ip community-list expanded c4 permit 248 ^65000:4_0:82_0:19$ ip community-list expanded c4 permit 249 ^65000:4_0:82_0:20$ ip community-list expanded c4 permit 250 ^65000:3_0:82_0:78$ ip community-list expanded c4 permit 251 ^65000:4_0:83_0:17$ ip community-list expanded c4 permit 252 ^65000:4_0:83_0:18$ ip community-list expanded c4 permit 253 ^65000:4_0:83_0:19$ ip community-list expanded c4 permit 254 ^65000:4_0:83_0:20$ ip community-list expanded c4 permit 255 ^65000:3_0:83_0:79$ ip community-list expanded c4 permit 256 ^65000:4_0:84_0:17$ ip community-list expanded c4 permit 257 ^65000:4_0:84_0:18$ ip community-list expanded c4 permit 258 ^65000:4_0:84_0:19$ ip community-list expanded c4 permit 259 ^65000:4_0:84_0:20$ ip community-list expanded c4 permit 260 ^65000:4_0:84_0:21$ ip community-list expanded c4 permit 261 ^65000:3_0:84_0:80$ ip community-list expanded c4 permit 262 ^65000:4_0:85_0:18$ ip community-list expanded c4 permit 263 ^65000:4_0:85_0:19$ ip community-list expanded c4 permit 264 ^65000:4_0:85_0:20$ ip community-list expanded c4 permit 265 ^65000:4_0:85_0:21$ ip community-list expanded c4 permit 266 ^65000:3_0:85_0:81$ ip community-list expanded c4 permit 267 ^65000:4_0:86_0:18$ ip community-list expanded c4 permit 268 ^65000:4_0:86_0:19$ ip community-list expanded c4 permit 269 ^65000:4_0:86_0:20$ ip community-list expanded c4 permit 270 ^65000:4_0:86_0:21$ ip community-list expanded c4 permit 271 ^65000:3_0:86_0:82$ ip community-list expanded c4 permit 272 ^65000:4_0:87_0:18$ ip community-list expanded c4 permit 273 ^65000:4_0:87_0:19$ ip community-list expanded c4 permit 274 ^65000:4_0:87_0:20$ ip community-list expanded c4 permit 275 ^65000:4_0:87_0:21$ ip community-list expanded c4 permit 276 ^65000:3_0:87_0:83$ ip community-list expanded c4 permit 277 ^65000:4_0:88_0:18$ ip community-list expanded c4 permit 278 ^65000:4_0:88_0:19$ ip community-list expanded c4 permit 279 ^65000:4_0:88_0:20$ ip community-list expanded c4 permit 280 ^65000:4_0:88_0:21$ ip community-list expanded c4 permit 281 ^65000:4_0:88_0:22$ ip community-list expanded c4 permit 282 ^65000:3_0:88_0:84$ ip community-list expanded c4 permit 283 ^65000:4_0:89_0:18$ ip community-list expanded c4 permit 284 ^65000:4_0:89_0:19$ ip community-list expanded c4 permit 285 ^65000:4_0:89_0:20$ ip community-list expanded c4 permit 286 ^65000:4_0:89_0:21$ ip community-list expanded c4 permit 287 ^65000:4_0:89_0:22$ ip community-list expanded c4 permit 288 ^65000:3_0:89_0:85$ ip community-list expanded c4 permit 289 ^65000:4_0:90_0:19$ ip community-list expanded c4 permit 290 ^65000:4_0:90_0:20$ ip community-list expanded c4 permit 291 ^65000:4_0:90_0:21$ ip community-list expanded c4 permit 292 ^65000:4_0:90_0:22$ ip community-list expanded c4 permit 293 ^65000:3_0:90_0:86$ ip community-list expanded c4 permit 294 ^65000:4_0:91_0:19$ ip community-list expanded c4 permit 295 ^65000:4_0:91_0:20$ ip community-list expanded c4 permit 296 ^65000:4_0:91_0:21$ ip community-list expanded c4 permit 297 ^65000:4_0:91_0:22$ ip community-list expanded c4 permit 298 ^65000:3_0:91_0:87$ ip community-list expanded c4 permit 299 ^65000:4_0:92_0:19$ ip community-list expanded c4 permit 300 ^65000:4_0:92_0:20$ ip community-list expanded c4 permit 301 ^65000:4_0:92_0:21$ ip community-list expanded c4 permit 302 ^65000:4_0:92_0:22$ ip community-list expanded c4 permit 303 ^65000:4_0:92_0:23$ ip community-list expanded c4 permit 304 ^65000:3_0:92_0:88$ ip community-list expanded c4 permit 305 ^65000:4_0:93_0:19$ ip community-list expanded c4 permit 306 ^65000:4_0:93_0:20$ ip community-list expanded c4 permit 307 ^65000:4_0:93_0:21$ ip community-list expanded c4 permit 308 ^65000:4_0:93_0:22$ ip community-list expanded c4 permit 309 ^65000:4_0:93_0:23$ ip community-list expanded c4 permit 310 ^65000:3_0:93_0:89$ ip community-list expanded c4 permit 311 ^65000:4_0:94_0:19$ ip community-list expanded c4 permit 312 ^65000:4_0:94_0:20$ ip community-list expanded c4 permit 313 ^65000:4_0:94_0:21$ ip community-list expanded c4 permit 314 ^65000:4_0:94_0:22$ ip community-list expanded c4 permit 315 ^65000:4_0:94_0:23$ ip community-list expanded c4 permit 316 ^65000:3_0:94_0:90$ ip community-list expanded c4 permit 317 ^65000:4_0:95_0:20$ ip community-list expanded c4 permit 318 ^65000:4_0:95_0:21$ ip community-list expanded c4 permit 319 ^65000:4_0:95_0:22$ ip community-list expanded c4 permit 320 ^65000:4_0:95_0:23$ ip community-list expanded c4 permit 321 ^65000:3_0:95_0:91$ ip community-list expanded c4 permit 322 ^65000:4_0:96_0:20$ ip community-list expanded c4 permit 323 ^65000:4_0:96_0:21$ ip community-list expanded c4 permit 324 ^65000:4_0:96_0:22$ ip community-list expanded c4 permit 325 ^65000:4_0:96_0:23$ ip community-list expanded c4 permit 326 ^65000:4_0:96_0:24$ ip community-list expanded c4 permit 327 ^65000:3_0:96_0:92$ ip community-list expanded c4 permit 328 ^65000:4_0:97_0:20$ ip community-list expanded c4 permit 329 ^65000:4_0:97_0:21$ ip community-list expanded c4 permit 330 ^65000:4_0:97_0:22$ ip community-list expanded c4 permit 331 ^65000:4_0:97_0:23$ ip community-list expanded c4 permit 332 ^65000:4_0:97_0:24$ ip community-list expanded c4 permit 333 ^65000:3_0:97_0:93$ ip community-list expanded c4 permit 334 ^65000:4_0:98_0:20$ ip community-list expanded c4 permit 335 ^65000:4_0:98_0:21$ ip community-list expanded c4 permit 336 ^65000:4_0:98_0:22$ ip community-list expanded c4 permit 337 ^65000:4_0:98_0:23$ ip community-list expanded c4 permit 338 ^65000:4_0:98_0:24$ ip community-list expanded c4 permit 339 ^65000:3_0:98_0:94$ ip community-list expanded c4 permit 340 ^65000:4_0:99_0:20$ ip community-list expanded c4 permit 341 ^65000:4_0:99_0:21$ ip community-list expanded c4 permit 342 ^65000:4_0:99_0:22$ ip community-list expanded c4 permit 343 ^65000:4_0:99_0:23$ ip community-list expanded c4 permit 344 ^65000:4_0:99_0:24$ ip community-list expanded c4 permit 345 ^65000:3_0:99_0:95$ ip community-list expanded c4 permit 346 ^65000:4_0:100_0:21$ ip community-list expanded c4 permit 347 ^65000:4_0:100_0:22$ ip community-list expanded c4 permit 348 ^65000:4_0:100_0:23$ ip community-list expanded c4 permit 349 ^65000:4_0:100_0:24$ ip community-list expanded c4 permit 350 ^65000:4_0:100_0:25$ ip community-list expanded c4 permit 351 ^65000:3_0:100_0:96$ ip community-list expanded c4 permit 352 ^65000:4_0:101_0:21$ ip community-list expanded c4 permit 353 ^65000:4_0:101_0:22$ ip community-list expanded c4 permit 354 ^65000:4_0:101_0:23$ ip community-list expanded c4 permit 355 ^65000:4_0:101_0:24$ ip community-list expanded c4 permit 356 ^65000:4_0:101_0:25$ ip community-list expanded c4 permit 357 ^65000:3_0:101_0:97$ ip community-list expanded c4 permit 358 ^65000:4_0:102_0:21$ ip community-list expanded c4 permit 359 ^65000:4_0:102_0:22$ ip community-list expanded c4 permit 360 ^65000:4_0:102_0:23$ ip community-list expanded c4 permit 361 ^65000:4_0:102_0:24$ ip community-list expanded c4 permit 362 ^65000:4_0:102_0:25$ ip community-list expanded c4 permit 363 ^65000:3_0:102_0:98$ ip community-list expanded c4 permit 364 ^65000:4_0:103_0:21$ ip community-list expanded c4 permit 365 ^65000:4_0:103_0:22$ ip community-list expanded c4 permit 366 ^65000:4_0:103_0:23$ ip community-list expanded c4 permit 367 ^65000:4_0:103_0:24$ ip community-list expanded c4 permit 368 ^65000:4_0:103_0:25$ ip community-list expanded c4 permit 369 ^65000:3_0:103_0:99$ ip community-list expanded c4 permit 370 ^65000:4_0:104_0:21$ ip community-list expanded c4 permit 371 ^65000:4_0:104_0:22$ ip community-list expanded c4 permit 372 ^65000:4_0:104_0:23$ ip community-list expanded c4 permit 373 ^65000:4_0:104_0:24$ ip community-list expanded c4 permit 374 ^65000:4_0:104_0:25$ ip community-list expanded c4 permit 375 ^65000:4_0:104_0:26$ ip community-list expanded c4 permit 376 ^65000:3_0:104_0:100$ ip community-list expanded c4 permit 377 ^65000:4_0:105_0:22$ ip community-list expanded c4 permit 378 ^65000:4_0:105_0:23$ ip community-list expanded c4 permit 379 ^65000:4_0:105_0:24$ ip community-list expanded c4 permit 380 ^65000:4_0:105_0:25$ ip community-list expanded c4 permit 381 ^65000:4_0:105_0:26$ ip community-list expanded c4 permit 382 ^65000:3_0:105_0:101$ ip community-list expanded c4 permit 383 ^65000:4_0:106_0:22$ ip community-list expanded c4 permit 384 ^65000:4_0:106_0:23$ ip community-list expanded c4 permit 385 ^65000:4_0:106_0:24$ ip community-list expanded c4 permit 386 ^65000:4_0:106_0:25$ ip community-list expanded c4 permit 387 ^65000:4_0:106_0:26$ ip community-list expanded c4 permit 388 ^65000:3_0:106_0:102$ ip community-list expanded c4 permit 389 ^65000:4_0:107_0:22$ ip community-list expanded c4 permit 390 ^65000:4_0:107_0:23$ ip community-list expanded c4 permit 391 ^65000:4_0:107_0:24$ ip community-list expanded c4 permit 392 ^65000:4_0:107_0:25$ ip community-list expanded c4 permit 393 ^65000:4_0:107_0:26$ ip community-list expanded c4 permit 394 ^65000:3_0:107_0:103$ ip community-list expanded c4 permit 395 ^65000:4_0:108_0:22$ ip community-list expanded c4 permit 396 ^65000:4_0:108_0:23$ ip community-list expanded c4 permit 397 ^65000:4_0:108_0:24$ ip community-list expanded c4 permit 398 ^65000:4_0:108_0:25$ ip community-list expanded c4 permit 399 ^65000:4_0:108_0:26$ ip community-list expanded c4 permit 400 ^65000:4_0:108_0:27$ ip community-list expanded c4 permit 401 ^65000:3_0:108_0:104$ ip community-list expanded c4 permit 402 ^65000:4_0:109_0:22$ ip community-list expanded c4 permit 403 ^65000:4_0:109_0:23$ ip community-list expanded c4 permit 404 ^65000:4_0:109_0:24$ ip community-list expanded c4 permit 405 ^65000:4_0:109_0:25$ ip community-list expanded c4 permit 406 ^65000:4_0:109_0:26$ ip community-list expanded c4 permit 407 ^65000:4_0:109_0:27$ ip community-list expanded c4 permit 408 ^65000:3_0:109_0:105$ ip community-list expanded c4 permit 409 ^65000:4_0:110_0:23$ ip community-list expanded c4 permit 410 ^65000:4_0:110_0:24$ ip community-list expanded c4 permit 411 ^65000:4_0:110_0:25$ ip community-list expanded c4 permit 412 ^65000:4_0:110_0:26$ ip community-list expanded c4 permit 413 ^65000:4_0:110_0:27$ ip community-list expanded c4 permit 414 ^65000:3_0:110_0:106$ ip community-list expanded c4 permit 415 ^65000:4_0:111_0:23$ ip community-list expanded c4 permit 416 ^65000:4_0:111_0:24$ ip community-list expanded c4 permit 417 ^65000:4_0:111_0:25$ ip community-list expanded c4 permit 418 ^65000:4_0:111_0:26$ ip community-list expanded c4 permit 419 ^65000:4_0:111_0:27$ ip community-list expanded c4 permit 420 ^65000:3_0:111_0:107$ ip community-list expanded c4 permit 421 ^65000:4_0:112_0:23$ ip community-list expanded c4 permit 422 ^65000:4_0:112_0:24$ ip community-list expanded c4 permit 423 ^65000:4_0:112_0:25$ ip community-list expanded c4 permit 424 ^65000:4_0:112_0:26$ ip community-list expanded c4 permit 425 ^65000:4_0:112_0:27$ ip community-list expanded c4 permit 426 ^65000:4_0:112_0:28$ ip community-list expanded c4 permit 427 ^65000:3_0:112_0:108$ ip community-list expanded c4 permit 428 ^65000:4_0:113_0:23$ ip community-list expanded c4 permit 429 ^65000:4_0:113_0:24$ ip community-list expanded c4 permit 430 ^65000:4_0:113_0:25$ ip community-list expanded c4 permit 431 ^65000:4_0:113_0:26$ ip community-list expanded c4 permit 432 ^65000:4_0:113_0:27$ ip community-list expanded c4 permit 433 ^65000:4_0:113_0:28$ ip community-list expanded c4 permit 434 ^65000:3_0:113_0:109$ ip community-list expanded c4 permit 435 ^65000:4_0:114_0:23$ ip community-list expanded c4 permit 436 ^65000:4_0:114_0:24$ ip community-list expanded c4 permit 437 ^65000:4_0:114_0:25$ ip community-list expanded c4 permit 438 ^65000:4_0:114_0:26$ ip community-list expanded c4 permit 439 ^65000:4_0:114_0:27$ ip community-list expanded c4 permit 440 ^65000:4_0:114_0:28$ ip community-list expanded c4 permit 441 ^65000:3_0:114_0:110$ ip community-list expanded c4 permit 442 ^65000:4_0:115_0:24$ ip community-list expanded c4 permit 443 ^65000:4_0:115_0:25$ ip community-list expanded c4 permit 444 ^65000:4_0:115_0:26$ ip community-list expanded c4 permit 445 ^65000:4_0:115_0:27$ ip community-list expanded c4 permit 446 ^65000:4_0:115_0:28$ ip community-list expanded c4 permit 447 ^65000:3_0:115_0:111$ ip community-list expanded c4 permit 448 ^65000:4_0:116_0:24$ ip community-list expanded c4 permit 449 ^65000:4_0:116_0:25$ ip community-list expanded c4 permit 450 ^65000:4_0:116_0:26$ ip community-list expanded c4 permit 451 ^65000:4_0:116_0:27$ ip community-list expanded c4 permit 452 ^65000:4_0:116_0:28$ ip community-list expanded c4 permit 453 ^65000:4_0:116_0:29$ ip community-list expanded c4 permit 454 ^65000:3_0:116_0:112$ ip community-list expanded c4 permit 455 ^65000:4_0:117_0:24$ ip community-list expanded c4 permit 456 ^65000:4_0:117_0:25$ ip community-list expanded c4 permit 457 ^65000:4_0:117_0:26$ ip community-list expanded c4 permit 458 ^65000:4_0:117_0:27$ ip community-list expanded c4 permit 459 ^65000:4_0:117_0:28$ ip community-list expanded c4 permit 460 ^65000:4_0:117_0:29$ ip community-list expanded c4 permit 461 ^65000:3_0:117_0:113$ ip community-list expanded c4 permit 462 ^65000:4_0:118_0:24$ ip community-list expanded c4 permit 463 ^65000:4_0:118_0:25$ ip community-list expanded c4 permit 464 ^65000:4_0:118_0:26$ ip community-list expanded c4 permit 465 ^65000:4_0:118_0:27$ ip community-list expanded c4 permit 466 ^65000:4_0:118_0:28$ ip community-list expanded c4 permit 467 ^65000:4_0:118_0:29$ ip community-list expanded c4 permit 468 ^65000:3_0:118_0:114$ ip community-list expanded c4 permit 469 ^65000:4_0:119_0:24$ ip community-list expanded c4 permit 470 ^65000:4_0:119_0:25$ ip community-list expanded c4 permit 471 ^65000:4_0:119_0:26$ ip community-list expanded c4 permit 472 ^65000:4_0:119_0:27$ ip community-list expanded c4 permit 473 ^65000:4_0:119_0:28$ ip community-list expanded c4 permit 474 ^65000:4_0:119_0:29$ ip community-list expanded c4 permit 475 ^65000:3_0:119_0:115$ ip community-list expanded c4 permit 476 ^65000:4_0:120_0:25$ ip community-list expanded c4 permit 477 ^65000:4_0:120_0:26$ ip community-list expanded c4 permit 478 ^65000:4_0:120_0:27$ ip community-list expanded c4 permit 479 ^65000:4_0:120_0:28$ ip community-list expanded c4 permit 480 ^65000:4_0:120_0:29$ ip community-list expanded c4 permit 481 ^65000:4_0:120_0:30$ ip community-list expanded c4 permit 482 ^65000:3_0:120_0:116$ ip community-list expanded c4 permit 483 ^65000:4_0:121_0:25$ ip community-list expanded c4 permit 484 ^65000:4_0:121_0:26$ ip community-list expanded c4 permit 485 ^65000:4_0:121_0:27$ ip community-list expanded c4 permit 486 ^65000:4_0:121_0:28$ ip community-list expanded c4 permit 487 ^65000:4_0:121_0:29$ ip community-list expanded c4 permit 488 ^65000:4_0:121_0:30$ ip community-list expanded c4 permit 489 ^65000:3_0:121_0:117$ ip community-list expanded c4 permit 490 ^65000:4_0:122_0:25$ ip community-list expanded c4 permit 491 ^65000:4_0:122_0:26$ ip community-list expanded c4 permit 492 ^65000:4_0:122_0:27$ ip community-list expanded c4 permit 493 ^65000:4_0:122_0:28$ ip community-list expanded c4 permit 494 ^65000:4_0:122_0:29$ ip community-list expanded c4 permit 495 ^65000:4_0:122_0:30$ ip community-list expanded c4 permit 496 ^65000:3_0:122_0:118$ ip community-list expanded c4 permit 497 ^65000:4_0:123_0:25$ ip community-list expanded c4 permit 498 ^65000:4_0:123_0:26$ ip community-list expanded c4 permit 499 ^65000:4_0:123_0:27$ ip community-list expanded c4 permit 500 ^65000:4_0:123_0:28$ ip community-list expanded c4 permit 501 ^65000:4_0:123_0:29$ ip community-list expanded c4 permit 502 ^65000:4_0:123_0:30$ ip community-list expanded c4 permit 503 ^65000:3_0:123_0:119$ ip community-list expanded c4 permit 504 ^65000:4_0:124_0:25$ ip community-list expanded c4 permit 505 ^65000:4_0:124_0:26$ ip community-list expanded c4 permit 506 ^65000:4_0:124_0:27$ ip community-list expanded c4 permit 507 ^65000:4_0:124_0:28$ ip community-list expanded c4 permit 508 ^65000:4_0:124_0:29$ ip community-list expanded c4 permit 509 ^65000:4_0:124_0:30$ ip community-list expanded c4 permit 510 ^65000:4_0:124_0:31$ ip community-list expanded c4 permit 511 ^65000:3_0:124_0:120$ ip community-list expanded c4 permit 512 ^65000:4_0:125_0:26$ ip community-list expanded c4 permit 513 ^65000:4_0:125_0:27$ ip community-list expanded c4 permit 514 ^65000:4_0:125_0:28$ ip community-list expanded c4 permit 515 ^65000:4_0:125_0:29$ ip community-list expanded c4 permit 516 ^65000:4_0:125_0:30$ ip community-list expanded c4 permit 517 ^65000:4_0:125_0:31$ ip community-list expanded c4 permit 518 ^65000:3_0:125_0:121$ ip community-list expanded c4 permit 519 ^65000:4_0:126_0:26$ ip community-list expanded c4 permit 520 ^65000:4_0:126_0:27$ ip community-list expanded c4 permit 521 ^65000:4_0:126_0:28$ ip community-list expanded c4 permit 522 ^65000:4_0:126_0:29$ ip community-list expanded c4 permit 523 ^65000:4_0:126_0:30$ ip community-list expanded c4 permit 524 ^65000:4_0:126_0:31$ ip community-list expanded c4 permit 525 ^65000:3_0:126_0:122$ ip community-list expanded c4 permit 526 ^65000:4_0:127_0:26$ ip community-list expanded c4 permit 527 ^65000:4_0:127_0:27$ ip community-list expanded c4 permit 528 ^65000:4_0:127_0:28$ ip community-list expanded c4 permit 529 ^65000:4_0:127_0:29$ ip community-list expanded c4 permit 530 ^65000:4_0:127_0:30$ ip community-list expanded c4 permit 531 ^65000:4_0:127_0:31$ ip community-list expanded c4 permit 532 ^65000:3_0:127_0:123$ ip community-list expanded c4 permit 533 ^65000:4_0:128_0:26$ ip community-list expanded c4 permit 534 ^65000:4_0:128_0:27$ ip community-list expanded c4 permit 535 ^65000:4_0:128_0:28$ ip community-list expanded c4 permit 536 ^65000:4_0:128_0:29$ ip community-list expanded c4 permit 537 ^65000:4_0:128_0:30$ ip community-list expanded c4 permit 538 ^65000:4_0:128_0:31$ ip community-list expanded c4 permit 539 ^65000:4_0:128_0:32$ ip community-list expanded c4 permit 540 ^65000:3_0:128_0:124$ ip community-list expanded c4 permit 541 ^65000:4_0:129_0:26$ ip community-list expanded c4 permit 542 ^65000:4_0:129_0:27$ ip community-list expanded c4 permit 543 ^65000:4_0:129_0:28$ ip community-list expanded c4 permit 544 ^65000:4_0:129_0:29$ ip community-list expanded c4 permit 545 ^65000:4_0:129_0:30$ ip community-list expanded c4 permit 546 ^65000:4_0:129_0:31$ ip community-list expanded c4 permit 547 ^65000:4_0:129_0:32$ ip community-list expanded c4 permit 548 ^65000:3_0:129_0:125$ ip community-list expanded c4 permit 549 ^65000:4_0:130_0:27$ ip community-list expanded c4 permit 550 ^65000:4_0:130_0:28$ ip community-list expanded c4 permit 551 ^65000:4_0:130_0:29$ ip community-list expanded c4 permit 552 ^65000:4_0:130_0:30$ ip community-list expanded c4 permit 553 ^65000:4_0:130_0:31$ ip community-list expanded c4 permit 554 ^65000:4_0:130_0:32$ ip community-list expanded c4 permit 555 ^65000:3_0:130_0:126$ ip community-list expanded c4 permit 556 ^65000:4_0:131_0:27$ ip community-list expanded c4 permit 557 ^65000:4_0:131_0:28$ ip community-list expanded c4 permit 558 ^65000:4_0:131_0:29$ ip community-list expanded c4 permit 559 ^65000:4_0:131_0:30$ ip community-list expanded c4 permit 560 ^65000:4_0:131_0:31$ ip community-list expanded c4 permit 561 ^65000:4_0:131_0:32$ ip community-list expanded c4 permit 562 ^65000:3_0:131_0:127$ ip community-list expanded c4 permit 563 ^65000:4_0:132_0:27$ ip community-list expanded c4 permit 564 ^65000:4_0:132_0:28$ ip community-list expanded c4 permit 565 ^65000:4_0:132_0:29$ ip community-list expanded c4 permit 566 ^65000:4_0:132_0:30$ ip community-list expanded c4 permit 567 ^65000:4_0:132_0:31$ ip community-list expanded c4 permit 568 ^65000:4_0:132_0:32$ ip community-list expanded c4 permit 569 ^65000:4_0:132_0:33$ ip community-list expanded c4 permit 570 ^65000:3_0:132_0:128$ ip community-list expanded c4 permit 571 ^65000:4_0:133_0:27$ ip community-list expanded c4 permit 572 ^65000:4_0:133_0:28$ ip community-list expanded c4 permit 573 ^65000:4_0:133_0:29$ ip community-list expanded c4 permit 574 ^65000:4_0:133_0:30$ ip community-list expanded c4 permit 575 ^65000:4_0:133_0:31$ ip community-list expanded c4 permit 576 ^65000:4_0:133_0:32$ ip community-list expanded c4 permit 577 ^65000:4_0:133_0:33$ ip community-list expanded c4 permit 578 ^65000:3_0:133_0:129$ ip community-list expanded c4 permit 579 ^65000:4_0:134_0:27$ ip community-list expanded c4 permit 580 ^65000:4_0:134_0:28$ ip community-list expanded c4 permit 581 ^65000:4_0:134_0:29$ ip community-list expanded c4 permit 582 ^65000:4_0:134_0:30$ ip community-list expanded c4 permit 583 ^65000:4_0:134_0:31$ ip community-list expanded c4 permit 584 ^65000:4_0:134_0:32$ ip community-list expanded c4 permit 585 ^65000:4_0:134_0:33$ ip community-list expanded c4 permit 586 ^65000:3_0:134_0:130$ ip community-list expanded c4 permit 587 ^65000:4_0:135_0:28$ ip community-list expanded c4 permit 588 ^65000:4_0:135_0:29$ ip community-list expanded c4 permit 589 ^65000:4_0:135_0:30$ ip community-list expanded c4 permit 590 ^65000:4_0:135_0:31$ ip community-list expanded c4 permit 591 ^65000:4_0:135_0:32$ ip community-list expanded c4 permit 592 ^65000:4_0:135_0:33$ ip community-list expanded c4 permit 593 ^65000:3_0:135_0:131$ ip community-list expanded c4 permit 594 ^65000:4_0:136_0:28$ ip community-list expanded c4 permit 595 ^65000:4_0:136_0:29$ ip community-list expanded c4 permit 596 ^65000:4_0:136_0:30$ ip community-list expanded c4 permit 597 ^65000:4_0:136_0:31$ ip community-list expanded c4 permit 598 ^65000:4_0:136_0:32$ ip community-list expanded c4 permit 599 ^65000:4_0:136_0:33$ ip community-list expanded c4 permit 600 ^65000:4_0:136_0:34$ ip community-list expanded c4 permit 601 ^65000:3_0:136_0:132$ ip community-list expanded c4 permit 602 ^65000:4_0:137_0:28$ ip community-list expanded c4 permit 603 ^65000:4_0:137_0:29$ ip community-list expanded c4 permit 604 ^65000:4_0:137_0:30$ ip community-list expanded c4 permit 605 ^65000:4_0:137_0:31$ ip community-list expanded c4 permit 606 ^65000:4_0:137_0:32$ ip community-list expanded c4 permit 607 ^65000:4_0:137_0:33$ ip community-list expanded c4 permit 608 ^65000:4_0:137_0:34$ ip community-list expanded c4 permit 609 ^65000:3_0:137_0:133$ ip community-list expanded c4 permit 610 ^65000:4_0:138_0:28$ ip community-list expanded c4 permit 611 ^65000:4_0:138_0:29$ ip community-list expanded c4 permit 612 ^65000:4_0:138_0:30$ ip community-list expanded c4 permit 613 ^65000:4_0:138_0:31$ ip community-list expanded c4 permit 614 ^65000:4_0:138_0:32$ ip community-list expanded c4 permit 615 ^65000:4_0:138_0:33$ ip community-list expanded c4 permit 616 ^65000:4_0:138_0:34$ ip community-list expanded c4 permit 617 ^65000:3_0:138_0:134$ ip community-list expanded c4 permit 618 ^65000:4_0:139_0:28$ ip community-list expanded c4 permit 619 ^65000:4_0:139_0:29$ ip community-list expanded c4 permit 620 ^65000:4_0:139_0:30$ ip community-list expanded c4 permit 621 ^65000:4_0:139_0:31$ ip community-list expanded c4 permit 622 ^65000:4_0:139_0:32$ ip community-list expanded c4 permit 623 ^65000:4_0:139_0:33$ ip community-list expanded c4 permit 624 ^65000:4_0:139_0:34$ ip community-list expanded c4 permit 625 ^65000:3_0:139_0:135$ ip community-list expanded c4 permit 626 ^65000:4_0:140_0:29$ ip community-list expanded c4 permit 627 ^65000:4_0:140_0:30$ ip community-list expanded c4 permit 628 ^65000:4_0:140_0:31$ ip community-list expanded c4 permit 629 ^65000:4_0:140_0:32$ ip community-list expanded c4 permit 630 ^65000:4_0:140_0:33$ ip community-list expanded c4 permit 631 ^65000:4_0:140_0:34$ ip community-list expanded c4 permit 632 ^65000:4_0:140_0:35$ ip community-list expanded c4 permit 633 ^65000:3_0:140_0:136$ ip community-list expanded c4 permit 634 ^65000:4_0:141_0:29$ ip community-list expanded c4 permit 635 ^65000:4_0:141_0:30$ ip community-list expanded c4 permit 636 ^65000:4_0:141_0:31$ ip community-list expanded c4 permit 637 ^65000:4_0:141_0:32$ ip community-list expanded c4 permit 638 ^65000:4_0:141_0:33$ ip community-list expanded c4 permit 639 ^65000:4_0:141_0:34$ ip community-list expanded c4 permit 640 ^65000:4_0:141_0:35$ ip community-list expanded c4 permit 641 ^65000:3_0:141_0:137$ ip community-list expanded c4 permit 642 ^65000:4_0:142_0:29$ ip community-list expanded c4 permit 643 ^65000:4_0:142_0:30$ ip community-list expanded c4 permit 644 ^65000:4_0:142_0:31$ ip community-list expanded c4 permit 645 ^65000:4_0:142_0:32$ ip community-list expanded c4 permit 646 ^65000:4_0:142_0:33$ ip community-list expanded c4 permit 647 ^65000:4_0:142_0:34$ ip community-list expanded c4 permit 648 ^65000:4_0:142_0:35$ ip community-list expanded c4 permit 649 ^65000:3_0:142_0:138$ ip community-list expanded c4 permit 650 ^65000:4_0:143_0:29$ ip community-list expanded c4 permit 651 ^65000:4_0:143_0:30$ ip community-list expanded c4 permit 652 ^65000:4_0:143_0:31$ ip community-list expanded c4 permit 653 ^65000:4_0:143_0:32$ ip community-list expanded c4 permit 654 ^65000:4_0:143_0:33$ ip community-list expanded c4 permit 655 ^65000:4_0:143_0:34$ ip community-list expanded c4 permit 656 ^65000:4_0:143_0:35$ ip community-list expanded c4 permit 657 ^65000:3_0:143_0:139$ ip community-list expanded c4 permit 658 ^65000:4_0:144_0:29$ ip community-list expanded c4 permit 659 ^65000:4_0:144_0:30$ ip community-list expanded c4 permit 660 ^65000:4_0:144_0:31$ ip community-list expanded c4 permit 661 ^65000:4_0:144_0:32$ ip community-list expanded c4 permit 662 ^65000:4_0:144_0:33$ ip community-list expanded c4 permit 663 ^65000:4_0:144_0:34$ ip community-list expanded c4 permit 664 ^65000:4_0:144_0:35$ ip community-list expanded c4 permit 665 ^65000:4_0:144_0:36$ ip community-list expanded c4 permit 666 ^65000:3_0:144_0:140$ ip community-list expanded c4 permit 667 ^65000:4_0:145_0:30$ ip community-list expanded c4 permit 668 ^65000:4_0:145_0:31$ ip community-list expanded c4 permit 669 ^65000:4_0:145_0:32$ ip community-list expanded c4 permit 670 ^65000:4_0:145_0:33$ ip community-list expanded c4 permit 671 ^65000:4_0:145_0:34$ ip community-list expanded c4 permit 672 ^65000:4_0:145_0:35$ ip community-list expanded c4 permit 673 ^65000:4_0:145_0:36$ ip community-list expanded c4 permit 674 ^65000:3_0:145_0:141$ ip community-list expanded c4 permit 675 ^65000:4_0:146_0:30$ ip community-list expanded c4 permit 676 ^65000:4_0:146_0:31$ ip community-list expanded c4 permit 677 ^65000:4_0:146_0:32$ ip community-list expanded c4 permit 678 ^65000:4_0:146_0:33$ ip community-list expanded c4 permit 679 ^65000:4_0:146_0:34$ ip community-list expanded c4 permit 680 ^65000:4_0:146_0:35$ ip community-list expanded c4 permit 681 ^65000:4_0:146_0:36$ ip community-list expanded c4 permit 682 ^65000:3_0:146_0:142$ ip community-list expanded c4 permit 683 ^65000:4_0:147_0:30$ ip community-list expanded c4 permit 684 ^65000:4_0:147_0:31$ ip community-list expanded c4 permit 685 ^65000:4_0:147_0:32$ ip community-list expanded c4 permit 686 ^65000:4_0:147_0:33$ ip community-list expanded c4 permit 687 ^65000:4_0:147_0:34$ ip community-list expanded c4 permit 688 ^65000:4_0:147_0:35$ ip community-list expanded c4 permit 689 ^65000:4_0:147_0:36$ ip community-list expanded c4 permit 690 ^65000:3_0:147_0:143$ ip community-list expanded c4 permit 691 ^65000:4_0:148_0:30$ ip community-list expanded c4 permit 692 ^65000:4_0:148_0:31$ ip community-list expanded c4 permit 693 ^65000:4_0:148_0:32$ ip community-list expanded c4 permit 694 ^65000:4_0:148_0:33$ ip community-list expanded c4 permit 695 ^65000:4_0:148_0:34$ ip community-list expanded c4 permit 696 ^65000:4_0:148_0:35$ ip community-list expanded c4 permit 697 ^65000:4_0:148_0:36$ ip community-list expanded c4 permit 698 ^65000:4_0:148_0:37$ ip community-list expanded c4 permit 699 ^65000:3_0:148_0:144$ ip community-list expanded c4 permit 700 ^65000:4_0:149_0:30$ ip community-list expanded c4 permit 701 ^65000:4_0:149_0:31$ ip community-list expanded c4 permit 702 ^65000:4_0:149_0:32$ ip community-list expanded c4 permit 703 ^65000:4_0:149_0:33$ ip community-list expanded c4 permit 704 ^65000:4_0:149_0:34$ ip community-list expanded c4 permit 705 ^65000:4_0:149_0:35$ ip community-list expanded c4 permit 706 ^65000:4_0:149_0:36$ ip community-list expanded c4 permit 707 ^65000:4_0:149_0:37$ ip community-list expanded c4 permit 708 ^65000:3_0:149_0:145$ ip community-list expanded c4 permit 709 ^65000:4_0:150_0:31$ ip community-list expanded c4 permit 710 ^65000:4_0:150_0:32$ ip community-list expanded c4 permit 711 ^65000:4_0:150_0:33$ ip community-list expanded c4 permit 712 ^65000:4_0:150_0:34$ ip community-list expanded c4 permit 713 ^65000:4_0:150_0:35$ ip community-list expanded c4 permit 714 ^65000:4_0:150_0:36$ ip community-list expanded c4 permit 715 ^65000:4_0:150_0:37$ ip community-list expanded c4 permit 716 ^65000:3_0:150_0:146$ ip community-list expanded c4 permit 717 ^65000:4_0:151_0:31$ ip community-list expanded c4 permit 718 ^65000:4_0:151_0:32$ ip community-list expanded c4 permit 719 ^65000:4_0:151_0:33$ ip community-list expanded c4 permit 720 ^65000:4_0:151_0:34$ ip community-list expanded c4 permit 721 ^65000:4_0:151_0:35$ ip community-list expanded c4 permit 722 ^65000:4_0:151_0:36$ ip community-list expanded c4 permit 723 ^65000:4_0:151_0:37$ ip community-list expanded c4 permit 724 ^65000:3_0:151_0:147$ ip community-list expanded c4 permit 725 ^65000:4_0:152_0:31$ ip community-list expanded c4 permit 726 ^65000:4_0:152_0:32$ ip community-list expanded c4 permit 727 ^65000:4_0:152_0:33$ ip community-list expanded c4 permit 728 ^65000:4_0:152_0:34$ ip community-list expanded c4 permit 729 ^65000:4_0:152_0:35$ ip community-list expanded c4 permit 730 ^65000:4_0:152_0:36$ ip community-list expanded c4 permit 731 ^65000:4_0:152_0:37$ ip community-list expanded c4 permit 732 ^65000:4_0:152_0:38$ ip community-list expanded c4 permit 733 ^65000:3_0:152_0:148$ ip community-list expanded c4 permit 734 ^65000:4_0:153_0:31$ ip community-list expanded c4 permit 735 ^65000:4_0:153_0:32$ ip community-list expanded c4 permit 736 ^65000:4_0:153_0:33$ ip community-list expanded c4 permit 737 ^65000:4_0:153_0:34$ ip community-list expanded c4 permit 738 ^65000:4_0:153_0:35$ ip community-list expanded c4 permit 739 ^65000:4_0:153_0:36$ ip community-list expanded c4 permit 740 ^65000:4_0:153_0:37$ ip community-list expanded c4 permit 741 ^65000:4_0:153_0:38$ ip community-list expanded c4 permit 742 ^65000:3_0:153_0:149$ ip community-list expanded c4 permit 743 ^65000:4_0:154_0:31$ ip community-list expanded c4 permit 744 ^65000:4_0:154_0:32$ ip community-list expanded c4 permit 745 ^65000:4_0:154_0:33$ ip community-list expanded c4 permit 746 ^65000:4_0:154_0:34$ ip community-list expanded c4 permit 747 ^65000:4_0:154_0:35$ ip community-list expanded c4 permit 748 ^65000:4_0:154_0:36$ ip community-list expanded c4 permit 749 ^65000:4_0:154_0:37$ ip community-list expanded c4 permit 750 ^65000:4_0:154_0:38$ ip community-list expanded c4 permit 751 ^65000:3_0:154_0:150$ ip community-list expanded c4 permit 752 ^65000:4_0:155_0:32$ ip community-list expanded c4 permit 753 ^65000:4_0:155_0:33$ ip community-list expanded c4 permit 754 ^65000:4_0:155_0:34$ ip community-list expanded c4 permit 755 ^65000:4_0:155_0:35$ ip community-list expanded c4 permit 756 ^65000:4_0:155_0:36$ ip community-list expanded c4 permit 757 ^65000:4_0:155_0:37$ ip community-list expanded c4 permit 758 ^65000:4_0:155_0:38$ ip community-list expanded c4 permit 759 ^65000:3_0:155_0:151$ ip community-list expanded c4 permit 760 ^65000:4_0:156_0:32$ ip community-list expanded c4 permit 761 ^65000:4_0:156_0:33$ ip community-list expanded c4 permit 762 ^65000:4_0:156_0:34$ ip community-list expanded c4 permit 763 ^65000:4_0:156_0:35$ ip community-list expanded c4 permit 764 ^65000:4_0:156_0:36$ ip community-list expanded c4 permit 765 ^65000:4_0:156_0:37$ ip community-list expanded c4 permit 766 ^65000:4_0:156_0:38$ ip community-list expanded c4 permit 767 ^65000:4_0:156_0:39$ ip community-list expanded c4 permit 768 ^65000:3_0:156_0:152$ ip community-list expanded c4 permit 769 ^65000:4_0:157_0:32$ ip community-list expanded c4 permit 770 ^65000:4_0:157_0:33$ ip community-list expanded c4 permit 771 ^65000:4_0:157_0:34$ ip community-list expanded c4 permit 772 ^65000:4_0:157_0:35$ ip community-list expanded c4 permit 773 ^65000:4_0:157_0:36$ ip community-list expanded c4 permit 774 ^65000:4_0:157_0:37$ ip community-list expanded c4 permit 775 ^65000:4_0:157_0:38$ ip community-list expanded c4 permit 776 ^65000:4_0:157_0:39$ ip community-list expanded c4 permit 777 ^65000:3_0:157_0:153$ ip community-list expanded c4 permit 778 ^65000:4_0:158_0:32$ ip community-list expanded c4 permit 779 ^65000:4_0:158_0:33$ ip community-list expanded c4 permit 780 ^65000:4_0:158_0:34$ ip community-list expanded c4 permit 781 ^65000:4_0:158_0:35$ ip community-list expanded c4 permit 782 ^65000:4_0:158_0:36$ ip community-list expanded c4 permit 783 ^65000:4_0:158_0:37$ ip community-list expanded c4 permit 784 ^65000:4_0:158_0:38$ ip community-list expanded c4 permit 785 ^65000:4_0:158_0:39$ ip community-list expanded c4 permit 786 ^65000:3_0:158_0:154$ ip community-list expanded c4 permit 787 ^65000:4_0:159_0:32$ ip community-list expanded c4 permit 788 ^65000:4_0:159_0:33$ ip community-list expanded c4 permit 789 ^65000:4_0:159_0:34$ ip community-list expanded c4 permit 790 ^65000:4_0:159_0:35$ ip community-list expanded c4 permit 791 ^65000:4_0:159_0:36$ ip community-list expanded c4 permit 792 ^65000:4_0:159_0:37$ ip community-list expanded c4 permit 793 ^65000:4_0:159_0:38$ ip community-list expanded c4 permit 794 ^65000:4_0:159_0:39$ ip community-list expanded c4 permit 795 ^65000:3_0:159_0:155$ ip community-list expanded c4 permit 796 ^65000:4_0:160_0:33$ ip community-list expanded c4 permit 797 ^65000:4_0:160_0:34$ ip community-list expanded c4 permit 798 ^65000:4_0:160_0:35$ ip community-list expanded c4 permit 799 ^65000:4_0:160_0:36$ ip community-list expanded c4 permit 800 ^65000:4_0:160_0:37$ ip community-list expanded c4 permit 801 ^65000:4_0:160_0:38$ ip community-list expanded c4 permit 802 ^65000:4_0:160_0:39$ ip community-list expanded c4 permit 803 ^65000:4_0:160_0:40$ ip community-list expanded c4 permit 804 ^65000:3_0:160_0:156$ ip community-list expanded c4 permit 805 ^65000:4_0:161_0:33$ ip community-list expanded c4 permit 806 ^65000:4_0:161_0:34$ ip community-list expanded c4 permit 807 ^65000:4_0:161_0:35$ ip community-list expanded c4 permit 808 ^65000:4_0:161_0:36$ ip community-list expanded c4 permit 809 ^65000:4_0:161_0:37$ ip community-list expanded c4 permit 810 ^65000:4_0:161_0:38$ ip community-list expanded c4 permit 811 ^65000:4_0:161_0:39$ ip community-list expanded c4 permit 812 ^65000:4_0:161_0:40$ ip community-list expanded c4 permit 813 ^65000:3_0:161_0:157$ ip community-list expanded c4 permit 814 ^65000:4_0:162_0:33$ ip community-list expanded c4 permit 815 ^65000:4_0:162_0:34$ ip community-list expanded c4 permit 816 ^65000:4_0:162_0:35$ ip community-list expanded c4 permit 817 ^65000:4_0:162_0:36$ ip community-list expanded c4 permit 818 ^65000:4_0:162_0:37$ ip community-list expanded c4 permit 819 ^65000:4_0:162_0:38$ ip community-list expanded c4 permit 820 ^65000:4_0:162_0:39$ ip community-list expanded c4 permit 821 ^65000:4_0:162_0:40$ ip community-list expanded c4 permit 822 ^65000:3_0:162_0:158$ ip community-list expanded c4 permit 823 ^65000:4_0:163_0:33$ ip community-list expanded c4 permit 824 ^65000:4_0:163_0:34$ ip community-list expanded c4 permit 825 ^65000:4_0:163_0:35$ ip community-list expanded c4 permit 826 ^65000:4_0:163_0:36$ ip community-list expanded c4 permit 827 ^65000:4_0:163_0:37$ ip community-list expanded c4 permit 828 ^65000:4_0:163_0:38$ ip community-list expanded c4 permit 829 ^65000:4_0:163_0:39$ ip community-list expanded c4 permit 830 ^65000:4_0:163_0:40$ ip community-list expanded c4 permit 831 ^65000:3_0:163_0:159$ ip community-list expanded c4 permit 832 ^65000:4_0:164_0:33$ ip community-list expanded c4 permit 833 ^65000:4_0:164_0:34$ ip community-list expanded c4 permit 834 ^65000:4_0:164_0:35$ ip community-list expanded c4 permit 835 ^65000:4_0:164_0:36$ ip community-list expanded c4 permit 836 ^65000:4_0:164_0:37$ ip community-list expanded c4 permit 837 ^65000:4_0:164_0:38$ ip community-list expanded c4 permit 838 ^65000:4_0:164_0:39$ ip community-list expanded c4 permit 839 ^65000:4_0:164_0:40$ ip community-list expanded c4 permit 840 ^65000:4_0:164_0:41$ ip community-list expanded c4 permit 841 ^65000:3_0:164_0:160$ ip community-list expanded c4 permit 842 ^65000:4_0:165_0:34$ ip community-list expanded c4 permit 843 ^65000:4_0:165_0:35$ ip community-list expanded c4 permit 844 ^65000:4_0:165_0:36$ ip community-list expanded c4 permit 845 ^65000:4_0:165_0:37$ ip community-list expanded c4 permit 846 ^65000:4_0:165_0:38$ ip community-list expanded c4 permit 847 ^65000:4_0:165_0:39$ ip community-list expanded c4 permit 848 ^65000:4_0:165_0:40$ ip community-list expanded c4 permit 849 ^65000:4_0:165_0:41$ ip community-list expanded c4 permit 850 ^65000:3_0:165_0:161$ ip community-list expanded c4 permit 851 ^65000:4_0:166_0:34$ ip community-list expanded c4 permit 852 ^65000:4_0:166_0:35$ ip community-list expanded c4 permit 853 ^65000:4_0:166_0:36$ ip community-list expanded c4 permit 854 ^65000:4_0:166_0:37$ ip community-list expanded c4 permit 855 ^65000:4_0:166_0:38$ ip community-list expanded c4 permit 856 ^65000:4_0:166_0:39$ ip community-list expanded c4 permit 857 ^65000:4_0:166_0:40$ ip community-list expanded c4 permit 858 ^65000:4_0:166_0:41$ ip community-list expanded c4 permit 859 ^65000:3_0:166_0:162$ ip community-list expanded c4 permit 860 ^65000:4_0:167_0:34$ ip community-list expanded c4 permit 861 ^65000:4_0:167_0:35$ ip community-list expanded c4 permit 862 ^65000:4_0:167_0:36$ ip community-list expanded c4 permit 863 ^65000:4_0:167_0:37$ ip community-list expanded c4 permit 864 ^65000:4_0:167_0:38$ ip community-list expanded c4 permit 865 ^65000:4_0:167_0:39$ ip community-list expanded c4 permit 866 ^65000:4_0:167_0:40$ ip community-list expanded c4 permit 867 ^65000:4_0:167_0:41$ ip community-list expanded c4 permit 868 ^65000:3_0:167_0:163$ ip community-list expanded c4 permit 869 ^65000:4_0:168_0:34$ ip community-list expanded c4 permit 870 ^65000:4_0:168_0:35$ ip community-list expanded c4 permit 871 ^65000:4_0:168_0:36$ ip community-list expanded c4 permit 872 ^65000:4_0:168_0:37$ ip community-list expanded c4 permit 873 ^65000:4_0:168_0:38$ ip community-list expanded c4 permit 874 ^65000:4_0:168_0:39$ ip community-list expanded c4 permit 875 ^65000:4_0:168_0:40$ ip community-list expanded c4 permit 876 ^65000:4_0:168_0:41$ ip community-list expanded c4 permit 877 ^65000:4_0:168_0:42$ ip community-list expanded c4 permit 878 ^65000:3_0:168_0:164$ ip community-list expanded c4 permit 879 ^65000:4_0:169_0:34$ ip community-list expanded c4 permit 880 ^65000:4_0:169_0:35$ ip community-list expanded c4 permit 881 ^65000:4_0:169_0:36$ ip community-list expanded c4 permit 882 ^65000:4_0:169_0:37$ ip community-list expanded c4 permit 883 ^65000:4_0:169_0:38$ ip community-list expanded c4 permit 884 ^65000:4_0:169_0:39$ ip community-list expanded c4 permit 885 ^65000:4_0:169_0:40$ ip community-list expanded c4 permit 886 ^65000:4_0:169_0:41$ ip community-list expanded c4 permit 887 ^65000:4_0:169_0:42$ ip community-list expanded c4 permit 888 ^65000:3_0:169_0:165$ ip community-list expanded c4 permit 889 ^65000:4_0:170_0:35$ ip community-list expanded c4 permit 890 ^65000:4_0:170_0:36$ ip community-list expanded c4 permit 891 ^65000:4_0:170_0:37$ ip community-list expanded c4 permit 892 ^65000:4_0:170_0:38$ ip community-list expanded c4 permit 893 ^65000:4_0:170_0:39$ ip community-list expanded c4 permit 894 ^65000:4_0:170_0:40$ ip community-list expanded c4 permit 895 ^65000:4_0:170_0:41$ ip community-list expanded c4 permit 896 ^65000:4_0:170_0:42$ ip community-list expanded c4 permit 897 ^65000:3_0:170_0:166$ ip community-list expanded c4 permit 898 ^65000:4_0:171_0:35$ ip community-list expanded c4 permit 899 ^65000:4_0:171_0:36$ ip community-list expanded c4 permit 900 ^65000:4_0:171_0:37$ ip community-list expanded c4 permit 901 ^65000:4_0:171_0:38$ ip community-list expanded c4 permit 902 ^65000:4_0:171_0:39$ ip community-list expanded c4 permit 903 ^65000:4_0:171_0:40$ ip community-list expanded c4 permit 904 ^65000:4_0:171_0:41$ ip community-list expanded c4 permit 905 ^65000:4_0:171_0:42$ ip community-list expanded c4 permit 906 ^65000:3_0:171_0:167$ ip community-list expanded c4 permit 907 ^65000:4_0:172_0:35$ ip community-list expanded c4 permit 908 ^65000:4_0:172_0:36$ ip community-list expanded c4 permit 909 ^65000:4_0:172_0:37$ ip community-list expanded c4 permit 910 ^65000:4_0:172_0:38$ ip community-list expanded c4 permit 911 ^65000:4_0:172_0:39$ ip community-list expanded c4 permit 912 ^65000:4_0:172_0:40$ ip community-list expanded c4 permit 913 ^65000:4_0:172_0:41$ ip community-list expanded c4 permit 914 ^65000:4_0:172_0:42$ ip community-list expanded c4 permit 915 ^65000:4_0:172_0:43$ ip community-list expanded c4 permit 916 ^65000:3_0:172_0:168$ ip community-list expanded c4 permit 917 ^65000:4_0:173_0:35$ ip community-list expanded c4 permit 918 ^65000:4_0:173_0:36$ ip community-list expanded c4 permit 919 ^65000:4_0:173_0:37$ ip community-list expanded c4 permit 920 ^65000:4_0:173_0:38$ ip community-list expanded c4 permit 921 ^65000:4_0:173_0:39$ ip community-list expanded c4 permit 922 ^65000:4_0:173_0:40$ ip community-list expanded c4 permit 923 ^65000:4_0:173_0:41$ ip community-list expanded c4 permit 924 ^65000:4_0:173_0:42$ ip community-list expanded c4 permit 925 ^65000:4_0:173_0:43$ ip community-list expanded c4 permit 926 ^65000:3_0:173_0:169$ ip community-list expanded c4 permit 927 ^65000:4_0:174_0:35$ ip community-list expanded c4 permit 928 ^65000:4_0:174_0:36$ ip community-list expanded c4 permit 929 ^65000:4_0:174_0:37$ ip community-list expanded c4 permit 930 ^65000:4_0:174_0:38$ ip community-list expanded c4 permit 931 ^65000:4_0:174_0:39$ ip community-list expanded c4 permit 932 ^65000:4_0:174_0:40$ ip community-list expanded c4 permit 933 ^65000:4_0:174_0:41$ ip community-list expanded c4 permit 934 ^65000:4_0:174_0:42$ ip community-list expanded c4 permit 935 ^65000:4_0:174_0:43$ ip community-list expanded c4 permit 936 ^65000:3_0:174_0:170$ ip community-list expanded c4 permit 937 ^65000:4_0:175_0:36$ ip community-list expanded c4 permit 938 ^65000:4_0:175_0:37$ ip community-list expanded c4 permit 939 ^65000:4_0:175_0:38$ ip community-list expanded c4 permit 940 ^65000:4_0:175_0:39$ ip community-list expanded c4 permit 941 ^65000:4_0:175_0:40$ ip community-list expanded c4 permit 942 ^65000:4_0:175_0:41$ ip community-list expanded c4 permit 943 ^65000:4_0:175_0:42$ ip community-list expanded c4 permit 944 ^65000:4_0:175_0:43$ ip community-list expanded c4 permit 945 ^65000:3_0:175_0:171$ ip community-list expanded c4 permit 946 ^65000:4_0:176_0:36$ ip community-list expanded c4 permit 947 ^65000:4_0:176_0:37$ ip community-list expanded c4 permit 948 ^65000:4_0:176_0:38$ ip community-list expanded c4 permit 949 ^65000:4_0:176_0:39$ ip community-list expanded c4 permit 950 ^65000:4_0:176_0:40$ ip community-list expanded c4 permit 951 ^65000:4_0:176_0:41$ ip community-list expanded c4 permit 952 ^65000:4_0:176_0:42$ ip community-list expanded c4 permit 953 ^65000:4_0:176_0:43$ ip community-list expanded c4 permit 954 ^65000:4_0:176_0:44$ ip community-list expanded c4 permit 955 ^65000:3_0:176_0:172$ ip community-list expanded c4 permit 956 ^65000:4_0:177_0:36$ ip community-list expanded c4 permit 957 ^65000:4_0:177_0:37$ ip community-list expanded c4 permit 958 ^65000:4_0:177_0:38$ ip community-list expanded c4 permit 959 ^65000:4_0:177_0:39$ ip community-list expanded c4 permit 960 ^65000:4_0:177_0:40$ ip community-list expanded c4 permit 961 ^65000:4_0:177_0:41$ ip community-list expanded c4 permit 962 ^65000:4_0:177_0:42$ ip community-list expanded c4 permit 963 ^65000:4_0:177_0:43$ ip community-list expanded c4 permit 964 ^65000:4_0:177_0:44$ ip community-list expanded c4 permit 965 ^65000:3_0:177_0:173$ ip community-list expanded c4 permit 966 ^65000:4_0:178_0:36$ ip community-list expanded c4 permit 967 ^65000:4_0:178_0:37$ ip community-list expanded c4 permit 968 ^65000:4_0:178_0:38$ ip community-list expanded c4 permit 969 ^65000:4_0:178_0:39$ ip community-list expanded c4 permit 970 ^65000:4_0:178_0:40$ ip community-list expanded c4 permit 971 ^65000:4_0:178_0:41$ ip community-list expanded c4 permit 972 ^65000:4_0:178_0:42$ ip community-list expanded c4 permit 973 ^65000:4_0:178_0:43$ ip community-list expanded c4 permit 974 ^65000:4_0:178_0:44$ ip community-list expanded c4 permit 975 ^65000:3_0:178_0:174$ ip community-list expanded c4 permit 976 ^65000:4_0:179_0:36$ ip community-list expanded c4 permit 977 ^65000:4_0:179_0:37$ ip community-list expanded c4 permit 978 ^65000:4_0:179_0:38$ ip community-list expanded c4 permit 979 ^65000:4_0:179_0:39$ ip community-list expanded c4 permit 980 ^65000:4_0:179_0:40$ ip community-list expanded c4 permit 981 ^65000:4_0:179_0:41$ ip community-list expanded c4 permit 982 ^65000:4_0:179_0:42$ ip community-list expanded c4 permit 983 ^65000:4_0:179_0:43$ ip community-list expanded c4 permit 984 ^65000:4_0:179_0:44$ ip community-list expanded c4 permit 985 ^65000:3_0:179_0:175$ ip community-list expanded c4 permit 986 ^65000:4_0:180_0:37$ ip community-list expanded c4 permit 987 ^65000:4_0:180_0:38$ ip community-list expanded c4 permit 988 ^65000:4_0:180_0:39$ ip community-list expanded c4 permit 989 ^65000:4_0:180_0:40$ ip community-list expanded c4 permit 990 ^65000:4_0:180_0:41$ ip community-list expanded c4 permit 991 ^65000:4_0:180_0:42$ ip community-list expanded c4 permit 992 ^65000:4_0:180_0:43$ ip community-list expanded c4 permit 993 ^65000:4_0:180_0:44$ ip community-list expanded c4 permit 994 ^65000:4_0:180_0:45$ ip community-list expanded c4 permit 995 ^65000:3_0:180_0:176$ ip community-list expanded c4 permit 996 ^65000:4_0:181_0:37$ ip community-list expanded c4 permit 997 ^65000:4_0:181_0:38$ ip community-list expanded c4 permit 998 ^65000:4_0:181_0:39$ ip community-list expanded c4 permit 999 ^65000:4_0:181_0:40$ ip community-list expanded c4 permit 1000 ^65000:4_0:181_0:41$ ip community-list expanded c4 permit 1001 ^65000:4_0:181_0:42$ ip community-list expanded c4 permit 1002 ^65000:4_0:181_0:43$ ip community-list expanded c4 permit 1003 ^65000:4_0:181_0:44$ ip community-list expanded c4 permit 1004 ^65000:4_0:181_0:45$ ip community-list expanded c4 permit 1005 ^65000:3_0:181_0:177$ ip community-list expanded c4 permit 1006 ^65000:4_0:182_0:37$ ip community-list expanded c4 permit 1007 ^65000:4_0:182_0:38$ ip community-list expanded c4 permit 1008 ^65000:4_0:182_0:39$ ip community-list expanded c4 permit 1009 ^65000:4_0:182_0:40$ ip community-list expanded c4 permit 1010 ^65000:4_0:182_0:41$ ip community-list expanded c4 permit 1011 ^65000:4_0:182_0:42$ ip community-list expanded c4 permit 1012 ^65000:4_0:182_0:43$ ip community-list expanded c4 permit 1013 ^65000:4_0:182_0:44$ ip community-list expanded c4 permit 1014 ^65000:4_0:182_0:45$ ip community-list expanded c4 permit 1015 ^65000:3_0:182_0:178$ ip community-list expanded c4 permit 1016 ^65000:4_0:183_0:37$ ip community-list expanded c4 permit 1017 ^65000:4_0:183_0:38$ ip community-list expanded c4 permit 1018 ^65000:4_0:183_0:39$ ip community-list expanded c4 permit 1019 ^65000:4_0:183_0:40$ ip community-list expanded c4 permit 1020 ^65000:4_0:183_0:41$ ip community-list expanded c4 permit 1021 ^65000:4_0:183_0:42$ ip community-list expanded c4 permit 1022 ^65000:4_0:183_0:43$ ip community-list expanded c4 permit 1023 ^65000:4_0:183_0:44$ ip community-list expanded c4 permit 1024 ^65000:4_0:183_0:45$ ip community-list expanded c4 permit 1025 ^65000:3_0:183_0:179$ ip community-list expanded c4 permit 1026 ^65000:4_0:184_0:37$ ip community-list expanded c4 permit 1027 ^65000:4_0:184_0:38$ ip community-list expanded c4 permit 1028 ^65000:4_0:184_0:39$ ip community-list expanded c4 permit 1029 ^65000:4_0:184_0:40$ ip community-list expanded c4 permit 1030 ^65000:4_0:184_0:41$ ip community-list expanded c4 permit 1031 ^65000:4_0:184_0:42$ ip community-list expanded c4 permit 1032 ^65000:4_0:184_0:43$ ip community-list expanded c4 permit 1033 ^65000:4_0:184_0:44$ ip community-list expanded c4 permit 1034 ^65000:4_0:184_0:45$ ip community-list expanded c4 permit 1035 ^65000:4_0:184_0:46$ ip community-list expanded c4 permit 1036 ^65000:3_0:184_0:180$ ip community-list expanded c4 permit 1037 ^65000:4_0:185_0:38$ ip community-list expanded c4 permit 1038 ^65000:4_0:185_0:39$ ip community-list expanded c4 permit 1039 ^65000:4_0:185_0:40$ ip community-list expanded c4 permit 1040 ^65000:4_0:185_0:41$ ip community-list expanded c4 permit 1041 ^65000:4_0:185_0:42$ ip community-list expanded c4 permit 1042 ^65000:4_0:185_0:43$ ip community-list expanded c4 permit 1043 ^65000:4_0:185_0:44$ ip community-list expanded c4 permit 1044 ^65000:4_0:185_0:45$ ip community-list expanded c4 permit 1045 ^65000:4_0:185_0:46$ ip community-list expanded c4 permit 1046 ^65000:3_0:185_0:181$ ip community-list expanded c4 permit 1047 ^65000:4_0:186_0:38$ ip community-list expanded c4 permit 1048 ^65000:4_0:186_0:39$ ip community-list expanded c4 permit 1049 ^65000:4_0:186_0:40$ ip community-list expanded c4 permit 1050 ^65000:4_0:186_0:41$ ip community-list expanded c4 permit 1051 ^65000:4_0:186_0:42$ ip community-list expanded c4 permit 1052 ^65000:4_0:186_0:43$ ip community-list expanded c4 permit 1053 ^65000:4_0:186_0:44$ ip community-list expanded c4 permit 1054 ^65000:4_0:186_0:45$ ip community-list expanded c4 permit 1055 ^65000:4_0:186_0:46$ ip community-list expanded c4 permit 1056 ^65000:3_0:186_0:182$ ip community-list expanded c4 permit 1057 ^65000:4_0:187_0:38$ ip community-list expanded c4 permit 1058 ^65000:4_0:187_0:39$ ip community-list expanded c4 permit 1059 ^65000:4_0:187_0:40$ ip community-list expanded c4 permit 1060 ^65000:4_0:187_0:41$ ip community-list expanded c4 permit 1061 ^65000:4_0:187_0:42$ ip community-list expanded c4 permit 1062 ^65000:4_0:187_0:43$ ip community-list expanded c4 permit 1063 ^65000:4_0:187_0:44$ ip community-list expanded c4 permit 1064 ^65000:4_0:187_0:45$ ip community-list expanded c4 permit 1065 ^65000:4_0:187_0:46$ ip community-list expanded c4 permit 1066 ^65000:3_0:187_0:183$ ip community-list expanded c4 permit 1067 ^65000:4_0:188_0:38$ ip community-list expanded c4 permit 1068 ^65000:4_0:188_0:39$ ip community-list expanded c4 permit 1069 ^65000:4_0:188_0:40$ ip community-list expanded c4 permit 1070 ^65000:4_0:188_0:41$ ip community-list expanded c4 permit 1071 ^65000:4_0:188_0:42$ ip community-list expanded c4 permit 1072 ^65000:4_0:188_0:43$ ip community-list expanded c4 permit 1073 ^65000:4_0:188_0:44$ ip community-list expanded c4 permit 1074 ^65000:4_0:188_0:45$ ip community-list expanded c4 permit 1075 ^65000:4_0:188_0:46$ ip community-list expanded c4 permit 1076 ^65000:4_0:188_0:47$ ip community-list expanded c4 permit 1077 ^65000:3_0:188_0:184$ ip community-list expanded c4 permit 1078 ^65000:4_0:189_0:38$ ip community-list expanded c4 permit 1079 ^65000:4_0:189_0:39$ ip community-list expanded c4 permit 1080 ^65000:4_0:189_0:40$ ip community-list expanded c4 permit 1081 ^65000:4_0:189_0:41$ ip community-list expanded c4 permit 1082 ^65000:4_0:189_0:42$ ip community-list expanded c4 permit 1083 ^65000:4_0:189_0:43$ ip community-list expanded c4 permit 1084 ^65000:4_0:189_0:44$ ip community-list expanded c4 permit 1085 ^65000:4_0:189_0:45$ ip community-list expanded c4 permit 1086 ^65000:4_0:189_0:46$ ip community-list expanded c4 permit 1087 ^65000:4_0:189_0:47$ ip community-list expanded c4 permit 1088 ^65000:3_0:189_0:185$ ip community-list expanded c4 permit 1089 ^65000:4_0:190_0:39$ ip community-list expanded c4 permit 1090 ^65000:4_0:190_0:40$ ip community-list expanded c4 permit 1091 ^65000:4_0:190_0:41$ ip community-list expanded c4 permit 1092 ^65000:4_0:190_0:42$ ip community-list expanded c4 permit 1093 ^65000:4_0:190_0:43$ ip community-list expanded c4 permit 1094 ^65000:4_0:190_0:44$ ip community-list expanded c4 permit 1095 ^65000:4_0:190_0:45$ ip community-list expanded c4 permit 1096 ^65000:4_0:190_0:46$ ip community-list expanded c4 permit 1097 ^65000:4_0:190_0:47$ ip community-list expanded c4 permit 1098 ^65000:3_0:190_0:186$ ip community-list expanded c4 permit 1099 ^65000:4_0:191_0:39$ ip community-list expanded c4 permit 1100 ^65000:4_0:191_0:40$ ip community-list expanded c4 permit 1101 ^65000:4_0:191_0:41$ ip community-list expanded c4 permit 1102 ^65000:4_0:191_0:42$ ip community-list expanded c4 permit 1103 ^65000:4_0:191_0:43$ ip community-list expanded c4 permit 1104 ^65000:4_0:191_0:44$ ip community-list expanded c4 permit 1105 ^65000:4_0:191_0:45$ ip community-list expanded c4 permit 1106 ^65000:4_0:191_0:46$ ip community-list expanded c4 permit 1107 ^65000:4_0:191_0:47$ ip community-list expanded c4 permit 1108 ^65000:3_0:191_0:187$ ip community-list expanded c4 permit 1109 ^65000:4_0:192_0:39$ ip community-list expanded c4 permit 1110 ^65000:4_0:192_0:40$ ip community-list expanded c4 permit 1111 ^65000:4_0:192_0:41$ ip community-list expanded c4 permit 1112 ^65000:4_0:192_0:42$ ip community-list expanded c4 permit 1113 ^65000:4_0:192_0:43$ ip community-list expanded c4 permit 1114 ^65000:4_0:192_0:44$ ip community-list expanded c4 permit 1115 ^65000:4_0:192_0:45$ ip community-list expanded c4 permit 1116 ^65000:4_0:192_0:46$ ip community-list expanded c4 permit 1117 ^65000:4_0:192_0:47$ ip community-list expanded c4 permit 1118 ^65000:4_0:192_0:48$ ip community-list expanded c4 permit 1119 ^65000:3_0:192_0:188$ ip community-list expanded c4 permit 1120 ^65000:4_0:193_0:39$ ip community-list expanded c4 permit 1121 ^65000:4_0:193_0:40$ ip community-list expanded c4 permit 1122 ^65000:4_0:193_0:41$ ip community-list expanded c4 permit 1123 ^65000:4_0:193_0:42$ ip community-list expanded c4 permit 1124 ^65000:4_0:193_0:43$ ip community-list expanded c4 permit 1125 ^65000:4_0:193_0:44$ ip community-list expanded c4 permit 1126 ^65000:4_0:193_0:45$ ip community-list expanded c4 permit 1127 ^65000:4_0:193_0:46$ ip community-list expanded c4 permit 1128 ^65000:4_0:193_0:47$ ip community-list expanded c4 permit 1129 ^65000:4_0:193_0:48$ ip community-list expanded c4 permit 1130 ^65000:3_0:193_0:189$ ip community-list expanded c4 permit 1131 ^65000:4_0:194_0:39$ ip community-list expanded c4 permit 1132 ^65000:4_0:194_0:40$ ip community-list expanded c4 permit 1133 ^65000:4_0:194_0:41$ ip community-list expanded c4 permit 1134 ^65000:4_0:194_0:42$ ip community-list expanded c4 permit 1135 ^65000:4_0:194_0:43$ ip community-list expanded c4 permit 1136 ^65000:4_0:194_0:44$ ip community-list expanded c4 permit 1137 ^65000:4_0:194_0:45$ ip community-list expanded c4 permit 1138 ^65000:4_0:194_0:46$ ip community-list expanded c4 permit 1139 ^65000:4_0:194_0:47$ ip community-list expanded c4 permit 1140 ^65000:4_0:194_0:48$ ip community-list expanded c4 permit 1141 ^65000:3_0:194_0:190$ ip community-list expanded c4 permit 1142 ^65000:4_0:195_0:40$ ip community-list expanded c4 permit 1143 ^65000:4_0:195_0:41$ ip community-list expanded c4 permit 1144 ^65000:4_0:195_0:42$ ip community-list expanded c4 permit 1145 ^65000:4_0:195_0:43$ ip community-list expanded c4 permit 1146 ^65000:4_0:195_0:44$ ip community-list expanded c4 permit 1147 ^65000:4_0:195_0:45$ ip community-list expanded c4 permit 1148 ^65000:4_0:195_0:46$ ip community-list expanded c4 permit 1149 ^65000:4_0:195_0:47$ ip community-list expanded c4 permit 1150 ^65000:4_0:195_0:48$ ip community-list expanded c4 permit 1151 ^65000:3_0:195_0:191$ ip community-list expanded c4 permit 1152 ^65000:4_0:196_0:40$ ip community-list expanded c4 permit 1153 ^65000:4_0:196_0:41$ ip community-list expanded c4 permit 1154 ^65000:4_0:196_0:42$ ip community-list expanded c4 permit 1155 ^65000:4_0:196_0:43$ ip community-list expanded c4 permit 1156 ^65000:4_0:196_0:44$ ip community-list expanded c4 permit 1157 ^65000:4_0:196_0:45$ ip community-list expanded c4 permit 1158 ^65000:4_0:196_0:46$ ip community-list expanded c4 permit 1159 ^65000:4_0:196_0:47$ ip community-list expanded c4 permit 1160 ^65000:4_0:196_0:48$ ip community-list expanded c4 permit 1161 ^65000:4_0:196_0:49$ ip community-list expanded c4 permit 1162 ^65000:3_0:196_0:192$ ip community-list expanded c4 permit 1163 ^65000:4_0:197_0:40$ ip community-list expanded c4 permit 1164 ^65000:4_0:197_0:41$ ip community-list expanded c4 permit 1165 ^65000:4_0:197_0:42$ ip community-list expanded c4 permit 1166 ^65000:4_0:197_0:43$ ip community-list expanded c4 permit 1167 ^65000:4_0:197_0:44$ ip community-list expanded c4 permit 1168 ^65000:4_0:197_0:45$ ip community-list expanded c4 permit 1169 ^65000:4_0:197_0:46$ ip community-list expanded c4 permit 1170 ^65000:4_0:197_0:47$ ip community-list expanded c4 permit 1171 ^65000:4_0:197_0:48$ ip community-list expanded c4 permit 1172 ^65000:4_0:197_0:49$ ip community-list expanded c4 permit 1173 ^65000:3_0:197_0:193$ ip community-list expanded c4 permit 1174 ^65000:4_0:198_0:40$ ip community-list expanded c4 permit 1175 ^65000:4_0:198_0:41$ ip community-list expanded c4 permit 1176 ^65000:4_0:198_0:42$ ip community-list expanded c4 permit 1177 ^65000:4_0:198_0:43$ ip community-list expanded c4 permit 1178 ^65000:4_0:198_0:44$ ip community-list expanded c4 permit 1179 ^65000:4_0:198_0:45$ ip community-list expanded c4 permit 1180 ^65000:4_0:198_0:46$ ip community-list expanded c4 permit 1181 ^65000:4_0:198_0:47$ ip community-list expanded c4 permit 1182 ^65000:4_0:198_0:48$ ip community-list expanded c4 permit 1183 ^65000:4_0:198_0:49$ ip community-list expanded c4 permit 1184 ^65000:3_0:198_0:194$ ip community-list expanded c4 permit 1185 ^65000:4_0:199_0:40$ ip community-list expanded c4 permit 1186 ^65000:4_0:199_0:41$ ip community-list expanded c4 permit 1187 ^65000:4_0:199_0:42$ ip community-list expanded c4 permit 1188 ^65000:4_0:199_0:43$ ip community-list expanded c4 permit 1189 ^65000:4_0:199_0:44$ ip community-list expanded c4 permit 1190 ^65000:4_0:199_0:45$ ip community-list expanded c4 permit 1191 ^65000:4_0:199_0:46$ ip community-list expanded c4 permit 1192 ^65000:4_0:199_0:47$ ip community-list expanded c4 permit 1193 ^65000:4_0:199_0:48$ ip community-list expanded c4 permit 1194 ^65000:4_0:199_0:49$ ip community-list expanded c4 permit 1195 ^65000:3_0:199_0:195$ ip community-list expanded c4 permit 1196 ^65000:4_0:200_0:41$ ip community-list expanded c4 permit 1197 ^65000:4_0:200_0:42$ ip community-list expanded c4 permit 1198 ^65000:4_0:200_0:43$ ip community-list expanded c4 permit 1199 ^65000:4_0:200_0:44$ ip community-list expanded c4 permit 1200 ^65000:4_0:200_0:45$ ip community-list expanded c4 permit 1201 ^65000:4_0:200_0:46$ ip community-list expanded c4 permit 1202 ^65000:4_0:200_0:47$ ip community-list expanded c4 permit 1203 ^65000:4_0:200_0:48$ ip community-list expanded c4 permit 1204 ^65000:4_0:200_0:49$ ip community-list expanded c4 permit 1205 ^65000:4_0:200_0:50$ ip community-list expanded c4 permit 1206 ^65000:3_0:200_0:196$ ip community-list expanded c4 permit 1207 ^65000:4_0:201_0:41$ ip community-list expanded c4 permit 1208 ^65000:4_0:201_0:42$ ip community-list expanded c4 permit 1209 ^65000:4_0:201_0:43$ ip community-list expanded c4 permit 1210 ^65000:4_0:201_0:44$ ip community-list expanded c4 permit 1211 ^65000:4_0:201_0:45$ ip community-list expanded c4 permit 1212 ^65000:4_0:201_0:46$ ip community-list expanded c4 permit 1213 ^65000:4_0:201_0:47$ ip community-list expanded c4 permit 1214 ^65000:4_0:201_0:48$ ip community-list expanded c4 permit 1215 ^65000:4_0:201_0:49$ ip community-list expanded c4 permit 1216 ^65000:4_0:201_0:50$ ip community-list expanded c4 permit 1217 ^65000:3_0:201_0:197$ ip community-list expanded c4 permit 1218 ^65000:4_0:202_0:41$ ip community-list expanded c4 permit 1219 ^65000:4_0:202_0:42$ ip community-list expanded c4 permit 1220 ^65000:4_0:202_0:43$ ip community-list expanded c4 permit 1221 ^65000:4_0:202_0:44$ ip community-list expanded c4 permit 1222 ^65000:4_0:202_0:45$ ip community-list expanded c4 permit 1223 ^65000:4_0:202_0:46$ ip community-list expanded c4 permit 1224 ^65000:4_0:202_0:47$ ip community-list expanded c4 permit 1225 ^65000:4_0:202_0:48$ ip community-list expanded c4 permit 1226 ^65000:4_0:202_0:49$ ip community-list expanded c4 permit 1227 ^65000:4_0:202_0:50$ ip community-list expanded c4 permit 1228 ^65000:3_0:202_0:198$ ip community-list expanded c4 permit 1229 ^65000:4_0:203_0:41$ ip community-list expanded c4 permit 1230 ^65000:4_0:203_0:42$ ip community-list expanded c4 permit 1231 ^65000:4_0:203_0:43$ ip community-list expanded c4 permit 1232 ^65000:4_0:203_0:44$ ip community-list expanded c4 permit 1233 ^65000:4_0:203_0:45$ ip community-list expanded c4 permit 1234 ^65000:4_0:203_0:46$ ip community-list expanded c4 permit 1235 ^65000:4_0:203_0:47$ ip community-list expanded c4 permit 1236 ^65000:4_0:203_0:48$ ip community-list expanded c4 permit 1237 ^65000:4_0:203_0:49$ ip community-list expanded c4 permit 1238 ^65000:4_0:203_0:50$ ip community-list expanded c4 permit 1239 ^65000:3_0:203_0:199$ ip community-list expanded c4 permit 1240 ^65000:4_0:204_0:41$ ip community-list expanded c4 permit 1241 ^65000:4_0:204_0:42$ ip community-list expanded c4 permit 1242 ^65000:4_0:204_0:43$ ip community-list expanded c4 permit 1243 ^65000:4_0:204_0:44$ ip community-list expanded c4 permit 1244 ^65000:4_0:204_0:45$ ip community-list expanded c4 permit 1245 ^65000:4_0:204_0:46$ ip community-list expanded c4 permit 1246 ^65000:4_0:204_0:47$ ip community-list expanded c4 permit 1247 ^65000:4_0:204_0:48$ ip community-list expanded c4 permit 1248 ^65000:4_0:204_0:49$ ip community-list expanded c4 permit 1249 ^65000:4_0:204_0:50$ ip community-list expanded c4 permit 1250 ^65000:4_0:204_0:51$ ip community-list expanded c4 permit 1251 ^65000:3_0:204_0:200$ ip community-list expanded c4 permit 1252 ^65000:4_0:205_0:42$ ip community-list expanded c4 permit 1253 ^65000:4_0:205_0:43$ ip community-list expanded c4 permit 1254 ^65000:4_0:205_0:44$ ip community-list expanded c4 permit 1255 ^65000:4_0:205_0:45$ ip community-list expanded c4 permit 1256 ^65000:4_0:205_0:46$ ip community-list expanded c4 permit 1257 ^65000:4_0:205_0:47$ ip community-list expanded c4 permit 1258 ^65000:4_0:205_0:48$ ip community-list expanded c4 permit 1259 ^65000:4_0:205_0:49$ ip community-list expanded c4 permit 1260 ^65000:4_0:205_0:50$ ip community-list expanded c4 permit 1261 ^65000:4_0:205_0:51$ ip community-list expanded c4 permit 1262 ^65000:3_0:205_0:201$ ip community-list expanded c4 permit 1263 ^65000:4_0:206_0:42$ ip community-list expanded c4 permit 1264 ^65000:4_0:206_0:43$ ip community-list expanded c4 permit 1265 ^65000:4_0:206_0:44$ ip community-list expanded c4 permit 1266 ^65000:4_0:206_0:45$ ip community-list expanded c4 permit 1267 ^65000:4_0:206_0:46$ ip community-list expanded c4 permit 1268 ^65000:4_0:206_0:47$ ip community-list expanded c4 permit 1269 ^65000:4_0:206_0:48$ ip community-list expanded c4 permit 1270 ^65000:4_0:206_0:49$ ip community-list expanded c4 permit 1271 ^65000:4_0:206_0:50$ ip community-list expanded c4 permit 1272 ^65000:4_0:206_0:51$ ip community-list expanded c4 permit 1273 ^65000:3_0:206_0:202$ ip community-list expanded c4 permit 1274 ^65000:4_0:207_0:42$ ip community-list expanded c4 permit 1275 ^65000:4_0:207_0:43$ ip community-list expanded c4 permit 1276 ^65000:4_0:207_0:44$ ip community-list expanded c4 permit 1277 ^65000:4_0:207_0:45$ ip community-list expanded c4 permit 1278 ^65000:4_0:207_0:46$ ip community-list expanded c4 permit 1279 ^65000:4_0:207_0:47$ ip community-list expanded c4 permit 1280 ^65000:4_0:207_0:48$ ip community-list expanded c4 permit 1281 ^65000:4_0:207_0:49$ ip community-list expanded c4 permit 1282 ^65000:4_0:207_0:50$ ip community-list expanded c4 permit 1283 ^65000:4_0:207_0:51$ ip community-list expanded c4 permit 1284 ^65000:3_0:207_0:203$ ip community-list expanded c4 permit 1285 ^65000:4_0:208_0:42$ ip community-list expanded c4 permit 1286 ^65000:4_0:208_0:43$ ip community-list expanded c4 permit 1287 ^65000:4_0:208_0:44$ ip community-list expanded c4 permit 1288 ^65000:4_0:208_0:45$ ip community-list expanded c4 permit 1289 ^65000:4_0:208_0:46$ ip community-list expanded c4 permit 1290 ^65000:4_0:208_0:47$ ip community-list expanded c4 permit 1291 ^65000:4_0:208_0:48$ ip community-list expanded c4 permit 1292 ^65000:4_0:208_0:49$ ip community-list expanded c4 permit 1293 ^65000:4_0:208_0:50$ ip community-list expanded c4 permit 1294 ^65000:4_0:208_0:51$ ip community-list expanded c4 permit 1295 ^65000:4_0:208_0:52$ ip community-list expanded c4 permit 1296 ^65000:3_0:208_0:204$ ip community-list expanded c4 permit 1297 ^65000:4_0:209_0:42$ ip community-list expanded c4 permit 1298 ^65000:4_0:209_0:43$ ip community-list expanded c4 permit 1299 ^65000:4_0:209_0:44$ ip community-list expanded c4 permit 1300 ^65000:4_0:209_0:45$ ip community-list expanded c4 permit 1301 ^65000:4_0:209_0:46$ ip community-list expanded c4 permit 1302 ^65000:4_0:209_0:47$ ip community-list expanded c4 permit 1303 ^65000:4_0:209_0:48$ ip community-list expanded c4 permit 1304 ^65000:4_0:209_0:49$ ip community-list expanded c4 permit 1305 ^65000:4_0:209_0:50$ ip community-list expanded c4 permit 1306 ^65000:4_0:209_0:51$ ip community-list expanded c4 permit 1307 ^65000:4_0:209_0:52$ ip community-list expanded c4 permit 1308 ^65000:3_0:209_0:205$ ip community-list expanded c4 permit 1309 ^65000:4_0:210_0:43$ ip community-list expanded c4 permit 1310 ^65000:4_0:210_0:44$ ip community-list expanded c4 permit 1311 ^65000:4_0:210_0:45$ ip community-list expanded c4 permit 1312 ^65000:4_0:210_0:46$ ip community-list expanded c4 permit 1313 ^65000:4_0:210_0:47$ ip community-list expanded c4 permit 1314 ^65000:4_0:210_0:48$ ip community-list expanded c4 permit 1315 ^65000:4_0:210_0:49$ ip community-list expanded c4 permit 1316 ^65000:4_0:210_0:50$ ip community-list expanded c4 permit 1317 ^65000:4_0:210_0:51$ ip community-list expanded c4 permit 1318 ^65000:4_0:210_0:52$ ip community-list expanded c4 permit 1319 ^65000:3_0:210_0:206$ ip community-list expanded c4 permit 1320 ^65000:4_0:211_0:43$ ip community-list expanded c4 permit 1321 ^65000:4_0:211_0:44$ ip community-list expanded c4 permit 1322 ^65000:4_0:211_0:45$ ip community-list expanded c4 permit 1323 ^65000:4_0:211_0:46$ ip community-list expanded c4 permit 1324 ^65000:4_0:211_0:47$ ip community-list expanded c4 permit 1325 ^65000:4_0:211_0:48$ ip community-list expanded c4 permit 1326 ^65000:4_0:211_0:49$ ip community-list expanded c4 permit 1327 ^65000:4_0:211_0:50$ ip community-list expanded c4 permit 1328 ^65000:4_0:211_0:51$ ip community-list expanded c4 permit 1329 ^65000:4_0:211_0:52$ ip community-list expanded c4 permit 1330 ^65000:3_0:211_0:207$ ip community-list expanded c4 permit 1331 ^65000:4_0:212_0:43$ ip community-list expanded c4 permit 1332 ^65000:4_0:212_0:44$ ip community-list expanded c4 permit 1333 ^65000:4_0:212_0:45$ ip community-list expanded c4 permit 1334 ^65000:4_0:212_0:46$ ip community-list expanded c4 permit 1335 ^65000:4_0:212_0:47$ ip community-list expanded c4 permit 1336 ^65000:4_0:212_0:48$ ip community-list expanded c4 permit 1337 ^65000:4_0:212_0:49$ ip community-list expanded c4 permit 1338 ^65000:4_0:212_0:50$ ip community-list expanded c4 permit 1339 ^65000:4_0:212_0:51$ ip community-list expanded c4 permit 1340 ^65000:4_0:212_0:52$ ip community-list expanded c4 permit 1341 ^65000:4_0:212_0:53$ ip community-list expanded c4 permit 1342 ^65000:3_0:212_0:208$ ip community-list expanded c4 permit 1343 ^65000:4_0:213_0:43$ ip community-list expanded c4 permit 1344 ^65000:4_0:213_0:44$ ip community-list expanded c4 permit 1345 ^65000:4_0:213_0:45$ ip community-list expanded c4 permit 1346 ^65000:4_0:213_0:46$ ip community-list expanded c4 permit 1347 ^65000:4_0:213_0:47$ ip community-list expanded c4 permit 1348 ^65000:4_0:213_0:48$ ip community-list expanded c4 permit 1349 ^65000:4_0:213_0:49$ ip community-list expanded c4 permit 1350 ^65000:4_0:213_0:50$ ip community-list expanded c4 permit 1351 ^65000:4_0:213_0:51$ ip community-list expanded c4 permit 1352 ^65000:4_0:213_0:52$ ip community-list expanded c4 permit 1353 ^65000:4_0:213_0:53$ ip community-list expanded c4 permit 1354 ^65000:3_0:213_0:209$ ip community-list expanded c4 permit 1355 ^65000:4_0:214_0:43$ ip community-list expanded c4 permit 1356 ^65000:4_0:214_0:44$ ip community-list expanded c4 permit 1357 ^65000:4_0:214_0:45$ ip community-list expanded c4 permit 1358 ^65000:4_0:214_0:46$ ip community-list expanded c4 permit 1359 ^65000:4_0:214_0:47$ ip community-list expanded c4 permit 1360 ^65000:4_0:214_0:48$ ip community-list expanded c4 permit 1361 ^65000:4_0:214_0:49$ ip community-list expanded c4 permit 1362 ^65000:4_0:214_0:50$ ip community-list expanded c4 permit 1363 ^65000:4_0:214_0:51$ ip community-list expanded c4 permit 1364 ^65000:4_0:214_0:52$ ip community-list expanded c4 permit 1365 ^65000:4_0:214_0:53$ ip community-list expanded c4 permit 1366 ^65000:3_0:214_0:210$ ip community-list expanded c4 permit 1367 ^65000:4_0:215_0:44$ ip community-list expanded c4 permit 1368 ^65000:4_0:215_0:45$ ip community-list expanded c4 permit 1369 ^65000:4_0:215_0:46$ ip community-list expanded c4 permit 1370 ^65000:4_0:215_0:47$ ip community-list expanded c4 permit 1371 ^65000:4_0:215_0:48$ ip community-list expanded c4 permit 1372 ^65000:4_0:215_0:49$ ip community-list expanded c4 permit 1373 ^65000:4_0:215_0:50$ ip community-list expanded c4 permit 1374 ^65000:4_0:215_0:51$ ip community-list expanded c4 permit 1375 ^65000:4_0:215_0:52$ ip community-list expanded c4 permit 1376 ^65000:4_0:215_0:53$ ip community-list expanded c4 permit 1377 ^65000:3_0:215_0:211$ ip community-list expanded c4 permit 1378 ^65000:4_0:216_0:44$ ip community-list expanded c4 permit 1379 ^65000:4_0:216_0:45$ ip community-list expanded c4 permit 1380 ^65000:4_0:216_0:46$ ip community-list expanded c4 permit 1381 ^65000:4_0:216_0:47$ ip community-list expanded c4 permit 1382 ^65000:4_0:216_0:48$ ip community-list expanded c4 permit 1383 ^65000:4_0:216_0:49$ ip community-list expanded c4 permit 1384 ^65000:4_0:216_0:50$ ip community-list expanded c4 permit 1385 ^65000:4_0:216_0:51$ ip community-list expanded c4 permit 1386 ^65000:4_0:216_0:52$ ip community-list expanded c4 permit 1387 ^65000:4_0:216_0:53$ ip community-list expanded c4 permit 1388 ^65000:4_0:216_0:54$ ip community-list expanded c4 permit 1389 ^65000:3_0:216_0:212$ ip community-list expanded c4 permit 1390 ^65000:4_0:217_0:44$ ip community-list expanded c4 permit 1391 ^65000:4_0:217_0:45$ ip community-list expanded c4 permit 1392 ^65000:4_0:217_0:46$ ip community-list expanded c4 permit 1393 ^65000:4_0:217_0:47$ ip community-list expanded c4 permit 1394 ^65000:4_0:217_0:48$ ip community-list expanded c4 permit 1395 ^65000:4_0:217_0:49$ ip community-list expanded c4 permit 1396 ^65000:4_0:217_0:50$ ip community-list expanded c4 permit 1397 ^65000:4_0:217_0:51$ ip community-list expanded c4 permit 1398 ^65000:4_0:217_0:52$ ip community-list expanded c4 permit 1399 ^65000:4_0:217_0:53$ ip community-list expanded c4 permit 1400 ^65000:4_0:217_0:54$ ip community-list expanded c4 permit 1401 ^65000:3_0:217_0:213$ ip community-list expanded c4 permit 1402 ^65000:4_0:218_0:44$ ip community-list expanded c4 permit 1403 ^65000:4_0:218_0:45$ ip community-list expanded c4 permit 1404 ^65000:4_0:218_0:46$ ip community-list expanded c4 permit 1405 ^65000:4_0:218_0:47$ ip community-list expanded c4 permit 1406 ^65000:4_0:218_0:48$ ip community-list expanded c4 permit 1407 ^65000:4_0:218_0:49$ ip community-list expanded c4 permit 1408 ^65000:4_0:218_0:50$ ip community-list expanded c4 permit 1409 ^65000:4_0:218_0:51$ ip community-list expanded c4 permit 1410 ^65000:4_0:218_0:52$ ip community-list expanded c4 permit 1411 ^65000:4_0:218_0:53$ ip community-list expanded c4 permit 1412 ^65000:4_0:218_0:54$ ip community-list expanded c4 permit 1413 ^65000:3_0:218_0:214$ ip community-list expanded c4 permit 1414 ^65000:4_0:219_0:44$ ip community-list expanded c4 permit 1415 ^65000:4_0:219_0:45$ ip community-list expanded c4 permit 1416 ^65000:4_0:219_0:46$ ip community-list expanded c4 permit 1417 ^65000:4_0:219_0:47$ ip community-list expanded c4 permit 1418 ^65000:4_0:219_0:48$ ip community-list expanded c4 permit 1419 ^65000:4_0:219_0:49$ ip community-list expanded c4 permit 1420 ^65000:4_0:219_0:50$ ip community-list expanded c4 permit 1421 ^65000:4_0:219_0:51$ ip community-list expanded c4 permit 1422 ^65000:4_0:219_0:52$ ip community-list expanded c4 permit 1423 ^65000:4_0:219_0:53$ ip community-list expanded c4 permit 1424 ^65000:4_0:219_0:54$ ip community-list expanded c4 permit 1425 ^65000:3_0:219_0:215$ ip community-list expanded c4 permit 1426 ^65000:4_0:220_0:45$ ip community-list expanded c4 permit 1427 ^65000:4_0:220_0:46$ ip community-list expanded c4 permit 1428 ^65000:4_0:220_0:47$ ip community-list expanded c4 permit 1429 ^65000:4_0:220_0:48$ ip community-list expanded c4 permit 1430 ^65000:4_0:220_0:49$ ip community-list expanded c4 permit 1431 ^65000:4_0:220_0:50$ ip community-list expanded c4 permit 1432 ^65000:4_0:220_0:51$ ip community-list expanded c4 permit 1433 ^65000:4_0:220_0:52$ ip community-list expanded c4 permit 1434 ^65000:4_0:220_0:53$ ip community-list expanded c4 permit 1435 ^65000:4_0:220_0:54$ ip community-list expanded c4 permit 1436 ^65000:4_0:220_0:55$ ip community-list expanded c4 permit 1437 ^65000:3_0:220_0:216$ ip community-list expanded c4 permit 1438 ^65000:4_0:221_0:45$ ip community-list expanded c4 permit 1439 ^65000:4_0:221_0:46$ ip community-list expanded c4 permit 1440 ^65000:4_0:221_0:47$ ip community-list expanded c4 permit 1441 ^65000:4_0:221_0:48$ ip community-list expanded c4 permit 1442 ^65000:4_0:221_0:49$ ip community-list expanded c4 permit 1443 ^65000:4_0:221_0:50$ ip community-list expanded c4 permit 1444 ^65000:4_0:221_0:51$ ip community-list expanded c4 permit 1445 ^65000:4_0:221_0:52$ ip community-list expanded c4 permit 1446 ^65000:4_0:221_0:53$ ip community-list expanded c4 permit 1447 ^65000:4_0:221_0:54$ ip community-list expanded c4 permit 1448 ^65000:4_0:221_0:55$ ip community-list expanded c4 permit 1449 ^65000:3_0:221_0:217$ ip community-list expanded c4 permit 1450 ^65000:4_0:222_0:45$ ip community-list expanded c4 permit 1451 ^65000:4_0:222_0:46$ ip community-list expanded c4 permit 1452 ^65000:4_0:222_0:47$ ip community-list expanded c4 permit 1453 ^65000:4_0:222_0:48$ ip community-list expanded c4 permit 1454 ^65000:4_0:222_0:49$ ip community-list expanded c4 permit 1455 ^65000:4_0:222_0:50$ ip community-list expanded c4 permit 1456 ^65000:4_0:222_0:51$ ip community-list expanded c4 permit 1457 ^65000:4_0:222_0:52$ ip community-list expanded c4 permit 1458 ^65000:4_0:222_0:53$ ip community-list expanded c4 permit 1459 ^65000:4_0:222_0:54$ ip community-list expanded c4 permit 1460 ^65000:4_0:222_0:55$ ip community-list expanded c4 permit 1461 ^65000:3_0:222_0:218$ ip community-list expanded c4 permit 1462 ^65000:4_0:223_0:45$ ip community-list expanded c4 permit 1463 ^65000:4_0:223_0:46$ ip community-list expanded c4 permit 1464 ^65000:4_0:223_0:47$ ip community-list expanded c4 permit 1465 ^65000:4_0:223_0:48$ ip community-list expanded c4 permit 1466 ^65000:4_0:223_0:49$ ip community-list expanded c4 permit 1467 ^65000:4_0:223_0:50$ ip community-list expanded c4 permit 1468 ^65000:4_0:223_0:51$ ip community-list expanded c4 permit 1469 ^65000:4_0:223_0:52$ ip community-list expanded c4 permit 1470 ^65000:4_0:223_0:53$ ip community-list expanded c4 permit 1471 ^65000:4_0:223_0:54$ ip community-list expanded c4 permit 1472 ^65000:4_0:223_0:55$ ip community-list expanded c4 permit 1473 ^65000:3_0:223_0:219$ ip community-list expanded c4 permit 1474 ^65000:4_0:224_0:45$ ip community-list expanded c4 permit 1475 ^65000:4_0:224_0:46$ ip community-list expanded c4 permit 1476 ^65000:4_0:224_0:47$ ip community-list expanded c4 permit 1477 ^65000:4_0:224_0:48$ ip community-list expanded c4 permit 1478 ^65000:4_0:224_0:49$ ip community-list expanded c4 permit 1479 ^65000:4_0:224_0:50$ ip community-list expanded c4 permit 1480 ^65000:4_0:224_0:51$ ip community-list expanded c4 permit 1481 ^65000:4_0:224_0:52$ ip community-list expanded c4 permit 1482 ^65000:4_0:224_0:53$ ip community-list expanded c4 permit 1483 ^65000:4_0:224_0:54$ ip community-list expanded c4 permit 1484 ^65000:4_0:224_0:55$ ip community-list expanded c4 permit 1485 ^65000:4_0:224_0:56$ ip community-list expanded c4 permit 1486 ^65000:3_0:224_0:220$ ip community-list expanded c4 permit 1487 ^65000:4_0:225_0:46$ ip community-list expanded c4 permit 1488 ^65000:4_0:225_0:47$ ip community-list expanded c4 permit 1489 ^65000:4_0:225_0:48$ ip community-list expanded c4 permit 1490 ^65000:4_0:225_0:49$ ip community-list expanded c4 permit 1491 ^65000:4_0:225_0:50$ ip community-list expanded c4 permit 1492 ^65000:4_0:225_0:51$ ip community-list expanded c4 permit 1493 ^65000:4_0:225_0:52$ ip community-list expanded c4 permit 1494 ^65000:4_0:225_0:53$ ip community-list expanded c4 permit 1495 ^65000:4_0:225_0:54$ ip community-list expanded c4 permit 1496 ^65000:4_0:225_0:55$ ip community-list expanded c4 permit 1497 ^65000:4_0:225_0:56$ ip community-list expanded c4 permit 1498 ^65000:3_0:225_0:221$ ip community-list expanded c4 permit 1499 ^65000:4_0:226_0:46$ ip community-list expanded c4 permit 1500 ^65000:4_0:226_0:47$ ip community-list expanded c4 permit 1501 ^65000:4_0:226_0:48$ ip community-list expanded c4 permit 1502 ^65000:4_0:226_0:49$ ip community-list expanded c4 permit 1503 ^65000:4_0:226_0:50$ ip community-list expanded c4 permit 1504 ^65000:4_0:226_0:51$ ip community-list expanded c4 permit 1505 ^65000:4_0:226_0:52$ ip community-list expanded c4 permit 1506 ^65000:4_0:226_0:53$ ip community-list expanded c4 permit 1507 ^65000:4_0:226_0:54$ ip community-list expanded c4 permit 1508 ^65000:4_0:226_0:55$ ip community-list expanded c4 permit 1509 ^65000:4_0:226_0:56$ ip community-list expanded c4 permit 1510 ^65000:3_0:226_0:222$ ip community-list expanded c4 permit 1511 ^65000:4_0:227_0:46$ ip community-list expanded c4 permit 1512 ^65000:4_0:227_0:47$ ip community-list expanded c4 permit 1513 ^65000:4_0:227_0:48$ ip community-list expanded c4 permit 1514 ^65000:4_0:227_0:49$ ip community-list expanded c4 permit 1515 ^65000:4_0:227_0:50$ ip community-list expanded c4 permit 1516 ^65000:4_0:227_0:51$ ip community-list expanded c4 permit 1517 ^65000:4_0:227_0:52$ ip community-list expanded c4 permit 1518 ^65000:4_0:227_0:53$ ip community-list expanded c4 permit 1519 ^65000:4_0:227_0:54$ ip community-list expanded c4 permit 1520 ^65000:4_0:227_0:55$ ip community-list expanded c4 permit 1521 ^65000:4_0:227_0:56$ ip community-list expanded c4 permit 1522 ^65000:3_0:227_0:223$ ip community-list expanded c4 permit 1523 ^65000:4_0:228_0:46$ ip community-list expanded c4 permit 1524 ^65000:4_0:228_0:47$ ip community-list expanded c4 permit 1525 ^65000:4_0:228_0:48$ ip community-list expanded c4 permit 1526 ^65000:4_0:228_0:49$ ip community-list expanded c4 permit 1527 ^65000:4_0:228_0:50$ ip community-list expanded c4 permit 1528 ^65000:4_0:228_0:51$ ip community-list expanded c4 permit 1529 ^65000:4_0:228_0:52$ ip community-list expanded c4 permit 1530 ^65000:4_0:228_0:53$ ip community-list expanded c4 permit 1531 ^65000:4_0:228_0:54$ ip community-list expanded c4 permit 1532 ^65000:4_0:228_0:55$ ip community-list expanded c4 permit 1533 ^65000:4_0:228_0:56$ ip community-list expanded c4 permit 1534 ^65000:4_0:228_0:57$ ip community-list expanded c4 permit 1535 ^65000:3_0:228_0:224$ ip community-list expanded c4 permit 1536 ^65000:4_0:229_0:46$ ip community-list expanded c4 permit 1537 ^65000:4_0:229_0:47$ ip community-list expanded c4 permit 1538 ^65000:4_0:229_0:48$ ip community-list expanded c4 permit 1539 ^65000:4_0:229_0:49$ ip community-list expanded c4 permit 1540 ^65000:4_0:229_0:50$ ip community-list expanded c4 permit 1541 ^65000:4_0:229_0:51$ ip community-list expanded c4 permit 1542 ^65000:4_0:229_0:52$ ip community-list expanded c4 permit 1543 ^65000:4_0:229_0:53$ ip community-list expanded c4 permit 1544 ^65000:4_0:229_0:54$ ip community-list expanded c4 permit 1545 ^65000:4_0:229_0:55$ ip community-list expanded c4 permit 1546 ^65000:4_0:229_0:56$ ip community-list expanded c4 permit 1547 ^65000:4_0:229_0:57$ ip community-list expanded c4 permit 1548 ^65000:3_0:229_0:225$ ip community-list expanded c4 permit 1549 ^65000:4_0:230_0:47$ ip community-list expanded c4 permit 1550 ^65000:4_0:230_0:48$ ip community-list expanded c4 permit 1551 ^65000:4_0:230_0:49$ ip community-list expanded c4 permit 1552 ^65000:4_0:230_0:50$ ip community-list expanded c4 permit 1553 ^65000:4_0:230_0:51$ ip community-list expanded c4 permit 1554 ^65000:4_0:230_0:52$ ip community-list expanded c4 permit 1555 ^65000:4_0:230_0:53$ ip community-list expanded c4 permit 1556 ^65000:4_0:230_0:54$ ip community-list expanded c4 permit 1557 ^65000:4_0:230_0:55$ ip community-list expanded c4 permit 1558 ^65000:4_0:230_0:56$ ip community-list expanded c4 permit 1559 ^65000:4_0:230_0:57$ ip community-list expanded c4 permit 1560 ^65000:3_0:230_0:226$ ip community-list expanded c4 permit 1561 ^65000:4_0:231_0:47$ ip community-list expanded c4 permit 1562 ^65000:4_0:231_0:48$ ip community-list expanded c4 permit 1563 ^65000:4_0:231_0:49$ ip community-list expanded c4 permit 1564 ^65000:4_0:231_0:50$ ip community-list expanded c4 permit 1565 ^65000:4_0:231_0:51$ ip community-list expanded c4 permit 1566 ^65000:4_0:231_0:52$ ip community-list expanded c4 permit 1567 ^65000:4_0:231_0:53$ ip community-list expanded c4 permit 1568 ^65000:4_0:231_0:54$ ip community-list expanded c4 permit 1569 ^65000:4_0:231_0:55$ ip community-list expanded c4 permit 1570 ^65000:4_0:231_0:56$ ip community-list expanded c4 permit 1571 ^65000:4_0:231_0:57$ ip community-list expanded c4 permit 1572 ^65000:3_0:231_0:227$ ip community-list expanded c4 permit 1573 ^65000:4_0:232_0:47$ ip community-list expanded c4 permit 1574 ^65000:4_0:232_0:48$ ip community-list expanded c4 permit 1575 ^65000:4_0:232_0:49$ ip community-list expanded c4 permit 1576 ^65000:4_0:232_0:50$ ip community-list expanded c4 permit 1577 ^65000:4_0:232_0:51$ ip community-list expanded c4 permit 1578 ^65000:4_0:232_0:52$ ip community-list expanded c4 permit 1579 ^65000:4_0:232_0:53$ ip community-list expanded c4 permit 1580 ^65000:4_0:232_0:54$ ip community-list expanded c4 permit 1581 ^65000:4_0:232_0:55$ ip community-list expanded c4 permit 1582 ^65000:4_0:232_0:56$ ip community-list expanded c4 permit 1583 ^65000:4_0:232_0:57$ ip community-list expanded c4 permit 1584 ^65000:4_0:232_0:58$ ip community-list expanded c4 permit 1585 ^65000:3_0:232_0:228$ ip community-list expanded c4 permit 1586 ^65000:4_0:233_0:47$ ip community-list expanded c4 permit 1587 ^65000:4_0:233_0:48$ ip community-list expanded c4 permit 1588 ^65000:4_0:233_0:49$ ip community-list expanded c4 permit 1589 ^65000:4_0:233_0:50$ ip community-list expanded c4 permit 1590 ^65000:4_0:233_0:51$ ip community-list expanded c4 permit 1591 ^65000:4_0:233_0:52$ ip community-list expanded c4 permit 1592 ^65000:4_0:233_0:53$ ip community-list expanded c4 permit 1593 ^65000:4_0:233_0:54$ ip community-list expanded c4 permit 1594 ^65000:4_0:233_0:55$ ip community-list expanded c4 permit 1595 ^65000:4_0:233_0:56$ ip community-list expanded c4 permit 1596 ^65000:4_0:233_0:57$ ip community-list expanded c4 permit 1597 ^65000:4_0:233_0:58$ ip community-list expanded c4 permit 1598 ^65000:3_0:233_0:229$ ip community-list expanded c4 permit 1599 ^65000:4_0:234_0:47$ ip community-list expanded c4 permit 1600 ^65000:4_0:234_0:48$ ip community-list expanded c4 permit 1601 ^65000:4_0:234_0:49$ ip community-list expanded c4 permit 1602 ^65000:4_0:234_0:50$ ip community-list expanded c4 permit 1603 ^65000:4_0:234_0:51$ ip community-list expanded c4 permit 1604 ^65000:4_0:234_0:52$ ip community-list expanded c4 permit 1605 ^65000:4_0:234_0:53$ ip community-list expanded c4 permit 1606 ^65000:4_0:234_0:54$ ip community-list expanded c4 permit 1607 ^65000:4_0:234_0:55$ ip community-list expanded c4 permit 1608 ^65000:4_0:234_0:56$ ip community-list expanded c4 permit 1609 ^65000:4_0:234_0:57$ ip community-list expanded c4 permit 1610 ^65000:4_0:234_0:58$ ip community-list expanded c4 permit 1611 ^65000:3_0:234_0:230$ ip community-list expanded c4 permit 1612 ^65000:4_0:235_0:48$ ip community-list expanded c4 permit 1613 ^65000:4_0:235_0:49$ ip community-list expanded c4 permit 1614 ^65000:4_0:235_0:50$ ip community-list expanded c4 permit 1615 ^65000:4_0:235_0:51$ ip community-list expanded c4 permit 1616 ^65000:4_0:235_0:52$ ip community-list expanded c4 permit 1617 ^65000:4_0:235_0:53$ ip community-list expanded c4 permit 1618 ^65000:4_0:235_0:54$ ip community-list expanded c4 permit 1619 ^65000:4_0:235_0:55$ ip community-list expanded c4 permit 1620 ^65000:4_0:235_0:56$ ip community-list expanded c4 permit 1621 ^65000:4_0:235_0:57$ ip community-list expanded c4 permit 1622 ^65000:4_0:235_0:58$ ip community-list expanded c4 permit 1623 ^65000:3_0:235_0:231$ ip community-list expanded c4 permit 1624 ^65000:4_0:236_0:48$ ip community-list expanded c4 permit 1625 ^65000:4_0:236_0:49$ ip community-list expanded c4 permit 1626 ^65000:4_0:236_0:50$ ip community-list expanded c4 permit 1627 ^65000:4_0:236_0:51$ ip community-list expanded c4 permit 1628 ^65000:4_0:236_0:52$ ip community-list expanded c4 permit 1629 ^65000:4_0:236_0:53$ ip community-list expanded c4 permit 1630 ^65000:4_0:236_0:54$ ip community-list expanded c4 permit 1631 ^65000:4_0:236_0:55$ ip community-list expanded c4 permit 1632 ^65000:4_0:236_0:56$ ip community-list expanded c4 permit 1633 ^65000:4_0:236_0:57$ ip community-list expanded c4 permit 1634 ^65000:4_0:236_0:58$ ip community-list expanded c4 permit 1635 ^65000:4_0:236_0:59$ ip community-list expanded c4 permit 1636 ^65000:3_0:236_0:232$ ip community-list expanded c4 permit 1637 ^65000:4_0:237_0:48$ ip community-list expanded c4 permit 1638 ^65000:4_0:237_0:49$ ip community-list expanded c4 permit 1639 ^65000:4_0:237_0:50$ ip community-list expanded c4 permit 1640 ^65000:4_0:237_0:51$ ip community-list expanded c4 permit 1641 ^65000:4_0:237_0:52$ ip community-list expanded c4 permit 1642 ^65000:4_0:237_0:53$ ip community-list expanded c4 permit 1643 ^65000:4_0:237_0:54$ ip community-list expanded c4 permit 1644 ^65000:4_0:237_0:55$ ip community-list expanded c4 permit 1645 ^65000:4_0:237_0:56$ ip community-list expanded c4 permit 1646 ^65000:4_0:237_0:57$ ip community-list expanded c4 permit 1647 ^65000:4_0:237_0:58$ ip community-list expanded c4 permit 1648 ^65000:4_0:237_0:59$ ip community-list expanded c4 permit 1649 ^65000:3_0:237_0:233$ ip community-list expanded c4 permit 1650 ^65000:4_0:238_0:48$ ip community-list expanded c4 permit 1651 ^65000:4_0:238_0:49$ ip community-list expanded c4 permit 1652 ^65000:4_0:238_0:50$ ip community-list expanded c4 permit 1653 ^65000:4_0:238_0:51$ ip community-list expanded c4 permit 1654 ^65000:4_0:238_0:52$ ip community-list expanded c4 permit 1655 ^65000:4_0:238_0:53$ ip community-list expanded c4 permit 1656 ^65000:4_0:238_0:54$ ip community-list expanded c4 permit 1657 ^65000:4_0:238_0:55$ ip community-list expanded c4 permit 1658 ^65000:4_0:238_0:56$ ip community-list expanded c4 permit 1659 ^65000:4_0:238_0:57$ ip community-list expanded c4 permit 1660 ^65000:4_0:238_0:58$ ip community-list expanded c4 permit 1661 ^65000:4_0:238_0:59$ ip community-list expanded c4 permit 1662 ^65000:3_0:238_0:234$ ip community-list expanded c4 permit 1663 ^65000:4_0:239_0:48$ ip community-list expanded c4 permit 1664 ^65000:4_0:239_0:49$ ip community-list expanded c4 permit 1665 ^65000:4_0:239_0:50$ ip community-list expanded c4 permit 1666 ^65000:4_0:239_0:51$ ip community-list expanded c4 permit 1667 ^65000:4_0:239_0:52$ ip community-list expanded c4 permit 1668 ^65000:4_0:239_0:53$ ip community-list expanded c4 permit 1669 ^65000:4_0:239_0:54$ ip community-list expanded c4 permit 1670 ^65000:4_0:239_0:55$ ip community-list expanded c4 permit 1671 ^65000:4_0:239_0:56$ ip community-list expanded c4 permit 1672 ^65000:4_0:239_0:57$ ip community-list expanded c4 permit 1673 ^65000:4_0:239_0:58$ ip community-list expanded c4 permit 1674 ^65000:4_0:239_0:59$ ip community-list expanded c4 permit 1675 ^65000:3_0:239_0:235$ ip community-list expanded c4 permit 1676 ^65000:4_0:240_0:49$ ip community-list expanded c4 permit 1677 ^65000:4_0:240_0:50$ ip community-list expanded c4 permit 1678 ^65000:4_0:240_0:51$ ip community-list expanded c4 permit 1679 ^65000:4_0:240_0:52$ ip community-list expanded c4 permit 1680 ^65000:4_0:240_0:53$ ip community-list expanded c4 permit 1681 ^65000:4_0:240_0:54$ ip community-list expanded c4 permit 1682 ^65000:4_0:240_0:55$ ip community-list expanded c4 permit 1683 ^65000:4_0:240_0:56$ ip community-list expanded c4 permit 1684 ^65000:4_0:240_0:57$ ip community-list expanded c4 permit 1685 ^65000:4_0:240_0:58$ ip community-list expanded c4 permit 1686 ^65000:4_0:240_0:59$ ip community-list expanded c4 permit 1687 ^65000:4_0:240_0:60$ ip community-list expanded c4 permit 1688 ^65000:3_0:240_0:236$ ip community-list expanded c4 permit 1689 ^65000:4_0:241_0:49$ ip community-list expanded c4 permit 1690 ^65000:4_0:241_0:50$ ip community-list expanded c4 permit 1691 ^65000:4_0:241_0:51$ ip community-list expanded c4 permit 1692 ^65000:4_0:241_0:52$ ip community-list expanded c4 permit 1693 ^65000:4_0:241_0:53$ ip community-list expanded c4 permit 1694 ^65000:4_0:241_0:54$ ip community-list expanded c4 permit 1695 ^65000:4_0:241_0:55$ ip community-list expanded c4 permit 1696 ^65000:4_0:241_0:56$ ip community-list expanded c4 permit 1697 ^65000:4_0:241_0:57$ ip community-list expanded c4 permit 1698 ^65000:4_0:241_0:58$ ip community-list expanded c4 permit 1699 ^65000:4_0:241_0:59$ ip community-list expanded c4 permit 1700 ^65000:4_0:241_0:60$ ip community-list expanded c4 permit 1701 ^65000:3_0:241_0:237$ ip community-list expanded c4 permit 1702 ^65000:4_0:242_0:49$ ip community-list expanded c4 permit 1703 ^65000:4_0:242_0:50$ ip community-list expanded c4 permit 1704 ^65000:4_0:242_0:51$ ip community-list expanded c4 permit 1705 ^65000:4_0:242_0:52$ ip community-list expanded c4 permit 1706 ^65000:4_0:242_0:53$ ip community-list expanded c4 permit 1707 ^65000:4_0:242_0:54$ ip community-list expanded c4 permit 1708 ^65000:4_0:242_0:55$ ip community-list expanded c4 permit 1709 ^65000:4_0:242_0:56$ ip community-list expanded c4 permit 1710 ^65000:4_0:242_0:57$ ip community-list expanded c4 permit 1711 ^65000:4_0:242_0:58$ ip community-list expanded c4 permit 1712 ^65000:4_0:242_0:59$ ip community-list expanded c4 permit 1713 ^65000:4_0:242_0:60$ ip community-list expanded c4 permit 1714 ^65000:3_0:242_0:238$ ip community-list expanded c4 permit 1715 ^65000:4_0:243_0:49$ ip community-list expanded c4 permit 1716 ^65000:4_0:243_0:50$ ip community-list expanded c4 permit 1717 ^65000:4_0:243_0:51$ ip community-list expanded c4 permit 1718 ^65000:4_0:243_0:52$ ip community-list expanded c4 permit 1719 ^65000:4_0:243_0:53$ ip community-list expanded c4 permit 1720 ^65000:4_0:243_0:54$ ip community-list expanded c4 permit 1721 ^65000:4_0:243_0:55$ ip community-list expanded c4 permit 1722 ^65000:4_0:243_0:56$ ip community-list expanded c4 permit 1723 ^65000:4_0:243_0:57$ ip community-list expanded c4 permit 1724 ^65000:4_0:243_0:58$ ip community-list expanded c4 permit 1725 ^65000:4_0:243_0:59$ ip community-list expanded c4 permit 1726 ^65000:4_0:243_0:60$ ip community-list expanded c4 permit 1727 ^65000:3_0:243_0:239$ ip community-list expanded c4 permit 1728 ^65000:4_0:244_0:49$ ip community-list expanded c4 permit 1729 ^65000:4_0:244_0:50$ ip community-list expanded c4 permit 1730 ^65000:4_0:244_0:51$ ip community-list expanded c4 permit 1731 ^65000:4_0:244_0:52$ ip community-list expanded c4 permit 1732 ^65000:4_0:244_0:53$ ip community-list expanded c4 permit 1733 ^65000:4_0:244_0:54$ ip community-list expanded c4 permit 1734 ^65000:4_0:244_0:55$ ip community-list expanded c4 permit 1735 ^65000:4_0:244_0:56$ ip community-list expanded c4 permit 1736 ^65000:4_0:244_0:57$ ip community-list expanded c4 permit 1737 ^65000:4_0:244_0:58$ ip community-list expanded c4 permit 1738 ^65000:4_0:244_0:59$ ip community-list expanded c4 permit 1739 ^65000:4_0:244_0:60$ ip community-list expanded c4 permit 1740 ^65000:4_0:244_0:61$ ip community-list expanded c4 permit 1741 ^65000:3_0:244_0:240$ ip community-list expanded c4 permit 1742 ^65000:4_0:245_0:50$ ip community-list expanded c4 permit 1743 ^65000:4_0:245_0:51$ ip community-list expanded c4 permit 1744 ^65000:4_0:245_0:52$ ip community-list expanded c4 permit 1745 ^65000:4_0:245_0:53$ ip community-list expanded c4 permit 1746 ^65000:4_0:245_0:54$ ip community-list expanded c4 permit 1747 ^65000:4_0:245_0:55$ ip community-list expanded c4 permit 1748 ^65000:4_0:245_0:56$ ip community-list expanded c4 permit 1749 ^65000:4_0:245_0:57$ ip community-list expanded c4 permit 1750 ^65000:4_0:245_0:58$ ip community-list expanded c4 permit 1751 ^65000:4_0:245_0:59$ ip community-list expanded c4 permit 1752 ^65000:4_0:245_0:60$ ip community-list expanded c4 permit 1753 ^65000:4_0:245_0:61$ ip community-list expanded c4 permit 1754 ^65000:3_0:245_0:241$ ip community-list expanded c4 permit 1755 ^65000:4_0:246_0:50$ ip community-list expanded c4 permit 1756 ^65000:4_0:246_0:51$ ip community-list expanded c4 permit 1757 ^65000:4_0:246_0:52$ ip community-list expanded c4 permit 1758 ^65000:4_0:246_0:53$ ip community-list expanded c4 permit 1759 ^65000:4_0:246_0:54$ ip community-list expanded c4 permit 1760 ^65000:4_0:246_0:55$ ip community-list expanded c4 permit 1761 ^65000:4_0:246_0:56$ ip community-list expanded c4 permit 1762 ^65000:4_0:246_0:57$ ip community-list expanded c4 permit 1763 ^65000:4_0:246_0:58$ ip community-list expanded c4 permit 1764 ^65000:4_0:246_0:59$ ip community-list expanded c4 permit 1765 ^65000:4_0:246_0:60$ ip community-list expanded c4 permit 1766 ^65000:4_0:246_0:61$ ip community-list expanded c4 permit 1767 ^65000:3_0:246_0:242$ ip community-list expanded c4 permit 1768 ^65000:4_0:247_0:50$ ip community-list expanded c4 permit 1769 ^65000:4_0:247_0:51$ ip community-list expanded c4 permit 1770 ^65000:4_0:247_0:52$ ip community-list expanded c4 permit 1771 ^65000:4_0:247_0:53$ ip community-list expanded c4 permit 1772 ^65000:4_0:247_0:54$ ip community-list expanded c4 permit 1773 ^65000:4_0:247_0:55$ ip community-list expanded c4 permit 1774 ^65000:4_0:247_0:56$ ip community-list expanded c4 permit 1775 ^65000:4_0:247_0:57$ ip community-list expanded c4 permit 1776 ^65000:4_0:247_0:58$ ip community-list expanded c4 permit 1777 ^65000:4_0:247_0:59$ ip community-list expanded c4 permit 1778 ^65000:4_0:247_0:60$ ip community-list expanded c4 permit 1779 ^65000:4_0:247_0:61$ ip community-list expanded c4 permit 1780 ^65000:3_0:247_0:243$ ip community-list expanded c4 permit 1781 ^65000:4_0:248_0:50$ ip community-list expanded c4 permit 1782 ^65000:4_0:248_0:51$ ip community-list expanded c4 permit 1783 ^65000:4_0:248_0:52$ ip community-list expanded c4 permit 1784 ^65000:4_0:248_0:53$ ip community-list expanded c4 permit 1785 ^65000:4_0:248_0:54$ ip community-list expanded c4 permit 1786 ^65000:4_0:248_0:55$ ip community-list expanded c4 permit 1787 ^65000:4_0:248_0:56$ ip community-list expanded c4 permit 1788 ^65000:4_0:248_0:57$ ip community-list expanded c4 permit 1789 ^65000:4_0:248_0:58$ ip community-list expanded c4 permit 1790 ^65000:4_0:248_0:59$ ip community-list expanded c4 permit 1791 ^65000:4_0:248_0:60$ ip community-list expanded c4 permit 1792 ^65000:4_0:248_0:61$ ip community-list expanded c4 permit 1793 ^65000:4_0:248_0:62$ ip community-list expanded c4 permit 1794 ^65000:3_0:248_0:244$ ip community-list expanded c4 permit 1795 ^65000:4_0:249_0:50$ ip community-list expanded c4 permit 1796 ^65000:4_0:249_0:51$ ip community-list expanded c4 permit 1797 ^65000:4_0:249_0:52$ ip community-list expanded c4 permit 1798 ^65000:4_0:249_0:53$ ip community-list expanded c4 permit 1799 ^65000:4_0:249_0:54$ ip community-list expanded c4 permit 1800 ^65000:4_0:249_0:55$ ip community-list expanded c4 permit 1801 ^65000:4_0:249_0:56$ ip community-list expanded c4 permit 1802 ^65000:4_0:249_0:57$ ip community-list expanded c4 permit 1803 ^65000:4_0:249_0:58$ ip community-list expanded c4 permit 1804 ^65000:4_0:249_0:59$ ip community-list expanded c4 permit 1805 ^65000:4_0:249_0:60$ ip community-list expanded c4 permit 1806 ^65000:4_0:249_0:61$ ip community-list expanded c4 permit 1807 ^65000:4_0:249_0:62$ ip community-list expanded c4 permit 1808 ^65000:3_0:249_0:245$ ip community-list expanded c4 permit 1809 ^65000:4_0:250_0:51$ ip community-list expanded c4 permit 1810 ^65000:4_0:250_0:52$ ip community-list expanded c4 permit 1811 ^65000:4_0:250_0:53$ ip community-list expanded c4 permit 1812 ^65000:4_0:250_0:54$ ip community-list expanded c4 permit 1813 ^65000:4_0:250_0:55$ ip community-list expanded c4 permit 1814 ^65000:4_0:250_0:56$ ip community-list expanded c4 permit 1815 ^65000:4_0:250_0:57$ ip community-list expanded c4 permit 1816 ^65000:4_0:250_0:58$ ip community-list expanded c4 permit 1817 ^65000:4_0:250_0:59$ ip community-list expanded c4 permit 1818 ^65000:4_0:250_0:60$ ip community-list expanded c4 permit 1819 ^65000:4_0:250_0:61$ ip community-list expanded c4 permit 1820 ^65000:4_0:250_0:62$ ip community-list expanded c4 permit 1821 ^65000:3_0:250_0:246$ ip community-list expanded c4 permit 1822 ^65000:4_0:251_0:51$ ip community-list expanded c4 permit 1823 ^65000:4_0:251_0:52$ ip community-list expanded c4 permit 1824 ^65000:4_0:251_0:53$ ip community-list expanded c4 permit 1825 ^65000:4_0:251_0:54$ ip community-list expanded c4 permit 1826 ^65000:4_0:251_0:55$ ip community-list expanded c4 permit 1827 ^65000:4_0:251_0:56$ ip community-list expanded c4 permit 1828 ^65000:4_0:251_0:57$ ip community-list expanded c4 permit 1829 ^65000:4_0:251_0:58$ ip community-list expanded c4 permit 1830 ^65000:4_0:251_0:59$ ip community-list expanded c4 permit 1831 ^65000:4_0:251_0:60$ ip community-list expanded c4 permit 1832 ^65000:4_0:251_0:61$ ip community-list expanded c4 permit 1833 ^65000:4_0:251_0:62$ ip community-list expanded c4 permit 1834 ^65000:3_0:251_0:247$ ip community-list expanded c4 permit 1835 ^65000:4_0:252_0:51$ ip community-list expanded c4 permit 1836 ^65000:4_0:252_0:52$ ip community-list expanded c4 permit 1837 ^65000:4_0:252_0:53$ ip community-list expanded c4 permit 1838 ^65000:4_0:252_0:54$ ip community-list expanded c4 permit 1839 ^65000:4_0:252_0:55$ ip community-list expanded c4 permit 1840 ^65000:4_0:252_0:56$ ip community-list expanded c4 permit 1841 ^65000:4_0:252_0:57$ ip community-list expanded c4 permit 1842 ^65000:4_0:252_0:58$ ip community-list expanded c4 permit 1843 ^65000:4_0:252_0:59$ ip community-list expanded c4 permit 1844 ^65000:4_0:252_0:60$ ip community-list expanded c4 permit 1845 ^65000:4_0:252_0:61$ ip community-list expanded c4 permit 1846 ^65000:4_0:252_0:62$ ip community-list expanded c4 permit 1847 ^65000:4_0:252_0:63$ ip community-list expanded c4 permit 1848 ^65000:3_0:252_0:248$ ip community-list expanded c4 permit 1849 ^65000:4_0:253_0:51$ ip community-list expanded c4 permit 1850 ^65000:4_0:253_0:52$ ip community-list expanded c4 permit 1851 ^65000:4_0:253_0:53$ ip community-list expanded c4 permit 1852 ^65000:4_0:253_0:54$ ip community-list expanded c4 permit 1853 ^65000:4_0:253_0:55$ ip community-list expanded c4 permit 1854 ^65000:4_0:253_0:56$ ip community-list expanded c4 permit 1855 ^65000:4_0:253_0:57$ ip community-list expanded c4 permit 1856 ^65000:4_0:253_0:58$ ip community-list expanded c4 permit 1857 ^65000:4_0:253_0:59$ ip community-list expanded c4 permit 1858 ^65000:4_0:253_0:60$ ip community-list expanded c4 permit 1859 ^65000:4_0:253_0:61$ ip community-list expanded c4 permit 1860 ^65000:4_0:253_0:62$ ip community-list expanded c4 permit 1861 ^65000:4_0:253_0:63$ ip community-list expanded c4 permit 1862 ^65000:3_0:253_0:249$ ip community-list expanded c4 permit 1863 ^65000:4_0:254_0:51$ ip community-list expanded c4 permit 1864 ^65000:4_0:254_0:52$ ip community-list expanded c4 permit 1865 ^65000:4_0:254_0:53$ ip community-list expanded c4 permit 1866 ^65000:4_0:254_0:54$ ip community-list expanded c4 permit 1867 ^65000:4_0:254_0:55$ ip community-list expanded c4 permit 1868 ^65000:4_0:254_0:56$ ip community-list expanded c4 permit 1869 ^65000:4_0:254_0:57$ ip community-list expanded c4 permit 1870 ^65000:4_0:254_0:58$ ip community-list expanded c4 permit 1871 ^65000:4_0:254_0:59$ ip community-list expanded c4 permit 1872 ^65000:4_0:254_0:60$ ip community-list expanded c4 permit 1873 ^65000:4_0:254_0:61$ ip community-list expanded c4 permit 1874 ^65000:4_0:254_0:62$ ip community-list expanded c4 permit 1875 ^65000:4_0:254_0:63$ ip community-list expanded c4 permit 1876 ^65000:3_0:254_0:250$ ip community-list expanded c4 permit 1877 ^65000:4_0:255_0:52$ ip community-list expanded c4 permit 1878 ^65000:4_0:255_0:53$ ip community-list expanded c4 permit 1879 ^65000:4_0:255_0:54$ ip community-list expanded c4 permit 1880 ^65000:4_0:255_0:55$ ip community-list expanded c4 permit 1881 ^65000:4_0:255_0:56$ ip community-list expanded c4 permit 1882 ^65000:4_0:255_0:57$ ip community-list expanded c4 permit 1883 ^65000:4_0:255_0:58$ ip community-list expanded c4 permit 1884 ^65000:4_0:255_0:59$ ip community-list expanded c4 permit 1885 ^65000:4_0:255_0:60$ ip community-list expanded c4 permit 1886 ^65000:4_0:255_0:61$ ip community-list expanded c4 permit 1887 ^65000:4_0:255_0:62$ ip community-list expanded c4 permit 1888 ^65000:4_0:255_0:63$ ip community-list expanded c4 permit 1889 ^65000:3_0:255_0:251$ ip community-list expanded c4 permit 1890 ^65000:4_0:256_0:52$ ip community-list expanded c4 permit 1891 ^65000:4_0:256_0:53$ ip community-list expanded c4 permit 1892 ^65000:4_0:256_0:54$ ip community-list expanded c4 permit 1893 ^65000:4_0:256_0:55$ ip community-list expanded c4 permit 1894 ^65000:4_0:256_0:56$ ip community-list expanded c4 permit 1895 ^65000:4_0:256_0:57$ ip community-list expanded c4 permit 1896 ^65000:4_0:256_0:58$ ip community-list expanded c4 permit 1897 ^65000:4_0:256_0:59$ ip community-list expanded c4 permit 1898 ^65000:4_0:256_0:60$ ip community-list expanded c4 permit 1899 ^65000:4_0:256_0:61$ ip community-list expanded c4 permit 1900 ^65000:4_0:256_0:62$ ip community-list expanded c4 permit 1901 ^65000:4_0:256_0:63$ ip community-list expanded c4 permit 1902 ^65000:4_0:256_0:64$ ip community-list expanded c4 permit 1903 ^65000:3_0:256_0:252$ route-map calculator permit 25143 match community 1_1_3 2_1_4 1_2_2 2_2_2 c4_4_1 set community 0:4 route-map calculator permit 25144 match community c3_5_1 c3_6_2 c3_7_3 c4_8_2 c3_8_4 set community 0:4 route-map calculator permit 25145 match community c4_9_2 c3_9_5 c3_10_6 c3_11_7 c4_12_3 set community 0:4 route-map calculator permit 25146 match community c3_12_8 c4_13_3 c3_13_9 c4_14_3 c3_14_10 set community 0:4 route-map calculator permit 25147 match community c3_15_11 c4_16_4 c3_16_12 c4_17_4 c3_17_13 set community 0:4 route-map calculator permit 25148 match community c4_18_4 c3_18_14 c4_19_4 c3_19_15 c4_20_5 set community 0:4 route-map calculator permit 25149 match community c3_20_16 c4_21_5 c3_21_17 c4_22_5 c3_22_18 set community 0:4 route-map calculator permit 25150 match community c4_23_5 c3_23_19 c4_24_5 c4_24_6 c3_24_20 set community 0:4 route-map calculator permit 25151 match community c4_25_6 c3_25_21 c4_26_6 c3_26_22 c4_27_6 set community 0:4 route-map calculator permit 25152 match community c3_27_23 c4_28_6 c4_28_7 c3_28_24 c4_29_6 set community 0:4 route-map calculator permit 25153 match community c4_29_7 c3_29_25 c4_30_7 c3_30_26 c4_31_7 set community 0:4 route-map calculator permit 25154 match community c3_31_27 c4_32_7 c4_32_8 c3_32_28 c4_33_7 set community 0:4 route-map calculator permit 25155 match community c4_33_8 c3_33_29 c4_34_7 c4_34_8 c3_34_30 set community 0:4 route-map calculator permit 25156 match community c4_35_8 c3_35_31 c4_36_8 c4_36_9 c3_36_32 set community 0:4 route-map calculator permit 25157 match community c4_37_8 c4_37_9 c3_37_33 c4_38_8 c4_38_9 set community 0:4 route-map calculator permit 25158 match community c3_38_34 c4_39_8 c4_39_9 c3_39_35 c4_40_9 set community 0:4 route-map calculator permit 25159 match community c4_40_10 c3_40_36 c4_41_9 c4_41_10 c3_41_37 set community 0:4 route-map calculator permit 25160 match community c4_42_9 c4_42_10 c3_42_38 c4_43_9 c4_43_10 set community 0:4 route-map calculator permit 25161 match community c3_43_39 c4_44_9 c4_44_10 c4_44_11 c3_44_40 set community 0:4 route-map calculator permit 25162 match community c4_45_10 c4_45_11 c3_45_41 c4_46_10 c4_46_11 set community 0:4 route-map calculator permit 25163 match community c3_46_42 c4_47_10 c4_47_11 c3_47_43 c4_48_10 set community 0:4 route-map calculator permit 25164 match community c4_48_11 c4_48_12 c3_48_44 c4_49_10 c4_49_11 set community 0:4 route-map calculator permit 25165 match community c4_49_12 c3_49_45 c4_50_11 c4_50_12 c3_50_46 set community 0:4 route-map calculator permit 25166 match community c4_51_11 c4_51_12 c3_51_47 c4_52_11 c4_52_12 set community 0:4 route-map calculator permit 25167 match community c4_52_13 c3_52_48 c4_53_11 c4_53_12 c4_53_13 set community 0:4 route-map calculator permit 25168 match community c3_53_49 c4_54_11 c4_54_12 c4_54_13 c3_54_50 set community 0:4 route-map calculator permit 25169 match community c4_55_12 c4_55_13 c3_55_51 c4_56_12 c4_56_13 set community 0:4 route-map calculator permit 25170 match community c4_56_14 c3_56_52 c4_57_12 c4_57_13 c4_57_14 set community 0:4 route-map calculator permit 25171 match community c3_57_53 c4_58_12 c4_58_13 c4_58_14 c3_58_54 set community 0:4 route-map calculator permit 25172 match community c4_59_12 c4_59_13 c4_59_14 c3_59_55 c4_60_13 set community 0:4 route-map calculator permit 25173 match community c4_60_14 c4_60_15 c3_60_56 c4_61_13 c4_61_14 set community 0:4 route-map calculator permit 25174 match community c4_61_15 c3_61_57 c4_62_13 c4_62_14 c4_62_15 set community 0:4 route-map calculator permit 25175 match community c3_62_58 c4_63_13 c4_63_14 c4_63_15 c3_63_59 set community 0:4 route-map calculator permit 25176 match community c4_64_13 c4_64_14 c4_64_15 c4_64_16 c3_64_60 set community 0:4 route-map calculator permit 25177 match community c4_65_14 c4_65_15 c4_65_16 c3_65_61 c4_66_14 set community 0:4 route-map calculator permit 25178 match community c4_66_15 c4_66_16 c3_66_62 c4_67_14 c4_67_15 set community 0:4 route-map calculator permit 25179 match community c4_67_16 c3_67_63 c4_68_14 c4_68_15 c4_68_16 set community 0:4 route-map calculator permit 25180 match community c4_68_17 c3_68_64 c4_69_14 c4_69_15 c4_69_16 set community 0:4 route-map calculator permit 25181 match community c4_69_17 c3_69_65 c4_70_15 c4_70_16 c4_70_17 set community 0:4 route-map calculator permit 25182 match community c3_70_66 c4_71_15 c4_71_16 c4_71_17 c3_71_67 set community 0:4 route-map calculator permit 25183 match community c4_72_15 c4_72_16 c4_72_17 c4_72_18 c3_72_68 set community 0:4 route-map calculator permit 25184 match community c4_73_15 c4_73_16 c4_73_17 c4_73_18 c3_73_69 set community 0:4 route-map calculator permit 25185 match community c4_74_15 c4_74_16 c4_74_17 c4_74_18 c3_74_70 set community 0:4 route-map calculator permit 25186 match community c4_75_16 c4_75_17 c4_75_18 c3_75_71 c4_76_16 set community 0:4 route-map calculator permit 25187 match community c4_76_17 c4_76_18 c4_76_19 c3_76_72 c4_77_16 set community 0:4 route-map calculator permit 25188 match community c4_77_17 c4_77_18 c4_77_19 c3_77_73 c4_78_16 set community 0:4 route-map calculator permit 25189 match community c4_78_17 c4_78_18 c4_78_19 c3_78_74 c4_79_16 set community 0:4 route-map calculator permit 25190 match community c4_79_17 c4_79_18 c4_79_19 c3_79_75 c4_80_17 set community 0:4 route-map calculator permit 25191 match community c4_80_18 c4_80_19 c4_80_20 c3_80_76 c4_81_17 set community 0:4 route-map calculator permit 25192 match community c4_81_18 c4_81_19 c4_81_20 c3_81_77 c4_82_17 set community 0:4 route-map calculator permit 25193 match community c4_82_18 c4_82_19 c4_82_20 c3_82_78 c4_83_17 set community 0:4 route-map calculator permit 25194 match community c4_83_18 c4_83_19 c4_83_20 c3_83_79 c4_84_17 set community 0:4 route-map calculator permit 25195 match community c4_84_18 c4_84_19 c4_84_20 c4_84_21 c3_84_80 set community 0:4 route-map calculator permit 25196 match community c4_85_18 c4_85_19 c4_85_20 c4_85_21 c3_85_81 set community 0:4 route-map calculator permit 25197 match community c4_86_18 c4_86_19 c4_86_20 c4_86_21 c3_86_82 set community 0:4 route-map calculator permit 25198 match community c4_87_18 c4_87_19 c4_87_20 c4_87_21 c3_87_83 set community 0:4 route-map calculator permit 25199 match community c4_88_18 c4_88_19 c4_88_20 c4_88_21 c4_88_22 set community 0:4 route-map calculator permit 25200 match community c3_88_84 c4_89_18 c4_89_19 c4_89_20 c4_89_21 set community 0:4 route-map calculator permit 25201 match community c4_89_22 c3_89_85 c4_90_19 c4_90_20 c4_90_21 set community 0:4 route-map calculator permit 25202 match community c4_90_22 c3_90_86 c4_91_19 c4_91_20 c4_91_21 set community 0:4 route-map calculator permit 25203 match community c4_91_22 c3_91_87 c4_92_19 c4_92_20 c4_92_21 set community 0:4 route-map calculator permit 25204 match community c4_92_22 c4_92_23 c3_92_88 c4_93_19 c4_93_20 set community 0:4 route-map calculator permit 25205 match community c4_93_21 c4_93_22 c4_93_23 c3_93_89 c4_94_19 set community 0:4 route-map calculator permit 25206 match community c4_94_20 c4_94_21 c4_94_22 c4_94_23 c3_94_90 set community 0:4 route-map calculator permit 25207 match community c4_95_20 c4_95_21 c4_95_22 c4_95_23 c3_95_91 set community 0:4 route-map calculator permit 25208 match community c4_96_20 c4_96_21 c4_96_22 c4_96_23 c4_96_24 set community 0:4 route-map calculator permit 25209 match community c3_96_92 c4_97_20 c4_97_21 c4_97_22 c4_97_23 set community 0:4 route-map calculator permit 25210 match community c4_97_24 c3_97_93 c4_98_20 c4_98_21 c4_98_22 set community 0:4 route-map calculator permit 25211 match community c4_98_23 c4_98_24 c3_98_94 c4_99_20 c4_99_21 set community 0:4 route-map calculator permit 25212 match community c4_99_22 c4_99_23 c4_99_24 c3_99_95 c4_100_21 set community 0:4 route-map calculator permit 25213 match community c4_100_22 c4_100_23 c4_100_24 c4_100_25 c3_100_96 set community 0:4 route-map calculator permit 25214 match community c4_101_21 c4_101_22 c4_101_23 c4_101_24 c4_101_25 set community 0:4 route-map calculator permit 25215 match community c3_101_97 c4_102_21 c4_102_22 c4_102_23 c4_102_24 set community 0:4 route-map calculator permit 25216 match community c4_102_25 c3_102_98 c4_103_21 c4_103_22 c4_103_23 set community 0:4 route-map calculator permit 25217 match community c4_103_24 c4_103_25 c3_103_99 c4_104_21 c4_104_22 set community 0:4 route-map calculator permit 25218 match community c4_104_23 c4_104_24 c4_104_25 c4_104_26 c3_104_100 set community 0:4 route-map calculator permit 25219 match community c4_105_22 c4_105_23 c4_105_24 c4_105_25 c4_105_26 set community 0:4 route-map calculator permit 25220 match community c3_105_101 c4_106_22 c4_106_23 c4_106_24 c4_106_25 set community 0:4 route-map calculator permit 25221 match community c4_106_26 c3_106_102 c4_107_22 c4_107_23 c4_107_24 set community 0:4 route-map calculator permit 25222 match community c4_107_25 c4_107_26 c3_107_103 c4_108_22 c4_108_23 set community 0:4 route-map calculator permit 25223 match community c4_108_24 c4_108_25 c4_108_26 c4_108_27 c3_108_104 set community 0:4 route-map calculator permit 25224 match community c4_109_22 c4_109_23 c4_109_24 c4_109_25 c4_109_26 set community 0:4 route-map calculator permit 25225 match community c4_109_27 c3_109_105 c4_110_23 c4_110_24 c4_110_25 set community 0:4 route-map calculator permit 25226 match community c4_110_26 c4_110_27 c3_110_106 c4_111_23 c4_111_24 set community 0:4 route-map calculator permit 25227 match community c4_111_25 c4_111_26 c4_111_27 c3_111_107 c4_112_23 set community 0:4 route-map calculator permit 25228 match community c4_112_24 c4_112_25 c4_112_26 c4_112_27 c4_112_28 set community 0:4 route-map calculator permit 25229 match community c3_112_108 c4_113_23 c4_113_24 c4_113_25 c4_113_26 set community 0:4 route-map calculator permit 25230 match community c4_113_27 c4_113_28 c3_113_109 c4_114_23 c4_114_24 set community 0:4 route-map calculator permit 25231 match community c4_114_25 c4_114_26 c4_114_27 c4_114_28 c3_114_110 set community 0:4 route-map calculator permit 25232 match community c4_115_24 c4_115_25 c4_115_26 c4_115_27 c4_115_28 set community 0:4 route-map calculator permit 25233 match community c3_115_111 c4_116_24 c4_116_25 c4_116_26 c4_116_27 set community 0:4 route-map calculator permit 25234 match community c4_116_28 c4_116_29 c3_116_112 c4_117_24 c4_117_25 set community 0:4 route-map calculator permit 25235 match community c4_117_26 c4_117_27 c4_117_28 c4_117_29 c3_117_113 set community 0:4 route-map calculator permit 25236 match community c4_118_24 c4_118_25 c4_118_26 c4_118_27 c4_118_28 set community 0:4 route-map calculator permit 25237 match community c4_118_29 c3_118_114 c4_119_24 c4_119_25 c4_119_26 set community 0:4 route-map calculator permit 25238 match community c4_119_27 c4_119_28 c4_119_29 c3_119_115 c4_120_25 set community 0:4 route-map calculator permit 25239 match community c4_120_26 c4_120_27 c4_120_28 c4_120_29 c4_120_30 set community 0:4 route-map calculator permit 25240 match community c3_120_116 c4_121_25 c4_121_26 c4_121_27 c4_121_28 set community 0:4 route-map calculator permit 25241 match community c4_121_29 c4_121_30 c3_121_117 c4_122_25 c4_122_26 set community 0:4 route-map calculator permit 25242 match community c4_122_27 c4_122_28 c4_122_29 c4_122_30 c3_122_118 set community 0:4 route-map calculator permit 25243 match community c4_123_25 c4_123_26 c4_123_27 c4_123_28 c4_123_29 set community 0:4 route-map calculator permit 25244 match community c4_123_30 c3_123_119 c4_124_25 c4_124_26 c4_124_27 set community 0:4 route-map calculator permit 25245 match community c4_124_28 c4_124_29 c4_124_30 c4_124_31 c3_124_120 set community 0:4 route-map calculator permit 25246 match community c4_125_26 c4_125_27 c4_125_28 c4_125_29 c4_125_30 set community 0:4 route-map calculator permit 25247 match community c4_125_31 c3_125_121 c4_126_26 c4_126_27 c4_126_28 set community 0:4 route-map calculator permit 25248 match community c4_126_29 c4_126_30 c4_126_31 c3_126_122 c4_127_26 set community 0:4 route-map calculator permit 25249 match community c4_127_27 c4_127_28 c4_127_29 c4_127_30 c4_127_31 set community 0:4 route-map calculator permit 25250 match community c3_127_123 c4_128_26 c4_128_27 c4_128_28 c4_128_29 set community 0:4 route-map calculator permit 25251 match community c4_128_30 c4_128_31 c4_128_32 c3_128_124 c4_129_26 set community 0:4 route-map calculator permit 25252 match community c4_129_27 c4_129_28 c4_129_29 c4_129_30 c4_129_31 set community 0:4 route-map calculator permit 25253 match community c4_129_32 c3_129_125 c4_130_27 c4_130_28 c4_130_29 set community 0:4 route-map calculator permit 25254 match community c4_130_30 c4_130_31 c4_130_32 c3_130_126 c4_131_27 set community 0:4 route-map calculator permit 25255 match community c4_131_28 c4_131_29 c4_131_30 c4_131_31 c4_131_32 set community 0:4 route-map calculator permit 25256 match community c3_131_127 c4_132_27 c4_132_28 c4_132_29 c4_132_30 set community 0:4 route-map calculator permit 25257 match community c4_132_31 c4_132_32 c4_132_33 c3_132_128 c4_133_27 set community 0:4 route-map calculator permit 25258 match community c4_133_28 c4_133_29 c4_133_30 c4_133_31 c4_133_32 set community 0:4 route-map calculator permit 25259 match community c4_133_33 c3_133_129 c4_134_27 c4_134_28 c4_134_29 set community 0:4 route-map calculator permit 25260 match community c4_134_30 c4_134_31 c4_134_32 c4_134_33 c3_134_130 set community 0:4 route-map calculator permit 25261 match community c4_135_28 c4_135_29 c4_135_30 c4_135_31 c4_135_32 set community 0:4 route-map calculator permit 25262 match community c4_135_33 c3_135_131 c4_136_28 c4_136_29 c4_136_30 set community 0:4 route-map calculator permit 25263 match community c4_136_31 c4_136_32 c4_136_33 c4_136_34 c3_136_132 set community 0:4 route-map calculator permit 25264 match community c4_137_28 c4_137_29 c4_137_30 c4_137_31 c4_137_32 set community 0:4 route-map calculator permit 25265 match community c4_137_33 c4_137_34 c3_137_133 c4_138_28 c4_138_29 set community 0:4 route-map calculator permit 25266 match community c4_138_30 c4_138_31 c4_138_32 c4_138_33 c4_138_34 set community 0:4 route-map calculator permit 25267 match community c3_138_134 c4_139_28 c4_139_29 c4_139_30 c4_139_31 set community 0:4 route-map calculator permit 25268 match community c4_139_32 c4_139_33 c4_139_34 c3_139_135 c4_140_29 set community 0:4 route-map calculator permit 25269 match community c4_140_30 c4_140_31 c4_140_32 c4_140_33 c4_140_34 set community 0:4 route-map calculator permit 25270 match community c4_140_35 c3_140_136 c4_141_29 c4_141_30 c4_141_31 set community 0:4 route-map calculator permit 25271 match community c4_141_32 c4_141_33 c4_141_34 c4_141_35 c3_141_137 set community 0:4 route-map calculator permit 25272 match community c4_142_29 c4_142_30 c4_142_31 c4_142_32 c4_142_33 set community 0:4 route-map calculator permit 25273 match community c4_142_34 c4_142_35 c3_142_138 c4_143_29 c4_143_30 set community 0:4 route-map calculator permit 25274 match community c4_143_31 c4_143_32 c4_143_33 c4_143_34 c4_143_35 set community 0:4 route-map calculator permit 25275 match community c3_143_139 c4_144_29 c4_144_30 c4_144_31 c4_144_32 set community 0:4 route-map calculator permit 25276 match community c4_144_33 c4_144_34 c4_144_35 c4_144_36 c3_144_140 set community 0:4 route-map calculator permit 25277 match community c4_145_30 c4_145_31 c4_145_32 c4_145_33 c4_145_34 set community 0:4 route-map calculator permit 25278 match community c4_145_35 c4_145_36 c3_145_141 c4_146_30 c4_146_31 set community 0:4 route-map calculator permit 25279 match community c4_146_32 c4_146_33 c4_146_34 c4_146_35 c4_146_36 set community 0:4 route-map calculator permit 25280 match community c3_146_142 c4_147_30 c4_147_31 c4_147_32 c4_147_33 set community 0:4 route-map calculator permit 25281 match community c4_147_34 c4_147_35 c4_147_36 c3_147_143 c4_148_30 set community 0:4 route-map calculator permit 25282 match community c4_148_31 c4_148_32 c4_148_33 c4_148_34 c4_148_35 set community 0:4 route-map calculator permit 25283 match community c4_148_36 c4_148_37 c3_148_144 c4_149_30 c4_149_31 set community 0:4 route-map calculator permit 25284 match community c4_149_32 c4_149_33 c4_149_34 c4_149_35 c4_149_36 set community 0:4 route-map calculator permit 25285 match community c4_149_37 c3_149_145 c4_150_31 c4_150_32 c4_150_33 set community 0:4 route-map calculator permit 25286 match community c4_150_34 c4_150_35 c4_150_36 c4_150_37 c3_150_146 set community 0:4 route-map calculator permit 25287 match community c4_151_31 c4_151_32 c4_151_33 c4_151_34 c4_151_35 set community 0:4 route-map calculator permit 25288 match community c4_151_36 c4_151_37 c3_151_147 c4_152_31 c4_152_32 set community 0:4 route-map calculator permit 25289 match community c4_152_33 c4_152_34 c4_152_35 c4_152_36 c4_152_37 set community 0:4 route-map calculator permit 25290 match community c4_152_38 c3_152_148 c4_153_31 c4_153_32 c4_153_33 set community 0:4 route-map calculator permit 25291 match community c4_153_34 c4_153_35 c4_153_36 c4_153_37 c4_153_38 set community 0:4 route-map calculator permit 25292 match community c3_153_149 c4_154_31 c4_154_32 c4_154_33 c4_154_34 set community 0:4 route-map calculator permit 25293 match community c4_154_35 c4_154_36 c4_154_37 c4_154_38 c3_154_150 set community 0:4 route-map calculator permit 25294 match community c4_155_32 c4_155_33 c4_155_34 c4_155_35 c4_155_36 set community 0:4 route-map calculator permit 25295 match community c4_155_37 c4_155_38 c3_155_151 c4_156_32 c4_156_33 set community 0:4 route-map calculator permit 25296 match community c4_156_34 c4_156_35 c4_156_36 c4_156_37 c4_156_38 set community 0:4 route-map calculator permit 25297 match community c4_156_39 c3_156_152 c4_157_32 c4_157_33 c4_157_34 set community 0:4 route-map calculator permit 25298 match community c4_157_35 c4_157_36 c4_157_37 c4_157_38 c4_157_39 set community 0:4 route-map calculator permit 25299 match community c3_157_153 c4_158_32 c4_158_33 c4_158_34 c4_158_35 set community 0:4 route-map calculator permit 25300 match community c4_158_36 c4_158_37 c4_158_38 c4_158_39 c3_158_154 set community 0:4 route-map calculator permit 25301 match community c4_159_32 c4_159_33 c4_159_34 c4_159_35 c4_159_36 set community 0:4 route-map calculator permit 25302 match community c4_159_37 c4_159_38 c4_159_39 c3_159_155 c4_160_33 set community 0:4 route-map calculator permit 25303 match community c4_160_34 c4_160_35 c4_160_36 c4_160_37 c4_160_38 set community 0:4 route-map calculator permit 25304 match community c4_160_39 c4_160_40 c3_160_156 c4_161_33 c4_161_34 set community 0:4 route-map calculator permit 25305 match community c4_161_35 c4_161_36 c4_161_37 c4_161_38 c4_161_39 set community 0:4 route-map calculator permit 25306 match community c4_161_40 c3_161_157 c4_162_33 c4_162_34 c4_162_35 set community 0:4 route-map calculator permit 25307 match community c4_162_36 c4_162_37 c4_162_38 c4_162_39 c4_162_40 set community 0:4 route-map calculator permit 25308 match community c3_162_158 c4_163_33 c4_163_34 c4_163_35 c4_163_36 set community 0:4 route-map calculator permit 25309 match community c4_163_37 c4_163_38 c4_163_39 c4_163_40 c3_163_159 set community 0:4 route-map calculator permit 25310 match community c4_164_33 c4_164_34 c4_164_35 c4_164_36 c4_164_37 set community 0:4 route-map calculator permit 25311 match community c4_164_38 c4_164_39 c4_164_40 c4_164_41 c3_164_160 set community 0:4 route-map calculator permit 25312 match community c4_165_34 c4_165_35 c4_165_36 c4_165_37 c4_165_38 set community 0:4 route-map calculator permit 25313 match community c4_165_39 c4_165_40 c4_165_41 c3_165_161 c4_166_34 set community 0:4 route-map calculator permit 25314 match community c4_166_35 c4_166_36 c4_166_37 c4_166_38 c4_166_39 set community 0:4 route-map calculator permit 25315 match community c4_166_40 c4_166_41 c3_166_162 c4_167_34 c4_167_35 set community 0:4 route-map calculator permit 25316 match community c4_167_36 c4_167_37 c4_167_38 c4_167_39 c4_167_40 set community 0:4 route-map calculator permit 25317 match community c4_167_41 c3_167_163 c4_168_34 c4_168_35 c4_168_36 set community 0:4 route-map calculator permit 25318 match community c4_168_37 c4_168_38 c4_168_39 c4_168_40 c4_168_41 set community 0:4 route-map calculator permit 25319 match community c4_168_42 c3_168_164 c4_169_34 c4_169_35 c4_169_36 set community 0:4 route-map calculator permit 25320 match community c4_169_37 c4_169_38 c4_169_39 c4_169_40 c4_169_41 set community 0:4 route-map calculator permit 25321 match community c4_169_42 c3_169_165 c4_170_35 c4_170_36 c4_170_37 set community 0:4 route-map calculator permit 25322 match community c4_170_38 c4_170_39 c4_170_40 c4_170_41 c4_170_42 set community 0:4 route-map calculator permit 25323 match community c3_170_166 c4_171_35 c4_171_36 c4_171_37 c4_171_38 set community 0:4 route-map calculator permit 25324 match community c4_171_39 c4_171_40 c4_171_41 c4_171_42 c3_171_167 set community 0:4 route-map calculator permit 25325 match community c4_172_35 c4_172_36 c4_172_37 c4_172_38 c4_172_39 set community 0:4 route-map calculator permit 25326 match community c4_172_40 c4_172_41 c4_172_42 c4_172_43 c3_172_168 set community 0:4 route-map calculator permit 25327 match community c4_173_35 c4_173_36 c4_173_37 c4_173_38 c4_173_39 set community 0:4 route-map calculator permit 25328 match community c4_173_40 c4_173_41 c4_173_42 c4_173_43 c3_173_169 set community 0:4 route-map calculator permit 25329 match community c4_174_35 c4_174_36 c4_174_37 c4_174_38 c4_174_39 set community 0:4 route-map calculator permit 25330 match community c4_174_40 c4_174_41 c4_174_42 c4_174_43 c3_174_170 set community 0:4 route-map calculator permit 25331 match community c4_175_36 c4_175_37 c4_175_38 c4_175_39 c4_175_40 set community 0:4 route-map calculator permit 25332 match community c4_175_41 c4_175_42 c4_175_43 c3_175_171 c4_176_36 set community 0:4 route-map calculator permit 25333 match community c4_176_37 c4_176_38 c4_176_39 c4_176_40 c4_176_41 set community 0:4 route-map calculator permit 25334 match community c4_176_42 c4_176_43 c4_176_44 c3_176_172 c4_177_36 set community 0:4 route-map calculator permit 25335 match community c4_177_37 c4_177_38 c4_177_39 c4_177_40 c4_177_41 set community 0:4 route-map calculator permit 25336 match community c4_177_42 c4_177_43 c4_177_44 c3_177_173 c4_178_36 set community 0:4 route-map calculator permit 25337 match community c4_178_37 c4_178_38 c4_178_39 c4_178_40 c4_178_41 set community 0:4 route-map calculator permit 25338 match community c4_178_42 c4_178_43 c4_178_44 c3_178_174 c4_179_36 set community 0:4 route-map calculator permit 25339 match community c4_179_37 c4_179_38 c4_179_39 c4_179_40 c4_179_41 set community 0:4 route-map calculator permit 25340 match community c4_179_42 c4_179_43 c4_179_44 c3_179_175 c4_180_37 set community 0:4 route-map calculator permit 25341 match community c4_180_38 c4_180_39 c4_180_40 c4_180_41 c4_180_42 set community 0:4 route-map calculator permit 25342 match community c4_180_43 c4_180_44 c4_180_45 c3_180_176 c4_181_37 set community 0:4 route-map calculator permit 25343 match community c4_181_38 c4_181_39 c4_181_40 c4_181_41 c4_181_42 set community 0:4 route-map calculator permit 25344 match community c4_181_43 c4_181_44 c4_181_45 c3_181_177 c4_182_37 set community 0:4 route-map calculator permit 25345 match community c4_182_38 c4_182_39 c4_182_40 c4_182_41 c4_182_42 set community 0:4 route-map calculator permit 25346 match community c4_182_43 c4_182_44 c4_182_45 c3_182_178 c4_183_37 set community 0:4 route-map calculator permit 25347 match community c4_183_38 c4_183_39 c4_183_40 c4_183_41 c4_183_42 set community 0:4 route-map calculator permit 25348 match community c4_183_43 c4_183_44 c4_183_45 c3_183_179 c4_184_37 set community 0:4 route-map calculator permit 25349 match community c4_184_38 c4_184_39 c4_184_40 c4_184_41 c4_184_42 set community 0:4 route-map calculator permit 25350 match community c4_184_43 c4_184_44 c4_184_45 c4_184_46 c3_184_180 set community 0:4 route-map calculator permit 25351 match community c4_185_38 c4_185_39 c4_185_40 c4_185_41 c4_185_42 set community 0:4 route-map calculator permit 25352 match community c4_185_43 c4_185_44 c4_185_45 c4_185_46 c3_185_181 set community 0:4 route-map calculator permit 25353 match community c4_186_38 c4_186_39 c4_186_40 c4_186_41 c4_186_42 set community 0:4 route-map calculator permit 25354 match community c4_186_43 c4_186_44 c4_186_45 c4_186_46 c3_186_182 set community 0:4 route-map calculator permit 25355 match community c4_187_38 c4_187_39 c4_187_40 c4_187_41 c4_187_42 set community 0:4 route-map calculator permit 25356 match community c4_187_43 c4_187_44 c4_187_45 c4_187_46 c3_187_183 set community 0:4 route-map calculator permit 25357 match community c4_188_38 c4_188_39 c4_188_40 c4_188_41 c4_188_42 set community 0:4 route-map calculator permit 25358 match community c4_188_43 c4_188_44 c4_188_45 c4_188_46 c4_188_47 set community 0:4 route-map calculator permit 25359 match community c3_188_184 c4_189_38 c4_189_39 c4_189_40 c4_189_41 set community 0:4 route-map calculator permit 25360 match community c4_189_42 c4_189_43 c4_189_44 c4_189_45 c4_189_46 set community 0:4 route-map calculator permit 25361 match community c4_189_47 c3_189_185 c4_190_39 c4_190_40 c4_190_41 set community 0:4 route-map calculator permit 25362 match community c4_190_42 c4_190_43 c4_190_44 c4_190_45 c4_190_46 set community 0:4 route-map calculator permit 25363 match community c4_190_47 c3_190_186 c4_191_39 c4_191_40 c4_191_41 set community 0:4 route-map calculator permit 25364 match community c4_191_42 c4_191_43 c4_191_44 c4_191_45 c4_191_46 set community 0:4 route-map calculator permit 25365 match community c4_191_47 c3_191_187 c4_192_39 c4_192_40 c4_192_41 set community 0:4 route-map calculator permit 25366 match community c4_192_42 c4_192_43 c4_192_44 c4_192_45 c4_192_46 set community 0:4 route-map calculator permit 25367 match community c4_192_47 c4_192_48 c3_192_188 c4_193_39 c4_193_40 set community 0:4 route-map calculator permit 25368 match community c4_193_41 c4_193_42 c4_193_43 c4_193_44 c4_193_45 set community 0:4 route-map calculator permit 25369 match community c4_193_46 c4_193_47 c4_193_48 c3_193_189 c4_194_39 set community 0:4 route-map calculator permit 25370 match community c4_194_40 c4_194_41 c4_194_42 c4_194_43 c4_194_44 set community 0:4 route-map calculator permit 25371 match community c4_194_45 c4_194_46 c4_194_47 c4_194_48 c3_194_190 set community 0:4 route-map calculator permit 25372 match community c4_195_40 c4_195_41 c4_195_42 c4_195_43 c4_195_44 set community 0:4 route-map calculator permit 25373 match community c4_195_45 c4_195_46 c4_195_47 c4_195_48 c3_195_191 set community 0:4 route-map calculator permit 25374 match community c4_196_40 c4_196_41 c4_196_42 c4_196_43 c4_196_44 set community 0:4 route-map calculator permit 25375 match community c4_196_45 c4_196_46 c4_196_47 c4_196_48 c4_196_49 set community 0:4 route-map calculator permit 25376 match community c3_196_192 c4_197_40 c4_197_41 c4_197_42 c4_197_43 set community 0:4 route-map calculator permit 25377 match community c4_197_44 c4_197_45 c4_197_46 c4_197_47 c4_197_48 set community 0:4 route-map calculator permit 25378 match community c4_197_49 c3_197_193 c4_198_40 c4_198_41 c4_198_42 set community 0:4 route-map calculator permit 25379 match community c4_198_43 c4_198_44 c4_198_45 c4_198_46 c4_198_47 set community 0:4 route-map calculator permit 25380 match community c4_198_48 c4_198_49 c3_198_194 c4_199_40 c4_199_41 set community 0:4 route-map calculator permit 25381 match community c4_199_42 c4_199_43 c4_199_44 c4_199_45 c4_199_46 set community 0:4 route-map calculator permit 25382 match community c4_199_47 c4_199_48 c4_199_49 c3_199_195 c4_200_41 set community 0:4 route-map calculator permit 25383 match community c4_200_42 c4_200_43 c4_200_44 c4_200_45 c4_200_46 set community 0:4 route-map calculator permit 25384 match community c4_200_47 c4_200_48 c4_200_49 c4_200_50 c3_200_196 set community 0:4 route-map calculator permit 25385 match community c4_201_41 c4_201_42 c4_201_43 c4_201_44 c4_201_45 set community 0:4 route-map calculator permit 25386 match community c4_201_46 c4_201_47 c4_201_48 c4_201_49 c4_201_50 set community 0:4 route-map calculator permit 25387 match community c3_201_197 c4_202_41 c4_202_42 c4_202_43 c4_202_44 set community 0:4 route-map calculator permit 25388 match community c4_202_45 c4_202_46 c4_202_47 c4_202_48 c4_202_49 set community 0:4 route-map calculator permit 25389 match community c4_202_50 c3_202_198 c4_203_41 c4_203_42 c4_203_43 set community 0:4 route-map calculator permit 25390 match community c4_203_44 c4_203_45 c4_203_46 c4_203_47 c4_203_48 set community 0:4 route-map calculator permit 25391 match community c4_203_49 c4_203_50 c3_203_199 c4_204_41 c4_204_42 set community 0:4 route-map calculator permit 25392 match community c4_204_43 c4_204_44 c4_204_45 c4_204_46 c4_204_47 set community 0:4 route-map calculator permit 25393 match community c4_204_48 c4_204_49 c4_204_50 c4_204_51 c3_204_200 set community 0:4 route-map calculator permit 25394 match community c4_205_42 c4_205_43 c4_205_44 c4_205_45 c4_205_46 set community 0:4 route-map calculator permit 25395 match community c4_205_47 c4_205_48 c4_205_49 c4_205_50 c4_205_51 set community 0:4 route-map calculator permit 25396 match community c3_205_201 c4_206_42 c4_206_43 c4_206_44 c4_206_45 set community 0:4 route-map calculator permit 25397 match community c4_206_46 c4_206_47 c4_206_48 c4_206_49 c4_206_50 set community 0:4 route-map calculator permit 25398 match community c4_206_51 c3_206_202 c4_207_42 c4_207_43 c4_207_44 set community 0:4 route-map calculator permit 25399 match community c4_207_45 c4_207_46 c4_207_47 c4_207_48 c4_207_49 set community 0:4 route-map calculator permit 25400 match community c4_207_50 c4_207_51 c3_207_203 c4_208_42 c4_208_43 set community 0:4 route-map calculator permit 25401 match community c4_208_44 c4_208_45 c4_208_46 c4_208_47 c4_208_48 set community 0:4 route-map calculator permit 25402 match community c4_208_49 c4_208_50 c4_208_51 c4_208_52 c3_208_204 set community 0:4 route-map calculator permit 25403 match community c4_209_42 c4_209_43 c4_209_44 c4_209_45 c4_209_46 set community 0:4 route-map calculator permit 25404 match community c4_209_47 c4_209_48 c4_209_49 c4_209_50 c4_209_51 set community 0:4 route-map calculator permit 25405 match community c4_209_52 c3_209_205 c4_210_43 c4_210_44 c4_210_45 set community 0:4 route-map calculator permit 25406 match community c4_210_46 c4_210_47 c4_210_48 c4_210_49 c4_210_50 set community 0:4 route-map calculator permit 25407 match community c4_210_51 c4_210_52 c3_210_206 c4_211_43 c4_211_44 set community 0:4 route-map calculator permit 25408 match community c4_211_45 c4_211_46 c4_211_47 c4_211_48 c4_211_49 set community 0:4 route-map calculator permit 25409 match community c4_211_50 c4_211_51 c4_211_52 c3_211_207 c4_212_43 set community 0:4 route-map calculator permit 25410 match community c4_212_44 c4_212_45 c4_212_46 c4_212_47 c4_212_48 set community 0:4 route-map calculator permit 25411 match community c4_212_49 c4_212_50 c4_212_51 c4_212_52 c4_212_53 set community 0:4 route-map calculator permit 25412 match community c3_212_208 c4_213_43 c4_213_44 c4_213_45 c4_213_46 set community 0:4 route-map calculator permit 25413 match community c4_213_47 c4_213_48 c4_213_49 c4_213_50 c4_213_51 set community 0:4 route-map calculator permit 25414 match community c4_213_52 c4_213_53 c3_213_209 c4_214_43 c4_214_44 set community 0:4 route-map calculator permit 25415 match community c4_214_45 c4_214_46 c4_214_47 c4_214_48 c4_214_49 set community 0:4 route-map calculator permit 25416 match community c4_214_50 c4_214_51 c4_214_52 c4_214_53 c3_214_210 set community 0:4 route-map calculator permit 25417 match community c4_215_44 c4_215_45 c4_215_46 c4_215_47 c4_215_48 set community 0:4 route-map calculator permit 25418 match community c4_215_49 c4_215_50 c4_215_51 c4_215_52 c4_215_53 set community 0:4 route-map calculator permit 25419 match community c3_215_211 c4_216_44 c4_216_45 c4_216_46 c4_216_47 set community 0:4 route-map calculator permit 25420 match community c4_216_48 c4_216_49 c4_216_50 c4_216_51 c4_216_52 set community 0:4 route-map calculator permit 25421 match community c4_216_53 c4_216_54 c3_216_212 c4_217_44 c4_217_45 set community 0:4 route-map calculator permit 25422 match community c4_217_46 c4_217_47 c4_217_48 c4_217_49 c4_217_50 set community 0:4 route-map calculator permit 25423 match community c4_217_51 c4_217_52 c4_217_53 c4_217_54 c3_217_213 set community 0:4 route-map calculator permit 25424 match community c4_218_44 c4_218_45 c4_218_46 c4_218_47 c4_218_48 set community 0:4 route-map calculator permit 25425 match community c4_218_49 c4_218_50 c4_218_51 c4_218_52 c4_218_53 set community 0:4 route-map calculator permit 25426 match community c4_218_54 c3_218_214 c4_219_44 c4_219_45 c4_219_46 set community 0:4 route-map calculator permit 25427 match community c4_219_47 c4_219_48 c4_219_49 c4_219_50 c4_219_51 set community 0:4 route-map calculator permit 25428 match community c4_219_52 c4_219_53 c4_219_54 c3_219_215 c4_220_45 set community 0:4 route-map calculator permit 25429 match community c4_220_46 c4_220_47 c4_220_48 c4_220_49 c4_220_50 set community 0:4 route-map calculator permit 25430 match community c4_220_51 c4_220_52 c4_220_53 c4_220_54 c4_220_55 set community 0:4 route-map calculator permit 25431 match community c3_220_216 c4_221_45 c4_221_46 c4_221_47 c4_221_48 set community 0:4 route-map calculator permit 25432 match community c4_221_49 c4_221_50 c4_221_51 c4_221_52 c4_221_53 set community 0:4 route-map calculator permit 25433 match community c4_221_54 c4_221_55 c3_221_217 c4_222_45 c4_222_46 set community 0:4 route-map calculator permit 25434 match community c4_222_47 c4_222_48 c4_222_49 c4_222_50 c4_222_51 set community 0:4 route-map calculator permit 25435 match community c4_222_52 c4_222_53 c4_222_54 c4_222_55 c3_222_218 set community 0:4 route-map calculator permit 25436 match community c4_223_45 c4_223_46 c4_223_47 c4_223_48 c4_223_49 set community 0:4 route-map calculator permit 25437 match community c4_223_50 c4_223_51 c4_223_52 c4_223_53 c4_223_54 set community 0:4 route-map calculator permit 25438 match community c4_223_55 c3_223_219 c4_224_45 c4_224_46 c4_224_47 set community 0:4 route-map calculator permit 25439 match community c4_224_48 c4_224_49 c4_224_50 c4_224_51 c4_224_52 set community 0:4 route-map calculator permit 25440 match community c4_224_53 c4_224_54 c4_224_55 c4_224_56 c3_224_220 set community 0:4 route-map calculator permit 25441 match community c4_225_46 c4_225_47 c4_225_48 c4_225_49 c4_225_50 set community 0:4 route-map calculator permit 25442 match community c4_225_51 c4_225_52 c4_225_53 c4_225_54 c4_225_55 set community 0:4 route-map calculator permit 25443 match community c4_225_56 c3_225_221 c4_226_46 c4_226_47 c4_226_48 set community 0:4 route-map calculator permit 25444 match community c4_226_49 c4_226_50 c4_226_51 c4_226_52 c4_226_53 set community 0:4 route-map calculator permit 25445 match community c4_226_54 c4_226_55 c4_226_56 c3_226_222 c4_227_46 set community 0:4 route-map calculator permit 25446 match community c4_227_47 c4_227_48 c4_227_49 c4_227_50 c4_227_51 set community 0:4 route-map calculator permit 25447 match community c4_227_52 c4_227_53 c4_227_54 c4_227_55 c4_227_56 set community 0:4 route-map calculator permit 25448 match community c3_227_223 c4_228_46 c4_228_47 c4_228_48 c4_228_49 set community 0:4 route-map calculator permit 25449 match community c4_228_50 c4_228_51 c4_228_52 c4_228_53 c4_228_54 set community 0:4 route-map calculator permit 25450 match community c4_228_55 c4_228_56 c4_228_57 c3_228_224 c4_229_46 set community 0:4 route-map calculator permit 25451 match community c4_229_47 c4_229_48 c4_229_49 c4_229_50 c4_229_51 set community 0:4 route-map calculator permit 25452 match community c4_229_52 c4_229_53 c4_229_54 c4_229_55 c4_229_56 set community 0:4 route-map calculator permit 25453 match community c4_229_57 c3_229_225 c4_230_47 c4_230_48 c4_230_49 set community 0:4 route-map calculator permit 25454 match community c4_230_50 c4_230_51 c4_230_52 c4_230_53 c4_230_54 set community 0:4 route-map calculator permit 25455 match community c4_230_55 c4_230_56 c4_230_57 c3_230_226 c4_231_47 set community 0:4 route-map calculator permit 25456 match community c4_231_48 c4_231_49 c4_231_50 c4_231_51 c4_231_52 set community 0:4 route-map calculator permit 25457 match community c4_231_53 c4_231_54 c4_231_55 c4_231_56 c4_231_57 set community 0:4 route-map calculator permit 25458 match community c3_231_227 c4_232_47 c4_232_48 c4_232_49 c4_232_50 set community 0:4 route-map calculator permit 25459 match community c4_232_51 c4_232_52 c4_232_53 c4_232_54 c4_232_55 set community 0:4 route-map calculator permit 25460 match community c4_232_56 c4_232_57 c4_232_58 c3_232_228 c4_233_47 set community 0:4 route-map calculator permit 25461 match community c4_233_48 c4_233_49 c4_233_50 c4_233_51 c4_233_52 set community 0:4 route-map calculator permit 25462 match community c4_233_53 c4_233_54 c4_233_55 c4_233_56 c4_233_57 set community 0:4 route-map calculator permit 25463 match community c4_233_58 c3_233_229 c4_234_47 c4_234_48 c4_234_49 set community 0:4 route-map calculator permit 25464 match community c4_234_50 c4_234_51 c4_234_52 c4_234_53 c4_234_54 set community 0:4 route-map calculator permit 25465 match community c4_234_55 c4_234_56 c4_234_57 c4_234_58 c3_234_230 set community 0:4 route-map calculator permit 25466 match community c4_235_48 c4_235_49 c4_235_50 c4_235_51 c4_235_52 set community 0:4 route-map calculator permit 25467 match community c4_235_53 c4_235_54 c4_235_55 c4_235_56 c4_235_57 set community 0:4 route-map calculator permit 25468 match community c4_235_58 c3_235_231 c4_236_48 c4_236_49 c4_236_50 set community 0:4 route-map calculator permit 25469 match community c4_236_51 c4_236_52 c4_236_53 c4_236_54 c4_236_55 set community 0:4 route-map calculator permit 25470 match community c4_236_56 c4_236_57 c4_236_58 c4_236_59 c3_236_232 set community 0:4 route-map calculator permit 25471 match community c4_237_48 c4_237_49 c4_237_50 c4_237_51 c4_237_52 set community 0:4 route-map calculator permit 25472 match community c4_237_53 c4_237_54 c4_237_55 c4_237_56 c4_237_57 set community 0:4 route-map calculator permit 25473 match community c4_237_58 c4_237_59 c3_237_233 c4_238_48 c4_238_49 set community 0:4 route-map calculator permit 25474 match community c4_238_50 c4_238_51 c4_238_52 c4_238_53 c4_238_54 set community 0:4 route-map calculator permit 25475 match community c4_238_55 c4_238_56 c4_238_57 c4_238_58 c4_238_59 set community 0:4 route-map calculator permit 25476 match community c3_238_234 c4_239_48 c4_239_49 c4_239_50 c4_239_51 set community 0:4 route-map calculator permit 25477 match community c4_239_52 c4_239_53 c4_239_54 c4_239_55 c4_239_56 set community 0:4 route-map calculator permit 25478 match community c4_239_57 c4_239_58 c4_239_59 c3_239_235 c4_240_49 set community 0:4 route-map calculator permit 25479 match community c4_240_50 c4_240_51 c4_240_52 c4_240_53 c4_240_54 set community 0:4 route-map calculator permit 25480 match community c4_240_55 c4_240_56 c4_240_57 c4_240_58 c4_240_59 set community 0:4 route-map calculator permit 25481 match community c4_240_60 c3_240_236 c4_241_49 c4_241_50 c4_241_51 set community 0:4 route-map calculator permit 25482 match community c4_241_52 c4_241_53 c4_241_54 c4_241_55 c4_241_56 set community 0:4 route-map calculator permit 25483 match community c4_241_57 c4_241_58 c4_241_59 c4_241_60 c3_241_237 set community 0:4 route-map calculator permit 25484 match community c4_242_49 c4_242_50 c4_242_51 c4_242_52 c4_242_53 set community 0:4 route-map calculator permit 25485 match community c4_242_54 c4_242_55 c4_242_56 c4_242_57 c4_242_58 set community 0:4 route-map calculator permit 25486 match community c4_242_59 c4_242_60 c3_242_238 c4_243_49 c4_243_50 set community 0:4 route-map calculator permit 25487 match community c4_243_51 c4_243_52 c4_243_53 c4_243_54 c4_243_55 set community 0:4 route-map calculator permit 25488 match community c4_243_56 c4_243_57 c4_243_58 c4_243_59 c4_243_60 set community 0:4 route-map calculator permit 25489 match community c3_243_239 c4_244_49 c4_244_50 c4_244_51 c4_244_52 set community 0:4 route-map calculator permit 25490 match community c4_244_53 c4_244_54 c4_244_55 c4_244_56 c4_244_57 set community 0:4 route-map calculator permit 25491 match community c4_244_58 c4_244_59 c4_244_60 c4_244_61 c3_244_240 set community 0:4 route-map calculator permit 25492 match community c4_245_50 c4_245_51 c4_245_52 c4_245_53 c4_245_54 set community 0:4 route-map calculator permit 25493 match community c4_245_55 c4_245_56 c4_245_57 c4_245_58 c4_245_59 set community 0:4 route-map calculator permit 25494 match community c4_245_60 c4_245_61 c3_245_241 c4_246_50 c4_246_51 set community 0:4 route-map calculator permit 25495 match community c4_246_52 c4_246_53 c4_246_54 c4_246_55 c4_246_56 set community 0:4 route-map calculator permit 25496 match community c4_246_57 c4_246_58 c4_246_59 c4_246_60 c4_246_61 set community 0:4 route-map calculator permit 25497 match community c3_246_242 c4_247_50 c4_247_51 c4_247_52 c4_247_53 set community 0:4 route-map calculator permit 25498 match community c4_247_54 c4_247_55 c4_247_56 c4_247_57 c4_247_58 set community 0:4 route-map calculator permit 25499 match community c4_247_59 c4_247_60 c4_247_61 c3_247_243 c4_248_50 set community 0:4 route-map calculator permit 25500 match community c4_248_51 c4_248_52 c4_248_53 c4_248_54 c4_248_55 set community 0:4 route-map calculator permit 25501 match community c4_248_56 c4_248_57 c4_248_58 c4_248_59 c4_248_60 set community 0:4 route-map calculator permit 25502 match community c4_248_61 c4_248_62 c3_248_244 c4_249_50 c4_249_51 set community 0:4 route-map calculator permit 25503 match community c4_249_52 c4_249_53 c4_249_54 c4_249_55 c4_249_56 set community 0:4 route-map calculator permit 25504 match community c4_249_57 c4_249_58 c4_249_59 c4_249_60 c4_249_61 set community 0:4 route-map calculator permit 25505 match community c4_249_62 c3_249_245 c4_250_51 c4_250_52 c4_250_53 set community 0:4 route-map calculator permit 25506 match community c4_250_54 c4_250_55 c4_250_56 c4_250_57 c4_250_58 set community 0:4 route-map calculator permit 25507 match community c4_250_59 c4_250_60 c4_250_61 c4_250_62 c3_250_246 set community 0:4 route-map calculator permit 25508 match community c4_251_51 c4_251_52 c4_251_53 c4_251_54 c4_251_55 set community 0:4 route-map calculator permit 25509 match community c4_251_56 c4_251_57 c4_251_58 c4_251_59 c4_251_60 set community 0:4 route-map calculator permit 25510 match community c4_251_61 c4_251_62 c3_251_247 c4_252_51 c4_252_52 set community 0:4 route-map calculator permit 25511 match community c4_252_53 c4_252_54 c4_252_55 c4_252_56 c4_252_57 set community 0:4 route-map calculator permit 25512 match community c4_252_58 c4_252_59 c4_252_60 c4_252_61 c4_252_62 set community 0:4 route-map calculator permit 25513 match community c4_252_63 c3_252_248 c4_253_51 c4_253_52 c4_253_53 set community 0:4 route-map calculator permit 25514 match community c4_253_54 c4_253_55 c4_253_56 c4_253_57 c4_253_58 set community 0:4 route-map calculator permit 25515 match community c4_253_59 c4_253_60 c4_253_61 c4_253_62 c4_253_63 set community 0:4 route-map calculator permit 25516 match community c3_253_249 c4_254_51 c4_254_52 c4_254_53 c4_254_54 set community 0:4 route-map calculator permit 25517 match community c4_254_55 c4_254_56 c4_254_57 c4_254_58 c4_254_59 set community 0:4 route-map calculator permit 25518 match community c4_254_60 c4_254_61 c4_254_62 c4_254_63 c3_254_250 set community 0:4 route-map calculator permit 25519 match community c4_255_52 c4_255_53 c4_255_54 c4_255_55 c4_255_56 set community 0:4 route-map calculator permit 25520 match community c4_255_57 c4_255_58 c4_255_59 c4_255_60 c4_255_61 set community 0:4 route-map calculator permit 25521 match community c4_255_62 c4_255_63 c3_255_251 c4_256_52 c4_256_53 set community 0:4 route-map calculator permit 25522 match community c4_256_54 c4_256_55 c4_256_56 c4_256_57 c4_256_58 set community 0:4 route-map calculator permit 25523 match community c4_256_59 c4_256_60 c4_256_61 c4_256_62 c4_256_63 set community 0:4 route-map calculator permit 25524 match community c4_256_64 c3_256_252 set community 0:4 ip community-list standard 2_20_208 permit 65000:2 0:20 0:208 ip community-list standard 2_26_160 permit 65000:2 0:26 0:160 ip community-list standard 2_32_130 permit 65000:2 0:32 0:130 ip community-list standard 2_40_104 permit 65000:2 0:40 0:104 ip community-list standard 2_52_80 permit 65000:2 0:52 0:80 ip community-list standard 2_64_65 permit 65000:2 0:64 0:65 route-map calculator permit 25525 match community 2_20_208 2_26_160 2_32_130 2_40_104 2_52_80 set community 0:4160 route-map calculator permit 25526 match community 2_64_65 set community 0:4160 ip community-list standard 2_77_127 permit 65000:2 0:77 0:127 route-map calculator permit 25527 match community 2_77_127 set community 0:9779 ip community-list standard 2_93_247 permit 65000:2 0:93 0:247 route-map calculator permit 25528 match community 2_93_247 set community 0:22971 ip community-list standard 2_15_161 permit 65000:2 0:15 0:161 ip community-list standard 2_21_115 permit 65000:2 0:21 0:115 ip community-list standard 2_23_105 permit 65000:2 0:23 0:105 ip community-list standard 2_35_69 permit 65000:2 0:35 0:69 route-map calculator permit 25529 match community 2_15_161 2_21_115 2_23_105 2_35_69 set community 0:2415 ip community-list standard 2_51_249 permit 65000:2 0:51 0:249 ip community-list standard 2_83_153 permit 65000:2 0:83 0:153 route-map calculator permit 25530 match community 2_51_249 2_83_153 set community 0:12699 ip community-list standard 2_234_234 permit 65000:2 0:234 0:234 route-map calculator permit 25531 match community 2_234_234 set community 0:54756 ip community-list standard 2_91_214 permit 65000:2 0:91 0:214 ip community-list standard 2_107_182 permit 65000:2 0:107 0:182 route-map calculator permit 25532 match community 2_91_214 2_107_182 set community 0:19474 ip community-list standard 2_68_152 permit 65000:2 0:68 0:152 ip community-list standard 2_76_136 permit 65000:2 0:76 0:136 route-map calculator permit 25533 match community 2_68_152 2_76_136 set community 0:10336 ip community-list standard 2_20_169 permit 65000:2 0:20 0:169 ip community-list standard 2_26_130 permit 65000:2 0:26 0:130 ip community-list standard 2_52_65 permit 65000:2 0:52 0:65 route-map calculator permit 25534 match community 2_20_169 2_26_130 2_52_65 set community 0:3380 ip community-list standard 2_236_256 permit 65000:2 0:236 0:256 route-map calculator permit 25535 match community 2_236_256 set community 0:60416 ip community-list standard 2_71_71 permit 65000:2 0:71 0:71 route-map calculator permit 25536 match community 2_71_71 set community 0:5041 ip community-list standard 2_202_217 permit 65000:2 0:202 0:217 route-map calculator permit 25537 match community 2_202_217 set community 0:43834 ip community-list standard 2_73_199 permit 65000:2 0:73 0:199 route-map calculator permit 25538 match community 2_73_199 set community 0:14527 ip community-list standard 2_86_199 permit 65000:2 0:86 0:199 route-map calculator permit 25539 match community 2_86_199 set community 0:17114 ip community-list standard 2_22_234 permit 65000:2 0:22 0:234 ip community-list standard 2_26_198 permit 65000:2 0:26 0:198 ip community-list standard 2_33_156 permit 65000:2 0:33 0:156 ip community-list standard 2_36_143 permit 65000:2 0:36 0:143 ip community-list standard 2_39_132 permit 65000:2 0:39 0:132 ip community-list standard 2_44_117 permit 65000:2 0:44 0:117 ip community-list standard 2_52_99 permit 65000:2 0:52 0:99 ip community-list standard 2_66_78 permit 65000:2 0:66 0:78 route-map calculator permit 25540 match community 2_22_234 2_26_198 2_33_156 2_36_143 2_39_132 set community 0:5148 route-map calculator permit 25541 match community 2_44_117 2_52_99 2_66_78 set community 0:5148 ip community-list standard 2_43_225 permit 65000:2 0:43 0:225 ip community-list standard 2_45_215 permit 65000:2 0:45 0:215 ip community-list standard 2_75_129 permit 65000:2 0:75 0:129 route-map calculator permit 25542 match community 2_43_225 2_45_215 2_75_129 set community 0:9675 ip community-list standard 2_92_251 permit 65000:2 0:92 0:251 route-map calculator permit 25543 match community 2_92_251 set community 0:23092 ip community-list standard 2_179_207 permit 65000:2 0:179 0:207 route-map calculator permit 25544 match community 2_179_207 set community 0:37053 ip community-list standard 2_215_229 permit 65000:2 0:215 0:229 route-map calculator permit 25545 match community 2_215_229 set community 0:49235 ip community-list standard 2_121_227 permit 65000:2 0:121 0:227 route-map calculator permit 25546 match community 2_121_227 set community 0:27467 ip community-list standard 2_26_238 permit 65000:2 0:26 0:238 ip community-list standard 2_28_221 permit 65000:2 0:28 0:221 ip community-list standard 2_34_182 permit 65000:2 0:34 0:182 ip community-list standard 2_52_119 permit 65000:2 0:52 0:119 ip community-list standard 2_68_91 permit 65000:2 0:68 0:91 route-map calculator permit 25547 match community 2_26_238 2_28_221 2_34_182 2_52_119 2_68_91 set community 0:6188 ip community-list standard 2_147_178 permit 65000:2 0:147 0:178 route-map calculator permit 25548 match community 2_147_178 set community 0:26166 ip community-list standard 2_6_172 permit 65000:2 0:6 0:172 ip community-list standard 2_8_129 permit 65000:2 0:8 0:129 ip community-list standard 2_12_86 permit 65000:2 0:12 0:86 ip community-list standard 2_24_43 permit 65000:2 0:24 0:43 route-map calculator permit 25549 match community 2_6_172 2_8_129 2_12_86 2_24_43 set community 0:1032 ip community-list standard 2_99_109 permit 65000:2 0:99 0:109 route-map calculator permit 25550 match community 2_99_109 set community 0:10791 ip community-list standard 2_41_233 permit 65000:2 0:41 0:233 route-map calculator permit 25551 match community 2_41_233 set community 0:9553 ip community-list standard 2_19_248 permit 65000:2 0:19 0:248 ip community-list standard 2_31_152 permit 65000:2 0:31 0:152 ip community-list standard 2_38_124 permit 65000:2 0:38 0:124 ip community-list standard 2_62_76 permit 65000:2 0:62 0:76 route-map calculator permit 25552 match community 2_19_248 2_31_152 2_38_124 2_62_76 set community 0:4712 ip community-list standard 2_103_171 permit 65000:2 0:103 0:171 route-map calculator permit 25553 match community 2_103_171 set community 0:17613 ip community-list standard 2_26_251 permit 65000:2 0:26 0:251 route-map calculator permit 25554 match community 2_26_251 set community 0:6526 ip community-list standard 2_171_173 permit 65000:2 0:171 0:173 route-map calculator permit 25555 match community 2_171_173 set community 0:29583 ip community-list standard 2_113_213 permit 65000:2 0:113 0:213 route-map calculator permit 25556 match community 2_113_213 set community 0:24069 ip community-list standard 2_89_125 permit 65000:2 0:89 0:125 route-map calculator permit 25557 match community 2_89_125 set community 0:11125 ip community-list standard 2_65_215 permit 65000:2 0:65 0:215 route-map calculator permit 25558 match community 2_65_215 set community 0:13975 ip community-list standard 2_14_218 permit 65000:2 0:14 0:218 ip community-list standard 2_28_109 permit 65000:2 0:28 0:109 route-map calculator permit 25559 match community 2_14_218 2_28_109 set community 0:3052 ip community-list standard 2_3_125 permit 65000:2 0:3 0:125 ip community-list standard 2_5_75 permit 65000:2 0:5 0:75 ip community-list standard 2_15_25 permit 65000:2 0:15 0:25 ip community-list standard 1_119_256 permit 65000:1 0:119 0:256 ip community-list standard 1_120_255 permit 65000:1 0:120 0:255 ip community-list standard 1_121_254 permit 65000:1 0:121 0:254 ip community-list standard 1_122_253 permit 65000:1 0:122 0:253 ip community-list standard 1_123_252 permit 65000:1 0:123 0:252 ip community-list standard 1_124_251 permit 65000:1 0:124 0:251 ip community-list standard 1_125_250 permit 65000:1 0:125 0:250 ip community-list standard 1_126_249 permit 65000:1 0:126 0:249 ip community-list standard 1_127_248 permit 65000:1 0:127 0:248 ip community-list standard 1_128_247 permit 65000:1 0:128 0:247 ip community-list standard 1_129_246 permit 65000:1 0:129 0:246 ip community-list standard 1_130_245 permit 65000:1 0:130 0:245 ip community-list standard 1_131_244 permit 65000:1 0:131 0:244 ip community-list standard 1_132_243 permit 65000:1 0:132 0:243 ip community-list standard 1_133_242 permit 65000:1 0:133 0:242 ip community-list standard 1_134_241 permit 65000:1 0:134 0:241 ip community-list standard 1_135_240 permit 65000:1 0:135 0:240 ip community-list standard 1_136_239 permit 65000:1 0:136 0:239 ip community-list standard 1_137_238 permit 65000:1 0:137 0:238 ip community-list standard 1_138_237 permit 65000:1 0:138 0:237 ip community-list standard 1_139_236 permit 65000:1 0:139 0:236 ip community-list standard 1_140_235 permit 65000:1 0:140 0:235 ip community-list standard 1_141_234 permit 65000:1 0:141 0:234 ip community-list standard 1_142_233 permit 65000:1 0:142 0:233 ip community-list standard 1_143_232 permit 65000:1 0:143 0:232 ip community-list standard 1_144_231 permit 65000:1 0:144 0:231 ip community-list standard 1_145_230 permit 65000:1 0:145 0:230 ip community-list standard 1_146_229 permit 65000:1 0:146 0:229 ip community-list standard 1_147_228 permit 65000:1 0:147 0:228 ip community-list standard 1_148_227 permit 65000:1 0:148 0:227 ip community-list standard 1_149_226 permit 65000:1 0:149 0:226 ip community-list standard 1_150_225 permit 65000:1 0:150 0:225 ip community-list standard 1_151_224 permit 65000:1 0:151 0:224 ip community-list standard 1_152_223 permit 65000:1 0:152 0:223 ip community-list standard 1_153_222 permit 65000:1 0:153 0:222 ip community-list standard 1_154_221 permit 65000:1 0:154 0:221 ip community-list standard 1_155_220 permit 65000:1 0:155 0:220 ip community-list standard 1_156_219 permit 65000:1 0:156 0:219 ip community-list standard 1_157_218 permit 65000:1 0:157 0:218 ip community-list standard 1_158_217 permit 65000:1 0:158 0:217 ip community-list standard 1_159_216 permit 65000:1 0:159 0:216 ip community-list standard 1_160_215 permit 65000:1 0:160 0:215 ip community-list standard 1_161_214 permit 65000:1 0:161 0:214 ip community-list standard 1_162_213 permit 65000:1 0:162 0:213 ip community-list standard 1_163_212 permit 65000:1 0:163 0:212 ip community-list standard 1_164_211 permit 65000:1 0:164 0:211 ip community-list standard 1_165_210 permit 65000:1 0:165 0:210 ip community-list standard 1_166_209 permit 65000:1 0:166 0:209 ip community-list standard 1_167_208 permit 65000:1 0:167 0:208 ip community-list standard 1_168_207 permit 65000:1 0:168 0:207 ip community-list standard 1_169_206 permit 65000:1 0:169 0:206 ip community-list standard 1_170_205 permit 65000:1 0:170 0:205 ip community-list standard 1_171_204 permit 65000:1 0:171 0:204 ip community-list standard 1_172_203 permit 65000:1 0:172 0:203 ip community-list standard 1_173_202 permit 65000:1 0:173 0:202 ip community-list standard 1_174_201 permit 65000:1 0:174 0:201 ip community-list standard 1_175_200 permit 65000:1 0:175 0:200 ip community-list standard 1_176_199 permit 65000:1 0:176 0:199 ip community-list standard 1_177_198 permit 65000:1 0:177 0:198 ip community-list standard 1_178_197 permit 65000:1 0:178 0:197 ip community-list standard 1_179_196 permit 65000:1 0:179 0:196 ip community-list standard 1_180_195 permit 65000:1 0:180 0:195 ip community-list standard 1_181_194 permit 65000:1 0:181 0:194 ip community-list standard 1_182_193 permit 65000:1 0:182 0:193 ip community-list standard 1_183_192 permit 65000:1 0:183 0:192 ip community-list standard 1_184_191 permit 65000:1 0:184 0:191 ip community-list standard 1_185_190 permit 65000:1 0:185 0:190 ip community-list standard 1_186_189 permit 65000:1 0:186 0:189 ip community-list standard 1_187_188 permit 65000:1 0:187 0:188 route-map calculator permit 25560 match community 2_3_125 2_5_75 2_15_25 1_119_256 1_120_255 set community 0:375 route-map calculator permit 25561 match community 1_121_254 1_122_253 1_123_252 1_124_251 1_125_250 set community 0:375 route-map calculator permit 25562 match community 1_126_249 1_127_248 1_128_247 1_129_246 1_130_245 set community 0:375 route-map calculator permit 25563 match community 1_131_244 1_132_243 1_133_242 1_134_241 1_135_240 set community 0:375 route-map calculator permit 25564 match community 1_136_239 1_137_238 1_138_237 1_139_236 1_140_235 set community 0:375 route-map calculator permit 25565 match community 1_141_234 1_142_233 1_143_232 1_144_231 1_145_230 set community 0:375 route-map calculator permit 25566 match community 1_146_229 1_147_228 1_148_227 1_149_226 1_150_225 set community 0:375 route-map calculator permit 25567 match community 1_151_224 1_152_223 1_153_222 1_154_221 1_155_220 set community 0:375 route-map calculator permit 25568 match community 1_156_219 1_157_218 1_158_217 1_159_216 1_160_215 set community 0:375 route-map calculator permit 25569 match community 1_161_214 1_162_213 1_163_212 1_164_211 1_165_210 set community 0:375 route-map calculator permit 25570 match community 1_166_209 1_167_208 1_168_207 1_169_206 1_170_205 set community 0:375 route-map calculator permit 25571 match community 1_171_204 1_172_203 1_173_202 1_174_201 1_175_200 set community 0:375 route-map calculator permit 25572 match community 1_176_199 1_177_198 1_178_197 1_179_196 1_180_195 set community 0:375 route-map calculator permit 25573 match community 1_181_194 1_182_193 1_183_192 1_184_191 1_185_190 set community 0:375 route-map calculator permit 25574 match community 1_186_189 1_187_188 set community 0:375 ip community-list standard 2_9_107 permit 65000:2 0:9 0:107 route-map calculator permit 25575 match community 2_9_107 set community 0:963 ip community-list standard 2_86_157 permit 65000:2 0:86 0:157 route-map calculator permit 25576 match community 2_86_157 set community 0:13502 ip community-list standard 2_118_149 permit 65000:2 0:118 0:149 route-map calculator permit 25577 match community 2_118_149 set community 0:17582 ip community-list standard 2_77_218 permit 65000:2 0:77 0:218 ip community-list standard 2_109_154 permit 65000:2 0:109 0:154 route-map calculator permit 25578 match community 2_77_218 2_109_154 set community 0:16786 ip community-list standard 2_12_172 permit 65000:2 0:12 0:172 ip community-list standard 2_16_129 permit 65000:2 0:16 0:129 ip community-list standard 2_24_86 permit 65000:2 0:24 0:86 ip community-list standard 2_43_48 permit 65000:2 0:43 0:48 route-map calculator permit 25579 match community 2_12_172 2_16_129 2_24_86 2_43_48 set community 0:2064 ip community-list standard 2_212_216 permit 65000:2 0:212 0:216 route-map calculator permit 25580 match community 2_212_216 set community 0:45792 ip community-list standard 2_10_151 permit 65000:2 0:10 0:151 route-map calculator permit 25581 match community 2_10_151 set community 0:1510 ip community-list standard 2_3_155 permit 65000:2 0:3 0:155 ip community-list standard 2_5_93 permit 65000:2 0:5 0:93 ip community-list standard 2_15_31 permit 65000:2 0:15 0:31 ip community-list standard 1_209_256 permit 65000:1 0:209 0:256 ip community-list standard 1_210_255 permit 65000:1 0:210 0:255 ip community-list standard 1_211_254 permit 65000:1 0:211 0:254 ip community-list standard 1_212_253 permit 65000:1 0:212 0:253 ip community-list standard 1_213_252 permit 65000:1 0:213 0:252 ip community-list standard 1_214_251 permit 65000:1 0:214 0:251 ip community-list standard 1_215_250 permit 65000:1 0:215 0:250 ip community-list standard 1_216_249 permit 65000:1 0:216 0:249 ip community-list standard 1_217_248 permit 65000:1 0:217 0:248 ip community-list standard 1_218_247 permit 65000:1 0:218 0:247 ip community-list standard 1_219_246 permit 65000:1 0:219 0:246 ip community-list standard 1_220_245 permit 65000:1 0:220 0:245 ip community-list standard 1_221_244 permit 65000:1 0:221 0:244 ip community-list standard 1_222_243 permit 65000:1 0:222 0:243 ip community-list standard 1_223_242 permit 65000:1 0:223 0:242 ip community-list standard 1_224_241 permit 65000:1 0:224 0:241 ip community-list standard 1_225_240 permit 65000:1 0:225 0:240 ip community-list standard 1_226_239 permit 65000:1 0:226 0:239 ip community-list standard 1_227_238 permit 65000:1 0:227 0:238 ip community-list standard 1_228_237 permit 65000:1 0:228 0:237 ip community-list standard 1_229_236 permit 65000:1 0:229 0:236 ip community-list standard 1_230_235 permit 65000:1 0:230 0:235 ip community-list standard 1_231_234 permit 65000:1 0:231 0:234 ip community-list standard 1_232_233 permit 65000:1 0:232 0:233 route-map calculator permit 25582 match community 2_3_155 2_5_93 2_15_31 1_209_256 1_210_255 set community 0:465 route-map calculator permit 25583 match community 1_211_254 1_212_253 1_213_252 1_214_251 1_215_250 set community 0:465 route-map calculator permit 25584 match community 1_216_249 1_217_248 1_218_247 1_219_246 1_220_245 set community 0:465 route-map calculator permit 25585 match community 1_221_244 1_222_243 1_223_242 1_224_241 1_225_240 set community 0:465 route-map calculator permit 25586 match community 1_226_239 1_227_238 1_228_237 1_229_236 1_230_235 set community 0:465 route-map calculator permit 25587 match community 1_231_234 1_232_233 set community 0:465 ip community-list standard 2_137_154 permit 65000:2 0:137 0:154 route-map calculator permit 25588 match community 2_137_154 set community 0:21098 ip community-list standard 1_1_100 permit 65000:1 0:1 0:100 ip community-list standard 2_1_101 permit 65000:2 0:1 0:101 ip community-list standard 1_2_99 permit 65000:1 0:2 0:99 ip community-list standard 1_3_98 permit 65000:1 0:3 0:98 ip community-list standard 1_4_97 permit 65000:1 0:4 0:97 ip community-list standard 1_5_96 permit 65000:1 0:5 0:96 ip community-list standard 1_6_95 permit 65000:1 0:6 0:95 ip community-list standard 1_7_94 permit 65000:1 0:7 0:94 ip community-list standard 1_8_93 permit 65000:1 0:8 0:93 ip community-list standard 1_9_92 permit 65000:1 0:9 0:92 ip community-list standard 1_10_91 permit 65000:1 0:10 0:91 ip community-list standard 1_11_90 permit 65000:1 0:11 0:90 ip community-list standard 1_12_89 permit 65000:1 0:12 0:89 ip community-list standard 1_13_88 permit 65000:1 0:13 0:88 ip community-list standard 1_14_87 permit 65000:1 0:14 0:87 ip community-list standard 1_15_86 permit 65000:1 0:15 0:86 ip community-list standard 1_16_85 permit 65000:1 0:16 0:85 ip community-list standard 1_17_84 permit 65000:1 0:17 0:84 ip community-list standard 1_18_83 permit 65000:1 0:18 0:83 ip community-list standard 1_19_82 permit 65000:1 0:19 0:82 ip community-list standard 1_20_81 permit 65000:1 0:20 0:81 ip community-list standard 1_21_80 permit 65000:1 0:21 0:80 ip community-list standard 1_22_79 permit 65000:1 0:22 0:79 ip community-list standard 1_23_78 permit 65000:1 0:23 0:78 ip community-list standard 1_24_77 permit 65000:1 0:24 0:77 ip community-list standard 1_25_76 permit 65000:1 0:25 0:76 ip community-list standard 1_26_75 permit 65000:1 0:26 0:75 ip community-list standard 1_27_74 permit 65000:1 0:27 0:74 ip community-list standard 1_28_73 permit 65000:1 0:28 0:73 ip community-list standard 1_29_72 permit 65000:1 0:29 0:72 ip community-list standard 1_30_71 permit 65000:1 0:30 0:71 ip community-list standard 1_31_70 permit 65000:1 0:31 0:70 ip community-list standard 1_32_69 permit 65000:1 0:32 0:69 ip community-list standard 1_33_68 permit 65000:1 0:33 0:68 ip community-list standard 1_34_67 permit 65000:1 0:34 0:67 ip community-list standard 1_35_66 permit 65000:1 0:35 0:66 ip community-list standard 1_36_65 permit 65000:1 0:36 0:65 ip community-list standard 1_37_64 permit 65000:1 0:37 0:64 ip community-list standard 1_38_63 permit 65000:1 0:38 0:63 ip community-list standard 1_39_62 permit 65000:1 0:39 0:62 ip community-list standard 1_40_61 permit 65000:1 0:40 0:61 ip community-list standard 1_41_60 permit 65000:1 0:41 0:60 ip community-list standard 1_42_59 permit 65000:1 0:42 0:59 ip community-list standard 1_43_58 permit 65000:1 0:43 0:58 ip community-list standard 1_44_57 permit 65000:1 0:44 0:57 ip community-list standard 1_45_56 permit 65000:1 0:45 0:56 ip community-list standard 1_46_55 permit 65000:1 0:46 0:55 ip community-list standard 1_47_54 permit 65000:1 0:47 0:54 ip community-list standard 1_48_53 permit 65000:1 0:48 0:53 ip community-list standard 1_49_52 permit 65000:1 0:49 0:52 ip community-list standard 1_50_51 permit 65000:1 0:50 0:51 ip community-list expanded c101 permit 1 ^65000:4_0:101_0:1$ ip community-list expanded c101 permit 2 ^65000:3_0:102_0:1$ ip community-list expanded c101 permit 3 ^65000:3_0:103_0:2$ ip community-list expanded c101 permit 4 ^65000:3_0:104_0:3$ ip community-list expanded c101 permit 5 ^65000:3_0:105_0:4$ ip community-list expanded c101 permit 6 ^65000:3_0:106_0:5$ ip community-list expanded c101 permit 7 ^65000:3_0:107_0:6$ ip community-list expanded c101 permit 8 ^65000:3_0:108_0:7$ ip community-list expanded c101 permit 9 ^65000:3_0:109_0:8$ ip community-list expanded c101 permit 10 ^65000:3_0:110_0:9$ ip community-list expanded c101 permit 11 ^65000:3_0:111_0:10$ ip community-list expanded c101 permit 12 ^65000:3_0:112_0:11$ ip community-list expanded c101 permit 13 ^65000:3_0:113_0:12$ ip community-list expanded c101 permit 14 ^65000:3_0:114_0:13$ ip community-list expanded c101 permit 15 ^65000:3_0:115_0:14$ ip community-list expanded c101 permit 16 ^65000:3_0:116_0:15$ ip community-list expanded c101 permit 17 ^65000:3_0:117_0:16$ ip community-list expanded c101 permit 18 ^65000:3_0:118_0:17$ ip community-list expanded c101 permit 19 ^65000:3_0:119_0:18$ ip community-list expanded c101 permit 20 ^65000:3_0:120_0:19$ ip community-list expanded c101 permit 21 ^65000:3_0:121_0:20$ ip community-list expanded c101 permit 22 ^65000:3_0:122_0:21$ ip community-list expanded c101 permit 23 ^65000:3_0:123_0:22$ ip community-list expanded c101 permit 24 ^65000:3_0:124_0:23$ ip community-list expanded c101 permit 25 ^65000:3_0:125_0:24$ ip community-list expanded c101 permit 26 ^65000:3_0:126_0:25$ ip community-list expanded c101 permit 27 ^65000:3_0:127_0:26$ ip community-list expanded c101 permit 28 ^65000:3_0:128_0:27$ ip community-list expanded c101 permit 29 ^65000:3_0:129_0:28$ ip community-list expanded c101 permit 30 ^65000:3_0:130_0:29$ ip community-list expanded c101 permit 31 ^65000:3_0:131_0:30$ ip community-list expanded c101 permit 32 ^65000:3_0:132_0:31$ ip community-list expanded c101 permit 33 ^65000:3_0:133_0:32$ ip community-list expanded c101 permit 34 ^65000:3_0:134_0:33$ ip community-list expanded c101 permit 35 ^65000:3_0:135_0:34$ ip community-list expanded c101 permit 36 ^65000:3_0:136_0:35$ ip community-list expanded c101 permit 37 ^65000:3_0:137_0:36$ ip community-list expanded c101 permit 38 ^65000:3_0:138_0:37$ ip community-list expanded c101 permit 39 ^65000:3_0:139_0:38$ ip community-list expanded c101 permit 40 ^65000:3_0:140_0:39$ ip community-list expanded c101 permit 41 ^65000:3_0:141_0:40$ ip community-list expanded c101 permit 42 ^65000:3_0:142_0:41$ ip community-list expanded c101 permit 43 ^65000:3_0:143_0:42$ ip community-list expanded c101 permit 44 ^65000:3_0:144_0:43$ ip community-list expanded c101 permit 45 ^65000:3_0:145_0:44$ ip community-list expanded c101 permit 46 ^65000:3_0:146_0:45$ ip community-list expanded c101 permit 47 ^65000:3_0:147_0:46$ ip community-list expanded c101 permit 48 ^65000:3_0:148_0:47$ ip community-list expanded c101 permit 49 ^65000:3_0:149_0:48$ ip community-list expanded c101 permit 50 ^65000:3_0:150_0:49$ ip community-list expanded c101 permit 51 ^65000:3_0:151_0:50$ ip community-list expanded c101 permit 52 ^65000:3_0:152_0:51$ ip community-list expanded c101 permit 53 ^65000:3_0:153_0:52$ ip community-list expanded c101 permit 54 ^65000:3_0:154_0:53$ ip community-list expanded c101 permit 55 ^65000:3_0:155_0:54$ ip community-list expanded c101 permit 56 ^65000:3_0:156_0:55$ ip community-list expanded c101 permit 57 ^65000:3_0:157_0:56$ ip community-list expanded c101 permit 58 ^65000:3_0:158_0:57$ ip community-list expanded c101 permit 59 ^65000:3_0:159_0:58$ ip community-list expanded c101 permit 60 ^65000:3_0:160_0:59$ ip community-list expanded c101 permit 61 ^65000:3_0:161_0:60$ ip community-list expanded c101 permit 62 ^65000:3_0:162_0:61$ ip community-list expanded c101 permit 63 ^65000:3_0:163_0:62$ ip community-list expanded c101 permit 64 ^65000:3_0:164_0:63$ ip community-list expanded c101 permit 65 ^65000:3_0:165_0:64$ ip community-list expanded c101 permit 66 ^65000:3_0:166_0:65$ ip community-list expanded c101 permit 67 ^65000:3_0:167_0:66$ ip community-list expanded c101 permit 68 ^65000:3_0:168_0:67$ ip community-list expanded c101 permit 69 ^65000:3_0:169_0:68$ ip community-list expanded c101 permit 70 ^65000:3_0:170_0:69$ ip community-list expanded c101 permit 71 ^65000:3_0:171_0:70$ ip community-list expanded c101 permit 72 ^65000:3_0:172_0:71$ ip community-list expanded c101 permit 73 ^65000:3_0:173_0:72$ ip community-list expanded c101 permit 74 ^65000:3_0:174_0:73$ ip community-list expanded c101 permit 75 ^65000:3_0:175_0:74$ ip community-list expanded c101 permit 76 ^65000:3_0:176_0:75$ ip community-list expanded c101 permit 77 ^65000:3_0:177_0:76$ ip community-list expanded c101 permit 78 ^65000:3_0:178_0:77$ ip community-list expanded c101 permit 79 ^65000:3_0:179_0:78$ ip community-list expanded c101 permit 80 ^65000:3_0:180_0:79$ ip community-list expanded c101 permit 81 ^65000:3_0:181_0:80$ ip community-list expanded c101 permit 82 ^65000:3_0:182_0:81$ ip community-list expanded c101 permit 83 ^65000:3_0:183_0:82$ ip community-list expanded c101 permit 84 ^65000:3_0:184_0:83$ ip community-list expanded c101 permit 85 ^65000:3_0:185_0:84$ ip community-list expanded c101 permit 86 ^65000:3_0:186_0:85$ ip community-list expanded c101 permit 87 ^65000:3_0:187_0:86$ ip community-list expanded c101 permit 88 ^65000:3_0:188_0:87$ ip community-list expanded c101 permit 89 ^65000:3_0:189_0:88$ ip community-list expanded c101 permit 90 ^65000:3_0:190_0:89$ ip community-list expanded c101 permit 91 ^65000:3_0:191_0:90$ ip community-list expanded c101 permit 92 ^65000:3_0:192_0:91$ ip community-list expanded c101 permit 93 ^65000:3_0:193_0:92$ ip community-list expanded c101 permit 94 ^65000:3_0:194_0:93$ ip community-list expanded c101 permit 95 ^65000:3_0:195_0:94$ ip community-list expanded c101 permit 96 ^65000:3_0:196_0:95$ ip community-list expanded c101 permit 97 ^65000:3_0:197_0:96$ ip community-list expanded c101 permit 98 ^65000:3_0:198_0:97$ ip community-list expanded c101 permit 99 ^65000:3_0:199_0:98$ ip community-list expanded c101 permit 100 ^65000:3_0:200_0:99$ ip community-list expanded c101 permit 101 ^65000:3_0:201_0:100$ ip community-list expanded c101 permit 102 ^65000:4_0:202_0:2$ ip community-list expanded c101 permit 103 ^65000:3_0:202_0:101$ ip community-list expanded c101 permit 104 ^65000:4_0:203_0:2$ ip community-list expanded c101 permit 105 ^65000:3_0:203_0:102$ ip community-list expanded c101 permit 106 ^65000:3_0:204_0:103$ ip community-list expanded c101 permit 107 ^65000:3_0:205_0:104$ ip community-list expanded c101 permit 108 ^65000:3_0:206_0:105$ ip community-list expanded c101 permit 109 ^65000:3_0:207_0:106$ ip community-list expanded c101 permit 110 ^65000:3_0:208_0:107$ ip community-list expanded c101 permit 111 ^65000:3_0:209_0:108$ ip community-list expanded c101 permit 112 ^65000:3_0:210_0:109$ ip community-list expanded c101 permit 113 ^65000:3_0:211_0:110$ ip community-list expanded c101 permit 114 ^65000:3_0:212_0:111$ ip community-list expanded c101 permit 115 ^65000:3_0:213_0:112$ ip community-list expanded c101 permit 116 ^65000:3_0:214_0:113$ ip community-list expanded c101 permit 117 ^65000:3_0:215_0:114$ ip community-list expanded c101 permit 118 ^65000:3_0:216_0:115$ ip community-list expanded c101 permit 119 ^65000:3_0:217_0:116$ ip community-list expanded c101 permit 120 ^65000:3_0:218_0:117$ ip community-list expanded c101 permit 121 ^65000:3_0:219_0:118$ ip community-list expanded c101 permit 122 ^65000:3_0:220_0:119$ ip community-list expanded c101 permit 123 ^65000:3_0:221_0:120$ ip community-list expanded c101 permit 124 ^65000:3_0:222_0:121$ ip community-list expanded c101 permit 125 ^65000:3_0:223_0:122$ ip community-list expanded c101 permit 126 ^65000:3_0:224_0:123$ ip community-list expanded c101 permit 127 ^65000:3_0:225_0:124$ ip community-list expanded c101 permit 128 ^65000:3_0:226_0:125$ ip community-list expanded c101 permit 129 ^65000:3_0:227_0:126$ ip community-list expanded c101 permit 130 ^65000:3_0:228_0:127$ ip community-list expanded c101 permit 131 ^65000:3_0:229_0:128$ ip community-list expanded c101 permit 132 ^65000:3_0:230_0:129$ ip community-list expanded c101 permit 133 ^65000:3_0:231_0:130$ ip community-list expanded c101 permit 134 ^65000:3_0:232_0:131$ ip community-list expanded c101 permit 135 ^65000:3_0:233_0:132$ ip community-list expanded c101 permit 136 ^65000:3_0:234_0:133$ ip community-list expanded c101 permit 137 ^65000:3_0:235_0:134$ ip community-list expanded c101 permit 138 ^65000:3_0:236_0:135$ ip community-list expanded c101 permit 139 ^65000:3_0:237_0:136$ ip community-list expanded c101 permit 140 ^65000:3_0:238_0:137$ ip community-list expanded c101 permit 141 ^65000:3_0:239_0:138$ ip community-list expanded c101 permit 142 ^65000:3_0:240_0:139$ ip community-list expanded c101 permit 143 ^65000:3_0:241_0:140$ ip community-list expanded c101 permit 144 ^65000:3_0:242_0:141$ ip community-list expanded c101 permit 145 ^65000:3_0:243_0:142$ ip community-list expanded c101 permit 146 ^65000:3_0:244_0:143$ ip community-list expanded c101 permit 147 ^65000:3_0:245_0:144$ ip community-list expanded c101 permit 148 ^65000:3_0:246_0:145$ ip community-list expanded c101 permit 149 ^65000:3_0:247_0:146$ ip community-list expanded c101 permit 150 ^65000:3_0:248_0:147$ ip community-list expanded c101 permit 151 ^65000:3_0:249_0:148$ ip community-list expanded c101 permit 152 ^65000:3_0:250_0:149$ ip community-list expanded c101 permit 153 ^65000:3_0:251_0:150$ ip community-list expanded c101 permit 154 ^65000:3_0:252_0:151$ ip community-list expanded c101 permit 155 ^65000:3_0:253_0:152$ ip community-list expanded c101 permit 156 ^65000:3_0:254_0:153$ ip community-list expanded c101 permit 157 ^65000:3_0:255_0:154$ ip community-list expanded c101 permit 158 ^65000:3_0:256_0:155$ route-map calculator permit 25589 match community 1_1_100 2_1_101 1_2_99 1_3_98 1_4_97 set community 0:101 route-map calculator permit 25590 match community 1_5_96 1_6_95 1_7_94 1_8_93 1_9_92 set community 0:101 route-map calculator permit 25591 match community 1_10_91 1_11_90 1_12_89 1_13_88 1_14_87 set community 0:101 route-map calculator permit 25592 match community 1_15_86 1_16_85 1_17_84 1_18_83 1_19_82 set community 0:101 route-map calculator permit 25593 match community 1_20_81 1_21_80 1_22_79 1_23_78 1_24_77 set community 0:101 route-map calculator permit 25594 match community 1_25_76 1_26_75 1_27_74 1_28_73 1_29_72 set community 0:101 route-map calculator permit 25595 match community 1_30_71 1_31_70 1_32_69 1_33_68 1_34_67 set community 0:101 route-map calculator permit 25596 match community 1_35_66 1_36_65 1_37_64 1_38_63 1_39_62 set community 0:101 route-map calculator permit 25597 match community 1_40_61 1_41_60 1_42_59 1_43_58 1_44_57 set community 0:101 route-map calculator permit 25598 match community 1_45_56 1_46_55 1_47_54 1_48_53 1_49_52 set community 0:101 route-map calculator permit 25599 match community 1_50_51 c4_101_1 c3_102_1 c3_103_2 c3_104_3 set community 0:101 route-map calculator permit 25600 match community c3_105_4 c3_106_5 c3_107_6 c3_108_7 c3_109_8 set community 0:101 route-map calculator permit 25601 match community c3_110_9 c3_111_10 c3_112_11 c3_113_12 c3_114_13 set community 0:101 route-map calculator permit 25602 match community c3_115_14 c3_116_15 c3_117_16 c3_118_17 c3_119_18 set community 0:101 route-map calculator permit 25603 match community c3_120_19 c3_121_20 c3_122_21 c3_123_22 c3_124_23 set community 0:101 route-map calculator permit 25604 match community c3_125_24 c3_126_25 c3_127_26 c3_128_27 c3_129_28 set community 0:101 route-map calculator permit 25605 match community c3_130_29 c3_131_30 c3_132_31 c3_133_32 c3_134_33 set community 0:101 route-map calculator permit 25606 match community c3_135_34 c3_136_35 c3_137_36 c3_138_37 c3_139_38 set community 0:101 route-map calculator permit 25607 match community c3_140_39 c3_141_40 c3_142_41 c3_143_42 c3_144_43 set community 0:101 route-map calculator permit 25608 match community c3_145_44 c3_146_45 c3_147_46 c3_148_47 c3_149_48 set community 0:101 route-map calculator permit 25609 match community c3_150_49 c3_151_50 c3_152_51 c3_153_52 c3_154_53 set community 0:101 route-map calculator permit 25610 match community c3_155_54 c3_156_55 c3_157_56 c3_158_57 c3_159_58 set community 0:101 route-map calculator permit 25611 match community c3_160_59 c3_161_60 c3_162_61 c3_163_62 c3_164_63 set community 0:101 route-map calculator permit 25612 match community c3_165_64 c3_166_65 c3_167_66 c3_168_67 c3_169_68 set community 0:101 route-map calculator permit 25613 match community c3_170_69 c3_171_70 c3_172_71 c3_173_72 c3_174_73 set community 0:101 route-map calculator permit 25614 match community c3_175_74 c3_176_75 c3_177_76 c3_178_77 c3_179_78 set community 0:101 route-map calculator permit 25615 match community c3_180_79 c3_181_80 c3_182_81 c3_183_82 c3_184_83 set community 0:101 route-map calculator permit 25616 match community c3_185_84 c3_186_85 c3_187_86 c3_188_87 c3_189_88 set community 0:101 route-map calculator permit 25617 match community c3_190_89 c3_191_90 c3_192_91 c3_193_92 c3_194_93 set community 0:101 route-map calculator permit 25618 match community c3_195_94 c3_196_95 c3_197_96 c3_198_97 c3_199_98 set community 0:101 route-map calculator permit 25619 match community c3_200_99 c3_201_100 c4_202_2 c3_202_101 c4_203_2 set community 0:101 route-map calculator permit 25620 match community c3_203_102 c3_204_103 c3_205_104 c3_206_105 c3_207_106 set community 0:101 route-map calculator permit 25621 match community c3_208_107 c3_209_108 c3_210_109 c3_211_110 c3_212_111 set community 0:101 route-map calculator permit 25622 match community c3_213_112 c3_214_113 c3_215_114 c3_216_115 c3_217_116 set community 0:101 route-map calculator permit 25623 match community c3_218_117 c3_219_118 c3_220_119 c3_221_120 c3_222_121 set community 0:101 route-map calculator permit 25624 match community c3_223_122 c3_224_123 c3_225_124 c3_226_125 c3_227_126 set community 0:101 route-map calculator permit 25625 match community c3_228_127 c3_229_128 c3_230_129 c3_231_130 c3_232_131 set community 0:101 route-map calculator permit 25626 match community c3_233_132 c3_234_133 c3_235_134 c3_236_135 c3_237_136 set community 0:101 route-map calculator permit 25627 match community c3_238_137 c3_239_138 c3_240_139 c3_241_140 c3_242_141 set community 0:101 route-map calculator permit 25628 match community c3_243_142 c3_244_143 c3_245_144 c3_246_145 c3_247_146 set community 0:101 route-map calculator permit 25629 match community c3_248_147 c3_249_148 c3_250_149 c3_251_150 c3_252_151 set community 0:101 route-map calculator permit 25630 match community c3_253_152 c3_254_153 c3_255_154 c3_256_155 set community 0:101 ip community-list standard 2_38_245 permit 65000:2 0:38 0:245 ip community-list standard 2_49_190 permit 65000:2 0:49 0:190 ip community-list standard 2_70_133 permit 65000:2 0:70 0:133 ip community-list standard 2_95_98 permit 65000:2 0:95 0:98 route-map calculator permit 25631 match community 2_38_245 2_49_190 2_70_133 2_95_98 set community 0:9310 ip community-list standard 2_68_190 permit 65000:2 0:68 0:190 ip community-list standard 2_76_170 permit 65000:2 0:76 0:170 ip community-list standard 2_85_152 permit 65000:2 0:85 0:152 ip community-list standard 2_95_136 permit 65000:2 0:95 0:136 route-map calculator permit 25632 match community 2_68_190 2_76_170 2_85_152 2_95_136 set community 0:12920 ip community-list standard 2_68_238 permit 65000:2 0:68 0:238 ip community-list standard 2_119_136 permit 65000:2 0:119 0:136 route-map calculator permit 25633 match community 2_68_238 2_119_136 set community 0:16184 ip community-list standard 2_215_234 permit 65000:2 0:215 0:234 route-map calculator permit 25634 match community 2_215_234 set community 0:50310 ip community-list standard 2_157_255 permit 65000:2 0:157 0:255 route-map calculator permit 25635 match community 2_157_255 set community 0:40035 ip community-list standard 2_26_188 permit 65000:2 0:26 0:188 ip community-list standard 2_47_104 permit 65000:2 0:47 0:104 ip community-list standard 2_52_94 permit 65000:2 0:52 0:94 route-map calculator permit 25636 match community 2_26_188 2_47_104 2_52_94 set community 0:4888 ip community-list standard 2_100_249 permit 65000:2 0:100 0:249 ip community-list standard 2_150_166 permit 65000:2 0:150 0:166 route-map calculator permit 25637 match community 2_100_249 2_150_166 set community 0:24900 ip community-list standard 2_233_256 permit 65000:2 0:233 0:256 route-map calculator permit 25638 match community 2_233_256 set community 0:59648 ip community-list standard 2_195_215 permit 65000:2 0:195 0:215 route-map calculator permit 25639 match community 2_195_215 set community 0:41925 ip community-list standard 2_167_244 permit 65000:2 0:167 0:244 route-map calculator permit 25640 match community 2_167_244 set community 0:40748 ip community-list standard 2_29_220 permit 65000:2 0:29 0:220 ip community-list standard 2_44_145 permit 65000:2 0:44 0:145 ip community-list standard 2_55_116 permit 65000:2 0:55 0:116 ip community-list standard 2_58_110 permit 65000:2 0:58 0:110 route-map calculator permit 25641 match community 2_29_220 2_44_145 2_55_116 2_58_110 set community 0:6380 ip community-list standard 2_64_151 permit 65000:2 0:64 0:151 route-map calculator permit 25642 match community 2_64_151 set community 0:9664 ip community-list standard 2_48_254 permit 65000:2 0:48 0:254 ip community-list standard 2_96_127 permit 65000:2 0:96 0:127 route-map calculator permit 25643 match community 2_48_254 2_96_127 set community 0:12192 ip community-list standard 2_46_217 permit 65000:2 0:46 0:217 ip community-list standard 2_62_161 permit 65000:2 0:62 0:161 route-map calculator permit 25644 match community 2_46_217 2_62_161 set community 0:9982 ip community-list standard 2_20_250 permit 65000:2 0:20 0:250 ip community-list standard 2_25_200 permit 65000:2 0:25 0:200 ip community-list standard 2_40_125 permit 65000:2 0:40 0:125 ip community-list standard 2_50_100 permit 65000:2 0:50 0:100 route-map calculator permit 25645 match community 2_20_250 2_25_200 2_40_125 2_50_100 set community 0:5000 ip community-list standard 2_7_238 permit 65000:2 0:7 0:238 ip community-list standard 2_14_119 permit 65000:2 0:14 0:119 ip community-list standard 2_17_98 permit 65000:2 0:17 0:98 ip community-list standard 2_34_49 permit 65000:2 0:34 0:49 route-map calculator permit 25646 match community 2_7_238 2_14_119 2_17_98 2_34_49 set community 0:1666 ip community-list standard 2_104_239 permit 65000:2 0:104 0:239 route-map calculator permit 25647 match community 2_104_239 set community 0:24856 ip community-list standard 2_75_107 permit 65000:2 0:75 0:107 route-map calculator permit 25648 match community 2_75_107 set community 0:8025 ip community-list standard 2_61_255 permit 65000:2 0:61 0:255 ip community-list standard 2_85_183 permit 65000:2 0:85 0:183 route-map calculator permit 25649 match community 2_61_255 2_85_183 set community 0:15555 ip community-list standard 2_37_97 permit 65000:2 0:37 0:97 route-map calculator permit 25650 match community 2_37_97 set community 0:3589 ip community-list standard 2_159_219 permit 65000:2 0:159 0:219 route-map calculator permit 25651 match community 2_159_219 set community 0:34821 ip community-list standard 2_194_239 permit 65000:2 0:194 0:239 route-map calculator permit 25652 match community 2_194_239 set community 0:46366 ip community-list standard 2_28_214 permit 65000:2 0:28 0:214 ip community-list standard 2_56_107 permit 65000:2 0:56 0:107 route-map calculator permit 25653 match community 2_28_214 2_56_107 set community 0:5992 ip community-list standard 2_33_159 permit 65000:2 0:33 0:159 ip community-list standard 2_53_99 permit 65000:2 0:53 0:99 route-map calculator permit 25654 match community 2_33_159 2_53_99 set community 0:5247 ip community-list standard 2_38_178 permit 65000:2 0:38 0:178 ip community-list standard 2_76_89 permit 65000:2 0:76 0:89 route-map calculator permit 25655 match community 2_38_178 2_76_89 set community 0:6764 ip community-list standard 2_38_167 permit 65000:2 0:38 0:167 route-map calculator permit 25656 match community 2_38_167 set community 0:6346 ip community-list standard 2_44_222 permit 65000:2 0:44 0:222 ip community-list standard 2_66_148 permit 65000:2 0:66 0:148 ip community-list standard 2_74_132 permit 65000:2 0:74 0:132 ip community-list standard 2_88_111 permit 65000:2 0:88 0:111 route-map calculator permit 25657 match community 2_44_222 2_66_148 2_74_132 2_88_111 set community 0:9768 ip community-list standard 2_233_240 permit 65000:2 0:233 0:240 route-map calculator permit 25658 match community 2_233_240 set community 0:55920 ip community-list standard 2_75_229 permit 65000:2 0:75 0:229 route-map calculator permit 25659 match community 2_75_229 set community 0:17175 ip community-list standard 2_113_201 permit 65000:2 0:113 0:201 route-map calculator permit 25660 match community 2_113_201 set community 0:22713 ip community-list standard 2_11_192 permit 65000:2 0:11 0:192 ip community-list standard 2_12_176 permit 65000:2 0:12 0:176 ip community-list standard 2_16_132 permit 65000:2 0:16 0:132 ip community-list standard 2_22_96 permit 65000:2 0:22 0:96 ip community-list standard 2_24_88 permit 65000:2 0:24 0:88 ip community-list standard 2_32_66 permit 65000:2 0:32 0:66 ip community-list standard 2_33_64 permit 65000:2 0:33 0:64 ip community-list standard 2_44_48 permit 65000:2 0:44 0:48 route-map calculator permit 25661 match community 2_11_192 2_12_176 2_16_132 2_22_96 2_24_88 set community 0:2112 route-map calculator permit 25662 match community 2_32_66 2_33_64 2_44_48 set community 0:2112 ip community-list standard 2_108_232 permit 65000:2 0:108 0:232 ip community-list standard 2_116_216 permit 65000:2 0:116 0:216 ip community-list standard 2_144_174 permit 65000:2 0:144 0:174 route-map calculator permit 25663 match community 2_108_232 2_116_216 2_144_174 set community 0:25056 ip community-list standard 2_51_211 permit 65000:2 0:51 0:211 route-map calculator permit 25664 match community 2_51_211 set community 0:10761 ip community-list standard 2_142_188 permit 65000:2 0:142 0:188 route-map calculator permit 25665 match community 2_142_188 set community 0:26696 ip community-list standard 2_197_205 permit 65000:2 0:197 0:205 route-map calculator permit 25666 match community 2_197_205 set community 0:40385 ip community-list standard 2_167_233 permit 65000:2 0:167 0:233 route-map calculator permit 25667 match community 2_167_233 set community 0:38911 ip community-list standard 2_146_219 permit 65000:2 0:146 0:219 route-map calculator permit 25668 match community 2_146_219 set community 0:31974 ip community-list standard 2_38_243 permit 65000:2 0:38 0:243 ip community-list standard 2_54_171 permit 65000:2 0:54 0:171 ip community-list standard 2_57_162 permit 65000:2 0:57 0:162 ip community-list standard 2_81_114 permit 65000:2 0:81 0:114 route-map calculator permit 25669 match community 2_38_243 2_54_171 2_57_162 2_81_114 set community 0:9234 ip community-list standard 2_19_114 permit 65000:2 0:19 0:114 ip community-list standard 2_38_57 permit 65000:2 0:38 0:57 route-map calculator permit 25670 match community 2_19_114 2_38_57 set community 0:2166 ip community-list standard 2_171_190 permit 65000:2 0:171 0:190 route-map calculator permit 25671 match community 2_171_190 set community 0:32490 ip community-list standard 2_64_230 permit 65000:2 0:64 0:230 ip community-list standard 2_80_184 permit 65000:2 0:80 0:184 ip community-list standard 2_92_160 permit 65000:2 0:92 0:160 ip community-list standard 2_115_128 permit 65000:2 0:115 0:128 route-map calculator permit 25672 match community 2_64_230 2_80_184 2_92_160 2_115_128 set community 0:14720 ip community-list standard 2_53_216 permit 65000:2 0:53 0:216 ip community-list standard 2_54_212 permit 65000:2 0:54 0:212 ip community-list standard 2_72_159 permit 65000:2 0:72 0:159 ip community-list standard 2_106_108 permit 65000:2 0:106 0:108 route-map calculator permit 25673 match community 2_53_216 2_54_212 2_72_159 2_106_108 set community 0:11448 ip community-list standard 2_40_250 permit 65000:2 0:40 0:250 ip community-list standard 2_50_200 permit 65000:2 0:50 0:200 ip community-list standard 2_80_125 permit 65000:2 0:80 0:125 ip community-list standard 2_100_100 permit 65000:2 0:100 0:100 route-map calculator permit 25674 match community 2_40_250 2_50_200 2_80_125 2_100_100 set community 0:10000 ip community-list standard 2_89_165 permit 65000:2 0:89 0:165 route-map calculator permit 25675 match community 2_89_165 set community 0:14685 ip community-list standard 2_148_178 permit 65000:2 0:148 0:178 route-map calculator permit 25676 match community 2_148_178 set community 0:26344 ip community-list standard 2_91_247 permit 65000:2 0:91 0:247 ip community-list standard 2_133_169 permit 65000:2 0:133 0:169 route-map calculator permit 25677 match community 2_91_247 2_133_169 set community 0:22477 ip community-list standard 2_53_232 permit 65000:2 0:53 0:232 ip community-list standard 2_58_212 permit 65000:2 0:58 0:212 ip community-list standard 2_106_116 permit 65000:2 0:106 0:116 route-map calculator permit 25678 match community 2_53_232 2_58_212 2_106_116 set community 0:12296 ip community-list standard 2_223_233 permit 65000:2 0:223 0:233 route-map calculator permit 25679 match community 2_223_233 set community 0:51959 ip community-list standard 2_198_237 permit 65000:2 0:198 0:237 route-map calculator permit 25680 match community 2_198_237 set community 0:46926 ip community-list standard 2_33_250 permit 65000:2 0:33 0:250 ip community-list standard 2_50_165 permit 65000:2 0:50 0:165 ip community-list standard 2_55_150 permit 65000:2 0:55 0:150 ip community-list standard 2_66_125 permit 65000:2 0:66 0:125 ip community-list standard 2_75_110 permit 65000:2 0:75 0:110 route-map calculator permit 25681 match community 2_33_250 2_50_165 2_55_150 2_66_125 2_75_110 set community 0:8250 ip community-list standard 2_37_73 permit 65000:2 0:37 0:73 route-map calculator permit 25682 match community 2_37_73 set community 0:2701 ip community-list standard 2_10_235 permit 65000:2 0:10 0:235 ip community-list standard 2_25_94 permit 65000:2 0:25 0:94 ip community-list standard 2_47_50 permit 65000:2 0:47 0:50 route-map calculator permit 25683 match community 2_10_235 2_25_94 2_47_50 set community 0:2350 ip community-list standard 2_88_229 permit 65000:2 0:88 0:229 route-map calculator permit 25684 match community 2_88_229 set community 0:20152 ip community-list standard 2_17_226 permit 65000:2 0:17 0:226 ip community-list standard 2_34_113 permit 65000:2 0:34 0:113 route-map calculator permit 25685 match community 2_17_226 2_34_113 set community 0:3842 ip community-list standard 2_123_245 permit 65000:2 0:123 0:245 ip community-list standard 2_147_205 permit 65000:2 0:147 0:205 route-map calculator permit 25686 match community 2_123_245 2_147_205 set community 0:30135 ip community-list standard 2_185_247 permit 65000:2 0:185 0:247 route-map calculator permit 25687 match community 2_185_247 set community 0:45695 ip community-list standard 2_147_222 permit 65000:2 0:147 0:222 route-map calculator permit 25688 match community 2_147_222 set community 0:32634 ip community-list standard 2_165_256 permit 65000:2 0:165 0:256 ip community-list standard 2_176_240 permit 65000:2 0:176 0:240 ip community-list standard 2_192_220 permit 65000:2 0:192 0:220 route-map calculator permit 25689 match community 2_165_256 2_176_240 2_192_220 set community 0:42240 ip community-list standard 2_109_189 permit 65000:2 0:109 0:189 route-map calculator permit 25690 match community 2_109_189 set community 0:20601 ip community-list standard 2_161_221 permit 65000:2 0:161 0:221 route-map calculator permit 25691 match community 2_161_221 set community 0:35581 ip community-list standard 2_37_212 permit 65000:2 0:37 0:212 ip community-list standard 2_53_148 permit 65000:2 0:53 0:148 ip community-list standard 2_74_106 permit 65000:2 0:74 0:106 route-map calculator permit 25692 match community 2_37_212 2_53_148 2_74_106 set community 0:7844 ip community-list standard 2_81_221 permit 65000:2 0:81 0:221 ip community-list standard 2_117_153 permit 65000:2 0:117 0:153 route-map calculator permit 25693 match community 2_81_221 2_117_153 set community 0:17901 ip community-list standard 2_22_145 permit 65000:2 0:22 0:145 ip community-list standard 2_29_110 permit 65000:2 0:29 0:110 ip community-list standard 2_55_58 permit 65000:2 0:55 0:58 route-map calculator permit 25694 match community 2_22_145 2_29_110 2_55_58 set community 0:3190 ip community-list standard 2_35_225 permit 65000:2 0:35 0:225 ip community-list standard 2_45_175 permit 65000:2 0:45 0:175 ip community-list standard 2_63_125 permit 65000:2 0:63 0:125 ip community-list standard 2_75_105 permit 65000:2 0:75 0:105 route-map calculator permit 25695 match community 2_35_225 2_45_175 2_63_125 2_75_105 set community 0:7875 ip community-list standard 2_193_221 permit 65000:2 0:193 0:221 route-map calculator permit 25696 match community 2_193_221 set community 0:42653 ip community-list standard 2_9_111 permit 65000:2 0:9 0:111 ip community-list standard 2_27_37 permit 65000:2 0:27 0:37 route-map calculator permit 25697 match community 2_9_111 2_27_37 set community 0:999 ip community-list standard 2_20_247 permit 65000:2 0:20 0:247 ip community-list standard 2_26_190 permit 65000:2 0:26 0:190 ip community-list standard 2_38_130 permit 65000:2 0:38 0:130 ip community-list standard 2_52_95 permit 65000:2 0:52 0:95 ip community-list standard 2_65_76 permit 65000:2 0:65 0:76 route-map calculator permit 25698 match community 2_20_247 2_26_190 2_38_130 2_52_95 2_65_76 set community 0:4940 ip community-list standard 2_126_237 permit 65000:2 0:126 0:237 ip community-list standard 2_158_189 permit 65000:2 0:158 0:189 route-map calculator permit 25699 match community 2_126_237 2_158_189 set community 0:29862 ip community-list standard 2_164_253 permit 65000:2 0:164 0:253 route-map calculator permit 25700 match community 2_164_253 set community 0:41492 ip community-list standard 2_38_179 permit 65000:2 0:38 0:179 route-map calculator permit 25701 match community 2_38_179 set community 0:6802 ip community-list standard 2_189_237 permit 65000:2 0:189 0:237 route-map calculator permit 25702 match community 2_189_237 set community 0:44793 ip community-list standard 2_2_176 permit 65000:2 0:2 0:176 ip community-list standard 2_4_88 permit 65000:2 0:4 0:88 ip community-list standard 2_8_44 permit 65000:2 0:8 0:44 ip community-list standard 2_11_32 permit 65000:2 0:11 0:32 ip community-list standard 2_16_22 permit 65000:2 0:16 0:22 ip community-list standard 1_96_256 permit 65000:1 0:96 0:256 ip community-list standard 1_97_255 permit 65000:1 0:97 0:255 ip community-list standard 1_98_254 permit 65000:1 0:98 0:254 ip community-list standard 1_99_253 permit 65000:1 0:99 0:253 ip community-list standard 1_100_252 permit 65000:1 0:100 0:252 ip community-list standard 1_101_251 permit 65000:1 0:101 0:251 ip community-list standard 1_102_250 permit 65000:1 0:102 0:250 ip community-list standard 1_103_249 permit 65000:1 0:103 0:249 ip community-list standard 1_104_248 permit 65000:1 0:104 0:248 ip community-list standard 1_105_247 permit 65000:1 0:105 0:247 ip community-list standard 1_106_246 permit 65000:1 0:106 0:246 ip community-list standard 1_107_245 permit 65000:1 0:107 0:245 ip community-list standard 1_108_244 permit 65000:1 0:108 0:244 ip community-list standard 1_109_243 permit 65000:1 0:109 0:243 ip community-list standard 1_110_242 permit 65000:1 0:110 0:242 ip community-list standard 1_111_241 permit 65000:1 0:111 0:241 ip community-list standard 1_112_240 permit 65000:1 0:112 0:240 ip community-list standard 1_113_239 permit 65000:1 0:113 0:239 ip community-list standard 1_114_238 permit 65000:1 0:114 0:238 ip community-list standard 1_115_237 permit 65000:1 0:115 0:237 ip community-list standard 1_116_236 permit 65000:1 0:116 0:236 ip community-list standard 1_117_235 permit 65000:1 0:117 0:235 ip community-list standard 1_118_234 permit 65000:1 0:118 0:234 ip community-list standard 1_119_233 permit 65000:1 0:119 0:233 ip community-list standard 1_120_232 permit 65000:1 0:120 0:232 ip community-list standard 1_121_231 permit 65000:1 0:121 0:231 ip community-list standard 1_122_230 permit 65000:1 0:122 0:230 ip community-list standard 1_123_229 permit 65000:1 0:123 0:229 ip community-list standard 1_124_228 permit 65000:1 0:124 0:228 ip community-list standard 1_125_227 permit 65000:1 0:125 0:227 ip community-list standard 1_126_226 permit 65000:1 0:126 0:226 ip community-list standard 1_127_225 permit 65000:1 0:127 0:225 ip community-list standard 1_128_224 permit 65000:1 0:128 0:224 ip community-list standard 1_129_223 permit 65000:1 0:129 0:223 ip community-list standard 1_130_222 permit 65000:1 0:130 0:222 ip community-list standard 1_131_221 permit 65000:1 0:131 0:221 ip community-list standard 1_132_220 permit 65000:1 0:132 0:220 ip community-list standard 1_133_219 permit 65000:1 0:133 0:219 ip community-list standard 1_134_218 permit 65000:1 0:134 0:218 ip community-list standard 1_135_217 permit 65000:1 0:135 0:217 ip community-list standard 1_136_216 permit 65000:1 0:136 0:216 ip community-list standard 1_137_215 permit 65000:1 0:137 0:215 ip community-list standard 1_138_214 permit 65000:1 0:138 0:214 ip community-list standard 1_139_213 permit 65000:1 0:139 0:213 ip community-list standard 1_140_212 permit 65000:1 0:140 0:212 ip community-list standard 1_141_211 permit 65000:1 0:141 0:211 ip community-list standard 1_142_210 permit 65000:1 0:142 0:210 ip community-list standard 1_143_209 permit 65000:1 0:143 0:209 ip community-list standard 1_144_208 permit 65000:1 0:144 0:208 ip community-list standard 1_145_207 permit 65000:1 0:145 0:207 ip community-list standard 1_146_206 permit 65000:1 0:146 0:206 ip community-list standard 1_147_205 permit 65000:1 0:147 0:205 ip community-list standard 1_148_204 permit 65000:1 0:148 0:204 ip community-list standard 1_149_203 permit 65000:1 0:149 0:203 ip community-list standard 1_150_202 permit 65000:1 0:150 0:202 ip community-list standard 1_151_201 permit 65000:1 0:151 0:201 ip community-list standard 1_152_200 permit 65000:1 0:152 0:200 ip community-list standard 1_153_199 permit 65000:1 0:153 0:199 ip community-list standard 1_154_198 permit 65000:1 0:154 0:198 ip community-list standard 1_155_197 permit 65000:1 0:155 0:197 ip community-list standard 1_156_196 permit 65000:1 0:156 0:196 ip community-list standard 1_157_195 permit 65000:1 0:157 0:195 ip community-list standard 1_158_194 permit 65000:1 0:158 0:194 ip community-list standard 1_159_193 permit 65000:1 0:159 0:193 ip community-list standard 1_160_192 permit 65000:1 0:160 0:192 ip community-list standard 1_161_191 permit 65000:1 0:161 0:191 ip community-list standard 1_162_190 permit 65000:1 0:162 0:190 ip community-list standard 1_163_189 permit 65000:1 0:163 0:189 ip community-list standard 1_164_188 permit 65000:1 0:164 0:188 ip community-list standard 1_165_187 permit 65000:1 0:165 0:187 ip community-list standard 1_166_186 permit 65000:1 0:166 0:186 ip community-list standard 1_167_185 permit 65000:1 0:167 0:185 ip community-list standard 1_168_184 permit 65000:1 0:168 0:184 ip community-list standard 1_169_183 permit 65000:1 0:169 0:183 ip community-list standard 1_170_182 permit 65000:1 0:170 0:182 ip community-list standard 1_171_181 permit 65000:1 0:171 0:181 ip community-list standard 1_172_180 permit 65000:1 0:172 0:180 ip community-list standard 1_173_179 permit 65000:1 0:173 0:179 ip community-list standard 1_174_178 permit 65000:1 0:174 0:178 ip community-list standard 1_175_177 permit 65000:1 0:175 0:177 ip community-list standard 1_176_176 permit 65000:1 0:176 0:176 route-map calculator permit 25703 match community 2_2_176 2_4_88 2_8_44 2_11_32 2_16_22 set community 0:352 route-map calculator permit 25704 match community 1_96_256 1_97_255 1_98_254 1_99_253 1_100_252 set community 0:352 route-map calculator permit 25705 match community 1_101_251 1_102_250 1_103_249 1_104_248 1_105_247 set community 0:352 route-map calculator permit 25706 match community 1_106_246 1_107_245 1_108_244 1_109_243 1_110_242 set community 0:352 route-map calculator permit 25707 match community 1_111_241 1_112_240 1_113_239 1_114_238 1_115_237 set community 0:352 route-map calculator permit 25708 match community 1_116_236 1_117_235 1_118_234 1_119_233 1_120_232 set community 0:352 route-map calculator permit 25709 match community 1_121_231 1_122_230 1_123_229 1_124_228 1_125_227 set community 0:352 route-map calculator permit 25710 match community 1_126_226 1_127_225 1_128_224 1_129_223 1_130_222 set community 0:352 route-map calculator permit 25711 match community 1_131_221 1_132_220 1_133_219 1_134_218 1_135_217 set community 0:352 route-map calculator permit 25712 match community 1_136_216 1_137_215 1_138_214 1_139_213 1_140_212 set community 0:352 route-map calculator permit 25713 match community 1_141_211 1_142_210 1_143_209 1_144_208 1_145_207 set community 0:352 route-map calculator permit 25714 match community 1_146_206 1_147_205 1_148_204 1_149_203 1_150_202 set community 0:352 route-map calculator permit 25715 match community 1_151_201 1_152_200 1_153_199 1_154_198 1_155_197 set community 0:352 route-map calculator permit 25716 match community 1_156_196 1_157_195 1_158_194 1_159_193 1_160_192 set community 0:352 route-map calculator permit 25717 match community 1_161_191 1_162_190 1_163_189 1_164_188 1_165_187 set community 0:352 route-map calculator permit 25718 match community 1_166_186 1_167_185 1_168_184 1_169_183 1_170_182 set community 0:352 route-map calculator permit 25719 match community 1_171_181 1_172_180 1_173_179 1_174_178 1_175_177 set community 0:352 route-map calculator permit 25720 match community 1_176_176 set community 0:352 ip community-list standard 2_72_218 permit 65000:2 0:72 0:218 ip community-list standard 2_109_144 permit 65000:2 0:109 0:144 route-map calculator permit 25721 match community 2_72_218 2_109_144 set community 0:15696 ip community-list standard 2_38_141 permit 65000:2 0:38 0:141 ip community-list standard 2_47_114 permit 65000:2 0:47 0:114 ip community-list standard 2_57_94 permit 65000:2 0:57 0:94 route-map calculator permit 25722 match community 2_38_141 2_47_114 2_57_94 set community 0:5358 ip community-list standard 2_200_249 permit 65000:2 0:200 0:249 route-map calculator permit 25723 match community 2_200_249 set community 0:49800 ip community-list standard 2_19_236 permit 65000:2 0:19 0:236 ip community-list standard 2_38_118 permit 65000:2 0:38 0:118 ip community-list standard 2_59_76 permit 65000:2 0:59 0:76 route-map calculator permit 25724 match community 2_19_236 2_38_118 2_59_76 set community 0:4484 ip community-list standard 2_214_222 permit 65000:2 0:214 0:222 route-map calculator permit 25725 match community 2_214_222 set community 0:47508 ip community-list standard 2_139_154 permit 65000:2 0:139 0:154 route-map calculator permit 25726 match community 2_139_154 set community 0:21406 ip community-list standard 2_175_195 permit 65000:2 0:175 0:195 route-map calculator permit 25727 match community 2_175_195 set community 0:34125 ip community-list standard 2_139_201 permit 65000:2 0:139 0:201 route-map calculator permit 25728 match community 2_139_201 set community 0:27939 ip community-list standard 2_76_243 permit 65000:2 0:76 0:243 ip community-list standard 2_81_228 permit 65000:2 0:81 0:228 ip community-list standard 2_108_171 permit 65000:2 0:108 0:171 ip community-list standard 2_114_162 permit 65000:2 0:114 0:162 route-map calculator permit 25729 match community 2_76_243 2_81_228 2_108_171 2_114_162 set community 0:18468 ip community-list standard 2_111_229 permit 65000:2 0:111 0:229 route-map calculator permit 25730 match community 2_111_229 set community 0:25419 ip community-list standard 2_7_178 permit 65000:2 0:7 0:178 ip community-list standard 2_14_89 permit 65000:2 0:14 0:89 route-map calculator permit 25731 match community 2_7_178 2_14_89 set community 0:1246 ip community-list standard 2_21_113 permit 65000:2 0:21 0:113 route-map calculator permit 25732 match community 2_21_113 set community 0:2373 ip community-list standard 2_165_206 permit 65000:2 0:165 0:206 route-map calculator permit 25733 match community 2_165_206 set community 0:33990 ip community-list standard 2_51_133 permit 65000:2 0:51 0:133 ip community-list standard 2_57_119 permit 65000:2 0:57 0:119 route-map calculator permit 25734 match community 2_51_133 2_57_119 set community 0:6783 ip community-list standard 2_10_213 permit 65000:2 0:10 0:213 ip community-list standard 2_15_142 permit 65000:2 0:15 0:142 ip community-list standard 2_30_71 permit 65000:2 0:30 0:71 route-map calculator permit 25735 match community 2_10_213 2_15_142 2_30_71 set community 0:2130 ip community-list standard 2_194_228 permit 65000:2 0:194 0:228 route-map calculator permit 25736 match community 2_194_228 set community 0:44232 ip community-list standard 2_209_243 permit 65000:2 0:209 0:243 route-map calculator permit 25737 match community 2_209_243 set community 0:50787 ip community-list standard 2_179_230 permit 65000:2 0:179 0:230 route-map calculator permit 25738 match community 2_179_230 set community 0:41170 ip community-list standard 2_22_134 permit 65000:2 0:22 0:134 ip community-list standard 2_44_67 permit 65000:2 0:44 0:67 route-map calculator permit 25739 match community 2_22_134 2_44_67 set community 0:2948 ip community-list standard 2_202_208 permit 65000:2 0:202 0:208 route-map calculator permit 25740 match community 2_202_208 set community 0:42016 ip community-list standard 2_127_221 permit 65000:2 0:127 0:221 route-map calculator permit 25741 match community 2_127_221 set community 0:28067 ip community-list standard 2_126_217 permit 65000:2 0:126 0:217 ip community-list standard 2_147_186 permit 65000:2 0:147 0:186 route-map calculator permit 25742 match community 2_126_217 2_147_186 set community 0:27342 ip community-list standard 2_86_237 permit 65000:2 0:86 0:237 ip community-list standard 2_129_158 permit 65000:2 0:129 0:158 route-map calculator permit 25743 match community 2_86_237 2_129_158 set community 0:20382 ip community-list standard 2_69_206 permit 65000:2 0:69 0:206 ip community-list standard 2_103_138 permit 65000:2 0:103 0:138 route-map calculator permit 25744 match community 2_69_206 2_103_138 set community 0:14214 ip community-list standard 2_65_250 permit 65000:2 0:65 0:250 ip community-list standard 2_125_130 permit 65000:2 0:125 0:130 route-map calculator permit 25745 match community 2_65_250 2_125_130 set community 0:16250 ip community-list standard 2_44_179 permit 65000:2 0:44 0:179 route-map calculator permit 25746 match community 2_44_179 set community 0:7876 ip community-list standard 2_163_200 permit 65000:2 0:163 0:200 route-map calculator permit 25747 match community 2_163_200 set community 0:32600 ip community-list standard 2_26_227 permit 65000:2 0:26 0:227 route-map calculator permit 25748 match community 2_26_227 set community 0:5902 ip community-list standard 2_92_252 permit 65000:2 0:92 0:252 ip community-list standard 2_112_207 permit 65000:2 0:112 0:207 ip community-list standard 2_126_184 permit 65000:2 0:126 0:184 ip community-list standard 2_138_168 permit 65000:2 0:138 0:168 ip community-list standard 2_144_161 permit 65000:2 0:144 0:161 route-map calculator permit 25749 match community 2_92_252 2_112_207 2_126_184 2_138_168 2_144_161 set community 0:23184 ip community-list standard 2_142_190 permit 65000:2 0:142 0:190 route-map calculator permit 25750 match community 2_142_190 set community 0:26980 ip community-list standard 2_155_248 permit 65000:2 0:155 0:248 route-map calculator permit 25751 match community 2_155_248 set community 0:38440 ip community-list standard 2_95_103 permit 65000:2 0:95 0:103 route-map calculator permit 25752 match community 2_95_103 set community 0:9785 ip community-list standard 2_230_232 permit 65000:2 0:230 0:232 route-map calculator permit 25753 match community 2_230_232 set community 0:53360 ip community-list standard 2_2_215 permit 65000:2 0:2 0:215 ip community-list standard 2_5_86 permit 65000:2 0:5 0:86 ip community-list standard 2_10_43 permit 65000:2 0:10 0:43 ip community-list standard 1_174_256 permit 65000:1 0:174 0:256 ip community-list standard 1_175_255 permit 65000:1 0:175 0:255 ip community-list standard 1_176_254 permit 65000:1 0:176 0:254 ip community-list standard 1_177_253 permit 65000:1 0:177 0:253 ip community-list standard 1_178_252 permit 65000:1 0:178 0:252 ip community-list standard 1_179_251 permit 65000:1 0:179 0:251 ip community-list standard 1_180_250 permit 65000:1 0:180 0:250 ip community-list standard 1_181_249 permit 65000:1 0:181 0:249 ip community-list standard 1_182_248 permit 65000:1 0:182 0:248 ip community-list standard 1_183_247 permit 65000:1 0:183 0:247 ip community-list standard 1_184_246 permit 65000:1 0:184 0:246 ip community-list standard 1_185_245 permit 65000:1 0:185 0:245 ip community-list standard 1_186_244 permit 65000:1 0:186 0:244 ip community-list standard 1_187_243 permit 65000:1 0:187 0:243 ip community-list standard 1_188_242 permit 65000:1 0:188 0:242 ip community-list standard 1_189_241 permit 65000:1 0:189 0:241 ip community-list standard 1_190_240 permit 65000:1 0:190 0:240 ip community-list standard 1_191_239 permit 65000:1 0:191 0:239 ip community-list standard 1_192_238 permit 65000:1 0:192 0:238 ip community-list standard 1_193_237 permit 65000:1 0:193 0:237 ip community-list standard 1_194_236 permit 65000:1 0:194 0:236 ip community-list standard 1_195_235 permit 65000:1 0:195 0:235 ip community-list standard 1_196_234 permit 65000:1 0:196 0:234 ip community-list standard 1_197_233 permit 65000:1 0:197 0:233 ip community-list standard 1_198_232 permit 65000:1 0:198 0:232 ip community-list standard 1_199_231 permit 65000:1 0:199 0:231 ip community-list standard 1_200_230 permit 65000:1 0:200 0:230 ip community-list standard 1_201_229 permit 65000:1 0:201 0:229 ip community-list standard 1_202_228 permit 65000:1 0:202 0:228 ip community-list standard 1_203_227 permit 65000:1 0:203 0:227 ip community-list standard 1_204_226 permit 65000:1 0:204 0:226 ip community-list standard 1_205_225 permit 65000:1 0:205 0:225 ip community-list standard 1_206_224 permit 65000:1 0:206 0:224 ip community-list standard 1_207_223 permit 65000:1 0:207 0:223 ip community-list standard 1_208_222 permit 65000:1 0:208 0:222 ip community-list standard 1_209_221 permit 65000:1 0:209 0:221 ip community-list standard 1_210_220 permit 65000:1 0:210 0:220 ip community-list standard 1_211_219 permit 65000:1 0:211 0:219 ip community-list standard 1_212_218 permit 65000:1 0:212 0:218 ip community-list standard 1_213_217 permit 65000:1 0:213 0:217 ip community-list standard 1_214_216 permit 65000:1 0:214 0:216 ip community-list standard 1_215_215 permit 65000:1 0:215 0:215 route-map calculator permit 25754 match community 2_2_215 2_5_86 2_10_43 1_174_256 1_175_255 set community 0:430 route-map calculator permit 25755 match community 1_176_254 1_177_253 1_178_252 1_179_251 1_180_250 set community 0:430 route-map calculator permit 25756 match community 1_181_249 1_182_248 1_183_247 1_184_246 1_185_245 set community 0:430 route-map calculator permit 25757 match community 1_186_244 1_187_243 1_188_242 1_189_241 1_190_240 set community 0:430 route-map calculator permit 25758 match community 1_191_239 1_192_238 1_193_237 1_194_236 1_195_235 set community 0:430 route-map calculator permit 25759 match community 1_196_234 1_197_233 1_198_232 1_199_231 1_200_230 set community 0:430 route-map calculator permit 25760 match community 1_201_229 1_202_228 1_203_227 1_204_226 1_205_225 set community 0:430 route-map calculator permit 25761 match community 1_206_224 1_207_223 1_208_222 1_209_221 1_210_220 set community 0:430 route-map calculator permit 25762 match community 1_211_219 1_212_218 1_213_217 1_214_216 1_215_215 set community 0:430 ip community-list standard 2_123_205 permit 65000:2 0:123 0:205 route-map calculator permit 25763 match community 2_123_205 set community 0:25215 ip community-list standard 2_34_220 permit 65000:2 0:34 0:220 ip community-list standard 2_40_187 permit 65000:2 0:40 0:187 ip community-list standard 2_44_170 permit 65000:2 0:44 0:170 ip community-list standard 2_55_136 permit 65000:2 0:55 0:136 ip community-list standard 2_68_110 permit 65000:2 0:68 0:110 ip community-list standard 2_85_88 permit 65000:2 0:85 0:88 route-map calculator permit 25764 match community 2_34_220 2_40_187 2_44_170 2_55_136 2_68_110 set community 0:7480 route-map calculator permit 25765 match community 2_85_88 set community 0:7480 ip community-list standard 2_85_85 permit 65000:2 0:85 0:85 route-map calculator permit 25766 match community 2_85_85 set community 0:7225 ip community-list standard 2_12_237 permit 65000:2 0:12 0:237 ip community-list standard 2_18_158 permit 65000:2 0:18 0:158 ip community-list standard 2_36_79 permit 65000:2 0:36 0:79 route-map calculator permit 25767 match community 2_12_237 2_18_158 2_36_79 set community 0:2844 ip community-list standard 2_34_148 permit 65000:2 0:34 0:148 ip community-list standard 2_37_136 permit 65000:2 0:37 0:136 ip community-list standard 2_68_74 permit 65000:2 0:68 0:74 route-map calculator permit 25768 match community 2_34_148 2_37_136 2_68_74 set community 0:5032 ip community-list standard 2_88_239 permit 65000:2 0:88 0:239 route-map calculator permit 25769 match community 2_88_239 set community 0:21032 ip community-list standard 2_79_176 permit 65000:2 0:79 0:176 ip community-list standard 2_88_158 permit 65000:2 0:88 0:158 route-map calculator permit 25770 match community 2_79_176 2_88_158 set community 0:13904 ip community-list standard 2_150_191 permit 65000:2 0:150 0:191 route-map calculator permit 25771 match community 2_150_191 set community 0:28650 ip community-list standard 1_1_21 permit 65000:1 0:1 0:21 ip community-list standard 2_1_22 permit 65000:2 0:1 0:22 ip community-list standard 2_2_11 permit 65000:2 0:2 0:11 ip community-list standard 1_2_20 permit 65000:1 0:2 0:20 ip community-list standard 1_3_19 permit 65000:1 0:3 0:19 ip community-list standard 1_4_18 permit 65000:1 0:4 0:18 ip community-list standard 1_5_17 permit 65000:1 0:5 0:17 ip community-list standard 1_6_16 permit 65000:1 0:6 0:16 ip community-list standard 1_7_15 permit 65000:1 0:7 0:15 ip community-list standard 1_8_14 permit 65000:1 0:8 0:14 ip community-list standard 1_9_13 permit 65000:1 0:9 0:13 ip community-list standard 1_10_12 permit 65000:1 0:10 0:12 ip community-list standard 1_11_11 permit 65000:1 0:11 0:11 ip community-list expanded c22 permit 1 ^65000:4_0:22_0:1$ ip community-list expanded c22 permit 2 ^65000:3_0:23_0:1$ ip community-list expanded c22 permit 3 ^65000:3_0:24_0:2$ ip community-list expanded c22 permit 4 ^65000:3_0:25_0:3$ ip community-list expanded c22 permit 5 ^65000:3_0:26_0:4$ ip community-list expanded c22 permit 6 ^65000:3_0:27_0:5$ ip community-list expanded c22 permit 7 ^65000:3_0:28_0:6$ ip community-list expanded c22 permit 8 ^65000:3_0:29_0:7$ ip community-list expanded c22 permit 9 ^65000:3_0:30_0:8$ ip community-list expanded c22 permit 10 ^65000:3_0:31_0:9$ ip community-list expanded c22 permit 11 ^65000:3_0:32_0:10$ ip community-list expanded c22 permit 12 ^65000:3_0:33_0:11$ ip community-list expanded c22 permit 13 ^65000:3_0:34_0:12$ ip community-list expanded c22 permit 14 ^65000:3_0:35_0:13$ ip community-list expanded c22 permit 15 ^65000:3_0:36_0:14$ ip community-list expanded c22 permit 16 ^65000:3_0:37_0:15$ ip community-list expanded c22 permit 17 ^65000:3_0:38_0:16$ ip community-list expanded c22 permit 18 ^65000:3_0:39_0:17$ ip community-list expanded c22 permit 19 ^65000:3_0:40_0:18$ ip community-list expanded c22 permit 20 ^65000:3_0:41_0:19$ ip community-list expanded c22 permit 21 ^65000:3_0:42_0:20$ ip community-list expanded c22 permit 22 ^65000:3_0:43_0:21$ ip community-list expanded c22 permit 23 ^65000:4_0:44_0:2$ ip community-list expanded c22 permit 24 ^65000:3_0:44_0:22$ ip community-list expanded c22 permit 25 ^65000:4_0:45_0:2$ ip community-list expanded c22 permit 26 ^65000:3_0:45_0:23$ ip community-list expanded c22 permit 27 ^65000:3_0:46_0:24$ ip community-list expanded c22 permit 28 ^65000:3_0:47_0:25$ ip community-list expanded c22 permit 29 ^65000:3_0:48_0:26$ ip community-list expanded c22 permit 30 ^65000:3_0:49_0:27$ ip community-list expanded c22 permit 31 ^65000:3_0:50_0:28$ ip community-list expanded c22 permit 32 ^65000:3_0:51_0:29$ ip community-list expanded c22 permit 33 ^65000:3_0:52_0:30$ ip community-list expanded c22 permit 34 ^65000:3_0:53_0:31$ ip community-list expanded c22 permit 35 ^65000:3_0:54_0:32$ ip community-list expanded c22 permit 36 ^65000:3_0:55_0:33$ ip community-list expanded c22 permit 37 ^65000:3_0:56_0:34$ ip community-list expanded c22 permit 38 ^65000:3_0:57_0:35$ ip community-list expanded c22 permit 39 ^65000:3_0:58_0:36$ ip community-list expanded c22 permit 40 ^65000:3_0:59_0:37$ ip community-list expanded c22 permit 41 ^65000:3_0:60_0:38$ ip community-list expanded c22 permit 42 ^65000:3_0:61_0:39$ ip community-list expanded c22 permit 43 ^65000:3_0:62_0:40$ ip community-list expanded c22 permit 44 ^65000:3_0:63_0:41$ ip community-list expanded c22 permit 45 ^65000:3_0:64_0:42$ ip community-list expanded c22 permit 46 ^65000:3_0:65_0:43$ ip community-list expanded c22 permit 47 ^65000:4_0:66_0:3$ ip community-list expanded c22 permit 48 ^65000:3_0:66_0:44$ ip community-list expanded c22 permit 49 ^65000:4_0:67_0:3$ ip community-list expanded c22 permit 50 ^65000:3_0:67_0:45$ ip community-list expanded c22 permit 51 ^65000:4_0:68_0:3$ ip community-list expanded c22 permit 52 ^65000:3_0:68_0:46$ ip community-list expanded c22 permit 53 ^65000:3_0:69_0:47$ ip community-list expanded c22 permit 54 ^65000:3_0:70_0:48$ ip community-list expanded c22 permit 55 ^65000:3_0:71_0:49$ ip community-list expanded c22 permit 56 ^65000:3_0:72_0:50$ ip community-list expanded c22 permit 57 ^65000:3_0:73_0:51$ ip community-list expanded c22 permit 58 ^65000:3_0:74_0:52$ ip community-list expanded c22 permit 59 ^65000:3_0:75_0:53$ ip community-list expanded c22 permit 60 ^65000:3_0:76_0:54$ ip community-list expanded c22 permit 61 ^65000:3_0:77_0:55$ ip community-list expanded c22 permit 62 ^65000:3_0:78_0:56$ ip community-list expanded c22 permit 63 ^65000:3_0:79_0:57$ ip community-list expanded c22 permit 64 ^65000:3_0:80_0:58$ ip community-list expanded c22 permit 65 ^65000:3_0:81_0:59$ ip community-list expanded c22 permit 66 ^65000:3_0:82_0:60$ ip community-list expanded c22 permit 67 ^65000:3_0:83_0:61$ ip community-list expanded c22 permit 68 ^65000:3_0:84_0:62$ ip community-list expanded c22 permit 69 ^65000:3_0:85_0:63$ ip community-list expanded c22 permit 70 ^65000:3_0:86_0:64$ ip community-list expanded c22 permit 71 ^65000:3_0:87_0:65$ ip community-list expanded c22 permit 72 ^65000:4_0:88_0:4$ ip community-list expanded c22 permit 73 ^65000:3_0:88_0:66$ ip community-list expanded c22 permit 74 ^65000:4_0:89_0:4$ ip community-list expanded c22 permit 75 ^65000:3_0:89_0:67$ ip community-list expanded c22 permit 76 ^65000:4_0:90_0:4$ ip community-list expanded c22 permit 77 ^65000:3_0:90_0:68$ ip community-list expanded c22 permit 78 ^65000:4_0:91_0:4$ ip community-list expanded c22 permit 79 ^65000:3_0:91_0:69$ ip community-list expanded c22 permit 80 ^65000:3_0:92_0:70$ ip community-list expanded c22 permit 81 ^65000:3_0:93_0:71$ ip community-list expanded c22 permit 82 ^65000:3_0:94_0:72$ ip community-list expanded c22 permit 83 ^65000:3_0:95_0:73$ ip community-list expanded c22 permit 84 ^65000:3_0:96_0:74$ ip community-list expanded c22 permit 85 ^65000:3_0:97_0:75$ ip community-list expanded c22 permit 86 ^65000:3_0:98_0:76$ ip community-list expanded c22 permit 87 ^65000:3_0:99_0:77$ ip community-list expanded c22 permit 88 ^65000:3_0:100_0:78$ ip community-list expanded c22 permit 89 ^65000:3_0:101_0:79$ ip community-list expanded c22 permit 90 ^65000:3_0:102_0:80$ ip community-list expanded c22 permit 91 ^65000:3_0:103_0:81$ ip community-list expanded c22 permit 92 ^65000:3_0:104_0:82$ ip community-list expanded c22 permit 93 ^65000:3_0:105_0:83$ ip community-list expanded c22 permit 94 ^65000:3_0:106_0:84$ ip community-list expanded c22 permit 95 ^65000:3_0:107_0:85$ ip community-list expanded c22 permit 96 ^65000:3_0:108_0:86$ ip community-list expanded c22 permit 97 ^65000:3_0:109_0:87$ ip community-list expanded c22 permit 98 ^65000:4_0:110_0:5$ ip community-list expanded c22 permit 99 ^65000:3_0:110_0:88$ ip community-list expanded c22 permit 100 ^65000:4_0:111_0:5$ ip community-list expanded c22 permit 101 ^65000:3_0:111_0:89$ ip community-list expanded c22 permit 102 ^65000:4_0:112_0:5$ ip community-list expanded c22 permit 103 ^65000:3_0:112_0:90$ ip community-list expanded c22 permit 104 ^65000:4_0:113_0:5$ ip community-list expanded c22 permit 105 ^65000:3_0:113_0:91$ ip community-list expanded c22 permit 106 ^65000:4_0:114_0:5$ ip community-list expanded c22 permit 107 ^65000:3_0:114_0:92$ ip community-list expanded c22 permit 108 ^65000:3_0:115_0:93$ ip community-list expanded c22 permit 109 ^65000:3_0:116_0:94$ ip community-list expanded c22 permit 110 ^65000:3_0:117_0:95$ ip community-list expanded c22 permit 111 ^65000:3_0:118_0:96$ ip community-list expanded c22 permit 112 ^65000:3_0:119_0:97$ ip community-list expanded c22 permit 113 ^65000:3_0:120_0:98$ ip community-list expanded c22 permit 114 ^65000:3_0:121_0:99$ ip community-list expanded c22 permit 115 ^65000:3_0:122_0:100$ ip community-list expanded c22 permit 116 ^65000:3_0:123_0:101$ ip community-list expanded c22 permit 117 ^65000:3_0:124_0:102$ ip community-list expanded c22 permit 118 ^65000:3_0:125_0:103$ ip community-list expanded c22 permit 119 ^65000:3_0:126_0:104$ ip community-list expanded c22 permit 120 ^65000:3_0:127_0:105$ ip community-list expanded c22 permit 121 ^65000:3_0:128_0:106$ ip community-list expanded c22 permit 122 ^65000:3_0:129_0:107$ ip community-list expanded c22 permit 123 ^65000:3_0:130_0:108$ ip community-list expanded c22 permit 124 ^65000:3_0:131_0:109$ ip community-list expanded c22 permit 125 ^65000:4_0:132_0:6$ ip community-list expanded c22 permit 126 ^65000:3_0:132_0:110$ ip community-list expanded c22 permit 127 ^65000:4_0:133_0:6$ ip community-list expanded c22 permit 128 ^65000:3_0:133_0:111$ ip community-list expanded c22 permit 129 ^65000:4_0:134_0:6$ ip community-list expanded c22 permit 130 ^65000:3_0:134_0:112$ ip community-list expanded c22 permit 131 ^65000:4_0:135_0:6$ ip community-list expanded c22 permit 132 ^65000:3_0:135_0:113$ ip community-list expanded c22 permit 133 ^65000:4_0:136_0:6$ ip community-list expanded c22 permit 134 ^65000:3_0:136_0:114$ ip community-list expanded c22 permit 135 ^65000:4_0:137_0:6$ ip community-list expanded c22 permit 136 ^65000:3_0:137_0:115$ ip community-list expanded c22 permit 137 ^65000:3_0:138_0:116$ ip community-list expanded c22 permit 138 ^65000:3_0:139_0:117$ ip community-list expanded c22 permit 139 ^65000:3_0:140_0:118$ ip community-list expanded c22 permit 140 ^65000:3_0:141_0:119$ ip community-list expanded c22 permit 141 ^65000:3_0:142_0:120$ ip community-list expanded c22 permit 142 ^65000:3_0:143_0:121$ ip community-list expanded c22 permit 143 ^65000:3_0:144_0:122$ ip community-list expanded c22 permit 144 ^65000:3_0:145_0:123$ ip community-list expanded c22 permit 145 ^65000:3_0:146_0:124$ ip community-list expanded c22 permit 146 ^65000:3_0:147_0:125$ ip community-list expanded c22 permit 147 ^65000:3_0:148_0:126$ ip community-list expanded c22 permit 148 ^65000:3_0:149_0:127$ ip community-list expanded c22 permit 149 ^65000:3_0:150_0:128$ ip community-list expanded c22 permit 150 ^65000:3_0:151_0:129$ ip community-list expanded c22 permit 151 ^65000:3_0:152_0:130$ ip community-list expanded c22 permit 152 ^65000:3_0:153_0:131$ ip community-list expanded c22 permit 153 ^65000:4_0:154_0:7$ ip community-list expanded c22 permit 154 ^65000:3_0:154_0:132$ ip community-list expanded c22 permit 155 ^65000:4_0:155_0:7$ ip community-list expanded c22 permit 156 ^65000:3_0:155_0:133$ ip community-list expanded c22 permit 157 ^65000:4_0:156_0:7$ ip community-list expanded c22 permit 158 ^65000:3_0:156_0:134$ ip community-list expanded c22 permit 159 ^65000:4_0:157_0:7$ ip community-list expanded c22 permit 160 ^65000:3_0:157_0:135$ ip community-list expanded c22 permit 161 ^65000:4_0:158_0:7$ ip community-list expanded c22 permit 162 ^65000:3_0:158_0:136$ ip community-list expanded c22 permit 163 ^65000:4_0:159_0:7$ ip community-list expanded c22 permit 164 ^65000:3_0:159_0:137$ ip community-list expanded c22 permit 165 ^65000:4_0:160_0:7$ ip community-list expanded c22 permit 166 ^65000:3_0:160_0:138$ ip community-list expanded c22 permit 167 ^65000:3_0:161_0:139$ ip community-list expanded c22 permit 168 ^65000:3_0:162_0:140$ ip community-list expanded c22 permit 169 ^65000:3_0:163_0:141$ ip community-list expanded c22 permit 170 ^65000:3_0:164_0:142$ ip community-list expanded c22 permit 171 ^65000:3_0:165_0:143$ ip community-list expanded c22 permit 172 ^65000:3_0:166_0:144$ ip community-list expanded c22 permit 173 ^65000:3_0:167_0:145$ ip community-list expanded c22 permit 174 ^65000:3_0:168_0:146$ ip community-list expanded c22 permit 175 ^65000:3_0:169_0:147$ ip community-list expanded c22 permit 176 ^65000:3_0:170_0:148$ ip community-list expanded c22 permit 177 ^65000:3_0:171_0:149$ ip community-list expanded c22 permit 178 ^65000:3_0:172_0:150$ ip community-list expanded c22 permit 179 ^65000:3_0:173_0:151$ ip community-list expanded c22 permit 180 ^65000:3_0:174_0:152$ ip community-list expanded c22 permit 181 ^65000:3_0:175_0:153$ ip community-list expanded c22 permit 182 ^65000:4_0:176_0:8$ ip community-list expanded c22 permit 183 ^65000:3_0:176_0:154$ ip community-list expanded c22 permit 184 ^65000:4_0:177_0:8$ ip community-list expanded c22 permit 185 ^65000:3_0:177_0:155$ ip community-list expanded c22 permit 186 ^65000:4_0:178_0:8$ ip community-list expanded c22 permit 187 ^65000:3_0:178_0:156$ ip community-list expanded c22 permit 188 ^65000:4_0:179_0:8$ ip community-list expanded c22 permit 189 ^65000:3_0:179_0:157$ ip community-list expanded c22 permit 190 ^65000:4_0:180_0:8$ ip community-list expanded c22 permit 191 ^65000:3_0:180_0:158$ ip community-list expanded c22 permit 192 ^65000:4_0:181_0:8$ ip community-list expanded c22 permit 193 ^65000:3_0:181_0:159$ ip community-list expanded c22 permit 194 ^65000:4_0:182_0:8$ ip community-list expanded c22 permit 195 ^65000:3_0:182_0:160$ ip community-list expanded c22 permit 196 ^65000:4_0:183_0:8$ ip community-list expanded c22 permit 197 ^65000:3_0:183_0:161$ ip community-list expanded c22 permit 198 ^65000:3_0:184_0:162$ ip community-list expanded c22 permit 199 ^65000:3_0:185_0:163$ ip community-list expanded c22 permit 200 ^65000:3_0:186_0:164$ ip community-list expanded c22 permit 201 ^65000:3_0:187_0:165$ ip community-list expanded c22 permit 202 ^65000:3_0:188_0:166$ ip community-list expanded c22 permit 203 ^65000:3_0:189_0:167$ ip community-list expanded c22 permit 204 ^65000:3_0:190_0:168$ ip community-list expanded c22 permit 205 ^65000:3_0:191_0:169$ ip community-list expanded c22 permit 206 ^65000:3_0:192_0:170$ ip community-list expanded c22 permit 207 ^65000:3_0:193_0:171$ ip community-list expanded c22 permit 208 ^65000:3_0:194_0:172$ ip community-list expanded c22 permit 209 ^65000:3_0:195_0:173$ ip community-list expanded c22 permit 210 ^65000:3_0:196_0:174$ ip community-list expanded c22 permit 211 ^65000:3_0:197_0:175$ ip community-list expanded c22 permit 212 ^65000:4_0:198_0:9$ ip community-list expanded c22 permit 213 ^65000:3_0:198_0:176$ ip community-list expanded c22 permit 214 ^65000:4_0:199_0:9$ ip community-list expanded c22 permit 215 ^65000:3_0:199_0:177$ ip community-list expanded c22 permit 216 ^65000:4_0:200_0:9$ ip community-list expanded c22 permit 217 ^65000:3_0:200_0:178$ ip community-list expanded c22 permit 218 ^65000:4_0:201_0:9$ ip community-list expanded c22 permit 219 ^65000:3_0:201_0:179$ ip community-list expanded c22 permit 220 ^65000:4_0:202_0:9$ ip community-list expanded c22 permit 221 ^65000:3_0:202_0:180$ ip community-list expanded c22 permit 222 ^65000:4_0:203_0:9$ ip community-list expanded c22 permit 223 ^65000:3_0:203_0:181$ ip community-list expanded c22 permit 224 ^65000:4_0:204_0:9$ ip community-list expanded c22 permit 225 ^65000:3_0:204_0:182$ ip community-list expanded c22 permit 226 ^65000:4_0:205_0:9$ ip community-list expanded c22 permit 227 ^65000:3_0:205_0:183$ ip community-list expanded c22 permit 228 ^65000:4_0:206_0:9$ ip community-list expanded c22 permit 229 ^65000:3_0:206_0:184$ ip community-list expanded c22 permit 230 ^65000:3_0:207_0:185$ ip community-list expanded c22 permit 231 ^65000:3_0:208_0:186$ ip community-list expanded c22 permit 232 ^65000:3_0:209_0:187$ ip community-list expanded c22 permit 233 ^65000:3_0:210_0:188$ ip community-list expanded c22 permit 234 ^65000:3_0:211_0:189$ ip community-list expanded c22 permit 235 ^65000:3_0:212_0:190$ ip community-list expanded c22 permit 236 ^65000:3_0:213_0:191$ ip community-list expanded c22 permit 237 ^65000:3_0:214_0:192$ ip community-list expanded c22 permit 238 ^65000:3_0:215_0:193$ ip community-list expanded c22 permit 239 ^65000:3_0:216_0:194$ ip community-list expanded c22 permit 240 ^65000:3_0:217_0:195$ ip community-list expanded c22 permit 241 ^65000:3_0:218_0:196$ ip community-list expanded c22 permit 242 ^65000:3_0:219_0:197$ ip community-list expanded c22 permit 243 ^65000:4_0:220_0:10$ ip community-list expanded c22 permit 244 ^65000:3_0:220_0:198$ ip community-list expanded c22 permit 245 ^65000:4_0:221_0:10$ ip community-list expanded c22 permit 246 ^65000:3_0:221_0:199$ ip community-list expanded c22 permit 247 ^65000:4_0:222_0:10$ ip community-list expanded c22 permit 248 ^65000:3_0:222_0:200$ ip community-list expanded c22 permit 249 ^65000:4_0:223_0:10$ ip community-list expanded c22 permit 250 ^65000:3_0:223_0:201$ ip community-list expanded c22 permit 251 ^65000:4_0:224_0:10$ ip community-list expanded c22 permit 252 ^65000:3_0:224_0:202$ ip community-list expanded c22 permit 253 ^65000:4_0:225_0:10$ ip community-list expanded c22 permit 254 ^65000:3_0:225_0:203$ ip community-list expanded c22 permit 255 ^65000:4_0:226_0:10$ ip community-list expanded c22 permit 256 ^65000:3_0:226_0:204$ ip community-list expanded c22 permit 257 ^65000:4_0:227_0:10$ ip community-list expanded c22 permit 258 ^65000:3_0:227_0:205$ ip community-list expanded c22 permit 259 ^65000:4_0:228_0:10$ ip community-list expanded c22 permit 260 ^65000:3_0:228_0:206$ ip community-list expanded c22 permit 261 ^65000:4_0:229_0:10$ ip community-list expanded c22 permit 262 ^65000:3_0:229_0:207$ ip community-list expanded c22 permit 263 ^65000:3_0:230_0:208$ ip community-list expanded c22 permit 264 ^65000:3_0:231_0:209$ ip community-list expanded c22 permit 265 ^65000:3_0:232_0:210$ ip community-list expanded c22 permit 266 ^65000:3_0:233_0:211$ ip community-list expanded c22 permit 267 ^65000:3_0:234_0:212$ ip community-list expanded c22 permit 268 ^65000:3_0:235_0:213$ ip community-list expanded c22 permit 269 ^65000:3_0:236_0:214$ ip community-list expanded c22 permit 270 ^65000:3_0:237_0:215$ ip community-list expanded c22 permit 271 ^65000:3_0:238_0:216$ ip community-list expanded c22 permit 272 ^65000:3_0:239_0:217$ ip community-list expanded c22 permit 273 ^65000:3_0:240_0:218$ ip community-list expanded c22 permit 274 ^65000:3_0:241_0:219$ ip community-list expanded c22 permit 275 ^65000:4_0:242_0:11$ ip community-list expanded c22 permit 276 ^65000:3_0:242_0:220$ ip community-list expanded c22 permit 277 ^65000:4_0:243_0:11$ ip community-list expanded c22 permit 278 ^65000:3_0:243_0:221$ ip community-list expanded c22 permit 279 ^65000:4_0:244_0:11$ ip community-list expanded c22 permit 280 ^65000:3_0:244_0:222$ ip community-list expanded c22 permit 281 ^65000:4_0:245_0:11$ ip community-list expanded c22 permit 282 ^65000:3_0:245_0:223$ ip community-list expanded c22 permit 283 ^65000:4_0:246_0:11$ ip community-list expanded c22 permit 284 ^65000:3_0:246_0:224$ ip community-list expanded c22 permit 285 ^65000:4_0:247_0:11$ ip community-list expanded c22 permit 286 ^65000:3_0:247_0:225$ ip community-list expanded c22 permit 287 ^65000:4_0:248_0:11$ ip community-list expanded c22 permit 288 ^65000:3_0:248_0:226$ ip community-list expanded c22 permit 289 ^65000:4_0:249_0:11$ ip community-list expanded c22 permit 290 ^65000:3_0:249_0:227$ ip community-list expanded c22 permit 291 ^65000:4_0:250_0:11$ ip community-list expanded c22 permit 292 ^65000:3_0:250_0:228$ ip community-list expanded c22 permit 293 ^65000:4_0:251_0:11$ ip community-list expanded c22 permit 294 ^65000:3_0:251_0:229$ ip community-list expanded c22 permit 295 ^65000:4_0:252_0:11$ ip community-list expanded c22 permit 296 ^65000:3_0:252_0:230$ ip community-list expanded c22 permit 297 ^65000:3_0:253_0:231$ ip community-list expanded c22 permit 298 ^65000:3_0:254_0:232$ ip community-list expanded c22 permit 299 ^65000:3_0:255_0:233$ ip community-list expanded c22 permit 300 ^65000:3_0:256_0:234$ route-map calculator permit 25772 match community 1_1_21 2_1_22 2_2_11 1_2_20 1_3_19 set community 0:22 route-map calculator permit 25773 match community 1_4_18 1_5_17 1_6_16 1_7_15 1_8_14 set community 0:22 route-map calculator permit 25774 match community 1_9_13 1_10_12 1_11_11 c4_22_1 c3_23_1 set community 0:22 route-map calculator permit 25775 match community c3_24_2 c3_25_3 c3_26_4 c3_27_5 c3_28_6 set community 0:22 route-map calculator permit 25776 match community c3_29_7 c3_30_8 c3_31_9 c3_32_10 c3_33_11 set community 0:22 route-map calculator permit 25777 match community c3_34_12 c3_35_13 c3_36_14 c3_37_15 c3_38_16 set community 0:22 route-map calculator permit 25778 match community c3_39_17 c3_40_18 c3_41_19 c3_42_20 c3_43_21 set community 0:22 route-map calculator permit 25779 match community c4_44_2 c3_44_22 c4_45_2 c3_45_23 c3_46_24 set community 0:22 route-map calculator permit 25780 match community c3_47_25 c3_48_26 c3_49_27 c3_50_28 c3_51_29 set community 0:22 route-map calculator permit 25781 match community c3_52_30 c3_53_31 c3_54_32 c3_55_33 c3_56_34 set community 0:22 route-map calculator permit 25782 match community c3_57_35 c3_58_36 c3_59_37 c3_60_38 c3_61_39 set community 0:22 route-map calculator permit 25783 match community c3_62_40 c3_63_41 c3_64_42 c3_65_43 c4_66_3 set community 0:22 route-map calculator permit 25784 match community c3_66_44 c4_67_3 c3_67_45 c4_68_3 c3_68_46 set community 0:22 route-map calculator permit 25785 match community c3_69_47 c3_70_48 c3_71_49 c3_72_50 c3_73_51 set community 0:22 route-map calculator permit 25786 match community c3_74_52 c3_75_53 c3_76_54 c3_77_55 c3_78_56 set community 0:22 route-map calculator permit 25787 match community c3_79_57 c3_80_58 c3_81_59 c3_82_60 c3_83_61 set community 0:22 route-map calculator permit 25788 match community c3_84_62 c3_85_63 c3_86_64 c3_87_65 c4_88_4 set community 0:22 route-map calculator permit 25789 match community c3_88_66 c4_89_4 c3_89_67 c4_90_4 c3_90_68 set community 0:22 route-map calculator permit 25790 match community c4_91_4 c3_91_69 c3_92_70 c3_93_71 c3_94_72 set community 0:22 route-map calculator permit 25791 match community c3_95_73 c3_96_74 c3_97_75 c3_98_76 c3_99_77 set community 0:22 route-map calculator permit 25792 match community c3_100_78 c3_101_79 c3_102_80 c3_103_81 c3_104_82 set community 0:22 route-map calculator permit 25793 match community c3_105_83 c3_106_84 c3_107_85 c3_108_86 c3_109_87 set community 0:22 route-map calculator permit 25794 match community c4_110_5 c3_110_88 c4_111_5 c3_111_89 c4_112_5 set community 0:22 route-map calculator permit 25795 match community c3_112_90 c4_113_5 c3_113_91 c4_114_5 c3_114_92 set community 0:22 route-map calculator permit 25796 match community c3_115_93 c3_116_94 c3_117_95 c3_118_96 c3_119_97 set community 0:22 route-map calculator permit 25797 match community c3_120_98 c3_121_99 c3_122_100 c3_123_101 c3_124_102 set community 0:22 route-map calculator permit 25798 match community c3_125_103 c3_126_104 c3_127_105 c3_128_106 c3_129_107 set community 0:22 route-map calculator permit 25799 match community c3_130_108 c3_131_109 c4_132_6 c3_132_110 c4_133_6 set community 0:22 route-map calculator permit 25800 match community c3_133_111 c4_134_6 c3_134_112 c4_135_6 c3_135_113 set community 0:22 route-map calculator permit 25801 match community c4_136_6 c3_136_114 c4_137_6 c3_137_115 c3_138_116 set community 0:22 route-map calculator permit 25802 match community c3_139_117 c3_140_118 c3_141_119 c3_142_120 c3_143_121 set community 0:22 route-map calculator permit 25803 match community c3_144_122 c3_145_123 c3_146_124 c3_147_125 c3_148_126 set community 0:22 route-map calculator permit 25804 match community c3_149_127 c3_150_128 c3_151_129 c3_152_130 c3_153_131 set community 0:22 route-map calculator permit 25805 match community c4_154_7 c3_154_132 c4_155_7 c3_155_133 c4_156_7 set community 0:22 route-map calculator permit 25806 match community c3_156_134 c4_157_7 c3_157_135 c4_158_7 c3_158_136 set community 0:22 route-map calculator permit 25807 match community c4_159_7 c3_159_137 c4_160_7 c3_160_138 c3_161_139 set community 0:22 route-map calculator permit 25808 match community c3_162_140 c3_163_141 c3_164_142 c3_165_143 c3_166_144 set community 0:22 route-map calculator permit 25809 match community c3_167_145 c3_168_146 c3_169_147 c3_170_148 c3_171_149 set community 0:22 route-map calculator permit 25810 match community c3_172_150 c3_173_151 c3_174_152 c3_175_153 c4_176_8 set community 0:22 route-map calculator permit 25811 match community c3_176_154 c4_177_8 c3_177_155 c4_178_8 c3_178_156 set community 0:22 route-map calculator permit 25812 match community c4_179_8 c3_179_157 c4_180_8 c3_180_158 c4_181_8 set community 0:22 route-map calculator permit 25813 match community c3_181_159 c4_182_8 c3_182_160 c4_183_8 c3_183_161 set community 0:22 route-map calculator permit 25814 match community c3_184_162 c3_185_163 c3_186_164 c3_187_165 c3_188_166 set community 0:22 route-map calculator permit 25815 match community c3_189_167 c3_190_168 c3_191_169 c3_192_170 c3_193_171 set community 0:22 route-map calculator permit 25816 match community c3_194_172 c3_195_173 c3_196_174 c3_197_175 c4_198_9 set community 0:22 route-map calculator permit 25817 match community c3_198_176 c4_199_9 c3_199_177 c4_200_9 c3_200_178 set community 0:22 route-map calculator permit 25818 match community c4_201_9 c3_201_179 c4_202_9 c3_202_180 c4_203_9 set community 0:22 route-map calculator permit 25819 match community c3_203_181 c4_204_9 c3_204_182 c4_205_9 c3_205_183 set community 0:22 route-map calculator permit 25820 match community c4_206_9 c3_206_184 c3_207_185 c3_208_186 c3_209_187 set community 0:22 route-map calculator permit 25821 match community c3_210_188 c3_211_189 c3_212_190 c3_213_191 c3_214_192 set community 0:22 route-map calculator permit 25822 match community c3_215_193 c3_216_194 c3_217_195 c3_218_196 c3_219_197 set community 0:22 route-map calculator permit 25823 match community c4_220_10 c3_220_198 c4_221_10 c3_221_199 c4_222_10 set community 0:22 route-map calculator permit 25824 match community c3_222_200 c4_223_10 c3_223_201 c4_224_10 c3_224_202 set community 0:22 route-map calculator permit 25825 match community c4_225_10 c3_225_203 c4_226_10 c3_226_204 c4_227_10 set community 0:22 route-map calculator permit 25826 match community c3_227_205 c4_228_10 c3_228_206 c4_229_10 c3_229_207 set community 0:22 route-map calculator permit 25827 match community c3_230_208 c3_231_209 c3_232_210 c3_233_211 c3_234_212 set community 0:22 route-map calculator permit 25828 match community c3_235_213 c3_236_214 c3_237_215 c3_238_216 c3_239_217 set community 0:22 route-map calculator permit 25829 match community c3_240_218 c3_241_219 c4_242_11 c3_242_220 c4_243_11 set community 0:22 route-map calculator permit 25830 match community c3_243_221 c4_244_11 c3_244_222 c4_245_11 c3_245_223 set community 0:22 route-map calculator permit 25831 match community c4_246_11 c3_246_224 c4_247_11 c3_247_225 c4_248_11 set community 0:22 route-map calculator permit 25832 match community c3_248_226 c4_249_11 c3_249_227 c4_250_11 c3_250_228 set community 0:22 route-map calculator permit 25833 match community c4_251_11 c3_251_229 c4_252_11 c3_252_230 c3_253_231 set community 0:22 route-map calculator permit 25834 match community c3_254_232 c3_255_233 c3_256_234 set community 0:22 ip community-list standard 2_102_159 permit 65000:2 0:102 0:159 ip community-list standard 2_106_153 permit 65000:2 0:106 0:153 route-map calculator permit 25835 match community 2_102_159 2_106_153 set community 0:16218 ip community-list standard 2_46_174 permit 65000:2 0:46 0:174 ip community-list standard 2_58_138 permit 65000:2 0:58 0:138 ip community-list standard 2_69_116 permit 65000:2 0:69 0:116 ip community-list standard 2_87_92 permit 65000:2 0:87 0:92 route-map calculator permit 25836 match community 2_46_174 2_58_138 2_69_116 2_87_92 set community 0:8004 ip community-list standard 2_16_134 permit 65000:2 0:16 0:134 ip community-list standard 2_32_67 permit 65000:2 0:32 0:67 route-map calculator permit 25837 match community 2_16_134 2_32_67 set community 0:2144 ip community-list standard 2_138_252 permit 65000:2 0:138 0:252 ip community-list standard 2_161_216 permit 65000:2 0:161 0:216 ip community-list standard 2_168_207 permit 65000:2 0:168 0:207 ip community-list standard 2_184_189 permit 65000:2 0:184 0:189 route-map calculator permit 25838 match community 2_138_252 2_161_216 2_168_207 2_184_189 set community 0:34776 ip community-list standard 2_183_231 permit 65000:2 0:183 0:231 route-map calculator permit 25839 match community 2_183_231 set community 0:42273 ip community-list standard 2_31_198 permit 65000:2 0:31 0:198 ip community-list standard 2_33_186 permit 65000:2 0:33 0:186 ip community-list standard 2_62_99 permit 65000:2 0:62 0:99 ip community-list standard 2_66_93 permit 65000:2 0:66 0:93 route-map calculator permit 25840 match community 2_31_198 2_33_186 2_62_99 2_66_93 set community 0:6138 ip community-list standard 2_141_178 permit 65000:2 0:141 0:178 route-map calculator permit 25841 match community 2_141_178 set community 0:25098 ip community-list standard 2_95_159 permit 65000:2 0:95 0:159 route-map calculator permit 25842 match community 2_95_159 set community 0:15105 ip community-list standard 1_1_164 permit 65000:1 0:1 0:164 ip community-list standard 2_1_165 permit 65000:2 0:1 0:165 ip community-list standard 1_2_163 permit 65000:1 0:2 0:163 ip community-list standard 2_3_55 permit 65000:2 0:3 0:55 ip community-list standard 1_3_162 permit 65000:1 0:3 0:162 ip community-list standard 1_4_161 permit 65000:1 0:4 0:161 ip community-list standard 2_5_33 permit 65000:2 0:5 0:33 ip community-list standard 1_5_160 permit 65000:1 0:5 0:160 ip community-list standard 1_6_159 permit 65000:1 0:6 0:159 ip community-list standard 1_7_158 permit 65000:1 0:7 0:158 ip community-list standard 1_8_157 permit 65000:1 0:8 0:157 ip community-list standard 1_9_156 permit 65000:1 0:9 0:156 ip community-list standard 1_10_155 permit 65000:1 0:10 0:155 ip community-list standard 2_11_15 permit 65000:2 0:11 0:15 ip community-list standard 1_11_154 permit 65000:1 0:11 0:154 ip community-list standard 1_12_153 permit 65000:1 0:12 0:153 ip community-list standard 1_13_152 permit 65000:1 0:13 0:152 ip community-list standard 1_14_151 permit 65000:1 0:14 0:151 ip community-list standard 1_15_150 permit 65000:1 0:15 0:150 ip community-list standard 1_16_149 permit 65000:1 0:16 0:149 ip community-list standard 1_17_148 permit 65000:1 0:17 0:148 ip community-list standard 1_18_147 permit 65000:1 0:18 0:147 ip community-list standard 1_19_146 permit 65000:1 0:19 0:146 ip community-list standard 1_20_145 permit 65000:1 0:20 0:145 ip community-list standard 1_21_144 permit 65000:1 0:21 0:144 ip community-list standard 1_22_143 permit 65000:1 0:22 0:143 ip community-list standard 1_23_142 permit 65000:1 0:23 0:142 ip community-list standard 1_24_141 permit 65000:1 0:24 0:141 ip community-list standard 1_25_140 permit 65000:1 0:25 0:140 ip community-list standard 1_26_139 permit 65000:1 0:26 0:139 ip community-list standard 1_27_138 permit 65000:1 0:27 0:138 ip community-list standard 1_28_137 permit 65000:1 0:28 0:137 ip community-list standard 1_29_136 permit 65000:1 0:29 0:136 ip community-list standard 1_30_135 permit 65000:1 0:30 0:135 ip community-list standard 1_31_134 permit 65000:1 0:31 0:134 ip community-list standard 1_32_133 permit 65000:1 0:32 0:133 ip community-list standard 1_33_132 permit 65000:1 0:33 0:132 ip community-list standard 1_34_131 permit 65000:1 0:34 0:131 ip community-list standard 1_35_130 permit 65000:1 0:35 0:130 ip community-list standard 1_36_129 permit 65000:1 0:36 0:129 ip community-list standard 1_37_128 permit 65000:1 0:37 0:128 ip community-list standard 1_38_127 permit 65000:1 0:38 0:127 ip community-list standard 1_39_126 permit 65000:1 0:39 0:126 ip community-list standard 1_40_125 permit 65000:1 0:40 0:125 ip community-list standard 1_41_124 permit 65000:1 0:41 0:124 ip community-list standard 1_42_123 permit 65000:1 0:42 0:123 ip community-list standard 1_43_122 permit 65000:1 0:43 0:122 ip community-list standard 1_44_121 permit 65000:1 0:44 0:121 ip community-list standard 1_45_120 permit 65000:1 0:45 0:120 ip community-list standard 1_46_119 permit 65000:1 0:46 0:119 ip community-list standard 1_47_118 permit 65000:1 0:47 0:118 ip community-list standard 1_48_117 permit 65000:1 0:48 0:117 ip community-list standard 1_49_116 permit 65000:1 0:49 0:116 ip community-list standard 1_50_115 permit 65000:1 0:50 0:115 ip community-list standard 1_51_114 permit 65000:1 0:51 0:114 ip community-list standard 1_52_113 permit 65000:1 0:52 0:113 ip community-list standard 1_53_112 permit 65000:1 0:53 0:112 ip community-list standard 1_54_111 permit 65000:1 0:54 0:111 ip community-list standard 1_55_110 permit 65000:1 0:55 0:110 ip community-list standard 1_56_109 permit 65000:1 0:56 0:109 ip community-list standard 1_57_108 permit 65000:1 0:57 0:108 ip community-list standard 1_58_107 permit 65000:1 0:58 0:107 ip community-list standard 1_59_106 permit 65000:1 0:59 0:106 ip community-list standard 1_60_105 permit 65000:1 0:60 0:105 ip community-list standard 1_61_104 permit 65000:1 0:61 0:104 ip community-list standard 1_62_103 permit 65000:1 0:62 0:103 ip community-list standard 1_63_102 permit 65000:1 0:63 0:102 ip community-list standard 1_64_101 permit 65000:1 0:64 0:101 ip community-list standard 1_65_100 permit 65000:1 0:65 0:100 ip community-list standard 1_66_99 permit 65000:1 0:66 0:99 ip community-list standard 1_67_98 permit 65000:1 0:67 0:98 ip community-list standard 1_68_97 permit 65000:1 0:68 0:97 ip community-list standard 1_69_96 permit 65000:1 0:69 0:96 ip community-list standard 1_70_95 permit 65000:1 0:70 0:95 ip community-list standard 1_71_94 permit 65000:1 0:71 0:94 ip community-list standard 1_72_93 permit 65000:1 0:72 0:93 ip community-list standard 1_73_92 permit 65000:1 0:73 0:92 ip community-list standard 1_74_91 permit 65000:1 0:74 0:91 ip community-list standard 1_75_90 permit 65000:1 0:75 0:90 ip community-list standard 1_76_89 permit 65000:1 0:76 0:89 ip community-list standard 1_77_88 permit 65000:1 0:77 0:88 ip community-list standard 1_78_87 permit 65000:1 0:78 0:87 ip community-list standard 1_79_86 permit 65000:1 0:79 0:86 ip community-list standard 1_80_85 permit 65000:1 0:80 0:85 ip community-list standard 1_81_84 permit 65000:1 0:81 0:84 ip community-list standard 1_82_83 permit 65000:1 0:82 0:83 ip community-list expanded c165 permit 1 ^65000:4_0:165_0:1$ ip community-list expanded c165 permit 2 ^65000:3_0:166_0:1$ ip community-list expanded c165 permit 3 ^65000:3_0:167_0:2$ ip community-list expanded c165 permit 4 ^65000:3_0:168_0:3$ ip community-list expanded c165 permit 5 ^65000:3_0:169_0:4$ ip community-list expanded c165 permit 6 ^65000:3_0:170_0:5$ ip community-list expanded c165 permit 7 ^65000:3_0:171_0:6$ ip community-list expanded c165 permit 8 ^65000:3_0:172_0:7$ ip community-list expanded c165 permit 9 ^65000:3_0:173_0:8$ ip community-list expanded c165 permit 10 ^65000:3_0:174_0:9$ ip community-list expanded c165 permit 11 ^65000:3_0:175_0:10$ ip community-list expanded c165 permit 12 ^65000:3_0:176_0:11$ ip community-list expanded c165 permit 13 ^65000:3_0:177_0:12$ ip community-list expanded c165 permit 14 ^65000:3_0:178_0:13$ ip community-list expanded c165 permit 15 ^65000:3_0:179_0:14$ ip community-list expanded c165 permit 16 ^65000:3_0:180_0:15$ ip community-list expanded c165 permit 17 ^65000:3_0:181_0:16$ ip community-list expanded c165 permit 18 ^65000:3_0:182_0:17$ ip community-list expanded c165 permit 19 ^65000:3_0:183_0:18$ ip community-list expanded c165 permit 20 ^65000:3_0:184_0:19$ ip community-list expanded c165 permit 21 ^65000:3_0:185_0:20$ ip community-list expanded c165 permit 22 ^65000:3_0:186_0:21$ ip community-list expanded c165 permit 23 ^65000:3_0:187_0:22$ ip community-list expanded c165 permit 24 ^65000:3_0:188_0:23$ ip community-list expanded c165 permit 25 ^65000:3_0:189_0:24$ ip community-list expanded c165 permit 26 ^65000:3_0:190_0:25$ ip community-list expanded c165 permit 27 ^65000:3_0:191_0:26$ ip community-list expanded c165 permit 28 ^65000:3_0:192_0:27$ ip community-list expanded c165 permit 29 ^65000:3_0:193_0:28$ ip community-list expanded c165 permit 30 ^65000:3_0:194_0:29$ ip community-list expanded c165 permit 31 ^65000:3_0:195_0:30$ ip community-list expanded c165 permit 32 ^65000:3_0:196_0:31$ ip community-list expanded c165 permit 33 ^65000:3_0:197_0:32$ ip community-list expanded c165 permit 34 ^65000:3_0:198_0:33$ ip community-list expanded c165 permit 35 ^65000:3_0:199_0:34$ ip community-list expanded c165 permit 36 ^65000:3_0:200_0:35$ ip community-list expanded c165 permit 37 ^65000:3_0:201_0:36$ ip community-list expanded c165 permit 38 ^65000:3_0:202_0:37$ ip community-list expanded c165 permit 39 ^65000:3_0:203_0:38$ ip community-list expanded c165 permit 40 ^65000:3_0:204_0:39$ ip community-list expanded c165 permit 41 ^65000:3_0:205_0:40$ ip community-list expanded c165 permit 42 ^65000:3_0:206_0:41$ ip community-list expanded c165 permit 43 ^65000:3_0:207_0:42$ ip community-list expanded c165 permit 44 ^65000:3_0:208_0:43$ ip community-list expanded c165 permit 45 ^65000:3_0:209_0:44$ ip community-list expanded c165 permit 46 ^65000:3_0:210_0:45$ ip community-list expanded c165 permit 47 ^65000:3_0:211_0:46$ ip community-list expanded c165 permit 48 ^65000:3_0:212_0:47$ ip community-list expanded c165 permit 49 ^65000:3_0:213_0:48$ ip community-list expanded c165 permit 50 ^65000:3_0:214_0:49$ ip community-list expanded c165 permit 51 ^65000:3_0:215_0:50$ ip community-list expanded c165 permit 52 ^65000:3_0:216_0:51$ ip community-list expanded c165 permit 53 ^65000:3_0:217_0:52$ ip community-list expanded c165 permit 54 ^65000:3_0:218_0:53$ ip community-list expanded c165 permit 55 ^65000:3_0:219_0:54$ ip community-list expanded c165 permit 56 ^65000:3_0:220_0:55$ ip community-list expanded c165 permit 57 ^65000:3_0:221_0:56$ ip community-list expanded c165 permit 58 ^65000:3_0:222_0:57$ ip community-list expanded c165 permit 59 ^65000:3_0:223_0:58$ ip community-list expanded c165 permit 60 ^65000:3_0:224_0:59$ ip community-list expanded c165 permit 61 ^65000:3_0:225_0:60$ ip community-list expanded c165 permit 62 ^65000:3_0:226_0:61$ ip community-list expanded c165 permit 63 ^65000:3_0:227_0:62$ ip community-list expanded c165 permit 64 ^65000:3_0:228_0:63$ ip community-list expanded c165 permit 65 ^65000:3_0:229_0:64$ ip community-list expanded c165 permit 66 ^65000:3_0:230_0:65$ ip community-list expanded c165 permit 67 ^65000:3_0:231_0:66$ ip community-list expanded c165 permit 68 ^65000:3_0:232_0:67$ ip community-list expanded c165 permit 69 ^65000:3_0:233_0:68$ ip community-list expanded c165 permit 70 ^65000:3_0:234_0:69$ ip community-list expanded c165 permit 71 ^65000:3_0:235_0:70$ ip community-list expanded c165 permit 72 ^65000:3_0:236_0:71$ ip community-list expanded c165 permit 73 ^65000:3_0:237_0:72$ ip community-list expanded c165 permit 74 ^65000:3_0:238_0:73$ ip community-list expanded c165 permit 75 ^65000:3_0:239_0:74$ ip community-list expanded c165 permit 76 ^65000:3_0:240_0:75$ ip community-list expanded c165 permit 77 ^65000:3_0:241_0:76$ ip community-list expanded c165 permit 78 ^65000:3_0:242_0:77$ ip community-list expanded c165 permit 79 ^65000:3_0:243_0:78$ ip community-list expanded c165 permit 80 ^65000:3_0:244_0:79$ ip community-list expanded c165 permit 81 ^65000:3_0:245_0:80$ ip community-list expanded c165 permit 82 ^65000:3_0:246_0:81$ ip community-list expanded c165 permit 83 ^65000:3_0:247_0:82$ ip community-list expanded c165 permit 84 ^65000:3_0:248_0:83$ ip community-list expanded c165 permit 85 ^65000:3_0:249_0:84$ ip community-list expanded c165 permit 86 ^65000:3_0:250_0:85$ ip community-list expanded c165 permit 87 ^65000:3_0:251_0:86$ ip community-list expanded c165 permit 88 ^65000:3_0:252_0:87$ ip community-list expanded c165 permit 89 ^65000:3_0:253_0:88$ ip community-list expanded c165 permit 90 ^65000:3_0:254_0:89$ ip community-list expanded c165 permit 91 ^65000:3_0:255_0:90$ ip community-list expanded c165 permit 92 ^65000:3_0:256_0:91$ route-map calculator permit 25843 match community 1_1_164 2_1_165 1_2_163 2_3_55 1_3_162 set community 0:165 route-map calculator permit 25844 match community 1_4_161 2_5_33 1_5_160 1_6_159 1_7_158 set community 0:165 route-map calculator permit 25845 match community 1_8_157 1_9_156 1_10_155 2_11_15 1_11_154 set community 0:165 route-map calculator permit 25846 match community 1_12_153 1_13_152 1_14_151 1_15_150 1_16_149 set community 0:165 route-map calculator permit 25847 match community 1_17_148 1_18_147 1_19_146 1_20_145 1_21_144 set community 0:165 route-map calculator permit 25848 match community 1_22_143 1_23_142 1_24_141 1_25_140 1_26_139 set community 0:165 route-map calculator permit 25849 match community 1_27_138 1_28_137 1_29_136 1_30_135 1_31_134 set community 0:165 route-map calculator permit 25850 match community 1_32_133 1_33_132 1_34_131 1_35_130 1_36_129 set community 0:165 route-map calculator permit 25851 match community 1_37_128 1_38_127 1_39_126 1_40_125 1_41_124 set community 0:165 route-map calculator permit 25852 match community 1_42_123 1_43_122 1_44_121 1_45_120 1_46_119 set community 0:165 route-map calculator permit 25853 match community 1_47_118 1_48_117 1_49_116 1_50_115 1_51_114 set community 0:165 route-map calculator permit 25854 match community 1_52_113 1_53_112 1_54_111 1_55_110 1_56_109 set community 0:165 route-map calculator permit 25855 match community 1_57_108 1_58_107 1_59_106 1_60_105 1_61_104 set community 0:165 route-map calculator permit 25856 match community 1_62_103 1_63_102 1_64_101 1_65_100 1_66_99 set community 0:165 route-map calculator permit 25857 match community 1_67_98 1_68_97 1_69_96 1_70_95 1_71_94 set community 0:165 route-map calculator permit 25858 match community 1_72_93 1_73_92 1_74_91 1_75_90 1_76_89 set community 0:165 route-map calculator permit 25859 match community 1_77_88 1_78_87 1_79_86 1_80_85 1_81_84 set community 0:165 route-map calculator permit 25860 match community 1_82_83 c4_165_1 c3_166_1 c3_167_2 c3_168_3 set community 0:165 route-map calculator permit 25861 match community c3_169_4 c3_170_5 c3_171_6 c3_172_7 c3_173_8 set community 0:165 route-map calculator permit 25862 match community c3_174_9 c3_175_10 c3_176_11 c3_177_12 c3_178_13 set community 0:165 route-map calculator permit 25863 match community c3_179_14 c3_180_15 c3_181_16 c3_182_17 c3_183_18 set community 0:165 route-map calculator permit 25864 match community c3_184_19 c3_185_20 c3_186_21 c3_187_22 c3_188_23 set community 0:165 route-map calculator permit 25865 match community c3_189_24 c3_190_25 c3_191_26 c3_192_27 c3_193_28 set community 0:165 route-map calculator permit 25866 match community c3_194_29 c3_195_30 c3_196_31 c3_197_32 c3_198_33 set community 0:165 route-map calculator permit 25867 match community c3_199_34 c3_200_35 c3_201_36 c3_202_37 c3_203_38 set community 0:165 route-map calculator permit 25868 match community c3_204_39 c3_205_40 c3_206_41 c3_207_42 c3_208_43 set community 0:165 route-map calculator permit 25869 match community c3_209_44 c3_210_45 c3_211_46 c3_212_47 c3_213_48 set community 0:165 route-map calculator permit 25870 match community c3_214_49 c3_215_50 c3_216_51 c3_217_52 c3_218_53 set community 0:165 route-map calculator permit 25871 match community c3_219_54 c3_220_55 c3_221_56 c3_222_57 c3_223_58 set community 0:165 route-map calculator permit 25872 match community c3_224_59 c3_225_60 c3_226_61 c3_227_62 c3_228_63 set community 0:165 route-map calculator permit 25873 match community c3_229_64 c3_230_65 c3_231_66 c3_232_67 c3_233_68 set community 0:165 route-map calculator permit 25874 match community c3_234_69 c3_235_70 c3_236_71 c3_237_72 c3_238_73 set community 0:165 route-map calculator permit 25875 match community c3_239_74 c3_240_75 c3_241_76 c3_242_77 c3_243_78 set community 0:165 route-map calculator permit 25876 match community c3_244_79 c3_245_80 c3_246_81 c3_247_82 c3_248_83 set community 0:165 route-map calculator permit 25877 match community c3_249_84 c3_250_85 c3_251_86 c3_252_87 c3_253_88 set community 0:165 route-map calculator permit 25878 match community c3_254_89 c3_255_90 c3_256_91 set community 0:165 ip community-list standard 2_17_139 permit 65000:2 0:17 0:139 route-map calculator permit 25879 match community 2_17_139 set community 0:2363 ip community-list standard 2_58_225 permit 65000:2 0:58 0:225 ip community-list standard 2_75_174 permit 65000:2 0:75 0:174 ip community-list standard 2_87_150 permit 65000:2 0:87 0:150 ip community-list standard 2_90_145 permit 65000:2 0:90 0:145 route-map calculator permit 25880 match community 2_58_225 2_75_174 2_87_150 2_90_145 set community 0:13050 ip community-list standard 2_135_213 permit 65000:2 0:135 0:213 route-map calculator permit 25881 match community 2_135_213 set community 0:28755 ip community-list standard 2_97_123 permit 65000:2 0:97 0:123 route-map calculator permit 25882 match community 2_97_123 set community 0:11931 ip community-list standard 2_127_247 permit 65000:2 0:127 0:247 route-map calculator permit 25883 match community 2_127_247 set community 0:31369 ip community-list standard 2_197_212 permit 65000:2 0:197 0:212 route-map calculator permit 25884 match community 2_197_212 set community 0:41764 ip community-list standard 2_225_242 permit 65000:2 0:225 0:242 route-map calculator permit 25885 match community 2_225_242 set community 0:54450 ip community-list standard 2_204_233 permit 65000:2 0:204 0:233 route-map calculator permit 25886 match community 2_204_233 set community 0:47532 ip community-list standard 2_221_244 permit 65000:2 0:221 0:244 route-map calculator permit 25887 match community 2_221_244 set community 0:53924 ip community-list standard 2_226_246 permit 65000:2 0:226 0:246 route-map calculator permit 25888 match community 2_226_246 set community 0:55596 ip community-list standard 2_54_222 permit 65000:2 0:54 0:222 ip community-list standard 2_74_162 permit 65000:2 0:74 0:162 ip community-list standard 2_81_148 permit 65000:2 0:81 0:148 ip community-list standard 2_108_111 permit 65000:2 0:108 0:111 route-map calculator permit 25889 match community 2_54_222 2_74_162 2_81_148 2_108_111 set community 0:11988 ip community-list standard 2_123_137 permit 65000:2 0:123 0:137 route-map calculator permit 25890 match community 2_123_137 set community 0:16851 ip community-list standard 2_123_209 permit 65000:2 0:123 0:209 route-map calculator permit 25891 match community 2_123_209 set community 0:25707 ip community-list standard 2_166_169 permit 65000:2 0:166 0:169 route-map calculator permit 25892 match community 2_166_169 set community 0:28054 ip community-list standard 2_32_243 permit 65000:2 0:32 0:243 ip community-list standard 2_36_216 permit 65000:2 0:36 0:216 ip community-list standard 2_48_162 permit 65000:2 0:48 0:162 ip community-list standard 2_54_144 permit 65000:2 0:54 0:144 ip community-list standard 2_72_108 permit 65000:2 0:72 0:108 ip community-list standard 2_81_96 permit 65000:2 0:81 0:96 route-map calculator permit 25893 match community 2_32_243 2_36_216 2_48_162 2_54_144 2_72_108 set community 0:7776 route-map calculator permit 25894 match community 2_81_96 set community 0:7776 ip community-list standard 1_1_22 permit 65000:1 0:1 0:22 ip community-list standard 2_1_23 permit 65000:2 0:1 0:23 ip community-list standard 1_2_21 permit 65000:1 0:2 0:21 ip community-list standard 1_3_20 permit 65000:1 0:3 0:20 ip community-list standard 1_4_19 permit 65000:1 0:4 0:19 ip community-list standard 1_5_18 permit 65000:1 0:5 0:18 ip community-list standard 1_6_17 permit 65000:1 0:6 0:17 ip community-list standard 1_7_16 permit 65000:1 0:7 0:16 ip community-list standard 1_8_15 permit 65000:1 0:8 0:15 ip community-list standard 1_9_14 permit 65000:1 0:9 0:14 ip community-list standard 1_10_13 permit 65000:1 0:10 0:13 ip community-list standard 1_11_12 permit 65000:1 0:11 0:12 ip community-list expanded c23 permit 1 ^65000:4_0:23_0:1$ ip community-list expanded c23 permit 2 ^65000:3_0:24_0:1$ ip community-list expanded c23 permit 3 ^65000:3_0:25_0:2$ ip community-list expanded c23 permit 4 ^65000:3_0:26_0:3$ ip community-list expanded c23 permit 5 ^65000:3_0:27_0:4$ ip community-list expanded c23 permit 6 ^65000:3_0:28_0:5$ ip community-list expanded c23 permit 7 ^65000:3_0:29_0:6$ ip community-list expanded c23 permit 8 ^65000:3_0:30_0:7$ ip community-list expanded c23 permit 9 ^65000:3_0:31_0:8$ ip community-list expanded c23 permit 10 ^65000:3_0:32_0:9$ ip community-list expanded c23 permit 11 ^65000:3_0:33_0:10$ ip community-list expanded c23 permit 12 ^65000:3_0:34_0:11$ ip community-list expanded c23 permit 13 ^65000:3_0:35_0:12$ ip community-list expanded c23 permit 14 ^65000:3_0:36_0:13$ ip community-list expanded c23 permit 15 ^65000:3_0:37_0:14$ ip community-list expanded c23 permit 16 ^65000:3_0:38_0:15$ ip community-list expanded c23 permit 17 ^65000:3_0:39_0:16$ ip community-list expanded c23 permit 18 ^65000:3_0:40_0:17$ ip community-list expanded c23 permit 19 ^65000:3_0:41_0:18$ ip community-list expanded c23 permit 20 ^65000:3_0:42_0:19$ ip community-list expanded c23 permit 21 ^65000:3_0:43_0:20$ ip community-list expanded c23 permit 22 ^65000:3_0:44_0:21$ ip community-list expanded c23 permit 23 ^65000:3_0:45_0:22$ ip community-list expanded c23 permit 24 ^65000:4_0:46_0:2$ ip community-list expanded c23 permit 25 ^65000:3_0:46_0:23$ ip community-list expanded c23 permit 26 ^65000:4_0:47_0:2$ ip community-list expanded c23 permit 27 ^65000:3_0:47_0:24$ ip community-list expanded c23 permit 28 ^65000:3_0:48_0:25$ ip community-list expanded c23 permit 29 ^65000:3_0:49_0:26$ ip community-list expanded c23 permit 30 ^65000:3_0:50_0:27$ ip community-list expanded c23 permit 31 ^65000:3_0:51_0:28$ ip community-list expanded c23 permit 32 ^65000:3_0:52_0:29$ ip community-list expanded c23 permit 33 ^65000:3_0:53_0:30$ ip community-list expanded c23 permit 34 ^65000:3_0:54_0:31$ ip community-list expanded c23 permit 35 ^65000:3_0:55_0:32$ ip community-list expanded c23 permit 36 ^65000:3_0:56_0:33$ ip community-list expanded c23 permit 37 ^65000:3_0:57_0:34$ ip community-list expanded c23 permit 38 ^65000:3_0:58_0:35$ ip community-list expanded c23 permit 39 ^65000:3_0:59_0:36$ ip community-list expanded c23 permit 40 ^65000:3_0:60_0:37$ ip community-list expanded c23 permit 41 ^65000:3_0:61_0:38$ ip community-list expanded c23 permit 42 ^65000:3_0:62_0:39$ ip community-list expanded c23 permit 43 ^65000:3_0:63_0:40$ ip community-list expanded c23 permit 44 ^65000:3_0:64_0:41$ ip community-list expanded c23 permit 45 ^65000:3_0:65_0:42$ ip community-list expanded c23 permit 46 ^65000:3_0:66_0:43$ ip community-list expanded c23 permit 47 ^65000:3_0:67_0:44$ ip community-list expanded c23 permit 48 ^65000:3_0:68_0:45$ ip community-list expanded c23 permit 49 ^65000:4_0:69_0:3$ ip community-list expanded c23 permit 50 ^65000:3_0:69_0:46$ ip community-list expanded c23 permit 51 ^65000:4_0:70_0:3$ ip community-list expanded c23 permit 52 ^65000:3_0:70_0:47$ ip community-list expanded c23 permit 53 ^65000:4_0:71_0:3$ ip community-list expanded c23 permit 54 ^65000:3_0:71_0:48$ ip community-list expanded c23 permit 55 ^65000:3_0:72_0:49$ ip community-list expanded c23 permit 56 ^65000:3_0:73_0:50$ ip community-list expanded c23 permit 57 ^65000:3_0:74_0:51$ ip community-list expanded c23 permit 58 ^65000:3_0:75_0:52$ ip community-list expanded c23 permit 59 ^65000:3_0:76_0:53$ ip community-list expanded c23 permit 60 ^65000:3_0:77_0:54$ ip community-list expanded c23 permit 61 ^65000:3_0:78_0:55$ ip community-list expanded c23 permit 62 ^65000:3_0:79_0:56$ ip community-list expanded c23 permit 63 ^65000:3_0:80_0:57$ ip community-list expanded c23 permit 64 ^65000:3_0:81_0:58$ ip community-list expanded c23 permit 65 ^65000:3_0:82_0:59$ ip community-list expanded c23 permit 66 ^65000:3_0:83_0:60$ ip community-list expanded c23 permit 67 ^65000:3_0:84_0:61$ ip community-list expanded c23 permit 68 ^65000:3_0:85_0:62$ ip community-list expanded c23 permit 69 ^65000:3_0:86_0:63$ ip community-list expanded c23 permit 70 ^65000:3_0:87_0:64$ ip community-list expanded c23 permit 71 ^65000:3_0:88_0:65$ ip community-list expanded c23 permit 72 ^65000:3_0:89_0:66$ ip community-list expanded c23 permit 73 ^65000:3_0:90_0:67$ ip community-list expanded c23 permit 74 ^65000:3_0:91_0:68$ ip community-list expanded c23 permit 75 ^65000:4_0:92_0:4$ ip community-list expanded c23 permit 76 ^65000:3_0:92_0:69$ ip community-list expanded c23 permit 77 ^65000:4_0:93_0:4$ ip community-list expanded c23 permit 78 ^65000:3_0:93_0:70$ ip community-list expanded c23 permit 79 ^65000:4_0:94_0:4$ ip community-list expanded c23 permit 80 ^65000:3_0:94_0:71$ ip community-list expanded c23 permit 81 ^65000:4_0:95_0:4$ ip community-list expanded c23 permit 82 ^65000:3_0:95_0:72$ ip community-list expanded c23 permit 83 ^65000:3_0:96_0:73$ ip community-list expanded c23 permit 84 ^65000:3_0:97_0:74$ ip community-list expanded c23 permit 85 ^65000:3_0:98_0:75$ ip community-list expanded c23 permit 86 ^65000:3_0:99_0:76$ ip community-list expanded c23 permit 87 ^65000:3_0:100_0:77$ ip community-list expanded c23 permit 88 ^65000:3_0:101_0:78$ ip community-list expanded c23 permit 89 ^65000:3_0:102_0:79$ ip community-list expanded c23 permit 90 ^65000:3_0:103_0:80$ ip community-list expanded c23 permit 91 ^65000:3_0:104_0:81$ ip community-list expanded c23 permit 92 ^65000:3_0:105_0:82$ ip community-list expanded c23 permit 93 ^65000:3_0:106_0:83$ ip community-list expanded c23 permit 94 ^65000:3_0:107_0:84$ ip community-list expanded c23 permit 95 ^65000:3_0:108_0:85$ ip community-list expanded c23 permit 96 ^65000:3_0:109_0:86$ ip community-list expanded c23 permit 97 ^65000:3_0:110_0:87$ ip community-list expanded c23 permit 98 ^65000:3_0:111_0:88$ ip community-list expanded c23 permit 99 ^65000:3_0:112_0:89$ ip community-list expanded c23 permit 100 ^65000:3_0:113_0:90$ ip community-list expanded c23 permit 101 ^65000:3_0:114_0:91$ ip community-list expanded c23 permit 102 ^65000:4_0:115_0:5$ ip community-list expanded c23 permit 103 ^65000:3_0:115_0:92$ ip community-list expanded c23 permit 104 ^65000:4_0:116_0:5$ ip community-list expanded c23 permit 105 ^65000:3_0:116_0:93$ ip community-list expanded c23 permit 106 ^65000:4_0:117_0:5$ ip community-list expanded c23 permit 107 ^65000:3_0:117_0:94$ ip community-list expanded c23 permit 108 ^65000:4_0:118_0:5$ ip community-list expanded c23 permit 109 ^65000:3_0:118_0:95$ ip community-list expanded c23 permit 110 ^65000:4_0:119_0:5$ ip community-list expanded c23 permit 111 ^65000:3_0:119_0:96$ ip community-list expanded c23 permit 112 ^65000:3_0:120_0:97$ ip community-list expanded c23 permit 113 ^65000:3_0:121_0:98$ ip community-list expanded c23 permit 114 ^65000:3_0:122_0:99$ ip community-list expanded c23 permit 115 ^65000:3_0:123_0:100$ ip community-list expanded c23 permit 116 ^65000:3_0:124_0:101$ ip community-list expanded c23 permit 117 ^65000:3_0:125_0:102$ ip community-list expanded c23 permit 118 ^65000:3_0:126_0:103$ ip community-list expanded c23 permit 119 ^65000:3_0:127_0:104$ ip community-list expanded c23 permit 120 ^65000:3_0:128_0:105$ ip community-list expanded c23 permit 121 ^65000:3_0:129_0:106$ ip community-list expanded c23 permit 122 ^65000:3_0:130_0:107$ ip community-list expanded c23 permit 123 ^65000:3_0:131_0:108$ ip community-list expanded c23 permit 124 ^65000:3_0:132_0:109$ ip community-list expanded c23 permit 125 ^65000:3_0:133_0:110$ ip community-list expanded c23 permit 126 ^65000:3_0:134_0:111$ ip community-list expanded c23 permit 127 ^65000:3_0:135_0:112$ ip community-list expanded c23 permit 128 ^65000:3_0:136_0:113$ ip community-list expanded c23 permit 129 ^65000:3_0:137_0:114$ ip community-list expanded c23 permit 130 ^65000:4_0:138_0:6$ ip community-list expanded c23 permit 131 ^65000:3_0:138_0:115$ ip community-list expanded c23 permit 132 ^65000:4_0:139_0:6$ ip community-list expanded c23 permit 133 ^65000:3_0:139_0:116$ ip community-list expanded c23 permit 134 ^65000:4_0:140_0:6$ ip community-list expanded c23 permit 135 ^65000:3_0:140_0:117$ ip community-list expanded c23 permit 136 ^65000:4_0:141_0:6$ ip community-list expanded c23 permit 137 ^65000:3_0:141_0:118$ ip community-list expanded c23 permit 138 ^65000:4_0:142_0:6$ ip community-list expanded c23 permit 139 ^65000:3_0:142_0:119$ ip community-list expanded c23 permit 140 ^65000:4_0:143_0:6$ ip community-list expanded c23 permit 141 ^65000:3_0:143_0:120$ ip community-list expanded c23 permit 142 ^65000:3_0:144_0:121$ ip community-list expanded c23 permit 143 ^65000:3_0:145_0:122$ ip community-list expanded c23 permit 144 ^65000:3_0:146_0:123$ ip community-list expanded c23 permit 145 ^65000:3_0:147_0:124$ ip community-list expanded c23 permit 146 ^65000:3_0:148_0:125$ ip community-list expanded c23 permit 147 ^65000:3_0:149_0:126$ ip community-list expanded c23 permit 148 ^65000:3_0:150_0:127$ ip community-list expanded c23 permit 149 ^65000:3_0:151_0:128$ ip community-list expanded c23 permit 150 ^65000:3_0:152_0:129$ ip community-list expanded c23 permit 151 ^65000:3_0:153_0:130$ ip community-list expanded c23 permit 152 ^65000:3_0:154_0:131$ ip community-list expanded c23 permit 153 ^65000:3_0:155_0:132$ ip community-list expanded c23 permit 154 ^65000:3_0:156_0:133$ ip community-list expanded c23 permit 155 ^65000:3_0:157_0:134$ ip community-list expanded c23 permit 156 ^65000:3_0:158_0:135$ ip community-list expanded c23 permit 157 ^65000:3_0:159_0:136$ ip community-list expanded c23 permit 158 ^65000:3_0:160_0:137$ ip community-list expanded c23 permit 159 ^65000:4_0:161_0:7$ ip community-list expanded c23 permit 160 ^65000:3_0:161_0:138$ ip community-list expanded c23 permit 161 ^65000:4_0:162_0:7$ ip community-list expanded c23 permit 162 ^65000:3_0:162_0:139$ ip community-list expanded c23 permit 163 ^65000:4_0:163_0:7$ ip community-list expanded c23 permit 164 ^65000:3_0:163_0:140$ ip community-list expanded c23 permit 165 ^65000:4_0:164_0:7$ ip community-list expanded c23 permit 166 ^65000:3_0:164_0:141$ ip community-list expanded c23 permit 167 ^65000:4_0:165_0:7$ ip community-list expanded c23 permit 168 ^65000:3_0:165_0:142$ ip community-list expanded c23 permit 169 ^65000:4_0:166_0:7$ ip community-list expanded c23 permit 170 ^65000:3_0:166_0:143$ ip community-list expanded c23 permit 171 ^65000:4_0:167_0:7$ ip community-list expanded c23 permit 172 ^65000:3_0:167_0:144$ ip community-list expanded c23 permit 173 ^65000:3_0:168_0:145$ ip community-list expanded c23 permit 174 ^65000:3_0:169_0:146$ ip community-list expanded c23 permit 175 ^65000:3_0:170_0:147$ ip community-list expanded c23 permit 176 ^65000:3_0:171_0:148$ ip community-list expanded c23 permit 177 ^65000:3_0:172_0:149$ ip community-list expanded c23 permit 178 ^65000:3_0:173_0:150$ ip community-list expanded c23 permit 179 ^65000:3_0:174_0:151$ ip community-list expanded c23 permit 180 ^65000:3_0:175_0:152$ ip community-list expanded c23 permit 181 ^65000:3_0:176_0:153$ ip community-list expanded c23 permit 182 ^65000:3_0:177_0:154$ ip community-list expanded c23 permit 183 ^65000:3_0:178_0:155$ ip community-list expanded c23 permit 184 ^65000:3_0:179_0:156$ ip community-list expanded c23 permit 185 ^65000:3_0:180_0:157$ ip community-list expanded c23 permit 186 ^65000:3_0:181_0:158$ ip community-list expanded c23 permit 187 ^65000:3_0:182_0:159$ ip community-list expanded c23 permit 188 ^65000:3_0:183_0:160$ ip community-list expanded c23 permit 189 ^65000:4_0:184_0:8$ ip community-list expanded c23 permit 190 ^65000:3_0:184_0:161$ ip community-list expanded c23 permit 191 ^65000:4_0:185_0:8$ ip community-list expanded c23 permit 192 ^65000:3_0:185_0:162$ ip community-list expanded c23 permit 193 ^65000:4_0:186_0:8$ ip community-list expanded c23 permit 194 ^65000:3_0:186_0:163$ ip community-list expanded c23 permit 195 ^65000:4_0:187_0:8$ ip community-list expanded c23 permit 196 ^65000:3_0:187_0:164$ ip community-list expanded c23 permit 197 ^65000:4_0:188_0:8$ ip community-list expanded c23 permit 198 ^65000:3_0:188_0:165$ ip community-list expanded c23 permit 199 ^65000:4_0:189_0:8$ ip community-list expanded c23 permit 200 ^65000:3_0:189_0:166$ ip community-list expanded c23 permit 201 ^65000:4_0:190_0:8$ ip community-list expanded c23 permit 202 ^65000:3_0:190_0:167$ ip community-list expanded c23 permit 203 ^65000:4_0:191_0:8$ ip community-list expanded c23 permit 204 ^65000:3_0:191_0:168$ ip community-list expanded c23 permit 205 ^65000:3_0:192_0:169$ ip community-list expanded c23 permit 206 ^65000:3_0:193_0:170$ ip community-list expanded c23 permit 207 ^65000:3_0:194_0:171$ ip community-list expanded c23 permit 208 ^65000:3_0:195_0:172$ ip community-list expanded c23 permit 209 ^65000:3_0:196_0:173$ ip community-list expanded c23 permit 210 ^65000:3_0:197_0:174$ ip community-list expanded c23 permit 211 ^65000:3_0:198_0:175$ ip community-list expanded c23 permit 212 ^65000:3_0:199_0:176$ ip community-list expanded c23 permit 213 ^65000:3_0:200_0:177$ ip community-list expanded c23 permit 214 ^65000:3_0:201_0:178$ ip community-list expanded c23 permit 215 ^65000:3_0:202_0:179$ ip community-list expanded c23 permit 216 ^65000:3_0:203_0:180$ ip community-list expanded c23 permit 217 ^65000:3_0:204_0:181$ ip community-list expanded c23 permit 218 ^65000:3_0:205_0:182$ ip community-list expanded c23 permit 219 ^65000:3_0:206_0:183$ ip community-list expanded c23 permit 220 ^65000:4_0:207_0:9$ ip community-list expanded c23 permit 221 ^65000:3_0:207_0:184$ ip community-list expanded c23 permit 222 ^65000:4_0:208_0:9$ ip community-list expanded c23 permit 223 ^65000:3_0:208_0:185$ ip community-list expanded c23 permit 224 ^65000:4_0:209_0:9$ ip community-list expanded c23 permit 225 ^65000:3_0:209_0:186$ ip community-list expanded c23 permit 226 ^65000:4_0:210_0:9$ ip community-list expanded c23 permit 227 ^65000:3_0:210_0:187$ ip community-list expanded c23 permit 228 ^65000:4_0:211_0:9$ ip community-list expanded c23 permit 229 ^65000:3_0:211_0:188$ ip community-list expanded c23 permit 230 ^65000:4_0:212_0:9$ ip community-list expanded c23 permit 231 ^65000:3_0:212_0:189$ ip community-list expanded c23 permit 232 ^65000:4_0:213_0:9$ ip community-list expanded c23 permit 233 ^65000:3_0:213_0:190$ ip community-list expanded c23 permit 234 ^65000:4_0:214_0:9$ ip community-list expanded c23 permit 235 ^65000:3_0:214_0:191$ ip community-list expanded c23 permit 236 ^65000:4_0:215_0:9$ ip community-list expanded c23 permit 237 ^65000:3_0:215_0:192$ ip community-list expanded c23 permit 238 ^65000:3_0:216_0:193$ ip community-list expanded c23 permit 239 ^65000:3_0:217_0:194$ ip community-list expanded c23 permit 240 ^65000:3_0:218_0:195$ ip community-list expanded c23 permit 241 ^65000:3_0:219_0:196$ ip community-list expanded c23 permit 242 ^65000:3_0:220_0:197$ ip community-list expanded c23 permit 243 ^65000:3_0:221_0:198$ ip community-list expanded c23 permit 244 ^65000:3_0:222_0:199$ ip community-list expanded c23 permit 245 ^65000:3_0:223_0:200$ ip community-list expanded c23 permit 246 ^65000:3_0:224_0:201$ ip community-list expanded c23 permit 247 ^65000:3_0:225_0:202$ ip community-list expanded c23 permit 248 ^65000:3_0:226_0:203$ ip community-list expanded c23 permit 249 ^65000:3_0:227_0:204$ ip community-list expanded c23 permit 250 ^65000:3_0:228_0:205$ ip community-list expanded c23 permit 251 ^65000:3_0:229_0:206$ ip community-list expanded c23 permit 252 ^65000:4_0:230_0:10$ ip community-list expanded c23 permit 253 ^65000:3_0:230_0:207$ ip community-list expanded c23 permit 254 ^65000:4_0:231_0:10$ ip community-list expanded c23 permit 255 ^65000:3_0:231_0:208$ ip community-list expanded c23 permit 256 ^65000:4_0:232_0:10$ ip community-list expanded c23 permit 257 ^65000:3_0:232_0:209$ ip community-list expanded c23 permit 258 ^65000:4_0:233_0:10$ ip community-list expanded c23 permit 259 ^65000:3_0:233_0:210$ ip community-list expanded c23 permit 260 ^65000:4_0:234_0:10$ ip community-list expanded c23 permit 261 ^65000:3_0:234_0:211$ ip community-list expanded c23 permit 262 ^65000:4_0:235_0:10$ ip community-list expanded c23 permit 263 ^65000:3_0:235_0:212$ ip community-list expanded c23 permit 264 ^65000:4_0:236_0:10$ ip community-list expanded c23 permit 265 ^65000:3_0:236_0:213$ ip community-list expanded c23 permit 266 ^65000:4_0:237_0:10$ ip community-list expanded c23 permit 267 ^65000:3_0:237_0:214$ ip community-list expanded c23 permit 268 ^65000:4_0:238_0:10$ ip community-list expanded c23 permit 269 ^65000:3_0:238_0:215$ ip community-list expanded c23 permit 270 ^65000:4_0:239_0:10$ ip community-list expanded c23 permit 271 ^65000:3_0:239_0:216$ ip community-list expanded c23 permit 272 ^65000:3_0:240_0:217$ ip community-list expanded c23 permit 273 ^65000:3_0:241_0:218$ ip community-list expanded c23 permit 274 ^65000:3_0:242_0:219$ ip community-list expanded c23 permit 275 ^65000:3_0:243_0:220$ ip community-list expanded c23 permit 276 ^65000:3_0:244_0:221$ ip community-list expanded c23 permit 277 ^65000:3_0:245_0:222$ ip community-list expanded c23 permit 278 ^65000:3_0:246_0:223$ ip community-list expanded c23 permit 279 ^65000:3_0:247_0:224$ ip community-list expanded c23 permit 280 ^65000:3_0:248_0:225$ ip community-list expanded c23 permit 281 ^65000:3_0:249_0:226$ ip community-list expanded c23 permit 282 ^65000:3_0:250_0:227$ ip community-list expanded c23 permit 283 ^65000:3_0:251_0:228$ ip community-list expanded c23 permit 284 ^65000:3_0:252_0:229$ ip community-list expanded c23 permit 285 ^65000:4_0:253_0:11$ ip community-list expanded c23 permit 286 ^65000:3_0:253_0:230$ ip community-list expanded c23 permit 287 ^65000:4_0:254_0:11$ ip community-list expanded c23 permit 288 ^65000:3_0:254_0:231$ ip community-list expanded c23 permit 289 ^65000:4_0:255_0:11$ ip community-list expanded c23 permit 290 ^65000:3_0:255_0:232$ ip community-list expanded c23 permit 291 ^65000:4_0:256_0:11$ ip community-list expanded c23 permit 292 ^65000:3_0:256_0:233$ route-map calculator permit 25895 match community 1_1_22 2_1_23 1_2_21 1_3_20 1_4_19 set community 0:23 route-map calculator permit 25896 match community 1_5_18 1_6_17 1_7_16 1_8_15 1_9_14 set community 0:23 route-map calculator permit 25897 match community 1_10_13 1_11_12 c4_23_1 c3_24_1 c3_25_2 set community 0:23 route-map calculator permit 25898 match community c3_26_3 c3_27_4 c3_28_5 c3_29_6 c3_30_7 set community 0:23 route-map calculator permit 25899 match community c3_31_8 c3_32_9 c3_33_10 c3_34_11 c3_35_12 set community 0:23 route-map calculator permit 25900 match community c3_36_13 c3_37_14 c3_38_15 c3_39_16 c3_40_17 set community 0:23 route-map calculator permit 25901 match community c3_41_18 c3_42_19 c3_43_20 c3_44_21 c3_45_22 set community 0:23 route-map calculator permit 25902 match community c4_46_2 c3_46_23 c4_47_2 c3_47_24 c3_48_25 set community 0:23 route-map calculator permit 25903 match community c3_49_26 c3_50_27 c3_51_28 c3_52_29 c3_53_30 set community 0:23 route-map calculator permit 25904 match community c3_54_31 c3_55_32 c3_56_33 c3_57_34 c3_58_35 set community 0:23 route-map calculator permit 25905 match community c3_59_36 c3_60_37 c3_61_38 c3_62_39 c3_63_40 set community 0:23 route-map calculator permit 25906 match community c3_64_41 c3_65_42 c3_66_43 c3_67_44 c3_68_45 set community 0:23 route-map calculator permit 25907 match community c4_69_3 c3_69_46 c4_70_3 c3_70_47 c4_71_3 set community 0:23 route-map calculator permit 25908 match community c3_71_48 c3_72_49 c3_73_50 c3_74_51 c3_75_52 set community 0:23 route-map calculator permit 25909 match community c3_76_53 c3_77_54 c3_78_55 c3_79_56 c3_80_57 set community 0:23 route-map calculator permit 25910 match community c3_81_58 c3_82_59 c3_83_60 c3_84_61 c3_85_62 set community 0:23 route-map calculator permit 25911 match community c3_86_63 c3_87_64 c3_88_65 c3_89_66 c3_90_67 set community 0:23 route-map calculator permit 25912 match community c3_91_68 c4_92_4 c3_92_69 c4_93_4 c3_93_70 set community 0:23 route-map calculator permit 25913 match community c4_94_4 c3_94_71 c4_95_4 c3_95_72 c3_96_73 set community 0:23 route-map calculator permit 25914 match community c3_97_74 c3_98_75 c3_99_76 c3_100_77 c3_101_78 set community 0:23 route-map calculator permit 25915 match community c3_102_79 c3_103_80 c3_104_81 c3_105_82 c3_106_83 set community 0:23 route-map calculator permit 25916 match community c3_107_84 c3_108_85 c3_109_86 c3_110_87 c3_111_88 set community 0:23 route-map calculator permit 25917 match community c3_112_89 c3_113_90 c3_114_91 c4_115_5 c3_115_92 set community 0:23 route-map calculator permit 25918 match community c4_116_5 c3_116_93 c4_117_5 c3_117_94 c4_118_5 set community 0:23 route-map calculator permit 25919 match community c3_118_95 c4_119_5 c3_119_96 c3_120_97 c3_121_98 set community 0:23 route-map calculator permit 25920 match community c3_122_99 c3_123_100 c3_124_101 c3_125_102 c3_126_103 set community 0:23 route-map calculator permit 25921 match community c3_127_104 c3_128_105 c3_129_106 c3_130_107 c3_131_108 set community 0:23 route-map calculator permit 25922 match community c3_132_109 c3_133_110 c3_134_111 c3_135_112 c3_136_113 set community 0:23 route-map calculator permit 25923 match community c3_137_114 c4_138_6 c3_138_115 c4_139_6 c3_139_116 set community 0:23 route-map calculator permit 25924 match community c4_140_6 c3_140_117 c4_141_6 c3_141_118 c4_142_6 set community 0:23 route-map calculator permit 25925 match community c3_142_119 c4_143_6 c3_143_120 c3_144_121 c3_145_122 set community 0:23 route-map calculator permit 25926 match community c3_146_123 c3_147_124 c3_148_125 c3_149_126 c3_150_127 set community 0:23 route-map calculator permit 25927 match community c3_151_128 c3_152_129 c3_153_130 c3_154_131 c3_155_132 set community 0:23 route-map calculator permit 25928 match community c3_156_133 c3_157_134 c3_158_135 c3_159_136 c3_160_137 set community 0:23 route-map calculator permit 25929 match community c4_161_7 c3_161_138 c4_162_7 c3_162_139 c4_163_7 set community 0:23 route-map calculator permit 25930 match community c3_163_140 c4_164_7 c3_164_141 c4_165_7 c3_165_142 set community 0:23 route-map calculator permit 25931 match community c4_166_7 c3_166_143 c4_167_7 c3_167_144 c3_168_145 set community 0:23 route-map calculator permit 25932 match community c3_169_146 c3_170_147 c3_171_148 c3_172_149 c3_173_150 set community 0:23 route-map calculator permit 25933 match community c3_174_151 c3_175_152 c3_176_153 c3_177_154 c3_178_155 set community 0:23 route-map calculator permit 25934 match community c3_179_156 c3_180_157 c3_181_158 c3_182_159 c3_183_160 set community 0:23 route-map calculator permit 25935 match community c4_184_8 c3_184_161 c4_185_8 c3_185_162 c4_186_8 set community 0:23 route-map calculator permit 25936 match community c3_186_163 c4_187_8 c3_187_164 c4_188_8 c3_188_165 set community 0:23 route-map calculator permit 25937 match community c4_189_8 c3_189_166 c4_190_8 c3_190_167 c4_191_8 set community 0:23 route-map calculator permit 25938 match community c3_191_168 c3_192_169 c3_193_170 c3_194_171 c3_195_172 set community 0:23 route-map calculator permit 25939 match community c3_196_173 c3_197_174 c3_198_175 c3_199_176 c3_200_177 set community 0:23 route-map calculator permit 25940 match community c3_201_178 c3_202_179 c3_203_180 c3_204_181 c3_205_182 set community 0:23 route-map calculator permit 25941 match community c3_206_183 c4_207_9 c3_207_184 c4_208_9 c3_208_185 set community 0:23 route-map calculator permit 25942 match community c4_209_9 c3_209_186 c4_210_9 c3_210_187 c4_211_9 set community 0:23 route-map calculator permit 25943 match community c3_211_188 c4_212_9 c3_212_189 c4_213_9 c3_213_190 set community 0:23 route-map calculator permit 25944 match community c4_214_9 c3_214_191 c4_215_9 c3_215_192 c3_216_193 set community 0:23 route-map calculator permit 25945 match community c3_217_194 c3_218_195 c3_219_196 c3_220_197 c3_221_198 set community 0:23 route-map calculator permit 25946 match community c3_222_199 c3_223_200 c3_224_201 c3_225_202 c3_226_203 set community 0:23 route-map calculator permit 25947 match community c3_227_204 c3_228_205 c3_229_206 c4_230_10 c3_230_207 set community 0:23 route-map calculator permit 25948 match community c4_231_10 c3_231_208 c4_232_10 c3_232_209 c4_233_10 set community 0:23 route-map calculator permit 25949 match community c3_233_210 c4_234_10 c3_234_211 c4_235_10 c3_235_212 set community 0:23 route-map calculator permit 25950 match community c4_236_10 c3_236_213 c4_237_10 c3_237_214 c4_238_10 set community 0:23 route-map calculator permit 25951 match community c3_238_215 c4_239_10 c3_239_216 c3_240_217 c3_241_218 set community 0:23 route-map calculator permit 25952 match community c3_242_219 c3_243_220 c3_244_221 c3_245_222 c3_246_223 set community 0:23 route-map calculator permit 25953 match community c3_247_224 c3_248_225 c3_249_226 c3_250_227 c3_251_228 set community 0:23 route-map calculator permit 25954 match community c3_252_229 c4_253_11 c3_253_230 c4_254_11 c3_254_231 set community 0:23 route-map calculator permit 25955 match community c4_255_11 c3_255_232 c4_256_11 c3_256_233 set community 0:23 ip community-list standard 2_19_230 permit 65000:2 0:19 0:230 ip community-list standard 2_23_190 permit 65000:2 0:23 0:190 ip community-list standard 2_38_115 permit 65000:2 0:38 0:115 ip community-list standard 2_46_95 permit 65000:2 0:46 0:95 route-map calculator permit 25956 match community 2_19_230 2_23_190 2_38_115 2_46_95 set community 0:4370 ip community-list standard 2_122_254 permit 65000:2 0:122 0:254 ip community-list standard 2_127_244 permit 65000:2 0:127 0:244 route-map calculator permit 25957 match community 2_122_254 2_127_244 set community 0:30988 ip community-list standard 2_98_171 permit 65000:2 0:98 0:171 ip community-list standard 2_114_147 permit 65000:2 0:114 0:147 ip community-list standard 2_126_133 permit 65000:2 0:126 0:133 route-map calculator permit 25958 match community 2_98_171 2_114_147 2_126_133 set community 0:16758 ip community-list standard 2_51_198 permit 65000:2 0:51 0:198 ip community-list standard 2_54_187 permit 65000:2 0:54 0:187 ip community-list standard 2_66_153 permit 65000:2 0:66 0:153 ip community-list standard 2_99_102 permit 65000:2 0:99 0:102 route-map calculator permit 25959 match community 2_51_198 2_54_187 2_66_153 2_99_102 set community 0:10098 ip community-list standard 2_171_239 permit 65000:2 0:171 0:239 route-map calculator permit 25960 match community 2_171_239 set community 0:40869 ip community-list standard 2_19_113 permit 65000:2 0:19 0:113 route-map calculator permit 25961 match community 2_19_113 set community 0:2147 ip community-list standard 2_44_213 permit 65000:2 0:44 0:213 ip community-list standard 2_66_142 permit 65000:2 0:66 0:142 ip community-list standard 2_71_132 permit 65000:2 0:71 0:132 route-map calculator permit 25962 match community 2_44_213 2_66_142 2_71_132 set community 0:9372 ip community-list standard 2_54_245 permit 65000:2 0:54 0:245 ip community-list standard 2_63_210 permit 65000:2 0:63 0:210 ip community-list standard 2_70_189 permit 65000:2 0:70 0:189 ip community-list standard 2_90_147 permit 65000:2 0:90 0:147 ip community-list standard 2_98_135 permit 65000:2 0:98 0:135 ip community-list standard 2_105_126 permit 65000:2 0:105 0:126 route-map calculator permit 25963 match community 2_54_245 2_63_210 2_70_189 2_90_147 2_98_135 set community 0:13230 route-map calculator permit 25964 match community 2_105_126 set community 0:13230 ip community-list standard 2_76_215 permit 65000:2 0:76 0:215 ip community-list standard 2_86_190 permit 65000:2 0:86 0:190 ip community-list standard 2_95_172 permit 65000:2 0:95 0:172 route-map calculator permit 25965 match community 2_76_215 2_86_190 2_95_172 set community 0:16340 ip community-list standard 2_57_225 permit 65000:2 0:57 0:225 ip community-list standard 2_75_171 permit 65000:2 0:75 0:171 ip community-list standard 2_95_135 permit 65000:2 0:95 0:135 route-map calculator permit 25966 match community 2_57_225 2_75_171 2_95_135 set community 0:12825 ip community-list standard 2_67_252 permit 65000:2 0:67 0:252 ip community-list standard 2_84_201 permit 65000:2 0:84 0:201 ip community-list standard 2_126_134 permit 65000:2 0:126 0:134 route-map calculator permit 25967 match community 2_67_252 2_84_201 2_126_134 set community 0:16884 ip community-list standard 2_171_243 permit 65000:2 0:171 0:243 route-map calculator permit 25968 match community 2_171_243 set community 0:41553 ip community-list standard 2_19_167 permit 65000:2 0:19 0:167 route-map calculator permit 25969 match community 2_19_167 set community 0:3173 ip community-list standard 2_159_179 permit 65000:2 0:159 0:179 route-map calculator permit 25970 match community 2_159_179 set community 0:28461 ip community-list standard 2_85_256 permit 65000:2 0:85 0:256 ip community-list standard 2_128_170 permit 65000:2 0:128 0:170 ip community-list standard 2_136_160 permit 65000:2 0:136 0:160 route-map calculator permit 25971 match community 2_85_256 2_128_170 2_136_160 set community 0:21760 ip community-list standard 2_131_198 permit 65000:2 0:131 0:198 route-map calculator permit 25972 match community 2_131_198 set community 0:25938 ip community-list standard 2_168_173 permit 65000:2 0:168 0:173 route-map calculator permit 25973 match community 2_168_173 set community 0:29064 ip community-list standard 2_5_250 permit 65000:2 0:5 0:250 ip community-list standard 2_10_125 permit 65000:2 0:10 0:125 ip community-list standard 2_25_50 permit 65000:2 0:25 0:50 route-map calculator permit 25974 match community 2_5_250 2_10_125 2_25_50 set community 0:1250 ip community-list standard 2_76_161 permit 65000:2 0:76 0:161 ip community-list standard 2_92_133 permit 65000:2 0:92 0:133 route-map calculator permit 25975 match community 2_76_161 2_92_133 set community 0:12236 ip community-list standard 2_17_149 permit 65000:2 0:17 0:149 route-map calculator permit 25976 match community 2_17_149 set community 0:2533 ip community-list standard 2_36_240 permit 65000:2 0:36 0:240 ip community-list standard 2_40_216 permit 65000:2 0:40 0:216 ip community-list standard 2_45_192 permit 65000:2 0:45 0:192 ip community-list standard 2_48_180 permit 65000:2 0:48 0:180 ip community-list standard 2_54_160 permit 65000:2 0:54 0:160 ip community-list standard 2_60_144 permit 65000:2 0:60 0:144 ip community-list standard 2_64_135 permit 65000:2 0:64 0:135 ip community-list standard 2_72_120 permit 65000:2 0:72 0:120 ip community-list standard 2_80_108 permit 65000:2 0:80 0:108 ip community-list standard 2_90_96 permit 65000:2 0:90 0:96 route-map calculator permit 25977 match community 2_36_240 2_40_216 2_45_192 2_48_180 2_54_160 set community 0:8640 route-map calculator permit 25978 match community 2_60_144 2_64_135 2_72_120 2_80_108 2_90_96 set community 0:8640 ip community-list standard 2_53_189 permit 65000:2 0:53 0:189 ip community-list standard 2_63_159 permit 65000:2 0:63 0:159 route-map calculator permit 25979 match community 2_53_189 2_63_159 set community 0:10017 ip community-list standard 2_139_237 permit 65000:2 0:139 0:237 route-map calculator permit 25980 match community 2_139_237 set community 0:32943 ip community-list standard 2_87_256 permit 65000:2 0:87 0:256 ip community-list standard 2_96_232 permit 65000:2 0:96 0:232 ip community-list standard 2_116_192 permit 65000:2 0:116 0:192 ip community-list standard 2_128_174 permit 65000:2 0:128 0:174 route-map calculator permit 25981 match community 2_87_256 2_96_232 2_116_192 2_128_174 set community 0:22272 ip community-list standard 2_75_137 permit 65000:2 0:75 0:137 route-map calculator permit 25982 match community 2_75_137 set community 0:10275 ip community-list standard 2_18_254 permit 65000:2 0:18 0:254 ip community-list standard 2_36_127 permit 65000:2 0:36 0:127 route-map calculator permit 25983 match community 2_18_254 2_36_127 set community 0:4572 ip community-list standard 2_102_137 permit 65000:2 0:102 0:137 route-map calculator permit 25984 match community 2_102_137 set community 0:13974 ip community-list standard 2_129_228 permit 65000:2 0:129 0:228 ip community-list standard 2_171_172 permit 65000:2 0:171 0:172 route-map calculator permit 25985 match community 2_129_228 2_171_172 set community 0:29412 ip community-list standard 2_7_240 permit 65000:2 0:7 0:240 ip community-list standard 2_8_210 permit 65000:2 0:8 0:210 ip community-list standard 2_10_168 permit 65000:2 0:10 0:168 ip community-list standard 2_12_140 permit 65000:2 0:12 0:140 ip community-list standard 2_14_120 permit 65000:2 0:14 0:120 ip community-list standard 2_15_112 permit 65000:2 0:15 0:112 ip community-list standard 2_16_105 permit 65000:2 0:16 0:105 ip community-list standard 2_20_84 permit 65000:2 0:20 0:84 ip community-list standard 2_21_80 permit 65000:2 0:21 0:80 ip community-list standard 2_24_70 permit 65000:2 0:24 0:70 ip community-list standard 2_28_60 permit 65000:2 0:28 0:60 ip community-list standard 2_30_56 permit 65000:2 0:30 0:56 ip community-list standard 2_35_48 permit 65000:2 0:35 0:48 ip community-list standard 2_40_42 permit 65000:2 0:40 0:42 route-map calculator permit 25986 match community 2_7_240 2_8_210 2_10_168 2_12_140 2_14_120 set community 0:1680 route-map calculator permit 25987 match community 2_15_112 2_16_105 2_20_84 2_21_80 2_24_70 set community 0:1680 route-map calculator permit 25988 match community 2_28_60 2_30_56 2_35_48 2_40_42 set community 0:1680 ip community-list standard 2_147_151 permit 65000:2 0:147 0:151 route-map calculator permit 25989 match community 2_147_151 set community 0:22197 ip community-list standard 2_4_148 permit 65000:2 0:4 0:148 ip community-list standard 2_8_74 permit 65000:2 0:8 0:74 ip community-list standard 2_16_37 permit 65000:2 0:16 0:37 route-map calculator permit 25990 match community 2_4_148 2_8_74 2_16_37 set community 0:592 ip community-list standard 2_136_246 permit 65000:2 0:136 0:246 ip community-list standard 2_164_204 permit 65000:2 0:164 0:204 route-map calculator permit 25991 match community 2_136_246 2_164_204 set community 0:33456 ip community-list standard 2_142_244 permit 65000:2 0:142 0:244 route-map calculator permit 25992 match community 2_142_244 set community 0:34648 ip community-list standard 2_17_118 permit 65000:2 0:17 0:118 ip community-list standard 2_34_59 permit 65000:2 0:34 0:59 route-map calculator permit 25993 match community 2_17_118 2_34_59 set community 0:2006 ip community-list standard 2_35_237 permit 65000:2 0:35 0:237 ip community-list standard 2_79_105 permit 65000:2 0:79 0:105 route-map calculator permit 25994 match community 2_35_237 2_79_105 set community 0:8295 ip community-list standard 2_106_230 permit 65000:2 0:106 0:230 ip community-list standard 2_115_212 permit 65000:2 0:115 0:212 route-map calculator permit 25995 match community 2_106_230 2_115_212 set community 0:24380 ip community-list standard 2_22_219 permit 65000:2 0:22 0:219 ip community-list standard 2_33_146 permit 65000:2 0:33 0:146 ip community-list standard 2_66_73 permit 65000:2 0:66 0:73 route-map calculator permit 25996 match community 2_22_219 2_33_146 2_66_73 set community 0:4818 ip community-list standard 2_45_193 permit 65000:2 0:45 0:193 route-map calculator permit 25997 match community 2_45_193 set community 0:8685 ip community-list standard 2_25_238 permit 65000:2 0:25 0:238 ip community-list standard 2_34_175 permit 65000:2 0:34 0:175 ip community-list standard 2_35_170 permit 65000:2 0:35 0:170 ip community-list standard 2_50_119 permit 65000:2 0:50 0:119 ip community-list standard 2_70_85 permit 65000:2 0:70 0:85 route-map calculator permit 25998 match community 2_25_238 2_34_175 2_35_170 2_50_119 2_70_85 set community 0:5950 ip community-list standard 2_90_219 permit 65000:2 0:90 0:219 ip community-list standard 2_135_146 permit 65000:2 0:135 0:146 route-map calculator permit 25999 match community 2_90_219 2_135_146 set community 0:19710 ip community-list standard 2_27_169 permit 65000:2 0:27 0:169 ip community-list standard 2_39_117 permit 65000:2 0:39 0:117 route-map calculator permit 26000 match community 2_27_169 2_39_117 set community 0:4563 ip community-list standard 2_185_185 permit 65000:2 0:185 0:185 route-map calculator permit 26001 match community 2_185_185 set community 0:34225 ip community-list standard 2_60_249 permit 65000:2 0:60 0:249 ip community-list standard 2_83_180 permit 65000:2 0:83 0:180 ip community-list standard 2_90_166 permit 65000:2 0:90 0:166 route-map calculator permit 26002 match community 2_60_249 2_83_180 2_90_166 set community 0:14940 ip community-list standard 2_91_250 permit 65000:2 0:91 0:250 ip community-list standard 2_125_182 permit 65000:2 0:125 0:182 ip community-list standard 2_130_175 permit 65000:2 0:130 0:175 route-map calculator permit 26003 match community 2_91_250 2_125_182 2_130_175 set community 0:22750 ip community-list standard 2_146_205 permit 65000:2 0:146 0:205 route-map calculator permit 26004 match community 2_146_205 set community 0:29930 ip community-list standard 2_178_206 permit 65000:2 0:178 0:206 route-map calculator permit 26005 match community 2_178_206 set community 0:36668 ip community-list standard 2_152_256 permit 65000:2 0:152 0:256 route-map calculator permit 26006 match community 2_152_256 set community 0:38912 ip community-list standard 2_33_101 permit 65000:2 0:33 0:101 route-map calculator permit 26007 match community 2_33_101 set community 0:3333 ip community-list standard 2_29_232 permit 65000:2 0:29 0:232 ip community-list standard 2_58_116 permit 65000:2 0:58 0:116 route-map calculator permit 26008 match community 2_29_232 2_58_116 set community 0:6728 ip community-list standard 2_77_103 permit 65000:2 0:77 0:103 route-map calculator permit 26009 match community 2_77_103 set community 0:7931 ip community-list standard 2_4_242 permit 65000:2 0:4 0:242 ip community-list standard 2_8_121 permit 65000:2 0:8 0:121 ip community-list standard 2_11_88 permit 65000:2 0:11 0:88 ip community-list standard 2_22_44 permit 65000:2 0:22 0:44 route-map calculator permit 26010 match community 2_4_242 2_8_121 2_11_88 2_22_44 set community 0:968 ip community-list standard 2_151_195 permit 65000:2 0:151 0:195 route-map calculator permit 26011 match community 2_151_195 set community 0:29445 ip community-list standard 2_167_193 permit 65000:2 0:167 0:193 route-map calculator permit 26012 match community 2_167_193 set community 0:32231 ip community-list standard 2_2_236 permit 65000:2 0:2 0:236 ip community-list standard 2_4_118 permit 65000:2 0:4 0:118 ip community-list standard 2_8_59 permit 65000:2 0:8 0:59 ip community-list standard 1_216_256 permit 65000:1 0:216 0:256 ip community-list standard 1_217_255 permit 65000:1 0:217 0:255 ip community-list standard 1_218_254 permit 65000:1 0:218 0:254 ip community-list standard 1_219_253 permit 65000:1 0:219 0:253 ip community-list standard 1_220_252 permit 65000:1 0:220 0:252 ip community-list standard 1_221_251 permit 65000:1 0:221 0:251 ip community-list standard 1_222_250 permit 65000:1 0:222 0:250 ip community-list standard 1_223_249 permit 65000:1 0:223 0:249 ip community-list standard 1_224_248 permit 65000:1 0:224 0:248 ip community-list standard 1_225_247 permit 65000:1 0:225 0:247 ip community-list standard 1_226_246 permit 65000:1 0:226 0:246 ip community-list standard 1_227_245 permit 65000:1 0:227 0:245 ip community-list standard 1_228_244 permit 65000:1 0:228 0:244 ip community-list standard 1_229_243 permit 65000:1 0:229 0:243 ip community-list standard 1_230_242 permit 65000:1 0:230 0:242 ip community-list standard 1_231_241 permit 65000:1 0:231 0:241 ip community-list standard 1_232_240 permit 65000:1 0:232 0:240 ip community-list standard 1_233_239 permit 65000:1 0:233 0:239 ip community-list standard 1_234_238 permit 65000:1 0:234 0:238 ip community-list standard 1_235_237 permit 65000:1 0:235 0:237 ip community-list standard 1_236_236 permit 65000:1 0:236 0:236 route-map calculator permit 26013 match community 2_2_236 2_4_118 2_8_59 1_216_256 1_217_255 set community 0:472 route-map calculator permit 26014 match community 1_218_254 1_219_253 1_220_252 1_221_251 1_222_250 set community 0:472 route-map calculator permit 26015 match community 1_223_249 1_224_248 1_225_247 1_226_246 1_227_245 set community 0:472 route-map calculator permit 26016 match community 1_228_244 1_229_243 1_230_242 1_231_241 1_232_240 set community 0:472 route-map calculator permit 26017 match community 1_233_239 1_234_238 1_235_237 1_236_236 set community 0:472 ip community-list standard 2_221_246 permit 65000:2 0:221 0:246 route-map calculator permit 26018 match community 2_221_246 set community 0:54366 ip community-list standard 2_204_251 permit 65000:2 0:204 0:251 route-map calculator permit 26019 match community 2_204_251 set community 0:51204 ip community-list standard 2_166_182 permit 65000:2 0:166 0:182 route-map calculator permit 26020 match community 2_166_182 set community 0:30212 ip community-list standard 2_23_253 permit 65000:2 0:23 0:253 route-map calculator permit 26021 match community 2_23_253 set community 0:5819 ip community-list standard 2_145_232 permit 65000:2 0:145 0:232 route-map calculator permit 26022 match community 2_145_232 set community 0:33640 ip community-list standard 2_149_216 permit 65000:2 0:149 0:216 route-map calculator permit 26023 match community 2_149_216 set community 0:32184 ip community-list standard 2_57_239 permit 65000:2 0:57 0:239 route-map calculator permit 26024 match community 2_57_239 set community 0:13623 ip community-list standard 2_36_178 permit 65000:2 0:36 0:178 ip community-list standard 2_72_89 permit 65000:2 0:72 0:89 route-map calculator permit 26025 match community 2_36_178 2_72_89 set community 0:6408 ip community-list standard 2_201_201 permit 65000:2 0:201 0:201 route-map calculator permit 26026 match community 2_201_201 set community 0:40401 ip community-list standard 2_74_248 permit 65000:2 0:74 0:248 ip community-list standard 2_124_148 permit 65000:2 0:124 0:148 route-map calculator permit 26027 match community 2_74_248 2_124_148 set community 0:18352 ip community-list standard 2_55_187 permit 65000:2 0:55 0:187 ip community-list standard 2_85_121 permit 65000:2 0:85 0:121 route-map calculator permit 26028 match community 2_55_187 2_85_121 set community 0:10285 ip community-list standard 2_149_227 permit 65000:2 0:149 0:227 route-map calculator permit 26029 match community 2_149_227 set community 0:33823 ip community-list standard 2_208_243 permit 65000:2 0:208 0:243 ip community-list standard 2_216_234 permit 65000:2 0:216 0:234 route-map calculator permit 26030 match community 2_208_243 2_216_234 set community 0:50544 ip community-list standard 2_167_209 permit 65000:2 0:167 0:209 route-map calculator permit 26031 match community 2_167_209 set community 0:34903 ip community-list standard 2_19_256 permit 65000:2 0:19 0:256 ip community-list standard 2_32_152 permit 65000:2 0:32 0:152 ip community-list standard 2_38_128 permit 65000:2 0:38 0:128 ip community-list standard 2_64_76 permit 65000:2 0:64 0:76 route-map calculator permit 26032 match community 2_19_256 2_32_152 2_38_128 2_64_76 set community 0:4864 ip community-list standard 2_65_247 permit 65000:2 0:65 0:247 ip community-list standard 2_95_169 permit 65000:2 0:95 0:169 route-map calculator permit 26033 match community 2_65_247 2_95_169 set community 0:16055 ip community-list standard 2_140_185 permit 65000:2 0:140 0:185 ip community-list standard 2_148_175 permit 65000:2 0:148 0:175 route-map calculator permit 26034 match community 2_140_185 2_148_175 set community 0:25900 ip community-list standard 2_52_208 permit 65000:2 0:52 0:208 ip community-list standard 2_64_169 permit 65000:2 0:64 0:169 ip community-list standard 2_104_104 permit 65000:2 0:104 0:104 route-map calculator permit 26035 match community 2_52_208 2_64_169 2_104_104 set community 0:10816 ip community-list standard 2_173_247 permit 65000:2 0:173 0:247 route-map calculator permit 26036 match community 2_173_247 set community 0:42731 ip community-list standard 2_82_251 permit 65000:2 0:82 0:251 route-map calculator permit 26037 match community 2_82_251 set community 0:20582 ip community-list standard 2_89_173 permit 65000:2 0:89 0:173 route-map calculator permit 26038 match community 2_89_173 set community 0:15397 ip community-list standard 2_15_250 permit 65000:2 0:15 0:250 ip community-list standard 2_25_150 permit 65000:2 0:25 0:150 ip community-list standard 2_30_125 permit 65000:2 0:30 0:125 ip community-list standard 2_50_75 permit 65000:2 0:50 0:75 route-map calculator permit 26039 match community 2_15_250 2_25_150 2_30_125 2_50_75 set community 0:3750 ip community-list standard 2_37_43 permit 65000:2 0:37 0:43 route-map calculator permit 26040 match community 2_37_43 set community 0:1591 ip community-list standard 2_98_211 permit 65000:2 0:98 0:211 route-map calculator permit 26041 match community 2_98_211 set community 0:20678 ip community-list standard 2_114_193 permit 65000:2 0:114 0:193 route-map calculator permit 26042 match community 2_114_193 set community 0:22002 ip community-list standard 2_71_185 permit 65000:2 0:71 0:185 route-map calculator permit 26043 match community 2_71_185 set community 0:13135 ip community-list standard 2_68_142 permit 65000:2 0:68 0:142 ip community-list standard 2_71_136 permit 65000:2 0:71 0:136 route-map calculator permit 26044 match community 2_68_142 2_71_136 set community 0:9656 ip community-list standard 2_84_178 permit 65000:2 0:84 0:178 ip community-list standard 2_89_168 permit 65000:2 0:89 0:168 route-map calculator permit 26045 match community 2_84_178 2_89_168 set community 0:14952 ip community-list standard 2_26_134 permit 65000:2 0:26 0:134 ip community-list standard 2_52_67 permit 65000:2 0:52 0:67 route-map calculator permit 26046 match community 2_26_134 2_52_67 set community 0:3484 ip community-list standard 2_14_183 permit 65000:2 0:14 0:183 ip community-list standard 2_21_122 permit 65000:2 0:21 0:122 ip community-list standard 2_42_61 permit 65000:2 0:42 0:61 route-map calculator permit 26047 match community 2_14_183 2_21_122 2_42_61 set community 0:2562 ip community-list standard 2_139_181 permit 65000:2 0:139 0:181 route-map calculator permit 26048 match community 2_139_181 set community 0:25159 ip community-list standard 2_65_214 permit 65000:2 0:65 0:214 ip community-list standard 2_107_130 permit 65000:2 0:107 0:130 route-map calculator permit 26049 match community 2_65_214 2_107_130 set community 0:13910 ip community-list standard 2_211_214 permit 65000:2 0:211 0:214 route-map calculator permit 26050 match community 2_211_214 set community 0:45154 ip community-list standard 2_11_129 permit 65000:2 0:11 0:129 ip community-list standard 2_33_43 permit 65000:2 0:33 0:43 route-map calculator permit 26051 match community 2_11_129 2_33_43 set community 0:1419 ip community-list standard 2_77_254 permit 65000:2 0:77 0:254 ip community-list standard 2_127_154 permit 65000:2 0:127 0:154 route-map calculator permit 26052 match community 2_77_254 2_127_154 set community 0:19558 ip community-list standard 2_48_206 permit 65000:2 0:48 0:206 ip community-list standard 2_96_103 permit 65000:2 0:96 0:103 route-map calculator permit 26053 match community 2_48_206 2_96_103 set community 0:9888 ip community-list standard 2_150_212 permit 65000:2 0:150 0:212 ip community-list standard 2_159_200 permit 65000:2 0:159 0:200 route-map calculator permit 26054 match community 2_150_212 2_159_200 set community 0:31800 ip community-list standard 2_172_253 permit 65000:2 0:172 0:253 route-map calculator permit 26055 match community 2_172_253 set community 0:43516 ip community-list standard 2_23_31 permit 65000:2 0:23 0:31 route-map calculator permit 26056 match community 2_23_31 set community 0:713 ip community-list standard 2_159_217 permit 65000:2 0:159 0:217 route-map calculator permit 26057 match community 2_159_217 set community 0:34503 ip community-list standard 2_171_211 permit 65000:2 0:171 0:211 route-map calculator permit 26058 match community 2_171_211 set community 0:36081 ip community-list standard 2_103_248 permit 65000:2 0:103 0:248 ip community-list standard 2_124_206 permit 65000:2 0:124 0:206 route-map calculator permit 26059 match community 2_103_248 2_124_206 set community 0:25544 ip community-list standard 2_40_139 permit 65000:2 0:40 0:139 route-map calculator permit 26060 match community 2_40_139 set community 0:5560 ip community-list standard 2_25_227 permit 65000:2 0:25 0:227 route-map calculator permit 26061 match community 2_25_227 set community 0:5675 ip community-list standard 2_235_256 permit 65000:2 0:235 0:256 route-map calculator permit 26062 match community 2_235_256 set community 0:60160 ip community-list standard 2_5_55 permit 65000:2 0:5 0:55 ip community-list standard 2_11_25 permit 65000:2 0:11 0:25 ip community-list standard 1_19_256 permit 65000:1 0:19 0:256 ip community-list standard 1_20_255 permit 65000:1 0:20 0:255 ip community-list standard 1_21_254 permit 65000:1 0:21 0:254 ip community-list standard 1_22_253 permit 65000:1 0:22 0:253 ip community-list standard 1_23_252 permit 65000:1 0:23 0:252 ip community-list standard 1_24_251 permit 65000:1 0:24 0:251 ip community-list standard 1_25_250 permit 65000:1 0:25 0:250 ip community-list standard 1_26_249 permit 65000:1 0:26 0:249 ip community-list standard 1_27_248 permit 65000:1 0:27 0:248 ip community-list standard 1_28_247 permit 65000:1 0:28 0:247 ip community-list standard 1_29_246 permit 65000:1 0:29 0:246 ip community-list standard 1_30_245 permit 65000:1 0:30 0:245 ip community-list standard 1_31_244 permit 65000:1 0:31 0:244 ip community-list standard 1_32_243 permit 65000:1 0:32 0:243 ip community-list standard 1_33_242 permit 65000:1 0:33 0:242 ip community-list standard 1_34_241 permit 65000:1 0:34 0:241 ip community-list standard 1_35_240 permit 65000:1 0:35 0:240 ip community-list standard 1_36_239 permit 65000:1 0:36 0:239 ip community-list standard 1_37_238 permit 65000:1 0:37 0:238 ip community-list standard 1_38_237 permit 65000:1 0:38 0:237 ip community-list standard 1_39_236 permit 65000:1 0:39 0:236 ip community-list standard 1_40_235 permit 65000:1 0:40 0:235 ip community-list standard 1_41_234 permit 65000:1 0:41 0:234 ip community-list standard 1_42_233 permit 65000:1 0:42 0:233 ip community-list standard 1_43_232 permit 65000:1 0:43 0:232 ip community-list standard 1_44_231 permit 65000:1 0:44 0:231 ip community-list standard 1_45_230 permit 65000:1 0:45 0:230 ip community-list standard 1_46_229 permit 65000:1 0:46 0:229 ip community-list standard 1_47_228 permit 65000:1 0:47 0:228 ip community-list standard 1_48_227 permit 65000:1 0:48 0:227 ip community-list standard 1_49_226 permit 65000:1 0:49 0:226 ip community-list standard 1_50_225 permit 65000:1 0:50 0:225 ip community-list standard 1_51_224 permit 65000:1 0:51 0:224 ip community-list standard 1_52_223 permit 65000:1 0:52 0:223 ip community-list standard 1_53_222 permit 65000:1 0:53 0:222 ip community-list standard 1_54_221 permit 65000:1 0:54 0:221 ip community-list standard 1_55_220 permit 65000:1 0:55 0:220 ip community-list standard 1_56_219 permit 65000:1 0:56 0:219 ip community-list standard 1_57_218 permit 65000:1 0:57 0:218 ip community-list standard 1_58_217 permit 65000:1 0:58 0:217 ip community-list standard 1_59_216 permit 65000:1 0:59 0:216 ip community-list standard 1_60_215 permit 65000:1 0:60 0:215 ip community-list standard 1_61_214 permit 65000:1 0:61 0:214 ip community-list standard 1_62_213 permit 65000:1 0:62 0:213 ip community-list standard 1_63_212 permit 65000:1 0:63 0:212 ip community-list standard 1_64_211 permit 65000:1 0:64 0:211 ip community-list standard 1_65_210 permit 65000:1 0:65 0:210 ip community-list standard 1_66_209 permit 65000:1 0:66 0:209 ip community-list standard 1_67_208 permit 65000:1 0:67 0:208 ip community-list standard 1_68_207 permit 65000:1 0:68 0:207 ip community-list standard 1_69_206 permit 65000:1 0:69 0:206 ip community-list standard 1_70_205 permit 65000:1 0:70 0:205 ip community-list standard 1_71_204 permit 65000:1 0:71 0:204 ip community-list standard 1_72_203 permit 65000:1 0:72 0:203 ip community-list standard 1_73_202 permit 65000:1 0:73 0:202 ip community-list standard 1_74_201 permit 65000:1 0:74 0:201 ip community-list standard 1_75_200 permit 65000:1 0:75 0:200 ip community-list standard 1_76_199 permit 65000:1 0:76 0:199 ip community-list standard 1_77_198 permit 65000:1 0:77 0:198 ip community-list standard 1_78_197 permit 65000:1 0:78 0:197 ip community-list standard 1_79_196 permit 65000:1 0:79 0:196 ip community-list standard 1_80_195 permit 65000:1 0:80 0:195 ip community-list standard 1_81_194 permit 65000:1 0:81 0:194 ip community-list standard 1_82_193 permit 65000:1 0:82 0:193 ip community-list standard 1_83_192 permit 65000:1 0:83 0:192 ip community-list standard 1_84_191 permit 65000:1 0:84 0:191 ip community-list standard 1_85_190 permit 65000:1 0:85 0:190 ip community-list standard 1_86_189 permit 65000:1 0:86 0:189 ip community-list standard 1_87_188 permit 65000:1 0:87 0:188 ip community-list standard 1_88_187 permit 65000:1 0:88 0:187 ip community-list standard 1_89_186 permit 65000:1 0:89 0:186 ip community-list standard 1_90_185 permit 65000:1 0:90 0:185 ip community-list standard 1_91_184 permit 65000:1 0:91 0:184 ip community-list standard 1_92_183 permit 65000:1 0:92 0:183 ip community-list standard 1_93_182 permit 65000:1 0:93 0:182 ip community-list standard 1_94_181 permit 65000:1 0:94 0:181 ip community-list standard 1_95_180 permit 65000:1 0:95 0:180 ip community-list standard 1_96_179 permit 65000:1 0:96 0:179 ip community-list standard 1_97_178 permit 65000:1 0:97 0:178 ip community-list standard 1_98_177 permit 65000:1 0:98 0:177 ip community-list standard 1_99_176 permit 65000:1 0:99 0:176 ip community-list standard 1_100_175 permit 65000:1 0:100 0:175 ip community-list standard 1_101_174 permit 65000:1 0:101 0:174 ip community-list standard 1_102_173 permit 65000:1 0:102 0:173 ip community-list standard 1_103_172 permit 65000:1 0:103 0:172 ip community-list standard 1_104_171 permit 65000:1 0:104 0:171 ip community-list standard 1_105_170 permit 65000:1 0:105 0:170 ip community-list standard 1_106_169 permit 65000:1 0:106 0:169 ip community-list standard 1_107_168 permit 65000:1 0:107 0:168 ip community-list standard 1_108_167 permit 65000:1 0:108 0:167 ip community-list standard 1_109_166 permit 65000:1 0:109 0:166 ip community-list standard 1_110_165 permit 65000:1 0:110 0:165 ip community-list standard 1_111_164 permit 65000:1 0:111 0:164 ip community-list standard 1_112_163 permit 65000:1 0:112 0:163 ip community-list standard 1_113_162 permit 65000:1 0:113 0:162 ip community-list standard 1_114_161 permit 65000:1 0:114 0:161 ip community-list standard 1_115_160 permit 65000:1 0:115 0:160 ip community-list standard 1_116_159 permit 65000:1 0:116 0:159 ip community-list standard 1_117_158 permit 65000:1 0:117 0:158 ip community-list standard 1_118_157 permit 65000:1 0:118 0:157 ip community-list standard 1_119_156 permit 65000:1 0:119 0:156 ip community-list standard 1_120_155 permit 65000:1 0:120 0:155 ip community-list standard 1_121_154 permit 65000:1 0:121 0:154 ip community-list standard 1_122_153 permit 65000:1 0:122 0:153 ip community-list standard 1_123_152 permit 65000:1 0:123 0:152 ip community-list standard 1_124_151 permit 65000:1 0:124 0:151 ip community-list standard 1_125_150 permit 65000:1 0:125 0:150 ip community-list standard 1_126_149 permit 65000:1 0:126 0:149 ip community-list standard 1_127_148 permit 65000:1 0:127 0:148 ip community-list standard 1_128_147 permit 65000:1 0:128 0:147 ip community-list standard 1_129_146 permit 65000:1 0:129 0:146 ip community-list standard 1_130_145 permit 65000:1 0:130 0:145 ip community-list standard 1_131_144 permit 65000:1 0:131 0:144 ip community-list standard 1_132_143 permit 65000:1 0:132 0:143 ip community-list standard 1_133_142 permit 65000:1 0:133 0:142 ip community-list standard 1_134_141 permit 65000:1 0:134 0:141 ip community-list standard 1_135_140 permit 65000:1 0:135 0:140 ip community-list standard 1_136_139 permit 65000:1 0:136 0:139 ip community-list standard 1_137_138 permit 65000:1 0:137 0:138 route-map calculator permit 26063 match community 2_5_55 2_11_25 1_19_256 1_20_255 1_21_254 set community 0:275 route-map calculator permit 26064 match community 1_22_253 1_23_252 1_24_251 1_25_250 1_26_249 set community 0:275 route-map calculator permit 26065 match community 1_27_248 1_28_247 1_29_246 1_30_245 1_31_244 set community 0:275 route-map calculator permit 26066 match community 1_32_243 1_33_242 1_34_241 1_35_240 1_36_239 set community 0:275 route-map calculator permit 26067 match community 1_37_238 1_38_237 1_39_236 1_40_235 1_41_234 set community 0:275 route-map calculator permit 26068 match community 1_42_233 1_43_232 1_44_231 1_45_230 1_46_229 set community 0:275 route-map calculator permit 26069 match community 1_47_228 1_48_227 1_49_226 1_50_225 1_51_224 set community 0:275 route-map calculator permit 26070 match community 1_52_223 1_53_222 1_54_221 1_55_220 1_56_219 set community 0:275 route-map calculator permit 26071 match community 1_57_218 1_58_217 1_59_216 1_60_215 1_61_214 set community 0:275 route-map calculator permit 26072 match community 1_62_213 1_63_212 1_64_211 1_65_210 1_66_209 set community 0:275 route-map calculator permit 26073 match community 1_67_208 1_68_207 1_69_206 1_70_205 1_71_204 set community 0:275 route-map calculator permit 26074 match community 1_72_203 1_73_202 1_74_201 1_75_200 1_76_199 set community 0:275 route-map calculator permit 26075 match community 1_77_198 1_78_197 1_79_196 1_80_195 1_81_194 set community 0:275 route-map calculator permit 26076 match community 1_82_193 1_83_192 1_84_191 1_85_190 1_86_189 set community 0:275 route-map calculator permit 26077 match community 1_87_188 1_88_187 1_89_186 1_90_185 1_91_184 set community 0:275 route-map calculator permit 26078 match community 1_92_183 1_93_182 1_94_181 1_95_180 1_96_179 set community 0:275 route-map calculator permit 26079 match community 1_97_178 1_98_177 1_99_176 1_100_175 1_101_174 set community 0:275 route-map calculator permit 26080 match community 1_102_173 1_103_172 1_104_171 1_105_170 1_106_169 set community 0:275 route-map calculator permit 26081 match community 1_107_168 1_108_167 1_109_166 1_110_165 1_111_164 set community 0:275 route-map calculator permit 26082 match community 1_112_163 1_113_162 1_114_161 1_115_160 1_116_159 set community 0:275 route-map calculator permit 26083 match community 1_117_158 1_118_157 1_119_156 1_120_155 1_121_154 set community 0:275 route-map calculator permit 26084 match community 1_122_153 1_123_152 1_124_151 1_125_150 1_126_149 set community 0:275 route-map calculator permit 26085 match community 1_127_148 1_128_147 1_129_146 1_130_145 1_131_144 set community 0:275 route-map calculator permit 26086 match community 1_132_143 1_133_142 1_134_141 1_135_140 1_136_139 set community 0:275 route-map calculator permit 26087 match community 1_137_138 set community 0:275 ip community-list standard 2_183_225 permit 65000:2 0:183 0:225 route-map calculator permit 26088 match community 2_183_225 set community 0:41175 ip community-list standard 2_24_251 permit 65000:2 0:24 0:251 route-map calculator permit 26089 match community 2_24_251 set community 0:6024 ip community-list standard 2_39_219 permit 65000:2 0:39 0:219 ip community-list standard 2_73_117 permit 65000:2 0:73 0:117 route-map calculator permit 26090 match community 2_39_219 2_73_117 set community 0:8541 ip community-list standard 2_60_181 permit 65000:2 0:60 0:181 route-map calculator permit 26091 match community 2_60_181 set community 0:10860 ip community-list standard 2_3_91 permit 65000:2 0:3 0:91 ip community-list standard 2_7_39 permit 65000:2 0:7 0:39 ip community-list standard 2_13_21 permit 65000:2 0:13 0:21 ip community-list standard 1_17_256 permit 65000:1 0:17 0:256 ip community-list standard 1_18_255 permit 65000:1 0:18 0:255 ip community-list standard 1_19_254 permit 65000:1 0:19 0:254 ip community-list standard 1_20_253 permit 65000:1 0:20 0:253 ip community-list standard 1_21_252 permit 65000:1 0:21 0:252 ip community-list standard 1_22_251 permit 65000:1 0:22 0:251 ip community-list standard 1_23_250 permit 65000:1 0:23 0:250 ip community-list standard 1_24_249 permit 65000:1 0:24 0:249 ip community-list standard 1_25_248 permit 65000:1 0:25 0:248 ip community-list standard 1_26_247 permit 65000:1 0:26 0:247 ip community-list standard 1_27_246 permit 65000:1 0:27 0:246 ip community-list standard 1_28_245 permit 65000:1 0:28 0:245 ip community-list standard 1_29_244 permit 65000:1 0:29 0:244 ip community-list standard 1_30_243 permit 65000:1 0:30 0:243 ip community-list standard 1_31_242 permit 65000:1 0:31 0:242 ip community-list standard 1_32_241 permit 65000:1 0:32 0:241 ip community-list standard 1_33_240 permit 65000:1 0:33 0:240 ip community-list standard 1_34_239 permit 65000:1 0:34 0:239 ip community-list standard 1_35_238 permit 65000:1 0:35 0:238 ip community-list standard 1_36_237 permit 65000:1 0:36 0:237 ip community-list standard 1_37_236 permit 65000:1 0:37 0:236 ip community-list standard 1_38_235 permit 65000:1 0:38 0:235 ip community-list standard 1_39_234 permit 65000:1 0:39 0:234 ip community-list standard 1_40_233 permit 65000:1 0:40 0:233 ip community-list standard 1_41_232 permit 65000:1 0:41 0:232 ip community-list standard 1_42_231 permit 65000:1 0:42 0:231 ip community-list standard 1_43_230 permit 65000:1 0:43 0:230 ip community-list standard 1_44_229 permit 65000:1 0:44 0:229 ip community-list standard 1_45_228 permit 65000:1 0:45 0:228 ip community-list standard 1_46_227 permit 65000:1 0:46 0:227 ip community-list standard 1_47_226 permit 65000:1 0:47 0:226 ip community-list standard 1_48_225 permit 65000:1 0:48 0:225 ip community-list standard 1_49_224 permit 65000:1 0:49 0:224 ip community-list standard 1_50_223 permit 65000:1 0:50 0:223 ip community-list standard 1_51_222 permit 65000:1 0:51 0:222 ip community-list standard 1_52_221 permit 65000:1 0:52 0:221 ip community-list standard 1_53_220 permit 65000:1 0:53 0:220 ip community-list standard 1_54_219 permit 65000:1 0:54 0:219 ip community-list standard 1_55_218 permit 65000:1 0:55 0:218 ip community-list standard 1_56_217 permit 65000:1 0:56 0:217 ip community-list standard 1_57_216 permit 65000:1 0:57 0:216 ip community-list standard 1_58_215 permit 65000:1 0:58 0:215 ip community-list standard 1_59_214 permit 65000:1 0:59 0:214 ip community-list standard 1_60_213 permit 65000:1 0:60 0:213 ip community-list standard 1_61_212 permit 65000:1 0:61 0:212 ip community-list standard 1_62_211 permit 65000:1 0:62 0:211 ip community-list standard 1_63_210 permit 65000:1 0:63 0:210 ip community-list standard 1_64_209 permit 65000:1 0:64 0:209 ip community-list standard 1_65_208 permit 65000:1 0:65 0:208 ip community-list standard 1_66_207 permit 65000:1 0:66 0:207 ip community-list standard 1_67_206 permit 65000:1 0:67 0:206 ip community-list standard 1_68_205 permit 65000:1 0:68 0:205 ip community-list standard 1_69_204 permit 65000:1 0:69 0:204 ip community-list standard 1_70_203 permit 65000:1 0:70 0:203 ip community-list standard 1_71_202 permit 65000:1 0:71 0:202 ip community-list standard 1_72_201 permit 65000:1 0:72 0:201 ip community-list standard 1_73_200 permit 65000:1 0:73 0:200 ip community-list standard 1_74_199 permit 65000:1 0:74 0:199 ip community-list standard 1_75_198 permit 65000:1 0:75 0:198 ip community-list standard 1_76_197 permit 65000:1 0:76 0:197 ip community-list standard 1_77_196 permit 65000:1 0:77 0:196 ip community-list standard 1_78_195 permit 65000:1 0:78 0:195 ip community-list standard 1_79_194 permit 65000:1 0:79 0:194 ip community-list standard 1_80_193 permit 65000:1 0:80 0:193 ip community-list standard 1_81_192 permit 65000:1 0:81 0:192 ip community-list standard 1_82_191 permit 65000:1 0:82 0:191 ip community-list standard 1_83_190 permit 65000:1 0:83 0:190 ip community-list standard 1_84_189 permit 65000:1 0:84 0:189 ip community-list standard 1_85_188 permit 65000:1 0:85 0:188 ip community-list standard 1_86_187 permit 65000:1 0:86 0:187 ip community-list standard 1_87_186 permit 65000:1 0:87 0:186 ip community-list standard 1_88_185 permit 65000:1 0:88 0:185 ip community-list standard 1_89_184 permit 65000:1 0:89 0:184 ip community-list standard 1_90_183 permit 65000:1 0:90 0:183 ip community-list standard 1_91_182 permit 65000:1 0:91 0:182 ip community-list standard 1_92_181 permit 65000:1 0:92 0:181 ip community-list standard 1_93_180 permit 65000:1 0:93 0:180 ip community-list standard 1_94_179 permit 65000:1 0:94 0:179 ip community-list standard 1_95_178 permit 65000:1 0:95 0:178 ip community-list standard 1_96_177 permit 65000:1 0:96 0:177 ip community-list standard 1_97_176 permit 65000:1 0:97 0:176 ip community-list standard 1_98_175 permit 65000:1 0:98 0:175 ip community-list standard 1_99_174 permit 65000:1 0:99 0:174 ip community-list standard 1_100_173 permit 65000:1 0:100 0:173 ip community-list standard 1_101_172 permit 65000:1 0:101 0:172 ip community-list standard 1_102_171 permit 65000:1 0:102 0:171 ip community-list standard 1_103_170 permit 65000:1 0:103 0:170 ip community-list standard 1_104_169 permit 65000:1 0:104 0:169 ip community-list standard 1_105_168 permit 65000:1 0:105 0:168 ip community-list standard 1_106_167 permit 65000:1 0:106 0:167 ip community-list standard 1_107_166 permit 65000:1 0:107 0:166 ip community-list standard 1_108_165 permit 65000:1 0:108 0:165 ip community-list standard 1_109_164 permit 65000:1 0:109 0:164 ip community-list standard 1_110_163 permit 65000:1 0:110 0:163 ip community-list standard 1_111_162 permit 65000:1 0:111 0:162 ip community-list standard 1_112_161 permit 65000:1 0:112 0:161 ip community-list standard 1_113_160 permit 65000:1 0:113 0:160 ip community-list standard 1_114_159 permit 65000:1 0:114 0:159 ip community-list standard 1_115_158 permit 65000:1 0:115 0:158 ip community-list standard 1_116_157 permit 65000:1 0:116 0:157 ip community-list standard 1_117_156 permit 65000:1 0:117 0:156 ip community-list standard 1_118_155 permit 65000:1 0:118 0:155 ip community-list standard 1_119_154 permit 65000:1 0:119 0:154 ip community-list standard 1_120_153 permit 65000:1 0:120 0:153 ip community-list standard 1_121_152 permit 65000:1 0:121 0:152 ip community-list standard 1_122_151 permit 65000:1 0:122 0:151 ip community-list standard 1_123_150 permit 65000:1 0:123 0:150 ip community-list standard 1_124_149 permit 65000:1 0:124 0:149 ip community-list standard 1_125_148 permit 65000:1 0:125 0:148 ip community-list standard 1_126_147 permit 65000:1 0:126 0:147 ip community-list standard 1_127_146 permit 65000:1 0:127 0:146 ip community-list standard 1_128_145 permit 65000:1 0:128 0:145 ip community-list standard 1_129_144 permit 65000:1 0:129 0:144 ip community-list standard 1_130_143 permit 65000:1 0:130 0:143 ip community-list standard 1_131_142 permit 65000:1 0:131 0:142 ip community-list standard 1_132_141 permit 65000:1 0:132 0:141 ip community-list standard 1_133_140 permit 65000:1 0:133 0:140 ip community-list standard 1_134_139 permit 65000:1 0:134 0:139 ip community-list standard 1_135_138 permit 65000:1 0:135 0:138 ip community-list standard 1_136_137 permit 65000:1 0:136 0:137 route-map calculator permit 26092 match community 2_3_91 2_7_39 2_13_21 1_17_256 1_18_255 set community 0:273 route-map calculator permit 26093 match community 1_19_254 1_20_253 1_21_252 1_22_251 1_23_250 set community 0:273 route-map calculator permit 26094 match community 1_24_249 1_25_248 1_26_247 1_27_246 1_28_245 set community 0:273 route-map calculator permit 26095 match community 1_29_244 1_30_243 1_31_242 1_32_241 1_33_240 set community 0:273 route-map calculator permit 26096 match community 1_34_239 1_35_238 1_36_237 1_37_236 1_38_235 set community 0:273 route-map calculator permit 26097 match community 1_39_234 1_40_233 1_41_232 1_42_231 1_43_230 set community 0:273 route-map calculator permit 26098 match community 1_44_229 1_45_228 1_46_227 1_47_226 1_48_225 set community 0:273 route-map calculator permit 26099 match community 1_49_224 1_50_223 1_51_222 1_52_221 1_53_220 set community 0:273 route-map calculator permit 26100 match community 1_54_219 1_55_218 1_56_217 1_57_216 1_58_215 set community 0:273 route-map calculator permit 26101 match community 1_59_214 1_60_213 1_61_212 1_62_211 1_63_210 set community 0:273 route-map calculator permit 26102 match community 1_64_209 1_65_208 1_66_207 1_67_206 1_68_205 set community 0:273 route-map calculator permit 26103 match community 1_69_204 1_70_203 1_71_202 1_72_201 1_73_200 set community 0:273 route-map calculator permit 26104 match community 1_74_199 1_75_198 1_76_197 1_77_196 1_78_195 set community 0:273 route-map calculator permit 26105 match community 1_79_194 1_80_193 1_81_192 1_82_191 1_83_190 set community 0:273 route-map calculator permit 26106 match community 1_84_189 1_85_188 1_86_187 1_87_186 1_88_185 set community 0:273 route-map calculator permit 26107 match community 1_89_184 1_90_183 1_91_182 1_92_181 1_93_180 set community 0:273 route-map calculator permit 26108 match community 1_94_179 1_95_178 1_96_177 1_97_176 1_98_175 set community 0:273 route-map calculator permit 26109 match community 1_99_174 1_100_173 1_101_172 1_102_171 1_103_170 set community 0:273 route-map calculator permit 26110 match community 1_104_169 1_105_168 1_106_167 1_107_166 1_108_165 set community 0:273 route-map calculator permit 26111 match community 1_109_164 1_110_163 1_111_162 1_112_161 1_113_160 set community 0:273 route-map calculator permit 26112 match community 1_114_159 1_115_158 1_116_157 1_117_156 1_118_155 set community 0:273 route-map calculator permit 26113 match community 1_119_154 1_120_153 1_121_152 1_122_151 1_123_150 set community 0:273 route-map calculator permit 26114 match community 1_124_149 1_125_148 1_126_147 1_127_146 1_128_145 set community 0:273 route-map calculator permit 26115 match community 1_129_144 1_130_143 1_131_142 1_132_141 1_133_140 set community 0:273 route-map calculator permit 26116 match community 1_134_139 1_135_138 1_136_137 set community 0:273 ip community-list standard 2_50_157 permit 65000:2 0:50 0:157 route-map calculator permit 26117 match community 2_50_157 set community 0:7850 ip community-list standard 2_79_160 permit 65000:2 0:79 0:160 ip community-list standard 2_80_158 permit 65000:2 0:80 0:158 route-map calculator permit 26118 match community 2_79_160 2_80_158 set community 0:12640 ip community-list standard 2_82_233 permit 65000:2 0:82 0:233 route-map calculator permit 26119 match community 2_82_233 set community 0:19106 ip community-list standard 2_28_233 permit 65000:2 0:28 0:233 route-map calculator permit 26120 match community 2_28_233 set community 0:6524 ip community-list standard 2_208_215 permit 65000:2 0:208 0:215 route-map calculator permit 26121 match community 2_208_215 set community 0:44720 ip community-list standard 2_65_212 permit 65000:2 0:65 0:212 ip community-list standard 2_106_130 permit 65000:2 0:106 0:130 route-map calculator permit 26122 match community 2_65_212 2_106_130 set community 0:13780 ip community-list standard 2_2_142 permit 65000:2 0:2 0:142 ip community-list standard 2_4_71 permit 65000:2 0:4 0:71 ip community-list standard 1_28_256 permit 65000:1 0:28 0:256 ip community-list standard 1_29_255 permit 65000:1 0:29 0:255 ip community-list standard 1_30_254 permit 65000:1 0:30 0:254 ip community-list standard 1_31_253 permit 65000:1 0:31 0:253 ip community-list standard 1_32_252 permit 65000:1 0:32 0:252 ip community-list standard 1_33_251 permit 65000:1 0:33 0:251 ip community-list standard 1_34_250 permit 65000:1 0:34 0:250 ip community-list standard 1_35_249 permit 65000:1 0:35 0:249 ip community-list standard 1_36_248 permit 65000:1 0:36 0:248 ip community-list standard 1_37_247 permit 65000:1 0:37 0:247 ip community-list standard 1_38_246 permit 65000:1 0:38 0:246 ip community-list standard 1_39_245 permit 65000:1 0:39 0:245 ip community-list standard 1_40_244 permit 65000:1 0:40 0:244 ip community-list standard 1_41_243 permit 65000:1 0:41 0:243 ip community-list standard 1_42_242 permit 65000:1 0:42 0:242 ip community-list standard 1_43_241 permit 65000:1 0:43 0:241 ip community-list standard 1_44_240 permit 65000:1 0:44 0:240 ip community-list standard 1_45_239 permit 65000:1 0:45 0:239 ip community-list standard 1_46_238 permit 65000:1 0:46 0:238 ip community-list standard 1_47_237 permit 65000:1 0:47 0:237 ip community-list standard 1_48_236 permit 65000:1 0:48 0:236 ip community-list standard 1_49_235 permit 65000:1 0:49 0:235 ip community-list standard 1_50_234 permit 65000:1 0:50 0:234 ip community-list standard 1_51_233 permit 65000:1 0:51 0:233 ip community-list standard 1_52_232 permit 65000:1 0:52 0:232 ip community-list standard 1_53_231 permit 65000:1 0:53 0:231 ip community-list standard 1_54_230 permit 65000:1 0:54 0:230 ip community-list standard 1_55_229 permit 65000:1 0:55 0:229 ip community-list standard 1_56_228 permit 65000:1 0:56 0:228 ip community-list standard 1_57_227 permit 65000:1 0:57 0:227 ip community-list standard 1_58_226 permit 65000:1 0:58 0:226 ip community-list standard 1_59_225 permit 65000:1 0:59 0:225 ip community-list standard 1_60_224 permit 65000:1 0:60 0:224 ip community-list standard 1_61_223 permit 65000:1 0:61 0:223 ip community-list standard 1_62_222 permit 65000:1 0:62 0:222 ip community-list standard 1_63_221 permit 65000:1 0:63 0:221 ip community-list standard 1_64_220 permit 65000:1 0:64 0:220 ip community-list standard 1_65_219 permit 65000:1 0:65 0:219 ip community-list standard 1_66_218 permit 65000:1 0:66 0:218 ip community-list standard 1_67_217 permit 65000:1 0:67 0:217 ip community-list standard 1_68_216 permit 65000:1 0:68 0:216 ip community-list standard 1_69_215 permit 65000:1 0:69 0:215 ip community-list standard 1_70_214 permit 65000:1 0:70 0:214 ip community-list standard 1_71_213 permit 65000:1 0:71 0:213 ip community-list standard 1_72_212 permit 65000:1 0:72 0:212 ip community-list standard 1_73_211 permit 65000:1 0:73 0:211 ip community-list standard 1_74_210 permit 65000:1 0:74 0:210 ip community-list standard 1_75_209 permit 65000:1 0:75 0:209 ip community-list standard 1_76_208 permit 65000:1 0:76 0:208 ip community-list standard 1_77_207 permit 65000:1 0:77 0:207 ip community-list standard 1_78_206 permit 65000:1 0:78 0:206 ip community-list standard 1_79_205 permit 65000:1 0:79 0:205 ip community-list standard 1_80_204 permit 65000:1 0:80 0:204 ip community-list standard 1_81_203 permit 65000:1 0:81 0:203 ip community-list standard 1_82_202 permit 65000:1 0:82 0:202 ip community-list standard 1_83_201 permit 65000:1 0:83 0:201 ip community-list standard 1_84_200 permit 65000:1 0:84 0:200 ip community-list standard 1_85_199 permit 65000:1 0:85 0:199 ip community-list standard 1_86_198 permit 65000:1 0:86 0:198 ip community-list standard 1_87_197 permit 65000:1 0:87 0:197 ip community-list standard 1_88_196 permit 65000:1 0:88 0:196 ip community-list standard 1_89_195 permit 65000:1 0:89 0:195 ip community-list standard 1_90_194 permit 65000:1 0:90 0:194 ip community-list standard 1_91_193 permit 65000:1 0:91 0:193 ip community-list standard 1_92_192 permit 65000:1 0:92 0:192 ip community-list standard 1_93_191 permit 65000:1 0:93 0:191 ip community-list standard 1_94_190 permit 65000:1 0:94 0:190 ip community-list standard 1_95_189 permit 65000:1 0:95 0:189 ip community-list standard 1_96_188 permit 65000:1 0:96 0:188 ip community-list standard 1_97_187 permit 65000:1 0:97 0:187 ip community-list standard 1_98_186 permit 65000:1 0:98 0:186 ip community-list standard 1_99_185 permit 65000:1 0:99 0:185 ip community-list standard 1_100_184 permit 65000:1 0:100 0:184 ip community-list standard 1_101_183 permit 65000:1 0:101 0:183 ip community-list standard 1_102_182 permit 65000:1 0:102 0:182 ip community-list standard 1_103_181 permit 65000:1 0:103 0:181 ip community-list standard 1_104_180 permit 65000:1 0:104 0:180 ip community-list standard 1_105_179 permit 65000:1 0:105 0:179 ip community-list standard 1_106_178 permit 65000:1 0:106 0:178 ip community-list standard 1_107_177 permit 65000:1 0:107 0:177 ip community-list standard 1_108_176 permit 65000:1 0:108 0:176 ip community-list standard 1_109_175 permit 65000:1 0:109 0:175 ip community-list standard 1_110_174 permit 65000:1 0:110 0:174 ip community-list standard 1_111_173 permit 65000:1 0:111 0:173 ip community-list standard 1_112_172 permit 65000:1 0:112 0:172 ip community-list standard 1_113_171 permit 65000:1 0:113 0:171 ip community-list standard 1_114_170 permit 65000:1 0:114 0:170 ip community-list standard 1_115_169 permit 65000:1 0:115 0:169 ip community-list standard 1_116_168 permit 65000:1 0:116 0:168 ip community-list standard 1_117_167 permit 65000:1 0:117 0:167 ip community-list standard 1_118_166 permit 65000:1 0:118 0:166 ip community-list standard 1_119_165 permit 65000:1 0:119 0:165 ip community-list standard 1_120_164 permit 65000:1 0:120 0:164 ip community-list standard 1_121_163 permit 65000:1 0:121 0:163 ip community-list standard 1_122_162 permit 65000:1 0:122 0:162 ip community-list standard 1_123_161 permit 65000:1 0:123 0:161 ip community-list standard 1_124_160 permit 65000:1 0:124 0:160 ip community-list standard 1_125_159 permit 65000:1 0:125 0:159 ip community-list standard 1_126_158 permit 65000:1 0:126 0:158 ip community-list standard 1_127_157 permit 65000:1 0:127 0:157 ip community-list standard 1_128_156 permit 65000:1 0:128 0:156 ip community-list standard 1_129_155 permit 65000:1 0:129 0:155 ip community-list standard 1_130_154 permit 65000:1 0:130 0:154 ip community-list standard 1_131_153 permit 65000:1 0:131 0:153 ip community-list standard 1_132_152 permit 65000:1 0:132 0:152 ip community-list standard 1_133_151 permit 65000:1 0:133 0:151 ip community-list standard 1_134_150 permit 65000:1 0:134 0:150 ip community-list standard 1_135_149 permit 65000:1 0:135 0:149 ip community-list standard 1_136_148 permit 65000:1 0:136 0:148 ip community-list standard 1_137_147 permit 65000:1 0:137 0:147 ip community-list standard 1_138_146 permit 65000:1 0:138 0:146 ip community-list standard 1_139_145 permit 65000:1 0:139 0:145 ip community-list standard 1_140_144 permit 65000:1 0:140 0:144 ip community-list standard 1_141_143 permit 65000:1 0:141 0:143 ip community-list standard 1_142_142 permit 65000:1 0:142 0:142 route-map calculator permit 26123 match community 2_2_142 2_4_71 1_28_256 1_29_255 1_30_254 set community 0:284 route-map calculator permit 26124 match community 1_31_253 1_32_252 1_33_251 1_34_250 1_35_249 set community 0:284 route-map calculator permit 26125 match community 1_36_248 1_37_247 1_38_246 1_39_245 1_40_244 set community 0:284 route-map calculator permit 26126 match community 1_41_243 1_42_242 1_43_241 1_44_240 1_45_239 set community 0:284 route-map calculator permit 26127 match community 1_46_238 1_47_237 1_48_236 1_49_235 1_50_234 set community 0:284 route-map calculator permit 26128 match community 1_51_233 1_52_232 1_53_231 1_54_230 1_55_229 set community 0:284 route-map calculator permit 26129 match community 1_56_228 1_57_227 1_58_226 1_59_225 1_60_224 set community 0:284 route-map calculator permit 26130 match community 1_61_223 1_62_222 1_63_221 1_64_220 1_65_219 set community 0:284 route-map calculator permit 26131 match community 1_66_218 1_67_217 1_68_216 1_69_215 1_70_214 set community 0:284 route-map calculator permit 26132 match community 1_71_213 1_72_212 1_73_211 1_74_210 1_75_209 set community 0:284 route-map calculator permit 26133 match community 1_76_208 1_77_207 1_78_206 1_79_205 1_80_204 set community 0:284 route-map calculator permit 26134 match community 1_81_203 1_82_202 1_83_201 1_84_200 1_85_199 set community 0:284 route-map calculator permit 26135 match community 1_86_198 1_87_197 1_88_196 1_89_195 1_90_194 set community 0:284 route-map calculator permit 26136 match community 1_91_193 1_92_192 1_93_191 1_94_190 1_95_189 set community 0:284 route-map calculator permit 26137 match community 1_96_188 1_97_187 1_98_186 1_99_185 1_100_184 set community 0:284 route-map calculator permit 26138 match community 1_101_183 1_102_182 1_103_181 1_104_180 1_105_179 set community 0:284 route-map calculator permit 26139 match community 1_106_178 1_107_177 1_108_176 1_109_175 1_110_174 set community 0:284 route-map calculator permit 26140 match community 1_111_173 1_112_172 1_113_171 1_114_170 1_115_169 set community 0:284 route-map calculator permit 26141 match community 1_116_168 1_117_167 1_118_166 1_119_165 1_120_164 set community 0:284 route-map calculator permit 26142 match community 1_121_163 1_122_162 1_123_161 1_124_160 1_125_159 set community 0:284 route-map calculator permit 26143 match community 1_126_158 1_127_157 1_128_156 1_129_155 1_130_154 set community 0:284 route-map calculator permit 26144 match community 1_131_153 1_132_152 1_133_151 1_134_150 1_135_149 set community 0:284 route-map calculator permit 26145 match community 1_136_148 1_137_147 1_138_146 1_139_145 1_140_144 set community 0:284 route-map calculator permit 26146 match community 1_141_143 1_142_142 set community 0:284 ip community-list standard 2_6_131 permit 65000:2 0:6 0:131 route-map calculator permit 26147 match community 2_6_131 set community 0:786 ip community-list standard 2_35_178 permit 65000:2 0:35 0:178 ip community-list standard 2_70_89 permit 65000:2 0:70 0:89 route-map calculator permit 26148 match community 2_35_178 2_70_89 set community 0:6230 ip community-list standard 2_133_183 permit 65000:2 0:133 0:183 route-map calculator permit 26149 match community 2_133_183 set community 0:24339 ip community-list standard 2_3_225 permit 65000:2 0:3 0:225 ip community-list standard 2_5_135 permit 65000:2 0:5 0:135 ip community-list standard 2_9_75 permit 65000:2 0:9 0:75 ip community-list standard 2_15_45 permit 65000:2 0:15 0:45 ip community-list standard 2_25_27 permit 65000:2 0:25 0:27 route-map calculator permit 26150 match community 2_3_225 2_5_135 2_9_75 2_15_45 2_25_27 set community 0:675 ip community-list standard 2_144_181 permit 65000:2 0:144 0:181 route-map calculator permit 26151 match community 2_144_181 set community 0:26064 ip community-list standard 2_75_254 permit 65000:2 0:75 0:254 ip community-list standard 2_127_150 permit 65000:2 0:127 0:150 route-map calculator permit 26152 match community 2_75_254 2_127_150 set community 0:19050 ip community-list standard 2_11_185 permit 65000:2 0:11 0:185 ip community-list standard 2_37_55 permit 65000:2 0:37 0:55 route-map calculator permit 26153 match community 2_11_185 2_37_55 set community 0:2035 ip community-list standard 2_3_223 permit 65000:2 0:3 0:223 route-map calculator permit 26154 match community 2_3_223 set community 0:669 ip community-list standard 2_175_250 permit 65000:2 0:175 0:250 route-map calculator permit 26155 match community 2_175_250 set community 0:43750 ip community-list standard 2_57_217 permit 65000:2 0:57 0:217 ip community-list standard 2_93_133 permit 65000:2 0:93 0:133 route-map calculator permit 26156 match community 2_57_217 2_93_133 set community 0:12369 ip community-list standard 2_70_173 permit 65000:2 0:70 0:173 route-map calculator permit 26157 match community 2_70_173 set community 0:12110 ip community-list standard 2_44_250 permit 65000:2 0:44 0:250 ip community-list standard 2_50_220 permit 65000:2 0:50 0:220 ip community-list standard 2_55_200 permit 65000:2 0:55 0:200 ip community-list standard 2_88_125 permit 65000:2 0:88 0:125 ip community-list standard 2_100_110 permit 65000:2 0:100 0:110 route-map calculator permit 26158 match community 2_44_250 2_50_220 2_55_200 2_88_125 2_100_110 set community 0:11000 ip community-list standard 2_171_231 permit 65000:2 0:171 0:231 ip community-list standard 2_189_209 permit 65000:2 0:189 0:209 route-map calculator permit 26159 match community 2_171_231 2_189_209 set community 0:39501 ip community-list standard 2_72_234 permit 65000:2 0:72 0:234 ip community-list standard 2_78_216 permit 65000:2 0:78 0:216 ip community-list standard 2_81_208 permit 65000:2 0:81 0:208 ip community-list standard 2_104_162 permit 65000:2 0:104 0:162 ip community-list standard 2_108_156 permit 65000:2 0:108 0:156 ip community-list standard 2_117_144 permit 65000:2 0:117 0:144 route-map calculator permit 26160 match community 2_72_234 2_78_216 2_81_208 2_104_162 2_108_156 set community 0:16848 route-map calculator permit 26161 match community 2_117_144 set community 0:16848 ip community-list standard 2_19_209 permit 65000:2 0:19 0:209 route-map calculator permit 26162 match community 2_19_209 set community 0:3971 ip community-list standard 2_31_245 permit 65000:2 0:31 0:245 ip community-list standard 2_35_217 permit 65000:2 0:35 0:217 ip community-list standard 2_49_155 permit 65000:2 0:49 0:155 route-map calculator permit 26163 match community 2_31_245 2_35_217 2_49_155 set community 0:7595 ip community-list standard 2_22_236 permit 65000:2 0:22 0:236 ip community-list standard 2_44_118 permit 65000:2 0:44 0:118 ip community-list standard 2_59_88 permit 65000:2 0:59 0:88 route-map calculator permit 26164 match community 2_22_236 2_44_118 2_59_88 set community 0:5192 ip community-list standard 2_144_249 permit 65000:2 0:144 0:249 ip community-list standard 2_166_216 permit 65000:2 0:166 0:216 route-map calculator permit 26165 match community 2_144_249 2_166_216 set community 0:35856 ip community-list standard 2_90_201 permit 65000:2 0:90 0:201 ip community-list standard 2_134_135 permit 65000:2 0:134 0:135 route-map calculator permit 26166 match community 2_90_201 2_134_135 set community 0:18090 ip community-list standard 2_175_187 permit 65000:2 0:175 0:187 route-map calculator permit 26167 match community 2_175_187 set community 0:32725 ip community-list standard 2_85_175 permit 65000:2 0:85 0:175 ip community-list standard 2_119_125 permit 65000:2 0:119 0:125 route-map calculator permit 26168 match community 2_85_175 2_119_125 set community 0:14875 ip community-list standard 2_77_244 permit 65000:2 0:77 0:244 ip community-list standard 2_122_154 permit 65000:2 0:122 0:154 route-map calculator permit 26169 match community 2_77_244 2_122_154 set community 0:18788 ip community-list standard 2_116_237 permit 65000:2 0:116 0:237 ip community-list standard 2_158_174 permit 65000:2 0:158 0:174 route-map calculator permit 26170 match community 2_116_237 2_158_174 set community 0:27492 ip community-list standard 2_18_172 permit 65000:2 0:18 0:172 ip community-list standard 2_24_129 permit 65000:2 0:24 0:129 ip community-list standard 2_36_86 permit 65000:2 0:36 0:86 ip community-list standard 2_43_72 permit 65000:2 0:43 0:72 route-map calculator permit 26171 match community 2_18_172 2_24_129 2_36_86 2_43_72 set community 0:3096 ip community-list standard 2_25_214 permit 65000:2 0:25 0:214 ip community-list standard 2_50_107 permit 65000:2 0:50 0:107 route-map calculator permit 26172 match community 2_25_214 2_50_107 set community 0:5350 ip community-list standard 2_82_194 permit 65000:2 0:82 0:194 ip community-list standard 2_97_164 permit 65000:2 0:97 0:164 route-map calculator permit 26173 match community 2_82_194 2_97_164 set community 0:15908 ip community-list standard 2_183_235 permit 65000:2 0:183 0:235 route-map calculator permit 26174 match community 2_183_235 set community 0:43005 ip community-list standard 2_91_251 permit 65000:2 0:91 0:251 route-map calculator permit 26175 match community 2_91_251 set community 0:22841 ip community-list standard 2_28_220 permit 65000:2 0:28 0:220 ip community-list standard 2_35_176 permit 65000:2 0:35 0:176 ip community-list standard 2_40_154 permit 65000:2 0:40 0:154 ip community-list standard 2_44_140 permit 65000:2 0:44 0:140 ip community-list standard 2_55_112 permit 65000:2 0:55 0:112 ip community-list standard 2_56_110 permit 65000:2 0:56 0:110 ip community-list standard 2_70_88 permit 65000:2 0:70 0:88 ip community-list standard 2_77_80 permit 65000:2 0:77 0:80 route-map calculator permit 26176 match community 2_28_220 2_35_176 2_40_154 2_44_140 2_55_112 set community 0:6160 route-map calculator permit 26177 match community 2_56_110 2_70_88 2_77_80 set community 0:6160 ip community-list standard 2_45_211 permit 65000:2 0:45 0:211 route-map calculator permit 26178 match community 2_45_211 set community 0:9495 ip community-list standard 2_26_202 permit 65000:2 0:26 0:202 ip community-list standard 2_52_101 permit 65000:2 0:52 0:101 route-map calculator permit 26179 match community 2_26_202 2_52_101 set community 0:5252 ip community-list standard 2_49_211 permit 65000:2 0:49 0:211 route-map calculator permit 26180 match community 2_49_211 set community 0:10339 ip community-list standard 2_31_172 permit 65000:2 0:31 0:172 ip community-list standard 2_43_124 permit 65000:2 0:43 0:124 ip community-list standard 2_62_86 permit 65000:2 0:62 0:86 route-map calculator permit 26181 match community 2_31_172 2_43_124 2_62_86 set community 0:5332 ip community-list standard 2_68_226 permit 65000:2 0:68 0:226 ip community-list standard 2_113_136 permit 65000:2 0:113 0:136 route-map calculator permit 26182 match community 2_68_226 2_113_136 set community 0:15368 ip community-list standard 2_23_67 permit 65000:2 0:23 0:67 route-map calculator permit 26183 match community 2_23_67 set community 0:1541 ip community-list standard 2_89_139 permit 65000:2 0:89 0:139 route-map calculator permit 26184 match community 2_89_139 set community 0:12371 ip community-list standard 2_55_107 permit 65000:2 0:55 0:107 route-map calculator permit 26185 match community 2_55_107 set community 0:5885 ip community-list standard 2_53_155 permit 65000:2 0:53 0:155 route-map calculator permit 26186 match community 2_53_155 set community 0:8215 ip community-list standard 2_76_206 permit 65000:2 0:76 0:206 ip community-list standard 2_103_152 permit 65000:2 0:103 0:152 route-map calculator permit 26187 match community 2_76_206 2_103_152 set community 0:15656 ip community-list standard 2_220_236 permit 65000:2 0:220 0:236 route-map calculator permit 26188 match community 2_220_236 set community 0:51920 ip community-list standard 2_75_226 permit 65000:2 0:75 0:226 ip community-list standard 2_113_150 permit 65000:2 0:113 0:150 route-map calculator permit 26189 match community 2_75_226 2_113_150 set community 0:16950 ip community-list standard 2_237_253 permit 65000:2 0:237 0:253 route-map calculator permit 26190 match community 2_237_253 set community 0:59961 ip community-list standard 2_71_222 permit 65000:2 0:71 0:222 ip community-list standard 2_74_213 permit 65000:2 0:74 0:213 ip community-list standard 2_111_142 permit 65000:2 0:111 0:142 route-map calculator permit 26191 match community 2_71_222 2_74_213 2_111_142 set community 0:15762 ip community-list standard 2_166_226 permit 65000:2 0:166 0:226 route-map calculator permit 26192 match community 2_166_226 set community 0:37516 ip community-list standard 2_16_227 permit 65000:2 0:16 0:227 route-map calculator permit 26193 match community 2_16_227 set community 0:3632 ip community-list standard 2_23_177 permit 65000:2 0:23 0:177 ip community-list standard 2_59_69 permit 65000:2 0:59 0:69 route-map calculator permit 26194 match community 2_23_177 2_59_69 set community 0:4071 ip community-list standard 2_169_218 permit 65000:2 0:169 0:218 route-map calculator permit 26195 match community 2_169_218 set community 0:36842 ip community-list standard 2_59_221 permit 65000:2 0:59 0:221 route-map calculator permit 26196 match community 2_59_221 set community 0:13039 ip community-list standard 2_83_181 permit 65000:2 0:83 0:181 route-map calculator permit 26197 match community 2_83_181 set community 0:15023 ip community-list standard 2_5_159 permit 65000:2 0:5 0:159 ip community-list standard 2_15_53 permit 65000:2 0:15 0:53 route-map calculator permit 26198 match community 2_5_159 2_15_53 set community 0:795 ip community-list standard 2_161_167 permit 65000:2 0:161 0:167 route-map calculator permit 26199 match community 2_161_167 set community 0:26887 ip community-list standard 2_217_219 permit 65000:2 0:217 0:219 route-map calculator permit 26200 match community 2_217_219 set community 0:47523 ip community-list standard 2_25_106 permit 65000:2 0:25 0:106 ip community-list standard 2_50_53 permit 65000:2 0:50 0:53 route-map calculator permit 26201 match community 2_25_106 2_50_53 set community 0:2650 ip community-list standard 2_26_163 permit 65000:2 0:26 0:163 route-map calculator permit 26202 match community 2_26_163 set community 0:4238 ip community-list standard 2_172_230 permit 65000:2 0:172 0:230 ip community-list standard 2_184_215 permit 65000:2 0:184 0:215 route-map calculator permit 26203 match community 2_172_230 2_184_215 set community 0:39560 ip community-list standard 2_185_225 permit 65000:2 0:185 0:225 route-map calculator permit 26204 match community 2_185_225 set community 0:41625 ip community-list standard 2_2_130 permit 65000:2 0:2 0:130 ip community-list standard 2_4_65 permit 65000:2 0:4 0:65 ip community-list standard 1_4_256 permit 65000:1 0:4 0:256 ip community-list standard 2_5_52 permit 65000:2 0:5 0:52 ip community-list standard 1_5_255 permit 65000:1 0:5 0:255 ip community-list standard 1_6_254 permit 65000:1 0:6 0:254 ip community-list standard 1_7_253 permit 65000:1 0:7 0:253 ip community-list standard 1_8_252 permit 65000:1 0:8 0:252 ip community-list standard 1_9_251 permit 65000:1 0:9 0:251 ip community-list standard 2_10_26 permit 65000:2 0:10 0:26 ip community-list standard 1_10_250 permit 65000:1 0:10 0:250 ip community-list standard 1_11_249 permit 65000:1 0:11 0:249 ip community-list standard 1_12_248 permit 65000:1 0:12 0:248 ip community-list standard 2_13_20 permit 65000:2 0:13 0:20 ip community-list standard 1_13_247 permit 65000:1 0:13 0:247 ip community-list standard 1_14_246 permit 65000:1 0:14 0:246 ip community-list standard 1_15_245 permit 65000:1 0:15 0:245 ip community-list standard 1_16_244 permit 65000:1 0:16 0:244 ip community-list standard 1_17_243 permit 65000:1 0:17 0:243 ip community-list standard 1_18_242 permit 65000:1 0:18 0:242 ip community-list standard 1_19_241 permit 65000:1 0:19 0:241 ip community-list standard 1_20_240 permit 65000:1 0:20 0:240 ip community-list standard 1_21_239 permit 65000:1 0:21 0:239 ip community-list standard 1_22_238 permit 65000:1 0:22 0:238 ip community-list standard 1_23_237 permit 65000:1 0:23 0:237 ip community-list standard 1_24_236 permit 65000:1 0:24 0:236 ip community-list standard 1_25_235 permit 65000:1 0:25 0:235 ip community-list standard 1_26_234 permit 65000:1 0:26 0:234 ip community-list standard 1_27_233 permit 65000:1 0:27 0:233 ip community-list standard 1_28_232 permit 65000:1 0:28 0:232 ip community-list standard 1_29_231 permit 65000:1 0:29 0:231 ip community-list standard 1_30_230 permit 65000:1 0:30 0:230 ip community-list standard 1_31_229 permit 65000:1 0:31 0:229 ip community-list standard 1_32_228 permit 65000:1 0:32 0:228 ip community-list standard 1_33_227 permit 65000:1 0:33 0:227 ip community-list standard 1_34_226 permit 65000:1 0:34 0:226 ip community-list standard 1_35_225 permit 65000:1 0:35 0:225 ip community-list standard 1_36_224 permit 65000:1 0:36 0:224 ip community-list standard 1_37_223 permit 65000:1 0:37 0:223 ip community-list standard 1_38_222 permit 65000:1 0:38 0:222 ip community-list standard 1_39_221 permit 65000:1 0:39 0:221 ip community-list standard 1_40_220 permit 65000:1 0:40 0:220 ip community-list standard 1_41_219 permit 65000:1 0:41 0:219 ip community-list standard 1_42_218 permit 65000:1 0:42 0:218 ip community-list standard 1_43_217 permit 65000:1 0:43 0:217 ip community-list standard 1_44_216 permit 65000:1 0:44 0:216 ip community-list standard 1_45_215 permit 65000:1 0:45 0:215 ip community-list standard 1_46_214 permit 65000:1 0:46 0:214 ip community-list standard 1_47_213 permit 65000:1 0:47 0:213 ip community-list standard 1_48_212 permit 65000:1 0:48 0:212 ip community-list standard 1_49_211 permit 65000:1 0:49 0:211 ip community-list standard 1_50_210 permit 65000:1 0:50 0:210 ip community-list standard 1_51_209 permit 65000:1 0:51 0:209 ip community-list standard 1_52_208 permit 65000:1 0:52 0:208 ip community-list standard 1_53_207 permit 65000:1 0:53 0:207 ip community-list standard 1_54_206 permit 65000:1 0:54 0:206 ip community-list standard 1_55_205 permit 65000:1 0:55 0:205 ip community-list standard 1_56_204 permit 65000:1 0:56 0:204 ip community-list standard 1_57_203 permit 65000:1 0:57 0:203 ip community-list standard 1_58_202 permit 65000:1 0:58 0:202 ip community-list standard 1_59_201 permit 65000:1 0:59 0:201 ip community-list standard 1_60_200 permit 65000:1 0:60 0:200 ip community-list standard 1_61_199 permit 65000:1 0:61 0:199 ip community-list standard 1_62_198 permit 65000:1 0:62 0:198 ip community-list standard 1_63_197 permit 65000:1 0:63 0:197 ip community-list standard 1_64_196 permit 65000:1 0:64 0:196 ip community-list standard 1_65_195 permit 65000:1 0:65 0:195 ip community-list standard 1_66_194 permit 65000:1 0:66 0:194 ip community-list standard 1_67_193 permit 65000:1 0:67 0:193 ip community-list standard 1_68_192 permit 65000:1 0:68 0:192 ip community-list standard 1_69_191 permit 65000:1 0:69 0:191 ip community-list standard 1_70_190 permit 65000:1 0:70 0:190 ip community-list standard 1_71_189 permit 65000:1 0:71 0:189 ip community-list standard 1_72_188 permit 65000:1 0:72 0:188 ip community-list standard 1_73_187 permit 65000:1 0:73 0:187 ip community-list standard 1_74_186 permit 65000:1 0:74 0:186 ip community-list standard 1_75_185 permit 65000:1 0:75 0:185 ip community-list standard 1_76_184 permit 65000:1 0:76 0:184 ip community-list standard 1_77_183 permit 65000:1 0:77 0:183 ip community-list standard 1_78_182 permit 65000:1 0:78 0:182 ip community-list standard 1_79_181 permit 65000:1 0:79 0:181 ip community-list standard 1_80_180 permit 65000:1 0:80 0:180 ip community-list standard 1_81_179 permit 65000:1 0:81 0:179 ip community-list standard 1_82_178 permit 65000:1 0:82 0:178 ip community-list standard 1_83_177 permit 65000:1 0:83 0:177 ip community-list standard 1_84_176 permit 65000:1 0:84 0:176 ip community-list standard 1_85_175 permit 65000:1 0:85 0:175 ip community-list standard 1_86_174 permit 65000:1 0:86 0:174 ip community-list standard 1_87_173 permit 65000:1 0:87 0:173 ip community-list standard 1_88_172 permit 65000:1 0:88 0:172 ip community-list standard 1_89_171 permit 65000:1 0:89 0:171 ip community-list standard 1_90_170 permit 65000:1 0:90 0:170 ip community-list standard 1_91_169 permit 65000:1 0:91 0:169 ip community-list standard 1_92_168 permit 65000:1 0:92 0:168 ip community-list standard 1_93_167 permit 65000:1 0:93 0:167 ip community-list standard 1_94_166 permit 65000:1 0:94 0:166 ip community-list standard 1_95_165 permit 65000:1 0:95 0:165 ip community-list standard 1_96_164 permit 65000:1 0:96 0:164 ip community-list standard 1_97_163 permit 65000:1 0:97 0:163 ip community-list standard 1_98_162 permit 65000:1 0:98 0:162 ip community-list standard 1_99_161 permit 65000:1 0:99 0:161 ip community-list standard 1_100_160 permit 65000:1 0:100 0:160 ip community-list standard 1_101_159 permit 65000:1 0:101 0:159 ip community-list standard 1_102_158 permit 65000:1 0:102 0:158 ip community-list standard 1_103_157 permit 65000:1 0:103 0:157 ip community-list standard 1_104_156 permit 65000:1 0:104 0:156 ip community-list standard 1_105_155 permit 65000:1 0:105 0:155 ip community-list standard 1_106_154 permit 65000:1 0:106 0:154 ip community-list standard 1_107_153 permit 65000:1 0:107 0:153 ip community-list standard 1_108_152 permit 65000:1 0:108 0:152 ip community-list standard 1_109_151 permit 65000:1 0:109 0:151 ip community-list standard 1_110_150 permit 65000:1 0:110 0:150 ip community-list standard 1_111_149 permit 65000:1 0:111 0:149 ip community-list standard 1_112_148 permit 65000:1 0:112 0:148 ip community-list standard 1_113_147 permit 65000:1 0:113 0:147 ip community-list standard 1_114_146 permit 65000:1 0:114 0:146 ip community-list standard 1_115_145 permit 65000:1 0:115 0:145 ip community-list standard 1_116_144 permit 65000:1 0:116 0:144 ip community-list standard 1_117_143 permit 65000:1 0:117 0:143 ip community-list standard 1_118_142 permit 65000:1 0:118 0:142 ip community-list standard 1_119_141 permit 65000:1 0:119 0:141 ip community-list standard 1_120_140 permit 65000:1 0:120 0:140 ip community-list standard 1_121_139 permit 65000:1 0:121 0:139 ip community-list standard 1_122_138 permit 65000:1 0:122 0:138 ip community-list standard 1_123_137 permit 65000:1 0:123 0:137 ip community-list standard 1_124_136 permit 65000:1 0:124 0:136 ip community-list standard 1_125_135 permit 65000:1 0:125 0:135 ip community-list standard 1_126_134 permit 65000:1 0:126 0:134 ip community-list standard 1_127_133 permit 65000:1 0:127 0:133 ip community-list standard 1_128_132 permit 65000:1 0:128 0:132 ip community-list standard 1_129_131 permit 65000:1 0:129 0:131 ip community-list standard 1_130_130 permit 65000:1 0:130 0:130 route-map calculator permit 26205 match community 2_2_130 2_4_65 1_4_256 2_5_52 1_5_255 set community 0:260 route-map calculator permit 26206 match community 1_6_254 1_7_253 1_8_252 1_9_251 2_10_26 set community 0:260 route-map calculator permit 26207 match community 1_10_250 1_11_249 1_12_248 2_13_20 1_13_247 set community 0:260 route-map calculator permit 26208 match community 1_14_246 1_15_245 1_16_244 1_17_243 1_18_242 set community 0:260 route-map calculator permit 26209 match community 1_19_241 1_20_240 1_21_239 1_22_238 1_23_237 set community 0:260 route-map calculator permit 26210 match community 1_24_236 1_25_235 1_26_234 1_27_233 1_28_232 set community 0:260 route-map calculator permit 26211 match community 1_29_231 1_30_230 1_31_229 1_32_228 1_33_227 set community 0:260 route-map calculator permit 26212 match community 1_34_226 1_35_225 1_36_224 1_37_223 1_38_222 set community 0:260 route-map calculator permit 26213 match community 1_39_221 1_40_220 1_41_219 1_42_218 1_43_217 set community 0:260 route-map calculator permit 26214 match community 1_44_216 1_45_215 1_46_214 1_47_213 1_48_212 set community 0:260 route-map calculator permit 26215 match community 1_49_211 1_50_210 1_51_209 1_52_208 1_53_207 set community 0:260 route-map calculator permit 26216 match community 1_54_206 1_55_205 1_56_204 1_57_203 1_58_202 set community 0:260 route-map calculator permit 26217 match community 1_59_201 1_60_200 1_61_199 1_62_198 1_63_197 set community 0:260 route-map calculator permit 26218 match community 1_64_196 1_65_195 1_66_194 1_67_193 1_68_192 set community 0:260 route-map calculator permit 26219 match community 1_69_191 1_70_190 1_71_189 1_72_188 1_73_187 set community 0:260 route-map calculator permit 26220 match community 1_74_186 1_75_185 1_76_184 1_77_183 1_78_182 set community 0:260 route-map calculator permit 26221 match community 1_79_181 1_80_180 1_81_179 1_82_178 1_83_177 set community 0:260 route-map calculator permit 26222 match community 1_84_176 1_85_175 1_86_174 1_87_173 1_88_172 set community 0:260 route-map calculator permit 26223 match community 1_89_171 1_90_170 1_91_169 1_92_168 1_93_167 set community 0:260 route-map calculator permit 26224 match community 1_94_166 1_95_165 1_96_164 1_97_163 1_98_162 set community 0:260 route-map calculator permit 26225 match community 1_99_161 1_100_160 1_101_159 1_102_158 1_103_157 set community 0:260 route-map calculator permit 26226 match community 1_104_156 1_105_155 1_106_154 1_107_153 1_108_152 set community 0:260 route-map calculator permit 26227 match community 1_109_151 1_110_150 1_111_149 1_112_148 1_113_147 set community 0:260 route-map calculator permit 26228 match community 1_114_146 1_115_145 1_116_144 1_117_143 1_118_142 set community 0:260 route-map calculator permit 26229 match community 1_119_141 1_120_140 1_121_139 1_122_138 1_123_137 set community 0:260 route-map calculator permit 26230 match community 1_124_136 1_125_135 1_126_134 1_127_133 1_128_132 set community 0:260 route-map calculator permit 26231 match community 1_129_131 1_130_130 set community 0:260 ip community-list standard 2_47_202 permit 65000:2 0:47 0:202 ip community-list standard 2_94_101 permit 65000:2 0:94 0:101 route-map calculator permit 26232 match community 2_47_202 2_94_101 set community 0:9494 ip community-list standard 2_22_199 permit 65000:2 0:22 0:199 route-map calculator permit 26233 match community 2_22_199 set community 0:4378 ip community-list standard 2_60_151 permit 65000:2 0:60 0:151 route-map calculator permit 26234 match community 2_60_151 set community 0:9060 ip community-list standard 2_61_155 permit 65000:2 0:61 0:155 route-map calculator permit 26235 match community 2_61_155 set community 0:9455 ip community-list standard 2_97_231 permit 65000:2 0:97 0:231 route-map calculator permit 26236 match community 2_97_231 set community 0:22407 ip community-list standard 2_109_254 permit 65000:2 0:109 0:254 ip community-list standard 2_127_218 permit 65000:2 0:127 0:218 route-map calculator permit 26237 match community 2_109_254 2_127_218 set community 0:27686 ip community-list standard 2_52_232 permit 65000:2 0:52 0:232 ip community-list standard 2_58_208 permit 65000:2 0:58 0:208 ip community-list standard 2_104_116 permit 65000:2 0:104 0:116 route-map calculator permit 26238 match community 2_52_232 2_58_208 2_104_116 set community 0:12064 ip community-list standard 2_3_250 permit 65000:2 0:3 0:250 ip community-list standard 2_5_150 permit 65000:2 0:5 0:150 ip community-list standard 2_6_125 permit 65000:2 0:6 0:125 ip community-list standard 2_10_75 permit 65000:2 0:10 0:75 ip community-list standard 2_15_50 permit 65000:2 0:15 0:50 ip community-list standard 2_25_30 permit 65000:2 0:25 0:30 route-map calculator permit 26239 match community 2_3_250 2_5_150 2_6_125 2_10_75 2_15_50 set community 0:750 route-map calculator permit 26240 match community 2_25_30 set community 0:750 ip community-list standard 2_23_211 permit 65000:2 0:23 0:211 route-map calculator permit 26241 match community 2_23_211 set community 0:4853 ip community-list standard 2_33_127 permit 65000:2 0:33 0:127 route-map calculator permit 26242 match community 2_33_127 set community 0:4191 ip community-list standard 2_21_173 permit 65000:2 0:21 0:173 route-map calculator permit 26243 match community 2_21_173 set community 0:3633 ip community-list standard 2_109_225 permit 65000:2 0:109 0:225 route-map calculator permit 26244 match community 2_109_225 set community 0:24525 ip community-list standard 2_198_202 permit 65000:2 0:198 0:202 route-map calculator permit 26245 match community 2_198_202 set community 0:39996 ip community-list standard 2_170_209 permit 65000:2 0:170 0:209 ip community-list standard 2_187_190 permit 65000:2 0:187 0:190 route-map calculator permit 26246 match community 2_170_209 2_187_190 set community 0:35530 ip community-list standard 2_41_141 permit 65000:2 0:41 0:141 ip community-list standard 2_47_123 permit 65000:2 0:47 0:123 route-map calculator permit 26247 match community 2_41_141 2_47_123 set community 0:5781 ip community-list standard 2_43_221 permit 65000:2 0:43 0:221 route-map calculator permit 26248 match community 2_43_221 set community 0:9503 ip community-list standard 2_102_251 permit 65000:2 0:102 0:251 route-map calculator permit 26249 match community 2_102_251 set community 0:25602 ip community-list standard 2_57_190 permit 65000:2 0:57 0:190 ip community-list standard 2_95_114 permit 65000:2 0:95 0:114 route-map calculator permit 26250 match community 2_57_190 2_95_114 set community 0:10830 ip community-list standard 2_73_206 permit 65000:2 0:73 0:206 ip community-list standard 2_103_146 permit 65000:2 0:103 0:146 route-map calculator permit 26251 match community 2_73_206 2_103_146 set community 0:15038 ip community-list standard 2_103_173 permit 65000:2 0:103 0:173 route-map calculator permit 26252 match community 2_103_173 set community 0:17819 ip community-list standard 2_11_177 permit 65000:2 0:11 0:177 ip community-list standard 2_33_59 permit 65000:2 0:33 0:59 route-map calculator permit 26253 match community 2_11_177 2_33_59 set community 0:1947 ip community-list standard 2_109_243 permit 65000:2 0:109 0:243 route-map calculator permit 26254 match community 2_109_243 set community 0:26487 ip community-list standard 2_173_200 permit 65000:2 0:173 0:200 route-map calculator permit 26255 match community 2_173_200 set community 0:34600 ip community-list standard 2_110_223 permit 65000:2 0:110 0:223 route-map calculator permit 26256 match community 2_110_223 set community 0:24530 ip community-list standard 2_33_137 permit 65000:2 0:33 0:137 route-map calculator permit 26257 match community 2_33_137 set community 0:4521 ip community-list standard 2_28_205 permit 65000:2 0:28 0:205 ip community-list standard 2_35_164 permit 65000:2 0:35 0:164 ip community-list standard 2_41_140 permit 65000:2 0:41 0:140 ip community-list standard 2_70_82 permit 65000:2 0:70 0:82 route-map calculator permit 26258 match community 2_28_205 2_35_164 2_41_140 2_70_82 set community 0:5740 ip community-list standard 2_62_179 permit 65000:2 0:62 0:179 route-map calculator permit 26259 match community 2_62_179 set community 0:11098 ip community-list standard 2_118_217 permit 65000:2 0:118 0:217 route-map calculator permit 26260 match community 2_118_217 set community 0:25606 ip community-list standard 2_136_255 permit 65000:2 0:136 0:255 ip community-list standard 2_170_204 permit 65000:2 0:170 0:204 route-map calculator permit 26261 match community 2_136_255 2_170_204 set community 0:34680 ip community-list standard 2_102_204 permit 65000:2 0:102 0:204 ip community-list standard 2_136_153 permit 65000:2 0:136 0:153 route-map calculator permit 26262 match community 2_102_204 2_136_153 set community 0:20808 ip community-list standard 2_206_243 permit 65000:2 0:206 0:243 route-map calculator permit 26263 match community 2_206_243 set community 0:50058 ip community-list standard 2_182_230 permit 65000:2 0:182 0:230 route-map calculator permit 26264 match community 2_182_230 set community 0:41860 ip community-list standard 2_131_254 permit 65000:2 0:131 0:254 route-map calculator permit 26265 match community 2_131_254 set community 0:33274 ip community-list standard 2_26_172 permit 65000:2 0:26 0:172 ip community-list standard 2_43_104 permit 65000:2 0:43 0:104 ip community-list standard 2_52_86 permit 65000:2 0:52 0:86 route-map calculator permit 26266 match community 2_26_172 2_43_104 2_52_86 set community 0:4472 ip community-list standard 2_56_227 permit 65000:2 0:56 0:227 route-map calculator permit 26267 match community 2_56_227 set community 0:12712 ip community-list standard 2_132_206 permit 65000:2 0:132 0:206 route-map calculator permit 26268 match community 2_132_206 set community 0:27192 ip community-list standard 2_104_211 permit 65000:2 0:104 0:211 route-map calculator permit 26269 match community 2_104_211 set community 0:21944 ip community-list standard 1_1_62 permit 65000:1 0:1 0:62 ip community-list standard 2_1_63 permit 65000:2 0:1 0:63 ip community-list standard 1_2_61 permit 65000:1 0:2 0:61 ip community-list standard 2_3_21 permit 65000:2 0:3 0:21 ip community-list standard 1_3_60 permit 65000:1 0:3 0:60 ip community-list standard 1_4_59 permit 65000:1 0:4 0:59 ip community-list standard 1_5_58 permit 65000:1 0:5 0:58 ip community-list standard 1_6_57 permit 65000:1 0:6 0:57 ip community-list standard 2_7_9 permit 65000:2 0:7 0:9 ip community-list standard 1_7_56 permit 65000:1 0:7 0:56 ip community-list standard 1_8_55 permit 65000:1 0:8 0:55 ip community-list standard 1_9_54 permit 65000:1 0:9 0:54 ip community-list standard 1_10_53 permit 65000:1 0:10 0:53 ip community-list standard 1_11_52 permit 65000:1 0:11 0:52 ip community-list standard 1_12_51 permit 65000:1 0:12 0:51 ip community-list standard 1_13_50 permit 65000:1 0:13 0:50 ip community-list standard 1_14_49 permit 65000:1 0:14 0:49 ip community-list standard 1_15_48 permit 65000:1 0:15 0:48 ip community-list standard 1_16_47 permit 65000:1 0:16 0:47 ip community-list standard 1_17_46 permit 65000:1 0:17 0:46 ip community-list standard 1_18_45 permit 65000:1 0:18 0:45 ip community-list standard 1_19_44 permit 65000:1 0:19 0:44 ip community-list standard 1_20_43 permit 65000:1 0:20 0:43 ip community-list standard 1_21_42 permit 65000:1 0:21 0:42 ip community-list standard 1_22_41 permit 65000:1 0:22 0:41 ip community-list standard 1_23_40 permit 65000:1 0:23 0:40 ip community-list standard 1_24_39 permit 65000:1 0:24 0:39 ip community-list standard 1_25_38 permit 65000:1 0:25 0:38 ip community-list standard 1_26_37 permit 65000:1 0:26 0:37 ip community-list standard 1_27_36 permit 65000:1 0:27 0:36 ip community-list standard 1_28_35 permit 65000:1 0:28 0:35 ip community-list standard 1_29_34 permit 65000:1 0:29 0:34 ip community-list standard 1_30_33 permit 65000:1 0:30 0:33 ip community-list standard 1_31_32 permit 65000:1 0:31 0:32 ip community-list expanded c63 permit 1 ^65000:4_0:63_0:1$ ip community-list expanded c63 permit 2 ^65000:3_0:64_0:1$ ip community-list expanded c63 permit 3 ^65000:3_0:65_0:2$ ip community-list expanded c63 permit 4 ^65000:3_0:66_0:3$ ip community-list expanded c63 permit 5 ^65000:3_0:67_0:4$ ip community-list expanded c63 permit 6 ^65000:3_0:68_0:5$ ip community-list expanded c63 permit 7 ^65000:3_0:69_0:6$ ip community-list expanded c63 permit 8 ^65000:3_0:70_0:7$ ip community-list expanded c63 permit 9 ^65000:3_0:71_0:8$ ip community-list expanded c63 permit 10 ^65000:3_0:72_0:9$ ip community-list expanded c63 permit 11 ^65000:3_0:73_0:10$ ip community-list expanded c63 permit 12 ^65000:3_0:74_0:11$ ip community-list expanded c63 permit 13 ^65000:3_0:75_0:12$ ip community-list expanded c63 permit 14 ^65000:3_0:76_0:13$ ip community-list expanded c63 permit 15 ^65000:3_0:77_0:14$ ip community-list expanded c63 permit 16 ^65000:3_0:78_0:15$ ip community-list expanded c63 permit 17 ^65000:3_0:79_0:16$ ip community-list expanded c63 permit 18 ^65000:3_0:80_0:17$ ip community-list expanded c63 permit 19 ^65000:3_0:81_0:18$ ip community-list expanded c63 permit 20 ^65000:3_0:82_0:19$ ip community-list expanded c63 permit 21 ^65000:3_0:83_0:20$ ip community-list expanded c63 permit 22 ^65000:3_0:84_0:21$ ip community-list expanded c63 permit 23 ^65000:3_0:85_0:22$ ip community-list expanded c63 permit 24 ^65000:3_0:86_0:23$ ip community-list expanded c63 permit 25 ^65000:3_0:87_0:24$ ip community-list expanded c63 permit 26 ^65000:3_0:88_0:25$ ip community-list expanded c63 permit 27 ^65000:3_0:89_0:26$ ip community-list expanded c63 permit 28 ^65000:3_0:90_0:27$ ip community-list expanded c63 permit 29 ^65000:3_0:91_0:28$ ip community-list expanded c63 permit 30 ^65000:3_0:92_0:29$ ip community-list expanded c63 permit 31 ^65000:3_0:93_0:30$ ip community-list expanded c63 permit 32 ^65000:3_0:94_0:31$ ip community-list expanded c63 permit 33 ^65000:3_0:95_0:32$ ip community-list expanded c63 permit 34 ^65000:3_0:96_0:33$ ip community-list expanded c63 permit 35 ^65000:3_0:97_0:34$ ip community-list expanded c63 permit 36 ^65000:3_0:98_0:35$ ip community-list expanded c63 permit 37 ^65000:3_0:99_0:36$ ip community-list expanded c63 permit 38 ^65000:3_0:100_0:37$ ip community-list expanded c63 permit 39 ^65000:3_0:101_0:38$ ip community-list expanded c63 permit 40 ^65000:3_0:102_0:39$ ip community-list expanded c63 permit 41 ^65000:3_0:103_0:40$ ip community-list expanded c63 permit 42 ^65000:3_0:104_0:41$ ip community-list expanded c63 permit 43 ^65000:3_0:105_0:42$ ip community-list expanded c63 permit 44 ^65000:3_0:106_0:43$ ip community-list expanded c63 permit 45 ^65000:3_0:107_0:44$ ip community-list expanded c63 permit 46 ^65000:3_0:108_0:45$ ip community-list expanded c63 permit 47 ^65000:3_0:109_0:46$ ip community-list expanded c63 permit 48 ^65000:3_0:110_0:47$ ip community-list expanded c63 permit 49 ^65000:3_0:111_0:48$ ip community-list expanded c63 permit 50 ^65000:3_0:112_0:49$ ip community-list expanded c63 permit 51 ^65000:3_0:113_0:50$ ip community-list expanded c63 permit 52 ^65000:3_0:114_0:51$ ip community-list expanded c63 permit 53 ^65000:3_0:115_0:52$ ip community-list expanded c63 permit 54 ^65000:3_0:116_0:53$ ip community-list expanded c63 permit 55 ^65000:3_0:117_0:54$ ip community-list expanded c63 permit 56 ^65000:3_0:118_0:55$ ip community-list expanded c63 permit 57 ^65000:3_0:119_0:56$ ip community-list expanded c63 permit 58 ^65000:3_0:120_0:57$ ip community-list expanded c63 permit 59 ^65000:3_0:121_0:58$ ip community-list expanded c63 permit 60 ^65000:3_0:122_0:59$ ip community-list expanded c63 permit 61 ^65000:3_0:123_0:60$ ip community-list expanded c63 permit 62 ^65000:3_0:124_0:61$ ip community-list expanded c63 permit 63 ^65000:3_0:125_0:62$ ip community-list expanded c63 permit 64 ^65000:4_0:126_0:2$ ip community-list expanded c63 permit 65 ^65000:3_0:126_0:63$ ip community-list expanded c63 permit 66 ^65000:4_0:127_0:2$ ip community-list expanded c63 permit 67 ^65000:3_0:127_0:64$ ip community-list expanded c63 permit 68 ^65000:3_0:128_0:65$ ip community-list expanded c63 permit 69 ^65000:3_0:129_0:66$ ip community-list expanded c63 permit 70 ^65000:3_0:130_0:67$ ip community-list expanded c63 permit 71 ^65000:3_0:131_0:68$ ip community-list expanded c63 permit 72 ^65000:3_0:132_0:69$ ip community-list expanded c63 permit 73 ^65000:3_0:133_0:70$ ip community-list expanded c63 permit 74 ^65000:3_0:134_0:71$ ip community-list expanded c63 permit 75 ^65000:3_0:135_0:72$ ip community-list expanded c63 permit 76 ^65000:3_0:136_0:73$ ip community-list expanded c63 permit 77 ^65000:3_0:137_0:74$ ip community-list expanded c63 permit 78 ^65000:3_0:138_0:75$ ip community-list expanded c63 permit 79 ^65000:3_0:139_0:76$ ip community-list expanded c63 permit 80 ^65000:3_0:140_0:77$ ip community-list expanded c63 permit 81 ^65000:3_0:141_0:78$ ip community-list expanded c63 permit 82 ^65000:3_0:142_0:79$ ip community-list expanded c63 permit 83 ^65000:3_0:143_0:80$ ip community-list expanded c63 permit 84 ^65000:3_0:144_0:81$ ip community-list expanded c63 permit 85 ^65000:3_0:145_0:82$ ip community-list expanded c63 permit 86 ^65000:3_0:146_0:83$ ip community-list expanded c63 permit 87 ^65000:3_0:147_0:84$ ip community-list expanded c63 permit 88 ^65000:3_0:148_0:85$ ip community-list expanded c63 permit 89 ^65000:3_0:149_0:86$ ip community-list expanded c63 permit 90 ^65000:3_0:150_0:87$ ip community-list expanded c63 permit 91 ^65000:3_0:151_0:88$ ip community-list expanded c63 permit 92 ^65000:3_0:152_0:89$ ip community-list expanded c63 permit 93 ^65000:3_0:153_0:90$ ip community-list expanded c63 permit 94 ^65000:3_0:154_0:91$ ip community-list expanded c63 permit 95 ^65000:3_0:155_0:92$ ip community-list expanded c63 permit 96 ^65000:3_0:156_0:93$ ip community-list expanded c63 permit 97 ^65000:3_0:157_0:94$ ip community-list expanded c63 permit 98 ^65000:3_0:158_0:95$ ip community-list expanded c63 permit 99 ^65000:3_0:159_0:96$ ip community-list expanded c63 permit 100 ^65000:3_0:160_0:97$ ip community-list expanded c63 permit 101 ^65000:3_0:161_0:98$ ip community-list expanded c63 permit 102 ^65000:3_0:162_0:99$ ip community-list expanded c63 permit 103 ^65000:3_0:163_0:100$ ip community-list expanded c63 permit 104 ^65000:3_0:164_0:101$ ip community-list expanded c63 permit 105 ^65000:3_0:165_0:102$ ip community-list expanded c63 permit 106 ^65000:3_0:166_0:103$ ip community-list expanded c63 permit 107 ^65000:3_0:167_0:104$ ip community-list expanded c63 permit 108 ^65000:3_0:168_0:105$ ip community-list expanded c63 permit 109 ^65000:3_0:169_0:106$ ip community-list expanded c63 permit 110 ^65000:3_0:170_0:107$ ip community-list expanded c63 permit 111 ^65000:3_0:171_0:108$ ip community-list expanded c63 permit 112 ^65000:3_0:172_0:109$ ip community-list expanded c63 permit 113 ^65000:3_0:173_0:110$ ip community-list expanded c63 permit 114 ^65000:3_0:174_0:111$ ip community-list expanded c63 permit 115 ^65000:3_0:175_0:112$ ip community-list expanded c63 permit 116 ^65000:3_0:176_0:113$ ip community-list expanded c63 permit 117 ^65000:3_0:177_0:114$ ip community-list expanded c63 permit 118 ^65000:3_0:178_0:115$ ip community-list expanded c63 permit 119 ^65000:3_0:179_0:116$ ip community-list expanded c63 permit 120 ^65000:3_0:180_0:117$ ip community-list expanded c63 permit 121 ^65000:3_0:181_0:118$ ip community-list expanded c63 permit 122 ^65000:3_0:182_0:119$ ip community-list expanded c63 permit 123 ^65000:3_0:183_0:120$ ip community-list expanded c63 permit 124 ^65000:3_0:184_0:121$ ip community-list expanded c63 permit 125 ^65000:3_0:185_0:122$ ip community-list expanded c63 permit 126 ^65000:3_0:186_0:123$ ip community-list expanded c63 permit 127 ^65000:3_0:187_0:124$ ip community-list expanded c63 permit 128 ^65000:3_0:188_0:125$ ip community-list expanded c63 permit 129 ^65000:4_0:189_0:3$ ip community-list expanded c63 permit 130 ^65000:3_0:189_0:126$ ip community-list expanded c63 permit 131 ^65000:4_0:190_0:3$ ip community-list expanded c63 permit 132 ^65000:3_0:190_0:127$ ip community-list expanded c63 permit 133 ^65000:4_0:191_0:3$ ip community-list expanded c63 permit 134 ^65000:3_0:191_0:128$ ip community-list expanded c63 permit 135 ^65000:3_0:192_0:129$ ip community-list expanded c63 permit 136 ^65000:3_0:193_0:130$ ip community-list expanded c63 permit 137 ^65000:3_0:194_0:131$ ip community-list expanded c63 permit 138 ^65000:3_0:195_0:132$ ip community-list expanded c63 permit 139 ^65000:3_0:196_0:133$ ip community-list expanded c63 permit 140 ^65000:3_0:197_0:134$ ip community-list expanded c63 permit 141 ^65000:3_0:198_0:135$ ip community-list expanded c63 permit 142 ^65000:3_0:199_0:136$ ip community-list expanded c63 permit 143 ^65000:3_0:200_0:137$ ip community-list expanded c63 permit 144 ^65000:3_0:201_0:138$ ip community-list expanded c63 permit 145 ^65000:3_0:202_0:139$ ip community-list expanded c63 permit 146 ^65000:3_0:203_0:140$ ip community-list expanded c63 permit 147 ^65000:3_0:204_0:141$ ip community-list expanded c63 permit 148 ^65000:3_0:205_0:142$ ip community-list expanded c63 permit 149 ^65000:3_0:206_0:143$ ip community-list expanded c63 permit 150 ^65000:3_0:207_0:144$ ip community-list expanded c63 permit 151 ^65000:3_0:208_0:145$ ip community-list expanded c63 permit 152 ^65000:3_0:209_0:146$ ip community-list expanded c63 permit 153 ^65000:3_0:210_0:147$ ip community-list expanded c63 permit 154 ^65000:3_0:211_0:148$ ip community-list expanded c63 permit 155 ^65000:3_0:212_0:149$ ip community-list expanded c63 permit 156 ^65000:3_0:213_0:150$ ip community-list expanded c63 permit 157 ^65000:3_0:214_0:151$ ip community-list expanded c63 permit 158 ^65000:3_0:215_0:152$ ip community-list expanded c63 permit 159 ^65000:3_0:216_0:153$ ip community-list expanded c63 permit 160 ^65000:3_0:217_0:154$ ip community-list expanded c63 permit 161 ^65000:3_0:218_0:155$ ip community-list expanded c63 permit 162 ^65000:3_0:219_0:156$ ip community-list expanded c63 permit 163 ^65000:3_0:220_0:157$ ip community-list expanded c63 permit 164 ^65000:3_0:221_0:158$ ip community-list expanded c63 permit 165 ^65000:3_0:222_0:159$ ip community-list expanded c63 permit 166 ^65000:3_0:223_0:160$ ip community-list expanded c63 permit 167 ^65000:3_0:224_0:161$ ip community-list expanded c63 permit 168 ^65000:3_0:225_0:162$ ip community-list expanded c63 permit 169 ^65000:3_0:226_0:163$ ip community-list expanded c63 permit 170 ^65000:3_0:227_0:164$ ip community-list expanded c63 permit 171 ^65000:3_0:228_0:165$ ip community-list expanded c63 permit 172 ^65000:3_0:229_0:166$ ip community-list expanded c63 permit 173 ^65000:3_0:230_0:167$ ip community-list expanded c63 permit 174 ^65000:3_0:231_0:168$ ip community-list expanded c63 permit 175 ^65000:3_0:232_0:169$ ip community-list expanded c63 permit 176 ^65000:3_0:233_0:170$ ip community-list expanded c63 permit 177 ^65000:3_0:234_0:171$ ip community-list expanded c63 permit 178 ^65000:3_0:235_0:172$ ip community-list expanded c63 permit 179 ^65000:3_0:236_0:173$ ip community-list expanded c63 permit 180 ^65000:3_0:237_0:174$ ip community-list expanded c63 permit 181 ^65000:3_0:238_0:175$ ip community-list expanded c63 permit 182 ^65000:3_0:239_0:176$ ip community-list expanded c63 permit 183 ^65000:3_0:240_0:177$ ip community-list expanded c63 permit 184 ^65000:3_0:241_0:178$ ip community-list expanded c63 permit 185 ^65000:3_0:242_0:179$ ip community-list expanded c63 permit 186 ^65000:3_0:243_0:180$ ip community-list expanded c63 permit 187 ^65000:3_0:244_0:181$ ip community-list expanded c63 permit 188 ^65000:3_0:245_0:182$ ip community-list expanded c63 permit 189 ^65000:3_0:246_0:183$ ip community-list expanded c63 permit 190 ^65000:3_0:247_0:184$ ip community-list expanded c63 permit 191 ^65000:3_0:248_0:185$ ip community-list expanded c63 permit 192 ^65000:3_0:249_0:186$ ip community-list expanded c63 permit 193 ^65000:3_0:250_0:187$ ip community-list expanded c63 permit 194 ^65000:3_0:251_0:188$ ip community-list expanded c63 permit 195 ^65000:4_0:252_0:4$ ip community-list expanded c63 permit 196 ^65000:3_0:252_0:189$ ip community-list expanded c63 permit 197 ^65000:4_0:253_0:4$ ip community-list expanded c63 permit 198 ^65000:3_0:253_0:190$ ip community-list expanded c63 permit 199 ^65000:4_0:254_0:4$ ip community-list expanded c63 permit 200 ^65000:3_0:254_0:191$ ip community-list expanded c63 permit 201 ^65000:4_0:255_0:4$ ip community-list expanded c63 permit 202 ^65000:3_0:255_0:192$ ip community-list expanded c63 permit 203 ^65000:3_0:256_0:193$ route-map calculator permit 26270 match community 1_1_62 2_1_63 1_2_61 2_3_21 1_3_60 set community 0:63 route-map calculator permit 26271 match community 1_4_59 1_5_58 1_6_57 2_7_9 1_7_56 set community 0:63 route-map calculator permit 26272 match community 1_8_55 1_9_54 1_10_53 1_11_52 1_12_51 set community 0:63 route-map calculator permit 26273 match community 1_13_50 1_14_49 1_15_48 1_16_47 1_17_46 set community 0:63 route-map calculator permit 26274 match community 1_18_45 1_19_44 1_20_43 1_21_42 1_22_41 set community 0:63 route-map calculator permit 26275 match community 1_23_40 1_24_39 1_25_38 1_26_37 1_27_36 set community 0:63 route-map calculator permit 26276 match community 1_28_35 1_29_34 1_30_33 1_31_32 c4_63_1 set community 0:63 route-map calculator permit 26277 match community c3_64_1 c3_65_2 c3_66_3 c3_67_4 c3_68_5 set community 0:63 route-map calculator permit 26278 match community c3_69_6 c3_70_7 c3_71_8 c3_72_9 c3_73_10 set community 0:63 route-map calculator permit 26279 match community c3_74_11 c3_75_12 c3_76_13 c3_77_14 c3_78_15 set community 0:63 route-map calculator permit 26280 match community c3_79_16 c3_80_17 c3_81_18 c3_82_19 c3_83_20 set community 0:63 route-map calculator permit 26281 match community c3_84_21 c3_85_22 c3_86_23 c3_87_24 c3_88_25 set community 0:63 route-map calculator permit 26282 match community c3_89_26 c3_90_27 c3_91_28 c3_92_29 c3_93_30 set community 0:63 route-map calculator permit 26283 match community c3_94_31 c3_95_32 c3_96_33 c3_97_34 c3_98_35 set community 0:63 route-map calculator permit 26284 match community c3_99_36 c3_100_37 c3_101_38 c3_102_39 c3_103_40 set community 0:63 route-map calculator permit 26285 match community c3_104_41 c3_105_42 c3_106_43 c3_107_44 c3_108_45 set community 0:63 route-map calculator permit 26286 match community c3_109_46 c3_110_47 c3_111_48 c3_112_49 c3_113_50 set community 0:63 route-map calculator permit 26287 match community c3_114_51 c3_115_52 c3_116_53 c3_117_54 c3_118_55 set community 0:63 route-map calculator permit 26288 match community c3_119_56 c3_120_57 c3_121_58 c3_122_59 c3_123_60 set community 0:63 route-map calculator permit 26289 match community c3_124_61 c3_125_62 c4_126_2 c3_126_63 c4_127_2 set community 0:63 route-map calculator permit 26290 match community c3_127_64 c3_128_65 c3_129_66 c3_130_67 c3_131_68 set community 0:63 route-map calculator permit 26291 match community c3_132_69 c3_133_70 c3_134_71 c3_135_72 c3_136_73 set community 0:63 route-map calculator permit 26292 match community c3_137_74 c3_138_75 c3_139_76 c3_140_77 c3_141_78 set community 0:63 route-map calculator permit 26293 match community c3_142_79 c3_143_80 c3_144_81 c3_145_82 c3_146_83 set community 0:63 route-map calculator permit 26294 match community c3_147_84 c3_148_85 c3_149_86 c3_150_87 c3_151_88 set community 0:63 route-map calculator permit 26295 match community c3_152_89 c3_153_90 c3_154_91 c3_155_92 c3_156_93 set community 0:63 route-map calculator permit 26296 match community c3_157_94 c3_158_95 c3_159_96 c3_160_97 c3_161_98 set community 0:63 route-map calculator permit 26297 match community c3_162_99 c3_163_100 c3_164_101 c3_165_102 c3_166_103 set community 0:63 route-map calculator permit 26298 match community c3_167_104 c3_168_105 c3_169_106 c3_170_107 c3_171_108 set community 0:63 route-map calculator permit 26299 match community c3_172_109 c3_173_110 c3_174_111 c3_175_112 c3_176_113 set community 0:63 route-map calculator permit 26300 match community c3_177_114 c3_178_115 c3_179_116 c3_180_117 c3_181_118 set community 0:63 route-map calculator permit 26301 match community c3_182_119 c3_183_120 c3_184_121 c3_185_122 c3_186_123 set community 0:63 route-map calculator permit 26302 match community c3_187_124 c3_188_125 c4_189_3 c3_189_126 c4_190_3 set community 0:63 route-map calculator permit 26303 match community c3_190_127 c4_191_3 c3_191_128 c3_192_129 c3_193_130 set community 0:63 route-map calculator permit 26304 match community c3_194_131 c3_195_132 c3_196_133 c3_197_134 c3_198_135 set community 0:63 route-map calculator permit 26305 match community c3_199_136 c3_200_137 c3_201_138 c3_202_139 c3_203_140 set community 0:63 route-map calculator permit 26306 match community c3_204_141 c3_205_142 c3_206_143 c3_207_144 c3_208_145 set community 0:63 route-map calculator permit 26307 match community c3_209_146 c3_210_147 c3_211_148 c3_212_149 c3_213_150 set community 0:63 route-map calculator permit 26308 match community c3_214_151 c3_215_152 c3_216_153 c3_217_154 c3_218_155 set community 0:63 route-map calculator permit 26309 match community c3_219_156 c3_220_157 c3_221_158 c3_222_159 c3_223_160 set community 0:63 route-map calculator permit 26310 match community c3_224_161 c3_225_162 c3_226_163 c3_227_164 c3_228_165 set community 0:63 route-map calculator permit 26311 match community c3_229_166 c3_230_167 c3_231_168 c3_232_169 c3_233_170 set community 0:63 route-map calculator permit 26312 match community c3_234_171 c3_235_172 c3_236_173 c3_237_174 c3_238_175 set community 0:63 route-map calculator permit 26313 match community c3_239_176 c3_240_177 c3_241_178 c3_242_179 c3_243_180 set community 0:63 route-map calculator permit 26314 match community c3_244_181 c3_245_182 c3_246_183 c3_247_184 c3_248_185 set community 0:63 route-map calculator permit 26315 match community c3_249_186 c3_250_187 c3_251_188 c4_252_4 c3_252_189 set community 0:63 route-map calculator permit 26316 match community c4_253_4 c3_253_190 c4_254_4 c3_254_191 c4_255_4 set community 0:63 route-map calculator permit 26317 match community c3_255_192 c3_256_193 set community 0:63 ip community-list standard 2_97_213 permit 65000:2 0:97 0:213 route-map calculator permit 26318 match community 2_97_213 set community 0:20661 ip community-list standard 2_9_233 permit 65000:2 0:9 0:233 route-map calculator permit 26319 match community 2_9_233 set community 0:2097 ip community-list standard 2_88_245 permit 65000:2 0:88 0:245 ip community-list standard 2_98_220 permit 65000:2 0:98 0:220 ip community-list standard 2_110_196 permit 65000:2 0:110 0:196 ip community-list standard 2_140_154 permit 65000:2 0:140 0:154 route-map calculator permit 26320 match community 2_88_245 2_98_220 2_110_196 2_140_154 set community 0:21560 ip community-list standard 2_156_235 permit 65000:2 0:156 0:235 ip community-list standard 2_188_195 permit 65000:2 0:188 0:195 route-map calculator permit 26321 match community 2_156_235 2_188_195 set community 0:36660 ip community-list standard 2_90_248 permit 65000:2 0:90 0:248 ip community-list standard 2_93_240 permit 65000:2 0:93 0:240 ip community-list standard 2_120_186 permit 65000:2 0:120 0:186 ip community-list standard 2_124_180 permit 65000:2 0:124 0:180 ip community-list standard 2_144_155 permit 65000:2 0:144 0:155 route-map calculator permit 26322 match community 2_90_248 2_93_240 2_120_186 2_124_180 2_144_155 set community 0:22320 ip community-list standard 2_17_136 permit 65000:2 0:17 0:136 ip community-list standard 2_34_68 permit 65000:2 0:34 0:68 route-map calculator permit 26323 match community 2_17_136 2_34_68 set community 0:2312 ip community-list standard 2_117_195 permit 65000:2 0:117 0:195 ip community-list standard 2_135_169 permit 65000:2 0:135 0:169 route-map calculator permit 26324 match community 2_117_195 2_135_169 set community 0:22815 ip community-list standard 2_17_251 permit 65000:2 0:17 0:251 route-map calculator permit 26325 match community 2_17_251 set community 0:4267 ip community-list standard 2_29_83 permit 65000:2 0:29 0:83 route-map calculator permit 26326 match community 2_29_83 set community 0:2407 ip community-list standard 2_113_155 permit 65000:2 0:113 0:155 route-map calculator permit 26327 match community 2_113_155 set community 0:17515 ip community-list standard 2_158_200 permit 65000:2 0:158 0:200 route-map calculator permit 26328 match community 2_158_200 set community 0:31600 ip community-list standard 2_55_158 permit 65000:2 0:55 0:158 ip community-list standard 2_79_110 permit 65000:2 0:79 0:110 route-map calculator permit 26329 match community 2_55_158 2_79_110 set community 0:8690 ip community-list standard 2_61_137 permit 65000:2 0:61 0:137 route-map calculator permit 26330 match community 2_61_137 set community 0:8357 ip community-list standard 2_197_226 permit 65000:2 0:197 0:226 route-map calculator permit 26331 match community 2_197_226 set community 0:44522 ip community-list standard 2_143_182 permit 65000:2 0:143 0:182 ip community-list standard 2_154_169 permit 65000:2 0:154 0:169 route-map calculator permit 26332 match community 2_143_182 2_154_169 set community 0:26026 ip community-list standard 2_17_115 permit 65000:2 0:17 0:115 ip community-list standard 2_23_85 permit 65000:2 0:23 0:85 route-map calculator permit 26333 match community 2_17_115 2_23_85 set community 0:1955 ip community-list standard 2_196_197 permit 65000:2 0:196 0:197 route-map calculator permit 26334 match community 2_196_197 set community 0:38612 ip community-list standard 2_66_197 permit 65000:2 0:66 0:197 route-map calculator permit 26335 match community 2_66_197 set community 0:13002 ip community-list standard 2_17_113 permit 65000:2 0:17 0:113 route-map calculator permit 26336 match community 2_17_113 set community 0:1921 ip community-list standard 2_144_232 permit 65000:2 0:144 0:232 ip community-list standard 2_174_192 permit 65000:2 0:174 0:192 route-map calculator permit 26337 match community 2_144_232 2_174_192 set community 0:33408 ip community-list standard 2_67_227 permit 65000:2 0:67 0:227 route-map calculator permit 26338 match community 2_67_227 set community 0:15209 ip community-list standard 2_106_243 permit 65000:2 0:106 0:243 ip community-list standard 2_159_162 permit 65000:2 0:159 0:162 route-map calculator permit 26339 match community 2_106_243 2_159_162 set community 0:25758 ip community-list standard 2_111_203 permit 65000:2 0:111 0:203 route-map calculator permit 26340 match community 2_111_203 set community 0:22533 ip community-list standard 2_33_109 permit 65000:2 0:33 0:109 route-map calculator permit 26341 match community 2_33_109 set community 0:3597 ip community-list standard 2_130_231 permit 65000:2 0:130 0:231 ip community-list standard 2_143_210 permit 65000:2 0:143 0:210 ip community-list standard 2_154_195 permit 65000:2 0:154 0:195 ip community-list standard 2_165_182 permit 65000:2 0:165 0:182 route-map calculator permit 26342 match community 2_130_231 2_143_210 2_154_195 2_165_182 set community 0:30030 ip community-list standard 2_171_225 permit 65000:2 0:171 0:225 route-map calculator permit 26343 match community 2_171_225 set community 0:38475 ip community-list standard 2_129_174 permit 65000:2 0:129 0:174 route-map calculator permit 26344 match community 2_129_174 set community 0:22446 ip community-list standard 2_58_199 permit 65000:2 0:58 0:199 route-map calculator permit 26345 match community 2_58_199 set community 0:11542 ip community-list standard 2_25_209 permit 65000:2 0:25 0:209 ip community-list standard 2_55_95 permit 65000:2 0:55 0:95 route-map calculator permit 26346 match community 2_25_209 2_55_95 set community 0:5225 ip community-list standard 2_126_163 permit 65000:2 0:126 0:163 route-map calculator permit 26347 match community 2_126_163 set community 0:20538 ip community-list standard 2_54_231 permit 65000:2 0:54 0:231 ip community-list standard 2_63_198 permit 65000:2 0:63 0:198 ip community-list standard 2_66_189 permit 65000:2 0:66 0:189 ip community-list standard 2_77_162 permit 65000:2 0:77 0:162 ip community-list standard 2_81_154 permit 65000:2 0:81 0:154 ip community-list standard 2_99_126 permit 65000:2 0:99 0:126 route-map calculator permit 26348 match community 2_54_231 2_63_198 2_66_189 2_77_162 2_81_154 set community 0:12474 route-map calculator permit 26349 match community 2_99_126 set community 0:12474 ip community-list standard 2_106_173 permit 65000:2 0:106 0:173 route-map calculator permit 26350 match community 2_106_173 set community 0:18338 ip community-list standard 2_22_244 permit 65000:2 0:22 0:244 ip community-list standard 2_44_122 permit 65000:2 0:44 0:122 ip community-list standard 2_61_88 permit 65000:2 0:61 0:88 route-map calculator permit 26351 match community 2_22_244 2_44_122 2_61_88 set community 0:5368 ip community-list standard 2_94_167 permit 65000:2 0:94 0:167 route-map calculator permit 26352 match community 2_94_167 set community 0:15698 ip community-list standard 1_1_181 permit 65000:1 0:1 0:181 ip community-list standard 2_1_182 permit 65000:2 0:1 0:182 ip community-list standard 2_2_91 permit 65000:2 0:2 0:91 ip community-list standard 1_2_180 permit 65000:1 0:2 0:180 ip community-list standard 1_3_179 permit 65000:1 0:3 0:179 ip community-list standard 1_4_178 permit 65000:1 0:4 0:178 ip community-list standard 1_5_177 permit 65000:1 0:5 0:177 ip community-list standard 1_6_176 permit 65000:1 0:6 0:176 ip community-list standard 2_7_26 permit 65000:2 0:7 0:26 ip community-list standard 1_7_175 permit 65000:1 0:7 0:175 ip community-list standard 1_8_174 permit 65000:1 0:8 0:174 ip community-list standard 1_9_173 permit 65000:1 0:9 0:173 ip community-list standard 1_10_172 permit 65000:1 0:10 0:172 ip community-list standard 1_11_171 permit 65000:1 0:11 0:171 ip community-list standard 1_12_170 permit 65000:1 0:12 0:170 ip community-list standard 2_13_14 permit 65000:2 0:13 0:14 ip community-list standard 1_13_169 permit 65000:1 0:13 0:169 ip community-list standard 1_14_168 permit 65000:1 0:14 0:168 ip community-list standard 1_15_167 permit 65000:1 0:15 0:167 ip community-list standard 1_16_166 permit 65000:1 0:16 0:166 ip community-list standard 1_17_165 permit 65000:1 0:17 0:165 ip community-list standard 1_18_164 permit 65000:1 0:18 0:164 ip community-list standard 1_19_163 permit 65000:1 0:19 0:163 ip community-list standard 1_20_162 permit 65000:1 0:20 0:162 ip community-list standard 1_21_161 permit 65000:1 0:21 0:161 ip community-list standard 1_22_160 permit 65000:1 0:22 0:160 ip community-list standard 1_23_159 permit 65000:1 0:23 0:159 ip community-list standard 1_24_158 permit 65000:1 0:24 0:158 ip community-list standard 1_25_157 permit 65000:1 0:25 0:157 ip community-list standard 1_26_156 permit 65000:1 0:26 0:156 ip community-list standard 1_27_155 permit 65000:1 0:27 0:155 ip community-list standard 1_28_154 permit 65000:1 0:28 0:154 ip community-list standard 1_29_153 permit 65000:1 0:29 0:153 ip community-list standard 1_30_152 permit 65000:1 0:30 0:152 ip community-list standard 1_31_151 permit 65000:1 0:31 0:151 ip community-list standard 1_32_150 permit 65000:1 0:32 0:150 ip community-list standard 1_33_149 permit 65000:1 0:33 0:149 ip community-list standard 1_34_148 permit 65000:1 0:34 0:148 ip community-list standard 1_35_147 permit 65000:1 0:35 0:147 ip community-list standard 1_36_146 permit 65000:1 0:36 0:146 ip community-list standard 1_37_145 permit 65000:1 0:37 0:145 ip community-list standard 1_38_144 permit 65000:1 0:38 0:144 ip community-list standard 1_39_143 permit 65000:1 0:39 0:143 ip community-list standard 1_40_142 permit 65000:1 0:40 0:142 ip community-list standard 1_41_141 permit 65000:1 0:41 0:141 ip community-list standard 1_42_140 permit 65000:1 0:42 0:140 ip community-list standard 1_43_139 permit 65000:1 0:43 0:139 ip community-list standard 1_44_138 permit 65000:1 0:44 0:138 ip community-list standard 1_45_137 permit 65000:1 0:45 0:137 ip community-list standard 1_46_136 permit 65000:1 0:46 0:136 ip community-list standard 1_47_135 permit 65000:1 0:47 0:135 ip community-list standard 1_48_134 permit 65000:1 0:48 0:134 ip community-list standard 1_49_133 permit 65000:1 0:49 0:133 ip community-list standard 1_50_132 permit 65000:1 0:50 0:132 ip community-list standard 1_51_131 permit 65000:1 0:51 0:131 ip community-list standard 1_52_130 permit 65000:1 0:52 0:130 ip community-list standard 1_53_129 permit 65000:1 0:53 0:129 ip community-list standard 1_54_128 permit 65000:1 0:54 0:128 ip community-list standard 1_55_127 permit 65000:1 0:55 0:127 ip community-list standard 1_56_126 permit 65000:1 0:56 0:126 ip community-list standard 1_57_125 permit 65000:1 0:57 0:125 ip community-list standard 1_58_124 permit 65000:1 0:58 0:124 ip community-list standard 1_59_123 permit 65000:1 0:59 0:123 ip community-list standard 1_60_122 permit 65000:1 0:60 0:122 ip community-list standard 1_61_121 permit 65000:1 0:61 0:121 ip community-list standard 1_62_120 permit 65000:1 0:62 0:120 ip community-list standard 1_63_119 permit 65000:1 0:63 0:119 ip community-list standard 1_64_118 permit 65000:1 0:64 0:118 ip community-list standard 1_65_117 permit 65000:1 0:65 0:117 ip community-list standard 1_66_116 permit 65000:1 0:66 0:116 ip community-list standard 1_67_115 permit 65000:1 0:67 0:115 ip community-list standard 1_68_114 permit 65000:1 0:68 0:114 ip community-list standard 1_69_113 permit 65000:1 0:69 0:113 ip community-list standard 1_70_112 permit 65000:1 0:70 0:112 ip community-list standard 1_71_111 permit 65000:1 0:71 0:111 ip community-list standard 1_72_110 permit 65000:1 0:72 0:110 ip community-list standard 1_73_109 permit 65000:1 0:73 0:109 ip community-list standard 1_74_108 permit 65000:1 0:74 0:108 ip community-list standard 1_75_107 permit 65000:1 0:75 0:107 ip community-list standard 1_76_106 permit 65000:1 0:76 0:106 ip community-list standard 1_77_105 permit 65000:1 0:77 0:105 ip community-list standard 1_78_104 permit 65000:1 0:78 0:104 ip community-list standard 1_79_103 permit 65000:1 0:79 0:103 ip community-list standard 1_80_102 permit 65000:1 0:80 0:102 ip community-list standard 1_81_101 permit 65000:1 0:81 0:101 ip community-list standard 1_82_100 permit 65000:1 0:82 0:100 ip community-list standard 1_83_99 permit 65000:1 0:83 0:99 ip community-list standard 1_84_98 permit 65000:1 0:84 0:98 ip community-list standard 1_85_97 permit 65000:1 0:85 0:97 ip community-list standard 1_86_96 permit 65000:1 0:86 0:96 ip community-list standard 1_87_95 permit 65000:1 0:87 0:95 ip community-list standard 1_88_94 permit 65000:1 0:88 0:94 ip community-list standard 1_89_93 permit 65000:1 0:89 0:93 ip community-list standard 1_90_92 permit 65000:1 0:90 0:92 ip community-list standard 1_91_91 permit 65000:1 0:91 0:91 ip community-list expanded c182 permit 1 ^65000:4_0:182_0:1$ ip community-list expanded c182 permit 2 ^65000:3_0:183_0:1$ ip community-list expanded c182 permit 3 ^65000:3_0:184_0:2$ ip community-list expanded c182 permit 4 ^65000:3_0:185_0:3$ ip community-list expanded c182 permit 5 ^65000:3_0:186_0:4$ ip community-list expanded c182 permit 6 ^65000:3_0:187_0:5$ ip community-list expanded c182 permit 7 ^65000:3_0:188_0:6$ ip community-list expanded c182 permit 8 ^65000:3_0:189_0:7$ ip community-list expanded c182 permit 9 ^65000:3_0:190_0:8$ ip community-list expanded c182 permit 10 ^65000:3_0:191_0:9$ ip community-list expanded c182 permit 11 ^65000:3_0:192_0:10$ ip community-list expanded c182 permit 12 ^65000:3_0:193_0:11$ ip community-list expanded c182 permit 13 ^65000:3_0:194_0:12$ ip community-list expanded c182 permit 14 ^65000:3_0:195_0:13$ ip community-list expanded c182 permit 15 ^65000:3_0:196_0:14$ ip community-list expanded c182 permit 16 ^65000:3_0:197_0:15$ ip community-list expanded c182 permit 17 ^65000:3_0:198_0:16$ ip community-list expanded c182 permit 18 ^65000:3_0:199_0:17$ ip community-list expanded c182 permit 19 ^65000:3_0:200_0:18$ ip community-list expanded c182 permit 20 ^65000:3_0:201_0:19$ ip community-list expanded c182 permit 21 ^65000:3_0:202_0:20$ ip community-list expanded c182 permit 22 ^65000:3_0:203_0:21$ ip community-list expanded c182 permit 23 ^65000:3_0:204_0:22$ ip community-list expanded c182 permit 24 ^65000:3_0:205_0:23$ ip community-list expanded c182 permit 25 ^65000:3_0:206_0:24$ ip community-list expanded c182 permit 26 ^65000:3_0:207_0:25$ ip community-list expanded c182 permit 27 ^65000:3_0:208_0:26$ ip community-list expanded c182 permit 28 ^65000:3_0:209_0:27$ ip community-list expanded c182 permit 29 ^65000:3_0:210_0:28$ ip community-list expanded c182 permit 30 ^65000:3_0:211_0:29$ ip community-list expanded c182 permit 31 ^65000:3_0:212_0:30$ ip community-list expanded c182 permit 32 ^65000:3_0:213_0:31$ ip community-list expanded c182 permit 33 ^65000:3_0:214_0:32$ ip community-list expanded c182 permit 34 ^65000:3_0:215_0:33$ ip community-list expanded c182 permit 35 ^65000:3_0:216_0:34$ ip community-list expanded c182 permit 36 ^65000:3_0:217_0:35$ ip community-list expanded c182 permit 37 ^65000:3_0:218_0:36$ ip community-list expanded c182 permit 38 ^65000:3_0:219_0:37$ ip community-list expanded c182 permit 39 ^65000:3_0:220_0:38$ ip community-list expanded c182 permit 40 ^65000:3_0:221_0:39$ ip community-list expanded c182 permit 41 ^65000:3_0:222_0:40$ ip community-list expanded c182 permit 42 ^65000:3_0:223_0:41$ ip community-list expanded c182 permit 43 ^65000:3_0:224_0:42$ ip community-list expanded c182 permit 44 ^65000:3_0:225_0:43$ ip community-list expanded c182 permit 45 ^65000:3_0:226_0:44$ ip community-list expanded c182 permit 46 ^65000:3_0:227_0:45$ ip community-list expanded c182 permit 47 ^65000:3_0:228_0:46$ ip community-list expanded c182 permit 48 ^65000:3_0:229_0:47$ ip community-list expanded c182 permit 49 ^65000:3_0:230_0:48$ ip community-list expanded c182 permit 50 ^65000:3_0:231_0:49$ ip community-list expanded c182 permit 51 ^65000:3_0:232_0:50$ ip community-list expanded c182 permit 52 ^65000:3_0:233_0:51$ ip community-list expanded c182 permit 53 ^65000:3_0:234_0:52$ ip community-list expanded c182 permit 54 ^65000:3_0:235_0:53$ ip community-list expanded c182 permit 55 ^65000:3_0:236_0:54$ ip community-list expanded c182 permit 56 ^65000:3_0:237_0:55$ ip community-list expanded c182 permit 57 ^65000:3_0:238_0:56$ ip community-list expanded c182 permit 58 ^65000:3_0:239_0:57$ ip community-list expanded c182 permit 59 ^65000:3_0:240_0:58$ ip community-list expanded c182 permit 60 ^65000:3_0:241_0:59$ ip community-list expanded c182 permit 61 ^65000:3_0:242_0:60$ ip community-list expanded c182 permit 62 ^65000:3_0:243_0:61$ ip community-list expanded c182 permit 63 ^65000:3_0:244_0:62$ ip community-list expanded c182 permit 64 ^65000:3_0:245_0:63$ ip community-list expanded c182 permit 65 ^65000:3_0:246_0:64$ ip community-list expanded c182 permit 66 ^65000:3_0:247_0:65$ ip community-list expanded c182 permit 67 ^65000:3_0:248_0:66$ ip community-list expanded c182 permit 68 ^65000:3_0:249_0:67$ ip community-list expanded c182 permit 69 ^65000:3_0:250_0:68$ ip community-list expanded c182 permit 70 ^65000:3_0:251_0:69$ ip community-list expanded c182 permit 71 ^65000:3_0:252_0:70$ ip community-list expanded c182 permit 72 ^65000:3_0:253_0:71$ ip community-list expanded c182 permit 73 ^65000:3_0:254_0:72$ ip community-list expanded c182 permit 74 ^65000:3_0:255_0:73$ ip community-list expanded c182 permit 75 ^65000:3_0:256_0:74$ route-map calculator permit 26353 match community 1_1_181 2_1_182 2_2_91 1_2_180 1_3_179 set community 0:182 route-map calculator permit 26354 match community 1_4_178 1_5_177 1_6_176 2_7_26 1_7_175 set community 0:182 route-map calculator permit 26355 match community 1_8_174 1_9_173 1_10_172 1_11_171 1_12_170 set community 0:182 route-map calculator permit 26356 match community 2_13_14 1_13_169 1_14_168 1_15_167 1_16_166 set community 0:182 route-map calculator permit 26357 match community 1_17_165 1_18_164 1_19_163 1_20_162 1_21_161 set community 0:182 route-map calculator permit 26358 match community 1_22_160 1_23_159 1_24_158 1_25_157 1_26_156 set community 0:182 route-map calculator permit 26359 match community 1_27_155 1_28_154 1_29_153 1_30_152 1_31_151 set community 0:182 route-map calculator permit 26360 match community 1_32_150 1_33_149 1_34_148 1_35_147 1_36_146 set community 0:182 route-map calculator permit 26361 match community 1_37_145 1_38_144 1_39_143 1_40_142 1_41_141 set community 0:182 route-map calculator permit 26362 match community 1_42_140 1_43_139 1_44_138 1_45_137 1_46_136 set community 0:182 route-map calculator permit 26363 match community 1_47_135 1_48_134 1_49_133 1_50_132 1_51_131 set community 0:182 route-map calculator permit 26364 match community 1_52_130 1_53_129 1_54_128 1_55_127 1_56_126 set community 0:182 route-map calculator permit 26365 match community 1_57_125 1_58_124 1_59_123 1_60_122 1_61_121 set community 0:182 route-map calculator permit 26366 match community 1_62_120 1_63_119 1_64_118 1_65_117 1_66_116 set community 0:182 route-map calculator permit 26367 match community 1_67_115 1_68_114 1_69_113 1_70_112 1_71_111 set community 0:182 route-map calculator permit 26368 match community 1_72_110 1_73_109 1_74_108 1_75_107 1_76_106 set community 0:182 route-map calculator permit 26369 match community 1_77_105 1_78_104 1_79_103 1_80_102 1_81_101 set community 0:182 route-map calculator permit 26370 match community 1_82_100 1_83_99 1_84_98 1_85_97 1_86_96 set community 0:182 route-map calculator permit 26371 match community 1_87_95 1_88_94 1_89_93 1_90_92 1_91_91 set community 0:182 route-map calculator permit 26372 match community c4_182_1 c3_183_1 c3_184_2 c3_185_3 c3_186_4 set community 0:182 route-map calculator permit 26373 match community c3_187_5 c3_188_6 c3_189_7 c3_190_8 c3_191_9 set community 0:182 route-map calculator permit 26374 match community c3_192_10 c3_193_11 c3_194_12 c3_195_13 c3_196_14 set community 0:182 route-map calculator permit 26375 match community c3_197_15 c3_198_16 c3_199_17 c3_200_18 c3_201_19 set community 0:182 route-map calculator permit 26376 match community c3_202_20 c3_203_21 c3_204_22 c3_205_23 c3_206_24 set community 0:182 route-map calculator permit 26377 match community c3_207_25 c3_208_26 c3_209_27 c3_210_28 c3_211_29 set community 0:182 route-map calculator permit 26378 match community c3_212_30 c3_213_31 c3_214_32 c3_215_33 c3_216_34 set community 0:182 route-map calculator permit 26379 match community c3_217_35 c3_218_36 c3_219_37 c3_220_38 c3_221_39 set community 0:182 route-map calculator permit 26380 match community c3_222_40 c3_223_41 c3_224_42 c3_225_43 c3_226_44 set community 0:182 route-map calculator permit 26381 match community c3_227_45 c3_228_46 c3_229_47 c3_230_48 c3_231_49 set community 0:182 route-map calculator permit 26382 match community c3_232_50 c3_233_51 c3_234_52 c3_235_53 c3_236_54 set community 0:182 route-map calculator permit 26383 match community c3_237_55 c3_238_56 c3_239_57 c3_240_58 c3_241_59 set community 0:182 route-map calculator permit 26384 match community c3_242_60 c3_243_61 c3_244_62 c3_245_63 c3_246_64 set community 0:182 route-map calculator permit 26385 match community c3_247_65 c3_248_66 c3_249_67 c3_250_68 c3_251_69 set community 0:182 route-map calculator permit 26386 match community c3_252_70 c3_253_71 c3_254_72 c3_255_73 c3_256_74 set community 0:182 ip community-list standard 2_39_215 permit 65000:2 0:39 0:215 ip community-list standard 2_43_195 permit 65000:2 0:43 0:195 ip community-list standard 2_65_129 permit 65000:2 0:65 0:129 route-map calculator permit 26387 match community 2_39_215 2_43_195 2_65_129 set community 0:8385 ip community-list standard 2_5_247 permit 65000:2 0:5 0:247 ip community-list standard 2_13_95 permit 65000:2 0:13 0:95 ip community-list standard 2_19_65 permit 65000:2 0:19 0:65 route-map calculator permit 26388 match community 2_5_247 2_13_95 2_19_65 set community 0:1235 ip community-list standard 2_230_246 permit 65000:2 0:230 0:246 route-map calculator permit 26389 match community 2_230_246 set community 0:56580 ip community-list standard 2_156_237 permit 65000:2 0:156 0:237 ip community-list standard 2_158_234 permit 65000:2 0:158 0:234 route-map calculator permit 26390 match community 2_156_237 2_158_234 set community 0:36972 ip community-list standard 2_106_234 permit 65000:2 0:106 0:234 ip community-list standard 2_117_212 permit 65000:2 0:117 0:212 ip community-list standard 2_156_159 permit 65000:2 0:156 0:159 route-map calculator permit 26391 match community 2_106_234 2_117_212 2_156_159 set community 0:24804 ip community-list standard 2_195_253 permit 65000:2 0:195 0:253 route-map calculator permit 26392 match community 2_195_253 set community 0:49335 ip community-list standard 2_165_179 permit 65000:2 0:165 0:179 route-map calculator permit 26393 match community 2_165_179 set community 0:29535 ip community-list standard 2_117_167 permit 65000:2 0:117 0:167 route-map calculator permit 26394 match community 2_117_167 set community 0:19539 ip community-list standard 2_34_215 permit 65000:2 0:34 0:215 ip community-list standard 2_43_170 permit 65000:2 0:43 0:170 ip community-list standard 2_85_86 permit 65000:2 0:85 0:86 route-map calculator permit 26395 match community 2_34_215 2_43_170 2_85_86 set community 0:7310 ip community-list standard 2_129_187 permit 65000:2 0:129 0:187 route-map calculator permit 26396 match community 2_129_187 set community 0:24123 ip community-list standard 2_160_236 permit 65000:2 0:160 0:236 route-map calculator permit 26397 match community 2_160_236 set community 0:37760 ip community-list standard 2_36_227 permit 65000:2 0:36 0:227 route-map calculator permit 26398 match community 2_36_227 set community 0:8172 ip community-list standard 2_213_251 permit 65000:2 0:213 0:251 route-map calculator permit 26399 match community 2_213_251 set community 0:53463 ip community-list standard 2_163_167 permit 65000:2 0:163 0:167 route-map calculator permit 26400 match community 2_163_167 set community 0:27221 ip community-list standard 2_23_199 permit 65000:2 0:23 0:199 route-map calculator permit 26401 match community 2_23_199 set community 0:4577 ip community-list standard 2_71_109 permit 65000:2 0:71 0:109 route-map calculator permit 26402 match community 2_71_109 set community 0:7739 ip community-list standard 2_178_246 permit 65000:2 0:178 0:246 route-map calculator permit 26403 match community 2_178_246 set community 0:43788 ip community-list standard 2_25_71 permit 65000:2 0:25 0:71 route-map calculator permit 26404 match community 2_25_71 set community 0:1775 ip community-list standard 2_77_194 permit 65000:2 0:77 0:194 ip community-list standard 2_97_154 permit 65000:2 0:97 0:154 route-map calculator permit 26405 match community 2_77_194 2_97_154 set community 0:14938 ip community-list standard 2_145_222 permit 65000:2 0:145 0:222 ip community-list standard 2_174_185 permit 65000:2 0:174 0:185 route-map calculator permit 26406 match community 2_145_222 2_174_185 set community 0:32190 ip community-list standard 2_119_239 permit 65000:2 0:119 0:239 route-map calculator permit 26407 match community 2_119_239 set community 0:28441 ip community-list standard 2_216_241 permit 65000:2 0:216 0:241 route-map calculator permit 26408 match community 2_216_241 set community 0:52056 ip community-list standard 2_130_213 permit 65000:2 0:130 0:213 ip community-list standard 2_142_195 permit 65000:2 0:142 0:195 route-map calculator permit 26409 match community 2_130_213 2_142_195 set community 0:27690 ip community-list standard 2_135_186 permit 65000:2 0:135 0:186 ip community-list standard 2_155_162 permit 65000:2 0:155 0:162 route-map calculator permit 26410 match community 2_135_186 2_155_162 set community 0:25110 ip community-list standard 2_9_197 permit 65000:2 0:9 0:197 route-map calculator permit 26411 match community 2_9_197 set community 0:1773 ip community-list standard 2_3_115 permit 65000:2 0:3 0:115 ip community-list standard 2_5_69 permit 65000:2 0:5 0:69 ip community-list standard 2_15_23 permit 65000:2 0:15 0:23 ip community-list standard 1_89_256 permit 65000:1 0:89 0:256 ip community-list standard 1_90_255 permit 65000:1 0:90 0:255 ip community-list standard 1_91_254 permit 65000:1 0:91 0:254 ip community-list standard 1_92_253 permit 65000:1 0:92 0:253 ip community-list standard 1_93_252 permit 65000:1 0:93 0:252 ip community-list standard 1_94_251 permit 65000:1 0:94 0:251 ip community-list standard 1_95_250 permit 65000:1 0:95 0:250 ip community-list standard 1_96_249 permit 65000:1 0:96 0:249 ip community-list standard 1_97_248 permit 65000:1 0:97 0:248 ip community-list standard 1_98_247 permit 65000:1 0:98 0:247 ip community-list standard 1_99_246 permit 65000:1 0:99 0:246 ip community-list standard 1_100_245 permit 65000:1 0:100 0:245 ip community-list standard 1_101_244 permit 65000:1 0:101 0:244 ip community-list standard 1_102_243 permit 65000:1 0:102 0:243 ip community-list standard 1_103_242 permit 65000:1 0:103 0:242 ip community-list standard 1_104_241 permit 65000:1 0:104 0:241 ip community-list standard 1_105_240 permit 65000:1 0:105 0:240 ip community-list standard 1_106_239 permit 65000:1 0:106 0:239 ip community-list standard 1_107_238 permit 65000:1 0:107 0:238 ip community-list standard 1_108_237 permit 65000:1 0:108 0:237 ip community-list standard 1_109_236 permit 65000:1 0:109 0:236 ip community-list standard 1_110_235 permit 65000:1 0:110 0:235 ip community-list standard 1_111_234 permit 65000:1 0:111 0:234 ip community-list standard 1_112_233 permit 65000:1 0:112 0:233 ip community-list standard 1_113_232 permit 65000:1 0:113 0:232 ip community-list standard 1_114_231 permit 65000:1 0:114 0:231 ip community-list standard 1_115_230 permit 65000:1 0:115 0:230 ip community-list standard 1_116_229 permit 65000:1 0:116 0:229 ip community-list standard 1_117_228 permit 65000:1 0:117 0:228 ip community-list standard 1_118_227 permit 65000:1 0:118 0:227 ip community-list standard 1_119_226 permit 65000:1 0:119 0:226 ip community-list standard 1_120_225 permit 65000:1 0:120 0:225 ip community-list standard 1_121_224 permit 65000:1 0:121 0:224 ip community-list standard 1_122_223 permit 65000:1 0:122 0:223 ip community-list standard 1_123_222 permit 65000:1 0:123 0:222 ip community-list standard 1_124_221 permit 65000:1 0:124 0:221 ip community-list standard 1_125_220 permit 65000:1 0:125 0:220 ip community-list standard 1_126_219 permit 65000:1 0:126 0:219 ip community-list standard 1_127_218 permit 65000:1 0:127 0:218 ip community-list standard 1_128_217 permit 65000:1 0:128 0:217 ip community-list standard 1_129_216 permit 65000:1 0:129 0:216 ip community-list standard 1_130_215 permit 65000:1 0:130 0:215 ip community-list standard 1_131_214 permit 65000:1 0:131 0:214 ip community-list standard 1_132_213 permit 65000:1 0:132 0:213 ip community-list standard 1_133_212 permit 65000:1 0:133 0:212 ip community-list standard 1_134_211 permit 65000:1 0:134 0:211 ip community-list standard 1_135_210 permit 65000:1 0:135 0:210 ip community-list standard 1_136_209 permit 65000:1 0:136 0:209 ip community-list standard 1_137_208 permit 65000:1 0:137 0:208 ip community-list standard 1_138_207 permit 65000:1 0:138 0:207 ip community-list standard 1_139_206 permit 65000:1 0:139 0:206 ip community-list standard 1_140_205 permit 65000:1 0:140 0:205 ip community-list standard 1_141_204 permit 65000:1 0:141 0:204 ip community-list standard 1_142_203 permit 65000:1 0:142 0:203 ip community-list standard 1_143_202 permit 65000:1 0:143 0:202 ip community-list standard 1_144_201 permit 65000:1 0:144 0:201 ip community-list standard 1_145_200 permit 65000:1 0:145 0:200 ip community-list standard 1_146_199 permit 65000:1 0:146 0:199 ip community-list standard 1_147_198 permit 65000:1 0:147 0:198 ip community-list standard 1_148_197 permit 65000:1 0:148 0:197 ip community-list standard 1_149_196 permit 65000:1 0:149 0:196 ip community-list standard 1_150_195 permit 65000:1 0:150 0:195 ip community-list standard 1_151_194 permit 65000:1 0:151 0:194 ip community-list standard 1_152_193 permit 65000:1 0:152 0:193 ip community-list standard 1_153_192 permit 65000:1 0:153 0:192 ip community-list standard 1_154_191 permit 65000:1 0:154 0:191 ip community-list standard 1_155_190 permit 65000:1 0:155 0:190 ip community-list standard 1_156_189 permit 65000:1 0:156 0:189 ip community-list standard 1_157_188 permit 65000:1 0:157 0:188 ip community-list standard 1_158_187 permit 65000:1 0:158 0:187 ip community-list standard 1_159_186 permit 65000:1 0:159 0:186 ip community-list standard 1_160_185 permit 65000:1 0:160 0:185 ip community-list standard 1_161_184 permit 65000:1 0:161 0:184 ip community-list standard 1_162_183 permit 65000:1 0:162 0:183 ip community-list standard 1_163_182 permit 65000:1 0:163 0:182 ip community-list standard 1_164_181 permit 65000:1 0:164 0:181 ip community-list standard 1_165_180 permit 65000:1 0:165 0:180 ip community-list standard 1_166_179 permit 65000:1 0:166 0:179 ip community-list standard 1_167_178 permit 65000:1 0:167 0:178 ip community-list standard 1_168_177 permit 65000:1 0:168 0:177 ip community-list standard 1_169_176 permit 65000:1 0:169 0:176 ip community-list standard 1_170_175 permit 65000:1 0:170 0:175 ip community-list standard 1_171_174 permit 65000:1 0:171 0:174 ip community-list standard 1_172_173 permit 65000:1 0:172 0:173 route-map calculator permit 26412 match community 2_3_115 2_5_69 2_15_23 1_89_256 1_90_255 set community 0:345 route-map calculator permit 26413 match community 1_91_254 1_92_253 1_93_252 1_94_251 1_95_250 set community 0:345 route-map calculator permit 26414 match community 1_96_249 1_97_248 1_98_247 1_99_246 1_100_245 set community 0:345 route-map calculator permit 26415 match community 1_101_244 1_102_243 1_103_242 1_104_241 1_105_240 set community 0:345 route-map calculator permit 26416 match community 1_106_239 1_107_238 1_108_237 1_109_236 1_110_235 set community 0:345 route-map calculator permit 26417 match community 1_111_234 1_112_233 1_113_232 1_114_231 1_115_230 set community 0:345 route-map calculator permit 26418 match community 1_116_229 1_117_228 1_118_227 1_119_226 1_120_225 set community 0:345 route-map calculator permit 26419 match community 1_121_224 1_122_223 1_123_222 1_124_221 1_125_220 set community 0:345 route-map calculator permit 26420 match community 1_126_219 1_127_218 1_128_217 1_129_216 1_130_215 set community 0:345 route-map calculator permit 26421 match community 1_131_214 1_132_213 1_133_212 1_134_211 1_135_210 set community 0:345 route-map calculator permit 26422 match community 1_136_209 1_137_208 1_138_207 1_139_206 1_140_205 set community 0:345 route-map calculator permit 26423 match community 1_141_204 1_142_203 1_143_202 1_144_201 1_145_200 set community 0:345 route-map calculator permit 26424 match community 1_146_199 1_147_198 1_148_197 1_149_196 1_150_195 set community 0:345 route-map calculator permit 26425 match community 1_151_194 1_152_193 1_153_192 1_154_191 1_155_190 set community 0:345 route-map calculator permit 26426 match community 1_156_189 1_157_188 1_158_187 1_159_186 1_160_185 set community 0:345 route-map calculator permit 26427 match community 1_161_184 1_162_183 1_163_182 1_164_181 1_165_180 set community 0:345 route-map calculator permit 26428 match community 1_166_179 1_167_178 1_168_177 1_169_176 1_170_175 set community 0:345 route-map calculator permit 26429 match community 1_171_174 1_172_173 set community 0:345 ip community-list standard 2_17_167 permit 65000:2 0:17 0:167 route-map calculator permit 26430 match community 2_17_167 set community 0:2839 ip community-list standard 2_133_233 permit 65000:2 0:133 0:233 route-map calculator permit 26431 match community 2_133_233 set community 0:30989 ip community-list standard 2_159_253 permit 65000:2 0:159 0:253 route-map calculator permit 26432 match community 2_159_253 set community 0:40227 ip community-list standard 2_130_178 permit 65000:2 0:130 0:178 route-map calculator permit 26433 match community 2_130_178 set community 0:23140 ip community-list standard 2_32_223 permit 65000:2 0:32 0:223 route-map calculator permit 26434 match community 2_32_223 set community 0:7136 ip community-list standard 2_3_224 permit 65000:2 0:3 0:224 ip community-list standard 2_4_168 permit 65000:2 0:4 0:168 ip community-list standard 2_6_112 permit 65000:2 0:6 0:112 ip community-list standard 2_7_96 permit 65000:2 0:7 0:96 ip community-list standard 2_8_84 permit 65000:2 0:8 0:84 ip community-list standard 2_12_56 permit 65000:2 0:12 0:56 ip community-list standard 2_14_48 permit 65000:2 0:14 0:48 ip community-list standard 2_16_42 permit 65000:2 0:16 0:42 ip community-list standard 2_21_32 permit 65000:2 0:21 0:32 ip community-list standard 2_24_28 permit 65000:2 0:24 0:28 route-map calculator permit 26435 match community 2_3_224 2_4_168 2_6_112 2_7_96 2_8_84 set community 0:672 route-map calculator permit 26436 match community 2_12_56 2_14_48 2_16_42 2_21_32 2_24_28 set community 0:672 ip community-list standard 2_24_232 permit 65000:2 0:24 0:232 ip community-list standard 2_29_192 permit 65000:2 0:29 0:192 ip community-list standard 2_32_174 permit 65000:2 0:32 0:174 ip community-list standard 2_48_116 permit 65000:2 0:48 0:116 ip community-list standard 2_58_96 permit 65000:2 0:58 0:96 ip community-list standard 2_64_87 permit 65000:2 0:64 0:87 route-map calculator permit 26437 match community 2_24_232 2_29_192 2_32_174 2_48_116 2_58_96 set community 0:5568 route-map calculator permit 26438 match community 2_64_87 set community 0:5568 ip community-list standard 2_210_230 permit 65000:2 0:210 0:230 route-map calculator permit 26439 match community 2_210_230 set community 0:48300 ip community-list standard 2_98_133 permit 65000:2 0:98 0:133 route-map calculator permit 26440 match community 2_98_133 set community 0:13034 ip community-list standard 2_187_193 permit 65000:2 0:187 0:193 route-map calculator permit 26441 match community 2_187_193 set community 0:36091 ip community-list standard 2_50_246 permit 65000:2 0:50 0:246 ip community-list standard 2_60_205 permit 65000:2 0:60 0:205 ip community-list standard 2_75_164 permit 65000:2 0:75 0:164 ip community-list standard 2_82_150 permit 65000:2 0:82 0:150 ip community-list standard 2_100_123 permit 65000:2 0:100 0:123 route-map calculator permit 26442 match community 2_50_246 2_60_205 2_75_164 2_82_150 2_100_123 set community 0:12300 ip community-list standard 2_173_221 permit 65000:2 0:173 0:221 route-map calculator permit 26443 match community 2_173_221 set community 0:38233 ip community-list standard 2_12_184 permit 65000:2 0:12 0:184 ip community-list standard 2_16_138 permit 65000:2 0:16 0:138 ip community-list standard 2_23_96 permit 65000:2 0:23 0:96 ip community-list standard 2_24_92 permit 65000:2 0:24 0:92 ip community-list standard 2_32_69 permit 65000:2 0:32 0:69 ip community-list standard 2_46_48 permit 65000:2 0:46 0:48 route-map calculator permit 26444 match community 2_12_184 2_16_138 2_23_96 2_24_92 2_32_69 set community 0:2208 route-map calculator permit 26445 match community 2_46_48 set community 0:2208 ip community-list standard 2_100_234 permit 65000:2 0:100 0:234 ip community-list standard 2_104_225 permit 65000:2 0:104 0:225 ip community-list standard 2_117_200 permit 65000:2 0:117 0:200 ip community-list standard 2_120_195 permit 65000:2 0:120 0:195 ip community-list standard 2_130_180 permit 65000:2 0:130 0:180 ip community-list standard 2_150_156 permit 65000:2 0:150 0:156 route-map calculator permit 26446 match community 2_100_234 2_104_225 2_117_200 2_120_195 2_130_180 set community 0:23400 route-map calculator permit 26447 match community 2_150_156 set community 0:23400 ip community-list standard 2_150_193 permit 65000:2 0:150 0:193 route-map calculator permit 26448 match community 2_150_193 set community 0:28950 ip community-list standard 2_7_233 permit 65000:2 0:7 0:233 route-map calculator permit 26449 match community 2_7_233 set community 0:1631 ip community-list standard 2_71_89 permit 65000:2 0:71 0:89 route-map calculator permit 26450 match community 2_71_89 set community 0:6319 ip community-list standard 2_71_256 permit 65000:2 0:71 0:256 ip community-list standard 2_128_142 permit 65000:2 0:128 0:142 route-map calculator permit 26451 match community 2_71_256 2_128_142 set community 0:18176 ip community-list standard 2_114_207 permit 65000:2 0:114 0:207 ip community-list standard 2_138_171 permit 65000:2 0:138 0:171 route-map calculator permit 26452 match community 2_114_207 2_138_171 set community 0:23598 ip community-list standard 2_127_229 permit 65000:2 0:127 0:229 route-map calculator permit 26453 match community 2_127_229 set community 0:29083 ip community-list standard 2_134_242 permit 65000:2 0:134 0:242 route-map calculator permit 26454 match community 2_134_242 set community 0:32428 ip community-list standard 2_71_193 permit 65000:2 0:71 0:193 route-map calculator permit 26455 match community 2_71_193 set community 0:13703 ip community-list standard 2_42_207 permit 65000:2 0:42 0:207 ip community-list standard 2_46_189 permit 65000:2 0:46 0:189 ip community-list standard 2_54_161 permit 65000:2 0:54 0:161 ip community-list standard 2_63_138 permit 65000:2 0:63 0:138 ip community-list standard 2_69_126 permit 65000:2 0:69 0:126 route-map calculator permit 26456 match community 2_42_207 2_46_189 2_54_161 2_63_138 2_69_126 set community 0:8694 ip community-list standard 2_100_222 permit 65000:2 0:100 0:222 ip community-list standard 2_111_200 permit 65000:2 0:111 0:200 ip community-list standard 2_120_185 permit 65000:2 0:120 0:185 ip community-list standard 2_148_150 permit 65000:2 0:148 0:150 route-map calculator permit 26457 match community 2_100_222 2_111_200 2_120_185 2_148_150 set community 0:22200 ip community-list standard 2_91_181 permit 65000:2 0:91 0:181 route-map calculator permit 26458 match community 2_91_181 set community 0:16471 ip community-list standard 2_37_148 permit 65000:2 0:37 0:148 ip community-list standard 2_74_74 permit 65000:2 0:74 0:74 route-map calculator permit 26459 match community 2_37_148 2_74_74 set community 0:5476 ip community-list standard 2_142_167 permit 65000:2 0:142 0:167 route-map calculator permit 26460 match community 2_142_167 set community 0:23714 ip community-list standard 2_10_155 permit 65000:2 0:10 0:155 ip community-list standard 2_25_62 permit 65000:2 0:25 0:62 ip community-list standard 2_31_50 permit 65000:2 0:31 0:50 route-map calculator permit 26461 match community 2_10_155 2_25_62 2_31_50 set community 0:1550 ip community-list standard 2_207_207 permit 65000:2 0:207 0:207 route-map calculator permit 26462 match community 2_207_207 set community 0:42849 ip community-list standard 2_194_251 permit 65000:2 0:194 0:251 route-map calculator permit 26463 match community 2_194_251 set community 0:48694 ip community-list standard 2_49_149 permit 65000:2 0:49 0:149 route-map calculator permit 26464 match community 2_49_149 set community 0:7301 ip community-list standard 2_39_208 permit 65000:2 0:39 0:208 ip community-list standard 2_48_169 permit 65000:2 0:48 0:169 ip community-list standard 2_52_156 permit 65000:2 0:52 0:156 ip community-list standard 2_78_104 permit 65000:2 0:78 0:104 route-map calculator permit 26465 match community 2_39_208 2_48_169 2_52_156 2_78_104 set community 0:8112 ip community-list standard 2_35_61 permit 65000:2 0:35 0:61 route-map calculator permit 26466 match community 2_35_61 set community 0:2135 ip community-list standard 2_2_133 permit 65000:2 0:2 0:133 ip community-list standard 2_7_38 permit 65000:2 0:7 0:38 ip community-list standard 1_10_256 permit 65000:1 0:10 0:256 ip community-list standard 1_11_255 permit 65000:1 0:11 0:255 ip community-list standard 1_12_254 permit 65000:1 0:12 0:254 ip community-list standard 1_13_253 permit 65000:1 0:13 0:253 ip community-list standard 2_14_19 permit 65000:2 0:14 0:19 ip community-list standard 1_14_252 permit 65000:1 0:14 0:252 ip community-list standard 1_15_251 permit 65000:1 0:15 0:251 ip community-list standard 1_16_250 permit 65000:1 0:16 0:250 ip community-list standard 1_17_249 permit 65000:1 0:17 0:249 ip community-list standard 1_18_248 permit 65000:1 0:18 0:248 ip community-list standard 1_19_247 permit 65000:1 0:19 0:247 ip community-list standard 1_20_246 permit 65000:1 0:20 0:246 ip community-list standard 1_21_245 permit 65000:1 0:21 0:245 ip community-list standard 1_22_244 permit 65000:1 0:22 0:244 ip community-list standard 1_23_243 permit 65000:1 0:23 0:243 ip community-list standard 1_24_242 permit 65000:1 0:24 0:242 ip community-list standard 1_25_241 permit 65000:1 0:25 0:241 ip community-list standard 1_26_240 permit 65000:1 0:26 0:240 ip community-list standard 1_27_239 permit 65000:1 0:27 0:239 ip community-list standard 1_28_238 permit 65000:1 0:28 0:238 ip community-list standard 1_29_237 permit 65000:1 0:29 0:237 ip community-list standard 1_30_236 permit 65000:1 0:30 0:236 ip community-list standard 1_31_235 permit 65000:1 0:31 0:235 ip community-list standard 1_32_234 permit 65000:1 0:32 0:234 ip community-list standard 1_33_233 permit 65000:1 0:33 0:233 ip community-list standard 1_34_232 permit 65000:1 0:34 0:232 ip community-list standard 1_35_231 permit 65000:1 0:35 0:231 ip community-list standard 1_36_230 permit 65000:1 0:36 0:230 ip community-list standard 1_37_229 permit 65000:1 0:37 0:229 ip community-list standard 1_38_228 permit 65000:1 0:38 0:228 ip community-list standard 1_39_227 permit 65000:1 0:39 0:227 ip community-list standard 1_40_226 permit 65000:1 0:40 0:226 ip community-list standard 1_41_225 permit 65000:1 0:41 0:225 ip community-list standard 1_42_224 permit 65000:1 0:42 0:224 ip community-list standard 1_43_223 permit 65000:1 0:43 0:223 ip community-list standard 1_44_222 permit 65000:1 0:44 0:222 ip community-list standard 1_45_221 permit 65000:1 0:45 0:221 ip community-list standard 1_46_220 permit 65000:1 0:46 0:220 ip community-list standard 1_47_219 permit 65000:1 0:47 0:219 ip community-list standard 1_48_218 permit 65000:1 0:48 0:218 ip community-list standard 1_49_217 permit 65000:1 0:49 0:217 ip community-list standard 1_50_216 permit 65000:1 0:50 0:216 ip community-list standard 1_51_215 permit 65000:1 0:51 0:215 ip community-list standard 1_52_214 permit 65000:1 0:52 0:214 ip community-list standard 1_53_213 permit 65000:1 0:53 0:213 ip community-list standard 1_54_212 permit 65000:1 0:54 0:212 ip community-list standard 1_55_211 permit 65000:1 0:55 0:211 ip community-list standard 1_56_210 permit 65000:1 0:56 0:210 ip community-list standard 1_57_209 permit 65000:1 0:57 0:209 ip community-list standard 1_58_208 permit 65000:1 0:58 0:208 ip community-list standard 1_59_207 permit 65000:1 0:59 0:207 ip community-list standard 1_60_206 permit 65000:1 0:60 0:206 ip community-list standard 1_61_205 permit 65000:1 0:61 0:205 ip community-list standard 1_62_204 permit 65000:1 0:62 0:204 ip community-list standard 1_63_203 permit 65000:1 0:63 0:203 ip community-list standard 1_64_202 permit 65000:1 0:64 0:202 ip community-list standard 1_65_201 permit 65000:1 0:65 0:201 ip community-list standard 1_66_200 permit 65000:1 0:66 0:200 ip community-list standard 1_67_199 permit 65000:1 0:67 0:199 ip community-list standard 1_68_198 permit 65000:1 0:68 0:198 ip community-list standard 1_69_197 permit 65000:1 0:69 0:197 ip community-list standard 1_70_196 permit 65000:1 0:70 0:196 ip community-list standard 1_71_195 permit 65000:1 0:71 0:195 ip community-list standard 1_72_194 permit 65000:1 0:72 0:194 ip community-list standard 1_73_193 permit 65000:1 0:73 0:193 ip community-list standard 1_74_192 permit 65000:1 0:74 0:192 ip community-list standard 1_75_191 permit 65000:1 0:75 0:191 ip community-list standard 1_76_190 permit 65000:1 0:76 0:190 ip community-list standard 1_77_189 permit 65000:1 0:77 0:189 ip community-list standard 1_78_188 permit 65000:1 0:78 0:188 ip community-list standard 1_79_187 permit 65000:1 0:79 0:187 ip community-list standard 1_80_186 permit 65000:1 0:80 0:186 ip community-list standard 1_81_185 permit 65000:1 0:81 0:185 ip community-list standard 1_82_184 permit 65000:1 0:82 0:184 ip community-list standard 1_83_183 permit 65000:1 0:83 0:183 ip community-list standard 1_84_182 permit 65000:1 0:84 0:182 ip community-list standard 1_85_181 permit 65000:1 0:85 0:181 ip community-list standard 1_86_180 permit 65000:1 0:86 0:180 ip community-list standard 1_87_179 permit 65000:1 0:87 0:179 ip community-list standard 1_88_178 permit 65000:1 0:88 0:178 ip community-list standard 1_89_177 permit 65000:1 0:89 0:177 ip community-list standard 1_90_176 permit 65000:1 0:90 0:176 ip community-list standard 1_91_175 permit 65000:1 0:91 0:175 ip community-list standard 1_92_174 permit 65000:1 0:92 0:174 ip community-list standard 1_93_173 permit 65000:1 0:93 0:173 ip community-list standard 1_94_172 permit 65000:1 0:94 0:172 ip community-list standard 1_95_171 permit 65000:1 0:95 0:171 ip community-list standard 1_96_170 permit 65000:1 0:96 0:170 ip community-list standard 1_97_169 permit 65000:1 0:97 0:169 ip community-list standard 1_98_168 permit 65000:1 0:98 0:168 ip community-list standard 1_99_167 permit 65000:1 0:99 0:167 ip community-list standard 1_100_166 permit 65000:1 0:100 0:166 ip community-list standard 1_101_165 permit 65000:1 0:101 0:165 ip community-list standard 1_102_164 permit 65000:1 0:102 0:164 ip community-list standard 1_103_163 permit 65000:1 0:103 0:163 ip community-list standard 1_104_162 permit 65000:1 0:104 0:162 ip community-list standard 1_105_161 permit 65000:1 0:105 0:161 ip community-list standard 1_106_160 permit 65000:1 0:106 0:160 ip community-list standard 1_107_159 permit 65000:1 0:107 0:159 ip community-list standard 1_108_158 permit 65000:1 0:108 0:158 ip community-list standard 1_109_157 permit 65000:1 0:109 0:157 ip community-list standard 1_110_156 permit 65000:1 0:110 0:156 ip community-list standard 1_111_155 permit 65000:1 0:111 0:155 ip community-list standard 1_112_154 permit 65000:1 0:112 0:154 ip community-list standard 1_113_153 permit 65000:1 0:113 0:153 ip community-list standard 1_114_152 permit 65000:1 0:114 0:152 ip community-list standard 1_115_151 permit 65000:1 0:115 0:151 ip community-list standard 1_116_150 permit 65000:1 0:116 0:150 ip community-list standard 1_117_149 permit 65000:1 0:117 0:149 ip community-list standard 1_118_148 permit 65000:1 0:118 0:148 ip community-list standard 1_119_147 permit 65000:1 0:119 0:147 ip community-list standard 1_120_146 permit 65000:1 0:120 0:146 ip community-list standard 1_121_145 permit 65000:1 0:121 0:145 ip community-list standard 1_122_144 permit 65000:1 0:122 0:144 ip community-list standard 1_123_143 permit 65000:1 0:123 0:143 ip community-list standard 1_124_142 permit 65000:1 0:124 0:142 ip community-list standard 1_125_141 permit 65000:1 0:125 0:141 ip community-list standard 1_126_140 permit 65000:1 0:126 0:140 ip community-list standard 1_127_139 permit 65000:1 0:127 0:139 ip community-list standard 1_128_138 permit 65000:1 0:128 0:138 ip community-list standard 1_129_137 permit 65000:1 0:129 0:137 ip community-list standard 1_130_136 permit 65000:1 0:130 0:136 ip community-list standard 1_131_135 permit 65000:1 0:131 0:135 ip community-list standard 1_132_134 permit 65000:1 0:132 0:134 ip community-list standard 1_133_133 permit 65000:1 0:133 0:133 route-map calculator permit 26467 match community 2_2_133 2_7_38 1_10_256 1_11_255 1_12_254 set community 0:266 route-map calculator permit 26468 match community 1_13_253 2_14_19 1_14_252 1_15_251 1_16_250 set community 0:266 route-map calculator permit 26469 match community 1_17_249 1_18_248 1_19_247 1_20_246 1_21_245 set community 0:266 route-map calculator permit 26470 match community 1_22_244 1_23_243 1_24_242 1_25_241 1_26_240 set community 0:266 route-map calculator permit 26471 match community 1_27_239 1_28_238 1_29_237 1_30_236 1_31_235 set community 0:266 route-map calculator permit 26472 match community 1_32_234 1_33_233 1_34_232 1_35_231 1_36_230 set community 0:266 route-map calculator permit 26473 match community 1_37_229 1_38_228 1_39_227 1_40_226 1_41_225 set community 0:266 route-map calculator permit 26474 match community 1_42_224 1_43_223 1_44_222 1_45_221 1_46_220 set community 0:266 route-map calculator permit 26475 match community 1_47_219 1_48_218 1_49_217 1_50_216 1_51_215 set community 0:266 route-map calculator permit 26476 match community 1_52_214 1_53_213 1_54_212 1_55_211 1_56_210 set community 0:266 route-map calculator permit 26477 match community 1_57_209 1_58_208 1_59_207 1_60_206 1_61_205 set community 0:266 route-map calculator permit 26478 match community 1_62_204 1_63_203 1_64_202 1_65_201 1_66_200 set community 0:266 route-map calculator permit 26479 match community 1_67_199 1_68_198 1_69_197 1_70_196 1_71_195 set community 0:266 route-map calculator permit 26480 match community 1_72_194 1_73_193 1_74_192 1_75_191 1_76_190 set community 0:266 route-map calculator permit 26481 match community 1_77_189 1_78_188 1_79_187 1_80_186 1_81_185 set community 0:266 route-map calculator permit 26482 match community 1_82_184 1_83_183 1_84_182 1_85_181 1_86_180 set community 0:266 route-map calculator permit 26483 match community 1_87_179 1_88_178 1_89_177 1_90_176 1_91_175 set community 0:266 route-map calculator permit 26484 match community 1_92_174 1_93_173 1_94_172 1_95_171 1_96_170 set community 0:266 route-map calculator permit 26485 match community 1_97_169 1_98_168 1_99_167 1_100_166 1_101_165 set community 0:266 route-map calculator permit 26486 match community 1_102_164 1_103_163 1_104_162 1_105_161 1_106_160 set community 0:266 route-map calculator permit 26487 match community 1_107_159 1_108_158 1_109_157 1_110_156 1_111_155 set community 0:266 route-map calculator permit 26488 match community 1_112_154 1_113_153 1_114_152 1_115_151 1_116_150 set community 0:266 route-map calculator permit 26489 match community 1_117_149 1_118_148 1_119_147 1_120_146 1_121_145 set community 0:266 route-map calculator permit 26490 match community 1_122_144 1_123_143 1_124_142 1_125_141 1_126_140 set community 0:266 route-map calculator permit 26491 match community 1_127_139 1_128_138 1_129_137 1_130_136 1_131_135 set community 0:266 route-map calculator permit 26492 match community 1_132_134 1_133_133 set community 0:266 ip community-list standard 2_41_147 permit 65000:2 0:41 0:147 ip community-list standard 2_49_123 permit 65000:2 0:49 0:123 route-map calculator permit 26493 match community 2_41_147 2_49_123 set community 0:6027 ip community-list standard 2_109_234 permit 65000:2 0:109 0:234 ip community-list standard 2_117_218 permit 65000:2 0:117 0:218 route-map calculator permit 26494 match community 2_109_234 2_117_218 set community 0:25506 ip community-list standard 2_55_183 permit 65000:2 0:55 0:183 ip community-list standard 2_61_165 permit 65000:2 0:61 0:165 route-map calculator permit 26495 match community 2_55_183 2_61_165 set community 0:10065 ip community-list standard 2_7_119 permit 65000:2 0:7 0:119 ip community-list standard 2_17_49 permit 65000:2 0:17 0:49 route-map calculator permit 26496 match community 2_7_119 2_17_49 set community 0:833 ip community-list standard 2_121_241 permit 65000:2 0:121 0:241 route-map calculator permit 26497 match community 2_121_241 set community 0:29161 ip community-list standard 2_102_211 permit 65000:2 0:102 0:211 route-map calculator permit 26498 match community 2_102_211 set community 0:21522 ip community-list standard 2_118_219 permit 65000:2 0:118 0:219 ip community-list standard 2_146_177 permit 65000:2 0:146 0:177 route-map calculator permit 26499 match community 2_118_219 2_146_177 set community 0:25842 ip community-list standard 2_68_207 permit 65000:2 0:68 0:207 ip community-list standard 2_69_204 permit 65000:2 0:69 0:204 ip community-list standard 2_92_153 permit 65000:2 0:92 0:153 ip community-list standard 2_102_138 permit 65000:2 0:102 0:138 route-map calculator permit 26500 match community 2_68_207 2_69_204 2_92_153 2_102_138 set community 0:14076 ip community-list standard 2_87_107 permit 65000:2 0:87 0:107 route-map calculator permit 26501 match community 2_87_107 set community 0:9309 ip community-list standard 2_22_146 permit 65000:2 0:22 0:146 ip community-list standard 2_44_73 permit 65000:2 0:44 0:73 route-map calculator permit 26502 match community 2_22_146 2_44_73 set community 0:3212 ip community-list standard 2_7_43 permit 65000:2 0:7 0:43 ip community-list standard 1_45_256 permit 65000:1 0:45 0:256 ip community-list standard 1_46_255 permit 65000:1 0:46 0:255 ip community-list standard 1_47_254 permit 65000:1 0:47 0:254 ip community-list standard 1_48_253 permit 65000:1 0:48 0:253 ip community-list standard 1_49_252 permit 65000:1 0:49 0:252 ip community-list standard 1_50_251 permit 65000:1 0:50 0:251 ip community-list standard 1_51_250 permit 65000:1 0:51 0:250 ip community-list standard 1_52_249 permit 65000:1 0:52 0:249 ip community-list standard 1_53_248 permit 65000:1 0:53 0:248 ip community-list standard 1_54_247 permit 65000:1 0:54 0:247 ip community-list standard 1_55_246 permit 65000:1 0:55 0:246 ip community-list standard 1_56_245 permit 65000:1 0:56 0:245 ip community-list standard 1_57_244 permit 65000:1 0:57 0:244 ip community-list standard 1_58_243 permit 65000:1 0:58 0:243 ip community-list standard 1_59_242 permit 65000:1 0:59 0:242 ip community-list standard 1_60_241 permit 65000:1 0:60 0:241 ip community-list standard 1_61_240 permit 65000:1 0:61 0:240 ip community-list standard 1_62_239 permit 65000:1 0:62 0:239 ip community-list standard 1_63_238 permit 65000:1 0:63 0:238 ip community-list standard 1_64_237 permit 65000:1 0:64 0:237 ip community-list standard 1_65_236 permit 65000:1 0:65 0:236 ip community-list standard 1_66_235 permit 65000:1 0:66 0:235 ip community-list standard 1_67_234 permit 65000:1 0:67 0:234 ip community-list standard 1_68_233 permit 65000:1 0:68 0:233 ip community-list standard 1_69_232 permit 65000:1 0:69 0:232 ip community-list standard 1_70_231 permit 65000:1 0:70 0:231 ip community-list standard 1_71_230 permit 65000:1 0:71 0:230 ip community-list standard 1_72_229 permit 65000:1 0:72 0:229 ip community-list standard 1_73_228 permit 65000:1 0:73 0:228 ip community-list standard 1_74_227 permit 65000:1 0:74 0:227 ip community-list standard 1_75_226 permit 65000:1 0:75 0:226 ip community-list standard 1_76_225 permit 65000:1 0:76 0:225 ip community-list standard 1_77_224 permit 65000:1 0:77 0:224 ip community-list standard 1_78_223 permit 65000:1 0:78 0:223 ip community-list standard 1_79_222 permit 65000:1 0:79 0:222 ip community-list standard 1_80_221 permit 65000:1 0:80 0:221 ip community-list standard 1_81_220 permit 65000:1 0:81 0:220 ip community-list standard 1_82_219 permit 65000:1 0:82 0:219 ip community-list standard 1_83_218 permit 65000:1 0:83 0:218 ip community-list standard 1_84_217 permit 65000:1 0:84 0:217 ip community-list standard 1_85_216 permit 65000:1 0:85 0:216 ip community-list standard 1_86_215 permit 65000:1 0:86 0:215 ip community-list standard 1_87_214 permit 65000:1 0:87 0:214 ip community-list standard 1_88_213 permit 65000:1 0:88 0:213 ip community-list standard 1_89_212 permit 65000:1 0:89 0:212 ip community-list standard 1_90_211 permit 65000:1 0:90 0:211 ip community-list standard 1_91_210 permit 65000:1 0:91 0:210 ip community-list standard 1_92_209 permit 65000:1 0:92 0:209 ip community-list standard 1_93_208 permit 65000:1 0:93 0:208 ip community-list standard 1_94_207 permit 65000:1 0:94 0:207 ip community-list standard 1_95_206 permit 65000:1 0:95 0:206 ip community-list standard 1_96_205 permit 65000:1 0:96 0:205 ip community-list standard 1_97_204 permit 65000:1 0:97 0:204 ip community-list standard 1_98_203 permit 65000:1 0:98 0:203 ip community-list standard 1_99_202 permit 65000:1 0:99 0:202 ip community-list standard 1_100_201 permit 65000:1 0:100 0:201 ip community-list standard 1_101_200 permit 65000:1 0:101 0:200 ip community-list standard 1_102_199 permit 65000:1 0:102 0:199 ip community-list standard 1_103_198 permit 65000:1 0:103 0:198 ip community-list standard 1_104_197 permit 65000:1 0:104 0:197 ip community-list standard 1_105_196 permit 65000:1 0:105 0:196 ip community-list standard 1_106_195 permit 65000:1 0:106 0:195 ip community-list standard 1_107_194 permit 65000:1 0:107 0:194 ip community-list standard 1_108_193 permit 65000:1 0:108 0:193 ip community-list standard 1_109_192 permit 65000:1 0:109 0:192 ip community-list standard 1_110_191 permit 65000:1 0:110 0:191 ip community-list standard 1_111_190 permit 65000:1 0:111 0:190 ip community-list standard 1_112_189 permit 65000:1 0:112 0:189 ip community-list standard 1_113_188 permit 65000:1 0:113 0:188 ip community-list standard 1_114_187 permit 65000:1 0:114 0:187 ip community-list standard 1_115_186 permit 65000:1 0:115 0:186 ip community-list standard 1_116_185 permit 65000:1 0:116 0:185 ip community-list standard 1_117_184 permit 65000:1 0:117 0:184 ip community-list standard 1_118_183 permit 65000:1 0:118 0:183 ip community-list standard 1_119_182 permit 65000:1 0:119 0:182 ip community-list standard 1_120_181 permit 65000:1 0:120 0:181 ip community-list standard 1_121_180 permit 65000:1 0:121 0:180 ip community-list standard 1_122_179 permit 65000:1 0:122 0:179 ip community-list standard 1_123_178 permit 65000:1 0:123 0:178 ip community-list standard 1_124_177 permit 65000:1 0:124 0:177 ip community-list standard 1_125_176 permit 65000:1 0:125 0:176 ip community-list standard 1_126_175 permit 65000:1 0:126 0:175 ip community-list standard 1_127_174 permit 65000:1 0:127 0:174 ip community-list standard 1_128_173 permit 65000:1 0:128 0:173 ip community-list standard 1_129_172 permit 65000:1 0:129 0:172 ip community-list standard 1_130_171 permit 65000:1 0:130 0:171 ip community-list standard 1_131_170 permit 65000:1 0:131 0:170 ip community-list standard 1_132_169 permit 65000:1 0:132 0:169 ip community-list standard 1_133_168 permit 65000:1 0:133 0:168 ip community-list standard 1_134_167 permit 65000:1 0:134 0:167 ip community-list standard 1_135_166 permit 65000:1 0:135 0:166 ip community-list standard 1_136_165 permit 65000:1 0:136 0:165 ip community-list standard 1_137_164 permit 65000:1 0:137 0:164 ip community-list standard 1_138_163 permit 65000:1 0:138 0:163 ip community-list standard 1_139_162 permit 65000:1 0:139 0:162 ip community-list standard 1_140_161 permit 65000:1 0:140 0:161 ip community-list standard 1_141_160 permit 65000:1 0:141 0:160 ip community-list standard 1_142_159 permit 65000:1 0:142 0:159 ip community-list standard 1_143_158 permit 65000:1 0:143 0:158 ip community-list standard 1_144_157 permit 65000:1 0:144 0:157 ip community-list standard 1_145_156 permit 65000:1 0:145 0:156 ip community-list standard 1_146_155 permit 65000:1 0:146 0:155 ip community-list standard 1_147_154 permit 65000:1 0:147 0:154 ip community-list standard 1_148_153 permit 65000:1 0:148 0:153 ip community-list standard 1_149_152 permit 65000:1 0:149 0:152 ip community-list standard 1_150_151 permit 65000:1 0:150 0:151 route-map calculator permit 26503 match community 2_7_43 1_45_256 1_46_255 1_47_254 1_48_253 set community 0:301 route-map calculator permit 26504 match community 1_49_252 1_50_251 1_51_250 1_52_249 1_53_248 set community 0:301 route-map calculator permit 26505 match community 1_54_247 1_55_246 1_56_245 1_57_244 1_58_243 set community 0:301 route-map calculator permit 26506 match community 1_59_242 1_60_241 1_61_240 1_62_239 1_63_238 set community 0:301 route-map calculator permit 26507 match community 1_64_237 1_65_236 1_66_235 1_67_234 1_68_233 set community 0:301 route-map calculator permit 26508 match community 1_69_232 1_70_231 1_71_230 1_72_229 1_73_228 set community 0:301 route-map calculator permit 26509 match community 1_74_227 1_75_226 1_76_225 1_77_224 1_78_223 set community 0:301 route-map calculator permit 26510 match community 1_79_222 1_80_221 1_81_220 1_82_219 1_83_218 set community 0:301 route-map calculator permit 26511 match community 1_84_217 1_85_216 1_86_215 1_87_214 1_88_213 set community 0:301 route-map calculator permit 26512 match community 1_89_212 1_90_211 1_91_210 1_92_209 1_93_208 set community 0:301 route-map calculator permit 26513 match community 1_94_207 1_95_206 1_96_205 1_97_204 1_98_203 set community 0:301 route-map calculator permit 26514 match community 1_99_202 1_100_201 1_101_200 1_102_199 1_103_198 set community 0:301 route-map calculator permit 26515 match community 1_104_197 1_105_196 1_106_195 1_107_194 1_108_193 set community 0:301 route-map calculator permit 26516 match community 1_109_192 1_110_191 1_111_190 1_112_189 1_113_188 set community 0:301 route-map calculator permit 26517 match community 1_114_187 1_115_186 1_116_185 1_117_184 1_118_183 set community 0:301 route-map calculator permit 26518 match community 1_119_182 1_120_181 1_121_180 1_122_179 1_123_178 set community 0:301 route-map calculator permit 26519 match community 1_124_177 1_125_176 1_126_175 1_127_174 1_128_173 set community 0:301 route-map calculator permit 26520 match community 1_129_172 1_130_171 1_131_170 1_132_169 1_133_168 set community 0:301 route-map calculator permit 26521 match community 1_134_167 1_135_166 1_136_165 1_137_164 1_138_163 set community 0:301 route-map calculator permit 26522 match community 1_139_162 1_140_161 1_141_160 1_142_159 1_143_158 set community 0:301 route-map calculator permit 26523 match community 1_144_157 1_145_156 1_146_155 1_147_154 1_148_153 set community 0:301 route-map calculator permit 26524 match community 1_149_152 1_150_151 set community 0:301 ip community-list standard 2_110_167 permit 65000:2 0:110 0:167 route-map calculator permit 26525 match community 2_110_167 set community 0:18370 ip community-list standard 2_65_169 permit 65000:2 0:65 0:169 route-map calculator permit 26526 match community 2_65_169 set community 0:10985 ip community-list standard 2_39_197 permit 65000:2 0:39 0:197 route-map calculator permit 26527 match community 2_39_197 set community 0:7683 ip community-list standard 2_8_227 permit 65000:2 0:8 0:227 route-map calculator permit 26528 match community 2_8_227 set community 0:1816 ip community-list standard 2_134_251 permit 65000:2 0:134 0:251 route-map calculator permit 26529 match community 2_134_251 set community 0:33634 ip community-list standard 2_158_169 permit 65000:2 0:158 0:169 route-map calculator permit 26530 match community 2_158_169 set community 0:26702 ip community-list standard 2_143_227 permit 65000:2 0:143 0:227 route-map calculator permit 26531 match community 2_143_227 set community 0:32461 ip community-list standard 1_1_75 permit 65000:1 0:1 0:75 ip community-list standard 2_1_76 permit 65000:2 0:1 0:76 ip community-list standard 2_2_38 permit 65000:2 0:2 0:38 ip community-list standard 1_2_74 permit 65000:1 0:2 0:74 ip community-list standard 1_3_73 permit 65000:1 0:3 0:73 ip community-list standard 2_4_19 permit 65000:2 0:4 0:19 ip community-list standard 1_4_72 permit 65000:1 0:4 0:72 ip community-list standard 1_5_71 permit 65000:1 0:5 0:71 ip community-list standard 1_6_70 permit 65000:1 0:6 0:70 ip community-list standard 1_7_69 permit 65000:1 0:7 0:69 ip community-list standard 1_8_68 permit 65000:1 0:8 0:68 ip community-list standard 1_9_67 permit 65000:1 0:9 0:67 ip community-list standard 1_10_66 permit 65000:1 0:10 0:66 ip community-list standard 1_11_65 permit 65000:1 0:11 0:65 ip community-list standard 1_12_64 permit 65000:1 0:12 0:64 ip community-list standard 1_13_63 permit 65000:1 0:13 0:63 ip community-list standard 1_14_62 permit 65000:1 0:14 0:62 ip community-list standard 1_15_61 permit 65000:1 0:15 0:61 ip community-list standard 1_16_60 permit 65000:1 0:16 0:60 ip community-list standard 1_17_59 permit 65000:1 0:17 0:59 ip community-list standard 1_18_58 permit 65000:1 0:18 0:58 ip community-list standard 1_19_57 permit 65000:1 0:19 0:57 ip community-list standard 1_20_56 permit 65000:1 0:20 0:56 ip community-list standard 1_21_55 permit 65000:1 0:21 0:55 ip community-list standard 1_22_54 permit 65000:1 0:22 0:54 ip community-list standard 1_23_53 permit 65000:1 0:23 0:53 ip community-list standard 1_24_52 permit 65000:1 0:24 0:52 ip community-list standard 1_25_51 permit 65000:1 0:25 0:51 ip community-list standard 1_26_50 permit 65000:1 0:26 0:50 ip community-list standard 1_27_49 permit 65000:1 0:27 0:49 ip community-list standard 1_28_48 permit 65000:1 0:28 0:48 ip community-list standard 1_29_47 permit 65000:1 0:29 0:47 ip community-list standard 1_30_46 permit 65000:1 0:30 0:46 ip community-list standard 1_31_45 permit 65000:1 0:31 0:45 ip community-list standard 1_32_44 permit 65000:1 0:32 0:44 ip community-list standard 1_33_43 permit 65000:1 0:33 0:43 ip community-list standard 1_34_42 permit 65000:1 0:34 0:42 ip community-list standard 1_35_41 permit 65000:1 0:35 0:41 ip community-list standard 1_36_40 permit 65000:1 0:36 0:40 ip community-list standard 1_37_39 permit 65000:1 0:37 0:39 ip community-list standard 1_38_38 permit 65000:1 0:38 0:38 ip community-list expanded c76 permit 1 ^65000:4_0:76_0:1$ ip community-list expanded c76 permit 2 ^65000:3_0:77_0:1$ ip community-list expanded c76 permit 3 ^65000:3_0:78_0:2$ ip community-list expanded c76 permit 4 ^65000:3_0:79_0:3$ ip community-list expanded c76 permit 5 ^65000:3_0:80_0:4$ ip community-list expanded c76 permit 6 ^65000:3_0:81_0:5$ ip community-list expanded c76 permit 7 ^65000:3_0:82_0:6$ ip community-list expanded c76 permit 8 ^65000:3_0:83_0:7$ ip community-list expanded c76 permit 9 ^65000:3_0:84_0:8$ ip community-list expanded c76 permit 10 ^65000:3_0:85_0:9$ ip community-list expanded c76 permit 11 ^65000:3_0:86_0:10$ ip community-list expanded c76 permit 12 ^65000:3_0:87_0:11$ ip community-list expanded c76 permit 13 ^65000:3_0:88_0:12$ ip community-list expanded c76 permit 14 ^65000:3_0:89_0:13$ ip community-list expanded c76 permit 15 ^65000:3_0:90_0:14$ ip community-list expanded c76 permit 16 ^65000:3_0:91_0:15$ ip community-list expanded c76 permit 17 ^65000:3_0:92_0:16$ ip community-list expanded c76 permit 18 ^65000:3_0:93_0:17$ ip community-list expanded c76 permit 19 ^65000:3_0:94_0:18$ ip community-list expanded c76 permit 20 ^65000:3_0:95_0:19$ ip community-list expanded c76 permit 21 ^65000:3_0:96_0:20$ ip community-list expanded c76 permit 22 ^65000:3_0:97_0:21$ ip community-list expanded c76 permit 23 ^65000:3_0:98_0:22$ ip community-list expanded c76 permit 24 ^65000:3_0:99_0:23$ ip community-list expanded c76 permit 25 ^65000:3_0:100_0:24$ ip community-list expanded c76 permit 26 ^65000:3_0:101_0:25$ ip community-list expanded c76 permit 27 ^65000:3_0:102_0:26$ ip community-list expanded c76 permit 28 ^65000:3_0:103_0:27$ ip community-list expanded c76 permit 29 ^65000:3_0:104_0:28$ ip community-list expanded c76 permit 30 ^65000:3_0:105_0:29$ ip community-list expanded c76 permit 31 ^65000:3_0:106_0:30$ ip community-list expanded c76 permit 32 ^65000:3_0:107_0:31$ ip community-list expanded c76 permit 33 ^65000:3_0:108_0:32$ ip community-list expanded c76 permit 34 ^65000:3_0:109_0:33$ ip community-list expanded c76 permit 35 ^65000:3_0:110_0:34$ ip community-list expanded c76 permit 36 ^65000:3_0:111_0:35$ ip community-list expanded c76 permit 37 ^65000:3_0:112_0:36$ ip community-list expanded c76 permit 38 ^65000:3_0:113_0:37$ ip community-list expanded c76 permit 39 ^65000:3_0:114_0:38$ ip community-list expanded c76 permit 40 ^65000:3_0:115_0:39$ ip community-list expanded c76 permit 41 ^65000:3_0:116_0:40$ ip community-list expanded c76 permit 42 ^65000:3_0:117_0:41$ ip community-list expanded c76 permit 43 ^65000:3_0:118_0:42$ ip community-list expanded c76 permit 44 ^65000:3_0:119_0:43$ ip community-list expanded c76 permit 45 ^65000:3_0:120_0:44$ ip community-list expanded c76 permit 46 ^65000:3_0:121_0:45$ ip community-list expanded c76 permit 47 ^65000:3_0:122_0:46$ ip community-list expanded c76 permit 48 ^65000:3_0:123_0:47$ ip community-list expanded c76 permit 49 ^65000:3_0:124_0:48$ ip community-list expanded c76 permit 50 ^65000:3_0:125_0:49$ ip community-list expanded c76 permit 51 ^65000:3_0:126_0:50$ ip community-list expanded c76 permit 52 ^65000:3_0:127_0:51$ ip community-list expanded c76 permit 53 ^65000:3_0:128_0:52$ ip community-list expanded c76 permit 54 ^65000:3_0:129_0:53$ ip community-list expanded c76 permit 55 ^65000:3_0:130_0:54$ ip community-list expanded c76 permit 56 ^65000:3_0:131_0:55$ ip community-list expanded c76 permit 57 ^65000:3_0:132_0:56$ ip community-list expanded c76 permit 58 ^65000:3_0:133_0:57$ ip community-list expanded c76 permit 59 ^65000:3_0:134_0:58$ ip community-list expanded c76 permit 60 ^65000:3_0:135_0:59$ ip community-list expanded c76 permit 61 ^65000:3_0:136_0:60$ ip community-list expanded c76 permit 62 ^65000:3_0:137_0:61$ ip community-list expanded c76 permit 63 ^65000:3_0:138_0:62$ ip community-list expanded c76 permit 64 ^65000:3_0:139_0:63$ ip community-list expanded c76 permit 65 ^65000:3_0:140_0:64$ ip community-list expanded c76 permit 66 ^65000:3_0:141_0:65$ ip community-list expanded c76 permit 67 ^65000:3_0:142_0:66$ ip community-list expanded c76 permit 68 ^65000:3_0:143_0:67$ ip community-list expanded c76 permit 69 ^65000:3_0:144_0:68$ ip community-list expanded c76 permit 70 ^65000:3_0:145_0:69$ ip community-list expanded c76 permit 71 ^65000:3_0:146_0:70$ ip community-list expanded c76 permit 72 ^65000:3_0:147_0:71$ ip community-list expanded c76 permit 73 ^65000:3_0:148_0:72$ ip community-list expanded c76 permit 74 ^65000:3_0:149_0:73$ ip community-list expanded c76 permit 75 ^65000:3_0:150_0:74$ ip community-list expanded c76 permit 76 ^65000:3_0:151_0:75$ ip community-list expanded c76 permit 77 ^65000:4_0:152_0:2$ ip community-list expanded c76 permit 78 ^65000:3_0:152_0:76$ ip community-list expanded c76 permit 79 ^65000:4_0:153_0:2$ ip community-list expanded c76 permit 80 ^65000:3_0:153_0:77$ ip community-list expanded c76 permit 81 ^65000:3_0:154_0:78$ ip community-list expanded c76 permit 82 ^65000:3_0:155_0:79$ ip community-list expanded c76 permit 83 ^65000:3_0:156_0:80$ ip community-list expanded c76 permit 84 ^65000:3_0:157_0:81$ ip community-list expanded c76 permit 85 ^65000:3_0:158_0:82$ ip community-list expanded c76 permit 86 ^65000:3_0:159_0:83$ ip community-list expanded c76 permit 87 ^65000:3_0:160_0:84$ ip community-list expanded c76 permit 88 ^65000:3_0:161_0:85$ ip community-list expanded c76 permit 89 ^65000:3_0:162_0:86$ ip community-list expanded c76 permit 90 ^65000:3_0:163_0:87$ ip community-list expanded c76 permit 91 ^65000:3_0:164_0:88$ ip community-list expanded c76 permit 92 ^65000:3_0:165_0:89$ ip community-list expanded c76 permit 93 ^65000:3_0:166_0:90$ ip community-list expanded c76 permit 94 ^65000:3_0:167_0:91$ ip community-list expanded c76 permit 95 ^65000:3_0:168_0:92$ ip community-list expanded c76 permit 96 ^65000:3_0:169_0:93$ ip community-list expanded c76 permit 97 ^65000:3_0:170_0:94$ ip community-list expanded c76 permit 98 ^65000:3_0:171_0:95$ ip community-list expanded c76 permit 99 ^65000:3_0:172_0:96$ ip community-list expanded c76 permit 100 ^65000:3_0:173_0:97$ ip community-list expanded c76 permit 101 ^65000:3_0:174_0:98$ ip community-list expanded c76 permit 102 ^65000:3_0:175_0:99$ ip community-list expanded c76 permit 103 ^65000:3_0:176_0:100$ ip community-list expanded c76 permit 104 ^65000:3_0:177_0:101$ ip community-list expanded c76 permit 105 ^65000:3_0:178_0:102$ ip community-list expanded c76 permit 106 ^65000:3_0:179_0:103$ ip community-list expanded c76 permit 107 ^65000:3_0:180_0:104$ ip community-list expanded c76 permit 108 ^65000:3_0:181_0:105$ ip community-list expanded c76 permit 109 ^65000:3_0:182_0:106$ ip community-list expanded c76 permit 110 ^65000:3_0:183_0:107$ ip community-list expanded c76 permit 111 ^65000:3_0:184_0:108$ ip community-list expanded c76 permit 112 ^65000:3_0:185_0:109$ ip community-list expanded c76 permit 113 ^65000:3_0:186_0:110$ ip community-list expanded c76 permit 114 ^65000:3_0:187_0:111$ ip community-list expanded c76 permit 115 ^65000:3_0:188_0:112$ ip community-list expanded c76 permit 116 ^65000:3_0:189_0:113$ ip community-list expanded c76 permit 117 ^65000:3_0:190_0:114$ ip community-list expanded c76 permit 118 ^65000:3_0:191_0:115$ ip community-list expanded c76 permit 119 ^65000:3_0:192_0:116$ ip community-list expanded c76 permit 120 ^65000:3_0:193_0:117$ ip community-list expanded c76 permit 121 ^65000:3_0:194_0:118$ ip community-list expanded c76 permit 122 ^65000:3_0:195_0:119$ ip community-list expanded c76 permit 123 ^65000:3_0:196_0:120$ ip community-list expanded c76 permit 124 ^65000:3_0:197_0:121$ ip community-list expanded c76 permit 125 ^65000:3_0:198_0:122$ ip community-list expanded c76 permit 126 ^65000:3_0:199_0:123$ ip community-list expanded c76 permit 127 ^65000:3_0:200_0:124$ ip community-list expanded c76 permit 128 ^65000:3_0:201_0:125$ ip community-list expanded c76 permit 129 ^65000:3_0:202_0:126$ ip community-list expanded c76 permit 130 ^65000:3_0:203_0:127$ ip community-list expanded c76 permit 131 ^65000:3_0:204_0:128$ ip community-list expanded c76 permit 132 ^65000:3_0:205_0:129$ ip community-list expanded c76 permit 133 ^65000:3_0:206_0:130$ ip community-list expanded c76 permit 134 ^65000:3_0:207_0:131$ ip community-list expanded c76 permit 135 ^65000:3_0:208_0:132$ ip community-list expanded c76 permit 136 ^65000:3_0:209_0:133$ ip community-list expanded c76 permit 137 ^65000:3_0:210_0:134$ ip community-list expanded c76 permit 138 ^65000:3_0:211_0:135$ ip community-list expanded c76 permit 139 ^65000:3_0:212_0:136$ ip community-list expanded c76 permit 140 ^65000:3_0:213_0:137$ ip community-list expanded c76 permit 141 ^65000:3_0:214_0:138$ ip community-list expanded c76 permit 142 ^65000:3_0:215_0:139$ ip community-list expanded c76 permit 143 ^65000:3_0:216_0:140$ ip community-list expanded c76 permit 144 ^65000:3_0:217_0:141$ ip community-list expanded c76 permit 145 ^65000:3_0:218_0:142$ ip community-list expanded c76 permit 146 ^65000:3_0:219_0:143$ ip community-list expanded c76 permit 147 ^65000:3_0:220_0:144$ ip community-list expanded c76 permit 148 ^65000:3_0:221_0:145$ ip community-list expanded c76 permit 149 ^65000:3_0:222_0:146$ ip community-list expanded c76 permit 150 ^65000:3_0:223_0:147$ ip community-list expanded c76 permit 151 ^65000:3_0:224_0:148$ ip community-list expanded c76 permit 152 ^65000:3_0:225_0:149$ ip community-list expanded c76 permit 153 ^65000:3_0:226_0:150$ ip community-list expanded c76 permit 154 ^65000:3_0:227_0:151$ ip community-list expanded c76 permit 155 ^65000:4_0:228_0:3$ ip community-list expanded c76 permit 156 ^65000:3_0:228_0:152$ ip community-list expanded c76 permit 157 ^65000:4_0:229_0:3$ ip community-list expanded c76 permit 158 ^65000:3_0:229_0:153$ ip community-list expanded c76 permit 159 ^65000:4_0:230_0:3$ ip community-list expanded c76 permit 160 ^65000:3_0:230_0:154$ ip community-list expanded c76 permit 161 ^65000:3_0:231_0:155$ ip community-list expanded c76 permit 162 ^65000:3_0:232_0:156$ ip community-list expanded c76 permit 163 ^65000:3_0:233_0:157$ ip community-list expanded c76 permit 164 ^65000:3_0:234_0:158$ ip community-list expanded c76 permit 165 ^65000:3_0:235_0:159$ ip community-list expanded c76 permit 166 ^65000:3_0:236_0:160$ ip community-list expanded c76 permit 167 ^65000:3_0:237_0:161$ ip community-list expanded c76 permit 168 ^65000:3_0:238_0:162$ ip community-list expanded c76 permit 169 ^65000:3_0:239_0:163$ ip community-list expanded c76 permit 170 ^65000:3_0:240_0:164$ ip community-list expanded c76 permit 171 ^65000:3_0:241_0:165$ ip community-list expanded c76 permit 172 ^65000:3_0:242_0:166$ ip community-list expanded c76 permit 173 ^65000:3_0:243_0:167$ ip community-list expanded c76 permit 174 ^65000:3_0:244_0:168$ ip community-list expanded c76 permit 175 ^65000:3_0:245_0:169$ ip community-list expanded c76 permit 176 ^65000:3_0:246_0:170$ ip community-list expanded c76 permit 177 ^65000:3_0:247_0:171$ ip community-list expanded c76 permit 178 ^65000:3_0:248_0:172$ ip community-list expanded c76 permit 179 ^65000:3_0:249_0:173$ ip community-list expanded c76 permit 180 ^65000:3_0:250_0:174$ ip community-list expanded c76 permit 181 ^65000:3_0:251_0:175$ ip community-list expanded c76 permit 182 ^65000:3_0:252_0:176$ ip community-list expanded c76 permit 183 ^65000:3_0:253_0:177$ ip community-list expanded c76 permit 184 ^65000:3_0:254_0:178$ ip community-list expanded c76 permit 185 ^65000:3_0:255_0:179$ ip community-list expanded c76 permit 186 ^65000:3_0:256_0:180$ route-map calculator permit 26532 match community 1_1_75 2_1_76 2_2_38 1_2_74 1_3_73 set community 0:76 route-map calculator permit 26533 match community 2_4_19 1_4_72 1_5_71 1_6_70 1_7_69 set community 0:76 route-map calculator permit 26534 match community 1_8_68 1_9_67 1_10_66 1_11_65 1_12_64 set community 0:76 route-map calculator permit 26535 match community 1_13_63 1_14_62 1_15_61 1_16_60 1_17_59 set community 0:76 route-map calculator permit 26536 match community 1_18_58 1_19_57 1_20_56 1_21_55 1_22_54 set community 0:76 route-map calculator permit 26537 match community 1_23_53 1_24_52 1_25_51 1_26_50 1_27_49 set community 0:76 route-map calculator permit 26538 match community 1_28_48 1_29_47 1_30_46 1_31_45 1_32_44 set community 0:76 route-map calculator permit 26539 match community 1_33_43 1_34_42 1_35_41 1_36_40 1_37_39 set community 0:76 route-map calculator permit 26540 match community 1_38_38 c4_76_1 c3_77_1 c3_78_2 c3_79_3 set community 0:76 route-map calculator permit 26541 match community c3_80_4 c3_81_5 c3_82_6 c3_83_7 c3_84_8 set community 0:76 route-map calculator permit 26542 match community c3_85_9 c3_86_10 c3_87_11 c3_88_12 c3_89_13 set community 0:76 route-map calculator permit 26543 match community c3_90_14 c3_91_15 c3_92_16 c3_93_17 c3_94_18 set community 0:76 route-map calculator permit 26544 match community c3_95_19 c3_96_20 c3_97_21 c3_98_22 c3_99_23 set community 0:76 route-map calculator permit 26545 match community c3_100_24 c3_101_25 c3_102_26 c3_103_27 c3_104_28 set community 0:76 route-map calculator permit 26546 match community c3_105_29 c3_106_30 c3_107_31 c3_108_32 c3_109_33 set community 0:76 route-map calculator permit 26547 match community c3_110_34 c3_111_35 c3_112_36 c3_113_37 c3_114_38 set community 0:76 route-map calculator permit 26548 match community c3_115_39 c3_116_40 c3_117_41 c3_118_42 c3_119_43 set community 0:76 route-map calculator permit 26549 match community c3_120_44 c3_121_45 c3_122_46 c3_123_47 c3_124_48 set community 0:76 route-map calculator permit 26550 match community c3_125_49 c3_126_50 c3_127_51 c3_128_52 c3_129_53 set community 0:76 route-map calculator permit 26551 match community c3_130_54 c3_131_55 c3_132_56 c3_133_57 c3_134_58 set community 0:76 route-map calculator permit 26552 match community c3_135_59 c3_136_60 c3_137_61 c3_138_62 c3_139_63 set community 0:76 route-map calculator permit 26553 match community c3_140_64 c3_141_65 c3_142_66 c3_143_67 c3_144_68 set community 0:76 route-map calculator permit 26554 match community c3_145_69 c3_146_70 c3_147_71 c3_148_72 c3_149_73 set community 0:76 route-map calculator permit 26555 match community c3_150_74 c3_151_75 c4_152_2 c3_152_76 c4_153_2 set community 0:76 route-map calculator permit 26556 match community c3_153_77 c3_154_78 c3_155_79 c3_156_80 c3_157_81 set community 0:76 route-map calculator permit 26557 match community c3_158_82 c3_159_83 c3_160_84 c3_161_85 c3_162_86 set community 0:76 route-map calculator permit 26558 match community c3_163_87 c3_164_88 c3_165_89 c3_166_90 c3_167_91 set community 0:76 route-map calculator permit 26559 match community c3_168_92 c3_169_93 c3_170_94 c3_171_95 c3_172_96 set community 0:76 route-map calculator permit 26560 match community c3_173_97 c3_174_98 c3_175_99 c3_176_100 c3_177_101 set community 0:76 route-map calculator permit 26561 match community c3_178_102 c3_179_103 c3_180_104 c3_181_105 c3_182_106 set community 0:76 route-map calculator permit 26562 match community c3_183_107 c3_184_108 c3_185_109 c3_186_110 c3_187_111 set community 0:76 route-map calculator permit 26563 match community c3_188_112 c3_189_113 c3_190_114 c3_191_115 c3_192_116 set community 0:76 route-map calculator permit 26564 match community c3_193_117 c3_194_118 c3_195_119 c3_196_120 c3_197_121 set community 0:76 route-map calculator permit 26565 match community c3_198_122 c3_199_123 c3_200_124 c3_201_125 c3_202_126 set community 0:76 route-map calculator permit 26566 match community c3_203_127 c3_204_128 c3_205_129 c3_206_130 c3_207_131 set community 0:76 route-map calculator permit 26567 match community c3_208_132 c3_209_133 c3_210_134 c3_211_135 c3_212_136 set community 0:76 route-map calculator permit 26568 match community c3_213_137 c3_214_138 c3_215_139 c3_216_140 c3_217_141 set community 0:76 route-map calculator permit 26569 match community c3_218_142 c3_219_143 c3_220_144 c3_221_145 c3_222_146 set community 0:76 route-map calculator permit 26570 match community c3_223_147 c3_224_148 c3_225_149 c3_226_150 c3_227_151 set community 0:76 route-map calculator permit 26571 match community c4_228_3 c3_228_152 c4_229_3 c3_229_153 c4_230_3 set community 0:76 route-map calculator permit 26572 match community c3_230_154 c3_231_155 c3_232_156 c3_233_157 c3_234_158 set community 0:76 route-map calculator permit 26573 match community c3_235_159 c3_236_160 c3_237_161 c3_238_162 c3_239_163 set community 0:76 route-map calculator permit 26574 match community c3_240_164 c3_241_165 c3_242_166 c3_243_167 c3_244_168 set community 0:76 route-map calculator permit 26575 match community c3_245_169 c3_246_170 c3_247_171 c3_248_172 c3_249_173 set community 0:76 route-map calculator permit 26576 match community c3_250_174 c3_251_175 c3_252_176 c3_253_177 c3_254_178 set community 0:76 route-map calculator permit 26577 match community c3_255_179 c3_256_180 set community 0:76 ip community-list standard 2_203_243 permit 65000:2 0:203 0:243 route-map calculator permit 26578 match community 2_203_243 set community 0:49329 ip community-list standard 2_122_183 permit 65000:2 0:122 0:183 route-map calculator permit 26579 match community 2_122_183 set community 0:22326 ip community-list standard 2_218_226 permit 65000:2 0:218 0:226 route-map calculator permit 26580 match community 2_218_226 set community 0:49268 ip community-list standard 2_51_186 permit 65000:2 0:51 0:186 ip community-list standard 2_62_153 permit 65000:2 0:62 0:153 ip community-list standard 2_93_102 permit 65000:2 0:93 0:102 route-map calculator permit 26581 match community 2_51_186 2_62_153 2_93_102 set community 0:9486 ip community-list standard 2_84_245 permit 65000:2 0:84 0:245 ip community-list standard 2_98_210 permit 65000:2 0:98 0:210 ip community-list standard 2_105_196 permit 65000:2 0:105 0:196 ip community-list standard 2_140_147 permit 65000:2 0:140 0:147 route-map calculator permit 26582 match community 2_84_245 2_98_210 2_105_196 2_140_147 set community 0:20580 ip community-list standard 2_203_246 permit 65000:2 0:203 0:246 route-map calculator permit 26583 match community 2_203_246 set community 0:49938 ip community-list standard 2_168_191 permit 65000:2 0:168 0:191 route-map calculator permit 26584 match community 2_168_191 set community 0:32088 ip community-list standard 2_125_187 permit 65000:2 0:125 0:187 route-map calculator permit 26585 match community 2_125_187 set community 0:23375 ip community-list standard 2_212_255 permit 65000:2 0:212 0:255 route-map calculator permit 26586 match community 2_212_255 set community 0:54060 ip community-list standard 2_4_229 permit 65000:2 0:4 0:229 route-map calculator permit 26587 match community 2_4_229 set community 0:916 ip community-list standard 2_155_181 permit 65000:2 0:155 0:181 route-map calculator permit 26588 match community 2_155_181 set community 0:28055 ip community-list standard 2_179_240 permit 65000:2 0:179 0:240 route-map calculator permit 26589 match community 2_179_240 set community 0:42960 ip community-list standard 2_182_252 permit 65000:2 0:182 0:252 ip community-list standard 2_196_234 permit 65000:2 0:196 0:234 route-map calculator permit 26590 match community 2_182_252 2_196_234 set community 0:45864 ip community-list standard 2_193_197 permit 65000:2 0:193 0:197 route-map calculator permit 26591 match community 2_193_197 set community 0:38021 ip community-list standard 2_95_223 permit 65000:2 0:95 0:223 route-map calculator permit 26592 match community 2_95_223 set community 0:21185 ip community-list standard 2_2_177 permit 65000:2 0:2 0:177 ip community-list standard 2_3_118 permit 65000:2 0:3 0:118 ip community-list standard 2_6_59 permit 65000:2 0:6 0:59 ip community-list standard 1_98_256 permit 65000:1 0:98 0:256 ip community-list standard 1_99_255 permit 65000:1 0:99 0:255 ip community-list standard 1_100_254 permit 65000:1 0:100 0:254 ip community-list standard 1_101_253 permit 65000:1 0:101 0:253 ip community-list standard 1_102_252 permit 65000:1 0:102 0:252 ip community-list standard 1_103_251 permit 65000:1 0:103 0:251 ip community-list standard 1_104_250 permit 65000:1 0:104 0:250 ip community-list standard 1_105_249 permit 65000:1 0:105 0:249 ip community-list standard 1_106_248 permit 65000:1 0:106 0:248 ip community-list standard 1_107_247 permit 65000:1 0:107 0:247 ip community-list standard 1_108_246 permit 65000:1 0:108 0:246 ip community-list standard 1_109_245 permit 65000:1 0:109 0:245 ip community-list standard 1_110_244 permit 65000:1 0:110 0:244 ip community-list standard 1_111_243 permit 65000:1 0:111 0:243 ip community-list standard 1_112_242 permit 65000:1 0:112 0:242 ip community-list standard 1_113_241 permit 65000:1 0:113 0:241 ip community-list standard 1_114_240 permit 65000:1 0:114 0:240 ip community-list standard 1_115_239 permit 65000:1 0:115 0:239 ip community-list standard 1_116_238 permit 65000:1 0:116 0:238 ip community-list standard 1_117_237 permit 65000:1 0:117 0:237 ip community-list standard 1_118_236 permit 65000:1 0:118 0:236 ip community-list standard 1_119_235 permit 65000:1 0:119 0:235 ip community-list standard 1_120_234 permit 65000:1 0:120 0:234 ip community-list standard 1_121_233 permit 65000:1 0:121 0:233 ip community-list standard 1_122_232 permit 65000:1 0:122 0:232 ip community-list standard 1_123_231 permit 65000:1 0:123 0:231 ip community-list standard 1_124_230 permit 65000:1 0:124 0:230 ip community-list standard 1_125_229 permit 65000:1 0:125 0:229 ip community-list standard 1_126_228 permit 65000:1 0:126 0:228 ip community-list standard 1_127_227 permit 65000:1 0:127 0:227 ip community-list standard 1_128_226 permit 65000:1 0:128 0:226 ip community-list standard 1_129_225 permit 65000:1 0:129 0:225 ip community-list standard 1_130_224 permit 65000:1 0:130 0:224 ip community-list standard 1_131_223 permit 65000:1 0:131 0:223 ip community-list standard 1_132_222 permit 65000:1 0:132 0:222 ip community-list standard 1_133_221 permit 65000:1 0:133 0:221 ip community-list standard 1_134_220 permit 65000:1 0:134 0:220 ip community-list standard 1_135_219 permit 65000:1 0:135 0:219 ip community-list standard 1_136_218 permit 65000:1 0:136 0:218 ip community-list standard 1_137_217 permit 65000:1 0:137 0:217 ip community-list standard 1_138_216 permit 65000:1 0:138 0:216 ip community-list standard 1_139_215 permit 65000:1 0:139 0:215 ip community-list standard 1_140_214 permit 65000:1 0:140 0:214 ip community-list standard 1_141_213 permit 65000:1 0:141 0:213 ip community-list standard 1_142_212 permit 65000:1 0:142 0:212 ip community-list standard 1_143_211 permit 65000:1 0:143 0:211 ip community-list standard 1_144_210 permit 65000:1 0:144 0:210 ip community-list standard 1_145_209 permit 65000:1 0:145 0:209 ip community-list standard 1_146_208 permit 65000:1 0:146 0:208 ip community-list standard 1_147_207 permit 65000:1 0:147 0:207 ip community-list standard 1_148_206 permit 65000:1 0:148 0:206 ip community-list standard 1_149_205 permit 65000:1 0:149 0:205 ip community-list standard 1_150_204 permit 65000:1 0:150 0:204 ip community-list standard 1_151_203 permit 65000:1 0:151 0:203 ip community-list standard 1_152_202 permit 65000:1 0:152 0:202 ip community-list standard 1_153_201 permit 65000:1 0:153 0:201 ip community-list standard 1_154_200 permit 65000:1 0:154 0:200 ip community-list standard 1_155_199 permit 65000:1 0:155 0:199 ip community-list standard 1_156_198 permit 65000:1 0:156 0:198 ip community-list standard 1_157_197 permit 65000:1 0:157 0:197 ip community-list standard 1_158_196 permit 65000:1 0:158 0:196 ip community-list standard 1_159_195 permit 65000:1 0:159 0:195 ip community-list standard 1_160_194 permit 65000:1 0:160 0:194 ip community-list standard 1_161_193 permit 65000:1 0:161 0:193 ip community-list standard 1_162_192 permit 65000:1 0:162 0:192 ip community-list standard 1_163_191 permit 65000:1 0:163 0:191 ip community-list standard 1_164_190 permit 65000:1 0:164 0:190 ip community-list standard 1_165_189 permit 65000:1 0:165 0:189 ip community-list standard 1_166_188 permit 65000:1 0:166 0:188 ip community-list standard 1_167_187 permit 65000:1 0:167 0:187 ip community-list standard 1_168_186 permit 65000:1 0:168 0:186 ip community-list standard 1_169_185 permit 65000:1 0:169 0:185 ip community-list standard 1_170_184 permit 65000:1 0:170 0:184 ip community-list standard 1_171_183 permit 65000:1 0:171 0:183 ip community-list standard 1_172_182 permit 65000:1 0:172 0:182 ip community-list standard 1_173_181 permit 65000:1 0:173 0:181 ip community-list standard 1_174_180 permit 65000:1 0:174 0:180 ip community-list standard 1_175_179 permit 65000:1 0:175 0:179 ip community-list standard 1_176_178 permit 65000:1 0:176 0:178 ip community-list standard 1_177_177 permit 65000:1 0:177 0:177 route-map calculator permit 26593 match community 2_2_177 2_3_118 2_6_59 1_98_256 1_99_255 set community 0:354 route-map calculator permit 26594 match community 1_100_254 1_101_253 1_102_252 1_103_251 1_104_250 set community 0:354 route-map calculator permit 26595 match community 1_105_249 1_106_248 1_107_247 1_108_246 1_109_245 set community 0:354 route-map calculator permit 26596 match community 1_110_244 1_111_243 1_112_242 1_113_241 1_114_240 set community 0:354 route-map calculator permit 26597 match community 1_115_239 1_116_238 1_117_237 1_118_236 1_119_235 set community 0:354 route-map calculator permit 26598 match community 1_120_234 1_121_233 1_122_232 1_123_231 1_124_230 set community 0:354 route-map calculator permit 26599 match community 1_125_229 1_126_228 1_127_227 1_128_226 1_129_225 set community 0:354 route-map calculator permit 26600 match community 1_130_224 1_131_223 1_132_222 1_133_221 1_134_220 set community 0:354 route-map calculator permit 26601 match community 1_135_219 1_136_218 1_137_217 1_138_216 1_139_215 set community 0:354 route-map calculator permit 26602 match community 1_140_214 1_141_213 1_142_212 1_143_211 1_144_210 set community 0:354 route-map calculator permit 26603 match community 1_145_209 1_146_208 1_147_207 1_148_206 1_149_205 set community 0:354 route-map calculator permit 26604 match community 1_150_204 1_151_203 1_152_202 1_153_201 1_154_200 set community 0:354 route-map calculator permit 26605 match community 1_155_199 1_156_198 1_157_197 1_158_196 1_159_195 set community 0:354 route-map calculator permit 26606 match community 1_160_194 1_161_193 1_162_192 1_163_191 1_164_190 set community 0:354 route-map calculator permit 26607 match community 1_165_189 1_166_188 1_167_187 1_168_186 1_169_185 set community 0:354 route-map calculator permit 26608 match community 1_170_184 1_171_183 1_172_182 1_173_181 1_174_180 set community 0:354 route-map calculator permit 26609 match community 1_175_179 1_176_178 1_177_177 set community 0:354 ip community-list standard 2_4_134 permit 65000:2 0:4 0:134 ip community-list standard 2_8_67 permit 65000:2 0:8 0:67 route-map calculator permit 26610 match community 2_4_134 2_8_67 set community 0:536 ip community-list standard 2_144_149 permit 65000:2 0:144 0:149 route-map calculator permit 26611 match community 2_144_149 set community 0:21456 ip community-list standard 2_151_167 permit 65000:2 0:151 0:167 route-map calculator permit 26612 match community 2_151_167 set community 0:25217 ip community-list standard 2_87_213 permit 65000:2 0:87 0:213 route-map calculator permit 26613 match community 2_87_213 set community 0:18531 ip community-list standard 2_134_243 permit 65000:2 0:134 0:243 ip community-list standard 2_162_201 permit 65000:2 0:162 0:201 route-map calculator permit 26614 match community 2_134_243 2_162_201 set community 0:32562 ip community-list standard 2_65_255 permit 65000:2 0:65 0:255 ip community-list standard 2_75_221 permit 65000:2 0:75 0:221 ip community-list standard 2_85_195 permit 65000:2 0:85 0:195 route-map calculator permit 26615 match community 2_65_255 2_75_221 2_85_195 set community 0:16575 ip community-list standard 2_53_95 permit 65000:2 0:53 0:95 route-map calculator permit 26616 match community 2_53_95 set community 0:5035 ip community-list standard 2_115_175 permit 65000:2 0:115 0:175 ip community-list standard 2_125_161 permit 65000:2 0:125 0:161 route-map calculator permit 26617 match community 2_115_175 2_125_161 set community 0:20125 ip community-list standard 2_44_194 permit 65000:2 0:44 0:194 ip community-list standard 2_88_97 permit 65000:2 0:88 0:97 route-map calculator permit 26618 match community 2_44_194 2_88_97 set community 0:8536 ip community-list standard 2_95_249 permit 65000:2 0:95 0:249 route-map calculator permit 26619 match community 2_95_249 set community 0:23655 ip community-list standard 2_49_157 permit 65000:2 0:49 0:157 route-map calculator permit 26620 match community 2_49_157 set community 0:7693 ip community-list standard 2_53_107 permit 65000:2 0:53 0:107 route-map calculator permit 26621 match community 2_53_107 set community 0:5671 ip community-list standard 2_2_171 permit 65000:2 0:2 0:171 ip community-list standard 2_3_114 permit 65000:2 0:3 0:114 ip community-list standard 2_6_57 permit 65000:2 0:6 0:57 ip community-list standard 2_9_38 permit 65000:2 0:9 0:38 ip community-list standard 2_18_19 permit 65000:2 0:18 0:19 ip community-list standard 1_86_256 permit 65000:1 0:86 0:256 ip community-list standard 1_87_255 permit 65000:1 0:87 0:255 ip community-list standard 1_88_254 permit 65000:1 0:88 0:254 ip community-list standard 1_89_253 permit 65000:1 0:89 0:253 ip community-list standard 1_90_252 permit 65000:1 0:90 0:252 ip community-list standard 1_91_251 permit 65000:1 0:91 0:251 ip community-list standard 1_92_250 permit 65000:1 0:92 0:250 ip community-list standard 1_93_249 permit 65000:1 0:93 0:249 ip community-list standard 1_94_248 permit 65000:1 0:94 0:248 ip community-list standard 1_95_247 permit 65000:1 0:95 0:247 ip community-list standard 1_96_246 permit 65000:1 0:96 0:246 ip community-list standard 1_97_245 permit 65000:1 0:97 0:245 ip community-list standard 1_98_244 permit 65000:1 0:98 0:244 ip community-list standard 1_99_243 permit 65000:1 0:99 0:243 ip community-list standard 1_100_242 permit 65000:1 0:100 0:242 ip community-list standard 1_101_241 permit 65000:1 0:101 0:241 ip community-list standard 1_102_240 permit 65000:1 0:102 0:240 ip community-list standard 1_103_239 permit 65000:1 0:103 0:239 ip community-list standard 1_104_238 permit 65000:1 0:104 0:238 ip community-list standard 1_105_237 permit 65000:1 0:105 0:237 ip community-list standard 1_106_236 permit 65000:1 0:106 0:236 ip community-list standard 1_107_235 permit 65000:1 0:107 0:235 ip community-list standard 1_108_234 permit 65000:1 0:108 0:234 ip community-list standard 1_109_233 permit 65000:1 0:109 0:233 ip community-list standard 1_110_232 permit 65000:1 0:110 0:232 ip community-list standard 1_111_231 permit 65000:1 0:111 0:231 ip community-list standard 1_112_230 permit 65000:1 0:112 0:230 ip community-list standard 1_113_229 permit 65000:1 0:113 0:229 ip community-list standard 1_114_228 permit 65000:1 0:114 0:228 ip community-list standard 1_115_227 permit 65000:1 0:115 0:227 ip community-list standard 1_116_226 permit 65000:1 0:116 0:226 ip community-list standard 1_117_225 permit 65000:1 0:117 0:225 ip community-list standard 1_118_224 permit 65000:1 0:118 0:224 ip community-list standard 1_119_223 permit 65000:1 0:119 0:223 ip community-list standard 1_120_222 permit 65000:1 0:120 0:222 ip community-list standard 1_121_221 permit 65000:1 0:121 0:221 ip community-list standard 1_122_220 permit 65000:1 0:122 0:220 ip community-list standard 1_123_219 permit 65000:1 0:123 0:219 ip community-list standard 1_124_218 permit 65000:1 0:124 0:218 ip community-list standard 1_125_217 permit 65000:1 0:125 0:217 ip community-list standard 1_126_216 permit 65000:1 0:126 0:216 ip community-list standard 1_127_215 permit 65000:1 0:127 0:215 ip community-list standard 1_128_214 permit 65000:1 0:128 0:214 ip community-list standard 1_129_213 permit 65000:1 0:129 0:213 ip community-list standard 1_130_212 permit 65000:1 0:130 0:212 ip community-list standard 1_131_211 permit 65000:1 0:131 0:211 ip community-list standard 1_132_210 permit 65000:1 0:132 0:210 ip community-list standard 1_133_209 permit 65000:1 0:133 0:209 ip community-list standard 1_134_208 permit 65000:1 0:134 0:208 ip community-list standard 1_135_207 permit 65000:1 0:135 0:207 ip community-list standard 1_136_206 permit 65000:1 0:136 0:206 ip community-list standard 1_137_205 permit 65000:1 0:137 0:205 ip community-list standard 1_138_204 permit 65000:1 0:138 0:204 ip community-list standard 1_139_203 permit 65000:1 0:139 0:203 ip community-list standard 1_140_202 permit 65000:1 0:140 0:202 ip community-list standard 1_141_201 permit 65000:1 0:141 0:201 ip community-list standard 1_142_200 permit 65000:1 0:142 0:200 ip community-list standard 1_143_199 permit 65000:1 0:143 0:199 ip community-list standard 1_144_198 permit 65000:1 0:144 0:198 ip community-list standard 1_145_197 permit 65000:1 0:145 0:197 ip community-list standard 1_146_196 permit 65000:1 0:146 0:196 ip community-list standard 1_147_195 permit 65000:1 0:147 0:195 ip community-list standard 1_148_194 permit 65000:1 0:148 0:194 ip community-list standard 1_149_193 permit 65000:1 0:149 0:193 ip community-list standard 1_150_192 permit 65000:1 0:150 0:192 ip community-list standard 1_151_191 permit 65000:1 0:151 0:191 ip community-list standard 1_152_190 permit 65000:1 0:152 0:190 ip community-list standard 1_153_189 permit 65000:1 0:153 0:189 ip community-list standard 1_154_188 permit 65000:1 0:154 0:188 ip community-list standard 1_155_187 permit 65000:1 0:155 0:187 ip community-list standard 1_156_186 permit 65000:1 0:156 0:186 ip community-list standard 1_157_185 permit 65000:1 0:157 0:185 ip community-list standard 1_158_184 permit 65000:1 0:158 0:184 ip community-list standard 1_159_183 permit 65000:1 0:159 0:183 ip community-list standard 1_160_182 permit 65000:1 0:160 0:182 ip community-list standard 1_161_181 permit 65000:1 0:161 0:181 ip community-list standard 1_162_180 permit 65000:1 0:162 0:180 ip community-list standard 1_163_179 permit 65000:1 0:163 0:179 ip community-list standard 1_164_178 permit 65000:1 0:164 0:178 ip community-list standard 1_165_177 permit 65000:1 0:165 0:177 ip community-list standard 1_166_176 permit 65000:1 0:166 0:176 ip community-list standard 1_167_175 permit 65000:1 0:167 0:175 ip community-list standard 1_168_174 permit 65000:1 0:168 0:174 ip community-list standard 1_169_173 permit 65000:1 0:169 0:173 ip community-list standard 1_170_172 permit 65000:1 0:170 0:172 ip community-list standard 1_171_171 permit 65000:1 0:171 0:171 route-map calculator permit 26622 match community 2_2_171 2_3_114 2_6_57 2_9_38 2_18_19 set community 0:342 route-map calculator permit 26623 match community 1_86_256 1_87_255 1_88_254 1_89_253 1_90_252 set community 0:342 route-map calculator permit 26624 match community 1_91_251 1_92_250 1_93_249 1_94_248 1_95_247 set community 0:342 route-map calculator permit 26625 match community 1_96_246 1_97_245 1_98_244 1_99_243 1_100_242 set community 0:342 route-map calculator permit 26626 match community 1_101_241 1_102_240 1_103_239 1_104_238 1_105_237 set community 0:342 route-map calculator permit 26627 match community 1_106_236 1_107_235 1_108_234 1_109_233 1_110_232 set community 0:342 route-map calculator permit 26628 match community 1_111_231 1_112_230 1_113_229 1_114_228 1_115_227 set community 0:342 route-map calculator permit 26629 match community 1_116_226 1_117_225 1_118_224 1_119_223 1_120_222 set community 0:342 route-map calculator permit 26630 match community 1_121_221 1_122_220 1_123_219 1_124_218 1_125_217 set community 0:342 route-map calculator permit 26631 match community 1_126_216 1_127_215 1_128_214 1_129_213 1_130_212 set community 0:342 route-map calculator permit 26632 match community 1_131_211 1_132_210 1_133_209 1_134_208 1_135_207 set community 0:342 route-map calculator permit 26633 match community 1_136_206 1_137_205 1_138_204 1_139_203 1_140_202 set community 0:342 route-map calculator permit 26634 match community 1_141_201 1_142_200 1_143_199 1_144_198 1_145_197 set community 0:342 route-map calculator permit 26635 match community 1_146_196 1_147_195 1_148_194 1_149_193 1_150_192 set community 0:342 route-map calculator permit 26636 match community 1_151_191 1_152_190 1_153_189 1_154_188 1_155_187 set community 0:342 route-map calculator permit 26637 match community 1_156_186 1_157_185 1_158_184 1_159_183 1_160_182 set community 0:342 route-map calculator permit 26638 match community 1_161_181 1_162_180 1_163_179 1_164_178 1_165_177 set community 0:342 route-map calculator permit 26639 match community 1_166_176 1_167_175 1_168_174 1_169_173 1_170_172 set community 0:342 route-map calculator permit 26640 match community 1_171_171 set community 0:342 ip community-list standard 2_14_227 permit 65000:2 0:14 0:227 route-map calculator permit 26641 match community 2_14_227 set community 0:3178 ip community-list standard 2_82_247 permit 65000:2 0:82 0:247 route-map calculator permit 26642 match community 2_82_247 set community 0:20254 ip community-list standard 2_28_223 permit 65000:2 0:28 0:223 route-map calculator permit 26643 match community 2_28_223 set community 0:6244 ip community-list standard 2_4_247 permit 65000:2 0:4 0:247 ip community-list standard 2_13_76 permit 65000:2 0:13 0:76 ip community-list standard 2_19_52 permit 65000:2 0:19 0:52 ip community-list standard 2_26_38 permit 65000:2 0:26 0:38 route-map calculator permit 26644 match community 2_4_247 2_13_76 2_19_52 2_26_38 set community 0:988 ip community-list standard 2_59_243 permit 65000:2 0:59 0:243 ip community-list standard 2_81_177 permit 65000:2 0:81 0:177 route-map calculator permit 26645 match community 2_59_243 2_81_177 set community 0:14337 ip community-list standard 2_99_244 permit 65000:2 0:99 0:244 ip community-list standard 2_122_198 permit 65000:2 0:122 0:198 ip community-list standard 2_132_183 permit 65000:2 0:132 0:183 route-map calculator permit 26646 match community 2_99_244 2_122_198 2_132_183 set community 0:24156 ip community-list standard 2_134_246 permit 65000:2 0:134 0:246 ip community-list standard 2_164_201 permit 65000:2 0:164 0:201 route-map calculator permit 26647 match community 2_134_246 2_164_201 set community 0:32964 ip community-list standard 2_92_222 permit 65000:2 0:92 0:222 ip community-list standard 2_111_184 permit 65000:2 0:111 0:184 ip community-list standard 2_138_148 permit 65000:2 0:138 0:148 route-map calculator permit 26648 match community 2_92_222 2_111_184 2_138_148 set community 0:20424 ip community-list standard 2_3_139 permit 65000:2 0:3 0:139 ip community-list standard 1_161_256 permit 65000:1 0:161 0:256 ip community-list standard 1_162_255 permit 65000:1 0:162 0:255 ip community-list standard 1_163_254 permit 65000:1 0:163 0:254 ip community-list standard 1_164_253 permit 65000:1 0:164 0:253 ip community-list standard 1_165_252 permit 65000:1 0:165 0:252 ip community-list standard 1_166_251 permit 65000:1 0:166 0:251 ip community-list standard 1_167_250 permit 65000:1 0:167 0:250 ip community-list standard 1_168_249 permit 65000:1 0:168 0:249 ip community-list standard 1_169_248 permit 65000:1 0:169 0:248 ip community-list standard 1_170_247 permit 65000:1 0:170 0:247 ip community-list standard 1_171_246 permit 65000:1 0:171 0:246 ip community-list standard 1_172_245 permit 65000:1 0:172 0:245 ip community-list standard 1_173_244 permit 65000:1 0:173 0:244 ip community-list standard 1_174_243 permit 65000:1 0:174 0:243 ip community-list standard 1_175_242 permit 65000:1 0:175 0:242 ip community-list standard 1_176_241 permit 65000:1 0:176 0:241 ip community-list standard 1_177_240 permit 65000:1 0:177 0:240 ip community-list standard 1_178_239 permit 65000:1 0:178 0:239 ip community-list standard 1_179_238 permit 65000:1 0:179 0:238 ip community-list standard 1_180_237 permit 65000:1 0:180 0:237 ip community-list standard 1_181_236 permit 65000:1 0:181 0:236 ip community-list standard 1_182_235 permit 65000:1 0:182 0:235 ip community-list standard 1_183_234 permit 65000:1 0:183 0:234 ip community-list standard 1_184_233 permit 65000:1 0:184 0:233 ip community-list standard 1_185_232 permit 65000:1 0:185 0:232 ip community-list standard 1_186_231 permit 65000:1 0:186 0:231 ip community-list standard 1_187_230 permit 65000:1 0:187 0:230 ip community-list standard 1_188_229 permit 65000:1 0:188 0:229 ip community-list standard 1_189_228 permit 65000:1 0:189 0:228 ip community-list standard 1_190_227 permit 65000:1 0:190 0:227 ip community-list standard 1_191_226 permit 65000:1 0:191 0:226 ip community-list standard 1_192_225 permit 65000:1 0:192 0:225 ip community-list standard 1_193_224 permit 65000:1 0:193 0:224 ip community-list standard 1_194_223 permit 65000:1 0:194 0:223 ip community-list standard 1_195_222 permit 65000:1 0:195 0:222 ip community-list standard 1_196_221 permit 65000:1 0:196 0:221 ip community-list standard 1_197_220 permit 65000:1 0:197 0:220 ip community-list standard 1_198_219 permit 65000:1 0:198 0:219 ip community-list standard 1_199_218 permit 65000:1 0:199 0:218 ip community-list standard 1_200_217 permit 65000:1 0:200 0:217 ip community-list standard 1_201_216 permit 65000:1 0:201 0:216 ip community-list standard 1_202_215 permit 65000:1 0:202 0:215 ip community-list standard 1_203_214 permit 65000:1 0:203 0:214 ip community-list standard 1_204_213 permit 65000:1 0:204 0:213 ip community-list standard 1_205_212 permit 65000:1 0:205 0:212 ip community-list standard 1_206_211 permit 65000:1 0:206 0:211 ip community-list standard 1_207_210 permit 65000:1 0:207 0:210 ip community-list standard 1_208_209 permit 65000:1 0:208 0:209 route-map calculator permit 26649 match community 2_3_139 1_161_256 1_162_255 1_163_254 1_164_253 set community 0:417 route-map calculator permit 26650 match community 1_165_252 1_166_251 1_167_250 1_168_249 1_169_248 set community 0:417 route-map calculator permit 26651 match community 1_170_247 1_171_246 1_172_245 1_173_244 1_174_243 set community 0:417 route-map calculator permit 26652 match community 1_175_242 1_176_241 1_177_240 1_178_239 1_179_238 set community 0:417 route-map calculator permit 26653 match community 1_180_237 1_181_236 1_182_235 1_183_234 1_184_233 set community 0:417 route-map calculator permit 26654 match community 1_185_232 1_186_231 1_187_230 1_188_229 1_189_228 set community 0:417 route-map calculator permit 26655 match community 1_190_227 1_191_226 1_192_225 1_193_224 1_194_223 set community 0:417 route-map calculator permit 26656 match community 1_195_222 1_196_221 1_197_220 1_198_219 1_199_218 set community 0:417 route-map calculator permit 26657 match community 1_200_217 1_201_216 1_202_215 1_203_214 1_204_213 set community 0:417 route-map calculator permit 26658 match community 1_205_212 1_206_211 1_207_210 1_208_209 set community 0:417 ip community-list standard 2_29_134 permit 65000:2 0:29 0:134 ip community-list standard 2_58_67 permit 65000:2 0:58 0:67 route-map calculator permit 26659 match community 2_29_134 2_58_67 set community 0:3886 ip community-list standard 2_21_226 permit 65000:2 0:21 0:226 ip community-list standard 2_42_113 permit 65000:2 0:42 0:113 route-map calculator permit 26660 match community 2_21_226 2_42_113 set community 0:4746 ip community-list standard 2_141_157 permit 65000:2 0:141 0:157 route-map calculator permit 26661 match community 2_141_157 set community 0:22137 ip community-list standard 2_131_225 permit 65000:2 0:131 0:225 route-map calculator permit 26662 match community 2_131_225 set community 0:29475 ip community-list standard 2_135_218 permit 65000:2 0:135 0:218 route-map calculator permit 26663 match community 2_135_218 set community 0:29430 ip community-list standard 2_137_212 permit 65000:2 0:137 0:212 route-map calculator permit 26664 match community 2_137_212 set community 0:29044 ip community-list standard 2_175_255 permit 65000:2 0:175 0:255 route-map calculator permit 26665 match community 2_175_255 set community 0:44625 ip community-list standard 2_30_235 permit 65000:2 0:30 0:235 ip community-list standard 2_47_150 permit 65000:2 0:47 0:150 ip community-list standard 2_50_141 permit 65000:2 0:50 0:141 ip community-list standard 2_75_94 permit 65000:2 0:75 0:94 route-map calculator permit 26666 match community 2_30_235 2_47_150 2_50_141 2_75_94 set community 0:7050 ip community-list standard 2_127_245 permit 65000:2 0:127 0:245 route-map calculator permit 26667 match community 2_127_245 set community 0:31115 ip community-list standard 2_49_153 permit 65000:2 0:49 0:153 ip community-list standard 2_51_147 permit 65000:2 0:51 0:147 ip community-list standard 2_63_119 permit 65000:2 0:63 0:119 route-map calculator permit 26668 match community 2_49_153 2_51_147 2_63_119 set community 0:7497 ip community-list standard 2_140_242 permit 65000:2 0:140 0:242 ip community-list standard 2_154_220 permit 65000:2 0:154 0:220 route-map calculator permit 26669 match community 2_140_242 2_154_220 set community 0:33880 ip community-list standard 2_19_217 permit 65000:2 0:19 0:217 ip community-list standard 2_31_133 permit 65000:2 0:31 0:133 route-map calculator permit 26670 match community 2_19_217 2_31_133 set community 0:4123 ip community-list standard 2_95_255 permit 65000:2 0:95 0:255 route-map calculator permit 26671 match community 2_95_255 set community 0:24225 ip community-list standard 2_146_223 permit 65000:2 0:146 0:223 route-map calculator permit 26672 match community 2_146_223 set community 0:32558 ip community-list standard 2_87_179 permit 65000:2 0:87 0:179 route-map calculator permit 26673 match community 2_87_179 set community 0:15573 ip community-list standard 2_199_253 permit 65000:2 0:199 0:253 route-map calculator permit 26674 match community 2_199_253 set community 0:50347 ip community-list standard 2_112_157 permit 65000:2 0:112 0:157 route-map calculator permit 26675 match community 2_112_157 set community 0:17584 ip community-list standard 2_69_175 permit 65000:2 0:69 0:175 ip community-list standard 2_75_161 permit 65000:2 0:75 0:161 ip community-list standard 2_105_115 permit 65000:2 0:105 0:115 route-map calculator permit 26676 match community 2_69_175 2_75_161 2_105_115 set community 0:12075 ip community-list standard 2_228_236 permit 65000:2 0:228 0:236 route-map calculator permit 26677 match community 2_228_236 set community 0:53808 ip community-list standard 2_83_209 permit 65000:2 0:83 0:209 route-map calculator permit 26678 match community 2_83_209 set community 0:17347 ip community-list standard 2_9_139 permit 65000:2 0:9 0:139 route-map calculator permit 26679 match community 2_9_139 set community 0:1251 ip community-list standard 2_188_216 permit 65000:2 0:188 0:216 route-map calculator permit 26680 match community 2_188_216 set community 0:40608 ip community-list standard 2_47_243 permit 65000:2 0:47 0:243 ip community-list standard 2_81_141 permit 65000:2 0:81 0:141 route-map calculator permit 26681 match community 2_47_243 2_81_141 set community 0:11421 ip community-list standard 2_85_227 permit 65000:2 0:85 0:227 route-map calculator permit 26682 match community 2_85_227 set community 0:19295 ip community-list standard 2_122_137 permit 65000:2 0:122 0:137 route-map calculator permit 26683 match community 2_122_137 set community 0:16714 ip community-list standard 2_113_219 permit 65000:2 0:113 0:219 route-map calculator permit 26684 match community 2_113_219 set community 0:24747 ip community-list standard 2_100_241 permit 65000:2 0:100 0:241 route-map calculator permit 26685 match community 2_100_241 set community 0:24100 ip community-list standard 2_41_59 permit 65000:2 0:41 0:59 route-map calculator permit 26686 match community 2_41_59 set community 0:2419 ip community-list standard 2_15_175 permit 65000:2 0:15 0:175 ip community-list standard 2_21_125 permit 65000:2 0:21 0:125 ip community-list standard 2_25_105 permit 65000:2 0:25 0:105 ip community-list standard 2_35_75 permit 65000:2 0:35 0:75 route-map calculator permit 26687 match community 2_15_175 2_21_125 2_25_105 2_35_75 set community 0:2625 ip community-list standard 2_76_223 permit 65000:2 0:76 0:223 route-map calculator permit 26688 match community 2_76_223 set community 0:16948 ip community-list standard 2_12_255 permit 65000:2 0:12 0:255 ip community-list standard 2_15_204 permit 65000:2 0:15 0:204 ip community-list standard 2_17_180 permit 65000:2 0:17 0:180 ip community-list standard 2_18_170 permit 65000:2 0:18 0:170 ip community-list standard 2_20_153 permit 65000:2 0:20 0:153 ip community-list standard 2_30_102 permit 65000:2 0:30 0:102 ip community-list standard 2_34_90 permit 65000:2 0:34 0:90 ip community-list standard 2_36_85 permit 65000:2 0:36 0:85 ip community-list standard 2_45_68 permit 65000:2 0:45 0:68 ip community-list standard 2_51_60 permit 65000:2 0:51 0:60 route-map calculator permit 26689 match community 2_12_255 2_15_204 2_17_180 2_18_170 2_20_153 set community 0:3060 route-map calculator permit 26690 match community 2_30_102 2_34_90 2_36_85 2_45_68 2_51_60 set community 0:3060 ip community-list standard 2_14_243 permit 65000:2 0:14 0:243 ip community-list standard 2_18_189 permit 65000:2 0:18 0:189 ip community-list standard 2_21_162 permit 65000:2 0:21 0:162 ip community-list standard 2_27_126 permit 65000:2 0:27 0:126 ip community-list standard 2_42_81 permit 65000:2 0:42 0:81 ip community-list standard 2_54_63 permit 65000:2 0:54 0:63 route-map calculator permit 26691 match community 2_14_243 2_18_189 2_21_162 2_27_126 2_42_81 set community 0:3402 route-map calculator permit 26692 match community 2_54_63 set community 0:3402 ip community-list standard 2_98_196 permit 65000:2 0:98 0:196 route-map calculator permit 26693 match community 2_98_196 set community 0:19208 ip community-list standard 2_24_221 permit 65000:2 0:24 0:221 ip community-list standard 2_26_204 permit 65000:2 0:26 0:204 ip community-list standard 2_34_156 permit 65000:2 0:34 0:156 ip community-list standard 2_39_136 permit 65000:2 0:39 0:136 ip community-list standard 2_51_104 permit 65000:2 0:51 0:104 ip community-list standard 2_52_102 permit 65000:2 0:52 0:102 ip community-list standard 2_68_78 permit 65000:2 0:68 0:78 route-map calculator permit 26694 match community 2_24_221 2_26_204 2_34_156 2_39_136 2_51_104 set community 0:5304 route-map calculator permit 26695 match community 2_52_102 2_68_78 set community 0:5304 ip community-list standard 2_142_143 permit 65000:2 0:142 0:143 route-map calculator permit 26696 match community 2_142_143 set community 0:20306 ip community-list standard 2_159_220 permit 65000:2 0:159 0:220 ip community-list standard 2_165_212 permit 65000:2 0:165 0:212 route-map calculator permit 26697 match community 2_159_220 2_165_212 set community 0:34980 ip community-list standard 2_102_173 permit 65000:2 0:102 0:173 route-map calculator permit 26698 match community 2_102_173 set community 0:17646 ip community-list standard 2_73_238 permit 65000:2 0:73 0:238 ip community-list standard 2_119_146 permit 65000:2 0:119 0:146 route-map calculator permit 26699 match community 2_73_238 2_119_146 set community 0:17374 ip community-list standard 2_175_237 permit 65000:2 0:175 0:237 route-map calculator permit 26700 match community 2_175_237 set community 0:41475 ip community-list standard 2_64_233 permit 65000:2 0:64 0:233 route-map calculator permit 26701 match community 2_64_233 set community 0:14912 ip community-list standard 2_235_243 permit 65000:2 0:235 0:243 route-map calculator permit 26702 match community 2_235_243 set community 0:57105 ip community-list standard 2_40_236 permit 65000:2 0:40 0:236 ip community-list standard 2_59_160 permit 65000:2 0:59 0:160 ip community-list standard 2_80_118 permit 65000:2 0:80 0:118 route-map calculator permit 26703 match community 2_40_236 2_59_160 2_80_118 set community 0:9440 ip community-list standard 2_61_154 permit 65000:2 0:61 0:154 ip community-list standard 2_77_122 permit 65000:2 0:77 0:122 route-map calculator permit 26704 match community 2_61_154 2_77_122 set community 0:9394 ip community-list standard 2_14_172 permit 65000:2 0:14 0:172 ip community-list standard 2_28_86 permit 65000:2 0:28 0:86 ip community-list standard 2_43_56 permit 65000:2 0:43 0:56 route-map calculator permit 26705 match community 2_14_172 2_28_86 2_43_56 set community 0:2408 ip community-list standard 2_212_229 permit 65000:2 0:212 0:229 route-map calculator permit 26706 match community 2_212_229 set community 0:48548 ip community-list standard 2_72_139 permit 65000:2 0:72 0:139 route-map calculator permit 26707 match community 2_72_139 set community 0:10008 ip community-list standard 2_23_194 permit 65000:2 0:23 0:194 ip community-list standard 2_46_97 permit 65000:2 0:46 0:97 route-map calculator permit 26708 match community 2_23_194 2_46_97 set community 0:4462 ip community-list standard 2_226_247 permit 65000:2 0:226 0:247 route-map calculator permit 26709 match community 2_226_247 set community 0:55822 ip community-list standard 2_101_109 permit 65000:2 0:101 0:109 route-map calculator permit 26710 match community 2_101_109 set community 0:11009 ip community-list standard 2_177_203 permit 65000:2 0:177 0:203 route-map calculator permit 26711 match community 2_177_203 set community 0:35931 ip community-list standard 2_126_137 permit 65000:2 0:126 0:137 route-map calculator permit 26712 match community 2_126_137 set community 0:17262 ip community-list standard 2_69_191 permit 65000:2 0:69 0:191 route-map calculator permit 26713 match community 2_69_191 set community 0:13179 ip community-list standard 2_151_191 permit 65000:2 0:151 0:191 route-map calculator permit 26714 match community 2_151_191 set community 0:28841 ip community-list standard 2_37_183 permit 65000:2 0:37 0:183 ip community-list standard 2_61_111 permit 65000:2 0:61 0:111 route-map calculator permit 26715 match community 2_37_183 2_61_111 set community 0:6771 ip community-list standard 2_83_205 permit 65000:2 0:83 0:205 route-map calculator permit 26716 match community 2_83_205 set community 0:17015 ip community-list standard 2_38_190 permit 65000:2 0:38 0:190 ip community-list standard 2_76_95 permit 65000:2 0:76 0:95 route-map calculator permit 26717 match community 2_38_190 2_76_95 set community 0:7220 ip community-list standard 2_145_157 permit 65000:2 0:145 0:157 route-map calculator permit 26718 match community 2_145_157 set community 0:22765 ip community-list standard 2_24_252 permit 65000:2 0:24 0:252 ip community-list standard 2_27_224 permit 65000:2 0:27 0:224 ip community-list standard 2_28_216 permit 65000:2 0:28 0:216 ip community-list standard 2_32_189 permit 65000:2 0:32 0:189 ip community-list standard 2_36_168 permit 65000:2 0:36 0:168 ip community-list standard 2_42_144 permit 65000:2 0:42 0:144 ip community-list standard 2_48_126 permit 65000:2 0:48 0:126 ip community-list standard 2_54_112 permit 65000:2 0:54 0:112 ip community-list standard 2_56_108 permit 65000:2 0:56 0:108 ip community-list standard 2_63_96 permit 65000:2 0:63 0:96 ip community-list standard 2_72_84 permit 65000:2 0:72 0:84 route-map calculator permit 26719 match community 2_24_252 2_27_224 2_28_216 2_32_189 2_36_168 set community 0:6048 route-map calculator permit 26720 match community 2_42_144 2_48_126 2_54_112 2_56_108 2_63_96 set community 0:6048 route-map calculator permit 26721 match community 2_72_84 set community 0:6048 ip community-list standard 2_6_196 permit 65000:2 0:6 0:196 ip community-list standard 2_7_168 permit 65000:2 0:7 0:168 ip community-list standard 2_8_147 permit 65000:2 0:8 0:147 ip community-list standard 2_12_98 permit 65000:2 0:12 0:98 ip community-list standard 2_14_84 permit 65000:2 0:14 0:84 ip community-list standard 2_21_56 permit 65000:2 0:21 0:56 ip community-list standard 2_24_49 permit 65000:2 0:24 0:49 ip community-list standard 2_28_42 permit 65000:2 0:28 0:42 route-map calculator permit 26722 match community 2_6_196 2_7_168 2_8_147 2_12_98 2_14_84 set community 0:1176 route-map calculator permit 26723 match community 2_21_56 2_24_49 2_28_42 set community 0:1176 ip community-list standard 2_41_146 permit 65000:2 0:41 0:146 ip community-list standard 2_73_82 permit 65000:2 0:73 0:82 route-map calculator permit 26724 match community 2_41_146 2_73_82 set community 0:5986 ip community-list standard 2_177_213 permit 65000:2 0:177 0:213 route-map calculator permit 26725 match community 2_177_213 set community 0:37701 ip community-list standard 2_52_137 permit 65000:2 0:52 0:137 route-map calculator permit 26726 match community 2_52_137 set community 0:7124 ip community-list standard 2_91_237 permit 65000:2 0:91 0:237 route-map calculator permit 26727 match community 2_91_237 set community 0:21567 ip community-list standard 2_172_229 permit 65000:2 0:172 0:229 route-map calculator permit 26728 match community 2_172_229 set community 0:39388 ip community-list standard 2_216_242 permit 65000:2 0:216 0:242 route-map calculator permit 26729 match community 2_216_242 set community 0:52272 ip community-list standard 2_88_255 permit 65000:2 0:88 0:255 ip community-list standard 2_102_220 permit 65000:2 0:102 0:220 ip community-list standard 2_110_204 permit 65000:2 0:110 0:204 ip community-list standard 2_120_187 permit 65000:2 0:120 0:187 ip community-list standard 2_132_170 permit 65000:2 0:132 0:170 ip community-list standard 2_136_165 permit 65000:2 0:136 0:165 route-map calculator permit 26730 match community 2_88_255 2_102_220 2_110_204 2_120_187 2_132_170 set community 0:22440 route-map calculator permit 26731 match community 2_136_165 set community 0:22440 ip community-list standard 2_132_223 permit 65000:2 0:132 0:223 route-map calculator permit 26732 match community 2_132_223 set community 0:29436 ip community-list standard 2_133_139 permit 65000:2 0:133 0:139 route-map calculator permit 26733 match community 2_133_139 set community 0:18487 ip community-list standard 2_107_225 permit 65000:2 0:107 0:225 route-map calculator permit 26734 match community 2_107_225 set community 0:24075 ip community-list standard 2_57_97 permit 65000:2 0:57 0:97 route-map calculator permit 26735 match community 2_57_97 set community 0:5529 ip community-list standard 2_203_215 permit 65000:2 0:203 0:215 route-map calculator permit 26736 match community 2_203_215 set community 0:43645 ip community-list standard 2_5_121 permit 65000:2 0:5 0:121 ip community-list standard 2_11_55 permit 65000:2 0:11 0:55 route-map calculator permit 26737 match community 2_5_121 2_11_55 set community 0:605 ip community-list standard 2_34_187 permit 65000:2 0:34 0:187 route-map calculator permit 26738 match community 2_34_187 set community 0:6358 ip community-list standard 2_62_253 permit 65000:2 0:62 0:253 route-map calculator permit 26739 match community 2_62_253 set community 0:15686 ip community-list standard 2_53_202 permit 65000:2 0:53 0:202 ip community-list standard 2_101_106 permit 65000:2 0:101 0:106 route-map calculator permit 26740 match community 2_53_202 2_101_106 set community 0:10706 ip community-list standard 2_119_248 permit 65000:2 0:119 0:248 ip community-list standard 2_124_238 permit 65000:2 0:124 0:238 ip community-list standard 2_136_217 permit 65000:2 0:136 0:217 route-map calculator permit 26741 match community 2_119_248 2_124_238 2_136_217 set community 0:29512 ip community-list standard 2_60_241 permit 65000:2 0:60 0:241 route-map calculator permit 26742 match community 2_60_241 set community 0:14460 ip community-list standard 2_115_219 permit 65000:2 0:115 0:219 route-map calculator permit 26743 match community 2_115_219 set community 0:25185 ip community-list standard 2_216_237 permit 65000:2 0:216 0:237 route-map calculator permit 26744 match community 2_216_237 set community 0:51192 ip community-list standard 2_5_145 permit 65000:2 0:5 0:145 ip community-list standard 2_25_29 permit 65000:2 0:25 0:29 route-map calculator permit 26745 match community 2_5_145 2_25_29 set community 0:725 ip community-list standard 2_67_91 permit 65000:2 0:67 0:91 route-map calculator permit 26746 match community 2_67_91 set community 0:6097 ip community-list standard 2_109_197 permit 65000:2 0:109 0:197 route-map calculator permit 26747 match community 2_109_197 set community 0:21473 ip community-list standard 2_81_241 permit 65000:2 0:81 0:241 route-map calculator permit 26748 match community 2_81_241 set community 0:19521 ip community-list standard 2_75_255 permit 65000:2 0:75 0:255 ip community-list standard 2_85_225 permit 65000:2 0:85 0:225 ip community-list standard 2_125_153 permit 65000:2 0:125 0:153 route-map calculator permit 26749 match community 2_75_255 2_85_225 2_125_153 set community 0:19125 ip community-list standard 2_50_181 permit 65000:2 0:50 0:181 route-map calculator permit 26750 match community 2_50_181 set community 0:9050 ip community-list standard 2_24_247 permit 65000:2 0:24 0:247 ip community-list standard 2_26_228 permit 65000:2 0:26 0:228 ip community-list standard 2_38_156 permit 65000:2 0:38 0:156 ip community-list standard 2_39_152 permit 65000:2 0:39 0:152 ip community-list standard 2_52_114 permit 65000:2 0:52 0:114 ip community-list standard 2_57_104 permit 65000:2 0:57 0:104 ip community-list standard 2_76_78 permit 65000:2 0:76 0:78 route-map calculator permit 26751 match community 2_24_247 2_26_228 2_38_156 2_39_152 2_52_114 set community 0:5928 route-map calculator permit 26752 match community 2_57_104 2_76_78 set community 0:5928 ip community-list standard 2_83_218 permit 65000:2 0:83 0:218 ip community-list standard 2_109_166 permit 65000:2 0:109 0:166 route-map calculator permit 26753 match community 2_83_218 2_109_166 set community 0:18094 ip community-list standard 2_135_212 permit 65000:2 0:135 0:212 ip community-list standard 2_159_180 permit 65000:2 0:159 0:180 route-map calculator permit 26754 match community 2_135_212 2_159_180 set community 0:28620 ip community-list standard 2_84_229 permit 65000:2 0:84 0:229 route-map calculator permit 26755 match community 2_84_229 set community 0:19236 ip community-list standard 2_2_135 permit 65000:2 0:2 0:135 ip community-list standard 2_3_90 permit 65000:2 0:3 0:90 ip community-list standard 2_5_54 permit 65000:2 0:5 0:54 ip community-list standard 2_6_45 permit 65000:2 0:6 0:45 ip community-list standard 2_9_30 permit 65000:2 0:9 0:30 ip community-list standard 2_10_27 permit 65000:2 0:10 0:27 ip community-list standard 1_14_256 permit 65000:1 0:14 0:256 ip community-list standard 2_15_18 permit 65000:2 0:15 0:18 ip community-list standard 1_15_255 permit 65000:1 0:15 0:255 ip community-list standard 1_16_254 permit 65000:1 0:16 0:254 ip community-list standard 1_17_253 permit 65000:1 0:17 0:253 ip community-list standard 1_18_252 permit 65000:1 0:18 0:252 ip community-list standard 1_19_251 permit 65000:1 0:19 0:251 ip community-list standard 1_20_250 permit 65000:1 0:20 0:250 ip community-list standard 1_21_249 permit 65000:1 0:21 0:249 ip community-list standard 1_22_248 permit 65000:1 0:22 0:248 ip community-list standard 1_23_247 permit 65000:1 0:23 0:247 ip community-list standard 1_24_246 permit 65000:1 0:24 0:246 ip community-list standard 1_25_245 permit 65000:1 0:25 0:245 ip community-list standard 1_26_244 permit 65000:1 0:26 0:244 ip community-list standard 1_27_243 permit 65000:1 0:27 0:243 ip community-list standard 1_28_242 permit 65000:1 0:28 0:242 ip community-list standard 1_29_241 permit 65000:1 0:29 0:241 ip community-list standard 1_30_240 permit 65000:1 0:30 0:240 ip community-list standard 1_31_239 permit 65000:1 0:31 0:239 ip community-list standard 1_32_238 permit 65000:1 0:32 0:238 ip community-list standard 1_33_237 permit 65000:1 0:33 0:237 ip community-list standard 1_34_236 permit 65000:1 0:34 0:236 ip community-list standard 1_35_235 permit 65000:1 0:35 0:235 ip community-list standard 1_36_234 permit 65000:1 0:36 0:234 ip community-list standard 1_37_233 permit 65000:1 0:37 0:233 ip community-list standard 1_38_232 permit 65000:1 0:38 0:232 ip community-list standard 1_39_231 permit 65000:1 0:39 0:231 ip community-list standard 1_40_230 permit 65000:1 0:40 0:230 ip community-list standard 1_41_229 permit 65000:1 0:41 0:229 ip community-list standard 1_42_228 permit 65000:1 0:42 0:228 ip community-list standard 1_43_227 permit 65000:1 0:43 0:227 ip community-list standard 1_44_226 permit 65000:1 0:44 0:226 ip community-list standard 1_45_225 permit 65000:1 0:45 0:225 ip community-list standard 1_46_224 permit 65000:1 0:46 0:224 ip community-list standard 1_47_223 permit 65000:1 0:47 0:223 ip community-list standard 1_48_222 permit 65000:1 0:48 0:222 ip community-list standard 1_49_221 permit 65000:1 0:49 0:221 ip community-list standard 1_50_220 permit 65000:1 0:50 0:220 ip community-list standard 1_51_219 permit 65000:1 0:51 0:219 ip community-list standard 1_52_218 permit 65000:1 0:52 0:218 ip community-list standard 1_53_217 permit 65000:1 0:53 0:217 ip community-list standard 1_54_216 permit 65000:1 0:54 0:216 ip community-list standard 1_55_215 permit 65000:1 0:55 0:215 ip community-list standard 1_56_214 permit 65000:1 0:56 0:214 ip community-list standard 1_57_213 permit 65000:1 0:57 0:213 ip community-list standard 1_58_212 permit 65000:1 0:58 0:212 ip community-list standard 1_59_211 permit 65000:1 0:59 0:211 ip community-list standard 1_60_210 permit 65000:1 0:60 0:210 ip community-list standard 1_61_209 permit 65000:1 0:61 0:209 ip community-list standard 1_62_208 permit 65000:1 0:62 0:208 ip community-list standard 1_63_207 permit 65000:1 0:63 0:207 ip community-list standard 1_64_206 permit 65000:1 0:64 0:206 ip community-list standard 1_65_205 permit 65000:1 0:65 0:205 ip community-list standard 1_66_204 permit 65000:1 0:66 0:204 ip community-list standard 1_67_203 permit 65000:1 0:67 0:203 ip community-list standard 1_68_202 permit 65000:1 0:68 0:202 ip community-list standard 1_69_201 permit 65000:1 0:69 0:201 ip community-list standard 1_70_200 permit 65000:1 0:70 0:200 ip community-list standard 1_71_199 permit 65000:1 0:71 0:199 ip community-list standard 1_72_198 permit 65000:1 0:72 0:198 ip community-list standard 1_73_197 permit 65000:1 0:73 0:197 ip community-list standard 1_74_196 permit 65000:1 0:74 0:196 ip community-list standard 1_75_195 permit 65000:1 0:75 0:195 ip community-list standard 1_76_194 permit 65000:1 0:76 0:194 ip community-list standard 1_77_193 permit 65000:1 0:77 0:193 ip community-list standard 1_78_192 permit 65000:1 0:78 0:192 ip community-list standard 1_79_191 permit 65000:1 0:79 0:191 ip community-list standard 1_80_190 permit 65000:1 0:80 0:190 ip community-list standard 1_81_189 permit 65000:1 0:81 0:189 ip community-list standard 1_82_188 permit 65000:1 0:82 0:188 ip community-list standard 1_83_187 permit 65000:1 0:83 0:187 ip community-list standard 1_84_186 permit 65000:1 0:84 0:186 ip community-list standard 1_85_185 permit 65000:1 0:85 0:185 ip community-list standard 1_86_184 permit 65000:1 0:86 0:184 ip community-list standard 1_87_183 permit 65000:1 0:87 0:183 ip community-list standard 1_88_182 permit 65000:1 0:88 0:182 ip community-list standard 1_89_181 permit 65000:1 0:89 0:181 ip community-list standard 1_90_180 permit 65000:1 0:90 0:180 ip community-list standard 1_91_179 permit 65000:1 0:91 0:179 ip community-list standard 1_92_178 permit 65000:1 0:92 0:178 ip community-list standard 1_93_177 permit 65000:1 0:93 0:177 ip community-list standard 1_94_176 permit 65000:1 0:94 0:176 ip community-list standard 1_95_175 permit 65000:1 0:95 0:175 ip community-list standard 1_96_174 permit 65000:1 0:96 0:174 ip community-list standard 1_97_173 permit 65000:1 0:97 0:173 ip community-list standard 1_98_172 permit 65000:1 0:98 0:172 ip community-list standard 1_99_171 permit 65000:1 0:99 0:171 ip community-list standard 1_100_170 permit 65000:1 0:100 0:170 ip community-list standard 1_101_169 permit 65000:1 0:101 0:169 ip community-list standard 1_102_168 permit 65000:1 0:102 0:168 ip community-list standard 1_103_167 permit 65000:1 0:103 0:167 ip community-list standard 1_104_166 permit 65000:1 0:104 0:166 ip community-list standard 1_105_165 permit 65000:1 0:105 0:165 ip community-list standard 1_106_164 permit 65000:1 0:106 0:164 ip community-list standard 1_107_163 permit 65000:1 0:107 0:163 ip community-list standard 1_108_162 permit 65000:1 0:108 0:162 ip community-list standard 1_109_161 permit 65000:1 0:109 0:161 ip community-list standard 1_110_160 permit 65000:1 0:110 0:160 ip community-list standard 1_111_159 permit 65000:1 0:111 0:159 ip community-list standard 1_112_158 permit 65000:1 0:112 0:158 ip community-list standard 1_113_157 permit 65000:1 0:113 0:157 ip community-list standard 1_114_156 permit 65000:1 0:114 0:156 ip community-list standard 1_115_155 permit 65000:1 0:115 0:155 ip community-list standard 1_116_154 permit 65000:1 0:116 0:154 ip community-list standard 1_117_153 permit 65000:1 0:117 0:153 ip community-list standard 1_118_152 permit 65000:1 0:118 0:152 ip community-list standard 1_119_151 permit 65000:1 0:119 0:151 ip community-list standard 1_120_150 permit 65000:1 0:120 0:150 ip community-list standard 1_121_149 permit 65000:1 0:121 0:149 ip community-list standard 1_122_148 permit 65000:1 0:122 0:148 ip community-list standard 1_123_147 permit 65000:1 0:123 0:147 ip community-list standard 1_124_146 permit 65000:1 0:124 0:146 ip community-list standard 1_125_145 permit 65000:1 0:125 0:145 ip community-list standard 1_126_144 permit 65000:1 0:126 0:144 ip community-list standard 1_127_143 permit 65000:1 0:127 0:143 ip community-list standard 1_128_142 permit 65000:1 0:128 0:142 ip community-list standard 1_129_141 permit 65000:1 0:129 0:141 ip community-list standard 1_130_140 permit 65000:1 0:130 0:140 ip community-list standard 1_131_139 permit 65000:1 0:131 0:139 ip community-list standard 1_132_138 permit 65000:1 0:132 0:138 ip community-list standard 1_133_137 permit 65000:1 0:133 0:137 ip community-list standard 1_134_136 permit 65000:1 0:134 0:136 ip community-list standard 1_135_135 permit 65000:1 0:135 0:135 route-map calculator permit 26756 match community 2_2_135 2_3_90 2_5_54 2_6_45 2_9_30 set community 0:270 route-map calculator permit 26757 match community 2_10_27 1_14_256 2_15_18 1_15_255 1_16_254 set community 0:270 route-map calculator permit 26758 match community 1_17_253 1_18_252 1_19_251 1_20_250 1_21_249 set community 0:270 route-map calculator permit 26759 match community 1_22_248 1_23_247 1_24_246 1_25_245 1_26_244 set community 0:270 route-map calculator permit 26760 match community 1_27_243 1_28_242 1_29_241 1_30_240 1_31_239 set community 0:270 route-map calculator permit 26761 match community 1_32_238 1_33_237 1_34_236 1_35_235 1_36_234 set community 0:270 route-map calculator permit 26762 match community 1_37_233 1_38_232 1_39_231 1_40_230 1_41_229 set community 0:270 route-map calculator permit 26763 match community 1_42_228 1_43_227 1_44_226 1_45_225 1_46_224 set community 0:270 route-map calculator permit 26764 match community 1_47_223 1_48_222 1_49_221 1_50_220 1_51_219 set community 0:270 route-map calculator permit 26765 match community 1_52_218 1_53_217 1_54_216 1_55_215 1_56_214 set community 0:270 route-map calculator permit 26766 match community 1_57_213 1_58_212 1_59_211 1_60_210 1_61_209 set community 0:270 route-map calculator permit 26767 match community 1_62_208 1_63_207 1_64_206 1_65_205 1_66_204 set community 0:270 route-map calculator permit 26768 match community 1_67_203 1_68_202 1_69_201 1_70_200 1_71_199 set community 0:270 route-map calculator permit 26769 match community 1_72_198 1_73_197 1_74_196 1_75_195 1_76_194 set community 0:270 route-map calculator permit 26770 match community 1_77_193 1_78_192 1_79_191 1_80_190 1_81_189 set community 0:270 route-map calculator permit 26771 match community 1_82_188 1_83_187 1_84_186 1_85_185 1_86_184 set community 0:270 route-map calculator permit 26772 match community 1_87_183 1_88_182 1_89_181 1_90_180 1_91_179 set community 0:270 route-map calculator permit 26773 match community 1_92_178 1_93_177 1_94_176 1_95_175 1_96_174 set community 0:270 route-map calculator permit 26774 match community 1_97_173 1_98_172 1_99_171 1_100_170 1_101_169 set community 0:270 route-map calculator permit 26775 match community 1_102_168 1_103_167 1_104_166 1_105_165 1_106_164 set community 0:270 route-map calculator permit 26776 match community 1_107_163 1_108_162 1_109_161 1_110_160 1_111_159 set community 0:270 route-map calculator permit 26777 match community 1_112_158 1_113_157 1_114_156 1_115_155 1_116_154 set community 0:270 route-map calculator permit 26778 match community 1_117_153 1_118_152 1_119_151 1_120_150 1_121_149 set community 0:270 route-map calculator permit 26779 match community 1_122_148 1_123_147 1_124_146 1_125_145 1_126_144 set community 0:270 route-map calculator permit 26780 match community 1_127_143 1_128_142 1_129_141 1_130_140 1_131_139 set community 0:270 route-map calculator permit 26781 match community 1_132_138 1_133_137 1_134_136 1_135_135 set community 0:270 ip community-list standard 2_180_235 permit 65000:2 0:180 0:235 ip community-list standard 2_188_225 permit 65000:2 0:188 0:225 route-map calculator permit 26782 match community 2_180_235 2_188_225 set community 0:42300 ip community-list standard 2_194_213 permit 65000:2 0:194 0:213 route-map calculator permit 26783 match community 2_194_213 set community 0:41322 ip community-list standard 2_170_226 permit 65000:2 0:170 0:226 route-map calculator permit 26784 match community 2_170_226 set community 0:38420 ip community-list standard 2_23_138 permit 65000:2 0:23 0:138 ip community-list standard 2_46_69 permit 65000:2 0:46 0:69 route-map calculator permit 26785 match community 2_23_138 2_46_69 set community 0:3174 ip community-list standard 2_35_169 permit 65000:2 0:35 0:169 ip community-list standard 2_65_91 permit 65000:2 0:65 0:91 route-map calculator permit 26786 match community 2_35_169 2_65_91 set community 0:5915 ip community-list standard 2_22_157 permit 65000:2 0:22 0:157 route-map calculator permit 26787 match community 2_22_157 set community 0:3454 ip community-list standard 2_83_206 permit 65000:2 0:83 0:206 ip community-list standard 2_103_166 permit 65000:2 0:103 0:166 route-map calculator permit 26788 match community 2_83_206 2_103_166 set community 0:17098 ip community-list standard 2_95_256 permit 65000:2 0:95 0:256 ip community-list standard 2_128_190 permit 65000:2 0:128 0:190 ip community-list standard 2_152_160 permit 65000:2 0:152 0:160 route-map calculator permit 26789 match community 2_95_256 2_128_190 2_152_160 set community 0:24320 ip community-list standard 2_95_212 permit 65000:2 0:95 0:212 ip community-list standard 2_106_190 permit 65000:2 0:106 0:190 route-map calculator permit 26790 match community 2_95_212 2_106_190 set community 0:20140 ip community-list standard 2_68_227 permit 65000:2 0:68 0:227 route-map calculator permit 26791 match community 2_68_227 set community 0:15436 ip community-list standard 2_101_117 permit 65000:2 0:101 0:117 route-map calculator permit 26792 match community 2_101_117 set community 0:11817 ip community-list standard 2_62_248 permit 65000:2 0:62 0:248 ip community-list standard 2_124_124 permit 65000:2 0:124 0:124 route-map calculator permit 26793 match community 2_62_248 2_124_124 set community 0:15376 ip community-list standard 2_149_218 permit 65000:2 0:149 0:218 route-map calculator permit 26794 match community 2_149_218 set community 0:32482 ip community-list standard 2_94_131 permit 65000:2 0:94 0:131 route-map calculator permit 26795 match community 2_94_131 set community 0:12314 ip community-list standard 2_163_214 permit 65000:2 0:163 0:214 route-map calculator permit 26796 match community 2_163_214 set community 0:34882 ip community-list standard 2_68_220 permit 65000:2 0:68 0:220 ip community-list standard 2_80_187 permit 65000:2 0:80 0:187 ip community-list standard 2_85_176 permit 65000:2 0:85 0:176 ip community-list standard 2_88_170 permit 65000:2 0:88 0:170 ip community-list standard 2_110_136 permit 65000:2 0:110 0:136 route-map calculator permit 26797 match community 2_68_220 2_80_187 2_85_176 2_88_170 2_110_136 set community 0:14960 ip community-list standard 2_232_256 permit 65000:2 0:232 0:256 route-map calculator permit 26798 match community 2_232_256 set community 0:59392 ip community-list standard 2_114_131 permit 65000:2 0:114 0:131 route-map calculator permit 26799 match community 2_114_131 set community 0:14934 ip community-list standard 2_141_250 permit 65000:2 0:141 0:250 ip community-list standard 2_150_235 permit 65000:2 0:150 0:235 route-map calculator permit 26800 match community 2_141_250 2_150_235 set community 0:35250 ip community-list standard 2_76_205 permit 65000:2 0:76 0:205 ip community-list standard 2_82_190 permit 65000:2 0:82 0:190 ip community-list standard 2_95_164 permit 65000:2 0:95 0:164 route-map calculator permit 26801 match community 2_76_205 2_82_190 2_95_164 set community 0:15580 ip community-list standard 2_153_153 permit 65000:2 0:153 0:153 route-map calculator permit 26802 match community 2_153_153 set community 0:23409 ip community-list standard 2_15_227 permit 65000:2 0:15 0:227 route-map calculator permit 26803 match community 2_15_227 set community 0:3405 ip community-list standard 2_89_243 permit 65000:2 0:89 0:243 route-map calculator permit 26804 match community 2_89_243 set community 0:21627 ip community-list standard 2_140_226 permit 65000:2 0:140 0:226 route-map calculator permit 26805 match community 2_140_226 set community 0:31640 ip community-list standard 2_70_199 permit 65000:2 0:70 0:199 route-map calculator permit 26806 match community 2_70_199 set community 0:13930 ip community-list standard 2_169_213 permit 65000:2 0:169 0:213 route-map calculator permit 26807 match community 2_169_213 set community 0:35997 ip community-list standard 2_179_205 permit 65000:2 0:179 0:205 route-map calculator permit 26808 match community 2_179_205 set community 0:36695 ip community-list standard 2_121_209 permit 65000:2 0:121 0:209 route-map calculator permit 26809 match community 2_121_209 set community 0:25289 ip community-list standard 2_154_246 permit 65000:2 0:154 0:246 ip community-list standard 2_164_231 permit 65000:2 0:164 0:231 route-map calculator permit 26810 match community 2_154_246 2_164_231 set community 0:37884 ip community-list standard 2_82_199 permit 65000:2 0:82 0:199 route-map calculator permit 26811 match community 2_82_199 set community 0:16318 ip community-list standard 2_30_214 permit 65000:2 0:30 0:214 ip community-list standard 2_60_107 permit 65000:2 0:60 0:107 route-map calculator permit 26812 match community 2_30_214 2_60_107 set community 0:6420 ip community-list standard 2_159_241 permit 65000:2 0:159 0:241 route-map calculator permit 26813 match community 2_159_241 set community 0:38319 ip community-list standard 2_9_209 permit 65000:2 0:9 0:209 ip community-list standard 2_11_171 permit 65000:2 0:11 0:171 ip community-list standard 2_19_99 permit 65000:2 0:19 0:99 ip community-list standard 2_33_57 permit 65000:2 0:33 0:57 route-map calculator permit 26814 match community 2_9_209 2_11_171 2_19_99 2_33_57 set community 0:1881 ip community-list standard 2_129_216 permit 65000:2 0:129 0:216 ip community-list standard 2_162_172 permit 65000:2 0:162 0:172 route-map calculator permit 26815 match community 2_129_216 2_162_172 set community 0:27864 ip community-list standard 2_138_182 permit 65000:2 0:138 0:182 ip community-list standard 2_156_161 permit 65000:2 0:156 0:161 route-map calculator permit 26816 match community 2_138_182 2_156_161 set community 0:25116 ip community-list standard 2_133_133 permit 65000:2 0:133 0:133 route-map calculator permit 26817 match community 2_133_133 set community 0:17689 ip community-list standard 2_233_238 permit 65000:2 0:233 0:238 route-map calculator permit 26818 match community 2_233_238 set community 0:55454 ip community-list standard 2_131_219 permit 65000:2 0:131 0:219 route-map calculator permit 26819 match community 2_131_219 set community 0:28689 ip community-list standard 2_143_238 permit 65000:2 0:143 0:238 ip community-list standard 2_154_221 permit 65000:2 0:154 0:221 ip community-list standard 2_182_187 permit 65000:2 0:182 0:187 route-map calculator permit 26820 match community 2_143_238 2_154_221 2_182_187 set community 0:34034 ip community-list standard 1_1_225 permit 65000:1 0:1 0:225 ip community-list standard 2_1_226 permit 65000:2 0:1 0:226 ip community-list standard 2_2_113 permit 65000:2 0:2 0:113 ip community-list standard 1_2_224 permit 65000:1 0:2 0:224 ip community-list standard 1_3_223 permit 65000:1 0:3 0:223 ip community-list standard 1_4_222 permit 65000:1 0:4 0:222 ip community-list standard 1_5_221 permit 65000:1 0:5 0:221 ip community-list standard 1_6_220 permit 65000:1 0:6 0:220 ip community-list standard 1_7_219 permit 65000:1 0:7 0:219 ip community-list standard 1_8_218 permit 65000:1 0:8 0:218 ip community-list standard 1_9_217 permit 65000:1 0:9 0:217 ip community-list standard 1_10_216 permit 65000:1 0:10 0:216 ip community-list standard 1_11_215 permit 65000:1 0:11 0:215 ip community-list standard 1_12_214 permit 65000:1 0:12 0:214 ip community-list standard 1_13_213 permit 65000:1 0:13 0:213 ip community-list standard 1_14_212 permit 65000:1 0:14 0:212 ip community-list standard 1_15_211 permit 65000:1 0:15 0:211 ip community-list standard 1_16_210 permit 65000:1 0:16 0:210 ip community-list standard 1_17_209 permit 65000:1 0:17 0:209 ip community-list standard 1_18_208 permit 65000:1 0:18 0:208 ip community-list standard 1_19_207 permit 65000:1 0:19 0:207 ip community-list standard 1_20_206 permit 65000:1 0:20 0:206 ip community-list standard 1_21_205 permit 65000:1 0:21 0:205 ip community-list standard 1_22_204 permit 65000:1 0:22 0:204 ip community-list standard 1_23_203 permit 65000:1 0:23 0:203 ip community-list standard 1_24_202 permit 65000:1 0:24 0:202 ip community-list standard 1_25_201 permit 65000:1 0:25 0:201 ip community-list standard 1_26_200 permit 65000:1 0:26 0:200 ip community-list standard 1_27_199 permit 65000:1 0:27 0:199 ip community-list standard 1_28_198 permit 65000:1 0:28 0:198 ip community-list standard 1_29_197 permit 65000:1 0:29 0:197 ip community-list standard 1_30_196 permit 65000:1 0:30 0:196 ip community-list standard 1_31_195 permit 65000:1 0:31 0:195 ip community-list standard 1_32_194 permit 65000:1 0:32 0:194 ip community-list standard 1_33_193 permit 65000:1 0:33 0:193 ip community-list standard 1_34_192 permit 65000:1 0:34 0:192 ip community-list standard 1_35_191 permit 65000:1 0:35 0:191 ip community-list standard 1_36_190 permit 65000:1 0:36 0:190 ip community-list standard 1_37_189 permit 65000:1 0:37 0:189 ip community-list standard 1_38_188 permit 65000:1 0:38 0:188 ip community-list standard 1_39_187 permit 65000:1 0:39 0:187 ip community-list standard 1_40_186 permit 65000:1 0:40 0:186 ip community-list standard 1_41_185 permit 65000:1 0:41 0:185 ip community-list standard 1_42_184 permit 65000:1 0:42 0:184 ip community-list standard 1_43_183 permit 65000:1 0:43 0:183 ip community-list standard 1_44_182 permit 65000:1 0:44 0:182 ip community-list standard 1_45_181 permit 65000:1 0:45 0:181 ip community-list standard 1_46_180 permit 65000:1 0:46 0:180 ip community-list standard 1_47_179 permit 65000:1 0:47 0:179 ip community-list standard 1_48_178 permit 65000:1 0:48 0:178 ip community-list standard 1_49_177 permit 65000:1 0:49 0:177 ip community-list standard 1_50_176 permit 65000:1 0:50 0:176 ip community-list standard 1_51_175 permit 65000:1 0:51 0:175 ip community-list standard 1_52_174 permit 65000:1 0:52 0:174 ip community-list standard 1_53_173 permit 65000:1 0:53 0:173 ip community-list standard 1_54_172 permit 65000:1 0:54 0:172 ip community-list standard 1_55_171 permit 65000:1 0:55 0:171 ip community-list standard 1_56_170 permit 65000:1 0:56 0:170 ip community-list standard 1_57_169 permit 65000:1 0:57 0:169 ip community-list standard 1_58_168 permit 65000:1 0:58 0:168 ip community-list standard 1_59_167 permit 65000:1 0:59 0:167 ip community-list standard 1_60_166 permit 65000:1 0:60 0:166 ip community-list standard 1_61_165 permit 65000:1 0:61 0:165 ip community-list standard 1_62_164 permit 65000:1 0:62 0:164 ip community-list standard 1_63_163 permit 65000:1 0:63 0:163 ip community-list standard 1_64_162 permit 65000:1 0:64 0:162 ip community-list standard 1_65_161 permit 65000:1 0:65 0:161 ip community-list standard 1_66_160 permit 65000:1 0:66 0:160 ip community-list standard 1_67_159 permit 65000:1 0:67 0:159 ip community-list standard 1_68_158 permit 65000:1 0:68 0:158 ip community-list standard 1_69_157 permit 65000:1 0:69 0:157 ip community-list standard 1_70_156 permit 65000:1 0:70 0:156 ip community-list standard 1_71_155 permit 65000:1 0:71 0:155 ip community-list standard 1_72_154 permit 65000:1 0:72 0:154 ip community-list standard 1_73_153 permit 65000:1 0:73 0:153 ip community-list standard 1_74_152 permit 65000:1 0:74 0:152 ip community-list standard 1_75_151 permit 65000:1 0:75 0:151 ip community-list standard 1_76_150 permit 65000:1 0:76 0:150 ip community-list standard 1_77_149 permit 65000:1 0:77 0:149 ip community-list standard 1_78_148 permit 65000:1 0:78 0:148 ip community-list standard 1_79_147 permit 65000:1 0:79 0:147 ip community-list standard 1_80_146 permit 65000:1 0:80 0:146 ip community-list standard 1_81_145 permit 65000:1 0:81 0:145 ip community-list standard 1_82_144 permit 65000:1 0:82 0:144 ip community-list standard 1_83_143 permit 65000:1 0:83 0:143 ip community-list standard 1_84_142 permit 65000:1 0:84 0:142 ip community-list standard 1_85_141 permit 65000:1 0:85 0:141 ip community-list standard 1_86_140 permit 65000:1 0:86 0:140 ip community-list standard 1_87_139 permit 65000:1 0:87 0:139 ip community-list standard 1_88_138 permit 65000:1 0:88 0:138 ip community-list standard 1_89_137 permit 65000:1 0:89 0:137 ip community-list standard 1_90_136 permit 65000:1 0:90 0:136 ip community-list standard 1_91_135 permit 65000:1 0:91 0:135 ip community-list standard 1_92_134 permit 65000:1 0:92 0:134 ip community-list standard 1_93_133 permit 65000:1 0:93 0:133 ip community-list standard 1_94_132 permit 65000:1 0:94 0:132 ip community-list standard 1_95_131 permit 65000:1 0:95 0:131 ip community-list standard 1_96_130 permit 65000:1 0:96 0:130 ip community-list standard 1_97_129 permit 65000:1 0:97 0:129 ip community-list standard 1_98_128 permit 65000:1 0:98 0:128 ip community-list standard 1_99_127 permit 65000:1 0:99 0:127 ip community-list standard 1_100_126 permit 65000:1 0:100 0:126 ip community-list standard 1_101_125 permit 65000:1 0:101 0:125 ip community-list standard 1_102_124 permit 65000:1 0:102 0:124 ip community-list standard 1_103_123 permit 65000:1 0:103 0:123 ip community-list standard 1_104_122 permit 65000:1 0:104 0:122 ip community-list standard 1_105_121 permit 65000:1 0:105 0:121 ip community-list standard 1_106_120 permit 65000:1 0:106 0:120 ip community-list standard 1_107_119 permit 65000:1 0:107 0:119 ip community-list standard 1_108_118 permit 65000:1 0:108 0:118 ip community-list standard 1_109_117 permit 65000:1 0:109 0:117 ip community-list standard 1_110_116 permit 65000:1 0:110 0:116 ip community-list standard 1_111_115 permit 65000:1 0:111 0:115 ip community-list standard 1_112_114 permit 65000:1 0:112 0:114 ip community-list standard 1_113_113 permit 65000:1 0:113 0:113 ip community-list expanded c226 permit 1 ^65000:4_0:226_0:1$ ip community-list expanded c226 permit 2 ^65000:3_0:227_0:1$ ip community-list expanded c226 permit 3 ^65000:3_0:228_0:2$ ip community-list expanded c226 permit 4 ^65000:3_0:229_0:3$ ip community-list expanded c226 permit 5 ^65000:3_0:230_0:4$ ip community-list expanded c226 permit 6 ^65000:3_0:231_0:5$ ip community-list expanded c226 permit 7 ^65000:3_0:232_0:6$ ip community-list expanded c226 permit 8 ^65000:3_0:233_0:7$ ip community-list expanded c226 permit 9 ^65000:3_0:234_0:8$ ip community-list expanded c226 permit 10 ^65000:3_0:235_0:9$ ip community-list expanded c226 permit 11 ^65000:3_0:236_0:10$ ip community-list expanded c226 permit 12 ^65000:3_0:237_0:11$ ip community-list expanded c226 permit 13 ^65000:3_0:238_0:12$ ip community-list expanded c226 permit 14 ^65000:3_0:239_0:13$ ip community-list expanded c226 permit 15 ^65000:3_0:240_0:14$ ip community-list expanded c226 permit 16 ^65000:3_0:241_0:15$ ip community-list expanded c226 permit 17 ^65000:3_0:242_0:16$ ip community-list expanded c226 permit 18 ^65000:3_0:243_0:17$ ip community-list expanded c226 permit 19 ^65000:3_0:244_0:18$ ip community-list expanded c226 permit 20 ^65000:3_0:245_0:19$ ip community-list expanded c226 permit 21 ^65000:3_0:246_0:20$ ip community-list expanded c226 permit 22 ^65000:3_0:247_0:21$ ip community-list expanded c226 permit 23 ^65000:3_0:248_0:22$ ip community-list expanded c226 permit 24 ^65000:3_0:249_0:23$ ip community-list expanded c226 permit 25 ^65000:3_0:250_0:24$ ip community-list expanded c226 permit 26 ^65000:3_0:251_0:25$ ip community-list expanded c226 permit 27 ^65000:3_0:252_0:26$ ip community-list expanded c226 permit 28 ^65000:3_0:253_0:27$ ip community-list expanded c226 permit 29 ^65000:3_0:254_0:28$ ip community-list expanded c226 permit 30 ^65000:3_0:255_0:29$ ip community-list expanded c226 permit 31 ^65000:3_0:256_0:30$ route-map calculator permit 26821 match community 1_1_225 2_1_226 2_2_113 1_2_224 1_3_223 set community 0:226 route-map calculator permit 26822 match community 1_4_222 1_5_221 1_6_220 1_7_219 1_8_218 set community 0:226 route-map calculator permit 26823 match community 1_9_217 1_10_216 1_11_215 1_12_214 1_13_213 set community 0:226 route-map calculator permit 26824 match community 1_14_212 1_15_211 1_16_210 1_17_209 1_18_208 set community 0:226 route-map calculator permit 26825 match community 1_19_207 1_20_206 1_21_205 1_22_204 1_23_203 set community 0:226 route-map calculator permit 26826 match community 1_24_202 1_25_201 1_26_200 1_27_199 1_28_198 set community 0:226 route-map calculator permit 26827 match community 1_29_197 1_30_196 1_31_195 1_32_194 1_33_193 set community 0:226 route-map calculator permit 26828 match community 1_34_192 1_35_191 1_36_190 1_37_189 1_38_188 set community 0:226 route-map calculator permit 26829 match community 1_39_187 1_40_186 1_41_185 1_42_184 1_43_183 set community 0:226 route-map calculator permit 26830 match community 1_44_182 1_45_181 1_46_180 1_47_179 1_48_178 set community 0:226 route-map calculator permit 26831 match community 1_49_177 1_50_176 1_51_175 1_52_174 1_53_173 set community 0:226 route-map calculator permit 26832 match community 1_54_172 1_55_171 1_56_170 1_57_169 1_58_168 set community 0:226 route-map calculator permit 26833 match community 1_59_167 1_60_166 1_61_165 1_62_164 1_63_163 set community 0:226 route-map calculator permit 26834 match community 1_64_162 1_65_161 1_66_160 1_67_159 1_68_158 set community 0:226 route-map calculator permit 26835 match community 1_69_157 1_70_156 1_71_155 1_72_154 1_73_153 set community 0:226 route-map calculator permit 26836 match community 1_74_152 1_75_151 1_76_150 1_77_149 1_78_148 set community 0:226 route-map calculator permit 26837 match community 1_79_147 1_80_146 1_81_145 1_82_144 1_83_143 set community 0:226 route-map calculator permit 26838 match community 1_84_142 1_85_141 1_86_140 1_87_139 1_88_138 set community 0:226 route-map calculator permit 26839 match community 1_89_137 1_90_136 1_91_135 1_92_134 1_93_133 set community 0:226 route-map calculator permit 26840 match community 1_94_132 1_95_131 1_96_130 1_97_129 1_98_128 set community 0:226 route-map calculator permit 26841 match community 1_99_127 1_100_126 1_101_125 1_102_124 1_103_123 set community 0:226 route-map calculator permit 26842 match community 1_104_122 1_105_121 1_106_120 1_107_119 1_108_118 set community 0:226 route-map calculator permit 26843 match community 1_109_117 1_110_116 1_111_115 1_112_114 1_113_113 set community 0:226 route-map calculator permit 26844 match community c4_226_1 c3_227_1 c3_228_2 c3_229_3 c3_230_4 set community 0:226 route-map calculator permit 26845 match community c3_231_5 c3_232_6 c3_233_7 c3_234_8 c3_235_9 set community 0:226 route-map calculator permit 26846 match community c3_236_10 c3_237_11 c3_238_12 c3_239_13 c3_240_14 set community 0:226 route-map calculator permit 26847 match community c3_241_15 c3_242_16 c3_243_17 c3_244_18 c3_245_19 set community 0:226 route-map calculator permit 26848 match community c3_246_20 c3_247_21 c3_248_22 c3_249_23 c3_250_24 set community 0:226 route-map calculator permit 26849 match community c3_251_25 c3_252_26 c3_253_27 c3_254_28 c3_255_29 set community 0:226 route-map calculator permit 26850 match community c3_256_30 set community 0:226 ip community-list standard 2_184_232 permit 65000:2 0:184 0:232 route-map calculator permit 26851 match community 2_184_232 set community 0:42688 ip community-list standard 2_32_239 permit 65000:2 0:32 0:239 route-map calculator permit 26852 match community 2_32_239 set community 0:7648 ip community-list standard 2_153_221 permit 65000:2 0:153 0:221 route-map calculator permit 26853 match community 2_153_221 set community 0:33813 ip community-list standard 2_169_224 permit 65000:2 0:169 0:224 ip community-list standard 2_182_208 permit 65000:2 0:182 0:208 route-map calculator permit 26854 match community 2_169_224 2_182_208 set community 0:37856 ip community-list standard 2_35_201 permit 65000:2 0:35 0:201 ip community-list standard 2_67_105 permit 65000:2 0:67 0:105 route-map calculator permit 26855 match community 2_35_201 2_67_105 set community 0:7035 ip community-list standard 2_146_238 permit 65000:2 0:146 0:238 route-map calculator permit 26856 match community 2_146_238 set community 0:34748 ip community-list standard 2_50_211 permit 65000:2 0:50 0:211 route-map calculator permit 26857 match community 2_50_211 set community 0:10550 ip community-list standard 2_226_239 permit 65000:2 0:226 0:239 route-map calculator permit 26858 match community 2_226_239 set community 0:54014 ip community-list standard 2_40_142 permit 65000:2 0:40 0:142 ip community-list standard 2_71_80 permit 65000:2 0:71 0:80 route-map calculator permit 26859 match community 2_40_142 2_71_80 set community 0:5680 ip community-list standard 2_186_245 permit 65000:2 0:186 0:245 ip community-list standard 2_210_217 permit 65000:2 0:210 0:217 route-map calculator permit 26860 match community 2_186_245 2_210_217 set community 0:45570 ip community-list standard 2_42_242 permit 65000:2 0:42 0:242 ip community-list standard 2_44_231 permit 65000:2 0:44 0:231 ip community-list standard 2_66_154 permit 65000:2 0:66 0:154 ip community-list standard 2_77_132 permit 65000:2 0:77 0:132 ip community-list standard 2_84_121 permit 65000:2 0:84 0:121 route-map calculator permit 26861 match community 2_42_242 2_44_231 2_66_154 2_77_132 2_84_121 set community 0:10164 ip community-list standard 2_188_238 permit 65000:2 0:188 0:238 route-map calculator permit 26862 match community 2_188_238 set community 0:44744 ip community-list standard 2_118_133 permit 65000:2 0:118 0:133 route-map calculator permit 26863 match community 2_118_133 set community 0:15694 ip community-list standard 2_59_158 permit 65000:2 0:59 0:158 ip community-list standard 2_79_118 permit 65000:2 0:79 0:118 route-map calculator permit 26864 match community 2_59_158 2_79_118 set community 0:9322 ip community-list standard 2_67_157 permit 65000:2 0:67 0:157 route-map calculator permit 26865 match community 2_67_157 set community 0:10519 ip community-list standard 2_3_178 permit 65000:2 0:3 0:178 ip community-list standard 2_6_89 permit 65000:2 0:6 0:89 route-map calculator permit 26866 match community 2_3_178 2_6_89 set community 0:534 ip community-list standard 2_15_244 permit 65000:2 0:15 0:244 ip community-list standard 2_20_183 permit 65000:2 0:20 0:183 ip community-list standard 2_30_122 permit 65000:2 0:30 0:122 ip community-list standard 2_60_61 permit 65000:2 0:60 0:61 route-map calculator permit 26867 match community 2_15_244 2_20_183 2_30_122 2_60_61 set community 0:3660 ip community-list standard 2_228_253 permit 65000:2 0:228 0:253 route-map calculator permit 26868 match community 2_228_253 set community 0:57684 ip community-list standard 2_122_173 permit 65000:2 0:122 0:173 route-map calculator permit 26869 match community 2_122_173 set community 0:21106 ip community-list standard 2_139_185 permit 65000:2 0:139 0:185 route-map calculator permit 26870 match community 2_139_185 set community 0:25715 ip community-list standard 2_37_169 permit 65000:2 0:37 0:169 route-map calculator permit 26871 match community 2_37_169 set community 0:6253 ip community-list standard 2_185_194 permit 65000:2 0:185 0:194 route-map calculator permit 26872 match community 2_185_194 set community 0:35890 ip community-list standard 2_136_249 permit 65000:2 0:136 0:249 ip community-list standard 2_166_204 permit 65000:2 0:166 0:204 route-map calculator permit 26873 match community 2_136_249 2_166_204 set community 0:33864 ip community-list standard 2_38_217 permit 65000:2 0:38 0:217 ip community-list standard 2_62_133 permit 65000:2 0:62 0:133 route-map calculator permit 26874 match community 2_38_217 2_62_133 set community 0:8246 ip community-list standard 2_140_194 permit 65000:2 0:140 0:194 route-map calculator permit 26875 match community 2_140_194 set community 0:27160 ip community-list standard 2_31_212 permit 65000:2 0:31 0:212 ip community-list standard 2_53_124 permit 65000:2 0:53 0:124 ip community-list standard 2_62_106 permit 65000:2 0:62 0:106 route-map calculator permit 26876 match community 2_31_212 2_53_124 2_62_106 set community 0:6572 ip community-list standard 2_15_163 permit 65000:2 0:15 0:163 route-map calculator permit 26877 match community 2_15_163 set community 0:2445 ip community-list standard 2_76_193 permit 65000:2 0:76 0:193 route-map calculator permit 26878 match community 2_76_193 set community 0:14668 ip community-list standard 2_171_227 permit 65000:2 0:171 0:227 route-map calculator permit 26879 match community 2_171_227 set community 0:38817 ip community-list standard 2_31_177 permit 65000:2 0:31 0:177 ip community-list standard 2_59_93 permit 65000:2 0:59 0:93 route-map calculator permit 26880 match community 2_31_177 2_59_93 set community 0:5487 ip community-list standard 2_89_149 permit 65000:2 0:89 0:149 route-map calculator permit 26881 match community 2_89_149 set community 0:13261 ip community-list standard 2_57_133 permit 65000:2 0:57 0:133 route-map calculator permit 26882 match community 2_57_133 set community 0:7581 ip community-list standard 2_39_237 permit 65000:2 0:39 0:237 ip community-list standard 2_79_117 permit 65000:2 0:79 0:117 route-map calculator permit 26883 match community 2_39_237 2_79_117 set community 0:9243 ip community-list standard 2_202_222 permit 65000:2 0:202 0:222 route-map calculator permit 26884 match community 2_202_222 set community 0:44844 ip community-list standard 2_43_211 permit 65000:2 0:43 0:211 route-map calculator permit 26885 match community 2_43_211 set community 0:9073 ip community-list standard 2_196_248 permit 65000:2 0:196 0:248 ip community-list standard 2_217_224 permit 65000:2 0:217 0:224 route-map calculator permit 26886 match community 2_196_248 2_217_224 set community 0:48608 ip community-list standard 2_93_221 permit 65000:2 0:93 0:221 route-map calculator permit 26887 match community 2_93_221 set community 0:20553 ip community-list standard 2_94_226 permit 65000:2 0:94 0:226 ip community-list standard 2_113_188 permit 65000:2 0:113 0:188 route-map calculator permit 26888 match community 2_94_226 2_113_188 set community 0:21244 ip community-list standard 2_197_198 permit 65000:2 0:197 0:198 route-map calculator permit 26889 match community 2_197_198 set community 0:39006 ip community-list standard 2_121_185 permit 65000:2 0:121 0:185 route-map calculator permit 26890 match community 2_121_185 set community 0:22385 ip community-list standard 2_79_217 permit 65000:2 0:79 0:217 route-map calculator permit 26891 match community 2_79_217 set community 0:17143 ip community-list standard 2_124_205 permit 65000:2 0:124 0:205 ip community-list standard 2_155_164 permit 65000:2 0:155 0:164 route-map calculator permit 26892 match community 2_124_205 2_155_164 set community 0:25420 ip community-list standard 2_98_233 permit 65000:2 0:98 0:233 route-map calculator permit 26893 match community 2_98_233 set community 0:22834 ip community-list standard 2_45_235 permit 65000:2 0:45 0:235 ip community-list standard 2_47_225 permit 65000:2 0:47 0:225 ip community-list standard 2_75_141 permit 65000:2 0:75 0:141 route-map calculator permit 26894 match community 2_45_235 2_47_225 2_75_141 set community 0:10575 ip community-list standard 2_137_224 permit 65000:2 0:137 0:224 route-map calculator permit 26895 match community 2_137_224 set community 0:30688 ip community-list standard 2_63_89 permit 65000:2 0:63 0:89 route-map calculator permit 26896 match community 2_63_89 set community 0:5607 ip community-list standard 2_19_38 permit 65000:2 0:19 0:38 route-map calculator permit 26897 match community 2_19_38 set community 0:722 ip community-list standard 2_100_251 permit 65000:2 0:100 0:251 route-map calculator permit 26898 match community 2_100_251 set community 0:25100 ip community-list standard 2_155_221 permit 65000:2 0:155 0:221 route-map calculator permit 26899 match community 2_155_221 set community 0:34255 ip community-list standard 2_208_255 permit 65000:2 0:208 0:255 ip community-list standard 2_221_240 permit 65000:2 0:221 0:240 route-map calculator permit 26900 match community 2_208_255 2_221_240 set community 0:53040 ip community-list standard 2_137_141 permit 65000:2 0:137 0:141 route-map calculator permit 26901 match community 2_137_141 set community 0:19317 ip community-list standard 2_184_221 permit 65000:2 0:184 0:221 route-map calculator permit 26902 match community 2_184_221 set community 0:40664 ip community-list standard 2_206_242 permit 65000:2 0:206 0:242 route-map calculator permit 26903 match community 2_206_242 set community 0:49852 ip community-list standard 2_211_212 permit 65000:2 0:211 0:212 route-map calculator permit 26904 match community 2_211_212 set community 0:44732 ip community-list standard 2_47_191 permit 65000:2 0:47 0:191 route-map calculator permit 26905 match community 2_47_191 set community 0:8977 ip community-list standard 2_186_230 permit 65000:2 0:186 0:230 route-map calculator permit 26906 match community 2_186_230 set community 0:42780 ip community-list standard 2_22_211 permit 65000:2 0:22 0:211 route-map calculator permit 26907 match community 2_22_211 set community 0:4642 ip community-list standard 2_148_221 permit 65000:2 0:148 0:221 route-map calculator permit 26908 match community 2_148_221 set community 0:32708 ip community-list standard 2_19_79 permit 65000:2 0:19 0:79 route-map calculator permit 26909 match community 2_19_79 set community 0:1501 ip community-list standard 2_177_236 permit 65000:2 0:177 0:236 route-map calculator permit 26910 match community 2_177_236 set community 0:41772 ip community-list standard 2_33_245 permit 65000:2 0:33 0:245 ip community-list standard 2_35_231 permit 65000:2 0:35 0:231 ip community-list standard 2_49_165 permit 65000:2 0:49 0:165 ip community-list standard 2_55_147 permit 65000:2 0:55 0:147 ip community-list standard 2_77_105 permit 65000:2 0:77 0:105 route-map calculator permit 26911 match community 2_33_245 2_35_231 2_49_165 2_55_147 2_77_105 set community 0:8085 ip community-list standard 2_109_222 permit 65000:2 0:109 0:222 ip community-list standard 2_111_218 permit 65000:2 0:111 0:218 route-map calculator permit 26912 match community 2_109_222 2_111_218 set community 0:24198 ip community-list standard 2_136_235 permit 65000:2 0:136 0:235 ip community-list standard 2_170_188 permit 65000:2 0:170 0:188 route-map calculator permit 26913 match community 2_136_235 2_170_188 set community 0:31960 ip community-list standard 2_5_233 permit 65000:2 0:5 0:233 route-map calculator permit 26914 match community 2_5_233 set community 0:1165 ip community-list standard 2_138_248 permit 65000:2 0:138 0:248 ip community-list standard 2_184_186 permit 65000:2 0:184 0:186 route-map calculator permit 26915 match community 2_138_248 2_184_186 set community 0:34224 ip community-list standard 2_137_239 permit 65000:2 0:137 0:239 route-map calculator permit 26916 match community 2_137_239 set community 0:32743 ip community-list standard 2_59_178 permit 65000:2 0:59 0:178 ip community-list standard 2_89_118 permit 65000:2 0:89 0:118 route-map calculator permit 26917 match community 2_59_178 2_89_118 set community 0:10502 ip community-list standard 2_9_93 permit 65000:2 0:9 0:93 ip community-list standard 2_27_31 permit 65000:2 0:27 0:31 route-map calculator permit 26918 match community 2_9_93 2_27_31 set community 0:837 ip community-list standard 2_144_239 permit 65000:2 0:144 0:239 route-map calculator permit 26919 match community 2_144_239 set community 0:34416 ip community-list standard 2_41_213 permit 65000:2 0:41 0:213 ip community-list standard 2_71_123 permit 65000:2 0:71 0:123 route-map calculator permit 26920 match community 2_41_213 2_71_123 set community 0:8733 ip community-list standard 2_49_77 permit 65000:2 0:49 0:77 route-map calculator permit 26921 match community 2_49_77 set community 0:3773 ip community-list standard 1_1_38 permit 65000:1 0:1 0:38 ip community-list standard 2_1_39 permit 65000:2 0:1 0:39 ip community-list standard 1_2_37 permit 65000:1 0:2 0:37 ip community-list standard 2_3_13 permit 65000:2 0:3 0:13 ip community-list standard 1_3_36 permit 65000:1 0:3 0:36 ip community-list standard 1_4_35 permit 65000:1 0:4 0:35 ip community-list standard 1_5_34 permit 65000:1 0:5 0:34 ip community-list standard 1_6_33 permit 65000:1 0:6 0:33 ip community-list standard 1_7_32 permit 65000:1 0:7 0:32 ip community-list standard 1_8_31 permit 65000:1 0:8 0:31 ip community-list standard 1_9_30 permit 65000:1 0:9 0:30 ip community-list standard 1_10_29 permit 65000:1 0:10 0:29 ip community-list standard 1_11_28 permit 65000:1 0:11 0:28 ip community-list standard 1_12_27 permit 65000:1 0:12 0:27 ip community-list standard 1_13_26 permit 65000:1 0:13 0:26 ip community-list standard 1_14_25 permit 65000:1 0:14 0:25 ip community-list standard 1_15_24 permit 65000:1 0:15 0:24 ip community-list standard 1_16_23 permit 65000:1 0:16 0:23 ip community-list standard 1_17_22 permit 65000:1 0:17 0:22 ip community-list standard 1_18_21 permit 65000:1 0:18 0:21 ip community-list standard 1_19_20 permit 65000:1 0:19 0:20 ip community-list expanded c39 permit 1 ^65000:4_0:39_0:1$ ip community-list expanded c39 permit 2 ^65000:3_0:40_0:1$ ip community-list expanded c39 permit 3 ^65000:3_0:41_0:2$ ip community-list expanded c39 permit 4 ^65000:3_0:42_0:3$ ip community-list expanded c39 permit 5 ^65000:3_0:43_0:4$ ip community-list expanded c39 permit 6 ^65000:3_0:44_0:5$ ip community-list expanded c39 permit 7 ^65000:3_0:45_0:6$ ip community-list expanded c39 permit 8 ^65000:3_0:46_0:7$ ip community-list expanded c39 permit 9 ^65000:3_0:47_0:8$ ip community-list expanded c39 permit 10 ^65000:3_0:48_0:9$ ip community-list expanded c39 permit 11 ^65000:3_0:49_0:10$ ip community-list expanded c39 permit 12 ^65000:3_0:50_0:11$ ip community-list expanded c39 permit 13 ^65000:3_0:51_0:12$ ip community-list expanded c39 permit 14 ^65000:3_0:52_0:13$ ip community-list expanded c39 permit 15 ^65000:3_0:53_0:14$ ip community-list expanded c39 permit 16 ^65000:3_0:54_0:15$ ip community-list expanded c39 permit 17 ^65000:3_0:55_0:16$ ip community-list expanded c39 permit 18 ^65000:3_0:56_0:17$ ip community-list expanded c39 permit 19 ^65000:3_0:57_0:18$ ip community-list expanded c39 permit 20 ^65000:3_0:58_0:19$ ip community-list expanded c39 permit 21 ^65000:3_0:59_0:20$ ip community-list expanded c39 permit 22 ^65000:3_0:60_0:21$ ip community-list expanded c39 permit 23 ^65000:3_0:61_0:22$ ip community-list expanded c39 permit 24 ^65000:3_0:62_0:23$ ip community-list expanded c39 permit 25 ^65000:3_0:63_0:24$ ip community-list expanded c39 permit 26 ^65000:3_0:64_0:25$ ip community-list expanded c39 permit 27 ^65000:3_0:65_0:26$ ip community-list expanded c39 permit 28 ^65000:3_0:66_0:27$ ip community-list expanded c39 permit 29 ^65000:3_0:67_0:28$ ip community-list expanded c39 permit 30 ^65000:3_0:68_0:29$ ip community-list expanded c39 permit 31 ^65000:3_0:69_0:30$ ip community-list expanded c39 permit 32 ^65000:3_0:70_0:31$ ip community-list expanded c39 permit 33 ^65000:3_0:71_0:32$ ip community-list expanded c39 permit 34 ^65000:3_0:72_0:33$ ip community-list expanded c39 permit 35 ^65000:3_0:73_0:34$ ip community-list expanded c39 permit 36 ^65000:3_0:74_0:35$ ip community-list expanded c39 permit 37 ^65000:3_0:75_0:36$ ip community-list expanded c39 permit 38 ^65000:3_0:76_0:37$ ip community-list expanded c39 permit 39 ^65000:3_0:77_0:38$ ip community-list expanded c39 permit 40 ^65000:4_0:78_0:2$ ip community-list expanded c39 permit 41 ^65000:3_0:78_0:39$ ip community-list expanded c39 permit 42 ^65000:4_0:79_0:2$ ip community-list expanded c39 permit 43 ^65000:3_0:79_0:40$ ip community-list expanded c39 permit 44 ^65000:3_0:80_0:41$ ip community-list expanded c39 permit 45 ^65000:3_0:81_0:42$ ip community-list expanded c39 permit 46 ^65000:3_0:82_0:43$ ip community-list expanded c39 permit 47 ^65000:3_0:83_0:44$ ip community-list expanded c39 permit 48 ^65000:3_0:84_0:45$ ip community-list expanded c39 permit 49 ^65000:3_0:85_0:46$ ip community-list expanded c39 permit 50 ^65000:3_0:86_0:47$ ip community-list expanded c39 permit 51 ^65000:3_0:87_0:48$ ip community-list expanded c39 permit 52 ^65000:3_0:88_0:49$ ip community-list expanded c39 permit 53 ^65000:3_0:89_0:50$ ip community-list expanded c39 permit 54 ^65000:3_0:90_0:51$ ip community-list expanded c39 permit 55 ^65000:3_0:91_0:52$ ip community-list expanded c39 permit 56 ^65000:3_0:92_0:53$ ip community-list expanded c39 permit 57 ^65000:3_0:93_0:54$ ip community-list expanded c39 permit 58 ^65000:3_0:94_0:55$ ip community-list expanded c39 permit 59 ^65000:3_0:95_0:56$ ip community-list expanded c39 permit 60 ^65000:3_0:96_0:57$ ip community-list expanded c39 permit 61 ^65000:3_0:97_0:58$ ip community-list expanded c39 permit 62 ^65000:3_0:98_0:59$ ip community-list expanded c39 permit 63 ^65000:3_0:99_0:60$ ip community-list expanded c39 permit 64 ^65000:3_0:100_0:61$ ip community-list expanded c39 permit 65 ^65000:3_0:101_0:62$ ip community-list expanded c39 permit 66 ^65000:3_0:102_0:63$ ip community-list expanded c39 permit 67 ^65000:3_0:103_0:64$ ip community-list expanded c39 permit 68 ^65000:3_0:104_0:65$ ip community-list expanded c39 permit 69 ^65000:3_0:105_0:66$ ip community-list expanded c39 permit 70 ^65000:3_0:106_0:67$ ip community-list expanded c39 permit 71 ^65000:3_0:107_0:68$ ip community-list expanded c39 permit 72 ^65000:3_0:108_0:69$ ip community-list expanded c39 permit 73 ^65000:3_0:109_0:70$ ip community-list expanded c39 permit 74 ^65000:3_0:110_0:71$ ip community-list expanded c39 permit 75 ^65000:3_0:111_0:72$ ip community-list expanded c39 permit 76 ^65000:3_0:112_0:73$ ip community-list expanded c39 permit 77 ^65000:3_0:113_0:74$ ip community-list expanded c39 permit 78 ^65000:3_0:114_0:75$ ip community-list expanded c39 permit 79 ^65000:3_0:115_0:76$ ip community-list expanded c39 permit 80 ^65000:3_0:116_0:77$ ip community-list expanded c39 permit 81 ^65000:4_0:117_0:3$ ip community-list expanded c39 permit 82 ^65000:3_0:117_0:78$ ip community-list expanded c39 permit 83 ^65000:4_0:118_0:3$ ip community-list expanded c39 permit 84 ^65000:3_0:118_0:79$ ip community-list expanded c39 permit 85 ^65000:4_0:119_0:3$ ip community-list expanded c39 permit 86 ^65000:3_0:119_0:80$ ip community-list expanded c39 permit 87 ^65000:3_0:120_0:81$ ip community-list expanded c39 permit 88 ^65000:3_0:121_0:82$ ip community-list expanded c39 permit 89 ^65000:3_0:122_0:83$ ip community-list expanded c39 permit 90 ^65000:3_0:123_0:84$ ip community-list expanded c39 permit 91 ^65000:3_0:124_0:85$ ip community-list expanded c39 permit 92 ^65000:3_0:125_0:86$ ip community-list expanded c39 permit 93 ^65000:3_0:126_0:87$ ip community-list expanded c39 permit 94 ^65000:3_0:127_0:88$ ip community-list expanded c39 permit 95 ^65000:3_0:128_0:89$ ip community-list expanded c39 permit 96 ^65000:3_0:129_0:90$ ip community-list expanded c39 permit 97 ^65000:3_0:130_0:91$ ip community-list expanded c39 permit 98 ^65000:3_0:131_0:92$ ip community-list expanded c39 permit 99 ^65000:3_0:132_0:93$ ip community-list expanded c39 permit 100 ^65000:3_0:133_0:94$ ip community-list expanded c39 permit 101 ^65000:3_0:134_0:95$ ip community-list expanded c39 permit 102 ^65000:3_0:135_0:96$ ip community-list expanded c39 permit 103 ^65000:3_0:136_0:97$ ip community-list expanded c39 permit 104 ^65000:3_0:137_0:98$ ip community-list expanded c39 permit 105 ^65000:3_0:138_0:99$ ip community-list expanded c39 permit 106 ^65000:3_0:139_0:100$ ip community-list expanded c39 permit 107 ^65000:3_0:140_0:101$ ip community-list expanded c39 permit 108 ^65000:3_0:141_0:102$ ip community-list expanded c39 permit 109 ^65000:3_0:142_0:103$ ip community-list expanded c39 permit 110 ^65000:3_0:143_0:104$ ip community-list expanded c39 permit 111 ^65000:3_0:144_0:105$ ip community-list expanded c39 permit 112 ^65000:3_0:145_0:106$ ip community-list expanded c39 permit 113 ^65000:3_0:146_0:107$ ip community-list expanded c39 permit 114 ^65000:3_0:147_0:108$ ip community-list expanded c39 permit 115 ^65000:3_0:148_0:109$ ip community-list expanded c39 permit 116 ^65000:3_0:149_0:110$ ip community-list expanded c39 permit 117 ^65000:3_0:150_0:111$ ip community-list expanded c39 permit 118 ^65000:3_0:151_0:112$ ip community-list expanded c39 permit 119 ^65000:3_0:152_0:113$ ip community-list expanded c39 permit 120 ^65000:3_0:153_0:114$ ip community-list expanded c39 permit 121 ^65000:3_0:154_0:115$ ip community-list expanded c39 permit 122 ^65000:3_0:155_0:116$ ip community-list expanded c39 permit 123 ^65000:4_0:156_0:4$ ip community-list expanded c39 permit 124 ^65000:3_0:156_0:117$ ip community-list expanded c39 permit 125 ^65000:4_0:157_0:4$ ip community-list expanded c39 permit 126 ^65000:3_0:157_0:118$ ip community-list expanded c39 permit 127 ^65000:4_0:158_0:4$ ip community-list expanded c39 permit 128 ^65000:3_0:158_0:119$ ip community-list expanded c39 permit 129 ^65000:4_0:159_0:4$ ip community-list expanded c39 permit 130 ^65000:3_0:159_0:120$ ip community-list expanded c39 permit 131 ^65000:3_0:160_0:121$ ip community-list expanded c39 permit 132 ^65000:3_0:161_0:122$ ip community-list expanded c39 permit 133 ^65000:3_0:162_0:123$ ip community-list expanded c39 permit 134 ^65000:3_0:163_0:124$ ip community-list expanded c39 permit 135 ^65000:3_0:164_0:125$ ip community-list expanded c39 permit 136 ^65000:3_0:165_0:126$ ip community-list expanded c39 permit 137 ^65000:3_0:166_0:127$ ip community-list expanded c39 permit 138 ^65000:3_0:167_0:128$ ip community-list expanded c39 permit 139 ^65000:3_0:168_0:129$ ip community-list expanded c39 permit 140 ^65000:3_0:169_0:130$ ip community-list expanded c39 permit 141 ^65000:3_0:170_0:131$ ip community-list expanded c39 permit 142 ^65000:3_0:171_0:132$ ip community-list expanded c39 permit 143 ^65000:3_0:172_0:133$ ip community-list expanded c39 permit 144 ^65000:3_0:173_0:134$ ip community-list expanded c39 permit 145 ^65000:3_0:174_0:135$ ip community-list expanded c39 permit 146 ^65000:3_0:175_0:136$ ip community-list expanded c39 permit 147 ^65000:3_0:176_0:137$ ip community-list expanded c39 permit 148 ^65000:3_0:177_0:138$ ip community-list expanded c39 permit 149 ^65000:3_0:178_0:139$ ip community-list expanded c39 permit 150 ^65000:3_0:179_0:140$ ip community-list expanded c39 permit 151 ^65000:3_0:180_0:141$ ip community-list expanded c39 permit 152 ^65000:3_0:181_0:142$ ip community-list expanded c39 permit 153 ^65000:3_0:182_0:143$ ip community-list expanded c39 permit 154 ^65000:3_0:183_0:144$ ip community-list expanded c39 permit 155 ^65000:3_0:184_0:145$ ip community-list expanded c39 permit 156 ^65000:3_0:185_0:146$ ip community-list expanded c39 permit 157 ^65000:3_0:186_0:147$ ip community-list expanded c39 permit 158 ^65000:3_0:187_0:148$ ip community-list expanded c39 permit 159 ^65000:3_0:188_0:149$ ip community-list expanded c39 permit 160 ^65000:3_0:189_0:150$ ip community-list expanded c39 permit 161 ^65000:3_0:190_0:151$ ip community-list expanded c39 permit 162 ^65000:3_0:191_0:152$ ip community-list expanded c39 permit 163 ^65000:3_0:192_0:153$ ip community-list expanded c39 permit 164 ^65000:3_0:193_0:154$ ip community-list expanded c39 permit 165 ^65000:3_0:194_0:155$ ip community-list expanded c39 permit 166 ^65000:4_0:195_0:5$ ip community-list expanded c39 permit 167 ^65000:3_0:195_0:156$ ip community-list expanded c39 permit 168 ^65000:4_0:196_0:5$ ip community-list expanded c39 permit 169 ^65000:3_0:196_0:157$ ip community-list expanded c39 permit 170 ^65000:4_0:197_0:5$ ip community-list expanded c39 permit 171 ^65000:3_0:197_0:158$ ip community-list expanded c39 permit 172 ^65000:4_0:198_0:5$ ip community-list expanded c39 permit 173 ^65000:3_0:198_0:159$ ip community-list expanded c39 permit 174 ^65000:4_0:199_0:5$ ip community-list expanded c39 permit 175 ^65000:3_0:199_0:160$ ip community-list expanded c39 permit 176 ^65000:3_0:200_0:161$ ip community-list expanded c39 permit 177 ^65000:3_0:201_0:162$ ip community-list expanded c39 permit 178 ^65000:3_0:202_0:163$ ip community-list expanded c39 permit 179 ^65000:3_0:203_0:164$ ip community-list expanded c39 permit 180 ^65000:3_0:204_0:165$ ip community-list expanded c39 permit 181 ^65000:3_0:205_0:166$ ip community-list expanded c39 permit 182 ^65000:3_0:206_0:167$ ip community-list expanded c39 permit 183 ^65000:3_0:207_0:168$ ip community-list expanded c39 permit 184 ^65000:3_0:208_0:169$ ip community-list expanded c39 permit 185 ^65000:3_0:209_0:170$ ip community-list expanded c39 permit 186 ^65000:3_0:210_0:171$ ip community-list expanded c39 permit 187 ^65000:3_0:211_0:172$ ip community-list expanded c39 permit 188 ^65000:3_0:212_0:173$ ip community-list expanded c39 permit 189 ^65000:3_0:213_0:174$ ip community-list expanded c39 permit 190 ^65000:3_0:214_0:175$ ip community-list expanded c39 permit 191 ^65000:3_0:215_0:176$ ip community-list expanded c39 permit 192 ^65000:3_0:216_0:177$ ip community-list expanded c39 permit 193 ^65000:3_0:217_0:178$ ip community-list expanded c39 permit 194 ^65000:3_0:218_0:179$ ip community-list expanded c39 permit 195 ^65000:3_0:219_0:180$ ip community-list expanded c39 permit 196 ^65000:3_0:220_0:181$ ip community-list expanded c39 permit 197 ^65000:3_0:221_0:182$ ip community-list expanded c39 permit 198 ^65000:3_0:222_0:183$ ip community-list expanded c39 permit 199 ^65000:3_0:223_0:184$ ip community-list expanded c39 permit 200 ^65000:3_0:224_0:185$ ip community-list expanded c39 permit 201 ^65000:3_0:225_0:186$ ip community-list expanded c39 permit 202 ^65000:3_0:226_0:187$ ip community-list expanded c39 permit 203 ^65000:3_0:227_0:188$ ip community-list expanded c39 permit 204 ^65000:3_0:228_0:189$ ip community-list expanded c39 permit 205 ^65000:3_0:229_0:190$ ip community-list expanded c39 permit 206 ^65000:3_0:230_0:191$ ip community-list expanded c39 permit 207 ^65000:3_0:231_0:192$ ip community-list expanded c39 permit 208 ^65000:3_0:232_0:193$ ip community-list expanded c39 permit 209 ^65000:3_0:233_0:194$ ip community-list expanded c39 permit 210 ^65000:4_0:234_0:6$ ip community-list expanded c39 permit 211 ^65000:3_0:234_0:195$ ip community-list expanded c39 permit 212 ^65000:4_0:235_0:6$ ip community-list expanded c39 permit 213 ^65000:3_0:235_0:196$ ip community-list expanded c39 permit 214 ^65000:4_0:236_0:6$ ip community-list expanded c39 permit 215 ^65000:3_0:236_0:197$ ip community-list expanded c39 permit 216 ^65000:4_0:237_0:6$ ip community-list expanded c39 permit 217 ^65000:3_0:237_0:198$ ip community-list expanded c39 permit 218 ^65000:4_0:238_0:6$ ip community-list expanded c39 permit 219 ^65000:3_0:238_0:199$ ip community-list expanded c39 permit 220 ^65000:4_0:239_0:6$ ip community-list expanded c39 permit 221 ^65000:3_0:239_0:200$ ip community-list expanded c39 permit 222 ^65000:3_0:240_0:201$ ip community-list expanded c39 permit 223 ^65000:3_0:241_0:202$ ip community-list expanded c39 permit 224 ^65000:3_0:242_0:203$ ip community-list expanded c39 permit 225 ^65000:3_0:243_0:204$ ip community-list expanded c39 permit 226 ^65000:3_0:244_0:205$ ip community-list expanded c39 permit 227 ^65000:3_0:245_0:206$ ip community-list expanded c39 permit 228 ^65000:3_0:246_0:207$ ip community-list expanded c39 permit 229 ^65000:3_0:247_0:208$ ip community-list expanded c39 permit 230 ^65000:3_0:248_0:209$ ip community-list expanded c39 permit 231 ^65000:3_0:249_0:210$ ip community-list expanded c39 permit 232 ^65000:3_0:250_0:211$ ip community-list expanded c39 permit 233 ^65000:3_0:251_0:212$ ip community-list expanded c39 permit 234 ^65000:3_0:252_0:213$ ip community-list expanded c39 permit 235 ^65000:3_0:253_0:214$ ip community-list expanded c39 permit 236 ^65000:3_0:254_0:215$ ip community-list expanded c39 permit 237 ^65000:3_0:255_0:216$ ip community-list expanded c39 permit 238 ^65000:3_0:256_0:217$ route-map calculator permit 26922 match community 1_1_38 2_1_39 1_2_37 2_3_13 1_3_36 set community 0:39 route-map calculator permit 26923 match community 1_4_35 1_5_34 1_6_33 1_7_32 1_8_31 set community 0:39 route-map calculator permit 26924 match community 1_9_30 1_10_29 1_11_28 1_12_27 1_13_26 set community 0:39 route-map calculator permit 26925 match community 1_14_25 1_15_24 1_16_23 1_17_22 1_18_21 set community 0:39 route-map calculator permit 26926 match community 1_19_20 c4_39_1 c3_40_1 c3_41_2 c3_42_3 set community 0:39 route-map calculator permit 26927 match community c3_43_4 c3_44_5 c3_45_6 c3_46_7 c3_47_8 set community 0:39 route-map calculator permit 26928 match community c3_48_9 c3_49_10 c3_50_11 c3_51_12 c3_52_13 set community 0:39 route-map calculator permit 26929 match community c3_53_14 c3_54_15 c3_55_16 c3_56_17 c3_57_18 set community 0:39 route-map calculator permit 26930 match community c3_58_19 c3_59_20 c3_60_21 c3_61_22 c3_62_23 set community 0:39 route-map calculator permit 26931 match community c3_63_24 c3_64_25 c3_65_26 c3_66_27 c3_67_28 set community 0:39 route-map calculator permit 26932 match community c3_68_29 c3_69_30 c3_70_31 c3_71_32 c3_72_33 set community 0:39 route-map calculator permit 26933 match community c3_73_34 c3_74_35 c3_75_36 c3_76_37 c3_77_38 set community 0:39 route-map calculator permit 26934 match community c4_78_2 c3_78_39 c4_79_2 c3_79_40 c3_80_41 set community 0:39 route-map calculator permit 26935 match community c3_81_42 c3_82_43 c3_83_44 c3_84_45 c3_85_46 set community 0:39 route-map calculator permit 26936 match community c3_86_47 c3_87_48 c3_88_49 c3_89_50 c3_90_51 set community 0:39 route-map calculator permit 26937 match community c3_91_52 c3_92_53 c3_93_54 c3_94_55 c3_95_56 set community 0:39 route-map calculator permit 26938 match community c3_96_57 c3_97_58 c3_98_59 c3_99_60 c3_100_61 set community 0:39 route-map calculator permit 26939 match community c3_101_62 c3_102_63 c3_103_64 c3_104_65 c3_105_66 set community 0:39 route-map calculator permit 26940 match community c3_106_67 c3_107_68 c3_108_69 c3_109_70 c3_110_71 set community 0:39 route-map calculator permit 26941 match community c3_111_72 c3_112_73 c3_113_74 c3_114_75 c3_115_76 set community 0:39 route-map calculator permit 26942 match community c3_116_77 c4_117_3 c3_117_78 c4_118_3 c3_118_79 set community 0:39 route-map calculator permit 26943 match community c4_119_3 c3_119_80 c3_120_81 c3_121_82 c3_122_83 set community 0:39 route-map calculator permit 26944 match community c3_123_84 c3_124_85 c3_125_86 c3_126_87 c3_127_88 set community 0:39 route-map calculator permit 26945 match community c3_128_89 c3_129_90 c3_130_91 c3_131_92 c3_132_93 set community 0:39 route-map calculator permit 26946 match community c3_133_94 c3_134_95 c3_135_96 c3_136_97 c3_137_98 set community 0:39 route-map calculator permit 26947 match community c3_138_99 c3_139_100 c3_140_101 c3_141_102 c3_142_103 set community 0:39 route-map calculator permit 26948 match community c3_143_104 c3_144_105 c3_145_106 c3_146_107 c3_147_108 set community 0:39 route-map calculator permit 26949 match community c3_148_109 c3_149_110 c3_150_111 c3_151_112 c3_152_113 set community 0:39 route-map calculator permit 26950 match community c3_153_114 c3_154_115 c3_155_116 c4_156_4 c3_156_117 set community 0:39 route-map calculator permit 26951 match community c4_157_4 c3_157_118 c4_158_4 c3_158_119 c4_159_4 set community 0:39 route-map calculator permit 26952 match community c3_159_120 c3_160_121 c3_161_122 c3_162_123 c3_163_124 set community 0:39 route-map calculator permit 26953 match community c3_164_125 c3_165_126 c3_166_127 c3_167_128 c3_168_129 set community 0:39 route-map calculator permit 26954 match community c3_169_130 c3_170_131 c3_171_132 c3_172_133 c3_173_134 set community 0:39 route-map calculator permit 26955 match community c3_174_135 c3_175_136 c3_176_137 c3_177_138 c3_178_139 set community 0:39 route-map calculator permit 26956 match community c3_179_140 c3_180_141 c3_181_142 c3_182_143 c3_183_144 set community 0:39 route-map calculator permit 26957 match community c3_184_145 c3_185_146 c3_186_147 c3_187_148 c3_188_149 set community 0:39 route-map calculator permit 26958 match community c3_189_150 c3_190_151 c3_191_152 c3_192_153 c3_193_154 set community 0:39 route-map calculator permit 26959 match community c3_194_155 c4_195_5 c3_195_156 c4_196_5 c3_196_157 set community 0:39 route-map calculator permit 26960 match community c4_197_5 c3_197_158 c4_198_5 c3_198_159 c4_199_5 set community 0:39 route-map calculator permit 26961 match community c3_199_160 c3_200_161 c3_201_162 c3_202_163 c3_203_164 set community 0:39 route-map calculator permit 26962 match community c3_204_165 c3_205_166 c3_206_167 c3_207_168 c3_208_169 set community 0:39 route-map calculator permit 26963 match community c3_209_170 c3_210_171 c3_211_172 c3_212_173 c3_213_174 set community 0:39 route-map calculator permit 26964 match community c3_214_175 c3_215_176 c3_216_177 c3_217_178 c3_218_179 set community 0:39 route-map calculator permit 26965 match community c3_219_180 c3_220_181 c3_221_182 c3_222_183 c3_223_184 set community 0:39 route-map calculator permit 26966 match community c3_224_185 c3_225_186 c3_226_187 c3_227_188 c3_228_189 set community 0:39 route-map calculator permit 26967 match community c3_229_190 c3_230_191 c3_231_192 c3_232_193 c3_233_194 set community 0:39 route-map calculator permit 26968 match community c4_234_6 c3_234_195 c4_235_6 c3_235_196 c4_236_6 set community 0:39 route-map calculator permit 26969 match community c3_236_197 c4_237_6 c3_237_198 c4_238_6 c3_238_199 set community 0:39 route-map calculator permit 26970 match community c4_239_6 c3_239_200 c3_240_201 c3_241_202 c3_242_203 set community 0:39 route-map calculator permit 26971 match community c3_243_204 c3_244_205 c3_245_206 c3_246_207 c3_247_208 set community 0:39 route-map calculator permit 26972 match community c3_248_209 c3_249_210 c3_250_211 c3_251_212 c3_252_213 set community 0:39 route-map calculator permit 26973 match community c3_253_214 c3_254_215 c3_255_216 c3_256_217 set community 0:39 ip community-list standard 2_29_59 permit 65000:2 0:29 0:59 route-map calculator permit 26974 match community 2_29_59 set community 0:1711 ip community-list standard 2_219_239 permit 65000:2 0:219 0:239 route-map calculator permit 26975 match community 2_219_239 set community 0:52341 ip community-list standard 2_7_123 permit 65000:2 0:7 0:123 ip community-list standard 2_21_41 permit 65000:2 0:21 0:41 route-map calculator permit 26976 match community 2_7_123 2_21_41 set community 0:861 ip community-list standard 2_148_239 permit 65000:2 0:148 0:239 route-map calculator permit 26977 match community 2_148_239 set community 0:35372 ip community-list standard 2_91_101 permit 65000:2 0:91 0:101 route-map calculator permit 26978 match community 2_91_101 set community 0:9191 ip community-list standard 2_181_240 permit 65000:2 0:181 0:240 route-map calculator permit 26979 match community 2_181_240 set community 0:43440 ip community-list standard 2_88_151 permit 65000:2 0:88 0:151 route-map calculator permit 26980 match community 2_88_151 set community 0:13288 ip community-list standard 2_179_223 permit 65000:2 0:179 0:223 route-map calculator permit 26981 match community 2_179_223 set community 0:39917 ip community-list standard 2_173_234 permit 65000:2 0:173 0:234 route-map calculator permit 26982 match community 2_173_234 set community 0:40482 ip community-list standard 2_83_170 permit 65000:2 0:83 0:170 ip community-list standard 2_85_166 permit 65000:2 0:85 0:166 route-map calculator permit 26983 match community 2_83_170 2_85_166 set community 0:14110 ip community-list standard 2_12_207 permit 65000:2 0:12 0:207 ip community-list standard 2_18_138 permit 65000:2 0:18 0:138 ip community-list standard 2_23_108 permit 65000:2 0:23 0:108 ip community-list standard 2_27_92 permit 65000:2 0:27 0:92 ip community-list standard 2_36_69 permit 65000:2 0:36 0:69 ip community-list standard 2_46_54 permit 65000:2 0:46 0:54 route-map calculator permit 26984 match community 2_12_207 2_18_138 2_23_108 2_27_92 2_36_69 set community 0:2484 route-map calculator permit 26985 match community 2_46_54 set community 0:2484 ip community-list standard 2_157_204 permit 65000:2 0:157 0:204 route-map calculator permit 26986 match community 2_157_204 set community 0:32028 ip community-list standard 2_140_166 permit 65000:2 0:140 0:166 route-map calculator permit 26987 match community 2_140_166 set community 0:23240 ip community-list standard 2_44_188 permit 65000:2 0:44 0:188 ip community-list standard 2_47_176 permit 65000:2 0:47 0:176 ip community-list standard 2_88_94 permit 65000:2 0:88 0:94 route-map calculator permit 26988 match community 2_44_188 2_47_176 2_88_94 set community 0:8272 ip community-list standard 2_81_107 permit 65000:2 0:81 0:107 route-map calculator permit 26989 match community 2_81_107 set community 0:8667 ip community-list standard 2_170_205 permit 65000:2 0:170 0:205 route-map calculator permit 26990 match community 2_170_205 set community 0:34850 ip community-list standard 2_25_229 permit 65000:2 0:25 0:229 route-map calculator permit 26991 match community 2_25_229 set community 0:5725 ip community-list standard 2_89_147 permit 65000:2 0:89 0:147 route-map calculator permit 26992 match community 2_89_147 set community 0:13083 ip community-list standard 2_164_218 permit 65000:2 0:164 0:218 route-map calculator permit 26993 match community 2_164_218 set community 0:35752 ip community-list standard 2_6_203 permit 65000:2 0:6 0:203 ip community-list standard 2_7_174 permit 65000:2 0:7 0:174 ip community-list standard 2_14_87 permit 65000:2 0:14 0:87 ip community-list standard 2_21_58 permit 65000:2 0:21 0:58 ip community-list standard 2_29_42 permit 65000:2 0:29 0:42 route-map calculator permit 26994 match community 2_6_203 2_7_174 2_14_87 2_21_58 2_29_42 set community 0:1218 ip community-list standard 2_152_164 permit 65000:2 0:152 0:164 route-map calculator permit 26995 match community 2_152_164 set community 0:24928 ip community-list standard 2_192_239 permit 65000:2 0:192 0:239 route-map calculator permit 26996 match community 2_192_239 set community 0:45888 ip community-list standard 2_155_198 permit 65000:2 0:155 0:198 ip community-list standard 2_165_186 permit 65000:2 0:165 0:186 route-map calculator permit 26997 match community 2_155_198 2_165_186 set community 0:30690 ip community-list standard 2_47_118 permit 65000:2 0:47 0:118 ip community-list standard 2_59_94 permit 65000:2 0:59 0:94 route-map calculator permit 26998 match community 2_47_118 2_59_94 set community 0:5546 ip community-list standard 2_204_206 permit 65000:2 0:204 0:206 route-map calculator permit 26999 match community 2_204_206 set community 0:42024 ip community-list standard 2_78_188 permit 65000:2 0:78 0:188 ip community-list standard 2_94_156 permit 65000:2 0:94 0:156 ip community-list standard 2_104_141 permit 65000:2 0:104 0:141 route-map calculator permit 27000 match community 2_78_188 2_94_156 2_104_141 set community 0:14664 ip community-list standard 2_33_243 permit 65000:2 0:33 0:243 ip community-list standard 2_81_99 permit 65000:2 0:81 0:99 route-map calculator permit 27001 match community 2_33_243 2_81_99 set community 0:8019 ip community-list standard 2_49_97 permit 65000:2 0:49 0:97 route-map calculator permit 27002 match community 2_49_97 set community 0:4753 ip community-list standard 2_58_191 permit 65000:2 0:58 0:191 route-map calculator permit 27003 match community 2_58_191 set community 0:11078 ip community-list standard 2_174_193 permit 65000:2 0:174 0:193 route-map calculator permit 27004 match community 2_174_193 set community 0:33582 ip community-list standard 2_85_238 permit 65000:2 0:85 0:238 ip community-list standard 2_119_170 permit 65000:2 0:119 0:170 route-map calculator permit 27005 match community 2_85_238 2_119_170 set community 0:20230 ip community-list standard 2_53_119 permit 65000:2 0:53 0:119 route-map calculator permit 27006 match community 2_53_119 set community 0:6307 ip community-list standard 2_89_227 permit 65000:2 0:89 0:227 route-map calculator permit 27007 match community 2_89_227 set community 0:20203 ip community-list standard 2_90_228 permit 65000:2 0:90 0:228 ip community-list standard 2_95_216 permit 65000:2 0:95 0:216 ip community-list standard 2_108_190 permit 65000:2 0:108 0:190 ip community-list standard 2_114_180 permit 65000:2 0:114 0:180 ip community-list standard 2_120_171 permit 65000:2 0:120 0:171 ip community-list standard 2_135_152 permit 65000:2 0:135 0:152 route-map calculator permit 27008 match community 2_90_228 2_95_216 2_108_190 2_114_180 2_120_171 set community 0:20520 route-map calculator permit 27009 match community 2_135_152 set community 0:20520 ip community-list standard 2_150_151 permit 65000:2 0:150 0:151 route-map calculator permit 27010 match community 2_150_151 set community 0:22650 ip community-list standard 2_43_222 permit 65000:2 0:43 0:222 ip community-list standard 2_74_129 permit 65000:2 0:74 0:129 ip community-list standard 2_86_111 permit 65000:2 0:86 0:111 route-map calculator permit 27011 match community 2_43_222 2_74_129 2_86_111 set community 0:9546 ip community-list standard 2_107_214 permit 65000:2 0:107 0:214 route-map calculator permit 27012 match community 2_107_214 set community 0:22898 ip community-list standard 2_43_174 permit 65000:2 0:43 0:174 ip community-list standard 2_58_129 permit 65000:2 0:58 0:129 ip community-list standard 2_86_87 permit 65000:2 0:86 0:87 route-map calculator permit 27013 match community 2_43_174 2_58_129 2_86_87 set community 0:7482 ip community-list standard 2_191_232 permit 65000:2 0:191 0:232 route-map calculator permit 27014 match community 2_191_232 set community 0:44312 ip community-list standard 2_114_230 permit 65000:2 0:114 0:230 ip community-list standard 2_115_228 permit 65000:2 0:115 0:228 ip community-list standard 2_138_190 permit 65000:2 0:138 0:190 route-map calculator permit 27015 match community 2_114_230 2_115_228 2_138_190 set community 0:26220 ip community-list standard 2_17_59 permit 65000:2 0:17 0:59 route-map calculator permit 27016 match community 2_17_59 set community 0:1003 ip community-list standard 2_67_133 permit 65000:2 0:67 0:133 route-map calculator permit 27017 match community 2_67_133 set community 0:8911 ip community-list standard 2_105_246 permit 65000:2 0:105 0:246 ip community-list standard 2_123_210 permit 65000:2 0:123 0:210 ip community-list standard 2_126_205 permit 65000:2 0:126 0:205 route-map calculator permit 27018 match community 2_105_246 2_123_210 2_126_205 set community 0:25830 ip community-list standard 2_129_211 permit 65000:2 0:129 0:211 route-map calculator permit 27019 match community 2_129_211 set community 0:27219 ip community-list standard 2_167_253 permit 65000:2 0:167 0:253 route-map calculator permit 27020 match community 2_167_253 set community 0:42251 ip community-list standard 2_51_101 permit 65000:2 0:51 0:101 route-map calculator permit 27021 match community 2_51_101 set community 0:5151 ip community-list standard 2_243_253 permit 65000:2 0:243 0:253 route-map calculator permit 27022 match community 2_243_253 set community 0:61479 ip community-list standard 2_61_189 permit 65000:2 0:61 0:189 ip community-list standard 2_63_183 permit 65000:2 0:63 0:183 route-map calculator permit 27023 match community 2_61_189 2_63_183 set community 0:11529 ip community-list standard 2_81_155 permit 65000:2 0:81 0:155 ip community-list standard 2_93_135 permit 65000:2 0:93 0:135 route-map calculator permit 27024 match community 2_81_155 2_93_135 set community 0:12555 ip community-list standard 2_66_234 permit 65000:2 0:66 0:234 ip community-list standard 2_78_198 permit 65000:2 0:78 0:198 ip community-list standard 2_99_156 permit 65000:2 0:99 0:156 ip community-list standard 2_108_143 permit 65000:2 0:108 0:143 ip community-list standard 2_117_132 permit 65000:2 0:117 0:132 route-map calculator permit 27025 match community 2_66_234 2_78_198 2_99_156 2_108_143 2_117_132 set community 0:15444 ip community-list standard 2_110_222 permit 65000:2 0:110 0:222 ip community-list standard 2_111_220 permit 65000:2 0:111 0:220 ip community-list standard 2_132_185 permit 65000:2 0:132 0:185 ip community-list standard 2_148_165 permit 65000:2 0:148 0:165 route-map calculator permit 27026 match community 2_110_222 2_111_220 2_132_185 2_148_165 set community 0:24420 ip community-list standard 2_151_211 permit 65000:2 0:151 0:211 route-map calculator permit 27027 match community 2_151_211 set community 0:31861 ip community-list standard 1_1_134 permit 65000:1 0:1 0:134 ip community-list standard 2_1_135 permit 65000:2 0:1 0:135 ip community-list standard 1_2_133 permit 65000:1 0:2 0:133 ip community-list standard 2_3_45 permit 65000:2 0:3 0:45 ip community-list standard 1_3_132 permit 65000:1 0:3 0:132 ip community-list standard 1_4_131 permit 65000:1 0:4 0:131 ip community-list standard 2_5_27 permit 65000:2 0:5 0:27 ip community-list standard 1_5_130 permit 65000:1 0:5 0:130 ip community-list standard 1_6_129 permit 65000:1 0:6 0:129 ip community-list standard 1_7_128 permit 65000:1 0:7 0:128 ip community-list standard 1_8_127 permit 65000:1 0:8 0:127 ip community-list standard 2_9_15 permit 65000:2 0:9 0:15 ip community-list standard 1_9_126 permit 65000:1 0:9 0:126 ip community-list standard 1_10_125 permit 65000:1 0:10 0:125 ip community-list standard 1_11_124 permit 65000:1 0:11 0:124 ip community-list standard 1_12_123 permit 65000:1 0:12 0:123 ip community-list standard 1_13_122 permit 65000:1 0:13 0:122 ip community-list standard 1_14_121 permit 65000:1 0:14 0:121 ip community-list standard 1_15_120 permit 65000:1 0:15 0:120 ip community-list standard 1_16_119 permit 65000:1 0:16 0:119 ip community-list standard 1_17_118 permit 65000:1 0:17 0:118 ip community-list standard 1_18_117 permit 65000:1 0:18 0:117 ip community-list standard 1_19_116 permit 65000:1 0:19 0:116 ip community-list standard 1_20_115 permit 65000:1 0:20 0:115 ip community-list standard 1_21_114 permit 65000:1 0:21 0:114 ip community-list standard 1_22_113 permit 65000:1 0:22 0:113 ip community-list standard 1_23_112 permit 65000:1 0:23 0:112 ip community-list standard 1_24_111 permit 65000:1 0:24 0:111 ip community-list standard 1_25_110 permit 65000:1 0:25 0:110 ip community-list standard 1_26_109 permit 65000:1 0:26 0:109 ip community-list standard 1_27_108 permit 65000:1 0:27 0:108 ip community-list standard 1_28_107 permit 65000:1 0:28 0:107 ip community-list standard 1_29_106 permit 65000:1 0:29 0:106 ip community-list standard 1_30_105 permit 65000:1 0:30 0:105 ip community-list standard 1_31_104 permit 65000:1 0:31 0:104 ip community-list standard 1_32_103 permit 65000:1 0:32 0:103 ip community-list standard 1_33_102 permit 65000:1 0:33 0:102 ip community-list standard 1_34_101 permit 65000:1 0:34 0:101 ip community-list standard 1_35_100 permit 65000:1 0:35 0:100 ip community-list standard 1_36_99 permit 65000:1 0:36 0:99 ip community-list standard 1_37_98 permit 65000:1 0:37 0:98 ip community-list standard 1_38_97 permit 65000:1 0:38 0:97 ip community-list standard 1_39_96 permit 65000:1 0:39 0:96 ip community-list standard 1_40_95 permit 65000:1 0:40 0:95 ip community-list standard 1_41_94 permit 65000:1 0:41 0:94 ip community-list standard 1_42_93 permit 65000:1 0:42 0:93 ip community-list standard 1_43_92 permit 65000:1 0:43 0:92 ip community-list standard 1_44_91 permit 65000:1 0:44 0:91 ip community-list standard 1_45_90 permit 65000:1 0:45 0:90 ip community-list standard 1_46_89 permit 65000:1 0:46 0:89 ip community-list standard 1_47_88 permit 65000:1 0:47 0:88 ip community-list standard 1_48_87 permit 65000:1 0:48 0:87 ip community-list standard 1_49_86 permit 65000:1 0:49 0:86 ip community-list standard 1_50_85 permit 65000:1 0:50 0:85 ip community-list standard 1_51_84 permit 65000:1 0:51 0:84 ip community-list standard 1_52_83 permit 65000:1 0:52 0:83 ip community-list standard 1_53_82 permit 65000:1 0:53 0:82 ip community-list standard 1_54_81 permit 65000:1 0:54 0:81 ip community-list standard 1_55_80 permit 65000:1 0:55 0:80 ip community-list standard 1_56_79 permit 65000:1 0:56 0:79 ip community-list standard 1_57_78 permit 65000:1 0:57 0:78 ip community-list standard 1_58_77 permit 65000:1 0:58 0:77 ip community-list standard 1_59_76 permit 65000:1 0:59 0:76 ip community-list standard 1_60_75 permit 65000:1 0:60 0:75 ip community-list standard 1_61_74 permit 65000:1 0:61 0:74 ip community-list standard 1_62_73 permit 65000:1 0:62 0:73 ip community-list standard 1_63_72 permit 65000:1 0:63 0:72 ip community-list standard 1_64_71 permit 65000:1 0:64 0:71 ip community-list standard 1_65_70 permit 65000:1 0:65 0:70 ip community-list standard 1_66_69 permit 65000:1 0:66 0:69 ip community-list standard 1_67_68 permit 65000:1 0:67 0:68 ip community-list expanded c135 permit 1 ^65000:4_0:135_0:1$ ip community-list expanded c135 permit 2 ^65000:3_0:136_0:1$ ip community-list expanded c135 permit 3 ^65000:3_0:137_0:2$ ip community-list expanded c135 permit 4 ^65000:3_0:138_0:3$ ip community-list expanded c135 permit 5 ^65000:3_0:139_0:4$ ip community-list expanded c135 permit 6 ^65000:3_0:140_0:5$ ip community-list expanded c135 permit 7 ^65000:3_0:141_0:6$ ip community-list expanded c135 permit 8 ^65000:3_0:142_0:7$ ip community-list expanded c135 permit 9 ^65000:3_0:143_0:8$ ip community-list expanded c135 permit 10 ^65000:3_0:144_0:9$ ip community-list expanded c135 permit 11 ^65000:3_0:145_0:10$ ip community-list expanded c135 permit 12 ^65000:3_0:146_0:11$ ip community-list expanded c135 permit 13 ^65000:3_0:147_0:12$ ip community-list expanded c135 permit 14 ^65000:3_0:148_0:13$ ip community-list expanded c135 permit 15 ^65000:3_0:149_0:14$ ip community-list expanded c135 permit 16 ^65000:3_0:150_0:15$ ip community-list expanded c135 permit 17 ^65000:3_0:151_0:16$ ip community-list expanded c135 permit 18 ^65000:3_0:152_0:17$ ip community-list expanded c135 permit 19 ^65000:3_0:153_0:18$ ip community-list expanded c135 permit 20 ^65000:3_0:154_0:19$ ip community-list expanded c135 permit 21 ^65000:3_0:155_0:20$ ip community-list expanded c135 permit 22 ^65000:3_0:156_0:21$ ip community-list expanded c135 permit 23 ^65000:3_0:157_0:22$ ip community-list expanded c135 permit 24 ^65000:3_0:158_0:23$ ip community-list expanded c135 permit 25 ^65000:3_0:159_0:24$ ip community-list expanded c135 permit 26 ^65000:3_0:160_0:25$ ip community-list expanded c135 permit 27 ^65000:3_0:161_0:26$ ip community-list expanded c135 permit 28 ^65000:3_0:162_0:27$ ip community-list expanded c135 permit 29 ^65000:3_0:163_0:28$ ip community-list expanded c135 permit 30 ^65000:3_0:164_0:29$ ip community-list expanded c135 permit 31 ^65000:3_0:165_0:30$ ip community-list expanded c135 permit 32 ^65000:3_0:166_0:31$ ip community-list expanded c135 permit 33 ^65000:3_0:167_0:32$ ip community-list expanded c135 permit 34 ^65000:3_0:168_0:33$ ip community-list expanded c135 permit 35 ^65000:3_0:169_0:34$ ip community-list expanded c135 permit 36 ^65000:3_0:170_0:35$ ip community-list expanded c135 permit 37 ^65000:3_0:171_0:36$ ip community-list expanded c135 permit 38 ^65000:3_0:172_0:37$ ip community-list expanded c135 permit 39 ^65000:3_0:173_0:38$ ip community-list expanded c135 permit 40 ^65000:3_0:174_0:39$ ip community-list expanded c135 permit 41 ^65000:3_0:175_0:40$ ip community-list expanded c135 permit 42 ^65000:3_0:176_0:41$ ip community-list expanded c135 permit 43 ^65000:3_0:177_0:42$ ip community-list expanded c135 permit 44 ^65000:3_0:178_0:43$ ip community-list expanded c135 permit 45 ^65000:3_0:179_0:44$ ip community-list expanded c135 permit 46 ^65000:3_0:180_0:45$ ip community-list expanded c135 permit 47 ^65000:3_0:181_0:46$ ip community-list expanded c135 permit 48 ^65000:3_0:182_0:47$ ip community-list expanded c135 permit 49 ^65000:3_0:183_0:48$ ip community-list expanded c135 permit 50 ^65000:3_0:184_0:49$ ip community-list expanded c135 permit 51 ^65000:3_0:185_0:50$ ip community-list expanded c135 permit 52 ^65000:3_0:186_0:51$ ip community-list expanded c135 permit 53 ^65000:3_0:187_0:52$ ip community-list expanded c135 permit 54 ^65000:3_0:188_0:53$ ip community-list expanded c135 permit 55 ^65000:3_0:189_0:54$ ip community-list expanded c135 permit 56 ^65000:3_0:190_0:55$ ip community-list expanded c135 permit 57 ^65000:3_0:191_0:56$ ip community-list expanded c135 permit 58 ^65000:3_0:192_0:57$ ip community-list expanded c135 permit 59 ^65000:3_0:193_0:58$ ip community-list expanded c135 permit 60 ^65000:3_0:194_0:59$ ip community-list expanded c135 permit 61 ^65000:3_0:195_0:60$ ip community-list expanded c135 permit 62 ^65000:3_0:196_0:61$ ip community-list expanded c135 permit 63 ^65000:3_0:197_0:62$ ip community-list expanded c135 permit 64 ^65000:3_0:198_0:63$ ip community-list expanded c135 permit 65 ^65000:3_0:199_0:64$ ip community-list expanded c135 permit 66 ^65000:3_0:200_0:65$ ip community-list expanded c135 permit 67 ^65000:3_0:201_0:66$ ip community-list expanded c135 permit 68 ^65000:3_0:202_0:67$ ip community-list expanded c135 permit 69 ^65000:3_0:203_0:68$ ip community-list expanded c135 permit 70 ^65000:3_0:204_0:69$ ip community-list expanded c135 permit 71 ^65000:3_0:205_0:70$ ip community-list expanded c135 permit 72 ^65000:3_0:206_0:71$ ip community-list expanded c135 permit 73 ^65000:3_0:207_0:72$ ip community-list expanded c135 permit 74 ^65000:3_0:208_0:73$ ip community-list expanded c135 permit 75 ^65000:3_0:209_0:74$ ip community-list expanded c135 permit 76 ^65000:3_0:210_0:75$ ip community-list expanded c135 permit 77 ^65000:3_0:211_0:76$ ip community-list expanded c135 permit 78 ^65000:3_0:212_0:77$ ip community-list expanded c135 permit 79 ^65000:3_0:213_0:78$ ip community-list expanded c135 permit 80 ^65000:3_0:214_0:79$ ip community-list expanded c135 permit 81 ^65000:3_0:215_0:80$ ip community-list expanded c135 permit 82 ^65000:3_0:216_0:81$ ip community-list expanded c135 permit 83 ^65000:3_0:217_0:82$ ip community-list expanded c135 permit 84 ^65000:3_0:218_0:83$ ip community-list expanded c135 permit 85 ^65000:3_0:219_0:84$ ip community-list expanded c135 permit 86 ^65000:3_0:220_0:85$ ip community-list expanded c135 permit 87 ^65000:3_0:221_0:86$ ip community-list expanded c135 permit 88 ^65000:3_0:222_0:87$ ip community-list expanded c135 permit 89 ^65000:3_0:223_0:88$ ip community-list expanded c135 permit 90 ^65000:3_0:224_0:89$ ip community-list expanded c135 permit 91 ^65000:3_0:225_0:90$ ip community-list expanded c135 permit 92 ^65000:3_0:226_0:91$ ip community-list expanded c135 permit 93 ^65000:3_0:227_0:92$ ip community-list expanded c135 permit 94 ^65000:3_0:228_0:93$ ip community-list expanded c135 permit 95 ^65000:3_0:229_0:94$ ip community-list expanded c135 permit 96 ^65000:3_0:230_0:95$ ip community-list expanded c135 permit 97 ^65000:3_0:231_0:96$ ip community-list expanded c135 permit 98 ^65000:3_0:232_0:97$ ip community-list expanded c135 permit 99 ^65000:3_0:233_0:98$ ip community-list expanded c135 permit 100 ^65000:3_0:234_0:99$ ip community-list expanded c135 permit 101 ^65000:3_0:235_0:100$ ip community-list expanded c135 permit 102 ^65000:3_0:236_0:101$ ip community-list expanded c135 permit 103 ^65000:3_0:237_0:102$ ip community-list expanded c135 permit 104 ^65000:3_0:238_0:103$ ip community-list expanded c135 permit 105 ^65000:3_0:239_0:104$ ip community-list expanded c135 permit 106 ^65000:3_0:240_0:105$ ip community-list expanded c135 permit 107 ^65000:3_0:241_0:106$ ip community-list expanded c135 permit 108 ^65000:3_0:242_0:107$ ip community-list expanded c135 permit 109 ^65000:3_0:243_0:108$ ip community-list expanded c135 permit 110 ^65000:3_0:244_0:109$ ip community-list expanded c135 permit 111 ^65000:3_0:245_0:110$ ip community-list expanded c135 permit 112 ^65000:3_0:246_0:111$ ip community-list expanded c135 permit 113 ^65000:3_0:247_0:112$ ip community-list expanded c135 permit 114 ^65000:3_0:248_0:113$ ip community-list expanded c135 permit 115 ^65000:3_0:249_0:114$ ip community-list expanded c135 permit 116 ^65000:3_0:250_0:115$ ip community-list expanded c135 permit 117 ^65000:3_0:251_0:116$ ip community-list expanded c135 permit 118 ^65000:3_0:252_0:117$ ip community-list expanded c135 permit 119 ^65000:3_0:253_0:118$ ip community-list expanded c135 permit 120 ^65000:3_0:254_0:119$ ip community-list expanded c135 permit 121 ^65000:3_0:255_0:120$ ip community-list expanded c135 permit 122 ^65000:3_0:256_0:121$ route-map calculator permit 27028 match community 1_1_134 2_1_135 1_2_133 2_3_45 1_3_132 set community 0:135 route-map calculator permit 27029 match community 1_4_131 2_5_27 1_5_130 1_6_129 1_7_128 set community 0:135 route-map calculator permit 27030 match community 1_8_127 2_9_15 1_9_126 1_10_125 1_11_124 set community 0:135 route-map calculator permit 27031 match community 1_12_123 1_13_122 1_14_121 1_15_120 1_16_119 set community 0:135 route-map calculator permit 27032 match community 1_17_118 1_18_117 1_19_116 1_20_115 1_21_114 set community 0:135 route-map calculator permit 27033 match community 1_22_113 1_23_112 1_24_111 1_25_110 1_26_109 set community 0:135 route-map calculator permit 27034 match community 1_27_108 1_28_107 1_29_106 1_30_105 1_31_104 set community 0:135 route-map calculator permit 27035 match community 1_32_103 1_33_102 1_34_101 1_35_100 1_36_99 set community 0:135 route-map calculator permit 27036 match community 1_37_98 1_38_97 1_39_96 1_40_95 1_41_94 set community 0:135 route-map calculator permit 27037 match community 1_42_93 1_43_92 1_44_91 1_45_90 1_46_89 set community 0:135 route-map calculator permit 27038 match community 1_47_88 1_48_87 1_49_86 1_50_85 1_51_84 set community 0:135 route-map calculator permit 27039 match community 1_52_83 1_53_82 1_54_81 1_55_80 1_56_79 set community 0:135 route-map calculator permit 27040 match community 1_57_78 1_58_77 1_59_76 1_60_75 1_61_74 set community 0:135 route-map calculator permit 27041 match community 1_62_73 1_63_72 1_64_71 1_65_70 1_66_69 set community 0:135 route-map calculator permit 27042 match community 1_67_68 c4_135_1 c3_136_1 c3_137_2 c3_138_3 set community 0:135 route-map calculator permit 27043 match community c3_139_4 c3_140_5 c3_141_6 c3_142_7 c3_143_8 set community 0:135 route-map calculator permit 27044 match community c3_144_9 c3_145_10 c3_146_11 c3_147_12 c3_148_13 set community 0:135 route-map calculator permit 27045 match community c3_149_14 c3_150_15 c3_151_16 c3_152_17 c3_153_18 set community 0:135 route-map calculator permit 27046 match community c3_154_19 c3_155_20 c3_156_21 c3_157_22 c3_158_23 set community 0:135 route-map calculator permit 27047 match community c3_159_24 c3_160_25 c3_161_26 c3_162_27 c3_163_28 set community 0:135 route-map calculator permit 27048 match community c3_164_29 c3_165_30 c3_166_31 c3_167_32 c3_168_33 set community 0:135 route-map calculator permit 27049 match community c3_169_34 c3_170_35 c3_171_36 c3_172_37 c3_173_38 set community 0:135 route-map calculator permit 27050 match community c3_174_39 c3_175_40 c3_176_41 c3_177_42 c3_178_43 set community 0:135 route-map calculator permit 27051 match community c3_179_44 c3_180_45 c3_181_46 c3_182_47 c3_183_48 set community 0:135 route-map calculator permit 27052 match community c3_184_49 c3_185_50 c3_186_51 c3_187_52 c3_188_53 set community 0:135 route-map calculator permit 27053 match community c3_189_54 c3_190_55 c3_191_56 c3_192_57 c3_193_58 set community 0:135 route-map calculator permit 27054 match community c3_194_59 c3_195_60 c3_196_61 c3_197_62 c3_198_63 set community 0:135 route-map calculator permit 27055 match community c3_199_64 c3_200_65 c3_201_66 c3_202_67 c3_203_68 set community 0:135 route-map calculator permit 27056 match community c3_204_69 c3_205_70 c3_206_71 c3_207_72 c3_208_73 set community 0:135 route-map calculator permit 27057 match community c3_209_74 c3_210_75 c3_211_76 c3_212_77 c3_213_78 set community 0:135 route-map calculator permit 27058 match community c3_214_79 c3_215_80 c3_216_81 c3_217_82 c3_218_83 set community 0:135 route-map calculator permit 27059 match community c3_219_84 c3_220_85 c3_221_86 c3_222_87 c3_223_88 set community 0:135 route-map calculator permit 27060 match community c3_224_89 c3_225_90 c3_226_91 c3_227_92 c3_228_93 set community 0:135 route-map calculator permit 27061 match community c3_229_94 c3_230_95 c3_231_96 c3_232_97 c3_233_98 set community 0:135 route-map calculator permit 27062 match community c3_234_99 c3_235_100 c3_236_101 c3_237_102 c3_238_103 set community 0:135 route-map calculator permit 27063 match community c3_239_104 c3_240_105 c3_241_106 c3_242_107 c3_243_108 set community 0:135 route-map calculator permit 27064 match community c3_244_109 c3_245_110 c3_246_111 c3_247_112 c3_248_113 set community 0:135 route-map calculator permit 27065 match community c3_249_114 c3_250_115 c3_251_116 c3_252_117 c3_253_118 set community 0:135 route-map calculator permit 27066 match community c3_254_119 c3_255_120 c3_256_121 set community 0:135 ip community-list standard 2_116_201 permit 65000:2 0:116 0:201 ip community-list standard 2_134_174 permit 65000:2 0:134 0:174 route-map calculator permit 27067 match community 2_116_201 2_134_174 set community 0:23316 ip community-list standard 2_87_230 permit 65000:2 0:87 0:230 ip community-list standard 2_115_174 permit 65000:2 0:115 0:174 ip community-list standard 2_138_145 permit 65000:2 0:138 0:145 route-map calculator permit 27068 match community 2_87_230 2_115_174 2_138_145 set community 0:20010 ip community-list standard 2_31_185 permit 65000:2 0:31 0:185 ip community-list standard 2_37_155 permit 65000:2 0:37 0:155 route-map calculator permit 27069 match community 2_31_185 2_37_155 set community 0:5735 ip community-list standard 2_13_92 permit 65000:2 0:13 0:92 ip community-list standard 2_23_52 permit 65000:2 0:23 0:52 ip community-list standard 2_26_46 permit 65000:2 0:26 0:46 route-map calculator permit 27070 match community 2_13_92 2_23_52 2_26_46 set community 0:1196 ip community-list standard 2_95_185 permit 65000:2 0:95 0:185 route-map calculator permit 27071 match community 2_95_185 set community 0:17575 ip community-list standard 2_80_238 permit 65000:2 0:80 0:238 ip community-list standard 2_85_224 permit 65000:2 0:85 0:224 ip community-list standard 2_112_170 permit 65000:2 0:112 0:170 ip community-list standard 2_119_160 permit 65000:2 0:119 0:160 ip community-list standard 2_136_140 permit 65000:2 0:136 0:140 route-map calculator permit 27072 match community 2_80_238 2_85_224 2_112_170 2_119_160 2_136_140 set community 0:19040 ip community-list standard 2_86_228 permit 65000:2 0:86 0:228 ip community-list standard 2_114_172 permit 65000:2 0:114 0:172 ip community-list standard 2_129_152 permit 65000:2 0:129 0:152 route-map calculator permit 27073 match community 2_86_228 2_114_172 2_129_152 set community 0:19608 ip community-list standard 2_137_177 permit 65000:2 0:137 0:177 route-map calculator permit 27074 match community 2_137_177 set community 0:24249 ip community-list standard 2_17_107 permit 65000:2 0:17 0:107 route-map calculator permit 27075 match community 2_17_107 set community 0:1819 ip community-list standard 2_180_255 permit 65000:2 0:180 0:255 ip community-list standard 2_204_225 permit 65000:2 0:204 0:225 route-map calculator permit 27076 match community 2_180_255 2_204_225 set community 0:45900 ip community-list standard 2_156_191 permit 65000:2 0:156 0:191 route-map calculator permit 27077 match community 2_156_191 set community 0:29796 ip community-list standard 2_136_250 permit 65000:2 0:136 0:250 ip community-list standard 2_170_200 permit 65000:2 0:170 0:200 route-map calculator permit 27078 match community 2_136_250 2_170_200 set community 0:34000 ip community-list standard 2_20_142 permit 65000:2 0:20 0:142 ip community-list standard 2_40_71 permit 65000:2 0:40 0:71 route-map calculator permit 27079 match community 2_20_142 2_40_71 set community 0:2840 ip community-list standard 2_11_205 permit 65000:2 0:11 0:205 ip community-list standard 2_41_55 permit 65000:2 0:41 0:55 route-map calculator permit 27080 match community 2_11_205 2_41_55 set community 0:2255 ip community-list standard 2_170_218 permit 65000:2 0:170 0:218 route-map calculator permit 27081 match community 2_170_218 set community 0:37060 ip community-list standard 2_89_195 permit 65000:2 0:89 0:195 route-map calculator permit 27082 match community 2_89_195 set community 0:17355 ip community-list standard 2_54_139 permit 65000:2 0:54 0:139 route-map calculator permit 27083 match community 2_54_139 set community 0:7506 ip community-list standard 2_140_157 permit 65000:2 0:140 0:157 route-map calculator permit 27084 match community 2_140_157 set community 0:21980 ip community-list standard 2_142_221 permit 65000:2 0:142 0:221 route-map calculator permit 27085 match community 2_142_221 set community 0:31382 ip community-list standard 2_78_226 permit 65000:2 0:78 0:226 ip community-list standard 2_113_156 permit 65000:2 0:113 0:156 route-map calculator permit 27086 match community 2_78_226 2_113_156 set community 0:17628 ip community-list standard 2_44_191 permit 65000:2 0:44 0:191 route-map calculator permit 27087 match community 2_44_191 set community 0:8404 ip community-list standard 2_88_199 permit 65000:2 0:88 0:199 route-map calculator permit 27088 match community 2_88_199 set community 0:17512 ip community-list standard 2_31_217 permit 65000:2 0:31 0:217 route-map calculator permit 27089 match community 2_31_217 set community 0:6727 ip community-list standard 2_134_212 permit 65000:2 0:134 0:212 route-map calculator permit 27090 match community 2_134_212 set community 0:28408 ip community-list standard 2_201_246 permit 65000:2 0:201 0:246 route-map calculator permit 27091 match community 2_201_246 set community 0:49446 ip community-list standard 2_17_133 permit 65000:2 0:17 0:133 ip community-list standard 2_19_119 permit 65000:2 0:19 0:119 route-map calculator permit 27092 match community 2_17_133 2_19_119 set community 0:2261 ip community-list standard 2_223_244 permit 65000:2 0:223 0:244 route-map calculator permit 27093 match community 2_223_244 set community 0:54412 ip community-list standard 2_45_243 permit 65000:2 0:45 0:243 ip community-list standard 2_81_135 permit 65000:2 0:81 0:135 route-map calculator permit 27094 match community 2_45_243 2_81_135 set community 0:10935 ip community-list standard 2_220_254 permit 65000:2 0:220 0:254 route-map calculator permit 27095 match community 2_220_254 set community 0:55880 ip community-list standard 2_184_206 permit 65000:2 0:184 0:206 route-map calculator permit 27096 match community 2_184_206 set community 0:37904 ip community-list standard 2_29_117 permit 65000:2 0:29 0:117 ip community-list standard 2_39_87 permit 65000:2 0:39 0:87 route-map calculator permit 27097 match community 2_29_117 2_39_87 set community 0:3393 ip community-list standard 2_59_223 permit 65000:2 0:59 0:223 route-map calculator permit 27098 match community 2_59_223 set community 0:13157 ip community-list standard 2_43_177 permit 65000:2 0:43 0:177 ip community-list standard 2_59_129 permit 65000:2 0:59 0:129 route-map calculator permit 27099 match community 2_43_177 2_59_129 set community 0:7611 ip community-list standard 2_140_255 permit 65000:2 0:140 0:255 ip community-list standard 2_150_238 permit 65000:2 0:150 0:238 ip community-list standard 2_170_210 permit 65000:2 0:170 0:210 ip community-list standard 2_175_204 permit 65000:2 0:175 0:204 route-map calculator permit 27100 match community 2_140_255 2_150_238 2_170_210 2_175_204 set community 0:35700 ip community-list standard 2_52_229 permit 65000:2 0:52 0:229 route-map calculator permit 27101 match community 2_52_229 set community 0:11908 ip community-list standard 2_7_89 permit 65000:2 0:7 0:89 route-map calculator permit 27102 match community 2_7_89 set community 0:623 ip community-list standard 2_65_199 permit 65000:2 0:65 0:199 route-map calculator permit 27103 match community 2_65_199 set community 0:12935 ip community-list standard 2_41_202 permit 65000:2 0:41 0:202 ip community-list standard 2_82_101 permit 65000:2 0:82 0:101 route-map calculator permit 27104 match community 2_41_202 2_82_101 set community 0:8282 ip community-list standard 2_199_216 permit 65000:2 0:199 0:216 route-map calculator permit 27105 match community 2_199_216 set community 0:42984 ip community-list standard 2_8_205 permit 65000:2 0:8 0:205 ip community-list standard 2_10_164 permit 65000:2 0:10 0:164 ip community-list standard 2_20_82 permit 65000:2 0:20 0:82 ip community-list standard 2_40_41 permit 65000:2 0:40 0:41 route-map calculator permit 27106 match community 2_8_205 2_10_164 2_20_82 2_40_41 set community 0:1640 ip community-list standard 2_218_237 permit 65000:2 0:218 0:237 route-map calculator permit 27107 match community 2_218_237 set community 0:51666 ip community-list standard 2_55_179 permit 65000:2 0:55 0:179 route-map calculator permit 27108 match community 2_55_179 set community 0:9845 ip community-list standard 2_202_212 permit 65000:2 0:202 0:212 route-map calculator permit 27109 match community 2_202_212 set community 0:42824 ip community-list standard 2_59_122 permit 65000:2 0:59 0:122 ip community-list standard 2_61_118 permit 65000:2 0:61 0:118 route-map calculator permit 27110 match community 2_59_122 2_61_118 set community 0:7198 ip community-list standard 2_31_193 permit 65000:2 0:31 0:193 route-map calculator permit 27111 match community 2_31_193 set community 0:5983 ip community-list standard 2_208_218 permit 65000:2 0:208 0:218 route-map calculator permit 27112 match community 2_208_218 set community 0:45344 ip community-list standard 2_57_237 permit 65000:2 0:57 0:237 ip community-list standard 2_79_171 permit 65000:2 0:79 0:171 route-map calculator permit 27113 match community 2_57_237 2_79_171 set community 0:13509 ip community-list standard 2_152_242 permit 65000:2 0:152 0:242 ip community-list standard 2_176_209 permit 65000:2 0:176 0:209 route-map calculator permit 27114 match community 2_152_242 2_176_209 set community 0:36784 ip community-list standard 2_141_161 permit 65000:2 0:141 0:161 route-map calculator permit 27115 match community 2_141_161 set community 0:22701 ip community-list standard 2_28_239 permit 65000:2 0:28 0:239 route-map calculator permit 27116 match community 2_28_239 set community 0:6692 ip community-list standard 2_219_235 permit 65000:2 0:219 0:235 route-map calculator permit 27117 match community 2_219_235 set community 0:51465 ip community-list standard 2_14_157 permit 65000:2 0:14 0:157 route-map calculator permit 27118 match community 2_14_157 set community 0:2198 ip community-list standard 2_155_195 permit 65000:2 0:155 0:195 route-map calculator permit 27119 match community 2_155_195 set community 0:30225 ip community-list standard 2_97_197 permit 65000:2 0:97 0:197 route-map calculator permit 27120 match community 2_97_197 set community 0:19109 ip community-list standard 2_171_179 permit 65000:2 0:171 0:179 route-map calculator permit 27121 match community 2_171_179 set community 0:30609 ip community-list standard 2_35_234 permit 65000:2 0:35 0:234 ip community-list standard 2_39_210 permit 65000:2 0:39 0:210 ip community-list standard 2_42_195 permit 65000:2 0:42 0:195 ip community-list standard 2_45_182 permit 65000:2 0:45 0:182 ip community-list standard 2_63_130 permit 65000:2 0:63 0:130 ip community-list standard 2_65_126 permit 65000:2 0:65 0:126 ip community-list standard 2_70_117 permit 65000:2 0:70 0:117 ip community-list standard 2_78_105 permit 65000:2 0:78 0:105 ip community-list standard 2_90_91 permit 65000:2 0:90 0:91 route-map calculator permit 27122 match community 2_35_234 2_39_210 2_42_195 2_45_182 2_63_130 set community 0:8190 route-map calculator permit 27123 match community 2_65_126 2_70_117 2_78_105 2_90_91 set community 0:8190 ip community-list standard 2_103_181 permit 65000:2 0:103 0:181 route-map calculator permit 27124 match community 2_103_181 set community 0:18643 ip community-list standard 2_8_246 permit 65000:2 0:8 0:246 ip community-list standard 2_12_164 permit 65000:2 0:12 0:164 ip community-list standard 2_16_123 permit 65000:2 0:16 0:123 ip community-list standard 2_24_82 permit 65000:2 0:24 0:82 ip community-list standard 2_41_48 permit 65000:2 0:41 0:48 route-map calculator permit 27125 match community 2_8_246 2_12_164 2_16_123 2_24_82 2_41_48 set community 0:1968 ip community-list standard 2_3_253 permit 65000:2 0:3 0:253 ip community-list standard 2_11_69 permit 65000:2 0:11 0:69 ip community-list standard 2_23_33 permit 65000:2 0:23 0:33 route-map calculator permit 27126 match community 2_3_253 2_11_69 2_23_33 set community 0:759 ip community-list standard 2_129_230 permit 65000:2 0:129 0:230 ip community-list standard 2_138_215 permit 65000:2 0:138 0:215 route-map calculator permit 27127 match community 2_129_230 2_138_215 set community 0:29670 ip community-list standard 2_57_243 permit 65000:2 0:57 0:243 ip community-list standard 2_81_171 permit 65000:2 0:81 0:171 route-map calculator permit 27128 match community 2_57_243 2_81_171 set community 0:13851 ip community-list standard 2_195_217 permit 65000:2 0:195 0:217 route-map calculator permit 27129 match community 2_195_217 set community 0:42315 ip community-list standard 2_55_163 permit 65000:2 0:55 0:163 route-map calculator permit 27130 match community 2_55_163 set community 0:8965 ip community-list standard 2_72_233 permit 65000:2 0:72 0:233 route-map calculator permit 27131 match community 2_72_233 set community 0:16776 ip community-list standard 2_226_252 permit 65000:2 0:226 0:252 route-map calculator permit 27132 match community 2_226_252 set community 0:56952 ip community-list standard 2_64_146 permit 65000:2 0:64 0:146 ip community-list standard 2_73_128 permit 65000:2 0:73 0:128 route-map calculator permit 27133 match community 2_64_146 2_73_128 set community 0:9344 ip community-list standard 2_143_250 permit 65000:2 0:143 0:250 route-map calculator permit 27134 match community 2_143_250 set community 0:35750 ip community-list standard 2_51_201 permit 65000:2 0:51 0:201 ip community-list standard 2_67_153 permit 65000:2 0:67 0:153 route-map calculator permit 27135 match community 2_51_201 2_67_153 set community 0:10251 ip community-list standard 2_41_122 permit 65000:2 0:41 0:122 ip community-list standard 2_61_82 permit 65000:2 0:61 0:82 route-map calculator permit 27136 match community 2_41_122 2_61_82 set community 0:5002 ip community-list standard 2_236_250 permit 65000:2 0:236 0:250 route-map calculator permit 27137 match community 2_236_250 set community 0:59000 ip community-list standard 2_7_239 permit 65000:2 0:7 0:239 route-map calculator permit 27138 match community 2_7_239 set community 0:1673 ip community-list standard 2_124_181 permit 65000:2 0:124 0:181 route-map calculator permit 27139 match community 2_124_181 set community 0:22444 ip community-list standard 2_83_131 permit 65000:2 0:83 0:131 route-map calculator permit 27140 match community 2_83_131 set community 0:10873 ip community-list standard 2_38_161 permit 65000:2 0:38 0:161 ip community-list standard 2_46_133 permit 65000:2 0:46 0:133 route-map calculator permit 27141 match community 2_38_161 2_46_133 set community 0:6118 ip community-list standard 2_147_255 permit 65000:2 0:147 0:255 ip community-list standard 2_153_245 permit 65000:2 0:153 0:245 route-map calculator permit 27142 match community 2_147_255 2_153_245 set community 0:37485 ip community-list standard 2_157_211 permit 65000:2 0:157 0:211 route-map calculator permit 27143 match community 2_157_211 set community 0:33127 ip community-list standard 2_98_229 permit 65000:2 0:98 0:229 route-map calculator permit 27144 match community 2_98_229 set community 0:22442 ip community-list standard 2_159_212 permit 65000:2 0:159 0:212 route-map calculator permit 27145 match community 2_159_212 set community 0:33708 ip community-list standard 2_191_199 permit 65000:2 0:191 0:199 route-map calculator permit 27146 match community 2_191_199 set community 0:38009 ip community-list standard 2_56_194 permit 65000:2 0:56 0:194 ip community-list standard 2_97_112 permit 65000:2 0:97 0:112 route-map calculator permit 27147 match community 2_56_194 2_97_112 set community 0:10864 ip community-list standard 2_79_203 permit 65000:2 0:79 0:203 route-map calculator permit 27148 match community 2_79_203 set community 0:16037 ip community-list standard 2_40_240 permit 65000:2 0:40 0:240 ip community-list standard 2_48_200 permit 65000:2 0:48 0:200 ip community-list standard 2_50_192 permit 65000:2 0:50 0:192 ip community-list standard 2_60_160 permit 65000:2 0:60 0:160 ip community-list standard 2_64_150 permit 65000:2 0:64 0:150 ip community-list standard 2_75_128 permit 65000:2 0:75 0:128 ip community-list standard 2_80_120 permit 65000:2 0:80 0:120 ip community-list standard 2_96_100 permit 65000:2 0:96 0:100 route-map calculator permit 27149 match community 2_40_240 2_48_200 2_50_192 2_60_160 2_64_150 set community 0:9600 route-map calculator permit 27150 match community 2_75_128 2_80_120 2_96_100 set community 0:9600 ip community-list standard 2_56_248 permit 65000:2 0:56 0:248 ip community-list standard 2_62_224 permit 65000:2 0:62 0:224 ip community-list standard 2_64_217 permit 65000:2 0:64 0:217 ip community-list standard 2_112_124 permit 65000:2 0:112 0:124 route-map calculator permit 27151 match community 2_56_248 2_62_224 2_64_217 2_112_124 set community 0:13888 ip community-list standard 2_143_249 permit 65000:2 0:143 0:249 route-map calculator permit 27152 match community 2_143_249 set community 0:35607 ip community-list standard 2_2_240 permit 65000:2 0:2 0:240 ip community-list standard 2_3_160 permit 65000:2 0:3 0:160 ip community-list standard 2_4_120 permit 65000:2 0:4 0:120 ip community-list standard 2_5_96 permit 65000:2 0:5 0:96 ip community-list standard 2_6_80 permit 65000:2 0:6 0:80 ip community-list standard 2_8_60 permit 65000:2 0:8 0:60 ip community-list standard 2_10_48 permit 65000:2 0:10 0:48 ip community-list standard 2_12_40 permit 65000:2 0:12 0:40 ip community-list standard 2_15_32 permit 65000:2 0:15 0:32 ip community-list standard 2_16_30 permit 65000:2 0:16 0:30 ip community-list standard 2_20_24 permit 65000:2 0:20 0:24 ip community-list standard 1_224_256 permit 65000:1 0:224 0:256 ip community-list standard 1_225_255 permit 65000:1 0:225 0:255 ip community-list standard 1_226_254 permit 65000:1 0:226 0:254 ip community-list standard 1_227_253 permit 65000:1 0:227 0:253 ip community-list standard 1_228_252 permit 65000:1 0:228 0:252 ip community-list standard 1_229_251 permit 65000:1 0:229 0:251 ip community-list standard 1_230_250 permit 65000:1 0:230 0:250 ip community-list standard 1_231_249 permit 65000:1 0:231 0:249 ip community-list standard 1_232_248 permit 65000:1 0:232 0:248 ip community-list standard 1_233_247 permit 65000:1 0:233 0:247 ip community-list standard 1_234_246 permit 65000:1 0:234 0:246 ip community-list standard 1_235_245 permit 65000:1 0:235 0:245 ip community-list standard 1_236_244 permit 65000:1 0:236 0:244 ip community-list standard 1_237_243 permit 65000:1 0:237 0:243 ip community-list standard 1_238_242 permit 65000:1 0:238 0:242 ip community-list standard 1_239_241 permit 65000:1 0:239 0:241 ip community-list standard 1_240_240 permit 65000:1 0:240 0:240 route-map calculator permit 27153 match community 2_2_240 2_3_160 2_4_120 2_5_96 2_6_80 set community 0:480 route-map calculator permit 27154 match community 2_8_60 2_10_48 2_12_40 2_15_32 2_16_30 set community 0:480 route-map calculator permit 27155 match community 2_20_24 1_224_256 1_225_255 1_226_254 1_227_253 set community 0:480 route-map calculator permit 27156 match community 1_228_252 1_229_251 1_230_250 1_231_249 1_232_248 set community 0:480 route-map calculator permit 27157 match community 1_233_247 1_234_246 1_235_245 1_236_244 1_237_243 set community 0:480 route-map calculator permit 27158 match community 1_238_242 1_239_241 1_240_240 set community 0:480 ip community-list standard 2_215_250 permit 65000:2 0:215 0:250 route-map calculator permit 27159 match community 2_215_250 set community 0:53750 ip community-list standard 2_148_196 permit 65000:2 0:148 0:196 route-map calculator permit 27160 match community 2_148_196 set community 0:29008 ip community-list standard 2_121_233 permit 65000:2 0:121 0:233 route-map calculator permit 27161 match community 2_121_233 set community 0:28193 ip community-list standard 2_131_230 permit 65000:2 0:131 0:230 route-map calculator permit 27162 match community 2_131_230 set community 0:30130 ip community-list standard 2_54_232 permit 65000:2 0:54 0:232 ip community-list standard 2_58_216 permit 65000:2 0:58 0:216 ip community-list standard 2_72_174 permit 65000:2 0:72 0:174 ip community-list standard 2_87_144 permit 65000:2 0:87 0:144 ip community-list standard 2_108_116 permit 65000:2 0:108 0:116 route-map calculator permit 27163 match community 2_54_232 2_58_216 2_72_174 2_87_144 2_108_116 set community 0:12528 ip community-list standard 2_48_193 permit 65000:2 0:48 0:193 route-map calculator permit 27164 match community 2_48_193 set community 0:9264 ip community-list standard 2_37_178 permit 65000:2 0:37 0:178 ip community-list standard 2_74_89 permit 65000:2 0:74 0:89 route-map calculator permit 27165 match community 2_37_178 2_74_89 set community 0:6586 ip community-list standard 2_107_113 permit 65000:2 0:107 0:113 route-map calculator permit 27166 match community 2_107_113 set community 0:12091 ip community-list standard 2_96_239 permit 65000:2 0:96 0:239 route-map calculator permit 27167 match community 2_96_239 set community 0:22944 ip community-list standard 2_8_157 permit 65000:2 0:8 0:157 route-map calculator permit 27168 match community 2_8_157 set community 0:1256 ip community-list standard 2_186_217 permit 65000:2 0:186 0:217 route-map calculator permit 27169 match community 2_186_217 set community 0:40362 ip community-list standard 2_114_179 permit 65000:2 0:114 0:179 route-map calculator permit 27170 match community 2_114_179 set community 0:20406 ip community-list standard 2_164_193 permit 65000:2 0:164 0:193 route-map calculator permit 27171 match community 2_164_193 set community 0:31652 ip community-list standard 2_93_219 permit 65000:2 0:93 0:219 route-map calculator permit 27172 match community 2_93_219 set community 0:20367 ip community-list standard 2_150_233 permit 65000:2 0:150 0:233 route-map calculator permit 27173 match community 2_150_233 set community 0:34950 ip community-list standard 2_165_246 permit 65000:2 0:165 0:246 ip community-list standard 2_198_205 permit 65000:2 0:198 0:205 route-map calculator permit 27174 match community 2_165_246 2_198_205 set community 0:40590 ip community-list standard 2_184_227 permit 65000:2 0:184 0:227 route-map calculator permit 27175 match community 2_184_227 set community 0:41768 ip community-list standard 2_102_239 permit 65000:2 0:102 0:239 route-map calculator permit 27176 match community 2_102_239 set community 0:24378 ip community-list standard 2_115_207 permit 65000:2 0:115 0:207 route-map calculator permit 27177 match community 2_115_207 set community 0:23805 ip community-list standard 2_119_147 permit 65000:2 0:119 0:147 route-map calculator permit 27178 match community 2_119_147 set community 0:17493 ip community-list standard 2_101_131 permit 65000:2 0:101 0:131 route-map calculator permit 27179 match community 2_101_131 set community 0:13231 ip community-list standard 2_49_193 permit 65000:2 0:49 0:193 route-map calculator permit 27180 match community 2_49_193 set community 0:9457 ip community-list standard 2_35_241 permit 65000:2 0:35 0:241 route-map calculator permit 27181 match community 2_35_241 set community 0:8435 ip community-list standard 2_11_218 permit 65000:2 0:11 0:218 ip community-list standard 2_22_109 permit 65000:2 0:22 0:109 route-map calculator permit 27182 match community 2_11_218 2_22_109 set community 0:2398 ip community-list standard 2_25_237 permit 65000:2 0:25 0:237 ip community-list standard 2_75_79 permit 65000:2 0:75 0:79 route-map calculator permit 27183 match community 2_25_237 2_75_79 set community 0:5925 ip community-list standard 2_61_119 permit 65000:2 0:61 0:119 route-map calculator permit 27184 match community 2_61_119 set community 0:7259 ip community-list standard 2_111_127 permit 65000:2 0:111 0:127 route-map calculator permit 27185 match community 2_111_127 set community 0:14097 ip community-list standard 2_28_247 permit 65000:2 0:28 0:247 ip community-list standard 2_38_182 permit 65000:2 0:38 0:182 ip community-list standard 2_52_133 permit 65000:2 0:52 0:133 ip community-list standard 2_76_91 permit 65000:2 0:76 0:91 route-map calculator permit 27186 match community 2_28_247 2_38_182 2_52_133 2_76_91 set community 0:6916 ip community-list standard 2_71_250 permit 65000:2 0:71 0:250 ip community-list standard 2_125_142 permit 65000:2 0:125 0:142 route-map calculator permit 27187 match community 2_71_250 2_125_142 set community 0:17750 ip community-list standard 2_3_210 permit 65000:2 0:3 0:210 ip community-list standard 2_5_126 permit 65000:2 0:5 0:126 ip community-list standard 2_6_105 permit 65000:2 0:6 0:105 ip community-list standard 2_7_90 permit 65000:2 0:7 0:90 ip community-list standard 2_9_70 permit 65000:2 0:9 0:70 ip community-list standard 2_10_63 permit 65000:2 0:10 0:63 ip community-list standard 2_14_45 permit 65000:2 0:14 0:45 ip community-list standard 2_15_42 permit 65000:2 0:15 0:42 ip community-list standard 2_18_35 permit 65000:2 0:18 0:35 ip community-list standard 2_21_30 permit 65000:2 0:21 0:30 route-map calculator permit 27188 match community 2_3_210 2_5_126 2_6_105 2_7_90 2_9_70 set community 0:630 route-map calculator permit 27189 match community 2_10_63 2_14_45 2_15_42 2_18_35 2_21_30 set community 0:630 ip community-list standard 2_29_237 permit 65000:2 0:29 0:237 ip community-list standard 2_79_87 permit 65000:2 0:79 0:87 route-map calculator permit 27190 match community 2_29_237 2_79_87 set community 0:6873 ip community-list standard 2_186_237 permit 65000:2 0:186 0:237 route-map calculator permit 27191 match community 2_186_237 set community 0:44082 ip community-list standard 2_48_226 permit 65000:2 0:48 0:226 ip community-list standard 2_96_113 permit 65000:2 0:96 0:113 route-map calculator permit 27192 match community 2_48_226 2_96_113 set community 0:10848 ip community-list standard 2_244_251 permit 65000:2 0:244 0:251 route-map calculator permit 27193 match community 2_244_251 set community 0:61244 ip community-list standard 2_24_242 permit 65000:2 0:24 0:242 ip community-list standard 2_33_176 permit 65000:2 0:33 0:176 ip community-list standard 2_44_132 permit 65000:2 0:44 0:132 ip community-list standard 2_48_121 permit 65000:2 0:48 0:121 ip community-list standard 2_66_88 permit 65000:2 0:66 0:88 route-map calculator permit 27194 match community 2_24_242 2_33_176 2_44_132 2_48_121 2_66_88 set community 0:5808 ip community-list standard 2_152_247 permit 65000:2 0:152 0:247 route-map calculator permit 27195 match community 2_152_247 set community 0:37544 ip community-list standard 2_185_256 permit 65000:2 0:185 0:256 route-map calculator permit 27196 match community 2_185_256 set community 0:47360 ip community-list standard 2_222_256 permit 65000:2 0:222 0:256 route-map calculator permit 27197 match community 2_222_256 set community 0:56832 ip community-list standard 2_48_245 permit 65000:2 0:48 0:245 ip community-list standard 2_49_240 permit 65000:2 0:49 0:240 ip community-list standard 2_56_210 permit 65000:2 0:56 0:210 ip community-list standard 2_60_196 permit 65000:2 0:60 0:196 ip community-list standard 2_70_168 permit 65000:2 0:70 0:168 ip community-list standard 2_80_147 permit 65000:2 0:80 0:147 ip community-list standard 2_84_140 permit 65000:2 0:84 0:140 ip community-list standard 2_98_120 permit 65000:2 0:98 0:120 ip community-list standard 2_105_112 permit 65000:2 0:105 0:112 route-map calculator permit 27198 match community 2_48_245 2_49_240 2_56_210 2_60_196 2_70_168 set community 0:11760 route-map calculator permit 27199 match community 2_80_147 2_84_140 2_98_120 2_105_112 set community 0:11760 ip community-list standard 2_173_219 permit 65000:2 0:173 0:219 route-map calculator permit 27200 match community 2_173_219 set community 0:37887 ip community-list standard 2_32_139 permit 65000:2 0:32 0:139 route-map calculator permit 27201 match community 2_32_139 set community 0:4448 ip community-list standard 2_113_244 permit 65000:2 0:113 0:244 ip community-list standard 2_122_226 permit 65000:2 0:122 0:226 route-map calculator permit 27202 match community 2_113_244 2_122_226 set community 0:27572 ip community-list standard 2_110_201 permit 65000:2 0:110 0:201 ip community-list standard 2_134_165 permit 65000:2 0:134 0:165 route-map calculator permit 27203 match community 2_110_201 2_134_165 set community 0:22110 ip community-list standard 2_43_235 permit 65000:2 0:43 0:235 ip community-list standard 2_47_215 permit 65000:2 0:47 0:215 route-map calculator permit 27204 match community 2_43_235 2_47_215 set community 0:10105 ip community-list standard 2_19_31 permit 65000:2 0:19 0:31 route-map calculator permit 27205 match community 2_19_31 set community 0:589 ip community-list standard 2_46_228 permit 65000:2 0:46 0:228 ip community-list standard 2_57_184 permit 65000:2 0:57 0:184 ip community-list standard 2_69_152 permit 65000:2 0:69 0:152 ip community-list standard 2_76_138 permit 65000:2 0:76 0:138 ip community-list standard 2_92_114 permit 65000:2 0:92 0:114 route-map calculator permit 27206 match community 2_46_228 2_57_184 2_69_152 2_76_138 2_92_114 set community 0:10488 ip community-list standard 2_145_197 permit 65000:2 0:145 0:197 route-map calculator permit 27207 match community 2_145_197 set community 0:28565 ip community-list standard 2_36_256 permit 65000:2 0:36 0:256 ip community-list standard 2_48_192 permit 65000:2 0:48 0:192 ip community-list standard 2_64_144 permit 65000:2 0:64 0:144 ip community-list standard 2_72_128 permit 65000:2 0:72 0:128 ip community-list standard 2_96_96 permit 65000:2 0:96 0:96 route-map calculator permit 27208 match community 2_36_256 2_48_192 2_64_144 2_72_128 2_96_96 set community 0:9216 ip community-list standard 2_154_250 permit 65000:2 0:154 0:250 ip community-list standard 2_175_220 permit 65000:2 0:175 0:220 route-map calculator permit 27209 match community 2_154_250 2_175_220 set community 0:38500 ip community-list standard 2_91_159 permit 65000:2 0:91 0:159 route-map calculator permit 27210 match community 2_91_159 set community 0:14469 ip community-list standard 2_154_167 permit 65000:2 0:154 0:167 route-map calculator permit 27211 match community 2_154_167 set community 0:25718 ip community-list standard 2_37_187 permit 65000:2 0:37 0:187 route-map calculator permit 27212 match community 2_37_187 set community 0:6919 ip community-list standard 2_82_133 permit 65000:2 0:82 0:133 route-map calculator permit 27213 match community 2_82_133 set community 0:10906 ip community-list standard 2_159_213 permit 65000:2 0:159 0:213 route-map calculator permit 27214 match community 2_159_213 set community 0:33867 ip community-list standard 2_3_229 permit 65000:2 0:3 0:229 route-map calculator permit 27215 match community 2_3_229 set community 0:687 ip community-list standard 2_111_238 permit 65000:2 0:111 0:238 ip community-list standard 2_119_222 permit 65000:2 0:119 0:222 route-map calculator permit 27216 match community 2_111_238 2_119_222 set community 0:26418 ip community-list standard 2_79_95 permit 65000:2 0:79 0:95 route-map calculator permit 27217 match community 2_79_95 set community 0:7505 ip community-list standard 2_38_226 permit 65000:2 0:38 0:226 ip community-list standard 2_76_113 permit 65000:2 0:76 0:113 route-map calculator permit 27218 match community 2_38_226 2_76_113 set community 0:8588 ip community-list standard 2_228_250 permit 65000:2 0:228 0:250 route-map calculator permit 27219 match community 2_228_250 set community 0:57000 ip community-list standard 2_189_214 permit 65000:2 0:189 0:214 route-map calculator permit 27220 match community 2_189_214 set community 0:40446 ip community-list standard 2_25_175 permit 65000:2 0:25 0:175 ip community-list standard 2_35_125 permit 65000:2 0:35 0:125 route-map calculator permit 27221 match community 2_25_175 2_35_125 set community 0:4375 ip community-list standard 2_148_235 permit 65000:2 0:148 0:235 ip community-list standard 2_185_188 permit 65000:2 0:185 0:188 route-map calculator permit 27222 match community 2_148_235 2_185_188 set community 0:34780 ip community-list standard 2_55_224 permit 65000:2 0:55 0:224 ip community-list standard 2_56_220 permit 65000:2 0:56 0:220 ip community-list standard 2_70_176 permit 65000:2 0:70 0:176 ip community-list standard 2_77_160 permit 65000:2 0:77 0:160 ip community-list standard 2_80_154 permit 65000:2 0:80 0:154 ip community-list standard 2_88_140 permit 65000:2 0:88 0:140 ip community-list standard 2_110_112 permit 65000:2 0:110 0:112 route-map calculator permit 27223 match community 2_55_224 2_56_220 2_70_176 2_77_160 2_80_154 set community 0:12320 route-map calculator permit 27224 match community 2_88_140 2_110_112 set community 0:12320 ip community-list standard 2_141_186 permit 65000:2 0:141 0:186 route-map calculator permit 27225 match community 2_141_186 set community 0:26226 ip community-list standard 2_7_139 permit 65000:2 0:7 0:139 route-map calculator permit 27226 match community 2_7_139 set community 0:973 ip community-list standard 2_97_97 permit 65000:2 0:97 0:97 route-map calculator permit 27227 match community 2_97_97 set community 0:9409 ip community-list standard 2_13_43 permit 65000:2 0:13 0:43 route-map calculator permit 27228 match community 2_13_43 set community 0:559 ip community-list standard 2_57_157 permit 65000:2 0:57 0:157 route-map calculator permit 27229 match community 2_57_157 set community 0:8949 ip community-list standard 2_58_211 permit 65000:2 0:58 0:211 route-map calculator permit 27230 match community 2_58_211 set community 0:12238 ip community-list standard 2_179_219 permit 65000:2 0:179 0:219 route-map calculator permit 27231 match community 2_179_219 set community 0:39201 ip community-list standard 2_132_173 permit 65000:2 0:132 0:173 route-map calculator permit 27232 match community 2_132_173 set community 0:22836 ip community-list standard 2_4_169 permit 65000:2 0:4 0:169 ip community-list standard 2_13_52 permit 65000:2 0:13 0:52 ip community-list standard 2_26_26 permit 65000:2 0:26 0:26 route-map calculator permit 27233 match community 2_4_169 2_13_52 2_26_26 set community 0:676 ip community-list standard 2_17_31 permit 65000:2 0:17 0:31 route-map calculator permit 27234 match community 2_17_31 set community 0:527 ip community-list standard 2_4_223 permit 65000:2 0:4 0:223 route-map calculator permit 27235 match community 2_4_223 set community 0:892 ip community-list standard 1_1_246 permit 65000:1 0:1 0:246 ip community-list standard 2_1_247 permit 65000:2 0:1 0:247 ip community-list standard 1_2_245 permit 65000:1 0:2 0:245 ip community-list standard 1_3_244 permit 65000:1 0:3 0:244 ip community-list standard 1_4_243 permit 65000:1 0:4 0:243 ip community-list standard 1_5_242 permit 65000:1 0:5 0:242 ip community-list standard 1_6_241 permit 65000:1 0:6 0:241 ip community-list standard 1_7_240 permit 65000:1 0:7 0:240 ip community-list standard 1_8_239 permit 65000:1 0:8 0:239 ip community-list standard 1_9_238 permit 65000:1 0:9 0:238 ip community-list standard 1_10_237 permit 65000:1 0:10 0:237 ip community-list standard 1_11_236 permit 65000:1 0:11 0:236 ip community-list standard 1_12_235 permit 65000:1 0:12 0:235 ip community-list standard 2_13_19 permit 65000:2 0:13 0:19 ip community-list standard 1_13_234 permit 65000:1 0:13 0:234 ip community-list standard 1_14_233 permit 65000:1 0:14 0:233 ip community-list standard 1_15_232 permit 65000:1 0:15 0:232 ip community-list standard 1_16_231 permit 65000:1 0:16 0:231 ip community-list standard 1_17_230 permit 65000:1 0:17 0:230 ip community-list standard 1_18_229 permit 65000:1 0:18 0:229 ip community-list standard 1_19_228 permit 65000:1 0:19 0:228 ip community-list standard 1_20_227 permit 65000:1 0:20 0:227 ip community-list standard 1_21_226 permit 65000:1 0:21 0:226 ip community-list standard 1_22_225 permit 65000:1 0:22 0:225 ip community-list standard 1_23_224 permit 65000:1 0:23 0:224 ip community-list standard 1_24_223 permit 65000:1 0:24 0:223 ip community-list standard 1_25_222 permit 65000:1 0:25 0:222 ip community-list standard 1_26_221 permit 65000:1 0:26 0:221 ip community-list standard 1_27_220 permit 65000:1 0:27 0:220 ip community-list standard 1_28_219 permit 65000:1 0:28 0:219 ip community-list standard 1_29_218 permit 65000:1 0:29 0:218 ip community-list standard 1_30_217 permit 65000:1 0:30 0:217 ip community-list standard 1_31_216 permit 65000:1 0:31 0:216 ip community-list standard 1_32_215 permit 65000:1 0:32 0:215 ip community-list standard 1_33_214 permit 65000:1 0:33 0:214 ip community-list standard 1_34_213 permit 65000:1 0:34 0:213 ip community-list standard 1_35_212 permit 65000:1 0:35 0:212 ip community-list standard 1_36_211 permit 65000:1 0:36 0:211 ip community-list standard 1_37_210 permit 65000:1 0:37 0:210 ip community-list standard 1_38_209 permit 65000:1 0:38 0:209 ip community-list standard 1_39_208 permit 65000:1 0:39 0:208 ip community-list standard 1_40_207 permit 65000:1 0:40 0:207 ip community-list standard 1_41_206 permit 65000:1 0:41 0:206 ip community-list standard 1_42_205 permit 65000:1 0:42 0:205 ip community-list standard 1_43_204 permit 65000:1 0:43 0:204 ip community-list standard 1_44_203 permit 65000:1 0:44 0:203 ip community-list standard 1_45_202 permit 65000:1 0:45 0:202 ip community-list standard 1_46_201 permit 65000:1 0:46 0:201 ip community-list standard 1_47_200 permit 65000:1 0:47 0:200 ip community-list standard 1_48_199 permit 65000:1 0:48 0:199 ip community-list standard 1_49_198 permit 65000:1 0:49 0:198 ip community-list standard 1_50_197 permit 65000:1 0:50 0:197 ip community-list standard 1_51_196 permit 65000:1 0:51 0:196 ip community-list standard 1_52_195 permit 65000:1 0:52 0:195 ip community-list standard 1_53_194 permit 65000:1 0:53 0:194 ip community-list standard 1_54_193 permit 65000:1 0:54 0:193 ip community-list standard 1_55_192 permit 65000:1 0:55 0:192 ip community-list standard 1_56_191 permit 65000:1 0:56 0:191 ip community-list standard 1_57_190 permit 65000:1 0:57 0:190 ip community-list standard 1_58_189 permit 65000:1 0:58 0:189 ip community-list standard 1_59_188 permit 65000:1 0:59 0:188 ip community-list standard 1_60_187 permit 65000:1 0:60 0:187 ip community-list standard 1_61_186 permit 65000:1 0:61 0:186 ip community-list standard 1_62_185 permit 65000:1 0:62 0:185 ip community-list standard 1_63_184 permit 65000:1 0:63 0:184 ip community-list standard 1_64_183 permit 65000:1 0:64 0:183 ip community-list standard 1_65_182 permit 65000:1 0:65 0:182 ip community-list standard 1_66_181 permit 65000:1 0:66 0:181 ip community-list standard 1_67_180 permit 65000:1 0:67 0:180 ip community-list standard 1_68_179 permit 65000:1 0:68 0:179 ip community-list standard 1_69_178 permit 65000:1 0:69 0:178 ip community-list standard 1_70_177 permit 65000:1 0:70 0:177 ip community-list standard 1_71_176 permit 65000:1 0:71 0:176 ip community-list standard 1_72_175 permit 65000:1 0:72 0:175 ip community-list standard 1_73_174 permit 65000:1 0:73 0:174 ip community-list standard 1_74_173 permit 65000:1 0:74 0:173 ip community-list standard 1_75_172 permit 65000:1 0:75 0:172 ip community-list standard 1_76_171 permit 65000:1 0:76 0:171 ip community-list standard 1_77_170 permit 65000:1 0:77 0:170 ip community-list standard 1_78_169 permit 65000:1 0:78 0:169 ip community-list standard 1_79_168 permit 65000:1 0:79 0:168 ip community-list standard 1_80_167 permit 65000:1 0:80 0:167 ip community-list standard 1_81_166 permit 65000:1 0:81 0:166 ip community-list standard 1_82_165 permit 65000:1 0:82 0:165 ip community-list standard 1_83_164 permit 65000:1 0:83 0:164 ip community-list standard 1_84_163 permit 65000:1 0:84 0:163 ip community-list standard 1_85_162 permit 65000:1 0:85 0:162 ip community-list standard 1_86_161 permit 65000:1 0:86 0:161 ip community-list standard 1_87_160 permit 65000:1 0:87 0:160 ip community-list standard 1_88_159 permit 65000:1 0:88 0:159 ip community-list standard 1_89_158 permit 65000:1 0:89 0:158 ip community-list standard 1_90_157 permit 65000:1 0:90 0:157 ip community-list standard 1_91_156 permit 65000:1 0:91 0:156 ip community-list standard 1_92_155 permit 65000:1 0:92 0:155 ip community-list standard 1_93_154 permit 65000:1 0:93 0:154 ip community-list standard 1_94_153 permit 65000:1 0:94 0:153 ip community-list standard 1_95_152 permit 65000:1 0:95 0:152 ip community-list standard 1_96_151 permit 65000:1 0:96 0:151 ip community-list standard 1_97_150 permit 65000:1 0:97 0:150 ip community-list standard 1_98_149 permit 65000:1 0:98 0:149 ip community-list standard 1_99_148 permit 65000:1 0:99 0:148 ip community-list standard 1_100_147 permit 65000:1 0:100 0:147 ip community-list standard 1_101_146 permit 65000:1 0:101 0:146 ip community-list standard 1_102_145 permit 65000:1 0:102 0:145 ip community-list standard 1_103_144 permit 65000:1 0:103 0:144 ip community-list standard 1_104_143 permit 65000:1 0:104 0:143 ip community-list standard 1_105_142 permit 65000:1 0:105 0:142 ip community-list standard 1_106_141 permit 65000:1 0:106 0:141 ip community-list standard 1_107_140 permit 65000:1 0:107 0:140 ip community-list standard 1_108_139 permit 65000:1 0:108 0:139 ip community-list standard 1_109_138 permit 65000:1 0:109 0:138 ip community-list standard 1_110_137 permit 65000:1 0:110 0:137 ip community-list standard 1_111_136 permit 65000:1 0:111 0:136 ip community-list standard 1_112_135 permit 65000:1 0:112 0:135 ip community-list standard 1_113_134 permit 65000:1 0:113 0:134 ip community-list standard 1_114_133 permit 65000:1 0:114 0:133 ip community-list standard 1_115_132 permit 65000:1 0:115 0:132 ip community-list standard 1_116_131 permit 65000:1 0:116 0:131 ip community-list standard 1_117_130 permit 65000:1 0:117 0:130 ip community-list standard 1_118_129 permit 65000:1 0:118 0:129 ip community-list standard 1_119_128 permit 65000:1 0:119 0:128 ip community-list standard 1_120_127 permit 65000:1 0:120 0:127 ip community-list standard 1_121_126 permit 65000:1 0:121 0:126 ip community-list standard 1_122_125 permit 65000:1 0:122 0:125 ip community-list standard 1_123_124 permit 65000:1 0:123 0:124 ip community-list expanded c247 permit 1 ^65000:4_0:247_0:1$ ip community-list expanded c247 permit 2 ^65000:3_0:248_0:1$ ip community-list expanded c247 permit 3 ^65000:3_0:249_0:2$ ip community-list expanded c247 permit 4 ^65000:3_0:250_0:3$ ip community-list expanded c247 permit 5 ^65000:3_0:251_0:4$ ip community-list expanded c247 permit 6 ^65000:3_0:252_0:5$ ip community-list expanded c247 permit 7 ^65000:3_0:253_0:6$ ip community-list expanded c247 permit 8 ^65000:3_0:254_0:7$ ip community-list expanded c247 permit 9 ^65000:3_0:255_0:8$ ip community-list expanded c247 permit 10 ^65000:3_0:256_0:9$ route-map calculator permit 27236 match community 1_1_246 2_1_247 1_2_245 1_3_244 1_4_243 set community 0:247 route-map calculator permit 27237 match community 1_5_242 1_6_241 1_7_240 1_8_239 1_9_238 set community 0:247 route-map calculator permit 27238 match community 1_10_237 1_11_236 1_12_235 2_13_19 1_13_234 set community 0:247 route-map calculator permit 27239 match community 1_14_233 1_15_232 1_16_231 1_17_230 1_18_229 set community 0:247 route-map calculator permit 27240 match community 1_19_228 1_20_227 1_21_226 1_22_225 1_23_224 set community 0:247 route-map calculator permit 27241 match community 1_24_223 1_25_222 1_26_221 1_27_220 1_28_219 set community 0:247 route-map calculator permit 27242 match community 1_29_218 1_30_217 1_31_216 1_32_215 1_33_214 set community 0:247 route-map calculator permit 27243 match community 1_34_213 1_35_212 1_36_211 1_37_210 1_38_209 set community 0:247 route-map calculator permit 27244 match community 1_39_208 1_40_207 1_41_206 1_42_205 1_43_204 set community 0:247 route-map calculator permit 27245 match community 1_44_203 1_45_202 1_46_201 1_47_200 1_48_199 set community 0:247 route-map calculator permit 27246 match community 1_49_198 1_50_197 1_51_196 1_52_195 1_53_194 set community 0:247 route-map calculator permit 27247 match community 1_54_193 1_55_192 1_56_191 1_57_190 1_58_189 set community 0:247 route-map calculator permit 27248 match community 1_59_188 1_60_187 1_61_186 1_62_185 1_63_184 set community 0:247 route-map calculator permit 27249 match community 1_64_183 1_65_182 1_66_181 1_67_180 1_68_179 set community 0:247 route-map calculator permit 27250 match community 1_69_178 1_70_177 1_71_176 1_72_175 1_73_174 set community 0:247 route-map calculator permit 27251 match community 1_74_173 1_75_172 1_76_171 1_77_170 1_78_169 set community 0:247 route-map calculator permit 27252 match community 1_79_168 1_80_167 1_81_166 1_82_165 1_83_164 set community 0:247 route-map calculator permit 27253 match community 1_84_163 1_85_162 1_86_161 1_87_160 1_88_159 set community 0:247 route-map calculator permit 27254 match community 1_89_158 1_90_157 1_91_156 1_92_155 1_93_154 set community 0:247 route-map calculator permit 27255 match community 1_94_153 1_95_152 1_96_151 1_97_150 1_98_149 set community 0:247 route-map calculator permit 27256 match community 1_99_148 1_100_147 1_101_146 1_102_145 1_103_144 set community 0:247 route-map calculator permit 27257 match community 1_104_143 1_105_142 1_106_141 1_107_140 1_108_139 set community 0:247 route-map calculator permit 27258 match community 1_109_138 1_110_137 1_111_136 1_112_135 1_113_134 set community 0:247 route-map calculator permit 27259 match community 1_114_133 1_115_132 1_116_131 1_117_130 1_118_129 set community 0:247 route-map calculator permit 27260 match community 1_119_128 1_120_127 1_121_126 1_122_125 1_123_124 set community 0:247 route-map calculator permit 27261 match community c4_247_1 c3_248_1 c3_249_2 c3_250_3 c3_251_4 set community 0:247 route-map calculator permit 27262 match community c3_252_5 c3_253_6 c3_254_7 c3_255_8 c3_256_9 set community 0:247 ip community-list standard 2_15_231 permit 65000:2 0:15 0:231 ip community-list standard 2_21_165 permit 65000:2 0:21 0:165 ip community-list standard 2_33_105 permit 65000:2 0:33 0:105 ip community-list standard 2_35_99 permit 65000:2 0:35 0:99 ip community-list standard 2_45_77 permit 65000:2 0:45 0:77 ip community-list standard 2_55_63 permit 65000:2 0:55 0:63 route-map calculator permit 27263 match community 2_15_231 2_21_165 2_33_105 2_35_99 2_45_77 set community 0:3465 route-map calculator permit 27264 match community 2_55_63 set community 0:3465 ip community-list standard 2_197_251 permit 65000:2 0:197 0:251 route-map calculator permit 27265 match community 2_197_251 set community 0:49447 ip community-list standard 2_109_113 permit 65000:2 0:109 0:113 route-map calculator permit 27266 match community 2_109_113 set community 0:12317 ip community-list standard 2_43_223 permit 65000:2 0:43 0:223 route-map calculator permit 27267 match community 2_43_223 set community 0:9589 ip community-list standard 2_3_237 permit 65000:2 0:3 0:237 ip community-list standard 2_9_79 permit 65000:2 0:9 0:79 route-map calculator permit 27268 match community 2_3_237 2_9_79 set community 0:711 ip community-list standard 2_77_187 permit 65000:2 0:77 0:187 ip community-list standard 2_119_121 permit 65000:2 0:119 0:121 route-map calculator permit 27269 match community 2_77_187 2_119_121 set community 0:14399 ip community-list standard 2_176_248 permit 65000:2 0:176 0:248 route-map calculator permit 27270 match community 2_176_248 set community 0:43648 ip community-list standard 2_115_163 permit 65000:2 0:115 0:163 route-map calculator permit 27271 match community 2_115_163 set community 0:18745 ip community-list standard 2_66_199 permit 65000:2 0:66 0:199 route-map calculator permit 27272 match community 2_66_199 set community 0:13134 ip community-list standard 2_78_256 permit 65000:2 0:78 0:256 ip community-list standard 2_96_208 permit 65000:2 0:96 0:208 ip community-list standard 2_104_192 permit 65000:2 0:104 0:192 ip community-list standard 2_128_156 permit 65000:2 0:128 0:156 route-map calculator permit 27273 match community 2_78_256 2_96_208 2_104_192 2_128_156 set community 0:19968 ip community-list standard 2_136_219 permit 65000:2 0:136 0:219 ip community-list standard 2_146_204 permit 65000:2 0:146 0:204 route-map calculator permit 27274 match community 2_136_219 2_146_204 set community 0:29784 ip community-list standard 2_41_251 permit 65000:2 0:41 0:251 route-map calculator permit 27275 match community 2_41_251 set community 0:10291 ip community-list standard 2_111_240 permit 65000:2 0:111 0:240 ip community-list standard 2_120_222 permit 65000:2 0:120 0:222 ip community-list standard 2_144_185 permit 65000:2 0:144 0:185 ip community-list standard 2_148_180 permit 65000:2 0:148 0:180 route-map calculator permit 27276 match community 2_111_240 2_120_222 2_144_185 2_148_180 set community 0:26640 ip community-list standard 2_119_215 permit 65000:2 0:119 0:215 route-map calculator permit 27277 match community 2_119_215 set community 0:25585 ip community-list standard 2_9_174 permit 65000:2 0:9 0:174 ip community-list standard 2_18_87 permit 65000:2 0:18 0:87 ip community-list standard 2_27_58 permit 65000:2 0:27 0:58 ip community-list standard 2_29_54 permit 65000:2 0:29 0:54 route-map calculator permit 27278 match community 2_9_174 2_18_87 2_27_58 2_29_54 set community 0:1566 ip community-list standard 2_201_253 permit 65000:2 0:201 0:253 route-map calculator permit 27279 match community 2_201_253 set community 0:50853 ip community-list standard 2_203_250 permit 65000:2 0:203 0:250 route-map calculator permit 27280 match community 2_203_250 set community 0:50750 ip community-list standard 2_134_234 permit 65000:2 0:134 0:234 ip community-list standard 2_156_201 permit 65000:2 0:156 0:201 route-map calculator permit 27281 match community 2_134_234 2_156_201 set community 0:31356 ip community-list standard 2_3_232 permit 65000:2 0:3 0:232 ip community-list standard 2_4_174 permit 65000:2 0:4 0:174 ip community-list standard 2_6_116 permit 65000:2 0:6 0:116 ip community-list standard 2_8_87 permit 65000:2 0:8 0:87 ip community-list standard 2_12_58 permit 65000:2 0:12 0:58 ip community-list standard 2_24_29 permit 65000:2 0:24 0:29 route-map calculator permit 27282 match community 2_3_232 2_4_174 2_6_116 2_8_87 2_12_58 set community 0:696 route-map calculator permit 27283 match community 2_24_29 set community 0:696 ip community-list standard 2_7_49 permit 65000:2 0:7 0:49 ip community-list standard 1_87_256 permit 65000:1 0:87 0:256 ip community-list standard 1_88_255 permit 65000:1 0:88 0:255 ip community-list standard 1_89_254 permit 65000:1 0:89 0:254 ip community-list standard 1_90_253 permit 65000:1 0:90 0:253 ip community-list standard 1_91_252 permit 65000:1 0:91 0:252 ip community-list standard 1_92_251 permit 65000:1 0:92 0:251 ip community-list standard 1_93_250 permit 65000:1 0:93 0:250 ip community-list standard 1_94_249 permit 65000:1 0:94 0:249 ip community-list standard 1_95_248 permit 65000:1 0:95 0:248 ip community-list standard 1_96_247 permit 65000:1 0:96 0:247 ip community-list standard 1_97_246 permit 65000:1 0:97 0:246 ip community-list standard 1_98_245 permit 65000:1 0:98 0:245 ip community-list standard 1_99_244 permit 65000:1 0:99 0:244 ip community-list standard 1_100_243 permit 65000:1 0:100 0:243 ip community-list standard 1_101_242 permit 65000:1 0:101 0:242 ip community-list standard 1_102_241 permit 65000:1 0:102 0:241 ip community-list standard 1_103_240 permit 65000:1 0:103 0:240 ip community-list standard 1_104_239 permit 65000:1 0:104 0:239 ip community-list standard 1_105_238 permit 65000:1 0:105 0:238 ip community-list standard 1_106_237 permit 65000:1 0:106 0:237 ip community-list standard 1_107_236 permit 65000:1 0:107 0:236 ip community-list standard 1_108_235 permit 65000:1 0:108 0:235 ip community-list standard 1_109_234 permit 65000:1 0:109 0:234 ip community-list standard 1_110_233 permit 65000:1 0:110 0:233 ip community-list standard 1_111_232 permit 65000:1 0:111 0:232 ip community-list standard 1_112_231 permit 65000:1 0:112 0:231 ip community-list standard 1_113_230 permit 65000:1 0:113 0:230 ip community-list standard 1_114_229 permit 65000:1 0:114 0:229 ip community-list standard 1_115_228 permit 65000:1 0:115 0:228 ip community-list standard 1_116_227 permit 65000:1 0:116 0:227 ip community-list standard 1_117_226 permit 65000:1 0:117 0:226 ip community-list standard 1_118_225 permit 65000:1 0:118 0:225 ip community-list standard 1_119_224 permit 65000:1 0:119 0:224 ip community-list standard 1_120_223 permit 65000:1 0:120 0:223 ip community-list standard 1_121_222 permit 65000:1 0:121 0:222 ip community-list standard 1_122_221 permit 65000:1 0:122 0:221 ip community-list standard 1_123_220 permit 65000:1 0:123 0:220 ip community-list standard 1_124_219 permit 65000:1 0:124 0:219 ip community-list standard 1_125_218 permit 65000:1 0:125 0:218 ip community-list standard 1_126_217 permit 65000:1 0:126 0:217 ip community-list standard 1_127_216 permit 65000:1 0:127 0:216 ip community-list standard 1_128_215 permit 65000:1 0:128 0:215 ip community-list standard 1_129_214 permit 65000:1 0:129 0:214 ip community-list standard 1_130_213 permit 65000:1 0:130 0:213 ip community-list standard 1_131_212 permit 65000:1 0:131 0:212 ip community-list standard 1_132_211 permit 65000:1 0:132 0:211 ip community-list standard 1_133_210 permit 65000:1 0:133 0:210 ip community-list standard 1_134_209 permit 65000:1 0:134 0:209 ip community-list standard 1_135_208 permit 65000:1 0:135 0:208 ip community-list standard 1_136_207 permit 65000:1 0:136 0:207 ip community-list standard 1_137_206 permit 65000:1 0:137 0:206 ip community-list standard 1_138_205 permit 65000:1 0:138 0:205 ip community-list standard 1_139_204 permit 65000:1 0:139 0:204 ip community-list standard 1_140_203 permit 65000:1 0:140 0:203 ip community-list standard 1_141_202 permit 65000:1 0:141 0:202 ip community-list standard 1_142_201 permit 65000:1 0:142 0:201 ip community-list standard 1_143_200 permit 65000:1 0:143 0:200 ip community-list standard 1_144_199 permit 65000:1 0:144 0:199 ip community-list standard 1_145_198 permit 65000:1 0:145 0:198 ip community-list standard 1_146_197 permit 65000:1 0:146 0:197 ip community-list standard 1_147_196 permit 65000:1 0:147 0:196 ip community-list standard 1_148_195 permit 65000:1 0:148 0:195 ip community-list standard 1_149_194 permit 65000:1 0:149 0:194 ip community-list standard 1_150_193 permit 65000:1 0:150 0:193 ip community-list standard 1_151_192 permit 65000:1 0:151 0:192 ip community-list standard 1_152_191 permit 65000:1 0:152 0:191 ip community-list standard 1_153_190 permit 65000:1 0:153 0:190 ip community-list standard 1_154_189 permit 65000:1 0:154 0:189 ip community-list standard 1_155_188 permit 65000:1 0:155 0:188 ip community-list standard 1_156_187 permit 65000:1 0:156 0:187 ip community-list standard 1_157_186 permit 65000:1 0:157 0:186 ip community-list standard 1_158_185 permit 65000:1 0:158 0:185 ip community-list standard 1_159_184 permit 65000:1 0:159 0:184 ip community-list standard 1_160_183 permit 65000:1 0:160 0:183 ip community-list standard 1_161_182 permit 65000:1 0:161 0:182 ip community-list standard 1_162_181 permit 65000:1 0:162 0:181 ip community-list standard 1_163_180 permit 65000:1 0:163 0:180 ip community-list standard 1_164_179 permit 65000:1 0:164 0:179 ip community-list standard 1_165_178 permit 65000:1 0:165 0:178 ip community-list standard 1_166_177 permit 65000:1 0:166 0:177 ip community-list standard 1_167_176 permit 65000:1 0:167 0:176 ip community-list standard 1_168_175 permit 65000:1 0:168 0:175 ip community-list standard 1_169_174 permit 65000:1 0:169 0:174 ip community-list standard 1_170_173 permit 65000:1 0:170 0:173 ip community-list standard 1_171_172 permit 65000:1 0:171 0:172 route-map calculator permit 27284 match community 2_7_49 1_87_256 1_88_255 1_89_254 1_90_253 set community 0:343 route-map calculator permit 27285 match community 1_91_252 1_92_251 1_93_250 1_94_249 1_95_248 set community 0:343 route-map calculator permit 27286 match community 1_96_247 1_97_246 1_98_245 1_99_244 1_100_243 set community 0:343 route-map calculator permit 27287 match community 1_101_242 1_102_241 1_103_240 1_104_239 1_105_238 set community 0:343 route-map calculator permit 27288 match community 1_106_237 1_107_236 1_108_235 1_109_234 1_110_233 set community 0:343 route-map calculator permit 27289 match community 1_111_232 1_112_231 1_113_230 1_114_229 1_115_228 set community 0:343 route-map calculator permit 27290 match community 1_116_227 1_117_226 1_118_225 1_119_224 1_120_223 set community 0:343 route-map calculator permit 27291 match community 1_121_222 1_122_221 1_123_220 1_124_219 1_125_218 set community 0:343 route-map calculator permit 27292 match community 1_126_217 1_127_216 1_128_215 1_129_214 1_130_213 set community 0:343 route-map calculator permit 27293 match community 1_131_212 1_132_211 1_133_210 1_134_209 1_135_208 set community 0:343 route-map calculator permit 27294 match community 1_136_207 1_137_206 1_138_205 1_139_204 1_140_203 set community 0:343 route-map calculator permit 27295 match community 1_141_202 1_142_201 1_143_200 1_144_199 1_145_198 set community 0:343 route-map calculator permit 27296 match community 1_146_197 1_147_196 1_148_195 1_149_194 1_150_193 set community 0:343 route-map calculator permit 27297 match community 1_151_192 1_152_191 1_153_190 1_154_189 1_155_188 set community 0:343 route-map calculator permit 27298 match community 1_156_187 1_157_186 1_158_185 1_159_184 1_160_183 set community 0:343 route-map calculator permit 27299 match community 1_161_182 1_162_181 1_163_180 1_164_179 1_165_178 set community 0:343 route-map calculator permit 27300 match community 1_166_177 1_167_176 1_168_175 1_169_174 1_170_173 set community 0:343 route-map calculator permit 27301 match community 1_171_172 set community 0:343 ip community-list standard 2_228_249 permit 65000:2 0:228 0:249 route-map calculator permit 27302 match community 2_228_249 set community 0:56772 ip community-list standard 2_86_201 permit 65000:2 0:86 0:201 ip community-list standard 2_129_134 permit 65000:2 0:129 0:134 route-map calculator permit 27303 match community 2_86_201 2_129_134 set community 0:17286 ip community-list standard 2_60_240 permit 65000:2 0:60 0:240 ip community-list standard 2_64_225 permit 65000:2 0:64 0:225 ip community-list standard 2_72_200 permit 65000:2 0:72 0:200 ip community-list standard 2_75_192 permit 65000:2 0:75 0:192 ip community-list standard 2_80_180 permit 65000:2 0:80 0:180 ip community-list standard 2_90_160 permit 65000:2 0:90 0:160 ip community-list standard 2_96_150 permit 65000:2 0:96 0:150 ip community-list standard 2_100_144 permit 65000:2 0:100 0:144 ip community-list standard 2_120_120 permit 65000:2 0:120 0:120 route-map calculator permit 27304 match community 2_60_240 2_64_225 2_72_200 2_75_192 2_80_180 set community 0:14400 route-map calculator permit 27305 match community 2_90_160 2_96_150 2_100_144 2_120_120 set community 0:14400 ip community-list standard 2_138_184 permit 65000:2 0:138 0:184 route-map calculator permit 27306 match community 2_138_184 set community 0:25392 ip community-list standard 2_139_210 permit 65000:2 0:139 0:210 route-map calculator permit 27307 match community 2_139_210 set community 0:29190 ip community-list standard 2_139_195 permit 65000:2 0:139 0:195 route-map calculator permit 27308 match community 2_139_195 set community 0:27105 ip community-list standard 2_157_238 permit 65000:2 0:157 0:238 route-map calculator permit 27309 match community 2_157_238 set community 0:37366 ip community-list standard 2_168_233 permit 65000:2 0:168 0:233 route-map calculator permit 27310 match community 2_168_233 set community 0:39144 ip community-list standard 2_12_223 permit 65000:2 0:12 0:223 route-map calculator permit 27311 match community 2_12_223 set community 0:2676 ip community-list standard 2_108_151 permit 65000:2 0:108 0:151 route-map calculator permit 27312 match community 2_108_151 set community 0:16308 ip community-list standard 2_200_208 permit 65000:2 0:200 0:208 route-map calculator permit 27313 match community 2_200_208 set community 0:41600 ip community-list standard 2_35_251 permit 65000:2 0:35 0:251 route-map calculator permit 27314 match community 2_35_251 set community 0:8785 ip community-list standard 2_133_242 permit 65000:2 0:133 0:242 ip community-list standard 2_154_209 permit 65000:2 0:154 0:209 route-map calculator permit 27315 match community 2_133_242 2_154_209 set community 0:32186 ip community-list standard 2_120_139 permit 65000:2 0:120 0:139 route-map calculator permit 27316 match community 2_120_139 set community 0:16680 ip community-list standard 2_208_233 permit 65000:2 0:208 0:233 route-map calculator permit 27317 match community 2_208_233 set community 0:48464 ip community-list standard 2_14_201 permit 65000:2 0:14 0:201 ip community-list standard 2_21_134 permit 65000:2 0:21 0:134 ip community-list standard 2_42_67 permit 65000:2 0:42 0:67 route-map calculator permit 27318 match community 2_14_201 2_21_134 2_42_67 set community 0:2814 ip community-list standard 2_19_157 permit 65000:2 0:19 0:157 route-map calculator permit 27319 match community 2_19_157 set community 0:2983 ip community-list standard 2_101_125 permit 65000:2 0:101 0:125 route-map calculator permit 27320 match community 2_101_125 set community 0:12625 ip community-list standard 2_100_199 permit 65000:2 0:100 0:199 route-map calculator permit 27321 match community 2_100_199 set community 0:19900 ip community-list standard 2_132_232 permit 65000:2 0:132 0:232 ip community-list standard 2_174_176 permit 65000:2 0:174 0:176 route-map calculator permit 27322 match community 2_132_232 2_174_176 set community 0:30624 ip community-list standard 2_238_243 permit 65000:2 0:238 0:243 route-map calculator permit 27323 match community 2_238_243 set community 0:57834 ip community-list standard 2_244_248 permit 65000:2 0:244 0:248 route-map calculator permit 27324 match community 2_244_248 set community 0:60512 ip community-list standard 2_18_186 permit 65000:2 0:18 0:186 ip community-list standard 2_27_124 permit 65000:2 0:27 0:124 ip community-list standard 2_31_108 permit 65000:2 0:31 0:108 ip community-list standard 2_36_93 permit 65000:2 0:36 0:93 ip community-list standard 2_54_62 permit 65000:2 0:54 0:62 route-map calculator permit 27325 match community 2_18_186 2_27_124 2_31_108 2_36_93 2_54_62 set community 0:3348 ip community-list standard 2_12_239 permit 65000:2 0:12 0:239 route-map calculator permit 27326 match community 2_12_239 set community 0:2868 ip community-list standard 2_169_250 permit 65000:2 0:169 0:250 route-map calculator permit 27327 match community 2_169_250 set community 0:42250 ip community-list standard 2_126_157 permit 65000:2 0:126 0:157 route-map calculator permit 27328 match community 2_126_157 set community 0:19782 ip community-list standard 2_187_249 permit 65000:2 0:187 0:249 route-map calculator permit 27329 match community 2_187_249 set community 0:46563 ip community-list standard 2_35_83 permit 65000:2 0:35 0:83 route-map calculator permit 27330 match community 2_35_83 set community 0:2905 ip community-list standard 2_109_221 permit 65000:2 0:109 0:221 route-map calculator permit 27331 match community 2_109_221 set community 0:24089 ip community-list standard 2_91_123 permit 65000:2 0:91 0:123 route-map calculator permit 27332 match community 2_91_123 set community 0:11193 ip community-list standard 2_30_173 permit 65000:2 0:30 0:173 route-map calculator permit 27333 match community 2_30_173 set community 0:5190 ip community-list standard 2_109_227 permit 65000:2 0:109 0:227 route-map calculator permit 27334 match community 2_109_227 set community 0:24743 ip community-list standard 2_31_97 permit 65000:2 0:31 0:97 route-map calculator permit 27335 match community 2_31_97 set community 0:3007 ip community-list standard 2_4_235 permit 65000:2 0:4 0:235 ip community-list standard 2_5_188 permit 65000:2 0:5 0:188 ip community-list standard 2_10_94 permit 65000:2 0:10 0:94 ip community-list standard 2_20_47 permit 65000:2 0:20 0:47 route-map calculator permit 27336 match community 2_4_235 2_5_188 2_10_94 2_20_47 set community 0:940 ip community-list standard 2_6_188 permit 65000:2 0:6 0:188 ip community-list standard 2_8_141 permit 65000:2 0:8 0:141 ip community-list standard 2_12_94 permit 65000:2 0:12 0:94 ip community-list standard 2_24_47 permit 65000:2 0:24 0:47 route-map calculator permit 27337 match community 2_6_188 2_8_141 2_12_94 2_24_47 set community 0:1128 ip community-list standard 2_200_231 permit 65000:2 0:200 0:231 ip community-list standard 2_210_220 permit 65000:2 0:210 0:220 route-map calculator permit 27338 match community 2_200_231 2_210_220 set community 0:46200 ip community-list standard 2_43_141 permit 65000:2 0:43 0:141 ip community-list standard 2_47_129 permit 65000:2 0:47 0:129 route-map calculator permit 27339 match community 2_43_141 2_47_129 set community 0:6063 ip community-list standard 2_167_195 permit 65000:2 0:167 0:195 route-map calculator permit 27340 match community 2_167_195 set community 0:32565 ip community-list standard 2_105_229 permit 65000:2 0:105 0:229 route-map calculator permit 27341 match community 2_105_229 set community 0:24045 ip community-list standard 2_55_248 permit 65000:2 0:55 0:248 ip community-list standard 2_62_220 permit 65000:2 0:62 0:220 ip community-list standard 2_88_155 permit 65000:2 0:88 0:155 ip community-list standard 2_110_124 permit 65000:2 0:110 0:124 route-map calculator permit 27342 match community 2_55_248 2_62_220 2_88_155 2_110_124 set community 0:13640 ip community-list standard 2_121_151 permit 65000:2 0:121 0:151 route-map calculator permit 27343 match community 2_121_151 set community 0:18271 ip community-list standard 2_41_119 permit 65000:2 0:41 0:119 route-map calculator permit 27344 match community 2_41_119 set community 0:4879 ip community-list standard 2_193_216 permit 65000:2 0:193 0:216 route-map calculator permit 27345 match community 2_193_216 set community 0:41688 ip community-list standard 2_91_241 permit 65000:2 0:91 0:241 route-map calculator permit 27346 match community 2_91_241 set community 0:21931 ip community-list standard 2_112_201 permit 65000:2 0:112 0:201 ip community-list standard 2_134_168 permit 65000:2 0:134 0:168 route-map calculator permit 27347 match community 2_112_201 2_134_168 set community 0:22512 ip community-list standard 2_143_255 permit 65000:2 0:143 0:255 ip community-list standard 2_165_221 permit 65000:2 0:165 0:221 ip community-list standard 2_187_195 permit 65000:2 0:187 0:195 route-map calculator permit 27348 match community 2_143_255 2_165_221 2_187_195 set community 0:36465 ip community-list standard 2_138_223 permit 65000:2 0:138 0:223 route-map calculator permit 27349 match community 2_138_223 set community 0:30774 ip community-list standard 2_57_95 permit 65000:2 0:57 0:95 route-map calculator permit 27350 match community 2_57_95 set community 0:5415 ip community-list standard 2_49_131 permit 65000:2 0:49 0:131 route-map calculator permit 27351 match community 2_49_131 set community 0:6419 ip community-list standard 2_119_185 permit 65000:2 0:119 0:185 route-map calculator permit 27352 match community 2_119_185 set community 0:22015 ip community-list standard 2_49_154 permit 65000:2 0:49 0:154 ip community-list standard 2_77_98 permit 65000:2 0:77 0:98 route-map calculator permit 27353 match community 2_49_154 2_77_98 set community 0:7546 ip community-list standard 2_6_233 permit 65000:2 0:6 0:233 route-map calculator permit 27354 match community 2_6_233 set community 0:1398 ip community-list standard 2_166_175 permit 65000:2 0:166 0:175 route-map calculator permit 27355 match community 2_166_175 set community 0:29050 ip community-list standard 2_19_124 permit 65000:2 0:19 0:124 ip community-list standard 2_31_76 permit 65000:2 0:31 0:76 ip community-list standard 2_38_62 permit 65000:2 0:38 0:62 route-map calculator permit 27356 match community 2_19_124 2_31_76 2_38_62 set community 0:2356 ip community-list standard 2_11_237 permit 65000:2 0:11 0:237 ip community-list standard 2_33_79 permit 65000:2 0:33 0:79 route-map calculator permit 27357 match community 2_11_237 2_33_79 set community 0:2607 ip community-list standard 2_72_226 permit 65000:2 0:72 0:226 ip community-list standard 2_113_144 permit 65000:2 0:113 0:144 route-map calculator permit 27358 match community 2_72_226 2_113_144 set community 0:16272 ip community-list standard 2_218_254 permit 65000:2 0:218 0:254 route-map calculator permit 27359 match community 2_218_254 set community 0:55372 ip community-list standard 2_103_123 permit 65000:2 0:103 0:123 route-map calculator permit 27360 match community 2_103_123 set community 0:12669 ip community-list standard 2_44_146 permit 65000:2 0:44 0:146 ip community-list standard 2_73_88 permit 65000:2 0:73 0:88 route-map calculator permit 27361 match community 2_44_146 2_73_88 set community 0:6424 ip community-list standard 2_101_239 permit 65000:2 0:101 0:239 route-map calculator permit 27362 match community 2_101_239 set community 0:24139 ip community-list standard 2_103_210 permit 65000:2 0:103 0:210 ip community-list standard 2_105_206 permit 65000:2 0:105 0:206 route-map calculator permit 27363 match community 2_103_210 2_105_206 set community 0:21630 ip community-list standard 2_142_222 permit 65000:2 0:142 0:222 ip community-list standard 2_148_213 permit 65000:2 0:148 0:213 route-map calculator permit 27364 match community 2_142_222 2_148_213 set community 0:31524 ip community-list standard 2_97_101 permit 65000:2 0:97 0:101 route-map calculator permit 27365 match community 2_97_101 set community 0:9797 ip community-list standard 2_31_158 permit 65000:2 0:31 0:158 ip community-list standard 2_62_79 permit 65000:2 0:62 0:79 route-map calculator permit 27366 match community 2_31_158 2_62_79 set community 0:4898 ip community-list standard 2_35_127 permit 65000:2 0:35 0:127 route-map calculator permit 27367 match community 2_35_127 set community 0:4445 ip community-list standard 2_126_207 permit 65000:2 0:126 0:207 ip community-list standard 2_138_189 permit 65000:2 0:138 0:189 ip community-list standard 2_161_162 permit 65000:2 0:161 0:162 route-map calculator permit 27368 match community 2_126_207 2_138_189 2_161_162 set community 0:26082 ip community-list standard 2_61_185 permit 65000:2 0:61 0:185 route-map calculator permit 27369 match community 2_61_185 set community 0:11285 ip community-list standard 2_128_231 permit 65000:2 0:128 0:231 ip community-list standard 2_132_224 permit 65000:2 0:132 0:224 ip community-list standard 2_154_192 permit 65000:2 0:154 0:192 ip community-list standard 2_168_176 permit 65000:2 0:168 0:176 route-map calculator permit 27370 match community 2_128_231 2_132_224 2_154_192 2_168_176 set community 0:29568 ip community-list standard 2_129_149 permit 65000:2 0:129 0:149 route-map calculator permit 27371 match community 2_129_149 set community 0:19221 ip community-list standard 2_201_241 permit 65000:2 0:201 0:241 route-map calculator permit 27372 match community 2_201_241 set community 0:48441 ip community-list standard 2_185_235 permit 65000:2 0:185 0:235 route-map calculator permit 27373 match community 2_185_235 set community 0:43475 ip community-list standard 2_70_229 permit 65000:2 0:70 0:229 route-map calculator permit 27374 match community 2_70_229 set community 0:16030 ip community-list standard 2_34_245 permit 65000:2 0:34 0:245 ip community-list standard 2_35_238 permit 65000:2 0:35 0:238 ip community-list standard 2_49_170 permit 65000:2 0:49 0:170 ip community-list standard 2_70_119 permit 65000:2 0:70 0:119 ip community-list standard 2_85_98 permit 65000:2 0:85 0:98 route-map calculator permit 27375 match community 2_34_245 2_35_238 2_49_170 2_70_119 2_85_98 set community 0:8330 ip community-list standard 2_56_231 permit 65000:2 0:56 0:231 ip community-list standard 2_66_196 permit 65000:2 0:66 0:196 ip community-list standard 2_77_168 permit 65000:2 0:77 0:168 ip community-list standard 2_84_154 permit 65000:2 0:84 0:154 ip community-list standard 2_88_147 permit 65000:2 0:88 0:147 ip community-list standard 2_98_132 permit 65000:2 0:98 0:132 route-map calculator permit 27376 match community 2_56_231 2_66_196 2_77_168 2_84_154 2_88_147 set community 0:12936 route-map calculator permit 27377 match community 2_98_132 set community 0:12936 ip community-list standard 2_36_191 permit 65000:2 0:36 0:191 route-map calculator permit 27378 match community 2_36_191 set community 0:6876 ip community-list standard 2_145_221 permit 65000:2 0:145 0:221 route-map calculator permit 27379 match community 2_145_221 set community 0:32045 ip community-list standard 2_160_215 permit 65000:2 0:160 0:215 ip community-list standard 2_172_200 permit 65000:2 0:172 0:200 route-map calculator permit 27380 match community 2_160_215 2_172_200 set community 0:34400 ip community-list standard 2_123_227 permit 65000:2 0:123 0:227 route-map calculator permit 27381 match community 2_123_227 set community 0:27921 ip community-list standard 2_35_159 permit 65000:2 0:35 0:159 ip community-list standard 2_53_105 permit 65000:2 0:53 0:105 route-map calculator permit 27382 match community 2_35_159 2_53_105 set community 0:5565 ip community-list standard 2_83_227 permit 65000:2 0:83 0:227 route-map calculator permit 27383 match community 2_83_227 set community 0:18841 ip community-list standard 2_2_148 permit 65000:2 0:2 0:148 ip community-list standard 2_4_74 permit 65000:2 0:4 0:74 ip community-list standard 2_8_37 permit 65000:2 0:8 0:37 ip community-list standard 1_40_256 permit 65000:1 0:40 0:256 ip community-list standard 1_41_255 permit 65000:1 0:41 0:255 ip community-list standard 1_42_254 permit 65000:1 0:42 0:254 ip community-list standard 1_43_253 permit 65000:1 0:43 0:253 ip community-list standard 1_44_252 permit 65000:1 0:44 0:252 ip community-list standard 1_45_251 permit 65000:1 0:45 0:251 ip community-list standard 1_46_250 permit 65000:1 0:46 0:250 ip community-list standard 1_47_249 permit 65000:1 0:47 0:249 ip community-list standard 1_48_248 permit 65000:1 0:48 0:248 ip community-list standard 1_49_247 permit 65000:1 0:49 0:247 ip community-list standard 1_50_246 permit 65000:1 0:50 0:246 ip community-list standard 1_51_245 permit 65000:1 0:51 0:245 ip community-list standard 1_52_244 permit 65000:1 0:52 0:244 ip community-list standard 1_53_243 permit 65000:1 0:53 0:243 ip community-list standard 1_54_242 permit 65000:1 0:54 0:242 ip community-list standard 1_55_241 permit 65000:1 0:55 0:241 ip community-list standard 1_56_240 permit 65000:1 0:56 0:240 ip community-list standard 1_57_239 permit 65000:1 0:57 0:239 ip community-list standard 1_58_238 permit 65000:1 0:58 0:238 ip community-list standard 1_59_237 permit 65000:1 0:59 0:237 ip community-list standard 1_60_236 permit 65000:1 0:60 0:236 ip community-list standard 1_61_235 permit 65000:1 0:61 0:235 ip community-list standard 1_62_234 permit 65000:1 0:62 0:234 ip community-list standard 1_63_233 permit 65000:1 0:63 0:233 ip community-list standard 1_64_232 permit 65000:1 0:64 0:232 ip community-list standard 1_65_231 permit 65000:1 0:65 0:231 ip community-list standard 1_66_230 permit 65000:1 0:66 0:230 ip community-list standard 1_67_229 permit 65000:1 0:67 0:229 ip community-list standard 1_68_228 permit 65000:1 0:68 0:228 ip community-list standard 1_69_227 permit 65000:1 0:69 0:227 ip community-list standard 1_70_226 permit 65000:1 0:70 0:226 ip community-list standard 1_71_225 permit 65000:1 0:71 0:225 ip community-list standard 1_72_224 permit 65000:1 0:72 0:224 ip community-list standard 1_73_223 permit 65000:1 0:73 0:223 ip community-list standard 1_74_222 permit 65000:1 0:74 0:222 ip community-list standard 1_75_221 permit 65000:1 0:75 0:221 ip community-list standard 1_76_220 permit 65000:1 0:76 0:220 ip community-list standard 1_77_219 permit 65000:1 0:77 0:219 ip community-list standard 1_78_218 permit 65000:1 0:78 0:218 ip community-list standard 1_79_217 permit 65000:1 0:79 0:217 ip community-list standard 1_80_216 permit 65000:1 0:80 0:216 ip community-list standard 1_81_215 permit 65000:1 0:81 0:215 ip community-list standard 1_82_214 permit 65000:1 0:82 0:214 ip community-list standard 1_83_213 permit 65000:1 0:83 0:213 ip community-list standard 1_84_212 permit 65000:1 0:84 0:212 ip community-list standard 1_85_211 permit 65000:1 0:85 0:211 ip community-list standard 1_86_210 permit 65000:1 0:86 0:210 ip community-list standard 1_87_209 permit 65000:1 0:87 0:209 ip community-list standard 1_88_208 permit 65000:1 0:88 0:208 ip community-list standard 1_89_207 permit 65000:1 0:89 0:207 ip community-list standard 1_90_206 permit 65000:1 0:90 0:206 ip community-list standard 1_91_205 permit 65000:1 0:91 0:205 ip community-list standard 1_92_204 permit 65000:1 0:92 0:204 ip community-list standard 1_93_203 permit 65000:1 0:93 0:203 ip community-list standard 1_94_202 permit 65000:1 0:94 0:202 ip community-list standard 1_95_201 permit 65000:1 0:95 0:201 ip community-list standard 1_96_200 permit 65000:1 0:96 0:200 ip community-list standard 1_97_199 permit 65000:1 0:97 0:199 ip community-list standard 1_98_198 permit 65000:1 0:98 0:198 ip community-list standard 1_99_197 permit 65000:1 0:99 0:197 ip community-list standard 1_100_196 permit 65000:1 0:100 0:196 ip community-list standard 1_101_195 permit 65000:1 0:101 0:195 ip community-list standard 1_102_194 permit 65000:1 0:102 0:194 ip community-list standard 1_103_193 permit 65000:1 0:103 0:193 ip community-list standard 1_104_192 permit 65000:1 0:104 0:192 ip community-list standard 1_105_191 permit 65000:1 0:105 0:191 ip community-list standard 1_106_190 permit 65000:1 0:106 0:190 ip community-list standard 1_107_189 permit 65000:1 0:107 0:189 ip community-list standard 1_108_188 permit 65000:1 0:108 0:188 ip community-list standard 1_109_187 permit 65000:1 0:109 0:187 ip community-list standard 1_110_186 permit 65000:1 0:110 0:186 ip community-list standard 1_111_185 permit 65000:1 0:111 0:185 ip community-list standard 1_112_184 permit 65000:1 0:112 0:184 ip community-list standard 1_113_183 permit 65000:1 0:113 0:183 ip community-list standard 1_114_182 permit 65000:1 0:114 0:182 ip community-list standard 1_115_181 permit 65000:1 0:115 0:181 ip community-list standard 1_116_180 permit 65000:1 0:116 0:180 ip community-list standard 1_117_179 permit 65000:1 0:117 0:179 ip community-list standard 1_118_178 permit 65000:1 0:118 0:178 ip community-list standard 1_119_177 permit 65000:1 0:119 0:177 ip community-list standard 1_120_176 permit 65000:1 0:120 0:176 ip community-list standard 1_121_175 permit 65000:1 0:121 0:175 ip community-list standard 1_122_174 permit 65000:1 0:122 0:174 ip community-list standard 1_123_173 permit 65000:1 0:123 0:173 ip community-list standard 1_124_172 permit 65000:1 0:124 0:172 ip community-list standard 1_125_171 permit 65000:1 0:125 0:171 ip community-list standard 1_126_170 permit 65000:1 0:126 0:170 ip community-list standard 1_127_169 permit 65000:1 0:127 0:169 ip community-list standard 1_128_168 permit 65000:1 0:128 0:168 ip community-list standard 1_129_167 permit 65000:1 0:129 0:167 ip community-list standard 1_130_166 permit 65000:1 0:130 0:166 ip community-list standard 1_131_165 permit 65000:1 0:131 0:165 ip community-list standard 1_132_164 permit 65000:1 0:132 0:164 ip community-list standard 1_133_163 permit 65000:1 0:133 0:163 ip community-list standard 1_134_162 permit 65000:1 0:134 0:162 ip community-list standard 1_135_161 permit 65000:1 0:135 0:161 ip community-list standard 1_136_160 permit 65000:1 0:136 0:160 ip community-list standard 1_137_159 permit 65000:1 0:137 0:159 ip community-list standard 1_138_158 permit 65000:1 0:138 0:158 ip community-list standard 1_139_157 permit 65000:1 0:139 0:157 ip community-list standard 1_140_156 permit 65000:1 0:140 0:156 ip community-list standard 1_141_155 permit 65000:1 0:141 0:155 ip community-list standard 1_142_154 permit 65000:1 0:142 0:154 ip community-list standard 1_143_153 permit 65000:1 0:143 0:153 ip community-list standard 1_144_152 permit 65000:1 0:144 0:152 ip community-list standard 1_145_151 permit 65000:1 0:145 0:151 ip community-list standard 1_146_150 permit 65000:1 0:146 0:150 ip community-list standard 1_147_149 permit 65000:1 0:147 0:149 ip community-list standard 1_148_148 permit 65000:1 0:148 0:148 route-map calculator permit 27384 match community 2_2_148 2_4_74 2_8_37 1_40_256 1_41_255 set community 0:296 route-map calculator permit 27385 match community 1_42_254 1_43_253 1_44_252 1_45_251 1_46_250 set community 0:296 route-map calculator permit 27386 match community 1_47_249 1_48_248 1_49_247 1_50_246 1_51_245 set community 0:296 route-map calculator permit 27387 match community 1_52_244 1_53_243 1_54_242 1_55_241 1_56_240 set community 0:296 route-map calculator permit 27388 match community 1_57_239 1_58_238 1_59_237 1_60_236 1_61_235 set community 0:296 route-map calculator permit 27389 match community 1_62_234 1_63_233 1_64_232 1_65_231 1_66_230 set community 0:296 route-map calculator permit 27390 match community 1_67_229 1_68_228 1_69_227 1_70_226 1_71_225 set community 0:296 route-map calculator permit 27391 match community 1_72_224 1_73_223 1_74_222 1_75_221 1_76_220 set community 0:296 route-map calculator permit 27392 match community 1_77_219 1_78_218 1_79_217 1_80_216 1_81_215 set community 0:296 route-map calculator permit 27393 match community 1_82_214 1_83_213 1_84_212 1_85_211 1_86_210 set community 0:296 route-map calculator permit 27394 match community 1_87_209 1_88_208 1_89_207 1_90_206 1_91_205 set community 0:296 route-map calculator permit 27395 match community 1_92_204 1_93_203 1_94_202 1_95_201 1_96_200 set community 0:296 route-map calculator permit 27396 match community 1_97_199 1_98_198 1_99_197 1_100_196 1_101_195 set community 0:296 route-map calculator permit 27397 match community 1_102_194 1_103_193 1_104_192 1_105_191 1_106_190 set community 0:296 route-map calculator permit 27398 match community 1_107_189 1_108_188 1_109_187 1_110_186 1_111_185 set community 0:296 route-map calculator permit 27399 match community 1_112_184 1_113_183 1_114_182 1_115_181 1_116_180 set community 0:296 route-map calculator permit 27400 match community 1_117_179 1_118_178 1_119_177 1_120_176 1_121_175 set community 0:296 route-map calculator permit 27401 match community 1_122_174 1_123_173 1_124_172 1_125_171 1_126_170 set community 0:296 route-map calculator permit 27402 match community 1_127_169 1_128_168 1_129_167 1_130_166 1_131_165 set community 0:296 route-map calculator permit 27403 match community 1_132_164 1_133_163 1_134_162 1_135_161 1_136_160 set community 0:296 route-map calculator permit 27404 match community 1_137_159 1_138_158 1_139_157 1_140_156 1_141_155 set community 0:296 route-map calculator permit 27405 match community 1_142_154 1_143_153 1_144_152 1_145_151 1_146_150 set community 0:296 route-map calculator permit 27406 match community 1_147_149 1_148_148 set community 0:296 ip community-list standard 2_36_137 permit 65000:2 0:36 0:137 route-map calculator permit 27407 match community 2_36_137 set community 0:4932 ip community-list standard 2_47_103 permit 65000:2 0:47 0:103 route-map calculator permit 27408 match community 2_47_103 set community 0:4841 ip community-list standard 2_35_254 permit 65000:2 0:35 0:254 ip community-list standard 2_70_127 permit 65000:2 0:70 0:127 route-map calculator permit 27409 match community 2_35_254 2_70_127 set community 0:8890 ip community-list standard 2_157_170 permit 65000:2 0:157 0:170 route-map calculator permit 27410 match community 2_157_170 set community 0:26690 ip community-list standard 2_160_202 permit 65000:2 0:160 0:202 route-map calculator permit 27411 match community 2_160_202 set community 0:32320 ip community-list standard 2_90_214 permit 65000:2 0:90 0:214 ip community-list standard 2_107_180 permit 65000:2 0:107 0:180 route-map calculator permit 27412 match community 2_90_214 2_107_180 set community 0:19260 ip community-list standard 2_103_129 permit 65000:2 0:103 0:129 route-map calculator permit 27413 match community 2_103_129 set community 0:13287 ip community-list standard 2_159_247 permit 65000:2 0:159 0:247 route-map calculator permit 27414 match community 2_159_247 set community 0:39273 ip community-list standard 2_159_193 permit 65000:2 0:159 0:193 route-map calculator permit 27415 match community 2_159_193 set community 0:30687 ip community-list standard 2_190_246 permit 65000:2 0:190 0:246 ip community-list standard 2_205_228 permit 65000:2 0:205 0:228 route-map calculator permit 27416 match community 2_190_246 2_205_228 set community 0:46740 ip community-list standard 2_154_252 permit 65000:2 0:154 0:252 ip community-list standard 2_168_231 permit 65000:2 0:168 0:231 ip community-list standard 2_196_198 permit 65000:2 0:196 0:198 route-map calculator permit 27417 match community 2_154_252 2_168_231 2_196_198 set community 0:38808 ip community-list standard 2_141_188 permit 65000:2 0:141 0:188 route-map calculator permit 27418 match community 2_141_188 set community 0:26508 ip community-list standard 2_151_178 permit 65000:2 0:151 0:178 route-map calculator permit 27419 match community 2_151_178 set community 0:26878 ip community-list standard 2_250_254 permit 65000:2 0:250 0:254 route-map calculator permit 27420 match community 2_250_254 set community 0:63500 ip community-list standard 2_104_157 permit 65000:2 0:104 0:157 route-map calculator permit 27421 match community 2_104_157 set community 0:16328 ip community-list standard 2_2_227 permit 65000:2 0:2 0:227 ip community-list standard 1_198_256 permit 65000:1 0:198 0:256 ip community-list standard 1_199_255 permit 65000:1 0:199 0:255 ip community-list standard 1_200_254 permit 65000:1 0:200 0:254 ip community-list standard 1_201_253 permit 65000:1 0:201 0:253 ip community-list standard 1_202_252 permit 65000:1 0:202 0:252 ip community-list standard 1_203_251 permit 65000:1 0:203 0:251 ip community-list standard 1_204_250 permit 65000:1 0:204 0:250 ip community-list standard 1_205_249 permit 65000:1 0:205 0:249 ip community-list standard 1_206_248 permit 65000:1 0:206 0:248 ip community-list standard 1_207_247 permit 65000:1 0:207 0:247 ip community-list standard 1_208_246 permit 65000:1 0:208 0:246 ip community-list standard 1_209_245 permit 65000:1 0:209 0:245 ip community-list standard 1_210_244 permit 65000:1 0:210 0:244 ip community-list standard 1_211_243 permit 65000:1 0:211 0:243 ip community-list standard 1_212_242 permit 65000:1 0:212 0:242 ip community-list standard 1_213_241 permit 65000:1 0:213 0:241 ip community-list standard 1_214_240 permit 65000:1 0:214 0:240 ip community-list standard 1_215_239 permit 65000:1 0:215 0:239 ip community-list standard 1_216_238 permit 65000:1 0:216 0:238 ip community-list standard 1_217_237 permit 65000:1 0:217 0:237 ip community-list standard 1_218_236 permit 65000:1 0:218 0:236 ip community-list standard 1_219_235 permit 65000:1 0:219 0:235 ip community-list standard 1_220_234 permit 65000:1 0:220 0:234 ip community-list standard 1_221_233 permit 65000:1 0:221 0:233 ip community-list standard 1_222_232 permit 65000:1 0:222 0:232 ip community-list standard 1_223_231 permit 65000:1 0:223 0:231 ip community-list standard 1_224_230 permit 65000:1 0:224 0:230 ip community-list standard 1_225_229 permit 65000:1 0:225 0:229 ip community-list standard 1_226_228 permit 65000:1 0:226 0:228 ip community-list standard 1_227_227 permit 65000:1 0:227 0:227 route-map calculator permit 27422 match community 2_2_227 1_198_256 1_199_255 1_200_254 1_201_253 set community 0:454 route-map calculator permit 27423 match community 1_202_252 1_203_251 1_204_250 1_205_249 1_206_248 set community 0:454 route-map calculator permit 27424 match community 1_207_247 1_208_246 1_209_245 1_210_244 1_211_243 set community 0:454 route-map calculator permit 27425 match community 1_212_242 1_213_241 1_214_240 1_215_239 1_216_238 set community 0:454 route-map calculator permit 27426 match community 1_217_237 1_218_236 1_219_235 1_220_234 1_221_233 set community 0:454 route-map calculator permit 27427 match community 1_222_232 1_223_231 1_224_230 1_225_229 1_226_228 set community 0:454 route-map calculator permit 27428 match community 1_227_227 set community 0:454 ip community-list standard 2_55_83 permit 65000:2 0:55 0:83 route-map calculator permit 27429 match community 2_55_83 set community 0:4565 ip community-list standard 2_14_205 permit 65000:2 0:14 0:205 ip community-list standard 2_35_82 permit 65000:2 0:35 0:82 ip community-list standard 2_41_70 permit 65000:2 0:41 0:70 route-map calculator permit 27430 match community 2_14_205 2_35_82 2_41_70 set community 0:2870 ip community-list standard 2_136_238 permit 65000:2 0:136 0:238 route-map calculator permit 27431 match community 2_136_238 set community 0:32368 ip community-list standard 2_197_221 permit 65000:2 0:197 0:221 route-map calculator permit 27432 match community 2_197_221 set community 0:43537 ip community-list standard 2_111_225 permit 65000:2 0:111 0:225 ip community-list standard 2_135_185 permit 65000:2 0:135 0:185 route-map calculator permit 27433 match community 2_111_225 2_135_185 set community 0:24975 ip community-list standard 2_96_179 permit 65000:2 0:96 0:179 route-map calculator permit 27434 match community 2_96_179 set community 0:17184 ip community-list standard 2_194_197 permit 65000:2 0:194 0:197 route-map calculator permit 27435 match community 2_194_197 set community 0:38218 ip community-list standard 2_6_216 permit 65000:2 0:6 0:216 ip community-list standard 2_8_162 permit 65000:2 0:8 0:162 ip community-list standard 2_9_144 permit 65000:2 0:9 0:144 ip community-list standard 2_12_108 permit 65000:2 0:12 0:108 ip community-list standard 2_16_81 permit 65000:2 0:16 0:81 ip community-list standard 2_18_72 permit 65000:2 0:18 0:72 ip community-list standard 2_24_54 permit 65000:2 0:24 0:54 ip community-list standard 2_27_48 permit 65000:2 0:27 0:48 ip community-list standard 2_36_36 permit 65000:2 0:36 0:36 route-map calculator permit 27436 match community 2_6_216 2_8_162 2_9_144 2_12_108 2_16_81 set community 0:1296 route-map calculator permit 27437 match community 2_18_72 2_24_54 2_27_48 2_36_36 set community 0:1296 ip community-list standard 2_108_253 permit 65000:2 0:108 0:253 ip community-list standard 2_132_207 permit 65000:2 0:132 0:207 ip community-list standard 2_138_198 permit 65000:2 0:138 0:198 route-map calculator permit 27438 match community 2_108_253 2_132_207 2_138_198 set community 0:27324 ip community-list standard 2_12_245 permit 65000:2 0:12 0:245 ip community-list standard 2_14_210 permit 65000:2 0:14 0:210 ip community-list standard 2_15_196 permit 65000:2 0:15 0:196 ip community-list standard 2_20_147 permit 65000:2 0:20 0:147 ip community-list standard 2_21_140 permit 65000:2 0:21 0:140 ip community-list standard 2_28_105 permit 65000:2 0:28 0:105 ip community-list standard 2_30_98 permit 65000:2 0:30 0:98 ip community-list standard 2_35_84 permit 65000:2 0:35 0:84 ip community-list standard 2_42_70 permit 65000:2 0:42 0:70 ip community-list standard 2_49_60 permit 65000:2 0:49 0:60 route-map calculator permit 27439 match community 2_12_245 2_14_210 2_15_196 2_20_147 2_21_140 set community 0:2940 route-map calculator permit 27440 match community 2_28_105 2_30_98 2_35_84 2_42_70 2_49_60 set community 0:2940 ip community-list standard 2_139_166 permit 65000:2 0:139 0:166 route-map calculator permit 27441 match community 2_139_166 set community 0:23074 ip community-list standard 2_172_247 permit 65000:2 0:172 0:247 route-map calculator permit 27442 match community 2_172_247 set community 0:42484 ip community-list standard 2_81_236 permit 65000:2 0:81 0:236 ip community-list standard 2_108_177 permit 65000:2 0:108 0:177 ip community-list standard 2_118_162 permit 65000:2 0:118 0:162 route-map calculator permit 27443 match community 2_81_236 2_108_177 2_118_162 set community 0:19116 ip community-list standard 2_253_256 permit 65000:2 0:253 0:256 route-map calculator permit 27444 match community 2_253_256 set community 0:64768 ip community-list standard 2_8_248 permit 65000:2 0:8 0:248 ip community-list standard 2_16_124 permit 65000:2 0:16 0:124 ip community-list standard 2_31_64 permit 65000:2 0:31 0:64 ip community-list standard 2_32_62 permit 65000:2 0:32 0:62 route-map calculator permit 27445 match community 2_8_248 2_16_124 2_31_64 2_32_62 set community 0:1984 ip community-list standard 2_90_157 permit 65000:2 0:90 0:157 route-map calculator permit 27446 match community 2_90_157 set community 0:14130 ip community-list standard 2_89_196 permit 65000:2 0:89 0:196 ip community-list standard 2_98_178 permit 65000:2 0:98 0:178 route-map calculator permit 27447 match community 2_89_196 2_98_178 set community 0:17444 ip community-list standard 2_93_223 permit 65000:2 0:93 0:223 route-map calculator permit 27448 match community 2_93_223 set community 0:20739 ip community-list standard 2_49_243 permit 65000:2 0:49 0:243 ip community-list standard 2_63_189 permit 65000:2 0:63 0:189 ip community-list standard 2_81_147 permit 65000:2 0:81 0:147 route-map calculator permit 27449 match community 2_49_243 2_63_189 2_81_147 set community 0:11907 ip community-list standard 2_151_224 permit 65000:2 0:151 0:224 route-map calculator permit 27450 match community 2_151_224 set community 0:33824 ip community-list standard 2_123_225 permit 65000:2 0:123 0:225 ip community-list standard 2_135_205 permit 65000:2 0:135 0:205 route-map calculator permit 27451 match community 2_123_225 2_135_205 set community 0:27675 ip community-list standard 2_4_217 permit 65000:2 0:4 0:217 ip community-list standard 2_7_124 permit 65000:2 0:7 0:124 ip community-list standard 2_14_62 permit 65000:2 0:14 0:62 ip community-list standard 2_28_31 permit 65000:2 0:28 0:31 route-map calculator permit 27452 match community 2_4_217 2_7_124 2_14_62 2_28_31 set community 0:868 ip community-list standard 2_152_209 permit 65000:2 0:152 0:209 route-map calculator permit 27453 match community 2_152_209 set community 0:31768 ip community-list standard 2_93_143 permit 65000:2 0:93 0:143 route-map calculator permit 27454 match community 2_93_143 set community 0:13299 ip community-list standard 2_33_229 permit 65000:2 0:33 0:229 route-map calculator permit 27455 match community 2_33_229 set community 0:7557 ip community-list standard 2_166_181 permit 65000:2 0:166 0:181 route-map calculator permit 27456 match community 2_166_181 set community 0:30046 ip community-list standard 2_187_201 permit 65000:2 0:187 0:201 route-map calculator permit 27457 match community 2_187_201 set community 0:37587 ip community-list standard 2_133_142 permit 65000:2 0:133 0:142 route-map calculator permit 27458 match community 2_133_142 set community 0:18886 ip community-list standard 2_86_167 permit 65000:2 0:86 0:167 route-map calculator permit 27459 match community 2_86_167 set community 0:14362 ip community-list standard 2_137_185 permit 65000:2 0:137 0:185 route-map calculator permit 27460 match community 2_137_185 set community 0:25345 ip community-list standard 2_116_245 permit 65000:2 0:116 0:245 ip community-list standard 2_140_203 permit 65000:2 0:140 0:203 ip community-list standard 2_145_196 permit 65000:2 0:145 0:196 route-map calculator permit 27461 match community 2_116_245 2_140_203 2_145_196 set community 0:28420 ip community-list standard 2_236_246 permit 65000:2 0:236 0:246 route-map calculator permit 27462 match community 2_236_246 set community 0:58056 ip community-list standard 2_14_233 permit 65000:2 0:14 0:233 route-map calculator permit 27463 match community 2_14_233 set community 0:3262 ip community-list standard 2_207_245 permit 65000:2 0:207 0:245 route-map calculator permit 27464 match community 2_207_245 set community 0:50715 ip community-list standard 2_173_207 permit 65000:2 0:173 0:207 route-map calculator permit 27465 match community 2_173_207 set community 0:35811 ip community-list standard 2_183_226 permit 65000:2 0:183 0:226 route-map calculator permit 27466 match community 2_183_226 set community 0:41358 ip community-list standard 2_26_246 permit 65000:2 0:26 0:246 ip community-list standard 2_39_164 permit 65000:2 0:39 0:164 ip community-list standard 2_41_156 permit 65000:2 0:41 0:156 ip community-list standard 2_52_123 permit 65000:2 0:52 0:123 ip community-list standard 2_78_82 permit 65000:2 0:78 0:82 route-map calculator permit 27467 match community 2_26_246 2_39_164 2_41_156 2_52_123 2_78_82 set community 0:6396 ip community-list standard 2_53_165 permit 65000:2 0:53 0:165 ip community-list standard 2_55_159 permit 65000:2 0:55 0:159 route-map calculator permit 27468 match community 2_53_165 2_55_159 set community 0:8745 ip community-list standard 2_139_235 permit 65000:2 0:139 0:235 route-map calculator permit 27469 match community 2_139_235 set community 0:32665 ip community-list standard 2_153_194 permit 65000:2 0:153 0:194 route-map calculator permit 27470 match community 2_153_194 set community 0:29682 ip community-list standard 2_38_194 permit 65000:2 0:38 0:194 ip community-list standard 2_76_97 permit 65000:2 0:76 0:97 route-map calculator permit 27471 match community 2_38_194 2_76_97 set community 0:7372 ip community-list standard 2_138_214 permit 65000:2 0:138 0:214 route-map calculator permit 27472 match community 2_138_214 set community 0:29532 ip community-list standard 2_151_240 permit 65000:2 0:151 0:240 route-map calculator permit 27473 match community 2_151_240 set community 0:36240 ip community-list standard 2_137_221 permit 65000:2 0:137 0:221 route-map calculator permit 27474 match community 2_137_221 set community 0:30277 ip community-list standard 2_203_249 permit 65000:2 0:203 0:249 route-map calculator permit 27475 match community 2_203_249 set community 0:50547 ip community-list standard 2_64_227 permit 65000:2 0:64 0:227 route-map calculator permit 27476 match community 2_64_227 set community 0:14528 ip community-list standard 2_18_251 permit 65000:2 0:18 0:251 route-map calculator permit 27477 match community 2_18_251 set community 0:4518 ip community-list standard 2_143_248 permit 65000:2 0:143 0:248 route-map calculator permit 27478 match community 2_143_248 set community 0:35464 ip community-list standard 2_72_163 permit 65000:2 0:72 0:163 route-map calculator permit 27479 match community 2_72_163 set community 0:11736 ip community-list standard 2_191_215 permit 65000:2 0:191 0:215 route-map calculator permit 27480 match community 2_191_215 set community 0:41065 ip community-list standard 2_110_179 permit 65000:2 0:110 0:179 route-map calculator permit 27481 match community 2_110_179 set community 0:19690 ip community-list standard 2_71_228 permit 65000:2 0:71 0:228 ip community-list standard 2_76_213 permit 65000:2 0:76 0:213 ip community-list standard 2_114_142 permit 65000:2 0:114 0:142 route-map calculator permit 27482 match community 2_71_228 2_76_213 2_114_142 set community 0:16188 ip community-list standard 2_105_173 permit 65000:2 0:105 0:173 route-map calculator permit 27483 match community 2_105_173 set community 0:18165 ip community-list standard 2_121_143 permit 65000:2 0:121 0:143 route-map calculator permit 27484 match community 2_121_143 set community 0:17303 ip community-list standard 2_184_246 permit 65000:2 0:184 0:246 route-map calculator permit 27485 match community 2_184_246 set community 0:45264 ip community-list standard 2_103_131 permit 65000:2 0:103 0:131 route-map calculator permit 27486 match community 2_103_131 set community 0:13493 ip community-list standard 2_101_220 permit 65000:2 0:101 0:220 ip community-list standard 2_110_202 permit 65000:2 0:110 0:202 route-map calculator permit 27487 match community 2_101_220 2_110_202 set community 0:22220 ip community-list standard 2_40_149 permit 65000:2 0:40 0:149 route-map calculator permit 27488 match community 2_40_149 set community 0:5960 ip community-list standard 2_231_235 permit 65000:2 0:231 0:235 route-map calculator permit 27489 match community 2_231_235 set community 0:54285 ip community-list standard 2_123_197 permit 65000:2 0:123 0:197 route-map calculator permit 27490 match community 2_123_197 set community 0:24231 ip community-list standard 2_88_149 permit 65000:2 0:88 0:149 route-map calculator permit 27491 match community 2_88_149 set community 0:13112 ip community-list standard 2_54_202 permit 65000:2 0:54 0:202 ip community-list standard 2_101_108 permit 65000:2 0:101 0:108 route-map calculator permit 27492 match community 2_54_202 2_101_108 set community 0:10908 ip community-list standard 2_149_248 permit 65000:2 0:149 0:248 route-map calculator permit 27493 match community 2_149_248 set community 0:36952 ip community-list standard 2_26_232 permit 65000:2 0:26 0:232 ip community-list standard 2_29_208 permit 65000:2 0:29 0:208 ip community-list standard 2_52_116 permit 65000:2 0:52 0:116 ip community-list standard 2_58_104 permit 65000:2 0:58 0:104 route-map calculator permit 27494 match community 2_26_232 2_29_208 2_52_116 2_58_104 set community 0:6032 ip community-list standard 2_44_218 permit 65000:2 0:44 0:218 ip community-list standard 2_88_109 permit 65000:2 0:88 0:109 route-map calculator permit 27495 match community 2_44_218 2_88_109 set community 0:9592 ip community-list standard 2_15_230 permit 65000:2 0:15 0:230 ip community-list standard 2_23_150 permit 65000:2 0:23 0:150 ip community-list standard 2_25_138 permit 65000:2 0:25 0:138 ip community-list standard 2_30_115 permit 65000:2 0:30 0:115 ip community-list standard 2_46_75 permit 65000:2 0:46 0:75 ip community-list standard 2_50_69 permit 65000:2 0:50 0:69 route-map calculator permit 27496 match community 2_15_230 2_23_150 2_25_138 2_30_115 2_46_75 set community 0:3450 route-map calculator permit 27497 match community 2_50_69 set community 0:3450 ip community-list standard 2_232_247 permit 65000:2 0:232 0:247 route-map calculator permit 27498 match community 2_232_247 set community 0:57304 ip community-list standard 2_42_245 permit 65000:2 0:42 0:245 ip community-list standard 2_49_210 permit 65000:2 0:49 0:210 ip community-list standard 2_70_147 permit 65000:2 0:70 0:147 ip community-list standard 2_98_105 permit 65000:2 0:98 0:105 route-map calculator permit 27499 match community 2_42_245 2_49_210 2_70_147 2_98_105 set community 0:10290 ip community-list standard 2_149_255 permit 65000:2 0:149 0:255 route-map calculator permit 27500 match community 2_149_255 set community 0:37995 ip community-list standard 2_15_107 permit 65000:2 0:15 0:107 route-map calculator permit 27501 match community 2_15_107 set community 0:1605 ip community-list standard 2_160_243 permit 65000:2 0:160 0:243 ip community-list standard 2_162_240 permit 65000:2 0:162 0:240 ip community-list standard 2_180_216 permit 65000:2 0:180 0:216 route-map calculator permit 27502 match community 2_160_243 2_162_240 2_180_216 set community 0:38880 ip community-list standard 2_34_243 permit 65000:2 0:34 0:243 ip community-list standard 2_51_162 permit 65000:2 0:51 0:162 ip community-list standard 2_54_153 permit 65000:2 0:54 0:153 ip community-list standard 2_81_102 permit 65000:2 0:81 0:102 route-map calculator permit 27503 match community 2_34_243 2_51_162 2_54_153 2_81_102 set community 0:8262 ip community-list standard 2_174_242 permit 65000:2 0:174 0:242 route-map calculator permit 27504 match community 2_174_242 set community 0:42108 ip community-list standard 2_217_221 permit 65000:2 0:217 0:221 route-map calculator permit 27505 match community 2_217_221 set community 0:47957 ip community-list standard 2_111_147 permit 65000:2 0:111 0:147 route-map calculator permit 27506 match community 2_111_147 set community 0:16317 ip community-list standard 2_5_203 permit 65000:2 0:5 0:203 ip community-list standard 2_7_145 permit 65000:2 0:7 0:145 ip community-list standard 2_29_35 permit 65000:2 0:29 0:35 route-map calculator permit 27507 match community 2_5_203 2_7_145 2_29_35 set community 0:1015 ip community-list standard 2_155_235 permit 65000:2 0:155 0:235 route-map calculator permit 27508 match community 2_155_235 set community 0:36425 ip community-list standard 2_5_216 permit 65000:2 0:5 0:216 ip community-list standard 2_6_180 permit 65000:2 0:6 0:180 ip community-list standard 2_8_135 permit 65000:2 0:8 0:135 ip community-list standard 2_9_120 permit 65000:2 0:9 0:120 ip community-list standard 2_10_108 permit 65000:2 0:10 0:108 ip community-list standard 2_12_90 permit 65000:2 0:12 0:90 ip community-list standard 2_15_72 permit 65000:2 0:15 0:72 ip community-list standard 2_18_60 permit 65000:2 0:18 0:60 ip community-list standard 2_20_54 permit 65000:2 0:20 0:54 ip community-list standard 2_24_45 permit 65000:2 0:24 0:45 ip community-list standard 2_27_40 permit 65000:2 0:27 0:40 ip community-list standard 2_30_36 permit 65000:2 0:30 0:36 route-map calculator permit 27509 match community 2_5_216 2_6_180 2_8_135 2_9_120 2_10_108 set community 0:1080 route-map calculator permit 27510 match community 2_12_90 2_15_72 2_18_60 2_20_54 2_24_45 set community 0:1080 route-map calculator permit 27511 match community 2_27_40 2_30_36 set community 0:1080 ip community-list standard 2_22_203 permit 65000:2 0:22 0:203 ip community-list standard 2_29_154 permit 65000:2 0:29 0:154 ip community-list standard 2_58_77 permit 65000:2 0:58 0:77 route-map calculator permit 27512 match community 2_22_203 2_29_154 2_58_77 set community 0:4466 ip community-list standard 2_3_245 permit 65000:2 0:3 0:245 ip community-list standard 2_5_147 permit 65000:2 0:5 0:147 ip community-list standard 2_7_105 permit 65000:2 0:7 0:105 ip community-list standard 2_15_49 permit 65000:2 0:15 0:49 ip community-list standard 2_21_35 permit 65000:2 0:21 0:35 route-map calculator permit 27513 match community 2_3_245 2_5_147 2_7_105 2_15_49 2_21_35 set community 0:735 ip community-list standard 2_245_256 permit 65000:2 0:245 0:256 route-map calculator permit 27514 match community 2_245_256 set community 0:62720 ip community-list standard 2_2_239 permit 65000:2 0:2 0:239 ip community-list standard 1_222_256 permit 65000:1 0:222 0:256 ip community-list standard 1_223_255 permit 65000:1 0:223 0:255 ip community-list standard 1_224_254 permit 65000:1 0:224 0:254 ip community-list standard 1_225_253 permit 65000:1 0:225 0:253 ip community-list standard 1_226_252 permit 65000:1 0:226 0:252 ip community-list standard 1_227_251 permit 65000:1 0:227 0:251 ip community-list standard 1_228_250 permit 65000:1 0:228 0:250 ip community-list standard 1_229_249 permit 65000:1 0:229 0:249 ip community-list standard 1_230_248 permit 65000:1 0:230 0:248 ip community-list standard 1_231_247 permit 65000:1 0:231 0:247 ip community-list standard 1_232_246 permit 65000:1 0:232 0:246 ip community-list standard 1_233_245 permit 65000:1 0:233 0:245 ip community-list standard 1_234_244 permit 65000:1 0:234 0:244 ip community-list standard 1_235_243 permit 65000:1 0:235 0:243 ip community-list standard 1_236_242 permit 65000:1 0:236 0:242 ip community-list standard 1_237_241 permit 65000:1 0:237 0:241 ip community-list standard 1_238_240 permit 65000:1 0:238 0:240 ip community-list standard 1_239_239 permit 65000:1 0:239 0:239 route-map calculator permit 27515 match community 2_2_239 1_222_256 1_223_255 1_224_254 1_225_253 set community 0:478 route-map calculator permit 27516 match community 1_226_252 1_227_251 1_228_250 1_229_249 1_230_248 set community 0:478 route-map calculator permit 27517 match community 1_231_247 1_232_246 1_233_245 1_234_244 1_235_243 set community 0:478 route-map calculator permit 27518 match community 1_236_242 1_237_241 1_238_240 1_239_239 set community 0:478 ip community-list standard 2_131_139 permit 65000:2 0:131 0:139 route-map calculator permit 27519 match community 2_131_139 set community 0:18209 ip community-list standard 2_35_233 permit 65000:2 0:35 0:233 route-map calculator permit 27520 match community 2_35_233 set community 0:8155 ip community-list standard 2_107_143 permit 65000:2 0:107 0:143 route-map calculator permit 27521 match community 2_107_143 set community 0:15301 ip community-list standard 2_131_196 permit 65000:2 0:131 0:196 route-map calculator permit 27522 match community 2_131_196 set community 0:25676 ip community-list standard 2_38_199 permit 65000:2 0:38 0:199 route-map calculator permit 27523 match community 2_38_199 set community 0:7562 ip community-list standard 2_225_234 permit 65000:2 0:225 0:234 route-map calculator permit 27524 match community 2_225_234 set community 0:52650 ip community-list standard 2_102_228 permit 65000:2 0:102 0:228 ip community-list standard 2_114_204 permit 65000:2 0:114 0:204 ip community-list standard 2_136_171 permit 65000:2 0:136 0:171 ip community-list standard 2_152_153 permit 65000:2 0:152 0:153 route-map calculator permit 27525 match community 2_102_228 2_114_204 2_136_171 2_152_153 set community 0:23256 ip community-list standard 2_175_254 permit 65000:2 0:175 0:254 route-map calculator permit 27526 match community 2_175_254 set community 0:44450 ip community-list standard 2_44_163 permit 65000:2 0:44 0:163 route-map calculator permit 27527 match community 2_44_163 set community 0:7172 ip community-list standard 2_185_226 permit 65000:2 0:185 0:226 route-map calculator permit 27528 match community 2_185_226 set community 0:41810 ip community-list standard 2_104_214 permit 65000:2 0:104 0:214 ip community-list standard 2_107_208 permit 65000:2 0:107 0:208 route-map calculator permit 27529 match community 2_104_214 2_107_208 set community 0:22256 ip community-list standard 2_204_253 permit 65000:2 0:204 0:253 route-map calculator permit 27530 match community 2_204_253 set community 0:51612 ip community-list standard 2_196_206 permit 65000:2 0:196 0:206 route-map calculator permit 27531 match community 2_196_206 set community 0:40376 ip community-list standard 2_229_244 permit 65000:2 0:229 0:244 route-map calculator permit 27532 match community 2_229_244 set community 0:55876 ip community-list standard 2_81_206 permit 65000:2 0:81 0:206 ip community-list standard 2_103_162 permit 65000:2 0:103 0:162 route-map calculator permit 27533 match community 2_81_206 2_103_162 set community 0:16686 ip community-list standard 2_77_191 permit 65000:2 0:77 0:191 route-map calculator permit 27534 match community 2_77_191 set community 0:14707 ip community-list standard 2_9_188 permit 65000:2 0:9 0:188 ip community-list standard 2_12_141 permit 65000:2 0:12 0:141 ip community-list standard 2_18_94 permit 65000:2 0:18 0:94 ip community-list standard 2_36_47 permit 65000:2 0:36 0:47 route-map calculator permit 27535 match community 2_9_188 2_12_141 2_18_94 2_36_47 set community 0:1692 ip community-list standard 2_116_253 permit 65000:2 0:116 0:253 route-map calculator permit 27536 match community 2_116_253 set community 0:29348 ip community-list standard 2_24_169 permit 65000:2 0:24 0:169 ip community-list standard 2_26_156 permit 65000:2 0:26 0:156 ip community-list standard 2_39_104 permit 65000:2 0:39 0:104 ip community-list standard 2_52_78 permit 65000:2 0:52 0:78 route-map calculator permit 27537 match community 2_24_169 2_26_156 2_39_104 2_52_78 set community 0:4056 ip community-list standard 2_132_199 permit 65000:2 0:132 0:199 route-map calculator permit 27538 match community 2_132_199 set community 0:26268 ip community-list standard 2_194_208 permit 65000:2 0:194 0:208 route-map calculator permit 27539 match community 2_194_208 set community 0:40352 ip community-list standard 2_135_251 permit 65000:2 0:135 0:251 route-map calculator permit 27540 match community 2_135_251 set community 0:33885 ip community-list standard 2_133_227 permit 65000:2 0:133 0:227 route-map calculator permit 27541 match community 2_133_227 set community 0:30191 ip community-list standard 2_95_254 permit 65000:2 0:95 0:254 ip community-list standard 2_127_190 permit 65000:2 0:127 0:190 route-map calculator permit 27542 match community 2_95_254 2_127_190 set community 0:24130 ip community-list standard 2_52_139 permit 65000:2 0:52 0:139 route-map calculator permit 27543 match community 2_52_139 set community 0:7228 ip community-list standard 2_199_212 permit 65000:2 0:199 0:212 route-map calculator permit 27544 match community 2_199_212 set community 0:42188 ip community-list standard 2_45_201 permit 65000:2 0:45 0:201 ip community-list standard 2_67_135 permit 65000:2 0:67 0:135 route-map calculator permit 27545 match community 2_45_201 2_67_135 set community 0:9045 ip community-list standard 2_140_212 permit 65000:2 0:140 0:212 route-map calculator permit 27546 match community 2_140_212 set community 0:29680 ip community-list standard 2_77_197 permit 65000:2 0:77 0:197 route-map calculator permit 27547 match community 2_77_197 set community 0:15169 ip community-list standard 2_45_239 permit 65000:2 0:45 0:239 route-map calculator permit 27548 match community 2_45_239 set community 0:10755 ip community-list standard 2_139_188 permit 65000:2 0:139 0:188 route-map calculator permit 27549 match community 2_139_188 set community 0:26132 ip community-list standard 2_229_241 permit 65000:2 0:229 0:241 route-map calculator permit 27550 match community 2_229_241 set community 0:55189 ip community-list standard 2_114_137 permit 65000:2 0:114 0:137 route-map calculator permit 27551 match community 2_114_137 set community 0:15618 ip community-list standard 2_25_206 permit 65000:2 0:25 0:206 ip community-list standard 2_50_103 permit 65000:2 0:50 0:103 route-map calculator permit 27552 match community 2_25_206 2_50_103 set community 0:5150 ip community-list standard 2_136_157 permit 65000:2 0:136 0:157 route-map calculator permit 27553 match community 2_136_157 set community 0:21352 ip community-list standard 2_157_175 permit 65000:2 0:157 0:175 route-map calculator permit 27554 match community 2_157_175 set community 0:27475 ip community-list standard 2_115_205 permit 65000:2 0:115 0:205 route-map calculator permit 27555 match community 2_115_205 set community 0:23575 ip community-list standard 2_91_157 permit 65000:2 0:91 0:157 route-map calculator permit 27556 match community 2_91_157 set community 0:14287 ip community-list standard 2_128_191 permit 65000:2 0:128 0:191 route-map calculator permit 27557 match community 2_128_191 set community 0:24448 ip community-list standard 2_25_169 permit 65000:2 0:25 0:169 ip community-list standard 2_65_65 permit 65000:2 0:65 0:65 route-map calculator permit 27558 match community 2_25_169 2_65_65 set community 0:4225 ip community-list standard 2_106_191 permit 65000:2 0:106 0:191 route-map calculator permit 27559 match community 2_106_191 set community 0:20246 ip community-list standard 2_172_212 permit 65000:2 0:172 0:212 route-map calculator permit 27560 match community 2_172_212 set community 0:36464 ip community-list standard 2_13_58 permit 65000:2 0:13 0:58 ip community-list standard 2_26_29 permit 65000:2 0:26 0:29 route-map calculator permit 27561 match community 2_13_58 2_26_29 set community 0:754 ip community-list standard 2_104_173 permit 65000:2 0:104 0:173 route-map calculator permit 27562 match community 2_104_173 set community 0:17992 ip community-list standard 2_159_169 permit 65000:2 0:159 0:169 route-map calculator permit 27563 match community 2_159_169 set community 0:26871 ip community-list standard 2_84_254 permit 65000:2 0:84 0:254 ip community-list standard 2_127_168 permit 65000:2 0:127 0:168 route-map calculator permit 27564 match community 2_84_254 2_127_168 set community 0:21336 ip community-list standard 2_109_115 permit 65000:2 0:109 0:115 route-map calculator permit 27565 match community 2_109_115 set community 0:12535 ip community-list standard 2_139_246 permit 65000:2 0:139 0:246 route-map calculator permit 27566 match community 2_139_246 set community 0:34194 ip community-list standard 2_113_209 permit 65000:2 0:113 0:209 route-map calculator permit 27567 match community 2_113_209 set community 0:23617 ip community-list standard 2_18_181 permit 65000:2 0:18 0:181 route-map calculator permit 27568 match community 2_18_181 set community 0:3258 ip community-list standard 2_235_242 permit 65000:2 0:235 0:242 route-map calculator permit 27569 match community 2_235_242 set community 0:56870 ip community-list standard 2_35_177 permit 65000:2 0:35 0:177 ip community-list standard 2_59_105 permit 65000:2 0:59 0:105 route-map calculator permit 27570 match community 2_35_177 2_59_105 set community 0:6195 ip community-list standard 2_74_193 permit 65000:2 0:74 0:193 route-map calculator permit 27571 match community 2_74_193 set community 0:14282 ip community-list standard 2_160_221 permit 65000:2 0:160 0:221 ip community-list standard 2_170_208 permit 65000:2 0:170 0:208 route-map calculator permit 27572 match community 2_160_221 2_170_208 set community 0:35360 ip community-list standard 2_147_252 permit 65000:2 0:147 0:252 ip community-list standard 2_189_196 permit 65000:2 0:189 0:196 route-map calculator permit 27573 match community 2_147_252 2_189_196 set community 0:37044 ip community-list standard 2_131_183 permit 65000:2 0:131 0:183 route-map calculator permit 27574 match community 2_131_183 set community 0:23973 ip community-list standard 2_179_226 permit 65000:2 0:179 0:226 route-map calculator permit 27575 match community 2_179_226 set community 0:40454 ip community-list standard 2_7_212 permit 65000:2 0:7 0:212 ip community-list standard 2_14_106 permit 65000:2 0:14 0:106 ip community-list standard 2_28_53 permit 65000:2 0:28 0:53 route-map calculator permit 27576 match community 2_7_212 2_14_106 2_28_53 set community 0:1484 ip community-list standard 2_53_249 permit 65000:2 0:53 0:249 ip community-list standard 2_83_159 permit 65000:2 0:83 0:159 route-map calculator permit 27577 match community 2_53_249 2_83_159 set community 0:13197 ip community-list standard 2_93_244 permit 65000:2 0:93 0:244 ip community-list standard 2_122_186 permit 65000:2 0:122 0:186 ip community-list standard 2_124_183 permit 65000:2 0:124 0:183 route-map calculator permit 27578 match community 2_93_244 2_122_186 2_124_183 set community 0:22692 ip community-list standard 2_173_210 permit 65000:2 0:173 0:210 route-map calculator permit 27579 match community 2_173_210 set community 0:36330 ip community-list standard 2_136_193 permit 65000:2 0:136 0:193 route-map calculator permit 27580 match community 2_136_193 set community 0:26248 ip community-list standard 2_131_234 permit 65000:2 0:131 0:234 route-map calculator permit 27581 match community 2_131_234 set community 0:30654 ip community-list standard 1_1_36 permit 65000:1 0:1 0:36 ip community-list standard 2_1_37 permit 65000:2 0:1 0:37 ip community-list standard 1_2_35 permit 65000:1 0:2 0:35 ip community-list standard 1_3_34 permit 65000:1 0:3 0:34 ip community-list standard 1_4_33 permit 65000:1 0:4 0:33 ip community-list standard 1_5_32 permit 65000:1 0:5 0:32 ip community-list standard 1_6_31 permit 65000:1 0:6 0:31 ip community-list standard 1_7_30 permit 65000:1 0:7 0:30 ip community-list standard 1_8_29 permit 65000:1 0:8 0:29 ip community-list standard 1_9_28 permit 65000:1 0:9 0:28 ip community-list standard 1_10_27 permit 65000:1 0:10 0:27 ip community-list standard 1_11_26 permit 65000:1 0:11 0:26 ip community-list standard 1_12_25 permit 65000:1 0:12 0:25 ip community-list standard 1_13_24 permit 65000:1 0:13 0:24 ip community-list standard 1_14_23 permit 65000:1 0:14 0:23 ip community-list standard 1_15_22 permit 65000:1 0:15 0:22 ip community-list standard 1_16_21 permit 65000:1 0:16 0:21 ip community-list standard 1_17_20 permit 65000:1 0:17 0:20 ip community-list standard 1_18_19 permit 65000:1 0:18 0:19 ip community-list expanded c37 permit 1 ^65000:4_0:37_0:1$ ip community-list expanded c37 permit 2 ^65000:3_0:38_0:1$ ip community-list expanded c37 permit 3 ^65000:3_0:39_0:2$ ip community-list expanded c37 permit 4 ^65000:3_0:40_0:3$ ip community-list expanded c37 permit 5 ^65000:3_0:41_0:4$ ip community-list expanded c37 permit 6 ^65000:3_0:42_0:5$ ip community-list expanded c37 permit 7 ^65000:3_0:43_0:6$ ip community-list expanded c37 permit 8 ^65000:3_0:44_0:7$ ip community-list expanded c37 permit 9 ^65000:3_0:45_0:8$ ip community-list expanded c37 permit 10 ^65000:3_0:46_0:9$ ip community-list expanded c37 permit 11 ^65000:3_0:47_0:10$ ip community-list expanded c37 permit 12 ^65000:3_0:48_0:11$ ip community-list expanded c37 permit 13 ^65000:3_0:49_0:12$ ip community-list expanded c37 permit 14 ^65000:3_0:50_0:13$ ip community-list expanded c37 permit 15 ^65000:3_0:51_0:14$ ip community-list expanded c37 permit 16 ^65000:3_0:52_0:15$ ip community-list expanded c37 permit 17 ^65000:3_0:53_0:16$ ip community-list expanded c37 permit 18 ^65000:3_0:54_0:17$ ip community-list expanded c37 permit 19 ^65000:3_0:55_0:18$ ip community-list expanded c37 permit 20 ^65000:3_0:56_0:19$ ip community-list expanded c37 permit 21 ^65000:3_0:57_0:20$ ip community-list expanded c37 permit 22 ^65000:3_0:58_0:21$ ip community-list expanded c37 permit 23 ^65000:3_0:59_0:22$ ip community-list expanded c37 permit 24 ^65000:3_0:60_0:23$ ip community-list expanded c37 permit 25 ^65000:3_0:61_0:24$ ip community-list expanded c37 permit 26 ^65000:3_0:62_0:25$ ip community-list expanded c37 permit 27 ^65000:3_0:63_0:26$ ip community-list expanded c37 permit 28 ^65000:3_0:64_0:27$ ip community-list expanded c37 permit 29 ^65000:3_0:65_0:28$ ip community-list expanded c37 permit 30 ^65000:3_0:66_0:29$ ip community-list expanded c37 permit 31 ^65000:3_0:67_0:30$ ip community-list expanded c37 permit 32 ^65000:3_0:68_0:31$ ip community-list expanded c37 permit 33 ^65000:3_0:69_0:32$ ip community-list expanded c37 permit 34 ^65000:3_0:70_0:33$ ip community-list expanded c37 permit 35 ^65000:3_0:71_0:34$ ip community-list expanded c37 permit 36 ^65000:3_0:72_0:35$ ip community-list expanded c37 permit 37 ^65000:3_0:73_0:36$ ip community-list expanded c37 permit 38 ^65000:4_0:74_0:2$ ip community-list expanded c37 permit 39 ^65000:3_0:74_0:37$ ip community-list expanded c37 permit 40 ^65000:4_0:75_0:2$ ip community-list expanded c37 permit 41 ^65000:3_0:75_0:38$ ip community-list expanded c37 permit 42 ^65000:3_0:76_0:39$ ip community-list expanded c37 permit 43 ^65000:3_0:77_0:40$ ip community-list expanded c37 permit 44 ^65000:3_0:78_0:41$ ip community-list expanded c37 permit 45 ^65000:3_0:79_0:42$ ip community-list expanded c37 permit 46 ^65000:3_0:80_0:43$ ip community-list expanded c37 permit 47 ^65000:3_0:81_0:44$ ip community-list expanded c37 permit 48 ^65000:3_0:82_0:45$ ip community-list expanded c37 permit 49 ^65000:3_0:83_0:46$ ip community-list expanded c37 permit 50 ^65000:3_0:84_0:47$ ip community-list expanded c37 permit 51 ^65000:3_0:85_0:48$ ip community-list expanded c37 permit 52 ^65000:3_0:86_0:49$ ip community-list expanded c37 permit 53 ^65000:3_0:87_0:50$ ip community-list expanded c37 permit 54 ^65000:3_0:88_0:51$ ip community-list expanded c37 permit 55 ^65000:3_0:89_0:52$ ip community-list expanded c37 permit 56 ^65000:3_0:90_0:53$ ip community-list expanded c37 permit 57 ^65000:3_0:91_0:54$ ip community-list expanded c37 permit 58 ^65000:3_0:92_0:55$ ip community-list expanded c37 permit 59 ^65000:3_0:93_0:56$ ip community-list expanded c37 permit 60 ^65000:3_0:94_0:57$ ip community-list expanded c37 permit 61 ^65000:3_0:95_0:58$ ip community-list expanded c37 permit 62 ^65000:3_0:96_0:59$ ip community-list expanded c37 permit 63 ^65000:3_0:97_0:60$ ip community-list expanded c37 permit 64 ^65000:3_0:98_0:61$ ip community-list expanded c37 permit 65 ^65000:3_0:99_0:62$ ip community-list expanded c37 permit 66 ^65000:3_0:100_0:63$ ip community-list expanded c37 permit 67 ^65000:3_0:101_0:64$ ip community-list expanded c37 permit 68 ^65000:3_0:102_0:65$ ip community-list expanded c37 permit 69 ^65000:3_0:103_0:66$ ip community-list expanded c37 permit 70 ^65000:3_0:104_0:67$ ip community-list expanded c37 permit 71 ^65000:3_0:105_0:68$ ip community-list expanded c37 permit 72 ^65000:3_0:106_0:69$ ip community-list expanded c37 permit 73 ^65000:3_0:107_0:70$ ip community-list expanded c37 permit 74 ^65000:3_0:108_0:71$ ip community-list expanded c37 permit 75 ^65000:3_0:109_0:72$ ip community-list expanded c37 permit 76 ^65000:3_0:110_0:73$ ip community-list expanded c37 permit 77 ^65000:4_0:111_0:3$ ip community-list expanded c37 permit 78 ^65000:3_0:111_0:74$ ip community-list expanded c37 permit 79 ^65000:4_0:112_0:3$ ip community-list expanded c37 permit 80 ^65000:3_0:112_0:75$ ip community-list expanded c37 permit 81 ^65000:4_0:113_0:3$ ip community-list expanded c37 permit 82 ^65000:3_0:113_0:76$ ip community-list expanded c37 permit 83 ^65000:3_0:114_0:77$ ip community-list expanded c37 permit 84 ^65000:3_0:115_0:78$ ip community-list expanded c37 permit 85 ^65000:3_0:116_0:79$ ip community-list expanded c37 permit 86 ^65000:3_0:117_0:80$ ip community-list expanded c37 permit 87 ^65000:3_0:118_0:81$ ip community-list expanded c37 permit 88 ^65000:3_0:119_0:82$ ip community-list expanded c37 permit 89 ^65000:3_0:120_0:83$ ip community-list expanded c37 permit 90 ^65000:3_0:121_0:84$ ip community-list expanded c37 permit 91 ^65000:3_0:122_0:85$ ip community-list expanded c37 permit 92 ^65000:3_0:123_0:86$ ip community-list expanded c37 permit 93 ^65000:3_0:124_0:87$ ip community-list expanded c37 permit 94 ^65000:3_0:125_0:88$ ip community-list expanded c37 permit 95 ^65000:3_0:126_0:89$ ip community-list expanded c37 permit 96 ^65000:3_0:127_0:90$ ip community-list expanded c37 permit 97 ^65000:3_0:128_0:91$ ip community-list expanded c37 permit 98 ^65000:3_0:129_0:92$ ip community-list expanded c37 permit 99 ^65000:3_0:130_0:93$ ip community-list expanded c37 permit 100 ^65000:3_0:131_0:94$ ip community-list expanded c37 permit 101 ^65000:3_0:132_0:95$ ip community-list expanded c37 permit 102 ^65000:3_0:133_0:96$ ip community-list expanded c37 permit 103 ^65000:3_0:134_0:97$ ip community-list expanded c37 permit 104 ^65000:3_0:135_0:98$ ip community-list expanded c37 permit 105 ^65000:3_0:136_0:99$ ip community-list expanded c37 permit 106 ^65000:3_0:137_0:100$ ip community-list expanded c37 permit 107 ^65000:3_0:138_0:101$ ip community-list expanded c37 permit 108 ^65000:3_0:139_0:102$ ip community-list expanded c37 permit 109 ^65000:3_0:140_0:103$ ip community-list expanded c37 permit 110 ^65000:3_0:141_0:104$ ip community-list expanded c37 permit 111 ^65000:3_0:142_0:105$ ip community-list expanded c37 permit 112 ^65000:3_0:143_0:106$ ip community-list expanded c37 permit 113 ^65000:3_0:144_0:107$ ip community-list expanded c37 permit 114 ^65000:3_0:145_0:108$ ip community-list expanded c37 permit 115 ^65000:3_0:146_0:109$ ip community-list expanded c37 permit 116 ^65000:3_0:147_0:110$ ip community-list expanded c37 permit 117 ^65000:4_0:148_0:4$ ip community-list expanded c37 permit 118 ^65000:3_0:148_0:111$ ip community-list expanded c37 permit 119 ^65000:4_0:149_0:4$ ip community-list expanded c37 permit 120 ^65000:3_0:149_0:112$ ip community-list expanded c37 permit 121 ^65000:4_0:150_0:4$ ip community-list expanded c37 permit 122 ^65000:3_0:150_0:113$ ip community-list expanded c37 permit 123 ^65000:4_0:151_0:4$ ip community-list expanded c37 permit 124 ^65000:3_0:151_0:114$ ip community-list expanded c37 permit 125 ^65000:3_0:152_0:115$ ip community-list expanded c37 permit 126 ^65000:3_0:153_0:116$ ip community-list expanded c37 permit 127 ^65000:3_0:154_0:117$ ip community-list expanded c37 permit 128 ^65000:3_0:155_0:118$ ip community-list expanded c37 permit 129 ^65000:3_0:156_0:119$ ip community-list expanded c37 permit 130 ^65000:3_0:157_0:120$ ip community-list expanded c37 permit 131 ^65000:3_0:158_0:121$ ip community-list expanded c37 permit 132 ^65000:3_0:159_0:122$ ip community-list expanded c37 permit 133 ^65000:3_0:160_0:123$ ip community-list expanded c37 permit 134 ^65000:3_0:161_0:124$ ip community-list expanded c37 permit 135 ^65000:3_0:162_0:125$ ip community-list expanded c37 permit 136 ^65000:3_0:163_0:126$ ip community-list expanded c37 permit 137 ^65000:3_0:164_0:127$ ip community-list expanded c37 permit 138 ^65000:3_0:165_0:128$ ip community-list expanded c37 permit 139 ^65000:3_0:166_0:129$ ip community-list expanded c37 permit 140 ^65000:3_0:167_0:130$ ip community-list expanded c37 permit 141 ^65000:3_0:168_0:131$ ip community-list expanded c37 permit 142 ^65000:3_0:169_0:132$ ip community-list expanded c37 permit 143 ^65000:3_0:170_0:133$ ip community-list expanded c37 permit 144 ^65000:3_0:171_0:134$ ip community-list expanded c37 permit 145 ^65000:3_0:172_0:135$ ip community-list expanded c37 permit 146 ^65000:3_0:173_0:136$ ip community-list expanded c37 permit 147 ^65000:3_0:174_0:137$ ip community-list expanded c37 permit 148 ^65000:3_0:175_0:138$ ip community-list expanded c37 permit 149 ^65000:3_0:176_0:139$ ip community-list expanded c37 permit 150 ^65000:3_0:177_0:140$ ip community-list expanded c37 permit 151 ^65000:3_0:178_0:141$ ip community-list expanded c37 permit 152 ^65000:3_0:179_0:142$ ip community-list expanded c37 permit 153 ^65000:3_0:180_0:143$ ip community-list expanded c37 permit 154 ^65000:3_0:181_0:144$ ip community-list expanded c37 permit 155 ^65000:3_0:182_0:145$ ip community-list expanded c37 permit 156 ^65000:3_0:183_0:146$ ip community-list expanded c37 permit 157 ^65000:3_0:184_0:147$ ip community-list expanded c37 permit 158 ^65000:4_0:185_0:5$ ip community-list expanded c37 permit 159 ^65000:3_0:185_0:148$ ip community-list expanded c37 permit 160 ^65000:4_0:186_0:5$ ip community-list expanded c37 permit 161 ^65000:3_0:186_0:149$ ip community-list expanded c37 permit 162 ^65000:4_0:187_0:5$ ip community-list expanded c37 permit 163 ^65000:3_0:187_0:150$ ip community-list expanded c37 permit 164 ^65000:4_0:188_0:5$ ip community-list expanded c37 permit 165 ^65000:3_0:188_0:151$ ip community-list expanded c37 permit 166 ^65000:4_0:189_0:5$ ip community-list expanded c37 permit 167 ^65000:3_0:189_0:152$ ip community-list expanded c37 permit 168 ^65000:3_0:190_0:153$ ip community-list expanded c37 permit 169 ^65000:3_0:191_0:154$ ip community-list expanded c37 permit 170 ^65000:3_0:192_0:155$ ip community-list expanded c37 permit 171 ^65000:3_0:193_0:156$ ip community-list expanded c37 permit 172 ^65000:3_0:194_0:157$ ip community-list expanded c37 permit 173 ^65000:3_0:195_0:158$ ip community-list expanded c37 permit 174 ^65000:3_0:196_0:159$ ip community-list expanded c37 permit 175 ^65000:3_0:197_0:160$ ip community-list expanded c37 permit 176 ^65000:3_0:198_0:161$ ip community-list expanded c37 permit 177 ^65000:3_0:199_0:162$ ip community-list expanded c37 permit 178 ^65000:3_0:200_0:163$ ip community-list expanded c37 permit 179 ^65000:3_0:201_0:164$ ip community-list expanded c37 permit 180 ^65000:3_0:202_0:165$ ip community-list expanded c37 permit 181 ^65000:3_0:203_0:166$ ip community-list expanded c37 permit 182 ^65000:3_0:204_0:167$ ip community-list expanded c37 permit 183 ^65000:3_0:205_0:168$ ip community-list expanded c37 permit 184 ^65000:3_0:206_0:169$ ip community-list expanded c37 permit 185 ^65000:3_0:207_0:170$ ip community-list expanded c37 permit 186 ^65000:3_0:208_0:171$ ip community-list expanded c37 permit 187 ^65000:3_0:209_0:172$ ip community-list expanded c37 permit 188 ^65000:3_0:210_0:173$ ip community-list expanded c37 permit 189 ^65000:3_0:211_0:174$ ip community-list expanded c37 permit 190 ^65000:3_0:212_0:175$ ip community-list expanded c37 permit 191 ^65000:3_0:213_0:176$ ip community-list expanded c37 permit 192 ^65000:3_0:214_0:177$ ip community-list expanded c37 permit 193 ^65000:3_0:215_0:178$ ip community-list expanded c37 permit 194 ^65000:3_0:216_0:179$ ip community-list expanded c37 permit 195 ^65000:3_0:217_0:180$ ip community-list expanded c37 permit 196 ^65000:3_0:218_0:181$ ip community-list expanded c37 permit 197 ^65000:3_0:219_0:182$ ip community-list expanded c37 permit 198 ^65000:3_0:220_0:183$ ip community-list expanded c37 permit 199 ^65000:3_0:221_0:184$ ip community-list expanded c37 permit 200 ^65000:4_0:222_0:6$ ip community-list expanded c37 permit 201 ^65000:3_0:222_0:185$ ip community-list expanded c37 permit 202 ^65000:4_0:223_0:6$ ip community-list expanded c37 permit 203 ^65000:3_0:223_0:186$ ip community-list expanded c37 permit 204 ^65000:4_0:224_0:6$ ip community-list expanded c37 permit 205 ^65000:3_0:224_0:187$ ip community-list expanded c37 permit 206 ^65000:4_0:225_0:6$ ip community-list expanded c37 permit 207 ^65000:3_0:225_0:188$ ip community-list expanded c37 permit 208 ^65000:4_0:226_0:6$ ip community-list expanded c37 permit 209 ^65000:3_0:226_0:189$ ip community-list expanded c37 permit 210 ^65000:4_0:227_0:6$ ip community-list expanded c37 permit 211 ^65000:3_0:227_0:190$ ip community-list expanded c37 permit 212 ^65000:3_0:228_0:191$ ip community-list expanded c37 permit 213 ^65000:3_0:229_0:192$ ip community-list expanded c37 permit 214 ^65000:3_0:230_0:193$ ip community-list expanded c37 permit 215 ^65000:3_0:231_0:194$ ip community-list expanded c37 permit 216 ^65000:3_0:232_0:195$ ip community-list expanded c37 permit 217 ^65000:3_0:233_0:196$ ip community-list expanded c37 permit 218 ^65000:3_0:234_0:197$ ip community-list expanded c37 permit 219 ^65000:3_0:235_0:198$ ip community-list expanded c37 permit 220 ^65000:3_0:236_0:199$ ip community-list expanded c37 permit 221 ^65000:3_0:237_0:200$ ip community-list expanded c37 permit 222 ^65000:3_0:238_0:201$ ip community-list expanded c37 permit 223 ^65000:3_0:239_0:202$ ip community-list expanded c37 permit 224 ^65000:3_0:240_0:203$ ip community-list expanded c37 permit 225 ^65000:3_0:241_0:204$ ip community-list expanded c37 permit 226 ^65000:3_0:242_0:205$ ip community-list expanded c37 permit 227 ^65000:3_0:243_0:206$ ip community-list expanded c37 permit 228 ^65000:3_0:244_0:207$ ip community-list expanded c37 permit 229 ^65000:3_0:245_0:208$ ip community-list expanded c37 permit 230 ^65000:3_0:246_0:209$ ip community-list expanded c37 permit 231 ^65000:3_0:247_0:210$ ip community-list expanded c37 permit 232 ^65000:3_0:248_0:211$ ip community-list expanded c37 permit 233 ^65000:3_0:249_0:212$ ip community-list expanded c37 permit 234 ^65000:3_0:250_0:213$ ip community-list expanded c37 permit 235 ^65000:3_0:251_0:214$ ip community-list expanded c37 permit 236 ^65000:3_0:252_0:215$ ip community-list expanded c37 permit 237 ^65000:3_0:253_0:216$ ip community-list expanded c37 permit 238 ^65000:3_0:254_0:217$ ip community-list expanded c37 permit 239 ^65000:3_0:255_0:218$ ip community-list expanded c37 permit 240 ^65000:3_0:256_0:219$ route-map calculator permit 27582 match community 1_1_36 2_1_37 1_2_35 1_3_34 1_4_33 set community 0:37 route-map calculator permit 27583 match community 1_5_32 1_6_31 1_7_30 1_8_29 1_9_28 set community 0:37 route-map calculator permit 27584 match community 1_10_27 1_11_26 1_12_25 1_13_24 1_14_23 set community 0:37 route-map calculator permit 27585 match community 1_15_22 1_16_21 1_17_20 1_18_19 c4_37_1 set community 0:37 route-map calculator permit 27586 match community c3_38_1 c3_39_2 c3_40_3 c3_41_4 c3_42_5 set community 0:37 route-map calculator permit 27587 match community c3_43_6 c3_44_7 c3_45_8 c3_46_9 c3_47_10 set community 0:37 route-map calculator permit 27588 match community c3_48_11 c3_49_12 c3_50_13 c3_51_14 c3_52_15 set community 0:37 route-map calculator permit 27589 match community c3_53_16 c3_54_17 c3_55_18 c3_56_19 c3_57_20 set community 0:37 route-map calculator permit 27590 match community c3_58_21 c3_59_22 c3_60_23 c3_61_24 c3_62_25 set community 0:37 route-map calculator permit 27591 match community c3_63_26 c3_64_27 c3_65_28 c3_66_29 c3_67_30 set community 0:37 route-map calculator permit 27592 match community c3_68_31 c3_69_32 c3_70_33 c3_71_34 c3_72_35 set community 0:37 route-map calculator permit 27593 match community c3_73_36 c4_74_2 c3_74_37 c4_75_2 c3_75_38 set community 0:37 route-map calculator permit 27594 match community c3_76_39 c3_77_40 c3_78_41 c3_79_42 c3_80_43 set community 0:37 route-map calculator permit 27595 match community c3_81_44 c3_82_45 c3_83_46 c3_84_47 c3_85_48 set community 0:37 route-map calculator permit 27596 match community c3_86_49 c3_87_50 c3_88_51 c3_89_52 c3_90_53 set community 0:37 route-map calculator permit 27597 match community c3_91_54 c3_92_55 c3_93_56 c3_94_57 c3_95_58 set community 0:37 route-map calculator permit 27598 match community c3_96_59 c3_97_60 c3_98_61 c3_99_62 c3_100_63 set community 0:37 route-map calculator permit 27599 match community c3_101_64 c3_102_65 c3_103_66 c3_104_67 c3_105_68 set community 0:37 route-map calculator permit 27600 match community c3_106_69 c3_107_70 c3_108_71 c3_109_72 c3_110_73 set community 0:37 route-map calculator permit 27601 match community c4_111_3 c3_111_74 c4_112_3 c3_112_75 c4_113_3 set community 0:37 route-map calculator permit 27602 match community c3_113_76 c3_114_77 c3_115_78 c3_116_79 c3_117_80 set community 0:37 route-map calculator permit 27603 match community c3_118_81 c3_119_82 c3_120_83 c3_121_84 c3_122_85 set community 0:37 route-map calculator permit 27604 match community c3_123_86 c3_124_87 c3_125_88 c3_126_89 c3_127_90 set community 0:37 route-map calculator permit 27605 match community c3_128_91 c3_129_92 c3_130_93 c3_131_94 c3_132_95 set community 0:37 route-map calculator permit 27606 match community c3_133_96 c3_134_97 c3_135_98 c3_136_99 c3_137_100 set community 0:37 route-map calculator permit 27607 match community c3_138_101 c3_139_102 c3_140_103 c3_141_104 c3_142_105 set community 0:37 route-map calculator permit 27608 match community c3_143_106 c3_144_107 c3_145_108 c3_146_109 c3_147_110 set community 0:37 route-map calculator permit 27609 match community c4_148_4 c3_148_111 c4_149_4 c3_149_112 c4_150_4 set community 0:37 route-map calculator permit 27610 match community c3_150_113 c4_151_4 c3_151_114 c3_152_115 c3_153_116 set community 0:37 route-map calculator permit 27611 match community c3_154_117 c3_155_118 c3_156_119 c3_157_120 c3_158_121 set community 0:37 route-map calculator permit 27612 match community c3_159_122 c3_160_123 c3_161_124 c3_162_125 c3_163_126 set community 0:37 route-map calculator permit 27613 match community c3_164_127 c3_165_128 c3_166_129 c3_167_130 c3_168_131 set community 0:37 route-map calculator permit 27614 match community c3_169_132 c3_170_133 c3_171_134 c3_172_135 c3_173_136 set community 0:37 route-map calculator permit 27615 match community c3_174_137 c3_175_138 c3_176_139 c3_177_140 c3_178_141 set community 0:37 route-map calculator permit 27616 match community c3_179_142 c3_180_143 c3_181_144 c3_182_145 c3_183_146 set community 0:37 route-map calculator permit 27617 match community c3_184_147 c4_185_5 c3_185_148 c4_186_5 c3_186_149 set community 0:37 route-map calculator permit 27618 match community c4_187_5 c3_187_150 c4_188_5 c3_188_151 c4_189_5 set community 0:37 route-map calculator permit 27619 match community c3_189_152 c3_190_153 c3_191_154 c3_192_155 c3_193_156 set community 0:37 route-map calculator permit 27620 match community c3_194_157 c3_195_158 c3_196_159 c3_197_160 c3_198_161 set community 0:37 route-map calculator permit 27621 match community c3_199_162 c3_200_163 c3_201_164 c3_202_165 c3_203_166 set community 0:37 route-map calculator permit 27622 match community c3_204_167 c3_205_168 c3_206_169 c3_207_170 c3_208_171 set community 0:37 route-map calculator permit 27623 match community c3_209_172 c3_210_173 c3_211_174 c3_212_175 c3_213_176 set community 0:37 route-map calculator permit 27624 match community c3_214_177 c3_215_178 c3_216_179 c3_217_180 c3_218_181 set community 0:37 route-map calculator permit 27625 match community c3_219_182 c3_220_183 c3_221_184 c4_222_6 c3_222_185 set community 0:37 route-map calculator permit 27626 match community c4_223_6 c3_223_186 c4_224_6 c3_224_187 c4_225_6 set community 0:37 route-map calculator permit 27627 match community c3_225_188 c4_226_6 c3_226_189 c4_227_6 c3_227_190 set community 0:37 route-map calculator permit 27628 match community c3_228_191 c3_229_192 c3_230_193 c3_231_194 c3_232_195 set community 0:37 route-map calculator permit 27629 match community c3_233_196 c3_234_197 c3_235_198 c3_236_199 c3_237_200 set community 0:37 route-map calculator permit 27630 match community c3_238_201 c3_239_202 c3_240_203 c3_241_204 c3_242_205 set community 0:37 route-map calculator permit 27631 match community c3_243_206 c3_244_207 c3_245_208 c3_246_209 c3_247_210 set community 0:37 route-map calculator permit 27632 match community c3_248_211 c3_249_212 c3_250_213 c3_251_214 c3_252_215 set community 0:37 route-map calculator permit 27633 match community c3_253_216 c3_254_217 c3_255_218 c3_256_219 set community 0:37 ip community-list standard 2_220_221 permit 65000:2 0:220 0:221 route-map calculator permit 27634 match community 2_220_221 set community 0:48620 ip community-list standard 2_37_235 permit 65000:2 0:37 0:235 ip community-list standard 2_47_185 permit 65000:2 0:47 0:185 route-map calculator permit 27635 match community 2_37_235 2_47_185 set community 0:8695 ip community-list standard 2_43_47 permit 65000:2 0:43 0:47 route-map calculator permit 27636 match community 2_43_47 set community 0:2021 ip community-list standard 2_97_212 permit 65000:2 0:97 0:212 ip community-list standard 2_106_194 permit 65000:2 0:106 0:194 route-map calculator permit 27637 match community 2_97_212 2_106_194 set community 0:20564 ip community-list standard 2_93_131 permit 65000:2 0:93 0:131 route-map calculator permit 27638 match community 2_93_131 set community 0:12183 ip community-list standard 2_65_149 permit 65000:2 0:65 0:149 route-map calculator permit 27639 match community 2_65_149 set community 0:9685 ip community-list standard 2_23_118 permit 65000:2 0:23 0:118 ip community-list standard 2_46_59 permit 65000:2 0:46 0:59 route-map calculator permit 27640 match community 2_23_118 2_46_59 set community 0:2714 ip community-list standard 2_140_163 permit 65000:2 0:140 0:163 route-map calculator permit 27641 match community 2_140_163 set community 0:22820 ip community-list standard 2_8_243 permit 65000:2 0:8 0:243 ip community-list standard 2_9_216 permit 65000:2 0:9 0:216 ip community-list standard 2_12_162 permit 65000:2 0:12 0:162 ip community-list standard 2_18_108 permit 65000:2 0:18 0:108 ip community-list standard 2_24_81 permit 65000:2 0:24 0:81 ip community-list standard 2_27_72 permit 65000:2 0:27 0:72 ip community-list standard 2_36_54 permit 65000:2 0:36 0:54 route-map calculator permit 27642 match community 2_8_243 2_9_216 2_12_162 2_18_108 2_24_81 set community 0:1944 route-map calculator permit 27643 match community 2_27_72 2_36_54 set community 0:1944 ip community-list standard 1_61_256 permit 65000:1 0:61 0:256 ip community-list standard 1_62_255 permit 65000:1 0:62 0:255 ip community-list standard 1_63_254 permit 65000:1 0:63 0:254 ip community-list standard 1_64_253 permit 65000:1 0:64 0:253 ip community-list standard 1_65_252 permit 65000:1 0:65 0:252 ip community-list standard 1_66_251 permit 65000:1 0:66 0:251 ip community-list standard 1_67_250 permit 65000:1 0:67 0:250 ip community-list standard 1_68_249 permit 65000:1 0:68 0:249 ip community-list standard 1_69_248 permit 65000:1 0:69 0:248 ip community-list standard 1_70_247 permit 65000:1 0:70 0:247 ip community-list standard 1_71_246 permit 65000:1 0:71 0:246 ip community-list standard 1_72_245 permit 65000:1 0:72 0:245 ip community-list standard 1_73_244 permit 65000:1 0:73 0:244 ip community-list standard 1_74_243 permit 65000:1 0:74 0:243 ip community-list standard 1_75_242 permit 65000:1 0:75 0:242 ip community-list standard 1_76_241 permit 65000:1 0:76 0:241 ip community-list standard 1_77_240 permit 65000:1 0:77 0:240 ip community-list standard 1_78_239 permit 65000:1 0:78 0:239 ip community-list standard 1_79_238 permit 65000:1 0:79 0:238 ip community-list standard 1_80_237 permit 65000:1 0:80 0:237 ip community-list standard 1_81_236 permit 65000:1 0:81 0:236 ip community-list standard 1_82_235 permit 65000:1 0:82 0:235 ip community-list standard 1_83_234 permit 65000:1 0:83 0:234 ip community-list standard 1_84_233 permit 65000:1 0:84 0:233 ip community-list standard 1_85_232 permit 65000:1 0:85 0:232 ip community-list standard 1_86_231 permit 65000:1 0:86 0:231 ip community-list standard 1_87_230 permit 65000:1 0:87 0:230 ip community-list standard 1_88_229 permit 65000:1 0:88 0:229 ip community-list standard 1_89_228 permit 65000:1 0:89 0:228 ip community-list standard 1_90_227 permit 65000:1 0:90 0:227 ip community-list standard 1_91_226 permit 65000:1 0:91 0:226 ip community-list standard 1_92_225 permit 65000:1 0:92 0:225 ip community-list standard 1_93_224 permit 65000:1 0:93 0:224 ip community-list standard 1_94_223 permit 65000:1 0:94 0:223 ip community-list standard 1_95_222 permit 65000:1 0:95 0:222 ip community-list standard 1_96_221 permit 65000:1 0:96 0:221 ip community-list standard 1_97_220 permit 65000:1 0:97 0:220 ip community-list standard 1_98_219 permit 65000:1 0:98 0:219 ip community-list standard 1_99_218 permit 65000:1 0:99 0:218 ip community-list standard 1_100_217 permit 65000:1 0:100 0:217 ip community-list standard 1_101_216 permit 65000:1 0:101 0:216 ip community-list standard 1_102_215 permit 65000:1 0:102 0:215 ip community-list standard 1_103_214 permit 65000:1 0:103 0:214 ip community-list standard 1_104_213 permit 65000:1 0:104 0:213 ip community-list standard 1_105_212 permit 65000:1 0:105 0:212 ip community-list standard 1_106_211 permit 65000:1 0:106 0:211 ip community-list standard 1_107_210 permit 65000:1 0:107 0:210 ip community-list standard 1_108_209 permit 65000:1 0:108 0:209 ip community-list standard 1_109_208 permit 65000:1 0:109 0:208 ip community-list standard 1_110_207 permit 65000:1 0:110 0:207 ip community-list standard 1_111_206 permit 65000:1 0:111 0:206 ip community-list standard 1_112_205 permit 65000:1 0:112 0:205 ip community-list standard 1_113_204 permit 65000:1 0:113 0:204 ip community-list standard 1_114_203 permit 65000:1 0:114 0:203 ip community-list standard 1_115_202 permit 65000:1 0:115 0:202 ip community-list standard 1_116_201 permit 65000:1 0:116 0:201 ip community-list standard 1_117_200 permit 65000:1 0:117 0:200 ip community-list standard 1_118_199 permit 65000:1 0:118 0:199 ip community-list standard 1_119_198 permit 65000:1 0:119 0:198 ip community-list standard 1_120_197 permit 65000:1 0:120 0:197 ip community-list standard 1_121_196 permit 65000:1 0:121 0:196 ip community-list standard 1_122_195 permit 65000:1 0:122 0:195 ip community-list standard 1_123_194 permit 65000:1 0:123 0:194 ip community-list standard 1_124_193 permit 65000:1 0:124 0:193 ip community-list standard 1_125_192 permit 65000:1 0:125 0:192 ip community-list standard 1_126_191 permit 65000:1 0:126 0:191 ip community-list standard 1_127_190 permit 65000:1 0:127 0:190 ip community-list standard 1_128_189 permit 65000:1 0:128 0:189 ip community-list standard 1_129_188 permit 65000:1 0:129 0:188 ip community-list standard 1_130_187 permit 65000:1 0:130 0:187 ip community-list standard 1_131_186 permit 65000:1 0:131 0:186 ip community-list standard 1_132_185 permit 65000:1 0:132 0:185 ip community-list standard 1_133_184 permit 65000:1 0:133 0:184 ip community-list standard 1_134_183 permit 65000:1 0:134 0:183 ip community-list standard 1_135_182 permit 65000:1 0:135 0:182 ip community-list standard 1_136_181 permit 65000:1 0:136 0:181 ip community-list standard 1_137_180 permit 65000:1 0:137 0:180 ip community-list standard 1_138_179 permit 65000:1 0:138 0:179 ip community-list standard 1_139_178 permit 65000:1 0:139 0:178 ip community-list standard 1_140_177 permit 65000:1 0:140 0:177 ip community-list standard 1_141_176 permit 65000:1 0:141 0:176 ip community-list standard 1_142_175 permit 65000:1 0:142 0:175 ip community-list standard 1_143_174 permit 65000:1 0:143 0:174 ip community-list standard 1_144_173 permit 65000:1 0:144 0:173 ip community-list standard 1_145_172 permit 65000:1 0:145 0:172 ip community-list standard 1_146_171 permit 65000:1 0:146 0:171 ip community-list standard 1_147_170 permit 65000:1 0:147 0:170 ip community-list standard 1_148_169 permit 65000:1 0:148 0:169 ip community-list standard 1_149_168 permit 65000:1 0:149 0:168 ip community-list standard 1_150_167 permit 65000:1 0:150 0:167 ip community-list standard 1_151_166 permit 65000:1 0:151 0:166 ip community-list standard 1_152_165 permit 65000:1 0:152 0:165 ip community-list standard 1_153_164 permit 65000:1 0:153 0:164 ip community-list standard 1_154_163 permit 65000:1 0:154 0:163 ip community-list standard 1_155_162 permit 65000:1 0:155 0:162 ip community-list standard 1_156_161 permit 65000:1 0:156 0:161 ip community-list standard 1_157_160 permit 65000:1 0:157 0:160 ip community-list standard 1_158_159 permit 65000:1 0:158 0:159 route-map calculator permit 27644 match community 1_61_256 1_62_255 1_63_254 1_64_253 1_65_252 set community 0:317 route-map calculator permit 27645 match community 1_66_251 1_67_250 1_68_249 1_69_248 1_70_247 set community 0:317 route-map calculator permit 27646 match community 1_71_246 1_72_245 1_73_244 1_74_243 1_75_242 set community 0:317 route-map calculator permit 27647 match community 1_76_241 1_77_240 1_78_239 1_79_238 1_80_237 set community 0:317 route-map calculator permit 27648 match community 1_81_236 1_82_235 1_83_234 1_84_233 1_85_232 set community 0:317 route-map calculator permit 27649 match community 1_86_231 1_87_230 1_88_229 1_89_228 1_90_227 set community 0:317 route-map calculator permit 27650 match community 1_91_226 1_92_225 1_93_224 1_94_223 1_95_222 set community 0:317 route-map calculator permit 27651 match community 1_96_221 1_97_220 1_98_219 1_99_218 1_100_217 set community 0:317 route-map calculator permit 27652 match community 1_101_216 1_102_215 1_103_214 1_104_213 1_105_212 set community 0:317 route-map calculator permit 27653 match community 1_106_211 1_107_210 1_108_209 1_109_208 1_110_207 set community 0:317 route-map calculator permit 27654 match community 1_111_206 1_112_205 1_113_204 1_114_203 1_115_202 set community 0:317 route-map calculator permit 27655 match community 1_116_201 1_117_200 1_118_199 1_119_198 1_120_197 set community 0:317 route-map calculator permit 27656 match community 1_121_196 1_122_195 1_123_194 1_124_193 1_125_192 set community 0:317 route-map calculator permit 27657 match community 1_126_191 1_127_190 1_128_189 1_129_188 1_130_187 set community 0:317 route-map calculator permit 27658 match community 1_131_186 1_132_185 1_133_184 1_134_183 1_135_182 set community 0:317 route-map calculator permit 27659 match community 1_136_181 1_137_180 1_138_179 1_139_178 1_140_177 set community 0:317 route-map calculator permit 27660 match community 1_141_176 1_142_175 1_143_174 1_144_173 1_145_172 set community 0:317 route-map calculator permit 27661 match community 1_146_171 1_147_170 1_148_169 1_149_168 1_150_167 set community 0:317 route-map calculator permit 27662 match community 1_151_166 1_152_165 1_153_164 1_154_163 1_155_162 set community 0:317 route-map calculator permit 27663 match community 1_156_161 1_157_160 1_158_159 set community 0:317 ip community-list standard 2_47_217 permit 65000:2 0:47 0:217 route-map calculator permit 27664 match community 2_47_217 set community 0:10199 ip community-list standard 2_37_167 permit 65000:2 0:37 0:167 route-map calculator permit 27665 match community 2_37_167 set community 0:6179 ip community-list standard 2_113_205 permit 65000:2 0:113 0:205 route-map calculator permit 27666 match community 2_113_205 set community 0:23165 ip community-list standard 2_95_207 permit 65000:2 0:95 0:207 ip community-list standard 2_115_171 permit 65000:2 0:115 0:171 route-map calculator permit 27667 match community 2_95_207 2_115_171 set community 0:19665 ip community-list standard 2_213_243 permit 65000:2 0:213 0:243 route-map calculator permit 27668 match community 2_213_243 set community 0:51759 ip community-list standard 2_101_157 permit 65000:2 0:101 0:157 route-map calculator permit 27669 match community 2_101_157 set community 0:15857 ip community-list standard 2_135_228 permit 65000:2 0:135 0:228 ip community-list standard 2_162_190 permit 65000:2 0:162 0:190 ip community-list standard 2_171_180 permit 65000:2 0:171 0:180 route-map calculator permit 27670 match community 2_135_228 2_162_190 2_171_180 set community 0:30780 ip community-list standard 2_34_152 permit 65000:2 0:34 0:152 ip community-list standard 2_38_136 permit 65000:2 0:38 0:136 ip community-list standard 2_68_76 permit 65000:2 0:68 0:76 route-map calculator permit 27671 match community 2_34_152 2_38_136 2_68_76 set community 0:5168 ip community-list standard 2_104_233 permit 65000:2 0:104 0:233 route-map calculator permit 27672 match community 2_104_233 set community 0:24232 ip community-list standard 2_97_226 permit 65000:2 0:97 0:226 ip community-list standard 2_113_194 permit 65000:2 0:113 0:194 route-map calculator permit 27673 match community 2_97_226 2_113_194 set community 0:21922 ip community-list standard 2_131_171 permit 65000:2 0:131 0:171 route-map calculator permit 27674 match community 2_131_171 set community 0:22401 ip community-list standard 2_240_250 permit 65000:2 0:240 0:250 route-map calculator permit 27675 match community 2_240_250 set community 0:60000 ip community-list standard 2_210_252 permit 65000:2 0:210 0:252 ip community-list standard 2_216_245 permit 65000:2 0:216 0:245 route-map calculator permit 27676 match community 2_210_252 2_216_245 set community 0:52920 ip community-list standard 2_35_171 permit 65000:2 0:35 0:171 ip community-list standard 2_45_133 permit 65000:2 0:45 0:133 ip community-list standard 2_57_105 permit 65000:2 0:57 0:105 ip community-list standard 2_63_95 permit 65000:2 0:63 0:95 route-map calculator permit 27677 match community 2_35_171 2_45_133 2_57_105 2_63_95 set community 0:5985 ip community-list standard 2_28_250 permit 65000:2 0:28 0:250 ip community-list standard 2_35_200 permit 65000:2 0:35 0:200 ip community-list standard 2_40_175 permit 65000:2 0:40 0:175 ip community-list standard 2_50_140 permit 65000:2 0:50 0:140 ip community-list standard 2_56_125 permit 65000:2 0:56 0:125 ip community-list standard 2_70_100 permit 65000:2 0:70 0:100 route-map calculator permit 27678 match community 2_28_250 2_35_200 2_40_175 2_50_140 2_56_125 set community 0:7000 route-map calculator permit 27679 match community 2_70_100 set community 0:7000 ip community-list standard 2_134_172 permit 65000:2 0:134 0:172 route-map calculator permit 27680 match community 2_134_172 set community 0:23048 ip community-list standard 2_215_225 permit 65000:2 0:215 0:225 route-map calculator permit 27681 match community 2_215_225 set community 0:48375 ip community-list standard 2_107_171 permit 65000:2 0:107 0:171 route-map calculator permit 27682 match community 2_107_171 set community 0:18297 ip community-list standard 2_10_177 permit 65000:2 0:10 0:177 ip community-list standard 2_15_118 permit 65000:2 0:15 0:118 ip community-list standard 2_30_59 permit 65000:2 0:30 0:59 route-map calculator permit 27683 match community 2_10_177 2_15_118 2_30_59 set community 0:1770 ip community-list standard 2_205_246 permit 65000:2 0:205 0:246 route-map calculator permit 27684 match community 2_205_246 set community 0:50430 ip community-list standard 2_85_179 permit 65000:2 0:85 0:179 route-map calculator permit 27685 match community 2_85_179 set community 0:15215 ip community-list standard 2_19_58 permit 65000:2 0:19 0:58 ip community-list standard 2_29_38 permit 65000:2 0:29 0:38 route-map calculator permit 27686 match community 2_19_58 2_29_38 set community 0:1102 ip community-list standard 2_20_218 permit 65000:2 0:20 0:218 ip community-list standard 2_40_109 permit 65000:2 0:40 0:109 route-map calculator permit 27687 match community 2_20_218 2_40_109 set community 0:4360 ip community-list standard 2_235_241 permit 65000:2 0:235 0:241 route-map calculator permit 27688 match community 2_235_241 set community 0:56635 ip community-list standard 2_90_227 permit 65000:2 0:90 0:227 route-map calculator permit 27689 match community 2_90_227 set community 0:20430 ip community-list standard 2_74_196 permit 65000:2 0:74 0:196 ip community-list standard 2_98_148 permit 65000:2 0:98 0:148 route-map calculator permit 27690 match community 2_74_196 2_98_148 set community 0:14504 ip community-list standard 2_83_211 permit 65000:2 0:83 0:211 route-map calculator permit 27691 match community 2_83_211 set community 0:17513 ip community-list standard 2_16_173 permit 65000:2 0:16 0:173 route-map calculator permit 27692 match community 2_16_173 set community 0:2768 ip community-list standard 2_65_194 permit 65000:2 0:65 0:194 ip community-list standard 2_97_130 permit 65000:2 0:97 0:130 route-map calculator permit 27693 match community 2_65_194 2_97_130 set community 0:12610 ip community-list standard 2_119_242 permit 65000:2 0:119 0:242 ip community-list standard 2_121_238 permit 65000:2 0:121 0:238 ip community-list standard 2_154_187 permit 65000:2 0:154 0:187 route-map calculator permit 27694 match community 2_119_242 2_121_238 2_154_187 set community 0:28798 ip community-list standard 2_47_169 permit 65000:2 0:47 0:169 route-map calculator permit 27695 match community 2_47_169 set community 0:7943 ip community-list standard 2_13_31 permit 65000:2 0:13 0:31 ip community-list standard 1_147_256 permit 65000:1 0:147 0:256 ip community-list standard 1_148_255 permit 65000:1 0:148 0:255 ip community-list standard 1_149_254 permit 65000:1 0:149 0:254 ip community-list standard 1_150_253 permit 65000:1 0:150 0:253 ip community-list standard 1_151_252 permit 65000:1 0:151 0:252 ip community-list standard 1_152_251 permit 65000:1 0:152 0:251 ip community-list standard 1_153_250 permit 65000:1 0:153 0:250 ip community-list standard 1_154_249 permit 65000:1 0:154 0:249 ip community-list standard 1_155_248 permit 65000:1 0:155 0:248 ip community-list standard 1_156_247 permit 65000:1 0:156 0:247 ip community-list standard 1_157_246 permit 65000:1 0:157 0:246 ip community-list standard 1_158_245 permit 65000:1 0:158 0:245 ip community-list standard 1_159_244 permit 65000:1 0:159 0:244 ip community-list standard 1_160_243 permit 65000:1 0:160 0:243 ip community-list standard 1_161_242 permit 65000:1 0:161 0:242 ip community-list standard 1_162_241 permit 65000:1 0:162 0:241 ip community-list standard 1_163_240 permit 65000:1 0:163 0:240 ip community-list standard 1_164_239 permit 65000:1 0:164 0:239 ip community-list standard 1_165_238 permit 65000:1 0:165 0:238 ip community-list standard 1_166_237 permit 65000:1 0:166 0:237 ip community-list standard 1_167_236 permit 65000:1 0:167 0:236 ip community-list standard 1_168_235 permit 65000:1 0:168 0:235 ip community-list standard 1_169_234 permit 65000:1 0:169 0:234 ip community-list standard 1_170_233 permit 65000:1 0:170 0:233 ip community-list standard 1_171_232 permit 65000:1 0:171 0:232 ip community-list standard 1_172_231 permit 65000:1 0:172 0:231 ip community-list standard 1_173_230 permit 65000:1 0:173 0:230 ip community-list standard 1_174_229 permit 65000:1 0:174 0:229 ip community-list standard 1_175_228 permit 65000:1 0:175 0:228 ip community-list standard 1_176_227 permit 65000:1 0:176 0:227 ip community-list standard 1_177_226 permit 65000:1 0:177 0:226 ip community-list standard 1_178_225 permit 65000:1 0:178 0:225 ip community-list standard 1_179_224 permit 65000:1 0:179 0:224 ip community-list standard 1_180_223 permit 65000:1 0:180 0:223 ip community-list standard 1_181_222 permit 65000:1 0:181 0:222 ip community-list standard 1_182_221 permit 65000:1 0:182 0:221 ip community-list standard 1_183_220 permit 65000:1 0:183 0:220 ip community-list standard 1_184_219 permit 65000:1 0:184 0:219 ip community-list standard 1_185_218 permit 65000:1 0:185 0:218 ip community-list standard 1_186_217 permit 65000:1 0:186 0:217 ip community-list standard 1_187_216 permit 65000:1 0:187 0:216 ip community-list standard 1_188_215 permit 65000:1 0:188 0:215 ip community-list standard 1_189_214 permit 65000:1 0:189 0:214 ip community-list standard 1_190_213 permit 65000:1 0:190 0:213 ip community-list standard 1_191_212 permit 65000:1 0:191 0:212 ip community-list standard 1_192_211 permit 65000:1 0:192 0:211 ip community-list standard 1_193_210 permit 65000:1 0:193 0:210 ip community-list standard 1_194_209 permit 65000:1 0:194 0:209 ip community-list standard 1_195_208 permit 65000:1 0:195 0:208 ip community-list standard 1_196_207 permit 65000:1 0:196 0:207 ip community-list standard 1_197_206 permit 65000:1 0:197 0:206 ip community-list standard 1_198_205 permit 65000:1 0:198 0:205 ip community-list standard 1_199_204 permit 65000:1 0:199 0:204 ip community-list standard 1_200_203 permit 65000:1 0:200 0:203 ip community-list standard 1_201_202 permit 65000:1 0:201 0:202 route-map calculator permit 27696 match community 2_13_31 1_147_256 1_148_255 1_149_254 1_150_253 set community 0:403 route-map calculator permit 27697 match community 1_151_252 1_152_251 1_153_250 1_154_249 1_155_248 set community 0:403 route-map calculator permit 27698 match community 1_156_247 1_157_246 1_158_245 1_159_244 1_160_243 set community 0:403 route-map calculator permit 27699 match community 1_161_242 1_162_241 1_163_240 1_164_239 1_165_238 set community 0:403 route-map calculator permit 27700 match community 1_166_237 1_167_236 1_168_235 1_169_234 1_170_233 set community 0:403 route-map calculator permit 27701 match community 1_171_232 1_172_231 1_173_230 1_174_229 1_175_228 set community 0:403 route-map calculator permit 27702 match community 1_176_227 1_177_226 1_178_225 1_179_224 1_180_223 set community 0:403 route-map calculator permit 27703 match community 1_181_222 1_182_221 1_183_220 1_184_219 1_185_218 set community 0:403 route-map calculator permit 27704 match community 1_186_217 1_187_216 1_188_215 1_189_214 1_190_213 set community 0:403 route-map calculator permit 27705 match community 1_191_212 1_192_211 1_193_210 1_194_209 1_195_208 set community 0:403 route-map calculator permit 27706 match community 1_196_207 1_197_206 1_198_205 1_199_204 1_200_203 set community 0:403 route-map calculator permit 27707 match community 1_201_202 set community 0:403 ip community-list standard 2_75_253 permit 65000:2 0:75 0:253 ip community-list standard 2_115_165 permit 65000:2 0:115 0:165 route-map calculator permit 27708 match community 2_75_253 2_115_165 set community 0:18975 ip community-list standard 2_102_229 permit 65000:2 0:102 0:229 route-map calculator permit 27709 match community 2_102_229 set community 0:23358 ip community-list standard 2_15_213 permit 65000:2 0:15 0:213 ip community-list standard 2_45_71 permit 65000:2 0:45 0:71 route-map calculator permit 27710 match community 2_15_213 2_45_71 set community 0:3195 ip community-list standard 2_11_252 permit 65000:2 0:11 0:252 ip community-list standard 2_12_231 permit 65000:2 0:12 0:231 ip community-list standard 2_14_198 permit 65000:2 0:14 0:198 ip community-list standard 2_18_154 permit 65000:2 0:18 0:154 ip community-list standard 2_21_132 permit 65000:2 0:21 0:132 ip community-list standard 2_22_126 permit 65000:2 0:22 0:126 ip community-list standard 2_28_99 permit 65000:2 0:28 0:99 ip community-list standard 2_33_84 permit 65000:2 0:33 0:84 ip community-list standard 2_36_77 permit 65000:2 0:36 0:77 ip community-list standard 2_42_66 permit 65000:2 0:42 0:66 ip community-list standard 2_44_63 permit 65000:2 0:44 0:63 route-map calculator permit 27711 match community 2_11_252 2_12_231 2_14_198 2_18_154 2_21_132 set community 0:2772 route-map calculator permit 27712 match community 2_22_126 2_28_99 2_33_84 2_36_77 2_42_66 set community 0:2772 route-map calculator permit 27713 match community 2_44_63 set community 0:2772 ip community-list standard 2_39_235 permit 65000:2 0:39 0:235 ip community-list standard 2_47_195 permit 65000:2 0:47 0:195 ip community-list standard 2_65_141 permit 65000:2 0:65 0:141 route-map calculator permit 27714 match community 2_39_235 2_47_195 2_65_141 set community 0:9165 ip community-list standard 2_140_237 permit 65000:2 0:140 0:237 ip community-list standard 2_158_210 permit 65000:2 0:158 0:210 route-map calculator permit 27715 match community 2_140_237 2_158_210 set community 0:33180 ip community-list standard 2_87_246 permit 65000:2 0:87 0:246 ip community-list standard 2_123_174 permit 65000:2 0:123 0:174 route-map calculator permit 27716 match community 2_87_246 2_123_174 set community 0:21402 ip community-list standard 1_1_205 permit 65000:1 0:1 0:205 ip community-list standard 2_1_206 permit 65000:2 0:1 0:206 ip community-list standard 2_2_103 permit 65000:2 0:2 0:103 ip community-list standard 1_2_204 permit 65000:1 0:2 0:204 ip community-list standard 1_3_203 permit 65000:1 0:3 0:203 ip community-list standard 1_4_202 permit 65000:1 0:4 0:202 ip community-list standard 1_5_201 permit 65000:1 0:5 0:201 ip community-list standard 1_6_200 permit 65000:1 0:6 0:200 ip community-list standard 1_7_199 permit 65000:1 0:7 0:199 ip community-list standard 1_8_198 permit 65000:1 0:8 0:198 ip community-list standard 1_9_197 permit 65000:1 0:9 0:197 ip community-list standard 1_10_196 permit 65000:1 0:10 0:196 ip community-list standard 1_11_195 permit 65000:1 0:11 0:195 ip community-list standard 1_12_194 permit 65000:1 0:12 0:194 ip community-list standard 1_13_193 permit 65000:1 0:13 0:193 ip community-list standard 1_14_192 permit 65000:1 0:14 0:192 ip community-list standard 1_15_191 permit 65000:1 0:15 0:191 ip community-list standard 1_16_190 permit 65000:1 0:16 0:190 ip community-list standard 1_17_189 permit 65000:1 0:17 0:189 ip community-list standard 1_18_188 permit 65000:1 0:18 0:188 ip community-list standard 1_19_187 permit 65000:1 0:19 0:187 ip community-list standard 1_20_186 permit 65000:1 0:20 0:186 ip community-list standard 1_21_185 permit 65000:1 0:21 0:185 ip community-list standard 1_22_184 permit 65000:1 0:22 0:184 ip community-list standard 1_23_183 permit 65000:1 0:23 0:183 ip community-list standard 1_24_182 permit 65000:1 0:24 0:182 ip community-list standard 1_25_181 permit 65000:1 0:25 0:181 ip community-list standard 1_26_180 permit 65000:1 0:26 0:180 ip community-list standard 1_27_179 permit 65000:1 0:27 0:179 ip community-list standard 1_28_178 permit 65000:1 0:28 0:178 ip community-list standard 1_29_177 permit 65000:1 0:29 0:177 ip community-list standard 1_30_176 permit 65000:1 0:30 0:176 ip community-list standard 1_31_175 permit 65000:1 0:31 0:175 ip community-list standard 1_32_174 permit 65000:1 0:32 0:174 ip community-list standard 1_33_173 permit 65000:1 0:33 0:173 ip community-list standard 1_34_172 permit 65000:1 0:34 0:172 ip community-list standard 1_35_171 permit 65000:1 0:35 0:171 ip community-list standard 1_36_170 permit 65000:1 0:36 0:170 ip community-list standard 1_37_169 permit 65000:1 0:37 0:169 ip community-list standard 1_38_168 permit 65000:1 0:38 0:168 ip community-list standard 1_39_167 permit 65000:1 0:39 0:167 ip community-list standard 1_40_166 permit 65000:1 0:40 0:166 ip community-list standard 1_41_165 permit 65000:1 0:41 0:165 ip community-list standard 1_42_164 permit 65000:1 0:42 0:164 ip community-list standard 1_43_163 permit 65000:1 0:43 0:163 ip community-list standard 1_44_162 permit 65000:1 0:44 0:162 ip community-list standard 1_45_161 permit 65000:1 0:45 0:161 ip community-list standard 1_46_160 permit 65000:1 0:46 0:160 ip community-list standard 1_47_159 permit 65000:1 0:47 0:159 ip community-list standard 1_48_158 permit 65000:1 0:48 0:158 ip community-list standard 1_49_157 permit 65000:1 0:49 0:157 ip community-list standard 1_50_156 permit 65000:1 0:50 0:156 ip community-list standard 1_51_155 permit 65000:1 0:51 0:155 ip community-list standard 1_52_154 permit 65000:1 0:52 0:154 ip community-list standard 1_53_153 permit 65000:1 0:53 0:153 ip community-list standard 1_54_152 permit 65000:1 0:54 0:152 ip community-list standard 1_55_151 permit 65000:1 0:55 0:151 ip community-list standard 1_56_150 permit 65000:1 0:56 0:150 ip community-list standard 1_57_149 permit 65000:1 0:57 0:149 ip community-list standard 1_58_148 permit 65000:1 0:58 0:148 ip community-list standard 1_59_147 permit 65000:1 0:59 0:147 ip community-list standard 1_60_146 permit 65000:1 0:60 0:146 ip community-list standard 1_61_145 permit 65000:1 0:61 0:145 ip community-list standard 1_62_144 permit 65000:1 0:62 0:144 ip community-list standard 1_63_143 permit 65000:1 0:63 0:143 ip community-list standard 1_64_142 permit 65000:1 0:64 0:142 ip community-list standard 1_65_141 permit 65000:1 0:65 0:141 ip community-list standard 1_66_140 permit 65000:1 0:66 0:140 ip community-list standard 1_67_139 permit 65000:1 0:67 0:139 ip community-list standard 1_68_138 permit 65000:1 0:68 0:138 ip community-list standard 1_69_137 permit 65000:1 0:69 0:137 ip community-list standard 1_70_136 permit 65000:1 0:70 0:136 ip community-list standard 1_71_135 permit 65000:1 0:71 0:135 ip community-list standard 1_72_134 permit 65000:1 0:72 0:134 ip community-list standard 1_73_133 permit 65000:1 0:73 0:133 ip community-list standard 1_74_132 permit 65000:1 0:74 0:132 ip community-list standard 1_75_131 permit 65000:1 0:75 0:131 ip community-list standard 1_76_130 permit 65000:1 0:76 0:130 ip community-list standard 1_77_129 permit 65000:1 0:77 0:129 ip community-list standard 1_78_128 permit 65000:1 0:78 0:128 ip community-list standard 1_79_127 permit 65000:1 0:79 0:127 ip community-list standard 1_80_126 permit 65000:1 0:80 0:126 ip community-list standard 1_81_125 permit 65000:1 0:81 0:125 ip community-list standard 1_82_124 permit 65000:1 0:82 0:124 ip community-list standard 1_83_123 permit 65000:1 0:83 0:123 ip community-list standard 1_84_122 permit 65000:1 0:84 0:122 ip community-list standard 1_85_121 permit 65000:1 0:85 0:121 ip community-list standard 1_86_120 permit 65000:1 0:86 0:120 ip community-list standard 1_87_119 permit 65000:1 0:87 0:119 ip community-list standard 1_88_118 permit 65000:1 0:88 0:118 ip community-list standard 1_89_117 permit 65000:1 0:89 0:117 ip community-list standard 1_90_116 permit 65000:1 0:90 0:116 ip community-list standard 1_91_115 permit 65000:1 0:91 0:115 ip community-list standard 1_92_114 permit 65000:1 0:92 0:114 ip community-list standard 1_93_113 permit 65000:1 0:93 0:113 ip community-list standard 1_94_112 permit 65000:1 0:94 0:112 ip community-list standard 1_95_111 permit 65000:1 0:95 0:111 ip community-list standard 1_96_110 permit 65000:1 0:96 0:110 ip community-list standard 1_97_109 permit 65000:1 0:97 0:109 ip community-list standard 1_98_108 permit 65000:1 0:98 0:108 ip community-list standard 1_99_107 permit 65000:1 0:99 0:107 ip community-list standard 1_100_106 permit 65000:1 0:100 0:106 ip community-list standard 1_101_105 permit 65000:1 0:101 0:105 ip community-list standard 1_102_104 permit 65000:1 0:102 0:104 ip community-list standard 1_103_103 permit 65000:1 0:103 0:103 ip community-list expanded c206 permit 1 ^65000:4_0:206_0:1$ ip community-list expanded c206 permit 2 ^65000:3_0:207_0:1$ ip community-list expanded c206 permit 3 ^65000:3_0:208_0:2$ ip community-list expanded c206 permit 4 ^65000:3_0:209_0:3$ ip community-list expanded c206 permit 5 ^65000:3_0:210_0:4$ ip community-list expanded c206 permit 6 ^65000:3_0:211_0:5$ ip community-list expanded c206 permit 7 ^65000:3_0:212_0:6$ ip community-list expanded c206 permit 8 ^65000:3_0:213_0:7$ ip community-list expanded c206 permit 9 ^65000:3_0:214_0:8$ ip community-list expanded c206 permit 10 ^65000:3_0:215_0:9$ ip community-list expanded c206 permit 11 ^65000:3_0:216_0:10$ ip community-list expanded c206 permit 12 ^65000:3_0:217_0:11$ ip community-list expanded c206 permit 13 ^65000:3_0:218_0:12$ ip community-list expanded c206 permit 14 ^65000:3_0:219_0:13$ ip community-list expanded c206 permit 15 ^65000:3_0:220_0:14$ ip community-list expanded c206 permit 16 ^65000:3_0:221_0:15$ ip community-list expanded c206 permit 17 ^65000:3_0:222_0:16$ ip community-list expanded c206 permit 18 ^65000:3_0:223_0:17$ ip community-list expanded c206 permit 19 ^65000:3_0:224_0:18$ ip community-list expanded c206 permit 20 ^65000:3_0:225_0:19$ ip community-list expanded c206 permit 21 ^65000:3_0:226_0:20$ ip community-list expanded c206 permit 22 ^65000:3_0:227_0:21$ ip community-list expanded c206 permit 23 ^65000:3_0:228_0:22$ ip community-list expanded c206 permit 24 ^65000:3_0:229_0:23$ ip community-list expanded c206 permit 25 ^65000:3_0:230_0:24$ ip community-list expanded c206 permit 26 ^65000:3_0:231_0:25$ ip community-list expanded c206 permit 27 ^65000:3_0:232_0:26$ ip community-list expanded c206 permit 28 ^65000:3_0:233_0:27$ ip community-list expanded c206 permit 29 ^65000:3_0:234_0:28$ ip community-list expanded c206 permit 30 ^65000:3_0:235_0:29$ ip community-list expanded c206 permit 31 ^65000:3_0:236_0:30$ ip community-list expanded c206 permit 32 ^65000:3_0:237_0:31$ ip community-list expanded c206 permit 33 ^65000:3_0:238_0:32$ ip community-list expanded c206 permit 34 ^65000:3_0:239_0:33$ ip community-list expanded c206 permit 35 ^65000:3_0:240_0:34$ ip community-list expanded c206 permit 36 ^65000:3_0:241_0:35$ ip community-list expanded c206 permit 37 ^65000:3_0:242_0:36$ ip community-list expanded c206 permit 38 ^65000:3_0:243_0:37$ ip community-list expanded c206 permit 39 ^65000:3_0:244_0:38$ ip community-list expanded c206 permit 40 ^65000:3_0:245_0:39$ ip community-list expanded c206 permit 41 ^65000:3_0:246_0:40$ ip community-list expanded c206 permit 42 ^65000:3_0:247_0:41$ ip community-list expanded c206 permit 43 ^65000:3_0:248_0:42$ ip community-list expanded c206 permit 44 ^65000:3_0:249_0:43$ ip community-list expanded c206 permit 45 ^65000:3_0:250_0:44$ ip community-list expanded c206 permit 46 ^65000:3_0:251_0:45$ ip community-list expanded c206 permit 47 ^65000:3_0:252_0:46$ ip community-list expanded c206 permit 48 ^65000:3_0:253_0:47$ ip community-list expanded c206 permit 49 ^65000:3_0:254_0:48$ ip community-list expanded c206 permit 50 ^65000:3_0:255_0:49$ ip community-list expanded c206 permit 51 ^65000:3_0:256_0:50$ route-map calculator permit 27717 match community 1_1_205 2_1_206 2_2_103 1_2_204 1_3_203 set community 0:206 route-map calculator permit 27718 match community 1_4_202 1_5_201 1_6_200 1_7_199 1_8_198 set community 0:206 route-map calculator permit 27719 match community 1_9_197 1_10_196 1_11_195 1_12_194 1_13_193 set community 0:206 route-map calculator permit 27720 match community 1_14_192 1_15_191 1_16_190 1_17_189 1_18_188 set community 0:206 route-map calculator permit 27721 match community 1_19_187 1_20_186 1_21_185 1_22_184 1_23_183 set community 0:206 route-map calculator permit 27722 match community 1_24_182 1_25_181 1_26_180 1_27_179 1_28_178 set community 0:206 route-map calculator permit 27723 match community 1_29_177 1_30_176 1_31_175 1_32_174 1_33_173 set community 0:206 route-map calculator permit 27724 match community 1_34_172 1_35_171 1_36_170 1_37_169 1_38_168 set community 0:206 route-map calculator permit 27725 match community 1_39_167 1_40_166 1_41_165 1_42_164 1_43_163 set community 0:206 route-map calculator permit 27726 match community 1_44_162 1_45_161 1_46_160 1_47_159 1_48_158 set community 0:206 route-map calculator permit 27727 match community 1_49_157 1_50_156 1_51_155 1_52_154 1_53_153 set community 0:206 route-map calculator permit 27728 match community 1_54_152 1_55_151 1_56_150 1_57_149 1_58_148 set community 0:206 route-map calculator permit 27729 match community 1_59_147 1_60_146 1_61_145 1_62_144 1_63_143 set community 0:206 route-map calculator permit 27730 match community 1_64_142 1_65_141 1_66_140 1_67_139 1_68_138 set community 0:206 route-map calculator permit 27731 match community 1_69_137 1_70_136 1_71_135 1_72_134 1_73_133 set community 0:206 route-map calculator permit 27732 match community 1_74_132 1_75_131 1_76_130 1_77_129 1_78_128 set community 0:206 route-map calculator permit 27733 match community 1_79_127 1_80_126 1_81_125 1_82_124 1_83_123 set community 0:206 route-map calculator permit 27734 match community 1_84_122 1_85_121 1_86_120 1_87_119 1_88_118 set community 0:206 route-map calculator permit 27735 match community 1_89_117 1_90_116 1_91_115 1_92_114 1_93_113 set community 0:206 route-map calculator permit 27736 match community 1_94_112 1_95_111 1_96_110 1_97_109 1_98_108 set community 0:206 route-map calculator permit 27737 match community 1_99_107 1_100_106 1_101_105 1_102_104 1_103_103 set community 0:206 route-map calculator permit 27738 match community c4_206_1 c3_207_1 c3_208_2 c3_209_3 c3_210_4 set community 0:206 route-map calculator permit 27739 match community c3_211_5 c3_212_6 c3_213_7 c3_214_8 c3_215_9 set community 0:206 route-map calculator permit 27740 match community c3_216_10 c3_217_11 c3_218_12 c3_219_13 c3_220_14 set community 0:206 route-map calculator permit 27741 match community c3_221_15 c3_222_16 c3_223_17 c3_224_18 c3_225_19 set community 0:206 route-map calculator permit 27742 match community c3_226_20 c3_227_21 c3_228_22 c3_229_23 c3_230_24 set community 0:206 route-map calculator permit 27743 match community c3_231_25 c3_232_26 c3_233_27 c3_234_28 c3_235_29 set community 0:206 route-map calculator permit 27744 match community c3_236_30 c3_237_31 c3_238_32 c3_239_33 c3_240_34 set community 0:206 route-map calculator permit 27745 match community c3_241_35 c3_242_36 c3_243_37 c3_244_38 c3_245_39 set community 0:206 route-map calculator permit 27746 match community c3_246_40 c3_247_41 c3_248_42 c3_249_43 c3_250_44 set community 0:206 route-map calculator permit 27747 match community c3_251_45 c3_252_46 c3_253_47 c3_254_48 c3_255_49 set community 0:206 route-map calculator permit 27748 match community c3_256_50 set community 0:206 ip community-list standard 2_72_232 permit 65000:2 0:72 0:232 ip community-list standard 2_87_192 permit 65000:2 0:87 0:192 ip community-list standard 2_96_174 permit 65000:2 0:96 0:174 ip community-list standard 2_116_144 permit 65000:2 0:116 0:144 route-map calculator permit 27749 match community 2_72_232 2_87_192 2_96_174 2_116_144 set community 0:16704 ip community-list standard 2_159_210 permit 65000:2 0:159 0:210 route-map calculator permit 27750 match community 2_159_210 set community 0:33390 ip community-list standard 2_101_215 permit 65000:2 0:101 0:215 route-map calculator permit 27751 match community 2_101_215 set community 0:21715 ip community-list standard 2_101_232 permit 65000:2 0:101 0:232 ip community-list standard 2_116_202 permit 65000:2 0:116 0:202 route-map calculator permit 27752 match community 2_101_232 2_116_202 set community 0:23432 ip community-list standard 1_207_256 permit 65000:1 0:207 0:256 ip community-list standard 1_208_255 permit 65000:1 0:208 0:255 ip community-list standard 1_209_254 permit 65000:1 0:209 0:254 ip community-list standard 1_210_253 permit 65000:1 0:210 0:253 ip community-list standard 1_211_252 permit 65000:1 0:211 0:252 ip community-list standard 1_212_251 permit 65000:1 0:212 0:251 ip community-list standard 1_213_250 permit 65000:1 0:213 0:250 ip community-list standard 1_214_249 permit 65000:1 0:214 0:249 ip community-list standard 1_215_248 permit 65000:1 0:215 0:248 ip community-list standard 1_216_247 permit 65000:1 0:216 0:247 ip community-list standard 1_217_246 permit 65000:1 0:217 0:246 ip community-list standard 1_218_245 permit 65000:1 0:218 0:245 ip community-list standard 1_219_244 permit 65000:1 0:219 0:244 ip community-list standard 1_220_243 permit 65000:1 0:220 0:243 ip community-list standard 1_221_242 permit 65000:1 0:221 0:242 ip community-list standard 1_222_241 permit 65000:1 0:222 0:241 ip community-list standard 1_223_240 permit 65000:1 0:223 0:240 ip community-list standard 1_224_239 permit 65000:1 0:224 0:239 ip community-list standard 1_225_238 permit 65000:1 0:225 0:238 ip community-list standard 1_226_237 permit 65000:1 0:226 0:237 ip community-list standard 1_227_236 permit 65000:1 0:227 0:236 ip community-list standard 1_228_235 permit 65000:1 0:228 0:235 ip community-list standard 1_229_234 permit 65000:1 0:229 0:234 ip community-list standard 1_230_233 permit 65000:1 0:230 0:233 ip community-list standard 1_231_232 permit 65000:1 0:231 0:232 route-map calculator permit 27753 match community 1_207_256 1_208_255 1_209_254 1_210_253 1_211_252 set community 0:463 route-map calculator permit 27754 match community 1_212_251 1_213_250 1_214_249 1_215_248 1_216_247 set community 0:463 route-map calculator permit 27755 match community 1_217_246 1_218_245 1_219_244 1_220_243 1_221_242 set community 0:463 route-map calculator permit 27756 match community 1_222_241 1_223_240 1_224_239 1_225_238 1_226_237 set community 0:463 route-map calculator permit 27757 match community 1_227_236 1_228_235 1_229_234 1_230_233 1_231_232 set community 0:463 ip community-list standard 2_248_253 permit 65000:2 0:248 0:253 route-map calculator permit 27758 match community 2_248_253 set community 0:62744 ip community-list standard 2_197_234 permit 65000:2 0:197 0:234 route-map calculator permit 27759 match community 2_197_234 set community 0:46098 ip community-list standard 2_33_251 permit 65000:2 0:33 0:251 route-map calculator permit 27760 match community 2_33_251 set community 0:8283 ip community-list standard 2_25_195 permit 65000:2 0:25 0:195 ip community-list standard 2_39_125 permit 65000:2 0:39 0:125 ip community-list standard 2_65_75 permit 65000:2 0:65 0:75 route-map calculator permit 27761 match community 2_25_195 2_39_125 2_65_75 set community 0:4875 ip community-list standard 2_72_219 permit 65000:2 0:72 0:219 ip community-list standard 2_73_216 permit 65000:2 0:73 0:216 ip community-list standard 2_108_146 permit 65000:2 0:108 0:146 route-map calculator permit 27762 match community 2_72_219 2_73_216 2_108_146 set community 0:15768 ip community-list standard 2_107_244 permit 65000:2 0:107 0:244 ip community-list standard 2_122_214 permit 65000:2 0:122 0:214 route-map calculator permit 27763 match community 2_107_244 2_122_214 set community 0:26108 ip community-list standard 2_226_245 permit 65000:2 0:226 0:245 route-map calculator permit 27764 match community 2_226_245 set community 0:55370 ip community-list standard 2_17_231 permit 65000:2 0:17 0:231 ip community-list standard 2_21_187 permit 65000:2 0:21 0:187 ip community-list standard 2_33_119 permit 65000:2 0:33 0:119 ip community-list standard 2_51_77 permit 65000:2 0:51 0:77 route-map calculator permit 27765 match community 2_17_231 2_21_187 2_33_119 2_51_77 set community 0:3927 ip community-list standard 2_7_231 permit 65000:2 0:7 0:231 ip community-list standard 2_11_147 permit 65000:2 0:11 0:147 ip community-list standard 2_21_77 permit 65000:2 0:21 0:77 ip community-list standard 2_33_49 permit 65000:2 0:33 0:49 route-map calculator permit 27766 match community 2_7_231 2_11_147 2_21_77 2_33_49 set community 0:1617 ip community-list standard 2_179_179 permit 65000:2 0:179 0:179 route-map calculator permit 27767 match community 2_179_179 set community 0:32041 ip community-list standard 2_45_174 permit 65000:2 0:45 0:174 ip community-list standard 2_54_145 permit 65000:2 0:54 0:145 ip community-list standard 2_58_135 permit 65000:2 0:58 0:135 ip community-list standard 2_87_90 permit 65000:2 0:87 0:90 route-map calculator permit 27768 match community 2_45_174 2_54_145 2_58_135 2_87_90 set community 0:7830 ip community-list standard 2_94_203 permit 65000:2 0:94 0:203 route-map calculator permit 27769 match community 2_94_203 set community 0:19082 ip community-list standard 2_81_157 permit 65000:2 0:81 0:157 route-map calculator permit 27770 match community 2_81_157 set community 0:12717 ip community-list standard 2_225_247 permit 65000:2 0:225 0:247 route-map calculator permit 27771 match community 2_225_247 set community 0:55575 ip community-list standard 2_184_226 permit 65000:2 0:184 0:226 route-map calculator permit 27772 match community 2_184_226 set community 0:41584 ip community-list standard 2_68_163 permit 65000:2 0:68 0:163 route-map calculator permit 27773 match community 2_68_163 set community 0:11084 ip community-list standard 2_18_139 permit 65000:2 0:18 0:139 route-map calculator permit 27774 match community 2_18_139 set community 0:2502 ip community-list standard 2_106_245 permit 65000:2 0:106 0:245 route-map calculator permit 27775 match community 2_106_245 set community 0:25970 ip community-list standard 2_23_247 permit 65000:2 0:23 0:247 route-map calculator permit 27776 match community 2_23_247 set community 0:5681 ip community-list standard 2_167_221 permit 65000:2 0:167 0:221 route-map calculator permit 27777 match community 2_167_221 set community 0:36907 ip community-list standard 2_176_243 permit 65000:2 0:176 0:243 ip community-list standard 2_198_216 permit 65000:2 0:198 0:216 route-map calculator permit 27778 match community 2_176_243 2_198_216 set community 0:42768 ip community-list standard 2_25_149 permit 65000:2 0:25 0:149 route-map calculator permit 27779 match community 2_25_149 set community 0:3725 ip community-list standard 2_91_205 permit 65000:2 0:91 0:205 route-map calculator permit 27780 match community 2_91_205 set community 0:18655 ip community-list standard 2_191_238 permit 65000:2 0:191 0:238 route-map calculator permit 27781 match community 2_191_238 set community 0:45458 ip community-list standard 2_175_218 permit 65000:2 0:175 0:218 route-map calculator permit 27782 match community 2_175_218 set community 0:38150 ip community-list standard 2_195_256 permit 65000:2 0:195 0:256 ip community-list standard 2_208_240 permit 65000:2 0:208 0:240 route-map calculator permit 27783 match community 2_195_256 2_208_240 set community 0:49920 ip community-list standard 2_89_205 permit 65000:2 0:89 0:205 route-map calculator permit 27784 match community 2_89_205 set community 0:18245 ip community-list standard 2_152_252 permit 65000:2 0:152 0:252 ip community-list standard 2_168_228 permit 65000:2 0:168 0:228 ip community-list standard 2_171_224 permit 65000:2 0:171 0:224 route-map calculator permit 27785 match community 2_152_252 2_168_228 2_171_224 set community 0:38304 ip community-list standard 2_151_168 permit 65000:2 0:151 0:168 route-map calculator permit 27786 match community 2_151_168 set community 0:25368 ip community-list standard 2_252_256 permit 65000:2 0:252 0:256 route-map calculator permit 27787 match community 2_252_256 set community 0:64512 ip community-list standard 2_2_139 permit 65000:2 0:2 0:139 ip community-list standard 1_22_256 permit 65000:1 0:22 0:256 ip community-list standard 1_23_255 permit 65000:1 0:23 0:255 ip community-list standard 1_24_254 permit 65000:1 0:24 0:254 ip community-list standard 1_25_253 permit 65000:1 0:25 0:253 ip community-list standard 1_26_252 permit 65000:1 0:26 0:252 ip community-list standard 1_27_251 permit 65000:1 0:27 0:251 ip community-list standard 1_28_250 permit 65000:1 0:28 0:250 ip community-list standard 1_29_249 permit 65000:1 0:29 0:249 ip community-list standard 1_30_248 permit 65000:1 0:30 0:248 ip community-list standard 1_31_247 permit 65000:1 0:31 0:247 ip community-list standard 1_32_246 permit 65000:1 0:32 0:246 ip community-list standard 1_33_245 permit 65000:1 0:33 0:245 ip community-list standard 1_34_244 permit 65000:1 0:34 0:244 ip community-list standard 1_35_243 permit 65000:1 0:35 0:243 ip community-list standard 1_36_242 permit 65000:1 0:36 0:242 ip community-list standard 1_37_241 permit 65000:1 0:37 0:241 ip community-list standard 1_38_240 permit 65000:1 0:38 0:240 ip community-list standard 1_39_239 permit 65000:1 0:39 0:239 ip community-list standard 1_40_238 permit 65000:1 0:40 0:238 ip community-list standard 1_41_237 permit 65000:1 0:41 0:237 ip community-list standard 1_42_236 permit 65000:1 0:42 0:236 ip community-list standard 1_43_235 permit 65000:1 0:43 0:235 ip community-list standard 1_44_234 permit 65000:1 0:44 0:234 ip community-list standard 1_45_233 permit 65000:1 0:45 0:233 ip community-list standard 1_46_232 permit 65000:1 0:46 0:232 ip community-list standard 1_47_231 permit 65000:1 0:47 0:231 ip community-list standard 1_48_230 permit 65000:1 0:48 0:230 ip community-list standard 1_49_229 permit 65000:1 0:49 0:229 ip community-list standard 1_50_228 permit 65000:1 0:50 0:228 ip community-list standard 1_51_227 permit 65000:1 0:51 0:227 ip community-list standard 1_52_226 permit 65000:1 0:52 0:226 ip community-list standard 1_53_225 permit 65000:1 0:53 0:225 ip community-list standard 1_54_224 permit 65000:1 0:54 0:224 ip community-list standard 1_55_223 permit 65000:1 0:55 0:223 ip community-list standard 1_56_222 permit 65000:1 0:56 0:222 ip community-list standard 1_57_221 permit 65000:1 0:57 0:221 ip community-list standard 1_58_220 permit 65000:1 0:58 0:220 ip community-list standard 1_59_219 permit 65000:1 0:59 0:219 ip community-list standard 1_60_218 permit 65000:1 0:60 0:218 ip community-list standard 1_61_217 permit 65000:1 0:61 0:217 ip community-list standard 1_62_216 permit 65000:1 0:62 0:216 ip community-list standard 1_63_215 permit 65000:1 0:63 0:215 ip community-list standard 1_64_214 permit 65000:1 0:64 0:214 ip community-list standard 1_65_213 permit 65000:1 0:65 0:213 ip community-list standard 1_66_212 permit 65000:1 0:66 0:212 ip community-list standard 1_67_211 permit 65000:1 0:67 0:211 ip community-list standard 1_68_210 permit 65000:1 0:68 0:210 ip community-list standard 1_69_209 permit 65000:1 0:69 0:209 ip community-list standard 1_70_208 permit 65000:1 0:70 0:208 ip community-list standard 1_71_207 permit 65000:1 0:71 0:207 ip community-list standard 1_72_206 permit 65000:1 0:72 0:206 ip community-list standard 1_73_205 permit 65000:1 0:73 0:205 ip community-list standard 1_74_204 permit 65000:1 0:74 0:204 ip community-list standard 1_75_203 permit 65000:1 0:75 0:203 ip community-list standard 1_76_202 permit 65000:1 0:76 0:202 ip community-list standard 1_77_201 permit 65000:1 0:77 0:201 ip community-list standard 1_78_200 permit 65000:1 0:78 0:200 ip community-list standard 1_79_199 permit 65000:1 0:79 0:199 ip community-list standard 1_80_198 permit 65000:1 0:80 0:198 ip community-list standard 1_81_197 permit 65000:1 0:81 0:197 ip community-list standard 1_82_196 permit 65000:1 0:82 0:196 ip community-list standard 1_83_195 permit 65000:1 0:83 0:195 ip community-list standard 1_84_194 permit 65000:1 0:84 0:194 ip community-list standard 1_85_193 permit 65000:1 0:85 0:193 ip community-list standard 1_86_192 permit 65000:1 0:86 0:192 ip community-list standard 1_87_191 permit 65000:1 0:87 0:191 ip community-list standard 1_88_190 permit 65000:1 0:88 0:190 ip community-list standard 1_89_189 permit 65000:1 0:89 0:189 ip community-list standard 1_90_188 permit 65000:1 0:90 0:188 ip community-list standard 1_91_187 permit 65000:1 0:91 0:187 ip community-list standard 1_92_186 permit 65000:1 0:92 0:186 ip community-list standard 1_93_185 permit 65000:1 0:93 0:185 ip community-list standard 1_94_184 permit 65000:1 0:94 0:184 ip community-list standard 1_95_183 permit 65000:1 0:95 0:183 ip community-list standard 1_96_182 permit 65000:1 0:96 0:182 ip community-list standard 1_97_181 permit 65000:1 0:97 0:181 ip community-list standard 1_98_180 permit 65000:1 0:98 0:180 ip community-list standard 1_99_179 permit 65000:1 0:99 0:179 ip community-list standard 1_100_178 permit 65000:1 0:100 0:178 ip community-list standard 1_101_177 permit 65000:1 0:101 0:177 ip community-list standard 1_102_176 permit 65000:1 0:102 0:176 ip community-list standard 1_103_175 permit 65000:1 0:103 0:175 ip community-list standard 1_104_174 permit 65000:1 0:104 0:174 ip community-list standard 1_105_173 permit 65000:1 0:105 0:173 ip community-list standard 1_106_172 permit 65000:1 0:106 0:172 ip community-list standard 1_107_171 permit 65000:1 0:107 0:171 ip community-list standard 1_108_170 permit 65000:1 0:108 0:170 ip community-list standard 1_109_169 permit 65000:1 0:109 0:169 ip community-list standard 1_110_168 permit 65000:1 0:110 0:168 ip community-list standard 1_111_167 permit 65000:1 0:111 0:167 ip community-list standard 1_112_166 permit 65000:1 0:112 0:166 ip community-list standard 1_113_165 permit 65000:1 0:113 0:165 ip community-list standard 1_114_164 permit 65000:1 0:114 0:164 ip community-list standard 1_115_163 permit 65000:1 0:115 0:163 ip community-list standard 1_116_162 permit 65000:1 0:116 0:162 ip community-list standard 1_117_161 permit 65000:1 0:117 0:161 ip community-list standard 1_118_160 permit 65000:1 0:118 0:160 ip community-list standard 1_119_159 permit 65000:1 0:119 0:159 ip community-list standard 1_120_158 permit 65000:1 0:120 0:158 ip community-list standard 1_121_157 permit 65000:1 0:121 0:157 ip community-list standard 1_122_156 permit 65000:1 0:122 0:156 ip community-list standard 1_123_155 permit 65000:1 0:123 0:155 ip community-list standard 1_124_154 permit 65000:1 0:124 0:154 ip community-list standard 1_125_153 permit 65000:1 0:125 0:153 ip community-list standard 1_126_152 permit 65000:1 0:126 0:152 ip community-list standard 1_127_151 permit 65000:1 0:127 0:151 ip community-list standard 1_128_150 permit 65000:1 0:128 0:150 ip community-list standard 1_129_149 permit 65000:1 0:129 0:149 ip community-list standard 1_130_148 permit 65000:1 0:130 0:148 ip community-list standard 1_131_147 permit 65000:1 0:131 0:147 ip community-list standard 1_132_146 permit 65000:1 0:132 0:146 ip community-list standard 1_133_145 permit 65000:1 0:133 0:145 ip community-list standard 1_134_144 permit 65000:1 0:134 0:144 ip community-list standard 1_135_143 permit 65000:1 0:135 0:143 ip community-list standard 1_136_142 permit 65000:1 0:136 0:142 ip community-list standard 1_137_141 permit 65000:1 0:137 0:141 ip community-list standard 1_138_140 permit 65000:1 0:138 0:140 ip community-list standard 1_139_139 permit 65000:1 0:139 0:139 route-map calculator permit 27788 match community 2_2_139 1_22_256 1_23_255 1_24_254 1_25_253 set community 0:278 route-map calculator permit 27789 match community 1_26_252 1_27_251 1_28_250 1_29_249 1_30_248 set community 0:278 route-map calculator permit 27790 match community 1_31_247 1_32_246 1_33_245 1_34_244 1_35_243 set community 0:278 route-map calculator permit 27791 match community 1_36_242 1_37_241 1_38_240 1_39_239 1_40_238 set community 0:278 route-map calculator permit 27792 match community 1_41_237 1_42_236 1_43_235 1_44_234 1_45_233 set community 0:278 route-map calculator permit 27793 match community 1_46_232 1_47_231 1_48_230 1_49_229 1_50_228 set community 0:278 route-map calculator permit 27794 match community 1_51_227 1_52_226 1_53_225 1_54_224 1_55_223 set community 0:278 route-map calculator permit 27795 match community 1_56_222 1_57_221 1_58_220 1_59_219 1_60_218 set community 0:278 route-map calculator permit 27796 match community 1_61_217 1_62_216 1_63_215 1_64_214 1_65_213 set community 0:278 route-map calculator permit 27797 match community 1_66_212 1_67_211 1_68_210 1_69_209 1_70_208 set community 0:278 route-map calculator permit 27798 match community 1_71_207 1_72_206 1_73_205 1_74_204 1_75_203 set community 0:278 route-map calculator permit 27799 match community 1_76_202 1_77_201 1_78_200 1_79_199 1_80_198 set community 0:278 route-map calculator permit 27800 match community 1_81_197 1_82_196 1_83_195 1_84_194 1_85_193 set community 0:278 route-map calculator permit 27801 match community 1_86_192 1_87_191 1_88_190 1_89_189 1_90_188 set community 0:278 route-map calculator permit 27802 match community 1_91_187 1_92_186 1_93_185 1_94_184 1_95_183 set community 0:278 route-map calculator permit 27803 match community 1_96_182 1_97_181 1_98_180 1_99_179 1_100_178 set community 0:278 route-map calculator permit 27804 match community 1_101_177 1_102_176 1_103_175 1_104_174 1_105_173 set community 0:278 route-map calculator permit 27805 match community 1_106_172 1_107_171 1_108_170 1_109_169 1_110_168 set community 0:278 route-map calculator permit 27806 match community 1_111_167 1_112_166 1_113_165 1_114_164 1_115_163 set community 0:278 route-map calculator permit 27807 match community 1_116_162 1_117_161 1_118_160 1_119_159 1_120_158 set community 0:278 route-map calculator permit 27808 match community 1_121_157 1_122_156 1_123_155 1_124_154 1_125_153 set community 0:278 route-map calculator permit 27809 match community 1_126_152 1_127_151 1_128_150 1_129_149 1_130_148 set community 0:278 route-map calculator permit 27810 match community 1_131_147 1_132_146 1_133_145 1_134_144 1_135_143 set community 0:278 route-map calculator permit 27811 match community 1_136_142 1_137_141 1_138_140 1_139_139 set community 0:278 ip community-list standard 2_204_212 permit 65000:2 0:204 0:212 route-map calculator permit 27812 match community 2_204_212 set community 0:43248 ip community-list standard 2_37_127 permit 65000:2 0:37 0:127 route-map calculator permit 27813 match community 2_37_127 set community 0:4699 ip community-list standard 2_38_137 permit 65000:2 0:38 0:137 route-map calculator permit 27814 match community 2_38_137 set community 0:5206 ip community-list standard 1_13_256 permit 65000:1 0:13 0:256 ip community-list standard 1_14_255 permit 65000:1 0:14 0:255 ip community-list standard 1_15_254 permit 65000:1 0:15 0:254 ip community-list standard 1_16_253 permit 65000:1 0:16 0:253 ip community-list standard 1_17_252 permit 65000:1 0:17 0:252 ip community-list standard 1_18_251 permit 65000:1 0:18 0:251 ip community-list standard 1_19_250 permit 65000:1 0:19 0:250 ip community-list standard 1_20_249 permit 65000:1 0:20 0:249 ip community-list standard 1_21_248 permit 65000:1 0:21 0:248 ip community-list standard 1_22_247 permit 65000:1 0:22 0:247 ip community-list standard 1_23_246 permit 65000:1 0:23 0:246 ip community-list standard 1_24_245 permit 65000:1 0:24 0:245 ip community-list standard 1_25_244 permit 65000:1 0:25 0:244 ip community-list standard 1_26_243 permit 65000:1 0:26 0:243 ip community-list standard 1_27_242 permit 65000:1 0:27 0:242 ip community-list standard 1_28_241 permit 65000:1 0:28 0:241 ip community-list standard 1_29_240 permit 65000:1 0:29 0:240 ip community-list standard 1_30_239 permit 65000:1 0:30 0:239 ip community-list standard 1_31_238 permit 65000:1 0:31 0:238 ip community-list standard 1_32_237 permit 65000:1 0:32 0:237 ip community-list standard 1_33_236 permit 65000:1 0:33 0:236 ip community-list standard 1_34_235 permit 65000:1 0:34 0:235 ip community-list standard 1_35_234 permit 65000:1 0:35 0:234 ip community-list standard 1_36_233 permit 65000:1 0:36 0:233 ip community-list standard 1_37_232 permit 65000:1 0:37 0:232 ip community-list standard 1_38_231 permit 65000:1 0:38 0:231 ip community-list standard 1_39_230 permit 65000:1 0:39 0:230 ip community-list standard 1_40_229 permit 65000:1 0:40 0:229 ip community-list standard 1_41_228 permit 65000:1 0:41 0:228 ip community-list standard 1_42_227 permit 65000:1 0:42 0:227 ip community-list standard 1_43_226 permit 65000:1 0:43 0:226 ip community-list standard 1_44_225 permit 65000:1 0:44 0:225 ip community-list standard 1_45_224 permit 65000:1 0:45 0:224 ip community-list standard 1_46_223 permit 65000:1 0:46 0:223 ip community-list standard 1_47_222 permit 65000:1 0:47 0:222 ip community-list standard 1_48_221 permit 65000:1 0:48 0:221 ip community-list standard 1_49_220 permit 65000:1 0:49 0:220 ip community-list standard 1_50_219 permit 65000:1 0:50 0:219 ip community-list standard 1_51_218 permit 65000:1 0:51 0:218 ip community-list standard 1_52_217 permit 65000:1 0:52 0:217 ip community-list standard 1_53_216 permit 65000:1 0:53 0:216 ip community-list standard 1_54_215 permit 65000:1 0:54 0:215 ip community-list standard 1_55_214 permit 65000:1 0:55 0:214 ip community-list standard 1_56_213 permit 65000:1 0:56 0:213 ip community-list standard 1_57_212 permit 65000:1 0:57 0:212 ip community-list standard 1_58_211 permit 65000:1 0:58 0:211 ip community-list standard 1_59_210 permit 65000:1 0:59 0:210 ip community-list standard 1_60_209 permit 65000:1 0:60 0:209 ip community-list standard 1_61_208 permit 65000:1 0:61 0:208 ip community-list standard 1_62_207 permit 65000:1 0:62 0:207 ip community-list standard 1_63_206 permit 65000:1 0:63 0:206 ip community-list standard 1_64_205 permit 65000:1 0:64 0:205 ip community-list standard 1_65_204 permit 65000:1 0:65 0:204 ip community-list standard 1_66_203 permit 65000:1 0:66 0:203 ip community-list standard 1_67_202 permit 65000:1 0:67 0:202 ip community-list standard 1_68_201 permit 65000:1 0:68 0:201 ip community-list standard 1_69_200 permit 65000:1 0:69 0:200 ip community-list standard 1_70_199 permit 65000:1 0:70 0:199 ip community-list standard 1_71_198 permit 65000:1 0:71 0:198 ip community-list standard 1_72_197 permit 65000:1 0:72 0:197 ip community-list standard 1_73_196 permit 65000:1 0:73 0:196 ip community-list standard 1_74_195 permit 65000:1 0:74 0:195 ip community-list standard 1_75_194 permit 65000:1 0:75 0:194 ip community-list standard 1_76_193 permit 65000:1 0:76 0:193 ip community-list standard 1_77_192 permit 65000:1 0:77 0:192 ip community-list standard 1_78_191 permit 65000:1 0:78 0:191 ip community-list standard 1_79_190 permit 65000:1 0:79 0:190 ip community-list standard 1_80_189 permit 65000:1 0:80 0:189 ip community-list standard 1_81_188 permit 65000:1 0:81 0:188 ip community-list standard 1_82_187 permit 65000:1 0:82 0:187 ip community-list standard 1_83_186 permit 65000:1 0:83 0:186 ip community-list standard 1_84_185 permit 65000:1 0:84 0:185 ip community-list standard 1_85_184 permit 65000:1 0:85 0:184 ip community-list standard 1_86_183 permit 65000:1 0:86 0:183 ip community-list standard 1_87_182 permit 65000:1 0:87 0:182 ip community-list standard 1_88_181 permit 65000:1 0:88 0:181 ip community-list standard 1_89_180 permit 65000:1 0:89 0:180 ip community-list standard 1_90_179 permit 65000:1 0:90 0:179 ip community-list standard 1_91_178 permit 65000:1 0:91 0:178 ip community-list standard 1_92_177 permit 65000:1 0:92 0:177 ip community-list standard 1_93_176 permit 65000:1 0:93 0:176 ip community-list standard 1_94_175 permit 65000:1 0:94 0:175 ip community-list standard 1_95_174 permit 65000:1 0:95 0:174 ip community-list standard 1_96_173 permit 65000:1 0:96 0:173 ip community-list standard 1_97_172 permit 65000:1 0:97 0:172 ip community-list standard 1_98_171 permit 65000:1 0:98 0:171 ip community-list standard 1_99_170 permit 65000:1 0:99 0:170 ip community-list standard 1_100_169 permit 65000:1 0:100 0:169 ip community-list standard 1_101_168 permit 65000:1 0:101 0:168 ip community-list standard 1_102_167 permit 65000:1 0:102 0:167 ip community-list standard 1_103_166 permit 65000:1 0:103 0:166 ip community-list standard 1_104_165 permit 65000:1 0:104 0:165 ip community-list standard 1_105_164 permit 65000:1 0:105 0:164 ip community-list standard 1_106_163 permit 65000:1 0:106 0:163 ip community-list standard 1_107_162 permit 65000:1 0:107 0:162 ip community-list standard 1_108_161 permit 65000:1 0:108 0:161 ip community-list standard 1_109_160 permit 65000:1 0:109 0:160 ip community-list standard 1_110_159 permit 65000:1 0:110 0:159 ip community-list standard 1_111_158 permit 65000:1 0:111 0:158 ip community-list standard 1_112_157 permit 65000:1 0:112 0:157 ip community-list standard 1_113_156 permit 65000:1 0:113 0:156 ip community-list standard 1_114_155 permit 65000:1 0:114 0:155 ip community-list standard 1_115_154 permit 65000:1 0:115 0:154 ip community-list standard 1_116_153 permit 65000:1 0:116 0:153 ip community-list standard 1_117_152 permit 65000:1 0:117 0:152 ip community-list standard 1_118_151 permit 65000:1 0:118 0:151 ip community-list standard 1_119_150 permit 65000:1 0:119 0:150 ip community-list standard 1_120_149 permit 65000:1 0:120 0:149 ip community-list standard 1_121_148 permit 65000:1 0:121 0:148 ip community-list standard 1_122_147 permit 65000:1 0:122 0:147 ip community-list standard 1_123_146 permit 65000:1 0:123 0:146 ip community-list standard 1_124_145 permit 65000:1 0:124 0:145 ip community-list standard 1_125_144 permit 65000:1 0:125 0:144 ip community-list standard 1_126_143 permit 65000:1 0:126 0:143 ip community-list standard 1_127_142 permit 65000:1 0:127 0:142 ip community-list standard 1_128_141 permit 65000:1 0:128 0:141 ip community-list standard 1_129_140 permit 65000:1 0:129 0:140 ip community-list standard 1_130_139 permit 65000:1 0:130 0:139 ip community-list standard 1_131_138 permit 65000:1 0:131 0:138 ip community-list standard 1_132_137 permit 65000:1 0:132 0:137 ip community-list standard 1_133_136 permit 65000:1 0:133 0:136 ip community-list standard 1_134_135 permit 65000:1 0:134 0:135 route-map calculator permit 27815 match community 1_13_256 1_14_255 1_15_254 1_16_253 1_17_252 set community 0:269 route-map calculator permit 27816 match community 1_18_251 1_19_250 1_20_249 1_21_248 1_22_247 set community 0:269 route-map calculator permit 27817 match community 1_23_246 1_24_245 1_25_244 1_26_243 1_27_242 set community 0:269 route-map calculator permit 27818 match community 1_28_241 1_29_240 1_30_239 1_31_238 1_32_237 set community 0:269 route-map calculator permit 27819 match community 1_33_236 1_34_235 1_35_234 1_36_233 1_37_232 set community 0:269 route-map calculator permit 27820 match community 1_38_231 1_39_230 1_40_229 1_41_228 1_42_227 set community 0:269 route-map calculator permit 27821 match community 1_43_226 1_44_225 1_45_224 1_46_223 1_47_222 set community 0:269 route-map calculator permit 27822 match community 1_48_221 1_49_220 1_50_219 1_51_218 1_52_217 set community 0:269 route-map calculator permit 27823 match community 1_53_216 1_54_215 1_55_214 1_56_213 1_57_212 set community 0:269 route-map calculator permit 27824 match community 1_58_211 1_59_210 1_60_209 1_61_208 1_62_207 set community 0:269 route-map calculator permit 27825 match community 1_63_206 1_64_205 1_65_204 1_66_203 1_67_202 set community 0:269 route-map calculator permit 27826 match community 1_68_201 1_69_200 1_70_199 1_71_198 1_72_197 set community 0:269 route-map calculator permit 27827 match community 1_73_196 1_74_195 1_75_194 1_76_193 1_77_192 set community 0:269 route-map calculator permit 27828 match community 1_78_191 1_79_190 1_80_189 1_81_188 1_82_187 set community 0:269 route-map calculator permit 27829 match community 1_83_186 1_84_185 1_85_184 1_86_183 1_87_182 set community 0:269 route-map calculator permit 27830 match community 1_88_181 1_89_180 1_90_179 1_91_178 1_92_177 set community 0:269 route-map calculator permit 27831 match community 1_93_176 1_94_175 1_95_174 1_96_173 1_97_172 set community 0:269 route-map calculator permit 27832 match community 1_98_171 1_99_170 1_100_169 1_101_168 1_102_167 set community 0:269 route-map calculator permit 27833 match community 1_103_166 1_104_165 1_105_164 1_106_163 1_107_162 set community 0:269 route-map calculator permit 27834 match community 1_108_161 1_109_160 1_110_159 1_111_158 1_112_157 set community 0:269 route-map calculator permit 27835 match community 1_113_156 1_114_155 1_115_154 1_116_153 1_117_152 set community 0:269 route-map calculator permit 27836 match community 1_118_151 1_119_150 1_120_149 1_121_148 1_122_147 set community 0:269 route-map calculator permit 27837 match community 1_123_146 1_124_145 1_125_144 1_126_143 1_127_142 set community 0:269 route-map calculator permit 27838 match community 1_128_141 1_129_140 1_130_139 1_131_138 1_132_137 set community 0:269 route-map calculator permit 27839 match community 1_133_136 1_134_135 set community 0:269 ip community-list standard 2_41_203 permit 65000:2 0:41 0:203 route-map calculator permit 27840 match community 2_41_203 set community 0:8323 ip community-list standard 2_62_234 permit 65000:2 0:62 0:234 ip community-list standard 2_78_186 permit 65000:2 0:78 0:186 ip community-list standard 2_93_156 permit 65000:2 0:93 0:156 ip community-list standard 2_117_124 permit 65000:2 0:117 0:124 route-map calculator permit 27841 match community 2_62_234 2_78_186 2_93_156 2_117_124 set community 0:14508 ip community-list standard 2_87_131 permit 65000:2 0:87 0:131 route-map calculator permit 27842 match community 2_87_131 set community 0:11397 ip community-list standard 2_11_163 permit 65000:2 0:11 0:163 route-map calculator permit 27843 match community 2_11_163 set community 0:1793 ip community-list standard 2_76_254 permit 65000:2 0:76 0:254 ip community-list standard 2_127_152 permit 65000:2 0:127 0:152 route-map calculator permit 27844 match community 2_76_254 2_127_152 set community 0:19304 ip community-list standard 2_29_164 permit 65000:2 0:29 0:164 ip community-list standard 2_41_116 permit 65000:2 0:41 0:116 ip community-list standard 2_58_82 permit 65000:2 0:58 0:82 route-map calculator permit 27845 match community 2_29_164 2_41_116 2_58_82 set community 0:4756 ip community-list standard 2_238_255 permit 65000:2 0:238 0:255 route-map calculator permit 27846 match community 2_238_255 set community 0:60690 ip community-list standard 2_172_222 permit 65000:2 0:172 0:222 route-map calculator permit 27847 match community 2_172_222 set community 0:38184 ip community-list standard 1_145_256 permit 65000:1 0:145 0:256 ip community-list standard 1_146_255 permit 65000:1 0:146 0:255 ip community-list standard 1_147_254 permit 65000:1 0:147 0:254 ip community-list standard 1_148_253 permit 65000:1 0:148 0:253 ip community-list standard 1_149_252 permit 65000:1 0:149 0:252 ip community-list standard 1_150_251 permit 65000:1 0:150 0:251 ip community-list standard 1_151_250 permit 65000:1 0:151 0:250 ip community-list standard 1_152_249 permit 65000:1 0:152 0:249 ip community-list standard 1_153_248 permit 65000:1 0:153 0:248 ip community-list standard 1_154_247 permit 65000:1 0:154 0:247 ip community-list standard 1_155_246 permit 65000:1 0:155 0:246 ip community-list standard 1_156_245 permit 65000:1 0:156 0:245 ip community-list standard 1_157_244 permit 65000:1 0:157 0:244 ip community-list standard 1_158_243 permit 65000:1 0:158 0:243 ip community-list standard 1_159_242 permit 65000:1 0:159 0:242 ip community-list standard 1_160_241 permit 65000:1 0:160 0:241 ip community-list standard 1_161_240 permit 65000:1 0:161 0:240 ip community-list standard 1_162_239 permit 65000:1 0:162 0:239 ip community-list standard 1_163_238 permit 65000:1 0:163 0:238 ip community-list standard 1_164_237 permit 65000:1 0:164 0:237 ip community-list standard 1_165_236 permit 65000:1 0:165 0:236 ip community-list standard 1_166_235 permit 65000:1 0:166 0:235 ip community-list standard 1_167_234 permit 65000:1 0:167 0:234 ip community-list standard 1_168_233 permit 65000:1 0:168 0:233 ip community-list standard 1_169_232 permit 65000:1 0:169 0:232 ip community-list standard 1_170_231 permit 65000:1 0:170 0:231 ip community-list standard 1_171_230 permit 65000:1 0:171 0:230 ip community-list standard 1_172_229 permit 65000:1 0:172 0:229 ip community-list standard 1_173_228 permit 65000:1 0:173 0:228 ip community-list standard 1_174_227 permit 65000:1 0:174 0:227 ip community-list standard 1_175_226 permit 65000:1 0:175 0:226 ip community-list standard 1_176_225 permit 65000:1 0:176 0:225 ip community-list standard 1_177_224 permit 65000:1 0:177 0:224 ip community-list standard 1_178_223 permit 65000:1 0:178 0:223 ip community-list standard 1_179_222 permit 65000:1 0:179 0:222 ip community-list standard 1_180_221 permit 65000:1 0:180 0:221 ip community-list standard 1_181_220 permit 65000:1 0:181 0:220 ip community-list standard 1_182_219 permit 65000:1 0:182 0:219 ip community-list standard 1_183_218 permit 65000:1 0:183 0:218 ip community-list standard 1_184_217 permit 65000:1 0:184 0:217 ip community-list standard 1_185_216 permit 65000:1 0:185 0:216 ip community-list standard 1_186_215 permit 65000:1 0:186 0:215 ip community-list standard 1_187_214 permit 65000:1 0:187 0:214 ip community-list standard 1_188_213 permit 65000:1 0:188 0:213 ip community-list standard 1_189_212 permit 65000:1 0:189 0:212 ip community-list standard 1_190_211 permit 65000:1 0:190 0:211 ip community-list standard 1_191_210 permit 65000:1 0:191 0:210 ip community-list standard 1_192_209 permit 65000:1 0:192 0:209 ip community-list standard 1_193_208 permit 65000:1 0:193 0:208 ip community-list standard 1_194_207 permit 65000:1 0:194 0:207 ip community-list standard 1_195_206 permit 65000:1 0:195 0:206 ip community-list standard 1_196_205 permit 65000:1 0:196 0:205 ip community-list standard 1_197_204 permit 65000:1 0:197 0:204 ip community-list standard 1_198_203 permit 65000:1 0:198 0:203 ip community-list standard 1_199_202 permit 65000:1 0:199 0:202 ip community-list standard 1_200_201 permit 65000:1 0:200 0:201 route-map calculator permit 27848 match community 1_145_256 1_146_255 1_147_254 1_148_253 1_149_252 set community 0:401 route-map calculator permit 27849 match community 1_150_251 1_151_250 1_152_249 1_153_248 1_154_247 set community 0:401 route-map calculator permit 27850 match community 1_155_246 1_156_245 1_157_244 1_158_243 1_159_242 set community 0:401 route-map calculator permit 27851 match community 1_160_241 1_161_240 1_162_239 1_163_238 1_164_237 set community 0:401 route-map calculator permit 27852 match community 1_165_236 1_166_235 1_167_234 1_168_233 1_169_232 set community 0:401 route-map calculator permit 27853 match community 1_170_231 1_171_230 1_172_229 1_173_228 1_174_227 set community 0:401 route-map calculator permit 27854 match community 1_175_226 1_176_225 1_177_224 1_178_223 1_179_222 set community 0:401 route-map calculator permit 27855 match community 1_180_221 1_181_220 1_182_219 1_183_218 1_184_217 set community 0:401 route-map calculator permit 27856 match community 1_185_216 1_186_215 1_187_214 1_188_213 1_189_212 set community 0:401 route-map calculator permit 27857 match community 1_190_211 1_191_210 1_192_209 1_193_208 1_194_207 set community 0:401 route-map calculator permit 27858 match community 1_195_206 1_196_205 1_197_204 1_198_203 1_199_202 set community 0:401 route-map calculator permit 27859 match community 1_200_201 set community 0:401 ip community-list standard 2_107_215 permit 65000:2 0:107 0:215 route-map calculator permit 27860 match community 2_107_215 set community 0:23005 ip community-list standard 2_209_227 permit 65000:2 0:209 0:227 route-map calculator permit 27861 match community 2_209_227 set community 0:47443 ip community-list standard 2_78_194 permit 65000:2 0:78 0:194 ip community-list standard 2_97_156 permit 65000:2 0:97 0:156 route-map calculator permit 27862 match community 2_78_194 2_97_156 set community 0:15132 ip community-list standard 2_97_99 permit 65000:2 0:97 0:99 route-map calculator permit 27863 match community 2_97_99 set community 0:9603 ip community-list standard 2_153_239 permit 65000:2 0:153 0:239 route-map calculator permit 27864 match community 2_153_239 set community 0:36567 ip community-list standard 2_132_151 permit 65000:2 0:132 0:151 route-map calculator permit 27865 match community 2_132_151 set community 0:19932 ip community-list standard 2_45_232 permit 65000:2 0:45 0:232 ip community-list standard 2_58_180 permit 65000:2 0:58 0:180 ip community-list standard 2_60_174 permit 65000:2 0:60 0:174 ip community-list standard 2_72_145 permit 65000:2 0:72 0:145 ip community-list standard 2_87_120 permit 65000:2 0:87 0:120 ip community-list standard 2_90_116 permit 65000:2 0:90 0:116 route-map calculator permit 27866 match community 2_45_232 2_58_180 2_60_174 2_72_145 2_87_120 set community 0:10440 route-map calculator permit 27867 match community 2_90_116 set community 0:10440 ip community-list standard 2_125_241 permit 65000:2 0:125 0:241 route-map calculator permit 27868 match community 2_125_241 set community 0:30125 ip community-list standard 2_40_252 permit 65000:2 0:40 0:252 ip community-list standard 2_42_240 permit 65000:2 0:42 0:240 ip community-list standard 2_45_224 permit 65000:2 0:45 0:224 ip community-list standard 2_48_210 permit 65000:2 0:48 0:210 ip community-list standard 2_56_180 permit 65000:2 0:56 0:180 ip community-list standard 2_60_168 permit 65000:2 0:60 0:168 ip community-list standard 2_63_160 permit 65000:2 0:63 0:160 ip community-list standard 2_70_144 permit 65000:2 0:70 0:144 ip community-list standard 2_72_140 permit 65000:2 0:72 0:140 ip community-list standard 2_80_126 permit 65000:2 0:80 0:126 ip community-list standard 2_84_120 permit 65000:2 0:84 0:120 ip community-list standard 2_90_112 permit 65000:2 0:90 0:112 ip community-list standard 2_96_105 permit 65000:2 0:96 0:105 route-map calculator permit 27869 match community 2_40_252 2_42_240 2_45_224 2_48_210 2_56_180 set community 0:10080 route-map calculator permit 27870 match community 2_60_168 2_63_160 2_70_144 2_72_140 2_80_126 set community 0:10080 route-map calculator permit 27871 match community 2_84_120 2_90_112 2_96_105 set community 0:10080 ip community-list standard 2_149_187 permit 65000:2 0:149 0:187 route-map calculator permit 27872 match community 2_149_187 set community 0:27863 ip community-list standard 2_114_239 permit 65000:2 0:114 0:239 route-map calculator permit 27873 match community 2_114_239 set community 0:27246 ip community-list standard 2_151_186 permit 65000:2 0:151 0:186 route-map calculator permit 27874 match community 2_151_186 set community 0:28086 ip community-list standard 2_202_218 permit 65000:2 0:202 0:218 route-map calculator permit 27875 match community 2_202_218 set community 0:44036 ip community-list standard 2_116_155 permit 65000:2 0:116 0:155 ip community-list standard 2_124_145 permit 65000:2 0:124 0:145 route-map calculator permit 27876 match community 2_116_155 2_124_145 set community 0:17980 ip community-list standard 2_65_254 permit 65000:2 0:65 0:254 ip community-list standard 2_127_130 permit 65000:2 0:127 0:130 route-map calculator permit 27877 match community 2_65_254 2_127_130 set community 0:16510 ip community-list standard 1_1_85 permit 65000:1 0:1 0:85 ip community-list standard 2_1_86 permit 65000:2 0:1 0:86 ip community-list standard 2_2_43 permit 65000:2 0:2 0:43 ip community-list standard 1_2_84 permit 65000:1 0:2 0:84 ip community-list standard 1_3_83 permit 65000:1 0:3 0:83 ip community-list standard 1_4_82 permit 65000:1 0:4 0:82 ip community-list standard 1_5_81 permit 65000:1 0:5 0:81 ip community-list standard 1_6_80 permit 65000:1 0:6 0:80 ip community-list standard 1_7_79 permit 65000:1 0:7 0:79 ip community-list standard 1_8_78 permit 65000:1 0:8 0:78 ip community-list standard 1_9_77 permit 65000:1 0:9 0:77 ip community-list standard 1_10_76 permit 65000:1 0:10 0:76 ip community-list standard 1_11_75 permit 65000:1 0:11 0:75 ip community-list standard 1_12_74 permit 65000:1 0:12 0:74 ip community-list standard 1_13_73 permit 65000:1 0:13 0:73 ip community-list standard 1_14_72 permit 65000:1 0:14 0:72 ip community-list standard 1_15_71 permit 65000:1 0:15 0:71 ip community-list standard 1_16_70 permit 65000:1 0:16 0:70 ip community-list standard 1_17_69 permit 65000:1 0:17 0:69 ip community-list standard 1_18_68 permit 65000:1 0:18 0:68 ip community-list standard 1_19_67 permit 65000:1 0:19 0:67 ip community-list standard 1_20_66 permit 65000:1 0:20 0:66 ip community-list standard 1_21_65 permit 65000:1 0:21 0:65 ip community-list standard 1_22_64 permit 65000:1 0:22 0:64 ip community-list standard 1_23_63 permit 65000:1 0:23 0:63 ip community-list standard 1_24_62 permit 65000:1 0:24 0:62 ip community-list standard 1_25_61 permit 65000:1 0:25 0:61 ip community-list standard 1_26_60 permit 65000:1 0:26 0:60 ip community-list standard 1_27_59 permit 65000:1 0:27 0:59 ip community-list standard 1_28_58 permit 65000:1 0:28 0:58 ip community-list standard 1_29_57 permit 65000:1 0:29 0:57 ip community-list standard 1_30_56 permit 65000:1 0:30 0:56 ip community-list standard 1_31_55 permit 65000:1 0:31 0:55 ip community-list standard 1_32_54 permit 65000:1 0:32 0:54 ip community-list standard 1_33_53 permit 65000:1 0:33 0:53 ip community-list standard 1_34_52 permit 65000:1 0:34 0:52 ip community-list standard 1_35_51 permit 65000:1 0:35 0:51 ip community-list standard 1_36_50 permit 65000:1 0:36 0:50 ip community-list standard 1_37_49 permit 65000:1 0:37 0:49 ip community-list standard 1_38_48 permit 65000:1 0:38 0:48 ip community-list standard 1_39_47 permit 65000:1 0:39 0:47 ip community-list standard 1_40_46 permit 65000:1 0:40 0:46 ip community-list standard 1_41_45 permit 65000:1 0:41 0:45 ip community-list standard 1_42_44 permit 65000:1 0:42 0:44 ip community-list standard 1_43_43 permit 65000:1 0:43 0:43 ip community-list expanded c86 permit 1 ^65000:4_0:86_0:1$ ip community-list expanded c86 permit 2 ^65000:3_0:87_0:1$ ip community-list expanded c86 permit 3 ^65000:3_0:88_0:2$ ip community-list expanded c86 permit 4 ^65000:3_0:89_0:3$ ip community-list expanded c86 permit 5 ^65000:3_0:90_0:4$ ip community-list expanded c86 permit 6 ^65000:3_0:91_0:5$ ip community-list expanded c86 permit 7 ^65000:3_0:92_0:6$ ip community-list expanded c86 permit 8 ^65000:3_0:93_0:7$ ip community-list expanded c86 permit 9 ^65000:3_0:94_0:8$ ip community-list expanded c86 permit 10 ^65000:3_0:95_0:9$ ip community-list expanded c86 permit 11 ^65000:3_0:96_0:10$ ip community-list expanded c86 permit 12 ^65000:3_0:97_0:11$ ip community-list expanded c86 permit 13 ^65000:3_0:98_0:12$ ip community-list expanded c86 permit 14 ^65000:3_0:99_0:13$ ip community-list expanded c86 permit 15 ^65000:3_0:100_0:14$ ip community-list expanded c86 permit 16 ^65000:3_0:101_0:15$ ip community-list expanded c86 permit 17 ^65000:3_0:102_0:16$ ip community-list expanded c86 permit 18 ^65000:3_0:103_0:17$ ip community-list expanded c86 permit 19 ^65000:3_0:104_0:18$ ip community-list expanded c86 permit 20 ^65000:3_0:105_0:19$ ip community-list expanded c86 permit 21 ^65000:3_0:106_0:20$ ip community-list expanded c86 permit 22 ^65000:3_0:107_0:21$ ip community-list expanded c86 permit 23 ^65000:3_0:108_0:22$ ip community-list expanded c86 permit 24 ^65000:3_0:109_0:23$ ip community-list expanded c86 permit 25 ^65000:3_0:110_0:24$ ip community-list expanded c86 permit 26 ^65000:3_0:111_0:25$ ip community-list expanded c86 permit 27 ^65000:3_0:112_0:26$ ip community-list expanded c86 permit 28 ^65000:3_0:113_0:27$ ip community-list expanded c86 permit 29 ^65000:3_0:114_0:28$ ip community-list expanded c86 permit 30 ^65000:3_0:115_0:29$ ip community-list expanded c86 permit 31 ^65000:3_0:116_0:30$ ip community-list expanded c86 permit 32 ^65000:3_0:117_0:31$ ip community-list expanded c86 permit 33 ^65000:3_0:118_0:32$ ip community-list expanded c86 permit 34 ^65000:3_0:119_0:33$ ip community-list expanded c86 permit 35 ^65000:3_0:120_0:34$ ip community-list expanded c86 permit 36 ^65000:3_0:121_0:35$ ip community-list expanded c86 permit 37 ^65000:3_0:122_0:36$ ip community-list expanded c86 permit 38 ^65000:3_0:123_0:37$ ip community-list expanded c86 permit 39 ^65000:3_0:124_0:38$ ip community-list expanded c86 permit 40 ^65000:3_0:125_0:39$ ip community-list expanded c86 permit 41 ^65000:3_0:126_0:40$ ip community-list expanded c86 permit 42 ^65000:3_0:127_0:41$ ip community-list expanded c86 permit 43 ^65000:3_0:128_0:42$ ip community-list expanded c86 permit 44 ^65000:3_0:129_0:43$ ip community-list expanded c86 permit 45 ^65000:3_0:130_0:44$ ip community-list expanded c86 permit 46 ^65000:3_0:131_0:45$ ip community-list expanded c86 permit 47 ^65000:3_0:132_0:46$ ip community-list expanded c86 permit 48 ^65000:3_0:133_0:47$ ip community-list expanded c86 permit 49 ^65000:3_0:134_0:48$ ip community-list expanded c86 permit 50 ^65000:3_0:135_0:49$ ip community-list expanded c86 permit 51 ^65000:3_0:136_0:50$ ip community-list expanded c86 permit 52 ^65000:3_0:137_0:51$ ip community-list expanded c86 permit 53 ^65000:3_0:138_0:52$ ip community-list expanded c86 permit 54 ^65000:3_0:139_0:53$ ip community-list expanded c86 permit 55 ^65000:3_0:140_0:54$ ip community-list expanded c86 permit 56 ^65000:3_0:141_0:55$ ip community-list expanded c86 permit 57 ^65000:3_0:142_0:56$ ip community-list expanded c86 permit 58 ^65000:3_0:143_0:57$ ip community-list expanded c86 permit 59 ^65000:3_0:144_0:58$ ip community-list expanded c86 permit 60 ^65000:3_0:145_0:59$ ip community-list expanded c86 permit 61 ^65000:3_0:146_0:60$ ip community-list expanded c86 permit 62 ^65000:3_0:147_0:61$ ip community-list expanded c86 permit 63 ^65000:3_0:148_0:62$ ip community-list expanded c86 permit 64 ^65000:3_0:149_0:63$ ip community-list expanded c86 permit 65 ^65000:3_0:150_0:64$ ip community-list expanded c86 permit 66 ^65000:3_0:151_0:65$ ip community-list expanded c86 permit 67 ^65000:3_0:152_0:66$ ip community-list expanded c86 permit 68 ^65000:3_0:153_0:67$ ip community-list expanded c86 permit 69 ^65000:3_0:154_0:68$ ip community-list expanded c86 permit 70 ^65000:3_0:155_0:69$ ip community-list expanded c86 permit 71 ^65000:3_0:156_0:70$ ip community-list expanded c86 permit 72 ^65000:3_0:157_0:71$ ip community-list expanded c86 permit 73 ^65000:3_0:158_0:72$ ip community-list expanded c86 permit 74 ^65000:3_0:159_0:73$ ip community-list expanded c86 permit 75 ^65000:3_0:160_0:74$ ip community-list expanded c86 permit 76 ^65000:3_0:161_0:75$ ip community-list expanded c86 permit 77 ^65000:3_0:162_0:76$ ip community-list expanded c86 permit 78 ^65000:3_0:163_0:77$ ip community-list expanded c86 permit 79 ^65000:3_0:164_0:78$ ip community-list expanded c86 permit 80 ^65000:3_0:165_0:79$ ip community-list expanded c86 permit 81 ^65000:3_0:166_0:80$ ip community-list expanded c86 permit 82 ^65000:3_0:167_0:81$ ip community-list expanded c86 permit 83 ^65000:3_0:168_0:82$ ip community-list expanded c86 permit 84 ^65000:3_0:169_0:83$ ip community-list expanded c86 permit 85 ^65000:3_0:170_0:84$ ip community-list expanded c86 permit 86 ^65000:3_0:171_0:85$ ip community-list expanded c86 permit 87 ^65000:4_0:172_0:2$ ip community-list expanded c86 permit 88 ^65000:3_0:172_0:86$ ip community-list expanded c86 permit 89 ^65000:4_0:173_0:2$ ip community-list expanded c86 permit 90 ^65000:3_0:173_0:87$ ip community-list expanded c86 permit 91 ^65000:3_0:174_0:88$ ip community-list expanded c86 permit 92 ^65000:3_0:175_0:89$ ip community-list expanded c86 permit 93 ^65000:3_0:176_0:90$ ip community-list expanded c86 permit 94 ^65000:3_0:177_0:91$ ip community-list expanded c86 permit 95 ^65000:3_0:178_0:92$ ip community-list expanded c86 permit 96 ^65000:3_0:179_0:93$ ip community-list expanded c86 permit 97 ^65000:3_0:180_0:94$ ip community-list expanded c86 permit 98 ^65000:3_0:181_0:95$ ip community-list expanded c86 permit 99 ^65000:3_0:182_0:96$ ip community-list expanded c86 permit 100 ^65000:3_0:183_0:97$ ip community-list expanded c86 permit 101 ^65000:3_0:184_0:98$ ip community-list expanded c86 permit 102 ^65000:3_0:185_0:99$ ip community-list expanded c86 permit 103 ^65000:3_0:186_0:100$ ip community-list expanded c86 permit 104 ^65000:3_0:187_0:101$ ip community-list expanded c86 permit 105 ^65000:3_0:188_0:102$ ip community-list expanded c86 permit 106 ^65000:3_0:189_0:103$ ip community-list expanded c86 permit 107 ^65000:3_0:190_0:104$ ip community-list expanded c86 permit 108 ^65000:3_0:191_0:105$ ip community-list expanded c86 permit 109 ^65000:3_0:192_0:106$ ip community-list expanded c86 permit 110 ^65000:3_0:193_0:107$ ip community-list expanded c86 permit 111 ^65000:3_0:194_0:108$ ip community-list expanded c86 permit 112 ^65000:3_0:195_0:109$ ip community-list expanded c86 permit 113 ^65000:3_0:196_0:110$ ip community-list expanded c86 permit 114 ^65000:3_0:197_0:111$ ip community-list expanded c86 permit 115 ^65000:3_0:198_0:112$ ip community-list expanded c86 permit 116 ^65000:3_0:199_0:113$ ip community-list expanded c86 permit 117 ^65000:3_0:200_0:114$ ip community-list expanded c86 permit 118 ^65000:3_0:201_0:115$ ip community-list expanded c86 permit 119 ^65000:3_0:202_0:116$ ip community-list expanded c86 permit 120 ^65000:3_0:203_0:117$ ip community-list expanded c86 permit 121 ^65000:3_0:204_0:118$ ip community-list expanded c86 permit 122 ^65000:3_0:205_0:119$ ip community-list expanded c86 permit 123 ^65000:3_0:206_0:120$ ip community-list expanded c86 permit 124 ^65000:3_0:207_0:121$ ip community-list expanded c86 permit 125 ^65000:3_0:208_0:122$ ip community-list expanded c86 permit 126 ^65000:3_0:209_0:123$ ip community-list expanded c86 permit 127 ^65000:3_0:210_0:124$ ip community-list expanded c86 permit 128 ^65000:3_0:211_0:125$ ip community-list expanded c86 permit 129 ^65000:3_0:212_0:126$ ip community-list expanded c86 permit 130 ^65000:3_0:213_0:127$ ip community-list expanded c86 permit 131 ^65000:3_0:214_0:128$ ip community-list expanded c86 permit 132 ^65000:3_0:215_0:129$ ip community-list expanded c86 permit 133 ^65000:3_0:216_0:130$ ip community-list expanded c86 permit 134 ^65000:3_0:217_0:131$ ip community-list expanded c86 permit 135 ^65000:3_0:218_0:132$ ip community-list expanded c86 permit 136 ^65000:3_0:219_0:133$ ip community-list expanded c86 permit 137 ^65000:3_0:220_0:134$ ip community-list expanded c86 permit 138 ^65000:3_0:221_0:135$ ip community-list expanded c86 permit 139 ^65000:3_0:222_0:136$ ip community-list expanded c86 permit 140 ^65000:3_0:223_0:137$ ip community-list expanded c86 permit 141 ^65000:3_0:224_0:138$ ip community-list expanded c86 permit 142 ^65000:3_0:225_0:139$ ip community-list expanded c86 permit 143 ^65000:3_0:226_0:140$ ip community-list expanded c86 permit 144 ^65000:3_0:227_0:141$ ip community-list expanded c86 permit 145 ^65000:3_0:228_0:142$ ip community-list expanded c86 permit 146 ^65000:3_0:229_0:143$ ip community-list expanded c86 permit 147 ^65000:3_0:230_0:144$ ip community-list expanded c86 permit 148 ^65000:3_0:231_0:145$ ip community-list expanded c86 permit 149 ^65000:3_0:232_0:146$ ip community-list expanded c86 permit 150 ^65000:3_0:233_0:147$ ip community-list expanded c86 permit 151 ^65000:3_0:234_0:148$ ip community-list expanded c86 permit 152 ^65000:3_0:235_0:149$ ip community-list expanded c86 permit 153 ^65000:3_0:236_0:150$ ip community-list expanded c86 permit 154 ^65000:3_0:237_0:151$ ip community-list expanded c86 permit 155 ^65000:3_0:238_0:152$ ip community-list expanded c86 permit 156 ^65000:3_0:239_0:153$ ip community-list expanded c86 permit 157 ^65000:3_0:240_0:154$ ip community-list expanded c86 permit 158 ^65000:3_0:241_0:155$ ip community-list expanded c86 permit 159 ^65000:3_0:242_0:156$ ip community-list expanded c86 permit 160 ^65000:3_0:243_0:157$ ip community-list expanded c86 permit 161 ^65000:3_0:244_0:158$ ip community-list expanded c86 permit 162 ^65000:3_0:245_0:159$ ip community-list expanded c86 permit 163 ^65000:3_0:246_0:160$ ip community-list expanded c86 permit 164 ^65000:3_0:247_0:161$ ip community-list expanded c86 permit 165 ^65000:3_0:248_0:162$ ip community-list expanded c86 permit 166 ^65000:3_0:249_0:163$ ip community-list expanded c86 permit 167 ^65000:3_0:250_0:164$ ip community-list expanded c86 permit 168 ^65000:3_0:251_0:165$ ip community-list expanded c86 permit 169 ^65000:3_0:252_0:166$ ip community-list expanded c86 permit 170 ^65000:3_0:253_0:167$ ip community-list expanded c86 permit 171 ^65000:3_0:254_0:168$ ip community-list expanded c86 permit 172 ^65000:3_0:255_0:169$ ip community-list expanded c86 permit 173 ^65000:3_0:256_0:170$ route-map calculator permit 27878 match community 1_1_85 2_1_86 2_2_43 1_2_84 1_3_83 set community 0:86 route-map calculator permit 27879 match community 1_4_82 1_5_81 1_6_80 1_7_79 1_8_78 set community 0:86 route-map calculator permit 27880 match community 1_9_77 1_10_76 1_11_75 1_12_74 1_13_73 set community 0:86 route-map calculator permit 27881 match community 1_14_72 1_15_71 1_16_70 1_17_69 1_18_68 set community 0:86 route-map calculator permit 27882 match community 1_19_67 1_20_66 1_21_65 1_22_64 1_23_63 set community 0:86 route-map calculator permit 27883 match community 1_24_62 1_25_61 1_26_60 1_27_59 1_28_58 set community 0:86 route-map calculator permit 27884 match community 1_29_57 1_30_56 1_31_55 1_32_54 1_33_53 set community 0:86 route-map calculator permit 27885 match community 1_34_52 1_35_51 1_36_50 1_37_49 1_38_48 set community 0:86 route-map calculator permit 27886 match community 1_39_47 1_40_46 1_41_45 1_42_44 1_43_43 set community 0:86 route-map calculator permit 27887 match community c4_86_1 c3_87_1 c3_88_2 c3_89_3 c3_90_4 set community 0:86 route-map calculator permit 27888 match community c3_91_5 c3_92_6 c3_93_7 c3_94_8 c3_95_9 set community 0:86 route-map calculator permit 27889 match community c3_96_10 c3_97_11 c3_98_12 c3_99_13 c3_100_14 set community 0:86 route-map calculator permit 27890 match community c3_101_15 c3_102_16 c3_103_17 c3_104_18 c3_105_19 set community 0:86 route-map calculator permit 27891 match community c3_106_20 c3_107_21 c3_108_22 c3_109_23 c3_110_24 set community 0:86 route-map calculator permit 27892 match community c3_111_25 c3_112_26 c3_113_27 c3_114_28 c3_115_29 set community 0:86 route-map calculator permit 27893 match community c3_116_30 c3_117_31 c3_118_32 c3_119_33 c3_120_34 set community 0:86 route-map calculator permit 27894 match community c3_121_35 c3_122_36 c3_123_37 c3_124_38 c3_125_39 set community 0:86 route-map calculator permit 27895 match community c3_126_40 c3_127_41 c3_128_42 c3_129_43 c3_130_44 set community 0:86 route-map calculator permit 27896 match community c3_131_45 c3_132_46 c3_133_47 c3_134_48 c3_135_49 set community 0:86 route-map calculator permit 27897 match community c3_136_50 c3_137_51 c3_138_52 c3_139_53 c3_140_54 set community 0:86 route-map calculator permit 27898 match community c3_141_55 c3_142_56 c3_143_57 c3_144_58 c3_145_59 set community 0:86 route-map calculator permit 27899 match community c3_146_60 c3_147_61 c3_148_62 c3_149_63 c3_150_64 set community 0:86 route-map calculator permit 27900 match community c3_151_65 c3_152_66 c3_153_67 c3_154_68 c3_155_69 set community 0:86 route-map calculator permit 27901 match community c3_156_70 c3_157_71 c3_158_72 c3_159_73 c3_160_74 set community 0:86 route-map calculator permit 27902 match community c3_161_75 c3_162_76 c3_163_77 c3_164_78 c3_165_79 set community 0:86 route-map calculator permit 27903 match community c3_166_80 c3_167_81 c3_168_82 c3_169_83 c3_170_84 set community 0:86 route-map calculator permit 27904 match community c3_171_85 c4_172_2 c3_172_86 c4_173_2 c3_173_87 set community 0:86 route-map calculator permit 27905 match community c3_174_88 c3_175_89 c3_176_90 c3_177_91 c3_178_92 set community 0:86 route-map calculator permit 27906 match community c3_179_93 c3_180_94 c3_181_95 c3_182_96 c3_183_97 set community 0:86 route-map calculator permit 27907 match community c3_184_98 c3_185_99 c3_186_100 c3_187_101 c3_188_102 set community 0:86 route-map calculator permit 27908 match community c3_189_103 c3_190_104 c3_191_105 c3_192_106 c3_193_107 set community 0:86 route-map calculator permit 27909 match community c3_194_108 c3_195_109 c3_196_110 c3_197_111 c3_198_112 set community 0:86 route-map calculator permit 27910 match community c3_199_113 c3_200_114 c3_201_115 c3_202_116 c3_203_117 set community 0:86 route-map calculator permit 27911 match community c3_204_118 c3_205_119 c3_206_120 c3_207_121 c3_208_122 set community 0:86 route-map calculator permit 27912 match community c3_209_123 c3_210_124 c3_211_125 c3_212_126 c3_213_127 set community 0:86 route-map calculator permit 27913 match community c3_214_128 c3_215_129 c3_216_130 c3_217_131 c3_218_132 set community 0:86 route-map calculator permit 27914 match community c3_219_133 c3_220_134 c3_221_135 c3_222_136 c3_223_137 set community 0:86 route-map calculator permit 27915 match community c3_224_138 c3_225_139 c3_226_140 c3_227_141 c3_228_142 set community 0:86 route-map calculator permit 27916 match community c3_229_143 c3_230_144 c3_231_145 c3_232_146 c3_233_147 set community 0:86 route-map calculator permit 27917 match community c3_234_148 c3_235_149 c3_236_150 c3_237_151 c3_238_152 set community 0:86 route-map calculator permit 27918 match community c3_239_153 c3_240_154 c3_241_155 c3_242_156 c3_243_157 set community 0:86 route-map calculator permit 27919 match community c3_244_158 c3_245_159 c3_246_160 c3_247_161 c3_248_162 set community 0:86 route-map calculator permit 27920 match community c3_249_163 c3_250_164 c3_251_165 c3_252_166 c3_253_167 set community 0:86 route-map calculator permit 27921 match community c3_254_168 c3_255_169 c3_256_170 set community 0:86 ip community-list standard 2_187_251 permit 65000:2 0:187 0:251 route-map calculator permit 27922 match community 2_187_251 set community 0:46937 ip community-list standard 2_26_249 permit 65000:2 0:26 0:249 ip community-list standard 2_39_166 permit 65000:2 0:39 0:166 ip community-list standard 2_78_83 permit 65000:2 0:78 0:83 route-map calculator permit 27923 match community 2_26_249 2_39_166 2_78_83 set community 0:6474 ip community-list standard 2_162_249 permit 65000:2 0:162 0:249 ip community-list standard 2_166_243 permit 65000:2 0:166 0:243 route-map calculator permit 27924 match community 2_162_249 2_166_243 set community 0:40338 ip community-list standard 2_211_213 permit 65000:2 0:211 0:213 route-map calculator permit 27925 match community 2_211_213 set community 0:44943 ip community-list standard 2_37_74 permit 65000:2 0:37 0:74 route-map calculator permit 27926 match community 2_37_74 set community 0:2738 ip community-list standard 2_31_166 permit 65000:2 0:31 0:166 ip community-list standard 2_62_83 permit 65000:2 0:62 0:83 route-map calculator permit 27927 match community 2_31_166 2_62_83 set community 0:5146 ip community-list standard 2_191_254 permit 65000:2 0:191 0:254 route-map calculator permit 27928 match community 2_191_254 set community 0:48514 ip community-list standard 2_168_252 permit 65000:2 0:168 0:252 ip community-list standard 2_189_224 permit 65000:2 0:189 0:224 ip community-list standard 2_196_216 permit 65000:2 0:196 0:216 route-map calculator permit 27929 match community 2_168_252 2_189_224 2_196_216 set community 0:42336 ip community-list standard 2_24_240 permit 65000:2 0:24 0:240 ip community-list standard 2_30_192 permit 65000:2 0:30 0:192 ip community-list standard 2_32_180 permit 65000:2 0:32 0:180 ip community-list standard 2_36_160 permit 65000:2 0:36 0:160 ip community-list standard 2_40_144 permit 65000:2 0:40 0:144 ip community-list standard 2_45_128 permit 65000:2 0:45 0:128 ip community-list standard 2_48_120 permit 65000:2 0:48 0:120 ip community-list standard 2_60_96 permit 65000:2 0:60 0:96 ip community-list standard 2_64_90 permit 65000:2 0:64 0:90 ip community-list standard 2_72_80 permit 65000:2 0:72 0:80 route-map calculator permit 27930 match community 2_24_240 2_30_192 2_32_180 2_36_160 2_40_144 set community 0:5760 route-map calculator permit 27931 match community 2_45_128 2_48_120 2_60_96 2_64_90 2_72_80 set community 0:5760 ip community-list standard 2_17_163 permit 65000:2 0:17 0:163 route-map calculator permit 27932 match community 2_17_163 set community 0:2771 ip community-list standard 2_190_254 permit 65000:2 0:190 0:254 route-map calculator permit 27933 match community 2_190_254 set community 0:48260 ip community-list standard 2_57_109 permit 65000:2 0:57 0:109 route-map calculator permit 27934 match community 2_57_109 set community 0:6213 ip community-list standard 2_40_191 permit 65000:2 0:40 0:191 route-map calculator permit 27935 match community 2_40_191 set community 0:7640 ip community-list standard 2_193_222 permit 65000:2 0:193 0:222 route-map calculator permit 27936 match community 2_193_222 set community 0:42846 ip community-list standard 2_76_247 permit 65000:2 0:76 0:247 route-map calculator permit 27937 match community 2_76_247 set community 0:18772 ip community-list standard 2_85_181 permit 65000:2 0:85 0:181 route-map calculator permit 27938 match community 2_85_181 set community 0:15385 ip community-list standard 2_7_118 permit 65000:2 0:7 0:118 ip community-list standard 2_14_59 permit 65000:2 0:14 0:59 route-map calculator permit 27939 match community 2_7_118 2_14_59 set community 0:826 ip community-list standard 2_95_173 permit 65000:2 0:95 0:173 route-map calculator permit 27940 match community 2_95_173 set community 0:16435 ip community-list standard 2_160_163 permit 65000:2 0:160 0:163 route-map calculator permit 27941 match community 2_160_163 set community 0:26080 ip community-list standard 2_155_190 permit 65000:2 0:155 0:190 route-map calculator permit 27942 match community 2_155_190 set community 0:29450 ip community-list standard 2_65_208 permit 65000:2 0:65 0:208 ip community-list standard 2_80_169 permit 65000:2 0:80 0:169 ip community-list standard 2_104_130 permit 65000:2 0:104 0:130 route-map calculator permit 27943 match community 2_65_208 2_80_169 2_104_130 set community 0:13520 ip community-list standard 2_96_249 permit 65000:2 0:96 0:249 ip community-list standard 2_144_166 permit 65000:2 0:144 0:166 route-map calculator permit 27944 match community 2_96_249 2_144_166 set community 0:23904 ip community-list standard 2_87_145 permit 65000:2 0:87 0:145 route-map calculator permit 27945 match community 2_87_145 set community 0:12615 ip community-list standard 2_71_252 permit 65000:2 0:71 0:252 ip community-list standard 2_84_213 permit 65000:2 0:84 0:213 ip community-list standard 2_126_142 permit 65000:2 0:126 0:142 route-map calculator permit 27946 match community 2_71_252 2_84_213 2_126_142 set community 0:17892 ip community-list standard 2_17_184 permit 65000:2 0:17 0:184 ip community-list standard 2_23_136 permit 65000:2 0:23 0:136 ip community-list standard 2_34_92 permit 65000:2 0:34 0:92 ip community-list standard 2_46_68 permit 65000:2 0:46 0:68 route-map calculator permit 27947 match community 2_17_184 2_23_136 2_34_92 2_46_68 set community 0:3128 ip community-list standard 2_129_182 permit 65000:2 0:129 0:182 route-map calculator permit 27948 match community 2_129_182 set community 0:23478 ip community-list standard 2_164_256 permit 65000:2 0:164 0:256 route-map calculator permit 27949 match community 2_164_256 set community 0:41984 ip community-list standard 2_97_255 permit 65000:2 0:97 0:255 route-map calculator permit 27950 match community 2_97_255 set community 0:24735 ip community-list standard 2_58_245 permit 65000:2 0:58 0:245 ip community-list standard 2_70_203 permit 65000:2 0:70 0:203 ip community-list standard 2_98_145 permit 65000:2 0:98 0:145 route-map calculator permit 27951 match community 2_58_245 2_70_203 2_98_145 set community 0:14210 ip community-list standard 2_67_149 permit 65000:2 0:67 0:149 route-map calculator permit 27952 match community 2_67_149 set community 0:9983 ip community-list standard 2_59_61 permit 65000:2 0:59 0:61 route-map calculator permit 27953 match community 2_59_61 set community 0:3599 ip community-list standard 2_50_250 permit 65000:2 0:50 0:250 ip community-list standard 2_100_125 permit 65000:2 0:100 0:125 route-map calculator permit 27954 match community 2_50_250 2_100_125 set community 0:12500 ip community-list standard 2_83_185 permit 65000:2 0:83 0:185 route-map calculator permit 27955 match community 2_83_185 set community 0:15355 ip community-list standard 2_59_183 permit 65000:2 0:59 0:183 ip community-list standard 2_61_177 permit 65000:2 0:61 0:177 route-map calculator permit 27956 match community 2_59_183 2_61_177 set community 0:10797 ip community-list standard 2_111_173 permit 65000:2 0:111 0:173 route-map calculator permit 27957 match community 2_111_173 set community 0:19203 ip community-list standard 2_103_252 permit 65000:2 0:103 0:252 ip community-list standard 2_126_206 permit 65000:2 0:126 0:206 route-map calculator permit 27958 match community 2_103_252 2_126_206 set community 0:25956 ip community-list standard 2_101_115 permit 65000:2 0:101 0:115 route-map calculator permit 27959 match community 2_101_115 set community 0:11615 ip community-list standard 2_81_197 permit 65000:2 0:81 0:197 route-map calculator permit 27960 match community 2_81_197 set community 0:15957 ip community-list standard 2_97_233 permit 65000:2 0:97 0:233 route-map calculator permit 27961 match community 2_97_233 set community 0:22601 ip community-list standard 2_108_193 permit 65000:2 0:108 0:193 route-map calculator permit 27962 match community 2_108_193 set community 0:20844 ip community-list standard 2_30_137 permit 65000:2 0:30 0:137 route-map calculator permit 27963 match community 2_30_137 set community 0:4110 ip community-list standard 2_67_212 permit 65000:2 0:67 0:212 ip community-list standard 2_106_134 permit 65000:2 0:106 0:134 route-map calculator permit 27964 match community 2_67_212 2_106_134 set community 0:14204 ip community-list standard 2_54_255 permit 65000:2 0:54 0:255 ip community-list standard 2_81_170 permit 65000:2 0:81 0:170 ip community-list standard 2_85_162 permit 65000:2 0:85 0:162 ip community-list standard 2_90_153 permit 65000:2 0:90 0:153 ip community-list standard 2_102_135 permit 65000:2 0:102 0:135 route-map calculator permit 27965 match community 2_54_255 2_81_170 2_85_162 2_90_153 2_102_135 set community 0:13770 ip community-list standard 2_45_209 permit 65000:2 0:45 0:209 ip community-list standard 2_55_171 permit 65000:2 0:55 0:171 ip community-list standard 2_57_165 permit 65000:2 0:57 0:165 ip community-list standard 2_95_99 permit 65000:2 0:95 0:99 route-map calculator permit 27966 match community 2_45_209 2_55_171 2_57_165 2_95_99 set community 0:9405 ip community-list standard 2_159_161 permit 65000:2 0:159 0:161 route-map calculator permit 27967 match community 2_159_161 set community 0:25599 ip community-list standard 2_98_241 permit 65000:2 0:98 0:241 route-map calculator permit 27968 match community 2_98_241 set community 0:23618 ip community-list standard 2_164_181 permit 65000:2 0:164 0:181 route-map calculator permit 27969 match community 2_164_181 set community 0:29684 ip community-list standard 2_112_209 permit 65000:2 0:112 0:209 ip community-list standard 2_133_176 permit 65000:2 0:133 0:176 ip community-list standard 2_152_154 permit 65000:2 0:152 0:154 route-map calculator permit 27970 match community 2_112_209 2_133_176 2_152_154 set community 0:23408 ip community-list standard 2_36_202 permit 65000:2 0:36 0:202 ip community-list standard 2_72_101 permit 65000:2 0:72 0:101 route-map calculator permit 27971 match community 2_36_202 2_72_101 set community 0:7272 ip community-list standard 2_53_179 permit 65000:2 0:53 0:179 route-map calculator permit 27972 match community 2_53_179 set community 0:9487 ip community-list standard 2_24_227 permit 65000:2 0:24 0:227 route-map calculator permit 27973 match community 2_24_227 set community 0:5448 ip community-list standard 2_187_235 permit 65000:2 0:187 0:235 route-map calculator permit 27974 match community 2_187_235 set community 0:43945 ip community-list standard 2_180_234 permit 65000:2 0:180 0:234 ip community-list standard 2_195_216 permit 65000:2 0:195 0:216 route-map calculator permit 27975 match community 2_180_234 2_195_216 set community 0:42120 ip community-list standard 2_120_249 permit 65000:2 0:120 0:249 ip community-list standard 2_166_180 permit 65000:2 0:166 0:180 route-map calculator permit 27976 match community 2_120_249 2_166_180 set community 0:29880 ip community-list standard 2_27_202 permit 65000:2 0:27 0:202 ip community-list standard 2_54_101 permit 65000:2 0:54 0:101 route-map calculator permit 27977 match community 2_27_202 2_54_101 set community 0:5454 ip community-list standard 2_122_241 permit 65000:2 0:122 0:241 route-map calculator permit 27978 match community 2_122_241 set community 0:29402 ip community-list standard 2_124_139 permit 65000:2 0:124 0:139 route-map calculator permit 27979 match community 2_124_139 set community 0:17236 ip community-list standard 2_116_243 permit 65000:2 0:116 0:243 ip community-list standard 2_162_174 permit 65000:2 0:162 0:174 route-map calculator permit 27980 match community 2_116_243 2_162_174 set community 0:28188 ip community-list standard 2_180_229 permit 65000:2 0:180 0:229 route-map calculator permit 27981 match community 2_180_229 set community 0:41220 ip community-list standard 2_63_255 permit 65000:2 0:63 0:255 ip community-list standard 2_85_189 permit 65000:2 0:85 0:189 ip community-list standard 2_105_153 permit 65000:2 0:105 0:153 ip community-list standard 2_119_135 permit 65000:2 0:119 0:135 route-map calculator permit 27982 match community 2_63_255 2_85_189 2_105_153 2_119_135 set community 0:16065 ip community-list standard 2_19_205 permit 65000:2 0:19 0:205 ip community-list standard 2_41_95 permit 65000:2 0:41 0:95 route-map calculator permit 27983 match community 2_19_205 2_41_95 set community 0:3895 ip community-list standard 2_64_166 permit 65000:2 0:64 0:166 ip community-list standard 2_83_128 permit 65000:2 0:83 0:128 route-map calculator permit 27984 match community 2_64_166 2_83_128 set community 0:10624 ip community-list standard 2_10_182 permit 65000:2 0:10 0:182 ip community-list standard 2_13_140 permit 65000:2 0:13 0:140 ip community-list standard 2_14_130 permit 65000:2 0:14 0:130 ip community-list standard 2_20_91 permit 65000:2 0:20 0:91 ip community-list standard 2_26_70 permit 65000:2 0:26 0:70 ip community-list standard 2_28_65 permit 65000:2 0:28 0:65 ip community-list standard 2_35_52 permit 65000:2 0:35 0:52 route-map calculator permit 27985 match community 2_10_182 2_13_140 2_14_130 2_20_91 2_26_70 set community 0:1820 route-map calculator permit 27986 match community 2_28_65 2_35_52 set community 0:1820 ip community-list standard 2_114_256 permit 65000:2 0:114 0:256 ip community-list standard 2_128_228 permit 65000:2 0:128 0:228 ip community-list standard 2_152_192 permit 65000:2 0:152 0:192 route-map calculator permit 27987 match community 2_114_256 2_128_228 2_152_192 set community 0:29184 ip community-list standard 2_172_214 permit 65000:2 0:172 0:214 route-map calculator permit 27988 match community 2_172_214 set community 0:36808 ip community-list standard 2_124_211 permit 65000:2 0:124 0:211 route-map calculator permit 27989 match community 2_124_211 set community 0:26164 ip community-list standard 2_236_238 permit 65000:2 0:236 0:238 route-map calculator permit 27990 match community 2_236_238 set community 0:56168 ip community-list standard 2_80_167 permit 65000:2 0:80 0:167 route-map calculator permit 27991 match community 2_80_167 set community 0:13360 ip community-list standard 2_26_210 permit 65000:2 0:26 0:210 ip community-list standard 2_28_195 permit 65000:2 0:28 0:195 ip community-list standard 2_30_182 permit 65000:2 0:30 0:182 ip community-list standard 2_35_156 permit 65000:2 0:35 0:156 ip community-list standard 2_39_140 permit 65000:2 0:39 0:140 ip community-list standard 2_42_130 permit 65000:2 0:42 0:130 ip community-list standard 2_52_105 permit 65000:2 0:52 0:105 ip community-list standard 2_60_91 permit 65000:2 0:60 0:91 ip community-list standard 2_65_84 permit 65000:2 0:65 0:84 ip community-list standard 2_70_78 permit 65000:2 0:70 0:78 route-map calculator permit 27992 match community 2_26_210 2_28_195 2_30_182 2_35_156 2_39_140 set community 0:5460 route-map calculator permit 27993 match community 2_42_130 2_52_105 2_60_91 2_65_84 2_70_78 set community 0:5460 ip community-list standard 2_117_243 permit 65000:2 0:117 0:243 route-map calculator permit 27994 match community 2_117_243 set community 0:28431 ip community-list standard 2_209_213 permit 65000:2 0:209 0:213 route-map calculator permit 27995 match community 2_209_213 set community 0:44517 ip community-list standard 2_140_233 permit 65000:2 0:140 0:233 route-map calculator permit 27996 match community 2_140_233 set community 0:32620 ip community-list standard 2_56_149 permit 65000:2 0:56 0:149 route-map calculator permit 27997 match community 2_56_149 set community 0:8344 ip community-list standard 2_172_172 permit 65000:2 0:172 0:172 route-map calculator permit 27998 match community 2_172_172 set community 0:29584 ip community-list standard 2_143_196 permit 65000:2 0:143 0:196 ip community-list standard 2_154_182 permit 65000:2 0:154 0:182 route-map calculator permit 27999 match community 2_143_196 2_154_182 set community 0:28028 ip community-list standard 2_39_177 permit 65000:2 0:39 0:177 ip community-list standard 2_59_117 permit 65000:2 0:59 0:117 route-map calculator permit 28000 match community 2_39_177 2_59_117 set community 0:6903 ip community-list standard 2_46_161 permit 65000:2 0:46 0:161 route-map calculator permit 28001 match community 2_46_161 set community 0:7406 ip community-list standard 2_182_183 permit 65000:2 0:182 0:183 route-map calculator permit 28002 match community 2_182_183 set community 0:33306 ip community-list standard 2_145_236 permit 65000:2 0:145 0:236 route-map calculator permit 28003 match community 2_145_236 set community 0:34220 ip community-list standard 2_132_193 permit 65000:2 0:132 0:193 route-map calculator permit 28004 match community 2_132_193 set community 0:25476 ip community-list standard 2_166_224 permit 65000:2 0:166 0:224 route-map calculator permit 28005 match community 2_166_224 set community 0:37184 ip community-list standard 2_60_233 permit 65000:2 0:60 0:233 route-map calculator permit 28006 match community 2_60_233 set community 0:13980 ip community-list standard 2_42_197 permit 65000:2 0:42 0:197 route-map calculator permit 28007 match community 2_42_197 set community 0:8274 ip community-list standard 2_186_249 permit 65000:2 0:186 0:249 route-map calculator permit 28008 match community 2_186_249 set community 0:46314 ip community-list standard 2_5_230 permit 65000:2 0:5 0:230 ip community-list standard 2_10_115 permit 65000:2 0:10 0:115 ip community-list standard 2_23_50 permit 65000:2 0:23 0:50 ip community-list standard 2_25_46 permit 65000:2 0:25 0:46 route-map calculator permit 28009 match community 2_5_230 2_10_115 2_23_50 2_25_46 set community 0:1150 ip community-list standard 2_226_240 permit 65000:2 0:226 0:240 route-map calculator permit 28010 match community 2_226_240 set community 0:54240 ip community-list standard 2_148_233 permit 65000:2 0:148 0:233 route-map calculator permit 28011 match community 2_148_233 set community 0:34484 ip community-list standard 2_186_256 permit 65000:2 0:186 0:256 ip community-list standard 2_192_248 permit 65000:2 0:192 0:248 route-map calculator permit 28012 match community 2_186_256 2_192_248 set community 0:47616 ip community-list standard 2_67_83 permit 65000:2 0:67 0:83 route-map calculator permit 28013 match community 2_67_83 set community 0:5561 ip community-list standard 2_11_239 permit 65000:2 0:11 0:239 route-map calculator permit 28014 match community 2_11_239 set community 0:2629 ip community-list standard 2_129_249 permit 65000:2 0:129 0:249 route-map calculator permit 28015 match community 2_129_249 set community 0:32121 ip community-list standard 2_173_174 permit 65000:2 0:173 0:174 route-map calculator permit 28016 match community 2_173_174 set community 0:30102 ip community-list standard 2_77_245 permit 65000:2 0:77 0:245 route-map calculator permit 28017 match community 2_77_245 set community 0:18865 ip community-list standard 2_165_254 permit 65000:2 0:165 0:254 route-map calculator permit 28018 match community 2_165_254 set community 0:41910 ip community-list standard 2_51_181 permit 65000:2 0:51 0:181 route-map calculator permit 28019 match community 2_51_181 set community 0:9231 ip community-list standard 2_205_254 permit 65000:2 0:205 0:254 route-map calculator permit 28020 match community 2_205_254 set community 0:52070 ip community-list standard 2_69_222 permit 65000:2 0:69 0:222 ip community-list standard 2_74_207 permit 65000:2 0:74 0:207 ip community-list standard 2_111_138 permit 65000:2 0:111 0:138 route-map calculator permit 28021 match community 2_69_222 2_74_207 2_111_138 set community 0:15318 ip community-list standard 2_149_152 permit 65000:2 0:149 0:152 route-map calculator permit 28022 match community 2_149_152 set community 0:22648 ip community-list standard 2_34_238 permit 65000:2 0:34 0:238 ip community-list standard 2_68_119 permit 65000:2 0:68 0:119 route-map calculator permit 28023 match community 2_34_238 2_68_119 set community 0:8092 ip community-list standard 2_59_145 permit 65000:2 0:59 0:145 route-map calculator permit 28024 match community 2_59_145 set community 0:8555 ip community-list standard 2_163_247 permit 65000:2 0:163 0:247 route-map calculator permit 28025 match community 2_163_247 set community 0:40261 ip community-list standard 2_219_227 permit 65000:2 0:219 0:227 route-map calculator permit 28026 match community 2_219_227 set community 0:49713 ip community-list standard 2_10_252 permit 65000:2 0:10 0:252 ip community-list standard 2_12_210 permit 65000:2 0:12 0:210 ip community-list standard 2_14_180 permit 65000:2 0:14 0:180 ip community-list standard 2_15_168 permit 65000:2 0:15 0:168 ip community-list standard 2_18_140 permit 65000:2 0:18 0:140 ip community-list standard 2_20_126 permit 65000:2 0:20 0:126 ip community-list standard 2_21_120 permit 65000:2 0:21 0:120 ip community-list standard 2_24_105 permit 65000:2 0:24 0:105 ip community-list standard 2_28_90 permit 65000:2 0:28 0:90 ip community-list standard 2_30_84 permit 65000:2 0:30 0:84 ip community-list standard 2_35_72 permit 65000:2 0:35 0:72 ip community-list standard 2_36_70 permit 65000:2 0:36 0:70 ip community-list standard 2_40_63 permit 65000:2 0:40 0:63 ip community-list standard 2_42_60 permit 65000:2 0:42 0:60 ip community-list standard 2_45_56 permit 65000:2 0:45 0:56 route-map calculator permit 28027 match community 2_10_252 2_12_210 2_14_180 2_15_168 2_18_140 set community 0:2520 route-map calculator permit 28028 match community 2_20_126 2_21_120 2_24_105 2_28_90 2_30_84 set community 0:2520 route-map calculator permit 28029 match community 2_35_72 2_36_70 2_40_63 2_42_60 2_45_56 set community 0:2520 ip community-list standard 2_149_156 permit 65000:2 0:149 0:156 route-map calculator permit 28030 match community 2_149_156 set community 0:23244 ip community-list standard 2_161_219 permit 65000:2 0:161 0:219 route-map calculator permit 28031 match community 2_161_219 set community 0:35259 ip community-list standard 2_83_233 permit 65000:2 0:83 0:233 route-map calculator permit 28032 match community 2_83_233 set community 0:19339 ip community-list standard 2_116_248 permit 65000:2 0:116 0:248 ip community-list standard 2_124_232 permit 65000:2 0:124 0:232 route-map calculator permit 28033 match community 2_116_248 2_124_232 set community 0:28768 ip community-list standard 2_67_109 permit 65000:2 0:67 0:109 route-map calculator permit 28034 match community 2_67_109 set community 0:7303 ip community-list standard 2_39_149 permit 65000:2 0:39 0:149 route-map calculator permit 28035 match community 2_39_149 set community 0:5811 ip community-list standard 2_50_158 permit 65000:2 0:50 0:158 ip community-list standard 2_79_100 permit 65000:2 0:79 0:100 route-map calculator permit 28036 match community 2_50_158 2_79_100 set community 0:7900 ip community-list standard 1_1_18 permit 65000:1 0:1 0:18 ip community-list standard 2_1_19 permit 65000:2 0:1 0:19 ip community-list standard 1_2_17 permit 65000:1 0:2 0:17 ip community-list standard 1_3_16 permit 65000:1 0:3 0:16 ip community-list standard 1_4_15 permit 65000:1 0:4 0:15 ip community-list standard 1_5_14 permit 65000:1 0:5 0:14 ip community-list standard 1_6_13 permit 65000:1 0:6 0:13 ip community-list standard 1_7_12 permit 65000:1 0:7 0:12 ip community-list standard 1_8_11 permit 65000:1 0:8 0:11 ip community-list standard 1_9_10 permit 65000:1 0:9 0:10 ip community-list expanded c19 permit 1 ^65000:4_0:19_0:1$ ip community-list expanded c19 permit 2 ^65000:3_0:20_0:1$ ip community-list expanded c19 permit 3 ^65000:3_0:21_0:2$ ip community-list expanded c19 permit 4 ^65000:3_0:22_0:3$ ip community-list expanded c19 permit 5 ^65000:3_0:23_0:4$ ip community-list expanded c19 permit 6 ^65000:3_0:24_0:5$ ip community-list expanded c19 permit 7 ^65000:3_0:25_0:6$ ip community-list expanded c19 permit 8 ^65000:3_0:26_0:7$ ip community-list expanded c19 permit 9 ^65000:3_0:27_0:8$ ip community-list expanded c19 permit 10 ^65000:3_0:28_0:9$ ip community-list expanded c19 permit 11 ^65000:3_0:29_0:10$ ip community-list expanded c19 permit 12 ^65000:3_0:30_0:11$ ip community-list expanded c19 permit 13 ^65000:3_0:31_0:12$ ip community-list expanded c19 permit 14 ^65000:3_0:32_0:13$ ip community-list expanded c19 permit 15 ^65000:3_0:33_0:14$ ip community-list expanded c19 permit 16 ^65000:3_0:34_0:15$ ip community-list expanded c19 permit 17 ^65000:3_0:35_0:16$ ip community-list expanded c19 permit 18 ^65000:3_0:36_0:17$ ip community-list expanded c19 permit 19 ^65000:3_0:37_0:18$ ip community-list expanded c19 permit 20 ^65000:4_0:38_0:2$ ip community-list expanded c19 permit 21 ^65000:3_0:38_0:19$ ip community-list expanded c19 permit 22 ^65000:4_0:39_0:2$ ip community-list expanded c19 permit 23 ^65000:3_0:39_0:20$ ip community-list expanded c19 permit 24 ^65000:3_0:40_0:21$ ip community-list expanded c19 permit 25 ^65000:3_0:41_0:22$ ip community-list expanded c19 permit 26 ^65000:3_0:42_0:23$ ip community-list expanded c19 permit 27 ^65000:3_0:43_0:24$ ip community-list expanded c19 permit 28 ^65000:3_0:44_0:25$ ip community-list expanded c19 permit 29 ^65000:3_0:45_0:26$ ip community-list expanded c19 permit 30 ^65000:3_0:46_0:27$ ip community-list expanded c19 permit 31 ^65000:3_0:47_0:28$ ip community-list expanded c19 permit 32 ^65000:3_0:48_0:29$ ip community-list expanded c19 permit 33 ^65000:3_0:49_0:30$ ip community-list expanded c19 permit 34 ^65000:3_0:50_0:31$ ip community-list expanded c19 permit 35 ^65000:3_0:51_0:32$ ip community-list expanded c19 permit 36 ^65000:3_0:52_0:33$ ip community-list expanded c19 permit 37 ^65000:3_0:53_0:34$ ip community-list expanded c19 permit 38 ^65000:3_0:54_0:35$ ip community-list expanded c19 permit 39 ^65000:3_0:55_0:36$ ip community-list expanded c19 permit 40 ^65000:3_0:56_0:37$ ip community-list expanded c19 permit 41 ^65000:4_0:57_0:3$ ip community-list expanded c19 permit 42 ^65000:3_0:57_0:38$ ip community-list expanded c19 permit 43 ^65000:4_0:58_0:3$ ip community-list expanded c19 permit 44 ^65000:3_0:58_0:39$ ip community-list expanded c19 permit 45 ^65000:4_0:59_0:3$ ip community-list expanded c19 permit 46 ^65000:3_0:59_0:40$ ip community-list expanded c19 permit 47 ^65000:3_0:60_0:41$ ip community-list expanded c19 permit 48 ^65000:3_0:61_0:42$ ip community-list expanded c19 permit 49 ^65000:3_0:62_0:43$ ip community-list expanded c19 permit 50 ^65000:3_0:63_0:44$ ip community-list expanded c19 permit 51 ^65000:3_0:64_0:45$ ip community-list expanded c19 permit 52 ^65000:3_0:65_0:46$ ip community-list expanded c19 permit 53 ^65000:3_0:66_0:47$ ip community-list expanded c19 permit 54 ^65000:3_0:67_0:48$ ip community-list expanded c19 permit 55 ^65000:3_0:68_0:49$ ip community-list expanded c19 permit 56 ^65000:3_0:69_0:50$ ip community-list expanded c19 permit 57 ^65000:3_0:70_0:51$ ip community-list expanded c19 permit 58 ^65000:3_0:71_0:52$ ip community-list expanded c19 permit 59 ^65000:3_0:72_0:53$ ip community-list expanded c19 permit 60 ^65000:3_0:73_0:54$ ip community-list expanded c19 permit 61 ^65000:3_0:74_0:55$ ip community-list expanded c19 permit 62 ^65000:3_0:75_0:56$ ip community-list expanded c19 permit 63 ^65000:4_0:76_0:4$ ip community-list expanded c19 permit 64 ^65000:3_0:76_0:57$ ip community-list expanded c19 permit 65 ^65000:4_0:77_0:4$ ip community-list expanded c19 permit 66 ^65000:3_0:77_0:58$ ip community-list expanded c19 permit 67 ^65000:4_0:78_0:4$ ip community-list expanded c19 permit 68 ^65000:3_0:78_0:59$ ip community-list expanded c19 permit 69 ^65000:4_0:79_0:4$ ip community-list expanded c19 permit 70 ^65000:3_0:79_0:60$ ip community-list expanded c19 permit 71 ^65000:3_0:80_0:61$ ip community-list expanded c19 permit 72 ^65000:3_0:81_0:62$ ip community-list expanded c19 permit 73 ^65000:3_0:82_0:63$ ip community-list expanded c19 permit 74 ^65000:3_0:83_0:64$ ip community-list expanded c19 permit 75 ^65000:3_0:84_0:65$ ip community-list expanded c19 permit 76 ^65000:3_0:85_0:66$ ip community-list expanded c19 permit 77 ^65000:3_0:86_0:67$ ip community-list expanded c19 permit 78 ^65000:3_0:87_0:68$ ip community-list expanded c19 permit 79 ^65000:3_0:88_0:69$ ip community-list expanded c19 permit 80 ^65000:3_0:89_0:70$ ip community-list expanded c19 permit 81 ^65000:3_0:90_0:71$ ip community-list expanded c19 permit 82 ^65000:3_0:91_0:72$ ip community-list expanded c19 permit 83 ^65000:3_0:92_0:73$ ip community-list expanded c19 permit 84 ^65000:3_0:93_0:74$ ip community-list expanded c19 permit 85 ^65000:3_0:94_0:75$ ip community-list expanded c19 permit 86 ^65000:4_0:95_0:5$ ip community-list expanded c19 permit 87 ^65000:3_0:95_0:76$ ip community-list expanded c19 permit 88 ^65000:4_0:96_0:5$ ip community-list expanded c19 permit 89 ^65000:3_0:96_0:77$ ip community-list expanded c19 permit 90 ^65000:4_0:97_0:5$ ip community-list expanded c19 permit 91 ^65000:3_0:97_0:78$ ip community-list expanded c19 permit 92 ^65000:4_0:98_0:5$ ip community-list expanded c19 permit 93 ^65000:3_0:98_0:79$ ip community-list expanded c19 permit 94 ^65000:4_0:99_0:5$ ip community-list expanded c19 permit 95 ^65000:3_0:99_0:80$ ip community-list expanded c19 permit 96 ^65000:3_0:100_0:81$ ip community-list expanded c19 permit 97 ^65000:3_0:101_0:82$ ip community-list expanded c19 permit 98 ^65000:3_0:102_0:83$ ip community-list expanded c19 permit 99 ^65000:3_0:103_0:84$ ip community-list expanded c19 permit 100 ^65000:3_0:104_0:85$ ip community-list expanded c19 permit 101 ^65000:3_0:105_0:86$ ip community-list expanded c19 permit 102 ^65000:3_0:106_0:87$ ip community-list expanded c19 permit 103 ^65000:3_0:107_0:88$ ip community-list expanded c19 permit 104 ^65000:3_0:108_0:89$ ip community-list expanded c19 permit 105 ^65000:3_0:109_0:90$ ip community-list expanded c19 permit 106 ^65000:3_0:110_0:91$ ip community-list expanded c19 permit 107 ^65000:3_0:111_0:92$ ip community-list expanded c19 permit 108 ^65000:3_0:112_0:93$ ip community-list expanded c19 permit 109 ^65000:3_0:113_0:94$ ip community-list expanded c19 permit 110 ^65000:4_0:114_0:6$ ip community-list expanded c19 permit 111 ^65000:3_0:114_0:95$ ip community-list expanded c19 permit 112 ^65000:4_0:115_0:6$ ip community-list expanded c19 permit 113 ^65000:3_0:115_0:96$ ip community-list expanded c19 permit 114 ^65000:4_0:116_0:6$ ip community-list expanded c19 permit 115 ^65000:3_0:116_0:97$ ip community-list expanded c19 permit 116 ^65000:4_0:117_0:6$ ip community-list expanded c19 permit 117 ^65000:3_0:117_0:98$ ip community-list expanded c19 permit 118 ^65000:4_0:118_0:6$ ip community-list expanded c19 permit 119 ^65000:3_0:118_0:99$ ip community-list expanded c19 permit 120 ^65000:4_0:119_0:6$ ip community-list expanded c19 permit 121 ^65000:3_0:119_0:100$ ip community-list expanded c19 permit 122 ^65000:3_0:120_0:101$ ip community-list expanded c19 permit 123 ^65000:3_0:121_0:102$ ip community-list expanded c19 permit 124 ^65000:3_0:122_0:103$ ip community-list expanded c19 permit 125 ^65000:3_0:123_0:104$ ip community-list expanded c19 permit 126 ^65000:3_0:124_0:105$ ip community-list expanded c19 permit 127 ^65000:3_0:125_0:106$ ip community-list expanded c19 permit 128 ^65000:3_0:126_0:107$ ip community-list expanded c19 permit 129 ^65000:3_0:127_0:108$ ip community-list expanded c19 permit 130 ^65000:3_0:128_0:109$ ip community-list expanded c19 permit 131 ^65000:3_0:129_0:110$ ip community-list expanded c19 permit 132 ^65000:3_0:130_0:111$ ip community-list expanded c19 permit 133 ^65000:3_0:131_0:112$ ip community-list expanded c19 permit 134 ^65000:3_0:132_0:113$ ip community-list expanded c19 permit 135 ^65000:4_0:133_0:7$ ip community-list expanded c19 permit 136 ^65000:3_0:133_0:114$ ip community-list expanded c19 permit 137 ^65000:4_0:134_0:7$ ip community-list expanded c19 permit 138 ^65000:3_0:134_0:115$ ip community-list expanded c19 permit 139 ^65000:4_0:135_0:7$ ip community-list expanded c19 permit 140 ^65000:3_0:135_0:116$ ip community-list expanded c19 permit 141 ^65000:4_0:136_0:7$ ip community-list expanded c19 permit 142 ^65000:3_0:136_0:117$ ip community-list expanded c19 permit 143 ^65000:4_0:137_0:7$ ip community-list expanded c19 permit 144 ^65000:3_0:137_0:118$ ip community-list expanded c19 permit 145 ^65000:4_0:138_0:7$ ip community-list expanded c19 permit 146 ^65000:3_0:138_0:119$ ip community-list expanded c19 permit 147 ^65000:4_0:139_0:7$ ip community-list expanded c19 permit 148 ^65000:3_0:139_0:120$ ip community-list expanded c19 permit 149 ^65000:3_0:140_0:121$ ip community-list expanded c19 permit 150 ^65000:3_0:141_0:122$ ip community-list expanded c19 permit 151 ^65000:3_0:142_0:123$ ip community-list expanded c19 permit 152 ^65000:3_0:143_0:124$ ip community-list expanded c19 permit 153 ^65000:3_0:144_0:125$ ip community-list expanded c19 permit 154 ^65000:3_0:145_0:126$ ip community-list expanded c19 permit 155 ^65000:3_0:146_0:127$ ip community-list expanded c19 permit 156 ^65000:3_0:147_0:128$ ip community-list expanded c19 permit 157 ^65000:3_0:148_0:129$ ip community-list expanded c19 permit 158 ^65000:3_0:149_0:130$ ip community-list expanded c19 permit 159 ^65000:3_0:150_0:131$ ip community-list expanded c19 permit 160 ^65000:3_0:151_0:132$ ip community-list expanded c19 permit 161 ^65000:4_0:152_0:8$ ip community-list expanded c19 permit 162 ^65000:3_0:152_0:133$ ip community-list expanded c19 permit 163 ^65000:4_0:153_0:8$ ip community-list expanded c19 permit 164 ^65000:3_0:153_0:134$ ip community-list expanded c19 permit 165 ^65000:4_0:154_0:8$ ip community-list expanded c19 permit 166 ^65000:3_0:154_0:135$ ip community-list expanded c19 permit 167 ^65000:4_0:155_0:8$ ip community-list expanded c19 permit 168 ^65000:3_0:155_0:136$ ip community-list expanded c19 permit 169 ^65000:4_0:156_0:8$ ip community-list expanded c19 permit 170 ^65000:3_0:156_0:137$ ip community-list expanded c19 permit 171 ^65000:4_0:157_0:8$ ip community-list expanded c19 permit 172 ^65000:3_0:157_0:138$ ip community-list expanded c19 permit 173 ^65000:4_0:158_0:8$ ip community-list expanded c19 permit 174 ^65000:3_0:158_0:139$ ip community-list expanded c19 permit 175 ^65000:4_0:159_0:8$ ip community-list expanded c19 permit 176 ^65000:3_0:159_0:140$ ip community-list expanded c19 permit 177 ^65000:3_0:160_0:141$ ip community-list expanded c19 permit 178 ^65000:3_0:161_0:142$ ip community-list expanded c19 permit 179 ^65000:3_0:162_0:143$ ip community-list expanded c19 permit 180 ^65000:3_0:163_0:144$ ip community-list expanded c19 permit 181 ^65000:3_0:164_0:145$ ip community-list expanded c19 permit 182 ^65000:3_0:165_0:146$ ip community-list expanded c19 permit 183 ^65000:3_0:166_0:147$ ip community-list expanded c19 permit 184 ^65000:3_0:167_0:148$ ip community-list expanded c19 permit 185 ^65000:3_0:168_0:149$ ip community-list expanded c19 permit 186 ^65000:3_0:169_0:150$ ip community-list expanded c19 permit 187 ^65000:3_0:170_0:151$ ip community-list expanded c19 permit 188 ^65000:4_0:171_0:9$ ip community-list expanded c19 permit 189 ^65000:3_0:171_0:152$ ip community-list expanded c19 permit 190 ^65000:4_0:172_0:9$ ip community-list expanded c19 permit 191 ^65000:3_0:172_0:153$ ip community-list expanded c19 permit 192 ^65000:4_0:173_0:9$ ip community-list expanded c19 permit 193 ^65000:3_0:173_0:154$ ip community-list expanded c19 permit 194 ^65000:4_0:174_0:9$ ip community-list expanded c19 permit 195 ^65000:3_0:174_0:155$ ip community-list expanded c19 permit 196 ^65000:4_0:175_0:9$ ip community-list expanded c19 permit 197 ^65000:3_0:175_0:156$ ip community-list expanded c19 permit 198 ^65000:4_0:176_0:9$ ip community-list expanded c19 permit 199 ^65000:3_0:176_0:157$ ip community-list expanded c19 permit 200 ^65000:4_0:177_0:9$ ip community-list expanded c19 permit 201 ^65000:3_0:177_0:158$ ip community-list expanded c19 permit 202 ^65000:4_0:178_0:9$ ip community-list expanded c19 permit 203 ^65000:3_0:178_0:159$ ip community-list expanded c19 permit 204 ^65000:4_0:179_0:9$ ip community-list expanded c19 permit 205 ^65000:3_0:179_0:160$ ip community-list expanded c19 permit 206 ^65000:3_0:180_0:161$ ip community-list expanded c19 permit 207 ^65000:3_0:181_0:162$ ip community-list expanded c19 permit 208 ^65000:3_0:182_0:163$ ip community-list expanded c19 permit 209 ^65000:3_0:183_0:164$ ip community-list expanded c19 permit 210 ^65000:3_0:184_0:165$ ip community-list expanded c19 permit 211 ^65000:3_0:185_0:166$ ip community-list expanded c19 permit 212 ^65000:3_0:186_0:167$ ip community-list expanded c19 permit 213 ^65000:3_0:187_0:168$ ip community-list expanded c19 permit 214 ^65000:3_0:188_0:169$ ip community-list expanded c19 permit 215 ^65000:3_0:189_0:170$ ip community-list expanded c19 permit 216 ^65000:4_0:190_0:10$ ip community-list expanded c19 permit 217 ^65000:3_0:190_0:171$ ip community-list expanded c19 permit 218 ^65000:4_0:191_0:10$ ip community-list expanded c19 permit 219 ^65000:3_0:191_0:172$ ip community-list expanded c19 permit 220 ^65000:4_0:192_0:10$ ip community-list expanded c19 permit 221 ^65000:3_0:192_0:173$ ip community-list expanded c19 permit 222 ^65000:4_0:193_0:10$ ip community-list expanded c19 permit 223 ^65000:3_0:193_0:174$ ip community-list expanded c19 permit 224 ^65000:4_0:194_0:10$ ip community-list expanded c19 permit 225 ^65000:3_0:194_0:175$ ip community-list expanded c19 permit 226 ^65000:4_0:195_0:10$ ip community-list expanded c19 permit 227 ^65000:3_0:195_0:176$ ip community-list expanded c19 permit 228 ^65000:4_0:196_0:10$ ip community-list expanded c19 permit 229 ^65000:3_0:196_0:177$ ip community-list expanded c19 permit 230 ^65000:4_0:197_0:10$ ip community-list expanded c19 permit 231 ^65000:3_0:197_0:178$ ip community-list expanded c19 permit 232 ^65000:4_0:198_0:10$ ip community-list expanded c19 permit 233 ^65000:3_0:198_0:179$ ip community-list expanded c19 permit 234 ^65000:4_0:199_0:10$ ip community-list expanded c19 permit 235 ^65000:3_0:199_0:180$ ip community-list expanded c19 permit 236 ^65000:3_0:200_0:181$ ip community-list expanded c19 permit 237 ^65000:3_0:201_0:182$ ip community-list expanded c19 permit 238 ^65000:3_0:202_0:183$ ip community-list expanded c19 permit 239 ^65000:3_0:203_0:184$ ip community-list expanded c19 permit 240 ^65000:3_0:204_0:185$ ip community-list expanded c19 permit 241 ^65000:3_0:205_0:186$ ip community-list expanded c19 permit 242 ^65000:3_0:206_0:187$ ip community-list expanded c19 permit 243 ^65000:3_0:207_0:188$ ip community-list expanded c19 permit 244 ^65000:3_0:208_0:189$ ip community-list expanded c19 permit 245 ^65000:4_0:209_0:11$ ip community-list expanded c19 permit 246 ^65000:3_0:209_0:190$ ip community-list expanded c19 permit 247 ^65000:4_0:210_0:11$ ip community-list expanded c19 permit 248 ^65000:3_0:210_0:191$ ip community-list expanded c19 permit 249 ^65000:4_0:211_0:11$ ip community-list expanded c19 permit 250 ^65000:3_0:211_0:192$ ip community-list expanded c19 permit 251 ^65000:4_0:212_0:11$ ip community-list expanded c19 permit 252 ^65000:3_0:212_0:193$ ip community-list expanded c19 permit 253 ^65000:4_0:213_0:11$ ip community-list expanded c19 permit 254 ^65000:3_0:213_0:194$ ip community-list expanded c19 permit 255 ^65000:4_0:214_0:11$ ip community-list expanded c19 permit 256 ^65000:3_0:214_0:195$ ip community-list expanded c19 permit 257 ^65000:4_0:215_0:11$ ip community-list expanded c19 permit 258 ^65000:3_0:215_0:196$ ip community-list expanded c19 permit 259 ^65000:4_0:216_0:11$ ip community-list expanded c19 permit 260 ^65000:3_0:216_0:197$ ip community-list expanded c19 permit 261 ^65000:4_0:217_0:11$ ip community-list expanded c19 permit 262 ^65000:3_0:217_0:198$ ip community-list expanded c19 permit 263 ^65000:4_0:218_0:11$ ip community-list expanded c19 permit 264 ^65000:3_0:218_0:199$ ip community-list expanded c19 permit 265 ^65000:4_0:219_0:11$ ip community-list expanded c19 permit 266 ^65000:3_0:219_0:200$ ip community-list expanded c19 permit 267 ^65000:3_0:220_0:201$ ip community-list expanded c19 permit 268 ^65000:3_0:221_0:202$ ip community-list expanded c19 permit 269 ^65000:3_0:222_0:203$ ip community-list expanded c19 permit 270 ^65000:3_0:223_0:204$ ip community-list expanded c19 permit 271 ^65000:3_0:224_0:205$ ip community-list expanded c19 permit 272 ^65000:3_0:225_0:206$ ip community-list expanded c19 permit 273 ^65000:3_0:226_0:207$ ip community-list expanded c19 permit 274 ^65000:3_0:227_0:208$ ip community-list expanded c19 permit 275 ^65000:4_0:228_0:12$ ip community-list expanded c19 permit 276 ^65000:3_0:228_0:209$ ip community-list expanded c19 permit 277 ^65000:4_0:229_0:12$ ip community-list expanded c19 permit 278 ^65000:3_0:229_0:210$ ip community-list expanded c19 permit 279 ^65000:4_0:230_0:12$ ip community-list expanded c19 permit 280 ^65000:3_0:230_0:211$ ip community-list expanded c19 permit 281 ^65000:4_0:231_0:12$ ip community-list expanded c19 permit 282 ^65000:3_0:231_0:212$ ip community-list expanded c19 permit 283 ^65000:4_0:232_0:12$ ip community-list expanded c19 permit 284 ^65000:3_0:232_0:213$ ip community-list expanded c19 permit 285 ^65000:4_0:233_0:12$ ip community-list expanded c19 permit 286 ^65000:3_0:233_0:214$ ip community-list expanded c19 permit 287 ^65000:4_0:234_0:12$ ip community-list expanded c19 permit 288 ^65000:3_0:234_0:215$ ip community-list expanded c19 permit 289 ^65000:4_0:235_0:12$ ip community-list expanded c19 permit 290 ^65000:3_0:235_0:216$ ip community-list expanded c19 permit 291 ^65000:4_0:236_0:12$ ip community-list expanded c19 permit 292 ^65000:3_0:236_0:217$ ip community-list expanded c19 permit 293 ^65000:4_0:237_0:12$ ip community-list expanded c19 permit 294 ^65000:3_0:237_0:218$ ip community-list expanded c19 permit 295 ^65000:4_0:238_0:12$ ip community-list expanded c19 permit 296 ^65000:3_0:238_0:219$ ip community-list expanded c19 permit 297 ^65000:4_0:239_0:12$ ip community-list expanded c19 permit 298 ^65000:3_0:239_0:220$ ip community-list expanded c19 permit 299 ^65000:3_0:240_0:221$ ip community-list expanded c19 permit 300 ^65000:3_0:241_0:222$ ip community-list expanded c19 permit 301 ^65000:3_0:242_0:223$ ip community-list expanded c19 permit 302 ^65000:3_0:243_0:224$ ip community-list expanded c19 permit 303 ^65000:3_0:244_0:225$ ip community-list expanded c19 permit 304 ^65000:3_0:245_0:226$ ip community-list expanded c19 permit 305 ^65000:3_0:246_0:227$ ip community-list expanded c19 permit 306 ^65000:4_0:247_0:13$ ip community-list expanded c19 permit 307 ^65000:3_0:247_0:228$ ip community-list expanded c19 permit 308 ^65000:4_0:248_0:13$ ip community-list expanded c19 permit 309 ^65000:3_0:248_0:229$ ip community-list expanded c19 permit 310 ^65000:4_0:249_0:13$ ip community-list expanded c19 permit 311 ^65000:3_0:249_0:230$ ip community-list expanded c19 permit 312 ^65000:4_0:250_0:13$ ip community-list expanded c19 permit 313 ^65000:3_0:250_0:231$ ip community-list expanded c19 permit 314 ^65000:4_0:251_0:13$ ip community-list expanded c19 permit 315 ^65000:3_0:251_0:232$ ip community-list expanded c19 permit 316 ^65000:4_0:252_0:13$ ip community-list expanded c19 permit 317 ^65000:3_0:252_0:233$ ip community-list expanded c19 permit 318 ^65000:4_0:253_0:13$ ip community-list expanded c19 permit 319 ^65000:3_0:253_0:234$ ip community-list expanded c19 permit 320 ^65000:4_0:254_0:13$ ip community-list expanded c19 permit 321 ^65000:3_0:254_0:235$ ip community-list expanded c19 permit 322 ^65000:4_0:255_0:13$ ip community-list expanded c19 permit 323 ^65000:3_0:255_0:236$ ip community-list expanded c19 permit 324 ^65000:4_0:256_0:13$ ip community-list expanded c19 permit 325 ^65000:3_0:256_0:237$ route-map calculator permit 28037 match community 1_1_18 2_1_19 1_2_17 1_3_16 1_4_15 set community 0:19 route-map calculator permit 28038 match community 1_5_14 1_6_13 1_7_12 1_8_11 1_9_10 set community 0:19 route-map calculator permit 28039 match community c4_19_1 c3_20_1 c3_21_2 c3_22_3 c3_23_4 set community 0:19 route-map calculator permit 28040 match community c3_24_5 c3_25_6 c3_26_7 c3_27_8 c3_28_9 set community 0:19 route-map calculator permit 28041 match community c3_29_10 c3_30_11 c3_31_12 c3_32_13 c3_33_14 set community 0:19 route-map calculator permit 28042 match community c3_34_15 c3_35_16 c3_36_17 c3_37_18 c4_38_2 set community 0:19 route-map calculator permit 28043 match community c3_38_19 c4_39_2 c3_39_20 c3_40_21 c3_41_22 set community 0:19 route-map calculator permit 28044 match community c3_42_23 c3_43_24 c3_44_25 c3_45_26 c3_46_27 set community 0:19 route-map calculator permit 28045 match community c3_47_28 c3_48_29 c3_49_30 c3_50_31 c3_51_32 set community 0:19 route-map calculator permit 28046 match community c3_52_33 c3_53_34 c3_54_35 c3_55_36 c3_56_37 set community 0:19 route-map calculator permit 28047 match community c4_57_3 c3_57_38 c4_58_3 c3_58_39 c4_59_3 set community 0:19 route-map calculator permit 28048 match community c3_59_40 c3_60_41 c3_61_42 c3_62_43 c3_63_44 set community 0:19 route-map calculator permit 28049 match community c3_64_45 c3_65_46 c3_66_47 c3_67_48 c3_68_49 set community 0:19 route-map calculator permit 28050 match community c3_69_50 c3_70_51 c3_71_52 c3_72_53 c3_73_54 set community 0:19 route-map calculator permit 28051 match community c3_74_55 c3_75_56 c4_76_4 c3_76_57 c4_77_4 set community 0:19 route-map calculator permit 28052 match community c3_77_58 c4_78_4 c3_78_59 c4_79_4 c3_79_60 set community 0:19 route-map calculator permit 28053 match community c3_80_61 c3_81_62 c3_82_63 c3_83_64 c3_84_65 set community 0:19 route-map calculator permit 28054 match community c3_85_66 c3_86_67 c3_87_68 c3_88_69 c3_89_70 set community 0:19 route-map calculator permit 28055 match community c3_90_71 c3_91_72 c3_92_73 c3_93_74 c3_94_75 set community 0:19 route-map calculator permit 28056 match community c4_95_5 c3_95_76 c4_96_5 c3_96_77 c4_97_5 set community 0:19 route-map calculator permit 28057 match community c3_97_78 c4_98_5 c3_98_79 c4_99_5 c3_99_80 set community 0:19 route-map calculator permit 28058 match community c3_100_81 c3_101_82 c3_102_83 c3_103_84 c3_104_85 set community 0:19 route-map calculator permit 28059 match community c3_105_86 c3_106_87 c3_107_88 c3_108_89 c3_109_90 set community 0:19 route-map calculator permit 28060 match community c3_110_91 c3_111_92 c3_112_93 c3_113_94 c4_114_6 set community 0:19 route-map calculator permit 28061 match community c3_114_95 c4_115_6 c3_115_96 c4_116_6 c3_116_97 set community 0:19 route-map calculator permit 28062 match community c4_117_6 c3_117_98 c4_118_6 c3_118_99 c4_119_6 set community 0:19 route-map calculator permit 28063 match community c3_119_100 c3_120_101 c3_121_102 c3_122_103 c3_123_104 set community 0:19 route-map calculator permit 28064 match community c3_124_105 c3_125_106 c3_126_107 c3_127_108 c3_128_109 set community 0:19 route-map calculator permit 28065 match community c3_129_110 c3_130_111 c3_131_112 c3_132_113 c4_133_7 set community 0:19 route-map calculator permit 28066 match community c3_133_114 c4_134_7 c3_134_115 c4_135_7 c3_135_116 set community 0:19 route-map calculator permit 28067 match community c4_136_7 c3_136_117 c4_137_7 c3_137_118 c4_138_7 set community 0:19 route-map calculator permit 28068 match community c3_138_119 c4_139_7 c3_139_120 c3_140_121 c3_141_122 set community 0:19 route-map calculator permit 28069 match community c3_142_123 c3_143_124 c3_144_125 c3_145_126 c3_146_127 set community 0:19 route-map calculator permit 28070 match community c3_147_128 c3_148_129 c3_149_130 c3_150_131 c3_151_132 set community 0:19 route-map calculator permit 28071 match community c4_152_8 c3_152_133 c4_153_8 c3_153_134 c4_154_8 set community 0:19 route-map calculator permit 28072 match community c3_154_135 c4_155_8 c3_155_136 c4_156_8 c3_156_137 set community 0:19 route-map calculator permit 28073 match community c4_157_8 c3_157_138 c4_158_8 c3_158_139 c4_159_8 set community 0:19 route-map calculator permit 28074 match community c3_159_140 c3_160_141 c3_161_142 c3_162_143 c3_163_144 set community 0:19 route-map calculator permit 28075 match community c3_164_145 c3_165_146 c3_166_147 c3_167_148 c3_168_149 set community 0:19 route-map calculator permit 28076 match community c3_169_150 c3_170_151 c4_171_9 c3_171_152 c4_172_9 set community 0:19 route-map calculator permit 28077 match community c3_172_153 c4_173_9 c3_173_154 c4_174_9 c3_174_155 set community 0:19 route-map calculator permit 28078 match community c4_175_9 c3_175_156 c4_176_9 c3_176_157 c4_177_9 set community 0:19 route-map calculator permit 28079 match community c3_177_158 c4_178_9 c3_178_159 c4_179_9 c3_179_160 set community 0:19 route-map calculator permit 28080 match community c3_180_161 c3_181_162 c3_182_163 c3_183_164 c3_184_165 set community 0:19 route-map calculator permit 28081 match community c3_185_166 c3_186_167 c3_187_168 c3_188_169 c3_189_170 set community 0:19 route-map calculator permit 28082 match community c4_190_10 c3_190_171 c4_191_10 c3_191_172 c4_192_10 set community 0:19 route-map calculator permit 28083 match community c3_192_173 c4_193_10 c3_193_174 c4_194_10 c3_194_175 set community 0:19 route-map calculator permit 28084 match community c4_195_10 c3_195_176 c4_196_10 c3_196_177 c4_197_10 set community 0:19 route-map calculator permit 28085 match community c3_197_178 c4_198_10 c3_198_179 c4_199_10 c3_199_180 set community 0:19 route-map calculator permit 28086 match community c3_200_181 c3_201_182 c3_202_183 c3_203_184 c3_204_185 set community 0:19 route-map calculator permit 28087 match community c3_205_186 c3_206_187 c3_207_188 c3_208_189 c4_209_11 set community 0:19 route-map calculator permit 28088 match community c3_209_190 c4_210_11 c3_210_191 c4_211_11 c3_211_192 set community 0:19 route-map calculator permit 28089 match community c4_212_11 c3_212_193 c4_213_11 c3_213_194 c4_214_11 set community 0:19 route-map calculator permit 28090 match community c3_214_195 c4_215_11 c3_215_196 c4_216_11 c3_216_197 set community 0:19 route-map calculator permit 28091 match community c4_217_11 c3_217_198 c4_218_11 c3_218_199 c4_219_11 set community 0:19 route-map calculator permit 28092 match community c3_219_200 c3_220_201 c3_221_202 c3_222_203 c3_223_204 set community 0:19 route-map calculator permit 28093 match community c3_224_205 c3_225_206 c3_226_207 c3_227_208 c4_228_12 set community 0:19 route-map calculator permit 28094 match community c3_228_209 c4_229_12 c3_229_210 c4_230_12 c3_230_211 set community 0:19 route-map calculator permit 28095 match community c4_231_12 c3_231_212 c4_232_12 c3_232_213 c4_233_12 set community 0:19 route-map calculator permit 28096 match community c3_233_214 c4_234_12 c3_234_215 c4_235_12 c3_235_216 set community 0:19 route-map calculator permit 28097 match community c4_236_12 c3_236_217 c4_237_12 c3_237_218 c4_238_12 set community 0:19 route-map calculator permit 28098 match community c3_238_219 c4_239_12 c3_239_220 c3_240_221 c3_241_222 set community 0:19 route-map calculator permit 28099 match community c3_242_223 c3_243_224 c3_244_225 c3_245_226 c3_246_227 set community 0:19 route-map calculator permit 28100 match community c4_247_13 c3_247_228 c4_248_13 c3_248_229 c4_249_13 set community 0:19 route-map calculator permit 28101 match community c3_249_230 c4_250_13 c3_250_231 c4_251_13 c3_251_232 set community 0:19 route-map calculator permit 28102 match community c4_252_13 c3_252_233 c4_253_13 c3_253_234 c4_254_13 set community 0:19 route-map calculator permit 28103 match community c3_254_235 c4_255_13 c3_255_236 c4_256_13 c3_256_237 set community 0:19 ip community-list standard 2_11_201 permit 65000:2 0:11 0:201 ip community-list standard 2_33_67 permit 65000:2 0:33 0:67 route-map calculator permit 28104 match community 2_11_201 2_33_67 set community 0:2211 ip community-list standard 2_79_236 permit 65000:2 0:79 0:236 ip community-list standard 2_118_158 permit 65000:2 0:118 0:158 route-map calculator permit 28105 match community 2_79_236 2_118_158 set community 0:18644 ip community-list standard 2_101_101 permit 65000:2 0:101 0:101 route-map calculator permit 28106 match community 2_101_101 set community 0:10201 ip community-list standard 2_49_159 permit 65000:2 0:49 0:159 ip community-list standard 2_53_147 permit 65000:2 0:53 0:147 route-map calculator permit 28107 match community 2_49_159 2_53_147 set community 0:7791 ip community-list standard 2_159_185 permit 65000:2 0:159 0:185 route-map calculator permit 28108 match community 2_159_185 set community 0:29415 ip community-list standard 2_34_159 permit 65000:2 0:34 0:159 ip community-list standard 2_51_106 permit 65000:2 0:51 0:106 ip community-list standard 2_53_102 permit 65000:2 0:53 0:102 route-map calculator permit 28109 match community 2_34_159 2_51_106 2_53_102 set community 0:5406 ip community-list standard 2_97_195 permit 65000:2 0:97 0:195 route-map calculator permit 28110 match community 2_97_195 set community 0:18915 ip community-list standard 2_239_247 permit 65000:2 0:239 0:247 route-map calculator permit 28111 match community 2_239_247 set community 0:59033 ip community-list standard 2_131_165 permit 65000:2 0:131 0:165 route-map calculator permit 28112 match community 2_131_165 set community 0:21615 ip community-list standard 2_55_218 permit 65000:2 0:55 0:218 ip community-list standard 2_109_110 permit 65000:2 0:109 0:110 route-map calculator permit 28113 match community 2_55_218 2_109_110 set community 0:11990 ip community-list standard 2_70_219 permit 65000:2 0:70 0:219 ip community-list standard 2_73_210 permit 65000:2 0:73 0:210 ip community-list standard 2_105_146 permit 65000:2 0:105 0:146 route-map calculator permit 28114 match community 2_70_219 2_73_210 2_105_146 set community 0:15330 ip community-list standard 2_139_149 permit 65000:2 0:139 0:149 route-map calculator permit 28115 match community 2_139_149 set community 0:20711 ip community-list standard 2_49_133 permit 65000:2 0:49 0:133 route-map calculator permit 28116 match community 2_49_133 set community 0:6517 ip community-list standard 2_59_256 permit 65000:2 0:59 0:256 ip community-list standard 2_64_236 permit 65000:2 0:64 0:236 ip community-list standard 2_118_128 permit 65000:2 0:118 0:128 route-map calculator permit 28117 match community 2_59_256 2_64_236 2_118_128 set community 0:15104 ip community-list standard 2_143_146 permit 65000:2 0:143 0:146 route-map calculator permit 28118 match community 2_143_146 set community 0:20878 ip community-list standard 2_134_213 permit 65000:2 0:134 0:213 ip community-list standard 2_142_201 permit 65000:2 0:142 0:201 route-map calculator permit 28119 match community 2_134_213 2_142_201 set community 0:28542 ip community-list standard 2_227_255 permit 65000:2 0:227 0:255 route-map calculator permit 28120 match community 2_227_255 set community 0:57885 ip community-list standard 2_37_47 permit 65000:2 0:37 0:47 route-map calculator permit 28121 match community 2_37_47 set community 0:1739 ip community-list standard 2_61_109 permit 65000:2 0:61 0:109 route-map calculator permit 28122 match community 2_61_109 set community 0:6649 ip community-list standard 2_3_200 permit 65000:2 0:3 0:200 ip community-list standard 2_4_150 permit 65000:2 0:4 0:150 ip community-list standard 2_5_120 permit 65000:2 0:5 0:120 ip community-list standard 2_6_100 permit 65000:2 0:6 0:100 ip community-list standard 2_8_75 permit 65000:2 0:8 0:75 ip community-list standard 2_10_60 permit 65000:2 0:10 0:60 ip community-list standard 2_12_50 permit 65000:2 0:12 0:50 ip community-list standard 2_15_40 permit 65000:2 0:15 0:40 ip community-list standard 2_20_30 permit 65000:2 0:20 0:30 ip community-list standard 2_24_25 permit 65000:2 0:24 0:25 route-map calculator permit 28123 match community 2_3_200 2_4_150 2_5_120 2_6_100 2_8_75 set community 0:600 route-map calculator permit 28124 match community 2_10_60 2_12_50 2_15_40 2_20_30 2_24_25 set community 0:600 ip community-list standard 1_1_254 permit 65000:1 0:1 0:254 ip community-list standard 2_1_255 permit 65000:2 0:1 0:255 ip community-list standard 1_2_253 permit 65000:1 0:2 0:253 ip community-list standard 2_3_85 permit 65000:2 0:3 0:85 ip community-list standard 1_3_252 permit 65000:1 0:3 0:252 ip community-list standard 1_4_251 permit 65000:1 0:4 0:251 ip community-list standard 2_5_51 permit 65000:2 0:5 0:51 ip community-list standard 1_5_250 permit 65000:1 0:5 0:250 ip community-list standard 1_6_249 permit 65000:1 0:6 0:249 ip community-list standard 1_7_248 permit 65000:1 0:7 0:248 ip community-list standard 1_8_247 permit 65000:1 0:8 0:247 ip community-list standard 1_9_246 permit 65000:1 0:9 0:246 ip community-list standard 1_10_245 permit 65000:1 0:10 0:245 ip community-list standard 1_11_244 permit 65000:1 0:11 0:244 ip community-list standard 1_12_243 permit 65000:1 0:12 0:243 ip community-list standard 1_13_242 permit 65000:1 0:13 0:242 ip community-list standard 1_14_241 permit 65000:1 0:14 0:241 ip community-list standard 2_15_17 permit 65000:2 0:15 0:17 ip community-list standard 1_15_240 permit 65000:1 0:15 0:240 ip community-list standard 1_16_239 permit 65000:1 0:16 0:239 ip community-list standard 1_17_238 permit 65000:1 0:17 0:238 ip community-list standard 1_18_237 permit 65000:1 0:18 0:237 ip community-list standard 1_19_236 permit 65000:1 0:19 0:236 ip community-list standard 1_20_235 permit 65000:1 0:20 0:235 ip community-list standard 1_21_234 permit 65000:1 0:21 0:234 ip community-list standard 1_22_233 permit 65000:1 0:22 0:233 ip community-list standard 1_23_232 permit 65000:1 0:23 0:232 ip community-list standard 1_24_231 permit 65000:1 0:24 0:231 ip community-list standard 1_25_230 permit 65000:1 0:25 0:230 ip community-list standard 1_26_229 permit 65000:1 0:26 0:229 ip community-list standard 1_27_228 permit 65000:1 0:27 0:228 ip community-list standard 1_28_227 permit 65000:1 0:28 0:227 ip community-list standard 1_29_226 permit 65000:1 0:29 0:226 ip community-list standard 1_30_225 permit 65000:1 0:30 0:225 ip community-list standard 1_31_224 permit 65000:1 0:31 0:224 ip community-list standard 1_32_223 permit 65000:1 0:32 0:223 ip community-list standard 1_33_222 permit 65000:1 0:33 0:222 ip community-list standard 1_34_221 permit 65000:1 0:34 0:221 ip community-list standard 1_35_220 permit 65000:1 0:35 0:220 ip community-list standard 1_36_219 permit 65000:1 0:36 0:219 ip community-list standard 1_37_218 permit 65000:1 0:37 0:218 ip community-list standard 1_38_217 permit 65000:1 0:38 0:217 ip community-list standard 1_39_216 permit 65000:1 0:39 0:216 ip community-list standard 1_40_215 permit 65000:1 0:40 0:215 ip community-list standard 1_41_214 permit 65000:1 0:41 0:214 ip community-list standard 1_42_213 permit 65000:1 0:42 0:213 ip community-list standard 1_43_212 permit 65000:1 0:43 0:212 ip community-list standard 1_44_211 permit 65000:1 0:44 0:211 ip community-list standard 1_45_210 permit 65000:1 0:45 0:210 ip community-list standard 1_46_209 permit 65000:1 0:46 0:209 ip community-list standard 1_47_208 permit 65000:1 0:47 0:208 ip community-list standard 1_48_207 permit 65000:1 0:48 0:207 ip community-list standard 1_49_206 permit 65000:1 0:49 0:206 ip community-list standard 1_50_205 permit 65000:1 0:50 0:205 ip community-list standard 1_51_204 permit 65000:1 0:51 0:204 ip community-list standard 1_52_203 permit 65000:1 0:52 0:203 ip community-list standard 1_53_202 permit 65000:1 0:53 0:202 ip community-list standard 1_54_201 permit 65000:1 0:54 0:201 ip community-list standard 1_55_200 permit 65000:1 0:55 0:200 ip community-list standard 1_56_199 permit 65000:1 0:56 0:199 ip community-list standard 1_57_198 permit 65000:1 0:57 0:198 ip community-list standard 1_58_197 permit 65000:1 0:58 0:197 ip community-list standard 1_59_196 permit 65000:1 0:59 0:196 ip community-list standard 1_60_195 permit 65000:1 0:60 0:195 ip community-list standard 1_61_194 permit 65000:1 0:61 0:194 ip community-list standard 1_62_193 permit 65000:1 0:62 0:193 ip community-list standard 1_63_192 permit 65000:1 0:63 0:192 ip community-list standard 1_64_191 permit 65000:1 0:64 0:191 ip community-list standard 1_65_190 permit 65000:1 0:65 0:190 ip community-list standard 1_66_189 permit 65000:1 0:66 0:189 ip community-list standard 1_67_188 permit 65000:1 0:67 0:188 ip community-list standard 1_68_187 permit 65000:1 0:68 0:187 ip community-list standard 1_69_186 permit 65000:1 0:69 0:186 ip community-list standard 1_70_185 permit 65000:1 0:70 0:185 ip community-list standard 1_71_184 permit 65000:1 0:71 0:184 ip community-list standard 1_72_183 permit 65000:1 0:72 0:183 ip community-list standard 1_73_182 permit 65000:1 0:73 0:182 ip community-list standard 1_74_181 permit 65000:1 0:74 0:181 ip community-list standard 1_75_180 permit 65000:1 0:75 0:180 ip community-list standard 1_76_179 permit 65000:1 0:76 0:179 ip community-list standard 1_77_178 permit 65000:1 0:77 0:178 ip community-list standard 1_78_177 permit 65000:1 0:78 0:177 ip community-list standard 1_79_176 permit 65000:1 0:79 0:176 ip community-list standard 1_80_175 permit 65000:1 0:80 0:175 ip community-list standard 1_81_174 permit 65000:1 0:81 0:174 ip community-list standard 1_82_173 permit 65000:1 0:82 0:173 ip community-list standard 1_83_172 permit 65000:1 0:83 0:172 ip community-list standard 1_84_171 permit 65000:1 0:84 0:171 ip community-list standard 1_85_170 permit 65000:1 0:85 0:170 ip community-list standard 1_86_169 permit 65000:1 0:86 0:169 ip community-list standard 1_87_168 permit 65000:1 0:87 0:168 ip community-list standard 1_88_167 permit 65000:1 0:88 0:167 ip community-list standard 1_89_166 permit 65000:1 0:89 0:166 ip community-list standard 1_90_165 permit 65000:1 0:90 0:165 ip community-list standard 1_91_164 permit 65000:1 0:91 0:164 ip community-list standard 1_92_163 permit 65000:1 0:92 0:163 ip community-list standard 1_93_162 permit 65000:1 0:93 0:162 ip community-list standard 1_94_161 permit 65000:1 0:94 0:161 ip community-list standard 1_95_160 permit 65000:1 0:95 0:160 ip community-list standard 1_96_159 permit 65000:1 0:96 0:159 ip community-list standard 1_97_158 permit 65000:1 0:97 0:158 ip community-list standard 1_98_157 permit 65000:1 0:98 0:157 ip community-list standard 1_99_156 permit 65000:1 0:99 0:156 ip community-list standard 1_100_155 permit 65000:1 0:100 0:155 ip community-list standard 1_101_154 permit 65000:1 0:101 0:154 ip community-list standard 1_102_153 permit 65000:1 0:102 0:153 ip community-list standard 1_103_152 permit 65000:1 0:103 0:152 ip community-list standard 1_104_151 permit 65000:1 0:104 0:151 ip community-list standard 1_105_150 permit 65000:1 0:105 0:150 ip community-list standard 1_106_149 permit 65000:1 0:106 0:149 ip community-list standard 1_107_148 permit 65000:1 0:107 0:148 ip community-list standard 1_108_147 permit 65000:1 0:108 0:147 ip community-list standard 1_109_146 permit 65000:1 0:109 0:146 ip community-list standard 1_110_145 permit 65000:1 0:110 0:145 ip community-list standard 1_111_144 permit 65000:1 0:111 0:144 ip community-list standard 1_112_143 permit 65000:1 0:112 0:143 ip community-list standard 1_113_142 permit 65000:1 0:113 0:142 ip community-list standard 1_114_141 permit 65000:1 0:114 0:141 ip community-list standard 1_115_140 permit 65000:1 0:115 0:140 ip community-list standard 1_116_139 permit 65000:1 0:116 0:139 ip community-list standard 1_117_138 permit 65000:1 0:117 0:138 ip community-list standard 1_118_137 permit 65000:1 0:118 0:137 ip community-list standard 1_119_136 permit 65000:1 0:119 0:136 ip community-list standard 1_120_135 permit 65000:1 0:120 0:135 ip community-list standard 1_121_134 permit 65000:1 0:121 0:134 ip community-list standard 1_122_133 permit 65000:1 0:122 0:133 ip community-list standard 1_123_132 permit 65000:1 0:123 0:132 ip community-list standard 1_124_131 permit 65000:1 0:124 0:131 ip community-list standard 1_125_130 permit 65000:1 0:125 0:130 ip community-list standard 1_126_129 permit 65000:1 0:126 0:129 ip community-list standard 1_127_128 permit 65000:1 0:127 0:128 ip community-list expanded c255 permit 1 ^65000:4_0:255_0:1$ ip community-list expanded c255 permit 2 ^65000:3_0:256_0:1$ route-map calculator permit 28125 match community 1_1_254 2_1_255 1_2_253 2_3_85 1_3_252 set community 0:255 route-map calculator permit 28126 match community 1_4_251 2_5_51 1_5_250 1_6_249 1_7_248 set community 0:255 route-map calculator permit 28127 match community 1_8_247 1_9_246 1_10_245 1_11_244 1_12_243 set community 0:255 route-map calculator permit 28128 match community 1_13_242 1_14_241 2_15_17 1_15_240 1_16_239 set community 0:255 route-map calculator permit 28129 match community 1_17_238 1_18_237 1_19_236 1_20_235 1_21_234 set community 0:255 route-map calculator permit 28130 match community 1_22_233 1_23_232 1_24_231 1_25_230 1_26_229 set community 0:255 route-map calculator permit 28131 match community 1_27_228 1_28_227 1_29_226 1_30_225 1_31_224 set community 0:255 route-map calculator permit 28132 match community 1_32_223 1_33_222 1_34_221 1_35_220 1_36_219 set community 0:255 route-map calculator permit 28133 match community 1_37_218 1_38_217 1_39_216 1_40_215 1_41_214 set community 0:255 route-map calculator permit 28134 match community 1_42_213 1_43_212 1_44_211 1_45_210 1_46_209 set community 0:255 route-map calculator permit 28135 match community 1_47_208 1_48_207 1_49_206 1_50_205 1_51_204 set community 0:255 route-map calculator permit 28136 match community 1_52_203 1_53_202 1_54_201 1_55_200 1_56_199 set community 0:255 route-map calculator permit 28137 match community 1_57_198 1_58_197 1_59_196 1_60_195 1_61_194 set community 0:255 route-map calculator permit 28138 match community 1_62_193 1_63_192 1_64_191 1_65_190 1_66_189 set community 0:255 route-map calculator permit 28139 match community 1_67_188 1_68_187 1_69_186 1_70_185 1_71_184 set community 0:255 route-map calculator permit 28140 match community 1_72_183 1_73_182 1_74_181 1_75_180 1_76_179 set community 0:255 route-map calculator permit 28141 match community 1_77_178 1_78_177 1_79_176 1_80_175 1_81_174 set community 0:255 route-map calculator permit 28142 match community 1_82_173 1_83_172 1_84_171 1_85_170 1_86_169 set community 0:255 route-map calculator permit 28143 match community 1_87_168 1_88_167 1_89_166 1_90_165 1_91_164 set community 0:255 route-map calculator permit 28144 match community 1_92_163 1_93_162 1_94_161 1_95_160 1_96_159 set community 0:255 route-map calculator permit 28145 match community 1_97_158 1_98_157 1_99_156 1_100_155 1_101_154 set community 0:255 route-map calculator permit 28146 match community 1_102_153 1_103_152 1_104_151 1_105_150 1_106_149 set community 0:255 route-map calculator permit 28147 match community 1_107_148 1_108_147 1_109_146 1_110_145 1_111_144 set community 0:255 route-map calculator permit 28148 match community 1_112_143 1_113_142 1_114_141 1_115_140 1_116_139 set community 0:255 route-map calculator permit 28149 match community 1_117_138 1_118_137 1_119_136 1_120_135 1_121_134 set community 0:255 route-map calculator permit 28150 match community 1_122_133 1_123_132 1_124_131 1_125_130 1_126_129 set community 0:255 route-map calculator permit 28151 match community 1_127_128 c4_255_1 c3_256_1 set community 0:255 ip community-list standard 2_158_170 permit 65000:2 0:158 0:170 route-map calculator permit 28152 match community 2_158_170 set community 0:26860 ip community-list standard 2_65_89 permit 65000:2 0:65 0:89 route-map calculator permit 28153 match community 2_65_89 set community 0:5785 ip community-list standard 2_25_221 permit 65000:2 0:25 0:221 ip community-list standard 2_65_85 permit 65000:2 0:65 0:85 route-map calculator permit 28154 match community 2_25_221 2_65_85 set community 0:5525 ip community-list standard 2_175_239 permit 65000:2 0:175 0:239 route-map calculator permit 28155 match community 2_175_239 set community 0:41825 ip community-list standard 2_130_137 permit 65000:2 0:130 0:137 route-map calculator permit 28156 match community 2_130_137 set community 0:17810 ip community-list standard 2_125_131 permit 65000:2 0:125 0:131 route-map calculator permit 28157 match community 2_125_131 set community 0:16375 ip community-list standard 2_170_190 permit 65000:2 0:170 0:190 route-map calculator permit 28158 match community 2_170_190 set community 0:32300 ip community-list standard 2_149_178 permit 65000:2 0:149 0:178 route-map calculator permit 28159 match community 2_149_178 set community 0:26522 ip community-list standard 2_139_169 permit 65000:2 0:139 0:169 route-map calculator permit 28160 match community 2_139_169 set community 0:23491 ip community-list standard 2_161_208 permit 65000:2 0:161 0:208 ip community-list standard 2_182_184 permit 65000:2 0:182 0:184 route-map calculator permit 28161 match community 2_161_208 2_182_184 set community 0:33488 ip community-list standard 2_117_252 permit 65000:2 0:117 0:252 ip community-list standard 2_126_234 permit 65000:2 0:126 0:234 ip community-list standard 2_156_189 permit 65000:2 0:156 0:189 ip community-list standard 2_162_182 permit 65000:2 0:162 0:182 route-map calculator permit 28162 match community 2_117_252 2_126_234 2_156_189 2_162_182 set community 0:29484 ip community-list standard 2_118_256 permit 65000:2 0:118 0:256 ip community-list standard 2_128_236 permit 65000:2 0:128 0:236 route-map calculator permit 28163 match community 2_118_256 2_128_236 set community 0:30208 ip community-list standard 2_81_248 permit 65000:2 0:81 0:248 ip community-list standard 2_93_216 permit 65000:2 0:93 0:216 ip community-list standard 2_108_186 permit 65000:2 0:108 0:186 ip community-list standard 2_124_162 permit 65000:2 0:124 0:162 route-map calculator permit 28164 match community 2_81_248 2_93_216 2_108_186 2_124_162 set community 0:20088 ip community-list standard 2_152_229 permit 65000:2 0:152 0:229 route-map calculator permit 28165 match community 2_152_229 set community 0:34808 ip community-list standard 2_46_191 permit 65000:2 0:46 0:191 route-map calculator permit 28166 match community 2_46_191 set community 0:8786 ip community-list standard 2_229_238 permit 65000:2 0:229 0:238 route-map calculator permit 28167 match community 2_229_238 set community 0:54502 ip community-list standard 2_173_233 permit 65000:2 0:173 0:233 route-map calculator permit 28168 match community 2_173_233 set community 0:40309 ip community-list standard 2_33_221 permit 65000:2 0:33 0:221 ip community-list standard 2_39_187 permit 65000:2 0:39 0:187 ip community-list standard 2_51_143 permit 65000:2 0:51 0:143 route-map calculator permit 28169 match community 2_33_221 2_39_187 2_51_143 set community 0:7293 ip community-list standard 2_118_247 permit 65000:2 0:118 0:247 route-map calculator permit 28170 match community 2_118_247 set community 0:29146 ip community-list standard 2_148_248 permit 65000:2 0:148 0:248 route-map calculator permit 28171 match community 2_148_248 set community 0:36704 ip community-list standard 2_21_232 permit 65000:2 0:21 0:232 ip community-list standard 2_24_203 permit 65000:2 0:24 0:203 ip community-list standard 2_28_174 permit 65000:2 0:28 0:174 ip community-list standard 2_29_168 permit 65000:2 0:29 0:168 ip community-list standard 2_42_116 permit 65000:2 0:42 0:116 ip community-list standard 2_56_87 permit 65000:2 0:56 0:87 ip community-list standard 2_58_84 permit 65000:2 0:58 0:84 route-map calculator permit 28172 match community 2_21_232 2_24_203 2_28_174 2_29_168 2_42_116 set community 0:4872 route-map calculator permit 28173 match community 2_56_87 2_58_84 set community 0:4872 ip community-list standard 2_148_167 permit 65000:2 0:148 0:167 route-map calculator permit 28174 match community 2_148_167 set community 0:24716 ip community-list standard 2_50_174 permit 65000:2 0:50 0:174 ip community-list standard 2_58_150 permit 65000:2 0:58 0:150 ip community-list standard 2_60_145 permit 65000:2 0:60 0:145 ip community-list standard 2_75_116 permit 65000:2 0:75 0:116 ip community-list standard 2_87_100 permit 65000:2 0:87 0:100 route-map calculator permit 28175 match community 2_50_174 2_58_150 2_60_145 2_75_116 2_87_100 set community 0:8700 ip community-list standard 2_31_234 permit 65000:2 0:31 0:234 ip community-list standard 2_39_186 permit 65000:2 0:39 0:186 ip community-list standard 2_62_117 permit 65000:2 0:62 0:117 ip community-list standard 2_78_93 permit 65000:2 0:78 0:93 route-map calculator permit 28176 match community 2_31_234 2_39_186 2_62_117 2_78_93 set community 0:7254 ip community-list standard 2_165_193 permit 65000:2 0:165 0:193 route-map calculator permit 28177 match community 2_165_193 set community 0:31845 ip community-list standard 2_151_159 permit 65000:2 0:151 0:159 route-map calculator permit 28178 match community 2_151_159 set community 0:24009 ip community-list standard 2_223_248 permit 65000:2 0:223 0:248 route-map calculator permit 28179 match community 2_223_248 set community 0:55304 ip community-list standard 2_154_223 permit 65000:2 0:154 0:223 route-map calculator permit 28180 match community 2_154_223 set community 0:34342 ip community-list standard 2_149_169 permit 65000:2 0:149 0:169 route-map calculator permit 28181 match community 2_149_169 set community 0:25181 ip community-list standard 2_100_191 permit 65000:2 0:100 0:191 route-map calculator permit 28182 match community 2_100_191 set community 0:19100 ip community-list standard 2_229_230 permit 65000:2 0:229 0:230 route-map calculator permit 28183 match community 2_229_230 set community 0:52670 ip community-list standard 2_67_234 permit 65000:2 0:67 0:234 ip community-list standard 2_78_201 permit 65000:2 0:78 0:201 ip community-list standard 2_117_134 permit 65000:2 0:117 0:134 route-map calculator permit 28184 match community 2_67_234 2_78_201 2_117_134 set community 0:15678 ip community-list standard 2_248_256 permit 65000:2 0:248 0:256 route-map calculator permit 28185 match community 2_248_256 set community 0:63488 ip community-list standard 2_25_231 permit 65000:2 0:25 0:231 ip community-list standard 2_33_175 permit 65000:2 0:33 0:175 ip community-list standard 2_35_165 permit 65000:2 0:35 0:165 ip community-list standard 2_55_105 permit 65000:2 0:55 0:105 ip community-list standard 2_75_77 permit 65000:2 0:75 0:77 route-map calculator permit 28186 match community 2_25_231 2_33_175 2_35_165 2_55_105 2_75_77 set community 0:5775 ip community-list standard 2_127_173 permit 65000:2 0:127 0:173 route-map calculator permit 28187 match community 2_127_173 set community 0:21971 ip community-list standard 2_72_197 permit 65000:2 0:72 0:197 route-map calculator permit 28188 match community 2_72_197 set community 0:14184 ip community-list standard 2_214_234 permit 65000:2 0:214 0:234 route-map calculator permit 28189 match community 2_214_234 set community 0:50076 ip community-list standard 2_130_195 permit 65000:2 0:130 0:195 ip community-list standard 2_150_169 permit 65000:2 0:150 0:169 route-map calculator permit 28190 match community 2_130_195 2_150_169 set community 0:25350 ip community-list standard 2_72_227 permit 65000:2 0:72 0:227 route-map calculator permit 28191 match community 2_72_227 set community 0:16344 ip community-list standard 2_143_252 permit 65000:2 0:143 0:252 ip community-list standard 2_154_234 permit 65000:2 0:154 0:234 ip community-list standard 2_156_231 permit 65000:2 0:156 0:231 ip community-list standard 2_182_198 permit 65000:2 0:182 0:198 route-map calculator permit 28192 match community 2_143_252 2_154_234 2_156_231 2_182_198 set community 0:36036 ip community-list standard 2_214_243 permit 65000:2 0:214 0:243 route-map calculator permit 28193 match community 2_214_243 set community 0:52002 ip community-list standard 2_85_145 permit 65000:2 0:85 0:145 route-map calculator permit 28194 match community 2_85_145 set community 0:12325 ip community-list standard 2_134_216 permit 65000:2 0:134 0:216 ip community-list standard 2_144_201 permit 65000:2 0:144 0:201 route-map calculator permit 28195 match community 2_134_216 2_144_201 set community 0:28944 ip community-list standard 2_142_235 permit 65000:2 0:142 0:235 route-map calculator permit 28196 match community 2_142_235 set community 0:33370 ip community-list standard 2_136_170 permit 65000:2 0:136 0:170 route-map calculator permit 28197 match community 2_136_170 set community 0:23120 ip community-list standard 2_63_249 permit 65000:2 0:63 0:249 ip community-list standard 2_83_189 permit 65000:2 0:83 0:189 route-map calculator permit 28198 match community 2_63_249 2_83_189 set community 0:15687 ip community-list standard 2_4_187 permit 65000:2 0:4 0:187 ip community-list standard 2_11_68 permit 65000:2 0:11 0:68 ip community-list standard 2_17_44 permit 65000:2 0:17 0:44 ip community-list standard 2_22_34 permit 65000:2 0:22 0:34 route-map calculator permit 28199 match community 2_4_187 2_11_68 2_17_44 2_22_34 set community 0:748 ip community-list standard 2_109_218 permit 65000:2 0:109 0:218 route-map calculator permit 28200 match community 2_109_218 set community 0:23762 ip community-list standard 2_21_236 permit 65000:2 0:21 0:236 ip community-list standard 2_28_177 permit 65000:2 0:28 0:177 ip community-list standard 2_42_118 permit 65000:2 0:42 0:118 ip community-list standard 2_59_84 permit 65000:2 0:59 0:84 route-map calculator permit 28201 match community 2_21_236 2_28_177 2_42_118 2_59_84 set community 0:4956 ip community-list standard 2_112_197 permit 65000:2 0:112 0:197 route-map calculator permit 28202 match community 2_112_197 set community 0:22064 ip community-list standard 1_1_10 permit 65000:1 0:1 0:10 ip community-list standard 2_1_11 permit 65000:2 0:1 0:11 ip community-list standard 1_2_9 permit 65000:1 0:2 0:9 ip community-list standard 1_3_8 permit 65000:1 0:3 0:8 ip community-list standard 1_4_7 permit 65000:1 0:4 0:7 ip community-list standard 1_5_6 permit 65000:1 0:5 0:6 ip community-list expanded c11 permit 1 ^65000:4_0:11_0:1$ ip community-list expanded c11 permit 2 ^65000:3_0:12_0:1$ ip community-list expanded c11 permit 3 ^65000:3_0:13_0:2$ ip community-list expanded c11 permit 4 ^65000:3_0:14_0:3$ ip community-list expanded c11 permit 5 ^65000:3_0:15_0:4$ ip community-list expanded c11 permit 6 ^65000:3_0:16_0:5$ ip community-list expanded c11 permit 7 ^65000:3_0:17_0:6$ ip community-list expanded c11 permit 8 ^65000:3_0:18_0:7$ ip community-list expanded c11 permit 9 ^65000:3_0:19_0:8$ ip community-list expanded c11 permit 10 ^65000:3_0:20_0:9$ ip community-list expanded c11 permit 11 ^65000:3_0:21_0:10$ ip community-list expanded c11 permit 12 ^65000:4_0:22_0:2$ ip community-list expanded c11 permit 13 ^65000:3_0:22_0:11$ ip community-list expanded c11 permit 14 ^65000:4_0:23_0:2$ ip community-list expanded c11 permit 15 ^65000:3_0:23_0:12$ ip community-list expanded c11 permit 16 ^65000:3_0:24_0:13$ ip community-list expanded c11 permit 17 ^65000:3_0:25_0:14$ ip community-list expanded c11 permit 18 ^65000:3_0:26_0:15$ ip community-list expanded c11 permit 19 ^65000:3_0:27_0:16$ ip community-list expanded c11 permit 20 ^65000:3_0:28_0:17$ ip community-list expanded c11 permit 21 ^65000:3_0:29_0:18$ ip community-list expanded c11 permit 22 ^65000:3_0:30_0:19$ ip community-list expanded c11 permit 23 ^65000:3_0:31_0:20$ ip community-list expanded c11 permit 24 ^65000:3_0:32_0:21$ ip community-list expanded c11 permit 25 ^65000:4_0:33_0:3$ ip community-list expanded c11 permit 26 ^65000:3_0:33_0:22$ ip community-list expanded c11 permit 27 ^65000:4_0:34_0:3$ ip community-list expanded c11 permit 28 ^65000:3_0:34_0:23$ ip community-list expanded c11 permit 29 ^65000:4_0:35_0:3$ ip community-list expanded c11 permit 30 ^65000:3_0:35_0:24$ ip community-list expanded c11 permit 31 ^65000:3_0:36_0:25$ ip community-list expanded c11 permit 32 ^65000:3_0:37_0:26$ ip community-list expanded c11 permit 33 ^65000:3_0:38_0:27$ ip community-list expanded c11 permit 34 ^65000:3_0:39_0:28$ ip community-list expanded c11 permit 35 ^65000:3_0:40_0:29$ ip community-list expanded c11 permit 36 ^65000:3_0:41_0:30$ ip community-list expanded c11 permit 37 ^65000:3_0:42_0:31$ ip community-list expanded c11 permit 38 ^65000:3_0:43_0:32$ ip community-list expanded c11 permit 39 ^65000:4_0:44_0:4$ ip community-list expanded c11 permit 40 ^65000:3_0:44_0:33$ ip community-list expanded c11 permit 41 ^65000:4_0:45_0:4$ ip community-list expanded c11 permit 42 ^65000:3_0:45_0:34$ ip community-list expanded c11 permit 43 ^65000:4_0:46_0:4$ ip community-list expanded c11 permit 44 ^65000:3_0:46_0:35$ ip community-list expanded c11 permit 45 ^65000:4_0:47_0:4$ ip community-list expanded c11 permit 46 ^65000:3_0:47_0:36$ ip community-list expanded c11 permit 47 ^65000:3_0:48_0:37$ ip community-list expanded c11 permit 48 ^65000:3_0:49_0:38$ ip community-list expanded c11 permit 49 ^65000:3_0:50_0:39$ ip community-list expanded c11 permit 50 ^65000:3_0:51_0:40$ ip community-list expanded c11 permit 51 ^65000:3_0:52_0:41$ ip community-list expanded c11 permit 52 ^65000:3_0:53_0:42$ ip community-list expanded c11 permit 53 ^65000:3_0:54_0:43$ ip community-list expanded c11 permit 54 ^65000:4_0:55_0:5$ ip community-list expanded c11 permit 55 ^65000:3_0:55_0:44$ ip community-list expanded c11 permit 56 ^65000:4_0:56_0:5$ ip community-list expanded c11 permit 57 ^65000:3_0:56_0:45$ ip community-list expanded c11 permit 58 ^65000:4_0:57_0:5$ ip community-list expanded c11 permit 59 ^65000:3_0:57_0:46$ ip community-list expanded c11 permit 60 ^65000:4_0:58_0:5$ ip community-list expanded c11 permit 61 ^65000:3_0:58_0:47$ ip community-list expanded c11 permit 62 ^65000:4_0:59_0:5$ ip community-list expanded c11 permit 63 ^65000:3_0:59_0:48$ ip community-list expanded c11 permit 64 ^65000:3_0:60_0:49$ ip community-list expanded c11 permit 65 ^65000:3_0:61_0:50$ ip community-list expanded c11 permit 66 ^65000:3_0:62_0:51$ ip community-list expanded c11 permit 67 ^65000:3_0:63_0:52$ ip community-list expanded c11 permit 68 ^65000:3_0:64_0:53$ ip community-list expanded c11 permit 69 ^65000:3_0:65_0:54$ ip community-list expanded c11 permit 70 ^65000:4_0:66_0:6$ ip community-list expanded c11 permit 71 ^65000:3_0:66_0:55$ ip community-list expanded c11 permit 72 ^65000:4_0:67_0:6$ ip community-list expanded c11 permit 73 ^65000:3_0:67_0:56$ ip community-list expanded c11 permit 74 ^65000:4_0:68_0:6$ ip community-list expanded c11 permit 75 ^65000:3_0:68_0:57$ ip community-list expanded c11 permit 76 ^65000:4_0:69_0:6$ ip community-list expanded c11 permit 77 ^65000:3_0:69_0:58$ ip community-list expanded c11 permit 78 ^65000:4_0:70_0:6$ ip community-list expanded c11 permit 79 ^65000:3_0:70_0:59$ ip community-list expanded c11 permit 80 ^65000:4_0:71_0:6$ ip community-list expanded c11 permit 81 ^65000:3_0:71_0:60$ ip community-list expanded c11 permit 82 ^65000:3_0:72_0:61$ ip community-list expanded c11 permit 83 ^65000:3_0:73_0:62$ ip community-list expanded c11 permit 84 ^65000:3_0:74_0:63$ ip community-list expanded c11 permit 85 ^65000:3_0:75_0:64$ ip community-list expanded c11 permit 86 ^65000:3_0:76_0:65$ ip community-list expanded c11 permit 87 ^65000:4_0:77_0:7$ ip community-list expanded c11 permit 88 ^65000:3_0:77_0:66$ ip community-list expanded c11 permit 89 ^65000:4_0:78_0:7$ ip community-list expanded c11 permit 90 ^65000:3_0:78_0:67$ ip community-list expanded c11 permit 91 ^65000:4_0:79_0:7$ ip community-list expanded c11 permit 92 ^65000:3_0:79_0:68$ ip community-list expanded c11 permit 93 ^65000:4_0:80_0:7$ ip community-list expanded c11 permit 94 ^65000:3_0:80_0:69$ ip community-list expanded c11 permit 95 ^65000:4_0:81_0:7$ ip community-list expanded c11 permit 96 ^65000:3_0:81_0:70$ ip community-list expanded c11 permit 97 ^65000:4_0:82_0:7$ ip community-list expanded c11 permit 98 ^65000:3_0:82_0:71$ ip community-list expanded c11 permit 99 ^65000:4_0:83_0:7$ ip community-list expanded c11 permit 100 ^65000:3_0:83_0:72$ ip community-list expanded c11 permit 101 ^65000:3_0:84_0:73$ ip community-list expanded c11 permit 102 ^65000:3_0:85_0:74$ ip community-list expanded c11 permit 103 ^65000:3_0:86_0:75$ ip community-list expanded c11 permit 104 ^65000:3_0:87_0:76$ ip community-list expanded c11 permit 105 ^65000:4_0:88_0:8$ ip community-list expanded c11 permit 106 ^65000:3_0:88_0:77$ ip community-list expanded c11 permit 107 ^65000:4_0:89_0:8$ ip community-list expanded c11 permit 108 ^65000:3_0:89_0:78$ ip community-list expanded c11 permit 109 ^65000:4_0:90_0:8$ ip community-list expanded c11 permit 110 ^65000:3_0:90_0:79$ ip community-list expanded c11 permit 111 ^65000:4_0:91_0:8$ ip community-list expanded c11 permit 112 ^65000:3_0:91_0:80$ ip community-list expanded c11 permit 113 ^65000:4_0:92_0:8$ ip community-list expanded c11 permit 114 ^65000:3_0:92_0:81$ ip community-list expanded c11 permit 115 ^65000:4_0:93_0:8$ ip community-list expanded c11 permit 116 ^65000:3_0:93_0:82$ ip community-list expanded c11 permit 117 ^65000:4_0:94_0:8$ ip community-list expanded c11 permit 118 ^65000:3_0:94_0:83$ ip community-list expanded c11 permit 119 ^65000:4_0:95_0:8$ ip community-list expanded c11 permit 120 ^65000:3_0:95_0:84$ ip community-list expanded c11 permit 121 ^65000:3_0:96_0:85$ ip community-list expanded c11 permit 122 ^65000:3_0:97_0:86$ ip community-list expanded c11 permit 123 ^65000:3_0:98_0:87$ ip community-list expanded c11 permit 124 ^65000:4_0:99_0:9$ ip community-list expanded c11 permit 125 ^65000:3_0:99_0:88$ ip community-list expanded c11 permit 126 ^65000:4_0:100_0:9$ ip community-list expanded c11 permit 127 ^65000:3_0:100_0:89$ ip community-list expanded c11 permit 128 ^65000:4_0:101_0:9$ ip community-list expanded c11 permit 129 ^65000:3_0:101_0:90$ ip community-list expanded c11 permit 130 ^65000:4_0:102_0:9$ ip community-list expanded c11 permit 131 ^65000:3_0:102_0:91$ ip community-list expanded c11 permit 132 ^65000:4_0:103_0:9$ ip community-list expanded c11 permit 133 ^65000:3_0:103_0:92$ ip community-list expanded c11 permit 134 ^65000:4_0:104_0:9$ ip community-list expanded c11 permit 135 ^65000:3_0:104_0:93$ ip community-list expanded c11 permit 136 ^65000:4_0:105_0:9$ ip community-list expanded c11 permit 137 ^65000:3_0:105_0:94$ ip community-list expanded c11 permit 138 ^65000:4_0:106_0:9$ ip community-list expanded c11 permit 139 ^65000:3_0:106_0:95$ ip community-list expanded c11 permit 140 ^65000:4_0:107_0:9$ ip community-list expanded c11 permit 141 ^65000:3_0:107_0:96$ ip community-list expanded c11 permit 142 ^65000:3_0:108_0:97$ ip community-list expanded c11 permit 143 ^65000:3_0:109_0:98$ ip community-list expanded c11 permit 144 ^65000:4_0:110_0:10$ ip community-list expanded c11 permit 145 ^65000:3_0:110_0:99$ ip community-list expanded c11 permit 146 ^65000:4_0:111_0:10$ ip community-list expanded c11 permit 147 ^65000:3_0:111_0:100$ ip community-list expanded c11 permit 148 ^65000:4_0:112_0:10$ ip community-list expanded c11 permit 149 ^65000:3_0:112_0:101$ ip community-list expanded c11 permit 150 ^65000:4_0:113_0:10$ ip community-list expanded c11 permit 151 ^65000:3_0:113_0:102$ ip community-list expanded c11 permit 152 ^65000:4_0:114_0:10$ ip community-list expanded c11 permit 153 ^65000:3_0:114_0:103$ ip community-list expanded c11 permit 154 ^65000:4_0:115_0:10$ ip community-list expanded c11 permit 155 ^65000:3_0:115_0:104$ ip community-list expanded c11 permit 156 ^65000:4_0:116_0:10$ ip community-list expanded c11 permit 157 ^65000:3_0:116_0:105$ ip community-list expanded c11 permit 158 ^65000:4_0:117_0:10$ ip community-list expanded c11 permit 159 ^65000:3_0:117_0:106$ ip community-list expanded c11 permit 160 ^65000:4_0:118_0:10$ ip community-list expanded c11 permit 161 ^65000:3_0:118_0:107$ ip community-list expanded c11 permit 162 ^65000:4_0:119_0:10$ ip community-list expanded c11 permit 163 ^65000:3_0:119_0:108$ ip community-list expanded c11 permit 164 ^65000:3_0:120_0:109$ ip community-list expanded c11 permit 165 ^65000:4_0:121_0:11$ ip community-list expanded c11 permit 166 ^65000:3_0:121_0:110$ ip community-list expanded c11 permit 167 ^65000:4_0:122_0:11$ ip community-list expanded c11 permit 168 ^65000:3_0:122_0:111$ ip community-list expanded c11 permit 169 ^65000:4_0:123_0:11$ ip community-list expanded c11 permit 170 ^65000:3_0:123_0:112$ ip community-list expanded c11 permit 171 ^65000:4_0:124_0:11$ ip community-list expanded c11 permit 172 ^65000:3_0:124_0:113$ ip community-list expanded c11 permit 173 ^65000:4_0:125_0:11$ ip community-list expanded c11 permit 174 ^65000:3_0:125_0:114$ ip community-list expanded c11 permit 175 ^65000:4_0:126_0:11$ ip community-list expanded c11 permit 176 ^65000:3_0:126_0:115$ ip community-list expanded c11 permit 177 ^65000:4_0:127_0:11$ ip community-list expanded c11 permit 178 ^65000:3_0:127_0:116$ ip community-list expanded c11 permit 179 ^65000:4_0:128_0:11$ ip community-list expanded c11 permit 180 ^65000:3_0:128_0:117$ ip community-list expanded c11 permit 181 ^65000:4_0:129_0:11$ ip community-list expanded c11 permit 182 ^65000:3_0:129_0:118$ ip community-list expanded c11 permit 183 ^65000:4_0:130_0:11$ ip community-list expanded c11 permit 184 ^65000:3_0:130_0:119$ ip community-list expanded c11 permit 185 ^65000:4_0:131_0:11$ ip community-list expanded c11 permit 186 ^65000:3_0:131_0:120$ ip community-list expanded c11 permit 187 ^65000:4_0:132_0:12$ ip community-list expanded c11 permit 188 ^65000:3_0:132_0:121$ ip community-list expanded c11 permit 189 ^65000:4_0:133_0:12$ ip community-list expanded c11 permit 190 ^65000:3_0:133_0:122$ ip community-list expanded c11 permit 191 ^65000:4_0:134_0:12$ ip community-list expanded c11 permit 192 ^65000:3_0:134_0:123$ ip community-list expanded c11 permit 193 ^65000:4_0:135_0:12$ ip community-list expanded c11 permit 194 ^65000:3_0:135_0:124$ ip community-list expanded c11 permit 195 ^65000:4_0:136_0:12$ ip community-list expanded c11 permit 196 ^65000:3_0:136_0:125$ ip community-list expanded c11 permit 197 ^65000:4_0:137_0:12$ ip community-list expanded c11 permit 198 ^65000:3_0:137_0:126$ ip community-list expanded c11 permit 199 ^65000:4_0:138_0:12$ ip community-list expanded c11 permit 200 ^65000:3_0:138_0:127$ ip community-list expanded c11 permit 201 ^65000:4_0:139_0:12$ ip community-list expanded c11 permit 202 ^65000:3_0:139_0:128$ ip community-list expanded c11 permit 203 ^65000:4_0:140_0:12$ ip community-list expanded c11 permit 204 ^65000:3_0:140_0:129$ ip community-list expanded c11 permit 205 ^65000:4_0:141_0:12$ ip community-list expanded c11 permit 206 ^65000:3_0:141_0:130$ ip community-list expanded c11 permit 207 ^65000:4_0:142_0:12$ ip community-list expanded c11 permit 208 ^65000:3_0:142_0:131$ ip community-list expanded c11 permit 209 ^65000:4_0:143_0:12$ ip community-list expanded c11 permit 210 ^65000:4_0:143_0:13$ ip community-list expanded c11 permit 211 ^65000:3_0:143_0:132$ ip community-list expanded c11 permit 212 ^65000:4_0:144_0:13$ ip community-list expanded c11 permit 213 ^65000:3_0:144_0:133$ ip community-list expanded c11 permit 214 ^65000:4_0:145_0:13$ ip community-list expanded c11 permit 215 ^65000:3_0:145_0:134$ ip community-list expanded c11 permit 216 ^65000:4_0:146_0:13$ ip community-list expanded c11 permit 217 ^65000:3_0:146_0:135$ ip community-list expanded c11 permit 218 ^65000:4_0:147_0:13$ ip community-list expanded c11 permit 219 ^65000:3_0:147_0:136$ ip community-list expanded c11 permit 220 ^65000:4_0:148_0:13$ ip community-list expanded c11 permit 221 ^65000:3_0:148_0:137$ ip community-list expanded c11 permit 222 ^65000:4_0:149_0:13$ ip community-list expanded c11 permit 223 ^65000:3_0:149_0:138$ ip community-list expanded c11 permit 224 ^65000:4_0:150_0:13$ ip community-list expanded c11 permit 225 ^65000:3_0:150_0:139$ ip community-list expanded c11 permit 226 ^65000:4_0:151_0:13$ ip community-list expanded c11 permit 227 ^65000:3_0:151_0:140$ ip community-list expanded c11 permit 228 ^65000:4_0:152_0:13$ ip community-list expanded c11 permit 229 ^65000:3_0:152_0:141$ ip community-list expanded c11 permit 230 ^65000:4_0:153_0:13$ ip community-list expanded c11 permit 231 ^65000:3_0:153_0:142$ ip community-list expanded c11 permit 232 ^65000:4_0:154_0:13$ ip community-list expanded c11 permit 233 ^65000:4_0:154_0:14$ ip community-list expanded c11 permit 234 ^65000:3_0:154_0:143$ ip community-list expanded c11 permit 235 ^65000:4_0:155_0:13$ ip community-list expanded c11 permit 236 ^65000:4_0:155_0:14$ ip community-list expanded c11 permit 237 ^65000:3_0:155_0:144$ ip community-list expanded c11 permit 238 ^65000:4_0:156_0:14$ ip community-list expanded c11 permit 239 ^65000:3_0:156_0:145$ ip community-list expanded c11 permit 240 ^65000:4_0:157_0:14$ ip community-list expanded c11 permit 241 ^65000:3_0:157_0:146$ ip community-list expanded c11 permit 242 ^65000:4_0:158_0:14$ ip community-list expanded c11 permit 243 ^65000:3_0:158_0:147$ ip community-list expanded c11 permit 244 ^65000:4_0:159_0:14$ ip community-list expanded c11 permit 245 ^65000:3_0:159_0:148$ ip community-list expanded c11 permit 246 ^65000:4_0:160_0:14$ ip community-list expanded c11 permit 247 ^65000:3_0:160_0:149$ ip community-list expanded c11 permit 248 ^65000:4_0:161_0:14$ ip community-list expanded c11 permit 249 ^65000:3_0:161_0:150$ ip community-list expanded c11 permit 250 ^65000:4_0:162_0:14$ ip community-list expanded c11 permit 251 ^65000:3_0:162_0:151$ ip community-list expanded c11 permit 252 ^65000:4_0:163_0:14$ ip community-list expanded c11 permit 253 ^65000:3_0:163_0:152$ ip community-list expanded c11 permit 254 ^65000:4_0:164_0:14$ ip community-list expanded c11 permit 255 ^65000:3_0:164_0:153$ ip community-list expanded c11 permit 256 ^65000:4_0:165_0:14$ ip community-list expanded c11 permit 257 ^65000:4_0:165_0:15$ ip community-list expanded c11 permit 258 ^65000:3_0:165_0:154$ ip community-list expanded c11 permit 259 ^65000:4_0:166_0:14$ ip community-list expanded c11 permit 260 ^65000:4_0:166_0:15$ ip community-list expanded c11 permit 261 ^65000:3_0:166_0:155$ ip community-list expanded c11 permit 262 ^65000:4_0:167_0:14$ ip community-list expanded c11 permit 263 ^65000:4_0:167_0:15$ ip community-list expanded c11 permit 264 ^65000:3_0:167_0:156$ ip community-list expanded c11 permit 265 ^65000:4_0:168_0:15$ ip community-list expanded c11 permit 266 ^65000:3_0:168_0:157$ ip community-list expanded c11 permit 267 ^65000:4_0:169_0:15$ ip community-list expanded c11 permit 268 ^65000:3_0:169_0:158$ ip community-list expanded c11 permit 269 ^65000:4_0:170_0:15$ ip community-list expanded c11 permit 270 ^65000:3_0:170_0:159$ ip community-list expanded c11 permit 271 ^65000:4_0:171_0:15$ ip community-list expanded c11 permit 272 ^65000:3_0:171_0:160$ ip community-list expanded c11 permit 273 ^65000:4_0:172_0:15$ ip community-list expanded c11 permit 274 ^65000:3_0:172_0:161$ ip community-list expanded c11 permit 275 ^65000:4_0:173_0:15$ ip community-list expanded c11 permit 276 ^65000:3_0:173_0:162$ ip community-list expanded c11 permit 277 ^65000:4_0:174_0:15$ ip community-list expanded c11 permit 278 ^65000:3_0:174_0:163$ ip community-list expanded c11 permit 279 ^65000:4_0:175_0:15$ ip community-list expanded c11 permit 280 ^65000:3_0:175_0:164$ ip community-list expanded c11 permit 281 ^65000:4_0:176_0:15$ ip community-list expanded c11 permit 282 ^65000:4_0:176_0:16$ ip community-list expanded c11 permit 283 ^65000:3_0:176_0:165$ ip community-list expanded c11 permit 284 ^65000:4_0:177_0:15$ ip community-list expanded c11 permit 285 ^65000:4_0:177_0:16$ ip community-list expanded c11 permit 286 ^65000:3_0:177_0:166$ ip community-list expanded c11 permit 287 ^65000:4_0:178_0:15$ ip community-list expanded c11 permit 288 ^65000:4_0:178_0:16$ ip community-list expanded c11 permit 289 ^65000:3_0:178_0:167$ ip community-list expanded c11 permit 290 ^65000:4_0:179_0:15$ ip community-list expanded c11 permit 291 ^65000:4_0:179_0:16$ ip community-list expanded c11 permit 292 ^65000:3_0:179_0:168$ ip community-list expanded c11 permit 293 ^65000:4_0:180_0:16$ ip community-list expanded c11 permit 294 ^65000:3_0:180_0:169$ ip community-list expanded c11 permit 295 ^65000:4_0:181_0:16$ ip community-list expanded c11 permit 296 ^65000:3_0:181_0:170$ ip community-list expanded c11 permit 297 ^65000:4_0:182_0:16$ ip community-list expanded c11 permit 298 ^65000:3_0:182_0:171$ ip community-list expanded c11 permit 299 ^65000:4_0:183_0:16$ ip community-list expanded c11 permit 300 ^65000:3_0:183_0:172$ ip community-list expanded c11 permit 301 ^65000:4_0:184_0:16$ ip community-list expanded c11 permit 302 ^65000:3_0:184_0:173$ ip community-list expanded c11 permit 303 ^65000:4_0:185_0:16$ ip community-list expanded c11 permit 304 ^65000:3_0:185_0:174$ ip community-list expanded c11 permit 305 ^65000:4_0:186_0:16$ ip community-list expanded c11 permit 306 ^65000:3_0:186_0:175$ ip community-list expanded c11 permit 307 ^65000:4_0:187_0:16$ ip community-list expanded c11 permit 308 ^65000:4_0:187_0:17$ ip community-list expanded c11 permit 309 ^65000:3_0:187_0:176$ ip community-list expanded c11 permit 310 ^65000:4_0:188_0:16$ ip community-list expanded c11 permit 311 ^65000:4_0:188_0:17$ ip community-list expanded c11 permit 312 ^65000:3_0:188_0:177$ ip community-list expanded c11 permit 313 ^65000:4_0:189_0:16$ ip community-list expanded c11 permit 314 ^65000:4_0:189_0:17$ ip community-list expanded c11 permit 315 ^65000:3_0:189_0:178$ ip community-list expanded c11 permit 316 ^65000:4_0:190_0:16$ ip community-list expanded c11 permit 317 ^65000:4_0:190_0:17$ ip community-list expanded c11 permit 318 ^65000:3_0:190_0:179$ ip community-list expanded c11 permit 319 ^65000:4_0:191_0:16$ ip community-list expanded c11 permit 320 ^65000:4_0:191_0:17$ ip community-list expanded c11 permit 321 ^65000:3_0:191_0:180$ ip community-list expanded c11 permit 322 ^65000:4_0:192_0:17$ ip community-list expanded c11 permit 323 ^65000:3_0:192_0:181$ ip community-list expanded c11 permit 324 ^65000:4_0:193_0:17$ ip community-list expanded c11 permit 325 ^65000:3_0:193_0:182$ ip community-list expanded c11 permit 326 ^65000:4_0:194_0:17$ ip community-list expanded c11 permit 327 ^65000:3_0:194_0:183$ ip community-list expanded c11 permit 328 ^65000:4_0:195_0:17$ ip community-list expanded c11 permit 329 ^65000:3_0:195_0:184$ ip community-list expanded c11 permit 330 ^65000:4_0:196_0:17$ ip community-list expanded c11 permit 331 ^65000:3_0:196_0:185$ ip community-list expanded c11 permit 332 ^65000:4_0:197_0:17$ ip community-list expanded c11 permit 333 ^65000:3_0:197_0:186$ ip community-list expanded c11 permit 334 ^65000:4_0:198_0:17$ ip community-list expanded c11 permit 335 ^65000:4_0:198_0:18$ ip community-list expanded c11 permit 336 ^65000:3_0:198_0:187$ ip community-list expanded c11 permit 337 ^65000:4_0:199_0:17$ ip community-list expanded c11 permit 338 ^65000:4_0:199_0:18$ ip community-list expanded c11 permit 339 ^65000:3_0:199_0:188$ ip community-list expanded c11 permit 340 ^65000:4_0:200_0:17$ ip community-list expanded c11 permit 341 ^65000:4_0:200_0:18$ ip community-list expanded c11 permit 342 ^65000:3_0:200_0:189$ ip community-list expanded c11 permit 343 ^65000:4_0:201_0:17$ ip community-list expanded c11 permit 344 ^65000:4_0:201_0:18$ ip community-list expanded c11 permit 345 ^65000:3_0:201_0:190$ ip community-list expanded c11 permit 346 ^65000:4_0:202_0:17$ ip community-list expanded c11 permit 347 ^65000:4_0:202_0:18$ ip community-list expanded c11 permit 348 ^65000:3_0:202_0:191$ ip community-list expanded c11 permit 349 ^65000:4_0:203_0:17$ ip community-list expanded c11 permit 350 ^65000:4_0:203_0:18$ ip community-list expanded c11 permit 351 ^65000:3_0:203_0:192$ ip community-list expanded c11 permit 352 ^65000:4_0:204_0:18$ ip community-list expanded c11 permit 353 ^65000:3_0:204_0:193$ ip community-list expanded c11 permit 354 ^65000:4_0:205_0:18$ ip community-list expanded c11 permit 355 ^65000:3_0:205_0:194$ ip community-list expanded c11 permit 356 ^65000:4_0:206_0:18$ ip community-list expanded c11 permit 357 ^65000:3_0:206_0:195$ ip community-list expanded c11 permit 358 ^65000:4_0:207_0:18$ ip community-list expanded c11 permit 359 ^65000:3_0:207_0:196$ ip community-list expanded c11 permit 360 ^65000:4_0:208_0:18$ ip community-list expanded c11 permit 361 ^65000:3_0:208_0:197$ ip community-list expanded c11 permit 362 ^65000:4_0:209_0:18$ ip community-list expanded c11 permit 363 ^65000:4_0:209_0:19$ ip community-list expanded c11 permit 364 ^65000:3_0:209_0:198$ ip community-list expanded c11 permit 365 ^65000:4_0:210_0:18$ ip community-list expanded c11 permit 366 ^65000:4_0:210_0:19$ ip community-list expanded c11 permit 367 ^65000:3_0:210_0:199$ ip community-list expanded c11 permit 368 ^65000:4_0:211_0:18$ ip community-list expanded c11 permit 369 ^65000:4_0:211_0:19$ ip community-list expanded c11 permit 370 ^65000:3_0:211_0:200$ ip community-list expanded c11 permit 371 ^65000:4_0:212_0:18$ ip community-list expanded c11 permit 372 ^65000:4_0:212_0:19$ ip community-list expanded c11 permit 373 ^65000:3_0:212_0:201$ ip community-list expanded c11 permit 374 ^65000:4_0:213_0:18$ ip community-list expanded c11 permit 375 ^65000:4_0:213_0:19$ ip community-list expanded c11 permit 376 ^65000:3_0:213_0:202$ ip community-list expanded c11 permit 377 ^65000:4_0:214_0:18$ ip community-list expanded c11 permit 378 ^65000:4_0:214_0:19$ ip community-list expanded c11 permit 379 ^65000:3_0:214_0:203$ ip community-list expanded c11 permit 380 ^65000:4_0:215_0:18$ ip community-list expanded c11 permit 381 ^65000:4_0:215_0:19$ ip community-list expanded c11 permit 382 ^65000:3_0:215_0:204$ ip community-list expanded c11 permit 383 ^65000:4_0:216_0:19$ ip community-list expanded c11 permit 384 ^65000:3_0:216_0:205$ ip community-list expanded c11 permit 385 ^65000:4_0:217_0:19$ ip community-list expanded c11 permit 386 ^65000:3_0:217_0:206$ ip community-list expanded c11 permit 387 ^65000:4_0:218_0:19$ ip community-list expanded c11 permit 388 ^65000:3_0:218_0:207$ ip community-list expanded c11 permit 389 ^65000:4_0:219_0:19$ ip community-list expanded c11 permit 390 ^65000:3_0:219_0:208$ ip community-list expanded c11 permit 391 ^65000:4_0:220_0:19$ ip community-list expanded c11 permit 392 ^65000:4_0:220_0:20$ ip community-list expanded c11 permit 393 ^65000:3_0:220_0:209$ ip community-list expanded c11 permit 394 ^65000:4_0:221_0:19$ ip community-list expanded c11 permit 395 ^65000:4_0:221_0:20$ ip community-list expanded c11 permit 396 ^65000:3_0:221_0:210$ ip community-list expanded c11 permit 397 ^65000:4_0:222_0:19$ ip community-list expanded c11 permit 398 ^65000:4_0:222_0:20$ ip community-list expanded c11 permit 399 ^65000:3_0:222_0:211$ ip community-list expanded c11 permit 400 ^65000:4_0:223_0:19$ ip community-list expanded c11 permit 401 ^65000:4_0:223_0:20$ ip community-list expanded c11 permit 402 ^65000:3_0:223_0:212$ ip community-list expanded c11 permit 403 ^65000:4_0:224_0:19$ ip community-list expanded c11 permit 404 ^65000:4_0:224_0:20$ ip community-list expanded c11 permit 405 ^65000:3_0:224_0:213$ ip community-list expanded c11 permit 406 ^65000:4_0:225_0:19$ ip community-list expanded c11 permit 407 ^65000:4_0:225_0:20$ ip community-list expanded c11 permit 408 ^65000:3_0:225_0:214$ ip community-list expanded c11 permit 409 ^65000:4_0:226_0:19$ ip community-list expanded c11 permit 410 ^65000:4_0:226_0:20$ ip community-list expanded c11 permit 411 ^65000:3_0:226_0:215$ ip community-list expanded c11 permit 412 ^65000:4_0:227_0:19$ ip community-list expanded c11 permit 413 ^65000:4_0:227_0:20$ ip community-list expanded c11 permit 414 ^65000:3_0:227_0:216$ ip community-list expanded c11 permit 415 ^65000:4_0:228_0:20$ ip community-list expanded c11 permit 416 ^65000:3_0:228_0:217$ ip community-list expanded c11 permit 417 ^65000:4_0:229_0:20$ ip community-list expanded c11 permit 418 ^65000:3_0:229_0:218$ ip community-list expanded c11 permit 419 ^65000:4_0:230_0:20$ ip community-list expanded c11 permit 420 ^65000:3_0:230_0:219$ ip community-list expanded c11 permit 421 ^65000:4_0:231_0:20$ ip community-list expanded c11 permit 422 ^65000:4_0:231_0:21$ ip community-list expanded c11 permit 423 ^65000:3_0:231_0:220$ ip community-list expanded c11 permit 424 ^65000:4_0:232_0:20$ ip community-list expanded c11 permit 425 ^65000:4_0:232_0:21$ ip community-list expanded c11 permit 426 ^65000:3_0:232_0:221$ ip community-list expanded c11 permit 427 ^65000:4_0:233_0:20$ ip community-list expanded c11 permit 428 ^65000:4_0:233_0:21$ ip community-list expanded c11 permit 429 ^65000:3_0:233_0:222$ ip community-list expanded c11 permit 430 ^65000:4_0:234_0:20$ ip community-list expanded c11 permit 431 ^65000:4_0:234_0:21$ ip community-list expanded c11 permit 432 ^65000:3_0:234_0:223$ ip community-list expanded c11 permit 433 ^65000:4_0:235_0:20$ ip community-list expanded c11 permit 434 ^65000:4_0:235_0:21$ ip community-list expanded c11 permit 435 ^65000:3_0:235_0:224$ ip community-list expanded c11 permit 436 ^65000:4_0:236_0:20$ ip community-list expanded c11 permit 437 ^65000:4_0:236_0:21$ ip community-list expanded c11 permit 438 ^65000:3_0:236_0:225$ ip community-list expanded c11 permit 439 ^65000:4_0:237_0:20$ ip community-list expanded c11 permit 440 ^65000:4_0:237_0:21$ ip community-list expanded c11 permit 441 ^65000:3_0:237_0:226$ ip community-list expanded c11 permit 442 ^65000:4_0:238_0:20$ ip community-list expanded c11 permit 443 ^65000:4_0:238_0:21$ ip community-list expanded c11 permit 444 ^65000:3_0:238_0:227$ ip community-list expanded c11 permit 445 ^65000:4_0:239_0:20$ ip community-list expanded c11 permit 446 ^65000:4_0:239_0:21$ ip community-list expanded c11 permit 447 ^65000:3_0:239_0:228$ ip community-list expanded c11 permit 448 ^65000:4_0:240_0:21$ ip community-list expanded c11 permit 449 ^65000:3_0:240_0:229$ ip community-list expanded c11 permit 450 ^65000:4_0:241_0:21$ ip community-list expanded c11 permit 451 ^65000:3_0:241_0:230$ ip community-list expanded c11 permit 452 ^65000:4_0:242_0:21$ ip community-list expanded c11 permit 453 ^65000:4_0:242_0:22$ ip community-list expanded c11 permit 454 ^65000:3_0:242_0:231$ ip community-list expanded c11 permit 455 ^65000:4_0:243_0:21$ ip community-list expanded c11 permit 456 ^65000:4_0:243_0:22$ ip community-list expanded c11 permit 457 ^65000:3_0:243_0:232$ ip community-list expanded c11 permit 458 ^65000:4_0:244_0:21$ ip community-list expanded c11 permit 459 ^65000:4_0:244_0:22$ ip community-list expanded c11 permit 460 ^65000:3_0:244_0:233$ ip community-list expanded c11 permit 461 ^65000:4_0:245_0:21$ ip community-list expanded c11 permit 462 ^65000:4_0:245_0:22$ ip community-list expanded c11 permit 463 ^65000:3_0:245_0:234$ ip community-list expanded c11 permit 464 ^65000:4_0:246_0:21$ ip community-list expanded c11 permit 465 ^65000:4_0:246_0:22$ ip community-list expanded c11 permit 466 ^65000:3_0:246_0:235$ ip community-list expanded c11 permit 467 ^65000:4_0:247_0:21$ ip community-list expanded c11 permit 468 ^65000:4_0:247_0:22$ ip community-list expanded c11 permit 469 ^65000:3_0:247_0:236$ ip community-list expanded c11 permit 470 ^65000:4_0:248_0:21$ ip community-list expanded c11 permit 471 ^65000:4_0:248_0:22$ ip community-list expanded c11 permit 472 ^65000:3_0:248_0:237$ ip community-list expanded c11 permit 473 ^65000:4_0:249_0:21$ ip community-list expanded c11 permit 474 ^65000:4_0:249_0:22$ ip community-list expanded c11 permit 475 ^65000:3_0:249_0:238$ ip community-list expanded c11 permit 476 ^65000:4_0:250_0:21$ ip community-list expanded c11 permit 477 ^65000:4_0:250_0:22$ ip community-list expanded c11 permit 478 ^65000:3_0:250_0:239$ ip community-list expanded c11 permit 479 ^65000:4_0:251_0:21$ ip community-list expanded c11 permit 480 ^65000:4_0:251_0:22$ ip community-list expanded c11 permit 481 ^65000:3_0:251_0:240$ ip community-list expanded c11 permit 482 ^65000:4_0:252_0:22$ ip community-list expanded c11 permit 483 ^65000:3_0:252_0:241$ ip community-list expanded c11 permit 484 ^65000:4_0:253_0:22$ ip community-list expanded c11 permit 485 ^65000:4_0:253_0:23$ ip community-list expanded c11 permit 486 ^65000:3_0:253_0:242$ ip community-list expanded c11 permit 487 ^65000:4_0:254_0:22$ ip community-list expanded c11 permit 488 ^65000:4_0:254_0:23$ ip community-list expanded c11 permit 489 ^65000:3_0:254_0:243$ ip community-list expanded c11 permit 490 ^65000:4_0:255_0:22$ ip community-list expanded c11 permit 491 ^65000:4_0:255_0:23$ ip community-list expanded c11 permit 492 ^65000:3_0:255_0:244$ ip community-list expanded c11 permit 493 ^65000:4_0:256_0:22$ ip community-list expanded c11 permit 494 ^65000:4_0:256_0:23$ ip community-list expanded c11 permit 495 ^65000:3_0:256_0:245$ route-map calculator permit 28203 match community 1_1_10 2_1_11 1_2_9 1_3_8 1_4_7 set community 0:11 route-map calculator permit 28204 match community 1_5_6 c4_11_1 c3_12_1 c3_13_2 c3_14_3 set community 0:11 route-map calculator permit 28205 match community c3_15_4 c3_16_5 c3_17_6 c3_18_7 c3_19_8 set community 0:11 route-map calculator permit 28206 match community c3_20_9 c3_21_10 c4_22_2 c3_22_11 c4_23_2 set community 0:11 route-map calculator permit 28207 match community c3_23_12 c3_24_13 c3_25_14 c3_26_15 c3_27_16 set community 0:11 route-map calculator permit 28208 match community c3_28_17 c3_29_18 c3_30_19 c3_31_20 c3_32_21 set community 0:11 route-map calculator permit 28209 match community c4_33_3 c3_33_22 c4_34_3 c3_34_23 c4_35_3 set community 0:11 route-map calculator permit 28210 match community c3_35_24 c3_36_25 c3_37_26 c3_38_27 c3_39_28 set community 0:11 route-map calculator permit 28211 match community c3_40_29 c3_41_30 c3_42_31 c3_43_32 c4_44_4 set community 0:11 route-map calculator permit 28212 match community c3_44_33 c4_45_4 c3_45_34 c4_46_4 c3_46_35 set community 0:11 route-map calculator permit 28213 match community c4_47_4 c3_47_36 c3_48_37 c3_49_38 c3_50_39 set community 0:11 route-map calculator permit 28214 match community c3_51_40 c3_52_41 c3_53_42 c3_54_43 c4_55_5 set community 0:11 route-map calculator permit 28215 match community c3_55_44 c4_56_5 c3_56_45 c4_57_5 c3_57_46 set community 0:11 route-map calculator permit 28216 match community c4_58_5 c3_58_47 c4_59_5 c3_59_48 c3_60_49 set community 0:11 route-map calculator permit 28217 match community c3_61_50 c3_62_51 c3_63_52 c3_64_53 c3_65_54 set community 0:11 route-map calculator permit 28218 match community c4_66_6 c3_66_55 c4_67_6 c3_67_56 c4_68_6 set community 0:11 route-map calculator permit 28219 match community c3_68_57 c4_69_6 c3_69_58 c4_70_6 c3_70_59 set community 0:11 route-map calculator permit 28220 match community c4_71_6 c3_71_60 c3_72_61 c3_73_62 c3_74_63 set community 0:11 route-map calculator permit 28221 match community c3_75_64 c3_76_65 c4_77_7 c3_77_66 c4_78_7 set community 0:11 route-map calculator permit 28222 match community c3_78_67 c4_79_7 c3_79_68 c4_80_7 c3_80_69 set community 0:11 route-map calculator permit 28223 match community c4_81_7 c3_81_70 c4_82_7 c3_82_71 c4_83_7 set community 0:11 route-map calculator permit 28224 match community c3_83_72 c3_84_73 c3_85_74 c3_86_75 c3_87_76 set community 0:11 route-map calculator permit 28225 match community c4_88_8 c3_88_77 c4_89_8 c3_89_78 c4_90_8 set community 0:11 route-map calculator permit 28226 match community c3_90_79 c4_91_8 c3_91_80 c4_92_8 c3_92_81 set community 0:11 route-map calculator permit 28227 match community c4_93_8 c3_93_82 c4_94_8 c3_94_83 c4_95_8 set community 0:11 route-map calculator permit 28228 match community c3_95_84 c3_96_85 c3_97_86 c3_98_87 c4_99_9 set community 0:11 route-map calculator permit 28229 match community c3_99_88 c4_100_9 c3_100_89 c4_101_9 c3_101_90 set community 0:11 route-map calculator permit 28230 match community c4_102_9 c3_102_91 c4_103_9 c3_103_92 c4_104_9 set community 0:11 route-map calculator permit 28231 match community c3_104_93 c4_105_9 c3_105_94 c4_106_9 c3_106_95 set community 0:11 route-map calculator permit 28232 match community c4_107_9 c3_107_96 c3_108_97 c3_109_98 c4_110_10 set community 0:11 route-map calculator permit 28233 match community c3_110_99 c4_111_10 c3_111_100 c4_112_10 c3_112_101 set community 0:11 route-map calculator permit 28234 match community c4_113_10 c3_113_102 c4_114_10 c3_114_103 c4_115_10 set community 0:11 route-map calculator permit 28235 match community c3_115_104 c4_116_10 c3_116_105 c4_117_10 c3_117_106 set community 0:11 route-map calculator permit 28236 match community c4_118_10 c3_118_107 c4_119_10 c3_119_108 c3_120_109 set community 0:11 route-map calculator permit 28237 match community c4_121_11 c3_121_110 c4_122_11 c3_122_111 c4_123_11 set community 0:11 route-map calculator permit 28238 match community c3_123_112 c4_124_11 c3_124_113 c4_125_11 c3_125_114 set community 0:11 route-map calculator permit 28239 match community c4_126_11 c3_126_115 c4_127_11 c3_127_116 c4_128_11 set community 0:11 route-map calculator permit 28240 match community c3_128_117 c4_129_11 c3_129_118 c4_130_11 c3_130_119 set community 0:11 route-map calculator permit 28241 match community c4_131_11 c3_131_120 c4_132_12 c3_132_121 c4_133_12 set community 0:11 route-map calculator permit 28242 match community c3_133_122 c4_134_12 c3_134_123 c4_135_12 c3_135_124 set community 0:11 route-map calculator permit 28243 match community c4_136_12 c3_136_125 c4_137_12 c3_137_126 c4_138_12 set community 0:11 route-map calculator permit 28244 match community c3_138_127 c4_139_12 c3_139_128 c4_140_12 c3_140_129 set community 0:11 route-map calculator permit 28245 match community c4_141_12 c3_141_130 c4_142_12 c3_142_131 c4_143_12 set community 0:11 route-map calculator permit 28246 match community c4_143_13 c3_143_132 c4_144_13 c3_144_133 c4_145_13 set community 0:11 route-map calculator permit 28247 match community c3_145_134 c4_146_13 c3_146_135 c4_147_13 c3_147_136 set community 0:11 route-map calculator permit 28248 match community c4_148_13 c3_148_137 c4_149_13 c3_149_138 c4_150_13 set community 0:11 route-map calculator permit 28249 match community c3_150_139 c4_151_13 c3_151_140 c4_152_13 c3_152_141 set community 0:11 route-map calculator permit 28250 match community c4_153_13 c3_153_142 c4_154_13 c4_154_14 c3_154_143 set community 0:11 route-map calculator permit 28251 match community c4_155_13 c4_155_14 c3_155_144 c4_156_14 c3_156_145 set community 0:11 route-map calculator permit 28252 match community c4_157_14 c3_157_146 c4_158_14 c3_158_147 c4_159_14 set community 0:11 route-map calculator permit 28253 match community c3_159_148 c4_160_14 c3_160_149 c4_161_14 c3_161_150 set community 0:11 route-map calculator permit 28254 match community c4_162_14 c3_162_151 c4_163_14 c3_163_152 c4_164_14 set community 0:11 route-map calculator permit 28255 match community c3_164_153 c4_165_14 c4_165_15 c3_165_154 c4_166_14 set community 0:11 route-map calculator permit 28256 match community c4_166_15 c3_166_155 c4_167_14 c4_167_15 c3_167_156 set community 0:11 route-map calculator permit 28257 match community c4_168_15 c3_168_157 c4_169_15 c3_169_158 c4_170_15 set community 0:11 route-map calculator permit 28258 match community c3_170_159 c4_171_15 c3_171_160 c4_172_15 c3_172_161 set community 0:11 route-map calculator permit 28259 match community c4_173_15 c3_173_162 c4_174_15 c3_174_163 c4_175_15 set community 0:11 route-map calculator permit 28260 match community c3_175_164 c4_176_15 c4_176_16 c3_176_165 c4_177_15 set community 0:11 route-map calculator permit 28261 match community c4_177_16 c3_177_166 c4_178_15 c4_178_16 c3_178_167 set community 0:11 route-map calculator permit 28262 match community c4_179_15 c4_179_16 c3_179_168 c4_180_16 c3_180_169 set community 0:11 route-map calculator permit 28263 match community c4_181_16 c3_181_170 c4_182_16 c3_182_171 c4_183_16 set community 0:11 route-map calculator permit 28264 match community c3_183_172 c4_184_16 c3_184_173 c4_185_16 c3_185_174 set community 0:11 route-map calculator permit 28265 match community c4_186_16 c3_186_175 c4_187_16 c4_187_17 c3_187_176 set community 0:11 route-map calculator permit 28266 match community c4_188_16 c4_188_17 c3_188_177 c4_189_16 c4_189_17 set community 0:11 route-map calculator permit 28267 match community c3_189_178 c4_190_16 c4_190_17 c3_190_179 c4_191_16 set community 0:11 route-map calculator permit 28268 match community c4_191_17 c3_191_180 c4_192_17 c3_192_181 c4_193_17 set community 0:11 route-map calculator permit 28269 match community c3_193_182 c4_194_17 c3_194_183 c4_195_17 c3_195_184 set community 0:11 route-map calculator permit 28270 match community c4_196_17 c3_196_185 c4_197_17 c3_197_186 c4_198_17 set community 0:11 route-map calculator permit 28271 match community c4_198_18 c3_198_187 c4_199_17 c4_199_18 c3_199_188 set community 0:11 route-map calculator permit 28272 match community c4_200_17 c4_200_18 c3_200_189 c4_201_17 c4_201_18 set community 0:11 route-map calculator permit 28273 match community c3_201_190 c4_202_17 c4_202_18 c3_202_191 c4_203_17 set community 0:11 route-map calculator permit 28274 match community c4_203_18 c3_203_192 c4_204_18 c3_204_193 c4_205_18 set community 0:11 route-map calculator permit 28275 match community c3_205_194 c4_206_18 c3_206_195 c4_207_18 c3_207_196 set community 0:11 route-map calculator permit 28276 match community c4_208_18 c3_208_197 c4_209_18 c4_209_19 c3_209_198 set community 0:11 route-map calculator permit 28277 match community c4_210_18 c4_210_19 c3_210_199 c4_211_18 c4_211_19 set community 0:11 route-map calculator permit 28278 match community c3_211_200 c4_212_18 c4_212_19 c3_212_201 c4_213_18 set community 0:11 route-map calculator permit 28279 match community c4_213_19 c3_213_202 c4_214_18 c4_214_19 c3_214_203 set community 0:11 route-map calculator permit 28280 match community c4_215_18 c4_215_19 c3_215_204 c4_216_19 c3_216_205 set community 0:11 route-map calculator permit 28281 match community c4_217_19 c3_217_206 c4_218_19 c3_218_207 c4_219_19 set community 0:11 route-map calculator permit 28282 match community c3_219_208 c4_220_19 c4_220_20 c3_220_209 c4_221_19 set community 0:11 route-map calculator permit 28283 match community c4_221_20 c3_221_210 c4_222_19 c4_222_20 c3_222_211 set community 0:11 route-map calculator permit 28284 match community c4_223_19 c4_223_20 c3_223_212 c4_224_19 c4_224_20 set community 0:11 route-map calculator permit 28285 match community c3_224_213 c4_225_19 c4_225_20 c3_225_214 c4_226_19 set community 0:11 route-map calculator permit 28286 match community c4_226_20 c3_226_215 c4_227_19 c4_227_20 c3_227_216 set community 0:11 route-map calculator permit 28287 match community c4_228_20 c3_228_217 c4_229_20 c3_229_218 c4_230_20 set community 0:11 route-map calculator permit 28288 match community c3_230_219 c4_231_20 c4_231_21 c3_231_220 c4_232_20 set community 0:11 route-map calculator permit 28289 match community c4_232_21 c3_232_221 c4_233_20 c4_233_21 c3_233_222 set community 0:11 route-map calculator permit 28290 match community c4_234_20 c4_234_21 c3_234_223 c4_235_20 c4_235_21 set community 0:11 route-map calculator permit 28291 match community c3_235_224 c4_236_20 c4_236_21 c3_236_225 c4_237_20 set community 0:11 route-map calculator permit 28292 match community c4_237_21 c3_237_226 c4_238_20 c4_238_21 c3_238_227 set community 0:11 route-map calculator permit 28293 match community c4_239_20 c4_239_21 c3_239_228 c4_240_21 c3_240_229 set community 0:11 route-map calculator permit 28294 match community c4_241_21 c3_241_230 c4_242_21 c4_242_22 c3_242_231 set community 0:11 route-map calculator permit 28295 match community c4_243_21 c4_243_22 c3_243_232 c4_244_21 c4_244_22 set community 0:11 route-map calculator permit 28296 match community c3_244_233 c4_245_21 c4_245_22 c3_245_234 c4_246_21 set community 0:11 route-map calculator permit 28297 match community c4_246_22 c3_246_235 c4_247_21 c4_247_22 c3_247_236 set community 0:11 route-map calculator permit 28298 match community c4_248_21 c4_248_22 c3_248_237 c4_249_21 c4_249_22 set community 0:11 route-map calculator permit 28299 match community c3_249_238 c4_250_21 c4_250_22 c3_250_239 c4_251_21 set community 0:11 route-map calculator permit 28300 match community c4_251_22 c3_251_240 c4_252_22 c3_252_241 c4_253_22 set community 0:11 route-map calculator permit 28301 match community c4_253_23 c3_253_242 c4_254_22 c4_254_23 c3_254_243 set community 0:11 route-map calculator permit 28302 match community c4_255_22 c4_255_23 c3_255_244 c4_256_22 c4_256_23 set community 0:11 route-map calculator permit 28303 match community c3_256_245 set community 0:11 ip community-list standard 2_39_244 permit 65000:2 0:39 0:244 ip community-list standard 2_52_183 permit 65000:2 0:52 0:183 ip community-list standard 2_61_156 permit 65000:2 0:61 0:156 ip community-list standard 2_78_122 permit 65000:2 0:78 0:122 route-map calculator permit 28304 match community 2_39_244 2_52_183 2_61_156 2_78_122 set community 0:9516 ip community-list standard 2_137_157 permit 65000:2 0:137 0:157 route-map calculator permit 28305 match community 2_137_157 set community 0:21509 ip community-list standard 2_90_199 permit 65000:2 0:90 0:199 route-map calculator permit 28306 match community 2_90_199 set community 0:17910 ip community-list standard 2_31_228 permit 65000:2 0:31 0:228 ip community-list standard 2_38_186 permit 65000:2 0:38 0:186 ip community-list standard 2_57_124 permit 65000:2 0:57 0:124 ip community-list standard 2_62_114 permit 65000:2 0:62 0:114 ip community-list standard 2_76_93 permit 65000:2 0:76 0:93 route-map calculator permit 28307 match community 2_31_228 2_38_186 2_57_124 2_62_114 2_76_93 set community 0:7068 ip community-list standard 2_125_203 permit 65000:2 0:125 0:203 ip community-list standard 2_145_175 permit 65000:2 0:145 0:175 route-map calculator permit 28308 match community 2_125_203 2_145_175 set community 0:25375 ip community-list standard 2_151_214 permit 65000:2 0:151 0:214 route-map calculator permit 28309 match community 2_151_214 set community 0:32314 ip community-list standard 2_230_234 permit 65000:2 0:230 0:234 route-map calculator permit 28310 match community 2_230_234 set community 0:53820 ip community-list standard 2_147_173 permit 65000:2 0:147 0:173 route-map calculator permit 28311 match community 2_147_173 set community 0:25431 ip community-list standard 2_84_236 permit 65000:2 0:84 0:236 ip community-list standard 2_112_177 permit 65000:2 0:112 0:177 ip community-list standard 2_118_168 permit 65000:2 0:118 0:168 route-map calculator permit 28312 match community 2_84_236 2_112_177 2_118_168 set community 0:19824 ip community-list standard 2_46_181 permit 65000:2 0:46 0:181 route-map calculator permit 28313 match community 2_46_181 set community 0:8326 ip community-list standard 2_47_174 permit 65000:2 0:47 0:174 ip community-list standard 2_58_141 permit 65000:2 0:58 0:141 ip community-list standard 2_87_94 permit 65000:2 0:87 0:94 route-map calculator permit 28314 match community 2_47_174 2_58_141 2_87_94 set community 0:8178 ip community-list standard 2_13_163 permit 65000:2 0:13 0:163 route-map calculator permit 28315 match community 2_13_163 set community 0:2119 ip community-list standard 2_11_211 permit 65000:2 0:11 0:211 route-map calculator permit 28316 match community 2_11_211 set community 0:2321 ip community-list standard 2_163_212 permit 65000:2 0:163 0:212 route-map calculator permit 28317 match community 2_163_212 set community 0:34556 ip community-list standard 2_100_226 permit 65000:2 0:100 0:226 ip community-list standard 2_113_200 permit 65000:2 0:113 0:200 route-map calculator permit 28318 match community 2_100_226 2_113_200 set community 0:22600 ip community-list standard 2_139_243 permit 65000:2 0:139 0:243 route-map calculator permit 28319 match community 2_139_243 set community 0:33777 ip community-list standard 2_39_129 permit 65000:2 0:39 0:129 ip community-list standard 2_43_117 permit 65000:2 0:43 0:117 route-map calculator permit 28320 match community 2_39_129 2_43_117 set community 0:5031 ip community-list standard 2_57_241 permit 65000:2 0:57 0:241 route-map calculator permit 28321 match community 2_57_241 set community 0:13737 ip community-list standard 2_18_243 permit 65000:2 0:18 0:243 ip community-list standard 2_27_162 permit 65000:2 0:27 0:162 ip community-list standard 2_54_81 permit 65000:2 0:54 0:81 route-map calculator permit 28322 match community 2_18_243 2_27_162 2_54_81 set community 0:4374 ip community-list standard 2_61_115 permit 65000:2 0:61 0:115 route-map calculator permit 28323 match community 2_61_115 set community 0:7015 ip community-list standard 2_176_235 permit 65000:2 0:176 0:235 ip community-list standard 2_188_220 permit 65000:2 0:188 0:220 route-map calculator permit 28324 match community 2_176_235 2_188_220 set community 0:41360 ip community-list standard 2_31_250 permit 65000:2 0:31 0:250 ip community-list standard 2_50_155 permit 65000:2 0:50 0:155 ip community-list standard 2_62_125 permit 65000:2 0:62 0:125 route-map calculator permit 28325 match community 2_31_250 2_50_155 2_62_125 set community 0:7750 ip community-list standard 2_9_204 permit 65000:2 0:9 0:204 ip community-list standard 2_12_153 permit 65000:2 0:12 0:153 ip community-list standard 2_17_108 permit 65000:2 0:17 0:108 ip community-list standard 2_18_102 permit 65000:2 0:18 0:102 ip community-list standard 2_27_68 permit 65000:2 0:27 0:68 ip community-list standard 2_34_54 permit 65000:2 0:34 0:54 ip community-list standard 2_36_51 permit 65000:2 0:36 0:51 route-map calculator permit 28326 match community 2_9_204 2_12_153 2_17_108 2_18_102 2_27_68 set community 0:1836 route-map calculator permit 28327 match community 2_34_54 2_36_51 set community 0:1836 ip community-list standard 2_81_209 permit 65000:2 0:81 0:209 ip community-list standard 2_99_171 permit 65000:2 0:99 0:171 route-map calculator permit 28328 match community 2_81_209 2_99_171 set community 0:16929 ip community-list standard 2_70_256 permit 65000:2 0:70 0:256 ip community-list standard 2_80_224 permit 65000:2 0:80 0:224 ip community-list standard 2_112_160 permit 65000:2 0:112 0:160 ip community-list standard 2_128_140 permit 65000:2 0:128 0:140 route-map calculator permit 28329 match community 2_70_256 2_80_224 2_112_160 2_128_140 set community 0:17920 ip community-list standard 2_156_211 permit 65000:2 0:156 0:211 route-map calculator permit 28330 match community 2_156_211 set community 0:32916 ip community-list standard 2_155_212 permit 65000:2 0:155 0:212 route-map calculator permit 28331 match community 2_155_212 set community 0:32860 ip community-list standard 2_137_149 permit 65000:2 0:137 0:149 route-map calculator permit 28332 match community 2_137_149 set community 0:20413 ip community-list standard 2_128_137 permit 65000:2 0:128 0:137 route-map calculator permit 28333 match community 2_128_137 set community 0:17536 ip community-list standard 2_67_214 permit 65000:2 0:67 0:214 ip community-list standard 2_107_134 permit 65000:2 0:107 0:134 route-map calculator permit 28334 match community 2_67_214 2_107_134 set community 0:14338 ip community-list standard 2_47_213 permit 65000:2 0:47 0:213 ip community-list standard 2_71_141 permit 65000:2 0:71 0:141 route-map calculator permit 28335 match community 2_47_213 2_71_141 set community 0:10011 ip community-list standard 2_189_251 permit 65000:2 0:189 0:251 route-map calculator permit 28336 match community 2_189_251 set community 0:47439 ip community-list standard 2_4_167 permit 65000:2 0:4 0:167 route-map calculator permit 28337 match community 2_4_167 set community 0:668 ip community-list standard 2_130_227 permit 65000:2 0:130 0:227 route-map calculator permit 28338 match community 2_130_227 set community 0:29510 ip community-list standard 2_201_236 permit 65000:2 0:201 0:236 route-map calculator permit 28339 match community 2_201_236 set community 0:47436 ip community-list standard 2_149_185 permit 65000:2 0:149 0:185 route-map calculator permit 28340 match community 2_149_185 set community 0:27565 ip community-list standard 2_142_228 permit 65000:2 0:142 0:228 ip community-list standard 2_152_213 permit 65000:2 0:152 0:213 route-map calculator permit 28341 match community 2_142_228 2_152_213 set community 0:32376 ip community-list standard 2_19_214 permit 65000:2 0:19 0:214 ip community-list standard 2_38_107 permit 65000:2 0:38 0:107 route-map calculator permit 28342 match community 2_19_214 2_38_107 set community 0:4066 ip community-list standard 2_22_179 permit 65000:2 0:22 0:179 route-map calculator permit 28343 match community 2_22_179 set community 0:3938 ip community-list standard 2_176_244 permit 65000:2 0:176 0:244 route-map calculator permit 28344 match community 2_176_244 set community 0:42944 ip community-list standard 2_134_182 permit 65000:2 0:134 0:182 route-map calculator permit 28345 match community 2_134_182 set community 0:24388 ip community-list standard 2_110_215 permit 65000:2 0:110 0:215 route-map calculator permit 28346 match community 2_110_215 set community 0:23650 ip community-list standard 2_51_197 permit 65000:2 0:51 0:197 route-map calculator permit 28347 match community 2_51_197 set community 0:10047 ip community-list standard 2_114_209 permit 65000:2 0:114 0:209 route-map calculator permit 28348 match community 2_114_209 set community 0:23826 ip community-list standard 2_147_159 permit 65000:2 0:147 0:159 route-map calculator permit 28349 match community 2_147_159 set community 0:23373 ip community-list standard 2_18_232 permit 65000:2 0:18 0:232 ip community-list standard 2_24_174 permit 65000:2 0:24 0:174 ip community-list standard 2_29_144 permit 65000:2 0:29 0:144 ip community-list standard 2_36_116 permit 65000:2 0:36 0:116 ip community-list standard 2_48_87 permit 65000:2 0:48 0:87 ip community-list standard 2_58_72 permit 65000:2 0:58 0:72 route-map calculator permit 28350 match community 2_18_232 2_24_174 2_29_144 2_36_116 2_48_87 set community 0:4176 route-map calculator permit 28351 match community 2_58_72 set community 0:4176 ip community-list standard 2_72_247 permit 65000:2 0:72 0:247 ip community-list standard 2_76_234 permit 65000:2 0:76 0:234 ip community-list standard 2_78_228 permit 65000:2 0:78 0:228 ip community-list standard 2_104_171 permit 65000:2 0:104 0:171 ip community-list standard 2_114_156 permit 65000:2 0:114 0:156 ip community-list standard 2_117_152 permit 65000:2 0:117 0:152 route-map calculator permit 28352 match community 2_72_247 2_76_234 2_78_228 2_104_171 2_114_156 set community 0:17784 route-map calculator permit 28353 match community 2_117_152 set community 0:17784 ip community-list standard 2_118_143 permit 65000:2 0:118 0:143 route-map calculator permit 28354 match community 2_118_143 set community 0:16874 ip community-list standard 2_69_97 permit 65000:2 0:69 0:97 route-map calculator permit 28355 match community 2_69_97 set community 0:6693 ip community-list standard 2_58_221 permit 65000:2 0:58 0:221 route-map calculator permit 28356 match community 2_58_221 set community 0:12818 ip community-list standard 2_5_91 permit 65000:2 0:5 0:91 ip community-list standard 2_7_65 permit 65000:2 0:7 0:65 ip community-list standard 2_13_35 permit 65000:2 0:13 0:35 ip community-list standard 1_199_256 permit 65000:1 0:199 0:256 ip community-list standard 1_200_255 permit 65000:1 0:200 0:255 ip community-list standard 1_201_254 permit 65000:1 0:201 0:254 ip community-list standard 1_202_253 permit 65000:1 0:202 0:253 ip community-list standard 1_203_252 permit 65000:1 0:203 0:252 ip community-list standard 1_204_251 permit 65000:1 0:204 0:251 ip community-list standard 1_205_250 permit 65000:1 0:205 0:250 ip community-list standard 1_206_249 permit 65000:1 0:206 0:249 ip community-list standard 1_207_248 permit 65000:1 0:207 0:248 ip community-list standard 1_208_247 permit 65000:1 0:208 0:247 ip community-list standard 1_209_246 permit 65000:1 0:209 0:246 ip community-list standard 1_210_245 permit 65000:1 0:210 0:245 ip community-list standard 1_211_244 permit 65000:1 0:211 0:244 ip community-list standard 1_212_243 permit 65000:1 0:212 0:243 ip community-list standard 1_213_242 permit 65000:1 0:213 0:242 ip community-list standard 1_214_241 permit 65000:1 0:214 0:241 ip community-list standard 1_215_240 permit 65000:1 0:215 0:240 ip community-list standard 1_216_239 permit 65000:1 0:216 0:239 ip community-list standard 1_217_238 permit 65000:1 0:217 0:238 ip community-list standard 1_218_237 permit 65000:1 0:218 0:237 ip community-list standard 1_219_236 permit 65000:1 0:219 0:236 ip community-list standard 1_220_235 permit 65000:1 0:220 0:235 ip community-list standard 1_221_234 permit 65000:1 0:221 0:234 ip community-list standard 1_222_233 permit 65000:1 0:222 0:233 ip community-list standard 1_223_232 permit 65000:1 0:223 0:232 ip community-list standard 1_224_231 permit 65000:1 0:224 0:231 ip community-list standard 1_225_230 permit 65000:1 0:225 0:230 ip community-list standard 1_226_229 permit 65000:1 0:226 0:229 ip community-list standard 1_227_228 permit 65000:1 0:227 0:228 route-map calculator permit 28357 match community 2_5_91 2_7_65 2_13_35 1_199_256 1_200_255 set community 0:455 route-map calculator permit 28358 match community 1_201_254 1_202_253 1_203_252 1_204_251 1_205_250 set community 0:455 route-map calculator permit 28359 match community 1_206_249 1_207_248 1_208_247 1_209_246 1_210_245 set community 0:455 route-map calculator permit 28360 match community 1_211_244 1_212_243 1_213_242 1_214_241 1_215_240 set community 0:455 route-map calculator permit 28361 match community 1_216_239 1_217_238 1_218_237 1_219_236 1_220_235 set community 0:455 route-map calculator permit 28362 match community 1_221_234 1_222_233 1_223_232 1_224_231 1_225_230 set community 0:455 route-map calculator permit 28363 match community 1_226_229 1_227_228 set community 0:455 ip community-list standard 2_39_254 permit 65000:2 0:39 0:254 ip community-list standard 2_78_127 permit 65000:2 0:78 0:127 route-map calculator permit 28364 match community 2_39_254 2_78_127 set community 0:9906 ip community-list standard 2_35_202 permit 65000:2 0:35 0:202 ip community-list standard 2_70_101 permit 65000:2 0:70 0:101 route-map calculator permit 28365 match community 2_35_202 2_70_101 set community 0:7070 ip community-list standard 2_203_254 permit 65000:2 0:203 0:254 route-map calculator permit 28366 match community 2_203_254 set community 0:51562 ip community-list standard 2_25_193 permit 65000:2 0:25 0:193 route-map calculator permit 28367 match community 2_25_193 set community 0:4825 ip community-list standard 2_205_244 permit 65000:2 0:205 0:244 route-map calculator permit 28368 match community 2_205_244 set community 0:50020 ip community-list standard 2_13_210 permit 65000:2 0:13 0:210 ip community-list standard 2_14_195 permit 65000:2 0:14 0:195 ip community-list standard 2_15_182 permit 65000:2 0:15 0:182 ip community-list standard 2_21_130 permit 65000:2 0:21 0:130 ip community-list standard 2_26_105 permit 65000:2 0:26 0:105 ip community-list standard 2_30_91 permit 65000:2 0:30 0:91 ip community-list standard 2_35_78 permit 65000:2 0:35 0:78 ip community-list standard 2_39_70 permit 65000:2 0:39 0:70 ip community-list standard 2_42_65 permit 65000:2 0:42 0:65 route-map calculator permit 28369 match community 2_13_210 2_14_195 2_15_182 2_21_130 2_26_105 set community 0:2730 route-map calculator permit 28370 match community 2_30_91 2_35_78 2_39_70 2_42_65 set community 0:2730 ip community-list standard 2_43_146 permit 65000:2 0:43 0:146 ip community-list standard 2_73_86 permit 65000:2 0:73 0:86 route-map calculator permit 28371 match community 2_43_146 2_73_86 set community 0:6278 ip community-list standard 2_144_234 permit 65000:2 0:144 0:234 ip community-list standard 2_156_216 permit 65000:2 0:156 0:216 ip community-list standard 2_162_208 permit 65000:2 0:162 0:208 route-map calculator permit 28372 match community 2_144_234 2_156_216 2_162_208 set community 0:33696 ip community-list standard 2_62_151 permit 65000:2 0:62 0:151 route-map calculator permit 28373 match community 2_62_151 set community 0:9362 ip community-list standard 2_149_229 permit 65000:2 0:149 0:229 route-map calculator permit 28374 match community 2_149_229 set community 0:34121 ip community-list standard 2_190_209 permit 65000:2 0:190 0:209 route-map calculator permit 28375 match community 2_190_209 set community 0:39710 ip community-list standard 2_22_174 permit 65000:2 0:22 0:174 ip community-list standard 2_29_132 permit 65000:2 0:29 0:132 ip community-list standard 2_33_116 permit 65000:2 0:33 0:116 ip community-list standard 2_44_87 permit 65000:2 0:44 0:87 ip community-list standard 2_58_66 permit 65000:2 0:58 0:66 route-map calculator permit 28376 match community 2_22_174 2_29_132 2_33_116 2_44_87 2_58_66 set community 0:3828 ip community-list standard 2_43_118 permit 65000:2 0:43 0:118 ip community-list standard 2_59_86 permit 65000:2 0:59 0:86 route-map calculator permit 28377 match community 2_43_118 2_59_86 set community 0:5074 ip community-list standard 2_88_250 permit 65000:2 0:88 0:250 ip community-list standard 2_100_220 permit 65000:2 0:100 0:220 ip community-list standard 2_110_200 permit 65000:2 0:110 0:200 ip community-list standard 2_125_176 permit 65000:2 0:125 0:176 route-map calculator permit 28378 match community 2_88_250 2_100_220 2_110_200 2_125_176 set community 0:22000 ip community-list standard 2_101_236 permit 65000:2 0:101 0:236 ip community-list standard 2_118_202 permit 65000:2 0:118 0:202 route-map calculator permit 28379 match community 2_101_236 2_118_202 set community 0:23836 ip community-list standard 2_76_184 permit 65000:2 0:76 0:184 ip community-list standard 2_92_152 permit 65000:2 0:92 0:152 route-map calculator permit 28380 match community 2_76_184 2_92_152 set community 0:13984 ip community-list standard 2_212_228 permit 65000:2 0:212 0:228 route-map calculator permit 28381 match community 2_212_228 set community 0:48336 ip community-list standard 2_106_254 permit 65000:2 0:106 0:254 ip community-list standard 2_127_212 permit 65000:2 0:127 0:212 route-map calculator permit 28382 match community 2_106_254 2_127_212 set community 0:26924 ip community-list standard 2_2_184 permit 65000:2 0:2 0:184 ip community-list standard 2_4_92 permit 65000:2 0:4 0:92 ip community-list standard 2_8_46 permit 65000:2 0:8 0:46 ip community-list standard 2_16_23 permit 65000:2 0:16 0:23 ip community-list standard 1_112_256 permit 65000:1 0:112 0:256 ip community-list standard 1_113_255 permit 65000:1 0:113 0:255 ip community-list standard 1_114_254 permit 65000:1 0:114 0:254 ip community-list standard 1_115_253 permit 65000:1 0:115 0:253 ip community-list standard 1_116_252 permit 65000:1 0:116 0:252 ip community-list standard 1_117_251 permit 65000:1 0:117 0:251 ip community-list standard 1_118_250 permit 65000:1 0:118 0:250 ip community-list standard 1_119_249 permit 65000:1 0:119 0:249 ip community-list standard 1_120_248 permit 65000:1 0:120 0:248 ip community-list standard 1_121_247 permit 65000:1 0:121 0:247 ip community-list standard 1_122_246 permit 65000:1 0:122 0:246 ip community-list standard 1_123_245 permit 65000:1 0:123 0:245 ip community-list standard 1_124_244 permit 65000:1 0:124 0:244 ip community-list standard 1_125_243 permit 65000:1 0:125 0:243 ip community-list standard 1_126_242 permit 65000:1 0:126 0:242 ip community-list standard 1_127_241 permit 65000:1 0:127 0:241 ip community-list standard 1_128_240 permit 65000:1 0:128 0:240 ip community-list standard 1_129_239 permit 65000:1 0:129 0:239 ip community-list standard 1_130_238 permit 65000:1 0:130 0:238 ip community-list standard 1_131_237 permit 65000:1 0:131 0:237 ip community-list standard 1_132_236 permit 65000:1 0:132 0:236 ip community-list standard 1_133_235 permit 65000:1 0:133 0:235 ip community-list standard 1_134_234 permit 65000:1 0:134 0:234 ip community-list standard 1_135_233 permit 65000:1 0:135 0:233 ip community-list standard 1_136_232 permit 65000:1 0:136 0:232 ip community-list standard 1_137_231 permit 65000:1 0:137 0:231 ip community-list standard 1_138_230 permit 65000:1 0:138 0:230 ip community-list standard 1_139_229 permit 65000:1 0:139 0:229 ip community-list standard 1_140_228 permit 65000:1 0:140 0:228 ip community-list standard 1_141_227 permit 65000:1 0:141 0:227 ip community-list standard 1_142_226 permit 65000:1 0:142 0:226 ip community-list standard 1_143_225 permit 65000:1 0:143 0:225 ip community-list standard 1_144_224 permit 65000:1 0:144 0:224 ip community-list standard 1_145_223 permit 65000:1 0:145 0:223 ip community-list standard 1_146_222 permit 65000:1 0:146 0:222 ip community-list standard 1_147_221 permit 65000:1 0:147 0:221 ip community-list standard 1_148_220 permit 65000:1 0:148 0:220 ip community-list standard 1_149_219 permit 65000:1 0:149 0:219 ip community-list standard 1_150_218 permit 65000:1 0:150 0:218 ip community-list standard 1_151_217 permit 65000:1 0:151 0:217 ip community-list standard 1_152_216 permit 65000:1 0:152 0:216 ip community-list standard 1_153_215 permit 65000:1 0:153 0:215 ip community-list standard 1_154_214 permit 65000:1 0:154 0:214 ip community-list standard 1_155_213 permit 65000:1 0:155 0:213 ip community-list standard 1_156_212 permit 65000:1 0:156 0:212 ip community-list standard 1_157_211 permit 65000:1 0:157 0:211 ip community-list standard 1_158_210 permit 65000:1 0:158 0:210 ip community-list standard 1_159_209 permit 65000:1 0:159 0:209 ip community-list standard 1_160_208 permit 65000:1 0:160 0:208 ip community-list standard 1_161_207 permit 65000:1 0:161 0:207 ip community-list standard 1_162_206 permit 65000:1 0:162 0:206 ip community-list standard 1_163_205 permit 65000:1 0:163 0:205 ip community-list standard 1_164_204 permit 65000:1 0:164 0:204 ip community-list standard 1_165_203 permit 65000:1 0:165 0:203 ip community-list standard 1_166_202 permit 65000:1 0:166 0:202 ip community-list standard 1_167_201 permit 65000:1 0:167 0:201 ip community-list standard 1_168_200 permit 65000:1 0:168 0:200 ip community-list standard 1_169_199 permit 65000:1 0:169 0:199 ip community-list standard 1_170_198 permit 65000:1 0:170 0:198 ip community-list standard 1_171_197 permit 65000:1 0:171 0:197 ip community-list standard 1_172_196 permit 65000:1 0:172 0:196 ip community-list standard 1_173_195 permit 65000:1 0:173 0:195 ip community-list standard 1_174_194 permit 65000:1 0:174 0:194 ip community-list standard 1_175_193 permit 65000:1 0:175 0:193 ip community-list standard 1_176_192 permit 65000:1 0:176 0:192 ip community-list standard 1_177_191 permit 65000:1 0:177 0:191 ip community-list standard 1_178_190 permit 65000:1 0:178 0:190 ip community-list standard 1_179_189 permit 65000:1 0:179 0:189 ip community-list standard 1_180_188 permit 65000:1 0:180 0:188 ip community-list standard 1_181_187 permit 65000:1 0:181 0:187 ip community-list standard 1_182_186 permit 65000:1 0:182 0:186 ip community-list standard 1_183_185 permit 65000:1 0:183 0:185 ip community-list standard 1_184_184 permit 65000:1 0:184 0:184 route-map calculator permit 28383 match community 2_2_184 2_4_92 2_8_46 2_16_23 1_112_256 set community 0:368 route-map calculator permit 28384 match community 1_113_255 1_114_254 1_115_253 1_116_252 1_117_251 set community 0:368 route-map calculator permit 28385 match community 1_118_250 1_119_249 1_120_248 1_121_247 1_122_246 set community 0:368 route-map calculator permit 28386 match community 1_123_245 1_124_244 1_125_243 1_126_242 1_127_241 set community 0:368 route-map calculator permit 28387 match community 1_128_240 1_129_239 1_130_238 1_131_237 1_132_236 set community 0:368 route-map calculator permit 28388 match community 1_133_235 1_134_234 1_135_233 1_136_232 1_137_231 set community 0:368 route-map calculator permit 28389 match community 1_138_230 1_139_229 1_140_228 1_141_227 1_142_226 set community 0:368 route-map calculator permit 28390 match community 1_143_225 1_144_224 1_145_223 1_146_222 1_147_221 set community 0:368 route-map calculator permit 28391 match community 1_148_220 1_149_219 1_150_218 1_151_217 1_152_216 set community 0:368 route-map calculator permit 28392 match community 1_153_215 1_154_214 1_155_213 1_156_212 1_157_211 set community 0:368 route-map calculator permit 28393 match community 1_158_210 1_159_209 1_160_208 1_161_207 1_162_206 set community 0:368 route-map calculator permit 28394 match community 1_163_205 1_164_204 1_165_203 1_166_202 1_167_201 set community 0:368 route-map calculator permit 28395 match community 1_168_200 1_169_199 1_170_198 1_171_197 1_172_196 set community 0:368 route-map calculator permit 28396 match community 1_173_195 1_174_194 1_175_193 1_176_192 1_177_191 set community 0:368 route-map calculator permit 28397 match community 1_178_190 1_179_189 1_180_188 1_181_187 1_182_186 set community 0:368 route-map calculator permit 28398 match community 1_183_185 1_184_184 set community 0:368 ip community-list standard 2_149_200 permit 65000:2 0:149 0:200 route-map calculator permit 28399 match community 2_149_200 set community 0:29800 ip community-list standard 2_61_186 permit 65000:2 0:61 0:186 ip community-list standard 2_62_183 permit 65000:2 0:62 0:183 ip community-list standard 2_93_122 permit 65000:2 0:93 0:122 route-map calculator permit 28400 match community 2_61_186 2_62_183 2_93_122 set community 0:11346 ip community-list standard 1_1_139 permit 65000:1 0:1 0:139 ip community-list standard 2_1_140 permit 65000:2 0:1 0:140 ip community-list standard 2_2_70 permit 65000:2 0:2 0:70 ip community-list standard 1_2_138 permit 65000:1 0:2 0:138 ip community-list standard 1_3_137 permit 65000:1 0:3 0:137 ip community-list standard 2_4_35 permit 65000:2 0:4 0:35 ip community-list standard 1_4_136 permit 65000:1 0:4 0:136 ip community-list standard 2_5_28 permit 65000:2 0:5 0:28 ip community-list standard 1_5_135 permit 65000:1 0:5 0:135 ip community-list standard 1_6_134 permit 65000:1 0:6 0:134 ip community-list standard 2_7_20 permit 65000:2 0:7 0:20 ip community-list standard 1_7_133 permit 65000:1 0:7 0:133 ip community-list standard 1_8_132 permit 65000:1 0:8 0:132 ip community-list standard 1_9_131 permit 65000:1 0:9 0:131 ip community-list standard 2_10_14 permit 65000:2 0:10 0:14 ip community-list standard 1_10_130 permit 65000:1 0:10 0:130 ip community-list standard 1_11_129 permit 65000:1 0:11 0:129 ip community-list standard 1_12_128 permit 65000:1 0:12 0:128 ip community-list standard 1_13_127 permit 65000:1 0:13 0:127 ip community-list standard 1_14_126 permit 65000:1 0:14 0:126 ip community-list standard 1_15_125 permit 65000:1 0:15 0:125 ip community-list standard 1_16_124 permit 65000:1 0:16 0:124 ip community-list standard 1_17_123 permit 65000:1 0:17 0:123 ip community-list standard 1_18_122 permit 65000:1 0:18 0:122 ip community-list standard 1_19_121 permit 65000:1 0:19 0:121 ip community-list standard 1_20_120 permit 65000:1 0:20 0:120 ip community-list standard 1_21_119 permit 65000:1 0:21 0:119 ip community-list standard 1_22_118 permit 65000:1 0:22 0:118 ip community-list standard 1_23_117 permit 65000:1 0:23 0:117 ip community-list standard 1_24_116 permit 65000:1 0:24 0:116 ip community-list standard 1_25_115 permit 65000:1 0:25 0:115 ip community-list standard 1_26_114 permit 65000:1 0:26 0:114 ip community-list standard 1_27_113 permit 65000:1 0:27 0:113 ip community-list standard 1_28_112 permit 65000:1 0:28 0:112 ip community-list standard 1_29_111 permit 65000:1 0:29 0:111 ip community-list standard 1_30_110 permit 65000:1 0:30 0:110 ip community-list standard 1_31_109 permit 65000:1 0:31 0:109 ip community-list standard 1_32_108 permit 65000:1 0:32 0:108 ip community-list standard 1_33_107 permit 65000:1 0:33 0:107 ip community-list standard 1_34_106 permit 65000:1 0:34 0:106 ip community-list standard 1_35_105 permit 65000:1 0:35 0:105 ip community-list standard 1_36_104 permit 65000:1 0:36 0:104 ip community-list standard 1_37_103 permit 65000:1 0:37 0:103 ip community-list standard 1_38_102 permit 65000:1 0:38 0:102 ip community-list standard 1_39_101 permit 65000:1 0:39 0:101 ip community-list standard 1_40_100 permit 65000:1 0:40 0:100 ip community-list standard 1_41_99 permit 65000:1 0:41 0:99 ip community-list standard 1_42_98 permit 65000:1 0:42 0:98 ip community-list standard 1_43_97 permit 65000:1 0:43 0:97 ip community-list standard 1_44_96 permit 65000:1 0:44 0:96 ip community-list standard 1_45_95 permit 65000:1 0:45 0:95 ip community-list standard 1_46_94 permit 65000:1 0:46 0:94 ip community-list standard 1_47_93 permit 65000:1 0:47 0:93 ip community-list standard 1_48_92 permit 65000:1 0:48 0:92 ip community-list standard 1_49_91 permit 65000:1 0:49 0:91 ip community-list standard 1_50_90 permit 65000:1 0:50 0:90 ip community-list standard 1_51_89 permit 65000:1 0:51 0:89 ip community-list standard 1_52_88 permit 65000:1 0:52 0:88 ip community-list standard 1_53_87 permit 65000:1 0:53 0:87 ip community-list standard 1_54_86 permit 65000:1 0:54 0:86 ip community-list standard 1_55_85 permit 65000:1 0:55 0:85 ip community-list standard 1_56_84 permit 65000:1 0:56 0:84 ip community-list standard 1_57_83 permit 65000:1 0:57 0:83 ip community-list standard 1_58_82 permit 65000:1 0:58 0:82 ip community-list standard 1_59_81 permit 65000:1 0:59 0:81 ip community-list standard 1_60_80 permit 65000:1 0:60 0:80 ip community-list standard 1_61_79 permit 65000:1 0:61 0:79 ip community-list standard 1_62_78 permit 65000:1 0:62 0:78 ip community-list standard 1_63_77 permit 65000:1 0:63 0:77 ip community-list standard 1_64_76 permit 65000:1 0:64 0:76 ip community-list standard 1_65_75 permit 65000:1 0:65 0:75 ip community-list standard 1_66_74 permit 65000:1 0:66 0:74 ip community-list standard 1_67_73 permit 65000:1 0:67 0:73 ip community-list standard 1_68_72 permit 65000:1 0:68 0:72 ip community-list standard 1_69_71 permit 65000:1 0:69 0:71 ip community-list standard 1_70_70 permit 65000:1 0:70 0:70 ip community-list expanded c140 permit 1 ^65000:4_0:140_0:1$ ip community-list expanded c140 permit 2 ^65000:3_0:141_0:1$ ip community-list expanded c140 permit 3 ^65000:3_0:142_0:2$ ip community-list expanded c140 permit 4 ^65000:3_0:143_0:3$ ip community-list expanded c140 permit 5 ^65000:3_0:144_0:4$ ip community-list expanded c140 permit 6 ^65000:3_0:145_0:5$ ip community-list expanded c140 permit 7 ^65000:3_0:146_0:6$ ip community-list expanded c140 permit 8 ^65000:3_0:147_0:7$ ip community-list expanded c140 permit 9 ^65000:3_0:148_0:8$ ip community-list expanded c140 permit 10 ^65000:3_0:149_0:9$ ip community-list expanded c140 permit 11 ^65000:3_0:150_0:10$ ip community-list expanded c140 permit 12 ^65000:3_0:151_0:11$ ip community-list expanded c140 permit 13 ^65000:3_0:152_0:12$ ip community-list expanded c140 permit 14 ^65000:3_0:153_0:13$ ip community-list expanded c140 permit 15 ^65000:3_0:154_0:14$ ip community-list expanded c140 permit 16 ^65000:3_0:155_0:15$ ip community-list expanded c140 permit 17 ^65000:3_0:156_0:16$ ip community-list expanded c140 permit 18 ^65000:3_0:157_0:17$ ip community-list expanded c140 permit 19 ^65000:3_0:158_0:18$ ip community-list expanded c140 permit 20 ^65000:3_0:159_0:19$ ip community-list expanded c140 permit 21 ^65000:3_0:160_0:20$ ip community-list expanded c140 permit 22 ^65000:3_0:161_0:21$ ip community-list expanded c140 permit 23 ^65000:3_0:162_0:22$ ip community-list expanded c140 permit 24 ^65000:3_0:163_0:23$ ip community-list expanded c140 permit 25 ^65000:3_0:164_0:24$ ip community-list expanded c140 permit 26 ^65000:3_0:165_0:25$ ip community-list expanded c140 permit 27 ^65000:3_0:166_0:26$ ip community-list expanded c140 permit 28 ^65000:3_0:167_0:27$ ip community-list expanded c140 permit 29 ^65000:3_0:168_0:28$ ip community-list expanded c140 permit 30 ^65000:3_0:169_0:29$ ip community-list expanded c140 permit 31 ^65000:3_0:170_0:30$ ip community-list expanded c140 permit 32 ^65000:3_0:171_0:31$ ip community-list expanded c140 permit 33 ^65000:3_0:172_0:32$ ip community-list expanded c140 permit 34 ^65000:3_0:173_0:33$ ip community-list expanded c140 permit 35 ^65000:3_0:174_0:34$ ip community-list expanded c140 permit 36 ^65000:3_0:175_0:35$ ip community-list expanded c140 permit 37 ^65000:3_0:176_0:36$ ip community-list expanded c140 permit 38 ^65000:3_0:177_0:37$ ip community-list expanded c140 permit 39 ^65000:3_0:178_0:38$ ip community-list expanded c140 permit 40 ^65000:3_0:179_0:39$ ip community-list expanded c140 permit 41 ^65000:3_0:180_0:40$ ip community-list expanded c140 permit 42 ^65000:3_0:181_0:41$ ip community-list expanded c140 permit 43 ^65000:3_0:182_0:42$ ip community-list expanded c140 permit 44 ^65000:3_0:183_0:43$ ip community-list expanded c140 permit 45 ^65000:3_0:184_0:44$ ip community-list expanded c140 permit 46 ^65000:3_0:185_0:45$ ip community-list expanded c140 permit 47 ^65000:3_0:186_0:46$ ip community-list expanded c140 permit 48 ^65000:3_0:187_0:47$ ip community-list expanded c140 permit 49 ^65000:3_0:188_0:48$ ip community-list expanded c140 permit 50 ^65000:3_0:189_0:49$ ip community-list expanded c140 permit 51 ^65000:3_0:190_0:50$ ip community-list expanded c140 permit 52 ^65000:3_0:191_0:51$ ip community-list expanded c140 permit 53 ^65000:3_0:192_0:52$ ip community-list expanded c140 permit 54 ^65000:3_0:193_0:53$ ip community-list expanded c140 permit 55 ^65000:3_0:194_0:54$ ip community-list expanded c140 permit 56 ^65000:3_0:195_0:55$ ip community-list expanded c140 permit 57 ^65000:3_0:196_0:56$ ip community-list expanded c140 permit 58 ^65000:3_0:197_0:57$ ip community-list expanded c140 permit 59 ^65000:3_0:198_0:58$ ip community-list expanded c140 permit 60 ^65000:3_0:199_0:59$ ip community-list expanded c140 permit 61 ^65000:3_0:200_0:60$ ip community-list expanded c140 permit 62 ^65000:3_0:201_0:61$ ip community-list expanded c140 permit 63 ^65000:3_0:202_0:62$ ip community-list expanded c140 permit 64 ^65000:3_0:203_0:63$ ip community-list expanded c140 permit 65 ^65000:3_0:204_0:64$ ip community-list expanded c140 permit 66 ^65000:3_0:205_0:65$ ip community-list expanded c140 permit 67 ^65000:3_0:206_0:66$ ip community-list expanded c140 permit 68 ^65000:3_0:207_0:67$ ip community-list expanded c140 permit 69 ^65000:3_0:208_0:68$ ip community-list expanded c140 permit 70 ^65000:3_0:209_0:69$ ip community-list expanded c140 permit 71 ^65000:3_0:210_0:70$ ip community-list expanded c140 permit 72 ^65000:3_0:211_0:71$ ip community-list expanded c140 permit 73 ^65000:3_0:212_0:72$ ip community-list expanded c140 permit 74 ^65000:3_0:213_0:73$ ip community-list expanded c140 permit 75 ^65000:3_0:214_0:74$ ip community-list expanded c140 permit 76 ^65000:3_0:215_0:75$ ip community-list expanded c140 permit 77 ^65000:3_0:216_0:76$ ip community-list expanded c140 permit 78 ^65000:3_0:217_0:77$ ip community-list expanded c140 permit 79 ^65000:3_0:218_0:78$ ip community-list expanded c140 permit 80 ^65000:3_0:219_0:79$ ip community-list expanded c140 permit 81 ^65000:3_0:220_0:80$ ip community-list expanded c140 permit 82 ^65000:3_0:221_0:81$ ip community-list expanded c140 permit 83 ^65000:3_0:222_0:82$ ip community-list expanded c140 permit 84 ^65000:3_0:223_0:83$ ip community-list expanded c140 permit 85 ^65000:3_0:224_0:84$ ip community-list expanded c140 permit 86 ^65000:3_0:225_0:85$ ip community-list expanded c140 permit 87 ^65000:3_0:226_0:86$ ip community-list expanded c140 permit 88 ^65000:3_0:227_0:87$ ip community-list expanded c140 permit 89 ^65000:3_0:228_0:88$ ip community-list expanded c140 permit 90 ^65000:3_0:229_0:89$ ip community-list expanded c140 permit 91 ^65000:3_0:230_0:90$ ip community-list expanded c140 permit 92 ^65000:3_0:231_0:91$ ip community-list expanded c140 permit 93 ^65000:3_0:232_0:92$ ip community-list expanded c140 permit 94 ^65000:3_0:233_0:93$ ip community-list expanded c140 permit 95 ^65000:3_0:234_0:94$ ip community-list expanded c140 permit 96 ^65000:3_0:235_0:95$ ip community-list expanded c140 permit 97 ^65000:3_0:236_0:96$ ip community-list expanded c140 permit 98 ^65000:3_0:237_0:97$ ip community-list expanded c140 permit 99 ^65000:3_0:238_0:98$ ip community-list expanded c140 permit 100 ^65000:3_0:239_0:99$ ip community-list expanded c140 permit 101 ^65000:3_0:240_0:100$ ip community-list expanded c140 permit 102 ^65000:3_0:241_0:101$ ip community-list expanded c140 permit 103 ^65000:3_0:242_0:102$ ip community-list expanded c140 permit 104 ^65000:3_0:243_0:103$ ip community-list expanded c140 permit 105 ^65000:3_0:244_0:104$ ip community-list expanded c140 permit 106 ^65000:3_0:245_0:105$ ip community-list expanded c140 permit 107 ^65000:3_0:246_0:106$ ip community-list expanded c140 permit 108 ^65000:3_0:247_0:107$ ip community-list expanded c140 permit 109 ^65000:3_0:248_0:108$ ip community-list expanded c140 permit 110 ^65000:3_0:249_0:109$ ip community-list expanded c140 permit 111 ^65000:3_0:250_0:110$ ip community-list expanded c140 permit 112 ^65000:3_0:251_0:111$ ip community-list expanded c140 permit 113 ^65000:3_0:252_0:112$ ip community-list expanded c140 permit 114 ^65000:3_0:253_0:113$ ip community-list expanded c140 permit 115 ^65000:3_0:254_0:114$ ip community-list expanded c140 permit 116 ^65000:3_0:255_0:115$ ip community-list expanded c140 permit 117 ^65000:3_0:256_0:116$ route-map calculator permit 28401 match community 1_1_139 2_1_140 2_2_70 1_2_138 1_3_137 set community 0:140 route-map calculator permit 28402 match community 2_4_35 1_4_136 2_5_28 1_5_135 1_6_134 set community 0:140 route-map calculator permit 28403 match community 2_7_20 1_7_133 1_8_132 1_9_131 2_10_14 set community 0:140 route-map calculator permit 28404 match community 1_10_130 1_11_129 1_12_128 1_13_127 1_14_126 set community 0:140 route-map calculator permit 28405 match community 1_15_125 1_16_124 1_17_123 1_18_122 1_19_121 set community 0:140 route-map calculator permit 28406 match community 1_20_120 1_21_119 1_22_118 1_23_117 1_24_116 set community 0:140 route-map calculator permit 28407 match community 1_25_115 1_26_114 1_27_113 1_28_112 1_29_111 set community 0:140 route-map calculator permit 28408 match community 1_30_110 1_31_109 1_32_108 1_33_107 1_34_106 set community 0:140 route-map calculator permit 28409 match community 1_35_105 1_36_104 1_37_103 1_38_102 1_39_101 set community 0:140 route-map calculator permit 28410 match community 1_40_100 1_41_99 1_42_98 1_43_97 1_44_96 set community 0:140 route-map calculator permit 28411 match community 1_45_95 1_46_94 1_47_93 1_48_92 1_49_91 set community 0:140 route-map calculator permit 28412 match community 1_50_90 1_51_89 1_52_88 1_53_87 1_54_86 set community 0:140 route-map calculator permit 28413 match community 1_55_85 1_56_84 1_57_83 1_58_82 1_59_81 set community 0:140 route-map calculator permit 28414 match community 1_60_80 1_61_79 1_62_78 1_63_77 1_64_76 set community 0:140 route-map calculator permit 28415 match community 1_65_75 1_66_74 1_67_73 1_68_72 1_69_71 set community 0:140 route-map calculator permit 28416 match community 1_70_70 c4_140_1 c3_141_1 c3_142_2 c3_143_3 set community 0:140 route-map calculator permit 28417 match community c3_144_4 c3_145_5 c3_146_6 c3_147_7 c3_148_8 set community 0:140 route-map calculator permit 28418 match community c3_149_9 c3_150_10 c3_151_11 c3_152_12 c3_153_13 set community 0:140 route-map calculator permit 28419 match community c3_154_14 c3_155_15 c3_156_16 c3_157_17 c3_158_18 set community 0:140 route-map calculator permit 28420 match community c3_159_19 c3_160_20 c3_161_21 c3_162_22 c3_163_23 set community 0:140 route-map calculator permit 28421 match community c3_164_24 c3_165_25 c3_166_26 c3_167_27 c3_168_28 set community 0:140 route-map calculator permit 28422 match community c3_169_29 c3_170_30 c3_171_31 c3_172_32 c3_173_33 set community 0:140 route-map calculator permit 28423 match community c3_174_34 c3_175_35 c3_176_36 c3_177_37 c3_178_38 set community 0:140 route-map calculator permit 28424 match community c3_179_39 c3_180_40 c3_181_41 c3_182_42 c3_183_43 set community 0:140 route-map calculator permit 28425 match community c3_184_44 c3_185_45 c3_186_46 c3_187_47 c3_188_48 set community 0:140 route-map calculator permit 28426 match community c3_189_49 c3_190_50 c3_191_51 c3_192_52 c3_193_53 set community 0:140 route-map calculator permit 28427 match community c3_194_54 c3_195_55 c3_196_56 c3_197_57 c3_198_58 set community 0:140 route-map calculator permit 28428 match community c3_199_59 c3_200_60 c3_201_61 c3_202_62 c3_203_63 set community 0:140 route-map calculator permit 28429 match community c3_204_64 c3_205_65 c3_206_66 c3_207_67 c3_208_68 set community 0:140 route-map calculator permit 28430 match community c3_209_69 c3_210_70 c3_211_71 c3_212_72 c3_213_73 set community 0:140 route-map calculator permit 28431 match community c3_214_74 c3_215_75 c3_216_76 c3_217_77 c3_218_78 set community 0:140 route-map calculator permit 28432 match community c3_219_79 c3_220_80 c3_221_81 c3_222_82 c3_223_83 set community 0:140 route-map calculator permit 28433 match community c3_224_84 c3_225_85 c3_226_86 c3_227_87 c3_228_88 set community 0:140 route-map calculator permit 28434 match community c3_229_89 c3_230_90 c3_231_91 c3_232_92 c3_233_93 set community 0:140 route-map calculator permit 28435 match community c3_234_94 c3_235_95 c3_236_96 c3_237_97 c3_238_98 set community 0:140 route-map calculator permit 28436 match community c3_239_99 c3_240_100 c3_241_101 c3_242_102 c3_243_103 set community 0:140 route-map calculator permit 28437 match community c3_244_104 c3_245_105 c3_246_106 c3_247_107 c3_248_108 set community 0:140 route-map calculator permit 28438 match community c3_249_109 c3_250_110 c3_251_111 c3_252_112 c3_253_113 set community 0:140 route-map calculator permit 28439 match community c3_254_114 c3_255_115 c3_256_116 set community 0:140 ip community-list standard 2_145_171 permit 65000:2 0:145 0:171 route-map calculator permit 28440 match community 2_145_171 set community 0:24795 ip community-list standard 2_137_225 permit 65000:2 0:137 0:225 route-map calculator permit 28441 match community 2_137_225 set community 0:30825 ip community-list standard 2_27_217 permit 65000:2 0:27 0:217 ip community-list standard 2_31_189 permit 65000:2 0:31 0:189 ip community-list standard 2_63_93 permit 65000:2 0:63 0:93 route-map calculator permit 28442 match community 2_27_217 2_31_189 2_63_93 set community 0:5859 ip community-list standard 2_231_238 permit 65000:2 0:231 0:238 route-map calculator permit 28443 match community 2_231_238 set community 0:54978 ip community-list standard 2_137_183 permit 65000:2 0:137 0:183 route-map calculator permit 28444 match community 2_137_183 set community 0:25071 ip community-list standard 2_106_171 permit 65000:2 0:106 0:171 ip community-list standard 2_114_159 permit 65000:2 0:114 0:159 route-map calculator permit 28445 match community 2_106_171 2_114_159 set community 0:18126 ip community-list standard 2_197_228 permit 65000:2 0:197 0:228 route-map calculator permit 28446 match community 2_197_228 set community 0:44916 ip community-list standard 2_124_227 permit 65000:2 0:124 0:227 route-map calculator permit 28447 match community 2_124_227 set community 0:28148 ip community-list standard 2_79_127 permit 65000:2 0:79 0:127 route-map calculator permit 28448 match community 2_79_127 set community 0:10033 ip community-list standard 2_38_246 permit 65000:2 0:38 0:246 ip community-list standard 2_41_228 permit 65000:2 0:41 0:228 ip community-list standard 2_57_164 permit 65000:2 0:57 0:164 ip community-list standard 2_76_123 permit 65000:2 0:76 0:123 ip community-list standard 2_82_114 permit 65000:2 0:82 0:114 route-map calculator permit 28449 match community 2_38_246 2_41_228 2_57_164 2_76_123 2_82_114 set community 0:9348 ip community-list standard 2_89_193 permit 65000:2 0:89 0:193 route-map calculator permit 28450 match community 2_89_193 set community 0:17177 ip community-list standard 2_89_229 permit 65000:2 0:89 0:229 route-map calculator permit 28451 match community 2_89_229 set community 0:20381 ip community-list standard 2_159_235 permit 65000:2 0:159 0:235 route-map calculator permit 28452 match community 2_159_235 set community 0:37365 ip community-list standard 2_29_143 permit 65000:2 0:29 0:143 route-map calculator permit 28453 match community 2_29_143 set community 0:4147 ip community-list standard 2_14_238 permit 65000:2 0:14 0:238 ip community-list standard 2_17_196 permit 65000:2 0:17 0:196 ip community-list standard 2_28_119 permit 65000:2 0:28 0:119 ip community-list standard 2_34_98 permit 65000:2 0:34 0:98 ip community-list standard 2_49_68 permit 65000:2 0:49 0:68 route-map calculator permit 28454 match community 2_14_238 2_17_196 2_28_119 2_34_98 2_49_68 set community 0:3332 ip community-list standard 2_83_133 permit 65000:2 0:83 0:133 route-map calculator permit 28455 match community 2_83_133 set community 0:11039 ip community-list standard 2_139_233 permit 65000:2 0:139 0:233 route-map calculator permit 28456 match community 2_139_233 set community 0:32387 ip community-list standard 2_190_248 permit 65000:2 0:190 0:248 route-map calculator permit 28457 match community 2_190_248 set community 0:47120 ip community-list standard 2_62_238 permit 65000:2 0:62 0:238 ip community-list standard 2_68_217 permit 65000:2 0:68 0:217 ip community-list standard 2_119_124 permit 65000:2 0:119 0:124 route-map calculator permit 28458 match community 2_62_238 2_68_217 2_119_124 set community 0:14756 ip community-list standard 2_187_228 permit 65000:2 0:187 0:228 ip community-list standard 2_204_209 permit 65000:2 0:204 0:209 route-map calculator permit 28459 match community 2_187_228 2_204_209 set community 0:42636 ip community-list standard 2_123_254 permit 65000:2 0:123 0:254 ip community-list standard 2_127_246 permit 65000:2 0:127 0:246 route-map calculator permit 28460 match community 2_123_254 2_127_246 set community 0:31242 ip community-list standard 2_137_169 permit 65000:2 0:137 0:169 route-map calculator permit 28461 match community 2_137_169 set community 0:23153 ip community-list standard 2_23_250 permit 65000:2 0:23 0:250 ip community-list standard 2_25_230 permit 65000:2 0:25 0:230 ip community-list standard 2_46_125 permit 65000:2 0:46 0:125 ip community-list standard 2_50_115 permit 65000:2 0:50 0:115 route-map calculator permit 28462 match community 2_23_250 2_25_230 2_46_125 2_50_115 set community 0:5750 ip community-list standard 2_189_197 permit 65000:2 0:189 0:197 route-map calculator permit 28463 match community 2_189_197 set community 0:37233 ip community-list standard 2_178_248 permit 65000:2 0:178 0:248 route-map calculator permit 28464 match community 2_178_248 set community 0:44144 ip community-list standard 2_31_179 permit 65000:2 0:31 0:179 route-map calculator permit 28465 match community 2_31_179 set community 0:5549 ip community-list standard 2_103_221 permit 65000:2 0:103 0:221 route-map calculator permit 28466 match community 2_103_221 set community 0:22763 ip community-list standard 2_75_241 permit 65000:2 0:75 0:241 route-map calculator permit 28467 match community 2_75_241 set community 0:18075 ip community-list standard 2_85_211 permit 65000:2 0:85 0:211 route-map calculator permit 28468 match community 2_85_211 set community 0:17935 ip community-list standard 2_202_210 permit 65000:2 0:202 0:210 route-map calculator permit 28469 match community 2_202_210 set community 0:42420 ip community-list standard 2_206_212 permit 65000:2 0:206 0:212 route-map calculator permit 28470 match community 2_206_212 set community 0:43672 ip community-list standard 2_67_255 permit 65000:2 0:67 0:255 ip community-list standard 2_85_201 permit 65000:2 0:85 0:201 route-map calculator permit 28471 match community 2_67_255 2_85_201 set community 0:17085 ip community-list standard 2_148_194 permit 65000:2 0:148 0:194 route-map calculator permit 28472 match community 2_148_194 set community 0:28712 ip community-list standard 2_33_206 permit 65000:2 0:33 0:206 ip community-list standard 2_66_103 permit 65000:2 0:66 0:103 route-map calculator permit 28473 match community 2_33_206 2_66_103 set community 0:6798 ip community-list standard 2_96_202 permit 65000:2 0:96 0:202 ip community-list standard 2_101_192 permit 65000:2 0:101 0:192 route-map calculator permit 28474 match community 2_96_202 2_101_192 set community 0:19392 ip community-list standard 2_210_218 permit 65000:2 0:210 0:218 route-map calculator permit 28475 match community 2_210_218 set community 0:45780 ip community-list standard 2_115_254 permit 65000:2 0:115 0:254 ip community-list standard 2_127_230 permit 65000:2 0:127 0:230 route-map calculator permit 28476 match community 2_115_254 2_127_230 set community 0:29210 ip community-list standard 2_53_157 permit 65000:2 0:53 0:157 route-map calculator permit 28477 match community 2_53_157 set community 0:8321 ip community-list standard 2_65_115 permit 65000:2 0:65 0:115 route-map calculator permit 28478 match community 2_65_115 set community 0:7475 ip community-list standard 2_64_157 permit 65000:2 0:64 0:157 route-map calculator permit 28479 match community 2_64_157 set community 0:10048 ip community-list standard 2_71_73 permit 65000:2 0:71 0:73 route-map calculator permit 28480 match community 2_71_73 set community 0:5183 ip community-list standard 2_35_255 permit 65000:2 0:35 0:255 ip community-list standard 2_51_175 permit 65000:2 0:51 0:175 ip community-list standard 2_75_119 permit 65000:2 0:75 0:119 ip community-list standard 2_85_105 permit 65000:2 0:85 0:105 route-map calculator permit 28481 match community 2_35_255 2_51_175 2_75_119 2_85_105 set community 0:8925 ip community-list standard 2_7_194 permit 65000:2 0:7 0:194 ip community-list standard 2_14_97 permit 65000:2 0:14 0:97 route-map calculator permit 28482 match community 2_7_194 2_14_97 set community 0:1358 ip community-list standard 2_134_152 permit 65000:2 0:134 0:152 route-map calculator permit 28483 match community 2_134_152 set community 0:20368 ip community-list standard 2_180_214 permit 65000:2 0:180 0:214 route-map calculator permit 28484 match community 2_180_214 set community 0:38520 ip community-list standard 2_17_138 permit 65000:2 0:17 0:138 ip community-list standard 2_23_102 permit 65000:2 0:23 0:102 ip community-list standard 2_34_69 permit 65000:2 0:34 0:69 ip community-list standard 2_46_51 permit 65000:2 0:46 0:51 route-map calculator permit 28485 match community 2_17_138 2_23_102 2_34_69 2_46_51 set community 0:2346 ip community-list standard 2_214_236 permit 65000:2 0:214 0:236 route-map calculator permit 28486 match community 2_214_236 set community 0:50504 ip community-list standard 2_89_241 permit 65000:2 0:89 0:241 route-map calculator permit 28487 match community 2_89_241 set community 0:21449 ip community-list standard 2_65_248 permit 65000:2 0:65 0:248 ip community-list standard 2_104_155 permit 65000:2 0:104 0:155 ip community-list standard 2_124_130 permit 65000:2 0:124 0:130 route-map calculator permit 28488 match community 2_65_248 2_104_155 2_124_130 set community 0:16120 ip community-list standard 2_104_149 permit 65000:2 0:104 0:149 route-map calculator permit 28489 match community 2_104_149 set community 0:15496 ip community-list standard 2_255_255 permit 65000:2 0:255 0:255 route-map calculator permit 28490 match community 2_255_255 set community 0:65025 ip community-list standard 2_141_163 permit 65000:2 0:141 0:163 route-map calculator permit 28491 match community 2_141_163 set community 0:22983 ip community-list standard 2_158_252 permit 65000:2 0:158 0:252 ip community-list standard 2_168_237 permit 65000:2 0:168 0:237 route-map calculator permit 28492 match community 2_158_252 2_168_237 set community 0:39816 ip community-list standard 2_224_255 permit 65000:2 0:224 0:255 ip community-list standard 2_238_240 permit 65000:2 0:238 0:240 route-map calculator permit 28493 match community 2_224_255 2_238_240 set community 0:57120 ip community-list standard 2_68_254 permit 65000:2 0:68 0:254 ip community-list standard 2_127_136 permit 65000:2 0:127 0:136 route-map calculator permit 28494 match community 2_68_254 2_127_136 set community 0:17272 ip community-list standard 2_82_182 permit 65000:2 0:82 0:182 ip community-list standard 2_91_164 permit 65000:2 0:91 0:164 route-map calculator permit 28495 match community 2_82_182 2_91_164 set community 0:14924 ip community-list standard 2_66_225 permit 65000:2 0:66 0:225 ip community-list standard 2_75_198 permit 65000:2 0:75 0:198 ip community-list standard 2_90_165 permit 65000:2 0:90 0:165 ip community-list standard 2_99_150 permit 65000:2 0:99 0:150 ip community-list standard 2_110_135 permit 65000:2 0:110 0:135 route-map calculator permit 28496 match community 2_66_225 2_75_198 2_90_165 2_99_150 2_110_135 set community 0:14850 ip community-list standard 2_21_242 permit 65000:2 0:21 0:242 ip community-list standard 2_22_231 permit 65000:2 0:22 0:231 ip community-list standard 2_33_154 permit 65000:2 0:33 0:154 ip community-list standard 2_42_121 permit 65000:2 0:42 0:121 ip community-list standard 2_66_77 permit 65000:2 0:66 0:77 route-map calculator permit 28497 match community 2_21_242 2_22_231 2_33_154 2_42_121 2_66_77 set community 0:5082 ip community-list standard 2_58_241 permit 65000:2 0:58 0:241 route-map calculator permit 28498 match community 2_58_241 set community 0:13978 ip community-list standard 2_232_242 permit 65000:2 0:232 0:242 route-map calculator permit 28499 match community 2_232_242 set community 0:56144 ip community-list standard 2_104_252 permit 65000:2 0:104 0:252 ip community-list standard 2_112_234 permit 65000:2 0:112 0:234 ip community-list standard 2_117_224 permit 65000:2 0:117 0:224 ip community-list standard 2_126_208 permit 65000:2 0:126 0:208 ip community-list standard 2_144_182 permit 65000:2 0:144 0:182 ip community-list standard 2_156_168 permit 65000:2 0:156 0:168 route-map calculator permit 28500 match community 2_104_252 2_112_234 2_117_224 2_126_208 2_144_182 set community 0:26208 route-map calculator permit 28501 match community 2_156_168 set community 0:26208 ip community-list standard 2_99_167 permit 65000:2 0:99 0:167 route-map calculator permit 28502 match community 2_99_167 set community 0:16533 ip community-list standard 2_184_240 permit 65000:2 0:184 0:240 ip community-list standard 2_192_230 permit 65000:2 0:192 0:230 route-map calculator permit 28503 match community 2_184_240 2_192_230 set community 0:44160 ip community-list standard 2_130_249 permit 65000:2 0:130 0:249 ip community-list standard 2_166_195 permit 65000:2 0:166 0:195 route-map calculator permit 28504 match community 2_130_249 2_166_195 set community 0:32370 ip community-list standard 2_85_155 permit 65000:2 0:85 0:155 route-map calculator permit 28505 match community 2_85_155 set community 0:13175 ip community-list standard 2_143_206 permit 65000:2 0:143 0:206 route-map calculator permit 28506 match community 2_143_206 set community 0:29458 ip community-list standard 2_179_229 permit 65000:2 0:179 0:229 route-map calculator permit 28507 match community 2_179_229 set community 0:40991 ip community-list standard 2_36_243 permit 65000:2 0:36 0:243 ip community-list standard 2_54_162 permit 65000:2 0:54 0:162 ip community-list standard 2_81_108 permit 65000:2 0:81 0:108 route-map calculator permit 28508 match community 2_36_243 2_54_162 2_81_108 set community 0:8748 ip community-list standard 2_139_212 permit 65000:2 0:139 0:212 route-map calculator permit 28509 match community 2_139_212 set community 0:29468 ip community-list standard 2_98_173 permit 65000:2 0:98 0:173 route-map calculator permit 28510 match community 2_98_173 set community 0:16954 ip community-list standard 2_85_89 permit 65000:2 0:85 0:89 route-map calculator permit 28511 match community 2_85_89 set community 0:7565 ip community-list standard 2_114_252 permit 65000:2 0:114 0:252 ip community-list standard 2_126_228 permit 65000:2 0:126 0:228 ip community-list standard 2_133_216 permit 65000:2 0:133 0:216 ip community-list standard 2_152_189 permit 65000:2 0:152 0:189 ip community-list standard 2_168_171 permit 65000:2 0:168 0:171 route-map calculator permit 28512 match community 2_114_252 2_126_228 2_133_216 2_152_189 2_168_171 set community 0:28728 ip community-list standard 2_14_255 permit 65000:2 0:14 0:255 ip community-list standard 2_15_238 permit 65000:2 0:15 0:238 ip community-list standard 2_17_210 permit 65000:2 0:17 0:210 ip community-list standard 2_21_170 permit 65000:2 0:21 0:170 ip community-list standard 2_30_119 permit 65000:2 0:30 0:119 ip community-list standard 2_34_105 permit 65000:2 0:34 0:105 ip community-list standard 2_35_102 permit 65000:2 0:35 0:102 ip community-list standard 2_42_85 permit 65000:2 0:42 0:85 ip community-list standard 2_51_70 permit 65000:2 0:51 0:70 route-map calculator permit 28513 match community 2_14_255 2_15_238 2_17_210 2_21_170 2_30_119 set community 0:3570 route-map calculator permit 28514 match community 2_34_105 2_35_102 2_42_85 2_51_70 set community 0:3570 ip community-list standard 2_53_243 permit 65000:2 0:53 0:243 ip community-list standard 2_81_159 permit 65000:2 0:81 0:159 route-map calculator permit 28515 match community 2_53_243 2_81_159 set community 0:12879 ip community-list standard 2_49_233 permit 65000:2 0:49 0:233 route-map calculator permit 28516 match community 2_49_233 set community 0:11417 ip community-list standard 2_222_254 permit 65000:2 0:222 0:254 route-map calculator permit 28517 match community 2_222_254 set community 0:56388 ip community-list standard 2_67_179 permit 65000:2 0:67 0:179 route-map calculator permit 28518 match community 2_67_179 set community 0:11993 ip community-list standard 2_230_235 permit 65000:2 0:230 0:235 route-map calculator permit 28519 match community 2_230_235 set community 0:54050 ip community-list standard 2_67_223 permit 65000:2 0:67 0:223 route-map calculator permit 28520 match community 2_67_223 set community 0:14941 ip community-list standard 2_244_253 permit 65000:2 0:244 0:253 route-map calculator permit 28521 match community 2_244_253 set community 0:61732 ip community-list standard 2_156_218 permit 65000:2 0:156 0:218 route-map calculator permit 28522 match community 2_156_218 set community 0:34008 ip community-list standard 2_159_218 permit 65000:2 0:159 0:218 route-map calculator permit 28523 match community 2_159_218 set community 0:34662 ip community-list standard 2_158_238 permit 65000:2 0:158 0:238 route-map calculator permit 28524 match community 2_158_238 set community 0:37604 ip community-list standard 2_211_240 permit 65000:2 0:211 0:240 route-map calculator permit 28525 match community 2_211_240 set community 0:50640 ip community-list standard 2_129_179 permit 65000:2 0:129 0:179 route-map calculator permit 28526 match community 2_129_179 set community 0:23091 ip community-list standard 2_25_249 permit 65000:2 0:25 0:249 ip community-list standard 2_75_83 permit 65000:2 0:75 0:83 route-map calculator permit 28527 match community 2_25_249 2_75_83 set community 0:6225 ip community-list standard 2_133_134 permit 65000:2 0:133 0:134 route-map calculator permit 28528 match community 2_133_134 set community 0:17822 ip community-list standard 2_109_123 permit 65000:2 0:109 0:123 route-map calculator permit 28529 match community 2_109_123 set community 0:13407 ip community-list standard 2_69_172 permit 65000:2 0:69 0:172 ip community-list standard 2_86_138 permit 65000:2 0:86 0:138 ip community-list standard 2_92_129 permit 65000:2 0:92 0:129 route-map calculator permit 28530 match community 2_69_172 2_86_138 2_92_129 set community 0:11868 ip community-list standard 2_64_202 permit 65000:2 0:64 0:202 ip community-list standard 2_101_128 permit 65000:2 0:101 0:128 route-map calculator permit 28531 match community 2_64_202 2_101_128 set community 0:12928 ip community-list standard 2_49_207 permit 65000:2 0:49 0:207 ip community-list standard 2_63_161 permit 65000:2 0:63 0:161 ip community-list standard 2_69_147 permit 65000:2 0:69 0:147 route-map calculator permit 28532 match community 2_49_207 2_63_161 2_69_147 set community 0:10143 ip community-list standard 2_6_159 permit 65000:2 0:6 0:159 ip community-list standard 2_9_106 permit 65000:2 0:9 0:106 ip community-list standard 2_18_53 permit 65000:2 0:18 0:53 route-map calculator permit 28533 match community 2_6_159 2_9_106 2_18_53 set community 0:954 ip community-list standard 2_7_59 permit 65000:2 0:7 0:59 ip community-list standard 1_157_256 permit 65000:1 0:157 0:256 ip community-list standard 1_158_255 permit 65000:1 0:158 0:255 ip community-list standard 1_159_254 permit 65000:1 0:159 0:254 ip community-list standard 1_160_253 permit 65000:1 0:160 0:253 ip community-list standard 1_161_252 permit 65000:1 0:161 0:252 ip community-list standard 1_162_251 permit 65000:1 0:162 0:251 ip community-list standard 1_163_250 permit 65000:1 0:163 0:250 ip community-list standard 1_164_249 permit 65000:1 0:164 0:249 ip community-list standard 1_165_248 permit 65000:1 0:165 0:248 ip community-list standard 1_166_247 permit 65000:1 0:166 0:247 ip community-list standard 1_167_246 permit 65000:1 0:167 0:246 ip community-list standard 1_168_245 permit 65000:1 0:168 0:245 ip community-list standard 1_169_244 permit 65000:1 0:169 0:244 ip community-list standard 1_170_243 permit 65000:1 0:170 0:243 ip community-list standard 1_171_242 permit 65000:1 0:171 0:242 ip community-list standard 1_172_241 permit 65000:1 0:172 0:241 ip community-list standard 1_173_240 permit 65000:1 0:173 0:240 ip community-list standard 1_174_239 permit 65000:1 0:174 0:239 ip community-list standard 1_175_238 permit 65000:1 0:175 0:238 ip community-list standard 1_176_237 permit 65000:1 0:176 0:237 ip community-list standard 1_177_236 permit 65000:1 0:177 0:236 ip community-list standard 1_178_235 permit 65000:1 0:178 0:235 ip community-list standard 1_179_234 permit 65000:1 0:179 0:234 ip community-list standard 1_180_233 permit 65000:1 0:180 0:233 ip community-list standard 1_181_232 permit 65000:1 0:181 0:232 ip community-list standard 1_182_231 permit 65000:1 0:182 0:231 ip community-list standard 1_183_230 permit 65000:1 0:183 0:230 ip community-list standard 1_184_229 permit 65000:1 0:184 0:229 ip community-list standard 1_185_228 permit 65000:1 0:185 0:228 ip community-list standard 1_186_227 permit 65000:1 0:186 0:227 ip community-list standard 1_187_226 permit 65000:1 0:187 0:226 ip community-list standard 1_188_225 permit 65000:1 0:188 0:225 ip community-list standard 1_189_224 permit 65000:1 0:189 0:224 ip community-list standard 1_190_223 permit 65000:1 0:190 0:223 ip community-list standard 1_191_222 permit 65000:1 0:191 0:222 ip community-list standard 1_192_221 permit 65000:1 0:192 0:221 ip community-list standard 1_193_220 permit 65000:1 0:193 0:220 ip community-list standard 1_194_219 permit 65000:1 0:194 0:219 ip community-list standard 1_195_218 permit 65000:1 0:195 0:218 ip community-list standard 1_196_217 permit 65000:1 0:196 0:217 ip community-list standard 1_197_216 permit 65000:1 0:197 0:216 ip community-list standard 1_198_215 permit 65000:1 0:198 0:215 ip community-list standard 1_199_214 permit 65000:1 0:199 0:214 ip community-list standard 1_200_213 permit 65000:1 0:200 0:213 ip community-list standard 1_201_212 permit 65000:1 0:201 0:212 ip community-list standard 1_202_211 permit 65000:1 0:202 0:211 ip community-list standard 1_203_210 permit 65000:1 0:203 0:210 ip community-list standard 1_204_209 permit 65000:1 0:204 0:209 ip community-list standard 1_205_208 permit 65000:1 0:205 0:208 ip community-list standard 1_206_207 permit 65000:1 0:206 0:207 route-map calculator permit 28534 match community 2_7_59 1_157_256 1_158_255 1_159_254 1_160_253 set community 0:413 route-map calculator permit 28535 match community 1_161_252 1_162_251 1_163_250 1_164_249 1_165_248 set community 0:413 route-map calculator permit 28536 match community 1_166_247 1_167_246 1_168_245 1_169_244 1_170_243 set community 0:413 route-map calculator permit 28537 match community 1_171_242 1_172_241 1_173_240 1_174_239 1_175_238 set community 0:413 route-map calculator permit 28538 match community 1_176_237 1_177_236 1_178_235 1_179_234 1_180_233 set community 0:413 route-map calculator permit 28539 match community 1_181_232 1_182_231 1_183_230 1_184_229 1_185_228 set community 0:413 route-map calculator permit 28540 match community 1_186_227 1_187_226 1_188_225 1_189_224 1_190_223 set community 0:413 route-map calculator permit 28541 match community 1_191_222 1_192_221 1_193_220 1_194_219 1_195_218 set community 0:413 route-map calculator permit 28542 match community 1_196_217 1_197_216 1_198_215 1_199_214 1_200_213 set community 0:413 route-map calculator permit 28543 match community 1_201_212 1_202_211 1_203_210 1_204_209 1_205_208 set community 0:413 route-map calculator permit 28544 match community 1_206_207 set community 0:413 ip community-list standard 2_106_256 permit 65000:2 0:106 0:256 ip community-list standard 2_128_212 permit 65000:2 0:128 0:212 route-map calculator permit 28545 match community 2_106_256 2_128_212 set community 0:27136 ip community-list standard 2_171_222 permit 65000:2 0:171 0:222 route-map calculator permit 28546 match community 2_171_222 set community 0:37962 ip community-list standard 2_245_252 permit 65000:2 0:245 0:252 route-map calculator permit 28547 match community 2_245_252 set community 0:61740 ip community-list standard 2_136_194 permit 65000:2 0:136 0:194 route-map calculator permit 28548 match community 2_136_194 set community 0:26384 ip community-list standard 2_53_185 permit 65000:2 0:53 0:185 route-map calculator permit 28549 match community 2_53_185 set community 0:9805 ip community-list standard 2_142_255 permit 65000:2 0:142 0:255 ip community-list standard 2_170_213 permit 65000:2 0:170 0:213 route-map calculator permit 28550 match community 2_142_255 2_170_213 set community 0:36210 ip community-list standard 2_174_194 permit 65000:2 0:174 0:194 route-map calculator permit 28551 match community 2_174_194 set community 0:33756 ip community-list standard 2_67_167 permit 65000:2 0:67 0:167 route-map calculator permit 28552 match community 2_67_167 set community 0:11189 ip community-list standard 2_156_233 permit 65000:2 0:156 0:233 route-map calculator permit 28553 match community 2_156_233 set community 0:36348 ip community-list standard 2_190_253 permit 65000:2 0:190 0:253 ip community-list standard 2_209_230 permit 65000:2 0:209 0:230 route-map calculator permit 28554 match community 2_190_253 2_209_230 set community 0:48070 ip community-list standard 2_103_231 permit 65000:2 0:103 0:231 route-map calculator permit 28555 match community 2_103_231 set community 0:23793 ip community-list standard 2_141_191 permit 65000:2 0:141 0:191 route-map calculator permit 28556 match community 2_141_191 set community 0:26931 ip community-list standard 2_79_224 permit 65000:2 0:79 0:224 ip community-list standard 2_112_158 permit 65000:2 0:112 0:158 route-map calculator permit 28557 match community 2_79_224 2_112_158 set community 0:17696 ip community-list standard 2_25_173 permit 65000:2 0:25 0:173 route-map calculator permit 28558 match community 2_25_173 set community 0:4325 ip community-list standard 2_134_176 permit 65000:2 0:134 0:176 route-map calculator permit 28559 match community 2_134_176 set community 0:23584 ip community-list standard 2_8_239 permit 65000:2 0:8 0:239 route-map calculator permit 28560 match community 2_8_239 set community 0:1912 ip community-list standard 2_113_183 permit 65000:2 0:113 0:183 route-map calculator permit 28561 match community 2_113_183 set community 0:20679 ip community-list standard 2_73_191 permit 65000:2 0:73 0:191 route-map calculator permit 28562 match community 2_73_191 set community 0:13943 ip community-list standard 2_129_197 permit 65000:2 0:129 0:197 route-map calculator permit 28563 match community 2_129_197 set community 0:25413 ip community-list standard 2_52_195 permit 65000:2 0:52 0:195 ip community-list standard 2_60_169 permit 65000:2 0:60 0:169 ip community-list standard 2_65_156 permit 65000:2 0:65 0:156 ip community-list standard 2_78_130 permit 65000:2 0:78 0:130 route-map calculator permit 28564 match community 2_52_195 2_60_169 2_65_156 2_78_130 set community 0:10140 ip community-list standard 2_165_237 permit 65000:2 0:165 0:237 route-map calculator permit 28565 match community 2_165_237 set community 0:39105 ip community-list standard 2_226_234 permit 65000:2 0:226 0:234 route-map calculator permit 28566 match community 2_226_234 set community 0:52884 ip community-list standard 2_13_106 permit 65000:2 0:13 0:106 ip community-list standard 2_26_53 permit 65000:2 0:26 0:53 route-map calculator permit 28567 match community 2_13_106 2_26_53 set community 0:1378 ip community-list standard 2_24_163 permit 65000:2 0:24 0:163 route-map calculator permit 28568 match community 2_24_163 set community 0:3912 ip community-list standard 1_1_50 permit 65000:1 0:1 0:50 ip community-list standard 2_1_51 permit 65000:2 0:1 0:51 ip community-list standard 1_2_49 permit 65000:1 0:2 0:49 ip community-list standard 2_3_17 permit 65000:2 0:3 0:17 ip community-list standard 1_3_48 permit 65000:1 0:3 0:48 ip community-list standard 1_4_47 permit 65000:1 0:4 0:47 ip community-list standard 1_5_46 permit 65000:1 0:5 0:46 ip community-list standard 1_6_45 permit 65000:1 0:6 0:45 ip community-list standard 1_7_44 permit 65000:1 0:7 0:44 ip community-list standard 1_8_43 permit 65000:1 0:8 0:43 ip community-list standard 1_9_42 permit 65000:1 0:9 0:42 ip community-list standard 1_10_41 permit 65000:1 0:10 0:41 ip community-list standard 1_11_40 permit 65000:1 0:11 0:40 ip community-list standard 1_12_39 permit 65000:1 0:12 0:39 ip community-list standard 1_13_38 permit 65000:1 0:13 0:38 ip community-list standard 1_14_37 permit 65000:1 0:14 0:37 ip community-list standard 1_15_36 permit 65000:1 0:15 0:36 ip community-list standard 1_16_35 permit 65000:1 0:16 0:35 ip community-list standard 1_17_34 permit 65000:1 0:17 0:34 ip community-list standard 1_18_33 permit 65000:1 0:18 0:33 ip community-list standard 1_19_32 permit 65000:1 0:19 0:32 ip community-list standard 1_20_31 permit 65000:1 0:20 0:31 ip community-list standard 1_21_30 permit 65000:1 0:21 0:30 ip community-list standard 1_22_29 permit 65000:1 0:22 0:29 ip community-list standard 1_23_28 permit 65000:1 0:23 0:28 ip community-list standard 1_24_27 permit 65000:1 0:24 0:27 ip community-list standard 1_25_26 permit 65000:1 0:25 0:26 ip community-list expanded c51 permit 1 ^65000:4_0:51_0:1$ ip community-list expanded c51 permit 2 ^65000:3_0:52_0:1$ ip community-list expanded c51 permit 3 ^65000:3_0:53_0:2$ ip community-list expanded c51 permit 4 ^65000:3_0:54_0:3$ ip community-list expanded c51 permit 5 ^65000:3_0:55_0:4$ ip community-list expanded c51 permit 6 ^65000:3_0:56_0:5$ ip community-list expanded c51 permit 7 ^65000:3_0:57_0:6$ ip community-list expanded c51 permit 8 ^65000:3_0:58_0:7$ ip community-list expanded c51 permit 9 ^65000:3_0:59_0:8$ ip community-list expanded c51 permit 10 ^65000:3_0:60_0:9$ ip community-list expanded c51 permit 11 ^65000:3_0:61_0:10$ ip community-list expanded c51 permit 12 ^65000:3_0:62_0:11$ ip community-list expanded c51 permit 13 ^65000:3_0:63_0:12$ ip community-list expanded c51 permit 14 ^65000:3_0:64_0:13$ ip community-list expanded c51 permit 15 ^65000:3_0:65_0:14$ ip community-list expanded c51 permit 16 ^65000:3_0:66_0:15$ ip community-list expanded c51 permit 17 ^65000:3_0:67_0:16$ ip community-list expanded c51 permit 18 ^65000:3_0:68_0:17$ ip community-list expanded c51 permit 19 ^65000:3_0:69_0:18$ ip community-list expanded c51 permit 20 ^65000:3_0:70_0:19$ ip community-list expanded c51 permit 21 ^65000:3_0:71_0:20$ ip community-list expanded c51 permit 22 ^65000:3_0:72_0:21$ ip community-list expanded c51 permit 23 ^65000:3_0:73_0:22$ ip community-list expanded c51 permit 24 ^65000:3_0:74_0:23$ ip community-list expanded c51 permit 25 ^65000:3_0:75_0:24$ ip community-list expanded c51 permit 26 ^65000:3_0:76_0:25$ ip community-list expanded c51 permit 27 ^65000:3_0:77_0:26$ ip community-list expanded c51 permit 28 ^65000:3_0:78_0:27$ ip community-list expanded c51 permit 29 ^65000:3_0:79_0:28$ ip community-list expanded c51 permit 30 ^65000:3_0:80_0:29$ ip community-list expanded c51 permit 31 ^65000:3_0:81_0:30$ ip community-list expanded c51 permit 32 ^65000:3_0:82_0:31$ ip community-list expanded c51 permit 33 ^65000:3_0:83_0:32$ ip community-list expanded c51 permit 34 ^65000:3_0:84_0:33$ ip community-list expanded c51 permit 35 ^65000:3_0:85_0:34$ ip community-list expanded c51 permit 36 ^65000:3_0:86_0:35$ ip community-list expanded c51 permit 37 ^65000:3_0:87_0:36$ ip community-list expanded c51 permit 38 ^65000:3_0:88_0:37$ ip community-list expanded c51 permit 39 ^65000:3_0:89_0:38$ ip community-list expanded c51 permit 40 ^65000:3_0:90_0:39$ ip community-list expanded c51 permit 41 ^65000:3_0:91_0:40$ ip community-list expanded c51 permit 42 ^65000:3_0:92_0:41$ ip community-list expanded c51 permit 43 ^65000:3_0:93_0:42$ ip community-list expanded c51 permit 44 ^65000:3_0:94_0:43$ ip community-list expanded c51 permit 45 ^65000:3_0:95_0:44$ ip community-list expanded c51 permit 46 ^65000:3_0:96_0:45$ ip community-list expanded c51 permit 47 ^65000:3_0:97_0:46$ ip community-list expanded c51 permit 48 ^65000:3_0:98_0:47$ ip community-list expanded c51 permit 49 ^65000:3_0:99_0:48$ ip community-list expanded c51 permit 50 ^65000:3_0:100_0:49$ ip community-list expanded c51 permit 51 ^65000:3_0:101_0:50$ ip community-list expanded c51 permit 52 ^65000:4_0:102_0:2$ ip community-list expanded c51 permit 53 ^65000:3_0:102_0:51$ ip community-list expanded c51 permit 54 ^65000:4_0:103_0:2$ ip community-list expanded c51 permit 55 ^65000:3_0:103_0:52$ ip community-list expanded c51 permit 56 ^65000:3_0:104_0:53$ ip community-list expanded c51 permit 57 ^65000:3_0:105_0:54$ ip community-list expanded c51 permit 58 ^65000:3_0:106_0:55$ ip community-list expanded c51 permit 59 ^65000:3_0:107_0:56$ ip community-list expanded c51 permit 60 ^65000:3_0:108_0:57$ ip community-list expanded c51 permit 61 ^65000:3_0:109_0:58$ ip community-list expanded c51 permit 62 ^65000:3_0:110_0:59$ ip community-list expanded c51 permit 63 ^65000:3_0:111_0:60$ ip community-list expanded c51 permit 64 ^65000:3_0:112_0:61$ ip community-list expanded c51 permit 65 ^65000:3_0:113_0:62$ ip community-list expanded c51 permit 66 ^65000:3_0:114_0:63$ ip community-list expanded c51 permit 67 ^65000:3_0:115_0:64$ ip community-list expanded c51 permit 68 ^65000:3_0:116_0:65$ ip community-list expanded c51 permit 69 ^65000:3_0:117_0:66$ ip community-list expanded c51 permit 70 ^65000:3_0:118_0:67$ ip community-list expanded c51 permit 71 ^65000:3_0:119_0:68$ ip community-list expanded c51 permit 72 ^65000:3_0:120_0:69$ ip community-list expanded c51 permit 73 ^65000:3_0:121_0:70$ ip community-list expanded c51 permit 74 ^65000:3_0:122_0:71$ ip community-list expanded c51 permit 75 ^65000:3_0:123_0:72$ ip community-list expanded c51 permit 76 ^65000:3_0:124_0:73$ ip community-list expanded c51 permit 77 ^65000:3_0:125_0:74$ ip community-list expanded c51 permit 78 ^65000:3_0:126_0:75$ ip community-list expanded c51 permit 79 ^65000:3_0:127_0:76$ ip community-list expanded c51 permit 80 ^65000:3_0:128_0:77$ ip community-list expanded c51 permit 81 ^65000:3_0:129_0:78$ ip community-list expanded c51 permit 82 ^65000:3_0:130_0:79$ ip community-list expanded c51 permit 83 ^65000:3_0:131_0:80$ ip community-list expanded c51 permit 84 ^65000:3_0:132_0:81$ ip community-list expanded c51 permit 85 ^65000:3_0:133_0:82$ ip community-list expanded c51 permit 86 ^65000:3_0:134_0:83$ ip community-list expanded c51 permit 87 ^65000:3_0:135_0:84$ ip community-list expanded c51 permit 88 ^65000:3_0:136_0:85$ ip community-list expanded c51 permit 89 ^65000:3_0:137_0:86$ ip community-list expanded c51 permit 90 ^65000:3_0:138_0:87$ ip community-list expanded c51 permit 91 ^65000:3_0:139_0:88$ ip community-list expanded c51 permit 92 ^65000:3_0:140_0:89$ ip community-list expanded c51 permit 93 ^65000:3_0:141_0:90$ ip community-list expanded c51 permit 94 ^65000:3_0:142_0:91$ ip community-list expanded c51 permit 95 ^65000:3_0:143_0:92$ ip community-list expanded c51 permit 96 ^65000:3_0:144_0:93$ ip community-list expanded c51 permit 97 ^65000:3_0:145_0:94$ ip community-list expanded c51 permit 98 ^65000:3_0:146_0:95$ ip community-list expanded c51 permit 99 ^65000:3_0:147_0:96$ ip community-list expanded c51 permit 100 ^65000:3_0:148_0:97$ ip community-list expanded c51 permit 101 ^65000:3_0:149_0:98$ ip community-list expanded c51 permit 102 ^65000:3_0:150_0:99$ ip community-list expanded c51 permit 103 ^65000:3_0:151_0:100$ ip community-list expanded c51 permit 104 ^65000:3_0:152_0:101$ ip community-list expanded c51 permit 105 ^65000:4_0:153_0:3$ ip community-list expanded c51 permit 106 ^65000:3_0:153_0:102$ ip community-list expanded c51 permit 107 ^65000:4_0:154_0:3$ ip community-list expanded c51 permit 108 ^65000:3_0:154_0:103$ ip community-list expanded c51 permit 109 ^65000:4_0:155_0:3$ ip community-list expanded c51 permit 110 ^65000:3_0:155_0:104$ ip community-list expanded c51 permit 111 ^65000:3_0:156_0:105$ ip community-list expanded c51 permit 112 ^65000:3_0:157_0:106$ ip community-list expanded c51 permit 113 ^65000:3_0:158_0:107$ ip community-list expanded c51 permit 114 ^65000:3_0:159_0:108$ ip community-list expanded c51 permit 115 ^65000:3_0:160_0:109$ ip community-list expanded c51 permit 116 ^65000:3_0:161_0:110$ ip community-list expanded c51 permit 117 ^65000:3_0:162_0:111$ ip community-list expanded c51 permit 118 ^65000:3_0:163_0:112$ ip community-list expanded c51 permit 119 ^65000:3_0:164_0:113$ ip community-list expanded c51 permit 120 ^65000:3_0:165_0:114$ ip community-list expanded c51 permit 121 ^65000:3_0:166_0:115$ ip community-list expanded c51 permit 122 ^65000:3_0:167_0:116$ ip community-list expanded c51 permit 123 ^65000:3_0:168_0:117$ ip community-list expanded c51 permit 124 ^65000:3_0:169_0:118$ ip community-list expanded c51 permit 125 ^65000:3_0:170_0:119$ ip community-list expanded c51 permit 126 ^65000:3_0:171_0:120$ ip community-list expanded c51 permit 127 ^65000:3_0:172_0:121$ ip community-list expanded c51 permit 128 ^65000:3_0:173_0:122$ ip community-list expanded c51 permit 129 ^65000:3_0:174_0:123$ ip community-list expanded c51 permit 130 ^65000:3_0:175_0:124$ ip community-list expanded c51 permit 131 ^65000:3_0:176_0:125$ ip community-list expanded c51 permit 132 ^65000:3_0:177_0:126$ ip community-list expanded c51 permit 133 ^65000:3_0:178_0:127$ ip community-list expanded c51 permit 134 ^65000:3_0:179_0:128$ ip community-list expanded c51 permit 135 ^65000:3_0:180_0:129$ ip community-list expanded c51 permit 136 ^65000:3_0:181_0:130$ ip community-list expanded c51 permit 137 ^65000:3_0:182_0:131$ ip community-list expanded c51 permit 138 ^65000:3_0:183_0:132$ ip community-list expanded c51 permit 139 ^65000:3_0:184_0:133$ ip community-list expanded c51 permit 140 ^65000:3_0:185_0:134$ ip community-list expanded c51 permit 141 ^65000:3_0:186_0:135$ ip community-list expanded c51 permit 142 ^65000:3_0:187_0:136$ ip community-list expanded c51 permit 143 ^65000:3_0:188_0:137$ ip community-list expanded c51 permit 144 ^65000:3_0:189_0:138$ ip community-list expanded c51 permit 145 ^65000:3_0:190_0:139$ ip community-list expanded c51 permit 146 ^65000:3_0:191_0:140$ ip community-list expanded c51 permit 147 ^65000:3_0:192_0:141$ ip community-list expanded c51 permit 148 ^65000:3_0:193_0:142$ ip community-list expanded c51 permit 149 ^65000:3_0:194_0:143$ ip community-list expanded c51 permit 150 ^65000:3_0:195_0:144$ ip community-list expanded c51 permit 151 ^65000:3_0:196_0:145$ ip community-list expanded c51 permit 152 ^65000:3_0:197_0:146$ ip community-list expanded c51 permit 153 ^65000:3_0:198_0:147$ ip community-list expanded c51 permit 154 ^65000:3_0:199_0:148$ ip community-list expanded c51 permit 155 ^65000:3_0:200_0:149$ ip community-list expanded c51 permit 156 ^65000:3_0:201_0:150$ ip community-list expanded c51 permit 157 ^65000:3_0:202_0:151$ ip community-list expanded c51 permit 158 ^65000:3_0:203_0:152$ ip community-list expanded c51 permit 159 ^65000:4_0:204_0:4$ ip community-list expanded c51 permit 160 ^65000:3_0:204_0:153$ ip community-list expanded c51 permit 161 ^65000:4_0:205_0:4$ ip community-list expanded c51 permit 162 ^65000:3_0:205_0:154$ ip community-list expanded c51 permit 163 ^65000:4_0:206_0:4$ ip community-list expanded c51 permit 164 ^65000:3_0:206_0:155$ ip community-list expanded c51 permit 165 ^65000:4_0:207_0:4$ ip community-list expanded c51 permit 166 ^65000:3_0:207_0:156$ ip community-list expanded c51 permit 167 ^65000:3_0:208_0:157$ ip community-list expanded c51 permit 168 ^65000:3_0:209_0:158$ ip community-list expanded c51 permit 169 ^65000:3_0:210_0:159$ ip community-list expanded c51 permit 170 ^65000:3_0:211_0:160$ ip community-list expanded c51 permit 171 ^65000:3_0:212_0:161$ ip community-list expanded c51 permit 172 ^65000:3_0:213_0:162$ ip community-list expanded c51 permit 173 ^65000:3_0:214_0:163$ ip community-list expanded c51 permit 174 ^65000:3_0:215_0:164$ ip community-list expanded c51 permit 175 ^65000:3_0:216_0:165$ ip community-list expanded c51 permit 176 ^65000:3_0:217_0:166$ ip community-list expanded c51 permit 177 ^65000:3_0:218_0:167$ ip community-list expanded c51 permit 178 ^65000:3_0:219_0:168$ ip community-list expanded c51 permit 179 ^65000:3_0:220_0:169$ ip community-list expanded c51 permit 180 ^65000:3_0:221_0:170$ ip community-list expanded c51 permit 181 ^65000:3_0:222_0:171$ ip community-list expanded c51 permit 182 ^65000:3_0:223_0:172$ ip community-list expanded c51 permit 183 ^65000:3_0:224_0:173$ ip community-list expanded c51 permit 184 ^65000:3_0:225_0:174$ ip community-list expanded c51 permit 185 ^65000:3_0:226_0:175$ ip community-list expanded c51 permit 186 ^65000:3_0:227_0:176$ ip community-list expanded c51 permit 187 ^65000:3_0:228_0:177$ ip community-list expanded c51 permit 188 ^65000:3_0:229_0:178$ ip community-list expanded c51 permit 189 ^65000:3_0:230_0:179$ ip community-list expanded c51 permit 190 ^65000:3_0:231_0:180$ ip community-list expanded c51 permit 191 ^65000:3_0:232_0:181$ ip community-list expanded c51 permit 192 ^65000:3_0:233_0:182$ ip community-list expanded c51 permit 193 ^65000:3_0:234_0:183$ ip community-list expanded c51 permit 194 ^65000:3_0:235_0:184$ ip community-list expanded c51 permit 195 ^65000:3_0:236_0:185$ ip community-list expanded c51 permit 196 ^65000:3_0:237_0:186$ ip community-list expanded c51 permit 197 ^65000:3_0:238_0:187$ ip community-list expanded c51 permit 198 ^65000:3_0:239_0:188$ ip community-list expanded c51 permit 199 ^65000:3_0:240_0:189$ ip community-list expanded c51 permit 200 ^65000:3_0:241_0:190$ ip community-list expanded c51 permit 201 ^65000:3_0:242_0:191$ ip community-list expanded c51 permit 202 ^65000:3_0:243_0:192$ ip community-list expanded c51 permit 203 ^65000:3_0:244_0:193$ ip community-list expanded c51 permit 204 ^65000:3_0:245_0:194$ ip community-list expanded c51 permit 205 ^65000:3_0:246_0:195$ ip community-list expanded c51 permit 206 ^65000:3_0:247_0:196$ ip community-list expanded c51 permit 207 ^65000:3_0:248_0:197$ ip community-list expanded c51 permit 208 ^65000:3_0:249_0:198$ ip community-list expanded c51 permit 209 ^65000:3_0:250_0:199$ ip community-list expanded c51 permit 210 ^65000:3_0:251_0:200$ ip community-list expanded c51 permit 211 ^65000:3_0:252_0:201$ ip community-list expanded c51 permit 212 ^65000:3_0:253_0:202$ ip community-list expanded c51 permit 213 ^65000:3_0:254_0:203$ ip community-list expanded c51 permit 214 ^65000:4_0:255_0:5$ ip community-list expanded c51 permit 215 ^65000:3_0:255_0:204$ ip community-list expanded c51 permit 216 ^65000:4_0:256_0:5$ ip community-list expanded c51 permit 217 ^65000:3_0:256_0:205$ route-map calculator permit 28569 match community 1_1_50 2_1_51 1_2_49 2_3_17 1_3_48 set community 0:51 route-map calculator permit 28570 match community 1_4_47 1_5_46 1_6_45 1_7_44 1_8_43 set community 0:51 route-map calculator permit 28571 match community 1_9_42 1_10_41 1_11_40 1_12_39 1_13_38 set community 0:51 route-map calculator permit 28572 match community 1_14_37 1_15_36 1_16_35 1_17_34 1_18_33 set community 0:51 route-map calculator permit 28573 match community 1_19_32 1_20_31 1_21_30 1_22_29 1_23_28 set community 0:51 route-map calculator permit 28574 match community 1_24_27 1_25_26 c4_51_1 c3_52_1 c3_53_2 set community 0:51 route-map calculator permit 28575 match community c3_54_3 c3_55_4 c3_56_5 c3_57_6 c3_58_7 set community 0:51 route-map calculator permit 28576 match community c3_59_8 c3_60_9 c3_61_10 c3_62_11 c3_63_12 set community 0:51 route-map calculator permit 28577 match community c3_64_13 c3_65_14 c3_66_15 c3_67_16 c3_68_17 set community 0:51 route-map calculator permit 28578 match community c3_69_18 c3_70_19 c3_71_20 c3_72_21 c3_73_22 set community 0:51 route-map calculator permit 28579 match community c3_74_23 c3_75_24 c3_76_25 c3_77_26 c3_78_27 set community 0:51 route-map calculator permit 28580 match community c3_79_28 c3_80_29 c3_81_30 c3_82_31 c3_83_32 set community 0:51 route-map calculator permit 28581 match community c3_84_33 c3_85_34 c3_86_35 c3_87_36 c3_88_37 set community 0:51 route-map calculator permit 28582 match community c3_89_38 c3_90_39 c3_91_40 c3_92_41 c3_93_42 set community 0:51 route-map calculator permit 28583 match community c3_94_43 c3_95_44 c3_96_45 c3_97_46 c3_98_47 set community 0:51 route-map calculator permit 28584 match community c3_99_48 c3_100_49 c3_101_50 c4_102_2 c3_102_51 set community 0:51 route-map calculator permit 28585 match community c4_103_2 c3_103_52 c3_104_53 c3_105_54 c3_106_55 set community 0:51 route-map calculator permit 28586 match community c3_107_56 c3_108_57 c3_109_58 c3_110_59 c3_111_60 set community 0:51 route-map calculator permit 28587 match community c3_112_61 c3_113_62 c3_114_63 c3_115_64 c3_116_65 set community 0:51 route-map calculator permit 28588 match community c3_117_66 c3_118_67 c3_119_68 c3_120_69 c3_121_70 set community 0:51 route-map calculator permit 28589 match community c3_122_71 c3_123_72 c3_124_73 c3_125_74 c3_126_75 set community 0:51 route-map calculator permit 28590 match community c3_127_76 c3_128_77 c3_129_78 c3_130_79 c3_131_80 set community 0:51 route-map calculator permit 28591 match community c3_132_81 c3_133_82 c3_134_83 c3_135_84 c3_136_85 set community 0:51 route-map calculator permit 28592 match community c3_137_86 c3_138_87 c3_139_88 c3_140_89 c3_141_90 set community 0:51 route-map calculator permit 28593 match community c3_142_91 c3_143_92 c3_144_93 c3_145_94 c3_146_95 set community 0:51 route-map calculator permit 28594 match community c3_147_96 c3_148_97 c3_149_98 c3_150_99 c3_151_100 set community 0:51 route-map calculator permit 28595 match community c3_152_101 c4_153_3 c3_153_102 c4_154_3 c3_154_103 set community 0:51 route-map calculator permit 28596 match community c4_155_3 c3_155_104 c3_156_105 c3_157_106 c3_158_107 set community 0:51 route-map calculator permit 28597 match community c3_159_108 c3_160_109 c3_161_110 c3_162_111 c3_163_112 set community 0:51 route-map calculator permit 28598 match community c3_164_113 c3_165_114 c3_166_115 c3_167_116 c3_168_117 set community 0:51 route-map calculator permit 28599 match community c3_169_118 c3_170_119 c3_171_120 c3_172_121 c3_173_122 set community 0:51 route-map calculator permit 28600 match community c3_174_123 c3_175_124 c3_176_125 c3_177_126 c3_178_127 set community 0:51 route-map calculator permit 28601 match community c3_179_128 c3_180_129 c3_181_130 c3_182_131 c3_183_132 set community 0:51 route-map calculator permit 28602 match community c3_184_133 c3_185_134 c3_186_135 c3_187_136 c3_188_137 set community 0:51 route-map calculator permit 28603 match community c3_189_138 c3_190_139 c3_191_140 c3_192_141 c3_193_142 set community 0:51 route-map calculator permit 28604 match community c3_194_143 c3_195_144 c3_196_145 c3_197_146 c3_198_147 set community 0:51 route-map calculator permit 28605 match community c3_199_148 c3_200_149 c3_201_150 c3_202_151 c3_203_152 set community 0:51 route-map calculator permit 28606 match community c4_204_4 c3_204_153 c4_205_4 c3_205_154 c4_206_4 set community 0:51 route-map calculator permit 28607 match community c3_206_155 c4_207_4 c3_207_156 c3_208_157 c3_209_158 set community 0:51 route-map calculator permit 28608 match community c3_210_159 c3_211_160 c3_212_161 c3_213_162 c3_214_163 set community 0:51 route-map calculator permit 28609 match community c3_215_164 c3_216_165 c3_217_166 c3_218_167 c3_219_168 set community 0:51 route-map calculator permit 28610 match community c3_220_169 c3_221_170 c3_222_171 c3_223_172 c3_224_173 set community 0:51 route-map calculator permit 28611 match community c3_225_174 c3_226_175 c3_227_176 c3_228_177 c3_229_178 set community 0:51 route-map calculator permit 28612 match community c3_230_179 c3_231_180 c3_232_181 c3_233_182 c3_234_183 set community 0:51 route-map calculator permit 28613 match community c3_235_184 c3_236_185 c3_237_186 c3_238_187 c3_239_188 set community 0:51 route-map calculator permit 28614 match community c3_240_189 c3_241_190 c3_242_191 c3_243_192 c3_244_193 set community 0:51 route-map calculator permit 28615 match community c3_245_194 c3_246_195 c3_247_196 c3_248_197 c3_249_198 set community 0:51 route-map calculator permit 28616 match community c3_250_199 c3_251_200 c3_252_201 c3_253_202 c3_254_203 set community 0:51 route-map calculator permit 28617 match community c4_255_5 c3_255_204 c4_256_5 c3_256_205 set community 0:51 ip community-list standard 1_1_178 permit 65000:1 0:1 0:178 ip community-list standard 2_1_179 permit 65000:2 0:1 0:179 ip community-list standard 1_2_177 permit 65000:1 0:2 0:177 ip community-list standard 1_3_176 permit 65000:1 0:3 0:176 ip community-list standard 1_4_175 permit 65000:1 0:4 0:175 ip community-list standard 1_5_174 permit 65000:1 0:5 0:174 ip community-list standard 1_6_173 permit 65000:1 0:6 0:173 ip community-list standard 1_7_172 permit 65000:1 0:7 0:172 ip community-list standard 1_8_171 permit 65000:1 0:8 0:171 ip community-list standard 1_9_170 permit 65000:1 0:9 0:170 ip community-list standard 1_10_169 permit 65000:1 0:10 0:169 ip community-list standard 1_11_168 permit 65000:1 0:11 0:168 ip community-list standard 1_12_167 permit 65000:1 0:12 0:167 ip community-list standard 1_13_166 permit 65000:1 0:13 0:166 ip community-list standard 1_14_165 permit 65000:1 0:14 0:165 ip community-list standard 1_15_164 permit 65000:1 0:15 0:164 ip community-list standard 1_16_163 permit 65000:1 0:16 0:163 ip community-list standard 1_17_162 permit 65000:1 0:17 0:162 ip community-list standard 1_18_161 permit 65000:1 0:18 0:161 ip community-list standard 1_19_160 permit 65000:1 0:19 0:160 ip community-list standard 1_20_159 permit 65000:1 0:20 0:159 ip community-list standard 1_21_158 permit 65000:1 0:21 0:158 ip community-list standard 1_22_157 permit 65000:1 0:22 0:157 ip community-list standard 1_23_156 permit 65000:1 0:23 0:156 ip community-list standard 1_24_155 permit 65000:1 0:24 0:155 ip community-list standard 1_25_154 permit 65000:1 0:25 0:154 ip community-list standard 1_26_153 permit 65000:1 0:26 0:153 ip community-list standard 1_27_152 permit 65000:1 0:27 0:152 ip community-list standard 1_28_151 permit 65000:1 0:28 0:151 ip community-list standard 1_29_150 permit 65000:1 0:29 0:150 ip community-list standard 1_30_149 permit 65000:1 0:30 0:149 ip community-list standard 1_31_148 permit 65000:1 0:31 0:148 ip community-list standard 1_32_147 permit 65000:1 0:32 0:147 ip community-list standard 1_33_146 permit 65000:1 0:33 0:146 ip community-list standard 1_34_145 permit 65000:1 0:34 0:145 ip community-list standard 1_35_144 permit 65000:1 0:35 0:144 ip community-list standard 1_36_143 permit 65000:1 0:36 0:143 ip community-list standard 1_37_142 permit 65000:1 0:37 0:142 ip community-list standard 1_38_141 permit 65000:1 0:38 0:141 ip community-list standard 1_39_140 permit 65000:1 0:39 0:140 ip community-list standard 1_40_139 permit 65000:1 0:40 0:139 ip community-list standard 1_41_138 permit 65000:1 0:41 0:138 ip community-list standard 1_42_137 permit 65000:1 0:42 0:137 ip community-list standard 1_43_136 permit 65000:1 0:43 0:136 ip community-list standard 1_44_135 permit 65000:1 0:44 0:135 ip community-list standard 1_45_134 permit 65000:1 0:45 0:134 ip community-list standard 1_46_133 permit 65000:1 0:46 0:133 ip community-list standard 1_47_132 permit 65000:1 0:47 0:132 ip community-list standard 1_48_131 permit 65000:1 0:48 0:131 ip community-list standard 1_49_130 permit 65000:1 0:49 0:130 ip community-list standard 1_50_129 permit 65000:1 0:50 0:129 ip community-list standard 1_51_128 permit 65000:1 0:51 0:128 ip community-list standard 1_52_127 permit 65000:1 0:52 0:127 ip community-list standard 1_53_126 permit 65000:1 0:53 0:126 ip community-list standard 1_54_125 permit 65000:1 0:54 0:125 ip community-list standard 1_55_124 permit 65000:1 0:55 0:124 ip community-list standard 1_56_123 permit 65000:1 0:56 0:123 ip community-list standard 1_57_122 permit 65000:1 0:57 0:122 ip community-list standard 1_58_121 permit 65000:1 0:58 0:121 ip community-list standard 1_59_120 permit 65000:1 0:59 0:120 ip community-list standard 1_60_119 permit 65000:1 0:60 0:119 ip community-list standard 1_61_118 permit 65000:1 0:61 0:118 ip community-list standard 1_62_117 permit 65000:1 0:62 0:117 ip community-list standard 1_63_116 permit 65000:1 0:63 0:116 ip community-list standard 1_64_115 permit 65000:1 0:64 0:115 ip community-list standard 1_65_114 permit 65000:1 0:65 0:114 ip community-list standard 1_66_113 permit 65000:1 0:66 0:113 ip community-list standard 1_67_112 permit 65000:1 0:67 0:112 ip community-list standard 1_68_111 permit 65000:1 0:68 0:111 ip community-list standard 1_69_110 permit 65000:1 0:69 0:110 ip community-list standard 1_70_109 permit 65000:1 0:70 0:109 ip community-list standard 1_71_108 permit 65000:1 0:71 0:108 ip community-list standard 1_72_107 permit 65000:1 0:72 0:107 ip community-list standard 1_73_106 permit 65000:1 0:73 0:106 ip community-list standard 1_74_105 permit 65000:1 0:74 0:105 ip community-list standard 1_75_104 permit 65000:1 0:75 0:104 ip community-list standard 1_76_103 permit 65000:1 0:76 0:103 ip community-list standard 1_77_102 permit 65000:1 0:77 0:102 ip community-list standard 1_78_101 permit 65000:1 0:78 0:101 ip community-list standard 1_79_100 permit 65000:1 0:79 0:100 ip community-list standard 1_80_99 permit 65000:1 0:80 0:99 ip community-list standard 1_81_98 permit 65000:1 0:81 0:98 ip community-list standard 1_82_97 permit 65000:1 0:82 0:97 ip community-list standard 1_83_96 permit 65000:1 0:83 0:96 ip community-list standard 1_84_95 permit 65000:1 0:84 0:95 ip community-list standard 1_85_94 permit 65000:1 0:85 0:94 ip community-list standard 1_86_93 permit 65000:1 0:86 0:93 ip community-list standard 1_87_92 permit 65000:1 0:87 0:92 ip community-list standard 1_88_91 permit 65000:1 0:88 0:91 ip community-list standard 1_89_90 permit 65000:1 0:89 0:90 ip community-list expanded c179 permit 1 ^65000:4_0:179_0:1$ ip community-list expanded c179 permit 2 ^65000:3_0:180_0:1$ ip community-list expanded c179 permit 3 ^65000:3_0:181_0:2$ ip community-list expanded c179 permit 4 ^65000:3_0:182_0:3$ ip community-list expanded c179 permit 5 ^65000:3_0:183_0:4$ ip community-list expanded c179 permit 6 ^65000:3_0:184_0:5$ ip community-list expanded c179 permit 7 ^65000:3_0:185_0:6$ ip community-list expanded c179 permit 8 ^65000:3_0:186_0:7$ ip community-list expanded c179 permit 9 ^65000:3_0:187_0:8$ ip community-list expanded c179 permit 10 ^65000:3_0:188_0:9$ ip community-list expanded c179 permit 11 ^65000:3_0:189_0:10$ ip community-list expanded c179 permit 12 ^65000:3_0:190_0:11$ ip community-list expanded c179 permit 13 ^65000:3_0:191_0:12$ ip community-list expanded c179 permit 14 ^65000:3_0:192_0:13$ ip community-list expanded c179 permit 15 ^65000:3_0:193_0:14$ ip community-list expanded c179 permit 16 ^65000:3_0:194_0:15$ ip community-list expanded c179 permit 17 ^65000:3_0:195_0:16$ ip community-list expanded c179 permit 18 ^65000:3_0:196_0:17$ ip community-list expanded c179 permit 19 ^65000:3_0:197_0:18$ ip community-list expanded c179 permit 20 ^65000:3_0:198_0:19$ ip community-list expanded c179 permit 21 ^65000:3_0:199_0:20$ ip community-list expanded c179 permit 22 ^65000:3_0:200_0:21$ ip community-list expanded c179 permit 23 ^65000:3_0:201_0:22$ ip community-list expanded c179 permit 24 ^65000:3_0:202_0:23$ ip community-list expanded c179 permit 25 ^65000:3_0:203_0:24$ ip community-list expanded c179 permit 26 ^65000:3_0:204_0:25$ ip community-list expanded c179 permit 27 ^65000:3_0:205_0:26$ ip community-list expanded c179 permit 28 ^65000:3_0:206_0:27$ ip community-list expanded c179 permit 29 ^65000:3_0:207_0:28$ ip community-list expanded c179 permit 30 ^65000:3_0:208_0:29$ ip community-list expanded c179 permit 31 ^65000:3_0:209_0:30$ ip community-list expanded c179 permit 32 ^65000:3_0:210_0:31$ ip community-list expanded c179 permit 33 ^65000:3_0:211_0:32$ ip community-list expanded c179 permit 34 ^65000:3_0:212_0:33$ ip community-list expanded c179 permit 35 ^65000:3_0:213_0:34$ ip community-list expanded c179 permit 36 ^65000:3_0:214_0:35$ ip community-list expanded c179 permit 37 ^65000:3_0:215_0:36$ ip community-list expanded c179 permit 38 ^65000:3_0:216_0:37$ ip community-list expanded c179 permit 39 ^65000:3_0:217_0:38$ ip community-list expanded c179 permit 40 ^65000:3_0:218_0:39$ ip community-list expanded c179 permit 41 ^65000:3_0:219_0:40$ ip community-list expanded c179 permit 42 ^65000:3_0:220_0:41$ ip community-list expanded c179 permit 43 ^65000:3_0:221_0:42$ ip community-list expanded c179 permit 44 ^65000:3_0:222_0:43$ ip community-list expanded c179 permit 45 ^65000:3_0:223_0:44$ ip community-list expanded c179 permit 46 ^65000:3_0:224_0:45$ ip community-list expanded c179 permit 47 ^65000:3_0:225_0:46$ ip community-list expanded c179 permit 48 ^65000:3_0:226_0:47$ ip community-list expanded c179 permit 49 ^65000:3_0:227_0:48$ ip community-list expanded c179 permit 50 ^65000:3_0:228_0:49$ ip community-list expanded c179 permit 51 ^65000:3_0:229_0:50$ ip community-list expanded c179 permit 52 ^65000:3_0:230_0:51$ ip community-list expanded c179 permit 53 ^65000:3_0:231_0:52$ ip community-list expanded c179 permit 54 ^65000:3_0:232_0:53$ ip community-list expanded c179 permit 55 ^65000:3_0:233_0:54$ ip community-list expanded c179 permit 56 ^65000:3_0:234_0:55$ ip community-list expanded c179 permit 57 ^65000:3_0:235_0:56$ ip community-list expanded c179 permit 58 ^65000:3_0:236_0:57$ ip community-list expanded c179 permit 59 ^65000:3_0:237_0:58$ ip community-list expanded c179 permit 60 ^65000:3_0:238_0:59$ ip community-list expanded c179 permit 61 ^65000:3_0:239_0:60$ ip community-list expanded c179 permit 62 ^65000:3_0:240_0:61$ ip community-list expanded c179 permit 63 ^65000:3_0:241_0:62$ ip community-list expanded c179 permit 64 ^65000:3_0:242_0:63$ ip community-list expanded c179 permit 65 ^65000:3_0:243_0:64$ ip community-list expanded c179 permit 66 ^65000:3_0:244_0:65$ ip community-list expanded c179 permit 67 ^65000:3_0:245_0:66$ ip community-list expanded c179 permit 68 ^65000:3_0:246_0:67$ ip community-list expanded c179 permit 69 ^65000:3_0:247_0:68$ ip community-list expanded c179 permit 70 ^65000:3_0:248_0:69$ ip community-list expanded c179 permit 71 ^65000:3_0:249_0:70$ ip community-list expanded c179 permit 72 ^65000:3_0:250_0:71$ ip community-list expanded c179 permit 73 ^65000:3_0:251_0:72$ ip community-list expanded c179 permit 74 ^65000:3_0:252_0:73$ ip community-list expanded c179 permit 75 ^65000:3_0:253_0:74$ ip community-list expanded c179 permit 76 ^65000:3_0:254_0:75$ ip community-list expanded c179 permit 77 ^65000:3_0:255_0:76$ ip community-list expanded c179 permit 78 ^65000:3_0:256_0:77$ route-map calculator permit 28618 match community 1_1_178 2_1_179 1_2_177 1_3_176 1_4_175 set community 0:179 route-map calculator permit 28619 match community 1_5_174 1_6_173 1_7_172 1_8_171 1_9_170 set community 0:179 route-map calculator permit 28620 match community 1_10_169 1_11_168 1_12_167 1_13_166 1_14_165 set community 0:179 route-map calculator permit 28621 match community 1_15_164 1_16_163 1_17_162 1_18_161 1_19_160 set community 0:179 route-map calculator permit 28622 match community 1_20_159 1_21_158 1_22_157 1_23_156 1_24_155 set community 0:179 route-map calculator permit 28623 match community 1_25_154 1_26_153 1_27_152 1_28_151 1_29_150 set community 0:179 route-map calculator permit 28624 match community 1_30_149 1_31_148 1_32_147 1_33_146 1_34_145 set community 0:179 route-map calculator permit 28625 match community 1_35_144 1_36_143 1_37_142 1_38_141 1_39_140 set community 0:179 route-map calculator permit 28626 match community 1_40_139 1_41_138 1_42_137 1_43_136 1_44_135 set community 0:179 route-map calculator permit 28627 match community 1_45_134 1_46_133 1_47_132 1_48_131 1_49_130 set community 0:179 route-map calculator permit 28628 match community 1_50_129 1_51_128 1_52_127 1_53_126 1_54_125 set community 0:179 route-map calculator permit 28629 match community 1_55_124 1_56_123 1_57_122 1_58_121 1_59_120 set community 0:179 route-map calculator permit 28630 match community 1_60_119 1_61_118 1_62_117 1_63_116 1_64_115 set community 0:179 route-map calculator permit 28631 match community 1_65_114 1_66_113 1_67_112 1_68_111 1_69_110 set community 0:179 route-map calculator permit 28632 match community 1_70_109 1_71_108 1_72_107 1_73_106 1_74_105 set community 0:179 route-map calculator permit 28633 match community 1_75_104 1_76_103 1_77_102 1_78_101 1_79_100 set community 0:179 route-map calculator permit 28634 match community 1_80_99 1_81_98 1_82_97 1_83_96 1_84_95 set community 0:179 route-map calculator permit 28635 match community 1_85_94 1_86_93 1_87_92 1_88_91 1_89_90 set community 0:179 route-map calculator permit 28636 match community c4_179_1 c3_180_1 c3_181_2 c3_182_3 c3_183_4 set community 0:179 route-map calculator permit 28637 match community c3_184_5 c3_185_6 c3_186_7 c3_187_8 c3_188_9 set community 0:179 route-map calculator permit 28638 match community c3_189_10 c3_190_11 c3_191_12 c3_192_13 c3_193_14 set community 0:179 route-map calculator permit 28639 match community c3_194_15 c3_195_16 c3_196_17 c3_197_18 c3_198_19 set community 0:179 route-map calculator permit 28640 match community c3_199_20 c3_200_21 c3_201_22 c3_202_23 c3_203_24 set community 0:179 route-map calculator permit 28641 match community c3_204_25 c3_205_26 c3_206_27 c3_207_28 c3_208_29 set community 0:179 route-map calculator permit 28642 match community c3_209_30 c3_210_31 c3_211_32 c3_212_33 c3_213_34 set community 0:179 route-map calculator permit 28643 match community c3_214_35 c3_215_36 c3_216_37 c3_217_38 c3_218_39 set community 0:179 route-map calculator permit 28644 match community c3_219_40 c3_220_41 c3_221_42 c3_222_43 c3_223_44 set community 0:179 route-map calculator permit 28645 match community c3_224_45 c3_225_46 c3_226_47 c3_227_48 c3_228_49 set community 0:179 route-map calculator permit 28646 match community c3_229_50 c3_230_51 c3_231_52 c3_232_53 c3_233_54 set community 0:179 route-map calculator permit 28647 match community c3_234_55 c3_235_56 c3_236_57 c3_237_58 c3_238_59 set community 0:179 route-map calculator permit 28648 match community c3_239_60 c3_240_61 c3_241_62 c3_242_63 c3_243_64 set community 0:179 route-map calculator permit 28649 match community c3_244_65 c3_245_66 c3_246_67 c3_247_68 c3_248_69 set community 0:179 route-map calculator permit 28650 match community c3_249_70 c3_250_71 c3_251_72 c3_252_73 c3_253_74 set community 0:179 route-map calculator permit 28651 match community c3_254_75 c3_255_76 c3_256_77 set community 0:179 ip community-list standard 2_107_243 permit 65000:2 0:107 0:243 route-map calculator permit 28652 match community 2_107_243 set community 0:26001 ip community-list standard 2_61_206 permit 65000:2 0:61 0:206 ip community-list standard 2_103_122 permit 65000:2 0:103 0:122 route-map calculator permit 28653 match community 2_61_206 2_103_122 set community 0:12566 ip community-list standard 2_95_137 permit 65000:2 0:95 0:137 route-map calculator permit 28654 match community 2_95_137 set community 0:13015 ip community-list standard 2_14_148 permit 65000:2 0:14 0:148 ip community-list standard 2_28_74 permit 65000:2 0:28 0:74 ip community-list standard 2_37_56 permit 65000:2 0:37 0:56 route-map calculator permit 28655 match community 2_14_148 2_28_74 2_37_56 set community 0:2072 ip community-list standard 2_101_254 permit 65000:2 0:101 0:254 ip community-list standard 2_127_202 permit 65000:2 0:127 0:202 route-map calculator permit 28656 match community 2_101_254 2_127_202 set community 0:25654 ip community-list standard 2_31_106 permit 65000:2 0:31 0:106 ip community-list standard 2_53_62 permit 65000:2 0:53 0:62 route-map calculator permit 28657 match community 2_31_106 2_53_62 set community 0:3286 ip community-list standard 2_76_251 permit 65000:2 0:76 0:251 route-map calculator permit 28658 match community 2_76_251 set community 0:19076 ip community-list standard 2_202_231 permit 65000:2 0:202 0:231 route-map calculator permit 28659 match community 2_202_231 set community 0:46662 ip community-list standard 2_90_212 permit 65000:2 0:90 0:212 ip community-list standard 2_106_180 permit 65000:2 0:106 0:180 ip community-list standard 2_120_159 permit 65000:2 0:120 0:159 route-map calculator permit 28660 match community 2_90_212 2_106_180 2_120_159 set community 0:19080 ip community-list standard 2_31_157 permit 65000:2 0:31 0:157 route-map calculator permit 28661 match community 2_31_157 set community 0:4867 ip community-list standard 2_51_109 permit 65000:2 0:51 0:109 route-map calculator permit 28662 match community 2_51_109 set community 0:5559 ip community-list standard 2_81_202 permit 65000:2 0:81 0:202 ip community-list standard 2_101_162 permit 65000:2 0:101 0:162 route-map calculator permit 28663 match community 2_81_202 2_101_162 set community 0:16362 ip community-list standard 2_108_252 permit 65000:2 0:108 0:252 ip community-list standard 2_112_243 permit 65000:2 0:112 0:243 ip community-list standard 2_126_216 permit 65000:2 0:126 0:216 ip community-list standard 2_144_189 permit 65000:2 0:144 0:189 ip community-list standard 2_162_168 permit 65000:2 0:162 0:168 route-map calculator permit 28664 match community 2_108_252 2_112_243 2_126_216 2_144_189 2_162_168 set community 0:27216 ip community-list standard 1_247_256 permit 65000:1 0:247 0:256 ip community-list standard 1_248_255 permit 65000:1 0:248 0:255 ip community-list standard 1_249_254 permit 65000:1 0:249 0:254 ip community-list standard 1_250_253 permit 65000:1 0:250 0:253 ip community-list standard 1_251_252 permit 65000:1 0:251 0:252 route-map calculator permit 28665 match community 1_247_256 1_248_255 1_249_254 1_250_253 1_251_252 set community 0:503 ip community-list standard 2_139_207 permit 65000:2 0:139 0:207 route-map calculator permit 28666 match community 2_139_207 set community 0:28773 ip community-list standard 2_167_181 permit 65000:2 0:167 0:181 route-map calculator permit 28667 match community 2_167_181 set community 0:30227 ip community-list standard 2_89_214 permit 65000:2 0:89 0:214 ip community-list standard 2_107_178 permit 65000:2 0:107 0:178 route-map calculator permit 28668 match community 2_89_214 2_107_178 set community 0:19046 ip community-list standard 2_20_157 permit 65000:2 0:20 0:157 route-map calculator permit 28669 match community 2_20_157 set community 0:3140 ip community-list standard 2_37_202 permit 65000:2 0:37 0:202 ip community-list standard 2_74_101 permit 65000:2 0:74 0:101 route-map calculator permit 28670 match community 2_37_202 2_74_101 set community 0:7474 ip community-list standard 2_73_212 permit 65000:2 0:73 0:212 ip community-list standard 2_106_146 permit 65000:2 0:106 0:146 route-map calculator permit 28671 match community 2_73_212 2_106_146 set community 0:15476 ip community-list standard 2_34_213 permit 65000:2 0:34 0:213 ip community-list standard 2_51_142 permit 65000:2 0:51 0:142 ip community-list standard 2_71_102 permit 65000:2 0:71 0:102 route-map calculator permit 28672 match community 2_34_213 2_51_142 2_71_102 set community 0:7242 ip community-list standard 2_181_224 permit 65000:2 0:181 0:224 route-map calculator permit 28673 match community 2_181_224 set community 0:40544 ip community-list standard 2_138_247 permit 65000:2 0:138 0:247 route-map calculator permit 28674 match community 2_138_247 set community 0:34086 ip community-list standard 2_29_187 permit 65000:2 0:29 0:187 route-map calculator permit 28675 match community 2_29_187 set community 0:5423 ip community-list standard 2_29_244 permit 65000:2 0:29 0:244 ip community-list standard 2_58_122 permit 65000:2 0:58 0:122 ip community-list standard 2_61_116 permit 65000:2 0:61 0:116 route-map calculator permit 28676 match community 2_29_244 2_58_122 2_61_116 set community 0:7076 ip community-list standard 2_128_256 permit 65000:2 0:128 0:256 route-map calculator permit 28677 match community 2_128_256 set community 0:32768 ip community-list standard 2_19_61 permit 65000:2 0:19 0:61 route-map calculator permit 28678 match community 2_19_61 set community 0:1159 ip community-list standard 2_206_253 permit 65000:2 0:206 0:253 route-map calculator permit 28679 match community 2_206_253 set community 0:52118 ip community-list standard 2_64_191 permit 65000:2 0:64 0:191 route-map calculator permit 28680 match community 2_64_191 set community 0:12224 ip community-list standard 2_142_154 permit 65000:2 0:142 0:154 route-map calculator permit 28681 match community 2_142_154 set community 0:21868 ip community-list standard 2_12_169 permit 65000:2 0:12 0:169 ip community-list standard 2_13_156 permit 65000:2 0:13 0:156 ip community-list standard 2_26_78 permit 65000:2 0:26 0:78 ip community-list standard 2_39_52 permit 65000:2 0:39 0:52 route-map calculator permit 28682 match community 2_12_169 2_13_156 2_26_78 2_39_52 set community 0:2028 ip community-list standard 2_192_246 permit 65000:2 0:192 0:246 route-map calculator permit 28683 match community 2_192_246 set community 0:47232 ip community-list standard 2_77_229 permit 65000:2 0:77 0:229 route-map calculator permit 28684 match community 2_77_229 set community 0:17633 ip community-list standard 2_32_190 permit 65000:2 0:32 0:190 ip community-list standard 2_38_160 permit 65000:2 0:38 0:160 ip community-list standard 2_40_152 permit 65000:2 0:40 0:152 ip community-list standard 2_64_95 permit 65000:2 0:64 0:95 ip community-list standard 2_76_80 permit 65000:2 0:76 0:80 route-map calculator permit 28685 match community 2_32_190 2_38_160 2_40_152 2_64_95 2_76_80 set community 0:6080 ip community-list standard 2_63_195 permit 65000:2 0:63 0:195 ip community-list standard 2_65_189 permit 65000:2 0:65 0:189 ip community-list standard 2_91_135 permit 65000:2 0:91 0:135 ip community-list standard 2_105_117 permit 65000:2 0:105 0:117 route-map calculator permit 28686 match community 2_63_195 2_65_189 2_91_135 2_105_117 set community 0:12285 ip community-list standard 2_208_231 permit 65000:2 0:208 0:231 route-map calculator permit 28687 match community 2_208_231 set community 0:48048 ip community-list standard 2_17_241 permit 65000:2 0:17 0:241 route-map calculator permit 28688 match community 2_17_241 set community 0:4097 ip community-list standard 2_106_161 permit 65000:2 0:106 0:161 route-map calculator permit 28689 match community 2_106_161 set community 0:17066 ip community-list standard 2_183_246 permit 65000:2 0:183 0:246 route-map calculator permit 28690 match community 2_183_246 set community 0:45018 ip community-list standard 2_52_215 permit 65000:2 0:52 0:215 ip community-list standard 2_65_172 permit 65000:2 0:65 0:172 ip community-list standard 2_86_130 permit 65000:2 0:86 0:130 route-map calculator permit 28691 match community 2_52_215 2_65_172 2_86_130 set community 0:11180 ip community-list standard 2_132_212 permit 65000:2 0:132 0:212 ip community-list standard 2_159_176 permit 65000:2 0:159 0:176 route-map calculator permit 28692 match community 2_132_212 2_159_176 set community 0:27984 ip community-list standard 2_89_107 permit 65000:2 0:89 0:107 route-map calculator permit 28693 match community 2_89_107 set community 0:9523 ip community-list standard 2_174_236 permit 65000:2 0:174 0:236 ip community-list standard 2_177_232 permit 65000:2 0:177 0:232 route-map calculator permit 28694 match community 2_174_236 2_177_232 set community 0:41064 ip community-list standard 2_37_231 permit 65000:2 0:37 0:231 ip community-list standard 2_77_111 permit 65000:2 0:77 0:111 route-map calculator permit 28695 match community 2_37_231 2_77_111 set community 0:8547 ip community-list standard 2_167_225 permit 65000:2 0:167 0:225 route-map calculator permit 28696 match community 2_167_225 set community 0:37575 ip community-list standard 2_25_187 permit 65000:2 0:25 0:187 ip community-list standard 2_55_85 permit 65000:2 0:55 0:85 route-map calculator permit 28697 match community 2_25_187 2_55_85 set community 0:4675 ip community-list standard 2_149_256 permit 65000:2 0:149 0:256 route-map calculator permit 28698 match community 2_149_256 set community 0:38144 ip community-list standard 2_183_219 permit 65000:2 0:183 0:219 route-map calculator permit 28699 match community 2_183_219 set community 0:40077 ip community-list standard 2_2_218 permit 65000:2 0:2 0:218 ip community-list standard 2_4_109 permit 65000:2 0:4 0:109 ip community-list standard 1_180_256 permit 65000:1 0:180 0:256 ip community-list standard 1_181_255 permit 65000:1 0:181 0:255 ip community-list standard 1_182_254 permit 65000:1 0:182 0:254 ip community-list standard 1_183_253 permit 65000:1 0:183 0:253 ip community-list standard 1_184_252 permit 65000:1 0:184 0:252 ip community-list standard 1_185_251 permit 65000:1 0:185 0:251 ip community-list standard 1_186_250 permit 65000:1 0:186 0:250 ip community-list standard 1_187_249 permit 65000:1 0:187 0:249 ip community-list standard 1_188_248 permit 65000:1 0:188 0:248 ip community-list standard 1_189_247 permit 65000:1 0:189 0:247 ip community-list standard 1_190_246 permit 65000:1 0:190 0:246 ip community-list standard 1_191_245 permit 65000:1 0:191 0:245 ip community-list standard 1_192_244 permit 65000:1 0:192 0:244 ip community-list standard 1_193_243 permit 65000:1 0:193 0:243 ip community-list standard 1_194_242 permit 65000:1 0:194 0:242 ip community-list standard 1_195_241 permit 65000:1 0:195 0:241 ip community-list standard 1_196_240 permit 65000:1 0:196 0:240 ip community-list standard 1_197_239 permit 65000:1 0:197 0:239 ip community-list standard 1_198_238 permit 65000:1 0:198 0:238 ip community-list standard 1_199_237 permit 65000:1 0:199 0:237 ip community-list standard 1_200_236 permit 65000:1 0:200 0:236 ip community-list standard 1_201_235 permit 65000:1 0:201 0:235 ip community-list standard 1_202_234 permit 65000:1 0:202 0:234 ip community-list standard 1_203_233 permit 65000:1 0:203 0:233 ip community-list standard 1_204_232 permit 65000:1 0:204 0:232 ip community-list standard 1_205_231 permit 65000:1 0:205 0:231 ip community-list standard 1_206_230 permit 65000:1 0:206 0:230 ip community-list standard 1_207_229 permit 65000:1 0:207 0:229 ip community-list standard 1_208_228 permit 65000:1 0:208 0:228 ip community-list standard 1_209_227 permit 65000:1 0:209 0:227 ip community-list standard 1_210_226 permit 65000:1 0:210 0:226 ip community-list standard 1_211_225 permit 65000:1 0:211 0:225 ip community-list standard 1_212_224 permit 65000:1 0:212 0:224 ip community-list standard 1_213_223 permit 65000:1 0:213 0:223 ip community-list standard 1_214_222 permit 65000:1 0:214 0:222 ip community-list standard 1_215_221 permit 65000:1 0:215 0:221 ip community-list standard 1_216_220 permit 65000:1 0:216 0:220 ip community-list standard 1_217_219 permit 65000:1 0:217 0:219 ip community-list standard 1_218_218 permit 65000:1 0:218 0:218 route-map calculator permit 28700 match community 2_2_218 2_4_109 1_180_256 1_181_255 1_182_254 set community 0:436 route-map calculator permit 28701 match community 1_183_253 1_184_252 1_185_251 1_186_250 1_187_249 set community 0:436 route-map calculator permit 28702 match community 1_188_248 1_189_247 1_190_246 1_191_245 1_192_244 set community 0:436 route-map calculator permit 28703 match community 1_193_243 1_194_242 1_195_241 1_196_240 1_197_239 set community 0:436 route-map calculator permit 28704 match community 1_198_238 1_199_237 1_200_236 1_201_235 1_202_234 set community 0:436 route-map calculator permit 28705 match community 1_203_233 1_204_232 1_205_231 1_206_230 1_207_229 set community 0:436 route-map calculator permit 28706 match community 1_208_228 1_209_227 1_210_226 1_211_225 1_212_224 set community 0:436 route-map calculator permit 28707 match community 1_213_223 1_214_222 1_215_221 1_216_220 1_217_219 set community 0:436 route-map calculator permit 28708 match community 1_218_218 set community 0:436 ip community-list standard 2_193_205 permit 65000:2 0:193 0:205 route-map calculator permit 28709 match community 2_193_205 set community 0:39565 ip community-list standard 2_200_233 permit 65000:2 0:200 0:233 route-map calculator permit 28710 match community 2_200_233 set community 0:46600 ip community-list standard 2_97_153 permit 65000:2 0:97 0:153 route-map calculator permit 28711 match community 2_97_153 set community 0:14841 ip community-list standard 2_31_83 permit 65000:2 0:31 0:83 route-map calculator permit 28712 match community 2_31_83 set community 0:2573 ip community-list standard 2_156_245 permit 65000:2 0:156 0:245 ip community-list standard 2_182_210 permit 65000:2 0:182 0:210 ip community-list standard 2_195_196 permit 65000:2 0:195 0:196 route-map calculator permit 28713 match community 2_156_245 2_182_210 2_195_196 set community 0:38220 ip community-list standard 2_71_231 permit 65000:2 0:71 0:231 ip community-list standard 2_77_213 permit 65000:2 0:77 0:213 route-map calculator permit 28714 match community 2_71_231 2_77_213 set community 0:16401 ip community-list standard 2_159_165 permit 65000:2 0:159 0:165 route-map calculator permit 28715 match community 2_159_165 set community 0:26235 ip community-list standard 2_124_157 permit 65000:2 0:124 0:157 route-map calculator permit 28716 match community 2_124_157 set community 0:19468 ip community-list standard 2_27_185 permit 65000:2 0:27 0:185 ip community-list standard 2_37_135 permit 65000:2 0:37 0:135 ip community-list standard 2_45_111 permit 65000:2 0:45 0:111 route-map calculator permit 28717 match community 2_27_185 2_37_135 2_45_111 set community 0:4995 ip community-list standard 2_73_217 permit 65000:2 0:73 0:217 route-map calculator permit 28718 match community 2_73_217 set community 0:15841 ip community-list standard 2_153_256 permit 65000:2 0:153 0:256 ip community-list standard 2_192_204 permit 65000:2 0:192 0:204 route-map calculator permit 28719 match community 2_153_256 2_192_204 set community 0:39168 ip community-list standard 2_136_244 permit 65000:2 0:136 0:244 route-map calculator permit 28720 match community 2_136_244 set community 0:33184 ip community-list standard 2_164_166 permit 65000:2 0:164 0:166 route-map calculator permit 28721 match community 2_164_166 set community 0:27224 ip community-list standard 2_118_145 permit 65000:2 0:118 0:145 route-map calculator permit 28722 match community 2_118_145 set community 0:17110 ip community-list standard 2_172_215 permit 65000:2 0:172 0:215 route-map calculator permit 28723 match community 2_172_215 set community 0:36980 ip community-list standard 2_130_212 permit 65000:2 0:130 0:212 route-map calculator permit 28724 match community 2_130_212 set community 0:27560 ip community-list standard 2_126_227 permit 65000:2 0:126 0:227 route-map calculator permit 28725 match community 2_126_227 set community 0:28602 ip community-list standard 2_116_167 permit 65000:2 0:116 0:167 route-map calculator permit 28726 match community 2_116_167 set community 0:19372 ip community-list standard 2_6_149 permit 65000:2 0:6 0:149 route-map calculator permit 28727 match community 2_6_149 set community 0:894 ip community-list standard 2_161_248 permit 65000:2 0:161 0:248 ip community-list standard 2_184_217 permit 65000:2 0:184 0:217 route-map calculator permit 28728 match community 2_161_248 2_184_217 set community 0:39928 ip community-list standard 2_9_187 permit 65000:2 0:9 0:187 ip community-list standard 2_11_153 permit 65000:2 0:11 0:153 ip community-list standard 2_17_99 permit 65000:2 0:17 0:99 ip community-list standard 2_33_51 permit 65000:2 0:33 0:51 route-map calculator permit 28729 match community 2_9_187 2_11_153 2_17_99 2_33_51 set community 0:1683 ip community-list standard 2_187_223 permit 65000:2 0:187 0:223 route-map calculator permit 28730 match community 2_187_223 set community 0:41701 ip community-list standard 2_224_235 permit 65000:2 0:224 0:235 route-map calculator permit 28731 match community 2_224_235 set community 0:52640 ip community-list standard 2_54_157 permit 65000:2 0:54 0:157 route-map calculator permit 28732 match community 2_54_157 set community 0:8478 ip community-list standard 2_97_141 permit 65000:2 0:97 0:141 route-map calculator permit 28733 match community 2_97_141 set community 0:13677 ip community-list standard 2_131_161 permit 65000:2 0:131 0:161 route-map calculator permit 28734 match community 2_131_161 set community 0:21091 ip community-list standard 2_94_249 permit 65000:2 0:94 0:249 ip community-list standard 2_141_166 permit 65000:2 0:141 0:166 route-map calculator permit 28735 match community 2_94_249 2_141_166 set community 0:23406 ip community-list standard 2_186_207 permit 65000:2 0:186 0:207 route-map calculator permit 28736 match community 2_186_207 set community 0:38502 ip community-list standard 2_193_198 permit 65000:2 0:193 0:198 route-map calculator permit 28737 match community 2_193_198 set community 0:38214 ip community-list standard 1_1_9 permit 65000:1 0:1 0:9 ip community-list standard 2_1_10 permit 65000:2 0:1 0:10 ip community-list standard 2_2_5 permit 65000:2 0:2 0:5 ip community-list standard 1_2_8 permit 65000:1 0:2 0:8 ip community-list standard 1_3_7 permit 65000:1 0:3 0:7 ip community-list standard 1_4_6 permit 65000:1 0:4 0:6 ip community-list standard 1_5_5 permit 65000:1 0:5 0:5 ip community-list expanded c10 permit 1 ^65000:4_0:10_0:1$ ip community-list expanded c10 permit 2 ^65000:3_0:11_0:1$ ip community-list expanded c10 permit 3 ^65000:3_0:12_0:2$ ip community-list expanded c10 permit 4 ^65000:3_0:13_0:3$ ip community-list expanded c10 permit 5 ^65000:3_0:14_0:4$ ip community-list expanded c10 permit 6 ^65000:3_0:15_0:5$ ip community-list expanded c10 permit 7 ^65000:3_0:16_0:6$ ip community-list expanded c10 permit 8 ^65000:3_0:17_0:7$ ip community-list expanded c10 permit 9 ^65000:3_0:18_0:8$ ip community-list expanded c10 permit 10 ^65000:3_0:19_0:9$ ip community-list expanded c10 permit 11 ^65000:4_0:20_0:2$ ip community-list expanded c10 permit 12 ^65000:3_0:20_0:10$ ip community-list expanded c10 permit 13 ^65000:4_0:21_0:2$ ip community-list expanded c10 permit 14 ^65000:3_0:21_0:11$ ip community-list expanded c10 permit 15 ^65000:3_0:22_0:12$ ip community-list expanded c10 permit 16 ^65000:3_0:23_0:13$ ip community-list expanded c10 permit 17 ^65000:3_0:24_0:14$ ip community-list expanded c10 permit 18 ^65000:3_0:25_0:15$ ip community-list expanded c10 permit 19 ^65000:3_0:26_0:16$ ip community-list expanded c10 permit 20 ^65000:3_0:27_0:17$ ip community-list expanded c10 permit 21 ^65000:3_0:28_0:18$ ip community-list expanded c10 permit 22 ^65000:3_0:29_0:19$ ip community-list expanded c10 permit 23 ^65000:4_0:30_0:3$ ip community-list expanded c10 permit 24 ^65000:3_0:30_0:20$ ip community-list expanded c10 permit 25 ^65000:4_0:31_0:3$ ip community-list expanded c10 permit 26 ^65000:3_0:31_0:21$ ip community-list expanded c10 permit 27 ^65000:4_0:32_0:3$ ip community-list expanded c10 permit 28 ^65000:3_0:32_0:22$ ip community-list expanded c10 permit 29 ^65000:3_0:33_0:23$ ip community-list expanded c10 permit 30 ^65000:3_0:34_0:24$ ip community-list expanded c10 permit 31 ^65000:3_0:35_0:25$ ip community-list expanded c10 permit 32 ^65000:3_0:36_0:26$ ip community-list expanded c10 permit 33 ^65000:3_0:37_0:27$ ip community-list expanded c10 permit 34 ^65000:3_0:38_0:28$ ip community-list expanded c10 permit 35 ^65000:3_0:39_0:29$ ip community-list expanded c10 permit 36 ^65000:4_0:40_0:4$ ip community-list expanded c10 permit 37 ^65000:3_0:40_0:30$ ip community-list expanded c10 permit 38 ^65000:4_0:41_0:4$ ip community-list expanded c10 permit 39 ^65000:3_0:41_0:31$ ip community-list expanded c10 permit 40 ^65000:4_0:42_0:4$ ip community-list expanded c10 permit 41 ^65000:3_0:42_0:32$ ip community-list expanded c10 permit 42 ^65000:4_0:43_0:4$ ip community-list expanded c10 permit 43 ^65000:3_0:43_0:33$ ip community-list expanded c10 permit 44 ^65000:3_0:44_0:34$ ip community-list expanded c10 permit 45 ^65000:3_0:45_0:35$ ip community-list expanded c10 permit 46 ^65000:3_0:46_0:36$ ip community-list expanded c10 permit 47 ^65000:3_0:47_0:37$ ip community-list expanded c10 permit 48 ^65000:3_0:48_0:38$ ip community-list expanded c10 permit 49 ^65000:3_0:49_0:39$ ip community-list expanded c10 permit 50 ^65000:4_0:50_0:5$ ip community-list expanded c10 permit 51 ^65000:3_0:50_0:40$ ip community-list expanded c10 permit 52 ^65000:4_0:51_0:5$ ip community-list expanded c10 permit 53 ^65000:3_0:51_0:41$ ip community-list expanded c10 permit 54 ^65000:4_0:52_0:5$ ip community-list expanded c10 permit 55 ^65000:3_0:52_0:42$ ip community-list expanded c10 permit 56 ^65000:4_0:53_0:5$ ip community-list expanded c10 permit 57 ^65000:3_0:53_0:43$ ip community-list expanded c10 permit 58 ^65000:4_0:54_0:5$ ip community-list expanded c10 permit 59 ^65000:3_0:54_0:44$ ip community-list expanded c10 permit 60 ^65000:3_0:55_0:45$ ip community-list expanded c10 permit 61 ^65000:3_0:56_0:46$ ip community-list expanded c10 permit 62 ^65000:3_0:57_0:47$ ip community-list expanded c10 permit 63 ^65000:3_0:58_0:48$ ip community-list expanded c10 permit 64 ^65000:3_0:59_0:49$ ip community-list expanded c10 permit 65 ^65000:4_0:60_0:6$ ip community-list expanded c10 permit 66 ^65000:3_0:60_0:50$ ip community-list expanded c10 permit 67 ^65000:4_0:61_0:6$ ip community-list expanded c10 permit 68 ^65000:3_0:61_0:51$ ip community-list expanded c10 permit 69 ^65000:4_0:62_0:6$ ip community-list expanded c10 permit 70 ^65000:3_0:62_0:52$ ip community-list expanded c10 permit 71 ^65000:4_0:63_0:6$ ip community-list expanded c10 permit 72 ^65000:3_0:63_0:53$ ip community-list expanded c10 permit 73 ^65000:4_0:64_0:6$ ip community-list expanded c10 permit 74 ^65000:3_0:64_0:54$ ip community-list expanded c10 permit 75 ^65000:4_0:65_0:6$ ip community-list expanded c10 permit 76 ^65000:3_0:65_0:55$ ip community-list expanded c10 permit 77 ^65000:3_0:66_0:56$ ip community-list expanded c10 permit 78 ^65000:3_0:67_0:57$ ip community-list expanded c10 permit 79 ^65000:3_0:68_0:58$ ip community-list expanded c10 permit 80 ^65000:3_0:69_0:59$ ip community-list expanded c10 permit 81 ^65000:4_0:70_0:7$ ip community-list expanded c10 permit 82 ^65000:3_0:70_0:60$ ip community-list expanded c10 permit 83 ^65000:4_0:71_0:7$ ip community-list expanded c10 permit 84 ^65000:3_0:71_0:61$ ip community-list expanded c10 permit 85 ^65000:4_0:72_0:7$ ip community-list expanded c10 permit 86 ^65000:3_0:72_0:62$ ip community-list expanded c10 permit 87 ^65000:4_0:73_0:7$ ip community-list expanded c10 permit 88 ^65000:3_0:73_0:63$ ip community-list expanded c10 permit 89 ^65000:4_0:74_0:7$ ip community-list expanded c10 permit 90 ^65000:3_0:74_0:64$ ip community-list expanded c10 permit 91 ^65000:4_0:75_0:7$ ip community-list expanded c10 permit 92 ^65000:3_0:75_0:65$ ip community-list expanded c10 permit 93 ^65000:4_0:76_0:7$ ip community-list expanded c10 permit 94 ^65000:3_0:76_0:66$ ip community-list expanded c10 permit 95 ^65000:3_0:77_0:67$ ip community-list expanded c10 permit 96 ^65000:3_0:78_0:68$ ip community-list expanded c10 permit 97 ^65000:3_0:79_0:69$ ip community-list expanded c10 permit 98 ^65000:4_0:80_0:8$ ip community-list expanded c10 permit 99 ^65000:3_0:80_0:70$ ip community-list expanded c10 permit 100 ^65000:4_0:81_0:8$ ip community-list expanded c10 permit 101 ^65000:3_0:81_0:71$ ip community-list expanded c10 permit 102 ^65000:4_0:82_0:8$ ip community-list expanded c10 permit 103 ^65000:3_0:82_0:72$ ip community-list expanded c10 permit 104 ^65000:4_0:83_0:8$ ip community-list expanded c10 permit 105 ^65000:3_0:83_0:73$ ip community-list expanded c10 permit 106 ^65000:4_0:84_0:8$ ip community-list expanded c10 permit 107 ^65000:3_0:84_0:74$ ip community-list expanded c10 permit 108 ^65000:4_0:85_0:8$ ip community-list expanded c10 permit 109 ^65000:3_0:85_0:75$ ip community-list expanded c10 permit 110 ^65000:4_0:86_0:8$ ip community-list expanded c10 permit 111 ^65000:3_0:86_0:76$ ip community-list expanded c10 permit 112 ^65000:4_0:87_0:8$ ip community-list expanded c10 permit 113 ^65000:3_0:87_0:77$ ip community-list expanded c10 permit 114 ^65000:3_0:88_0:78$ ip community-list expanded c10 permit 115 ^65000:3_0:89_0:79$ ip community-list expanded c10 permit 116 ^65000:4_0:90_0:9$ ip community-list expanded c10 permit 117 ^65000:3_0:90_0:80$ ip community-list expanded c10 permit 118 ^65000:4_0:91_0:9$ ip community-list expanded c10 permit 119 ^65000:3_0:91_0:81$ ip community-list expanded c10 permit 120 ^65000:4_0:92_0:9$ ip community-list expanded c10 permit 121 ^65000:3_0:92_0:82$ ip community-list expanded c10 permit 122 ^65000:4_0:93_0:9$ ip community-list expanded c10 permit 123 ^65000:3_0:93_0:83$ ip community-list expanded c10 permit 124 ^65000:4_0:94_0:9$ ip community-list expanded c10 permit 125 ^65000:3_0:94_0:84$ ip community-list expanded c10 permit 126 ^65000:4_0:95_0:9$ ip community-list expanded c10 permit 127 ^65000:3_0:95_0:85$ ip community-list expanded c10 permit 128 ^65000:4_0:96_0:9$ ip community-list expanded c10 permit 129 ^65000:3_0:96_0:86$ ip community-list expanded c10 permit 130 ^65000:4_0:97_0:9$ ip community-list expanded c10 permit 131 ^65000:3_0:97_0:87$ ip community-list expanded c10 permit 132 ^65000:4_0:98_0:9$ ip community-list expanded c10 permit 133 ^65000:3_0:98_0:88$ ip community-list expanded c10 permit 134 ^65000:3_0:99_0:89$ ip community-list expanded c10 permit 135 ^65000:4_0:100_0:10$ ip community-list expanded c10 permit 136 ^65000:3_0:100_0:90$ ip community-list expanded c10 permit 137 ^65000:4_0:101_0:10$ ip community-list expanded c10 permit 138 ^65000:3_0:101_0:91$ ip community-list expanded c10 permit 139 ^65000:4_0:102_0:10$ ip community-list expanded c10 permit 140 ^65000:3_0:102_0:92$ ip community-list expanded c10 permit 141 ^65000:4_0:103_0:10$ ip community-list expanded c10 permit 142 ^65000:3_0:103_0:93$ ip community-list expanded c10 permit 143 ^65000:4_0:104_0:10$ ip community-list expanded c10 permit 144 ^65000:3_0:104_0:94$ ip community-list expanded c10 permit 145 ^65000:4_0:105_0:10$ ip community-list expanded c10 permit 146 ^65000:3_0:105_0:95$ ip community-list expanded c10 permit 147 ^65000:4_0:106_0:10$ ip community-list expanded c10 permit 148 ^65000:3_0:106_0:96$ ip community-list expanded c10 permit 149 ^65000:4_0:107_0:10$ ip community-list expanded c10 permit 150 ^65000:3_0:107_0:97$ ip community-list expanded c10 permit 151 ^65000:4_0:108_0:10$ ip community-list expanded c10 permit 152 ^65000:3_0:108_0:98$ ip community-list expanded c10 permit 153 ^65000:4_0:109_0:10$ ip community-list expanded c10 permit 154 ^65000:3_0:109_0:99$ ip community-list expanded c10 permit 155 ^65000:4_0:110_0:11$ ip community-list expanded c10 permit 156 ^65000:3_0:110_0:100$ ip community-list expanded c10 permit 157 ^65000:4_0:111_0:11$ ip community-list expanded c10 permit 158 ^65000:3_0:111_0:101$ ip community-list expanded c10 permit 159 ^65000:4_0:112_0:11$ ip community-list expanded c10 permit 160 ^65000:3_0:112_0:102$ ip community-list expanded c10 permit 161 ^65000:4_0:113_0:11$ ip community-list expanded c10 permit 162 ^65000:3_0:113_0:103$ ip community-list expanded c10 permit 163 ^65000:4_0:114_0:11$ ip community-list expanded c10 permit 164 ^65000:3_0:114_0:104$ ip community-list expanded c10 permit 165 ^65000:4_0:115_0:11$ ip community-list expanded c10 permit 166 ^65000:3_0:115_0:105$ ip community-list expanded c10 permit 167 ^65000:4_0:116_0:11$ ip community-list expanded c10 permit 168 ^65000:3_0:116_0:106$ ip community-list expanded c10 permit 169 ^65000:4_0:117_0:11$ ip community-list expanded c10 permit 170 ^65000:3_0:117_0:107$ ip community-list expanded c10 permit 171 ^65000:4_0:118_0:11$ ip community-list expanded c10 permit 172 ^65000:3_0:118_0:108$ ip community-list expanded c10 permit 173 ^65000:4_0:119_0:11$ ip community-list expanded c10 permit 174 ^65000:3_0:119_0:109$ ip community-list expanded c10 permit 175 ^65000:4_0:120_0:11$ ip community-list expanded c10 permit 176 ^65000:4_0:120_0:12$ ip community-list expanded c10 permit 177 ^65000:3_0:120_0:110$ ip community-list expanded c10 permit 178 ^65000:4_0:121_0:12$ ip community-list expanded c10 permit 179 ^65000:3_0:121_0:111$ ip community-list expanded c10 permit 180 ^65000:4_0:122_0:12$ ip community-list expanded c10 permit 181 ^65000:3_0:122_0:112$ ip community-list expanded c10 permit 182 ^65000:4_0:123_0:12$ ip community-list expanded c10 permit 183 ^65000:3_0:123_0:113$ ip community-list expanded c10 permit 184 ^65000:4_0:124_0:12$ ip community-list expanded c10 permit 185 ^65000:3_0:124_0:114$ ip community-list expanded c10 permit 186 ^65000:4_0:125_0:12$ ip community-list expanded c10 permit 187 ^65000:3_0:125_0:115$ ip community-list expanded c10 permit 188 ^65000:4_0:126_0:12$ ip community-list expanded c10 permit 189 ^65000:3_0:126_0:116$ ip community-list expanded c10 permit 190 ^65000:4_0:127_0:12$ ip community-list expanded c10 permit 191 ^65000:3_0:127_0:117$ ip community-list expanded c10 permit 192 ^65000:4_0:128_0:12$ ip community-list expanded c10 permit 193 ^65000:3_0:128_0:118$ ip community-list expanded c10 permit 194 ^65000:4_0:129_0:12$ ip community-list expanded c10 permit 195 ^65000:3_0:129_0:119$ ip community-list expanded c10 permit 196 ^65000:4_0:130_0:12$ ip community-list expanded c10 permit 197 ^65000:4_0:130_0:13$ ip community-list expanded c10 permit 198 ^65000:3_0:130_0:120$ ip community-list expanded c10 permit 199 ^65000:4_0:131_0:12$ ip community-list expanded c10 permit 200 ^65000:4_0:131_0:13$ ip community-list expanded c10 permit 201 ^65000:3_0:131_0:121$ ip community-list expanded c10 permit 202 ^65000:4_0:132_0:13$ ip community-list expanded c10 permit 203 ^65000:3_0:132_0:122$ ip community-list expanded c10 permit 204 ^65000:4_0:133_0:13$ ip community-list expanded c10 permit 205 ^65000:3_0:133_0:123$ ip community-list expanded c10 permit 206 ^65000:4_0:134_0:13$ ip community-list expanded c10 permit 207 ^65000:3_0:134_0:124$ ip community-list expanded c10 permit 208 ^65000:4_0:135_0:13$ ip community-list expanded c10 permit 209 ^65000:3_0:135_0:125$ ip community-list expanded c10 permit 210 ^65000:4_0:136_0:13$ ip community-list expanded c10 permit 211 ^65000:3_0:136_0:126$ ip community-list expanded c10 permit 212 ^65000:4_0:137_0:13$ ip community-list expanded c10 permit 213 ^65000:3_0:137_0:127$ ip community-list expanded c10 permit 214 ^65000:4_0:138_0:13$ ip community-list expanded c10 permit 215 ^65000:3_0:138_0:128$ ip community-list expanded c10 permit 216 ^65000:4_0:139_0:13$ ip community-list expanded c10 permit 217 ^65000:3_0:139_0:129$ ip community-list expanded c10 permit 218 ^65000:4_0:140_0:13$ ip community-list expanded c10 permit 219 ^65000:4_0:140_0:14$ ip community-list expanded c10 permit 220 ^65000:3_0:140_0:130$ ip community-list expanded c10 permit 221 ^65000:4_0:141_0:13$ ip community-list expanded c10 permit 222 ^65000:4_0:141_0:14$ ip community-list expanded c10 permit 223 ^65000:3_0:141_0:131$ ip community-list expanded c10 permit 224 ^65000:4_0:142_0:13$ ip community-list expanded c10 permit 225 ^65000:4_0:142_0:14$ ip community-list expanded c10 permit 226 ^65000:3_0:142_0:132$ ip community-list expanded c10 permit 227 ^65000:4_0:143_0:14$ ip community-list expanded c10 permit 228 ^65000:3_0:143_0:133$ ip community-list expanded c10 permit 229 ^65000:4_0:144_0:14$ ip community-list expanded c10 permit 230 ^65000:3_0:144_0:134$ ip community-list expanded c10 permit 231 ^65000:4_0:145_0:14$ ip community-list expanded c10 permit 232 ^65000:3_0:145_0:135$ ip community-list expanded c10 permit 233 ^65000:4_0:146_0:14$ ip community-list expanded c10 permit 234 ^65000:3_0:146_0:136$ ip community-list expanded c10 permit 235 ^65000:4_0:147_0:14$ ip community-list expanded c10 permit 236 ^65000:3_0:147_0:137$ ip community-list expanded c10 permit 237 ^65000:4_0:148_0:14$ ip community-list expanded c10 permit 238 ^65000:3_0:148_0:138$ ip community-list expanded c10 permit 239 ^65000:4_0:149_0:14$ ip community-list expanded c10 permit 240 ^65000:3_0:149_0:139$ ip community-list expanded c10 permit 241 ^65000:4_0:150_0:14$ ip community-list expanded c10 permit 242 ^65000:4_0:150_0:15$ ip community-list expanded c10 permit 243 ^65000:3_0:150_0:140$ ip community-list expanded c10 permit 244 ^65000:4_0:151_0:14$ ip community-list expanded c10 permit 245 ^65000:4_0:151_0:15$ ip community-list expanded c10 permit 246 ^65000:3_0:151_0:141$ ip community-list expanded c10 permit 247 ^65000:4_0:152_0:14$ ip community-list expanded c10 permit 248 ^65000:4_0:152_0:15$ ip community-list expanded c10 permit 249 ^65000:3_0:152_0:142$ ip community-list expanded c10 permit 250 ^65000:4_0:153_0:14$ ip community-list expanded c10 permit 251 ^65000:4_0:153_0:15$ ip community-list expanded c10 permit 252 ^65000:3_0:153_0:143$ ip community-list expanded c10 permit 253 ^65000:4_0:154_0:15$ ip community-list expanded c10 permit 254 ^65000:3_0:154_0:144$ ip community-list expanded c10 permit 255 ^65000:4_0:155_0:15$ ip community-list expanded c10 permit 256 ^65000:3_0:155_0:145$ ip community-list expanded c10 permit 257 ^65000:4_0:156_0:15$ ip community-list expanded c10 permit 258 ^65000:3_0:156_0:146$ ip community-list expanded c10 permit 259 ^65000:4_0:157_0:15$ ip community-list expanded c10 permit 260 ^65000:3_0:157_0:147$ ip community-list expanded c10 permit 261 ^65000:4_0:158_0:15$ ip community-list expanded c10 permit 262 ^65000:3_0:158_0:148$ ip community-list expanded c10 permit 263 ^65000:4_0:159_0:15$ ip community-list expanded c10 permit 264 ^65000:3_0:159_0:149$ ip community-list expanded c10 permit 265 ^65000:4_0:160_0:15$ ip community-list expanded c10 permit 266 ^65000:4_0:160_0:16$ ip community-list expanded c10 permit 267 ^65000:3_0:160_0:150$ ip community-list expanded c10 permit 268 ^65000:4_0:161_0:15$ ip community-list expanded c10 permit 269 ^65000:4_0:161_0:16$ ip community-list expanded c10 permit 270 ^65000:3_0:161_0:151$ ip community-list expanded c10 permit 271 ^65000:4_0:162_0:15$ ip community-list expanded c10 permit 272 ^65000:4_0:162_0:16$ ip community-list expanded c10 permit 273 ^65000:3_0:162_0:152$ ip community-list expanded c10 permit 274 ^65000:4_0:163_0:15$ ip community-list expanded c10 permit 275 ^65000:4_0:163_0:16$ ip community-list expanded c10 permit 276 ^65000:3_0:163_0:153$ ip community-list expanded c10 permit 277 ^65000:4_0:164_0:15$ ip community-list expanded c10 permit 278 ^65000:4_0:164_0:16$ ip community-list expanded c10 permit 279 ^65000:3_0:164_0:154$ ip community-list expanded c10 permit 280 ^65000:4_0:165_0:16$ ip community-list expanded c10 permit 281 ^65000:3_0:165_0:155$ ip community-list expanded c10 permit 282 ^65000:4_0:166_0:16$ ip community-list expanded c10 permit 283 ^65000:3_0:166_0:156$ ip community-list expanded c10 permit 284 ^65000:4_0:167_0:16$ ip community-list expanded c10 permit 285 ^65000:3_0:167_0:157$ ip community-list expanded c10 permit 286 ^65000:4_0:168_0:16$ ip community-list expanded c10 permit 287 ^65000:3_0:168_0:158$ ip community-list expanded c10 permit 288 ^65000:4_0:169_0:16$ ip community-list expanded c10 permit 289 ^65000:3_0:169_0:159$ ip community-list expanded c10 permit 290 ^65000:4_0:170_0:16$ ip community-list expanded c10 permit 291 ^65000:4_0:170_0:17$ ip community-list expanded c10 permit 292 ^65000:3_0:170_0:160$ ip community-list expanded c10 permit 293 ^65000:4_0:171_0:16$ ip community-list expanded c10 permit 294 ^65000:4_0:171_0:17$ ip community-list expanded c10 permit 295 ^65000:3_0:171_0:161$ ip community-list expanded c10 permit 296 ^65000:4_0:172_0:16$ ip community-list expanded c10 permit 297 ^65000:4_0:172_0:17$ ip community-list expanded c10 permit 298 ^65000:3_0:172_0:162$ ip community-list expanded c10 permit 299 ^65000:4_0:173_0:16$ ip community-list expanded c10 permit 300 ^65000:4_0:173_0:17$ ip community-list expanded c10 permit 301 ^65000:3_0:173_0:163$ ip community-list expanded c10 permit 302 ^65000:4_0:174_0:16$ ip community-list expanded c10 permit 303 ^65000:4_0:174_0:17$ ip community-list expanded c10 permit 304 ^65000:3_0:174_0:164$ ip community-list expanded c10 permit 305 ^65000:4_0:175_0:16$ ip community-list expanded c10 permit 306 ^65000:4_0:175_0:17$ ip community-list expanded c10 permit 307 ^65000:3_0:175_0:165$ ip community-list expanded c10 permit 308 ^65000:4_0:176_0:17$ ip community-list expanded c10 permit 309 ^65000:3_0:176_0:166$ ip community-list expanded c10 permit 310 ^65000:4_0:177_0:17$ ip community-list expanded c10 permit 311 ^65000:3_0:177_0:167$ ip community-list expanded c10 permit 312 ^65000:4_0:178_0:17$ ip community-list expanded c10 permit 313 ^65000:3_0:178_0:168$ ip community-list expanded c10 permit 314 ^65000:4_0:179_0:17$ ip community-list expanded c10 permit 315 ^65000:3_0:179_0:169$ ip community-list expanded c10 permit 316 ^65000:4_0:180_0:17$ ip community-list expanded c10 permit 317 ^65000:4_0:180_0:18$ ip community-list expanded c10 permit 318 ^65000:3_0:180_0:170$ ip community-list expanded c10 permit 319 ^65000:4_0:181_0:17$ ip community-list expanded c10 permit 320 ^65000:4_0:181_0:18$ ip community-list expanded c10 permit 321 ^65000:3_0:181_0:171$ ip community-list expanded c10 permit 322 ^65000:4_0:182_0:17$ ip community-list expanded c10 permit 323 ^65000:4_0:182_0:18$ ip community-list expanded c10 permit 324 ^65000:3_0:182_0:172$ ip community-list expanded c10 permit 325 ^65000:4_0:183_0:17$ ip community-list expanded c10 permit 326 ^65000:4_0:183_0:18$ ip community-list expanded c10 permit 327 ^65000:3_0:183_0:173$ ip community-list expanded c10 permit 328 ^65000:4_0:184_0:17$ ip community-list expanded c10 permit 329 ^65000:4_0:184_0:18$ ip community-list expanded c10 permit 330 ^65000:3_0:184_0:174$ ip community-list expanded c10 permit 331 ^65000:4_0:185_0:17$ ip community-list expanded c10 permit 332 ^65000:4_0:185_0:18$ ip community-list expanded c10 permit 333 ^65000:3_0:185_0:175$ ip community-list expanded c10 permit 334 ^65000:4_0:186_0:17$ ip community-list expanded c10 permit 335 ^65000:4_0:186_0:18$ ip community-list expanded c10 permit 336 ^65000:3_0:186_0:176$ ip community-list expanded c10 permit 337 ^65000:4_0:187_0:18$ ip community-list expanded c10 permit 338 ^65000:3_0:187_0:177$ ip community-list expanded c10 permit 339 ^65000:4_0:188_0:18$ ip community-list expanded c10 permit 340 ^65000:3_0:188_0:178$ ip community-list expanded c10 permit 341 ^65000:4_0:189_0:18$ ip community-list expanded c10 permit 342 ^65000:3_0:189_0:179$ ip community-list expanded c10 permit 343 ^65000:4_0:190_0:18$ ip community-list expanded c10 permit 344 ^65000:4_0:190_0:19$ ip community-list expanded c10 permit 345 ^65000:3_0:190_0:180$ ip community-list expanded c10 permit 346 ^65000:4_0:191_0:18$ ip community-list expanded c10 permit 347 ^65000:4_0:191_0:19$ ip community-list expanded c10 permit 348 ^65000:3_0:191_0:181$ ip community-list expanded c10 permit 349 ^65000:4_0:192_0:18$ ip community-list expanded c10 permit 350 ^65000:4_0:192_0:19$ ip community-list expanded c10 permit 351 ^65000:3_0:192_0:182$ ip community-list expanded c10 permit 352 ^65000:4_0:193_0:18$ ip community-list expanded c10 permit 353 ^65000:4_0:193_0:19$ ip community-list expanded c10 permit 354 ^65000:3_0:193_0:183$ ip community-list expanded c10 permit 355 ^65000:4_0:194_0:18$ ip community-list expanded c10 permit 356 ^65000:4_0:194_0:19$ ip community-list expanded c10 permit 357 ^65000:3_0:194_0:184$ ip community-list expanded c10 permit 358 ^65000:4_0:195_0:18$ ip community-list expanded c10 permit 359 ^65000:4_0:195_0:19$ ip community-list expanded c10 permit 360 ^65000:3_0:195_0:185$ ip community-list expanded c10 permit 361 ^65000:4_0:196_0:18$ ip community-list expanded c10 permit 362 ^65000:4_0:196_0:19$ ip community-list expanded c10 permit 363 ^65000:3_0:196_0:186$ ip community-list expanded c10 permit 364 ^65000:4_0:197_0:18$ ip community-list expanded c10 permit 365 ^65000:4_0:197_0:19$ ip community-list expanded c10 permit 366 ^65000:3_0:197_0:187$ ip community-list expanded c10 permit 367 ^65000:4_0:198_0:19$ ip community-list expanded c10 permit 368 ^65000:3_0:198_0:188$ ip community-list expanded c10 permit 369 ^65000:4_0:199_0:19$ ip community-list expanded c10 permit 370 ^65000:3_0:199_0:189$ ip community-list expanded c10 permit 371 ^65000:4_0:200_0:19$ ip community-list expanded c10 permit 372 ^65000:4_0:200_0:20$ ip community-list expanded c10 permit 373 ^65000:3_0:200_0:190$ ip community-list expanded c10 permit 374 ^65000:4_0:201_0:19$ ip community-list expanded c10 permit 375 ^65000:4_0:201_0:20$ ip community-list expanded c10 permit 376 ^65000:3_0:201_0:191$ ip community-list expanded c10 permit 377 ^65000:4_0:202_0:19$ ip community-list expanded c10 permit 378 ^65000:4_0:202_0:20$ ip community-list expanded c10 permit 379 ^65000:3_0:202_0:192$ ip community-list expanded c10 permit 380 ^65000:4_0:203_0:19$ ip community-list expanded c10 permit 381 ^65000:4_0:203_0:20$ ip community-list expanded c10 permit 382 ^65000:3_0:203_0:193$ ip community-list expanded c10 permit 383 ^65000:4_0:204_0:19$ ip community-list expanded c10 permit 384 ^65000:4_0:204_0:20$ ip community-list expanded c10 permit 385 ^65000:3_0:204_0:194$ ip community-list expanded c10 permit 386 ^65000:4_0:205_0:19$ ip community-list expanded c10 permit 387 ^65000:4_0:205_0:20$ ip community-list expanded c10 permit 388 ^65000:3_0:205_0:195$ ip community-list expanded c10 permit 389 ^65000:4_0:206_0:19$ ip community-list expanded c10 permit 390 ^65000:4_0:206_0:20$ ip community-list expanded c10 permit 391 ^65000:3_0:206_0:196$ ip community-list expanded c10 permit 392 ^65000:4_0:207_0:19$ ip community-list expanded c10 permit 393 ^65000:4_0:207_0:20$ ip community-list expanded c10 permit 394 ^65000:3_0:207_0:197$ ip community-list expanded c10 permit 395 ^65000:4_0:208_0:19$ ip community-list expanded c10 permit 396 ^65000:4_0:208_0:20$ ip community-list expanded c10 permit 397 ^65000:3_0:208_0:198$ ip community-list expanded c10 permit 398 ^65000:4_0:209_0:20$ ip community-list expanded c10 permit 399 ^65000:3_0:209_0:199$ ip community-list expanded c10 permit 400 ^65000:4_0:210_0:20$ ip community-list expanded c10 permit 401 ^65000:4_0:210_0:21$ ip community-list expanded c10 permit 402 ^65000:3_0:210_0:200$ ip community-list expanded c10 permit 403 ^65000:4_0:211_0:20$ ip community-list expanded c10 permit 404 ^65000:4_0:211_0:21$ ip community-list expanded c10 permit 405 ^65000:3_0:211_0:201$ ip community-list expanded c10 permit 406 ^65000:4_0:212_0:20$ ip community-list expanded c10 permit 407 ^65000:4_0:212_0:21$ ip community-list expanded c10 permit 408 ^65000:3_0:212_0:202$ ip community-list expanded c10 permit 409 ^65000:4_0:213_0:20$ ip community-list expanded c10 permit 410 ^65000:4_0:213_0:21$ ip community-list expanded c10 permit 411 ^65000:3_0:213_0:203$ ip community-list expanded c10 permit 412 ^65000:4_0:214_0:20$ ip community-list expanded c10 permit 413 ^65000:4_0:214_0:21$ ip community-list expanded c10 permit 414 ^65000:3_0:214_0:204$ ip community-list expanded c10 permit 415 ^65000:4_0:215_0:20$ ip community-list expanded c10 permit 416 ^65000:4_0:215_0:21$ ip community-list expanded c10 permit 417 ^65000:3_0:215_0:205$ ip community-list expanded c10 permit 418 ^65000:4_0:216_0:20$ ip community-list expanded c10 permit 419 ^65000:4_0:216_0:21$ ip community-list expanded c10 permit 420 ^65000:3_0:216_0:206$ ip community-list expanded c10 permit 421 ^65000:4_0:217_0:20$ ip community-list expanded c10 permit 422 ^65000:4_0:217_0:21$ ip community-list expanded c10 permit 423 ^65000:3_0:217_0:207$ ip community-list expanded c10 permit 424 ^65000:4_0:218_0:20$ ip community-list expanded c10 permit 425 ^65000:4_0:218_0:21$ ip community-list expanded c10 permit 426 ^65000:3_0:218_0:208$ ip community-list expanded c10 permit 427 ^65000:4_0:219_0:20$ ip community-list expanded c10 permit 428 ^65000:4_0:219_0:21$ ip community-list expanded c10 permit 429 ^65000:3_0:219_0:209$ ip community-list expanded c10 permit 430 ^65000:4_0:220_0:21$ ip community-list expanded c10 permit 431 ^65000:4_0:220_0:22$ ip community-list expanded c10 permit 432 ^65000:3_0:220_0:210$ ip community-list expanded c10 permit 433 ^65000:4_0:221_0:21$ ip community-list expanded c10 permit 434 ^65000:4_0:221_0:22$ ip community-list expanded c10 permit 435 ^65000:3_0:221_0:211$ ip community-list expanded c10 permit 436 ^65000:4_0:222_0:21$ ip community-list expanded c10 permit 437 ^65000:4_0:222_0:22$ ip community-list expanded c10 permit 438 ^65000:3_0:222_0:212$ ip community-list expanded c10 permit 439 ^65000:4_0:223_0:21$ ip community-list expanded c10 permit 440 ^65000:4_0:223_0:22$ ip community-list expanded c10 permit 441 ^65000:3_0:223_0:213$ ip community-list expanded c10 permit 442 ^65000:4_0:224_0:21$ ip community-list expanded c10 permit 443 ^65000:4_0:224_0:22$ ip community-list expanded c10 permit 444 ^65000:3_0:224_0:214$ ip community-list expanded c10 permit 445 ^65000:4_0:225_0:21$ ip community-list expanded c10 permit 446 ^65000:4_0:225_0:22$ ip community-list expanded c10 permit 447 ^65000:3_0:225_0:215$ ip community-list expanded c10 permit 448 ^65000:4_0:226_0:21$ ip community-list expanded c10 permit 449 ^65000:4_0:226_0:22$ ip community-list expanded c10 permit 450 ^65000:3_0:226_0:216$ ip community-list expanded c10 permit 451 ^65000:4_0:227_0:21$ ip community-list expanded c10 permit 452 ^65000:4_0:227_0:22$ ip community-list expanded c10 permit 453 ^65000:3_0:227_0:217$ ip community-list expanded c10 permit 454 ^65000:4_0:228_0:21$ ip community-list expanded c10 permit 455 ^65000:4_0:228_0:22$ ip community-list expanded c10 permit 456 ^65000:3_0:228_0:218$ ip community-list expanded c10 permit 457 ^65000:4_0:229_0:21$ ip community-list expanded c10 permit 458 ^65000:4_0:229_0:22$ ip community-list expanded c10 permit 459 ^65000:3_0:229_0:219$ ip community-list expanded c10 permit 460 ^65000:4_0:230_0:21$ ip community-list expanded c10 permit 461 ^65000:4_0:230_0:22$ ip community-list expanded c10 permit 462 ^65000:4_0:230_0:23$ ip community-list expanded c10 permit 463 ^65000:3_0:230_0:220$ ip community-list expanded c10 permit 464 ^65000:4_0:231_0:22$ ip community-list expanded c10 permit 465 ^65000:4_0:231_0:23$ ip community-list expanded c10 permit 466 ^65000:3_0:231_0:221$ ip community-list expanded c10 permit 467 ^65000:4_0:232_0:22$ ip community-list expanded c10 permit 468 ^65000:4_0:232_0:23$ ip community-list expanded c10 permit 469 ^65000:3_0:232_0:222$ ip community-list expanded c10 permit 470 ^65000:4_0:233_0:22$ ip community-list expanded c10 permit 471 ^65000:4_0:233_0:23$ ip community-list expanded c10 permit 472 ^65000:3_0:233_0:223$ ip community-list expanded c10 permit 473 ^65000:4_0:234_0:22$ ip community-list expanded c10 permit 474 ^65000:4_0:234_0:23$ ip community-list expanded c10 permit 475 ^65000:3_0:234_0:224$ ip community-list expanded c10 permit 476 ^65000:4_0:235_0:22$ ip community-list expanded c10 permit 477 ^65000:4_0:235_0:23$ ip community-list expanded c10 permit 478 ^65000:3_0:235_0:225$ ip community-list expanded c10 permit 479 ^65000:4_0:236_0:22$ ip community-list expanded c10 permit 480 ^65000:4_0:236_0:23$ ip community-list expanded c10 permit 481 ^65000:3_0:236_0:226$ ip community-list expanded c10 permit 482 ^65000:4_0:237_0:22$ ip community-list expanded c10 permit 483 ^65000:4_0:237_0:23$ ip community-list expanded c10 permit 484 ^65000:3_0:237_0:227$ ip community-list expanded c10 permit 485 ^65000:4_0:238_0:22$ ip community-list expanded c10 permit 486 ^65000:4_0:238_0:23$ ip community-list expanded c10 permit 487 ^65000:3_0:238_0:228$ ip community-list expanded c10 permit 488 ^65000:4_0:239_0:22$ ip community-list expanded c10 permit 489 ^65000:4_0:239_0:23$ ip community-list expanded c10 permit 490 ^65000:3_0:239_0:229$ ip community-list expanded c10 permit 491 ^65000:4_0:240_0:22$ ip community-list expanded c10 permit 492 ^65000:4_0:240_0:23$ ip community-list expanded c10 permit 493 ^65000:4_0:240_0:24$ ip community-list expanded c10 permit 494 ^65000:3_0:240_0:230$ ip community-list expanded c10 permit 495 ^65000:4_0:241_0:22$ ip community-list expanded c10 permit 496 ^65000:4_0:241_0:23$ ip community-list expanded c10 permit 497 ^65000:4_0:241_0:24$ ip community-list expanded c10 permit 498 ^65000:3_0:241_0:231$ ip community-list expanded c10 permit 499 ^65000:4_0:242_0:23$ ip community-list expanded c10 permit 500 ^65000:4_0:242_0:24$ ip community-list expanded c10 permit 501 ^65000:3_0:242_0:232$ ip community-list expanded c10 permit 502 ^65000:4_0:243_0:23$ ip community-list expanded c10 permit 503 ^65000:4_0:243_0:24$ ip community-list expanded c10 permit 504 ^65000:3_0:243_0:233$ ip community-list expanded c10 permit 505 ^65000:4_0:244_0:23$ ip community-list expanded c10 permit 506 ^65000:4_0:244_0:24$ ip community-list expanded c10 permit 507 ^65000:3_0:244_0:234$ ip community-list expanded c10 permit 508 ^65000:4_0:245_0:23$ ip community-list expanded c10 permit 509 ^65000:4_0:245_0:24$ ip community-list expanded c10 permit 510 ^65000:3_0:245_0:235$ ip community-list expanded c10 permit 511 ^65000:4_0:246_0:23$ ip community-list expanded c10 permit 512 ^65000:4_0:246_0:24$ ip community-list expanded c10 permit 513 ^65000:3_0:246_0:236$ ip community-list expanded c10 permit 514 ^65000:4_0:247_0:23$ ip community-list expanded c10 permit 515 ^65000:4_0:247_0:24$ ip community-list expanded c10 permit 516 ^65000:3_0:247_0:237$ ip community-list expanded c10 permit 517 ^65000:4_0:248_0:23$ ip community-list expanded c10 permit 518 ^65000:4_0:248_0:24$ ip community-list expanded c10 permit 519 ^65000:3_0:248_0:238$ ip community-list expanded c10 permit 520 ^65000:4_0:249_0:23$ ip community-list expanded c10 permit 521 ^65000:4_0:249_0:24$ ip community-list expanded c10 permit 522 ^65000:3_0:249_0:239$ ip community-list expanded c10 permit 523 ^65000:4_0:250_0:23$ ip community-list expanded c10 permit 524 ^65000:4_0:250_0:24$ ip community-list expanded c10 permit 525 ^65000:4_0:250_0:25$ ip community-list expanded c10 permit 526 ^65000:3_0:250_0:240$ ip community-list expanded c10 permit 527 ^65000:4_0:251_0:23$ ip community-list expanded c10 permit 528 ^65000:4_0:251_0:24$ ip community-list expanded c10 permit 529 ^65000:4_0:251_0:25$ ip community-list expanded c10 permit 530 ^65000:3_0:251_0:241$ ip community-list expanded c10 permit 531 ^65000:4_0:252_0:23$ ip community-list expanded c10 permit 532 ^65000:4_0:252_0:24$ ip community-list expanded c10 permit 533 ^65000:4_0:252_0:25$ ip community-list expanded c10 permit 534 ^65000:3_0:252_0:242$ ip community-list expanded c10 permit 535 ^65000:4_0:253_0:24$ ip community-list expanded c10 permit 536 ^65000:4_0:253_0:25$ ip community-list expanded c10 permit 537 ^65000:3_0:253_0:243$ ip community-list expanded c10 permit 538 ^65000:4_0:254_0:24$ ip community-list expanded c10 permit 539 ^65000:4_0:254_0:25$ ip community-list expanded c10 permit 540 ^65000:3_0:254_0:244$ ip community-list expanded c10 permit 541 ^65000:4_0:255_0:24$ ip community-list expanded c10 permit 542 ^65000:4_0:255_0:25$ ip community-list expanded c10 permit 543 ^65000:3_0:255_0:245$ ip community-list expanded c10 permit 544 ^65000:4_0:256_0:24$ ip community-list expanded c10 permit 545 ^65000:4_0:256_0:25$ ip community-list expanded c10 permit 546 ^65000:3_0:256_0:246$ route-map calculator permit 28738 match community 1_1_9 2_1_10 2_2_5 1_2_8 1_3_7 set community 0:10 route-map calculator permit 28739 match community 1_4_6 1_5_5 c4_10_1 c3_11_1 c3_12_2 set community 0:10 route-map calculator permit 28740 match community c3_13_3 c3_14_4 c3_15_5 c3_16_6 c3_17_7 set community 0:10 route-map calculator permit 28741 match community c3_18_8 c3_19_9 c4_20_2 c3_20_10 c4_21_2 set community 0:10 route-map calculator permit 28742 match community c3_21_11 c3_22_12 c3_23_13 c3_24_14 c3_25_15 set community 0:10 route-map calculator permit 28743 match community c3_26_16 c3_27_17 c3_28_18 c3_29_19 c4_30_3 set community 0:10 route-map calculator permit 28744 match community c3_30_20 c4_31_3 c3_31_21 c4_32_3 c3_32_22 set community 0:10 route-map calculator permit 28745 match community c3_33_23 c3_34_24 c3_35_25 c3_36_26 c3_37_27 set community 0:10 route-map calculator permit 28746 match community c3_38_28 c3_39_29 c4_40_4 c3_40_30 c4_41_4 set community 0:10 route-map calculator permit 28747 match community c3_41_31 c4_42_4 c3_42_32 c4_43_4 c3_43_33 set community 0:10 route-map calculator permit 28748 match community c3_44_34 c3_45_35 c3_46_36 c3_47_37 c3_48_38 set community 0:10 route-map calculator permit 28749 match community c3_49_39 c4_50_5 c3_50_40 c4_51_5 c3_51_41 set community 0:10 route-map calculator permit 28750 match community c4_52_5 c3_52_42 c4_53_5 c3_53_43 c4_54_5 set community 0:10 route-map calculator permit 28751 match community c3_54_44 c3_55_45 c3_56_46 c3_57_47 c3_58_48 set community 0:10 route-map calculator permit 28752 match community c3_59_49 c4_60_6 c3_60_50 c4_61_6 c3_61_51 set community 0:10 route-map calculator permit 28753 match community c4_62_6 c3_62_52 c4_63_6 c3_63_53 c4_64_6 set community 0:10 route-map calculator permit 28754 match community c3_64_54 c4_65_6 c3_65_55 c3_66_56 c3_67_57 set community 0:10 route-map calculator permit 28755 match community c3_68_58 c3_69_59 c4_70_7 c3_70_60 c4_71_7 set community 0:10 route-map calculator permit 28756 match community c3_71_61 c4_72_7 c3_72_62 c4_73_7 c3_73_63 set community 0:10 route-map calculator permit 28757 match community c4_74_7 c3_74_64 c4_75_7 c3_75_65 c4_76_7 set community 0:10 route-map calculator permit 28758 match community c3_76_66 c3_77_67 c3_78_68 c3_79_69 c4_80_8 set community 0:10 route-map calculator permit 28759 match community c3_80_70 c4_81_8 c3_81_71 c4_82_8 c3_82_72 set community 0:10 route-map calculator permit 28760 match community c4_83_8 c3_83_73 c4_84_8 c3_84_74 c4_85_8 set community 0:10 route-map calculator permit 28761 match community c3_85_75 c4_86_8 c3_86_76 c4_87_8 c3_87_77 set community 0:10 route-map calculator permit 28762 match community c3_88_78 c3_89_79 c4_90_9 c3_90_80 c4_91_9 set community 0:10 route-map calculator permit 28763 match community c3_91_81 c4_92_9 c3_92_82 c4_93_9 c3_93_83 set community 0:10 route-map calculator permit 28764 match community c4_94_9 c3_94_84 c4_95_9 c3_95_85 c4_96_9 set community 0:10 route-map calculator permit 28765 match community c3_96_86 c4_97_9 c3_97_87 c4_98_9 c3_98_88 set community 0:10 route-map calculator permit 28766 match community c3_99_89 c4_100_10 c3_100_90 c4_101_10 c3_101_91 set community 0:10 route-map calculator permit 28767 match community c4_102_10 c3_102_92 c4_103_10 c3_103_93 c4_104_10 set community 0:10 route-map calculator permit 28768 match community c3_104_94 c4_105_10 c3_105_95 c4_106_10 c3_106_96 set community 0:10 route-map calculator permit 28769 match community c4_107_10 c3_107_97 c4_108_10 c3_108_98 c4_109_10 set community 0:10 route-map calculator permit 28770 match community c3_109_99 c4_110_11 c3_110_100 c4_111_11 c3_111_101 set community 0:10 route-map calculator permit 28771 match community c4_112_11 c3_112_102 c4_113_11 c3_113_103 c4_114_11 set community 0:10 route-map calculator permit 28772 match community c3_114_104 c4_115_11 c3_115_105 c4_116_11 c3_116_106 set community 0:10 route-map calculator permit 28773 match community c4_117_11 c3_117_107 c4_118_11 c3_118_108 c4_119_11 set community 0:10 route-map calculator permit 28774 match community c3_119_109 c4_120_11 c4_120_12 c3_120_110 c4_121_12 set community 0:10 route-map calculator permit 28775 match community c3_121_111 c4_122_12 c3_122_112 c4_123_12 c3_123_113 set community 0:10 route-map calculator permit 28776 match community c4_124_12 c3_124_114 c4_125_12 c3_125_115 c4_126_12 set community 0:10 route-map calculator permit 28777 match community c3_126_116 c4_127_12 c3_127_117 c4_128_12 c3_128_118 set community 0:10 route-map calculator permit 28778 match community c4_129_12 c3_129_119 c4_130_12 c4_130_13 c3_130_120 set community 0:10 route-map calculator permit 28779 match community c4_131_12 c4_131_13 c3_131_121 c4_132_13 c3_132_122 set community 0:10 route-map calculator permit 28780 match community c4_133_13 c3_133_123 c4_134_13 c3_134_124 c4_135_13 set community 0:10 route-map calculator permit 28781 match community c3_135_125 c4_136_13 c3_136_126 c4_137_13 c3_137_127 set community 0:10 route-map calculator permit 28782 match community c4_138_13 c3_138_128 c4_139_13 c3_139_129 c4_140_13 set community 0:10 route-map calculator permit 28783 match community c4_140_14 c3_140_130 c4_141_13 c4_141_14 c3_141_131 set community 0:10 route-map calculator permit 28784 match community c4_142_13 c4_142_14 c3_142_132 c4_143_14 c3_143_133 set community 0:10 route-map calculator permit 28785 match community c4_144_14 c3_144_134 c4_145_14 c3_145_135 c4_146_14 set community 0:10 route-map calculator permit 28786 match community c3_146_136 c4_147_14 c3_147_137 c4_148_14 c3_148_138 set community 0:10 route-map calculator permit 28787 match community c4_149_14 c3_149_139 c4_150_14 c4_150_15 c3_150_140 set community 0:10 route-map calculator permit 28788 match community c4_151_14 c4_151_15 c3_151_141 c4_152_14 c4_152_15 set community 0:10 route-map calculator permit 28789 match community c3_152_142 c4_153_14 c4_153_15 c3_153_143 c4_154_15 set community 0:10 route-map calculator permit 28790 match community c3_154_144 c4_155_15 c3_155_145 c4_156_15 c3_156_146 set community 0:10 route-map calculator permit 28791 match community c4_157_15 c3_157_147 c4_158_15 c3_158_148 c4_159_15 set community 0:10 route-map calculator permit 28792 match community c3_159_149 c4_160_15 c4_160_16 c3_160_150 c4_161_15 set community 0:10 route-map calculator permit 28793 match community c4_161_16 c3_161_151 c4_162_15 c4_162_16 c3_162_152 set community 0:10 route-map calculator permit 28794 match community c4_163_15 c4_163_16 c3_163_153 c4_164_15 c4_164_16 set community 0:10 route-map calculator permit 28795 match community c3_164_154 c4_165_16 c3_165_155 c4_166_16 c3_166_156 set community 0:10 route-map calculator permit 28796 match community c4_167_16 c3_167_157 c4_168_16 c3_168_158 c4_169_16 set community 0:10 route-map calculator permit 28797 match community c3_169_159 c4_170_16 c4_170_17 c3_170_160 c4_171_16 set community 0:10 route-map calculator permit 28798 match community c4_171_17 c3_171_161 c4_172_16 c4_172_17 c3_172_162 set community 0:10 route-map calculator permit 28799 match community c4_173_16 c4_173_17 c3_173_163 c4_174_16 c4_174_17 set community 0:10 route-map calculator permit 28800 match community c3_174_164 c4_175_16 c4_175_17 c3_175_165 c4_176_17 set community 0:10 route-map calculator permit 28801 match community c3_176_166 c4_177_17 c3_177_167 c4_178_17 c3_178_168 set community 0:10 route-map calculator permit 28802 match community c4_179_17 c3_179_169 c4_180_17 c4_180_18 c3_180_170 set community 0:10 route-map calculator permit 28803 match community c4_181_17 c4_181_18 c3_181_171 c4_182_17 c4_182_18 set community 0:10 route-map calculator permit 28804 match community c3_182_172 c4_183_17 c4_183_18 c3_183_173 c4_184_17 set community 0:10 route-map calculator permit 28805 match community c4_184_18 c3_184_174 c4_185_17 c4_185_18 c3_185_175 set community 0:10 route-map calculator permit 28806 match community c4_186_17 c4_186_18 c3_186_176 c4_187_18 c3_187_177 set community 0:10 route-map calculator permit 28807 match community c4_188_18 c3_188_178 c4_189_18 c3_189_179 c4_190_18 set community 0:10 route-map calculator permit 28808 match community c4_190_19 c3_190_180 c4_191_18 c4_191_19 c3_191_181 set community 0:10 route-map calculator permit 28809 match community c4_192_18 c4_192_19 c3_192_182 c4_193_18 c4_193_19 set community 0:10 route-map calculator permit 28810 match community c3_193_183 c4_194_18 c4_194_19 c3_194_184 c4_195_18 set community 0:10 route-map calculator permit 28811 match community c4_195_19 c3_195_185 c4_196_18 c4_196_19 c3_196_186 set community 0:10 route-map calculator permit 28812 match community c4_197_18 c4_197_19 c3_197_187 c4_198_19 c3_198_188 set community 0:10 route-map calculator permit 28813 match community c4_199_19 c3_199_189 c4_200_19 c4_200_20 c3_200_190 set community 0:10 route-map calculator permit 28814 match community c4_201_19 c4_201_20 c3_201_191 c4_202_19 c4_202_20 set community 0:10 route-map calculator permit 28815 match community c3_202_192 c4_203_19 c4_203_20 c3_203_193 c4_204_19 set community 0:10 route-map calculator permit 28816 match community c4_204_20 c3_204_194 c4_205_19 c4_205_20 c3_205_195 set community 0:10 route-map calculator permit 28817 match community c4_206_19 c4_206_20 c3_206_196 c4_207_19 c4_207_20 set community 0:10 route-map calculator permit 28818 match community c3_207_197 c4_208_19 c4_208_20 c3_208_198 c4_209_20 set community 0:10 route-map calculator permit 28819 match community c3_209_199 c4_210_20 c4_210_21 c3_210_200 c4_211_20 set community 0:10 route-map calculator permit 28820 match community c4_211_21 c3_211_201 c4_212_20 c4_212_21 c3_212_202 set community 0:10 route-map calculator permit 28821 match community c4_213_20 c4_213_21 c3_213_203 c4_214_20 c4_214_21 set community 0:10 route-map calculator permit 28822 match community c3_214_204 c4_215_20 c4_215_21 c3_215_205 c4_216_20 set community 0:10 route-map calculator permit 28823 match community c4_216_21 c3_216_206 c4_217_20 c4_217_21 c3_217_207 set community 0:10 route-map calculator permit 28824 match community c4_218_20 c4_218_21 c3_218_208 c4_219_20 c4_219_21 set community 0:10 route-map calculator permit 28825 match community c3_219_209 c4_220_21 c4_220_22 c3_220_210 c4_221_21 set community 0:10 route-map calculator permit 28826 match community c4_221_22 c3_221_211 c4_222_21 c4_222_22 c3_222_212 set community 0:10 route-map calculator permit 28827 match community c4_223_21 c4_223_22 c3_223_213 c4_224_21 c4_224_22 set community 0:10 route-map calculator permit 28828 match community c3_224_214 c4_225_21 c4_225_22 c3_225_215 c4_226_21 set community 0:10 route-map calculator permit 28829 match community c4_226_22 c3_226_216 c4_227_21 c4_227_22 c3_227_217 set community 0:10 route-map calculator permit 28830 match community c4_228_21 c4_228_22 c3_228_218 c4_229_21 c4_229_22 set community 0:10 route-map calculator permit 28831 match community c3_229_219 c4_230_21 c4_230_22 c4_230_23 c3_230_220 set community 0:10 route-map calculator permit 28832 match community c4_231_22 c4_231_23 c3_231_221 c4_232_22 c4_232_23 set community 0:10 route-map calculator permit 28833 match community c3_232_222 c4_233_22 c4_233_23 c3_233_223 c4_234_22 set community 0:10 route-map calculator permit 28834 match community c4_234_23 c3_234_224 c4_235_22 c4_235_23 c3_235_225 set community 0:10 route-map calculator permit 28835 match community c4_236_22 c4_236_23 c3_236_226 c4_237_22 c4_237_23 set community 0:10 route-map calculator permit 28836 match community c3_237_227 c4_238_22 c4_238_23 c3_238_228 c4_239_22 set community 0:10 route-map calculator permit 28837 match community c4_239_23 c3_239_229 c4_240_22 c4_240_23 c4_240_24 set community 0:10 route-map calculator permit 28838 match community c3_240_230 c4_241_22 c4_241_23 c4_241_24 c3_241_231 set community 0:10 route-map calculator permit 28839 match community c4_242_23 c4_242_24 c3_242_232 c4_243_23 c4_243_24 set community 0:10 route-map calculator permit 28840 match community c3_243_233 c4_244_23 c4_244_24 c3_244_234 c4_245_23 set community 0:10 route-map calculator permit 28841 match community c4_245_24 c3_245_235 c4_246_23 c4_246_24 c3_246_236 set community 0:10 route-map calculator permit 28842 match community c4_247_23 c4_247_24 c3_247_237 c4_248_23 c4_248_24 set community 0:10 route-map calculator permit 28843 match community c3_248_238 c4_249_23 c4_249_24 c3_249_239 c4_250_23 set community 0:10 route-map calculator permit 28844 match community c4_250_24 c4_250_25 c3_250_240 c4_251_23 c4_251_24 set community 0:10 route-map calculator permit 28845 match community c4_251_25 c3_251_241 c4_252_23 c4_252_24 c4_252_25 set community 0:10 route-map calculator permit 28846 match community c3_252_242 c4_253_24 c4_253_25 c3_253_243 c4_254_24 set community 0:10 route-map calculator permit 28847 match community c4_254_25 c3_254_244 c4_255_24 c4_255_25 c3_255_245 set community 0:10 route-map calculator permit 28848 match community c4_256_24 c4_256_25 c3_256_246 set community 0:10 ip community-list standard 2_53_244 permit 65000:2 0:53 0:244 ip community-list standard 2_61_212 permit 65000:2 0:61 0:212 ip community-list standard 2_106_122 permit 65000:2 0:106 0:122 route-map calculator permit 28849 match community 2_53_244 2_61_212 2_106_122 set community 0:12932 ip community-list standard 2_54_251 permit 65000:2 0:54 0:251 route-map calculator permit 28850 match community 2_54_251 set community 0:13554 ip community-list standard 2_50_169 permit 65000:2 0:50 0:169 ip community-list standard 2_65_130 permit 65000:2 0:65 0:130 route-map calculator permit 28851 match community 2_50_169 2_65_130 set community 0:8450 ip community-list standard 2_165_213 permit 65000:2 0:165 0:213 route-map calculator permit 28852 match community 2_165_213 set community 0:35145 ip community-list standard 2_132_137 permit 65000:2 0:132 0:137 route-map calculator permit 28853 match community 2_132_137 set community 0:18084 ip community-list standard 2_23_218 permit 65000:2 0:23 0:218 ip community-list standard 2_46_109 permit 65000:2 0:46 0:109 route-map calculator permit 28854 match community 2_23_218 2_46_109 set community 0:5014 ip community-list standard 2_20_211 permit 65000:2 0:20 0:211 route-map calculator permit 28855 match community 2_20_211 set community 0:4220 ip community-list standard 2_176_211 permit 65000:2 0:176 0:211 route-map calculator permit 28856 match community 2_176_211 set community 0:37136 ip community-list standard 2_110_185 permit 65000:2 0:110 0:185 route-map calculator permit 28857 match community 2_110_185 set community 0:20350 ip community-list standard 2_10_234 permit 65000:2 0:10 0:234 ip community-list standard 2_12_195 permit 65000:2 0:12 0:195 ip community-list standard 2_13_180 permit 65000:2 0:13 0:180 ip community-list standard 2_15_156 permit 65000:2 0:15 0:156 ip community-list standard 2_18_130 permit 65000:2 0:18 0:130 ip community-list standard 2_20_117 permit 65000:2 0:20 0:117 ip community-list standard 2_26_90 permit 65000:2 0:26 0:90 ip community-list standard 2_30_78 permit 65000:2 0:30 0:78 ip community-list standard 2_36_65 permit 65000:2 0:36 0:65 ip community-list standard 2_39_60 permit 65000:2 0:39 0:60 ip community-list standard 2_45_52 permit 65000:2 0:45 0:52 route-map calculator permit 28858 match community 2_10_234 2_12_195 2_13_180 2_15_156 2_18_130 set community 0:2340 route-map calculator permit 28859 match community 2_20_117 2_26_90 2_30_78 2_36_65 2_39_60 set community 0:2340 route-map calculator permit 28860 match community 2_45_52 set community 0:2340 ip community-list standard 2_130_206 permit 65000:2 0:130 0:206 route-map calculator permit 28861 match community 2_130_206 set community 0:26780 ip community-list standard 2_49_122 permit 65000:2 0:49 0:122 ip community-list standard 2_61_98 permit 65000:2 0:61 0:98 route-map calculator permit 28862 match community 2_49_122 2_61_98 set community 0:5978 ip community-list standard 2_172_244 permit 65000:2 0:172 0:244 route-map calculator permit 28863 match community 2_172_244 set community 0:41968 ip community-list standard 2_23_195 permit 65000:2 0:23 0:195 ip community-list standard 2_39_115 permit 65000:2 0:39 0:115 ip community-list standard 2_65_69 permit 65000:2 0:65 0:69 route-map calculator permit 28864 match community 2_23_195 2_39_115 2_65_69 set community 0:4485 ip community-list standard 2_22_186 permit 65000:2 0:22 0:186 ip community-list standard 2_31_132 permit 65000:2 0:31 0:132 ip community-list standard 2_33_124 permit 65000:2 0:33 0:124 ip community-list standard 2_44_93 permit 65000:2 0:44 0:93 ip community-list standard 2_62_66 permit 65000:2 0:62 0:66 route-map calculator permit 28865 match community 2_22_186 2_31_132 2_33_124 2_44_93 2_62_66 set community 0:4092 ip community-list standard 2_120_181 permit 65000:2 0:120 0:181 route-map calculator permit 28866 match community 2_120_181 set community 0:21720 ip community-list standard 2_23_47 permit 65000:2 0:23 0:47 route-map calculator permit 28867 match community 2_23_47 set community 0:1081 ip community-list standard 2_158_163 permit 65000:2 0:158 0:163 route-map calculator permit 28868 match community 2_158_163 set community 0:25754 ip community-list standard 2_101_233 permit 65000:2 0:101 0:233 route-map calculator permit 28869 match community 2_101_233 set community 0:23533 ip community-list standard 2_235_244 permit 65000:2 0:235 0:244 route-map calculator permit 28870 match community 2_235_244 set community 0:57340 ip community-list standard 2_98_255 permit 65000:2 0:98 0:255 ip community-list standard 2_102_245 permit 65000:2 0:102 0:245 ip community-list standard 2_105_238 permit 65000:2 0:105 0:238 ip community-list standard 2_119_210 permit 65000:2 0:119 0:210 ip community-list standard 2_147_170 permit 65000:2 0:147 0:170 route-map calculator permit 28871 match community 2_98_255 2_102_245 2_105_238 2_119_210 2_147_170 set community 0:24990 ip community-list standard 2_4_194 permit 65000:2 0:4 0:194 ip community-list standard 2_8_97 permit 65000:2 0:8 0:97 route-map calculator permit 28872 match community 2_4_194 2_8_97 set community 0:776 ip community-list standard 2_69_241 permit 65000:2 0:69 0:241 route-map calculator permit 28873 match community 2_69_241 set community 0:16629 ip community-list standard 2_98_256 permit 65000:2 0:98 0:256 ip community-list standard 2_112_224 permit 65000:2 0:112 0:224 ip community-list standard 2_128_196 permit 65000:2 0:128 0:196 route-map calculator permit 28874 match community 2_98_256 2_112_224 2_128_196 set community 0:25088 ip community-list standard 2_107_149 permit 65000:2 0:107 0:149 route-map calculator permit 28875 match community 2_107_149 set community 0:15943 ip community-list standard 2_133_191 permit 65000:2 0:133 0:191 route-map calculator permit 28876 match community 2_133_191 set community 0:25403 ip community-list standard 2_58_197 permit 65000:2 0:58 0:197 route-map calculator permit 28877 match community 2_58_197 set community 0:11426 ip community-list standard 2_93_195 permit 65000:2 0:93 0:195 ip community-list standard 2_117_155 permit 65000:2 0:117 0:155 route-map calculator permit 28878 match community 2_93_195 2_117_155 set community 0:18135 ip community-list standard 2_103_247 permit 65000:2 0:103 0:247 route-map calculator permit 28879 match community 2_103_247 set community 0:25441 ip community-list standard 2_125_193 permit 65000:2 0:125 0:193 route-map calculator permit 28880 match community 2_125_193 set community 0:24125 ip community-list standard 2_171_236 permit 65000:2 0:171 0:236 ip community-list standard 2_177_228 permit 65000:2 0:177 0:228 route-map calculator permit 28881 match community 2_171_236 2_177_228 set community 0:40356 ip community-list standard 2_108_228 permit 65000:2 0:108 0:228 ip community-list standard 2_114_216 permit 65000:2 0:114 0:216 ip community-list standard 2_144_171 permit 65000:2 0:144 0:171 ip community-list standard 2_152_162 permit 65000:2 0:152 0:162 route-map calculator permit 28882 match community 2_108_228 2_114_216 2_144_171 2_152_162 set community 0:24624 ip community-list standard 2_131_147 permit 65000:2 0:131 0:147 route-map calculator permit 28883 match community 2_131_147 set community 0:19257 ip community-list standard 2_87_233 permit 65000:2 0:87 0:233 route-map calculator permit 28884 match community 2_87_233 set community 0:20271 ip community-list standard 2_16_215 permit 65000:2 0:16 0:215 ip community-list standard 2_20_172 permit 65000:2 0:20 0:172 ip community-list standard 2_40_86 permit 65000:2 0:40 0:86 ip community-list standard 2_43_80 permit 65000:2 0:43 0:80 route-map calculator permit 28885 match community 2_16_215 2_20_172 2_40_86 2_43_80 set community 0:3440 ip community-list standard 2_71_173 permit 65000:2 0:71 0:173 route-map calculator permit 28886 match community 2_71_173 set community 0:12283 ip community-list standard 2_74_167 permit 65000:2 0:74 0:167 route-map calculator permit 28887 match community 2_74_167 set community 0:12358 ip community-list standard 1_1_197 permit 65000:1 0:1 0:197 ip community-list standard 2_1_198 permit 65000:2 0:1 0:198 ip community-list standard 2_2_99 permit 65000:2 0:2 0:99 ip community-list standard 1_2_196 permit 65000:1 0:2 0:196 ip community-list standard 2_3_66 permit 65000:2 0:3 0:66 ip community-list standard 1_3_195 permit 65000:1 0:3 0:195 ip community-list standard 1_4_194 permit 65000:1 0:4 0:194 ip community-list standard 1_5_193 permit 65000:1 0:5 0:193 ip community-list standard 2_6_33 permit 65000:2 0:6 0:33 ip community-list standard 1_6_192 permit 65000:1 0:6 0:192 ip community-list standard 1_7_191 permit 65000:1 0:7 0:191 ip community-list standard 1_8_190 permit 65000:1 0:8 0:190 ip community-list standard 2_9_22 permit 65000:2 0:9 0:22 ip community-list standard 1_9_189 permit 65000:1 0:9 0:189 ip community-list standard 1_10_188 permit 65000:1 0:10 0:188 ip community-list standard 2_11_18 permit 65000:2 0:11 0:18 ip community-list standard 1_11_187 permit 65000:1 0:11 0:187 ip community-list standard 1_12_186 permit 65000:1 0:12 0:186 ip community-list standard 1_13_185 permit 65000:1 0:13 0:185 ip community-list standard 1_14_184 permit 65000:1 0:14 0:184 ip community-list standard 1_15_183 permit 65000:1 0:15 0:183 ip community-list standard 1_16_182 permit 65000:1 0:16 0:182 ip community-list standard 1_17_181 permit 65000:1 0:17 0:181 ip community-list standard 1_18_180 permit 65000:1 0:18 0:180 ip community-list standard 1_19_179 permit 65000:1 0:19 0:179 ip community-list standard 1_20_178 permit 65000:1 0:20 0:178 ip community-list standard 1_21_177 permit 65000:1 0:21 0:177 ip community-list standard 1_22_176 permit 65000:1 0:22 0:176 ip community-list standard 1_23_175 permit 65000:1 0:23 0:175 ip community-list standard 1_24_174 permit 65000:1 0:24 0:174 ip community-list standard 1_25_173 permit 65000:1 0:25 0:173 ip community-list standard 1_26_172 permit 65000:1 0:26 0:172 ip community-list standard 1_27_171 permit 65000:1 0:27 0:171 ip community-list standard 1_28_170 permit 65000:1 0:28 0:170 ip community-list standard 1_29_169 permit 65000:1 0:29 0:169 ip community-list standard 1_30_168 permit 65000:1 0:30 0:168 ip community-list standard 1_31_167 permit 65000:1 0:31 0:167 ip community-list standard 1_32_166 permit 65000:1 0:32 0:166 ip community-list standard 1_33_165 permit 65000:1 0:33 0:165 ip community-list standard 1_34_164 permit 65000:1 0:34 0:164 ip community-list standard 1_35_163 permit 65000:1 0:35 0:163 ip community-list standard 1_36_162 permit 65000:1 0:36 0:162 ip community-list standard 1_37_161 permit 65000:1 0:37 0:161 ip community-list standard 1_38_160 permit 65000:1 0:38 0:160 ip community-list standard 1_39_159 permit 65000:1 0:39 0:159 ip community-list standard 1_40_158 permit 65000:1 0:40 0:158 ip community-list standard 1_41_157 permit 65000:1 0:41 0:157 ip community-list standard 1_42_156 permit 65000:1 0:42 0:156 ip community-list standard 1_43_155 permit 65000:1 0:43 0:155 ip community-list standard 1_44_154 permit 65000:1 0:44 0:154 ip community-list standard 1_45_153 permit 65000:1 0:45 0:153 ip community-list standard 1_46_152 permit 65000:1 0:46 0:152 ip community-list standard 1_47_151 permit 65000:1 0:47 0:151 ip community-list standard 1_48_150 permit 65000:1 0:48 0:150 ip community-list standard 1_49_149 permit 65000:1 0:49 0:149 ip community-list standard 1_50_148 permit 65000:1 0:50 0:148 ip community-list standard 1_51_147 permit 65000:1 0:51 0:147 ip community-list standard 1_52_146 permit 65000:1 0:52 0:146 ip community-list standard 1_53_145 permit 65000:1 0:53 0:145 ip community-list standard 1_54_144 permit 65000:1 0:54 0:144 ip community-list standard 1_55_143 permit 65000:1 0:55 0:143 ip community-list standard 1_56_142 permit 65000:1 0:56 0:142 ip community-list standard 1_57_141 permit 65000:1 0:57 0:141 ip community-list standard 1_58_140 permit 65000:1 0:58 0:140 ip community-list standard 1_59_139 permit 65000:1 0:59 0:139 ip community-list standard 1_60_138 permit 65000:1 0:60 0:138 ip community-list standard 1_61_137 permit 65000:1 0:61 0:137 ip community-list standard 1_62_136 permit 65000:1 0:62 0:136 ip community-list standard 1_63_135 permit 65000:1 0:63 0:135 ip community-list standard 1_64_134 permit 65000:1 0:64 0:134 ip community-list standard 1_65_133 permit 65000:1 0:65 0:133 ip community-list standard 1_66_132 permit 65000:1 0:66 0:132 ip community-list standard 1_67_131 permit 65000:1 0:67 0:131 ip community-list standard 1_68_130 permit 65000:1 0:68 0:130 ip community-list standard 1_69_129 permit 65000:1 0:69 0:129 ip community-list standard 1_70_128 permit 65000:1 0:70 0:128 ip community-list standard 1_71_127 permit 65000:1 0:71 0:127 ip community-list standard 1_72_126 permit 65000:1 0:72 0:126 ip community-list standard 1_73_125 permit 65000:1 0:73 0:125 ip community-list standard 1_74_124 permit 65000:1 0:74 0:124 ip community-list standard 1_75_123 permit 65000:1 0:75 0:123 ip community-list standard 1_76_122 permit 65000:1 0:76 0:122 ip community-list standard 1_77_121 permit 65000:1 0:77 0:121 ip community-list standard 1_78_120 permit 65000:1 0:78 0:120 ip community-list standard 1_79_119 permit 65000:1 0:79 0:119 ip community-list standard 1_80_118 permit 65000:1 0:80 0:118 ip community-list standard 1_81_117 permit 65000:1 0:81 0:117 ip community-list standard 1_82_116 permit 65000:1 0:82 0:116 ip community-list standard 1_83_115 permit 65000:1 0:83 0:115 ip community-list standard 1_84_114 permit 65000:1 0:84 0:114 ip community-list standard 1_85_113 permit 65000:1 0:85 0:113 ip community-list standard 1_86_112 permit 65000:1 0:86 0:112 ip community-list standard 1_87_111 permit 65000:1 0:87 0:111 ip community-list standard 1_88_110 permit 65000:1 0:88 0:110 ip community-list standard 1_89_109 permit 65000:1 0:89 0:109 ip community-list standard 1_90_108 permit 65000:1 0:90 0:108 ip community-list standard 1_91_107 permit 65000:1 0:91 0:107 ip community-list standard 1_92_106 permit 65000:1 0:92 0:106 ip community-list standard 1_93_105 permit 65000:1 0:93 0:105 ip community-list standard 1_94_104 permit 65000:1 0:94 0:104 ip community-list standard 1_95_103 permit 65000:1 0:95 0:103 ip community-list standard 1_96_102 permit 65000:1 0:96 0:102 ip community-list standard 1_97_101 permit 65000:1 0:97 0:101 ip community-list standard 1_98_100 permit 65000:1 0:98 0:100 ip community-list standard 1_99_99 permit 65000:1 0:99 0:99 ip community-list expanded c198 permit 1 ^65000:4_0:198_0:1$ ip community-list expanded c198 permit 2 ^65000:3_0:199_0:1$ ip community-list expanded c198 permit 3 ^65000:3_0:200_0:2$ ip community-list expanded c198 permit 4 ^65000:3_0:201_0:3$ ip community-list expanded c198 permit 5 ^65000:3_0:202_0:4$ ip community-list expanded c198 permit 6 ^65000:3_0:203_0:5$ ip community-list expanded c198 permit 7 ^65000:3_0:204_0:6$ ip community-list expanded c198 permit 8 ^65000:3_0:205_0:7$ ip community-list expanded c198 permit 9 ^65000:3_0:206_0:8$ ip community-list expanded c198 permit 10 ^65000:3_0:207_0:9$ ip community-list expanded c198 permit 11 ^65000:3_0:208_0:10$ ip community-list expanded c198 permit 12 ^65000:3_0:209_0:11$ ip community-list expanded c198 permit 13 ^65000:3_0:210_0:12$ ip community-list expanded c198 permit 14 ^65000:3_0:211_0:13$ ip community-list expanded c198 permit 15 ^65000:3_0:212_0:14$ ip community-list expanded c198 permit 16 ^65000:3_0:213_0:15$ ip community-list expanded c198 permit 17 ^65000:3_0:214_0:16$ ip community-list expanded c198 permit 18 ^65000:3_0:215_0:17$ ip community-list expanded c198 permit 19 ^65000:3_0:216_0:18$ ip community-list expanded c198 permit 20 ^65000:3_0:217_0:19$ ip community-list expanded c198 permit 21 ^65000:3_0:218_0:20$ ip community-list expanded c198 permit 22 ^65000:3_0:219_0:21$ ip community-list expanded c198 permit 23 ^65000:3_0:220_0:22$ ip community-list expanded c198 permit 24 ^65000:3_0:221_0:23$ ip community-list expanded c198 permit 25 ^65000:3_0:222_0:24$ ip community-list expanded c198 permit 26 ^65000:3_0:223_0:25$ ip community-list expanded c198 permit 27 ^65000:3_0:224_0:26$ ip community-list expanded c198 permit 28 ^65000:3_0:225_0:27$ ip community-list expanded c198 permit 29 ^65000:3_0:226_0:28$ ip community-list expanded c198 permit 30 ^65000:3_0:227_0:29$ ip community-list expanded c198 permit 31 ^65000:3_0:228_0:30$ ip community-list expanded c198 permit 32 ^65000:3_0:229_0:31$ ip community-list expanded c198 permit 33 ^65000:3_0:230_0:32$ ip community-list expanded c198 permit 34 ^65000:3_0:231_0:33$ ip community-list expanded c198 permit 35 ^65000:3_0:232_0:34$ ip community-list expanded c198 permit 36 ^65000:3_0:233_0:35$ ip community-list expanded c198 permit 37 ^65000:3_0:234_0:36$ ip community-list expanded c198 permit 38 ^65000:3_0:235_0:37$ ip community-list expanded c198 permit 39 ^65000:3_0:236_0:38$ ip community-list expanded c198 permit 40 ^65000:3_0:237_0:39$ ip community-list expanded c198 permit 41 ^65000:3_0:238_0:40$ ip community-list expanded c198 permit 42 ^65000:3_0:239_0:41$ ip community-list expanded c198 permit 43 ^65000:3_0:240_0:42$ ip community-list expanded c198 permit 44 ^65000:3_0:241_0:43$ ip community-list expanded c198 permit 45 ^65000:3_0:242_0:44$ ip community-list expanded c198 permit 46 ^65000:3_0:243_0:45$ ip community-list expanded c198 permit 47 ^65000:3_0:244_0:46$ ip community-list expanded c198 permit 48 ^65000:3_0:245_0:47$ ip community-list expanded c198 permit 49 ^65000:3_0:246_0:48$ ip community-list expanded c198 permit 50 ^65000:3_0:247_0:49$ ip community-list expanded c198 permit 51 ^65000:3_0:248_0:50$ ip community-list expanded c198 permit 52 ^65000:3_0:249_0:51$ ip community-list expanded c198 permit 53 ^65000:3_0:250_0:52$ ip community-list expanded c198 permit 54 ^65000:3_0:251_0:53$ ip community-list expanded c198 permit 55 ^65000:3_0:252_0:54$ ip community-list expanded c198 permit 56 ^65000:3_0:253_0:55$ ip community-list expanded c198 permit 57 ^65000:3_0:254_0:56$ ip community-list expanded c198 permit 58 ^65000:3_0:255_0:57$ ip community-list expanded c198 permit 59 ^65000:3_0:256_0:58$ route-map calculator permit 28888 match community 1_1_197 2_1_198 2_2_99 1_2_196 2_3_66 set community 0:198 route-map calculator permit 28889 match community 1_3_195 1_4_194 1_5_193 2_6_33 1_6_192 set community 0:198 route-map calculator permit 28890 match community 1_7_191 1_8_190 2_9_22 1_9_189 1_10_188 set community 0:198 route-map calculator permit 28891 match community 2_11_18 1_11_187 1_12_186 1_13_185 1_14_184 set community 0:198 route-map calculator permit 28892 match community 1_15_183 1_16_182 1_17_181 1_18_180 1_19_179 set community 0:198 route-map calculator permit 28893 match community 1_20_178 1_21_177 1_22_176 1_23_175 1_24_174 set community 0:198 route-map calculator permit 28894 match community 1_25_173 1_26_172 1_27_171 1_28_170 1_29_169 set community 0:198 route-map calculator permit 28895 match community 1_30_168 1_31_167 1_32_166 1_33_165 1_34_164 set community 0:198 route-map calculator permit 28896 match community 1_35_163 1_36_162 1_37_161 1_38_160 1_39_159 set community 0:198 route-map calculator permit 28897 match community 1_40_158 1_41_157 1_42_156 1_43_155 1_44_154 set community 0:198 route-map calculator permit 28898 match community 1_45_153 1_46_152 1_47_151 1_48_150 1_49_149 set community 0:198 route-map calculator permit 28899 match community 1_50_148 1_51_147 1_52_146 1_53_145 1_54_144 set community 0:198 route-map calculator permit 28900 match community 1_55_143 1_56_142 1_57_141 1_58_140 1_59_139 set community 0:198 route-map calculator permit 28901 match community 1_60_138 1_61_137 1_62_136 1_63_135 1_64_134 set community 0:198 route-map calculator permit 28902 match community 1_65_133 1_66_132 1_67_131 1_68_130 1_69_129 set community 0:198 route-map calculator permit 28903 match community 1_70_128 1_71_127 1_72_126 1_73_125 1_74_124 set community 0:198 route-map calculator permit 28904 match community 1_75_123 1_76_122 1_77_121 1_78_120 1_79_119 set community 0:198 route-map calculator permit 28905 match community 1_80_118 1_81_117 1_82_116 1_83_115 1_84_114 set community 0:198 route-map calculator permit 28906 match community 1_85_113 1_86_112 1_87_111 1_88_110 1_89_109 set community 0:198 route-map calculator permit 28907 match community 1_90_108 1_91_107 1_92_106 1_93_105 1_94_104 set community 0:198 route-map calculator permit 28908 match community 1_95_103 1_96_102 1_97_101 1_98_100 1_99_99 set community 0:198 route-map calculator permit 28909 match community c4_198_1 c3_199_1 c3_200_2 c3_201_3 c3_202_4 set community 0:198 route-map calculator permit 28910 match community c3_203_5 c3_204_6 c3_205_7 c3_206_8 c3_207_9 set community 0:198 route-map calculator permit 28911 match community c3_208_10 c3_209_11 c3_210_12 c3_211_13 c3_212_14 set community 0:198 route-map calculator permit 28912 match community c3_213_15 c3_214_16 c3_215_17 c3_216_18 c3_217_19 set community 0:198 route-map calculator permit 28913 match community c3_218_20 c3_219_21 c3_220_22 c3_221_23 c3_222_24 set community 0:198 route-map calculator permit 28914 match community c3_223_25 c3_224_26 c3_225_27 c3_226_28 c3_227_29 set community 0:198 route-map calculator permit 28915 match community c3_228_30 c3_229_31 c3_230_32 c3_231_33 c3_232_34 set community 0:198 route-map calculator permit 28916 match community c3_233_35 c3_234_36 c3_235_37 c3_236_38 c3_237_39 set community 0:198 route-map calculator permit 28917 match community c3_238_40 c3_239_41 c3_240_42 c3_241_43 c3_242_44 set community 0:198 route-map calculator permit 28918 match community c3_243_45 c3_244_46 c3_245_47 c3_246_48 c3_247_49 set community 0:198 route-map calculator permit 28919 match community c3_248_50 c3_249_51 c3_250_52 c3_251_53 c3_252_54 set community 0:198 route-map calculator permit 28920 match community c3_253_55 c3_254_56 c3_255_57 c3_256_58 set community 0:198 ip community-list standard 2_203_234 permit 65000:2 0:203 0:234 route-map calculator permit 28921 match community 2_203_234 set community 0:47502 ip community-list standard 2_27_173 permit 65000:2 0:27 0:173 route-map calculator permit 28922 match community 2_27_173 set community 0:4671 ip community-list standard 2_8_131 permit 65000:2 0:8 0:131 route-map calculator permit 28923 match community 2_8_131 set community 0:1048 ip community-list standard 2_2_245 permit 65000:2 0:2 0:245 ip community-list standard 2_5_98 permit 65000:2 0:5 0:98 ip community-list standard 2_7_70 permit 65000:2 0:7 0:70 ip community-list standard 2_10_49 permit 65000:2 0:10 0:49 ip community-list standard 2_14_35 permit 65000:2 0:14 0:35 ip community-list standard 1_234_256 permit 65000:1 0:234 0:256 ip community-list standard 1_235_255 permit 65000:1 0:235 0:255 ip community-list standard 1_236_254 permit 65000:1 0:236 0:254 ip community-list standard 1_237_253 permit 65000:1 0:237 0:253 ip community-list standard 1_238_252 permit 65000:1 0:238 0:252 ip community-list standard 1_239_251 permit 65000:1 0:239 0:251 ip community-list standard 1_240_250 permit 65000:1 0:240 0:250 ip community-list standard 1_241_249 permit 65000:1 0:241 0:249 ip community-list standard 1_242_248 permit 65000:1 0:242 0:248 ip community-list standard 1_243_247 permit 65000:1 0:243 0:247 ip community-list standard 1_244_246 permit 65000:1 0:244 0:246 ip community-list standard 1_245_245 permit 65000:1 0:245 0:245 route-map calculator permit 28924 match community 2_2_245 2_5_98 2_7_70 2_10_49 2_14_35 set community 0:490 route-map calculator permit 28925 match community 1_234_256 1_235_255 1_236_254 1_237_253 1_238_252 set community 0:490 route-map calculator permit 28926 match community 1_239_251 1_240_250 1_241_249 1_242_248 1_243_247 set community 0:490 route-map calculator permit 28927 match community 1_244_246 1_245_245 set community 0:490 ip community-list standard 2_192_222 permit 65000:2 0:192 0:222 route-map calculator permit 28928 match community 2_192_222 set community 0:42624 ip community-list standard 2_176_250 permit 65000:2 0:176 0:250 ip community-list standard 2_200_220 permit 65000:2 0:200 0:220 route-map calculator permit 28929 match community 2_176_250 2_200_220 set community 0:44000 ip community-list standard 2_30_177 permit 65000:2 0:30 0:177 ip community-list standard 2_45_118 permit 65000:2 0:45 0:118 ip community-list standard 2_59_90 permit 65000:2 0:59 0:90 route-map calculator permit 28930 match community 2_30_177 2_45_118 2_59_90 set community 0:5310 ip community-list standard 2_125_191 permit 65000:2 0:125 0:191 route-map calculator permit 28931 match community 2_125_191 set community 0:23875 ip community-list standard 2_176_245 permit 65000:2 0:176 0:245 ip community-list standard 2_196_220 permit 65000:2 0:196 0:220 route-map calculator permit 28932 match community 2_176_245 2_196_220 set community 0:43120 ip community-list standard 2_98_237 permit 65000:2 0:98 0:237 ip community-list standard 2_147_158 permit 65000:2 0:147 0:158 route-map calculator permit 28933 match community 2_98_237 2_147_158 set community 0:23226 ip community-list standard 2_222_253 permit 65000:2 0:222 0:253 route-map calculator permit 28934 match community 2_222_253 set community 0:56166 ip community-list standard 2_191_220 permit 65000:2 0:191 0:220 route-map calculator permit 28935 match community 2_191_220 set community 0:42020 ip community-list standard 2_183_217 permit 65000:2 0:183 0:217 route-map calculator permit 28936 match community 2_183_217 set community 0:39711 ip community-list standard 2_36_214 permit 65000:2 0:36 0:214 ip community-list standard 2_72_107 permit 65000:2 0:72 0:107 route-map calculator permit 28937 match community 2_36_214 2_72_107 set community 0:7704 ip community-list standard 2_184_254 permit 65000:2 0:184 0:254 route-map calculator permit 28938 match community 2_184_254 set community 0:46736 ip community-list standard 2_214_241 permit 65000:2 0:214 0:241 route-map calculator permit 28939 match community 2_214_241 set community 0:51574 ip community-list standard 2_57_207 permit 65000:2 0:57 0:207 ip community-list standard 2_69_171 permit 65000:2 0:69 0:171 route-map calculator permit 28940 match community 2_57_207 2_69_171 set community 0:11799 ip community-list standard 2_120_253 permit 65000:2 0:120 0:253 ip community-list standard 2_132_230 permit 65000:2 0:132 0:230 ip community-list standard 2_138_220 permit 65000:2 0:138 0:220 ip community-list standard 2_165_184 permit 65000:2 0:165 0:184 route-map calculator permit 28941 match community 2_120_253 2_132_230 2_138_220 2_165_184 set community 0:30360 ip community-list standard 2_67_163 permit 65000:2 0:67 0:163 route-map calculator permit 28942 match community 2_67_163 set community 0:10921 ip community-list standard 2_228_252 permit 65000:2 0:228 0:252 route-map calculator permit 28943 match community 2_228_252 set community 0:57456 ip community-list standard 2_15_151 permit 65000:2 0:15 0:151 route-map calculator permit 28944 match community 2_15_151 set community 0:2265 ip community-list standard 2_23_214 permit 65000:2 0:23 0:214 ip community-list standard 2_46_107 permit 65000:2 0:46 0:107 route-map calculator permit 28945 match community 2_23_214 2_46_107 set community 0:4922 ip community-list standard 2_53_183 permit 65000:2 0:53 0:183 ip community-list standard 2_61_159 permit 65000:2 0:61 0:159 route-map calculator permit 28946 match community 2_53_183 2_61_159 set community 0:9699 ip community-list standard 2_210_249 permit 65000:2 0:210 0:249 route-map calculator permit 28947 match community 2_210_249 set community 0:52290 ip community-list standard 2_185_234 permit 65000:2 0:185 0:234 ip community-list standard 2_195_222 permit 65000:2 0:195 0:222 route-map calculator permit 28948 match community 2_185_234 2_195_222 set community 0:43290 ip community-list standard 2_93_111 permit 65000:2 0:93 0:111 route-map calculator permit 28949 match community 2_93_111 set community 0:10323 ip community-list standard 2_78_199 permit 65000:2 0:78 0:199 route-map calculator permit 28950 match community 2_78_199 set community 0:15522 ip community-list standard 2_101_129 permit 65000:2 0:101 0:129 route-map calculator permit 28951 match community 2_101_129 set community 0:13029 ip community-list standard 2_53_97 permit 65000:2 0:53 0:97 route-map calculator permit 28952 match community 2_53_97 set community 0:5141 ip community-list standard 2_61_219 permit 65000:2 0:61 0:219 ip community-list standard 2_73_183 permit 65000:2 0:73 0:183 route-map calculator permit 28953 match community 2_61_219 2_73_183 set community 0:13359 ip community-list standard 2_27_137 permit 65000:2 0:27 0:137 route-map calculator permit 28954 match community 2_27_137 set community 0:3699 ip community-list standard 2_19_244 permit 65000:2 0:19 0:244 ip community-list standard 2_38_122 permit 65000:2 0:38 0:122 ip community-list standard 2_61_76 permit 65000:2 0:61 0:76 route-map calculator permit 28955 match community 2_19_244 2_38_122 2_61_76 set community 0:4636 ip community-list standard 1_1_188 permit 65000:1 0:1 0:188 ip community-list standard 2_1_189 permit 65000:2 0:1 0:189 ip community-list standard 1_2_187 permit 65000:1 0:2 0:187 ip community-list standard 2_3_63 permit 65000:2 0:3 0:63 ip community-list standard 1_3_186 permit 65000:1 0:3 0:186 ip community-list standard 1_4_185 permit 65000:1 0:4 0:185 ip community-list standard 1_5_184 permit 65000:1 0:5 0:184 ip community-list standard 1_6_183 permit 65000:1 0:6 0:183 ip community-list standard 2_7_27 permit 65000:2 0:7 0:27 ip community-list standard 1_7_182 permit 65000:1 0:7 0:182 ip community-list standard 1_8_181 permit 65000:1 0:8 0:181 ip community-list standard 2_9_21 permit 65000:2 0:9 0:21 ip community-list standard 1_9_180 permit 65000:1 0:9 0:180 ip community-list standard 1_10_179 permit 65000:1 0:10 0:179 ip community-list standard 1_11_178 permit 65000:1 0:11 0:178 ip community-list standard 1_12_177 permit 65000:1 0:12 0:177 ip community-list standard 1_13_176 permit 65000:1 0:13 0:176 ip community-list standard 1_14_175 permit 65000:1 0:14 0:175 ip community-list standard 1_15_174 permit 65000:1 0:15 0:174 ip community-list standard 1_16_173 permit 65000:1 0:16 0:173 ip community-list standard 1_17_172 permit 65000:1 0:17 0:172 ip community-list standard 1_18_171 permit 65000:1 0:18 0:171 ip community-list standard 1_19_170 permit 65000:1 0:19 0:170 ip community-list standard 1_20_169 permit 65000:1 0:20 0:169 ip community-list standard 1_21_168 permit 65000:1 0:21 0:168 ip community-list standard 1_22_167 permit 65000:1 0:22 0:167 ip community-list standard 1_23_166 permit 65000:1 0:23 0:166 ip community-list standard 1_24_165 permit 65000:1 0:24 0:165 ip community-list standard 1_25_164 permit 65000:1 0:25 0:164 ip community-list standard 1_26_163 permit 65000:1 0:26 0:163 ip community-list standard 1_27_162 permit 65000:1 0:27 0:162 ip community-list standard 1_28_161 permit 65000:1 0:28 0:161 ip community-list standard 1_29_160 permit 65000:1 0:29 0:160 ip community-list standard 1_30_159 permit 65000:1 0:30 0:159 ip community-list standard 1_31_158 permit 65000:1 0:31 0:158 ip community-list standard 1_32_157 permit 65000:1 0:32 0:157 ip community-list standard 1_33_156 permit 65000:1 0:33 0:156 ip community-list standard 1_34_155 permit 65000:1 0:34 0:155 ip community-list standard 1_35_154 permit 65000:1 0:35 0:154 ip community-list standard 1_36_153 permit 65000:1 0:36 0:153 ip community-list standard 1_37_152 permit 65000:1 0:37 0:152 ip community-list standard 1_38_151 permit 65000:1 0:38 0:151 ip community-list standard 1_39_150 permit 65000:1 0:39 0:150 ip community-list standard 1_40_149 permit 65000:1 0:40 0:149 ip community-list standard 1_41_148 permit 65000:1 0:41 0:148 ip community-list standard 1_42_147 permit 65000:1 0:42 0:147 ip community-list standard 1_43_146 permit 65000:1 0:43 0:146 ip community-list standard 1_44_145 permit 65000:1 0:44 0:145 ip community-list standard 1_45_144 permit 65000:1 0:45 0:144 ip community-list standard 1_46_143 permit 65000:1 0:46 0:143 ip community-list standard 1_47_142 permit 65000:1 0:47 0:142 ip community-list standard 1_48_141 permit 65000:1 0:48 0:141 ip community-list standard 1_49_140 permit 65000:1 0:49 0:140 ip community-list standard 1_50_139 permit 65000:1 0:50 0:139 ip community-list standard 1_51_138 permit 65000:1 0:51 0:138 ip community-list standard 1_52_137 permit 65000:1 0:52 0:137 ip community-list standard 1_53_136 permit 65000:1 0:53 0:136 ip community-list standard 1_54_135 permit 65000:1 0:54 0:135 ip community-list standard 1_55_134 permit 65000:1 0:55 0:134 ip community-list standard 1_56_133 permit 65000:1 0:56 0:133 ip community-list standard 1_57_132 permit 65000:1 0:57 0:132 ip community-list standard 1_58_131 permit 65000:1 0:58 0:131 ip community-list standard 1_59_130 permit 65000:1 0:59 0:130 ip community-list standard 1_60_129 permit 65000:1 0:60 0:129 ip community-list standard 1_61_128 permit 65000:1 0:61 0:128 ip community-list standard 1_62_127 permit 65000:1 0:62 0:127 ip community-list standard 1_63_126 permit 65000:1 0:63 0:126 ip community-list standard 1_64_125 permit 65000:1 0:64 0:125 ip community-list standard 1_65_124 permit 65000:1 0:65 0:124 ip community-list standard 1_66_123 permit 65000:1 0:66 0:123 ip community-list standard 1_67_122 permit 65000:1 0:67 0:122 ip community-list standard 1_68_121 permit 65000:1 0:68 0:121 ip community-list standard 1_69_120 permit 65000:1 0:69 0:120 ip community-list standard 1_70_119 permit 65000:1 0:70 0:119 ip community-list standard 1_71_118 permit 65000:1 0:71 0:118 ip community-list standard 1_72_117 permit 65000:1 0:72 0:117 ip community-list standard 1_73_116 permit 65000:1 0:73 0:116 ip community-list standard 1_74_115 permit 65000:1 0:74 0:115 ip community-list standard 1_75_114 permit 65000:1 0:75 0:114 ip community-list standard 1_76_113 permit 65000:1 0:76 0:113 ip community-list standard 1_77_112 permit 65000:1 0:77 0:112 ip community-list standard 1_78_111 permit 65000:1 0:78 0:111 ip community-list standard 1_79_110 permit 65000:1 0:79 0:110 ip community-list standard 1_80_109 permit 65000:1 0:80 0:109 ip community-list standard 1_81_108 permit 65000:1 0:81 0:108 ip community-list standard 1_82_107 permit 65000:1 0:82 0:107 ip community-list standard 1_83_106 permit 65000:1 0:83 0:106 ip community-list standard 1_84_105 permit 65000:1 0:84 0:105 ip community-list standard 1_85_104 permit 65000:1 0:85 0:104 ip community-list standard 1_86_103 permit 65000:1 0:86 0:103 ip community-list standard 1_87_102 permit 65000:1 0:87 0:102 ip community-list standard 1_88_101 permit 65000:1 0:88 0:101 ip community-list standard 1_89_100 permit 65000:1 0:89 0:100 ip community-list standard 1_90_99 permit 65000:1 0:90 0:99 ip community-list standard 1_91_98 permit 65000:1 0:91 0:98 ip community-list standard 1_92_97 permit 65000:1 0:92 0:97 ip community-list standard 1_93_96 permit 65000:1 0:93 0:96 ip community-list standard 1_94_95 permit 65000:1 0:94 0:95 ip community-list expanded c189 permit 1 ^65000:4_0:189_0:1$ ip community-list expanded c189 permit 2 ^65000:3_0:190_0:1$ ip community-list expanded c189 permit 3 ^65000:3_0:191_0:2$ ip community-list expanded c189 permit 4 ^65000:3_0:192_0:3$ ip community-list expanded c189 permit 5 ^65000:3_0:193_0:4$ ip community-list expanded c189 permit 6 ^65000:3_0:194_0:5$ ip community-list expanded c189 permit 7 ^65000:3_0:195_0:6$ ip community-list expanded c189 permit 8 ^65000:3_0:196_0:7$ ip community-list expanded c189 permit 9 ^65000:3_0:197_0:8$ ip community-list expanded c189 permit 10 ^65000:3_0:198_0:9$ ip community-list expanded c189 permit 11 ^65000:3_0:199_0:10$ ip community-list expanded c189 permit 12 ^65000:3_0:200_0:11$ ip community-list expanded c189 permit 13 ^65000:3_0:201_0:12$ ip community-list expanded c189 permit 14 ^65000:3_0:202_0:13$ ip community-list expanded c189 permit 15 ^65000:3_0:203_0:14$ ip community-list expanded c189 permit 16 ^65000:3_0:204_0:15$ ip community-list expanded c189 permit 17 ^65000:3_0:205_0:16$ ip community-list expanded c189 permit 18 ^65000:3_0:206_0:17$ ip community-list expanded c189 permit 19 ^65000:3_0:207_0:18$ ip community-list expanded c189 permit 20 ^65000:3_0:208_0:19$ ip community-list expanded c189 permit 21 ^65000:3_0:209_0:20$ ip community-list expanded c189 permit 22 ^65000:3_0:210_0:21$ ip community-list expanded c189 permit 23 ^65000:3_0:211_0:22$ ip community-list expanded c189 permit 24 ^65000:3_0:212_0:23$ ip community-list expanded c189 permit 25 ^65000:3_0:213_0:24$ ip community-list expanded c189 permit 26 ^65000:3_0:214_0:25$ ip community-list expanded c189 permit 27 ^65000:3_0:215_0:26$ ip community-list expanded c189 permit 28 ^65000:3_0:216_0:27$ ip community-list expanded c189 permit 29 ^65000:3_0:217_0:28$ ip community-list expanded c189 permit 30 ^65000:3_0:218_0:29$ ip community-list expanded c189 permit 31 ^65000:3_0:219_0:30$ ip community-list expanded c189 permit 32 ^65000:3_0:220_0:31$ ip community-list expanded c189 permit 33 ^65000:3_0:221_0:32$ ip community-list expanded c189 permit 34 ^65000:3_0:222_0:33$ ip community-list expanded c189 permit 35 ^65000:3_0:223_0:34$ ip community-list expanded c189 permit 36 ^65000:3_0:224_0:35$ ip community-list expanded c189 permit 37 ^65000:3_0:225_0:36$ ip community-list expanded c189 permit 38 ^65000:3_0:226_0:37$ ip community-list expanded c189 permit 39 ^65000:3_0:227_0:38$ ip community-list expanded c189 permit 40 ^65000:3_0:228_0:39$ ip community-list expanded c189 permit 41 ^65000:3_0:229_0:40$ ip community-list expanded c189 permit 42 ^65000:3_0:230_0:41$ ip community-list expanded c189 permit 43 ^65000:3_0:231_0:42$ ip community-list expanded c189 permit 44 ^65000:3_0:232_0:43$ ip community-list expanded c189 permit 45 ^65000:3_0:233_0:44$ ip community-list expanded c189 permit 46 ^65000:3_0:234_0:45$ ip community-list expanded c189 permit 47 ^65000:3_0:235_0:46$ ip community-list expanded c189 permit 48 ^65000:3_0:236_0:47$ ip community-list expanded c189 permit 49 ^65000:3_0:237_0:48$ ip community-list expanded c189 permit 50 ^65000:3_0:238_0:49$ ip community-list expanded c189 permit 51 ^65000:3_0:239_0:50$ ip community-list expanded c189 permit 52 ^65000:3_0:240_0:51$ ip community-list expanded c189 permit 53 ^65000:3_0:241_0:52$ ip community-list expanded c189 permit 54 ^65000:3_0:242_0:53$ ip community-list expanded c189 permit 55 ^65000:3_0:243_0:54$ ip community-list expanded c189 permit 56 ^65000:3_0:244_0:55$ ip community-list expanded c189 permit 57 ^65000:3_0:245_0:56$ ip community-list expanded c189 permit 58 ^65000:3_0:246_0:57$ ip community-list expanded c189 permit 59 ^65000:3_0:247_0:58$ ip community-list expanded c189 permit 60 ^65000:3_0:248_0:59$ ip community-list expanded c189 permit 61 ^65000:3_0:249_0:60$ ip community-list expanded c189 permit 62 ^65000:3_0:250_0:61$ ip community-list expanded c189 permit 63 ^65000:3_0:251_0:62$ ip community-list expanded c189 permit 64 ^65000:3_0:252_0:63$ ip community-list expanded c189 permit 65 ^65000:3_0:253_0:64$ ip community-list expanded c189 permit 66 ^65000:3_0:254_0:65$ ip community-list expanded c189 permit 67 ^65000:3_0:255_0:66$ ip community-list expanded c189 permit 68 ^65000:3_0:256_0:67$ route-map calculator permit 28956 match community 1_1_188 2_1_189 1_2_187 2_3_63 1_3_186 set community 0:189 route-map calculator permit 28957 match community 1_4_185 1_5_184 1_6_183 2_7_27 1_7_182 set community 0:189 route-map calculator permit 28958 match community 1_8_181 2_9_21 1_9_180 1_10_179 1_11_178 set community 0:189 route-map calculator permit 28959 match community 1_12_177 1_13_176 1_14_175 1_15_174 1_16_173 set community 0:189 route-map calculator permit 28960 match community 1_17_172 1_18_171 1_19_170 1_20_169 1_21_168 set community 0:189 route-map calculator permit 28961 match community 1_22_167 1_23_166 1_24_165 1_25_164 1_26_163 set community 0:189 route-map calculator permit 28962 match community 1_27_162 1_28_161 1_29_160 1_30_159 1_31_158 set community 0:189 route-map calculator permit 28963 match community 1_32_157 1_33_156 1_34_155 1_35_154 1_36_153 set community 0:189 route-map calculator permit 28964 match community 1_37_152 1_38_151 1_39_150 1_40_149 1_41_148 set community 0:189 route-map calculator permit 28965 match community 1_42_147 1_43_146 1_44_145 1_45_144 1_46_143 set community 0:189 route-map calculator permit 28966 match community 1_47_142 1_48_141 1_49_140 1_50_139 1_51_138 set community 0:189 route-map calculator permit 28967 match community 1_52_137 1_53_136 1_54_135 1_55_134 1_56_133 set community 0:189 route-map calculator permit 28968 match community 1_57_132 1_58_131 1_59_130 1_60_129 1_61_128 set community 0:189 route-map calculator permit 28969 match community 1_62_127 1_63_126 1_64_125 1_65_124 1_66_123 set community 0:189 route-map calculator permit 28970 match community 1_67_122 1_68_121 1_69_120 1_70_119 1_71_118 set community 0:189 route-map calculator permit 28971 match community 1_72_117 1_73_116 1_74_115 1_75_114 1_76_113 set community 0:189 route-map calculator permit 28972 match community 1_77_112 1_78_111 1_79_110 1_80_109 1_81_108 set community 0:189 route-map calculator permit 28973 match community 1_82_107 1_83_106 1_84_105 1_85_104 1_86_103 set community 0:189 route-map calculator permit 28974 match community 1_87_102 1_88_101 1_89_100 1_90_99 1_91_98 set community 0:189 route-map calculator permit 28975 match community 1_92_97 1_93_96 1_94_95 c4_189_1 c3_190_1 set community 0:189 route-map calculator permit 28976 match community c3_191_2 c3_192_3 c3_193_4 c3_194_5 c3_195_6 set community 0:189 route-map calculator permit 28977 match community c3_196_7 c3_197_8 c3_198_9 c3_199_10 c3_200_11 set community 0:189 route-map calculator permit 28978 match community c3_201_12 c3_202_13 c3_203_14 c3_204_15 c3_205_16 set community 0:189 route-map calculator permit 28979 match community c3_206_17 c3_207_18 c3_208_19 c3_209_20 c3_210_21 set community 0:189 route-map calculator permit 28980 match community c3_211_22 c3_212_23 c3_213_24 c3_214_25 c3_215_26 set community 0:189 route-map calculator permit 28981 match community c3_216_27 c3_217_28 c3_218_29 c3_219_30 c3_220_31 set community 0:189 route-map calculator permit 28982 match community c3_221_32 c3_222_33 c3_223_34 c3_224_35 c3_225_36 set community 0:189 route-map calculator permit 28983 match community c3_226_37 c3_227_38 c3_228_39 c3_229_40 c3_230_41 set community 0:189 route-map calculator permit 28984 match community c3_231_42 c3_232_43 c3_233_44 c3_234_45 c3_235_46 set community 0:189 route-map calculator permit 28985 match community c3_236_47 c3_237_48 c3_238_49 c3_239_50 c3_240_51 set community 0:189 route-map calculator permit 28986 match community c3_241_52 c3_242_53 c3_243_54 c3_244_55 c3_245_56 set community 0:189 route-map calculator permit 28987 match community c3_246_57 c3_247_58 c3_248_59 c3_249_60 c3_250_61 set community 0:189 route-map calculator permit 28988 match community c3_251_62 c3_252_63 c3_253_64 c3_254_65 c3_255_66 set community 0:189 route-map calculator permit 28989 match community c3_256_67 set community 0:189 ip community-list standard 2_205_218 permit 65000:2 0:205 0:218 route-map calculator permit 28990 match community 2_205_218 set community 0:44690 ip community-list standard 2_10_183 permit 65000:2 0:10 0:183 ip community-list standard 2_15_122 permit 65000:2 0:15 0:122 ip community-list standard 2_30_61 permit 65000:2 0:30 0:61 route-map calculator permit 28991 match community 2_10_183 2_15_122 2_30_61 set community 0:1830 ip community-list standard 2_157_208 permit 65000:2 0:157 0:208 route-map calculator permit 28992 match community 2_157_208 set community 0:32656 ip community-list standard 2_181_184 permit 65000:2 0:181 0:184 route-map calculator permit 28993 match community 2_181_184 set community 0:33304 ip community-list standard 2_178_219 permit 65000:2 0:178 0:219 route-map calculator permit 28994 match community 2_178_219 set community 0:38982 ip community-list standard 2_208_254 permit 65000:2 0:208 0:254 route-map calculator permit 28995 match community 2_208_254 set community 0:52832 ip community-list standard 2_148_255 permit 65000:2 0:148 0:255 ip community-list standard 2_170_222 permit 65000:2 0:170 0:222 ip community-list standard 2_185_204 permit 65000:2 0:185 0:204 route-map calculator permit 28996 match community 2_148_255 2_170_222 2_185_204 set community 0:37740 ip community-list standard 2_96_241 permit 65000:2 0:96 0:241 route-map calculator permit 28997 match community 2_96_241 set community 0:23136 ip community-list standard 2_145_169 permit 65000:2 0:145 0:169 route-map calculator permit 28998 match community 2_145_169 set community 0:24505 ip community-list standard 2_117_248 permit 65000:2 0:117 0:248 ip community-list standard 2_124_234 permit 65000:2 0:124 0:234 ip community-list standard 2_156_186 permit 65000:2 0:156 0:186 route-map calculator permit 28999 match community 2_117_248 2_124_234 2_156_186 set community 0:29016 ip community-list standard 2_14_179 permit 65000:2 0:14 0:179 route-map calculator permit 29000 match community 2_14_179 set community 0:2506 ip community-list standard 2_157_181 permit 65000:2 0:157 0:181 route-map calculator permit 29001 match community 2_157_181 set community 0:28417 ip community-list standard 2_201_228 permit 65000:2 0:201 0:228 route-map calculator permit 29002 match community 2_201_228 set community 0:45828 ip community-list standard 2_55_174 permit 65000:2 0:55 0:174 ip community-list standard 2_58_165 permit 65000:2 0:58 0:165 ip community-list standard 2_66_145 permit 65000:2 0:66 0:145 ip community-list standard 2_87_110 permit 65000:2 0:87 0:110 route-map calculator permit 29003 match community 2_55_174 2_58_165 2_66_145 2_87_110 set community 0:9570 ip community-list standard 2_247_256 permit 65000:2 0:247 0:256 route-map calculator permit 29004 match community 2_247_256 set community 0:63232 ip community-list standard 2_101_201 permit 65000:2 0:101 0:201 route-map calculator permit 29005 match community 2_101_201 set community 0:20301 ip community-list standard 2_66_245 permit 65000:2 0:66 0:245 ip community-list standard 2_70_231 permit 65000:2 0:70 0:231 ip community-list standard 2_77_210 permit 65000:2 0:77 0:210 ip community-list standard 2_98_165 permit 65000:2 0:98 0:165 ip community-list standard 2_105_154 permit 65000:2 0:105 0:154 ip community-list standard 2_110_147 permit 65000:2 0:110 0:147 route-map calculator permit 29006 match community 2_66_245 2_70_231 2_77_210 2_98_165 2_105_154 set community 0:16170 route-map calculator permit 29007 match community 2_110_147 set community 0:16170 ip community-list standard 2_207_222 permit 65000:2 0:207 0:222 route-map calculator permit 29008 match community 2_207_222 set community 0:45954 ip community-list standard 2_169_249 permit 65000:2 0:169 0:249 route-map calculator permit 29009 match community 2_169_249 set community 0:42081 ip community-list standard 2_179_190 permit 65000:2 0:179 0:190 route-map calculator permit 29010 match community 2_179_190 set community 0:34010 ip community-list standard 2_47_212 permit 65000:2 0:47 0:212 ip community-list standard 2_53_188 permit 65000:2 0:53 0:188 ip community-list standard 2_94_106 permit 65000:2 0:94 0:106 route-map calculator permit 29011 match community 2_47_212 2_53_188 2_94_106 set community 0:9964 ip community-list standard 2_105_239 permit 65000:2 0:105 0:239 route-map calculator permit 29012 match community 2_105_239 set community 0:25095 ip community-list standard 2_78_206 permit 65000:2 0:78 0:206 ip community-list standard 2_103_156 permit 65000:2 0:103 0:156 route-map calculator permit 29013 match community 2_78_206 2_103_156 set community 0:16068 ip community-list standard 1_1_158 permit 65000:1 0:1 0:158 ip community-list standard 2_1_159 permit 65000:2 0:1 0:159 ip community-list standard 1_2_157 permit 65000:1 0:2 0:157 ip community-list standard 2_3_53 permit 65000:2 0:3 0:53 ip community-list standard 1_3_156 permit 65000:1 0:3 0:156 ip community-list standard 1_4_155 permit 65000:1 0:4 0:155 ip community-list standard 1_5_154 permit 65000:1 0:5 0:154 ip community-list standard 1_6_153 permit 65000:1 0:6 0:153 ip community-list standard 1_7_152 permit 65000:1 0:7 0:152 ip community-list standard 1_8_151 permit 65000:1 0:8 0:151 ip community-list standard 1_9_150 permit 65000:1 0:9 0:150 ip community-list standard 1_10_149 permit 65000:1 0:10 0:149 ip community-list standard 1_11_148 permit 65000:1 0:11 0:148 ip community-list standard 1_12_147 permit 65000:1 0:12 0:147 ip community-list standard 1_13_146 permit 65000:1 0:13 0:146 ip community-list standard 1_14_145 permit 65000:1 0:14 0:145 ip community-list standard 1_15_144 permit 65000:1 0:15 0:144 ip community-list standard 1_16_143 permit 65000:1 0:16 0:143 ip community-list standard 1_17_142 permit 65000:1 0:17 0:142 ip community-list standard 1_18_141 permit 65000:1 0:18 0:141 ip community-list standard 1_19_140 permit 65000:1 0:19 0:140 ip community-list standard 1_20_139 permit 65000:1 0:20 0:139 ip community-list standard 1_21_138 permit 65000:1 0:21 0:138 ip community-list standard 1_22_137 permit 65000:1 0:22 0:137 ip community-list standard 1_23_136 permit 65000:1 0:23 0:136 ip community-list standard 1_24_135 permit 65000:1 0:24 0:135 ip community-list standard 1_25_134 permit 65000:1 0:25 0:134 ip community-list standard 1_26_133 permit 65000:1 0:26 0:133 ip community-list standard 1_27_132 permit 65000:1 0:27 0:132 ip community-list standard 1_28_131 permit 65000:1 0:28 0:131 ip community-list standard 1_29_130 permit 65000:1 0:29 0:130 ip community-list standard 1_30_129 permit 65000:1 0:30 0:129 ip community-list standard 1_31_128 permit 65000:1 0:31 0:128 ip community-list standard 1_32_127 permit 65000:1 0:32 0:127 ip community-list standard 1_33_126 permit 65000:1 0:33 0:126 ip community-list standard 1_34_125 permit 65000:1 0:34 0:125 ip community-list standard 1_35_124 permit 65000:1 0:35 0:124 ip community-list standard 1_36_123 permit 65000:1 0:36 0:123 ip community-list standard 1_37_122 permit 65000:1 0:37 0:122 ip community-list standard 1_38_121 permit 65000:1 0:38 0:121 ip community-list standard 1_39_120 permit 65000:1 0:39 0:120 ip community-list standard 1_40_119 permit 65000:1 0:40 0:119 ip community-list standard 1_41_118 permit 65000:1 0:41 0:118 ip community-list standard 1_42_117 permit 65000:1 0:42 0:117 ip community-list standard 1_43_116 permit 65000:1 0:43 0:116 ip community-list standard 1_44_115 permit 65000:1 0:44 0:115 ip community-list standard 1_45_114 permit 65000:1 0:45 0:114 ip community-list standard 1_46_113 permit 65000:1 0:46 0:113 ip community-list standard 1_47_112 permit 65000:1 0:47 0:112 ip community-list standard 1_48_111 permit 65000:1 0:48 0:111 ip community-list standard 1_49_110 permit 65000:1 0:49 0:110 ip community-list standard 1_50_109 permit 65000:1 0:50 0:109 ip community-list standard 1_51_108 permit 65000:1 0:51 0:108 ip community-list standard 1_52_107 permit 65000:1 0:52 0:107 ip community-list standard 1_53_106 permit 65000:1 0:53 0:106 ip community-list standard 1_54_105 permit 65000:1 0:54 0:105 ip community-list standard 1_55_104 permit 65000:1 0:55 0:104 ip community-list standard 1_56_103 permit 65000:1 0:56 0:103 ip community-list standard 1_57_102 permit 65000:1 0:57 0:102 ip community-list standard 1_58_101 permit 65000:1 0:58 0:101 ip community-list standard 1_59_100 permit 65000:1 0:59 0:100 ip community-list standard 1_60_99 permit 65000:1 0:60 0:99 ip community-list standard 1_61_98 permit 65000:1 0:61 0:98 ip community-list standard 1_62_97 permit 65000:1 0:62 0:97 ip community-list standard 1_63_96 permit 65000:1 0:63 0:96 ip community-list standard 1_64_95 permit 65000:1 0:64 0:95 ip community-list standard 1_65_94 permit 65000:1 0:65 0:94 ip community-list standard 1_66_93 permit 65000:1 0:66 0:93 ip community-list standard 1_67_92 permit 65000:1 0:67 0:92 ip community-list standard 1_68_91 permit 65000:1 0:68 0:91 ip community-list standard 1_69_90 permit 65000:1 0:69 0:90 ip community-list standard 1_70_89 permit 65000:1 0:70 0:89 ip community-list standard 1_71_88 permit 65000:1 0:71 0:88 ip community-list standard 1_72_87 permit 65000:1 0:72 0:87 ip community-list standard 1_73_86 permit 65000:1 0:73 0:86 ip community-list standard 1_74_85 permit 65000:1 0:74 0:85 ip community-list standard 1_75_84 permit 65000:1 0:75 0:84 ip community-list standard 1_76_83 permit 65000:1 0:76 0:83 ip community-list standard 1_77_82 permit 65000:1 0:77 0:82 ip community-list standard 1_78_81 permit 65000:1 0:78 0:81 ip community-list standard 1_79_80 permit 65000:1 0:79 0:80 ip community-list expanded c159 permit 1 ^65000:4_0:159_0:1$ ip community-list expanded c159 permit 2 ^65000:3_0:160_0:1$ ip community-list expanded c159 permit 3 ^65000:3_0:161_0:2$ ip community-list expanded c159 permit 4 ^65000:3_0:162_0:3$ ip community-list expanded c159 permit 5 ^65000:3_0:163_0:4$ ip community-list expanded c159 permit 6 ^65000:3_0:164_0:5$ ip community-list expanded c159 permit 7 ^65000:3_0:165_0:6$ ip community-list expanded c159 permit 8 ^65000:3_0:166_0:7$ ip community-list expanded c159 permit 9 ^65000:3_0:167_0:8$ ip community-list expanded c159 permit 10 ^65000:3_0:168_0:9$ ip community-list expanded c159 permit 11 ^65000:3_0:169_0:10$ ip community-list expanded c159 permit 12 ^65000:3_0:170_0:11$ ip community-list expanded c159 permit 13 ^65000:3_0:171_0:12$ ip community-list expanded c159 permit 14 ^65000:3_0:172_0:13$ ip community-list expanded c159 permit 15 ^65000:3_0:173_0:14$ ip community-list expanded c159 permit 16 ^65000:3_0:174_0:15$ ip community-list expanded c159 permit 17 ^65000:3_0:175_0:16$ ip community-list expanded c159 permit 18 ^65000:3_0:176_0:17$ ip community-list expanded c159 permit 19 ^65000:3_0:177_0:18$ ip community-list expanded c159 permit 20 ^65000:3_0:178_0:19$ ip community-list expanded c159 permit 21 ^65000:3_0:179_0:20$ ip community-list expanded c159 permit 22 ^65000:3_0:180_0:21$ ip community-list expanded c159 permit 23 ^65000:3_0:181_0:22$ ip community-list expanded c159 permit 24 ^65000:3_0:182_0:23$ ip community-list expanded c159 permit 25 ^65000:3_0:183_0:24$ ip community-list expanded c159 permit 26 ^65000:3_0:184_0:25$ ip community-list expanded c159 permit 27 ^65000:3_0:185_0:26$ ip community-list expanded c159 permit 28 ^65000:3_0:186_0:27$ ip community-list expanded c159 permit 29 ^65000:3_0:187_0:28$ ip community-list expanded c159 permit 30 ^65000:3_0:188_0:29$ ip community-list expanded c159 permit 31 ^65000:3_0:189_0:30$ ip community-list expanded c159 permit 32 ^65000:3_0:190_0:31$ ip community-list expanded c159 permit 33 ^65000:3_0:191_0:32$ ip community-list expanded c159 permit 34 ^65000:3_0:192_0:33$ ip community-list expanded c159 permit 35 ^65000:3_0:193_0:34$ ip community-list expanded c159 permit 36 ^65000:3_0:194_0:35$ ip community-list expanded c159 permit 37 ^65000:3_0:195_0:36$ ip community-list expanded c159 permit 38 ^65000:3_0:196_0:37$ ip community-list expanded c159 permit 39 ^65000:3_0:197_0:38$ ip community-list expanded c159 permit 40 ^65000:3_0:198_0:39$ ip community-list expanded c159 permit 41 ^65000:3_0:199_0:40$ ip community-list expanded c159 permit 42 ^65000:3_0:200_0:41$ ip community-list expanded c159 permit 43 ^65000:3_0:201_0:42$ ip community-list expanded c159 permit 44 ^65000:3_0:202_0:43$ ip community-list expanded c159 permit 45 ^65000:3_0:203_0:44$ ip community-list expanded c159 permit 46 ^65000:3_0:204_0:45$ ip community-list expanded c159 permit 47 ^65000:3_0:205_0:46$ ip community-list expanded c159 permit 48 ^65000:3_0:206_0:47$ ip community-list expanded c159 permit 49 ^65000:3_0:207_0:48$ ip community-list expanded c159 permit 50 ^65000:3_0:208_0:49$ ip community-list expanded c159 permit 51 ^65000:3_0:209_0:50$ ip community-list expanded c159 permit 52 ^65000:3_0:210_0:51$ ip community-list expanded c159 permit 53 ^65000:3_0:211_0:52$ ip community-list expanded c159 permit 54 ^65000:3_0:212_0:53$ ip community-list expanded c159 permit 55 ^65000:3_0:213_0:54$ ip community-list expanded c159 permit 56 ^65000:3_0:214_0:55$ ip community-list expanded c159 permit 57 ^65000:3_0:215_0:56$ ip community-list expanded c159 permit 58 ^65000:3_0:216_0:57$ ip community-list expanded c159 permit 59 ^65000:3_0:217_0:58$ ip community-list expanded c159 permit 60 ^65000:3_0:218_0:59$ ip community-list expanded c159 permit 61 ^65000:3_0:219_0:60$ ip community-list expanded c159 permit 62 ^65000:3_0:220_0:61$ ip community-list expanded c159 permit 63 ^65000:3_0:221_0:62$ ip community-list expanded c159 permit 64 ^65000:3_0:222_0:63$ ip community-list expanded c159 permit 65 ^65000:3_0:223_0:64$ ip community-list expanded c159 permit 66 ^65000:3_0:224_0:65$ ip community-list expanded c159 permit 67 ^65000:3_0:225_0:66$ ip community-list expanded c159 permit 68 ^65000:3_0:226_0:67$ ip community-list expanded c159 permit 69 ^65000:3_0:227_0:68$ ip community-list expanded c159 permit 70 ^65000:3_0:228_0:69$ ip community-list expanded c159 permit 71 ^65000:3_0:229_0:70$ ip community-list expanded c159 permit 72 ^65000:3_0:230_0:71$ ip community-list expanded c159 permit 73 ^65000:3_0:231_0:72$ ip community-list expanded c159 permit 74 ^65000:3_0:232_0:73$ ip community-list expanded c159 permit 75 ^65000:3_0:233_0:74$ ip community-list expanded c159 permit 76 ^65000:3_0:234_0:75$ ip community-list expanded c159 permit 77 ^65000:3_0:235_0:76$ ip community-list expanded c159 permit 78 ^65000:3_0:236_0:77$ ip community-list expanded c159 permit 79 ^65000:3_0:237_0:78$ ip community-list expanded c159 permit 80 ^65000:3_0:238_0:79$ ip community-list expanded c159 permit 81 ^65000:3_0:239_0:80$ ip community-list expanded c159 permit 82 ^65000:3_0:240_0:81$ ip community-list expanded c159 permit 83 ^65000:3_0:241_0:82$ ip community-list expanded c159 permit 84 ^65000:3_0:242_0:83$ ip community-list expanded c159 permit 85 ^65000:3_0:243_0:84$ ip community-list expanded c159 permit 86 ^65000:3_0:244_0:85$ ip community-list expanded c159 permit 87 ^65000:3_0:245_0:86$ ip community-list expanded c159 permit 88 ^65000:3_0:246_0:87$ ip community-list expanded c159 permit 89 ^65000:3_0:247_0:88$ ip community-list expanded c159 permit 90 ^65000:3_0:248_0:89$ ip community-list expanded c159 permit 91 ^65000:3_0:249_0:90$ ip community-list expanded c159 permit 92 ^65000:3_0:250_0:91$ ip community-list expanded c159 permit 93 ^65000:3_0:251_0:92$ ip community-list expanded c159 permit 94 ^65000:3_0:252_0:93$ ip community-list expanded c159 permit 95 ^65000:3_0:253_0:94$ ip community-list expanded c159 permit 96 ^65000:3_0:254_0:95$ ip community-list expanded c159 permit 97 ^65000:3_0:255_0:96$ ip community-list expanded c159 permit 98 ^65000:3_0:256_0:97$ route-map calculator permit 29014 match community 1_1_158 2_1_159 1_2_157 2_3_53 1_3_156 set community 0:159 route-map calculator permit 29015 match community 1_4_155 1_5_154 1_6_153 1_7_152 1_8_151 set community 0:159 route-map calculator permit 29016 match community 1_9_150 1_10_149 1_11_148 1_12_147 1_13_146 set community 0:159 route-map calculator permit 29017 match community 1_14_145 1_15_144 1_16_143 1_17_142 1_18_141 set community 0:159 route-map calculator permit 29018 match community 1_19_140 1_20_139 1_21_138 1_22_137 1_23_136 set community 0:159 route-map calculator permit 29019 match community 1_24_135 1_25_134 1_26_133 1_27_132 1_28_131 set community 0:159 route-map calculator permit 29020 match community 1_29_130 1_30_129 1_31_128 1_32_127 1_33_126 set community 0:159 route-map calculator permit 29021 match community 1_34_125 1_35_124 1_36_123 1_37_122 1_38_121 set community 0:159 route-map calculator permit 29022 match community 1_39_120 1_40_119 1_41_118 1_42_117 1_43_116 set community 0:159 route-map calculator permit 29023 match community 1_44_115 1_45_114 1_46_113 1_47_112 1_48_111 set community 0:159 route-map calculator permit 29024 match community 1_49_110 1_50_109 1_51_108 1_52_107 1_53_106 set community 0:159 route-map calculator permit 29025 match community 1_54_105 1_55_104 1_56_103 1_57_102 1_58_101 set community 0:159 route-map calculator permit 29026 match community 1_59_100 1_60_99 1_61_98 1_62_97 1_63_96 set community 0:159 route-map calculator permit 29027 match community 1_64_95 1_65_94 1_66_93 1_67_92 1_68_91 set community 0:159 route-map calculator permit 29028 match community 1_69_90 1_70_89 1_71_88 1_72_87 1_73_86 set community 0:159 route-map calculator permit 29029 match community 1_74_85 1_75_84 1_76_83 1_77_82 1_78_81 set community 0:159 route-map calculator permit 29030 match community 1_79_80 c4_159_1 c3_160_1 c3_161_2 c3_162_3 set community 0:159 route-map calculator permit 29031 match community c3_163_4 c3_164_5 c3_165_6 c3_166_7 c3_167_8 set community 0:159 route-map calculator permit 29032 match community c3_168_9 c3_169_10 c3_170_11 c3_171_12 c3_172_13 set community 0:159 route-map calculator permit 29033 match community c3_173_14 c3_174_15 c3_175_16 c3_176_17 c3_177_18 set community 0:159 route-map calculator permit 29034 match community c3_178_19 c3_179_20 c3_180_21 c3_181_22 c3_182_23 set community 0:159 route-map calculator permit 29035 match community c3_183_24 c3_184_25 c3_185_26 c3_186_27 c3_187_28 set community 0:159 route-map calculator permit 29036 match community c3_188_29 c3_189_30 c3_190_31 c3_191_32 c3_192_33 set community 0:159 route-map calculator permit 29037 match community c3_193_34 c3_194_35 c3_195_36 c3_196_37 c3_197_38 set community 0:159 route-map calculator permit 29038 match community c3_198_39 c3_199_40 c3_200_41 c3_201_42 c3_202_43 set community 0:159 route-map calculator permit 29039 match community c3_203_44 c3_204_45 c3_205_46 c3_206_47 c3_207_48 set community 0:159 route-map calculator permit 29040 match community c3_208_49 c3_209_50 c3_210_51 c3_211_52 c3_212_53 set community 0:159 route-map calculator permit 29041 match community c3_213_54 c3_214_55 c3_215_56 c3_216_57 c3_217_58 set community 0:159 route-map calculator permit 29042 match community c3_218_59 c3_219_60 c3_220_61 c3_221_62 c3_222_63 set community 0:159 route-map calculator permit 29043 match community c3_223_64 c3_224_65 c3_225_66 c3_226_67 c3_227_68 set community 0:159 route-map calculator permit 29044 match community c3_228_69 c3_229_70 c3_230_71 c3_231_72 c3_232_73 set community 0:159 route-map calculator permit 29045 match community c3_233_74 c3_234_75 c3_235_76 c3_236_77 c3_237_78 set community 0:159 route-map calculator permit 29046 match community c3_238_79 c3_239_80 c3_240_81 c3_241_82 c3_242_83 set community 0:159 route-map calculator permit 29047 match community c3_243_84 c3_244_85 c3_245_86 c3_246_87 c3_247_88 set community 0:159 route-map calculator permit 29048 match community c3_248_89 c3_249_90 c3_250_91 c3_251_92 c3_252_93 set community 0:159 route-map calculator permit 29049 match community c3_253_94 c3_254_95 c3_255_96 c3_256_97 set community 0:159 ip community-list standard 2_80_197 permit 65000:2 0:80 0:197 route-map calculator permit 29050 match community 2_80_197 set community 0:15760 ip community-list standard 2_13_41 permit 65000:2 0:13 0:41 route-map calculator permit 29051 match community 2_13_41 set community 0:533 ip community-list standard 2_165_236 permit 65000:2 0:165 0:236 ip community-list standard 2_177_220 permit 65000:2 0:177 0:220 route-map calculator permit 29052 match community 2_165_236 2_177_220 set community 0:38940 ip community-list standard 2_133_194 permit 65000:2 0:133 0:194 route-map calculator permit 29053 match community 2_133_194 set community 0:25802 ip community-list standard 2_57_238 permit 65000:2 0:57 0:238 ip community-list standard 2_102_133 permit 65000:2 0:102 0:133 ip community-list standard 2_114_119 permit 65000:2 0:114 0:119 route-map calculator permit 29054 match community 2_57_238 2_102_133 2_114_119 set community 0:13566 ip community-list standard 2_64_197 permit 65000:2 0:64 0:197 route-map calculator permit 29055 match community 2_64_197 set community 0:12608 ip community-list standard 2_40_197 permit 65000:2 0:40 0:197 route-map calculator permit 29056 match community 2_40_197 set community 0:7880 ip community-list standard 2_70_222 permit 65000:2 0:70 0:222 ip community-list standard 2_74_210 permit 65000:2 0:74 0:210 ip community-list standard 2_84_185 permit 65000:2 0:84 0:185 ip community-list standard 2_105_148 permit 65000:2 0:105 0:148 ip community-list standard 2_111_140 permit 65000:2 0:111 0:140 route-map calculator permit 29057 match community 2_70_222 2_74_210 2_84_185 2_105_148 2_111_140 set community 0:15540 ip community-list standard 2_23_226 permit 65000:2 0:23 0:226 ip community-list standard 2_46_113 permit 65000:2 0:46 0:113 route-map calculator permit 29058 match community 2_23_226 2_46_113 set community 0:5198 ip community-list standard 2_50_222 permit 65000:2 0:50 0:222 ip community-list standard 2_60_185 permit 65000:2 0:60 0:185 ip community-list standard 2_74_150 permit 65000:2 0:74 0:150 ip community-list standard 2_75_148 permit 65000:2 0:75 0:148 ip community-list standard 2_100_111 permit 65000:2 0:100 0:111 route-map calculator permit 29059 match community 2_50_222 2_60_185 2_74_150 2_75_148 2_100_111 set community 0:11100 ip community-list standard 2_52_245 permit 65000:2 0:52 0:245 ip community-list standard 2_65_196 permit 65000:2 0:65 0:196 ip community-list standard 2_70_182 permit 65000:2 0:70 0:182 ip community-list standard 2_91_140 permit 65000:2 0:91 0:140 ip community-list standard 2_98_130 permit 65000:2 0:98 0:130 route-map calculator permit 29060 match community 2_52_245 2_65_196 2_70_182 2_91_140 2_98_130 set community 0:12740 ip community-list standard 2_168_247 permit 65000:2 0:168 0:247 ip community-list standard 2_182_228 permit 65000:2 0:182 0:228 route-map calculator permit 29061 match community 2_168_247 2_182_228 set community 0:41496 ip community-list standard 2_47_232 permit 65000:2 0:47 0:232 ip community-list standard 2_58_188 permit 65000:2 0:58 0:188 ip community-list standard 2_94_116 permit 65000:2 0:94 0:116 route-map calculator permit 29062 match community 2_47_232 2_58_188 2_94_116 set community 0:10904 ip community-list standard 2_18_194 permit 65000:2 0:18 0:194 ip community-list standard 2_36_97 permit 65000:2 0:36 0:97 route-map calculator permit 29063 match community 2_18_194 2_36_97 set community 0:3492 ip community-list standard 2_168_214 permit 65000:2 0:168 0:214 route-map calculator permit 29064 match community 2_168_214 set community 0:35952 ip community-list standard 2_55_113 permit 65000:2 0:55 0:113 route-map calculator permit 29065 match community 2_55_113 set community 0:6215 ip community-list standard 2_103_187 permit 65000:2 0:103 0:187 route-map calculator permit 29066 match community 2_103_187 set community 0:19261 ip community-list standard 2_15_240 permit 65000:2 0:15 0:240 ip community-list standard 2_16_225 permit 65000:2 0:16 0:225 ip community-list standard 2_18_200 permit 65000:2 0:18 0:200 ip community-list standard 2_20_180 permit 65000:2 0:20 0:180 ip community-list standard 2_24_150 permit 65000:2 0:24 0:150 ip community-list standard 2_25_144 permit 65000:2 0:25 0:144 ip community-list standard 2_30_120 permit 65000:2 0:30 0:120 ip community-list standard 2_36_100 permit 65000:2 0:36 0:100 ip community-list standard 2_40_90 permit 65000:2 0:40 0:90 ip community-list standard 2_45_80 permit 65000:2 0:45 0:80 ip community-list standard 2_48_75 permit 65000:2 0:48 0:75 ip community-list standard 2_50_72 permit 65000:2 0:50 0:72 ip community-list standard 2_60_60 permit 65000:2 0:60 0:60 route-map calculator permit 29067 match community 2_15_240 2_16_225 2_18_200 2_20_180 2_24_150 set community 0:3600 route-map calculator permit 29068 match community 2_25_144 2_30_120 2_36_100 2_40_90 2_45_80 set community 0:3600 route-map calculator permit 29069 match community 2_48_75 2_50_72 2_60_60 set community 0:3600 ip community-list standard 2_133_164 permit 65000:2 0:133 0:164 route-map calculator permit 29070 match community 2_133_164 set community 0:21812 ip community-list standard 2_45_191 permit 65000:2 0:45 0:191 route-map calculator permit 29071 match community 2_45_191 set community 0:8595 ip community-list standard 2_33_129 permit 65000:2 0:33 0:129 ip community-list standard 2_43_99 permit 65000:2 0:43 0:99 route-map calculator permit 29072 match community 2_33_129 2_43_99 set community 0:4257 ip community-list standard 2_12_188 permit 65000:2 0:12 0:188 ip community-list standard 2_16_141 permit 65000:2 0:16 0:141 ip community-list standard 2_24_94 permit 65000:2 0:24 0:94 ip community-list standard 2_47_48 permit 65000:2 0:47 0:48 route-map calculator permit 29073 match community 2_12_188 2_16_141 2_24_94 2_47_48 set community 0:2256 ip community-list standard 2_125_237 permit 65000:2 0:125 0:237 route-map calculator permit 29074 match community 2_125_237 set community 0:29625 ip community-list standard 2_39_231 permit 65000:2 0:39 0:231 ip community-list standard 2_63_143 permit 65000:2 0:63 0:143 ip community-list standard 2_77_117 permit 65000:2 0:77 0:117 ip community-list standard 2_91_99 permit 65000:2 0:91 0:99 route-map calculator permit 29075 match community 2_39_231 2_63_143 2_77_117 2_91_99 set community 0:9009 ip community-list standard 2_178_185 permit 65000:2 0:178 0:185 route-map calculator permit 29076 match community 2_178_185 set community 0:32930 ip community-list standard 2_118_205 permit 65000:2 0:118 0:205 route-map calculator permit 29077 match community 2_118_205 set community 0:24190 ip community-list standard 2_62_222 permit 65000:2 0:62 0:222 ip community-list standard 2_74_186 permit 65000:2 0:74 0:186 ip community-list standard 2_93_148 permit 65000:2 0:93 0:148 ip community-list standard 2_111_124 permit 65000:2 0:111 0:124 route-map calculator permit 29078 match community 2_62_222 2_74_186 2_93_148 2_111_124 set community 0:13764 ip community-list standard 2_162_209 permit 65000:2 0:162 0:209 ip community-list standard 2_171_198 permit 65000:2 0:171 0:198 route-map calculator permit 29079 match community 2_162_209 2_171_198 set community 0:33858 ip community-list standard 2_133_220 permit 65000:2 0:133 0:220 ip community-list standard 2_140_209 permit 65000:2 0:140 0:209 ip community-list standard 2_154_190 permit 65000:2 0:154 0:190 route-map calculator permit 29080 match community 2_133_220 2_140_209 2_154_190 set community 0:29260 ip community-list standard 2_115_151 permit 65000:2 0:115 0:151 route-map calculator permit 29081 match community 2_115_151 set community 0:17365 ip community-list standard 2_227_247 permit 65000:2 0:227 0:247 route-map calculator permit 29082 match community 2_227_247 set community 0:56069 ip community-list standard 2_50_131 permit 65000:2 0:50 0:131 route-map calculator permit 29083 match community 2_50_131 set community 0:6550 ip community-list standard 2_4_250 permit 65000:2 0:4 0:250 ip community-list standard 2_5_200 permit 65000:2 0:5 0:200 ip community-list standard 2_8_125 permit 65000:2 0:8 0:125 ip community-list standard 2_10_100 permit 65000:2 0:10 0:100 ip community-list standard 2_20_50 permit 65000:2 0:20 0:50 ip community-list standard 2_25_40 permit 65000:2 0:25 0:40 route-map calculator permit 29084 match community 2_4_250 2_5_200 2_8_125 2_10_100 2_20_50 set community 0:1000 route-map calculator permit 29085 match community 2_25_40 set community 0:1000 ip community-list standard 2_40_194 permit 65000:2 0:40 0:194 ip community-list standard 2_80_97 permit 65000:2 0:80 0:97 route-map calculator permit 29086 match community 2_40_194 2_80_97 set community 0:7760 ip community-list standard 2_184_219 permit 65000:2 0:184 0:219 route-map calculator permit 29087 match community 2_184_219 set community 0:40296 ip community-list standard 2_72_242 permit 65000:2 0:72 0:242 ip community-list standard 2_88_198 permit 65000:2 0:88 0:198 ip community-list standard 2_99_176 permit 65000:2 0:99 0:176 ip community-list standard 2_121_144 permit 65000:2 0:121 0:144 ip community-list standard 2_132_132 permit 65000:2 0:132 0:132 route-map calculator permit 29088 match community 2_72_242 2_88_198 2_99_176 2_121_144 2_132_132 set community 0:17424 ip community-list standard 2_7_214 permit 65000:2 0:7 0:214 ip community-list standard 2_14_107 permit 65000:2 0:14 0:107 route-map calculator permit 29089 match community 2_7_214 2_14_107 set community 0:1498 ip community-list standard 2_39_159 permit 65000:2 0:39 0:159 ip community-list standard 2_53_117 permit 65000:2 0:53 0:117 route-map calculator permit 29090 match community 2_39_159 2_53_117 set community 0:6201 ip community-list standard 2_73_243 permit 65000:2 0:73 0:243 ip community-list standard 2_81_219 permit 65000:2 0:81 0:219 route-map calculator permit 29091 match community 2_73_243 2_81_219 set community 0:17739 ip community-list standard 2_2_214 permit 65000:2 0:2 0:214 ip community-list standard 2_4_107 permit 65000:2 0:4 0:107 ip community-list standard 1_172_256 permit 65000:1 0:172 0:256 ip community-list standard 1_173_255 permit 65000:1 0:173 0:255 ip community-list standard 1_174_254 permit 65000:1 0:174 0:254 ip community-list standard 1_175_253 permit 65000:1 0:175 0:253 ip community-list standard 1_176_252 permit 65000:1 0:176 0:252 ip community-list standard 1_177_251 permit 65000:1 0:177 0:251 ip community-list standard 1_178_250 permit 65000:1 0:178 0:250 ip community-list standard 1_179_249 permit 65000:1 0:179 0:249 ip community-list standard 1_180_248 permit 65000:1 0:180 0:248 ip community-list standard 1_181_247 permit 65000:1 0:181 0:247 ip community-list standard 1_182_246 permit 65000:1 0:182 0:246 ip community-list standard 1_183_245 permit 65000:1 0:183 0:245 ip community-list standard 1_184_244 permit 65000:1 0:184 0:244 ip community-list standard 1_185_243 permit 65000:1 0:185 0:243 ip community-list standard 1_186_242 permit 65000:1 0:186 0:242 ip community-list standard 1_187_241 permit 65000:1 0:187 0:241 ip community-list standard 1_188_240 permit 65000:1 0:188 0:240 ip community-list standard 1_189_239 permit 65000:1 0:189 0:239 ip community-list standard 1_190_238 permit 65000:1 0:190 0:238 ip community-list standard 1_191_237 permit 65000:1 0:191 0:237 ip community-list standard 1_192_236 permit 65000:1 0:192 0:236 ip community-list standard 1_193_235 permit 65000:1 0:193 0:235 ip community-list standard 1_194_234 permit 65000:1 0:194 0:234 ip community-list standard 1_195_233 permit 65000:1 0:195 0:233 ip community-list standard 1_196_232 permit 65000:1 0:196 0:232 ip community-list standard 1_197_231 permit 65000:1 0:197 0:231 ip community-list standard 1_198_230 permit 65000:1 0:198 0:230 ip community-list standard 1_199_229 permit 65000:1 0:199 0:229 ip community-list standard 1_200_228 permit 65000:1 0:200 0:228 ip community-list standard 1_201_227 permit 65000:1 0:201 0:227 ip community-list standard 1_202_226 permit 65000:1 0:202 0:226 ip community-list standard 1_203_225 permit 65000:1 0:203 0:225 ip community-list standard 1_204_224 permit 65000:1 0:204 0:224 ip community-list standard 1_205_223 permit 65000:1 0:205 0:223 ip community-list standard 1_206_222 permit 65000:1 0:206 0:222 ip community-list standard 1_207_221 permit 65000:1 0:207 0:221 ip community-list standard 1_208_220 permit 65000:1 0:208 0:220 ip community-list standard 1_209_219 permit 65000:1 0:209 0:219 ip community-list standard 1_210_218 permit 65000:1 0:210 0:218 ip community-list standard 1_211_217 permit 65000:1 0:211 0:217 ip community-list standard 1_212_216 permit 65000:1 0:212 0:216 ip community-list standard 1_213_215 permit 65000:1 0:213 0:215 ip community-list standard 1_214_214 permit 65000:1 0:214 0:214 route-map calculator permit 29092 match community 2_2_214 2_4_107 1_172_256 1_173_255 1_174_254 set community 0:428 route-map calculator permit 29093 match community 1_175_253 1_176_252 1_177_251 1_178_250 1_179_249 set community 0:428 route-map calculator permit 29094 match community 1_180_248 1_181_247 1_182_246 1_183_245 1_184_244 set community 0:428 route-map calculator permit 29095 match community 1_185_243 1_186_242 1_187_241 1_188_240 1_189_239 set community 0:428 route-map calculator permit 29096 match community 1_190_238 1_191_237 1_192_236 1_193_235 1_194_234 set community 0:428 route-map calculator permit 29097 match community 1_195_233 1_196_232 1_197_231 1_198_230 1_199_229 set community 0:428 route-map calculator permit 29098 match community 1_200_228 1_201_227 1_202_226 1_203_225 1_204_224 set community 0:428 route-map calculator permit 29099 match community 1_205_223 1_206_222 1_207_221 1_208_220 1_209_219 set community 0:428 route-map calculator permit 29100 match community 1_210_218 1_211_217 1_212_216 1_213_215 1_214_214 set community 0:428 ip community-list standard 2_158_223 permit 65000:2 0:158 0:223 route-map calculator permit 29101 match community 2_158_223 set community 0:35234 ip community-list standard 2_129_204 permit 65000:2 0:129 0:204 ip community-list standard 2_153_172 permit 65000:2 0:153 0:172 route-map calculator permit 29102 match community 2_129_204 2_153_172 set community 0:26316 ip community-list standard 2_124_201 permit 65000:2 0:124 0:201 ip community-list standard 2_134_186 permit 65000:2 0:134 0:186 route-map calculator permit 29103 match community 2_124_201 2_134_186 set community 0:24924 ip community-list standard 2_133_214 permit 65000:2 0:133 0:214 route-map calculator permit 29104 match community 2_133_214 set community 0:28462 ip community-list standard 2_66_211 permit 65000:2 0:66 0:211 route-map calculator permit 29105 match community 2_66_211 set community 0:13926 ip community-list standard 2_178_254 permit 65000:2 0:178 0:254 route-map calculator permit 29106 match community 2_178_254 set community 0:45212 ip community-list standard 2_42_249 permit 65000:2 0:42 0:249 ip community-list standard 2_63_166 permit 65000:2 0:63 0:166 ip community-list standard 2_83_126 permit 65000:2 0:83 0:126 route-map calculator permit 29107 match community 2_42_249 2_63_166 2_83_126 set community 0:10458 ip community-list standard 2_43_133 permit 65000:2 0:43 0:133 route-map calculator permit 29108 match community 2_43_133 set community 0:5719 ip community-list standard 2_180_222 permit 65000:2 0:180 0:222 ip community-list standard 2_185_216 permit 65000:2 0:185 0:216 route-map calculator permit 29109 match community 2_180_222 2_185_216 set community 0:39960 ip community-list standard 2_17_170 permit 65000:2 0:17 0:170 ip community-list standard 2_34_85 permit 65000:2 0:34 0:85 route-map calculator permit 29110 match community 2_17_170 2_34_85 set community 0:2890 ip community-list standard 2_170_181 permit 65000:2 0:170 0:181 route-map calculator permit 29111 match community 2_170_181 set community 0:30770 ip community-list standard 2_7_122 permit 65000:2 0:7 0:122 ip community-list standard 2_14_61 permit 65000:2 0:14 0:61 route-map calculator permit 29112 match community 2_7_122 2_14_61 set community 0:854 ip community-list standard 1_1_220 permit 65000:1 0:1 0:220 ip community-list standard 2_1_221 permit 65000:2 0:1 0:221 ip community-list standard 1_2_219 permit 65000:1 0:2 0:219 ip community-list standard 1_3_218 permit 65000:1 0:3 0:218 ip community-list standard 1_4_217 permit 65000:1 0:4 0:217 ip community-list standard 1_5_216 permit 65000:1 0:5 0:216 ip community-list standard 1_6_215 permit 65000:1 0:6 0:215 ip community-list standard 1_7_214 permit 65000:1 0:7 0:214 ip community-list standard 1_8_213 permit 65000:1 0:8 0:213 ip community-list standard 1_9_212 permit 65000:1 0:9 0:212 ip community-list standard 1_10_211 permit 65000:1 0:10 0:211 ip community-list standard 1_11_210 permit 65000:1 0:11 0:210 ip community-list standard 1_12_209 permit 65000:1 0:12 0:209 ip community-list standard 2_13_17 permit 65000:2 0:13 0:17 ip community-list standard 1_13_208 permit 65000:1 0:13 0:208 ip community-list standard 1_14_207 permit 65000:1 0:14 0:207 ip community-list standard 1_15_206 permit 65000:1 0:15 0:206 ip community-list standard 1_16_205 permit 65000:1 0:16 0:205 ip community-list standard 1_17_204 permit 65000:1 0:17 0:204 ip community-list standard 1_18_203 permit 65000:1 0:18 0:203 ip community-list standard 1_19_202 permit 65000:1 0:19 0:202 ip community-list standard 1_20_201 permit 65000:1 0:20 0:201 ip community-list standard 1_21_200 permit 65000:1 0:21 0:200 ip community-list standard 1_22_199 permit 65000:1 0:22 0:199 ip community-list standard 1_23_198 permit 65000:1 0:23 0:198 ip community-list standard 1_24_197 permit 65000:1 0:24 0:197 ip community-list standard 1_25_196 permit 65000:1 0:25 0:196 ip community-list standard 1_26_195 permit 65000:1 0:26 0:195 ip community-list standard 1_27_194 permit 65000:1 0:27 0:194 ip community-list standard 1_28_193 permit 65000:1 0:28 0:193 ip community-list standard 1_29_192 permit 65000:1 0:29 0:192 ip community-list standard 1_30_191 permit 65000:1 0:30 0:191 ip community-list standard 1_31_190 permit 65000:1 0:31 0:190 ip community-list standard 1_32_189 permit 65000:1 0:32 0:189 ip community-list standard 1_33_188 permit 65000:1 0:33 0:188 ip community-list standard 1_34_187 permit 65000:1 0:34 0:187 ip community-list standard 1_35_186 permit 65000:1 0:35 0:186 ip community-list standard 1_36_185 permit 65000:1 0:36 0:185 ip community-list standard 1_37_184 permit 65000:1 0:37 0:184 ip community-list standard 1_38_183 permit 65000:1 0:38 0:183 ip community-list standard 1_39_182 permit 65000:1 0:39 0:182 ip community-list standard 1_40_181 permit 65000:1 0:40 0:181 ip community-list standard 1_41_180 permit 65000:1 0:41 0:180 ip community-list standard 1_42_179 permit 65000:1 0:42 0:179 ip community-list standard 1_43_178 permit 65000:1 0:43 0:178 ip community-list standard 1_44_177 permit 65000:1 0:44 0:177 ip community-list standard 1_45_176 permit 65000:1 0:45 0:176 ip community-list standard 1_46_175 permit 65000:1 0:46 0:175 ip community-list standard 1_47_174 permit 65000:1 0:47 0:174 ip community-list standard 1_48_173 permit 65000:1 0:48 0:173 ip community-list standard 1_49_172 permit 65000:1 0:49 0:172 ip community-list standard 1_50_171 permit 65000:1 0:50 0:171 ip community-list standard 1_51_170 permit 65000:1 0:51 0:170 ip community-list standard 1_52_169 permit 65000:1 0:52 0:169 ip community-list standard 1_53_168 permit 65000:1 0:53 0:168 ip community-list standard 1_54_167 permit 65000:1 0:54 0:167 ip community-list standard 1_55_166 permit 65000:1 0:55 0:166 ip community-list standard 1_56_165 permit 65000:1 0:56 0:165 ip community-list standard 1_57_164 permit 65000:1 0:57 0:164 ip community-list standard 1_58_163 permit 65000:1 0:58 0:163 ip community-list standard 1_59_162 permit 65000:1 0:59 0:162 ip community-list standard 1_60_161 permit 65000:1 0:60 0:161 ip community-list standard 1_61_160 permit 65000:1 0:61 0:160 ip community-list standard 1_62_159 permit 65000:1 0:62 0:159 ip community-list standard 1_63_158 permit 65000:1 0:63 0:158 ip community-list standard 1_64_157 permit 65000:1 0:64 0:157 ip community-list standard 1_65_156 permit 65000:1 0:65 0:156 ip community-list standard 1_66_155 permit 65000:1 0:66 0:155 ip community-list standard 1_67_154 permit 65000:1 0:67 0:154 ip community-list standard 1_68_153 permit 65000:1 0:68 0:153 ip community-list standard 1_69_152 permit 65000:1 0:69 0:152 ip community-list standard 1_70_151 permit 65000:1 0:70 0:151 ip community-list standard 1_71_150 permit 65000:1 0:71 0:150 ip community-list standard 1_72_149 permit 65000:1 0:72 0:149 ip community-list standard 1_73_148 permit 65000:1 0:73 0:148 ip community-list standard 1_74_147 permit 65000:1 0:74 0:147 ip community-list standard 1_75_146 permit 65000:1 0:75 0:146 ip community-list standard 1_76_145 permit 65000:1 0:76 0:145 ip community-list standard 1_77_144 permit 65000:1 0:77 0:144 ip community-list standard 1_78_143 permit 65000:1 0:78 0:143 ip community-list standard 1_79_142 permit 65000:1 0:79 0:142 ip community-list standard 1_80_141 permit 65000:1 0:80 0:141 ip community-list standard 1_81_140 permit 65000:1 0:81 0:140 ip community-list standard 1_82_139 permit 65000:1 0:82 0:139 ip community-list standard 1_83_138 permit 65000:1 0:83 0:138 ip community-list standard 1_84_137 permit 65000:1 0:84 0:137 ip community-list standard 1_85_136 permit 65000:1 0:85 0:136 ip community-list standard 1_86_135 permit 65000:1 0:86 0:135 ip community-list standard 1_87_134 permit 65000:1 0:87 0:134 ip community-list standard 1_88_133 permit 65000:1 0:88 0:133 ip community-list standard 1_89_132 permit 65000:1 0:89 0:132 ip community-list standard 1_90_131 permit 65000:1 0:90 0:131 ip community-list standard 1_91_130 permit 65000:1 0:91 0:130 ip community-list standard 1_92_129 permit 65000:1 0:92 0:129 ip community-list standard 1_93_128 permit 65000:1 0:93 0:128 ip community-list standard 1_94_127 permit 65000:1 0:94 0:127 ip community-list standard 1_95_126 permit 65000:1 0:95 0:126 ip community-list standard 1_96_125 permit 65000:1 0:96 0:125 ip community-list standard 1_97_124 permit 65000:1 0:97 0:124 ip community-list standard 1_98_123 permit 65000:1 0:98 0:123 ip community-list standard 1_99_122 permit 65000:1 0:99 0:122 ip community-list standard 1_100_121 permit 65000:1 0:100 0:121 ip community-list standard 1_101_120 permit 65000:1 0:101 0:120 ip community-list standard 1_102_119 permit 65000:1 0:102 0:119 ip community-list standard 1_103_118 permit 65000:1 0:103 0:118 ip community-list standard 1_104_117 permit 65000:1 0:104 0:117 ip community-list standard 1_105_116 permit 65000:1 0:105 0:116 ip community-list standard 1_106_115 permit 65000:1 0:106 0:115 ip community-list standard 1_107_114 permit 65000:1 0:107 0:114 ip community-list standard 1_108_113 permit 65000:1 0:108 0:113 ip community-list standard 1_109_112 permit 65000:1 0:109 0:112 ip community-list standard 1_110_111 permit 65000:1 0:110 0:111 ip community-list expanded c221 permit 1 ^65000:4_0:221_0:1$ ip community-list expanded c221 permit 2 ^65000:3_0:222_0:1$ ip community-list expanded c221 permit 3 ^65000:3_0:223_0:2$ ip community-list expanded c221 permit 4 ^65000:3_0:224_0:3$ ip community-list expanded c221 permit 5 ^65000:3_0:225_0:4$ ip community-list expanded c221 permit 6 ^65000:3_0:226_0:5$ ip community-list expanded c221 permit 7 ^65000:3_0:227_0:6$ ip community-list expanded c221 permit 8 ^65000:3_0:228_0:7$ ip community-list expanded c221 permit 9 ^65000:3_0:229_0:8$ ip community-list expanded c221 permit 10 ^65000:3_0:230_0:9$ ip community-list expanded c221 permit 11 ^65000:3_0:231_0:10$ ip community-list expanded c221 permit 12 ^65000:3_0:232_0:11$ ip community-list expanded c221 permit 13 ^65000:3_0:233_0:12$ ip community-list expanded c221 permit 14 ^65000:3_0:234_0:13$ ip community-list expanded c221 permit 15 ^65000:3_0:235_0:14$ ip community-list expanded c221 permit 16 ^65000:3_0:236_0:15$ ip community-list expanded c221 permit 17 ^65000:3_0:237_0:16$ ip community-list expanded c221 permit 18 ^65000:3_0:238_0:17$ ip community-list expanded c221 permit 19 ^65000:3_0:239_0:18$ ip community-list expanded c221 permit 20 ^65000:3_0:240_0:19$ ip community-list expanded c221 permit 21 ^65000:3_0:241_0:20$ ip community-list expanded c221 permit 22 ^65000:3_0:242_0:21$ ip community-list expanded c221 permit 23 ^65000:3_0:243_0:22$ ip community-list expanded c221 permit 24 ^65000:3_0:244_0:23$ ip community-list expanded c221 permit 25 ^65000:3_0:245_0:24$ ip community-list expanded c221 permit 26 ^65000:3_0:246_0:25$ ip community-list expanded c221 permit 27 ^65000:3_0:247_0:26$ ip community-list expanded c221 permit 28 ^65000:3_0:248_0:27$ ip community-list expanded c221 permit 29 ^65000:3_0:249_0:28$ ip community-list expanded c221 permit 30 ^65000:3_0:250_0:29$ ip community-list expanded c221 permit 31 ^65000:3_0:251_0:30$ ip community-list expanded c221 permit 32 ^65000:3_0:252_0:31$ ip community-list expanded c221 permit 33 ^65000:3_0:253_0:32$ ip community-list expanded c221 permit 34 ^65000:3_0:254_0:33$ ip community-list expanded c221 permit 35 ^65000:3_0:255_0:34$ ip community-list expanded c221 permit 36 ^65000:3_0:256_0:35$ route-map calculator permit 29113 match community 1_1_220 2_1_221 1_2_219 1_3_218 1_4_217 set community 0:221 route-map calculator permit 29114 match community 1_5_216 1_6_215 1_7_214 1_8_213 1_9_212 set community 0:221 route-map calculator permit 29115 match community 1_10_211 1_11_210 1_12_209 2_13_17 1_13_208 set community 0:221 route-map calculator permit 29116 match community 1_14_207 1_15_206 1_16_205 1_17_204 1_18_203 set community 0:221 route-map calculator permit 29117 match community 1_19_202 1_20_201 1_21_200 1_22_199 1_23_198 set community 0:221 route-map calculator permit 29118 match community 1_24_197 1_25_196 1_26_195 1_27_194 1_28_193 set community 0:221 route-map calculator permit 29119 match community 1_29_192 1_30_191 1_31_190 1_32_189 1_33_188 set community 0:221 route-map calculator permit 29120 match community 1_34_187 1_35_186 1_36_185 1_37_184 1_38_183 set community 0:221 route-map calculator permit 29121 match community 1_39_182 1_40_181 1_41_180 1_42_179 1_43_178 set community 0:221 route-map calculator permit 29122 match community 1_44_177 1_45_176 1_46_175 1_47_174 1_48_173 set community 0:221 route-map calculator permit 29123 match community 1_49_172 1_50_171 1_51_170 1_52_169 1_53_168 set community 0:221 route-map calculator permit 29124 match community 1_54_167 1_55_166 1_56_165 1_57_164 1_58_163 set community 0:221 route-map calculator permit 29125 match community 1_59_162 1_60_161 1_61_160 1_62_159 1_63_158 set community 0:221 route-map calculator permit 29126 match community 1_64_157 1_65_156 1_66_155 1_67_154 1_68_153 set community 0:221 route-map calculator permit 29127 match community 1_69_152 1_70_151 1_71_150 1_72_149 1_73_148 set community 0:221 route-map calculator permit 29128 match community 1_74_147 1_75_146 1_76_145 1_77_144 1_78_143 set community 0:221 route-map calculator permit 29129 match community 1_79_142 1_80_141 1_81_140 1_82_139 1_83_138 set community 0:221 route-map calculator permit 29130 match community 1_84_137 1_85_136 1_86_135 1_87_134 1_88_133 set community 0:221 route-map calculator permit 29131 match community 1_89_132 1_90_131 1_91_130 1_92_129 1_93_128 set community 0:221 route-map calculator permit 29132 match community 1_94_127 1_95_126 1_96_125 1_97_124 1_98_123 set community 0:221 route-map calculator permit 29133 match community 1_99_122 1_100_121 1_101_120 1_102_119 1_103_118 set community 0:221 route-map calculator permit 29134 match community 1_104_117 1_105_116 1_106_115 1_107_114 1_108_113 set community 0:221 route-map calculator permit 29135 match community 1_109_112 1_110_111 c4_221_1 c3_222_1 c3_223_2 set community 0:221 route-map calculator permit 29136 match community c3_224_3 c3_225_4 c3_226_5 c3_227_6 c3_228_7 set community 0:221 route-map calculator permit 29137 match community c3_229_8 c3_230_9 c3_231_10 c3_232_11 c3_233_12 set community 0:221 route-map calculator permit 29138 match community c3_234_13 c3_235_14 c3_236_15 c3_237_16 c3_238_17 set community 0:221 route-map calculator permit 29139 match community c3_239_18 c3_240_19 c3_241_20 c3_242_21 c3_243_22 set community 0:221 route-map calculator permit 29140 match community c3_244_23 c3_245_24 c3_246_25 c3_247_26 c3_248_27 set community 0:221 route-map calculator permit 29141 match community c3_249_28 c3_250_29 c3_251_30 c3_252_31 c3_253_32 set community 0:221 route-map calculator permit 29142 match community c3_254_33 c3_255_34 c3_256_35 set community 0:221 ip community-list standard 2_132_178 permit 65000:2 0:132 0:178 route-map calculator permit 29143 match community 2_132_178 set community 0:23496 ip community-list standard 2_166_249 permit 65000:2 0:166 0:249 route-map calculator permit 29144 match community 2_166_249 set community 0:41334 ip community-list standard 2_35_118 permit 65000:2 0:35 0:118 ip community-list standard 2_59_70 permit 65000:2 0:59 0:70 route-map calculator permit 29145 match community 2_35_118 2_59_70 set community 0:4130 ip community-list standard 2_75_167 permit 65000:2 0:75 0:167 route-map calculator permit 29146 match community 2_75_167 set community 0:12525 ip community-list standard 2_6_239 permit 65000:2 0:6 0:239 route-map calculator permit 29147 match community 2_6_239 set community 0:1434 ip community-list standard 2_19_250 permit 65000:2 0:19 0:250 ip community-list standard 2_25_190 permit 65000:2 0:25 0:190 ip community-list standard 2_38_125 permit 65000:2 0:38 0:125 ip community-list standard 2_50_95 permit 65000:2 0:50 0:95 route-map calculator permit 29148 match community 2_19_250 2_25_190 2_38_125 2_50_95 set community 0:4750 ip community-list standard 2_127_189 permit 65000:2 0:127 0:189 route-map calculator permit 29149 match community 2_127_189 set community 0:24003 ip community-list standard 2_194_247 permit 65000:2 0:194 0:247 route-map calculator permit 29150 match community 2_194_247 set community 0:47918 ip community-list standard 2_53_203 permit 65000:2 0:53 0:203 route-map calculator permit 29151 match community 2_53_203 set community 0:10759 ip community-list standard 2_24_237 permit 65000:2 0:24 0:237 ip community-list standard 2_36_158 permit 65000:2 0:36 0:158 ip community-list standard 2_72_79 permit 65000:2 0:72 0:79 route-map calculator permit 29152 match community 2_24_237 2_36_158 2_72_79 set community 0:5688 ip community-list standard 2_177_195 permit 65000:2 0:177 0:195 route-map calculator permit 29153 match community 2_177_195 set community 0:34515 ip community-list standard 2_223_243 permit 65000:2 0:223 0:243 route-map calculator permit 29154 match community 2_223_243 set community 0:54189 ip community-list standard 2_98_254 permit 65000:2 0:98 0:254 ip community-list standard 2_127_196 permit 65000:2 0:127 0:196 route-map calculator permit 29155 match community 2_98_254 2_127_196 set community 0:24892 ip community-list standard 2_149_210 permit 65000:2 0:149 0:210 route-map calculator permit 29156 match community 2_149_210 set community 0:31290 ip community-list standard 2_76_197 permit 65000:2 0:76 0:197 route-map calculator permit 29157 match community 2_76_197 set community 0:14972 ip community-list standard 2_151_172 permit 65000:2 0:151 0:172 route-map calculator permit 29158 match community 2_151_172 set community 0:25972 ip community-list standard 2_73_152 permit 65000:2 0:73 0:152 ip community-list standard 2_76_146 permit 65000:2 0:76 0:146 route-map calculator permit 29159 match community 2_73_152 2_76_146 set community 0:11096 ip community-list standard 2_145_174 permit 65000:2 0:145 0:174 route-map calculator permit 29160 match community 2_145_174 set community 0:25230 ip community-list standard 2_7_164 permit 65000:2 0:7 0:164 ip community-list standard 2_14_82 permit 65000:2 0:14 0:82 ip community-list standard 2_28_41 permit 65000:2 0:28 0:41 route-map calculator permit 29161 match community 2_7_164 2_14_82 2_28_41 set community 0:1148 ip community-list standard 2_4_202 permit 65000:2 0:4 0:202 ip community-list standard 2_8_101 permit 65000:2 0:8 0:101 route-map calculator permit 29162 match community 2_4_202 2_8_101 set community 0:808 ip community-list standard 2_29_233 permit 65000:2 0:29 0:233 route-map calculator permit 29163 match community 2_29_233 set community 0:6757 ip community-list standard 2_33_213 permit 65000:2 0:33 0:213 ip community-list standard 2_71_99 permit 65000:2 0:71 0:99 route-map calculator permit 29164 match community 2_33_213 2_71_99 set community 0:7029 ip community-list standard 2_167_199 permit 65000:2 0:167 0:199 route-map calculator permit 29165 match community 2_167_199 set community 0:33233 ip community-list standard 2_25_241 permit 65000:2 0:25 0:241 route-map calculator permit 29166 match community 2_25_241 set community 0:6025 ip community-list standard 2_145_252 permit 65000:2 0:145 0:252 ip community-list standard 2_174_210 permit 65000:2 0:174 0:210 ip community-list standard 2_180_203 permit 65000:2 0:180 0:203 route-map calculator permit 29167 match community 2_145_252 2_174_210 2_180_203 set community 0:36540 ip community-list standard 2_234_240 permit 65000:2 0:234 0:240 route-map calculator permit 29168 match community 2_234_240 set community 0:56160 ip community-list standard 2_31_71 permit 65000:2 0:31 0:71 route-map calculator permit 29169 match community 2_31_71 set community 0:2201 ip community-list standard 2_77_206 permit 65000:2 0:77 0:206 ip community-list standard 2_103_154 permit 65000:2 0:103 0:154 route-map calculator permit 29170 match community 2_77_206 2_103_154 set community 0:15862 ip community-list standard 2_3_234 permit 65000:2 0:3 0:234 ip community-list standard 2_6_117 permit 65000:2 0:6 0:117 ip community-list standard 2_9_78 permit 65000:2 0:9 0:78 ip community-list standard 2_13_54 permit 65000:2 0:13 0:54 ip community-list standard 2_18_39 permit 65000:2 0:18 0:39 ip community-list standard 2_26_27 permit 65000:2 0:26 0:27 route-map calculator permit 29171 match community 2_3_234 2_6_117 2_9_78 2_13_54 2_18_39 set community 0:702 route-map calculator permit 29172 match community 2_26_27 set community 0:702 ip community-list standard 2_240_255 permit 65000:2 0:240 0:255 route-map calculator permit 29173 match community 2_240_255 set community 0:61200 ip community-list standard 2_187_215 permit 65000:2 0:187 0:215 route-map calculator permit 29174 match community 2_187_215 set community 0:40205 ip community-list standard 2_209_240 permit 65000:2 0:209 0:240 ip community-list standard 2_220_228 permit 65000:2 0:220 0:228 route-map calculator permit 29175 match community 2_209_240 2_220_228 set community 0:50160 ip community-list standard 2_4_220 permit 65000:2 0:4 0:220 ip community-list standard 2_5_176 permit 65000:2 0:5 0:176 ip community-list standard 2_8_110 permit 65000:2 0:8 0:110 ip community-list standard 2_10_88 permit 65000:2 0:10 0:88 ip community-list standard 2_11_80 permit 65000:2 0:11 0:80 ip community-list standard 2_16_55 permit 65000:2 0:16 0:55 ip community-list standard 2_20_44 permit 65000:2 0:20 0:44 ip community-list standard 2_22_40 permit 65000:2 0:22 0:40 route-map calculator permit 29176 match community 2_4_220 2_5_176 2_8_110 2_10_88 2_11_80 set community 0:880 route-map calculator permit 29177 match community 2_16_55 2_20_44 2_22_40 set community 0:880 ip community-list standard 2_114_199 permit 65000:2 0:114 0:199 route-map calculator permit 29178 match community 2_114_199 set community 0:22686 ip community-list standard 2_135_233 permit 65000:2 0:135 0:233 route-map calculator permit 29179 match community 2_135_233 set community 0:31455 ip community-list standard 2_136_191 permit 65000:2 0:136 0:191 route-map calculator permit 29180 match community 2_136_191 set community 0:25976 ip community-list standard 2_137_184 permit 65000:2 0:137 0:184 route-map calculator permit 29181 match community 2_137_184 set community 0:25208 ip community-list standard 2_29_149 permit 65000:2 0:29 0:149 route-map calculator permit 29182 match community 2_29_149 set community 0:4321 ip community-list standard 2_119_199 permit 65000:2 0:119 0:199 route-map calculator permit 29183 match community 2_119_199 set community 0:23681 ip community-list standard 2_157_172 permit 65000:2 0:157 0:172 route-map calculator permit 29184 match community 2_157_172 set community 0:27004 ip community-list standard 2_172_234 permit 65000:2 0:172 0:234 route-map calculator permit 29185 match community 2_172_234 set community 0:40248 ip community-list standard 2_155_241 permit 65000:2 0:155 0:241 route-map calculator permit 29186 match community 2_155_241 set community 0:37355 ip community-list standard 2_147_167 permit 65000:2 0:147 0:167 route-map calculator permit 29187 match community 2_147_167 set community 0:24549 ip community-list standard 2_111_213 permit 65000:2 0:111 0:213 route-map calculator permit 29188 match community 2_111_213 set community 0:23643 ip community-list standard 2_141_234 permit 65000:2 0:141 0:234 route-map calculator permit 29189 match community 2_141_234 set community 0:32994 ip community-list standard 2_55_227 permit 65000:2 0:55 0:227 route-map calculator permit 29190 match community 2_55_227 set community 0:12485 ip community-list standard 2_160_193 permit 65000:2 0:160 0:193 route-map calculator permit 29191 match community 2_160_193 set community 0:30880 ip community-list standard 2_180_181 permit 65000:2 0:180 0:181 route-map calculator permit 29192 match community 2_180_181 set community 0:32580 ip community-list standard 1_1_160 permit 65000:1 0:1 0:160 ip community-list standard 2_1_161 permit 65000:2 0:1 0:161 ip community-list standard 1_2_159 permit 65000:1 0:2 0:159 ip community-list standard 1_3_158 permit 65000:1 0:3 0:158 ip community-list standard 1_4_157 permit 65000:1 0:4 0:157 ip community-list standard 1_5_156 permit 65000:1 0:5 0:156 ip community-list standard 1_6_155 permit 65000:1 0:6 0:155 ip community-list standard 2_7_23 permit 65000:2 0:7 0:23 ip community-list standard 1_7_154 permit 65000:1 0:7 0:154 ip community-list standard 1_8_153 permit 65000:1 0:8 0:153 ip community-list standard 1_9_152 permit 65000:1 0:9 0:152 ip community-list standard 1_10_151 permit 65000:1 0:10 0:151 ip community-list standard 1_11_150 permit 65000:1 0:11 0:150 ip community-list standard 1_12_149 permit 65000:1 0:12 0:149 ip community-list standard 1_13_148 permit 65000:1 0:13 0:148 ip community-list standard 1_14_147 permit 65000:1 0:14 0:147 ip community-list standard 1_15_146 permit 65000:1 0:15 0:146 ip community-list standard 1_16_145 permit 65000:1 0:16 0:145 ip community-list standard 1_17_144 permit 65000:1 0:17 0:144 ip community-list standard 1_18_143 permit 65000:1 0:18 0:143 ip community-list standard 1_19_142 permit 65000:1 0:19 0:142 ip community-list standard 1_20_141 permit 65000:1 0:20 0:141 ip community-list standard 1_21_140 permit 65000:1 0:21 0:140 ip community-list standard 1_22_139 permit 65000:1 0:22 0:139 ip community-list standard 1_23_138 permit 65000:1 0:23 0:138 ip community-list standard 1_24_137 permit 65000:1 0:24 0:137 ip community-list standard 1_25_136 permit 65000:1 0:25 0:136 ip community-list standard 1_26_135 permit 65000:1 0:26 0:135 ip community-list standard 1_27_134 permit 65000:1 0:27 0:134 ip community-list standard 1_28_133 permit 65000:1 0:28 0:133 ip community-list standard 1_29_132 permit 65000:1 0:29 0:132 ip community-list standard 1_30_131 permit 65000:1 0:30 0:131 ip community-list standard 1_31_130 permit 65000:1 0:31 0:130 ip community-list standard 1_32_129 permit 65000:1 0:32 0:129 ip community-list standard 1_33_128 permit 65000:1 0:33 0:128 ip community-list standard 1_34_127 permit 65000:1 0:34 0:127 ip community-list standard 1_35_126 permit 65000:1 0:35 0:126 ip community-list standard 1_36_125 permit 65000:1 0:36 0:125 ip community-list standard 1_37_124 permit 65000:1 0:37 0:124 ip community-list standard 1_38_123 permit 65000:1 0:38 0:123 ip community-list standard 1_39_122 permit 65000:1 0:39 0:122 ip community-list standard 1_40_121 permit 65000:1 0:40 0:121 ip community-list standard 1_41_120 permit 65000:1 0:41 0:120 ip community-list standard 1_42_119 permit 65000:1 0:42 0:119 ip community-list standard 1_43_118 permit 65000:1 0:43 0:118 ip community-list standard 1_44_117 permit 65000:1 0:44 0:117 ip community-list standard 1_45_116 permit 65000:1 0:45 0:116 ip community-list standard 1_46_115 permit 65000:1 0:46 0:115 ip community-list standard 1_47_114 permit 65000:1 0:47 0:114 ip community-list standard 1_48_113 permit 65000:1 0:48 0:113 ip community-list standard 1_49_112 permit 65000:1 0:49 0:112 ip community-list standard 1_50_111 permit 65000:1 0:50 0:111 ip community-list standard 1_51_110 permit 65000:1 0:51 0:110 ip community-list standard 1_52_109 permit 65000:1 0:52 0:109 ip community-list standard 1_53_108 permit 65000:1 0:53 0:108 ip community-list standard 1_54_107 permit 65000:1 0:54 0:107 ip community-list standard 1_55_106 permit 65000:1 0:55 0:106 ip community-list standard 1_56_105 permit 65000:1 0:56 0:105 ip community-list standard 1_57_104 permit 65000:1 0:57 0:104 ip community-list standard 1_58_103 permit 65000:1 0:58 0:103 ip community-list standard 1_59_102 permit 65000:1 0:59 0:102 ip community-list standard 1_60_101 permit 65000:1 0:60 0:101 ip community-list standard 1_61_100 permit 65000:1 0:61 0:100 ip community-list standard 1_62_99 permit 65000:1 0:62 0:99 ip community-list standard 1_63_98 permit 65000:1 0:63 0:98 ip community-list standard 1_64_97 permit 65000:1 0:64 0:97 ip community-list standard 1_65_96 permit 65000:1 0:65 0:96 ip community-list standard 1_66_95 permit 65000:1 0:66 0:95 ip community-list standard 1_67_94 permit 65000:1 0:67 0:94 ip community-list standard 1_68_93 permit 65000:1 0:68 0:93 ip community-list standard 1_69_92 permit 65000:1 0:69 0:92 ip community-list standard 1_70_91 permit 65000:1 0:70 0:91 ip community-list standard 1_71_90 permit 65000:1 0:71 0:90 ip community-list standard 1_72_89 permit 65000:1 0:72 0:89 ip community-list standard 1_73_88 permit 65000:1 0:73 0:88 ip community-list standard 1_74_87 permit 65000:1 0:74 0:87 ip community-list standard 1_75_86 permit 65000:1 0:75 0:86 ip community-list standard 1_76_85 permit 65000:1 0:76 0:85 ip community-list standard 1_77_84 permit 65000:1 0:77 0:84 ip community-list standard 1_78_83 permit 65000:1 0:78 0:83 ip community-list standard 1_79_82 permit 65000:1 0:79 0:82 ip community-list standard 1_80_81 permit 65000:1 0:80 0:81 ip community-list expanded c161 permit 1 ^65000:4_0:161_0:1$ ip community-list expanded c161 permit 2 ^65000:3_0:162_0:1$ ip community-list expanded c161 permit 3 ^65000:3_0:163_0:2$ ip community-list expanded c161 permit 4 ^65000:3_0:164_0:3$ ip community-list expanded c161 permit 5 ^65000:3_0:165_0:4$ ip community-list expanded c161 permit 6 ^65000:3_0:166_0:5$ ip community-list expanded c161 permit 7 ^65000:3_0:167_0:6$ ip community-list expanded c161 permit 8 ^65000:3_0:168_0:7$ ip community-list expanded c161 permit 9 ^65000:3_0:169_0:8$ ip community-list expanded c161 permit 10 ^65000:3_0:170_0:9$ ip community-list expanded c161 permit 11 ^65000:3_0:171_0:10$ ip community-list expanded c161 permit 12 ^65000:3_0:172_0:11$ ip community-list expanded c161 permit 13 ^65000:3_0:173_0:12$ ip community-list expanded c161 permit 14 ^65000:3_0:174_0:13$ ip community-list expanded c161 permit 15 ^65000:3_0:175_0:14$ ip community-list expanded c161 permit 16 ^65000:3_0:176_0:15$ ip community-list expanded c161 permit 17 ^65000:3_0:177_0:16$ ip community-list expanded c161 permit 18 ^65000:3_0:178_0:17$ ip community-list expanded c161 permit 19 ^65000:3_0:179_0:18$ ip community-list expanded c161 permit 20 ^65000:3_0:180_0:19$ ip community-list expanded c161 permit 21 ^65000:3_0:181_0:20$ ip community-list expanded c161 permit 22 ^65000:3_0:182_0:21$ ip community-list expanded c161 permit 23 ^65000:3_0:183_0:22$ ip community-list expanded c161 permit 24 ^65000:3_0:184_0:23$ ip community-list expanded c161 permit 25 ^65000:3_0:185_0:24$ ip community-list expanded c161 permit 26 ^65000:3_0:186_0:25$ ip community-list expanded c161 permit 27 ^65000:3_0:187_0:26$ ip community-list expanded c161 permit 28 ^65000:3_0:188_0:27$ ip community-list expanded c161 permit 29 ^65000:3_0:189_0:28$ ip community-list expanded c161 permit 30 ^65000:3_0:190_0:29$ ip community-list expanded c161 permit 31 ^65000:3_0:191_0:30$ ip community-list expanded c161 permit 32 ^65000:3_0:192_0:31$ ip community-list expanded c161 permit 33 ^65000:3_0:193_0:32$ ip community-list expanded c161 permit 34 ^65000:3_0:194_0:33$ ip community-list expanded c161 permit 35 ^65000:3_0:195_0:34$ ip community-list expanded c161 permit 36 ^65000:3_0:196_0:35$ ip community-list expanded c161 permit 37 ^65000:3_0:197_0:36$ ip community-list expanded c161 permit 38 ^65000:3_0:198_0:37$ ip community-list expanded c161 permit 39 ^65000:3_0:199_0:38$ ip community-list expanded c161 permit 40 ^65000:3_0:200_0:39$ ip community-list expanded c161 permit 41 ^65000:3_0:201_0:40$ ip community-list expanded c161 permit 42 ^65000:3_0:202_0:41$ ip community-list expanded c161 permit 43 ^65000:3_0:203_0:42$ ip community-list expanded c161 permit 44 ^65000:3_0:204_0:43$ ip community-list expanded c161 permit 45 ^65000:3_0:205_0:44$ ip community-list expanded c161 permit 46 ^65000:3_0:206_0:45$ ip community-list expanded c161 permit 47 ^65000:3_0:207_0:46$ ip community-list expanded c161 permit 48 ^65000:3_0:208_0:47$ ip community-list expanded c161 permit 49 ^65000:3_0:209_0:48$ ip community-list expanded c161 permit 50 ^65000:3_0:210_0:49$ ip community-list expanded c161 permit 51 ^65000:3_0:211_0:50$ ip community-list expanded c161 permit 52 ^65000:3_0:212_0:51$ ip community-list expanded c161 permit 53 ^65000:3_0:213_0:52$ ip community-list expanded c161 permit 54 ^65000:3_0:214_0:53$ ip community-list expanded c161 permit 55 ^65000:3_0:215_0:54$ ip community-list expanded c161 permit 56 ^65000:3_0:216_0:55$ ip community-list expanded c161 permit 57 ^65000:3_0:217_0:56$ ip community-list expanded c161 permit 58 ^65000:3_0:218_0:57$ ip community-list expanded c161 permit 59 ^65000:3_0:219_0:58$ ip community-list expanded c161 permit 60 ^65000:3_0:220_0:59$ ip community-list expanded c161 permit 61 ^65000:3_0:221_0:60$ ip community-list expanded c161 permit 62 ^65000:3_0:222_0:61$ ip community-list expanded c161 permit 63 ^65000:3_0:223_0:62$ ip community-list expanded c161 permit 64 ^65000:3_0:224_0:63$ ip community-list expanded c161 permit 65 ^65000:3_0:225_0:64$ ip community-list expanded c161 permit 66 ^65000:3_0:226_0:65$ ip community-list expanded c161 permit 67 ^65000:3_0:227_0:66$ ip community-list expanded c161 permit 68 ^65000:3_0:228_0:67$ ip community-list expanded c161 permit 69 ^65000:3_0:229_0:68$ ip community-list expanded c161 permit 70 ^65000:3_0:230_0:69$ ip community-list expanded c161 permit 71 ^65000:3_0:231_0:70$ ip community-list expanded c161 permit 72 ^65000:3_0:232_0:71$ ip community-list expanded c161 permit 73 ^65000:3_0:233_0:72$ ip community-list expanded c161 permit 74 ^65000:3_0:234_0:73$ ip community-list expanded c161 permit 75 ^65000:3_0:235_0:74$ ip community-list expanded c161 permit 76 ^65000:3_0:236_0:75$ ip community-list expanded c161 permit 77 ^65000:3_0:237_0:76$ ip community-list expanded c161 permit 78 ^65000:3_0:238_0:77$ ip community-list expanded c161 permit 79 ^65000:3_0:239_0:78$ ip community-list expanded c161 permit 80 ^65000:3_0:240_0:79$ ip community-list expanded c161 permit 81 ^65000:3_0:241_0:80$ ip community-list expanded c161 permit 82 ^65000:3_0:242_0:81$ ip community-list expanded c161 permit 83 ^65000:3_0:243_0:82$ ip community-list expanded c161 permit 84 ^65000:3_0:244_0:83$ ip community-list expanded c161 permit 85 ^65000:3_0:245_0:84$ ip community-list expanded c161 permit 86 ^65000:3_0:246_0:85$ ip community-list expanded c161 permit 87 ^65000:3_0:247_0:86$ ip community-list expanded c161 permit 88 ^65000:3_0:248_0:87$ ip community-list expanded c161 permit 89 ^65000:3_0:249_0:88$ ip community-list expanded c161 permit 90 ^65000:3_0:250_0:89$ ip community-list expanded c161 permit 91 ^65000:3_0:251_0:90$ ip community-list expanded c161 permit 92 ^65000:3_0:252_0:91$ ip community-list expanded c161 permit 93 ^65000:3_0:253_0:92$ ip community-list expanded c161 permit 94 ^65000:3_0:254_0:93$ ip community-list expanded c161 permit 95 ^65000:3_0:255_0:94$ ip community-list expanded c161 permit 96 ^65000:3_0:256_0:95$ route-map calculator permit 29193 match community 1_1_160 2_1_161 1_2_159 1_3_158 1_4_157 set community 0:161 route-map calculator permit 29194 match community 1_5_156 1_6_155 2_7_23 1_7_154 1_8_153 set community 0:161 route-map calculator permit 29195 match community 1_9_152 1_10_151 1_11_150 1_12_149 1_13_148 set community 0:161 route-map calculator permit 29196 match community 1_14_147 1_15_146 1_16_145 1_17_144 1_18_143 set community 0:161 route-map calculator permit 29197 match community 1_19_142 1_20_141 1_21_140 1_22_139 1_23_138 set community 0:161 route-map calculator permit 29198 match community 1_24_137 1_25_136 1_26_135 1_27_134 1_28_133 set community 0:161 route-map calculator permit 29199 match community 1_29_132 1_30_131 1_31_130 1_32_129 1_33_128 set community 0:161 route-map calculator permit 29200 match community 1_34_127 1_35_126 1_36_125 1_37_124 1_38_123 set community 0:161 route-map calculator permit 29201 match community 1_39_122 1_40_121 1_41_120 1_42_119 1_43_118 set community 0:161 route-map calculator permit 29202 match community 1_44_117 1_45_116 1_46_115 1_47_114 1_48_113 set community 0:161 route-map calculator permit 29203 match community 1_49_112 1_50_111 1_51_110 1_52_109 1_53_108 set community 0:161 route-map calculator permit 29204 match community 1_54_107 1_55_106 1_56_105 1_57_104 1_58_103 set community 0:161 route-map calculator permit 29205 match community 1_59_102 1_60_101 1_61_100 1_62_99 1_63_98 set community 0:161 route-map calculator permit 29206 match community 1_64_97 1_65_96 1_66_95 1_67_94 1_68_93 set community 0:161 route-map calculator permit 29207 match community 1_69_92 1_70_91 1_71_90 1_72_89 1_73_88 set community 0:161 route-map calculator permit 29208 match community 1_74_87 1_75_86 1_76_85 1_77_84 1_78_83 set community 0:161 route-map calculator permit 29209 match community 1_79_82 1_80_81 c4_161_1 c3_162_1 c3_163_2 set community 0:161 route-map calculator permit 29210 match community c3_164_3 c3_165_4 c3_166_5 c3_167_6 c3_168_7 set community 0:161 route-map calculator permit 29211 match community c3_169_8 c3_170_9 c3_171_10 c3_172_11 c3_173_12 set community 0:161 route-map calculator permit 29212 match community c3_174_13 c3_175_14 c3_176_15 c3_177_16 c3_178_17 set community 0:161 route-map calculator permit 29213 match community c3_179_18 c3_180_19 c3_181_20 c3_182_21 c3_183_22 set community 0:161 route-map calculator permit 29214 match community c3_184_23 c3_185_24 c3_186_25 c3_187_26 c3_188_27 set community 0:161 route-map calculator permit 29215 match community c3_189_28 c3_190_29 c3_191_30 c3_192_31 c3_193_32 set community 0:161 route-map calculator permit 29216 match community c3_194_33 c3_195_34 c3_196_35 c3_197_36 c3_198_37 set community 0:161 route-map calculator permit 29217 match community c3_199_38 c3_200_39 c3_201_40 c3_202_41 c3_203_42 set community 0:161 route-map calculator permit 29218 match community c3_204_43 c3_205_44 c3_206_45 c3_207_46 c3_208_47 set community 0:161 route-map calculator permit 29219 match community c3_209_48 c3_210_49 c3_211_50 c3_212_51 c3_213_52 set community 0:161 route-map calculator permit 29220 match community c3_214_53 c3_215_54 c3_216_55 c3_217_56 c3_218_57 set community 0:161 route-map calculator permit 29221 match community c3_219_58 c3_220_59 c3_221_60 c3_222_61 c3_223_62 set community 0:161 route-map calculator permit 29222 match community c3_224_63 c3_225_64 c3_226_65 c3_227_66 c3_228_67 set community 0:161 route-map calculator permit 29223 match community c3_229_68 c3_230_69 c3_231_70 c3_232_71 c3_233_72 set community 0:161 route-map calculator permit 29224 match community c3_234_73 c3_235_74 c3_236_75 c3_237_76 c3_238_77 set community 0:161 route-map calculator permit 29225 match community c3_239_78 c3_240_79 c3_241_80 c3_242_81 c3_243_82 set community 0:161 route-map calculator permit 29226 match community c3_244_83 c3_245_84 c3_246_85 c3_247_86 c3_248_87 set community 0:161 route-map calculator permit 29227 match community c3_249_88 c3_250_89 c3_251_90 c3_252_91 c3_253_92 set community 0:161 route-map calculator permit 29228 match community c3_254_93 c3_255_94 c3_256_95 set community 0:161 ip community-list standard 2_91_248 permit 65000:2 0:91 0:248 ip community-list standard 2_104_217 permit 65000:2 0:104 0:217 ip community-list standard 2_124_182 permit 65000:2 0:124 0:182 route-map calculator permit 29229 match community 2_91_248 2_104_217 2_124_182 set community 0:22568 ip community-list standard 2_163_181 permit 65000:2 0:163 0:181 route-map calculator permit 29230 match community 2_163_181 set community 0:29503 ip community-list standard 2_171_232 permit 65000:2 0:171 0:232 ip community-list standard 2_174_228 permit 65000:2 0:174 0:228 route-map calculator permit 29231 match community 2_171_232 2_174_228 set community 0:39672 ip community-list standard 2_144_244 permit 65000:2 0:144 0:244 ip community-list standard 2_183_192 permit 65000:2 0:183 0:192 route-map calculator permit 29232 match community 2_144_244 2_183_192 set community 0:35136 ip community-list standard 2_73_113 permit 65000:2 0:73 0:113 route-map calculator permit 29233 match community 2_73_113 set community 0:8249 ip community-list standard 2_138_256 permit 65000:2 0:138 0:256 ip community-list standard 2_184_192 permit 65000:2 0:184 0:192 route-map calculator permit 29234 match community 2_138_256 2_184_192 set community 0:35328 ip community-list standard 2_28_206 permit 65000:2 0:28 0:206 ip community-list standard 2_56_103 permit 65000:2 0:56 0:103 route-map calculator permit 29235 match community 2_28_206 2_56_103 set community 0:5768 ip community-list standard 2_95_245 permit 65000:2 0:95 0:245 ip community-list standard 2_133_175 permit 65000:2 0:133 0:175 route-map calculator permit 29236 match community 2_95_245 2_133_175 set community 0:23275 ip community-list standard 2_177_244 permit 65000:2 0:177 0:244 ip community-list standard 2_183_236 permit 65000:2 0:183 0:236 route-map calculator permit 29237 match community 2_177_244 2_183_236 set community 0:43188 ip community-list standard 2_84_238 permit 65000:2 0:84 0:238 ip community-list standard 2_98_204 permit 65000:2 0:98 0:204 ip community-list standard 2_102_196 permit 65000:2 0:102 0:196 ip community-list standard 2_119_168 permit 65000:2 0:119 0:168 ip community-list standard 2_136_147 permit 65000:2 0:136 0:147 route-map calculator permit 29238 match community 2_84_238 2_98_204 2_102_196 2_119_168 2_136_147 set community 0:19992 ip community-list standard 2_174_201 permit 65000:2 0:174 0:201 route-map calculator permit 29239 match community 2_174_201 set community 0:34974 ip community-list standard 2_2_212 permit 65000:2 0:2 0:212 ip community-list standard 2_4_106 permit 65000:2 0:4 0:106 ip community-list standard 2_8_53 permit 65000:2 0:8 0:53 ip community-list standard 1_168_256 permit 65000:1 0:168 0:256 ip community-list standard 1_169_255 permit 65000:1 0:169 0:255 ip community-list standard 1_170_254 permit 65000:1 0:170 0:254 ip community-list standard 1_171_253 permit 65000:1 0:171 0:253 ip community-list standard 1_172_252 permit 65000:1 0:172 0:252 ip community-list standard 1_173_251 permit 65000:1 0:173 0:251 ip community-list standard 1_174_250 permit 65000:1 0:174 0:250 ip community-list standard 1_175_249 permit 65000:1 0:175 0:249 ip community-list standard 1_176_248 permit 65000:1 0:176 0:248 ip community-list standard 1_177_247 permit 65000:1 0:177 0:247 ip community-list standard 1_178_246 permit 65000:1 0:178 0:246 ip community-list standard 1_179_245 permit 65000:1 0:179 0:245 ip community-list standard 1_180_244 permit 65000:1 0:180 0:244 ip community-list standard 1_181_243 permit 65000:1 0:181 0:243 ip community-list standard 1_182_242 permit 65000:1 0:182 0:242 ip community-list standard 1_183_241 permit 65000:1 0:183 0:241 ip community-list standard 1_184_240 permit 65000:1 0:184 0:240 ip community-list standard 1_185_239 permit 65000:1 0:185 0:239 ip community-list standard 1_186_238 permit 65000:1 0:186 0:238 ip community-list standard 1_187_237 permit 65000:1 0:187 0:237 ip community-list standard 1_188_236 permit 65000:1 0:188 0:236 ip community-list standard 1_189_235 permit 65000:1 0:189 0:235 ip community-list standard 1_190_234 permit 65000:1 0:190 0:234 ip community-list standard 1_191_233 permit 65000:1 0:191 0:233 ip community-list standard 1_192_232 permit 65000:1 0:192 0:232 ip community-list standard 1_193_231 permit 65000:1 0:193 0:231 ip community-list standard 1_194_230 permit 65000:1 0:194 0:230 ip community-list standard 1_195_229 permit 65000:1 0:195 0:229 ip community-list standard 1_196_228 permit 65000:1 0:196 0:228 ip community-list standard 1_197_227 permit 65000:1 0:197 0:227 ip community-list standard 1_198_226 permit 65000:1 0:198 0:226 ip community-list standard 1_199_225 permit 65000:1 0:199 0:225 ip community-list standard 1_200_224 permit 65000:1 0:200 0:224 ip community-list standard 1_201_223 permit 65000:1 0:201 0:223 ip community-list standard 1_202_222 permit 65000:1 0:202 0:222 ip community-list standard 1_203_221 permit 65000:1 0:203 0:221 ip community-list standard 1_204_220 permit 65000:1 0:204 0:220 ip community-list standard 1_205_219 permit 65000:1 0:205 0:219 ip community-list standard 1_206_218 permit 65000:1 0:206 0:218 ip community-list standard 1_207_217 permit 65000:1 0:207 0:217 ip community-list standard 1_208_216 permit 65000:1 0:208 0:216 ip community-list standard 1_209_215 permit 65000:1 0:209 0:215 ip community-list standard 1_210_214 permit 65000:1 0:210 0:214 ip community-list standard 1_211_213 permit 65000:1 0:211 0:213 ip community-list standard 1_212_212 permit 65000:1 0:212 0:212 route-map calculator permit 29240 match community 2_2_212 2_4_106 2_8_53 1_168_256 1_169_255 set community 0:424 route-map calculator permit 29241 match community 1_170_254 1_171_253 1_172_252 1_173_251 1_174_250 set community 0:424 route-map calculator permit 29242 match community 1_175_249 1_176_248 1_177_247 1_178_246 1_179_245 set community 0:424 route-map calculator permit 29243 match community 1_180_244 1_181_243 1_182_242 1_183_241 1_184_240 set community 0:424 route-map calculator permit 29244 match community 1_185_239 1_186_238 1_187_237 1_188_236 1_189_235 set community 0:424 route-map calculator permit 29245 match community 1_190_234 1_191_233 1_192_232 1_193_231 1_194_230 set community 0:424 route-map calculator permit 29246 match community 1_195_229 1_196_228 1_197_227 1_198_226 1_199_225 set community 0:424 route-map calculator permit 29247 match community 1_200_224 1_201_223 1_202_222 1_203_221 1_204_220 set community 0:424 route-map calculator permit 29248 match community 1_205_219 1_206_218 1_207_217 1_208_216 1_209_215 set community 0:424 route-map calculator permit 29249 match community 1_210_214 1_211_213 1_212_212 set community 0:424 ip community-list standard 2_85_223 permit 65000:2 0:85 0:223 route-map calculator permit 29250 match community 2_85_223 set community 0:18955 ip community-list standard 2_2_144 permit 65000:2 0:2 0:144 ip community-list standard 2_3_96 permit 65000:2 0:3 0:96 ip community-list standard 2_4_72 permit 65000:2 0:4 0:72 ip community-list standard 2_6_48 permit 65000:2 0:6 0:48 ip community-list standard 2_8_36 permit 65000:2 0:8 0:36 ip community-list standard 2_9_32 permit 65000:2 0:9 0:32 ip community-list standard 2_12_24 permit 65000:2 0:12 0:24 ip community-list standard 2_16_18 permit 65000:2 0:16 0:18 ip community-list standard 1_32_256 permit 65000:1 0:32 0:256 ip community-list standard 1_33_255 permit 65000:1 0:33 0:255 ip community-list standard 1_34_254 permit 65000:1 0:34 0:254 ip community-list standard 1_35_253 permit 65000:1 0:35 0:253 ip community-list standard 1_36_252 permit 65000:1 0:36 0:252 ip community-list standard 1_37_251 permit 65000:1 0:37 0:251 ip community-list standard 1_38_250 permit 65000:1 0:38 0:250 ip community-list standard 1_39_249 permit 65000:1 0:39 0:249 ip community-list standard 1_40_248 permit 65000:1 0:40 0:248 ip community-list standard 1_41_247 permit 65000:1 0:41 0:247 ip community-list standard 1_42_246 permit 65000:1 0:42 0:246 ip community-list standard 1_43_245 permit 65000:1 0:43 0:245 ip community-list standard 1_44_244 permit 65000:1 0:44 0:244 ip community-list standard 1_45_243 permit 65000:1 0:45 0:243 ip community-list standard 1_46_242 permit 65000:1 0:46 0:242 ip community-list standard 1_47_241 permit 65000:1 0:47 0:241 ip community-list standard 1_48_240 permit 65000:1 0:48 0:240 ip community-list standard 1_49_239 permit 65000:1 0:49 0:239 ip community-list standard 1_50_238 permit 65000:1 0:50 0:238 ip community-list standard 1_51_237 permit 65000:1 0:51 0:237 ip community-list standard 1_52_236 permit 65000:1 0:52 0:236 ip community-list standard 1_53_235 permit 65000:1 0:53 0:235 ip community-list standard 1_54_234 permit 65000:1 0:54 0:234 ip community-list standard 1_55_233 permit 65000:1 0:55 0:233 ip community-list standard 1_56_232 permit 65000:1 0:56 0:232 ip community-list standard 1_57_231 permit 65000:1 0:57 0:231 ip community-list standard 1_58_230 permit 65000:1 0:58 0:230 ip community-list standard 1_59_229 permit 65000:1 0:59 0:229 ip community-list standard 1_60_228 permit 65000:1 0:60 0:228 ip community-list standard 1_61_227 permit 65000:1 0:61 0:227 ip community-list standard 1_62_226 permit 65000:1 0:62 0:226 ip community-list standard 1_63_225 permit 65000:1 0:63 0:225 ip community-list standard 1_64_224 permit 65000:1 0:64 0:224 ip community-list standard 1_65_223 permit 65000:1 0:65 0:223 ip community-list standard 1_66_222 permit 65000:1 0:66 0:222 ip community-list standard 1_67_221 permit 65000:1 0:67 0:221 ip community-list standard 1_68_220 permit 65000:1 0:68 0:220 ip community-list standard 1_69_219 permit 65000:1 0:69 0:219 ip community-list standard 1_70_218 permit 65000:1 0:70 0:218 ip community-list standard 1_71_217 permit 65000:1 0:71 0:217 ip community-list standard 1_72_216 permit 65000:1 0:72 0:216 ip community-list standard 1_73_215 permit 65000:1 0:73 0:215 ip community-list standard 1_74_214 permit 65000:1 0:74 0:214 ip community-list standard 1_75_213 permit 65000:1 0:75 0:213 ip community-list standard 1_76_212 permit 65000:1 0:76 0:212 ip community-list standard 1_77_211 permit 65000:1 0:77 0:211 ip community-list standard 1_78_210 permit 65000:1 0:78 0:210 ip community-list standard 1_79_209 permit 65000:1 0:79 0:209 ip community-list standard 1_80_208 permit 65000:1 0:80 0:208 ip community-list standard 1_81_207 permit 65000:1 0:81 0:207 ip community-list standard 1_82_206 permit 65000:1 0:82 0:206 ip community-list standard 1_83_205 permit 65000:1 0:83 0:205 ip community-list standard 1_84_204 permit 65000:1 0:84 0:204 ip community-list standard 1_85_203 permit 65000:1 0:85 0:203 ip community-list standard 1_86_202 permit 65000:1 0:86 0:202 ip community-list standard 1_87_201 permit 65000:1 0:87 0:201 ip community-list standard 1_88_200 permit 65000:1 0:88 0:200 ip community-list standard 1_89_199 permit 65000:1 0:89 0:199 ip community-list standard 1_90_198 permit 65000:1 0:90 0:198 ip community-list standard 1_91_197 permit 65000:1 0:91 0:197 ip community-list standard 1_92_196 permit 65000:1 0:92 0:196 ip community-list standard 1_93_195 permit 65000:1 0:93 0:195 ip community-list standard 1_94_194 permit 65000:1 0:94 0:194 ip community-list standard 1_95_193 permit 65000:1 0:95 0:193 ip community-list standard 1_96_192 permit 65000:1 0:96 0:192 ip community-list standard 1_97_191 permit 65000:1 0:97 0:191 ip community-list standard 1_98_190 permit 65000:1 0:98 0:190 ip community-list standard 1_99_189 permit 65000:1 0:99 0:189 ip community-list standard 1_100_188 permit 65000:1 0:100 0:188 ip community-list standard 1_101_187 permit 65000:1 0:101 0:187 ip community-list standard 1_102_186 permit 65000:1 0:102 0:186 ip community-list standard 1_103_185 permit 65000:1 0:103 0:185 ip community-list standard 1_104_184 permit 65000:1 0:104 0:184 ip community-list standard 1_105_183 permit 65000:1 0:105 0:183 ip community-list standard 1_106_182 permit 65000:1 0:106 0:182 ip community-list standard 1_107_181 permit 65000:1 0:107 0:181 ip community-list standard 1_108_180 permit 65000:1 0:108 0:180 ip community-list standard 1_109_179 permit 65000:1 0:109 0:179 ip community-list standard 1_110_178 permit 65000:1 0:110 0:178 ip community-list standard 1_111_177 permit 65000:1 0:111 0:177 ip community-list standard 1_112_176 permit 65000:1 0:112 0:176 ip community-list standard 1_113_175 permit 65000:1 0:113 0:175 ip community-list standard 1_114_174 permit 65000:1 0:114 0:174 ip community-list standard 1_115_173 permit 65000:1 0:115 0:173 ip community-list standard 1_116_172 permit 65000:1 0:116 0:172 ip community-list standard 1_117_171 permit 65000:1 0:117 0:171 ip community-list standard 1_118_170 permit 65000:1 0:118 0:170 ip community-list standard 1_119_169 permit 65000:1 0:119 0:169 ip community-list standard 1_120_168 permit 65000:1 0:120 0:168 ip community-list standard 1_121_167 permit 65000:1 0:121 0:167 ip community-list standard 1_122_166 permit 65000:1 0:122 0:166 ip community-list standard 1_123_165 permit 65000:1 0:123 0:165 ip community-list standard 1_124_164 permit 65000:1 0:124 0:164 ip community-list standard 1_125_163 permit 65000:1 0:125 0:163 ip community-list standard 1_126_162 permit 65000:1 0:126 0:162 ip community-list standard 1_127_161 permit 65000:1 0:127 0:161 ip community-list standard 1_128_160 permit 65000:1 0:128 0:160 ip community-list standard 1_129_159 permit 65000:1 0:129 0:159 ip community-list standard 1_130_158 permit 65000:1 0:130 0:158 ip community-list standard 1_131_157 permit 65000:1 0:131 0:157 ip community-list standard 1_132_156 permit 65000:1 0:132 0:156 ip community-list standard 1_133_155 permit 65000:1 0:133 0:155 ip community-list standard 1_134_154 permit 65000:1 0:134 0:154 ip community-list standard 1_135_153 permit 65000:1 0:135 0:153 ip community-list standard 1_136_152 permit 65000:1 0:136 0:152 ip community-list standard 1_137_151 permit 65000:1 0:137 0:151 ip community-list standard 1_138_150 permit 65000:1 0:138 0:150 ip community-list standard 1_139_149 permit 65000:1 0:139 0:149 ip community-list standard 1_140_148 permit 65000:1 0:140 0:148 ip community-list standard 1_141_147 permit 65000:1 0:141 0:147 ip community-list standard 1_142_146 permit 65000:1 0:142 0:146 ip community-list standard 1_143_145 permit 65000:1 0:143 0:145 ip community-list standard 1_144_144 permit 65000:1 0:144 0:144 route-map calculator permit 29251 match community 2_2_144 2_3_96 2_4_72 2_6_48 2_8_36 set community 0:288 route-map calculator permit 29252 match community 2_9_32 2_12_24 2_16_18 1_32_256 1_33_255 set community 0:288 route-map calculator permit 29253 match community 1_34_254 1_35_253 1_36_252 1_37_251 1_38_250 set community 0:288 route-map calculator permit 29254 match community 1_39_249 1_40_248 1_41_247 1_42_246 1_43_245 set community 0:288 route-map calculator permit 29255 match community 1_44_244 1_45_243 1_46_242 1_47_241 1_48_240 set community 0:288 route-map calculator permit 29256 match community 1_49_239 1_50_238 1_51_237 1_52_236 1_53_235 set community 0:288 route-map calculator permit 29257 match community 1_54_234 1_55_233 1_56_232 1_57_231 1_58_230 set community 0:288 route-map calculator permit 29258 match community 1_59_229 1_60_228 1_61_227 1_62_226 1_63_225 set community 0:288 route-map calculator permit 29259 match community 1_64_224 1_65_223 1_66_222 1_67_221 1_68_220 set community 0:288 route-map calculator permit 29260 match community 1_69_219 1_70_218 1_71_217 1_72_216 1_73_215 set community 0:288 route-map calculator permit 29261 match community 1_74_214 1_75_213 1_76_212 1_77_211 1_78_210 set community 0:288 route-map calculator permit 29262 match community 1_79_209 1_80_208 1_81_207 1_82_206 1_83_205 set community 0:288 route-map calculator permit 29263 match community 1_84_204 1_85_203 1_86_202 1_87_201 1_88_200 set community 0:288 route-map calculator permit 29264 match community 1_89_199 1_90_198 1_91_197 1_92_196 1_93_195 set community 0:288 route-map calculator permit 29265 match community 1_94_194 1_95_193 1_96_192 1_97_191 1_98_190 set community 0:288 route-map calculator permit 29266 match community 1_99_189 1_100_188 1_101_187 1_102_186 1_103_185 set community 0:288 route-map calculator permit 29267 match community 1_104_184 1_105_183 1_106_182 1_107_181 1_108_180 set community 0:288 route-map calculator permit 29268 match community 1_109_179 1_110_178 1_111_177 1_112_176 1_113_175 set community 0:288 route-map calculator permit 29269 match community 1_114_174 1_115_173 1_116_172 1_117_171 1_118_170 set community 0:288 route-map calculator permit 29270 match community 1_119_169 1_120_168 1_121_167 1_122_166 1_123_165 set community 0:288 route-map calculator permit 29271 match community 1_124_164 1_125_163 1_126_162 1_127_161 1_128_160 set community 0:288 route-map calculator permit 29272 match community 1_129_159 1_130_158 1_131_157 1_132_156 1_133_155 set community 0:288 route-map calculator permit 29273 match community 1_134_154 1_135_153 1_136_152 1_137_151 1_138_150 set community 0:288 route-map calculator permit 29274 match community 1_139_149 1_140_148 1_141_147 1_142_146 1_143_145 set community 0:288 route-map calculator permit 29275 match community 1_144_144 set community 0:288 ip community-list standard 2_81_229 permit 65000:2 0:81 0:229 route-map calculator permit 29276 match community 2_81_229 set community 0:18549 ip community-list standard 2_53_217 permit 65000:2 0:53 0:217 route-map calculator permit 29277 match community 2_53_217 set community 0:11501 ip community-list standard 2_23_23 permit 65000:2 0:23 0:23 route-map calculator permit 29278 match community 2_23_23 set community 0:529 ip community-list standard 2_179_234 permit 65000:2 0:179 0:234 route-map calculator permit 29279 match community 2_179_234 set community 0:41886 ip community-list standard 2_213_228 permit 65000:2 0:213 0:228 route-map calculator permit 29280 match community 2_213_228 set community 0:48564 ip community-list standard 2_18_253 permit 65000:2 0:18 0:253 ip community-list standard 2_22_207 permit 65000:2 0:22 0:207 ip community-list standard 2_23_198 permit 65000:2 0:23 0:198 ip community-list standard 2_33_138 permit 65000:2 0:33 0:138 ip community-list standard 2_46_99 permit 65000:2 0:46 0:99 ip community-list standard 2_66_69 permit 65000:2 0:66 0:69 route-map calculator permit 29281 match community 2_18_253 2_22_207 2_23_198 2_33_138 2_46_99 set community 0:4554 route-map calculator permit 29282 match community 2_66_69 set community 0:4554 ip community-list standard 2_70_246 permit 65000:2 0:70 0:246 ip community-list standard 2_82_210 permit 65000:2 0:82 0:210 ip community-list standard 2_84_205 permit 65000:2 0:84 0:205 ip community-list standard 2_105_164 permit 65000:2 0:105 0:164 ip community-list standard 2_123_140 permit 65000:2 0:123 0:140 route-map calculator permit 29283 match community 2_70_246 2_82_210 2_84_205 2_105_164 2_123_140 set community 0:17220 ip community-list standard 2_44_139 permit 65000:2 0:44 0:139 route-map calculator permit 29284 match community 2_44_139 set community 0:6116 ip community-list standard 2_16_198 permit 65000:2 0:16 0:198 ip community-list standard 2_18_176 permit 65000:2 0:18 0:176 ip community-list standard 2_22_144 permit 65000:2 0:22 0:144 ip community-list standard 2_24_132 permit 65000:2 0:24 0:132 ip community-list standard 2_32_99 permit 65000:2 0:32 0:99 ip community-list standard 2_33_96 permit 65000:2 0:33 0:96 ip community-list standard 2_36_88 permit 65000:2 0:36 0:88 ip community-list standard 2_44_72 permit 65000:2 0:44 0:72 ip community-list standard 2_48_66 permit 65000:2 0:48 0:66 route-map calculator permit 29285 match community 2_16_198 2_18_176 2_22_144 2_24_132 2_32_99 set community 0:3168 route-map calculator permit 29286 match community 2_33_96 2_36_88 2_44_72 2_48_66 set community 0:3168 ip community-list standard 2_159_209 permit 65000:2 0:159 0:209 route-map calculator permit 29287 match community 2_159_209 set community 0:33231 ip community-list standard 2_145_226 permit 65000:2 0:145 0:226 route-map calculator permit 29288 match community 2_145_226 set community 0:32770 ip community-list standard 2_136_211 permit 65000:2 0:136 0:211 route-map calculator permit 29289 match community 2_136_211 set community 0:28696 ip community-list standard 2_37_98 permit 65000:2 0:37 0:98 ip community-list standard 2_49_74 permit 65000:2 0:49 0:74 route-map calculator permit 29290 match community 2_37_98 2_49_74 set community 0:3626 ip community-list standard 2_16_238 permit 65000:2 0:16 0:238 ip community-list standard 2_17_224 permit 65000:2 0:17 0:224 ip community-list standard 2_28_136 permit 65000:2 0:28 0:136 ip community-list standard 2_32_119 permit 65000:2 0:32 0:119 ip community-list standard 2_34_112 permit 65000:2 0:34 0:112 ip community-list standard 2_56_68 permit 65000:2 0:56 0:68 route-map calculator permit 29291 match community 2_16_238 2_17_224 2_28_136 2_32_119 2_34_112 set community 0:3808 route-map calculator permit 29292 match community 2_56_68 set community 0:3808 ip community-list standard 2_28_202 permit 65000:2 0:28 0:202 ip community-list standard 2_56_101 permit 65000:2 0:56 0:101 route-map calculator permit 29293 match community 2_28_202 2_56_101 set community 0:5656 ip community-list standard 2_57_255 permit 65000:2 0:57 0:255 ip community-list standard 2_85_171 permit 65000:2 0:85 0:171 ip community-list standard 2_95_153 permit 65000:2 0:95 0:153 route-map calculator permit 29294 match community 2_57_255 2_85_171 2_95_153 set community 0:14535 ip community-list standard 2_29_123 permit 65000:2 0:29 0:123 ip community-list standard 2_41_87 permit 65000:2 0:41 0:87 route-map calculator permit 29295 match community 2_29_123 2_41_87 set community 0:3567 ip community-list standard 2_6_224 permit 65000:2 0:6 0:224 ip community-list standard 2_7_192 permit 65000:2 0:7 0:192 ip community-list standard 2_8_168 permit 65000:2 0:8 0:168 ip community-list standard 2_12_112 permit 65000:2 0:12 0:112 ip community-list standard 2_14_96 permit 65000:2 0:14 0:96 ip community-list standard 2_16_84 permit 65000:2 0:16 0:84 ip community-list standard 2_21_64 permit 65000:2 0:21 0:64 ip community-list standard 2_24_56 permit 65000:2 0:24 0:56 ip community-list standard 2_28_48 permit 65000:2 0:28 0:48 ip community-list standard 2_32_42 permit 65000:2 0:32 0:42 route-map calculator permit 29296 match community 2_6_224 2_7_192 2_8_168 2_12_112 2_14_96 set community 0:1344 route-map calculator permit 29297 match community 2_16_84 2_21_64 2_24_56 2_28_48 2_32_42 set community 0:1344 ip community-list standard 2_131_131 permit 65000:2 0:131 0:131 route-map calculator permit 29298 match community 2_131_131 set community 0:17161 ip community-list standard 2_173_197 permit 65000:2 0:173 0:197 route-map calculator permit 29299 match community 2_173_197 set community 0:34081 ip community-list standard 2_3_240 permit 65000:2 0:3 0:240 ip community-list standard 2_4_180 permit 65000:2 0:4 0:180 ip community-list standard 2_5_144 permit 65000:2 0:5 0:144 ip community-list standard 2_6_120 permit 65000:2 0:6 0:120 ip community-list standard 2_8_90 permit 65000:2 0:8 0:90 ip community-list standard 2_9_80 permit 65000:2 0:9 0:80 ip community-list standard 2_10_72 permit 65000:2 0:10 0:72 ip community-list standard 2_12_60 permit 65000:2 0:12 0:60 ip community-list standard 2_15_48 permit 65000:2 0:15 0:48 ip community-list standard 2_16_45 permit 65000:2 0:16 0:45 ip community-list standard 2_18_40 permit 65000:2 0:18 0:40 ip community-list standard 2_20_36 permit 65000:2 0:20 0:36 ip community-list standard 2_24_30 permit 65000:2 0:24 0:30 route-map calculator permit 29300 match community 2_3_240 2_4_180 2_5_144 2_6_120 2_8_90 set community 0:720 route-map calculator permit 29301 match community 2_9_80 2_10_72 2_12_60 2_15_48 2_16_45 set community 0:720 route-map calculator permit 29302 match community 2_18_40 2_20_36 2_24_30 set community 0:720 ip community-list standard 2_89_254 permit 65000:2 0:89 0:254 ip community-list standard 2_127_178 permit 65000:2 0:127 0:178 route-map calculator permit 29303 match community 2_89_254 2_127_178 set community 0:22606 ip community-list standard 2_96_151 permit 65000:2 0:96 0:151 route-map calculator permit 29304 match community 2_96_151 set community 0:14496 ip community-list standard 2_230_247 permit 65000:2 0:230 0:247 route-map calculator permit 29305 match community 2_230_247 set community 0:56810 ip community-list standard 2_214_235 permit 65000:2 0:214 0:235 route-map calculator permit 29306 match community 2_214_235 set community 0:50290 ip community-list standard 2_45_251 permit 65000:2 0:45 0:251 route-map calculator permit 29307 match community 2_45_251 set community 0:11295 ip community-list standard 2_97_250 permit 65000:2 0:97 0:250 ip community-list standard 2_125_194 permit 65000:2 0:125 0:194 route-map calculator permit 29308 match community 2_97_250 2_125_194 set community 0:24250 ip community-list standard 2_29_153 permit 65000:2 0:29 0:153 ip community-list standard 2_51_87 permit 65000:2 0:51 0:87 route-map calculator permit 29309 match community 2_29_153 2_51_87 set community 0:4437 ip community-list standard 2_113_141 permit 65000:2 0:113 0:141 route-map calculator permit 29310 match community 2_113_141 set community 0:15933 ip community-list standard 2_65_109 permit 65000:2 0:65 0:109 route-map calculator permit 29311 match community 2_65_109 set community 0:7085 ip community-list standard 2_146_251 permit 65000:2 0:146 0:251 route-map calculator permit 29312 match community 2_146_251 set community 0:36646 ip community-list standard 2_181_196 permit 65000:2 0:181 0:196 route-map calculator permit 29313 match community 2_181_196 set community 0:35476 ip community-list standard 2_179_222 permit 65000:2 0:179 0:222 route-map calculator permit 29314 match community 2_179_222 set community 0:39738 ip community-list standard 2_193_247 permit 65000:2 0:193 0:247 route-map calculator permit 29315 match community 2_193_247 set community 0:47671 ip community-list standard 2_84_137 permit 65000:2 0:84 0:137 route-map calculator permit 29316 match community 2_84_137 set community 0:11508 ip community-list standard 2_183_256 permit 65000:2 0:183 0:256 ip community-list standard 2_192_244 permit 65000:2 0:192 0:244 route-map calculator permit 29317 match community 2_183_256 2_192_244 set community 0:46848 ip community-list standard 2_163_241 permit 65000:2 0:163 0:241 route-map calculator permit 29318 match community 2_163_241 set community 0:39283 ip community-list standard 2_110_229 permit 65000:2 0:110 0:229 route-map calculator permit 29319 match community 2_110_229 set community 0:25190 ip community-list standard 2_7_195 permit 65000:2 0:7 0:195 ip community-list standard 2_13_105 permit 65000:2 0:13 0:105 ip community-list standard 2_15_91 permit 65000:2 0:15 0:91 ip community-list standard 2_21_65 permit 65000:2 0:21 0:65 ip community-list standard 2_35_39 permit 65000:2 0:35 0:39 route-map calculator permit 29320 match community 2_7_195 2_13_105 2_15_91 2_21_65 2_35_39 set community 0:1365 ip community-list standard 2_23_53 permit 65000:2 0:23 0:53 route-map calculator permit 29321 match community 2_23_53 set community 0:1219 ip community-list standard 2_38_139 permit 65000:2 0:38 0:139 route-map calculator permit 29322 match community 2_38_139 set community 0:5282 ip community-list standard 2_139_196 permit 65000:2 0:139 0:196 route-map calculator permit 29323 match community 2_139_196 set community 0:27244 ip community-list standard 2_6_194 permit 65000:2 0:6 0:194 ip community-list standard 2_12_97 permit 65000:2 0:12 0:97 route-map calculator permit 29324 match community 2_6_194 2_12_97 set community 0:1164 ip community-list standard 1_1_159 permit 65000:1 0:1 0:159 ip community-list standard 2_1_160 permit 65000:2 0:1 0:160 ip community-list standard 2_2_80 permit 65000:2 0:2 0:80 ip community-list standard 1_2_158 permit 65000:1 0:2 0:158 ip community-list standard 1_3_157 permit 65000:1 0:3 0:157 ip community-list standard 2_4_40 permit 65000:2 0:4 0:40 ip community-list standard 1_4_156 permit 65000:1 0:4 0:156 ip community-list standard 2_5_32 permit 65000:2 0:5 0:32 ip community-list standard 1_5_155 permit 65000:1 0:5 0:155 ip community-list standard 1_6_154 permit 65000:1 0:6 0:154 ip community-list standard 1_7_153 permit 65000:1 0:7 0:153 ip community-list standard 2_8_20 permit 65000:2 0:8 0:20 ip community-list standard 1_8_152 permit 65000:1 0:8 0:152 ip community-list standard 1_9_151 permit 65000:1 0:9 0:151 ip community-list standard 2_10_16 permit 65000:2 0:10 0:16 ip community-list standard 1_10_150 permit 65000:1 0:10 0:150 ip community-list standard 1_11_149 permit 65000:1 0:11 0:149 ip community-list standard 1_12_148 permit 65000:1 0:12 0:148 ip community-list standard 1_13_147 permit 65000:1 0:13 0:147 ip community-list standard 1_14_146 permit 65000:1 0:14 0:146 ip community-list standard 1_15_145 permit 65000:1 0:15 0:145 ip community-list standard 1_16_144 permit 65000:1 0:16 0:144 ip community-list standard 1_17_143 permit 65000:1 0:17 0:143 ip community-list standard 1_18_142 permit 65000:1 0:18 0:142 ip community-list standard 1_19_141 permit 65000:1 0:19 0:141 ip community-list standard 1_20_140 permit 65000:1 0:20 0:140 ip community-list standard 1_21_139 permit 65000:1 0:21 0:139 ip community-list standard 1_22_138 permit 65000:1 0:22 0:138 ip community-list standard 1_23_137 permit 65000:1 0:23 0:137 ip community-list standard 1_24_136 permit 65000:1 0:24 0:136 ip community-list standard 1_25_135 permit 65000:1 0:25 0:135 ip community-list standard 1_26_134 permit 65000:1 0:26 0:134 ip community-list standard 1_27_133 permit 65000:1 0:27 0:133 ip community-list standard 1_28_132 permit 65000:1 0:28 0:132 ip community-list standard 1_29_131 permit 65000:1 0:29 0:131 ip community-list standard 1_30_130 permit 65000:1 0:30 0:130 ip community-list standard 1_31_129 permit 65000:1 0:31 0:129 ip community-list standard 1_32_128 permit 65000:1 0:32 0:128 ip community-list standard 1_33_127 permit 65000:1 0:33 0:127 ip community-list standard 1_34_126 permit 65000:1 0:34 0:126 ip community-list standard 1_35_125 permit 65000:1 0:35 0:125 ip community-list standard 1_36_124 permit 65000:1 0:36 0:124 ip community-list standard 1_37_123 permit 65000:1 0:37 0:123 ip community-list standard 1_38_122 permit 65000:1 0:38 0:122 ip community-list standard 1_39_121 permit 65000:1 0:39 0:121 ip community-list standard 1_40_120 permit 65000:1 0:40 0:120 ip community-list standard 1_41_119 permit 65000:1 0:41 0:119 ip community-list standard 1_42_118 permit 65000:1 0:42 0:118 ip community-list standard 1_43_117 permit 65000:1 0:43 0:117 ip community-list standard 1_44_116 permit 65000:1 0:44 0:116 ip community-list standard 1_45_115 permit 65000:1 0:45 0:115 ip community-list standard 1_46_114 permit 65000:1 0:46 0:114 ip community-list standard 1_47_113 permit 65000:1 0:47 0:113 ip community-list standard 1_48_112 permit 65000:1 0:48 0:112 ip community-list standard 1_49_111 permit 65000:1 0:49 0:111 ip community-list standard 1_50_110 permit 65000:1 0:50 0:110 ip community-list standard 1_51_109 permit 65000:1 0:51 0:109 ip community-list standard 1_52_108 permit 65000:1 0:52 0:108 ip community-list standard 1_53_107 permit 65000:1 0:53 0:107 ip community-list standard 1_54_106 permit 65000:1 0:54 0:106 ip community-list standard 1_55_105 permit 65000:1 0:55 0:105 ip community-list standard 1_56_104 permit 65000:1 0:56 0:104 ip community-list standard 1_57_103 permit 65000:1 0:57 0:103 ip community-list standard 1_58_102 permit 65000:1 0:58 0:102 ip community-list standard 1_59_101 permit 65000:1 0:59 0:101 ip community-list standard 1_60_100 permit 65000:1 0:60 0:100 ip community-list standard 1_61_99 permit 65000:1 0:61 0:99 ip community-list standard 1_62_98 permit 65000:1 0:62 0:98 ip community-list standard 1_63_97 permit 65000:1 0:63 0:97 ip community-list standard 1_64_96 permit 65000:1 0:64 0:96 ip community-list standard 1_65_95 permit 65000:1 0:65 0:95 ip community-list standard 1_66_94 permit 65000:1 0:66 0:94 ip community-list standard 1_67_93 permit 65000:1 0:67 0:93 ip community-list standard 1_68_92 permit 65000:1 0:68 0:92 ip community-list standard 1_69_91 permit 65000:1 0:69 0:91 ip community-list standard 1_70_90 permit 65000:1 0:70 0:90 ip community-list standard 1_71_89 permit 65000:1 0:71 0:89 ip community-list standard 1_72_88 permit 65000:1 0:72 0:88 ip community-list standard 1_73_87 permit 65000:1 0:73 0:87 ip community-list standard 1_74_86 permit 65000:1 0:74 0:86 ip community-list standard 1_75_85 permit 65000:1 0:75 0:85 ip community-list standard 1_76_84 permit 65000:1 0:76 0:84 ip community-list standard 1_77_83 permit 65000:1 0:77 0:83 ip community-list standard 1_78_82 permit 65000:1 0:78 0:82 ip community-list standard 1_79_81 permit 65000:1 0:79 0:81 ip community-list standard 1_80_80 permit 65000:1 0:80 0:80 ip community-list expanded c160 permit 1 ^65000:4_0:160_0:1$ ip community-list expanded c160 permit 2 ^65000:3_0:161_0:1$ ip community-list expanded c160 permit 3 ^65000:3_0:162_0:2$ ip community-list expanded c160 permit 4 ^65000:3_0:163_0:3$ ip community-list expanded c160 permit 5 ^65000:3_0:164_0:4$ ip community-list expanded c160 permit 6 ^65000:3_0:165_0:5$ ip community-list expanded c160 permit 7 ^65000:3_0:166_0:6$ ip community-list expanded c160 permit 8 ^65000:3_0:167_0:7$ ip community-list expanded c160 permit 9 ^65000:3_0:168_0:8$ ip community-list expanded c160 permit 10 ^65000:3_0:169_0:9$ ip community-list expanded c160 permit 11 ^65000:3_0:170_0:10$ ip community-list expanded c160 permit 12 ^65000:3_0:171_0:11$ ip community-list expanded c160 permit 13 ^65000:3_0:172_0:12$ ip community-list expanded c160 permit 14 ^65000:3_0:173_0:13$ ip community-list expanded c160 permit 15 ^65000:3_0:174_0:14$ ip community-list expanded c160 permit 16 ^65000:3_0:175_0:15$ ip community-list expanded c160 permit 17 ^65000:3_0:176_0:16$ ip community-list expanded c160 permit 18 ^65000:3_0:177_0:17$ ip community-list expanded c160 permit 19 ^65000:3_0:178_0:18$ ip community-list expanded c160 permit 20 ^65000:3_0:179_0:19$ ip community-list expanded c160 permit 21 ^65000:3_0:180_0:20$ ip community-list expanded c160 permit 22 ^65000:3_0:181_0:21$ ip community-list expanded c160 permit 23 ^65000:3_0:182_0:22$ ip community-list expanded c160 permit 24 ^65000:3_0:183_0:23$ ip community-list expanded c160 permit 25 ^65000:3_0:184_0:24$ ip community-list expanded c160 permit 26 ^65000:3_0:185_0:25$ ip community-list expanded c160 permit 27 ^65000:3_0:186_0:26$ ip community-list expanded c160 permit 28 ^65000:3_0:187_0:27$ ip community-list expanded c160 permit 29 ^65000:3_0:188_0:28$ ip community-list expanded c160 permit 30 ^65000:3_0:189_0:29$ ip community-list expanded c160 permit 31 ^65000:3_0:190_0:30$ ip community-list expanded c160 permit 32 ^65000:3_0:191_0:31$ ip community-list expanded c160 permit 33 ^65000:3_0:192_0:32$ ip community-list expanded c160 permit 34 ^65000:3_0:193_0:33$ ip community-list expanded c160 permit 35 ^65000:3_0:194_0:34$ ip community-list expanded c160 permit 36 ^65000:3_0:195_0:35$ ip community-list expanded c160 permit 37 ^65000:3_0:196_0:36$ ip community-list expanded c160 permit 38 ^65000:3_0:197_0:37$ ip community-list expanded c160 permit 39 ^65000:3_0:198_0:38$ ip community-list expanded c160 permit 40 ^65000:3_0:199_0:39$ ip community-list expanded c160 permit 41 ^65000:3_0:200_0:40$ ip community-list expanded c160 permit 42 ^65000:3_0:201_0:41$ ip community-list expanded c160 permit 43 ^65000:3_0:202_0:42$ ip community-list expanded c160 permit 44 ^65000:3_0:203_0:43$ ip community-list expanded c160 permit 45 ^65000:3_0:204_0:44$ ip community-list expanded c160 permit 46 ^65000:3_0:205_0:45$ ip community-list expanded c160 permit 47 ^65000:3_0:206_0:46$ ip community-list expanded c160 permit 48 ^65000:3_0:207_0:47$ ip community-list expanded c160 permit 49 ^65000:3_0:208_0:48$ ip community-list expanded c160 permit 50 ^65000:3_0:209_0:49$ ip community-list expanded c160 permit 51 ^65000:3_0:210_0:50$ ip community-list expanded c160 permit 52 ^65000:3_0:211_0:51$ ip community-list expanded c160 permit 53 ^65000:3_0:212_0:52$ ip community-list expanded c160 permit 54 ^65000:3_0:213_0:53$ ip community-list expanded c160 permit 55 ^65000:3_0:214_0:54$ ip community-list expanded c160 permit 56 ^65000:3_0:215_0:55$ ip community-list expanded c160 permit 57 ^65000:3_0:216_0:56$ ip community-list expanded c160 permit 58 ^65000:3_0:217_0:57$ ip community-list expanded c160 permit 59 ^65000:3_0:218_0:58$ ip community-list expanded c160 permit 60 ^65000:3_0:219_0:59$ ip community-list expanded c160 permit 61 ^65000:3_0:220_0:60$ ip community-list expanded c160 permit 62 ^65000:3_0:221_0:61$ ip community-list expanded c160 permit 63 ^65000:3_0:222_0:62$ ip community-list expanded c160 permit 64 ^65000:3_0:223_0:63$ ip community-list expanded c160 permit 65 ^65000:3_0:224_0:64$ ip community-list expanded c160 permit 66 ^65000:3_0:225_0:65$ ip community-list expanded c160 permit 67 ^65000:3_0:226_0:66$ ip community-list expanded c160 permit 68 ^65000:3_0:227_0:67$ ip community-list expanded c160 permit 69 ^65000:3_0:228_0:68$ ip community-list expanded c160 permit 70 ^65000:3_0:229_0:69$ ip community-list expanded c160 permit 71 ^65000:3_0:230_0:70$ ip community-list expanded c160 permit 72 ^65000:3_0:231_0:71$ ip community-list expanded c160 permit 73 ^65000:3_0:232_0:72$ ip community-list expanded c160 permit 74 ^65000:3_0:233_0:73$ ip community-list expanded c160 permit 75 ^65000:3_0:234_0:74$ ip community-list expanded c160 permit 76 ^65000:3_0:235_0:75$ ip community-list expanded c160 permit 77 ^65000:3_0:236_0:76$ ip community-list expanded c160 permit 78 ^65000:3_0:237_0:77$ ip community-list expanded c160 permit 79 ^65000:3_0:238_0:78$ ip community-list expanded c160 permit 80 ^65000:3_0:239_0:79$ ip community-list expanded c160 permit 81 ^65000:3_0:240_0:80$ ip community-list expanded c160 permit 82 ^65000:3_0:241_0:81$ ip community-list expanded c160 permit 83 ^65000:3_0:242_0:82$ ip community-list expanded c160 permit 84 ^65000:3_0:243_0:83$ ip community-list expanded c160 permit 85 ^65000:3_0:244_0:84$ ip community-list expanded c160 permit 86 ^65000:3_0:245_0:85$ ip community-list expanded c160 permit 87 ^65000:3_0:246_0:86$ ip community-list expanded c160 permit 88 ^65000:3_0:247_0:87$ ip community-list expanded c160 permit 89 ^65000:3_0:248_0:88$ ip community-list expanded c160 permit 90 ^65000:3_0:249_0:89$ ip community-list expanded c160 permit 91 ^65000:3_0:250_0:90$ ip community-list expanded c160 permit 92 ^65000:3_0:251_0:91$ ip community-list expanded c160 permit 93 ^65000:3_0:252_0:92$ ip community-list expanded c160 permit 94 ^65000:3_0:253_0:93$ ip community-list expanded c160 permit 95 ^65000:3_0:254_0:94$ ip community-list expanded c160 permit 96 ^65000:3_0:255_0:95$ ip community-list expanded c160 permit 97 ^65000:3_0:256_0:96$ route-map calculator permit 29325 match community 1_1_159 2_1_160 2_2_80 1_2_158 1_3_157 set community 0:160 route-map calculator permit 29326 match community 2_4_40 1_4_156 2_5_32 1_5_155 1_6_154 set community 0:160 route-map calculator permit 29327 match community 1_7_153 2_8_20 1_8_152 1_9_151 2_10_16 set community 0:160 route-map calculator permit 29328 match community 1_10_150 1_11_149 1_12_148 1_13_147 1_14_146 set community 0:160 route-map calculator permit 29329 match community 1_15_145 1_16_144 1_17_143 1_18_142 1_19_141 set community 0:160 route-map calculator permit 29330 match community 1_20_140 1_21_139 1_22_138 1_23_137 1_24_136 set community 0:160 route-map calculator permit 29331 match community 1_25_135 1_26_134 1_27_133 1_28_132 1_29_131 set community 0:160 route-map calculator permit 29332 match community 1_30_130 1_31_129 1_32_128 1_33_127 1_34_126 set community 0:160 route-map calculator permit 29333 match community 1_35_125 1_36_124 1_37_123 1_38_122 1_39_121 set community 0:160 route-map calculator permit 29334 match community 1_40_120 1_41_119 1_42_118 1_43_117 1_44_116 set community 0:160 route-map calculator permit 29335 match community 1_45_115 1_46_114 1_47_113 1_48_112 1_49_111 set community 0:160 route-map calculator permit 29336 match community 1_50_110 1_51_109 1_52_108 1_53_107 1_54_106 set community 0:160 route-map calculator permit 29337 match community 1_55_105 1_56_104 1_57_103 1_58_102 1_59_101 set community 0:160 route-map calculator permit 29338 match community 1_60_100 1_61_99 1_62_98 1_63_97 1_64_96 set community 0:160 route-map calculator permit 29339 match community 1_65_95 1_66_94 1_67_93 1_68_92 1_69_91 set community 0:160 route-map calculator permit 29340 match community 1_70_90 1_71_89 1_72_88 1_73_87 1_74_86 set community 0:160 route-map calculator permit 29341 match community 1_75_85 1_76_84 1_77_83 1_78_82 1_79_81 set community 0:160 route-map calculator permit 29342 match community 1_80_80 c4_160_1 c3_161_1 c3_162_2 c3_163_3 set community 0:160 route-map calculator permit 29343 match community c3_164_4 c3_165_5 c3_166_6 c3_167_7 c3_168_8 set community 0:160 route-map calculator permit 29344 match community c3_169_9 c3_170_10 c3_171_11 c3_172_12 c3_173_13 set community 0:160 route-map calculator permit 29345 match community c3_174_14 c3_175_15 c3_176_16 c3_177_17 c3_178_18 set community 0:160 route-map calculator permit 29346 match community c3_179_19 c3_180_20 c3_181_21 c3_182_22 c3_183_23 set community 0:160 route-map calculator permit 29347 match community c3_184_24 c3_185_25 c3_186_26 c3_187_27 c3_188_28 set community 0:160 route-map calculator permit 29348 match community c3_189_29 c3_190_30 c3_191_31 c3_192_32 c3_193_33 set community 0:160 route-map calculator permit 29349 match community c3_194_34 c3_195_35 c3_196_36 c3_197_37 c3_198_38 set community 0:160 route-map calculator permit 29350 match community c3_199_39 c3_200_40 c3_201_41 c3_202_42 c3_203_43 set community 0:160 route-map calculator permit 29351 match community c3_204_44 c3_205_45 c3_206_46 c3_207_47 c3_208_48 set community 0:160 route-map calculator permit 29352 match community c3_209_49 c3_210_50 c3_211_51 c3_212_52 c3_213_53 set community 0:160 route-map calculator permit 29353 match community c3_214_54 c3_215_55 c3_216_56 c3_217_57 c3_218_58 set community 0:160 route-map calculator permit 29354 match community c3_219_59 c3_220_60 c3_221_61 c3_222_62 c3_223_63 set community 0:160 route-map calculator permit 29355 match community c3_224_64 c3_225_65 c3_226_66 c3_227_67 c3_228_68 set community 0:160 route-map calculator permit 29356 match community c3_229_69 c3_230_70 c3_231_71 c3_232_72 c3_233_73 set community 0:160 route-map calculator permit 29357 match community c3_234_74 c3_235_75 c3_236_76 c3_237_77 c3_238_78 set community 0:160 route-map calculator permit 29358 match community c3_239_79 c3_240_80 c3_241_81 c3_242_82 c3_243_83 set community 0:160 route-map calculator permit 29359 match community c3_244_84 c3_245_85 c3_246_86 c3_247_87 c3_248_88 set community 0:160 route-map calculator permit 29360 match community c3_249_89 c3_250_90 c3_251_91 c3_252_92 c3_253_93 set community 0:160 route-map calculator permit 29361 match community c3_254_94 c3_255_95 c3_256_96 set community 0:160 ip community-list standard 2_61_242 permit 65000:2 0:61 0:242 ip community-list standard 2_121_122 permit 65000:2 0:121 0:122 route-map calculator permit 29362 match community 2_61_242 2_121_122 set community 0:14762 ip community-list standard 2_126_197 permit 65000:2 0:126 0:197 route-map calculator permit 29363 match community 2_126_197 set community 0:24822 ip community-list standard 2_65_229 permit 65000:2 0:65 0:229 route-map calculator permit 29364 match community 2_65_229 set community 0:14885 ip community-list standard 2_140_236 permit 65000:2 0:140 0:236 route-map calculator permit 29365 match community 2_140_236 set community 0:33040 ip community-list standard 2_175_201 permit 65000:2 0:175 0:201 route-map calculator permit 29366 match community 2_175_201 set community 0:35175 ip community-list standard 2_179_210 permit 65000:2 0:179 0:210 route-map calculator permit 29367 match community 2_179_210 set community 0:37590 ip community-list standard 2_143_239 permit 65000:2 0:143 0:239 route-map calculator permit 29368 match community 2_143_239 set community 0:34177 ip community-list standard 2_174_251 permit 65000:2 0:174 0:251 route-map calculator permit 29369 match community 2_174_251 set community 0:43674 ip community-list standard 2_142_234 permit 65000:2 0:142 0:234 ip community-list standard 2_156_213 permit 65000:2 0:156 0:213 route-map calculator permit 29370 match community 2_142_234 2_156_213 set community 0:33228 ip community-list standard 2_204_249 permit 65000:2 0:204 0:249 route-map calculator permit 29371 match community 2_204_249 set community 0:50796 ip community-list standard 2_166_200 permit 65000:2 0:166 0:200 route-map calculator permit 29372 match community 2_166_200 set community 0:33200 ip community-list standard 2_95_194 permit 65000:2 0:95 0:194 ip community-list standard 2_97_190 permit 65000:2 0:97 0:190 route-map calculator permit 29373 match community 2_95_194 2_97_190 set community 0:18430 ip community-list standard 2_167_188 permit 65000:2 0:167 0:188 route-map calculator permit 29374 match community 2_167_188 set community 0:31396 ip community-list standard 2_186_233 permit 65000:2 0:186 0:233 route-map calculator permit 29375 match community 2_186_233 set community 0:43338 ip community-list standard 2_131_187 permit 65000:2 0:131 0:187 route-map calculator permit 29376 match community 2_131_187 set community 0:24497 ip community-list standard 2_125_167 permit 65000:2 0:125 0:167 route-map calculator permit 29377 match community 2_125_167 set community 0:20875 ip community-list standard 2_71_251 permit 65000:2 0:71 0:251 route-map calculator permit 29378 match community 2_71_251 set community 0:17821 ip community-list standard 2_47_113 permit 65000:2 0:47 0:113 route-map calculator permit 29379 match community 2_47_113 set community 0:5311 ip community-list standard 2_211_252 permit 65000:2 0:211 0:252 route-map calculator permit 29380 match community 2_211_252 set community 0:53172 ip community-list standard 2_120_213 permit 65000:2 0:120 0:213 ip community-list standard 2_142_180 permit 65000:2 0:142 0:180 route-map calculator permit 29381 match community 2_120_213 2_142_180 set community 0:25560 ip community-list standard 1_1_112 permit 65000:1 0:1 0:112 ip community-list standard 2_1_113 permit 65000:2 0:1 0:113 ip community-list standard 1_2_111 permit 65000:1 0:2 0:111 ip community-list standard 1_3_110 permit 65000:1 0:3 0:110 ip community-list standard 1_4_109 permit 65000:1 0:4 0:109 ip community-list standard 1_5_108 permit 65000:1 0:5 0:108 ip community-list standard 1_6_107 permit 65000:1 0:6 0:107 ip community-list standard 1_7_106 permit 65000:1 0:7 0:106 ip community-list standard 1_8_105 permit 65000:1 0:8 0:105 ip community-list standard 1_9_104 permit 65000:1 0:9 0:104 ip community-list standard 1_10_103 permit 65000:1 0:10 0:103 ip community-list standard 1_11_102 permit 65000:1 0:11 0:102 ip community-list standard 1_12_101 permit 65000:1 0:12 0:101 ip community-list standard 1_13_100 permit 65000:1 0:13 0:100 ip community-list standard 1_14_99 permit 65000:1 0:14 0:99 ip community-list standard 1_15_98 permit 65000:1 0:15 0:98 ip community-list standard 1_16_97 permit 65000:1 0:16 0:97 ip community-list standard 1_17_96 permit 65000:1 0:17 0:96 ip community-list standard 1_18_95 permit 65000:1 0:18 0:95 ip community-list standard 1_19_94 permit 65000:1 0:19 0:94 ip community-list standard 1_20_93 permit 65000:1 0:20 0:93 ip community-list standard 1_21_92 permit 65000:1 0:21 0:92 ip community-list standard 1_22_91 permit 65000:1 0:22 0:91 ip community-list standard 1_23_90 permit 65000:1 0:23 0:90 ip community-list standard 1_24_89 permit 65000:1 0:24 0:89 ip community-list standard 1_25_88 permit 65000:1 0:25 0:88 ip community-list standard 1_26_87 permit 65000:1 0:26 0:87 ip community-list standard 1_27_86 permit 65000:1 0:27 0:86 ip community-list standard 1_28_85 permit 65000:1 0:28 0:85 ip community-list standard 1_29_84 permit 65000:1 0:29 0:84 ip community-list standard 1_30_83 permit 65000:1 0:30 0:83 ip community-list standard 1_31_82 permit 65000:1 0:31 0:82 ip community-list standard 1_32_81 permit 65000:1 0:32 0:81 ip community-list standard 1_33_80 permit 65000:1 0:33 0:80 ip community-list standard 1_34_79 permit 65000:1 0:34 0:79 ip community-list standard 1_35_78 permit 65000:1 0:35 0:78 ip community-list standard 1_36_77 permit 65000:1 0:36 0:77 ip community-list standard 1_37_76 permit 65000:1 0:37 0:76 ip community-list standard 1_38_75 permit 65000:1 0:38 0:75 ip community-list standard 1_39_74 permit 65000:1 0:39 0:74 ip community-list standard 1_40_73 permit 65000:1 0:40 0:73 ip community-list standard 1_41_72 permit 65000:1 0:41 0:72 ip community-list standard 1_42_71 permit 65000:1 0:42 0:71 ip community-list standard 1_43_70 permit 65000:1 0:43 0:70 ip community-list standard 1_44_69 permit 65000:1 0:44 0:69 ip community-list standard 1_45_68 permit 65000:1 0:45 0:68 ip community-list standard 1_46_67 permit 65000:1 0:46 0:67 ip community-list standard 1_47_66 permit 65000:1 0:47 0:66 ip community-list standard 1_48_65 permit 65000:1 0:48 0:65 ip community-list standard 1_49_64 permit 65000:1 0:49 0:64 ip community-list standard 1_50_63 permit 65000:1 0:50 0:63 ip community-list standard 1_51_62 permit 65000:1 0:51 0:62 ip community-list standard 1_52_61 permit 65000:1 0:52 0:61 ip community-list standard 1_53_60 permit 65000:1 0:53 0:60 ip community-list standard 1_54_59 permit 65000:1 0:54 0:59 ip community-list standard 1_55_58 permit 65000:1 0:55 0:58 ip community-list standard 1_56_57 permit 65000:1 0:56 0:57 ip community-list expanded c113 permit 1 ^65000:4_0:113_0:1$ ip community-list expanded c113 permit 2 ^65000:3_0:114_0:1$ ip community-list expanded c113 permit 3 ^65000:3_0:115_0:2$ ip community-list expanded c113 permit 4 ^65000:3_0:116_0:3$ ip community-list expanded c113 permit 5 ^65000:3_0:117_0:4$ ip community-list expanded c113 permit 6 ^65000:3_0:118_0:5$ ip community-list expanded c113 permit 7 ^65000:3_0:119_0:6$ ip community-list expanded c113 permit 8 ^65000:3_0:120_0:7$ ip community-list expanded c113 permit 9 ^65000:3_0:121_0:8$ ip community-list expanded c113 permit 10 ^65000:3_0:122_0:9$ ip community-list expanded c113 permit 11 ^65000:3_0:123_0:10$ ip community-list expanded c113 permit 12 ^65000:3_0:124_0:11$ ip community-list expanded c113 permit 13 ^65000:3_0:125_0:12$ ip community-list expanded c113 permit 14 ^65000:3_0:126_0:13$ ip community-list expanded c113 permit 15 ^65000:3_0:127_0:14$ ip community-list expanded c113 permit 16 ^65000:3_0:128_0:15$ ip community-list expanded c113 permit 17 ^65000:3_0:129_0:16$ ip community-list expanded c113 permit 18 ^65000:3_0:130_0:17$ ip community-list expanded c113 permit 19 ^65000:3_0:131_0:18$ ip community-list expanded c113 permit 20 ^65000:3_0:132_0:19$ ip community-list expanded c113 permit 21 ^65000:3_0:133_0:20$ ip community-list expanded c113 permit 22 ^65000:3_0:134_0:21$ ip community-list expanded c113 permit 23 ^65000:3_0:135_0:22$ ip community-list expanded c113 permit 24 ^65000:3_0:136_0:23$ ip community-list expanded c113 permit 25 ^65000:3_0:137_0:24$ ip community-list expanded c113 permit 26 ^65000:3_0:138_0:25$ ip community-list expanded c113 permit 27 ^65000:3_0:139_0:26$ ip community-list expanded c113 permit 28 ^65000:3_0:140_0:27$ ip community-list expanded c113 permit 29 ^65000:3_0:141_0:28$ ip community-list expanded c113 permit 30 ^65000:3_0:142_0:29$ ip community-list expanded c113 permit 31 ^65000:3_0:143_0:30$ ip community-list expanded c113 permit 32 ^65000:3_0:144_0:31$ ip community-list expanded c113 permit 33 ^65000:3_0:145_0:32$ ip community-list expanded c113 permit 34 ^65000:3_0:146_0:33$ ip community-list expanded c113 permit 35 ^65000:3_0:147_0:34$ ip community-list expanded c113 permit 36 ^65000:3_0:148_0:35$ ip community-list expanded c113 permit 37 ^65000:3_0:149_0:36$ ip community-list expanded c113 permit 38 ^65000:3_0:150_0:37$ ip community-list expanded c113 permit 39 ^65000:3_0:151_0:38$ ip community-list expanded c113 permit 40 ^65000:3_0:152_0:39$ ip community-list expanded c113 permit 41 ^65000:3_0:153_0:40$ ip community-list expanded c113 permit 42 ^65000:3_0:154_0:41$ ip community-list expanded c113 permit 43 ^65000:3_0:155_0:42$ ip community-list expanded c113 permit 44 ^65000:3_0:156_0:43$ ip community-list expanded c113 permit 45 ^65000:3_0:157_0:44$ ip community-list expanded c113 permit 46 ^65000:3_0:158_0:45$ ip community-list expanded c113 permit 47 ^65000:3_0:159_0:46$ ip community-list expanded c113 permit 48 ^65000:3_0:160_0:47$ ip community-list expanded c113 permit 49 ^65000:3_0:161_0:48$ ip community-list expanded c113 permit 50 ^65000:3_0:162_0:49$ ip community-list expanded c113 permit 51 ^65000:3_0:163_0:50$ ip community-list expanded c113 permit 52 ^65000:3_0:164_0:51$ ip community-list expanded c113 permit 53 ^65000:3_0:165_0:52$ ip community-list expanded c113 permit 54 ^65000:3_0:166_0:53$ ip community-list expanded c113 permit 55 ^65000:3_0:167_0:54$ ip community-list expanded c113 permit 56 ^65000:3_0:168_0:55$ ip community-list expanded c113 permit 57 ^65000:3_0:169_0:56$ ip community-list expanded c113 permit 58 ^65000:3_0:170_0:57$ ip community-list expanded c113 permit 59 ^65000:3_0:171_0:58$ ip community-list expanded c113 permit 60 ^65000:3_0:172_0:59$ ip community-list expanded c113 permit 61 ^65000:3_0:173_0:60$ ip community-list expanded c113 permit 62 ^65000:3_0:174_0:61$ ip community-list expanded c113 permit 63 ^65000:3_0:175_0:62$ ip community-list expanded c113 permit 64 ^65000:3_0:176_0:63$ ip community-list expanded c113 permit 65 ^65000:3_0:177_0:64$ ip community-list expanded c113 permit 66 ^65000:3_0:178_0:65$ ip community-list expanded c113 permit 67 ^65000:3_0:179_0:66$ ip community-list expanded c113 permit 68 ^65000:3_0:180_0:67$ ip community-list expanded c113 permit 69 ^65000:3_0:181_0:68$ ip community-list expanded c113 permit 70 ^65000:3_0:182_0:69$ ip community-list expanded c113 permit 71 ^65000:3_0:183_0:70$ ip community-list expanded c113 permit 72 ^65000:3_0:184_0:71$ ip community-list expanded c113 permit 73 ^65000:3_0:185_0:72$ ip community-list expanded c113 permit 74 ^65000:3_0:186_0:73$ ip community-list expanded c113 permit 75 ^65000:3_0:187_0:74$ ip community-list expanded c113 permit 76 ^65000:3_0:188_0:75$ ip community-list expanded c113 permit 77 ^65000:3_0:189_0:76$ ip community-list expanded c113 permit 78 ^65000:3_0:190_0:77$ ip community-list expanded c113 permit 79 ^65000:3_0:191_0:78$ ip community-list expanded c113 permit 80 ^65000:3_0:192_0:79$ ip community-list expanded c113 permit 81 ^65000:3_0:193_0:80$ ip community-list expanded c113 permit 82 ^65000:3_0:194_0:81$ ip community-list expanded c113 permit 83 ^65000:3_0:195_0:82$ ip community-list expanded c113 permit 84 ^65000:3_0:196_0:83$ ip community-list expanded c113 permit 85 ^65000:3_0:197_0:84$ ip community-list expanded c113 permit 86 ^65000:3_0:198_0:85$ ip community-list expanded c113 permit 87 ^65000:3_0:199_0:86$ ip community-list expanded c113 permit 88 ^65000:3_0:200_0:87$ ip community-list expanded c113 permit 89 ^65000:3_0:201_0:88$ ip community-list expanded c113 permit 90 ^65000:3_0:202_0:89$ ip community-list expanded c113 permit 91 ^65000:3_0:203_0:90$ ip community-list expanded c113 permit 92 ^65000:3_0:204_0:91$ ip community-list expanded c113 permit 93 ^65000:3_0:205_0:92$ ip community-list expanded c113 permit 94 ^65000:3_0:206_0:93$ ip community-list expanded c113 permit 95 ^65000:3_0:207_0:94$ ip community-list expanded c113 permit 96 ^65000:3_0:208_0:95$ ip community-list expanded c113 permit 97 ^65000:3_0:209_0:96$ ip community-list expanded c113 permit 98 ^65000:3_0:210_0:97$ ip community-list expanded c113 permit 99 ^65000:3_0:211_0:98$ ip community-list expanded c113 permit 100 ^65000:3_0:212_0:99$ ip community-list expanded c113 permit 101 ^65000:3_0:213_0:100$ ip community-list expanded c113 permit 102 ^65000:3_0:214_0:101$ ip community-list expanded c113 permit 103 ^65000:3_0:215_0:102$ ip community-list expanded c113 permit 104 ^65000:3_0:216_0:103$ ip community-list expanded c113 permit 105 ^65000:3_0:217_0:104$ ip community-list expanded c113 permit 106 ^65000:3_0:218_0:105$ ip community-list expanded c113 permit 107 ^65000:3_0:219_0:106$ ip community-list expanded c113 permit 108 ^65000:3_0:220_0:107$ ip community-list expanded c113 permit 109 ^65000:3_0:221_0:108$ ip community-list expanded c113 permit 110 ^65000:3_0:222_0:109$ ip community-list expanded c113 permit 111 ^65000:3_0:223_0:110$ ip community-list expanded c113 permit 112 ^65000:3_0:224_0:111$ ip community-list expanded c113 permit 113 ^65000:3_0:225_0:112$ ip community-list expanded c113 permit 114 ^65000:4_0:226_0:2$ ip community-list expanded c113 permit 115 ^65000:3_0:226_0:113$ ip community-list expanded c113 permit 116 ^65000:4_0:227_0:2$ ip community-list expanded c113 permit 117 ^65000:3_0:227_0:114$ ip community-list expanded c113 permit 118 ^65000:3_0:228_0:115$ ip community-list expanded c113 permit 119 ^65000:3_0:229_0:116$ ip community-list expanded c113 permit 120 ^65000:3_0:230_0:117$ ip community-list expanded c113 permit 121 ^65000:3_0:231_0:118$ ip community-list expanded c113 permit 122 ^65000:3_0:232_0:119$ ip community-list expanded c113 permit 123 ^65000:3_0:233_0:120$ ip community-list expanded c113 permit 124 ^65000:3_0:234_0:121$ ip community-list expanded c113 permit 125 ^65000:3_0:235_0:122$ ip community-list expanded c113 permit 126 ^65000:3_0:236_0:123$ ip community-list expanded c113 permit 127 ^65000:3_0:237_0:124$ ip community-list expanded c113 permit 128 ^65000:3_0:238_0:125$ ip community-list expanded c113 permit 129 ^65000:3_0:239_0:126$ ip community-list expanded c113 permit 130 ^65000:3_0:240_0:127$ ip community-list expanded c113 permit 131 ^65000:3_0:241_0:128$ ip community-list expanded c113 permit 132 ^65000:3_0:242_0:129$ ip community-list expanded c113 permit 133 ^65000:3_0:243_0:130$ ip community-list expanded c113 permit 134 ^65000:3_0:244_0:131$ ip community-list expanded c113 permit 135 ^65000:3_0:245_0:132$ ip community-list expanded c113 permit 136 ^65000:3_0:246_0:133$ ip community-list expanded c113 permit 137 ^65000:3_0:247_0:134$ ip community-list expanded c113 permit 138 ^65000:3_0:248_0:135$ ip community-list expanded c113 permit 139 ^65000:3_0:249_0:136$ ip community-list expanded c113 permit 140 ^65000:3_0:250_0:137$ ip community-list expanded c113 permit 141 ^65000:3_0:251_0:138$ ip community-list expanded c113 permit 142 ^65000:3_0:252_0:139$ ip community-list expanded c113 permit 143 ^65000:3_0:253_0:140$ ip community-list expanded c113 permit 144 ^65000:3_0:254_0:141$ ip community-list expanded c113 permit 145 ^65000:3_0:255_0:142$ ip community-list expanded c113 permit 146 ^65000:3_0:256_0:143$ route-map calculator permit 29382 match community 1_1_112 2_1_113 1_2_111 1_3_110 1_4_109 set community 0:113 route-map calculator permit 29383 match community 1_5_108 1_6_107 1_7_106 1_8_105 1_9_104 set community 0:113 route-map calculator permit 29384 match community 1_10_103 1_11_102 1_12_101 1_13_100 1_14_99 set community 0:113 route-map calculator permit 29385 match community 1_15_98 1_16_97 1_17_96 1_18_95 1_19_94 set community 0:113 route-map calculator permit 29386 match community 1_20_93 1_21_92 1_22_91 1_23_90 1_24_89 set community 0:113 route-map calculator permit 29387 match community 1_25_88 1_26_87 1_27_86 1_28_85 1_29_84 set community 0:113 route-map calculator permit 29388 match community 1_30_83 1_31_82 1_32_81 1_33_80 1_34_79 set community 0:113 route-map calculator permit 29389 match community 1_35_78 1_36_77 1_37_76 1_38_75 1_39_74 set community 0:113 route-map calculator permit 29390 match community 1_40_73 1_41_72 1_42_71 1_43_70 1_44_69 set community 0:113 route-map calculator permit 29391 match community 1_45_68 1_46_67 1_47_66 1_48_65 1_49_64 set community 0:113 route-map calculator permit 29392 match community 1_50_63 1_51_62 1_52_61 1_53_60 1_54_59 set community 0:113 route-map calculator permit 29393 match community 1_55_58 1_56_57 c4_113_1 c3_114_1 c3_115_2 set community 0:113 route-map calculator permit 29394 match community c3_116_3 c3_117_4 c3_118_5 c3_119_6 c3_120_7 set community 0:113 route-map calculator permit 29395 match community c3_121_8 c3_122_9 c3_123_10 c3_124_11 c3_125_12 set community 0:113 route-map calculator permit 29396 match community c3_126_13 c3_127_14 c3_128_15 c3_129_16 c3_130_17 set community 0:113 route-map calculator permit 29397 match community c3_131_18 c3_132_19 c3_133_20 c3_134_21 c3_135_22 set community 0:113 route-map calculator permit 29398 match community c3_136_23 c3_137_24 c3_138_25 c3_139_26 c3_140_27 set community 0:113 route-map calculator permit 29399 match community c3_141_28 c3_142_29 c3_143_30 c3_144_31 c3_145_32 set community 0:113 route-map calculator permit 29400 match community c3_146_33 c3_147_34 c3_148_35 c3_149_36 c3_150_37 set community 0:113 route-map calculator permit 29401 match community c3_151_38 c3_152_39 c3_153_40 c3_154_41 c3_155_42 set community 0:113 route-map calculator permit 29402 match community c3_156_43 c3_157_44 c3_158_45 c3_159_46 c3_160_47 set community 0:113 route-map calculator permit 29403 match community c3_161_48 c3_162_49 c3_163_50 c3_164_51 c3_165_52 set community 0:113 route-map calculator permit 29404 match community c3_166_53 c3_167_54 c3_168_55 c3_169_56 c3_170_57 set community 0:113 route-map calculator permit 29405 match community c3_171_58 c3_172_59 c3_173_60 c3_174_61 c3_175_62 set community 0:113 route-map calculator permit 29406 match community c3_176_63 c3_177_64 c3_178_65 c3_179_66 c3_180_67 set community 0:113 route-map calculator permit 29407 match community c3_181_68 c3_182_69 c3_183_70 c3_184_71 c3_185_72 set community 0:113 route-map calculator permit 29408 match community c3_186_73 c3_187_74 c3_188_75 c3_189_76 c3_190_77 set community 0:113 route-map calculator permit 29409 match community c3_191_78 c3_192_79 c3_193_80 c3_194_81 c3_195_82 set community 0:113 route-map calculator permit 29410 match community c3_196_83 c3_197_84 c3_198_85 c3_199_86 c3_200_87 set community 0:113 route-map calculator permit 29411 match community c3_201_88 c3_202_89 c3_203_90 c3_204_91 c3_205_92 set community 0:113 route-map calculator permit 29412 match community c3_206_93 c3_207_94 c3_208_95 c3_209_96 c3_210_97 set community 0:113 route-map calculator permit 29413 match community c3_211_98 c3_212_99 c3_213_100 c3_214_101 c3_215_102 set community 0:113 route-map calculator permit 29414 match community c3_216_103 c3_217_104 c3_218_105 c3_219_106 c3_220_107 set community 0:113 route-map calculator permit 29415 match community c3_221_108 c3_222_109 c3_223_110 c3_224_111 c3_225_112 set community 0:113 route-map calculator permit 29416 match community c4_226_2 c3_226_113 c4_227_2 c3_227_114 c3_228_115 set community 0:113 route-map calculator permit 29417 match community c3_229_116 c3_230_117 c3_231_118 c3_232_119 c3_233_120 set community 0:113 route-map calculator permit 29418 match community c3_234_121 c3_235_122 c3_236_123 c3_237_124 c3_238_125 set community 0:113 route-map calculator permit 29419 match community c3_239_126 c3_240_127 c3_241_128 c3_242_129 c3_243_130 set community 0:113 route-map calculator permit 29420 match community c3_244_131 c3_245_132 c3_246_133 c3_247_134 c3_248_135 set community 0:113 route-map calculator permit 29421 match community c3_249_136 c3_250_137 c3_251_138 c3_252_139 c3_253_140 set community 0:113 route-map calculator permit 29422 match community c3_254_141 c3_255_142 c3_256_143 set community 0:113 ip community-list standard 2_92_224 permit 65000:2 0:92 0:224 ip community-list standard 2_112_184 permit 65000:2 0:112 0:184 ip community-list standard 2_128_161 permit 65000:2 0:128 0:161 route-map calculator permit 29423 match community 2_92_224 2_112_184 2_128_161 set community 0:20608 ip community-list standard 2_110_193 permit 65000:2 0:110 0:193 route-map calculator permit 29424 match community 2_110_193 set community 0:21230 ip community-list standard 2_52_238 permit 65000:2 0:52 0:238 ip community-list standard 2_56_221 permit 65000:2 0:56 0:221 ip community-list standard 2_68_182 permit 65000:2 0:68 0:182 ip community-list standard 2_91_136 permit 65000:2 0:91 0:136 ip community-list standard 2_104_119 permit 65000:2 0:104 0:119 route-map calculator permit 29425 match community 2_52_238 2_56_221 2_68_182 2_91_136 2_104_119 set community 0:12376 ip community-list standard 2_145_223 permit 65000:2 0:145 0:223 route-map calculator permit 29426 match community 2_145_223 set community 0:32335 ip community-list standard 2_81_167 permit 65000:2 0:81 0:167 route-map calculator permit 29427 match community 2_81_167 set community 0:13527 ip community-list standard 2_121_239 permit 65000:2 0:121 0:239 route-map calculator permit 29428 match community 2_121_239 set community 0:28919 ip community-list standard 2_115_246 permit 65000:2 0:115 0:246 ip community-list standard 2_123_230 permit 65000:2 0:123 0:230 ip community-list standard 2_138_205 permit 65000:2 0:138 0:205 route-map calculator permit 29429 match community 2_115_246 2_123_230 2_138_205 set community 0:28290 ip community-list standard 2_49_142 permit 65000:2 0:49 0:142 ip community-list standard 2_71_98 permit 65000:2 0:71 0:98 route-map calculator permit 29430 match community 2_49_142 2_71_98 set community 0:6958 ip community-list standard 2_7_177 permit 65000:2 0:7 0:177 ip community-list standard 2_21_59 permit 65000:2 0:21 0:59 route-map calculator permit 29431 match community 2_7_177 2_21_59 set community 0:1239 ip community-list standard 2_135_201 permit 65000:2 0:135 0:201 route-map calculator permit 29432 match community 2_135_201 set community 0:27135 ip community-list standard 2_191_202 permit 65000:2 0:191 0:202 route-map calculator permit 29433 match community 2_191_202 set community 0:38582 ip community-list standard 2_113_227 permit 65000:2 0:113 0:227 route-map calculator permit 29434 match community 2_113_227 set community 0:25651 ip community-list standard 2_152_167 permit 65000:2 0:152 0:167 route-map calculator permit 29435 match community 2_152_167 set community 0:25384 ip community-list standard 2_35_190 permit 65000:2 0:35 0:190 ip community-list standard 2_38_175 permit 65000:2 0:38 0:175 ip community-list standard 2_50_133 permit 65000:2 0:50 0:133 ip community-list standard 2_70_95 permit 65000:2 0:70 0:95 route-map calculator permit 29436 match community 2_35_190 2_38_175 2_50_133 2_70_95 set community 0:6650 ip community-list standard 2_71_242 permit 65000:2 0:71 0:242 ip community-list standard 2_121_142 permit 65000:2 0:121 0:142 route-map calculator permit 29437 match community 2_71_242 2_121_142 set community 0:17182 ip community-list standard 2_73_107 permit 65000:2 0:73 0:107 route-map calculator permit 29438 match community 2_73_107 set community 0:7811 ip community-list standard 2_32_250 permit 65000:2 0:32 0:250 ip community-list standard 2_40_200 permit 65000:2 0:40 0:200 ip community-list standard 2_50_160 permit 65000:2 0:50 0:160 ip community-list standard 2_64_125 permit 65000:2 0:64 0:125 ip community-list standard 2_80_100 permit 65000:2 0:80 0:100 route-map calculator permit 29439 match community 2_32_250 2_40_200 2_50_160 2_64_125 2_80_100 set community 0:8000 ip community-list standard 2_155_253 permit 65000:2 0:155 0:253 route-map calculator permit 29440 match community 2_155_253 set community 0:39215 ip community-list standard 2_98_245 permit 65000:2 0:98 0:245 route-map calculator permit 29441 match community 2_98_245 set community 0:24010 ip community-list standard 2_37_37 permit 65000:2 0:37 0:37 route-map calculator permit 29442 match community 2_37_37 set community 0:1369 ip community-list standard 2_68_197 permit 65000:2 0:68 0:197 route-map calculator permit 29443 match community 2_68_197 set community 0:13396 ip community-list standard 2_159_221 permit 65000:2 0:159 0:221 route-map calculator permit 29444 match community 2_159_221 set community 0:35139 ip community-list standard 2_151_153 permit 65000:2 0:151 0:153 route-map calculator permit 29445 match community 2_151_153 set community 0:23103 ip community-list standard 2_33_226 permit 65000:2 0:33 0:226 ip community-list standard 2_66_113 permit 65000:2 0:66 0:113 route-map calculator permit 29446 match community 2_33_226 2_66_113 set community 0:7458 ip community-list standard 2_89_93 permit 65000:2 0:89 0:93 route-map calculator permit 29447 match community 2_89_93 set community 0:8277 ip community-list standard 2_153_231 permit 65000:2 0:153 0:231 ip community-list standard 2_187_189 permit 65000:2 0:187 0:189 route-map calculator permit 29448 match community 2_153_231 2_187_189 set community 0:35343 ip community-list standard 2_59_214 permit 65000:2 0:59 0:214 ip community-list standard 2_107_118 permit 65000:2 0:107 0:118 route-map calculator permit 29449 match community 2_59_214 2_107_118 set community 0:12626 ip community-list standard 2_31_82 permit 65000:2 0:31 0:82 ip community-list standard 2_41_62 permit 65000:2 0:41 0:62 route-map calculator permit 29450 match community 2_31_82 2_41_62 set community 0:2542 ip community-list standard 2_52_255 permit 65000:2 0:52 0:255 ip community-list standard 2_60_221 permit 65000:2 0:60 0:221 ip community-list standard 2_65_204 permit 65000:2 0:65 0:204 ip community-list standard 2_68_195 permit 65000:2 0:68 0:195 ip community-list standard 2_78_170 permit 65000:2 0:78 0:170 ip community-list standard 2_85_156 permit 65000:2 0:85 0:156 ip community-list standard 2_102_130 permit 65000:2 0:102 0:130 route-map calculator permit 29451 match community 2_52_255 2_60_221 2_65_204 2_68_195 2_78_170 set community 0:13260 route-map calculator permit 29452 match community 2_85_156 2_102_130 set community 0:13260 ip community-list standard 2_235_252 permit 65000:2 0:235 0:252 route-map calculator permit 29453 match community 2_235_252 set community 0:59220 ip community-list standard 2_50_229 permit 65000:2 0:50 0:229 route-map calculator permit 29454 match community 2_50_229 set community 0:11450 ip community-list standard 2_97_217 permit 65000:2 0:97 0:217 route-map calculator permit 29455 match community 2_97_217 set community 0:21049 ip community-list standard 2_55_251 permit 65000:2 0:55 0:251 route-map calculator permit 29456 match community 2_55_251 set community 0:13805 ip community-list standard 2_19_71 permit 65000:2 0:19 0:71 route-map calculator permit 29457 match community 2_19_71 set community 0:1349 ip community-list standard 2_162_232 permit 65000:2 0:162 0:232 ip community-list standard 2_174_216 permit 65000:2 0:174 0:216 route-map calculator permit 29458 match community 2_162_232 2_174_216 set community 0:37584 ip community-list standard 2_13_164 permit 65000:2 0:13 0:164 ip community-list standard 2_26_82 permit 65000:2 0:26 0:82 ip community-list standard 2_41_52 permit 65000:2 0:41 0:52 route-map calculator permit 29459 match community 2_13_164 2_26_82 2_41_52 set community 0:2132 ip community-list standard 2_157_199 permit 65000:2 0:157 0:199 route-map calculator permit 29460 match community 2_157_199 set community 0:31243 ip community-list standard 2_14_197 permit 65000:2 0:14 0:197 route-map calculator permit 29461 match community 2_14_197 set community 0:2758 ip community-list standard 2_129_240 permit 65000:2 0:129 0:240 ip community-list standard 2_144_215 permit 65000:2 0:144 0:215 ip community-list standard 2_172_180 permit 65000:2 0:172 0:180 route-map calculator permit 29462 match community 2_129_240 2_144_215 2_172_180 set community 0:30960 ip community-list standard 2_62_190 permit 65000:2 0:62 0:190 ip community-list standard 2_76_155 permit 65000:2 0:76 0:155 ip community-list standard 2_95_124 permit 65000:2 0:95 0:124 route-map calculator permit 29463 match community 2_62_190 2_76_155 2_95_124 set community 0:11780 ip community-list standard 2_56_181 permit 65000:2 0:56 0:181 route-map calculator permit 29464 match community 2_56_181 set community 0:10136 ip community-list standard 2_79_191 permit 65000:2 0:79 0:191 route-map calculator permit 29465 match community 2_79_191 set community 0:15089 ip community-list standard 2_25_157 permit 65000:2 0:25 0:157 route-map calculator permit 29466 match community 2_25_157 set community 0:3925 ip community-list standard 2_77_149 permit 65000:2 0:77 0:149 route-map calculator permit 29467 match community 2_77_149 set community 0:11473 ip community-list standard 2_181_245 permit 65000:2 0:181 0:245 route-map calculator permit 29468 match community 2_181_245 set community 0:44345 ip community-list standard 2_235_250 permit 65000:2 0:235 0:250 route-map calculator permit 29469 match community 2_235_250 set community 0:58750 ip community-list standard 2_41_197 permit 65000:2 0:41 0:197 route-map calculator permit 29470 match community 2_41_197 set community 0:8077 ip community-list standard 2_218_244 permit 65000:2 0:218 0:244 route-map calculator permit 29471 match community 2_218_244 set community 0:53192 ip community-list standard 2_34_199 permit 65000:2 0:34 0:199 route-map calculator permit 29472 match community 2_34_199 set community 0:6766 ip community-list standard 2_143_213 permit 65000:2 0:143 0:213 route-map calculator permit 29473 match community 2_143_213 set community 0:30459 ip community-list standard 2_43_86 permit 65000:2 0:43 0:86 route-map calculator permit 29474 match community 2_43_86 set community 0:3698 ip community-list standard 2_112_179 permit 65000:2 0:112 0:179 route-map calculator permit 29475 match community 2_112_179 set community 0:20048 ip community-list standard 2_218_253 permit 65000:2 0:218 0:253 route-map calculator permit 29476 match community 2_218_253 set community 0:55154 ip community-list standard 2_153_222 permit 65000:2 0:153 0:222 route-map calculator permit 29477 match community 2_153_222 set community 0:33966 ip community-list standard 2_203_220 permit 65000:2 0:203 0:220 route-map calculator permit 29478 match community 2_203_220 set community 0:44660 ip community-list standard 2_84_193 permit 65000:2 0:84 0:193 route-map calculator permit 29479 match community 2_84_193 set community 0:16212 ip community-list standard 2_27_221 permit 65000:2 0:27 0:221 ip community-list standard 2_39_153 permit 65000:2 0:39 0:153 ip community-list standard 2_51_117 permit 65000:2 0:51 0:117 route-map calculator permit 29480 match community 2_27_221 2_39_153 2_51_117 set community 0:5967 ip community-list standard 2_65_244 permit 65000:2 0:65 0:244 ip community-list standard 2_122_130 permit 65000:2 0:122 0:130 route-map calculator permit 29481 match community 2_65_244 2_122_130 set community 0:15860 ip community-list standard 2_148_179 permit 65000:2 0:148 0:179 route-map calculator permit 29482 match community 2_148_179 set community 0:26492 ip community-list standard 2_11_82 permit 65000:2 0:11 0:82 ip community-list standard 2_22_41 permit 65000:2 0:22 0:41 route-map calculator permit 29483 match community 2_11_82 2_22_41 set community 0:902 ip community-list standard 2_48_236 permit 65000:2 0:48 0:236 ip community-list standard 2_59_192 permit 65000:2 0:59 0:192 ip community-list standard 2_64_177 permit 65000:2 0:64 0:177 ip community-list standard 2_96_118 permit 65000:2 0:96 0:118 route-map calculator permit 29484 match community 2_48_236 2_59_192 2_64_177 2_96_118 set community 0:11328 ip community-list standard 2_222_227 permit 65000:2 0:222 0:227 route-map calculator permit 29485 match community 2_222_227 set community 0:50394 ip community-list standard 2_55_181 permit 65000:2 0:55 0:181 route-map calculator permit 29486 match community 2_55_181 set community 0:9955 ip community-list standard 2_166_193 permit 65000:2 0:166 0:193 route-map calculator permit 29487 match community 2_166_193 set community 0:32038 ip community-list standard 2_62_163 permit 65000:2 0:62 0:163 route-map calculator permit 29488 match community 2_62_163 set community 0:10106 ip community-list standard 2_112_255 permit 65000:2 0:112 0:255 ip community-list standard 2_119_240 permit 65000:2 0:119 0:240 ip community-list standard 2_120_238 permit 65000:2 0:120 0:238 ip community-list standard 2_136_210 permit 65000:2 0:136 0:210 ip community-list standard 2_140_204 permit 65000:2 0:140 0:204 ip community-list standard 2_168_170 permit 65000:2 0:168 0:170 route-map calculator permit 29489 match community 2_112_255 2_119_240 2_120_238 2_136_210 2_140_204 set community 0:28560 route-map calculator permit 29490 match community 2_168_170 set community 0:28560 ip community-list standard 2_119_139 permit 65000:2 0:119 0:139 route-map calculator permit 29491 match community 2_119_139 set community 0:16541 ip community-list standard 2_99_157 permit 65000:2 0:99 0:157 route-map calculator permit 29492 match community 2_99_157 set community 0:15543 ip community-list standard 2_118_254 permit 65000:2 0:118 0:254 ip community-list standard 2_127_236 permit 65000:2 0:127 0:236 route-map calculator permit 29493 match community 2_118_254 2_127_236 set community 0:29972 ip community-list standard 2_222_251 permit 65000:2 0:222 0:251 route-map calculator permit 29494 match community 2_222_251 set community 0:55722 ip community-list standard 2_231_256 permit 65000:2 0:231 0:256 route-map calculator permit 29495 match community 2_231_256 set community 0:59136 ip community-list standard 2_2_178 permit 65000:2 0:2 0:178 ip community-list standard 2_4_89 permit 65000:2 0:4 0:89 ip community-list standard 1_100_256 permit 65000:1 0:100 0:256 ip community-list standard 1_101_255 permit 65000:1 0:101 0:255 ip community-list standard 1_102_254 permit 65000:1 0:102 0:254 ip community-list standard 1_103_253 permit 65000:1 0:103 0:253 ip community-list standard 1_104_252 permit 65000:1 0:104 0:252 ip community-list standard 1_105_251 permit 65000:1 0:105 0:251 ip community-list standard 1_106_250 permit 65000:1 0:106 0:250 ip community-list standard 1_107_249 permit 65000:1 0:107 0:249 ip community-list standard 1_108_248 permit 65000:1 0:108 0:248 ip community-list standard 1_109_247 permit 65000:1 0:109 0:247 ip community-list standard 1_110_246 permit 65000:1 0:110 0:246 ip community-list standard 1_111_245 permit 65000:1 0:111 0:245 ip community-list standard 1_112_244 permit 65000:1 0:112 0:244 ip community-list standard 1_113_243 permit 65000:1 0:113 0:243 ip community-list standard 1_114_242 permit 65000:1 0:114 0:242 ip community-list standard 1_115_241 permit 65000:1 0:115 0:241 ip community-list standard 1_116_240 permit 65000:1 0:116 0:240 ip community-list standard 1_117_239 permit 65000:1 0:117 0:239 ip community-list standard 1_118_238 permit 65000:1 0:118 0:238 ip community-list standard 1_119_237 permit 65000:1 0:119 0:237 ip community-list standard 1_120_236 permit 65000:1 0:120 0:236 ip community-list standard 1_121_235 permit 65000:1 0:121 0:235 ip community-list standard 1_122_234 permit 65000:1 0:122 0:234 ip community-list standard 1_123_233 permit 65000:1 0:123 0:233 ip community-list standard 1_124_232 permit 65000:1 0:124 0:232 ip community-list standard 1_125_231 permit 65000:1 0:125 0:231 ip community-list standard 1_126_230 permit 65000:1 0:126 0:230 ip community-list standard 1_127_229 permit 65000:1 0:127 0:229 ip community-list standard 1_128_228 permit 65000:1 0:128 0:228 ip community-list standard 1_129_227 permit 65000:1 0:129 0:227 ip community-list standard 1_130_226 permit 65000:1 0:130 0:226 ip community-list standard 1_131_225 permit 65000:1 0:131 0:225 ip community-list standard 1_132_224 permit 65000:1 0:132 0:224 ip community-list standard 1_133_223 permit 65000:1 0:133 0:223 ip community-list standard 1_134_222 permit 65000:1 0:134 0:222 ip community-list standard 1_135_221 permit 65000:1 0:135 0:221 ip community-list standard 1_136_220 permit 65000:1 0:136 0:220 ip community-list standard 1_137_219 permit 65000:1 0:137 0:219 ip community-list standard 1_138_218 permit 65000:1 0:138 0:218 ip community-list standard 1_139_217 permit 65000:1 0:139 0:217 ip community-list standard 1_140_216 permit 65000:1 0:140 0:216 ip community-list standard 1_141_215 permit 65000:1 0:141 0:215 ip community-list standard 1_142_214 permit 65000:1 0:142 0:214 ip community-list standard 1_143_213 permit 65000:1 0:143 0:213 ip community-list standard 1_144_212 permit 65000:1 0:144 0:212 ip community-list standard 1_145_211 permit 65000:1 0:145 0:211 ip community-list standard 1_146_210 permit 65000:1 0:146 0:210 ip community-list standard 1_147_209 permit 65000:1 0:147 0:209 ip community-list standard 1_148_208 permit 65000:1 0:148 0:208 ip community-list standard 1_149_207 permit 65000:1 0:149 0:207 ip community-list standard 1_150_206 permit 65000:1 0:150 0:206 ip community-list standard 1_151_205 permit 65000:1 0:151 0:205 ip community-list standard 1_152_204 permit 65000:1 0:152 0:204 ip community-list standard 1_153_203 permit 65000:1 0:153 0:203 ip community-list standard 1_154_202 permit 65000:1 0:154 0:202 ip community-list standard 1_155_201 permit 65000:1 0:155 0:201 ip community-list standard 1_156_200 permit 65000:1 0:156 0:200 ip community-list standard 1_157_199 permit 65000:1 0:157 0:199 ip community-list standard 1_158_198 permit 65000:1 0:158 0:198 ip community-list standard 1_159_197 permit 65000:1 0:159 0:197 ip community-list standard 1_160_196 permit 65000:1 0:160 0:196 ip community-list standard 1_161_195 permit 65000:1 0:161 0:195 ip community-list standard 1_162_194 permit 65000:1 0:162 0:194 ip community-list standard 1_163_193 permit 65000:1 0:163 0:193 ip community-list standard 1_164_192 permit 65000:1 0:164 0:192 ip community-list standard 1_165_191 permit 65000:1 0:165 0:191 ip community-list standard 1_166_190 permit 65000:1 0:166 0:190 ip community-list standard 1_167_189 permit 65000:1 0:167 0:189 ip community-list standard 1_168_188 permit 65000:1 0:168 0:188 ip community-list standard 1_169_187 permit 65000:1 0:169 0:187 ip community-list standard 1_170_186 permit 65000:1 0:170 0:186 ip community-list standard 1_171_185 permit 65000:1 0:171 0:185 ip community-list standard 1_172_184 permit 65000:1 0:172 0:184 ip community-list standard 1_173_183 permit 65000:1 0:173 0:183 ip community-list standard 1_174_182 permit 65000:1 0:174 0:182 ip community-list standard 1_175_181 permit 65000:1 0:175 0:181 ip community-list standard 1_176_180 permit 65000:1 0:176 0:180 ip community-list standard 1_177_179 permit 65000:1 0:177 0:179 ip community-list standard 1_178_178 permit 65000:1 0:178 0:178 route-map calculator permit 29496 match community 2_2_178 2_4_89 1_100_256 1_101_255 1_102_254 set community 0:356 route-map calculator permit 29497 match community 1_103_253 1_104_252 1_105_251 1_106_250 1_107_249 set community 0:356 route-map calculator permit 29498 match community 1_108_248 1_109_247 1_110_246 1_111_245 1_112_244 set community 0:356 route-map calculator permit 29499 match community 1_113_243 1_114_242 1_115_241 1_116_240 1_117_239 set community 0:356 route-map calculator permit 29500 match community 1_118_238 1_119_237 1_120_236 1_121_235 1_122_234 set community 0:356 route-map calculator permit 29501 match community 1_123_233 1_124_232 1_125_231 1_126_230 1_127_229 set community 0:356 route-map calculator permit 29502 match community 1_128_228 1_129_227 1_130_226 1_131_225 1_132_224 set community 0:356 route-map calculator permit 29503 match community 1_133_223 1_134_222 1_135_221 1_136_220 1_137_219 set community 0:356 route-map calculator permit 29504 match community 1_138_218 1_139_217 1_140_216 1_141_215 1_142_214 set community 0:356 route-map calculator permit 29505 match community 1_143_213 1_144_212 1_145_211 1_146_210 1_147_209 set community 0:356 route-map calculator permit 29506 match community 1_148_208 1_149_207 1_150_206 1_151_205 1_152_204 set community 0:356 route-map calculator permit 29507 match community 1_153_203 1_154_202 1_155_201 1_156_200 1_157_199 set community 0:356 route-map calculator permit 29508 match community 1_158_198 1_159_197 1_160_196 1_161_195 1_162_194 set community 0:356 route-map calculator permit 29509 match community 1_163_193 1_164_192 1_165_191 1_166_190 1_167_189 set community 0:356 route-map calculator permit 29510 match community 1_168_188 1_169_187 1_170_186 1_171_185 1_172_184 set community 0:356 route-map calculator permit 29511 match community 1_173_183 1_174_182 1_175_181 1_176_180 1_177_179 set community 0:356 route-map calculator permit 29512 match community 1_178_178 set community 0:356 ip community-list standard 2_106_157 permit 65000:2 0:106 0:157 route-map calculator permit 29513 match community 2_106_157 set community 0:16642 ip community-list standard 2_115_221 permit 65000:2 0:115 0:221 route-map calculator permit 29514 match community 2_115_221 set community 0:25415 ip community-list standard 2_21_123 permit 65000:2 0:21 0:123 ip community-list standard 2_41_63 permit 65000:2 0:41 0:63 route-map calculator permit 29515 match community 2_21_123 2_41_63 set community 0:2583 ip community-list standard 2_58_226 permit 65000:2 0:58 0:226 ip community-list standard 2_113_116 permit 65000:2 0:113 0:116 route-map calculator permit 29516 match community 2_58_226 2_113_116 set community 0:13108 ip community-list standard 2_36_157 permit 65000:2 0:36 0:157 route-map calculator permit 29517 match community 2_36_157 set community 0:5652 ip community-list standard 2_145_246 permit 65000:2 0:145 0:246 ip community-list standard 2_174_205 permit 65000:2 0:174 0:205 route-map calculator permit 29518 match community 2_145_246 2_174_205 set community 0:35670 ip community-list standard 2_181_187 permit 65000:2 0:181 0:187 route-map calculator permit 29519 match community 2_181_187 set community 0:33847 ip community-list standard 2_111_228 permit 65000:2 0:111 0:228 ip community-list standard 2_114_222 permit 65000:2 0:114 0:222 ip community-list standard 2_148_171 permit 65000:2 0:148 0:171 route-map calculator permit 29520 match community 2_111_228 2_114_222 2_148_171 set community 0:25308 ip community-list standard 2_30_199 permit 65000:2 0:30 0:199 route-map calculator permit 29521 match community 2_30_199 set community 0:5970 ip community-list standard 2_133_226 permit 65000:2 0:133 0:226 route-map calculator permit 29522 match community 2_133_226 set community 0:30058 ip community-list standard 2_109_220 permit 65000:2 0:109 0:220 ip community-list standard 2_110_218 permit 65000:2 0:110 0:218 route-map calculator permit 29523 match community 2_109_220 2_110_218 set community 0:23980 ip community-list standard 2_137_242 permit 65000:2 0:137 0:242 route-map calculator permit 29524 match community 2_137_242 set community 0:33154 ip community-list standard 2_86_174 permit 65000:2 0:86 0:174 ip community-list standard 2_87_172 permit 65000:2 0:87 0:172 ip community-list standard 2_116_129 permit 65000:2 0:116 0:129 route-map calculator permit 29525 match community 2_86_174 2_87_172 2_116_129 set community 0:14964 ip community-list standard 2_118_201 permit 65000:2 0:118 0:201 ip community-list standard 2_134_177 permit 65000:2 0:134 0:177 route-map calculator permit 29526 match community 2_118_201 2_134_177 set community 0:23718 ip community-list standard 2_35_244 permit 65000:2 0:35 0:244 ip community-list standard 2_61_140 permit 65000:2 0:61 0:140 ip community-list standard 2_70_122 permit 65000:2 0:70 0:122 route-map calculator permit 29527 match community 2_35_244 2_61_140 2_70_122 set community 0:8540 ip community-list standard 2_101_255 permit 65000:2 0:101 0:255 route-map calculator permit 29528 match community 2_101_255 set community 0:25755 ip community-list standard 2_24_204 permit 65000:2 0:24 0:204 ip community-list standard 2_32_153 permit 65000:2 0:32 0:153 ip community-list standard 2_34_144 permit 65000:2 0:34 0:144 ip community-list standard 2_36_136 permit 65000:2 0:36 0:136 ip community-list standard 2_48_102 permit 65000:2 0:48 0:102 ip community-list standard 2_51_96 permit 65000:2 0:51 0:96 ip community-list standard 2_68_72 permit 65000:2 0:68 0:72 route-map calculator permit 29529 match community 2_24_204 2_32_153 2_34_144 2_36_136 2_48_102 set community 0:4896 route-map calculator permit 29530 match community 2_51_96 2_68_72 set community 0:4896 ip community-list standard 2_117_256 permit 65000:2 0:117 0:256 ip community-list standard 2_128_234 permit 65000:2 0:128 0:234 ip community-list standard 2_144_208 permit 65000:2 0:144 0:208 ip community-list standard 2_156_192 permit 65000:2 0:156 0:192 route-map calculator permit 29531 match community 2_117_256 2_128_234 2_144_208 2_156_192 set community 0:29952 ip community-list standard 2_234_246 permit 65000:2 0:234 0:246 route-map calculator permit 29532 match community 2_234_246 set community 0:57564 ip community-list standard 2_85_187 permit 65000:2 0:85 0:187 route-map calculator permit 29533 match community 2_85_187 set community 0:15895 ip community-list standard 2_163_252 permit 65000:2 0:163 0:252 route-map calculator permit 29534 match community 2_163_252 set community 0:41076 ip community-list standard 2_109_195 permit 65000:2 0:109 0:195 route-map calculator permit 29535 match community 2_109_195 set community 0:21255 ip community-list standard 2_43_230 permit 65000:2 0:43 0:230 ip community-list standard 2_46_215 permit 65000:2 0:46 0:215 ip community-list standard 2_86_115 permit 65000:2 0:86 0:115 route-map calculator permit 29536 match community 2_43_230 2_46_215 2_86_115 set community 0:9890 ip community-list standard 2_105_215 permit 65000:2 0:105 0:215 ip community-list standard 2_129_175 permit 65000:2 0:129 0:175 route-map calculator permit 29537 match community 2_105_215 2_129_175 set community 0:22575 ip community-list standard 2_209_232 permit 65000:2 0:209 0:232 route-map calculator permit 29538 match community 2_209_232 set community 0:48488 ip community-list standard 2_227_251 permit 65000:2 0:227 0:251 route-map calculator permit 29539 match community 2_227_251 set community 0:56977 ip community-list standard 2_36_250 permit 65000:2 0:36 0:250 ip community-list standard 2_40_225 permit 65000:2 0:40 0:225 ip community-list standard 2_45_200 permit 65000:2 0:45 0:200 ip community-list standard 2_50_180 permit 65000:2 0:50 0:180 ip community-list standard 2_60_150 permit 65000:2 0:60 0:150 ip community-list standard 2_72_125 permit 65000:2 0:72 0:125 ip community-list standard 2_75_120 permit 65000:2 0:75 0:120 ip community-list standard 2_90_100 permit 65000:2 0:90 0:100 route-map calculator permit 29540 match community 2_36_250 2_40_225 2_45_200 2_50_180 2_60_150 set community 0:9000 route-map calculator permit 29541 match community 2_72_125 2_75_120 2_90_100 set community 0:9000 ip community-list standard 2_7_222 permit 65000:2 0:7 0:222 ip community-list standard 2_14_111 permit 65000:2 0:14 0:111 ip community-list standard 2_21_74 permit 65000:2 0:21 0:74 ip community-list standard 2_37_42 permit 65000:2 0:37 0:42 route-map calculator permit 29542 match community 2_7_222 2_14_111 2_21_74 2_37_42 set community 0:1554 ip community-list standard 2_128_185 permit 65000:2 0:128 0:185 ip community-list standard 2_148_160 permit 65000:2 0:148 0:160 route-map calculator permit 29543 match community 2_128_185 2_148_160 set community 0:23680 ip community-list standard 2_61_223 permit 65000:2 0:61 0:223 route-map calculator permit 29544 match community 2_61_223 set community 0:13603 ip community-list standard 2_199_248 permit 65000:2 0:199 0:248 route-map calculator permit 29545 match community 2_199_248 set community 0:49352 ip community-list standard 2_133_146 permit 65000:2 0:133 0:146 route-map calculator permit 29546 match community 2_133_146 set community 0:19418 ip community-list standard 2_60_179 permit 65000:2 0:60 0:179 route-map calculator permit 29547 match community 2_60_179 set community 0:10740 ip community-list standard 2_204_221 permit 65000:2 0:204 0:221 route-map calculator permit 29548 match community 2_204_221 set community 0:45084 ip community-list standard 2_19_255 permit 65000:2 0:19 0:255 ip community-list standard 2_51_95 permit 65000:2 0:51 0:95 ip community-list standard 2_57_85 permit 65000:2 0:57 0:85 route-map calculator permit 29549 match community 2_19_255 2_51_95 2_57_85 set community 0:4845 ip community-list standard 2_4_163 permit 65000:2 0:4 0:163 route-map calculator permit 29550 match community 2_4_163 set community 0:652 ip community-list standard 2_95_235 permit 65000:2 0:95 0:235 route-map calculator permit 29551 match community 2_95_235 set community 0:22325 ip community-list standard 2_138_221 permit 65000:2 0:138 0:221 route-map calculator permit 29552 match community 2_138_221 set community 0:30498 ip community-list standard 2_18_241 permit 65000:2 0:18 0:241 route-map calculator permit 29553 match community 2_18_241 set community 0:4338 ip community-list standard 2_133_167 permit 65000:2 0:133 0:167 route-map calculator permit 29554 match community 2_133_167 set community 0:22211 ip community-list standard 2_63_139 permit 65000:2 0:63 0:139 route-map calculator permit 29555 match community 2_63_139 set community 0:8757 ip community-list standard 2_66_252 permit 65000:2 0:66 0:252 ip community-list standard 2_72_231 permit 65000:2 0:72 0:231 ip community-list standard 2_77_216 permit 65000:2 0:77 0:216 ip community-list standard 2_84_198 permit 65000:2 0:84 0:198 ip community-list standard 2_88_189 permit 65000:2 0:88 0:189 ip community-list standard 2_99_168 permit 65000:2 0:99 0:168 ip community-list standard 2_108_154 permit 65000:2 0:108 0:154 ip community-list standard 2_126_132 permit 65000:2 0:126 0:132 route-map calculator permit 29556 match community 2_66_252 2_72_231 2_77_216 2_84_198 2_88_189 set community 0:16632 route-map calculator permit 29557 match community 2_99_168 2_108_154 2_126_132 set community 0:16632 ip community-list standard 2_23_243 permit 65000:2 0:23 0:243 ip community-list standard 2_27_207 permit 65000:2 0:27 0:207 ip community-list standard 2_69_81 permit 65000:2 0:69 0:81 route-map calculator permit 29558 match community 2_23_243 2_27_207 2_69_81 set community 0:5589 ip community-list standard 2_5_107 permit 65000:2 0:5 0:107 route-map calculator permit 29559 match community 2_5_107 set community 0:535 ip community-list standard 2_158_218 permit 65000:2 0:158 0:218 route-map calculator permit 29560 match community 2_158_218 set community 0:34444 ip community-list standard 2_91_243 permit 65000:2 0:91 0:243 ip community-list standard 2_117_189 permit 65000:2 0:117 0:189 route-map calculator permit 29561 match community 2_91_243 2_117_189 set community 0:22113 ip community-list standard 2_167_249 permit 65000:2 0:167 0:249 route-map calculator permit 29562 match community 2_167_249 set community 0:41583 ip community-list standard 2_123_213 permit 65000:2 0:123 0:213 route-map calculator permit 29563 match community 2_123_213 set community 0:26199 ip community-list standard 2_225_243 permit 65000:2 0:225 0:243 route-map calculator permit 29564 match community 2_225_243 set community 0:54675 ip community-list standard 2_94_169 permit 65000:2 0:94 0:169 route-map calculator permit 29565 match community 2_94_169 set community 0:15886 ip community-list standard 2_60_149 permit 65000:2 0:60 0:149 route-map calculator permit 29566 match community 2_60_149 set community 0:8940 ip community-list standard 2_26_220 permit 65000:2 0:26 0:220 ip community-list standard 2_40_143 permit 65000:2 0:40 0:143 ip community-list standard 2_44_130 permit 65000:2 0:44 0:130 ip community-list standard 2_52_110 permit 65000:2 0:52 0:110 ip community-list standard 2_55_104 permit 65000:2 0:55 0:104 ip community-list standard 2_65_88 permit 65000:2 0:65 0:88 route-map calculator permit 29567 match community 2_26_220 2_40_143 2_44_130 2_52_110 2_55_104 set community 0:5720 route-map calculator permit 29568 match community 2_65_88 set community 0:5720 ip community-list standard 2_44_232 permit 65000:2 0:44 0:232 ip community-list standard 2_58_176 permit 65000:2 0:58 0:176 ip community-list standard 2_88_116 permit 65000:2 0:88 0:116 route-map calculator permit 29569 match community 2_44_232 2_58_176 2_88_116 set community 0:10208 ip community-list standard 2_4_231 permit 65000:2 0:4 0:231 ip community-list standard 2_6_154 permit 65000:2 0:6 0:154 ip community-list standard 2_7_132 permit 65000:2 0:7 0:132 ip community-list standard 2_11_84 permit 65000:2 0:11 0:84 ip community-list standard 2_12_77 permit 65000:2 0:12 0:77 ip community-list standard 2_14_66 permit 65000:2 0:14 0:66 ip community-list standard 2_21_44 permit 65000:2 0:21 0:44 ip community-list standard 2_22_42 permit 65000:2 0:22 0:42 ip community-list standard 2_28_33 permit 65000:2 0:28 0:33 route-map calculator permit 29570 match community 2_4_231 2_6_154 2_7_132 2_11_84 2_12_77 set community 0:924 route-map calculator permit 29571 match community 2_14_66 2_21_44 2_22_42 2_28_33 set community 0:924 ip community-list standard 2_63_203 permit 65000:2 0:63 0:203 ip community-list standard 2_87_147 permit 65000:2 0:87 0:147 route-map calculator permit 29572 match community 2_63_203 2_87_147 set community 0:12789 ip community-list standard 2_177_246 permit 65000:2 0:177 0:246 route-map calculator permit 29573 match community 2_177_246 set community 0:43542 ip community-list standard 2_43_227 permit 65000:2 0:43 0:227 route-map calculator permit 29574 match community 2_43_227 set community 0:9761 ip community-list standard 2_180_211 permit 65000:2 0:180 0:211 route-map calculator permit 29575 match community 2_180_211 set community 0:37980 ip community-list standard 2_8_233 permit 65000:2 0:8 0:233 route-map calculator permit 29576 match community 2_8_233 set community 0:1864 ip community-list standard 2_16_246 permit 65000:2 0:16 0:246 ip community-list standard 2_24_164 permit 65000:2 0:24 0:164 ip community-list standard 2_32_123 permit 65000:2 0:32 0:123 ip community-list standard 2_41_96 permit 65000:2 0:41 0:96 ip community-list standard 2_48_82 permit 65000:2 0:48 0:82 route-map calculator permit 29577 match community 2_16_246 2_24_164 2_32_123 2_41_96 2_48_82 set community 0:3936 ip community-list standard 2_11_137 permit 65000:2 0:11 0:137 route-map calculator permit 29578 match community 2_11_137 set community 0:1507 ip community-list standard 2_63_235 permit 65000:2 0:63 0:235 ip community-list standard 2_105_141 permit 65000:2 0:105 0:141 route-map calculator permit 29579 match community 2_63_235 2_105_141 set community 0:14805 ip community-list standard 2_15_235 permit 65000:2 0:15 0:235 ip community-list standard 2_25_141 permit 65000:2 0:25 0:141 ip community-list standard 2_47_75 permit 65000:2 0:47 0:75 route-map calculator permit 29580 match community 2_15_235 2_25_141 2_47_75 set community 0:3525 ip community-list standard 2_28_252 permit 65000:2 0:28 0:252 ip community-list standard 2_36_196 permit 65000:2 0:36 0:196 ip community-list standard 2_42_168 permit 65000:2 0:42 0:168 ip community-list standard 2_48_147 permit 65000:2 0:48 0:147 ip community-list standard 2_49_144 permit 65000:2 0:49 0:144 ip community-list standard 2_56_126 permit 65000:2 0:56 0:126 ip community-list standard 2_63_112 permit 65000:2 0:63 0:112 ip community-list standard 2_72_98 permit 65000:2 0:72 0:98 ip community-list standard 2_84_84 permit 65000:2 0:84 0:84 route-map calculator permit 29581 match community 2_28_252 2_36_196 2_42_168 2_48_147 2_49_144 set community 0:7056 route-map calculator permit 29582 match community 2_56_126 2_63_112 2_72_98 2_84_84 set community 0:7056 ip community-list standard 2_91_193 permit 65000:2 0:91 0:193 route-map calculator permit 29583 match community 2_91_193 set community 0:17563 ip community-list standard 2_39_206 permit 65000:2 0:39 0:206 ip community-list standard 2_78_103 permit 65000:2 0:78 0:103 route-map calculator permit 29584 match community 2_39_206 2_78_103 set community 0:8034 ip community-list standard 2_173_248 permit 65000:2 0:173 0:248 route-map calculator permit 29585 match community 2_173_248 set community 0:42904 ip community-list standard 2_6_189 permit 65000:2 0:6 0:189 ip community-list standard 2_7_162 permit 65000:2 0:7 0:162 ip community-list standard 2_9_126 permit 65000:2 0:9 0:126 ip community-list standard 2_14_81 permit 65000:2 0:14 0:81 ip community-list standard 2_18_63 permit 65000:2 0:18 0:63 ip community-list standard 2_21_54 permit 65000:2 0:21 0:54 ip community-list standard 2_27_42 permit 65000:2 0:27 0:42 route-map calculator permit 29586 match community 2_6_189 2_7_162 2_9_126 2_14_81 2_18_63 set community 0:1134 route-map calculator permit 29587 match community 2_21_54 2_27_42 set community 0:1134 ip community-list standard 2_86_202 permit 65000:2 0:86 0:202 ip community-list standard 2_101_172 permit 65000:2 0:101 0:172 route-map calculator permit 29588 match community 2_86_202 2_101_172 set community 0:17372 ip community-list standard 2_157_163 permit 65000:2 0:157 0:163 route-map calculator permit 29589 match community 2_157_163 set community 0:25591 ip community-list standard 2_73_193 permit 65000:2 0:73 0:193 route-map calculator permit 29590 match community 2_73_193 set community 0:14089 ip community-list standard 2_192_250 permit 65000:2 0:192 0:250 ip community-list standard 2_200_240 permit 65000:2 0:200 0:240 route-map calculator permit 29591 match community 2_192_250 2_200_240 set community 0:48000 ip community-list standard 2_193_208 permit 65000:2 0:193 0:208 route-map calculator permit 29592 match community 2_193_208 set community 0:40144 ip community-list standard 2_173_192 permit 65000:2 0:173 0:192 route-map calculator permit 29593 match community 2_173_192 set community 0:33216 ip community-list standard 2_49_213 permit 65000:2 0:49 0:213 ip community-list standard 2_71_147 permit 65000:2 0:71 0:147 route-map calculator permit 29594 match community 2_49_213 2_71_147 set community 0:10437 ip community-list standard 2_142_194 permit 65000:2 0:142 0:194 route-map calculator permit 29595 match community 2_142_194 set community 0:27548 ip community-list standard 2_10_244 permit 65000:2 0:10 0:244 ip community-list standard 2_20_122 permit 65000:2 0:20 0:122 ip community-list standard 2_40_61 permit 65000:2 0:40 0:61 route-map calculator permit 29596 match community 2_10_244 2_20_122 2_40_61 set community 0:2440 ip community-list standard 2_2_202 permit 65000:2 0:2 0:202 ip community-list standard 2_4_101 permit 65000:2 0:4 0:101 ip community-list standard 1_148_256 permit 65000:1 0:148 0:256 ip community-list standard 1_149_255 permit 65000:1 0:149 0:255 ip community-list standard 1_150_254 permit 65000:1 0:150 0:254 ip community-list standard 1_151_253 permit 65000:1 0:151 0:253 ip community-list standard 1_152_252 permit 65000:1 0:152 0:252 ip community-list standard 1_153_251 permit 65000:1 0:153 0:251 ip community-list standard 1_154_250 permit 65000:1 0:154 0:250 ip community-list standard 1_155_249 permit 65000:1 0:155 0:249 ip community-list standard 1_156_248 permit 65000:1 0:156 0:248 ip community-list standard 1_157_247 permit 65000:1 0:157 0:247 ip community-list standard 1_158_246 permit 65000:1 0:158 0:246 ip community-list standard 1_159_245 permit 65000:1 0:159 0:245 ip community-list standard 1_160_244 permit 65000:1 0:160 0:244 ip community-list standard 1_161_243 permit 65000:1 0:161 0:243 ip community-list standard 1_162_242 permit 65000:1 0:162 0:242 ip community-list standard 1_163_241 permit 65000:1 0:163 0:241 ip community-list standard 1_164_240 permit 65000:1 0:164 0:240 ip community-list standard 1_165_239 permit 65000:1 0:165 0:239 ip community-list standard 1_166_238 permit 65000:1 0:166 0:238 ip community-list standard 1_167_237 permit 65000:1 0:167 0:237 ip community-list standard 1_168_236 permit 65000:1 0:168 0:236 ip community-list standard 1_169_235 permit 65000:1 0:169 0:235 ip community-list standard 1_170_234 permit 65000:1 0:170 0:234 ip community-list standard 1_171_233 permit 65000:1 0:171 0:233 ip community-list standard 1_172_232 permit 65000:1 0:172 0:232 ip community-list standard 1_173_231 permit 65000:1 0:173 0:231 ip community-list standard 1_174_230 permit 65000:1 0:174 0:230 ip community-list standard 1_175_229 permit 65000:1 0:175 0:229 ip community-list standard 1_176_228 permit 65000:1 0:176 0:228 ip community-list standard 1_177_227 permit 65000:1 0:177 0:227 ip community-list standard 1_178_226 permit 65000:1 0:178 0:226 ip community-list standard 1_179_225 permit 65000:1 0:179 0:225 ip community-list standard 1_180_224 permit 65000:1 0:180 0:224 ip community-list standard 1_181_223 permit 65000:1 0:181 0:223 ip community-list standard 1_182_222 permit 65000:1 0:182 0:222 ip community-list standard 1_183_221 permit 65000:1 0:183 0:221 ip community-list standard 1_184_220 permit 65000:1 0:184 0:220 ip community-list standard 1_185_219 permit 65000:1 0:185 0:219 ip community-list standard 1_186_218 permit 65000:1 0:186 0:218 ip community-list standard 1_187_217 permit 65000:1 0:187 0:217 ip community-list standard 1_188_216 permit 65000:1 0:188 0:216 ip community-list standard 1_189_215 permit 65000:1 0:189 0:215 ip community-list standard 1_190_214 permit 65000:1 0:190 0:214 ip community-list standard 1_191_213 permit 65000:1 0:191 0:213 ip community-list standard 1_192_212 permit 65000:1 0:192 0:212 ip community-list standard 1_193_211 permit 65000:1 0:193 0:211 ip community-list standard 1_194_210 permit 65000:1 0:194 0:210 ip community-list standard 1_195_209 permit 65000:1 0:195 0:209 ip community-list standard 1_196_208 permit 65000:1 0:196 0:208 ip community-list standard 1_197_207 permit 65000:1 0:197 0:207 ip community-list standard 1_198_206 permit 65000:1 0:198 0:206 ip community-list standard 1_199_205 permit 65000:1 0:199 0:205 ip community-list standard 1_200_204 permit 65000:1 0:200 0:204 ip community-list standard 1_201_203 permit 65000:1 0:201 0:203 ip community-list standard 1_202_202 permit 65000:1 0:202 0:202 route-map calculator permit 29597 match community 2_2_202 2_4_101 1_148_256 1_149_255 1_150_254 set community 0:404 route-map calculator permit 29598 match community 1_151_253 1_152_252 1_153_251 1_154_250 1_155_249 set community 0:404 route-map calculator permit 29599 match community 1_156_248 1_157_247 1_158_246 1_159_245 1_160_244 set community 0:404 route-map calculator permit 29600 match community 1_161_243 1_162_242 1_163_241 1_164_240 1_165_239 set community 0:404 route-map calculator permit 29601 match community 1_166_238 1_167_237 1_168_236 1_169_235 1_170_234 set community 0:404 route-map calculator permit 29602 match community 1_171_233 1_172_232 1_173_231 1_174_230 1_175_229 set community 0:404 route-map calculator permit 29603 match community 1_176_228 1_177_227 1_178_226 1_179_225 1_180_224 set community 0:404 route-map calculator permit 29604 match community 1_181_223 1_182_222 1_183_221 1_184_220 1_185_219 set community 0:404 route-map calculator permit 29605 match community 1_186_218 1_187_217 1_188_216 1_189_215 1_190_214 set community 0:404 route-map calculator permit 29606 match community 1_191_213 1_192_212 1_193_211 1_194_210 1_195_209 set community 0:404 route-map calculator permit 29607 match community 1_196_208 1_197_207 1_198_206 1_199_205 1_200_204 set community 0:404 route-map calculator permit 29608 match community 1_201_203 1_202_202 set community 0:404 ip community-list standard 2_178_201 permit 65000:2 0:178 0:201 route-map calculator permit 29609 match community 2_178_201 set community 0:35778 ip community-list standard 2_44_214 permit 65000:2 0:44 0:214 ip community-list standard 2_88_107 permit 65000:2 0:88 0:107 route-map calculator permit 29610 match community 2_44_214 2_88_107 set community 0:9416 ip community-list standard 2_35_229 permit 65000:2 0:35 0:229 route-map calculator permit 29611 match community 2_35_229 set community 0:8015 ip community-list standard 2_89_184 permit 65000:2 0:89 0:184 ip community-list standard 2_92_178 permit 65000:2 0:92 0:178 route-map calculator permit 29612 match community 2_89_184 2_92_178 set community 0:16376 ip community-list standard 2_10_142 permit 65000:2 0:10 0:142 ip community-list standard 2_20_71 permit 65000:2 0:20 0:71 route-map calculator permit 29613 match community 2_10_142 2_20_71 set community 0:1420 ip community-list standard 2_31_151 permit 65000:2 0:31 0:151 route-map calculator permit 29614 match community 2_31_151 set community 0:4681 ip community-list standard 2_29_255 permit 65000:2 0:29 0:255 ip community-list standard 2_51_145 permit 65000:2 0:51 0:145 ip community-list standard 2_85_87 permit 65000:2 0:85 0:87 route-map calculator permit 29615 match community 2_29_255 2_51_145 2_85_87 set community 0:7395 ip community-list standard 2_213_226 permit 65000:2 0:213 0:226 route-map calculator permit 29616 match community 2_213_226 set community 0:48138 ip community-list standard 2_18_137 permit 65000:2 0:18 0:137 route-map calculator permit 29617 match community 2_18_137 set community 0:2466 ip community-list standard 2_160_181 permit 65000:2 0:160 0:181 route-map calculator permit 29618 match community 2_160_181 set community 0:28960 ip community-list standard 2_41_79 permit 65000:2 0:41 0:79 route-map calculator permit 29619 match community 2_41_79 set community 0:3239 ip community-list standard 2_33_256 permit 65000:2 0:33 0:256 ip community-list standard 2_44_192 permit 65000:2 0:44 0:192 ip community-list standard 2_48_176 permit 65000:2 0:48 0:176 ip community-list standard 2_64_132 permit 65000:2 0:64 0:132 ip community-list standard 2_66_128 permit 65000:2 0:66 0:128 ip community-list standard 2_88_96 permit 65000:2 0:88 0:96 route-map calculator permit 29620 match community 2_33_256 2_44_192 2_48_176 2_64_132 2_66_128 set community 0:8448 route-map calculator permit 29621 match community 2_88_96 set community 0:8448 ip community-list standard 2_2_224 permit 65000:2 0:2 0:224 ip community-list standard 2_4_112 permit 65000:2 0:4 0:112 ip community-list standard 2_7_64 permit 65000:2 0:7 0:64 ip community-list standard 2_8_56 permit 65000:2 0:8 0:56 ip community-list standard 2_14_32 permit 65000:2 0:14 0:32 ip community-list standard 2_16_28 permit 65000:2 0:16 0:28 ip community-list standard 1_192_256 permit 65000:1 0:192 0:256 ip community-list standard 1_193_255 permit 65000:1 0:193 0:255 ip community-list standard 1_194_254 permit 65000:1 0:194 0:254 ip community-list standard 1_195_253 permit 65000:1 0:195 0:253 ip community-list standard 1_196_252 permit 65000:1 0:196 0:252 ip community-list standard 1_197_251 permit 65000:1 0:197 0:251 ip community-list standard 1_198_250 permit 65000:1 0:198 0:250 ip community-list standard 1_199_249 permit 65000:1 0:199 0:249 ip community-list standard 1_200_248 permit 65000:1 0:200 0:248 ip community-list standard 1_201_247 permit 65000:1 0:201 0:247 ip community-list standard 1_202_246 permit 65000:1 0:202 0:246 ip community-list standard 1_203_245 permit 65000:1 0:203 0:245 ip community-list standard 1_204_244 permit 65000:1 0:204 0:244 ip community-list standard 1_205_243 permit 65000:1 0:205 0:243 ip community-list standard 1_206_242 permit 65000:1 0:206 0:242 ip community-list standard 1_207_241 permit 65000:1 0:207 0:241 ip community-list standard 1_208_240 permit 65000:1 0:208 0:240 ip community-list standard 1_209_239 permit 65000:1 0:209 0:239 ip community-list standard 1_210_238 permit 65000:1 0:210 0:238 ip community-list standard 1_211_237 permit 65000:1 0:211 0:237 ip community-list standard 1_212_236 permit 65000:1 0:212 0:236 ip community-list standard 1_213_235 permit 65000:1 0:213 0:235 ip community-list standard 1_214_234 permit 65000:1 0:214 0:234 ip community-list standard 1_215_233 permit 65000:1 0:215 0:233 ip community-list standard 1_216_232 permit 65000:1 0:216 0:232 ip community-list standard 1_217_231 permit 65000:1 0:217 0:231 ip community-list standard 1_218_230 permit 65000:1 0:218 0:230 ip community-list standard 1_219_229 permit 65000:1 0:219 0:229 ip community-list standard 1_220_228 permit 65000:1 0:220 0:228 ip community-list standard 1_221_227 permit 65000:1 0:221 0:227 ip community-list standard 1_222_226 permit 65000:1 0:222 0:226 ip community-list standard 1_223_225 permit 65000:1 0:223 0:225 ip community-list standard 1_224_224 permit 65000:1 0:224 0:224 route-map calculator permit 29622 match community 2_2_224 2_4_112 2_7_64 2_8_56 2_14_32 set community 0:448 route-map calculator permit 29623 match community 2_16_28 1_192_256 1_193_255 1_194_254 1_195_253 set community 0:448 route-map calculator permit 29624 match community 1_196_252 1_197_251 1_198_250 1_199_249 1_200_248 set community 0:448 route-map calculator permit 29625 match community 1_201_247 1_202_246 1_203_245 1_204_244 1_205_243 set community 0:448 route-map calculator permit 29626 match community 1_206_242 1_207_241 1_208_240 1_209_239 1_210_238 set community 0:448 route-map calculator permit 29627 match community 1_211_237 1_212_236 1_213_235 1_214_234 1_215_233 set community 0:448 route-map calculator permit 29628 match community 1_216_232 1_217_231 1_218_230 1_219_229 1_220_228 set community 0:448 route-map calculator permit 29629 match community 1_221_227 1_222_226 1_223_225 1_224_224 set community 0:448 ip community-list standard 2_149_161 permit 65000:2 0:149 0:161 route-map calculator permit 29630 match community 2_149_161 set community 0:23989 ip community-list standard 2_8_237 permit 65000:2 0:8 0:237 ip community-list standard 2_12_158 permit 65000:2 0:12 0:158 ip community-list standard 2_24_79 permit 65000:2 0:24 0:79 route-map calculator permit 29631 match community 2_8_237 2_12_158 2_24_79 set community 0:1896 ip community-list standard 2_7_196 permit 65000:2 0:7 0:196 ip community-list standard 2_14_98 permit 65000:2 0:14 0:98 ip community-list standard 2_28_49 permit 65000:2 0:28 0:49 route-map calculator permit 29632 match community 2_7_196 2_14_98 2_28_49 set community 0:1372 ip community-list standard 2_100_157 permit 65000:2 0:100 0:157 route-map calculator permit 29633 match community 2_100_157 set community 0:15700 ip community-list standard 2_36_167 permit 65000:2 0:36 0:167 route-map calculator permit 29634 match community 2_36_167 set community 0:6012 ip community-list standard 2_157_186 permit 65000:2 0:157 0:186 route-map calculator permit 29635 match community 2_157_186 set community 0:29202 ip community-list standard 2_143_203 permit 65000:2 0:143 0:203 route-map calculator permit 29636 match community 2_143_203 set community 0:29029 ip community-list standard 2_74_152 permit 65000:2 0:74 0:152 ip community-list standard 2_76_148 permit 65000:2 0:76 0:148 route-map calculator permit 29637 match community 2_74_152 2_76_148 set community 0:11248 ip community-list standard 2_142_209 permit 65000:2 0:142 0:209 route-map calculator permit 29638 match community 2_142_209 set community 0:29678 ip community-list standard 2_98_228 permit 65000:2 0:98 0:228 ip community-list standard 2_114_196 permit 65000:2 0:114 0:196 ip community-list standard 2_133_168 permit 65000:2 0:133 0:168 ip community-list standard 2_147_152 permit 65000:2 0:147 0:152 route-map calculator permit 29639 match community 2_98_228 2_114_196 2_133_168 2_147_152 set community 0:22344 ip community-list standard 2_209_225 permit 65000:2 0:209 0:225 route-map calculator permit 29640 match community 2_209_225 set community 0:47025 ip community-list standard 2_199_234 permit 65000:2 0:199 0:234 route-map calculator permit 29641 match community 2_199_234 set community 0:46566 ip community-list standard 2_16_218 permit 65000:2 0:16 0:218 ip community-list standard 2_32_109 permit 65000:2 0:32 0:109 route-map calculator permit 29642 match community 2_16_218 2_32_109 set community 0:3488 ip community-list standard 2_65_107 permit 65000:2 0:65 0:107 route-map calculator permit 29643 match community 2_65_107 set community 0:6955 ip community-list standard 2_77_163 permit 65000:2 0:77 0:163 route-map calculator permit 29644 match community 2_77_163 set community 0:12551 ip community-list standard 2_67_241 permit 65000:2 0:67 0:241 route-map calculator permit 29645 match community 2_67_241 set community 0:16147 ip community-list standard 2_54_230 permit 65000:2 0:54 0:230 ip community-list standard 2_60_207 permit 65000:2 0:60 0:207 ip community-list standard 2_69_180 permit 65000:2 0:69 0:180 ip community-list standard 2_90_138 permit 65000:2 0:90 0:138 ip community-list standard 2_92_135 permit 65000:2 0:92 0:135 ip community-list standard 2_108_115 permit 65000:2 0:108 0:115 route-map calculator permit 29646 match community 2_54_230 2_60_207 2_69_180 2_90_138 2_92_135 set community 0:12420 route-map calculator permit 29647 match community 2_108_115 set community 0:12420 ip community-list standard 2_81_211 permit 65000:2 0:81 0:211 route-map calculator permit 29648 match community 2_81_211 set community 0:17091 ip community-list standard 2_126_181 permit 65000:2 0:126 0:181 route-map calculator permit 29649 match community 2_126_181 set community 0:22806 ip community-list standard 2_207_252 permit 65000:2 0:207 0:252 route-map calculator permit 29650 match community 2_207_252 set community 0:52164 ip community-list standard 2_38_157 permit 65000:2 0:38 0:157 route-map calculator permit 29651 match community 2_38_157 set community 0:5966 ip community-list standard 2_120_201 permit 65000:2 0:120 0:201 ip community-list standard 2_134_180 permit 65000:2 0:134 0:180 route-map calculator permit 29652 match community 2_120_201 2_134_180 set community 0:24120 ip community-list standard 2_61_121 permit 65000:2 0:61 0:121 route-map calculator permit 29653 match community 2_61_121 set community 0:7381 ip community-list standard 2_228_228 permit 65000:2 0:228 0:228 route-map calculator permit 29654 match community 2_228_228 set community 0:51984 ip community-list standard 2_84_181 permit 65000:2 0:84 0:181 route-map calculator permit 29655 match community 2_84_181 set community 0:15204 ip community-list standard 2_158_215 permit 65000:2 0:158 0:215 route-map calculator permit 29656 match community 2_158_215 set community 0:33970 ip community-list standard 2_101_229 permit 65000:2 0:101 0:229 route-map calculator permit 29657 match community 2_101_229 set community 0:23129 ip community-list standard 2_83_166 permit 65000:2 0:83 0:166 route-map calculator permit 29658 match community 2_83_166 set community 0:13778 ip community-list standard 2_172_246 permit 65000:2 0:172 0:246 route-map calculator permit 29659 match community 2_172_246 set community 0:42312 ip community-list standard 2_187_205 permit 65000:2 0:187 0:205 route-map calculator permit 29660 match community 2_187_205 set community 0:38335 ip community-list standard 2_34_201 permit 65000:2 0:34 0:201 ip community-list standard 2_51_134 permit 65000:2 0:51 0:134 ip community-list standard 2_67_102 permit 65000:2 0:67 0:102 route-map calculator permit 29661 match community 2_34_201 2_51_134 2_67_102 set community 0:6834 ip community-list standard 2_146_253 permit 65000:2 0:146 0:253 route-map calculator permit 29662 match community 2_146_253 set community 0:36938 ip community-list standard 2_73_89 permit 65000:2 0:73 0:89 route-map calculator permit 29663 match community 2_73_89 set community 0:6497 ip community-list standard 2_78_227 permit 65000:2 0:78 0:227 route-map calculator permit 29664 match community 2_78_227 set community 0:17706 ip community-list standard 2_25_203 permit 65000:2 0:25 0:203 ip community-list standard 2_29_175 permit 65000:2 0:29 0:175 ip community-list standard 2_35_145 permit 65000:2 0:35 0:145 route-map calculator permit 29665 match community 2_25_203 2_29_175 2_35_145 set community 0:5075 ip community-list standard 2_173_209 permit 65000:2 0:173 0:209 route-map calculator permit 29666 match community 2_173_209 set community 0:36157 ip community-list standard 2_89_215 permit 65000:2 0:89 0:215 route-map calculator permit 29667 match community 2_89_215 set community 0:19135 ip community-list standard 2_131_143 permit 65000:2 0:131 0:143 route-map calculator permit 29668 match community 2_131_143 set community 0:18733 ip community-list standard 2_79_193 permit 65000:2 0:79 0:193 route-map calculator permit 29669 match community 2_79_193 set community 0:15247 ip community-list standard 2_2_141 permit 65000:2 0:2 0:141 ip community-list standard 2_3_94 permit 65000:2 0:3 0:94 ip community-list standard 2_6_47 permit 65000:2 0:6 0:47 ip community-list standard 1_26_256 permit 65000:1 0:26 0:256 ip community-list standard 1_27_255 permit 65000:1 0:27 0:255 ip community-list standard 1_28_254 permit 65000:1 0:28 0:254 ip community-list standard 1_29_253 permit 65000:1 0:29 0:253 ip community-list standard 1_30_252 permit 65000:1 0:30 0:252 ip community-list standard 1_31_251 permit 65000:1 0:31 0:251 ip community-list standard 1_32_250 permit 65000:1 0:32 0:250 ip community-list standard 1_33_249 permit 65000:1 0:33 0:249 ip community-list standard 1_34_248 permit 65000:1 0:34 0:248 ip community-list standard 1_35_247 permit 65000:1 0:35 0:247 ip community-list standard 1_36_246 permit 65000:1 0:36 0:246 ip community-list standard 1_37_245 permit 65000:1 0:37 0:245 ip community-list standard 1_38_244 permit 65000:1 0:38 0:244 ip community-list standard 1_39_243 permit 65000:1 0:39 0:243 ip community-list standard 1_40_242 permit 65000:1 0:40 0:242 ip community-list standard 1_41_241 permit 65000:1 0:41 0:241 ip community-list standard 1_42_240 permit 65000:1 0:42 0:240 ip community-list standard 1_43_239 permit 65000:1 0:43 0:239 ip community-list standard 1_44_238 permit 65000:1 0:44 0:238 ip community-list standard 1_45_237 permit 65000:1 0:45 0:237 ip community-list standard 1_46_236 permit 65000:1 0:46 0:236 ip community-list standard 1_47_235 permit 65000:1 0:47 0:235 ip community-list standard 1_48_234 permit 65000:1 0:48 0:234 ip community-list standard 1_49_233 permit 65000:1 0:49 0:233 ip community-list standard 1_50_232 permit 65000:1 0:50 0:232 ip community-list standard 1_51_231 permit 65000:1 0:51 0:231 ip community-list standard 1_52_230 permit 65000:1 0:52 0:230 ip community-list standard 1_53_229 permit 65000:1 0:53 0:229 ip community-list standard 1_54_228 permit 65000:1 0:54 0:228 ip community-list standard 1_55_227 permit 65000:1 0:55 0:227 ip community-list standard 1_56_226 permit 65000:1 0:56 0:226 ip community-list standard 1_57_225 permit 65000:1 0:57 0:225 ip community-list standard 1_58_224 permit 65000:1 0:58 0:224 ip community-list standard 1_59_223 permit 65000:1 0:59 0:223 ip community-list standard 1_60_222 permit 65000:1 0:60 0:222 ip community-list standard 1_61_221 permit 65000:1 0:61 0:221 ip community-list standard 1_62_220 permit 65000:1 0:62 0:220 ip community-list standard 1_63_219 permit 65000:1 0:63 0:219 ip community-list standard 1_64_218 permit 65000:1 0:64 0:218 ip community-list standard 1_65_217 permit 65000:1 0:65 0:217 ip community-list standard 1_66_216 permit 65000:1 0:66 0:216 ip community-list standard 1_67_215 permit 65000:1 0:67 0:215 ip community-list standard 1_68_214 permit 65000:1 0:68 0:214 ip community-list standard 1_69_213 permit 65000:1 0:69 0:213 ip community-list standard 1_70_212 permit 65000:1 0:70 0:212 ip community-list standard 1_71_211 permit 65000:1 0:71 0:211 ip community-list standard 1_72_210 permit 65000:1 0:72 0:210 ip community-list standard 1_73_209 permit 65000:1 0:73 0:209 ip community-list standard 1_74_208 permit 65000:1 0:74 0:208 ip community-list standard 1_75_207 permit 65000:1 0:75 0:207 ip community-list standard 1_76_206 permit 65000:1 0:76 0:206 ip community-list standard 1_77_205 permit 65000:1 0:77 0:205 ip community-list standard 1_78_204 permit 65000:1 0:78 0:204 ip community-list standard 1_79_203 permit 65000:1 0:79 0:203 ip community-list standard 1_80_202 permit 65000:1 0:80 0:202 ip community-list standard 1_81_201 permit 65000:1 0:81 0:201 ip community-list standard 1_82_200 permit 65000:1 0:82 0:200 ip community-list standard 1_83_199 permit 65000:1 0:83 0:199 ip community-list standard 1_84_198 permit 65000:1 0:84 0:198 ip community-list standard 1_85_197 permit 65000:1 0:85 0:197 ip community-list standard 1_86_196 permit 65000:1 0:86 0:196 ip community-list standard 1_87_195 permit 65000:1 0:87 0:195 ip community-list standard 1_88_194 permit 65000:1 0:88 0:194 ip community-list standard 1_89_193 permit 65000:1 0:89 0:193 ip community-list standard 1_90_192 permit 65000:1 0:90 0:192 ip community-list standard 1_91_191 permit 65000:1 0:91 0:191 ip community-list standard 1_92_190 permit 65000:1 0:92 0:190 ip community-list standard 1_93_189 permit 65000:1 0:93 0:189 ip community-list standard 1_94_188 permit 65000:1 0:94 0:188 ip community-list standard 1_95_187 permit 65000:1 0:95 0:187 ip community-list standard 1_96_186 permit 65000:1 0:96 0:186 ip community-list standard 1_97_185 permit 65000:1 0:97 0:185 ip community-list standard 1_98_184 permit 65000:1 0:98 0:184 ip community-list standard 1_99_183 permit 65000:1 0:99 0:183 ip community-list standard 1_100_182 permit 65000:1 0:100 0:182 ip community-list standard 1_101_181 permit 65000:1 0:101 0:181 ip community-list standard 1_102_180 permit 65000:1 0:102 0:180 ip community-list standard 1_103_179 permit 65000:1 0:103 0:179 ip community-list standard 1_104_178 permit 65000:1 0:104 0:178 ip community-list standard 1_105_177 permit 65000:1 0:105 0:177 ip community-list standard 1_106_176 permit 65000:1 0:106 0:176 ip community-list standard 1_107_175 permit 65000:1 0:107 0:175 ip community-list standard 1_108_174 permit 65000:1 0:108 0:174 ip community-list standard 1_109_173 permit 65000:1 0:109 0:173 ip community-list standard 1_110_172 permit 65000:1 0:110 0:172 ip community-list standard 1_111_171 permit 65000:1 0:111 0:171 ip community-list standard 1_112_170 permit 65000:1 0:112 0:170 ip community-list standard 1_113_169 permit 65000:1 0:113 0:169 ip community-list standard 1_114_168 permit 65000:1 0:114 0:168 ip community-list standard 1_115_167 permit 65000:1 0:115 0:167 ip community-list standard 1_116_166 permit 65000:1 0:116 0:166 ip community-list standard 1_117_165 permit 65000:1 0:117 0:165 ip community-list standard 1_118_164 permit 65000:1 0:118 0:164 ip community-list standard 1_119_163 permit 65000:1 0:119 0:163 ip community-list standard 1_120_162 permit 65000:1 0:120 0:162 ip community-list standard 1_121_161 permit 65000:1 0:121 0:161 ip community-list standard 1_122_160 permit 65000:1 0:122 0:160 ip community-list standard 1_123_159 permit 65000:1 0:123 0:159 ip community-list standard 1_124_158 permit 65000:1 0:124 0:158 ip community-list standard 1_125_157 permit 65000:1 0:125 0:157 ip community-list standard 1_126_156 permit 65000:1 0:126 0:156 ip community-list standard 1_127_155 permit 65000:1 0:127 0:155 ip community-list standard 1_128_154 permit 65000:1 0:128 0:154 ip community-list standard 1_129_153 permit 65000:1 0:129 0:153 ip community-list standard 1_130_152 permit 65000:1 0:130 0:152 ip community-list standard 1_131_151 permit 65000:1 0:131 0:151 ip community-list standard 1_132_150 permit 65000:1 0:132 0:150 ip community-list standard 1_133_149 permit 65000:1 0:133 0:149 ip community-list standard 1_134_148 permit 65000:1 0:134 0:148 ip community-list standard 1_135_147 permit 65000:1 0:135 0:147 ip community-list standard 1_136_146 permit 65000:1 0:136 0:146 ip community-list standard 1_137_145 permit 65000:1 0:137 0:145 ip community-list standard 1_138_144 permit 65000:1 0:138 0:144 ip community-list standard 1_139_143 permit 65000:1 0:139 0:143 ip community-list standard 1_140_142 permit 65000:1 0:140 0:142 ip community-list standard 1_141_141 permit 65000:1 0:141 0:141 route-map calculator permit 29670 match community 2_2_141 2_3_94 2_6_47 1_26_256 1_27_255 set community 0:282 route-map calculator permit 29671 match community 1_28_254 1_29_253 1_30_252 1_31_251 1_32_250 set community 0:282 route-map calculator permit 29672 match community 1_33_249 1_34_248 1_35_247 1_36_246 1_37_245 set community 0:282 route-map calculator permit 29673 match community 1_38_244 1_39_243 1_40_242 1_41_241 1_42_240 set community 0:282 route-map calculator permit 29674 match community 1_43_239 1_44_238 1_45_237 1_46_236 1_47_235 set community 0:282 route-map calculator permit 29675 match community 1_48_234 1_49_233 1_50_232 1_51_231 1_52_230 set community 0:282 route-map calculator permit 29676 match community 1_53_229 1_54_228 1_55_227 1_56_226 1_57_225 set community 0:282 route-map calculator permit 29677 match community 1_58_224 1_59_223 1_60_222 1_61_221 1_62_220 set community 0:282 route-map calculator permit 29678 match community 1_63_219 1_64_218 1_65_217 1_66_216 1_67_215 set community 0:282 route-map calculator permit 29679 match community 1_68_214 1_69_213 1_70_212 1_71_211 1_72_210 set community 0:282 route-map calculator permit 29680 match community 1_73_209 1_74_208 1_75_207 1_76_206 1_77_205 set community 0:282 route-map calculator permit 29681 match community 1_78_204 1_79_203 1_80_202 1_81_201 1_82_200 set community 0:282 route-map calculator permit 29682 match community 1_83_199 1_84_198 1_85_197 1_86_196 1_87_195 set community 0:282 route-map calculator permit 29683 match community 1_88_194 1_89_193 1_90_192 1_91_191 1_92_190 set community 0:282 route-map calculator permit 29684 match community 1_93_189 1_94_188 1_95_187 1_96_186 1_97_185 set community 0:282 route-map calculator permit 29685 match community 1_98_184 1_99_183 1_100_182 1_101_181 1_102_180 set community 0:282 route-map calculator permit 29686 match community 1_103_179 1_104_178 1_105_177 1_106_176 1_107_175 set community 0:282 route-map calculator permit 29687 match community 1_108_174 1_109_173 1_110_172 1_111_171 1_112_170 set community 0:282 route-map calculator permit 29688 match community 1_113_169 1_114_168 1_115_167 1_116_166 1_117_165 set community 0:282 route-map calculator permit 29689 match community 1_118_164 1_119_163 1_120_162 1_121_161 1_122_160 set community 0:282 route-map calculator permit 29690 match community 1_123_159 1_124_158 1_125_157 1_126_156 1_127_155 set community 0:282 route-map calculator permit 29691 match community 1_128_154 1_129_153 1_130_152 1_131_151 1_132_150 set community 0:282 route-map calculator permit 29692 match community 1_133_149 1_134_148 1_135_147 1_136_146 1_137_145 set community 0:282 route-map calculator permit 29693 match community 1_138_144 1_139_143 1_140_142 1_141_141 set community 0:282 ip community-list standard 2_128_201 permit 65000:2 0:128 0:201 ip community-list standard 2_134_192 permit 65000:2 0:134 0:192 route-map calculator permit 29694 match community 2_128_201 2_134_192 set community 0:25728 ip community-list standard 2_73_222 permit 65000:2 0:73 0:222 ip community-list standard 2_74_219 permit 65000:2 0:74 0:219 ip community-list standard 2_111_146 permit 65000:2 0:111 0:146 route-map calculator permit 29695 match community 2_73_222 2_74_219 2_111_146 set community 0:16206 ip community-list standard 2_87_227 permit 65000:2 0:87 0:227 route-map calculator permit 29696 match community 2_87_227 set community 0:19749 ip community-list standard 2_22_191 permit 65000:2 0:22 0:191 route-map calculator permit 29697 match community 2_22_191 set community 0:4202 ip community-list standard 2_79_235 permit 65000:2 0:79 0:235 route-map calculator permit 29698 match community 2_79_235 set community 0:18565 ip community-list standard 2_111_235 permit 65000:2 0:111 0:235 ip community-list standard 2_141_185 permit 65000:2 0:141 0:185 route-map calculator permit 29699 match community 2_111_235 2_141_185 set community 0:26085 ip community-list standard 2_63_201 permit 65000:2 0:63 0:201 ip community-list standard 2_67_189 permit 65000:2 0:67 0:189 route-map calculator permit 29700 match community 2_63_201 2_67_189 set community 0:12663 ip community-list standard 2_164_233 permit 65000:2 0:164 0:233 route-map calculator permit 29701 match community 2_164_233 set community 0:38212 ip community-list standard 2_125_255 permit 65000:2 0:125 0:255 route-map calculator permit 29702 match community 2_125_255 set community 0:31875 ip community-list standard 2_136_212 permit 65000:2 0:136 0:212 route-map calculator permit 29703 match community 2_136_212 set community 0:28832 ip community-list standard 2_41_176 permit 65000:2 0:41 0:176 ip community-list standard 2_44_164 permit 65000:2 0:44 0:164 ip community-list standard 2_82_88 permit 65000:2 0:82 0:88 route-map calculator permit 29704 match community 2_41_176 2_44_164 2_82_88 set community 0:7216 ip community-list standard 2_36_188 permit 65000:2 0:36 0:188 ip community-list standard 2_47_144 permit 65000:2 0:47 0:144 ip community-list standard 2_48_141 permit 65000:2 0:48 0:141 ip community-list standard 2_72_94 permit 65000:2 0:72 0:94 route-map calculator permit 29705 match community 2_36_188 2_47_144 2_48_141 2_72_94 set community 0:6768 ip community-list standard 2_127_185 permit 65000:2 0:127 0:185 route-map calculator permit 29706 match community 2_127_185 set community 0:23495 ip community-list standard 2_66_173 permit 65000:2 0:66 0:173 route-map calculator permit 29707 match community 2_66_173 set community 0:11418 ip community-list standard 2_12_194 permit 65000:2 0:12 0:194 ip community-list standard 2_24_97 permit 65000:2 0:24 0:97 route-map calculator permit 29708 match community 2_12_194 2_24_97 set community 0:2328 ip community-list standard 2_66_151 permit 65000:2 0:66 0:151 route-map calculator permit 29709 match community 2_66_151 set community 0:9966 ip community-list standard 2_16_216 permit 65000:2 0:16 0:216 ip community-list standard 2_18_192 permit 65000:2 0:18 0:192 ip community-list standard 2_24_144 permit 65000:2 0:24 0:144 ip community-list standard 2_27_128 permit 65000:2 0:27 0:128 ip community-list standard 2_32_108 permit 65000:2 0:32 0:108 ip community-list standard 2_36_96 permit 65000:2 0:36 0:96 ip community-list standard 2_48_72 permit 65000:2 0:48 0:72 ip community-list standard 2_54_64 permit 65000:2 0:54 0:64 route-map calculator permit 29710 match community 2_16_216 2_18_192 2_24_144 2_27_128 2_32_108 set community 0:3456 route-map calculator permit 29711 match community 2_36_96 2_48_72 2_54_64 set community 0:3456 ip community-list standard 2_13_46 permit 65000:2 0:13 0:46 ip community-list standard 2_23_26 permit 65000:2 0:23 0:26 route-map calculator permit 29712 match community 2_13_46 2_23_26 set community 0:598 ip community-list standard 2_109_246 permit 65000:2 0:109 0:246 ip community-list standard 2_123_218 permit 65000:2 0:123 0:218 route-map calculator permit 29713 match community 2_109_246 2_123_218 set community 0:26814 ip community-list standard 2_96_223 permit 65000:2 0:96 0:223 route-map calculator permit 29714 match community 2_96_223 set community 0:21408 ip community-list standard 2_4_188 permit 65000:2 0:4 0:188 ip community-list standard 2_8_94 permit 65000:2 0:8 0:94 ip community-list standard 2_16_47 permit 65000:2 0:16 0:47 route-map calculator permit 29715 match community 2_4_188 2_8_94 2_16_47 set community 0:752 ip community-list standard 2_113_237 permit 65000:2 0:113 0:237 route-map calculator permit 29716 match community 2_113_237 set community 0:26781 ip community-list standard 2_16_187 permit 65000:2 0:16 0:187 ip community-list standard 2_17_176 permit 65000:2 0:17 0:176 ip community-list standard 2_22_136 permit 65000:2 0:22 0:136 ip community-list standard 2_34_88 permit 65000:2 0:34 0:88 ip community-list standard 2_44_68 permit 65000:2 0:44 0:68 route-map calculator permit 29717 match community 2_16_187 2_17_176 2_22_136 2_34_88 2_44_68 set community 0:2992 ip community-list standard 2_41_97 permit 65000:2 0:41 0:97 route-map calculator permit 29718 match community 2_41_97 set community 0:3977 ip community-list standard 2_44_255 permit 65000:2 0:44 0:255 ip community-list standard 2_51_220 permit 65000:2 0:51 0:220 ip community-list standard 2_55_204 permit 65000:2 0:55 0:204 ip community-list standard 2_60_187 permit 65000:2 0:60 0:187 ip community-list standard 2_66_170 permit 65000:2 0:66 0:170 ip community-list standard 2_68_165 permit 65000:2 0:68 0:165 ip community-list standard 2_85_132 permit 65000:2 0:85 0:132 ip community-list standard 2_102_110 permit 65000:2 0:102 0:110 route-map calculator permit 29719 match community 2_44_255 2_51_220 2_55_204 2_60_187 2_66_170 set community 0:11220 route-map calculator permit 29720 match community 2_68_165 2_85_132 2_102_110 set community 0:11220 ip community-list standard 2_146_233 permit 65000:2 0:146 0:233 route-map calculator permit 29721 match community 2_146_233 set community 0:34018 ip community-list standard 2_77_109 permit 65000:2 0:77 0:109 route-map calculator permit 29722 match community 2_77_109 set community 0:8393 ip community-list standard 2_23_197 permit 65000:2 0:23 0:197 route-map calculator permit 29723 match community 2_23_197 set community 0:4531 ip community-list standard 2_150_163 permit 65000:2 0:150 0:163 route-map calculator permit 29724 match community 2_150_163 set community 0:24450 ip community-list standard 2_114_236 permit 65000:2 0:114 0:236 ip community-list standard 2_118_228 permit 65000:2 0:118 0:228 ip community-list standard 2_152_177 permit 65000:2 0:152 0:177 route-map calculator permit 29725 match community 2_114_236 2_118_228 2_152_177 set community 0:26904 ip community-list standard 2_6_147 permit 65000:2 0:6 0:147 ip community-list standard 2_7_126 permit 65000:2 0:7 0:126 ip community-list standard 2_9_98 permit 65000:2 0:9 0:98 ip community-list standard 2_14_63 permit 65000:2 0:14 0:63 ip community-list standard 2_18_49 permit 65000:2 0:18 0:49 ip community-list standard 2_21_42 permit 65000:2 0:21 0:42 route-map calculator permit 29726 match community 2_6_147 2_7_126 2_9_98 2_14_63 2_18_49 set community 0:882 route-map calculator permit 29727 match community 2_21_42 set community 0:882 ip community-list standard 2_5_235 permit 65000:2 0:5 0:235 ip community-list standard 2_25_47 permit 65000:2 0:25 0:47 route-map calculator permit 29728 match community 2_5_235 2_25_47 set community 0:1175 ip community-list standard 2_9_190 permit 65000:2 0:9 0:190 ip community-list standard 2_10_171 permit 65000:2 0:10 0:171 ip community-list standard 2_15_114 permit 65000:2 0:15 0:114 ip community-list standard 2_18_95 permit 65000:2 0:18 0:95 ip community-list standard 2_19_90 permit 65000:2 0:19 0:90 ip community-list standard 2_30_57 permit 65000:2 0:30 0:57 ip community-list standard 2_38_45 permit 65000:2 0:38 0:45 route-map calculator permit 29729 match community 2_9_190 2_10_171 2_15_114 2_18_95 2_19_90 set community 0:1710 route-map calculator permit 29730 match community 2_30_57 2_38_45 set community 0:1710 ip community-list standard 2_2_217 permit 65000:2 0:2 0:217 ip community-list standard 2_7_62 permit 65000:2 0:7 0:62 ip community-list standard 2_14_31 permit 65000:2 0:14 0:31 ip community-list standard 1_178_256 permit 65000:1 0:178 0:256 ip community-list standard 1_179_255 permit 65000:1 0:179 0:255 ip community-list standard 1_180_254 permit 65000:1 0:180 0:254 ip community-list standard 1_181_253 permit 65000:1 0:181 0:253 ip community-list standard 1_182_252 permit 65000:1 0:182 0:252 ip community-list standard 1_183_251 permit 65000:1 0:183 0:251 ip community-list standard 1_184_250 permit 65000:1 0:184 0:250 ip community-list standard 1_185_249 permit 65000:1 0:185 0:249 ip community-list standard 1_186_248 permit 65000:1 0:186 0:248 ip community-list standard 1_187_247 permit 65000:1 0:187 0:247 ip community-list standard 1_188_246 permit 65000:1 0:188 0:246 ip community-list standard 1_189_245 permit 65000:1 0:189 0:245 ip community-list standard 1_190_244 permit 65000:1 0:190 0:244 ip community-list standard 1_191_243 permit 65000:1 0:191 0:243 ip community-list standard 1_192_242 permit 65000:1 0:192 0:242 ip community-list standard 1_193_241 permit 65000:1 0:193 0:241 ip community-list standard 1_194_240 permit 65000:1 0:194 0:240 ip community-list standard 1_195_239 permit 65000:1 0:195 0:239 ip community-list standard 1_196_238 permit 65000:1 0:196 0:238 ip community-list standard 1_197_237 permit 65000:1 0:197 0:237 ip community-list standard 1_198_236 permit 65000:1 0:198 0:236 ip community-list standard 1_199_235 permit 65000:1 0:199 0:235 ip community-list standard 1_200_234 permit 65000:1 0:200 0:234 ip community-list standard 1_201_233 permit 65000:1 0:201 0:233 ip community-list standard 1_202_232 permit 65000:1 0:202 0:232 ip community-list standard 1_203_231 permit 65000:1 0:203 0:231 ip community-list standard 1_204_230 permit 65000:1 0:204 0:230 ip community-list standard 1_205_229 permit 65000:1 0:205 0:229 ip community-list standard 1_206_228 permit 65000:1 0:206 0:228 ip community-list standard 1_207_227 permit 65000:1 0:207 0:227 ip community-list standard 1_208_226 permit 65000:1 0:208 0:226 ip community-list standard 1_209_225 permit 65000:1 0:209 0:225 ip community-list standard 1_210_224 permit 65000:1 0:210 0:224 ip community-list standard 1_211_223 permit 65000:1 0:211 0:223 ip community-list standard 1_212_222 permit 65000:1 0:212 0:222 ip community-list standard 1_213_221 permit 65000:1 0:213 0:221 ip community-list standard 1_214_220 permit 65000:1 0:214 0:220 ip community-list standard 1_215_219 permit 65000:1 0:215 0:219 ip community-list standard 1_216_218 permit 65000:1 0:216 0:218 ip community-list standard 1_217_217 permit 65000:1 0:217 0:217 route-map calculator permit 29731 match community 2_2_217 2_7_62 2_14_31 1_178_256 1_179_255 set community 0:434 route-map calculator permit 29732 match community 1_180_254 1_181_253 1_182_252 1_183_251 1_184_250 set community 0:434 route-map calculator permit 29733 match community 1_185_249 1_186_248 1_187_247 1_188_246 1_189_245 set community 0:434 route-map calculator permit 29734 match community 1_190_244 1_191_243 1_192_242 1_193_241 1_194_240 set community 0:434 route-map calculator permit 29735 match community 1_195_239 1_196_238 1_197_237 1_198_236 1_199_235 set community 0:434 route-map calculator permit 29736 match community 1_200_234 1_201_233 1_202_232 1_203_231 1_204_230 set community 0:434 route-map calculator permit 29737 match community 1_205_229 1_206_228 1_207_227 1_208_226 1_209_225 set community 0:434 route-map calculator permit 29738 match community 1_210_224 1_211_223 1_212_222 1_213_221 1_214_220 set community 0:434 route-map calculator permit 29739 match community 1_215_219 1_216_218 1_217_217 set community 0:434 ip community-list standard 2_35_253 permit 65000:2 0:35 0:253 ip community-list standard 2_55_161 permit 65000:2 0:55 0:161 ip community-list standard 2_77_115 permit 65000:2 0:77 0:115 route-map calculator permit 29740 match community 2_35_253 2_55_161 2_77_115 set community 0:8855 ip community-list standard 2_67_199 permit 65000:2 0:67 0:199 route-map calculator permit 29741 match community 2_67_199 set community 0:13333 ip community-list standard 2_212_254 permit 65000:2 0:212 0:254 route-map calculator permit 29742 match community 2_212_254 set community 0:53848 ip community-list standard 2_73_224 permit 65000:2 0:73 0:224 ip community-list standard 2_112_146 permit 65000:2 0:112 0:146 route-map calculator permit 29743 match community 2_73_224 2_112_146 set community 0:16352 ip community-list standard 2_183_255 permit 65000:2 0:183 0:255 route-map calculator permit 29744 match community 2_183_255 set community 0:46665 ip community-list standard 2_122_225 permit 65000:2 0:122 0:225 ip community-list standard 2_150_183 permit 65000:2 0:150 0:183 route-map calculator permit 29745 match community 2_122_225 2_150_183 set community 0:27450 ip community-list standard 2_86_131 permit 65000:2 0:86 0:131 route-map calculator permit 29746 match community 2_86_131 set community 0:11266 ip community-list standard 2_15_199 permit 65000:2 0:15 0:199 route-map calculator permit 29747 match community 2_15_199 set community 0:2985 ip community-list standard 2_139_239 permit 65000:2 0:139 0:239 route-map calculator permit 29748 match community 2_139_239 set community 0:33221 ip community-list standard 2_110_211 permit 65000:2 0:110 0:211 route-map calculator permit 29749 match community 2_110_211 set community 0:23210 ip community-list standard 2_60_157 permit 65000:2 0:60 0:157 route-map calculator permit 29750 match community 2_60_157 set community 0:9420 ip community-list standard 2_86_161 permit 65000:2 0:86 0:161 route-map calculator permit 29751 match community 2_86_161 set community 0:13846 ip community-list standard 2_80_239 permit 65000:2 0:80 0:239 route-map calculator permit 29752 match community 2_80_239 set community 0:19120 ip community-list standard 2_206_215 permit 65000:2 0:206 0:215 route-map calculator permit 29753 match community 2_206_215 set community 0:44290 ip community-list standard 2_10_191 permit 65000:2 0:10 0:191 route-map calculator permit 29754 match community 2_10_191 set community 0:1910 ip community-list standard 2_171_249 permit 65000:2 0:171 0:249 route-map calculator permit 29755 match community 2_171_249 set community 0:42579 ip community-list standard 2_3_194 permit 65000:2 0:3 0:194 ip community-list standard 2_6_97 permit 65000:2 0:6 0:97 route-map calculator permit 29756 match community 2_3_194 2_6_97 set community 0:582 ip community-list standard 2_132_167 permit 65000:2 0:132 0:167 route-map calculator permit 29757 match community 2_132_167 set community 0:22044 ip community-list standard 2_117_217 permit 65000:2 0:117 0:217 route-map calculator permit 29758 match community 2_117_217 set community 0:25389 ip community-list standard 2_89_218 permit 65000:2 0:89 0:218 ip community-list standard 2_109_178 permit 65000:2 0:109 0:178 route-map calculator permit 29759 match community 2_89_218 2_109_178 set community 0:19402 ip community-list standard 2_21_207 permit 65000:2 0:21 0:207 ip community-list standard 2_23_189 permit 65000:2 0:23 0:189 ip community-list standard 2_27_161 permit 65000:2 0:27 0:161 ip community-list standard 2_63_69 permit 65000:2 0:63 0:69 route-map calculator permit 29760 match community 2_21_207 2_23_189 2_27_161 2_63_69 set community 0:4347 ip community-list standard 2_95_252 permit 65000:2 0:95 0:252 ip community-list standard 2_105_228 permit 65000:2 0:105 0:228 ip community-list standard 2_114_210 permit 65000:2 0:114 0:210 ip community-list standard 2_126_190 permit 65000:2 0:126 0:190 ip community-list standard 2_133_180 permit 65000:2 0:133 0:180 ip community-list standard 2_140_171 permit 65000:2 0:140 0:171 route-map calculator permit 29761 match community 2_95_252 2_105_228 2_114_210 2_126_190 2_133_180 set community 0:23940 route-map calculator permit 29762 match community 2_140_171 set community 0:23940 ip community-list standard 2_125_256 permit 65000:2 0:125 0:256 ip community-list standard 2_128_250 permit 65000:2 0:128 0:250 ip community-list standard 2_160_200 permit 65000:2 0:160 0:200 route-map calculator permit 29763 match community 2_125_256 2_128_250 2_160_200 set community 0:32000 ip community-list standard 2_49_237 permit 65000:2 0:49 0:237 ip community-list standard 2_79_147 permit 65000:2 0:79 0:147 route-map calculator permit 29764 match community 2_49_237 2_79_147 set community 0:11613 ip community-list standard 2_31_225 permit 65000:2 0:31 0:225 ip community-list standard 2_45_155 permit 65000:2 0:45 0:155 ip community-list standard 2_75_93 permit 65000:2 0:75 0:93 route-map calculator permit 29765 match community 2_31_225 2_45_155 2_75_93 set community 0:6975 ip community-list standard 2_188_219 permit 65000:2 0:188 0:219 route-map calculator permit 29766 match community 2_188_219 set community 0:41172 ip community-list standard 2_158_176 permit 65000:2 0:158 0:176 route-map calculator permit 29767 match community 2_158_176 set community 0:27808 ip community-list standard 2_32_179 permit 65000:2 0:32 0:179 route-map calculator permit 29768 match community 2_32_179 set community 0:5728 ip community-list standard 2_59_240 permit 65000:2 0:59 0:240 ip community-list standard 2_60_236 permit 65000:2 0:60 0:236 ip community-list standard 2_80_177 permit 65000:2 0:80 0:177 ip community-list standard 2_118_120 permit 65000:2 0:118 0:120 route-map calculator permit 29769 match community 2_59_240 2_60_236 2_80_177 2_118_120 set community 0:14160 ip community-list standard 2_4_158 permit 65000:2 0:4 0:158 ip community-list standard 2_8_79 permit 65000:2 0:8 0:79 route-map calculator permit 29770 match community 2_4_158 2_8_79 set community 0:632 ip community-list standard 2_32_249 permit 65000:2 0:32 0:249 ip community-list standard 2_48_166 permit 65000:2 0:48 0:166 ip community-list standard 2_83_96 permit 65000:2 0:83 0:96 route-map calculator permit 29771 match community 2_32_249 2_48_166 2_83_96 set community 0:7968 ip community-list standard 2_22_212 permit 65000:2 0:22 0:212 ip community-list standard 2_44_106 permit 65000:2 0:44 0:106 ip community-list standard 2_53_88 permit 65000:2 0:53 0:88 route-map calculator permit 29772 match community 2_22_212 2_44_106 2_53_88 set community 0:4664 ip community-list standard 2_183_247 permit 65000:2 0:183 0:247 route-map calculator permit 29773 match community 2_183_247 set community 0:45201 ip community-list standard 2_201_232 permit 65000:2 0:201 0:232 route-map calculator permit 29774 match community 2_201_232 set community 0:46632 ip community-list standard 2_143_155 permit 65000:2 0:143 0:155 route-map calculator permit 29775 match community 2_143_155 set community 0:22165 ip community-list standard 2_18_177 permit 65000:2 0:18 0:177 ip community-list standard 2_27_118 permit 65000:2 0:27 0:118 ip community-list standard 2_54_59 permit 65000:2 0:54 0:59 route-map calculator permit 29776 match community 2_18_177 2_27_118 2_54_59 set community 0:3186 ip community-list standard 2_214_240 permit 65000:2 0:214 0:240 route-map calculator permit 29777 match community 2_214_240 set community 0:51360 ip community-list standard 2_184_212 permit 65000:2 0:184 0:212 route-map calculator permit 29778 match community 2_184_212 set community 0:39008 ip community-list standard 2_75_252 permit 65000:2 0:75 0:252 ip community-list standard 2_84_225 permit 65000:2 0:84 0:225 ip community-list standard 2_90_210 permit 65000:2 0:90 0:210 ip community-list standard 2_100_189 permit 65000:2 0:100 0:189 ip community-list standard 2_105_180 permit 65000:2 0:105 0:180 ip community-list standard 2_108_175 permit 65000:2 0:108 0:175 ip community-list standard 2_126_150 permit 65000:2 0:126 0:150 ip community-list standard 2_135_140 permit 65000:2 0:135 0:140 route-map calculator permit 29779 match community 2_75_252 2_84_225 2_90_210 2_100_189 2_105_180 set community 0:18900 route-map calculator permit 29780 match community 2_108_175 2_126_150 2_135_140 set community 0:18900 ip community-list standard 2_38_146 permit 65000:2 0:38 0:146 ip community-list standard 2_73_76 permit 65000:2 0:73 0:76 route-map calculator permit 29781 match community 2_38_146 2_73_76 set community 0:5548 ip community-list standard 2_6_151 permit 65000:2 0:6 0:151 route-map calculator permit 29782 match community 2_6_151 set community 0:906 ip community-list standard 2_160_250 permit 65000:2 0:160 0:250 ip community-list standard 2_200_200 permit 65000:2 0:200 0:200 route-map calculator permit 29783 match community 2_160_250 2_200_200 set community 0:40000 ip community-list standard 2_173_176 permit 65000:2 0:173 0:176 route-map calculator permit 29784 match community 2_173_176 set community 0:30448 ip community-list standard 2_136_213 permit 65000:2 0:136 0:213 ip community-list standard 2_142_204 permit 65000:2 0:142 0:204 route-map calculator permit 29785 match community 2_136_213 2_142_204 set community 0:28968 ip community-list standard 2_67_160 permit 65000:2 0:67 0:160 ip community-list standard 2_80_134 permit 65000:2 0:80 0:134 route-map calculator permit 29786 match community 2_67_160 2_80_134 set community 0:10720 ip community-list standard 2_43_43 permit 65000:2 0:43 0:43 route-map calculator permit 29787 match community 2_43_43 set community 0:1849 ip community-list standard 2_239_249 permit 65000:2 0:239 0:249 route-map calculator permit 29788 match community 2_239_249 set community 0:59511 ip community-list standard 2_19_145 permit 65000:2 0:19 0:145 ip community-list standard 2_29_95 permit 65000:2 0:29 0:95 route-map calculator permit 29789 match community 2_19_145 2_29_95 set community 0:2755 ip community-list standard 2_83_249 permit 65000:2 0:83 0:249 route-map calculator permit 29790 match community 2_83_249 set community 0:20667 ip community-list standard 2_97_224 permit 65000:2 0:97 0:224 ip community-list standard 2_112_194 permit 65000:2 0:112 0:194 route-map calculator permit 29791 match community 2_97_224 2_112_194 set community 0:21728 ip community-list standard 2_29_171 permit 65000:2 0:29 0:171 ip community-list standard 2_57_87 permit 65000:2 0:57 0:87 route-map calculator permit 29792 match community 2_29_171 2_57_87 set community 0:4959 ip community-list standard 2_134_158 permit 65000:2 0:134 0:158 route-map calculator permit 29793 match community 2_134_158 set community 0:21172 ip community-list standard 2_35_215 permit 65000:2 0:35 0:215 ip community-list standard 2_43_175 permit 65000:2 0:43 0:175 route-map calculator permit 29794 match community 2_35_215 2_43_175 set community 0:7525 ip community-list standard 2_149_232 permit 65000:2 0:149 0:232 route-map calculator permit 29795 match community 2_149_232 set community 0:34568 ip community-list standard 2_27_218 permit 65000:2 0:27 0:218 ip community-list standard 2_54_109 permit 65000:2 0:54 0:109 route-map calculator permit 29796 match community 2_27_218 2_54_109 set community 0:5886 ip community-list standard 2_38_149 permit 65000:2 0:38 0:149 route-map calculator permit 29797 match community 2_38_149 set community 0:5662 ip community-list standard 2_156_244 permit 65000:2 0:156 0:244 ip community-list standard 2_183_208 permit 65000:2 0:183 0:208 route-map calculator permit 29798 match community 2_156_244 2_183_208 set community 0:38064 ip community-list standard 2_202_224 permit 65000:2 0:202 0:224 route-map calculator permit 29799 match community 2_202_224 set community 0:45248 ip community-list standard 2_176_234 permit 65000:2 0:176 0:234 ip community-list standard 2_198_208 permit 65000:2 0:198 0:208 route-map calculator permit 29800 match community 2_176_234 2_198_208 set community 0:41184 ip community-list standard 2_193_248 permit 65000:2 0:193 0:248 route-map calculator permit 29801 match community 2_193_248 set community 0:47864 ip community-list standard 2_3_93 permit 65000:2 0:3 0:93 ip community-list standard 2_9_31 permit 65000:2 0:9 0:31 ip community-list standard 1_23_256 permit 65000:1 0:23 0:256 ip community-list standard 1_24_255 permit 65000:1 0:24 0:255 ip community-list standard 1_25_254 permit 65000:1 0:25 0:254 ip community-list standard 1_26_253 permit 65000:1 0:26 0:253 ip community-list standard 1_27_252 permit 65000:1 0:27 0:252 ip community-list standard 1_28_251 permit 65000:1 0:28 0:251 ip community-list standard 1_29_250 permit 65000:1 0:29 0:250 ip community-list standard 1_30_249 permit 65000:1 0:30 0:249 ip community-list standard 1_31_248 permit 65000:1 0:31 0:248 ip community-list standard 1_32_247 permit 65000:1 0:32 0:247 ip community-list standard 1_33_246 permit 65000:1 0:33 0:246 ip community-list standard 1_34_245 permit 65000:1 0:34 0:245 ip community-list standard 1_35_244 permit 65000:1 0:35 0:244 ip community-list standard 1_36_243 permit 65000:1 0:36 0:243 ip community-list standard 1_37_242 permit 65000:1 0:37 0:242 ip community-list standard 1_38_241 permit 65000:1 0:38 0:241 ip community-list standard 1_39_240 permit 65000:1 0:39 0:240 ip community-list standard 1_40_239 permit 65000:1 0:40 0:239 ip community-list standard 1_41_238 permit 65000:1 0:41 0:238 ip community-list standard 1_42_237 permit 65000:1 0:42 0:237 ip community-list standard 1_43_236 permit 65000:1 0:43 0:236 ip community-list standard 1_44_235 permit 65000:1 0:44 0:235 ip community-list standard 1_45_234 permit 65000:1 0:45 0:234 ip community-list standard 1_46_233 permit 65000:1 0:46 0:233 ip community-list standard 1_47_232 permit 65000:1 0:47 0:232 ip community-list standard 1_48_231 permit 65000:1 0:48 0:231 ip community-list standard 1_49_230 permit 65000:1 0:49 0:230 ip community-list standard 1_50_229 permit 65000:1 0:50 0:229 ip community-list standard 1_51_228 permit 65000:1 0:51 0:228 ip community-list standard 1_52_227 permit 65000:1 0:52 0:227 ip community-list standard 1_53_226 permit 65000:1 0:53 0:226 ip community-list standard 1_54_225 permit 65000:1 0:54 0:225 ip community-list standard 1_55_224 permit 65000:1 0:55 0:224 ip community-list standard 1_56_223 permit 65000:1 0:56 0:223 ip community-list standard 1_57_222 permit 65000:1 0:57 0:222 ip community-list standard 1_58_221 permit 65000:1 0:58 0:221 ip community-list standard 1_59_220 permit 65000:1 0:59 0:220 ip community-list standard 1_60_219 permit 65000:1 0:60 0:219 ip community-list standard 1_61_218 permit 65000:1 0:61 0:218 ip community-list standard 1_62_217 permit 65000:1 0:62 0:217 ip community-list standard 1_63_216 permit 65000:1 0:63 0:216 ip community-list standard 1_64_215 permit 65000:1 0:64 0:215 ip community-list standard 1_65_214 permit 65000:1 0:65 0:214 ip community-list standard 1_66_213 permit 65000:1 0:66 0:213 ip community-list standard 1_67_212 permit 65000:1 0:67 0:212 ip community-list standard 1_68_211 permit 65000:1 0:68 0:211 ip community-list standard 1_69_210 permit 65000:1 0:69 0:210 ip community-list standard 1_70_209 permit 65000:1 0:70 0:209 ip community-list standard 1_71_208 permit 65000:1 0:71 0:208 ip community-list standard 1_72_207 permit 65000:1 0:72 0:207 ip community-list standard 1_73_206 permit 65000:1 0:73 0:206 ip community-list standard 1_74_205 permit 65000:1 0:74 0:205 ip community-list standard 1_75_204 permit 65000:1 0:75 0:204 ip community-list standard 1_76_203 permit 65000:1 0:76 0:203 ip community-list standard 1_77_202 permit 65000:1 0:77 0:202 ip community-list standard 1_78_201 permit 65000:1 0:78 0:201 ip community-list standard 1_79_200 permit 65000:1 0:79 0:200 ip community-list standard 1_80_199 permit 65000:1 0:80 0:199 ip community-list standard 1_81_198 permit 65000:1 0:81 0:198 ip community-list standard 1_82_197 permit 65000:1 0:82 0:197 ip community-list standard 1_83_196 permit 65000:1 0:83 0:196 ip community-list standard 1_84_195 permit 65000:1 0:84 0:195 ip community-list standard 1_85_194 permit 65000:1 0:85 0:194 ip community-list standard 1_86_193 permit 65000:1 0:86 0:193 ip community-list standard 1_87_192 permit 65000:1 0:87 0:192 ip community-list standard 1_88_191 permit 65000:1 0:88 0:191 ip community-list standard 1_89_190 permit 65000:1 0:89 0:190 ip community-list standard 1_90_189 permit 65000:1 0:90 0:189 ip community-list standard 1_91_188 permit 65000:1 0:91 0:188 ip community-list standard 1_92_187 permit 65000:1 0:92 0:187 ip community-list standard 1_93_186 permit 65000:1 0:93 0:186 ip community-list standard 1_94_185 permit 65000:1 0:94 0:185 ip community-list standard 1_95_184 permit 65000:1 0:95 0:184 ip community-list standard 1_96_183 permit 65000:1 0:96 0:183 ip community-list standard 1_97_182 permit 65000:1 0:97 0:182 ip community-list standard 1_98_181 permit 65000:1 0:98 0:181 ip community-list standard 1_99_180 permit 65000:1 0:99 0:180 ip community-list standard 1_100_179 permit 65000:1 0:100 0:179 ip community-list standard 1_101_178 permit 65000:1 0:101 0:178 ip community-list standard 1_102_177 permit 65000:1 0:102 0:177 ip community-list standard 1_103_176 permit 65000:1 0:103 0:176 ip community-list standard 1_104_175 permit 65000:1 0:104 0:175 ip community-list standard 1_105_174 permit 65000:1 0:105 0:174 ip community-list standard 1_106_173 permit 65000:1 0:106 0:173 ip community-list standard 1_107_172 permit 65000:1 0:107 0:172 ip community-list standard 1_108_171 permit 65000:1 0:108 0:171 ip community-list standard 1_109_170 permit 65000:1 0:109 0:170 ip community-list standard 1_110_169 permit 65000:1 0:110 0:169 ip community-list standard 1_111_168 permit 65000:1 0:111 0:168 ip community-list standard 1_112_167 permit 65000:1 0:112 0:167 ip community-list standard 1_113_166 permit 65000:1 0:113 0:166 ip community-list standard 1_114_165 permit 65000:1 0:114 0:165 ip community-list standard 1_115_164 permit 65000:1 0:115 0:164 ip community-list standard 1_116_163 permit 65000:1 0:116 0:163 ip community-list standard 1_117_162 permit 65000:1 0:117 0:162 ip community-list standard 1_118_161 permit 65000:1 0:118 0:161 ip community-list standard 1_119_160 permit 65000:1 0:119 0:160 ip community-list standard 1_120_159 permit 65000:1 0:120 0:159 ip community-list standard 1_121_158 permit 65000:1 0:121 0:158 ip community-list standard 1_122_157 permit 65000:1 0:122 0:157 ip community-list standard 1_123_156 permit 65000:1 0:123 0:156 ip community-list standard 1_124_155 permit 65000:1 0:124 0:155 ip community-list standard 1_125_154 permit 65000:1 0:125 0:154 ip community-list standard 1_126_153 permit 65000:1 0:126 0:153 ip community-list standard 1_127_152 permit 65000:1 0:127 0:152 ip community-list standard 1_128_151 permit 65000:1 0:128 0:151 ip community-list standard 1_129_150 permit 65000:1 0:129 0:150 ip community-list standard 1_130_149 permit 65000:1 0:130 0:149 ip community-list standard 1_131_148 permit 65000:1 0:131 0:148 ip community-list standard 1_132_147 permit 65000:1 0:132 0:147 ip community-list standard 1_133_146 permit 65000:1 0:133 0:146 ip community-list standard 1_134_145 permit 65000:1 0:134 0:145 ip community-list standard 1_135_144 permit 65000:1 0:135 0:144 ip community-list standard 1_136_143 permit 65000:1 0:136 0:143 ip community-list standard 1_137_142 permit 65000:1 0:137 0:142 ip community-list standard 1_138_141 permit 65000:1 0:138 0:141 ip community-list standard 1_139_140 permit 65000:1 0:139 0:140 route-map calculator permit 29802 match community 2_3_93 2_9_31 1_23_256 1_24_255 1_25_254 set community 0:279 route-map calculator permit 29803 match community 1_26_253 1_27_252 1_28_251 1_29_250 1_30_249 set community 0:279 route-map calculator permit 29804 match community 1_31_248 1_32_247 1_33_246 1_34_245 1_35_244 set community 0:279 route-map calculator permit 29805 match community 1_36_243 1_37_242 1_38_241 1_39_240 1_40_239 set community 0:279 route-map calculator permit 29806 match community 1_41_238 1_42_237 1_43_236 1_44_235 1_45_234 set community 0:279 route-map calculator permit 29807 match community 1_46_233 1_47_232 1_48_231 1_49_230 1_50_229 set community 0:279 route-map calculator permit 29808 match community 1_51_228 1_52_227 1_53_226 1_54_225 1_55_224 set community 0:279 route-map calculator permit 29809 match community 1_56_223 1_57_222 1_58_221 1_59_220 1_60_219 set community 0:279 route-map calculator permit 29810 match community 1_61_218 1_62_217 1_63_216 1_64_215 1_65_214 set community 0:279 route-map calculator permit 29811 match community 1_66_213 1_67_212 1_68_211 1_69_210 1_70_209 set community 0:279 route-map calculator permit 29812 match community 1_71_208 1_72_207 1_73_206 1_74_205 1_75_204 set community 0:279 route-map calculator permit 29813 match community 1_76_203 1_77_202 1_78_201 1_79_200 1_80_199 set community 0:279 route-map calculator permit 29814 match community 1_81_198 1_82_197 1_83_196 1_84_195 1_85_194 set community 0:279 route-map calculator permit 29815 match community 1_86_193 1_87_192 1_88_191 1_89_190 1_90_189 set community 0:279 route-map calculator permit 29816 match community 1_91_188 1_92_187 1_93_186 1_94_185 1_95_184 set community 0:279 route-map calculator permit 29817 match community 1_96_183 1_97_182 1_98_181 1_99_180 1_100_179 set community 0:279 route-map calculator permit 29818 match community 1_101_178 1_102_177 1_103_176 1_104_175 1_105_174 set community 0:279 route-map calculator permit 29819 match community 1_106_173 1_107_172 1_108_171 1_109_170 1_110_169 set community 0:279 route-map calculator permit 29820 match community 1_111_168 1_112_167 1_113_166 1_114_165 1_115_164 set community 0:279 route-map calculator permit 29821 match community 1_116_163 1_117_162 1_118_161 1_119_160 1_120_159 set community 0:279 route-map calculator permit 29822 match community 1_121_158 1_122_157 1_123_156 1_124_155 1_125_154 set community 0:279 route-map calculator permit 29823 match community 1_126_153 1_127_152 1_128_151 1_129_150 1_130_149 set community 0:279 route-map calculator permit 29824 match community 1_131_148 1_132_147 1_133_146 1_134_145 1_135_144 set community 0:279 route-map calculator permit 29825 match community 1_136_143 1_137_142 1_138_141 1_139_140 set community 0:279 ip community-list standard 2_40_230 permit 65000:2 0:40 0:230 ip community-list standard 2_46_200 permit 65000:2 0:46 0:200 ip community-list standard 2_50_184 permit 65000:2 0:50 0:184 ip community-list standard 2_80_115 permit 65000:2 0:80 0:115 ip community-list standard 2_92_100 permit 65000:2 0:92 0:100 route-map calculator permit 29826 match community 2_40_230 2_46_200 2_50_184 2_80_115 2_92_100 set community 0:9200 ip community-list standard 2_8_222 permit 65000:2 0:8 0:222 ip community-list standard 2_12_148 permit 65000:2 0:12 0:148 ip community-list standard 2_16_111 permit 65000:2 0:16 0:111 ip community-list standard 2_24_74 permit 65000:2 0:24 0:74 ip community-list standard 2_37_48 permit 65000:2 0:37 0:48 route-map calculator permit 29827 match community 2_8_222 2_12_148 2_16_111 2_24_74 2_37_48 set community 0:1776 ip community-list standard 2_199_240 permit 65000:2 0:199 0:240 route-map calculator permit 29828 match community 2_199_240 set community 0:47760 ip community-list standard 2_113_129 permit 65000:2 0:113 0:129 route-map calculator permit 29829 match community 2_113_129 set community 0:14577 ip community-list standard 2_53_115 permit 65000:2 0:53 0:115 route-map calculator permit 29830 match community 2_53_115 set community 0:6095 ip community-list standard 2_22_129 permit 65000:2 0:22 0:129 ip community-list standard 2_33_86 permit 65000:2 0:33 0:86 ip community-list standard 2_43_66 permit 65000:2 0:43 0:66 route-map calculator permit 29831 match community 2_22_129 2_33_86 2_43_66 set community 0:2838 ip community-list standard 2_49_151 permit 65000:2 0:49 0:151 route-map calculator permit 29832 match community 2_49_151 set community 0:7399 ip community-list standard 2_131_216 permit 65000:2 0:131 0:216 route-map calculator permit 29833 match community 2_131_216 set community 0:28296 ip community-list standard 2_135_183 permit 65000:2 0:135 0:183 route-map calculator permit 29834 match community 2_135_183 set community 0:24705 ip community-list standard 2_11_214 permit 65000:2 0:11 0:214 ip community-list standard 2_22_107 permit 65000:2 0:22 0:107 route-map calculator permit 29835 match community 2_11_214 2_22_107 set community 0:2354 ip community-list standard 2_230_248 permit 65000:2 0:230 0:248 route-map calculator permit 29836 match community 2_230_248 set community 0:57040 ip community-list standard 2_134_139 permit 65000:2 0:134 0:139 route-map calculator permit 29837 match community 2_134_139 set community 0:18626 ip community-list standard 2_14_212 permit 65000:2 0:14 0:212 ip community-list standard 2_28_106 permit 65000:2 0:28 0:106 ip community-list standard 2_53_56 permit 65000:2 0:53 0:56 route-map calculator permit 29838 match community 2_14_212 2_28_106 2_53_56 set community 0:2968 ip community-list standard 2_8_136 permit 65000:2 0:8 0:136 ip community-list standard 2_16_68 permit 65000:2 0:16 0:68 ip community-list standard 2_17_64 permit 65000:2 0:17 0:64 ip community-list standard 2_32_34 permit 65000:2 0:32 0:34 route-map calculator permit 29839 match community 2_8_136 2_16_68 2_17_64 2_32_34 set community 0:1088 ip community-list standard 2_141_251 permit 65000:2 0:141 0:251 route-map calculator permit 29840 match community 2_141_251 set community 0:35391 ip community-list standard 2_161_235 permit 65000:2 0:161 0:235 route-map calculator permit 29841 match community 2_161_235 set community 0:37835 ip community-list standard 2_48_139 permit 65000:2 0:48 0:139 route-map calculator permit 29842 match community 2_48_139 set community 0:6672 ip community-list standard 2_59_195 permit 65000:2 0:59 0:195 ip community-list standard 2_65_177 permit 65000:2 0:65 0:177 route-map calculator permit 29843 match community 2_59_195 2_65_177 set community 0:11505 ip community-list standard 2_211_251 permit 65000:2 0:211 0:251 route-map calculator permit 29844 match community 2_211_251 set community 0:52961 ip community-list standard 2_88_206 permit 65000:2 0:88 0:206 ip community-list standard 2_103_176 permit 65000:2 0:103 0:176 route-map calculator permit 29845 match community 2_88_206 2_103_176 set community 0:18128 ip community-list standard 2_83_91 permit 65000:2 0:83 0:91 route-map calculator permit 29846 match community 2_83_91 set community 0:7553 ip community-list standard 2_120_237 permit 65000:2 0:120 0:237 ip community-list standard 2_158_180 permit 65000:2 0:158 0:180 route-map calculator permit 29847 match community 2_120_237 2_158_180 set community 0:28440 ip community-list standard 2_207_243 permit 65000:2 0:207 0:243 route-map calculator permit 29848 match community 2_207_243 set community 0:50301 ip community-list standard 1_1_33 permit 65000:1 0:1 0:33 ip community-list standard 2_1_34 permit 65000:2 0:1 0:34 ip community-list standard 2_2_17 permit 65000:2 0:2 0:17 ip community-list standard 1_2_32 permit 65000:1 0:2 0:32 ip community-list standard 1_3_31 permit 65000:1 0:3 0:31 ip community-list standard 1_4_30 permit 65000:1 0:4 0:30 ip community-list standard 1_5_29 permit 65000:1 0:5 0:29 ip community-list standard 1_6_28 permit 65000:1 0:6 0:28 ip community-list standard 1_7_27 permit 65000:1 0:7 0:27 ip community-list standard 1_8_26 permit 65000:1 0:8 0:26 ip community-list standard 1_9_25 permit 65000:1 0:9 0:25 ip community-list standard 1_10_24 permit 65000:1 0:10 0:24 ip community-list standard 1_11_23 permit 65000:1 0:11 0:23 ip community-list standard 1_12_22 permit 65000:1 0:12 0:22 ip community-list standard 1_13_21 permit 65000:1 0:13 0:21 ip community-list standard 1_14_20 permit 65000:1 0:14 0:20 ip community-list standard 1_15_19 permit 65000:1 0:15 0:19 ip community-list standard 1_16_18 permit 65000:1 0:16 0:18 ip community-list standard 1_17_17 permit 65000:1 0:17 0:17 ip community-list expanded c34 permit 1 ^65000:4_0:34_0:1$ ip community-list expanded c34 permit 2 ^65000:3_0:35_0:1$ ip community-list expanded c34 permit 3 ^65000:3_0:36_0:2$ ip community-list expanded c34 permit 4 ^65000:3_0:37_0:3$ ip community-list expanded c34 permit 5 ^65000:3_0:38_0:4$ ip community-list expanded c34 permit 6 ^65000:3_0:39_0:5$ ip community-list expanded c34 permit 7 ^65000:3_0:40_0:6$ ip community-list expanded c34 permit 8 ^65000:3_0:41_0:7$ ip community-list expanded c34 permit 9 ^65000:3_0:42_0:8$ ip community-list expanded c34 permit 10 ^65000:3_0:43_0:9$ ip community-list expanded c34 permit 11 ^65000:3_0:44_0:10$ ip community-list expanded c34 permit 12 ^65000:3_0:45_0:11$ ip community-list expanded c34 permit 13 ^65000:3_0:46_0:12$ ip community-list expanded c34 permit 14 ^65000:3_0:47_0:13$ ip community-list expanded c34 permit 15 ^65000:3_0:48_0:14$ ip community-list expanded c34 permit 16 ^65000:3_0:49_0:15$ ip community-list expanded c34 permit 17 ^65000:3_0:50_0:16$ ip community-list expanded c34 permit 18 ^65000:3_0:51_0:17$ ip community-list expanded c34 permit 19 ^65000:3_0:52_0:18$ ip community-list expanded c34 permit 20 ^65000:3_0:53_0:19$ ip community-list expanded c34 permit 21 ^65000:3_0:54_0:20$ ip community-list expanded c34 permit 22 ^65000:3_0:55_0:21$ ip community-list expanded c34 permit 23 ^65000:3_0:56_0:22$ ip community-list expanded c34 permit 24 ^65000:3_0:57_0:23$ ip community-list expanded c34 permit 25 ^65000:3_0:58_0:24$ ip community-list expanded c34 permit 26 ^65000:3_0:59_0:25$ ip community-list expanded c34 permit 27 ^65000:3_0:60_0:26$ ip community-list expanded c34 permit 28 ^65000:3_0:61_0:27$ ip community-list expanded c34 permit 29 ^65000:3_0:62_0:28$ ip community-list expanded c34 permit 30 ^65000:3_0:63_0:29$ ip community-list expanded c34 permit 31 ^65000:3_0:64_0:30$ ip community-list expanded c34 permit 32 ^65000:3_0:65_0:31$ ip community-list expanded c34 permit 33 ^65000:3_0:66_0:32$ ip community-list expanded c34 permit 34 ^65000:3_0:67_0:33$ ip community-list expanded c34 permit 35 ^65000:4_0:68_0:2$ ip community-list expanded c34 permit 36 ^65000:3_0:68_0:34$ ip community-list expanded c34 permit 37 ^65000:4_0:69_0:2$ ip community-list expanded c34 permit 38 ^65000:3_0:69_0:35$ ip community-list expanded c34 permit 39 ^65000:3_0:70_0:36$ ip community-list expanded c34 permit 40 ^65000:3_0:71_0:37$ ip community-list expanded c34 permit 41 ^65000:3_0:72_0:38$ ip community-list expanded c34 permit 42 ^65000:3_0:73_0:39$ ip community-list expanded c34 permit 43 ^65000:3_0:74_0:40$ ip community-list expanded c34 permit 44 ^65000:3_0:75_0:41$ ip community-list expanded c34 permit 45 ^65000:3_0:76_0:42$ ip community-list expanded c34 permit 46 ^65000:3_0:77_0:43$ ip community-list expanded c34 permit 47 ^65000:3_0:78_0:44$ ip community-list expanded c34 permit 48 ^65000:3_0:79_0:45$ ip community-list expanded c34 permit 49 ^65000:3_0:80_0:46$ ip community-list expanded c34 permit 50 ^65000:3_0:81_0:47$ ip community-list expanded c34 permit 51 ^65000:3_0:82_0:48$ ip community-list expanded c34 permit 52 ^65000:3_0:83_0:49$ ip community-list expanded c34 permit 53 ^65000:3_0:84_0:50$ ip community-list expanded c34 permit 54 ^65000:3_0:85_0:51$ ip community-list expanded c34 permit 55 ^65000:3_0:86_0:52$ ip community-list expanded c34 permit 56 ^65000:3_0:87_0:53$ ip community-list expanded c34 permit 57 ^65000:3_0:88_0:54$ ip community-list expanded c34 permit 58 ^65000:3_0:89_0:55$ ip community-list expanded c34 permit 59 ^65000:3_0:90_0:56$ ip community-list expanded c34 permit 60 ^65000:3_0:91_0:57$ ip community-list expanded c34 permit 61 ^65000:3_0:92_0:58$ ip community-list expanded c34 permit 62 ^65000:3_0:93_0:59$ ip community-list expanded c34 permit 63 ^65000:3_0:94_0:60$ ip community-list expanded c34 permit 64 ^65000:3_0:95_0:61$ ip community-list expanded c34 permit 65 ^65000:3_0:96_0:62$ ip community-list expanded c34 permit 66 ^65000:3_0:97_0:63$ ip community-list expanded c34 permit 67 ^65000:3_0:98_0:64$ ip community-list expanded c34 permit 68 ^65000:3_0:99_0:65$ ip community-list expanded c34 permit 69 ^65000:3_0:100_0:66$ ip community-list expanded c34 permit 70 ^65000:3_0:101_0:67$ ip community-list expanded c34 permit 71 ^65000:4_0:102_0:3$ ip community-list expanded c34 permit 72 ^65000:3_0:102_0:68$ ip community-list expanded c34 permit 73 ^65000:4_0:103_0:3$ ip community-list expanded c34 permit 74 ^65000:3_0:103_0:69$ ip community-list expanded c34 permit 75 ^65000:4_0:104_0:3$ ip community-list expanded c34 permit 76 ^65000:3_0:104_0:70$ ip community-list expanded c34 permit 77 ^65000:3_0:105_0:71$ ip community-list expanded c34 permit 78 ^65000:3_0:106_0:72$ ip community-list expanded c34 permit 79 ^65000:3_0:107_0:73$ ip community-list expanded c34 permit 80 ^65000:3_0:108_0:74$ ip community-list expanded c34 permit 81 ^65000:3_0:109_0:75$ ip community-list expanded c34 permit 82 ^65000:3_0:110_0:76$ ip community-list expanded c34 permit 83 ^65000:3_0:111_0:77$ ip community-list expanded c34 permit 84 ^65000:3_0:112_0:78$ ip community-list expanded c34 permit 85 ^65000:3_0:113_0:79$ ip community-list expanded c34 permit 86 ^65000:3_0:114_0:80$ ip community-list expanded c34 permit 87 ^65000:3_0:115_0:81$ ip community-list expanded c34 permit 88 ^65000:3_0:116_0:82$ ip community-list expanded c34 permit 89 ^65000:3_0:117_0:83$ ip community-list expanded c34 permit 90 ^65000:3_0:118_0:84$ ip community-list expanded c34 permit 91 ^65000:3_0:119_0:85$ ip community-list expanded c34 permit 92 ^65000:3_0:120_0:86$ ip community-list expanded c34 permit 93 ^65000:3_0:121_0:87$ ip community-list expanded c34 permit 94 ^65000:3_0:122_0:88$ ip community-list expanded c34 permit 95 ^65000:3_0:123_0:89$ ip community-list expanded c34 permit 96 ^65000:3_0:124_0:90$ ip community-list expanded c34 permit 97 ^65000:3_0:125_0:91$ ip community-list expanded c34 permit 98 ^65000:3_0:126_0:92$ ip community-list expanded c34 permit 99 ^65000:3_0:127_0:93$ ip community-list expanded c34 permit 100 ^65000:3_0:128_0:94$ ip community-list expanded c34 permit 101 ^65000:3_0:129_0:95$ ip community-list expanded c34 permit 102 ^65000:3_0:130_0:96$ ip community-list expanded c34 permit 103 ^65000:3_0:131_0:97$ ip community-list expanded c34 permit 104 ^65000:3_0:132_0:98$ ip community-list expanded c34 permit 105 ^65000:3_0:133_0:99$ ip community-list expanded c34 permit 106 ^65000:3_0:134_0:100$ ip community-list expanded c34 permit 107 ^65000:3_0:135_0:101$ ip community-list expanded c34 permit 108 ^65000:4_0:136_0:4$ ip community-list expanded c34 permit 109 ^65000:3_0:136_0:102$ ip community-list expanded c34 permit 110 ^65000:4_0:137_0:4$ ip community-list expanded c34 permit 111 ^65000:3_0:137_0:103$ ip community-list expanded c34 permit 112 ^65000:4_0:138_0:4$ ip community-list expanded c34 permit 113 ^65000:3_0:138_0:104$ ip community-list expanded c34 permit 114 ^65000:4_0:139_0:4$ ip community-list expanded c34 permit 115 ^65000:3_0:139_0:105$ ip community-list expanded c34 permit 116 ^65000:3_0:140_0:106$ ip community-list expanded c34 permit 117 ^65000:3_0:141_0:107$ ip community-list expanded c34 permit 118 ^65000:3_0:142_0:108$ ip community-list expanded c34 permit 119 ^65000:3_0:143_0:109$ ip community-list expanded c34 permit 120 ^65000:3_0:144_0:110$ ip community-list expanded c34 permit 121 ^65000:3_0:145_0:111$ ip community-list expanded c34 permit 122 ^65000:3_0:146_0:112$ ip community-list expanded c34 permit 123 ^65000:3_0:147_0:113$ ip community-list expanded c34 permit 124 ^65000:3_0:148_0:114$ ip community-list expanded c34 permit 125 ^65000:3_0:149_0:115$ ip community-list expanded c34 permit 126 ^65000:3_0:150_0:116$ ip community-list expanded c34 permit 127 ^65000:3_0:151_0:117$ ip community-list expanded c34 permit 128 ^65000:3_0:152_0:118$ ip community-list expanded c34 permit 129 ^65000:3_0:153_0:119$ ip community-list expanded c34 permit 130 ^65000:3_0:154_0:120$ ip community-list expanded c34 permit 131 ^65000:3_0:155_0:121$ ip community-list expanded c34 permit 132 ^65000:3_0:156_0:122$ ip community-list expanded c34 permit 133 ^65000:3_0:157_0:123$ ip community-list expanded c34 permit 134 ^65000:3_0:158_0:124$ ip community-list expanded c34 permit 135 ^65000:3_0:159_0:125$ ip community-list expanded c34 permit 136 ^65000:3_0:160_0:126$ ip community-list expanded c34 permit 137 ^65000:3_0:161_0:127$ ip community-list expanded c34 permit 138 ^65000:3_0:162_0:128$ ip community-list expanded c34 permit 139 ^65000:3_0:163_0:129$ ip community-list expanded c34 permit 140 ^65000:3_0:164_0:130$ ip community-list expanded c34 permit 141 ^65000:3_0:165_0:131$ ip community-list expanded c34 permit 142 ^65000:3_0:166_0:132$ ip community-list expanded c34 permit 143 ^65000:3_0:167_0:133$ ip community-list expanded c34 permit 144 ^65000:3_0:168_0:134$ ip community-list expanded c34 permit 145 ^65000:3_0:169_0:135$ ip community-list expanded c34 permit 146 ^65000:4_0:170_0:5$ ip community-list expanded c34 permit 147 ^65000:3_0:170_0:136$ ip community-list expanded c34 permit 148 ^65000:4_0:171_0:5$ ip community-list expanded c34 permit 149 ^65000:3_0:171_0:137$ ip community-list expanded c34 permit 150 ^65000:4_0:172_0:5$ ip community-list expanded c34 permit 151 ^65000:3_0:172_0:138$ ip community-list expanded c34 permit 152 ^65000:4_0:173_0:5$ ip community-list expanded c34 permit 153 ^65000:3_0:173_0:139$ ip community-list expanded c34 permit 154 ^65000:4_0:174_0:5$ ip community-list expanded c34 permit 155 ^65000:3_0:174_0:140$ ip community-list expanded c34 permit 156 ^65000:3_0:175_0:141$ ip community-list expanded c34 permit 157 ^65000:3_0:176_0:142$ ip community-list expanded c34 permit 158 ^65000:3_0:177_0:143$ ip community-list expanded c34 permit 159 ^65000:3_0:178_0:144$ ip community-list expanded c34 permit 160 ^65000:3_0:179_0:145$ ip community-list expanded c34 permit 161 ^65000:3_0:180_0:146$ ip community-list expanded c34 permit 162 ^65000:3_0:181_0:147$ ip community-list expanded c34 permit 163 ^65000:3_0:182_0:148$ ip community-list expanded c34 permit 164 ^65000:3_0:183_0:149$ ip community-list expanded c34 permit 165 ^65000:3_0:184_0:150$ ip community-list expanded c34 permit 166 ^65000:3_0:185_0:151$ ip community-list expanded c34 permit 167 ^65000:3_0:186_0:152$ ip community-list expanded c34 permit 168 ^65000:3_0:187_0:153$ ip community-list expanded c34 permit 169 ^65000:3_0:188_0:154$ ip community-list expanded c34 permit 170 ^65000:3_0:189_0:155$ ip community-list expanded c34 permit 171 ^65000:3_0:190_0:156$ ip community-list expanded c34 permit 172 ^65000:3_0:191_0:157$ ip community-list expanded c34 permit 173 ^65000:3_0:192_0:158$ ip community-list expanded c34 permit 174 ^65000:3_0:193_0:159$ ip community-list expanded c34 permit 175 ^65000:3_0:194_0:160$ ip community-list expanded c34 permit 176 ^65000:3_0:195_0:161$ ip community-list expanded c34 permit 177 ^65000:3_0:196_0:162$ ip community-list expanded c34 permit 178 ^65000:3_0:197_0:163$ ip community-list expanded c34 permit 179 ^65000:3_0:198_0:164$ ip community-list expanded c34 permit 180 ^65000:3_0:199_0:165$ ip community-list expanded c34 permit 181 ^65000:3_0:200_0:166$ ip community-list expanded c34 permit 182 ^65000:3_0:201_0:167$ ip community-list expanded c34 permit 183 ^65000:3_0:202_0:168$ ip community-list expanded c34 permit 184 ^65000:3_0:203_0:169$ ip community-list expanded c34 permit 185 ^65000:4_0:204_0:6$ ip community-list expanded c34 permit 186 ^65000:3_0:204_0:170$ ip community-list expanded c34 permit 187 ^65000:4_0:205_0:6$ ip community-list expanded c34 permit 188 ^65000:3_0:205_0:171$ ip community-list expanded c34 permit 189 ^65000:4_0:206_0:6$ ip community-list expanded c34 permit 190 ^65000:3_0:206_0:172$ ip community-list expanded c34 permit 191 ^65000:4_0:207_0:6$ ip community-list expanded c34 permit 192 ^65000:3_0:207_0:173$ ip community-list expanded c34 permit 193 ^65000:4_0:208_0:6$ ip community-list expanded c34 permit 194 ^65000:3_0:208_0:174$ ip community-list expanded c34 permit 195 ^65000:4_0:209_0:6$ ip community-list expanded c34 permit 196 ^65000:3_0:209_0:175$ ip community-list expanded c34 permit 197 ^65000:3_0:210_0:176$ ip community-list expanded c34 permit 198 ^65000:3_0:211_0:177$ ip community-list expanded c34 permit 199 ^65000:3_0:212_0:178$ ip community-list expanded c34 permit 200 ^65000:3_0:213_0:179$ ip community-list expanded c34 permit 201 ^65000:3_0:214_0:180$ ip community-list expanded c34 permit 202 ^65000:3_0:215_0:181$ ip community-list expanded c34 permit 203 ^65000:3_0:216_0:182$ ip community-list expanded c34 permit 204 ^65000:3_0:217_0:183$ ip community-list expanded c34 permit 205 ^65000:3_0:218_0:184$ ip community-list expanded c34 permit 206 ^65000:3_0:219_0:185$ ip community-list expanded c34 permit 207 ^65000:3_0:220_0:186$ ip community-list expanded c34 permit 208 ^65000:3_0:221_0:187$ ip community-list expanded c34 permit 209 ^65000:3_0:222_0:188$ ip community-list expanded c34 permit 210 ^65000:3_0:223_0:189$ ip community-list expanded c34 permit 211 ^65000:3_0:224_0:190$ ip community-list expanded c34 permit 212 ^65000:3_0:225_0:191$ ip community-list expanded c34 permit 213 ^65000:3_0:226_0:192$ ip community-list expanded c34 permit 214 ^65000:3_0:227_0:193$ ip community-list expanded c34 permit 215 ^65000:3_0:228_0:194$ ip community-list expanded c34 permit 216 ^65000:3_0:229_0:195$ ip community-list expanded c34 permit 217 ^65000:3_0:230_0:196$ ip community-list expanded c34 permit 218 ^65000:3_0:231_0:197$ ip community-list expanded c34 permit 219 ^65000:3_0:232_0:198$ ip community-list expanded c34 permit 220 ^65000:3_0:233_0:199$ ip community-list expanded c34 permit 221 ^65000:3_0:234_0:200$ ip community-list expanded c34 permit 222 ^65000:3_0:235_0:201$ ip community-list expanded c34 permit 223 ^65000:3_0:236_0:202$ ip community-list expanded c34 permit 224 ^65000:3_0:237_0:203$ ip community-list expanded c34 permit 225 ^65000:4_0:238_0:7$ ip community-list expanded c34 permit 226 ^65000:3_0:238_0:204$ ip community-list expanded c34 permit 227 ^65000:4_0:239_0:7$ ip community-list expanded c34 permit 228 ^65000:3_0:239_0:205$ ip community-list expanded c34 permit 229 ^65000:4_0:240_0:7$ ip community-list expanded c34 permit 230 ^65000:3_0:240_0:206$ ip community-list expanded c34 permit 231 ^65000:4_0:241_0:7$ ip community-list expanded c34 permit 232 ^65000:3_0:241_0:207$ ip community-list expanded c34 permit 233 ^65000:4_0:242_0:7$ ip community-list expanded c34 permit 234 ^65000:3_0:242_0:208$ ip community-list expanded c34 permit 235 ^65000:4_0:243_0:7$ ip community-list expanded c34 permit 236 ^65000:3_0:243_0:209$ ip community-list expanded c34 permit 237 ^65000:4_0:244_0:7$ ip community-list expanded c34 permit 238 ^65000:3_0:244_0:210$ ip community-list expanded c34 permit 239 ^65000:3_0:245_0:211$ ip community-list expanded c34 permit 240 ^65000:3_0:246_0:212$ ip community-list expanded c34 permit 241 ^65000:3_0:247_0:213$ ip community-list expanded c34 permit 242 ^65000:3_0:248_0:214$ ip community-list expanded c34 permit 243 ^65000:3_0:249_0:215$ ip community-list expanded c34 permit 244 ^65000:3_0:250_0:216$ ip community-list expanded c34 permit 245 ^65000:3_0:251_0:217$ ip community-list expanded c34 permit 246 ^65000:3_0:252_0:218$ ip community-list expanded c34 permit 247 ^65000:3_0:253_0:219$ ip community-list expanded c34 permit 248 ^65000:3_0:254_0:220$ ip community-list expanded c34 permit 249 ^65000:3_0:255_0:221$ ip community-list expanded c34 permit 250 ^65000:3_0:256_0:222$ route-map calculator permit 29849 match community 1_1_33 2_1_34 2_2_17 1_2_32 1_3_31 set community 0:34 route-map calculator permit 29850 match community 1_4_30 1_5_29 1_6_28 1_7_27 1_8_26 set community 0:34 route-map calculator permit 29851 match community 1_9_25 1_10_24 1_11_23 1_12_22 1_13_21 set community 0:34 route-map calculator permit 29852 match community 1_14_20 1_15_19 1_16_18 1_17_17 c4_34_1 set community 0:34 route-map calculator permit 29853 match community c3_35_1 c3_36_2 c3_37_3 c3_38_4 c3_39_5 set community 0:34 route-map calculator permit 29854 match community c3_40_6 c3_41_7 c3_42_8 c3_43_9 c3_44_10 set community 0:34 route-map calculator permit 29855 match community c3_45_11 c3_46_12 c3_47_13 c3_48_14 c3_49_15 set community 0:34 route-map calculator permit 29856 match community c3_50_16 c3_51_17 c3_52_18 c3_53_19 c3_54_20 set community 0:34 route-map calculator permit 29857 match community c3_55_21 c3_56_22 c3_57_23 c3_58_24 c3_59_25 set community 0:34 route-map calculator permit 29858 match community c3_60_26 c3_61_27 c3_62_28 c3_63_29 c3_64_30 set community 0:34 route-map calculator permit 29859 match community c3_65_31 c3_66_32 c3_67_33 c4_68_2 c3_68_34 set community 0:34 route-map calculator permit 29860 match community c4_69_2 c3_69_35 c3_70_36 c3_71_37 c3_72_38 set community 0:34 route-map calculator permit 29861 match community c3_73_39 c3_74_40 c3_75_41 c3_76_42 c3_77_43 set community 0:34 route-map calculator permit 29862 match community c3_78_44 c3_79_45 c3_80_46 c3_81_47 c3_82_48 set community 0:34 route-map calculator permit 29863 match community c3_83_49 c3_84_50 c3_85_51 c3_86_52 c3_87_53 set community 0:34 route-map calculator permit 29864 match community c3_88_54 c3_89_55 c3_90_56 c3_91_57 c3_92_58 set community 0:34 route-map calculator permit 29865 match community c3_93_59 c3_94_60 c3_95_61 c3_96_62 c3_97_63 set community 0:34 route-map calculator permit 29866 match community c3_98_64 c3_99_65 c3_100_66 c3_101_67 c4_102_3 set community 0:34 route-map calculator permit 29867 match community c3_102_68 c4_103_3 c3_103_69 c4_104_3 c3_104_70 set community 0:34 route-map calculator permit 29868 match community c3_105_71 c3_106_72 c3_107_73 c3_108_74 c3_109_75 set community 0:34 route-map calculator permit 29869 match community c3_110_76 c3_111_77 c3_112_78 c3_113_79 c3_114_80 set community 0:34 route-map calculator permit 29870 match community c3_115_81 c3_116_82 c3_117_83 c3_118_84 c3_119_85 set community 0:34 route-map calculator permit 29871 match community c3_120_86 c3_121_87 c3_122_88 c3_123_89 c3_124_90 set community 0:34 route-map calculator permit 29872 match community c3_125_91 c3_126_92 c3_127_93 c3_128_94 c3_129_95 set community 0:34 route-map calculator permit 29873 match community c3_130_96 c3_131_97 c3_132_98 c3_133_99 c3_134_100 set community 0:34 route-map calculator permit 29874 match community c3_135_101 c4_136_4 c3_136_102 c4_137_4 c3_137_103 set community 0:34 route-map calculator permit 29875 match community c4_138_4 c3_138_104 c4_139_4 c3_139_105 c3_140_106 set community 0:34 route-map calculator permit 29876 match community c3_141_107 c3_142_108 c3_143_109 c3_144_110 c3_145_111 set community 0:34 route-map calculator permit 29877 match community c3_146_112 c3_147_113 c3_148_114 c3_149_115 c3_150_116 set community 0:34 route-map calculator permit 29878 match community c3_151_117 c3_152_118 c3_153_119 c3_154_120 c3_155_121 set community 0:34 route-map calculator permit 29879 match community c3_156_122 c3_157_123 c3_158_124 c3_159_125 c3_160_126 set community 0:34 route-map calculator permit 29880 match community c3_161_127 c3_162_128 c3_163_129 c3_164_130 c3_165_131 set community 0:34 route-map calculator permit 29881 match community c3_166_132 c3_167_133 c3_168_134 c3_169_135 c4_170_5 set community 0:34 route-map calculator permit 29882 match community c3_170_136 c4_171_5 c3_171_137 c4_172_5 c3_172_138 set community 0:34 route-map calculator permit 29883 match community c4_173_5 c3_173_139 c4_174_5 c3_174_140 c3_175_141 set community 0:34 route-map calculator permit 29884 match community c3_176_142 c3_177_143 c3_178_144 c3_179_145 c3_180_146 set community 0:34 route-map calculator permit 29885 match community c3_181_147 c3_182_148 c3_183_149 c3_184_150 c3_185_151 set community 0:34 route-map calculator permit 29886 match community c3_186_152 c3_187_153 c3_188_154 c3_189_155 c3_190_156 set community 0:34 route-map calculator permit 29887 match community c3_191_157 c3_192_158 c3_193_159 c3_194_160 c3_195_161 set community 0:34 route-map calculator permit 29888 match community c3_196_162 c3_197_163 c3_198_164 c3_199_165 c3_200_166 set community 0:34 route-map calculator permit 29889 match community c3_201_167 c3_202_168 c3_203_169 c4_204_6 c3_204_170 set community 0:34 route-map calculator permit 29890 match community c4_205_6 c3_205_171 c4_206_6 c3_206_172 c4_207_6 set community 0:34 route-map calculator permit 29891 match community c3_207_173 c4_208_6 c3_208_174 c4_209_6 c3_209_175 set community 0:34 route-map calculator permit 29892 match community c3_210_176 c3_211_177 c3_212_178 c3_213_179 c3_214_180 set community 0:34 route-map calculator permit 29893 match community c3_215_181 c3_216_182 c3_217_183 c3_218_184 c3_219_185 set community 0:34 route-map calculator permit 29894 match community c3_220_186 c3_221_187 c3_222_188 c3_223_189 c3_224_190 set community 0:34 route-map calculator permit 29895 match community c3_225_191 c3_226_192 c3_227_193 c3_228_194 c3_229_195 set community 0:34 route-map calculator permit 29896 match community c3_230_196 c3_231_197 c3_232_198 c3_233_199 c3_234_200 set community 0:34 route-map calculator permit 29897 match community c3_235_201 c3_236_202 c3_237_203 c4_238_7 c3_238_204 set community 0:34 route-map calculator permit 29898 match community c4_239_7 c3_239_205 c4_240_7 c3_240_206 c4_241_7 set community 0:34 route-map calculator permit 29899 match community c3_241_207 c4_242_7 c3_242_208 c4_243_7 c3_243_209 set community 0:34 route-map calculator permit 29900 match community c4_244_7 c3_244_210 c3_245_211 c3_246_212 c3_247_213 set community 0:34 route-map calculator permit 29901 match community c3_248_214 c3_249_215 c3_250_216 c3_251_217 c3_252_218 set community 0:34 route-map calculator permit 29902 match community c3_253_219 c3_254_220 c3_255_221 c3_256_222 set community 0:34 ip community-list standard 2_74_226 permit 65000:2 0:74 0:226 ip community-list standard 2_113_148 permit 65000:2 0:113 0:148 route-map calculator permit 29903 match community 2_74_226 2_113_148 set community 0:16724 ip community-list standard 2_74_236 permit 65000:2 0:74 0:236 ip community-list standard 2_118_148 permit 65000:2 0:118 0:148 route-map calculator permit 29904 match community 2_74_236 2_118_148 set community 0:17464 ip community-list standard 2_17_187 permit 65000:2 0:17 0:187 route-map calculator permit 29905 match community 2_17_187 set community 0:3179 ip community-list standard 2_40_213 permit 65000:2 0:40 0:213 ip community-list standard 2_60_142 permit 65000:2 0:60 0:142 ip community-list standard 2_71_120 permit 65000:2 0:71 0:120 route-map calculator permit 29906 match community 2_40_213 2_60_142 2_71_120 set community 0:8520 ip community-list standard 2_67_233 permit 65000:2 0:67 0:233 route-map calculator permit 29907 match community 2_67_233 set community 0:15611 ip community-list standard 2_106_215 permit 65000:2 0:106 0:215 route-map calculator permit 29908 match community 2_106_215 set community 0:22790 ip community-list standard 2_200_202 permit 65000:2 0:200 0:202 route-map calculator permit 29909 match community 2_200_202 set community 0:40400 ip community-list standard 2_137_156 permit 65000:2 0:137 0:156 route-map calculator permit 29910 match community 2_137_156 set community 0:21372 ip community-list standard 2_81_169 permit 65000:2 0:81 0:169 ip community-list standard 2_117_117 permit 65000:2 0:117 0:117 route-map calculator permit 29911 match community 2_81_169 2_117_117 set community 0:13689 ip community-list standard 2_88_216 permit 65000:2 0:88 0:216 ip community-list standard 2_96_198 permit 65000:2 0:96 0:198 ip community-list standard 2_99_192 permit 65000:2 0:99 0:192 ip community-list standard 2_108_176 permit 65000:2 0:108 0:176 ip community-list standard 2_132_144 permit 65000:2 0:132 0:144 route-map calculator permit 29912 match community 2_88_216 2_96_198 2_99_192 2_108_176 2_132_144 set community 0:19008 ip community-list standard 2_28_190 permit 65000:2 0:28 0:190 ip community-list standard 2_35_152 permit 65000:2 0:35 0:152 ip community-list standard 2_38_140 permit 65000:2 0:38 0:140 ip community-list standard 2_40_133 permit 65000:2 0:40 0:133 ip community-list standard 2_56_95 permit 65000:2 0:56 0:95 ip community-list standard 2_70_76 permit 65000:2 0:70 0:76 route-map calculator permit 29913 match community 2_28_190 2_35_152 2_38_140 2_40_133 2_56_95 set community 0:5320 route-map calculator permit 29914 match community 2_70_76 set community 0:5320 ip community-list standard 2_166_166 permit 65000:2 0:166 0:166 route-map calculator permit 29915 match community 2_166_166 set community 0:27556 ip community-list standard 2_2_204 permit 65000:2 0:2 0:204 ip community-list standard 2_3_136 permit 65000:2 0:3 0:136 ip community-list standard 2_4_102 permit 65000:2 0:4 0:102 ip community-list standard 2_6_68 permit 65000:2 0:6 0:68 ip community-list standard 2_8_51 permit 65000:2 0:8 0:51 ip community-list standard 2_12_34 permit 65000:2 0:12 0:34 ip community-list standard 2_17_24 permit 65000:2 0:17 0:24 ip community-list standard 1_152_256 permit 65000:1 0:152 0:256 ip community-list standard 1_153_255 permit 65000:1 0:153 0:255 ip community-list standard 1_154_254 permit 65000:1 0:154 0:254 ip community-list standard 1_155_253 permit 65000:1 0:155 0:253 ip community-list standard 1_156_252 permit 65000:1 0:156 0:252 ip community-list standard 1_157_251 permit 65000:1 0:157 0:251 ip community-list standard 1_158_250 permit 65000:1 0:158 0:250 ip community-list standard 1_159_249 permit 65000:1 0:159 0:249 ip community-list standard 1_160_248 permit 65000:1 0:160 0:248 ip community-list standard 1_161_247 permit 65000:1 0:161 0:247 ip community-list standard 1_162_246 permit 65000:1 0:162 0:246 ip community-list standard 1_163_245 permit 65000:1 0:163 0:245 ip community-list standard 1_164_244 permit 65000:1 0:164 0:244 ip community-list standard 1_165_243 permit 65000:1 0:165 0:243 ip community-list standard 1_166_242 permit 65000:1 0:166 0:242 ip community-list standard 1_167_241 permit 65000:1 0:167 0:241 ip community-list standard 1_168_240 permit 65000:1 0:168 0:240 ip community-list standard 1_169_239 permit 65000:1 0:169 0:239 ip community-list standard 1_170_238 permit 65000:1 0:170 0:238 ip community-list standard 1_171_237 permit 65000:1 0:171 0:237 ip community-list standard 1_172_236 permit 65000:1 0:172 0:236 ip community-list standard 1_173_235 permit 65000:1 0:173 0:235 ip community-list standard 1_174_234 permit 65000:1 0:174 0:234 ip community-list standard 1_175_233 permit 65000:1 0:175 0:233 ip community-list standard 1_176_232 permit 65000:1 0:176 0:232 ip community-list standard 1_177_231 permit 65000:1 0:177 0:231 ip community-list standard 1_178_230 permit 65000:1 0:178 0:230 ip community-list standard 1_179_229 permit 65000:1 0:179 0:229 ip community-list standard 1_180_228 permit 65000:1 0:180 0:228 ip community-list standard 1_181_227 permit 65000:1 0:181 0:227 ip community-list standard 1_182_226 permit 65000:1 0:182 0:226 ip community-list standard 1_183_225 permit 65000:1 0:183 0:225 ip community-list standard 1_184_224 permit 65000:1 0:184 0:224 ip community-list standard 1_185_223 permit 65000:1 0:185 0:223 ip community-list standard 1_186_222 permit 65000:1 0:186 0:222 ip community-list standard 1_187_221 permit 65000:1 0:187 0:221 ip community-list standard 1_188_220 permit 65000:1 0:188 0:220 ip community-list standard 1_189_219 permit 65000:1 0:189 0:219 ip community-list standard 1_190_218 permit 65000:1 0:190 0:218 ip community-list standard 1_191_217 permit 65000:1 0:191 0:217 ip community-list standard 1_192_216 permit 65000:1 0:192 0:216 ip community-list standard 1_193_215 permit 65000:1 0:193 0:215 ip community-list standard 1_194_214 permit 65000:1 0:194 0:214 ip community-list standard 1_195_213 permit 65000:1 0:195 0:213 ip community-list standard 1_196_212 permit 65000:1 0:196 0:212 ip community-list standard 1_197_211 permit 65000:1 0:197 0:211 ip community-list standard 1_198_210 permit 65000:1 0:198 0:210 ip community-list standard 1_199_209 permit 65000:1 0:199 0:209 ip community-list standard 1_200_208 permit 65000:1 0:200 0:208 ip community-list standard 1_201_207 permit 65000:1 0:201 0:207 ip community-list standard 1_202_206 permit 65000:1 0:202 0:206 ip community-list standard 1_203_205 permit 65000:1 0:203 0:205 ip community-list standard 1_204_204 permit 65000:1 0:204 0:204 route-map calculator permit 29916 match community 2_2_204 2_3_136 2_4_102 2_6_68 2_8_51 set community 0:408 route-map calculator permit 29917 match community 2_12_34 2_17_24 1_152_256 1_153_255 1_154_254 set community 0:408 route-map calculator permit 29918 match community 1_155_253 1_156_252 1_157_251 1_158_250 1_159_249 set community 0:408 route-map calculator permit 29919 match community 1_160_248 1_161_247 1_162_246 1_163_245 1_164_244 set community 0:408 route-map calculator permit 29920 match community 1_165_243 1_166_242 1_167_241 1_168_240 1_169_239 set community 0:408 route-map calculator permit 29921 match community 1_170_238 1_171_237 1_172_236 1_173_235 1_174_234 set community 0:408 route-map calculator permit 29922 match community 1_175_233 1_176_232 1_177_231 1_178_230 1_179_229 set community 0:408 route-map calculator permit 29923 match community 1_180_228 1_181_227 1_182_226 1_183_225 1_184_224 set community 0:408 route-map calculator permit 29924 match community 1_185_223 1_186_222 1_187_221 1_188_220 1_189_219 set community 0:408 route-map calculator permit 29925 match community 1_190_218 1_191_217 1_192_216 1_193_215 1_194_214 set community 0:408 route-map calculator permit 29926 match community 1_195_213 1_196_212 1_197_211 1_198_210 1_199_209 set community 0:408 route-map calculator permit 29927 match community 1_200_208 1_201_207 1_202_206 1_203_205 1_204_204 set community 0:408 ip community-list standard 2_194_217 permit 65000:2 0:194 0:217 route-map calculator permit 29928 match community 2_194_217 set community 0:42098 ip community-list standard 2_203_242 permit 65000:2 0:203 0:242 route-map calculator permit 29929 match community 2_203_242 set community 0:49126 ip community-list standard 2_106_197 permit 65000:2 0:106 0:197 route-map calculator permit 29930 match community 2_106_197 set community 0:20882 ip community-list standard 2_237_242 permit 65000:2 0:237 0:242 route-map calculator permit 29931 match community 2_237_242 set community 0:57354 ip community-list standard 2_204_228 permit 65000:2 0:204 0:228 route-map calculator permit 29932 match community 2_204_228 set community 0:46512 ip community-list standard 2_23_185 permit 65000:2 0:23 0:185 ip community-list standard 2_37_115 permit 65000:2 0:37 0:115 route-map calculator permit 29933 match community 2_23_185 2_37_115 set community 0:4255 ip community-list standard 2_43_252 permit 65000:2 0:43 0:252 ip community-list standard 2_63_172 permit 65000:2 0:63 0:172 ip community-list standard 2_84_129 permit 65000:2 0:84 0:129 ip community-list standard 2_86_126 permit 65000:2 0:86 0:126 route-map calculator permit 29934 match community 2_43_252 2_63_172 2_84_129 2_86_126 set community 0:10836 ip community-list standard 2_92_247 permit 65000:2 0:92 0:247 route-map calculator permit 29935 match community 2_92_247 set community 0:22724 ip community-list standard 2_157_174 permit 65000:2 0:157 0:174 route-map calculator permit 29936 match community 2_157_174 set community 0:27318 ip community-list standard 2_94_227 permit 65000:2 0:94 0:227 route-map calculator permit 29937 match community 2_94_227 set community 0:21338 ip community-list standard 2_152_184 permit 65000:2 0:152 0:184 route-map calculator permit 29938 match community 2_152_184 set community 0:27968 ip community-list standard 2_179_250 permit 65000:2 0:179 0:250 route-map calculator permit 29939 match community 2_179_250 set community 0:44750 ip community-list standard 2_31_53 permit 65000:2 0:31 0:53 route-map calculator permit 29940 match community 2_31_53 set community 0:1643 ip community-list standard 2_132_216 permit 65000:2 0:132 0:216 ip community-list standard 2_144_198 permit 65000:2 0:144 0:198 ip community-list standard 2_162_176 permit 65000:2 0:162 0:176 route-map calculator permit 29941 match community 2_132_216 2_144_198 2_162_176 set community 0:28512 ip community-list standard 1_1_245 permit 65000:1 0:1 0:245 ip community-list standard 2_1_246 permit 65000:2 0:1 0:246 ip community-list standard 2_2_123 permit 65000:2 0:2 0:123 ip community-list standard 1_2_244 permit 65000:1 0:2 0:244 ip community-list standard 2_3_82 permit 65000:2 0:3 0:82 ip community-list standard 1_3_243 permit 65000:1 0:3 0:243 ip community-list standard 1_4_242 permit 65000:1 0:4 0:242 ip community-list standard 1_5_241 permit 65000:1 0:5 0:241 ip community-list standard 2_6_41 permit 65000:2 0:6 0:41 ip community-list standard 1_6_240 permit 65000:1 0:6 0:240 ip community-list standard 1_7_239 permit 65000:1 0:7 0:239 ip community-list standard 1_8_238 permit 65000:1 0:8 0:238 ip community-list standard 1_9_237 permit 65000:1 0:9 0:237 ip community-list standard 1_10_236 permit 65000:1 0:10 0:236 ip community-list standard 1_11_235 permit 65000:1 0:11 0:235 ip community-list standard 1_12_234 permit 65000:1 0:12 0:234 ip community-list standard 1_13_233 permit 65000:1 0:13 0:233 ip community-list standard 1_14_232 permit 65000:1 0:14 0:232 ip community-list standard 1_15_231 permit 65000:1 0:15 0:231 ip community-list standard 1_16_230 permit 65000:1 0:16 0:230 ip community-list standard 1_17_229 permit 65000:1 0:17 0:229 ip community-list standard 1_18_228 permit 65000:1 0:18 0:228 ip community-list standard 1_19_227 permit 65000:1 0:19 0:227 ip community-list standard 1_20_226 permit 65000:1 0:20 0:226 ip community-list standard 1_21_225 permit 65000:1 0:21 0:225 ip community-list standard 1_22_224 permit 65000:1 0:22 0:224 ip community-list standard 1_23_223 permit 65000:1 0:23 0:223 ip community-list standard 1_24_222 permit 65000:1 0:24 0:222 ip community-list standard 1_25_221 permit 65000:1 0:25 0:221 ip community-list standard 1_26_220 permit 65000:1 0:26 0:220 ip community-list standard 1_27_219 permit 65000:1 0:27 0:219 ip community-list standard 1_28_218 permit 65000:1 0:28 0:218 ip community-list standard 1_29_217 permit 65000:1 0:29 0:217 ip community-list standard 1_30_216 permit 65000:1 0:30 0:216 ip community-list standard 1_31_215 permit 65000:1 0:31 0:215 ip community-list standard 1_32_214 permit 65000:1 0:32 0:214 ip community-list standard 1_33_213 permit 65000:1 0:33 0:213 ip community-list standard 1_34_212 permit 65000:1 0:34 0:212 ip community-list standard 1_35_211 permit 65000:1 0:35 0:211 ip community-list standard 1_36_210 permit 65000:1 0:36 0:210 ip community-list standard 1_37_209 permit 65000:1 0:37 0:209 ip community-list standard 1_38_208 permit 65000:1 0:38 0:208 ip community-list standard 1_39_207 permit 65000:1 0:39 0:207 ip community-list standard 1_40_206 permit 65000:1 0:40 0:206 ip community-list standard 1_41_205 permit 65000:1 0:41 0:205 ip community-list standard 1_42_204 permit 65000:1 0:42 0:204 ip community-list standard 1_43_203 permit 65000:1 0:43 0:203 ip community-list standard 1_44_202 permit 65000:1 0:44 0:202 ip community-list standard 1_45_201 permit 65000:1 0:45 0:201 ip community-list standard 1_46_200 permit 65000:1 0:46 0:200 ip community-list standard 1_47_199 permit 65000:1 0:47 0:199 ip community-list standard 1_48_198 permit 65000:1 0:48 0:198 ip community-list standard 1_49_197 permit 65000:1 0:49 0:197 ip community-list standard 1_50_196 permit 65000:1 0:50 0:196 ip community-list standard 1_51_195 permit 65000:1 0:51 0:195 ip community-list standard 1_52_194 permit 65000:1 0:52 0:194 ip community-list standard 1_53_193 permit 65000:1 0:53 0:193 ip community-list standard 1_54_192 permit 65000:1 0:54 0:192 ip community-list standard 1_55_191 permit 65000:1 0:55 0:191 ip community-list standard 1_56_190 permit 65000:1 0:56 0:190 ip community-list standard 1_57_189 permit 65000:1 0:57 0:189 ip community-list standard 1_58_188 permit 65000:1 0:58 0:188 ip community-list standard 1_59_187 permit 65000:1 0:59 0:187 ip community-list standard 1_60_186 permit 65000:1 0:60 0:186 ip community-list standard 1_61_185 permit 65000:1 0:61 0:185 ip community-list standard 1_62_184 permit 65000:1 0:62 0:184 ip community-list standard 1_63_183 permit 65000:1 0:63 0:183 ip community-list standard 1_64_182 permit 65000:1 0:64 0:182 ip community-list standard 1_65_181 permit 65000:1 0:65 0:181 ip community-list standard 1_66_180 permit 65000:1 0:66 0:180 ip community-list standard 1_67_179 permit 65000:1 0:67 0:179 ip community-list standard 1_68_178 permit 65000:1 0:68 0:178 ip community-list standard 1_69_177 permit 65000:1 0:69 0:177 ip community-list standard 1_70_176 permit 65000:1 0:70 0:176 ip community-list standard 1_71_175 permit 65000:1 0:71 0:175 ip community-list standard 1_72_174 permit 65000:1 0:72 0:174 ip community-list standard 1_73_173 permit 65000:1 0:73 0:173 ip community-list standard 1_74_172 permit 65000:1 0:74 0:172 ip community-list standard 1_75_171 permit 65000:1 0:75 0:171 ip community-list standard 1_76_170 permit 65000:1 0:76 0:170 ip community-list standard 1_77_169 permit 65000:1 0:77 0:169 ip community-list standard 1_78_168 permit 65000:1 0:78 0:168 ip community-list standard 1_79_167 permit 65000:1 0:79 0:167 ip community-list standard 1_80_166 permit 65000:1 0:80 0:166 ip community-list standard 1_81_165 permit 65000:1 0:81 0:165 ip community-list standard 1_82_164 permit 65000:1 0:82 0:164 ip community-list standard 1_83_163 permit 65000:1 0:83 0:163 ip community-list standard 1_84_162 permit 65000:1 0:84 0:162 ip community-list standard 1_85_161 permit 65000:1 0:85 0:161 ip community-list standard 1_86_160 permit 65000:1 0:86 0:160 ip community-list standard 1_87_159 permit 65000:1 0:87 0:159 ip community-list standard 1_88_158 permit 65000:1 0:88 0:158 ip community-list standard 1_89_157 permit 65000:1 0:89 0:157 ip community-list standard 1_90_156 permit 65000:1 0:90 0:156 ip community-list standard 1_91_155 permit 65000:1 0:91 0:155 ip community-list standard 1_92_154 permit 65000:1 0:92 0:154 ip community-list standard 1_93_153 permit 65000:1 0:93 0:153 ip community-list standard 1_94_152 permit 65000:1 0:94 0:152 ip community-list standard 1_95_151 permit 65000:1 0:95 0:151 ip community-list standard 1_96_150 permit 65000:1 0:96 0:150 ip community-list standard 1_97_149 permit 65000:1 0:97 0:149 ip community-list standard 1_98_148 permit 65000:1 0:98 0:148 ip community-list standard 1_99_147 permit 65000:1 0:99 0:147 ip community-list standard 1_100_146 permit 65000:1 0:100 0:146 ip community-list standard 1_101_145 permit 65000:1 0:101 0:145 ip community-list standard 1_102_144 permit 65000:1 0:102 0:144 ip community-list standard 1_103_143 permit 65000:1 0:103 0:143 ip community-list standard 1_104_142 permit 65000:1 0:104 0:142 ip community-list standard 1_105_141 permit 65000:1 0:105 0:141 ip community-list standard 1_106_140 permit 65000:1 0:106 0:140 ip community-list standard 1_107_139 permit 65000:1 0:107 0:139 ip community-list standard 1_108_138 permit 65000:1 0:108 0:138 ip community-list standard 1_109_137 permit 65000:1 0:109 0:137 ip community-list standard 1_110_136 permit 65000:1 0:110 0:136 ip community-list standard 1_111_135 permit 65000:1 0:111 0:135 ip community-list standard 1_112_134 permit 65000:1 0:112 0:134 ip community-list standard 1_113_133 permit 65000:1 0:113 0:133 ip community-list standard 1_114_132 permit 65000:1 0:114 0:132 ip community-list standard 1_115_131 permit 65000:1 0:115 0:131 ip community-list standard 1_116_130 permit 65000:1 0:116 0:130 ip community-list standard 1_117_129 permit 65000:1 0:117 0:129 ip community-list standard 1_118_128 permit 65000:1 0:118 0:128 ip community-list standard 1_119_127 permit 65000:1 0:119 0:127 ip community-list standard 1_120_126 permit 65000:1 0:120 0:126 ip community-list standard 1_121_125 permit 65000:1 0:121 0:125 ip community-list standard 1_122_124 permit 65000:1 0:122 0:124 ip community-list standard 1_123_123 permit 65000:1 0:123 0:123 ip community-list expanded c246 permit 1 ^65000:4_0:246_0:1$ ip community-list expanded c246 permit 2 ^65000:3_0:247_0:1$ ip community-list expanded c246 permit 3 ^65000:3_0:248_0:2$ ip community-list expanded c246 permit 4 ^65000:3_0:249_0:3$ ip community-list expanded c246 permit 5 ^65000:3_0:250_0:4$ ip community-list expanded c246 permit 6 ^65000:3_0:251_0:5$ ip community-list expanded c246 permit 7 ^65000:3_0:252_0:6$ ip community-list expanded c246 permit 8 ^65000:3_0:253_0:7$ ip community-list expanded c246 permit 9 ^65000:3_0:254_0:8$ ip community-list expanded c246 permit 10 ^65000:3_0:255_0:9$ ip community-list expanded c246 permit 11 ^65000:3_0:256_0:10$ route-map calculator permit 29942 match community 1_1_245 2_1_246 2_2_123 1_2_244 2_3_82 set community 0:246 route-map calculator permit 29943 match community 1_3_243 1_4_242 1_5_241 2_6_41 1_6_240 set community 0:246 route-map calculator permit 29944 match community 1_7_239 1_8_238 1_9_237 1_10_236 1_11_235 set community 0:246 route-map calculator permit 29945 match community 1_12_234 1_13_233 1_14_232 1_15_231 1_16_230 set community 0:246 route-map calculator permit 29946 match community 1_17_229 1_18_228 1_19_227 1_20_226 1_21_225 set community 0:246 route-map calculator permit 29947 match community 1_22_224 1_23_223 1_24_222 1_25_221 1_26_220 set community 0:246 route-map calculator permit 29948 match community 1_27_219 1_28_218 1_29_217 1_30_216 1_31_215 set community 0:246 route-map calculator permit 29949 match community 1_32_214 1_33_213 1_34_212 1_35_211 1_36_210 set community 0:246 route-map calculator permit 29950 match community 1_37_209 1_38_208 1_39_207 1_40_206 1_41_205 set community 0:246 route-map calculator permit 29951 match community 1_42_204 1_43_203 1_44_202 1_45_201 1_46_200 set community 0:246 route-map calculator permit 29952 match community 1_47_199 1_48_198 1_49_197 1_50_196 1_51_195 set community 0:246 route-map calculator permit 29953 match community 1_52_194 1_53_193 1_54_192 1_55_191 1_56_190 set community 0:246 route-map calculator permit 29954 match community 1_57_189 1_58_188 1_59_187 1_60_186 1_61_185 set community 0:246 route-map calculator permit 29955 match community 1_62_184 1_63_183 1_64_182 1_65_181 1_66_180 set community 0:246 route-map calculator permit 29956 match community 1_67_179 1_68_178 1_69_177 1_70_176 1_71_175 set community 0:246 route-map calculator permit 29957 match community 1_72_174 1_73_173 1_74_172 1_75_171 1_76_170 set community 0:246 route-map calculator permit 29958 match community 1_77_169 1_78_168 1_79_167 1_80_166 1_81_165 set community 0:246 route-map calculator permit 29959 match community 1_82_164 1_83_163 1_84_162 1_85_161 1_86_160 set community 0:246 route-map calculator permit 29960 match community 1_87_159 1_88_158 1_89_157 1_90_156 1_91_155 set community 0:246 route-map calculator permit 29961 match community 1_92_154 1_93_153 1_94_152 1_95_151 1_96_150 set community 0:246 route-map calculator permit 29962 match community 1_97_149 1_98_148 1_99_147 1_100_146 1_101_145 set community 0:246 route-map calculator permit 29963 match community 1_102_144 1_103_143 1_104_142 1_105_141 1_106_140 set community 0:246 route-map calculator permit 29964 match community 1_107_139 1_108_138 1_109_137 1_110_136 1_111_135 set community 0:246 route-map calculator permit 29965 match community 1_112_134 1_113_133 1_114_132 1_115_131 1_116_130 set community 0:246 route-map calculator permit 29966 match community 1_117_129 1_118_128 1_119_127 1_120_126 1_121_125 set community 0:246 route-map calculator permit 29967 match community 1_122_124 1_123_123 c4_246_1 c3_247_1 c3_248_2 set community 0:246 route-map calculator permit 29968 match community c3_249_3 c3_250_4 c3_251_5 c3_252_6 c3_253_7 set community 0:246 route-map calculator permit 29969 match community c3_254_8 c3_255_9 c3_256_10 set community 0:246 ip community-list standard 2_206_223 permit 65000:2 0:206 0:223 route-map calculator permit 29970 match community 2_206_223 set community 0:45938 ip community-list standard 2_230_252 permit 65000:2 0:230 0:252 route-map calculator permit 29971 match community 2_230_252 set community 0:57960 ip community-list standard 2_135_255 permit 65000:2 0:135 0:255 ip community-list standard 2_153_225 permit 65000:2 0:153 0:225 route-map calculator permit 29972 match community 2_135_255 2_153_225 set community 0:34425 ip community-list standard 2_41_121 permit 65000:2 0:41 0:121 route-map calculator permit 29973 match community 2_41_121 set community 0:4961 ip community-list standard 2_158_196 permit 65000:2 0:158 0:196 route-map calculator permit 29974 match community 2_158_196 set community 0:30968 ip community-list standard 2_46_251 permit 65000:2 0:46 0:251 route-map calculator permit 29975 match community 2_46_251 set community 0:11546 ip community-list standard 2_53_220 permit 65000:2 0:53 0:220 ip community-list standard 2_55_212 permit 65000:2 0:55 0:212 ip community-list standard 2_106_110 permit 65000:2 0:106 0:110 route-map calculator permit 29976 match community 2_53_220 2_55_212 2_106_110 set community 0:11660 ip community-list standard 2_93_191 permit 65000:2 0:93 0:191 route-map calculator permit 29977 match community 2_93_191 set community 0:17763 ip community-list standard 2_157_219 permit 65000:2 0:157 0:219 route-map calculator permit 29978 match community 2_157_219 set community 0:34383 ip community-list standard 2_83_107 permit 65000:2 0:83 0:107 route-map calculator permit 29979 match community 2_83_107 set community 0:8881 ip community-list standard 2_219_249 permit 65000:2 0:219 0:249 route-map calculator permit 29980 match community 2_219_249 set community 0:54531 ip community-list standard 2_13_111 permit 65000:2 0:13 0:111 ip community-list standard 2_37_39 permit 65000:2 0:37 0:39 route-map calculator permit 29981 match community 2_13_111 2_37_39 set community 0:1443 ip community-list standard 2_58_256 permit 65000:2 0:58 0:256 ip community-list standard 2_64_232 permit 65000:2 0:64 0:232 ip community-list standard 2_116_128 permit 65000:2 0:116 0:128 route-map calculator permit 29982 match community 2_58_256 2_64_232 2_116_128 set community 0:14848 ip community-list standard 2_5_157 permit 65000:2 0:5 0:157 route-map calculator permit 29983 match community 2_5_157 set community 0:785 ip community-list standard 2_23_234 permit 65000:2 0:23 0:234 ip community-list standard 2_26_207 permit 65000:2 0:26 0:207 ip community-list standard 2_39_138 permit 65000:2 0:39 0:138 ip community-list standard 2_46_117 permit 65000:2 0:46 0:117 ip community-list standard 2_69_78 permit 65000:2 0:69 0:78 route-map calculator permit 29984 match community 2_23_234 2_26_207 2_39_138 2_46_117 2_69_78 set community 0:5382 ip community-list standard 2_172_235 permit 65000:2 0:172 0:235 ip community-list standard 2_188_215 permit 65000:2 0:188 0:215 route-map calculator permit 29985 match community 2_172_235 2_188_215 set community 0:40420 ip community-list standard 2_158_194 permit 65000:2 0:158 0:194 route-map calculator permit 29986 match community 2_158_194 set community 0:30652 ip community-list standard 2_184_201 permit 65000:2 0:184 0:201 route-map calculator permit 29987 match community 2_184_201 set community 0:36984 ip community-list standard 2_11_123 permit 65000:2 0:11 0:123 ip community-list standard 2_33_41 permit 65000:2 0:33 0:41 route-map calculator permit 29988 match community 2_11_123 2_33_41 set community 0:1353 ip community-list standard 2_173_173 permit 65000:2 0:173 0:173 route-map calculator permit 29989 match community 2_173_173 set community 0:29929 ip community-list standard 2_146_178 permit 65000:2 0:146 0:178 route-map calculator permit 29990 match community 2_146_178 set community 0:25988 ip community-list standard 2_76_252 permit 65000:2 0:76 0:252 ip community-list standard 2_84_228 permit 65000:2 0:84 0:228 ip community-list standard 2_112_171 permit 65000:2 0:112 0:171 ip community-list standard 2_114_168 permit 65000:2 0:114 0:168 ip community-list standard 2_126_152 permit 65000:2 0:126 0:152 ip community-list standard 2_133_144 permit 65000:2 0:133 0:144 route-map calculator permit 29991 match community 2_76_252 2_84_228 2_112_171 2_114_168 2_126_152 set community 0:19152 route-map calculator permit 29992 match community 2_133_144 set community 0:19152 ip community-list standard 2_86_177 permit 65000:2 0:86 0:177 ip community-list standard 2_118_129 permit 65000:2 0:118 0:129 route-map calculator permit 29993 match community 2_86_177 2_118_129 set community 0:15222 ip community-list standard 2_27_206 permit 65000:2 0:27 0:206 ip community-list standard 2_54_103 permit 65000:2 0:54 0:103 route-map calculator permit 29994 match community 2_27_206 2_54_103 set community 0:5562 ip community-list standard 2_76_255 permit 65000:2 0:76 0:255 ip community-list standard 2_85_228 permit 65000:2 0:85 0:228 ip community-list standard 2_95_204 permit 65000:2 0:95 0:204 ip community-list standard 2_102_190 permit 65000:2 0:102 0:190 ip community-list standard 2_114_170 permit 65000:2 0:114 0:170 route-map calculator permit 29995 match community 2_76_255 2_85_228 2_95_204 2_102_190 2_114_170 set community 0:19380 ip community-list standard 2_188_243 permit 65000:2 0:188 0:243 route-map calculator permit 29996 match community 2_188_243 set community 0:45684 ip community-list standard 2_220_252 permit 65000:2 0:220 0:252 ip community-list standard 2_231_240 permit 65000:2 0:231 0:240 route-map calculator permit 29997 match community 2_220_252 2_231_240 set community 0:55440 ip community-list standard 2_35_209 permit 65000:2 0:35 0:209 ip community-list standard 2_55_133 permit 65000:2 0:55 0:133 ip community-list standard 2_77_95 permit 65000:2 0:77 0:95 route-map calculator permit 29998 match community 2_35_209 2_55_133 2_77_95 set community 0:7315 ip community-list standard 2_18_206 permit 65000:2 0:18 0:206 ip community-list standard 2_36_103 permit 65000:2 0:36 0:103 route-map calculator permit 29999 match community 2_18_206 2_36_103 set community 0:3708 ip community-list standard 2_13_181 permit 65000:2 0:13 0:181 route-map calculator permit 30000 match community 2_13_181 set community 0:2353 ip community-list standard 2_87_255 permit 65000:2 0:87 0:255 ip community-list standard 2_145_153 permit 65000:2 0:145 0:153 route-map calculator permit 30001 match community 2_87_255 2_145_153 set community 0:22185 ip community-list standard 2_86_173 permit 65000:2 0:86 0:173 route-map calculator permit 30002 match community 2_86_173 set community 0:14878 ip community-list standard 2_62_206 permit 65000:2 0:62 0:206 ip community-list standard 2_103_124 permit 65000:2 0:103 0:124 route-map calculator permit 30003 match community 2_62_206 2_103_124 set community 0:12772 ip community-list standard 2_205_209 permit 65000:2 0:205 0:209 route-map calculator permit 30004 match community 2_205_209 set community 0:42845 ip community-list standard 2_179_196 permit 65000:2 0:179 0:196 route-map calculator permit 30005 match community 2_179_196 set community 0:35084 ip community-list standard 2_139_167 permit 65000:2 0:139 0:167 route-map calculator permit 30006 match community 2_139_167 set community 0:23213 ip community-list standard 2_106_238 permit 65000:2 0:106 0:238 ip community-list standard 2_119_212 permit 65000:2 0:119 0:212 route-map calculator permit 30007 match community 2_106_238 2_119_212 set community 0:25228 ip community-list standard 2_157_240 permit 65000:2 0:157 0:240 route-map calculator permit 30008 match community 2_157_240 set community 0:37680 ip community-list standard 2_76_224 permit 65000:2 0:76 0:224 ip community-list standard 2_112_152 permit 65000:2 0:112 0:152 ip community-list standard 2_128_133 permit 65000:2 0:128 0:133 route-map calculator permit 30009 match community 2_76_224 2_112_152 2_128_133 set community 0:17024 ip community-list standard 2_33_113 permit 65000:2 0:33 0:113 route-map calculator permit 30010 match community 2_33_113 set community 0:3729 ip community-list standard 2_4_209 permit 65000:2 0:4 0:209 ip community-list standard 2_11_76 permit 65000:2 0:11 0:76 ip community-list standard 2_19_44 permit 65000:2 0:19 0:44 ip community-list standard 2_22_38 permit 65000:2 0:22 0:38 route-map calculator permit 30011 match community 2_4_209 2_11_76 2_19_44 2_22_38 set community 0:836 ip community-list standard 2_197_244 permit 65000:2 0:197 0:244 route-map calculator permit 30012 match community 2_197_244 set community 0:48068 ip community-list standard 2_196_252 permit 65000:2 0:196 0:252 route-map calculator permit 30013 match community 2_196_252 set community 0:49392 ip community-list standard 2_19_173 permit 65000:2 0:19 0:173 route-map calculator permit 30014 match community 2_19_173 set community 0:3287 ip community-list standard 2_67_152 permit 65000:2 0:67 0:152 ip community-list standard 2_76_134 permit 65000:2 0:76 0:134 route-map calculator permit 30015 match community 2_67_152 2_76_134 set community 0:10184 ip community-list standard 2_119_141 permit 65000:2 0:119 0:141 route-map calculator permit 30016 match community 2_119_141 set community 0:16779 ip community-list standard 2_26_236 permit 65000:2 0:26 0:236 ip community-list standard 2_52_118 permit 65000:2 0:52 0:118 ip community-list standard 2_59_104 permit 65000:2 0:59 0:104 route-map calculator permit 30017 match community 2_26_236 2_52_118 2_59_104 set community 0:6136 ip community-list standard 2_99_141 permit 65000:2 0:99 0:141 route-map calculator permit 30018 match community 2_99_141 set community 0:13959 ip community-list standard 2_235_247 permit 65000:2 0:235 0:247 route-map calculator permit 30019 match community 2_235_247 set community 0:58045 ip community-list standard 2_217_229 permit 65000:2 0:217 0:229 route-map calculator permit 30020 match community 2_217_229 set community 0:49693 ip community-list standard 2_206_214 permit 65000:2 0:206 0:214 route-map calculator permit 30021 match community 2_206_214 set community 0:44084 ip community-list standard 2_83_190 permit 65000:2 0:83 0:190 ip community-list standard 2_95_166 permit 65000:2 0:95 0:166 route-map calculator permit 30022 match community 2_83_190 2_95_166 set community 0:15770 ip community-list standard 2_3_175 permit 65000:2 0:3 0:175 ip community-list standard 2_5_105 permit 65000:2 0:5 0:105 ip community-list standard 2_7_75 permit 65000:2 0:7 0:75 ip community-list standard 2_15_35 permit 65000:2 0:15 0:35 ip community-list standard 2_21_25 permit 65000:2 0:21 0:25 route-map calculator permit 30023 match community 2_3_175 2_5_105 2_7_75 2_15_35 2_21_25 set community 0:525 ip community-list standard 2_195_255 permit 65000:2 0:195 0:255 ip community-list standard 2_221_225 permit 65000:2 0:221 0:225 route-map calculator permit 30024 match community 2_195_255 2_221_225 set community 0:49725 ip community-list standard 2_61_151 permit 65000:2 0:61 0:151 route-map calculator permit 30025 match community 2_61_151 set community 0:9211 ip community-list standard 2_19_123 permit 65000:2 0:19 0:123 ip community-list standard 2_41_57 permit 65000:2 0:41 0:57 route-map calculator permit 30026 match community 2_19_123 2_41_57 set community 0:2337 ip community-list standard 2_14_232 permit 65000:2 0:14 0:232 ip community-list standard 2_16_203 permit 65000:2 0:16 0:203 ip community-list standard 2_28_116 permit 65000:2 0:28 0:116 ip community-list standard 2_29_112 permit 65000:2 0:29 0:112 ip community-list standard 2_56_58 permit 65000:2 0:56 0:58 route-map calculator permit 30027 match community 2_14_232 2_16_203 2_28_116 2_29_112 2_56_58 set community 0:3248 ip community-list standard 2_95_233 permit 65000:2 0:95 0:233 route-map calculator permit 30028 match community 2_95_233 set community 0:22135 ip community-list standard 2_95_231 permit 65000:2 0:95 0:231 ip community-list standard 2_105_209 permit 65000:2 0:105 0:209 ip community-list standard 2_133_165 permit 65000:2 0:133 0:165 route-map calculator permit 30029 match community 2_95_231 2_105_209 2_133_165 set community 0:21945 ip community-list standard 2_111_217 permit 65000:2 0:111 0:217 route-map calculator permit 30030 match community 2_111_217 set community 0:24087 ip community-list standard 2_131_220 permit 65000:2 0:131 0:220 route-map calculator permit 30031 match community 2_131_220 set community 0:28820 ip community-list standard 2_157_215 permit 65000:2 0:157 0:215 route-map calculator permit 30032 match community 2_157_215 set community 0:33755 ip community-list standard 2_202_207 permit 65000:2 0:202 0:207 route-map calculator permit 30033 match community 2_202_207 set community 0:41814 ip community-list standard 2_131_229 permit 65000:2 0:131 0:229 route-map calculator permit 30034 match community 2_131_229 set community 0:29999 ip community-list standard 2_192_253 permit 65000:2 0:192 0:253 route-map calculator permit 30035 match community 2_192_253 set community 0:48576 ip community-list standard 2_128_245 permit 65000:2 0:128 0:245 ip community-list standard 2_140_224 permit 65000:2 0:140 0:224 ip community-list standard 2_160_196 permit 65000:2 0:160 0:196 route-map calculator permit 30036 match community 2_128_245 2_140_224 2_160_196 set community 0:31360 ip community-list standard 2_59_155 permit 65000:2 0:59 0:155 route-map calculator permit 30037 match community 2_59_155 set community 0:9145 ip community-list standard 2_134_202 permit 65000:2 0:134 0:202 route-map calculator permit 30038 match community 2_134_202 set community 0:27068 ip community-list standard 2_22_137 permit 65000:2 0:22 0:137 route-map calculator permit 30039 match community 2_22_137 set community 0:3014 ip community-list standard 2_61_217 permit 65000:2 0:61 0:217 route-map calculator permit 30040 match community 2_61_217 set community 0:13237 ip community-list standard 2_11_194 permit 65000:2 0:11 0:194 ip community-list standard 2_22_97 permit 65000:2 0:22 0:97 route-map calculator permit 30041 match community 2_11_194 2_22_97 set community 0:2134 ip community-list standard 2_114_253 permit 65000:2 0:114 0:253 ip community-list standard 2_138_209 permit 65000:2 0:138 0:209 route-map calculator permit 30042 match community 2_114_253 2_138_209 set community 0:28842 ip community-list standard 2_229_247 permit 65000:2 0:229 0:247 route-map calculator permit 30043 match community 2_229_247 set community 0:56563 ip community-list standard 2_31_247 permit 65000:2 0:31 0:247 route-map calculator permit 30044 match community 2_31_247 set community 0:7657 ip community-list standard 2_113_181 permit 65000:2 0:113 0:181 route-map calculator permit 30045 match community 2_113_181 set community 0:20453 ip community-list standard 2_184_208 permit 65000:2 0:184 0:208 route-map calculator permit 30046 match community 2_184_208 set community 0:38272 ip community-list standard 2_128_151 permit 65000:2 0:128 0:151 route-map calculator permit 30047 match community 2_128_151 set community 0:19328 ip community-list standard 2_145_202 permit 65000:2 0:145 0:202 route-map calculator permit 30048 match community 2_145_202 set community 0:29290 ip community-list standard 2_47_77 permit 65000:2 0:47 0:77 route-map calculator permit 30049 match community 2_47_77 set community 0:3619 ip community-list standard 2_49_223 permit 65000:2 0:49 0:223 route-map calculator permit 30050 match community 2_49_223 set community 0:10927 ip community-list standard 2_23_215 permit 65000:2 0:23 0:215 ip community-list standard 2_43_115 permit 65000:2 0:43 0:115 route-map calculator permit 30051 match community 2_23_215 2_43_115 set community 0:4945 ip community-list standard 2_8_134 permit 65000:2 0:8 0:134 ip community-list standard 2_16_67 permit 65000:2 0:16 0:67 route-map calculator permit 30052 match community 2_8_134 2_16_67 set community 0:1072 ip community-list standard 2_74_223 permit 65000:2 0:74 0:223 route-map calculator permit 30053 match community 2_74_223 set community 0:16502 ip community-list standard 2_61_231 permit 65000:2 0:61 0:231 ip community-list standard 2_77_183 permit 65000:2 0:77 0:183 route-map calculator permit 30054 match community 2_61_231 2_77_183 set community 0:14091 ip community-list standard 2_169_169 permit 65000:2 0:169 0:169 route-map calculator permit 30055 match community 2_169_169 set community 0:28561 ip community-list standard 2_97_247 permit 65000:2 0:97 0:247 route-map calculator permit 30056 match community 2_97_247 set community 0:23959 ip community-list standard 2_94_197 permit 65000:2 0:94 0:197 route-map calculator permit 30057 match community 2_94_197 set community 0:18518 ip community-list standard 2_34_163 permit 65000:2 0:34 0:163 route-map calculator permit 30058 match community 2_34_163 set community 0:5542 ip community-list standard 2_83_224 permit 65000:2 0:83 0:224 ip community-list standard 2_112_166 permit 65000:2 0:112 0:166 route-map calculator permit 30059 match community 2_83_224 2_112_166 set community 0:18592 ip community-list standard 2_197_209 permit 65000:2 0:197 0:209 route-map calculator permit 30060 match community 2_197_209 set community 0:41173 ip community-list standard 2_82_166 permit 65000:2 0:82 0:166 ip community-list standard 2_83_164 permit 65000:2 0:83 0:164 route-map calculator permit 30061 match community 2_82_166 2_83_164 set community 0:13612 ip community-list standard 2_117_139 permit 65000:2 0:117 0:139 route-map calculator permit 30062 match community 2_117_139 set community 0:16263 ip community-list standard 2_58_183 permit 65000:2 0:58 0:183 ip community-list standard 2_61_174 permit 65000:2 0:61 0:174 ip community-list standard 2_87_122 permit 65000:2 0:87 0:122 route-map calculator permit 30063 match community 2_58_183 2_61_174 2_87_122 set community 0:10614 ip community-list standard 2_149_151 permit 65000:2 0:149 0:151 route-map calculator permit 30064 match community 2_149_151 set community 0:22499 ip community-list standard 2_17_155 permit 65000:2 0:17 0:155 ip community-list standard 2_31_85 permit 65000:2 0:31 0:85 route-map calculator permit 30065 match community 2_17_155 2_31_85 set community 0:2635 ip community-list standard 2_133_256 permit 65000:2 0:133 0:256 ip community-list standard 2_152_224 permit 65000:2 0:152 0:224 route-map calculator permit 30066 match community 2_133_256 2_152_224 set community 0:34048 ip community-list standard 2_17_234 permit 65000:2 0:17 0:234 ip community-list standard 2_18_221 permit 65000:2 0:18 0:221 ip community-list standard 2_26_153 permit 65000:2 0:26 0:153 ip community-list standard 2_34_117 permit 65000:2 0:34 0:117 ip community-list standard 2_39_102 permit 65000:2 0:39 0:102 ip community-list standard 2_51_78 permit 65000:2 0:51 0:78 route-map calculator permit 30067 match community 2_17_234 2_18_221 2_26_153 2_34_117 2_39_102 set community 0:3978 route-map calculator permit 30068 match community 2_51_78 set community 0:3978 ip community-list standard 2_187_194 permit 65000:2 0:187 0:194 route-map calculator permit 30069 match community 2_187_194 set community 0:36278 ip community-list standard 2_103_107 permit 65000:2 0:103 0:107 route-map calculator permit 30070 match community 2_103_107 set community 0:11021 ip community-list standard 2_14_171 permit 65000:2 0:14 0:171 ip community-list standard 2_18_133 permit 65000:2 0:18 0:133 ip community-list standard 2_19_126 permit 65000:2 0:19 0:126 ip community-list standard 2_21_114 permit 65000:2 0:21 0:114 ip community-list standard 2_38_63 permit 65000:2 0:38 0:63 ip community-list standard 2_42_57 permit 65000:2 0:42 0:57 route-map calculator permit 30071 match community 2_14_171 2_18_133 2_19_126 2_21_114 2_38_63 set community 0:2394 route-map calculator permit 30072 match community 2_42_57 set community 0:2394 ip community-list standard 2_204_207 permit 65000:2 0:204 0:207 route-map calculator permit 30073 match community 2_204_207 set community 0:42228 ip community-list standard 2_13_231 permit 65000:2 0:13 0:231 ip community-list standard 2_21_143 permit 65000:2 0:21 0:143 ip community-list standard 2_33_91 permit 65000:2 0:33 0:91 ip community-list standard 2_39_77 permit 65000:2 0:39 0:77 route-map calculator permit 30074 match community 2_13_231 2_21_143 2_33_91 2_39_77 set community 0:3003 ip community-list standard 2_90_183 permit 65000:2 0:90 0:183 ip community-list standard 2_122_135 permit 65000:2 0:122 0:135 route-map calculator permit 30075 match community 2_90_183 2_122_135 set community 0:16470 ip community-list standard 2_155_201 permit 65000:2 0:155 0:201 route-map calculator permit 30076 match community 2_155_201 set community 0:31155 ip community-list standard 2_29_97 permit 65000:2 0:29 0:97 route-map calculator permit 30077 match community 2_29_97 set community 0:2813 ip community-list standard 2_218_233 permit 65000:2 0:218 0:233 route-map calculator permit 30078 match community 2_218_233 set community 0:50794 ip community-list standard 2_123_255 permit 65000:2 0:123 0:255 ip community-list standard 2_153_205 permit 65000:2 0:153 0:205 route-map calculator permit 30079 match community 2_123_255 2_153_205 set community 0:31365 ip community-list standard 2_72_191 permit 65000:2 0:72 0:191 route-map calculator permit 30080 match community 2_72_191 set community 0:13752 ip community-list standard 2_8_190 permit 65000:2 0:8 0:190 ip community-list standard 2_10_152 permit 65000:2 0:10 0:152 ip community-list standard 2_16_95 permit 65000:2 0:16 0:95 ip community-list standard 2_19_80 permit 65000:2 0:19 0:80 ip community-list standard 2_20_76 permit 65000:2 0:20 0:76 ip community-list standard 2_38_40 permit 65000:2 0:38 0:40 route-map calculator permit 30081 match community 2_8_190 2_10_152 2_16_95 2_19_80 2_20_76 set community 0:1520 route-map calculator permit 30082 match community 2_38_40 set community 0:1520 ip community-list standard 2_35_191 permit 65000:2 0:35 0:191 route-map calculator permit 30083 match community 2_35_191 set community 0:6685 ip community-list standard 2_198_222 permit 65000:2 0:198 0:222 route-map calculator permit 30084 match community 2_198_222 set community 0:43956 ip community-list standard 2_126_131 permit 65000:2 0:126 0:131 route-map calculator permit 30085 match community 2_126_131 set community 0:16506 ip community-list standard 2_250_250 permit 65000:2 0:250 0:250 route-map calculator permit 30086 match community 2_250_250 set community 0:62500 ip community-list standard 2_149_191 permit 65000:2 0:149 0:191 route-map calculator permit 30087 match community 2_149_191 set community 0:28459 ip community-list standard 2_174_247 permit 65000:2 0:174 0:247 route-map calculator permit 30088 match community 2_174_247 set community 0:42978 ip community-list standard 2_183_218 permit 65000:2 0:183 0:218 route-map calculator permit 30089 match community 2_183_218 set community 0:39894 ip community-list standard 2_50_214 permit 65000:2 0:50 0:214 ip community-list standard 2_100_107 permit 65000:2 0:100 0:107 route-map calculator permit 30090 match community 2_50_214 2_100_107 set community 0:10700 ip community-list standard 2_32_222 permit 65000:2 0:32 0:222 ip community-list standard 2_37_192 permit 65000:2 0:37 0:192 ip community-list standard 2_48_148 permit 65000:2 0:48 0:148 ip community-list standard 2_64_111 permit 65000:2 0:64 0:111 ip community-list standard 2_74_96 permit 65000:2 0:74 0:96 route-map calculator permit 30091 match community 2_32_222 2_37_192 2_48_148 2_64_111 2_74_96 set community 0:7104 ip community-list standard 2_50_182 permit 65000:2 0:50 0:182 ip community-list standard 2_52_175 permit 65000:2 0:52 0:175 ip community-list standard 2_65_140 permit 65000:2 0:65 0:140 ip community-list standard 2_70_130 permit 65000:2 0:70 0:130 ip community-list standard 2_91_100 permit 65000:2 0:91 0:100 route-map calculator permit 30092 match community 2_50_182 2_52_175 2_65_140 2_70_130 2_91_100 set community 0:9100 ip community-list standard 2_50_237 permit 65000:2 0:50 0:237 ip community-list standard 2_75_158 permit 65000:2 0:75 0:158 ip community-list standard 2_79_150 permit 65000:2 0:79 0:150 route-map calculator permit 30093 match community 2_50_237 2_75_158 2_79_150 set community 0:11850 ip community-list standard 2_60_139 permit 65000:2 0:60 0:139 route-map calculator permit 30094 match community 2_60_139 set community 0:8340 ip community-list standard 2_154_188 permit 65000:2 0:154 0:188 route-map calculator permit 30095 match community 2_154_188 set community 0:28952 ip community-list standard 2_33_223 permit 65000:2 0:33 0:223 route-map calculator permit 30096 match community 2_33_223 set community 0:7359 ip community-list standard 2_19_73 permit 65000:2 0:19 0:73 route-map calculator permit 30097 match community 2_19_73 set community 0:1387 ip community-list standard 2_131_188 permit 65000:2 0:131 0:188 route-map calculator permit 30098 match community 2_131_188 set community 0:24628 ip community-list standard 2_23_58 permit 65000:2 0:23 0:58 ip community-list standard 2_29_46 permit 65000:2 0:29 0:46 route-map calculator permit 30099 match community 2_23_58 2_29_46 set community 0:1334 ip community-list standard 2_89_185 permit 65000:2 0:89 0:185 route-map calculator permit 30100 match community 2_89_185 set community 0:16465 ip community-list standard 2_204_252 permit 65000:2 0:204 0:252 ip community-list standard 2_216_238 permit 65000:2 0:216 0:238 route-map calculator permit 30101 match community 2_204_252 2_216_238 set community 0:51408 ip community-list standard 2_38_147 permit 65000:2 0:38 0:147 ip community-list standard 2_42_133 permit 65000:2 0:42 0:133 ip community-list standard 2_49_114 permit 65000:2 0:49 0:114 ip community-list standard 2_57_98 permit 65000:2 0:57 0:98 route-map calculator permit 30102 match community 2_38_147 2_42_133 2_49_114 2_57_98 set community 0:5586 ip community-list standard 2_49_98 permit 65000:2 0:49 0:98 route-map calculator permit 30103 match community 2_49_98 set community 0:4802 ip community-list standard 2_166_218 permit 65000:2 0:166 0:218 route-map calculator permit 30104 match community 2_166_218 set community 0:36188 ip community-list standard 2_143_237 permit 65000:2 0:143 0:237 route-map calculator permit 30105 match community 2_143_237 set community 0:33891 ip community-list standard 2_135_227 permit 65000:2 0:135 0:227 route-map calculator permit 30106 match community 2_135_227 set community 0:30645 ip community-list standard 2_6_218 permit 65000:2 0:6 0:218 ip community-list standard 2_12_109 permit 65000:2 0:12 0:109 route-map calculator permit 30107 match community 2_6_218 2_12_109 set community 0:1308 ip community-list standard 2_89_129 permit 65000:2 0:89 0:129 route-map calculator permit 30108 match community 2_89_129 set community 0:11481 ip community-list standard 2_209_251 permit 65000:2 0:209 0:251 route-map calculator permit 30109 match community 2_209_251 set community 0:52459 ip community-list standard 2_32_215 permit 65000:2 0:32 0:215 ip community-list standard 2_40_172 permit 65000:2 0:40 0:172 ip community-list standard 2_43_160 permit 65000:2 0:43 0:160 ip community-list standard 2_80_86 permit 65000:2 0:80 0:86 route-map calculator permit 30110 match community 2_32_215 2_40_172 2_43_160 2_80_86 set community 0:6880 ip community-list standard 2_151_212 permit 65000:2 0:151 0:212 route-map calculator permit 30111 match community 2_151_212 set community 0:32012 ip community-list standard 2_175_219 permit 65000:2 0:175 0:219 route-map calculator permit 30112 match community 2_175_219 set community 0:38325 ip community-list standard 2_146_217 permit 65000:2 0:146 0:217 route-map calculator permit 30113 match community 2_146_217 set community 0:31682 ip community-list standard 2_74_220 permit 65000:2 0:74 0:220 ip community-list standard 2_88_185 permit 65000:2 0:88 0:185 ip community-list standard 2_110_148 permit 65000:2 0:110 0:148 route-map calculator permit 30114 match community 2_74_220 2_88_185 2_110_148 set community 0:16280 ip community-list standard 2_17_51 permit 65000:2 0:17 0:51 route-map calculator permit 30115 match community 2_17_51 set community 0:867 ip community-list standard 2_222_250 permit 65000:2 0:222 0:250 route-map calculator permit 30116 match community 2_222_250 set community 0:55500 ip community-list standard 2_184_248 permit 65000:2 0:184 0:248 route-map calculator permit 30117 match community 2_184_248 set community 0:45632 ip community-list standard 2_67_103 permit 65000:2 0:67 0:103 route-map calculator permit 30118 match community 2_67_103 set community 0:6901 ip community-list standard 2_151_250 permit 65000:2 0:151 0:250 route-map calculator permit 30119 match community 2_151_250 set community 0:37750 ip community-list standard 2_146_182 permit 65000:2 0:146 0:182 route-map calculator permit 30120 match community 2_146_182 set community 0:26572 ip community-list standard 2_81_253 permit 65000:2 0:81 0:253 ip community-list standard 2_99_207 permit 65000:2 0:99 0:207 route-map calculator permit 30121 match community 2_81_253 2_99_207 set community 0:20493 ip community-list standard 2_16_251 permit 65000:2 0:16 0:251 route-map calculator permit 30122 match community 2_16_251 set community 0:4016 ip community-list standard 2_161_213 permit 65000:2 0:161 0:213 route-map calculator permit 30123 match community 2_161_213 set community 0:34293 ip community-list standard 2_76_167 permit 65000:2 0:76 0:167 route-map calculator permit 30124 match community 2_76_167 set community 0:12692 ip community-list standard 2_141_217 permit 65000:2 0:141 0:217 route-map calculator permit 30125 match community 2_141_217 set community 0:30597 ip community-list standard 2_124_245 permit 65000:2 0:124 0:245 ip community-list standard 2_140_217 permit 65000:2 0:140 0:217 ip community-list standard 2_155_196 permit 65000:2 0:155 0:196 route-map calculator permit 30126 match community 2_124_245 2_140_217 2_155_196 set community 0:30380 ip community-list standard 2_182_191 permit 65000:2 0:182 0:191 route-map calculator permit 30127 match community 2_182_191 set community 0:34762 ip community-list standard 2_35_158 permit 65000:2 0:35 0:158 ip community-list standard 2_70_79 permit 65000:2 0:70 0:79 route-map calculator permit 30128 match community 2_35_158 2_70_79 set community 0:5530 ip community-list standard 2_127_255 permit 65000:2 0:127 0:255 route-map calculator permit 30129 match community 2_127_255 set community 0:32385 ip community-list standard 2_41_199 permit 65000:2 0:41 0:199 route-map calculator permit 30130 match community 2_41_199 set community 0:8159 ip community-list standard 2_143_172 permit 65000:2 0:143 0:172 route-map calculator permit 30131 match community 2_143_172 set community 0:24596 ip community-list standard 2_18_233 permit 65000:2 0:18 0:233 route-map calculator permit 30132 match community 2_18_233 set community 0:4194 ip community-list standard 2_3_226 permit 65000:2 0:3 0:226 ip community-list standard 2_6_113 permit 65000:2 0:6 0:113 route-map calculator permit 30133 match community 2_3_226 2_6_113 set community 0:678 ip community-list standard 2_168_227 permit 65000:2 0:168 0:227 route-map calculator permit 30134 match community 2_168_227 set community 0:38136 ip community-list standard 2_91_236 permit 65000:2 0:91 0:236 ip community-list standard 2_118_182 permit 65000:2 0:118 0:182 route-map calculator permit 30135 match community 2_91_236 2_118_182 set community 0:21476 ip community-list standard 2_31_195 permit 65000:2 0:31 0:195 ip community-list standard 2_39_155 permit 65000:2 0:39 0:155 ip community-list standard 2_65_93 permit 65000:2 0:65 0:93 route-map calculator permit 30136 match community 2_31_195 2_39_155 2_65_93 set community 0:6045 ip community-list standard 2_113_149 permit 65000:2 0:113 0:149 route-map calculator permit 30137 match community 2_113_149 set community 0:16837 ip community-list standard 2_169_220 permit 65000:2 0:169 0:220 route-map calculator permit 30138 match community 2_169_220 set community 0:37180 ip community-list standard 2_55_67 permit 65000:2 0:55 0:67 route-map calculator permit 30139 match community 2_55_67 set community 0:3685 ip community-list standard 2_19_171 permit 65000:2 0:19 0:171 ip community-list standard 2_57_57 permit 65000:2 0:57 0:57 route-map calculator permit 30140 match community 2_19_171 2_57_57 set community 0:3249 ip community-list standard 2_212_213 permit 65000:2 0:212 0:213 route-map calculator permit 30141 match community 2_212_213 set community 0:45156 ip community-list standard 2_102_232 permit 65000:2 0:102 0:232 ip community-list standard 2_116_204 permit 65000:2 0:116 0:204 ip community-list standard 2_136_174 permit 65000:2 0:136 0:174 route-map calculator permit 30142 match community 2_102_232 2_116_204 2_136_174 set community 0:23664 ip community-list standard 2_81_191 permit 65000:2 0:81 0:191 route-map calculator permit 30143 match community 2_81_191 set community 0:15471 ip community-list standard 2_73_215 permit 65000:2 0:73 0:215 route-map calculator permit 30144 match community 2_73_215 set community 0:15695 ip community-list standard 2_30_193 permit 65000:2 0:30 0:193 route-map calculator permit 30145 match community 2_30_193 set community 0:5790 ip community-list standard 2_185_209 permit 65000:2 0:185 0:209 route-map calculator permit 30146 match community 2_185_209 set community 0:38665 ip community-list standard 2_123_169 permit 65000:2 0:123 0:169 route-map calculator permit 30147 match community 2_123_169 set community 0:20787 ip community-list standard 2_28_179 permit 65000:2 0:28 0:179 route-map calculator permit 30148 match community 2_28_179 set community 0:5012 ip community-list standard 2_163_197 permit 65000:2 0:163 0:197 route-map calculator permit 30149 match community 2_163_197 set community 0:32111 ip community-list standard 2_119_205 permit 65000:2 0:119 0:205 route-map calculator permit 30150 match community 2_119_205 set community 0:24395 ip community-list standard 2_76_172 permit 65000:2 0:76 0:172 ip community-list standard 2_86_152 permit 65000:2 0:86 0:152 route-map calculator permit 30151 match community 2_76_172 2_86_152 set community 0:13072 ip community-list standard 2_204_204 permit 65000:2 0:204 0:204 route-map calculator permit 30152 match community 2_204_204 set community 0:41616 ip community-list standard 2_182_256 permit 65000:2 0:182 0:256 ip community-list standard 2_208_224 permit 65000:2 0:208 0:224 route-map calculator permit 30153 match community 2_182_256 2_208_224 set community 0:46592 ip community-list standard 2_46_149 permit 65000:2 0:46 0:149 route-map calculator permit 30154 match community 2_46_149 set community 0:6854 ip community-list standard 2_169_255 permit 65000:2 0:169 0:255 ip community-list standard 2_195_221 permit 65000:2 0:195 0:221 route-map calculator permit 30155 match community 2_169_255 2_195_221 set community 0:43095 ip community-list standard 2_57_209 permit 65000:2 0:57 0:209 route-map calculator permit 30156 match community 2_57_209 set community 0:11913 ip community-list standard 2_7_159 permit 65000:2 0:7 0:159 ip community-list standard 2_21_53 permit 65000:2 0:21 0:53 route-map calculator permit 30157 match community 2_7_159 2_21_53 set community 0:1113 ip community-list standard 2_115_215 permit 65000:2 0:115 0:215 route-map calculator permit 30158 match community 2_115_215 set community 0:24725 ip community-list standard 2_154_185 permit 65000:2 0:154 0:185 route-map calculator permit 30159 match community 2_154_185 set community 0:28490 ip community-list standard 2_23_172 permit 65000:2 0:23 0:172 ip community-list standard 2_43_92 permit 65000:2 0:43 0:92 ip community-list standard 2_46_86 permit 65000:2 0:46 0:86 route-map calculator permit 30160 match community 2_23_172 2_43_92 2_46_86 set community 0:3956 ip community-list standard 2_225_236 permit 65000:2 0:225 0:236 route-map calculator permit 30161 match community 2_225_236 set community 0:53100 ip community-list standard 2_106_225 permit 65000:2 0:106 0:225 ip community-list standard 2_150_159 permit 65000:2 0:150 0:159 route-map calculator permit 30162 match community 2_106_225 2_150_159 set community 0:23850 ip community-list standard 2_197_252 permit 65000:2 0:197 0:252 route-map calculator permit 30163 match community 2_197_252 set community 0:49644 ip community-list standard 2_38_219 permit 65000:2 0:38 0:219 ip community-list standard 2_57_146 permit 65000:2 0:57 0:146 ip community-list standard 2_73_114 permit 65000:2 0:73 0:114 route-map calculator permit 30164 match community 2_38_219 2_57_146 2_73_114 set community 0:8322 ip community-list standard 2_172_231 permit 65000:2 0:172 0:231 route-map calculator permit 30165 match community 2_172_231 set community 0:39732 ip community-list standard 2_155_155 permit 65000:2 0:155 0:155 route-map calculator permit 30166 match community 2_155_155 set community 0:24025 ip community-list standard 2_117_245 permit 65000:2 0:117 0:245 ip community-list standard 2_147_195 permit 65000:2 0:147 0:195 route-map calculator permit 30167 match community 2_117_245 2_147_195 set community 0:28665 ip community-list standard 2_119_123 permit 65000:2 0:119 0:123 route-map calculator permit 30168 match community 2_119_123 set community 0:14637 ip community-list standard 2_61_133 permit 65000:2 0:61 0:133 route-map calculator permit 30169 match community 2_61_133 set community 0:8113 ip community-list standard 2_29_101 permit 65000:2 0:29 0:101 route-map calculator permit 30170 match community 2_29_101 set community 0:2929 ip community-list standard 2_239_240 permit 65000:2 0:239 0:240 route-map calculator permit 30171 match community 2_239_240 set community 0:57360 ip community-list standard 2_177_231 permit 65000:2 0:177 0:231 route-map calculator permit 30172 match community 2_177_231 set community 0:40887 ip community-list standard 2_14_200 permit 65000:2 0:14 0:200 ip community-list standard 2_16_175 permit 65000:2 0:16 0:175 ip community-list standard 2_20_140 permit 65000:2 0:20 0:140 ip community-list standard 2_25_112 permit 65000:2 0:25 0:112 ip community-list standard 2_28_100 permit 65000:2 0:28 0:100 ip community-list standard 2_35_80 permit 65000:2 0:35 0:80 ip community-list standard 2_40_70 permit 65000:2 0:40 0:70 ip community-list standard 2_50_56 permit 65000:2 0:50 0:56 route-map calculator permit 30173 match community 2_14_200 2_16_175 2_20_140 2_25_112 2_28_100 set community 0:2800 route-map calculator permit 30174 match community 2_35_80 2_40_70 2_50_56 set community 0:2800 ip community-list standard 2_42_225 permit 65000:2 0:42 0:225 ip community-list standard 2_45_210 permit 65000:2 0:45 0:210 ip community-list standard 2_50_189 permit 65000:2 0:50 0:189 ip community-list standard 2_54_175 permit 65000:2 0:54 0:175 ip community-list standard 2_63_150 permit 65000:2 0:63 0:150 ip community-list standard 2_70_135 permit 65000:2 0:70 0:135 ip community-list standard 2_75_126 permit 65000:2 0:75 0:126 ip community-list standard 2_90_105 permit 65000:2 0:90 0:105 route-map calculator permit 30175 match community 2_42_225 2_45_210 2_50_189 2_54_175 2_63_150 set community 0:9450 route-map calculator permit 30176 match community 2_70_135 2_75_126 2_90_105 set community 0:9450 ip community-list standard 2_182_236 permit 65000:2 0:182 0:236 route-map calculator permit 30177 match community 2_182_236 set community 0:42952 ip community-list standard 2_170_235 permit 65000:2 0:170 0:235 route-map calculator permit 30178 match community 2_170_235 set community 0:39950 ip community-list standard 2_179_255 permit 65000:2 0:179 0:255 route-map calculator permit 30179 match community 2_179_255 set community 0:45645 ip community-list standard 2_95_219 permit 65000:2 0:95 0:219 route-map calculator permit 30180 match community 2_95_219 set community 0:20805 ip community-list standard 2_49_254 permit 65000:2 0:49 0:254 ip community-list standard 2_98_127 permit 65000:2 0:98 0:127 route-map calculator permit 30181 match community 2_49_254 2_98_127 set community 0:12446 ip community-list standard 2_8_201 permit 65000:2 0:8 0:201 ip community-list standard 2_12_134 permit 65000:2 0:12 0:134 ip community-list standard 2_24_67 permit 65000:2 0:24 0:67 route-map calculator permit 30182 match community 2_8_201 2_12_134 2_24_67 set community 0:1608 ip community-list standard 2_118_250 permit 65000:2 0:118 0:250 ip community-list standard 2_125_236 permit 65000:2 0:125 0:236 route-map calculator permit 30183 match community 2_118_250 2_125_236 set community 0:29500 ip community-list standard 2_213_223 permit 65000:2 0:213 0:223 route-map calculator permit 30184 match community 2_213_223 set community 0:47499 ip community-list standard 2_47_193 permit 65000:2 0:47 0:193 route-map calculator permit 30185 match community 2_47_193 set community 0:9071 ip community-list standard 2_41_225 permit 65000:2 0:41 0:225 ip community-list standard 2_45_205 permit 65000:2 0:45 0:205 ip community-list standard 2_75_123 permit 65000:2 0:75 0:123 route-map calculator permit 30186 match community 2_41_225 2_45_205 2_75_123 set community 0:9225 ip community-list standard 2_67_210 permit 65000:2 0:67 0:210 ip community-list standard 2_70_201 permit 65000:2 0:70 0:201 ip community-list standard 2_105_134 permit 65000:2 0:105 0:134 route-map calculator permit 30187 match community 2_67_210 2_70_201 2_105_134 set community 0:14070 ip community-list standard 2_49_221 permit 65000:2 0:49 0:221 ip community-list standard 2_91_119 permit 65000:2 0:91 0:119 route-map calculator permit 30188 match community 2_49_221 2_91_119 set community 0:10829 ip community-list standard 2_94_236 permit 65000:2 0:94 0:236 ip community-list standard 2_118_188 permit 65000:2 0:118 0:188 route-map calculator permit 30189 match community 2_94_236 2_118_188 set community 0:22184 ip community-list standard 2_205_253 permit 65000:2 0:205 0:253 route-map calculator permit 30190 match community 2_205_253 set community 0:51865 ip community-list standard 2_149_207 permit 65000:2 0:149 0:207 route-map calculator permit 30191 match community 2_149_207 set community 0:30843 ip community-list standard 2_56_245 permit 65000:2 0:56 0:245 ip community-list standard 2_70_196 permit 65000:2 0:70 0:196 ip community-list standard 2_98_140 permit 65000:2 0:98 0:140 route-map calculator permit 30192 match community 2_56_245 2_70_196 2_98_140 set community 0:13720 ip community-list standard 2_149_177 permit 65000:2 0:149 0:177 route-map calculator permit 30193 match community 2_149_177 set community 0:26373 ip community-list standard 2_84_244 permit 65000:2 0:84 0:244 ip community-list standard 2_112_183 permit 65000:2 0:112 0:183 ip community-list standard 2_122_168 permit 65000:2 0:122 0:168 route-map calculator permit 30194 match community 2_84_244 2_112_183 2_122_168 set community 0:20496 ip community-list standard 2_24_218 permit 65000:2 0:24 0:218 ip community-list standard 2_48_109 permit 65000:2 0:48 0:109 route-map calculator permit 30195 match community 2_24_218 2_48_109 set community 0:5232 ip community-list standard 2_16_137 permit 65000:2 0:16 0:137 route-map calculator permit 30196 match community 2_16_137 set community 0:2192 ip community-list standard 2_51_131 permit 65000:2 0:51 0:131 route-map calculator permit 30197 match community 2_51_131 set community 0:6681 ip community-list standard 2_148_151 permit 65000:2 0:148 0:151 route-map calculator permit 30198 match community 2_148_151 set community 0:22348 ip community-list standard 2_20_232 permit 65000:2 0:20 0:232 ip community-list standard 2_29_160 permit 65000:2 0:29 0:160 ip community-list standard 2_32_145 permit 65000:2 0:32 0:145 ip community-list standard 2_40_116 permit 65000:2 0:40 0:116 ip community-list standard 2_58_80 permit 65000:2 0:58 0:80 route-map calculator permit 30199 match community 2_20_232 2_29_160 2_32_145 2_40_116 2_58_80 set community 0:4640 ip community-list standard 2_106_240 permit 65000:2 0:106 0:240 ip community-list standard 2_120_212 permit 65000:2 0:120 0:212 ip community-list standard 2_159_160 permit 65000:2 0:159 0:160 route-map calculator permit 30200 match community 2_106_240 2_120_212 2_159_160 set community 0:25440 ip community-list standard 2_11_222 permit 65000:2 0:11 0:222 ip community-list standard 2_22_111 permit 65000:2 0:22 0:111 ip community-list standard 2_33_74 permit 65000:2 0:33 0:74 ip community-list standard 2_37_66 permit 65000:2 0:37 0:66 route-map calculator permit 30201 match community 2_11_222 2_22_111 2_33_74 2_37_66 set community 0:2442 ip community-list standard 2_19_177 permit 65000:2 0:19 0:177 ip community-list standard 2_57_59 permit 65000:2 0:57 0:59 route-map calculator permit 30202 match community 2_19_177 2_57_59 set community 0:3363 ip community-list standard 2_155_183 permit 65000:2 0:155 0:183 route-map calculator permit 30203 match community 2_155_183 set community 0:28365 ip community-list standard 2_147_256 permit 65000:2 0:147 0:256 ip community-list standard 2_168_224 permit 65000:2 0:168 0:224 ip community-list standard 2_192_196 permit 65000:2 0:192 0:196 route-map calculator permit 30204 match community 2_147_256 2_168_224 2_192_196 set community 0:37632 ip community-list standard 2_89_163 permit 65000:2 0:89 0:163 route-map calculator permit 30205 match community 2_89_163 set community 0:14507 ip community-list standard 2_106_255 permit 65000:2 0:106 0:255 ip community-list standard 2_159_170 permit 65000:2 0:159 0:170 route-map calculator permit 30206 match community 2_106_255 2_159_170 set community 0:27030 ip community-list standard 2_96_213 permit 65000:2 0:96 0:213 ip community-list standard 2_142_144 permit 65000:2 0:142 0:144 route-map calculator permit 30207 match community 2_96_213 2_142_144 set community 0:20448 ip community-list standard 2_47_207 permit 65000:2 0:47 0:207 ip community-list standard 2_69_141 permit 65000:2 0:69 0:141 route-map calculator permit 30208 match community 2_47_207 2_69_141 set community 0:9729 ip community-list standard 2_200_218 permit 65000:2 0:200 0:218 route-map calculator permit 30209 match community 2_200_218 set community 0:43600 ip community-list standard 1_1_136 permit 65000:1 0:1 0:136 ip community-list standard 2_1_137 permit 65000:2 0:1 0:137 ip community-list standard 1_2_135 permit 65000:1 0:2 0:135 ip community-list standard 1_3_134 permit 65000:1 0:3 0:134 ip community-list standard 1_4_133 permit 65000:1 0:4 0:133 ip community-list standard 1_5_132 permit 65000:1 0:5 0:132 ip community-list standard 1_6_131 permit 65000:1 0:6 0:131 ip community-list standard 1_7_130 permit 65000:1 0:7 0:130 ip community-list standard 1_8_129 permit 65000:1 0:8 0:129 ip community-list standard 1_9_128 permit 65000:1 0:9 0:128 ip community-list standard 1_10_127 permit 65000:1 0:10 0:127 ip community-list standard 1_11_126 permit 65000:1 0:11 0:126 ip community-list standard 1_12_125 permit 65000:1 0:12 0:125 ip community-list standard 1_13_124 permit 65000:1 0:13 0:124 ip community-list standard 1_14_123 permit 65000:1 0:14 0:123 ip community-list standard 1_15_122 permit 65000:1 0:15 0:122 ip community-list standard 1_16_121 permit 65000:1 0:16 0:121 ip community-list standard 1_17_120 permit 65000:1 0:17 0:120 ip community-list standard 1_18_119 permit 65000:1 0:18 0:119 ip community-list standard 1_19_118 permit 65000:1 0:19 0:118 ip community-list standard 1_20_117 permit 65000:1 0:20 0:117 ip community-list standard 1_21_116 permit 65000:1 0:21 0:116 ip community-list standard 1_22_115 permit 65000:1 0:22 0:115 ip community-list standard 1_23_114 permit 65000:1 0:23 0:114 ip community-list standard 1_24_113 permit 65000:1 0:24 0:113 ip community-list standard 1_25_112 permit 65000:1 0:25 0:112 ip community-list standard 1_26_111 permit 65000:1 0:26 0:111 ip community-list standard 1_27_110 permit 65000:1 0:27 0:110 ip community-list standard 1_28_109 permit 65000:1 0:28 0:109 ip community-list standard 1_29_108 permit 65000:1 0:29 0:108 ip community-list standard 1_30_107 permit 65000:1 0:30 0:107 ip community-list standard 1_31_106 permit 65000:1 0:31 0:106 ip community-list standard 1_32_105 permit 65000:1 0:32 0:105 ip community-list standard 1_33_104 permit 65000:1 0:33 0:104 ip community-list standard 1_34_103 permit 65000:1 0:34 0:103 ip community-list standard 1_35_102 permit 65000:1 0:35 0:102 ip community-list standard 1_36_101 permit 65000:1 0:36 0:101 ip community-list standard 1_37_100 permit 65000:1 0:37 0:100 ip community-list standard 1_38_99 permit 65000:1 0:38 0:99 ip community-list standard 1_39_98 permit 65000:1 0:39 0:98 ip community-list standard 1_40_97 permit 65000:1 0:40 0:97 ip community-list standard 1_41_96 permit 65000:1 0:41 0:96 ip community-list standard 1_42_95 permit 65000:1 0:42 0:95 ip community-list standard 1_43_94 permit 65000:1 0:43 0:94 ip community-list standard 1_44_93 permit 65000:1 0:44 0:93 ip community-list standard 1_45_92 permit 65000:1 0:45 0:92 ip community-list standard 1_46_91 permit 65000:1 0:46 0:91 ip community-list standard 1_47_90 permit 65000:1 0:47 0:90 ip community-list standard 1_48_89 permit 65000:1 0:48 0:89 ip community-list standard 1_49_88 permit 65000:1 0:49 0:88 ip community-list standard 1_50_87 permit 65000:1 0:50 0:87 ip community-list standard 1_51_86 permit 65000:1 0:51 0:86 ip community-list standard 1_52_85 permit 65000:1 0:52 0:85 ip community-list standard 1_53_84 permit 65000:1 0:53 0:84 ip community-list standard 1_54_83 permit 65000:1 0:54 0:83 ip community-list standard 1_55_82 permit 65000:1 0:55 0:82 ip community-list standard 1_56_81 permit 65000:1 0:56 0:81 ip community-list standard 1_57_80 permit 65000:1 0:57 0:80 ip community-list standard 1_58_79 permit 65000:1 0:58 0:79 ip community-list standard 1_59_78 permit 65000:1 0:59 0:78 ip community-list standard 1_60_77 permit 65000:1 0:60 0:77 ip community-list standard 1_61_76 permit 65000:1 0:61 0:76 ip community-list standard 1_62_75 permit 65000:1 0:62 0:75 ip community-list standard 1_63_74 permit 65000:1 0:63 0:74 ip community-list standard 1_64_73 permit 65000:1 0:64 0:73 ip community-list standard 1_65_72 permit 65000:1 0:65 0:72 ip community-list standard 1_66_71 permit 65000:1 0:66 0:71 ip community-list standard 1_67_70 permit 65000:1 0:67 0:70 ip community-list standard 1_68_69 permit 65000:1 0:68 0:69 ip community-list expanded c137 permit 1 ^65000:4_0:137_0:1$ ip community-list expanded c137 permit 2 ^65000:3_0:138_0:1$ ip community-list expanded c137 permit 3 ^65000:3_0:139_0:2$ ip community-list expanded c137 permit 4 ^65000:3_0:140_0:3$ ip community-list expanded c137 permit 5 ^65000:3_0:141_0:4$ ip community-list expanded c137 permit 6 ^65000:3_0:142_0:5$ ip community-list expanded c137 permit 7 ^65000:3_0:143_0:6$ ip community-list expanded c137 permit 8 ^65000:3_0:144_0:7$ ip community-list expanded c137 permit 9 ^65000:3_0:145_0:8$ ip community-list expanded c137 permit 10 ^65000:3_0:146_0:9$ ip community-list expanded c137 permit 11 ^65000:3_0:147_0:10$ ip community-list expanded c137 permit 12 ^65000:3_0:148_0:11$ ip community-list expanded c137 permit 13 ^65000:3_0:149_0:12$ ip community-list expanded c137 permit 14 ^65000:3_0:150_0:13$ ip community-list expanded c137 permit 15 ^65000:3_0:151_0:14$ ip community-list expanded c137 permit 16 ^65000:3_0:152_0:15$ ip community-list expanded c137 permit 17 ^65000:3_0:153_0:16$ ip community-list expanded c137 permit 18 ^65000:3_0:154_0:17$ ip community-list expanded c137 permit 19 ^65000:3_0:155_0:18$ ip community-list expanded c137 permit 20 ^65000:3_0:156_0:19$ ip community-list expanded c137 permit 21 ^65000:3_0:157_0:20$ ip community-list expanded c137 permit 22 ^65000:3_0:158_0:21$ ip community-list expanded c137 permit 23 ^65000:3_0:159_0:22$ ip community-list expanded c137 permit 24 ^65000:3_0:160_0:23$ ip community-list expanded c137 permit 25 ^65000:3_0:161_0:24$ ip community-list expanded c137 permit 26 ^65000:3_0:162_0:25$ ip community-list expanded c137 permit 27 ^65000:3_0:163_0:26$ ip community-list expanded c137 permit 28 ^65000:3_0:164_0:27$ ip community-list expanded c137 permit 29 ^65000:3_0:165_0:28$ ip community-list expanded c137 permit 30 ^65000:3_0:166_0:29$ ip community-list expanded c137 permit 31 ^65000:3_0:167_0:30$ ip community-list expanded c137 permit 32 ^65000:3_0:168_0:31$ ip community-list expanded c137 permit 33 ^65000:3_0:169_0:32$ ip community-list expanded c137 permit 34 ^65000:3_0:170_0:33$ ip community-list expanded c137 permit 35 ^65000:3_0:171_0:34$ ip community-list expanded c137 permit 36 ^65000:3_0:172_0:35$ ip community-list expanded c137 permit 37 ^65000:3_0:173_0:36$ ip community-list expanded c137 permit 38 ^65000:3_0:174_0:37$ ip community-list expanded c137 permit 39 ^65000:3_0:175_0:38$ ip community-list expanded c137 permit 40 ^65000:3_0:176_0:39$ ip community-list expanded c137 permit 41 ^65000:3_0:177_0:40$ ip community-list expanded c137 permit 42 ^65000:3_0:178_0:41$ ip community-list expanded c137 permit 43 ^65000:3_0:179_0:42$ ip community-list expanded c137 permit 44 ^65000:3_0:180_0:43$ ip community-list expanded c137 permit 45 ^65000:3_0:181_0:44$ ip community-list expanded c137 permit 46 ^65000:3_0:182_0:45$ ip community-list expanded c137 permit 47 ^65000:3_0:183_0:46$ ip community-list expanded c137 permit 48 ^65000:3_0:184_0:47$ ip community-list expanded c137 permit 49 ^65000:3_0:185_0:48$ ip community-list expanded c137 permit 50 ^65000:3_0:186_0:49$ ip community-list expanded c137 permit 51 ^65000:3_0:187_0:50$ ip community-list expanded c137 permit 52 ^65000:3_0:188_0:51$ ip community-list expanded c137 permit 53 ^65000:3_0:189_0:52$ ip community-list expanded c137 permit 54 ^65000:3_0:190_0:53$ ip community-list expanded c137 permit 55 ^65000:3_0:191_0:54$ ip community-list expanded c137 permit 56 ^65000:3_0:192_0:55$ ip community-list expanded c137 permit 57 ^65000:3_0:193_0:56$ ip community-list expanded c137 permit 58 ^65000:3_0:194_0:57$ ip community-list expanded c137 permit 59 ^65000:3_0:195_0:58$ ip community-list expanded c137 permit 60 ^65000:3_0:196_0:59$ ip community-list expanded c137 permit 61 ^65000:3_0:197_0:60$ ip community-list expanded c137 permit 62 ^65000:3_0:198_0:61$ ip community-list expanded c137 permit 63 ^65000:3_0:199_0:62$ ip community-list expanded c137 permit 64 ^65000:3_0:200_0:63$ ip community-list expanded c137 permit 65 ^65000:3_0:201_0:64$ ip community-list expanded c137 permit 66 ^65000:3_0:202_0:65$ ip community-list expanded c137 permit 67 ^65000:3_0:203_0:66$ ip community-list expanded c137 permit 68 ^65000:3_0:204_0:67$ ip community-list expanded c137 permit 69 ^65000:3_0:205_0:68$ ip community-list expanded c137 permit 70 ^65000:3_0:206_0:69$ ip community-list expanded c137 permit 71 ^65000:3_0:207_0:70$ ip community-list expanded c137 permit 72 ^65000:3_0:208_0:71$ ip community-list expanded c137 permit 73 ^65000:3_0:209_0:72$ ip community-list expanded c137 permit 74 ^65000:3_0:210_0:73$ ip community-list expanded c137 permit 75 ^65000:3_0:211_0:74$ ip community-list expanded c137 permit 76 ^65000:3_0:212_0:75$ ip community-list expanded c137 permit 77 ^65000:3_0:213_0:76$ ip community-list expanded c137 permit 78 ^65000:3_0:214_0:77$ ip community-list expanded c137 permit 79 ^65000:3_0:215_0:78$ ip community-list expanded c137 permit 80 ^65000:3_0:216_0:79$ ip community-list expanded c137 permit 81 ^65000:3_0:217_0:80$ ip community-list expanded c137 permit 82 ^65000:3_0:218_0:81$ ip community-list expanded c137 permit 83 ^65000:3_0:219_0:82$ ip community-list expanded c137 permit 84 ^65000:3_0:220_0:83$ ip community-list expanded c137 permit 85 ^65000:3_0:221_0:84$ ip community-list expanded c137 permit 86 ^65000:3_0:222_0:85$ ip community-list expanded c137 permit 87 ^65000:3_0:223_0:86$ ip community-list expanded c137 permit 88 ^65000:3_0:224_0:87$ ip community-list expanded c137 permit 89 ^65000:3_0:225_0:88$ ip community-list expanded c137 permit 90 ^65000:3_0:226_0:89$ ip community-list expanded c137 permit 91 ^65000:3_0:227_0:90$ ip community-list expanded c137 permit 92 ^65000:3_0:228_0:91$ ip community-list expanded c137 permit 93 ^65000:3_0:229_0:92$ ip community-list expanded c137 permit 94 ^65000:3_0:230_0:93$ ip community-list expanded c137 permit 95 ^65000:3_0:231_0:94$ ip community-list expanded c137 permit 96 ^65000:3_0:232_0:95$ ip community-list expanded c137 permit 97 ^65000:3_0:233_0:96$ ip community-list expanded c137 permit 98 ^65000:3_0:234_0:97$ ip community-list expanded c137 permit 99 ^65000:3_0:235_0:98$ ip community-list expanded c137 permit 100 ^65000:3_0:236_0:99$ ip community-list expanded c137 permit 101 ^65000:3_0:237_0:100$ ip community-list expanded c137 permit 102 ^65000:3_0:238_0:101$ ip community-list expanded c137 permit 103 ^65000:3_0:239_0:102$ ip community-list expanded c137 permit 104 ^65000:3_0:240_0:103$ ip community-list expanded c137 permit 105 ^65000:3_0:241_0:104$ ip community-list expanded c137 permit 106 ^65000:3_0:242_0:105$ ip community-list expanded c137 permit 107 ^65000:3_0:243_0:106$ ip community-list expanded c137 permit 108 ^65000:3_0:244_0:107$ ip community-list expanded c137 permit 109 ^65000:3_0:245_0:108$ ip community-list expanded c137 permit 110 ^65000:3_0:246_0:109$ ip community-list expanded c137 permit 111 ^65000:3_0:247_0:110$ ip community-list expanded c137 permit 112 ^65000:3_0:248_0:111$ ip community-list expanded c137 permit 113 ^65000:3_0:249_0:112$ ip community-list expanded c137 permit 114 ^65000:3_0:250_0:113$ ip community-list expanded c137 permit 115 ^65000:3_0:251_0:114$ ip community-list expanded c137 permit 116 ^65000:3_0:252_0:115$ ip community-list expanded c137 permit 117 ^65000:3_0:253_0:116$ ip community-list expanded c137 permit 118 ^65000:3_0:254_0:117$ ip community-list expanded c137 permit 119 ^65000:3_0:255_0:118$ ip community-list expanded c137 permit 120 ^65000:3_0:256_0:119$ route-map calculator permit 30210 match community 1_1_136 2_1_137 1_2_135 1_3_134 1_4_133 set community 0:137 route-map calculator permit 30211 match community 1_5_132 1_6_131 1_7_130 1_8_129 1_9_128 set community 0:137 route-map calculator permit 30212 match community 1_10_127 1_11_126 1_12_125 1_13_124 1_14_123 set community 0:137 route-map calculator permit 30213 match community 1_15_122 1_16_121 1_17_120 1_18_119 1_19_118 set community 0:137 route-map calculator permit 30214 match community 1_20_117 1_21_116 1_22_115 1_23_114 1_24_113 set community 0:137 route-map calculator permit 30215 match community 1_25_112 1_26_111 1_27_110 1_28_109 1_29_108 set community 0:137 route-map calculator permit 30216 match community 1_30_107 1_31_106 1_32_105 1_33_104 1_34_103 set community 0:137 route-map calculator permit 30217 match community 1_35_102 1_36_101 1_37_100 1_38_99 1_39_98 set community 0:137 route-map calculator permit 30218 match community 1_40_97 1_41_96 1_42_95 1_43_94 1_44_93 set community 0:137 route-map calculator permit 30219 match community 1_45_92 1_46_91 1_47_90 1_48_89 1_49_88 set community 0:137 route-map calculator permit 30220 match community 1_50_87 1_51_86 1_52_85 1_53_84 1_54_83 set community 0:137 route-map calculator permit 30221 match community 1_55_82 1_56_81 1_57_80 1_58_79 1_59_78 set community 0:137 route-map calculator permit 30222 match community 1_60_77 1_61_76 1_62_75 1_63_74 1_64_73 set community 0:137 route-map calculator permit 30223 match community 1_65_72 1_66_71 1_67_70 1_68_69 c4_137_1 set community 0:137 route-map calculator permit 30224 match community c3_138_1 c3_139_2 c3_140_3 c3_141_4 c3_142_5 set community 0:137 route-map calculator permit 30225 match community c3_143_6 c3_144_7 c3_145_8 c3_146_9 c3_147_10 set community 0:137 route-map calculator permit 30226 match community c3_148_11 c3_149_12 c3_150_13 c3_151_14 c3_152_15 set community 0:137 route-map calculator permit 30227 match community c3_153_16 c3_154_17 c3_155_18 c3_156_19 c3_157_20 set community 0:137 route-map calculator permit 30228 match community c3_158_21 c3_159_22 c3_160_23 c3_161_24 c3_162_25 set community 0:137 route-map calculator permit 30229 match community c3_163_26 c3_164_27 c3_165_28 c3_166_29 c3_167_30 set community 0:137 route-map calculator permit 30230 match community c3_168_31 c3_169_32 c3_170_33 c3_171_34 c3_172_35 set community 0:137 route-map calculator permit 30231 match community c3_173_36 c3_174_37 c3_175_38 c3_176_39 c3_177_40 set community 0:137 route-map calculator permit 30232 match community c3_178_41 c3_179_42 c3_180_43 c3_181_44 c3_182_45 set community 0:137 route-map calculator permit 30233 match community c3_183_46 c3_184_47 c3_185_48 c3_186_49 c3_187_50 set community 0:137 route-map calculator permit 30234 match community c3_188_51 c3_189_52 c3_190_53 c3_191_54 c3_192_55 set community 0:137 route-map calculator permit 30235 match community c3_193_56 c3_194_57 c3_195_58 c3_196_59 c3_197_60 set community 0:137 route-map calculator permit 30236 match community c3_198_61 c3_199_62 c3_200_63 c3_201_64 c3_202_65 set community 0:137 route-map calculator permit 30237 match community c3_203_66 c3_204_67 c3_205_68 c3_206_69 c3_207_70 set community 0:137 route-map calculator permit 30238 match community c3_208_71 c3_209_72 c3_210_73 c3_211_74 c3_212_75 set community 0:137 route-map calculator permit 30239 match community c3_213_76 c3_214_77 c3_215_78 c3_216_79 c3_217_80 set community 0:137 route-map calculator permit 30240 match community c3_218_81 c3_219_82 c3_220_83 c3_221_84 c3_222_85 set community 0:137 route-map calculator permit 30241 match community c3_223_86 c3_224_87 c3_225_88 c3_226_89 c3_227_90 set community 0:137 route-map calculator permit 30242 match community c3_228_91 c3_229_92 c3_230_93 c3_231_94 c3_232_95 set community 0:137 route-map calculator permit 30243 match community c3_233_96 c3_234_97 c3_235_98 c3_236_99 c3_237_100 set community 0:137 route-map calculator permit 30244 match community c3_238_101 c3_239_102 c3_240_103 c3_241_104 c3_242_105 set community 0:137 route-map calculator permit 30245 match community c3_243_106 c3_244_107 c3_245_108 c3_246_109 c3_247_110 set community 0:137 route-map calculator permit 30246 match community c3_248_111 c3_249_112 c3_250_113 c3_251_114 c3_252_115 set community 0:137 route-map calculator permit 30247 match community c3_253_116 c3_254_117 c3_255_118 c3_256_119 set community 0:137 ip community-list standard 2_58_218 permit 65000:2 0:58 0:218 ip community-list standard 2_109_116 permit 65000:2 0:109 0:116 route-map calculator permit 30248 match community 2_58_218 2_109_116 set community 0:12644 ip community-list standard 2_159_207 permit 65000:2 0:159 0:207 route-map calculator permit 30249 match community 2_159_207 set community 0:32913 ip community-list standard 2_9_194 permit 65000:2 0:9 0:194 ip community-list standard 2_18_97 permit 65000:2 0:18 0:97 route-map calculator permit 30250 match community 2_9_194 2_18_97 set community 0:1746 ip community-list standard 2_46_188 permit 65000:2 0:46 0:188 ip community-list standard 2_47_184 permit 65000:2 0:47 0:184 ip community-list standard 2_92_94 permit 65000:2 0:92 0:94 route-map calculator permit 30251 match community 2_46_188 2_47_184 2_92_94 set community 0:8648 ip community-list standard 2_160_220 permit 65000:2 0:160 0:220 ip community-list standard 2_176_200 permit 65000:2 0:176 0:200 route-map calculator permit 30252 match community 2_160_220 2_176_200 set community 0:35200 ip community-list standard 2_101_145 permit 65000:2 0:101 0:145 route-map calculator permit 30253 match community 2_101_145 set community 0:14645 ip community-list standard 2_55_201 permit 65000:2 0:55 0:201 ip community-list standard 2_67_165 permit 65000:2 0:67 0:165 route-map calculator permit 30254 match community 2_55_201 2_67_165 set community 0:11055 ip community-list standard 2_79_151 permit 65000:2 0:79 0:151 route-map calculator permit 30255 match community 2_79_151 set community 0:11929 ip community-list standard 2_27_186 permit 65000:2 0:27 0:186 ip community-list standard 2_31_162 permit 65000:2 0:31 0:162 ip community-list standard 2_54_93 permit 65000:2 0:54 0:93 ip community-list standard 2_62_81 permit 65000:2 0:62 0:81 route-map calculator permit 30256 match community 2_27_186 2_31_162 2_54_93 2_62_81 set community 0:5022 ip community-list standard 2_61_207 permit 65000:2 0:61 0:207 ip community-list standard 2_69_183 permit 65000:2 0:69 0:183 route-map calculator permit 30257 match community 2_61_207 2_69_183 set community 0:12627 ip community-list standard 2_35_109 permit 65000:2 0:35 0:109 route-map calculator permit 30258 match community 2_35_109 set community 0:3815 ip community-list standard 2_159_195 permit 65000:2 0:159 0:195 route-map calculator permit 30259 match community 2_159_195 set community 0:31005 ip community-list standard 2_36_235 permit 65000:2 0:36 0:235 ip community-list standard 2_45_188 permit 65000:2 0:45 0:188 ip community-list standard 2_47_180 permit 65000:2 0:47 0:180 ip community-list standard 2_60_141 permit 65000:2 0:60 0:141 ip community-list standard 2_90_94 permit 65000:2 0:90 0:94 route-map calculator permit 30260 match community 2_36_235 2_45_188 2_47_180 2_60_141 2_90_94 set community 0:8460 ip community-list standard 2_141_169 permit 65000:2 0:141 0:169 route-map calculator permit 30261 match community 2_141_169 set community 0:23829 ip community-list standard 2_143_193 permit 65000:2 0:143 0:193 route-map calculator permit 30262 match community 2_143_193 set community 0:27599 ip community-list standard 2_212_234 permit 65000:2 0:212 0:234 route-map calculator permit 30263 match community 2_212_234 set community 0:49608 ip community-list standard 2_191_214 permit 65000:2 0:191 0:214 route-map calculator permit 30264 match community 2_191_214 set community 0:40874 ip community-list standard 2_50_213 permit 65000:2 0:50 0:213 ip community-list standard 2_71_150 permit 65000:2 0:71 0:150 ip community-list standard 2_75_142 permit 65000:2 0:75 0:142 route-map calculator permit 30265 match community 2_50_213 2_71_150 2_75_142 set community 0:10650 ip community-list standard 2_24_157 permit 65000:2 0:24 0:157 route-map calculator permit 30266 match community 2_24_157 set community 0:3768 ip community-list standard 2_109_245 permit 65000:2 0:109 0:245 route-map calculator permit 30267 match community 2_109_245 set community 0:26705 ip community-list standard 2_226_230 permit 65000:2 0:226 0:230 route-map calculator permit 30268 match community 2_226_230 set community 0:51980 ip community-list standard 2_55_103 permit 65000:2 0:55 0:103 route-map calculator permit 30269 match community 2_55_103 set community 0:5665 ip community-list standard 2_181_223 permit 65000:2 0:181 0:223 route-map calculator permit 30270 match community 2_181_223 set community 0:40363 ip community-list standard 2_34_173 permit 65000:2 0:34 0:173 route-map calculator permit 30271 match community 2_34_173 set community 0:5882 ip community-list standard 2_190_237 permit 65000:2 0:190 0:237 route-map calculator permit 30272 match community 2_190_237 set community 0:45030 ip community-list standard 2_116_179 permit 65000:2 0:116 0:179 route-map calculator permit 30273 match community 2_116_179 set community 0:20764 ip community-list standard 2_84_223 permit 65000:2 0:84 0:223 route-map calculator permit 30274 match community 2_84_223 set community 0:18732 ip community-list standard 2_129_239 permit 65000:2 0:129 0:239 route-map calculator permit 30275 match community 2_129_239 set community 0:30831 ip community-list standard 2_89_203 permit 65000:2 0:89 0:203 route-map calculator permit 30276 match community 2_89_203 set community 0:18067 ip community-list standard 2_3_195 permit 65000:2 0:3 0:195 ip community-list standard 2_5_117 permit 65000:2 0:5 0:117 ip community-list standard 2_9_65 permit 65000:2 0:9 0:65 ip community-list standard 2_13_45 permit 65000:2 0:13 0:45 ip community-list standard 2_15_39 permit 65000:2 0:15 0:39 route-map calculator permit 30277 match community 2_3_195 2_5_117 2_9_65 2_13_45 2_15_39 set community 0:585 ip community-list standard 2_141_196 permit 65000:2 0:141 0:196 ip community-list standard 2_147_188 permit 65000:2 0:147 0:188 route-map calculator permit 30278 match community 2_141_196 2_147_188 set community 0:27636 ip community-list standard 2_179_197 permit 65000:2 0:179 0:197 route-map calculator permit 30279 match community 2_179_197 set community 0:35263 ip community-list standard 2_65_201 permit 65000:2 0:65 0:201 ip community-list standard 2_67_195 permit 65000:2 0:67 0:195 route-map calculator permit 30280 match community 2_65_201 2_67_195 set community 0:13065 ip community-list standard 2_66_238 permit 65000:2 0:66 0:238 ip community-list standard 2_68_231 permit 65000:2 0:68 0:231 ip community-list standard 2_77_204 permit 65000:2 0:77 0:204 ip community-list standard 2_84_187 permit 65000:2 0:84 0:187 ip community-list standard 2_102_154 permit 65000:2 0:102 0:154 ip community-list standard 2_119_132 permit 65000:2 0:119 0:132 route-map calculator permit 30281 match community 2_66_238 2_68_231 2_77_204 2_84_187 2_102_154 set community 0:15708 route-map calculator permit 30282 match community 2_119_132 set community 0:15708 ip community-list standard 2_181_191 permit 65000:2 0:181 0:191 route-map calculator permit 30283 match community 2_181_191 set community 0:34571 ip community-list standard 2_72_225 permit 65000:2 0:72 0:225 ip community-list standard 2_75_216 permit 65000:2 0:75 0:216 ip community-list standard 2_81_200 permit 65000:2 0:81 0:200 ip community-list standard 2_90_180 permit 65000:2 0:90 0:180 ip community-list standard 2_100_162 permit 65000:2 0:100 0:162 ip community-list standard 2_108_150 permit 65000:2 0:108 0:150 ip community-list standard 2_120_135 permit 65000:2 0:120 0:135 route-map calculator permit 30284 match community 2_72_225 2_75_216 2_81_200 2_90_180 2_100_162 set community 0:16200 route-map calculator permit 30285 match community 2_108_150 2_120_135 set community 0:16200 ip community-list standard 2_155_167 permit 65000:2 0:155 0:167 route-map calculator permit 30286 match community 2_155_167 set community 0:25885 ip community-list standard 2_150_197 permit 65000:2 0:150 0:197 route-map calculator permit 30287 match community 2_150_197 set community 0:29550 ip community-list standard 2_95_127 permit 65000:2 0:95 0:127 route-map calculator permit 30288 match community 2_95_127 set community 0:12065 ip community-list standard 2_57_205 permit 65000:2 0:57 0:205 ip community-list standard 2_95_123 permit 65000:2 0:95 0:123 route-map calculator permit 30289 match community 2_57_205 2_95_123 set community 0:11685 ip community-list standard 2_192_194 permit 65000:2 0:192 0:194 route-map calculator permit 30290 match community 2_192_194 set community 0:37248 ip community-list standard 2_103_246 permit 65000:2 0:103 0:246 ip community-list standard 2_123_206 permit 65000:2 0:123 0:206 route-map calculator permit 30291 match community 2_103_246 2_123_206 set community 0:25338 ip community-list standard 2_50_221 permit 65000:2 0:50 0:221 ip community-list standard 2_65_170 permit 65000:2 0:65 0:170 ip community-list standard 2_85_130 permit 65000:2 0:85 0:130 route-map calculator permit 30292 match community 2_50_221 2_65_170 2_85_130 set community 0:11050 ip community-list standard 2_41_157 permit 65000:2 0:41 0:157 route-map calculator permit 30293 match community 2_41_157 set community 0:6437 ip community-list standard 2_31_131 permit 65000:2 0:31 0:131 route-map calculator permit 30294 match community 2_31_131 set community 0:4061 ip community-list standard 2_105_163 permit 65000:2 0:105 0:163 route-map calculator permit 30295 match community 2_105_163 set community 0:17115 ip community-list standard 2_50_218 permit 65000:2 0:50 0:218 ip community-list standard 2_100_109 permit 65000:2 0:100 0:109 route-map calculator permit 30296 match community 2_50_218 2_100_109 set community 0:10900 ip community-list standard 2_128_243 permit 65000:2 0:128 0:243 ip community-list standard 2_144_216 permit 65000:2 0:144 0:216 ip community-list standard 2_162_192 permit 65000:2 0:162 0:192 route-map calculator permit 30297 match community 2_128_243 2_144_216 2_162_192 set community 0:31104 ip community-list standard 2_41_109 permit 65000:2 0:41 0:109 route-map calculator permit 30298 match community 2_41_109 set community 0:4469 ip community-list standard 2_8_252 permit 65000:2 0:8 0:252 ip community-list standard 2_9_224 permit 65000:2 0:9 0:224 ip community-list standard 2_12_168 permit 65000:2 0:12 0:168 ip community-list standard 2_14_144 permit 65000:2 0:14 0:144 ip community-list standard 2_16_126 permit 65000:2 0:16 0:126 ip community-list standard 2_18_112 permit 65000:2 0:18 0:112 ip community-list standard 2_21_96 permit 65000:2 0:21 0:96 ip community-list standard 2_24_84 permit 65000:2 0:24 0:84 ip community-list standard 2_28_72 permit 65000:2 0:28 0:72 ip community-list standard 2_32_63 permit 65000:2 0:32 0:63 ip community-list standard 2_36_56 permit 65000:2 0:36 0:56 ip community-list standard 2_42_48 permit 65000:2 0:42 0:48 route-map calculator permit 30299 match community 2_8_252 2_9_224 2_12_168 2_14_144 2_16_126 set community 0:2016 route-map calculator permit 30300 match community 2_18_112 2_21_96 2_24_84 2_28_72 2_32_63 set community 0:2016 route-map calculator permit 30301 match community 2_36_56 2_42_48 set community 0:2016 ip community-list standard 2_2_168 permit 65000:2 0:2 0:168 ip community-list standard 2_3_112 permit 65000:2 0:3 0:112 ip community-list standard 2_4_84 permit 65000:2 0:4 0:84 ip community-list standard 2_6_56 permit 65000:2 0:6 0:56 ip community-list standard 2_7_48 permit 65000:2 0:7 0:48 ip community-list standard 2_8_42 permit 65000:2 0:8 0:42 ip community-list standard 2_12_28 permit 65000:2 0:12 0:28 ip community-list standard 2_14_24 permit 65000:2 0:14 0:24 ip community-list standard 2_16_21 permit 65000:2 0:16 0:21 ip community-list standard 1_80_256 permit 65000:1 0:80 0:256 ip community-list standard 1_81_255 permit 65000:1 0:81 0:255 ip community-list standard 1_82_254 permit 65000:1 0:82 0:254 ip community-list standard 1_83_253 permit 65000:1 0:83 0:253 ip community-list standard 1_84_252 permit 65000:1 0:84 0:252 ip community-list standard 1_85_251 permit 65000:1 0:85 0:251 ip community-list standard 1_86_250 permit 65000:1 0:86 0:250 ip community-list standard 1_87_249 permit 65000:1 0:87 0:249 ip community-list standard 1_88_248 permit 65000:1 0:88 0:248 ip community-list standard 1_89_247 permit 65000:1 0:89 0:247 ip community-list standard 1_90_246 permit 65000:1 0:90 0:246 ip community-list standard 1_91_245 permit 65000:1 0:91 0:245 ip community-list standard 1_92_244 permit 65000:1 0:92 0:244 ip community-list standard 1_93_243 permit 65000:1 0:93 0:243 ip community-list standard 1_94_242 permit 65000:1 0:94 0:242 ip community-list standard 1_95_241 permit 65000:1 0:95 0:241 ip community-list standard 1_96_240 permit 65000:1 0:96 0:240 ip community-list standard 1_97_239 permit 65000:1 0:97 0:239 ip community-list standard 1_98_238 permit 65000:1 0:98 0:238 ip community-list standard 1_99_237 permit 65000:1 0:99 0:237 ip community-list standard 1_100_236 permit 65000:1 0:100 0:236 ip community-list standard 1_101_235 permit 65000:1 0:101 0:235 ip community-list standard 1_102_234 permit 65000:1 0:102 0:234 ip community-list standard 1_103_233 permit 65000:1 0:103 0:233 ip community-list standard 1_104_232 permit 65000:1 0:104 0:232 ip community-list standard 1_105_231 permit 65000:1 0:105 0:231 ip community-list standard 1_106_230 permit 65000:1 0:106 0:230 ip community-list standard 1_107_229 permit 65000:1 0:107 0:229 ip community-list standard 1_108_228 permit 65000:1 0:108 0:228 ip community-list standard 1_109_227 permit 65000:1 0:109 0:227 ip community-list standard 1_110_226 permit 65000:1 0:110 0:226 ip community-list standard 1_111_225 permit 65000:1 0:111 0:225 ip community-list standard 1_112_224 permit 65000:1 0:112 0:224 ip community-list standard 1_113_223 permit 65000:1 0:113 0:223 ip community-list standard 1_114_222 permit 65000:1 0:114 0:222 ip community-list standard 1_115_221 permit 65000:1 0:115 0:221 ip community-list standard 1_116_220 permit 65000:1 0:116 0:220 ip community-list standard 1_117_219 permit 65000:1 0:117 0:219 ip community-list standard 1_118_218 permit 65000:1 0:118 0:218 ip community-list standard 1_119_217 permit 65000:1 0:119 0:217 ip community-list standard 1_120_216 permit 65000:1 0:120 0:216 ip community-list standard 1_121_215 permit 65000:1 0:121 0:215 ip community-list standard 1_122_214 permit 65000:1 0:122 0:214 ip community-list standard 1_123_213 permit 65000:1 0:123 0:213 ip community-list standard 1_124_212 permit 65000:1 0:124 0:212 ip community-list standard 1_125_211 permit 65000:1 0:125 0:211 ip community-list standard 1_126_210 permit 65000:1 0:126 0:210 ip community-list standard 1_127_209 permit 65000:1 0:127 0:209 ip community-list standard 1_128_208 permit 65000:1 0:128 0:208 ip community-list standard 1_129_207 permit 65000:1 0:129 0:207 ip community-list standard 1_130_206 permit 65000:1 0:130 0:206 ip community-list standard 1_131_205 permit 65000:1 0:131 0:205 ip community-list standard 1_132_204 permit 65000:1 0:132 0:204 ip community-list standard 1_133_203 permit 65000:1 0:133 0:203 ip community-list standard 1_134_202 permit 65000:1 0:134 0:202 ip community-list standard 1_135_201 permit 65000:1 0:135 0:201 ip community-list standard 1_136_200 permit 65000:1 0:136 0:200 ip community-list standard 1_137_199 permit 65000:1 0:137 0:199 ip community-list standard 1_138_198 permit 65000:1 0:138 0:198 ip community-list standard 1_139_197 permit 65000:1 0:139 0:197 ip community-list standard 1_140_196 permit 65000:1 0:140 0:196 ip community-list standard 1_141_195 permit 65000:1 0:141 0:195 ip community-list standard 1_142_194 permit 65000:1 0:142 0:194 ip community-list standard 1_143_193 permit 65000:1 0:143 0:193 ip community-list standard 1_144_192 permit 65000:1 0:144 0:192 ip community-list standard 1_145_191 permit 65000:1 0:145 0:191 ip community-list standard 1_146_190 permit 65000:1 0:146 0:190 ip community-list standard 1_147_189 permit 65000:1 0:147 0:189 ip community-list standard 1_148_188 permit 65000:1 0:148 0:188 ip community-list standard 1_149_187 permit 65000:1 0:149 0:187 ip community-list standard 1_150_186 permit 65000:1 0:150 0:186 ip community-list standard 1_151_185 permit 65000:1 0:151 0:185 ip community-list standard 1_152_184 permit 65000:1 0:152 0:184 ip community-list standard 1_153_183 permit 65000:1 0:153 0:183 ip community-list standard 1_154_182 permit 65000:1 0:154 0:182 ip community-list standard 1_155_181 permit 65000:1 0:155 0:181 ip community-list standard 1_156_180 permit 65000:1 0:156 0:180 ip community-list standard 1_157_179 permit 65000:1 0:157 0:179 ip community-list standard 1_158_178 permit 65000:1 0:158 0:178 ip community-list standard 1_159_177 permit 65000:1 0:159 0:177 ip community-list standard 1_160_176 permit 65000:1 0:160 0:176 ip community-list standard 1_161_175 permit 65000:1 0:161 0:175 ip community-list standard 1_162_174 permit 65000:1 0:162 0:174 ip community-list standard 1_163_173 permit 65000:1 0:163 0:173 ip community-list standard 1_164_172 permit 65000:1 0:164 0:172 ip community-list standard 1_165_171 permit 65000:1 0:165 0:171 ip community-list standard 1_166_170 permit 65000:1 0:166 0:170 ip community-list standard 1_167_169 permit 65000:1 0:167 0:169 ip community-list standard 1_168_168 permit 65000:1 0:168 0:168 route-map calculator permit 30302 match community 2_2_168 2_3_112 2_4_84 2_6_56 2_7_48 set community 0:336 route-map calculator permit 30303 match community 2_8_42 2_12_28 2_14_24 2_16_21 1_80_256 set community 0:336 route-map calculator permit 30304 match community 1_81_255 1_82_254 1_83_253 1_84_252 1_85_251 set community 0:336 route-map calculator permit 30305 match community 1_86_250 1_87_249 1_88_248 1_89_247 1_90_246 set community 0:336 route-map calculator permit 30306 match community 1_91_245 1_92_244 1_93_243 1_94_242 1_95_241 set community 0:336 route-map calculator permit 30307 match community 1_96_240 1_97_239 1_98_238 1_99_237 1_100_236 set community 0:336 route-map calculator permit 30308 match community 1_101_235 1_102_234 1_103_233 1_104_232 1_105_231 set community 0:336 route-map calculator permit 30309 match community 1_106_230 1_107_229 1_108_228 1_109_227 1_110_226 set community 0:336 route-map calculator permit 30310 match community 1_111_225 1_112_224 1_113_223 1_114_222 1_115_221 set community 0:336 route-map calculator permit 30311 match community 1_116_220 1_117_219 1_118_218 1_119_217 1_120_216 set community 0:336 route-map calculator permit 30312 match community 1_121_215 1_122_214 1_123_213 1_124_212 1_125_211 set community 0:336 route-map calculator permit 30313 match community 1_126_210 1_127_209 1_128_208 1_129_207 1_130_206 set community 0:336 route-map calculator permit 30314 match community 1_131_205 1_132_204 1_133_203 1_134_202 1_135_201 set community 0:336 route-map calculator permit 30315 match community 1_136_200 1_137_199 1_138_198 1_139_197 1_140_196 set community 0:336 route-map calculator permit 30316 match community 1_141_195 1_142_194 1_143_193 1_144_192 1_145_191 set community 0:336 route-map calculator permit 30317 match community 1_146_190 1_147_189 1_148_188 1_149_187 1_150_186 set community 0:336 route-map calculator permit 30318 match community 1_151_185 1_152_184 1_153_183 1_154_182 1_155_181 set community 0:336 route-map calculator permit 30319 match community 1_156_180 1_157_179 1_158_178 1_159_177 1_160_176 set community 0:336 route-map calculator permit 30320 match community 1_161_175 1_162_174 1_163_173 1_164_172 1_165_171 set community 0:336 route-map calculator permit 30321 match community 1_166_170 1_167_169 1_168_168 set community 0:336 ip community-list standard 2_170_253 permit 65000:2 0:170 0:253 ip community-list standard 2_187_230 permit 65000:2 0:187 0:230 route-map calculator permit 30322 match community 2_170_253 2_187_230 set community 0:43010 ip community-list standard 2_23_254 permit 65000:2 0:23 0:254 ip community-list standard 2_46_127 permit 65000:2 0:46 0:127 route-map calculator permit 30323 match community 2_23_254 2_46_127 set community 0:5842 ip community-list standard 2_109_223 permit 65000:2 0:109 0:223 route-map calculator permit 30324 match community 2_109_223 set community 0:24307 ip community-list standard 2_6_249 permit 65000:2 0:6 0:249 ip community-list standard 2_9_166 permit 65000:2 0:9 0:166 ip community-list standard 2_18_83 permit 65000:2 0:18 0:83 route-map calculator permit 30325 match community 2_6_249 2_9_166 2_18_83 set community 0:1494 ip community-list standard 2_78_212 permit 65000:2 0:78 0:212 ip community-list standard 2_104_159 permit 65000:2 0:104 0:159 ip community-list standard 2_106_156 permit 65000:2 0:106 0:156 route-map calculator permit 30326 match community 2_78_212 2_104_159 2_106_156 set community 0:16536 ip community-list standard 2_183_239 permit 65000:2 0:183 0:239 route-map calculator permit 30327 match community 2_183_239 set community 0:43737 ip community-list standard 2_39_107 permit 65000:2 0:39 0:107 route-map calculator permit 30328 match community 2_39_107 set community 0:4173 ip community-list standard 2_56_219 permit 65000:2 0:56 0:219 ip community-list standard 2_73_168 permit 65000:2 0:73 0:168 ip community-list standard 2_84_146 permit 65000:2 0:84 0:146 route-map calculator permit 30329 match community 2_56_219 2_73_168 2_84_146 set community 0:12264 ip community-list standard 2_155_231 permit 65000:2 0:155 0:231 ip community-list standard 2_165_217 permit 65000:2 0:165 0:217 route-map calculator permit 30330 match community 2_155_231 2_165_217 set community 0:35805 ip community-list standard 2_55_199 permit 65000:2 0:55 0:199 route-map calculator permit 30331 match community 2_55_199 set community 0:10945 ip community-list standard 2_177_215 permit 65000:2 0:177 0:215 route-map calculator permit 30332 match community 2_177_215 set community 0:38055 ip community-list standard 2_21_231 permit 65000:2 0:21 0:231 ip community-list standard 2_33_147 permit 65000:2 0:33 0:147 ip community-list standard 2_49_99 permit 65000:2 0:49 0:99 ip community-list standard 2_63_77 permit 65000:2 0:63 0:77 route-map calculator permit 30333 match community 2_21_231 2_33_147 2_49_99 2_63_77 set community 0:4851 ip community-list standard 2_55_232 permit 65000:2 0:55 0:232 ip community-list standard 2_58_220 permit 65000:2 0:58 0:220 ip community-list standard 2_88_145 permit 65000:2 0:88 0:145 ip community-list standard 2_110_116 permit 65000:2 0:110 0:116 route-map calculator permit 30334 match community 2_55_232 2_58_220 2_88_145 2_110_116 set community 0:12760 ip community-list standard 2_22_149 permit 65000:2 0:22 0:149 route-map calculator permit 30335 match community 2_22_149 set community 0:3278 ip community-list standard 2_11_103 permit 65000:2 0:11 0:103 route-map calculator permit 30336 match community 2_11_103 set community 0:1133 ip community-list standard 2_140_253 permit 65000:2 0:140 0:253 ip community-list standard 2_154_230 permit 65000:2 0:154 0:230 ip community-list standard 2_161_220 permit 65000:2 0:161 0:220 route-map calculator permit 30337 match community 2_140_253 2_154_230 2_161_220 set community 0:35420 ip community-list standard 2_31_220 permit 65000:2 0:31 0:220 ip community-list standard 2_44_155 permit 65000:2 0:44 0:155 ip community-list standard 2_55_124 permit 65000:2 0:55 0:124 ip community-list standard 2_62_110 permit 65000:2 0:62 0:110 route-map calculator permit 30338 match community 2_31_220 2_44_155 2_55_124 2_62_110 set community 0:6820 ip community-list standard 2_74_230 permit 65000:2 0:74 0:230 ip community-list standard 2_92_185 permit 65000:2 0:92 0:185 ip community-list standard 2_115_148 permit 65000:2 0:115 0:148 route-map calculator permit 30339 match community 2_74_230 2_92_185 2_115_148 set community 0:17020 ip community-list standard 2_131_134 permit 65000:2 0:131 0:134 route-map calculator permit 30340 match community 2_131_134 set community 0:17554 ip community-list standard 2_81_247 permit 65000:2 0:81 0:247 ip community-list standard 2_117_171 permit 65000:2 0:117 0:171 route-map calculator permit 30341 match community 2_81_247 2_117_171 set community 0:20007 ip community-list standard 2_56_167 permit 65000:2 0:56 0:167 route-map calculator permit 30342 match community 2_56_167 set community 0:9352 ip community-list standard 2_132_238 permit 65000:2 0:132 0:238 ip community-list standard 2_136_231 permit 65000:2 0:136 0:231 ip community-list standard 2_154_204 permit 65000:2 0:154 0:204 ip community-list standard 2_168_187 permit 65000:2 0:168 0:187 route-map calculator permit 30343 match community 2_132_238 2_136_231 2_154_204 2_168_187 set community 0:31416 ip community-list standard 2_43_171 permit 65000:2 0:43 0:171 ip community-list standard 2_57_129 permit 65000:2 0:57 0:129 route-map calculator permit 30344 match community 2_43_171 2_57_129 set community 0:7353 ip community-list standard 2_57_163 permit 65000:2 0:57 0:163 route-map calculator permit 30345 match community 2_57_163 set community 0:9291 ip community-list standard 2_214_216 permit 65000:2 0:214 0:216 route-map calculator permit 30346 match community 2_214_216 set community 0:46224 ip community-list standard 2_69_167 permit 65000:2 0:69 0:167 route-map calculator permit 30347 match community 2_69_167 set community 0:11523 ip community-list standard 2_101_103 permit 65000:2 0:101 0:103 route-map calculator permit 30348 match community 2_101_103 set community 0:10403 ip community-list standard 2_37_109 permit 65000:2 0:37 0:109 route-map calculator permit 30349 match community 2_37_109 set community 0:4033 ip community-list standard 2_51_194 permit 65000:2 0:51 0:194 ip community-list standard 2_97_102 permit 65000:2 0:97 0:102 route-map calculator permit 30350 match community 2_51_194 2_97_102 set community 0:9894 ip community-list standard 2_158_235 permit 65000:2 0:158 0:235 route-map calculator permit 30351 match community 2_158_235 set community 0:37130 ip community-list standard 1_1_116 permit 65000:1 0:1 0:116 ip community-list standard 2_1_117 permit 65000:2 0:1 0:117 ip community-list standard 1_2_115 permit 65000:1 0:2 0:115 ip community-list standard 2_3_39 permit 65000:2 0:3 0:39 ip community-list standard 1_3_114 permit 65000:1 0:3 0:114 ip community-list standard 1_4_113 permit 65000:1 0:4 0:113 ip community-list standard 1_5_112 permit 65000:1 0:5 0:112 ip community-list standard 1_6_111 permit 65000:1 0:6 0:111 ip community-list standard 1_7_110 permit 65000:1 0:7 0:110 ip community-list standard 1_8_109 permit 65000:1 0:8 0:109 ip community-list standard 2_9_13 permit 65000:2 0:9 0:13 ip community-list standard 1_9_108 permit 65000:1 0:9 0:108 ip community-list standard 1_10_107 permit 65000:1 0:10 0:107 ip community-list standard 1_11_106 permit 65000:1 0:11 0:106 ip community-list standard 1_12_105 permit 65000:1 0:12 0:105 ip community-list standard 1_13_104 permit 65000:1 0:13 0:104 ip community-list standard 1_14_103 permit 65000:1 0:14 0:103 ip community-list standard 1_15_102 permit 65000:1 0:15 0:102 ip community-list standard 1_16_101 permit 65000:1 0:16 0:101 ip community-list standard 1_17_100 permit 65000:1 0:17 0:100 ip community-list standard 1_18_99 permit 65000:1 0:18 0:99 ip community-list standard 1_19_98 permit 65000:1 0:19 0:98 ip community-list standard 1_20_97 permit 65000:1 0:20 0:97 ip community-list standard 1_21_96 permit 65000:1 0:21 0:96 ip community-list standard 1_22_95 permit 65000:1 0:22 0:95 ip community-list standard 1_23_94 permit 65000:1 0:23 0:94 ip community-list standard 1_24_93 permit 65000:1 0:24 0:93 ip community-list standard 1_25_92 permit 65000:1 0:25 0:92 ip community-list standard 1_26_91 permit 65000:1 0:26 0:91 ip community-list standard 1_27_90 permit 65000:1 0:27 0:90 ip community-list standard 1_28_89 permit 65000:1 0:28 0:89 ip community-list standard 1_29_88 permit 65000:1 0:29 0:88 ip community-list standard 1_30_87 permit 65000:1 0:30 0:87 ip community-list standard 1_31_86 permit 65000:1 0:31 0:86 ip community-list standard 1_32_85 permit 65000:1 0:32 0:85 ip community-list standard 1_33_84 permit 65000:1 0:33 0:84 ip community-list standard 1_34_83 permit 65000:1 0:34 0:83 ip community-list standard 1_35_82 permit 65000:1 0:35 0:82 ip community-list standard 1_36_81 permit 65000:1 0:36 0:81 ip community-list standard 1_37_80 permit 65000:1 0:37 0:80 ip community-list standard 1_38_79 permit 65000:1 0:38 0:79 ip community-list standard 1_39_78 permit 65000:1 0:39 0:78 ip community-list standard 1_40_77 permit 65000:1 0:40 0:77 ip community-list standard 1_41_76 permit 65000:1 0:41 0:76 ip community-list standard 1_42_75 permit 65000:1 0:42 0:75 ip community-list standard 1_43_74 permit 65000:1 0:43 0:74 ip community-list standard 1_44_73 permit 65000:1 0:44 0:73 ip community-list standard 1_45_72 permit 65000:1 0:45 0:72 ip community-list standard 1_46_71 permit 65000:1 0:46 0:71 ip community-list standard 1_47_70 permit 65000:1 0:47 0:70 ip community-list standard 1_48_69 permit 65000:1 0:48 0:69 ip community-list standard 1_49_68 permit 65000:1 0:49 0:68 ip community-list standard 1_50_67 permit 65000:1 0:50 0:67 ip community-list standard 1_51_66 permit 65000:1 0:51 0:66 ip community-list standard 1_52_65 permit 65000:1 0:52 0:65 ip community-list standard 1_53_64 permit 65000:1 0:53 0:64 ip community-list standard 1_54_63 permit 65000:1 0:54 0:63 ip community-list standard 1_55_62 permit 65000:1 0:55 0:62 ip community-list standard 1_56_61 permit 65000:1 0:56 0:61 ip community-list standard 1_57_60 permit 65000:1 0:57 0:60 ip community-list standard 1_58_59 permit 65000:1 0:58 0:59 ip community-list expanded c117 permit 1 ^65000:4_0:117_0:1$ ip community-list expanded c117 permit 2 ^65000:3_0:118_0:1$ ip community-list expanded c117 permit 3 ^65000:3_0:119_0:2$ ip community-list expanded c117 permit 4 ^65000:3_0:120_0:3$ ip community-list expanded c117 permit 5 ^65000:3_0:121_0:4$ ip community-list expanded c117 permit 6 ^65000:3_0:122_0:5$ ip community-list expanded c117 permit 7 ^65000:3_0:123_0:6$ ip community-list expanded c117 permit 8 ^65000:3_0:124_0:7$ ip community-list expanded c117 permit 9 ^65000:3_0:125_0:8$ ip community-list expanded c117 permit 10 ^65000:3_0:126_0:9$ ip community-list expanded c117 permit 11 ^65000:3_0:127_0:10$ ip community-list expanded c117 permit 12 ^65000:3_0:128_0:11$ ip community-list expanded c117 permit 13 ^65000:3_0:129_0:12$ ip community-list expanded c117 permit 14 ^65000:3_0:130_0:13$ ip community-list expanded c117 permit 15 ^65000:3_0:131_0:14$ ip community-list expanded c117 permit 16 ^65000:3_0:132_0:15$ ip community-list expanded c117 permit 17 ^65000:3_0:133_0:16$ ip community-list expanded c117 permit 18 ^65000:3_0:134_0:17$ ip community-list expanded c117 permit 19 ^65000:3_0:135_0:18$ ip community-list expanded c117 permit 20 ^65000:3_0:136_0:19$ ip community-list expanded c117 permit 21 ^65000:3_0:137_0:20$ ip community-list expanded c117 permit 22 ^65000:3_0:138_0:21$ ip community-list expanded c117 permit 23 ^65000:3_0:139_0:22$ ip community-list expanded c117 permit 24 ^65000:3_0:140_0:23$ ip community-list expanded c117 permit 25 ^65000:3_0:141_0:24$ ip community-list expanded c117 permit 26 ^65000:3_0:142_0:25$ ip community-list expanded c117 permit 27 ^65000:3_0:143_0:26$ ip community-list expanded c117 permit 28 ^65000:3_0:144_0:27$ ip community-list expanded c117 permit 29 ^65000:3_0:145_0:28$ ip community-list expanded c117 permit 30 ^65000:3_0:146_0:29$ ip community-list expanded c117 permit 31 ^65000:3_0:147_0:30$ ip community-list expanded c117 permit 32 ^65000:3_0:148_0:31$ ip community-list expanded c117 permit 33 ^65000:3_0:149_0:32$ ip community-list expanded c117 permit 34 ^65000:3_0:150_0:33$ ip community-list expanded c117 permit 35 ^65000:3_0:151_0:34$ ip community-list expanded c117 permit 36 ^65000:3_0:152_0:35$ ip community-list expanded c117 permit 37 ^65000:3_0:153_0:36$ ip community-list expanded c117 permit 38 ^65000:3_0:154_0:37$ ip community-list expanded c117 permit 39 ^65000:3_0:155_0:38$ ip community-list expanded c117 permit 40 ^65000:3_0:156_0:39$ ip community-list expanded c117 permit 41 ^65000:3_0:157_0:40$ ip community-list expanded c117 permit 42 ^65000:3_0:158_0:41$ ip community-list expanded c117 permit 43 ^65000:3_0:159_0:42$ ip community-list expanded c117 permit 44 ^65000:3_0:160_0:43$ ip community-list expanded c117 permit 45 ^65000:3_0:161_0:44$ ip community-list expanded c117 permit 46 ^65000:3_0:162_0:45$ ip community-list expanded c117 permit 47 ^65000:3_0:163_0:46$ ip community-list expanded c117 permit 48 ^65000:3_0:164_0:47$ ip community-list expanded c117 permit 49 ^65000:3_0:165_0:48$ ip community-list expanded c117 permit 50 ^65000:3_0:166_0:49$ ip community-list expanded c117 permit 51 ^65000:3_0:167_0:50$ ip community-list expanded c117 permit 52 ^65000:3_0:168_0:51$ ip community-list expanded c117 permit 53 ^65000:3_0:169_0:52$ ip community-list expanded c117 permit 54 ^65000:3_0:170_0:53$ ip community-list expanded c117 permit 55 ^65000:3_0:171_0:54$ ip community-list expanded c117 permit 56 ^65000:3_0:172_0:55$ ip community-list expanded c117 permit 57 ^65000:3_0:173_0:56$ ip community-list expanded c117 permit 58 ^65000:3_0:174_0:57$ ip community-list expanded c117 permit 59 ^65000:3_0:175_0:58$ ip community-list expanded c117 permit 60 ^65000:3_0:176_0:59$ ip community-list expanded c117 permit 61 ^65000:3_0:177_0:60$ ip community-list expanded c117 permit 62 ^65000:3_0:178_0:61$ ip community-list expanded c117 permit 63 ^65000:3_0:179_0:62$ ip community-list expanded c117 permit 64 ^65000:3_0:180_0:63$ ip community-list expanded c117 permit 65 ^65000:3_0:181_0:64$ ip community-list expanded c117 permit 66 ^65000:3_0:182_0:65$ ip community-list expanded c117 permit 67 ^65000:3_0:183_0:66$ ip community-list expanded c117 permit 68 ^65000:3_0:184_0:67$ ip community-list expanded c117 permit 69 ^65000:3_0:185_0:68$ ip community-list expanded c117 permit 70 ^65000:3_0:186_0:69$ ip community-list expanded c117 permit 71 ^65000:3_0:187_0:70$ ip community-list expanded c117 permit 72 ^65000:3_0:188_0:71$ ip community-list expanded c117 permit 73 ^65000:3_0:189_0:72$ ip community-list expanded c117 permit 74 ^65000:3_0:190_0:73$ ip community-list expanded c117 permit 75 ^65000:3_0:191_0:74$ ip community-list expanded c117 permit 76 ^65000:3_0:192_0:75$ ip community-list expanded c117 permit 77 ^65000:3_0:193_0:76$ ip community-list expanded c117 permit 78 ^65000:3_0:194_0:77$ ip community-list expanded c117 permit 79 ^65000:3_0:195_0:78$ ip community-list expanded c117 permit 80 ^65000:3_0:196_0:79$ ip community-list expanded c117 permit 81 ^65000:3_0:197_0:80$ ip community-list expanded c117 permit 82 ^65000:3_0:198_0:81$ ip community-list expanded c117 permit 83 ^65000:3_0:199_0:82$ ip community-list expanded c117 permit 84 ^65000:3_0:200_0:83$ ip community-list expanded c117 permit 85 ^65000:3_0:201_0:84$ ip community-list expanded c117 permit 86 ^65000:3_0:202_0:85$ ip community-list expanded c117 permit 87 ^65000:3_0:203_0:86$ ip community-list expanded c117 permit 88 ^65000:3_0:204_0:87$ ip community-list expanded c117 permit 89 ^65000:3_0:205_0:88$ ip community-list expanded c117 permit 90 ^65000:3_0:206_0:89$ ip community-list expanded c117 permit 91 ^65000:3_0:207_0:90$ ip community-list expanded c117 permit 92 ^65000:3_0:208_0:91$ ip community-list expanded c117 permit 93 ^65000:3_0:209_0:92$ ip community-list expanded c117 permit 94 ^65000:3_0:210_0:93$ ip community-list expanded c117 permit 95 ^65000:3_0:211_0:94$ ip community-list expanded c117 permit 96 ^65000:3_0:212_0:95$ ip community-list expanded c117 permit 97 ^65000:3_0:213_0:96$ ip community-list expanded c117 permit 98 ^65000:3_0:214_0:97$ ip community-list expanded c117 permit 99 ^65000:3_0:215_0:98$ ip community-list expanded c117 permit 100 ^65000:3_0:216_0:99$ ip community-list expanded c117 permit 101 ^65000:3_0:217_0:100$ ip community-list expanded c117 permit 102 ^65000:3_0:218_0:101$ ip community-list expanded c117 permit 103 ^65000:3_0:219_0:102$ ip community-list expanded c117 permit 104 ^65000:3_0:220_0:103$ ip community-list expanded c117 permit 105 ^65000:3_0:221_0:104$ ip community-list expanded c117 permit 106 ^65000:3_0:222_0:105$ ip community-list expanded c117 permit 107 ^65000:3_0:223_0:106$ ip community-list expanded c117 permit 108 ^65000:3_0:224_0:107$ ip community-list expanded c117 permit 109 ^65000:3_0:225_0:108$ ip community-list expanded c117 permit 110 ^65000:3_0:226_0:109$ ip community-list expanded c117 permit 111 ^65000:3_0:227_0:110$ ip community-list expanded c117 permit 112 ^65000:3_0:228_0:111$ ip community-list expanded c117 permit 113 ^65000:3_0:229_0:112$ ip community-list expanded c117 permit 114 ^65000:3_0:230_0:113$ ip community-list expanded c117 permit 115 ^65000:3_0:231_0:114$ ip community-list expanded c117 permit 116 ^65000:3_0:232_0:115$ ip community-list expanded c117 permit 117 ^65000:3_0:233_0:116$ ip community-list expanded c117 permit 118 ^65000:4_0:234_0:2$ ip community-list expanded c117 permit 119 ^65000:3_0:234_0:117$ ip community-list expanded c117 permit 120 ^65000:4_0:235_0:2$ ip community-list expanded c117 permit 121 ^65000:3_0:235_0:118$ ip community-list expanded c117 permit 122 ^65000:3_0:236_0:119$ ip community-list expanded c117 permit 123 ^65000:3_0:237_0:120$ ip community-list expanded c117 permit 124 ^65000:3_0:238_0:121$ ip community-list expanded c117 permit 125 ^65000:3_0:239_0:122$ ip community-list expanded c117 permit 126 ^65000:3_0:240_0:123$ ip community-list expanded c117 permit 127 ^65000:3_0:241_0:124$ ip community-list expanded c117 permit 128 ^65000:3_0:242_0:125$ ip community-list expanded c117 permit 129 ^65000:3_0:243_0:126$ ip community-list expanded c117 permit 130 ^65000:3_0:244_0:127$ ip community-list expanded c117 permit 131 ^65000:3_0:245_0:128$ ip community-list expanded c117 permit 132 ^65000:3_0:246_0:129$ ip community-list expanded c117 permit 133 ^65000:3_0:247_0:130$ ip community-list expanded c117 permit 134 ^65000:3_0:248_0:131$ ip community-list expanded c117 permit 135 ^65000:3_0:249_0:132$ ip community-list expanded c117 permit 136 ^65000:3_0:250_0:133$ ip community-list expanded c117 permit 137 ^65000:3_0:251_0:134$ ip community-list expanded c117 permit 138 ^65000:3_0:252_0:135$ ip community-list expanded c117 permit 139 ^65000:3_0:253_0:136$ ip community-list expanded c117 permit 140 ^65000:3_0:254_0:137$ ip community-list expanded c117 permit 141 ^65000:3_0:255_0:138$ ip community-list expanded c117 permit 142 ^65000:3_0:256_0:139$ route-map calculator permit 30352 match community 1_1_116 2_1_117 1_2_115 2_3_39 1_3_114 set community 0:117 route-map calculator permit 30353 match community 1_4_113 1_5_112 1_6_111 1_7_110 1_8_109 set community 0:117 route-map calculator permit 30354 match community 2_9_13 1_9_108 1_10_107 1_11_106 1_12_105 set community 0:117 route-map calculator permit 30355 match community 1_13_104 1_14_103 1_15_102 1_16_101 1_17_100 set community 0:117 route-map calculator permit 30356 match community 1_18_99 1_19_98 1_20_97 1_21_96 1_22_95 set community 0:117 route-map calculator permit 30357 match community 1_23_94 1_24_93 1_25_92 1_26_91 1_27_90 set community 0:117 route-map calculator permit 30358 match community 1_28_89 1_29_88 1_30_87 1_31_86 1_32_85 set community 0:117 route-map calculator permit 30359 match community 1_33_84 1_34_83 1_35_82 1_36_81 1_37_80 set community 0:117 route-map calculator permit 30360 match community 1_38_79 1_39_78 1_40_77 1_41_76 1_42_75 set community 0:117 route-map calculator permit 30361 match community 1_43_74 1_44_73 1_45_72 1_46_71 1_47_70 set community 0:117 route-map calculator permit 30362 match community 1_48_69 1_49_68 1_50_67 1_51_66 1_52_65 set community 0:117 route-map calculator permit 30363 match community 1_53_64 1_54_63 1_55_62 1_56_61 1_57_60 set community 0:117 route-map calculator permit 30364 match community 1_58_59 c4_117_1 c3_118_1 c3_119_2 c3_120_3 set community 0:117 route-map calculator permit 30365 match community c3_121_4 c3_122_5 c3_123_6 c3_124_7 c3_125_8 set community 0:117 route-map calculator permit 30366 match community c3_126_9 c3_127_10 c3_128_11 c3_129_12 c3_130_13 set community 0:117 route-map calculator permit 30367 match community c3_131_14 c3_132_15 c3_133_16 c3_134_17 c3_135_18 set community 0:117 route-map calculator permit 30368 match community c3_136_19 c3_137_20 c3_138_21 c3_139_22 c3_140_23 set community 0:117 route-map calculator permit 30369 match community c3_141_24 c3_142_25 c3_143_26 c3_144_27 c3_145_28 set community 0:117 route-map calculator permit 30370 match community c3_146_29 c3_147_30 c3_148_31 c3_149_32 c3_150_33 set community 0:117 route-map calculator permit 30371 match community c3_151_34 c3_152_35 c3_153_36 c3_154_37 c3_155_38 set community 0:117 route-map calculator permit 30372 match community c3_156_39 c3_157_40 c3_158_41 c3_159_42 c3_160_43 set community 0:117 route-map calculator permit 30373 match community c3_161_44 c3_162_45 c3_163_46 c3_164_47 c3_165_48 set community 0:117 route-map calculator permit 30374 match community c3_166_49 c3_167_50 c3_168_51 c3_169_52 c3_170_53 set community 0:117 route-map calculator permit 30375 match community c3_171_54 c3_172_55 c3_173_56 c3_174_57 c3_175_58 set community 0:117 route-map calculator permit 30376 match community c3_176_59 c3_177_60 c3_178_61 c3_179_62 c3_180_63 set community 0:117 route-map calculator permit 30377 match community c3_181_64 c3_182_65 c3_183_66 c3_184_67 c3_185_68 set community 0:117 route-map calculator permit 30378 match community c3_186_69 c3_187_70 c3_188_71 c3_189_72 c3_190_73 set community 0:117 route-map calculator permit 30379 match community c3_191_74 c3_192_75 c3_193_76 c3_194_77 c3_195_78 set community 0:117 route-map calculator permit 30380 match community c3_196_79 c3_197_80 c3_198_81 c3_199_82 c3_200_83 set community 0:117 route-map calculator permit 30381 match community c3_201_84 c3_202_85 c3_203_86 c3_204_87 c3_205_88 set community 0:117 route-map calculator permit 30382 match community c3_206_89 c3_207_90 c3_208_91 c3_209_92 c3_210_93 set community 0:117 route-map calculator permit 30383 match community c3_211_94 c3_212_95 c3_213_96 c3_214_97 c3_215_98 set community 0:117 route-map calculator permit 30384 match community c3_216_99 c3_217_100 c3_218_101 c3_219_102 c3_220_103 set community 0:117 route-map calculator permit 30385 match community c3_221_104 c3_222_105 c3_223_106 c3_224_107 c3_225_108 set community 0:117 route-map calculator permit 30386 match community c3_226_109 c3_227_110 c3_228_111 c3_229_112 c3_230_113 set community 0:117 route-map calculator permit 30387 match community c3_231_114 c3_232_115 c3_233_116 c4_234_2 c3_234_117 set community 0:117 route-map calculator permit 30388 match community c4_235_2 c3_235_118 c3_236_119 c3_237_120 c3_238_121 set community 0:117 route-map calculator permit 30389 match community c3_239_122 c3_240_123 c3_241_124 c3_242_125 c3_243_126 set community 0:117 route-map calculator permit 30390 match community c3_244_127 c3_245_128 c3_246_129 c3_247_130 c3_248_131 set community 0:117 route-map calculator permit 30391 match community c3_249_132 c3_250_133 c3_251_134 c3_252_135 c3_253_136 set community 0:117 route-map calculator permit 30392 match community c3_254_137 c3_255_138 c3_256_139 set community 0:117 ip community-list standard 2_186_222 permit 65000:2 0:186 0:222 route-map calculator permit 30393 match community 2_186_222 set community 0:41292 ip community-list standard 2_211_239 permit 65000:2 0:211 0:239 route-map calculator permit 30394 match community 2_211_239 set community 0:50429 ip community-list standard 2_161_217 permit 65000:2 0:161 0:217 route-map calculator permit 30395 match community 2_161_217 set community 0:34937 ip community-list standard 2_127_213 permit 65000:2 0:127 0:213 route-map calculator permit 30396 match community 2_127_213 set community 0:27051 ip community-list standard 2_75_211 permit 65000:2 0:75 0:211 route-map calculator permit 30397 match community 2_75_211 set community 0:15825 ip community-list standard 1_1_192 permit 65000:1 0:1 0:192 ip community-list standard 2_1_193 permit 65000:2 0:1 0:193 ip community-list standard 1_2_191 permit 65000:1 0:2 0:191 ip community-list standard 1_3_190 permit 65000:1 0:3 0:190 ip community-list standard 1_4_189 permit 65000:1 0:4 0:189 ip community-list standard 1_5_188 permit 65000:1 0:5 0:188 ip community-list standard 1_6_187 permit 65000:1 0:6 0:187 ip community-list standard 1_7_186 permit 65000:1 0:7 0:186 ip community-list standard 1_8_185 permit 65000:1 0:8 0:185 ip community-list standard 1_9_184 permit 65000:1 0:9 0:184 ip community-list standard 1_10_183 permit 65000:1 0:10 0:183 ip community-list standard 1_11_182 permit 65000:1 0:11 0:182 ip community-list standard 1_12_181 permit 65000:1 0:12 0:181 ip community-list standard 1_13_180 permit 65000:1 0:13 0:180 ip community-list standard 1_14_179 permit 65000:1 0:14 0:179 ip community-list standard 1_15_178 permit 65000:1 0:15 0:178 ip community-list standard 1_16_177 permit 65000:1 0:16 0:177 ip community-list standard 1_17_176 permit 65000:1 0:17 0:176 ip community-list standard 1_18_175 permit 65000:1 0:18 0:175 ip community-list standard 1_19_174 permit 65000:1 0:19 0:174 ip community-list standard 1_20_173 permit 65000:1 0:20 0:173 ip community-list standard 1_21_172 permit 65000:1 0:21 0:172 ip community-list standard 1_22_171 permit 65000:1 0:22 0:171 ip community-list standard 1_23_170 permit 65000:1 0:23 0:170 ip community-list standard 1_24_169 permit 65000:1 0:24 0:169 ip community-list standard 1_25_168 permit 65000:1 0:25 0:168 ip community-list standard 1_26_167 permit 65000:1 0:26 0:167 ip community-list standard 1_27_166 permit 65000:1 0:27 0:166 ip community-list standard 1_28_165 permit 65000:1 0:28 0:165 ip community-list standard 1_29_164 permit 65000:1 0:29 0:164 ip community-list standard 1_30_163 permit 65000:1 0:30 0:163 ip community-list standard 1_31_162 permit 65000:1 0:31 0:162 ip community-list standard 1_32_161 permit 65000:1 0:32 0:161 ip community-list standard 1_33_160 permit 65000:1 0:33 0:160 ip community-list standard 1_34_159 permit 65000:1 0:34 0:159 ip community-list standard 1_35_158 permit 65000:1 0:35 0:158 ip community-list standard 1_36_157 permit 65000:1 0:36 0:157 ip community-list standard 1_37_156 permit 65000:1 0:37 0:156 ip community-list standard 1_38_155 permit 65000:1 0:38 0:155 ip community-list standard 1_39_154 permit 65000:1 0:39 0:154 ip community-list standard 1_40_153 permit 65000:1 0:40 0:153 ip community-list standard 1_41_152 permit 65000:1 0:41 0:152 ip community-list standard 1_42_151 permit 65000:1 0:42 0:151 ip community-list standard 1_43_150 permit 65000:1 0:43 0:150 ip community-list standard 1_44_149 permit 65000:1 0:44 0:149 ip community-list standard 1_45_148 permit 65000:1 0:45 0:148 ip community-list standard 1_46_147 permit 65000:1 0:46 0:147 ip community-list standard 1_47_146 permit 65000:1 0:47 0:146 ip community-list standard 1_48_145 permit 65000:1 0:48 0:145 ip community-list standard 1_49_144 permit 65000:1 0:49 0:144 ip community-list standard 1_50_143 permit 65000:1 0:50 0:143 ip community-list standard 1_51_142 permit 65000:1 0:51 0:142 ip community-list standard 1_52_141 permit 65000:1 0:52 0:141 ip community-list standard 1_53_140 permit 65000:1 0:53 0:140 ip community-list standard 1_54_139 permit 65000:1 0:54 0:139 ip community-list standard 1_55_138 permit 65000:1 0:55 0:138 ip community-list standard 1_56_137 permit 65000:1 0:56 0:137 ip community-list standard 1_57_136 permit 65000:1 0:57 0:136 ip community-list standard 1_58_135 permit 65000:1 0:58 0:135 ip community-list standard 1_59_134 permit 65000:1 0:59 0:134 ip community-list standard 1_60_133 permit 65000:1 0:60 0:133 ip community-list standard 1_61_132 permit 65000:1 0:61 0:132 ip community-list standard 1_62_131 permit 65000:1 0:62 0:131 ip community-list standard 1_63_130 permit 65000:1 0:63 0:130 ip community-list standard 1_64_129 permit 65000:1 0:64 0:129 ip community-list standard 1_65_128 permit 65000:1 0:65 0:128 ip community-list standard 1_66_127 permit 65000:1 0:66 0:127 ip community-list standard 1_67_126 permit 65000:1 0:67 0:126 ip community-list standard 1_68_125 permit 65000:1 0:68 0:125 ip community-list standard 1_69_124 permit 65000:1 0:69 0:124 ip community-list standard 1_70_123 permit 65000:1 0:70 0:123 ip community-list standard 1_71_122 permit 65000:1 0:71 0:122 ip community-list standard 1_72_121 permit 65000:1 0:72 0:121 ip community-list standard 1_73_120 permit 65000:1 0:73 0:120 ip community-list standard 1_74_119 permit 65000:1 0:74 0:119 ip community-list standard 1_75_118 permit 65000:1 0:75 0:118 ip community-list standard 1_76_117 permit 65000:1 0:76 0:117 ip community-list standard 1_77_116 permit 65000:1 0:77 0:116 ip community-list standard 1_78_115 permit 65000:1 0:78 0:115 ip community-list standard 1_79_114 permit 65000:1 0:79 0:114 ip community-list standard 1_80_113 permit 65000:1 0:80 0:113 ip community-list standard 1_81_112 permit 65000:1 0:81 0:112 ip community-list standard 1_82_111 permit 65000:1 0:82 0:111 ip community-list standard 1_83_110 permit 65000:1 0:83 0:110 ip community-list standard 1_84_109 permit 65000:1 0:84 0:109 ip community-list standard 1_85_108 permit 65000:1 0:85 0:108 ip community-list standard 1_86_107 permit 65000:1 0:86 0:107 ip community-list standard 1_87_106 permit 65000:1 0:87 0:106 ip community-list standard 1_88_105 permit 65000:1 0:88 0:105 ip community-list standard 1_89_104 permit 65000:1 0:89 0:104 ip community-list standard 1_90_103 permit 65000:1 0:90 0:103 ip community-list standard 1_91_102 permit 65000:1 0:91 0:102 ip community-list standard 1_92_101 permit 65000:1 0:92 0:101 ip community-list standard 1_93_100 permit 65000:1 0:93 0:100 ip community-list standard 1_94_99 permit 65000:1 0:94 0:99 ip community-list standard 1_95_98 permit 65000:1 0:95 0:98 ip community-list standard 1_96_97 permit 65000:1 0:96 0:97 ip community-list expanded c193 permit 1 ^65000:4_0:193_0:1$ ip community-list expanded c193 permit 2 ^65000:3_0:194_0:1$ ip community-list expanded c193 permit 3 ^65000:3_0:195_0:2$ ip community-list expanded c193 permit 4 ^65000:3_0:196_0:3$ ip community-list expanded c193 permit 5 ^65000:3_0:197_0:4$ ip community-list expanded c193 permit 6 ^65000:3_0:198_0:5$ ip community-list expanded c193 permit 7 ^65000:3_0:199_0:6$ ip community-list expanded c193 permit 8 ^65000:3_0:200_0:7$ ip community-list expanded c193 permit 9 ^65000:3_0:201_0:8$ ip community-list expanded c193 permit 10 ^65000:3_0:202_0:9$ ip community-list expanded c193 permit 11 ^65000:3_0:203_0:10$ ip community-list expanded c193 permit 12 ^65000:3_0:204_0:11$ ip community-list expanded c193 permit 13 ^65000:3_0:205_0:12$ ip community-list expanded c193 permit 14 ^65000:3_0:206_0:13$ ip community-list expanded c193 permit 15 ^65000:3_0:207_0:14$ ip community-list expanded c193 permit 16 ^65000:3_0:208_0:15$ ip community-list expanded c193 permit 17 ^65000:3_0:209_0:16$ ip community-list expanded c193 permit 18 ^65000:3_0:210_0:17$ ip community-list expanded c193 permit 19 ^65000:3_0:211_0:18$ ip community-list expanded c193 permit 20 ^65000:3_0:212_0:19$ ip community-list expanded c193 permit 21 ^65000:3_0:213_0:20$ ip community-list expanded c193 permit 22 ^65000:3_0:214_0:21$ ip community-list expanded c193 permit 23 ^65000:3_0:215_0:22$ ip community-list expanded c193 permit 24 ^65000:3_0:216_0:23$ ip community-list expanded c193 permit 25 ^65000:3_0:217_0:24$ ip community-list expanded c193 permit 26 ^65000:3_0:218_0:25$ ip community-list expanded c193 permit 27 ^65000:3_0:219_0:26$ ip community-list expanded c193 permit 28 ^65000:3_0:220_0:27$ ip community-list expanded c193 permit 29 ^65000:3_0:221_0:28$ ip community-list expanded c193 permit 30 ^65000:3_0:222_0:29$ ip community-list expanded c193 permit 31 ^65000:3_0:223_0:30$ ip community-list expanded c193 permit 32 ^65000:3_0:224_0:31$ ip community-list expanded c193 permit 33 ^65000:3_0:225_0:32$ ip community-list expanded c193 permit 34 ^65000:3_0:226_0:33$ ip community-list expanded c193 permit 35 ^65000:3_0:227_0:34$ ip community-list expanded c193 permit 36 ^65000:3_0:228_0:35$ ip community-list expanded c193 permit 37 ^65000:3_0:229_0:36$ ip community-list expanded c193 permit 38 ^65000:3_0:230_0:37$ ip community-list expanded c193 permit 39 ^65000:3_0:231_0:38$ ip community-list expanded c193 permit 40 ^65000:3_0:232_0:39$ ip community-list expanded c193 permit 41 ^65000:3_0:233_0:40$ ip community-list expanded c193 permit 42 ^65000:3_0:234_0:41$ ip community-list expanded c193 permit 43 ^65000:3_0:235_0:42$ ip community-list expanded c193 permit 44 ^65000:3_0:236_0:43$ ip community-list expanded c193 permit 45 ^65000:3_0:237_0:44$ ip community-list expanded c193 permit 46 ^65000:3_0:238_0:45$ ip community-list expanded c193 permit 47 ^65000:3_0:239_0:46$ ip community-list expanded c193 permit 48 ^65000:3_0:240_0:47$ ip community-list expanded c193 permit 49 ^65000:3_0:241_0:48$ ip community-list expanded c193 permit 50 ^65000:3_0:242_0:49$ ip community-list expanded c193 permit 51 ^65000:3_0:243_0:50$ ip community-list expanded c193 permit 52 ^65000:3_0:244_0:51$ ip community-list expanded c193 permit 53 ^65000:3_0:245_0:52$ ip community-list expanded c193 permit 54 ^65000:3_0:246_0:53$ ip community-list expanded c193 permit 55 ^65000:3_0:247_0:54$ ip community-list expanded c193 permit 56 ^65000:3_0:248_0:55$ ip community-list expanded c193 permit 57 ^65000:3_0:249_0:56$ ip community-list expanded c193 permit 58 ^65000:3_0:250_0:57$ ip community-list expanded c193 permit 59 ^65000:3_0:251_0:58$ ip community-list expanded c193 permit 60 ^65000:3_0:252_0:59$ ip community-list expanded c193 permit 61 ^65000:3_0:253_0:60$ ip community-list expanded c193 permit 62 ^65000:3_0:254_0:61$ ip community-list expanded c193 permit 63 ^65000:3_0:255_0:62$ ip community-list expanded c193 permit 64 ^65000:3_0:256_0:63$ route-map calculator permit 30398 match community 1_1_192 2_1_193 1_2_191 1_3_190 1_4_189 set community 0:193 route-map calculator permit 30399 match community 1_5_188 1_6_187 1_7_186 1_8_185 1_9_184 set community 0:193 route-map calculator permit 30400 match community 1_10_183 1_11_182 1_12_181 1_13_180 1_14_179 set community 0:193 route-map calculator permit 30401 match community 1_15_178 1_16_177 1_17_176 1_18_175 1_19_174 set community 0:193 route-map calculator permit 30402 match community 1_20_173 1_21_172 1_22_171 1_23_170 1_24_169 set community 0:193 route-map calculator permit 30403 match community 1_25_168 1_26_167 1_27_166 1_28_165 1_29_164 set community 0:193 route-map calculator permit 30404 match community 1_30_163 1_31_162 1_32_161 1_33_160 1_34_159 set community 0:193 route-map calculator permit 30405 match community 1_35_158 1_36_157 1_37_156 1_38_155 1_39_154 set community 0:193 route-map calculator permit 30406 match community 1_40_153 1_41_152 1_42_151 1_43_150 1_44_149 set community 0:193 route-map calculator permit 30407 match community 1_45_148 1_46_147 1_47_146 1_48_145 1_49_144 set community 0:193 route-map calculator permit 30408 match community 1_50_143 1_51_142 1_52_141 1_53_140 1_54_139 set community 0:193 route-map calculator permit 30409 match community 1_55_138 1_56_137 1_57_136 1_58_135 1_59_134 set community 0:193 route-map calculator permit 30410 match community 1_60_133 1_61_132 1_62_131 1_63_130 1_64_129 set community 0:193 route-map calculator permit 30411 match community 1_65_128 1_66_127 1_67_126 1_68_125 1_69_124 set community 0:193 route-map calculator permit 30412 match community 1_70_123 1_71_122 1_72_121 1_73_120 1_74_119 set community 0:193 route-map calculator permit 30413 match community 1_75_118 1_76_117 1_77_116 1_78_115 1_79_114 set community 0:193 route-map calculator permit 30414 match community 1_80_113 1_81_112 1_82_111 1_83_110 1_84_109 set community 0:193 route-map calculator permit 30415 match community 1_85_108 1_86_107 1_87_106 1_88_105 1_89_104 set community 0:193 route-map calculator permit 30416 match community 1_90_103 1_91_102 1_92_101 1_93_100 1_94_99 set community 0:193 route-map calculator permit 30417 match community 1_95_98 1_96_97 c4_193_1 c3_194_1 c3_195_2 set community 0:193 route-map calculator permit 30418 match community c3_196_3 c3_197_4 c3_198_5 c3_199_6 c3_200_7 set community 0:193 route-map calculator permit 30419 match community c3_201_8 c3_202_9 c3_203_10 c3_204_11 c3_205_12 set community 0:193 route-map calculator permit 30420 match community c3_206_13 c3_207_14 c3_208_15 c3_209_16 c3_210_17 set community 0:193 route-map calculator permit 30421 match community c3_211_18 c3_212_19 c3_213_20 c3_214_21 c3_215_22 set community 0:193 route-map calculator permit 30422 match community c3_216_23 c3_217_24 c3_218_25 c3_219_26 c3_220_27 set community 0:193 route-map calculator permit 30423 match community c3_221_28 c3_222_29 c3_223_30 c3_224_31 c3_225_32 set community 0:193 route-map calculator permit 30424 match community c3_226_33 c3_227_34 c3_228_35 c3_229_36 c3_230_37 set community 0:193 route-map calculator permit 30425 match community c3_231_38 c3_232_39 c3_233_40 c3_234_41 c3_235_42 set community 0:193 route-map calculator permit 30426 match community c3_236_43 c3_237_44 c3_238_45 c3_239_46 c3_240_47 set community 0:193 route-map calculator permit 30427 match community c3_241_48 c3_242_49 c3_243_50 c3_244_51 c3_245_52 set community 0:193 route-map calculator permit 30428 match community c3_246_53 c3_247_54 c3_248_55 c3_249_56 c3_250_57 set community 0:193 route-map calculator permit 30429 match community c3_251_58 c3_252_59 c3_253_60 c3_254_61 c3_255_62 set community 0:193 route-map calculator permit 30430 match community c3_256_63 set community 0:193 ip community-list standard 2_225_254 permit 65000:2 0:225 0:254 route-map calculator permit 30431 match community 2_225_254 set community 0:57150 ip community-list standard 2_48_232 permit 65000:2 0:48 0:232 ip community-list standard 2_58_192 permit 65000:2 0:58 0:192 ip community-list standard 2_64_174 permit 65000:2 0:64 0:174 ip community-list standard 2_87_128 permit 65000:2 0:87 0:128 ip community-list standard 2_96_116 permit 65000:2 0:96 0:116 route-map calculator permit 30432 match community 2_48_232 2_58_192 2_64_174 2_87_128 2_96_116 set community 0:11136 ip community-list standard 2_67_238 permit 65000:2 0:67 0:238 ip community-list standard 2_119_134 permit 65000:2 0:119 0:134 route-map calculator permit 30433 match community 2_67_238 2_119_134 set community 0:15946 ip community-list standard 2_69_145 permit 65000:2 0:69 0:145 ip community-list standard 2_87_115 permit 65000:2 0:87 0:115 route-map calculator permit 30434 match community 2_69_145 2_87_115 set community 0:10005 ip community-list standard 2_229_235 permit 65000:2 0:229 0:235 route-map calculator permit 30435 match community 2_229_235 set community 0:53815 ip community-list standard 2_58_143 permit 65000:2 0:58 0:143 route-map calculator permit 30436 match community 2_58_143 set community 0:8294 ip community-list standard 2_214_244 permit 65000:2 0:214 0:244 route-map calculator permit 30437 match community 2_214_244 set community 0:52216 ip community-list standard 2_176_237 permit 65000:2 0:176 0:237 route-map calculator permit 30438 match community 2_176_237 set community 0:41712 ip community-list standard 2_46_163 permit 65000:2 0:46 0:163 route-map calculator permit 30439 match community 2_46_163 set community 0:7498 ip community-list standard 2_159_224 permit 65000:2 0:159 0:224 ip community-list standard 2_168_212 permit 65000:2 0:168 0:212 route-map calculator permit 30440 match community 2_159_224 2_168_212 set community 0:35616 ip community-list standard 2_120_241 permit 65000:2 0:120 0:241 route-map calculator permit 30441 match community 2_120_241 set community 0:28920 ip community-list standard 2_59_207 permit 65000:2 0:59 0:207 ip community-list standard 2_69_177 permit 65000:2 0:69 0:177 route-map calculator permit 30442 match community 2_59_207 2_69_177 set community 0:12213 ip community-list standard 2_209_211 permit 65000:2 0:209 0:211 route-map calculator permit 30443 match community 2_209_211 set community 0:44099 ip community-list standard 2_196_227 permit 65000:2 0:196 0:227 route-map calculator permit 30444 match community 2_196_227 set community 0:44492 ip community-list standard 2_112_137 permit 65000:2 0:112 0:137 route-map calculator permit 30445 match community 2_112_137 set community 0:15344 ip community-list standard 2_7_235 permit 65000:2 0:7 0:235 ip community-list standard 2_35_47 permit 65000:2 0:35 0:47 route-map calculator permit 30446 match community 2_7_235 2_35_47 set community 0:1645 ip community-list standard 2_8_211 permit 65000:2 0:8 0:211 route-map calculator permit 30447 match community 2_8_211 set community 0:1688 ip community-list standard 2_53_125 permit 65000:2 0:53 0:125 route-map calculator permit 30448 match community 2_53_125 set community 0:6625 ip community-list standard 2_149_241 permit 65000:2 0:149 0:241 route-map calculator permit 30449 match community 2_149_241 set community 0:35909 ip community-list standard 2_94_159 permit 65000:2 0:94 0:159 ip community-list standard 2_106_141 permit 65000:2 0:106 0:141 route-map calculator permit 30450 match community 2_94_159 2_106_141 set community 0:14946 ip community-list standard 2_3_141 permit 65000:2 0:3 0:141 ip community-list standard 2_9_47 permit 65000:2 0:9 0:47 ip community-list standard 1_167_256 permit 65000:1 0:167 0:256 ip community-list standard 1_168_255 permit 65000:1 0:168 0:255 ip community-list standard 1_169_254 permit 65000:1 0:169 0:254 ip community-list standard 1_170_253 permit 65000:1 0:170 0:253 ip community-list standard 1_171_252 permit 65000:1 0:171 0:252 ip community-list standard 1_172_251 permit 65000:1 0:172 0:251 ip community-list standard 1_173_250 permit 65000:1 0:173 0:250 ip community-list standard 1_174_249 permit 65000:1 0:174 0:249 ip community-list standard 1_175_248 permit 65000:1 0:175 0:248 ip community-list standard 1_176_247 permit 65000:1 0:176 0:247 ip community-list standard 1_177_246 permit 65000:1 0:177 0:246 ip community-list standard 1_178_245 permit 65000:1 0:178 0:245 ip community-list standard 1_179_244 permit 65000:1 0:179 0:244 ip community-list standard 1_180_243 permit 65000:1 0:180 0:243 ip community-list standard 1_181_242 permit 65000:1 0:181 0:242 ip community-list standard 1_182_241 permit 65000:1 0:182 0:241 ip community-list standard 1_183_240 permit 65000:1 0:183 0:240 ip community-list standard 1_184_239 permit 65000:1 0:184 0:239 ip community-list standard 1_185_238 permit 65000:1 0:185 0:238 ip community-list standard 1_186_237 permit 65000:1 0:186 0:237 ip community-list standard 1_187_236 permit 65000:1 0:187 0:236 ip community-list standard 1_188_235 permit 65000:1 0:188 0:235 ip community-list standard 1_189_234 permit 65000:1 0:189 0:234 ip community-list standard 1_190_233 permit 65000:1 0:190 0:233 ip community-list standard 1_191_232 permit 65000:1 0:191 0:232 ip community-list standard 1_192_231 permit 65000:1 0:192 0:231 ip community-list standard 1_193_230 permit 65000:1 0:193 0:230 ip community-list standard 1_194_229 permit 65000:1 0:194 0:229 ip community-list standard 1_195_228 permit 65000:1 0:195 0:228 ip community-list standard 1_196_227 permit 65000:1 0:196 0:227 ip community-list standard 1_197_226 permit 65000:1 0:197 0:226 ip community-list standard 1_198_225 permit 65000:1 0:198 0:225 ip community-list standard 1_199_224 permit 65000:1 0:199 0:224 ip community-list standard 1_200_223 permit 65000:1 0:200 0:223 ip community-list standard 1_201_222 permit 65000:1 0:201 0:222 ip community-list standard 1_202_221 permit 65000:1 0:202 0:221 ip community-list standard 1_203_220 permit 65000:1 0:203 0:220 ip community-list standard 1_204_219 permit 65000:1 0:204 0:219 ip community-list standard 1_205_218 permit 65000:1 0:205 0:218 ip community-list standard 1_206_217 permit 65000:1 0:206 0:217 ip community-list standard 1_207_216 permit 65000:1 0:207 0:216 ip community-list standard 1_208_215 permit 65000:1 0:208 0:215 ip community-list standard 1_209_214 permit 65000:1 0:209 0:214 ip community-list standard 1_210_213 permit 65000:1 0:210 0:213 ip community-list standard 1_211_212 permit 65000:1 0:211 0:212 route-map calculator permit 30451 match community 2_3_141 2_9_47 1_167_256 1_168_255 1_169_254 set community 0:423 route-map calculator permit 30452 match community 1_170_253 1_171_252 1_172_251 1_173_250 1_174_249 set community 0:423 route-map calculator permit 30453 match community 1_175_248 1_176_247 1_177_246 1_178_245 1_179_244 set community 0:423 route-map calculator permit 30454 match community 1_180_243 1_181_242 1_182_241 1_183_240 1_184_239 set community 0:423 route-map calculator permit 30455 match community 1_185_238 1_186_237 1_187_236 1_188_235 1_189_234 set community 0:423 route-map calculator permit 30456 match community 1_190_233 1_191_232 1_192_231 1_193_230 1_194_229 set community 0:423 route-map calculator permit 30457 match community 1_195_228 1_196_227 1_197_226 1_198_225 1_199_224 set community 0:423 route-map calculator permit 30458 match community 1_200_223 1_201_222 1_202_221 1_203_220 1_204_219 set community 0:423 route-map calculator permit 30459 match community 1_205_218 1_206_217 1_207_216 1_208_215 1_209_214 set community 0:423 route-map calculator permit 30460 match community 1_210_213 1_211_212 set community 0:423 ip community-list standard 2_197_207 permit 65000:2 0:197 0:207 route-map calculator permit 30461 match community 2_197_207 set community 0:40779 ip community-list standard 2_130_182 permit 65000:2 0:130 0:182 ip community-list standard 2_140_169 permit 65000:2 0:140 0:169 route-map calculator permit 30462 match community 2_130_182 2_140_169 set community 0:23660 ip community-list standard 2_4_176 permit 65000:2 0:4 0:176 ip community-list standard 2_8_88 permit 65000:2 0:8 0:88 ip community-list standard 2_11_64 permit 65000:2 0:11 0:64 ip community-list standard 2_16_44 permit 65000:2 0:16 0:44 ip community-list standard 2_22_32 permit 65000:2 0:22 0:32 route-map calculator permit 30463 match community 2_4_176 2_8_88 2_11_64 2_16_44 2_22_32 set community 0:704 ip community-list standard 2_64_205 permit 65000:2 0:64 0:205 ip community-list standard 2_80_164 permit 65000:2 0:80 0:164 ip community-list standard 2_82_160 permit 65000:2 0:82 0:160 route-map calculator permit 30464 match community 2_64_205 2_80_164 2_82_160 set community 0:13120 ip community-list standard 2_97_143 permit 65000:2 0:97 0:143 route-map calculator permit 30465 match community 2_97_143 set community 0:13871 ip community-list standard 2_161_181 permit 65000:2 0:161 0:181 route-map calculator permit 30466 match community 2_161_181 set community 0:29141 ip community-list standard 2_11_248 permit 65000:2 0:11 0:248 ip community-list standard 2_22_124 permit 65000:2 0:22 0:124 ip community-list standard 2_31_88 permit 65000:2 0:31 0:88 ip community-list standard 2_44_62 permit 65000:2 0:44 0:62 route-map calculator permit 30467 match community 2_11_248 2_22_124 2_31_88 2_44_62 set community 0:2728 ip community-list standard 2_118_255 permit 65000:2 0:118 0:255 ip community-list standard 2_170_177 permit 65000:2 0:170 0:177 route-map calculator permit 30468 match community 2_118_255 2_170_177 set community 0:30090 ip community-list standard 2_181_236 permit 65000:2 0:181 0:236 route-map calculator permit 30469 match community 2_181_236 set community 0:42716 ip community-list standard 2_196_239 permit 65000:2 0:196 0:239 route-map calculator permit 30470 match community 2_196_239 set community 0:46844 ip community-list standard 2_56_249 permit 65000:2 0:56 0:249 ip community-list standard 2_83_168 permit 65000:2 0:83 0:168 ip community-list standard 2_84_166 permit 65000:2 0:84 0:166 route-map calculator permit 30471 match community 2_56_249 2_83_168 2_84_166 set community 0:13944 ip community-list standard 2_103_125 permit 65000:2 0:103 0:125 route-map calculator permit 30472 match community 2_103_125 set community 0:12875 ip community-list standard 2_104_222 permit 65000:2 0:104 0:222 ip community-list standard 2_111_208 permit 65000:2 0:111 0:208 ip community-list standard 2_148_156 permit 65000:2 0:148 0:156 route-map calculator permit 30473 match community 2_104_222 2_111_208 2_148_156 set community 0:23088 ip community-list standard 2_39_211 permit 65000:2 0:39 0:211 route-map calculator permit 30474 match community 2_39_211 set community 0:8229 ip community-list standard 2_21_199 permit 65000:2 0:21 0:199 route-map calculator permit 30475 match community 2_21_199 set community 0:4179 ip community-list standard 2_11_202 permit 65000:2 0:11 0:202 ip community-list standard 2_22_101 permit 65000:2 0:22 0:101 route-map calculator permit 30476 match community 2_11_202 2_22_101 set community 0:2222 ip community-list standard 2_168_197 permit 65000:2 0:168 0:197 route-map calculator permit 30477 match community 2_168_197 set community 0:33096 ip community-list standard 1_1_169 permit 65000:1 0:1 0:169 ip community-list standard 2_1_170 permit 65000:2 0:1 0:170 ip community-list standard 2_2_85 permit 65000:2 0:2 0:85 ip community-list standard 1_2_168 permit 65000:1 0:2 0:168 ip community-list standard 1_3_167 permit 65000:1 0:3 0:167 ip community-list standard 1_4_166 permit 65000:1 0:4 0:166 ip community-list standard 2_5_34 permit 65000:2 0:5 0:34 ip community-list standard 1_5_165 permit 65000:1 0:5 0:165 ip community-list standard 1_6_164 permit 65000:1 0:6 0:164 ip community-list standard 1_7_163 permit 65000:1 0:7 0:163 ip community-list standard 1_8_162 permit 65000:1 0:8 0:162 ip community-list standard 1_9_161 permit 65000:1 0:9 0:161 ip community-list standard 2_10_17 permit 65000:2 0:10 0:17 ip community-list standard 1_10_160 permit 65000:1 0:10 0:160 ip community-list standard 1_11_159 permit 65000:1 0:11 0:159 ip community-list standard 1_12_158 permit 65000:1 0:12 0:158 ip community-list standard 1_13_157 permit 65000:1 0:13 0:157 ip community-list standard 1_14_156 permit 65000:1 0:14 0:156 ip community-list standard 1_15_155 permit 65000:1 0:15 0:155 ip community-list standard 1_16_154 permit 65000:1 0:16 0:154 ip community-list standard 1_17_153 permit 65000:1 0:17 0:153 ip community-list standard 1_18_152 permit 65000:1 0:18 0:152 ip community-list standard 1_19_151 permit 65000:1 0:19 0:151 ip community-list standard 1_20_150 permit 65000:1 0:20 0:150 ip community-list standard 1_21_149 permit 65000:1 0:21 0:149 ip community-list standard 1_22_148 permit 65000:1 0:22 0:148 ip community-list standard 1_23_147 permit 65000:1 0:23 0:147 ip community-list standard 1_24_146 permit 65000:1 0:24 0:146 ip community-list standard 1_25_145 permit 65000:1 0:25 0:145 ip community-list standard 1_26_144 permit 65000:1 0:26 0:144 ip community-list standard 1_27_143 permit 65000:1 0:27 0:143 ip community-list standard 1_28_142 permit 65000:1 0:28 0:142 ip community-list standard 1_29_141 permit 65000:1 0:29 0:141 ip community-list standard 1_30_140 permit 65000:1 0:30 0:140 ip community-list standard 1_31_139 permit 65000:1 0:31 0:139 ip community-list standard 1_32_138 permit 65000:1 0:32 0:138 ip community-list standard 1_33_137 permit 65000:1 0:33 0:137 ip community-list standard 1_34_136 permit 65000:1 0:34 0:136 ip community-list standard 1_35_135 permit 65000:1 0:35 0:135 ip community-list standard 1_36_134 permit 65000:1 0:36 0:134 ip community-list standard 1_37_133 permit 65000:1 0:37 0:133 ip community-list standard 1_38_132 permit 65000:1 0:38 0:132 ip community-list standard 1_39_131 permit 65000:1 0:39 0:131 ip community-list standard 1_40_130 permit 65000:1 0:40 0:130 ip community-list standard 1_41_129 permit 65000:1 0:41 0:129 ip community-list standard 1_42_128 permit 65000:1 0:42 0:128 ip community-list standard 1_43_127 permit 65000:1 0:43 0:127 ip community-list standard 1_44_126 permit 65000:1 0:44 0:126 ip community-list standard 1_45_125 permit 65000:1 0:45 0:125 ip community-list standard 1_46_124 permit 65000:1 0:46 0:124 ip community-list standard 1_47_123 permit 65000:1 0:47 0:123 ip community-list standard 1_48_122 permit 65000:1 0:48 0:122 ip community-list standard 1_49_121 permit 65000:1 0:49 0:121 ip community-list standard 1_50_120 permit 65000:1 0:50 0:120 ip community-list standard 1_51_119 permit 65000:1 0:51 0:119 ip community-list standard 1_52_118 permit 65000:1 0:52 0:118 ip community-list standard 1_53_117 permit 65000:1 0:53 0:117 ip community-list standard 1_54_116 permit 65000:1 0:54 0:116 ip community-list standard 1_55_115 permit 65000:1 0:55 0:115 ip community-list standard 1_56_114 permit 65000:1 0:56 0:114 ip community-list standard 1_57_113 permit 65000:1 0:57 0:113 ip community-list standard 1_58_112 permit 65000:1 0:58 0:112 ip community-list standard 1_59_111 permit 65000:1 0:59 0:111 ip community-list standard 1_60_110 permit 65000:1 0:60 0:110 ip community-list standard 1_61_109 permit 65000:1 0:61 0:109 ip community-list standard 1_62_108 permit 65000:1 0:62 0:108 ip community-list standard 1_63_107 permit 65000:1 0:63 0:107 ip community-list standard 1_64_106 permit 65000:1 0:64 0:106 ip community-list standard 1_65_105 permit 65000:1 0:65 0:105 ip community-list standard 1_66_104 permit 65000:1 0:66 0:104 ip community-list standard 1_67_103 permit 65000:1 0:67 0:103 ip community-list standard 1_68_102 permit 65000:1 0:68 0:102 ip community-list standard 1_69_101 permit 65000:1 0:69 0:101 ip community-list standard 1_70_100 permit 65000:1 0:70 0:100 ip community-list standard 1_71_99 permit 65000:1 0:71 0:99 ip community-list standard 1_72_98 permit 65000:1 0:72 0:98 ip community-list standard 1_73_97 permit 65000:1 0:73 0:97 ip community-list standard 1_74_96 permit 65000:1 0:74 0:96 ip community-list standard 1_75_95 permit 65000:1 0:75 0:95 ip community-list standard 1_76_94 permit 65000:1 0:76 0:94 ip community-list standard 1_77_93 permit 65000:1 0:77 0:93 ip community-list standard 1_78_92 permit 65000:1 0:78 0:92 ip community-list standard 1_79_91 permit 65000:1 0:79 0:91 ip community-list standard 1_80_90 permit 65000:1 0:80 0:90 ip community-list standard 1_81_89 permit 65000:1 0:81 0:89 ip community-list standard 1_82_88 permit 65000:1 0:82 0:88 ip community-list standard 1_83_87 permit 65000:1 0:83 0:87 ip community-list standard 1_84_86 permit 65000:1 0:84 0:86 ip community-list standard 1_85_85 permit 65000:1 0:85 0:85 ip community-list expanded c170 permit 1 ^65000:4_0:170_0:1$ ip community-list expanded c170 permit 2 ^65000:3_0:171_0:1$ ip community-list expanded c170 permit 3 ^65000:3_0:172_0:2$ ip community-list expanded c170 permit 4 ^65000:3_0:173_0:3$ ip community-list expanded c170 permit 5 ^65000:3_0:174_0:4$ ip community-list expanded c170 permit 6 ^65000:3_0:175_0:5$ ip community-list expanded c170 permit 7 ^65000:3_0:176_0:6$ ip community-list expanded c170 permit 8 ^65000:3_0:177_0:7$ ip community-list expanded c170 permit 9 ^65000:3_0:178_0:8$ ip community-list expanded c170 permit 10 ^65000:3_0:179_0:9$ ip community-list expanded c170 permit 11 ^65000:3_0:180_0:10$ ip community-list expanded c170 permit 12 ^65000:3_0:181_0:11$ ip community-list expanded c170 permit 13 ^65000:3_0:182_0:12$ ip community-list expanded c170 permit 14 ^65000:3_0:183_0:13$ ip community-list expanded c170 permit 15 ^65000:3_0:184_0:14$ ip community-list expanded c170 permit 16 ^65000:3_0:185_0:15$ ip community-list expanded c170 permit 17 ^65000:3_0:186_0:16$ ip community-list expanded c170 permit 18 ^65000:3_0:187_0:17$ ip community-list expanded c170 permit 19 ^65000:3_0:188_0:18$ ip community-list expanded c170 permit 20 ^65000:3_0:189_0:19$ ip community-list expanded c170 permit 21 ^65000:3_0:190_0:20$ ip community-list expanded c170 permit 22 ^65000:3_0:191_0:21$ ip community-list expanded c170 permit 23 ^65000:3_0:192_0:22$ ip community-list expanded c170 permit 24 ^65000:3_0:193_0:23$ ip community-list expanded c170 permit 25 ^65000:3_0:194_0:24$ ip community-list expanded c170 permit 26 ^65000:3_0:195_0:25$ ip community-list expanded c170 permit 27 ^65000:3_0:196_0:26$ ip community-list expanded c170 permit 28 ^65000:3_0:197_0:27$ ip community-list expanded c170 permit 29 ^65000:3_0:198_0:28$ ip community-list expanded c170 permit 30 ^65000:3_0:199_0:29$ ip community-list expanded c170 permit 31 ^65000:3_0:200_0:30$ ip community-list expanded c170 permit 32 ^65000:3_0:201_0:31$ ip community-list expanded c170 permit 33 ^65000:3_0:202_0:32$ ip community-list expanded c170 permit 34 ^65000:3_0:203_0:33$ ip community-list expanded c170 permit 35 ^65000:3_0:204_0:34$ ip community-list expanded c170 permit 36 ^65000:3_0:205_0:35$ ip community-list expanded c170 permit 37 ^65000:3_0:206_0:36$ ip community-list expanded c170 permit 38 ^65000:3_0:207_0:37$ ip community-list expanded c170 permit 39 ^65000:3_0:208_0:38$ ip community-list expanded c170 permit 40 ^65000:3_0:209_0:39$ ip community-list expanded c170 permit 41 ^65000:3_0:210_0:40$ ip community-list expanded c170 permit 42 ^65000:3_0:211_0:41$ ip community-list expanded c170 permit 43 ^65000:3_0:212_0:42$ ip community-list expanded c170 permit 44 ^65000:3_0:213_0:43$ ip community-list expanded c170 permit 45 ^65000:3_0:214_0:44$ ip community-list expanded c170 permit 46 ^65000:3_0:215_0:45$ ip community-list expanded c170 permit 47 ^65000:3_0:216_0:46$ ip community-list expanded c170 permit 48 ^65000:3_0:217_0:47$ ip community-list expanded c170 permit 49 ^65000:3_0:218_0:48$ ip community-list expanded c170 permit 50 ^65000:3_0:219_0:49$ ip community-list expanded c170 permit 51 ^65000:3_0:220_0:50$ ip community-list expanded c170 permit 52 ^65000:3_0:221_0:51$ ip community-list expanded c170 permit 53 ^65000:3_0:222_0:52$ ip community-list expanded c170 permit 54 ^65000:3_0:223_0:53$ ip community-list expanded c170 permit 55 ^65000:3_0:224_0:54$ ip community-list expanded c170 permit 56 ^65000:3_0:225_0:55$ ip community-list expanded c170 permit 57 ^65000:3_0:226_0:56$ ip community-list expanded c170 permit 58 ^65000:3_0:227_0:57$ ip community-list expanded c170 permit 59 ^65000:3_0:228_0:58$ ip community-list expanded c170 permit 60 ^65000:3_0:229_0:59$ ip community-list expanded c170 permit 61 ^65000:3_0:230_0:60$ ip community-list expanded c170 permit 62 ^65000:3_0:231_0:61$ ip community-list expanded c170 permit 63 ^65000:3_0:232_0:62$ ip community-list expanded c170 permit 64 ^65000:3_0:233_0:63$ ip community-list expanded c170 permit 65 ^65000:3_0:234_0:64$ ip community-list expanded c170 permit 66 ^65000:3_0:235_0:65$ ip community-list expanded c170 permit 67 ^65000:3_0:236_0:66$ ip community-list expanded c170 permit 68 ^65000:3_0:237_0:67$ ip community-list expanded c170 permit 69 ^65000:3_0:238_0:68$ ip community-list expanded c170 permit 70 ^65000:3_0:239_0:69$ ip community-list expanded c170 permit 71 ^65000:3_0:240_0:70$ ip community-list expanded c170 permit 72 ^65000:3_0:241_0:71$ ip community-list expanded c170 permit 73 ^65000:3_0:242_0:72$ ip community-list expanded c170 permit 74 ^65000:3_0:243_0:73$ ip community-list expanded c170 permit 75 ^65000:3_0:244_0:74$ ip community-list expanded c170 permit 76 ^65000:3_0:245_0:75$ ip community-list expanded c170 permit 77 ^65000:3_0:246_0:76$ ip community-list expanded c170 permit 78 ^65000:3_0:247_0:77$ ip community-list expanded c170 permit 79 ^65000:3_0:248_0:78$ ip community-list expanded c170 permit 80 ^65000:3_0:249_0:79$ ip community-list expanded c170 permit 81 ^65000:3_0:250_0:80$ ip community-list expanded c170 permit 82 ^65000:3_0:251_0:81$ ip community-list expanded c170 permit 83 ^65000:3_0:252_0:82$ ip community-list expanded c170 permit 84 ^65000:3_0:253_0:83$ ip community-list expanded c170 permit 85 ^65000:3_0:254_0:84$ ip community-list expanded c170 permit 86 ^65000:3_0:255_0:85$ ip community-list expanded c170 permit 87 ^65000:3_0:256_0:86$ route-map calculator permit 30478 match community 1_1_169 2_1_170 2_2_85 1_2_168 1_3_167 set community 0:170 route-map calculator permit 30479 match community 1_4_166 2_5_34 1_5_165 1_6_164 1_7_163 set community 0:170 route-map calculator permit 30480 match community 1_8_162 1_9_161 2_10_17 1_10_160 1_11_159 set community 0:170 route-map calculator permit 30481 match community 1_12_158 1_13_157 1_14_156 1_15_155 1_16_154 set community 0:170 route-map calculator permit 30482 match community 1_17_153 1_18_152 1_19_151 1_20_150 1_21_149 set community 0:170 route-map calculator permit 30483 match community 1_22_148 1_23_147 1_24_146 1_25_145 1_26_144 set community 0:170 route-map calculator permit 30484 match community 1_27_143 1_28_142 1_29_141 1_30_140 1_31_139 set community 0:170 route-map calculator permit 30485 match community 1_32_138 1_33_137 1_34_136 1_35_135 1_36_134 set community 0:170 route-map calculator permit 30486 match community 1_37_133 1_38_132 1_39_131 1_40_130 1_41_129 set community 0:170 route-map calculator permit 30487 match community 1_42_128 1_43_127 1_44_126 1_45_125 1_46_124 set community 0:170 route-map calculator permit 30488 match community 1_47_123 1_48_122 1_49_121 1_50_120 1_51_119 set community 0:170 route-map calculator permit 30489 match community 1_52_118 1_53_117 1_54_116 1_55_115 1_56_114 set community 0:170 route-map calculator permit 30490 match community 1_57_113 1_58_112 1_59_111 1_60_110 1_61_109 set community 0:170 route-map calculator permit 30491 match community 1_62_108 1_63_107 1_64_106 1_65_105 1_66_104 set community 0:170 route-map calculator permit 30492 match community 1_67_103 1_68_102 1_69_101 1_70_100 1_71_99 set community 0:170 route-map calculator permit 30493 match community 1_72_98 1_73_97 1_74_96 1_75_95 1_76_94 set community 0:170 route-map calculator permit 30494 match community 1_77_93 1_78_92 1_79_91 1_80_90 1_81_89 set community 0:170 route-map calculator permit 30495 match community 1_82_88 1_83_87 1_84_86 1_85_85 c4_170_1 set community 0:170 route-map calculator permit 30496 match community c3_171_1 c3_172_2 c3_173_3 c3_174_4 c3_175_5 set community 0:170 route-map calculator permit 30497 match community c3_176_6 c3_177_7 c3_178_8 c3_179_9 c3_180_10 set community 0:170 route-map calculator permit 30498 match community c3_181_11 c3_182_12 c3_183_13 c3_184_14 c3_185_15 set community 0:170 route-map calculator permit 30499 match community c3_186_16 c3_187_17 c3_188_18 c3_189_19 c3_190_20 set community 0:170 route-map calculator permit 30500 match community c3_191_21 c3_192_22 c3_193_23 c3_194_24 c3_195_25 set community 0:170 route-map calculator permit 30501 match community c3_196_26 c3_197_27 c3_198_28 c3_199_29 c3_200_30 set community 0:170 route-map calculator permit 30502 match community c3_201_31 c3_202_32 c3_203_33 c3_204_34 c3_205_35 set community 0:170 route-map calculator permit 30503 match community c3_206_36 c3_207_37 c3_208_38 c3_209_39 c3_210_40 set community 0:170 route-map calculator permit 30504 match community c3_211_41 c3_212_42 c3_213_43 c3_214_44 c3_215_45 set community 0:170 route-map calculator permit 30505 match community c3_216_46 c3_217_47 c3_218_48 c3_219_49 c3_220_50 set community 0:170 route-map calculator permit 30506 match community c3_221_51 c3_222_52 c3_223_53 c3_224_54 c3_225_55 set community 0:170 route-map calculator permit 30507 match community c3_226_56 c3_227_57 c3_228_58 c3_229_59 c3_230_60 set community 0:170 route-map calculator permit 30508 match community c3_231_61 c3_232_62 c3_233_63 c3_234_64 c3_235_65 set community 0:170 route-map calculator permit 30509 match community c3_236_66 c3_237_67 c3_238_68 c3_239_69 c3_240_70 set community 0:170 route-map calculator permit 30510 match community c3_241_71 c3_242_72 c3_243_73 c3_244_74 c3_245_75 set community 0:170 route-map calculator permit 30511 match community c3_246_76 c3_247_77 c3_248_78 c3_249_79 c3_250_80 set community 0:170 route-map calculator permit 30512 match community c3_251_81 c3_252_82 c3_253_83 c3_254_84 c3_255_85 set community 0:170 route-map calculator permit 30513 match community c3_256_86 set community 0:170 ip community-list standard 2_104_167 permit 65000:2 0:104 0:167 route-map calculator permit 30514 match community 2_104_167 set community 0:17368 ip community-list standard 2_98_159 permit 65000:2 0:98 0:159 ip community-list standard 2_106_147 permit 65000:2 0:106 0:147 route-map calculator permit 30515 match community 2_98_159 2_106_147 set community 0:15582 ip community-list standard 2_117_254 permit 65000:2 0:117 0:254 ip community-list standard 2_127_234 permit 65000:2 0:127 0:234 route-map calculator permit 30516 match community 2_117_254 2_127_234 set community 0:29718 ip community-list standard 2_98_244 permit 65000:2 0:98 0:244 ip community-list standard 2_122_196 permit 65000:2 0:122 0:196 route-map calculator permit 30517 match community 2_98_244 2_122_196 set community 0:23912 ip community-list standard 2_72_178 permit 65000:2 0:72 0:178 ip community-list standard 2_89_144 permit 65000:2 0:89 0:144 route-map calculator permit 30518 match community 2_72_178 2_89_144 set community 0:12816 ip community-list standard 1_1_233 permit 65000:1 0:1 0:233 ip community-list standard 2_1_234 permit 65000:2 0:1 0:234 ip community-list standard 2_2_117 permit 65000:2 0:2 0:117 ip community-list standard 1_2_232 permit 65000:1 0:2 0:232 ip community-list standard 2_3_78 permit 65000:2 0:3 0:78 ip community-list standard 1_3_231 permit 65000:1 0:3 0:231 ip community-list standard 1_4_230 permit 65000:1 0:4 0:230 ip community-list standard 1_5_229 permit 65000:1 0:5 0:229 ip community-list standard 2_6_39 permit 65000:2 0:6 0:39 ip community-list standard 1_6_228 permit 65000:1 0:6 0:228 ip community-list standard 1_7_227 permit 65000:1 0:7 0:227 ip community-list standard 1_8_226 permit 65000:1 0:8 0:226 ip community-list standard 2_9_26 permit 65000:2 0:9 0:26 ip community-list standard 1_9_225 permit 65000:1 0:9 0:225 ip community-list standard 1_10_224 permit 65000:1 0:10 0:224 ip community-list standard 1_11_223 permit 65000:1 0:11 0:223 ip community-list standard 1_12_222 permit 65000:1 0:12 0:222 ip community-list standard 2_13_18 permit 65000:2 0:13 0:18 ip community-list standard 1_13_221 permit 65000:1 0:13 0:221 ip community-list standard 1_14_220 permit 65000:1 0:14 0:220 ip community-list standard 1_15_219 permit 65000:1 0:15 0:219 ip community-list standard 1_16_218 permit 65000:1 0:16 0:218 ip community-list standard 1_17_217 permit 65000:1 0:17 0:217 ip community-list standard 1_18_216 permit 65000:1 0:18 0:216 ip community-list standard 1_19_215 permit 65000:1 0:19 0:215 ip community-list standard 1_20_214 permit 65000:1 0:20 0:214 ip community-list standard 1_21_213 permit 65000:1 0:21 0:213 ip community-list standard 1_22_212 permit 65000:1 0:22 0:212 ip community-list standard 1_23_211 permit 65000:1 0:23 0:211 ip community-list standard 1_24_210 permit 65000:1 0:24 0:210 ip community-list standard 1_25_209 permit 65000:1 0:25 0:209 ip community-list standard 1_26_208 permit 65000:1 0:26 0:208 ip community-list standard 1_27_207 permit 65000:1 0:27 0:207 ip community-list standard 1_28_206 permit 65000:1 0:28 0:206 ip community-list standard 1_29_205 permit 65000:1 0:29 0:205 ip community-list standard 1_30_204 permit 65000:1 0:30 0:204 ip community-list standard 1_31_203 permit 65000:1 0:31 0:203 ip community-list standard 1_32_202 permit 65000:1 0:32 0:202 ip community-list standard 1_33_201 permit 65000:1 0:33 0:201 ip community-list standard 1_34_200 permit 65000:1 0:34 0:200 ip community-list standard 1_35_199 permit 65000:1 0:35 0:199 ip community-list standard 1_36_198 permit 65000:1 0:36 0:198 ip community-list standard 1_37_197 permit 65000:1 0:37 0:197 ip community-list standard 1_38_196 permit 65000:1 0:38 0:196 ip community-list standard 1_39_195 permit 65000:1 0:39 0:195 ip community-list standard 1_40_194 permit 65000:1 0:40 0:194 ip community-list standard 1_41_193 permit 65000:1 0:41 0:193 ip community-list standard 1_42_192 permit 65000:1 0:42 0:192 ip community-list standard 1_43_191 permit 65000:1 0:43 0:191 ip community-list standard 1_44_190 permit 65000:1 0:44 0:190 ip community-list standard 1_45_189 permit 65000:1 0:45 0:189 ip community-list standard 1_46_188 permit 65000:1 0:46 0:188 ip community-list standard 1_47_187 permit 65000:1 0:47 0:187 ip community-list standard 1_48_186 permit 65000:1 0:48 0:186 ip community-list standard 1_49_185 permit 65000:1 0:49 0:185 ip community-list standard 1_50_184 permit 65000:1 0:50 0:184 ip community-list standard 1_51_183 permit 65000:1 0:51 0:183 ip community-list standard 1_52_182 permit 65000:1 0:52 0:182 ip community-list standard 1_53_181 permit 65000:1 0:53 0:181 ip community-list standard 1_54_180 permit 65000:1 0:54 0:180 ip community-list standard 1_55_179 permit 65000:1 0:55 0:179 ip community-list standard 1_56_178 permit 65000:1 0:56 0:178 ip community-list standard 1_57_177 permit 65000:1 0:57 0:177 ip community-list standard 1_58_176 permit 65000:1 0:58 0:176 ip community-list standard 1_59_175 permit 65000:1 0:59 0:175 ip community-list standard 1_60_174 permit 65000:1 0:60 0:174 ip community-list standard 1_61_173 permit 65000:1 0:61 0:173 ip community-list standard 1_62_172 permit 65000:1 0:62 0:172 ip community-list standard 1_63_171 permit 65000:1 0:63 0:171 ip community-list standard 1_64_170 permit 65000:1 0:64 0:170 ip community-list standard 1_65_169 permit 65000:1 0:65 0:169 ip community-list standard 1_66_168 permit 65000:1 0:66 0:168 ip community-list standard 1_67_167 permit 65000:1 0:67 0:167 ip community-list standard 1_68_166 permit 65000:1 0:68 0:166 ip community-list standard 1_69_165 permit 65000:1 0:69 0:165 ip community-list standard 1_70_164 permit 65000:1 0:70 0:164 ip community-list standard 1_71_163 permit 65000:1 0:71 0:163 ip community-list standard 1_72_162 permit 65000:1 0:72 0:162 ip community-list standard 1_73_161 permit 65000:1 0:73 0:161 ip community-list standard 1_74_160 permit 65000:1 0:74 0:160 ip community-list standard 1_75_159 permit 65000:1 0:75 0:159 ip community-list standard 1_76_158 permit 65000:1 0:76 0:158 ip community-list standard 1_77_157 permit 65000:1 0:77 0:157 ip community-list standard 1_78_156 permit 65000:1 0:78 0:156 ip community-list standard 1_79_155 permit 65000:1 0:79 0:155 ip community-list standard 1_80_154 permit 65000:1 0:80 0:154 ip community-list standard 1_81_153 permit 65000:1 0:81 0:153 ip community-list standard 1_82_152 permit 65000:1 0:82 0:152 ip community-list standard 1_83_151 permit 65000:1 0:83 0:151 ip community-list standard 1_84_150 permit 65000:1 0:84 0:150 ip community-list standard 1_85_149 permit 65000:1 0:85 0:149 ip community-list standard 1_86_148 permit 65000:1 0:86 0:148 ip community-list standard 1_87_147 permit 65000:1 0:87 0:147 ip community-list standard 1_88_146 permit 65000:1 0:88 0:146 ip community-list standard 1_89_145 permit 65000:1 0:89 0:145 ip community-list standard 1_90_144 permit 65000:1 0:90 0:144 ip community-list standard 1_91_143 permit 65000:1 0:91 0:143 ip community-list standard 1_92_142 permit 65000:1 0:92 0:142 ip community-list standard 1_93_141 permit 65000:1 0:93 0:141 ip community-list standard 1_94_140 permit 65000:1 0:94 0:140 ip community-list standard 1_95_139 permit 65000:1 0:95 0:139 ip community-list standard 1_96_138 permit 65000:1 0:96 0:138 ip community-list standard 1_97_137 permit 65000:1 0:97 0:137 ip community-list standard 1_98_136 permit 65000:1 0:98 0:136 ip community-list standard 1_99_135 permit 65000:1 0:99 0:135 ip community-list standard 1_100_134 permit 65000:1 0:100 0:134 ip community-list standard 1_101_133 permit 65000:1 0:101 0:133 ip community-list standard 1_102_132 permit 65000:1 0:102 0:132 ip community-list standard 1_103_131 permit 65000:1 0:103 0:131 ip community-list standard 1_104_130 permit 65000:1 0:104 0:130 ip community-list standard 1_105_129 permit 65000:1 0:105 0:129 ip community-list standard 1_106_128 permit 65000:1 0:106 0:128 ip community-list standard 1_107_127 permit 65000:1 0:107 0:127 ip community-list standard 1_108_126 permit 65000:1 0:108 0:126 ip community-list standard 1_109_125 permit 65000:1 0:109 0:125 ip community-list standard 1_110_124 permit 65000:1 0:110 0:124 ip community-list standard 1_111_123 permit 65000:1 0:111 0:123 ip community-list standard 1_112_122 permit 65000:1 0:112 0:122 ip community-list standard 1_113_121 permit 65000:1 0:113 0:121 ip community-list standard 1_114_120 permit 65000:1 0:114 0:120 ip community-list standard 1_115_119 permit 65000:1 0:115 0:119 ip community-list standard 1_116_118 permit 65000:1 0:116 0:118 ip community-list standard 1_117_117 permit 65000:1 0:117 0:117 ip community-list expanded c234 permit 1 ^65000:4_0:234_0:1$ ip community-list expanded c234 permit 2 ^65000:3_0:235_0:1$ ip community-list expanded c234 permit 3 ^65000:3_0:236_0:2$ ip community-list expanded c234 permit 4 ^65000:3_0:237_0:3$ ip community-list expanded c234 permit 5 ^65000:3_0:238_0:4$ ip community-list expanded c234 permit 6 ^65000:3_0:239_0:5$ ip community-list expanded c234 permit 7 ^65000:3_0:240_0:6$ ip community-list expanded c234 permit 8 ^65000:3_0:241_0:7$ ip community-list expanded c234 permit 9 ^65000:3_0:242_0:8$ ip community-list expanded c234 permit 10 ^65000:3_0:243_0:9$ ip community-list expanded c234 permit 11 ^65000:3_0:244_0:10$ ip community-list expanded c234 permit 12 ^65000:3_0:245_0:11$ ip community-list expanded c234 permit 13 ^65000:3_0:246_0:12$ ip community-list expanded c234 permit 14 ^65000:3_0:247_0:13$ ip community-list expanded c234 permit 15 ^65000:3_0:248_0:14$ ip community-list expanded c234 permit 16 ^65000:3_0:249_0:15$ ip community-list expanded c234 permit 17 ^65000:3_0:250_0:16$ ip community-list expanded c234 permit 18 ^65000:3_0:251_0:17$ ip community-list expanded c234 permit 19 ^65000:3_0:252_0:18$ ip community-list expanded c234 permit 20 ^65000:3_0:253_0:19$ ip community-list expanded c234 permit 21 ^65000:3_0:254_0:20$ ip community-list expanded c234 permit 22 ^65000:3_0:255_0:21$ ip community-list expanded c234 permit 23 ^65000:3_0:256_0:22$ route-map calculator permit 30519 match community 1_1_233 2_1_234 2_2_117 1_2_232 2_3_78 set community 0:234 route-map calculator permit 30520 match community 1_3_231 1_4_230 1_5_229 2_6_39 1_6_228 set community 0:234 route-map calculator permit 30521 match community 1_7_227 1_8_226 2_9_26 1_9_225 1_10_224 set community 0:234 route-map calculator permit 30522 match community 1_11_223 1_12_222 2_13_18 1_13_221 1_14_220 set community 0:234 route-map calculator permit 30523 match community 1_15_219 1_16_218 1_17_217 1_18_216 1_19_215 set community 0:234 route-map calculator permit 30524 match community 1_20_214 1_21_213 1_22_212 1_23_211 1_24_210 set community 0:234 route-map calculator permit 30525 match community 1_25_209 1_26_208 1_27_207 1_28_206 1_29_205 set community 0:234 route-map calculator permit 30526 match community 1_30_204 1_31_203 1_32_202 1_33_201 1_34_200 set community 0:234 route-map calculator permit 30527 match community 1_35_199 1_36_198 1_37_197 1_38_196 1_39_195 set community 0:234 route-map calculator permit 30528 match community 1_40_194 1_41_193 1_42_192 1_43_191 1_44_190 set community 0:234 route-map calculator permit 30529 match community 1_45_189 1_46_188 1_47_187 1_48_186 1_49_185 set community 0:234 route-map calculator permit 30530 match community 1_50_184 1_51_183 1_52_182 1_53_181 1_54_180 set community 0:234 route-map calculator permit 30531 match community 1_55_179 1_56_178 1_57_177 1_58_176 1_59_175 set community 0:234 route-map calculator permit 30532 match community 1_60_174 1_61_173 1_62_172 1_63_171 1_64_170 set community 0:234 route-map calculator permit 30533 match community 1_65_169 1_66_168 1_67_167 1_68_166 1_69_165 set community 0:234 route-map calculator permit 30534 match community 1_70_164 1_71_163 1_72_162 1_73_161 1_74_160 set community 0:234 route-map calculator permit 30535 match community 1_75_159 1_76_158 1_77_157 1_78_156 1_79_155 set community 0:234 route-map calculator permit 30536 match community 1_80_154 1_81_153 1_82_152 1_83_151 1_84_150 set community 0:234 route-map calculator permit 30537 match community 1_85_149 1_86_148 1_87_147 1_88_146 1_89_145 set community 0:234 route-map calculator permit 30538 match community 1_90_144 1_91_143 1_92_142 1_93_141 1_94_140 set community 0:234 route-map calculator permit 30539 match community 1_95_139 1_96_138 1_97_137 1_98_136 1_99_135 set community 0:234 route-map calculator permit 30540 match community 1_100_134 1_101_133 1_102_132 1_103_131 1_104_130 set community 0:234 route-map calculator permit 30541 match community 1_105_129 1_106_128 1_107_127 1_108_126 1_109_125 set community 0:234 route-map calculator permit 30542 match community 1_110_124 1_111_123 1_112_122 1_113_121 1_114_120 set community 0:234 route-map calculator permit 30543 match community 1_115_119 1_116_118 1_117_117 c4_234_1 c3_235_1 set community 0:234 route-map calculator permit 30544 match community c3_236_2 c3_237_3 c3_238_4 c3_239_5 c3_240_6 set community 0:234 route-map calculator permit 30545 match community c3_241_7 c3_242_8 c3_243_9 c3_244_10 c3_245_11 set community 0:234 route-map calculator permit 30546 match community c3_246_12 c3_247_13 c3_248_14 c3_249_15 c3_250_16 set community 0:234 route-map calculator permit 30547 match community c3_251_17 c3_252_18 c3_253_19 c3_254_20 c3_255_21 set community 0:234 route-map calculator permit 30548 match community c3_256_22 set community 0:234 ip community-list standard 2_118_183 permit 65000:2 0:118 0:183 ip community-list standard 2_122_177 permit 65000:2 0:122 0:177 route-map calculator permit 30549 match community 2_118_183 2_122_177 set community 0:21594 ip community-list standard 2_118_215 permit 65000:2 0:118 0:215 route-map calculator permit 30550 match community 2_118_215 set community 0:25370 ip community-list standard 2_108_137 permit 65000:2 0:108 0:137 route-map calculator permit 30551 match community 2_108_137 set community 0:14796 ip community-list standard 2_145_217 permit 65000:2 0:145 0:217 ip community-list standard 2_155_203 permit 65000:2 0:155 0:203 route-map calculator permit 30552 match community 2_145_217 2_155_203 set community 0:31465 ip community-list standard 2_74_239 permit 65000:2 0:74 0:239 route-map calculator permit 30553 match community 2_74_239 set community 0:17686 ip community-list standard 2_139_254 permit 65000:2 0:139 0:254 route-map calculator permit 30554 match community 2_139_254 set community 0:35306 ip community-list standard 2_54_229 permit 65000:2 0:54 0:229 route-map calculator permit 30555 match community 2_54_229 set community 0:12366 ip community-list standard 2_146_250 permit 65000:2 0:146 0:250 route-map calculator permit 30556 match community 2_146_250 set community 0:36500 ip community-list standard 2_202_228 permit 65000:2 0:202 0:228 route-map calculator permit 30557 match community 2_202_228 set community 0:46056 ip community-list standard 2_106_179 permit 65000:2 0:106 0:179 route-map calculator permit 30558 match community 2_106_179 set community 0:18974 ip community-list standard 2_101_224 permit 65000:2 0:101 0:224 ip community-list standard 2_112_202 permit 65000:2 0:112 0:202 route-map calculator permit 30559 match community 2_101_224 2_112_202 set community 0:22624 ip community-list standard 2_69_149 permit 65000:2 0:69 0:149 route-map calculator permit 30560 match community 2_69_149 set community 0:10281 ip community-list standard 2_29_234 permit 65000:2 0:29 0:234 ip community-list standard 2_39_174 permit 65000:2 0:39 0:174 ip community-list standard 2_58_117 permit 65000:2 0:58 0:117 ip community-list standard 2_78_87 permit 65000:2 0:78 0:87 route-map calculator permit 30561 match community 2_29_234 2_39_174 2_58_117 2_78_87 set community 0:6786 ip community-list standard 2_105_151 permit 65000:2 0:105 0:151 route-map calculator permit 30562 match community 2_105_151 set community 0:15855 ip community-list standard 2_74_161 permit 65000:2 0:74 0:161 route-map calculator permit 30563 match community 2_74_161 set community 0:11914 ip community-list standard 2_131_172 permit 65000:2 0:131 0:172 route-map calculator permit 30564 match community 2_131_172 set community 0:22532 ip community-list standard 2_64_173 permit 65000:2 0:64 0:173 route-map calculator permit 30565 match community 2_64_173 set community 0:11072 ip community-list standard 2_34_250 permit 65000:2 0:34 0:250 ip community-list standard 2_50_170 permit 65000:2 0:50 0:170 ip community-list standard 2_68_125 permit 65000:2 0:68 0:125 ip community-list standard 2_85_100 permit 65000:2 0:85 0:100 route-map calculator permit 30566 match community 2_34_250 2_50_170 2_68_125 2_85_100 set community 0:8500 ip community-list standard 2_26_239 permit 65000:2 0:26 0:239 route-map calculator permit 30567 match community 2_26_239 set community 0:6214 ip community-list standard 2_54_219 permit 65000:2 0:54 0:219 ip community-list standard 2_73_162 permit 65000:2 0:73 0:162 ip community-list standard 2_81_146 permit 65000:2 0:81 0:146 route-map calculator permit 30568 match community 2_54_219 2_73_162 2_81_146 set community 0:11826 ip community-list standard 2_41_91 permit 65000:2 0:41 0:91 route-map calculator permit 30569 match community 2_41_91 set community 0:3731 ip community-list standard 2_201_213 permit 65000:2 0:201 0:213 route-map calculator permit 30570 match community 2_201_213 set community 0:42813 ip community-list standard 2_103_197 permit 65000:2 0:103 0:197 route-map calculator permit 30571 match community 2_103_197 set community 0:20291 ip community-list standard 2_178_194 permit 65000:2 0:178 0:194 route-map calculator permit 30572 match community 2_178_194 set community 0:34532 ip community-list standard 2_52_213 permit 65000:2 0:52 0:213 ip community-list standard 2_71_156 permit 65000:2 0:71 0:156 ip community-list standard 2_78_142 permit 65000:2 0:78 0:142 route-map calculator permit 30573 match community 2_52_213 2_71_156 2_78_142 set community 0:11076 ip community-list standard 2_126_225 permit 65000:2 0:126 0:225 ip community-list standard 2_135_210 permit 65000:2 0:135 0:210 ip community-list standard 2_150_189 permit 65000:2 0:150 0:189 ip community-list standard 2_162_175 permit 65000:2 0:162 0:175 route-map calculator permit 30574 match community 2_126_225 2_135_210 2_150_189 2_162_175 set community 0:28350 ip community-list standard 2_178_251 permit 65000:2 0:178 0:251 route-map calculator permit 30575 match community 2_178_251 set community 0:44678 ip community-list standard 2_12_224 permit 65000:2 0:12 0:224 ip community-list standard 2_14_192 permit 65000:2 0:14 0:192 ip community-list standard 2_16_168 permit 65000:2 0:16 0:168 ip community-list standard 2_21_128 permit 65000:2 0:21 0:128 ip community-list standard 2_24_112 permit 65000:2 0:24 0:112 ip community-list standard 2_28_96 permit 65000:2 0:28 0:96 ip community-list standard 2_32_84 permit 65000:2 0:32 0:84 ip community-list standard 2_42_64 permit 65000:2 0:42 0:64 ip community-list standard 2_48_56 permit 65000:2 0:48 0:56 route-map calculator permit 30576 match community 2_12_224 2_14_192 2_16_168 2_21_128 2_24_112 set community 0:2688 route-map calculator permit 30577 match community 2_28_96 2_32_84 2_42_64 2_48_56 set community 0:2688 ip community-list standard 2_107_234 permit 65000:2 0:107 0:234 ip community-list standard 2_117_214 permit 65000:2 0:117 0:214 route-map calculator permit 30578 match community 2_107_234 2_117_214 set community 0:25038 ip community-list standard 2_209_242 permit 65000:2 0:209 0:242 route-map calculator permit 30579 match community 2_209_242 set community 0:50578 ip community-list standard 2_2_226 permit 65000:2 0:2 0:226 ip community-list standard 2_4_113 permit 65000:2 0:4 0:113 ip community-list standard 1_196_256 permit 65000:1 0:196 0:256 ip community-list standard 1_197_255 permit 65000:1 0:197 0:255 ip community-list standard 1_198_254 permit 65000:1 0:198 0:254 ip community-list standard 1_199_253 permit 65000:1 0:199 0:253 ip community-list standard 1_200_252 permit 65000:1 0:200 0:252 ip community-list standard 1_201_251 permit 65000:1 0:201 0:251 ip community-list standard 1_202_250 permit 65000:1 0:202 0:250 ip community-list standard 1_203_249 permit 65000:1 0:203 0:249 ip community-list standard 1_204_248 permit 65000:1 0:204 0:248 ip community-list standard 1_205_247 permit 65000:1 0:205 0:247 ip community-list standard 1_206_246 permit 65000:1 0:206 0:246 ip community-list standard 1_207_245 permit 65000:1 0:207 0:245 ip community-list standard 1_208_244 permit 65000:1 0:208 0:244 ip community-list standard 1_209_243 permit 65000:1 0:209 0:243 ip community-list standard 1_210_242 permit 65000:1 0:210 0:242 ip community-list standard 1_211_241 permit 65000:1 0:211 0:241 ip community-list standard 1_212_240 permit 65000:1 0:212 0:240 ip community-list standard 1_213_239 permit 65000:1 0:213 0:239 ip community-list standard 1_214_238 permit 65000:1 0:214 0:238 ip community-list standard 1_215_237 permit 65000:1 0:215 0:237 ip community-list standard 1_216_236 permit 65000:1 0:216 0:236 ip community-list standard 1_217_235 permit 65000:1 0:217 0:235 ip community-list standard 1_218_234 permit 65000:1 0:218 0:234 ip community-list standard 1_219_233 permit 65000:1 0:219 0:233 ip community-list standard 1_220_232 permit 65000:1 0:220 0:232 ip community-list standard 1_221_231 permit 65000:1 0:221 0:231 ip community-list standard 1_222_230 permit 65000:1 0:222 0:230 ip community-list standard 1_223_229 permit 65000:1 0:223 0:229 ip community-list standard 1_224_228 permit 65000:1 0:224 0:228 ip community-list standard 1_225_227 permit 65000:1 0:225 0:227 ip community-list standard 1_226_226 permit 65000:1 0:226 0:226 route-map calculator permit 30580 match community 2_2_226 2_4_113 1_196_256 1_197_255 1_198_254 set community 0:452 route-map calculator permit 30581 match community 1_199_253 1_200_252 1_201_251 1_202_250 1_203_249 set community 0:452 route-map calculator permit 30582 match community 1_204_248 1_205_247 1_206_246 1_207_245 1_208_244 set community 0:452 route-map calculator permit 30583 match community 1_209_243 1_210_242 1_211_241 1_212_240 1_213_239 set community 0:452 route-map calculator permit 30584 match community 1_214_238 1_215_237 1_216_236 1_217_235 1_218_234 set community 0:452 route-map calculator permit 30585 match community 1_219_233 1_220_232 1_221_231 1_222_230 1_223_229 set community 0:452 route-map calculator permit 30586 match community 1_224_228 1_225_227 1_226_226 set community 0:452 ip community-list standard 2_11_242 permit 65000:2 0:11 0:242 ip community-list standard 2_22_121 permit 65000:2 0:22 0:121 route-map calculator permit 30587 match community 2_11_242 2_22_121 set community 0:2662 ip community-list standard 2_174_237 permit 65000:2 0:174 0:237 route-map calculator permit 30588 match community 2_174_237 set community 0:41238 ip community-list standard 2_61_214 permit 65000:2 0:61 0:214 ip community-list standard 2_107_122 permit 65000:2 0:107 0:122 route-map calculator permit 30589 match community 2_61_214 2_107_122 set community 0:13054 ip community-list standard 2_122_211 permit 65000:2 0:122 0:211 route-map calculator permit 30590 match community 2_122_211 set community 0:25742 ip community-list standard 2_23_125 permit 65000:2 0:23 0:125 ip community-list standard 2_25_115 permit 65000:2 0:25 0:115 route-map calculator permit 30591 match community 2_23_125 2_25_115 set community 0:2875 ip community-list standard 2_231_231 permit 65000:2 0:231 0:231 route-map calculator permit 30592 match community 2_231_231 set community 0:53361 ip community-list standard 2_129_167 permit 65000:2 0:129 0:167 route-map calculator permit 30593 match community 2_129_167 set community 0:21543 ip community-list standard 2_19_47 permit 65000:2 0:19 0:47 route-map calculator permit 30594 match community 2_19_47 set community 0:893 ip community-list standard 2_193_238 permit 65000:2 0:193 0:238 route-map calculator permit 30595 match community 2_193_238 set community 0:45934 ip community-list standard 2_12_201 permit 65000:2 0:12 0:201 ip community-list standard 2_18_134 permit 65000:2 0:18 0:134 ip community-list standard 2_36_67 permit 65000:2 0:36 0:67 route-map calculator permit 30596 match community 2_12_201 2_18_134 2_36_67 set community 0:2412 ip community-list standard 2_117_238 permit 65000:2 0:117 0:238 ip community-list standard 2_119_234 permit 65000:2 0:119 0:234 ip community-list standard 2_126_221 permit 65000:2 0:126 0:221 ip community-list standard 2_153_182 permit 65000:2 0:153 0:182 route-map calculator permit 30597 match community 2_117_238 2_119_234 2_126_221 2_153_182 set community 0:27846 ip community-list standard 2_118_187 permit 65000:2 0:118 0:187 route-map calculator permit 30598 match community 2_118_187 set community 0:22066 ip community-list standard 2_136_214 permit 65000:2 0:136 0:214 route-map calculator permit 30599 match community 2_136_214 set community 0:29104 ip community-list standard 2_232_233 permit 65000:2 0:232 0:233 route-map calculator permit 30600 match community 2_232_233 set community 0:54056 ip community-list standard 2_163_243 permit 65000:2 0:163 0:243 route-map calculator permit 30601 match community 2_163_243 set community 0:39609 ip community-list standard 1_1_162 permit 65000:1 0:1 0:162 ip community-list standard 2_1_163 permit 65000:2 0:1 0:163 ip community-list standard 1_2_161 permit 65000:1 0:2 0:161 ip community-list standard 1_3_160 permit 65000:1 0:3 0:160 ip community-list standard 1_4_159 permit 65000:1 0:4 0:159 ip community-list standard 1_5_158 permit 65000:1 0:5 0:158 ip community-list standard 1_6_157 permit 65000:1 0:6 0:157 ip community-list standard 1_7_156 permit 65000:1 0:7 0:156 ip community-list standard 1_8_155 permit 65000:1 0:8 0:155 ip community-list standard 1_9_154 permit 65000:1 0:9 0:154 ip community-list standard 1_10_153 permit 65000:1 0:10 0:153 ip community-list standard 1_11_152 permit 65000:1 0:11 0:152 ip community-list standard 1_12_151 permit 65000:1 0:12 0:151 ip community-list standard 1_13_150 permit 65000:1 0:13 0:150 ip community-list standard 1_14_149 permit 65000:1 0:14 0:149 ip community-list standard 1_15_148 permit 65000:1 0:15 0:148 ip community-list standard 1_16_147 permit 65000:1 0:16 0:147 ip community-list standard 1_17_146 permit 65000:1 0:17 0:146 ip community-list standard 1_18_145 permit 65000:1 0:18 0:145 ip community-list standard 1_19_144 permit 65000:1 0:19 0:144 ip community-list standard 1_20_143 permit 65000:1 0:20 0:143 ip community-list standard 1_21_142 permit 65000:1 0:21 0:142 ip community-list standard 1_22_141 permit 65000:1 0:22 0:141 ip community-list standard 1_23_140 permit 65000:1 0:23 0:140 ip community-list standard 1_24_139 permit 65000:1 0:24 0:139 ip community-list standard 1_25_138 permit 65000:1 0:25 0:138 ip community-list standard 1_26_137 permit 65000:1 0:26 0:137 ip community-list standard 1_27_136 permit 65000:1 0:27 0:136 ip community-list standard 1_28_135 permit 65000:1 0:28 0:135 ip community-list standard 1_29_134 permit 65000:1 0:29 0:134 ip community-list standard 1_30_133 permit 65000:1 0:30 0:133 ip community-list standard 1_31_132 permit 65000:1 0:31 0:132 ip community-list standard 1_32_131 permit 65000:1 0:32 0:131 ip community-list standard 1_33_130 permit 65000:1 0:33 0:130 ip community-list standard 1_34_129 permit 65000:1 0:34 0:129 ip community-list standard 1_35_128 permit 65000:1 0:35 0:128 ip community-list standard 1_36_127 permit 65000:1 0:36 0:127 ip community-list standard 1_37_126 permit 65000:1 0:37 0:126 ip community-list standard 1_38_125 permit 65000:1 0:38 0:125 ip community-list standard 1_39_124 permit 65000:1 0:39 0:124 ip community-list standard 1_40_123 permit 65000:1 0:40 0:123 ip community-list standard 1_41_122 permit 65000:1 0:41 0:122 ip community-list standard 1_42_121 permit 65000:1 0:42 0:121 ip community-list standard 1_43_120 permit 65000:1 0:43 0:120 ip community-list standard 1_44_119 permit 65000:1 0:44 0:119 ip community-list standard 1_45_118 permit 65000:1 0:45 0:118 ip community-list standard 1_46_117 permit 65000:1 0:46 0:117 ip community-list standard 1_47_116 permit 65000:1 0:47 0:116 ip community-list standard 1_48_115 permit 65000:1 0:48 0:115 ip community-list standard 1_49_114 permit 65000:1 0:49 0:114 ip community-list standard 1_50_113 permit 65000:1 0:50 0:113 ip community-list standard 1_51_112 permit 65000:1 0:51 0:112 ip community-list standard 1_52_111 permit 65000:1 0:52 0:111 ip community-list standard 1_53_110 permit 65000:1 0:53 0:110 ip community-list standard 1_54_109 permit 65000:1 0:54 0:109 ip community-list standard 1_55_108 permit 65000:1 0:55 0:108 ip community-list standard 1_56_107 permit 65000:1 0:56 0:107 ip community-list standard 1_57_106 permit 65000:1 0:57 0:106 ip community-list standard 1_58_105 permit 65000:1 0:58 0:105 ip community-list standard 1_59_104 permit 65000:1 0:59 0:104 ip community-list standard 1_60_103 permit 65000:1 0:60 0:103 ip community-list standard 1_61_102 permit 65000:1 0:61 0:102 ip community-list standard 1_62_101 permit 65000:1 0:62 0:101 ip community-list standard 1_63_100 permit 65000:1 0:63 0:100 ip community-list standard 1_64_99 permit 65000:1 0:64 0:99 ip community-list standard 1_65_98 permit 65000:1 0:65 0:98 ip community-list standard 1_66_97 permit 65000:1 0:66 0:97 ip community-list standard 1_67_96 permit 65000:1 0:67 0:96 ip community-list standard 1_68_95 permit 65000:1 0:68 0:95 ip community-list standard 1_69_94 permit 65000:1 0:69 0:94 ip community-list standard 1_70_93 permit 65000:1 0:70 0:93 ip community-list standard 1_71_92 permit 65000:1 0:71 0:92 ip community-list standard 1_72_91 permit 65000:1 0:72 0:91 ip community-list standard 1_73_90 permit 65000:1 0:73 0:90 ip community-list standard 1_74_89 permit 65000:1 0:74 0:89 ip community-list standard 1_75_88 permit 65000:1 0:75 0:88 ip community-list standard 1_76_87 permit 65000:1 0:76 0:87 ip community-list standard 1_77_86 permit 65000:1 0:77 0:86 ip community-list standard 1_78_85 permit 65000:1 0:78 0:85 ip community-list standard 1_79_84 permit 65000:1 0:79 0:84 ip community-list standard 1_80_83 permit 65000:1 0:80 0:83 ip community-list standard 1_81_82 permit 65000:1 0:81 0:82 ip community-list expanded c163 permit 1 ^65000:4_0:163_0:1$ ip community-list expanded c163 permit 2 ^65000:3_0:164_0:1$ ip community-list expanded c163 permit 3 ^65000:3_0:165_0:2$ ip community-list expanded c163 permit 4 ^65000:3_0:166_0:3$ ip community-list expanded c163 permit 5 ^65000:3_0:167_0:4$ ip community-list expanded c163 permit 6 ^65000:3_0:168_0:5$ ip community-list expanded c163 permit 7 ^65000:3_0:169_0:6$ ip community-list expanded c163 permit 8 ^65000:3_0:170_0:7$ ip community-list expanded c163 permit 9 ^65000:3_0:171_0:8$ ip community-list expanded c163 permit 10 ^65000:3_0:172_0:9$ ip community-list expanded c163 permit 11 ^65000:3_0:173_0:10$ ip community-list expanded c163 permit 12 ^65000:3_0:174_0:11$ ip community-list expanded c163 permit 13 ^65000:3_0:175_0:12$ ip community-list expanded c163 permit 14 ^65000:3_0:176_0:13$ ip community-list expanded c163 permit 15 ^65000:3_0:177_0:14$ ip community-list expanded c163 permit 16 ^65000:3_0:178_0:15$ ip community-list expanded c163 permit 17 ^65000:3_0:179_0:16$ ip community-list expanded c163 permit 18 ^65000:3_0:180_0:17$ ip community-list expanded c163 permit 19 ^65000:3_0:181_0:18$ ip community-list expanded c163 permit 20 ^65000:3_0:182_0:19$ ip community-list expanded c163 permit 21 ^65000:3_0:183_0:20$ ip community-list expanded c163 permit 22 ^65000:3_0:184_0:21$ ip community-list expanded c163 permit 23 ^65000:3_0:185_0:22$ ip community-list expanded c163 permit 24 ^65000:3_0:186_0:23$ ip community-list expanded c163 permit 25 ^65000:3_0:187_0:24$ ip community-list expanded c163 permit 26 ^65000:3_0:188_0:25$ ip community-list expanded c163 permit 27 ^65000:3_0:189_0:26$ ip community-list expanded c163 permit 28 ^65000:3_0:190_0:27$ ip community-list expanded c163 permit 29 ^65000:3_0:191_0:28$ ip community-list expanded c163 permit 30 ^65000:3_0:192_0:29$ ip community-list expanded c163 permit 31 ^65000:3_0:193_0:30$ ip community-list expanded c163 permit 32 ^65000:3_0:194_0:31$ ip community-list expanded c163 permit 33 ^65000:3_0:195_0:32$ ip community-list expanded c163 permit 34 ^65000:3_0:196_0:33$ ip community-list expanded c163 permit 35 ^65000:3_0:197_0:34$ ip community-list expanded c163 permit 36 ^65000:3_0:198_0:35$ ip community-list expanded c163 permit 37 ^65000:3_0:199_0:36$ ip community-list expanded c163 permit 38 ^65000:3_0:200_0:37$ ip community-list expanded c163 permit 39 ^65000:3_0:201_0:38$ ip community-list expanded c163 permit 40 ^65000:3_0:202_0:39$ ip community-list expanded c163 permit 41 ^65000:3_0:203_0:40$ ip community-list expanded c163 permit 42 ^65000:3_0:204_0:41$ ip community-list expanded c163 permit 43 ^65000:3_0:205_0:42$ ip community-list expanded c163 permit 44 ^65000:3_0:206_0:43$ ip community-list expanded c163 permit 45 ^65000:3_0:207_0:44$ ip community-list expanded c163 permit 46 ^65000:3_0:208_0:45$ ip community-list expanded c163 permit 47 ^65000:3_0:209_0:46$ ip community-list expanded c163 permit 48 ^65000:3_0:210_0:47$ ip community-list expanded c163 permit 49 ^65000:3_0:211_0:48$ ip community-list expanded c163 permit 50 ^65000:3_0:212_0:49$ ip community-list expanded c163 permit 51 ^65000:3_0:213_0:50$ ip community-list expanded c163 permit 52 ^65000:3_0:214_0:51$ ip community-list expanded c163 permit 53 ^65000:3_0:215_0:52$ ip community-list expanded c163 permit 54 ^65000:3_0:216_0:53$ ip community-list expanded c163 permit 55 ^65000:3_0:217_0:54$ ip community-list expanded c163 permit 56 ^65000:3_0:218_0:55$ ip community-list expanded c163 permit 57 ^65000:3_0:219_0:56$ ip community-list expanded c163 permit 58 ^65000:3_0:220_0:57$ ip community-list expanded c163 permit 59 ^65000:3_0:221_0:58$ ip community-list expanded c163 permit 60 ^65000:3_0:222_0:59$ ip community-list expanded c163 permit 61 ^65000:3_0:223_0:60$ ip community-list expanded c163 permit 62 ^65000:3_0:224_0:61$ ip community-list expanded c163 permit 63 ^65000:3_0:225_0:62$ ip community-list expanded c163 permit 64 ^65000:3_0:226_0:63$ ip community-list expanded c163 permit 65 ^65000:3_0:227_0:64$ ip community-list expanded c163 permit 66 ^65000:3_0:228_0:65$ ip community-list expanded c163 permit 67 ^65000:3_0:229_0:66$ ip community-list expanded c163 permit 68 ^65000:3_0:230_0:67$ ip community-list expanded c163 permit 69 ^65000:3_0:231_0:68$ ip community-list expanded c163 permit 70 ^65000:3_0:232_0:69$ ip community-list expanded c163 permit 71 ^65000:3_0:233_0:70$ ip community-list expanded c163 permit 72 ^65000:3_0:234_0:71$ ip community-list expanded c163 permit 73 ^65000:3_0:235_0:72$ ip community-list expanded c163 permit 74 ^65000:3_0:236_0:73$ ip community-list expanded c163 permit 75 ^65000:3_0:237_0:74$ ip community-list expanded c163 permit 76 ^65000:3_0:238_0:75$ ip community-list expanded c163 permit 77 ^65000:3_0:239_0:76$ ip community-list expanded c163 permit 78 ^65000:3_0:240_0:77$ ip community-list expanded c163 permit 79 ^65000:3_0:241_0:78$ ip community-list expanded c163 permit 80 ^65000:3_0:242_0:79$ ip community-list expanded c163 permit 81 ^65000:3_0:243_0:80$ ip community-list expanded c163 permit 82 ^65000:3_0:244_0:81$ ip community-list expanded c163 permit 83 ^65000:3_0:245_0:82$ ip community-list expanded c163 permit 84 ^65000:3_0:246_0:83$ ip community-list expanded c163 permit 85 ^65000:3_0:247_0:84$ ip community-list expanded c163 permit 86 ^65000:3_0:248_0:85$ ip community-list expanded c163 permit 87 ^65000:3_0:249_0:86$ ip community-list expanded c163 permit 88 ^65000:3_0:250_0:87$ ip community-list expanded c163 permit 89 ^65000:3_0:251_0:88$ ip community-list expanded c163 permit 90 ^65000:3_0:252_0:89$ ip community-list expanded c163 permit 91 ^65000:3_0:253_0:90$ ip community-list expanded c163 permit 92 ^65000:3_0:254_0:91$ ip community-list expanded c163 permit 93 ^65000:3_0:255_0:92$ ip community-list expanded c163 permit 94 ^65000:3_0:256_0:93$ route-map calculator permit 30602 match community 1_1_162 2_1_163 1_2_161 1_3_160 1_4_159 set community 0:163 route-map calculator permit 30603 match community 1_5_158 1_6_157 1_7_156 1_8_155 1_9_154 set community 0:163 route-map calculator permit 30604 match community 1_10_153 1_11_152 1_12_151 1_13_150 1_14_149 set community 0:163 route-map calculator permit 30605 match community 1_15_148 1_16_147 1_17_146 1_18_145 1_19_144 set community 0:163 route-map calculator permit 30606 match community 1_20_143 1_21_142 1_22_141 1_23_140 1_24_139 set community 0:163 route-map calculator permit 30607 match community 1_25_138 1_26_137 1_27_136 1_28_135 1_29_134 set community 0:163 route-map calculator permit 30608 match community 1_30_133 1_31_132 1_32_131 1_33_130 1_34_129 set community 0:163 route-map calculator permit 30609 match community 1_35_128 1_36_127 1_37_126 1_38_125 1_39_124 set community 0:163 route-map calculator permit 30610 match community 1_40_123 1_41_122 1_42_121 1_43_120 1_44_119 set community 0:163 route-map calculator permit 30611 match community 1_45_118 1_46_117 1_47_116 1_48_115 1_49_114 set community 0:163 route-map calculator permit 30612 match community 1_50_113 1_51_112 1_52_111 1_53_110 1_54_109 set community 0:163 route-map calculator permit 30613 match community 1_55_108 1_56_107 1_57_106 1_58_105 1_59_104 set community 0:163 route-map calculator permit 30614 match community 1_60_103 1_61_102 1_62_101 1_63_100 1_64_99 set community 0:163 route-map calculator permit 30615 match community 1_65_98 1_66_97 1_67_96 1_68_95 1_69_94 set community 0:163 route-map calculator permit 30616 match community 1_70_93 1_71_92 1_72_91 1_73_90 1_74_89 set community 0:163 route-map calculator permit 30617 match community 1_75_88 1_76_87 1_77_86 1_78_85 1_79_84 set community 0:163 route-map calculator permit 30618 match community 1_80_83 1_81_82 c4_163_1 c3_164_1 c3_165_2 set community 0:163 route-map calculator permit 30619 match community c3_166_3 c3_167_4 c3_168_5 c3_169_6 c3_170_7 set community 0:163 route-map calculator permit 30620 match community c3_171_8 c3_172_9 c3_173_10 c3_174_11 c3_175_12 set community 0:163 route-map calculator permit 30621 match community c3_176_13 c3_177_14 c3_178_15 c3_179_16 c3_180_17 set community 0:163 route-map calculator permit 30622 match community c3_181_18 c3_182_19 c3_183_20 c3_184_21 c3_185_22 set community 0:163 route-map calculator permit 30623 match community c3_186_23 c3_187_24 c3_188_25 c3_189_26 c3_190_27 set community 0:163 route-map calculator permit 30624 match community c3_191_28 c3_192_29 c3_193_30 c3_194_31 c3_195_32 set community 0:163 route-map calculator permit 30625 match community c3_196_33 c3_197_34 c3_198_35 c3_199_36 c3_200_37 set community 0:163 route-map calculator permit 30626 match community c3_201_38 c3_202_39 c3_203_40 c3_204_41 c3_205_42 set community 0:163 route-map calculator permit 30627 match community c3_206_43 c3_207_44 c3_208_45 c3_209_46 c3_210_47 set community 0:163 route-map calculator permit 30628 match community c3_211_48 c3_212_49 c3_213_50 c3_214_51 c3_215_52 set community 0:163 route-map calculator permit 30629 match community c3_216_53 c3_217_54 c3_218_55 c3_219_56 c3_220_57 set community 0:163 route-map calculator permit 30630 match community c3_221_58 c3_222_59 c3_223_60 c3_224_61 c3_225_62 set community 0:163 route-map calculator permit 30631 match community c3_226_63 c3_227_64 c3_228_65 c3_229_66 c3_230_67 set community 0:163 route-map calculator permit 30632 match community c3_231_68 c3_232_69 c3_233_70 c3_234_71 c3_235_72 set community 0:163 route-map calculator permit 30633 match community c3_236_73 c3_237_74 c3_238_75 c3_239_76 c3_240_77 set community 0:163 route-map calculator permit 30634 match community c3_241_78 c3_242_79 c3_243_80 c3_244_81 c3_245_82 set community 0:163 route-map calculator permit 30635 match community c3_246_83 c3_247_84 c3_248_85 c3_249_86 c3_250_87 set community 0:163 route-map calculator permit 30636 match community c3_251_88 c3_252_89 c3_253_90 c3_254_91 c3_255_92 set community 0:163 route-map calculator permit 30637 match community c3_256_93 set community 0:163 ip community-list standard 1_1_209 permit 65000:1 0:1 0:209 ip community-list standard 2_1_210 permit 65000:2 0:1 0:210 ip community-list standard 2_2_105 permit 65000:2 0:2 0:105 ip community-list standard 1_2_208 permit 65000:1 0:2 0:208 ip community-list standard 2_3_70 permit 65000:2 0:3 0:70 ip community-list standard 1_3_207 permit 65000:1 0:3 0:207 ip community-list standard 1_4_206 permit 65000:1 0:4 0:206 ip community-list standard 2_5_42 permit 65000:2 0:5 0:42 ip community-list standard 1_5_205 permit 65000:1 0:5 0:205 ip community-list standard 2_6_35 permit 65000:2 0:6 0:35 ip community-list standard 1_6_204 permit 65000:1 0:6 0:204 ip community-list standard 2_7_30 permit 65000:2 0:7 0:30 ip community-list standard 1_7_203 permit 65000:1 0:7 0:203 ip community-list standard 1_8_202 permit 65000:1 0:8 0:202 ip community-list standard 1_9_201 permit 65000:1 0:9 0:201 ip community-list standard 2_10_21 permit 65000:2 0:10 0:21 ip community-list standard 1_10_200 permit 65000:1 0:10 0:200 ip community-list standard 1_11_199 permit 65000:1 0:11 0:199 ip community-list standard 1_12_198 permit 65000:1 0:12 0:198 ip community-list standard 1_13_197 permit 65000:1 0:13 0:197 ip community-list standard 2_14_15 permit 65000:2 0:14 0:15 ip community-list standard 1_14_196 permit 65000:1 0:14 0:196 ip community-list standard 1_15_195 permit 65000:1 0:15 0:195 ip community-list standard 1_16_194 permit 65000:1 0:16 0:194 ip community-list standard 1_17_193 permit 65000:1 0:17 0:193 ip community-list standard 1_18_192 permit 65000:1 0:18 0:192 ip community-list standard 1_19_191 permit 65000:1 0:19 0:191 ip community-list standard 1_20_190 permit 65000:1 0:20 0:190 ip community-list standard 1_21_189 permit 65000:1 0:21 0:189 ip community-list standard 1_22_188 permit 65000:1 0:22 0:188 ip community-list standard 1_23_187 permit 65000:1 0:23 0:187 ip community-list standard 1_24_186 permit 65000:1 0:24 0:186 ip community-list standard 1_25_185 permit 65000:1 0:25 0:185 ip community-list standard 1_26_184 permit 65000:1 0:26 0:184 ip community-list standard 1_27_183 permit 65000:1 0:27 0:183 ip community-list standard 1_28_182 permit 65000:1 0:28 0:182 ip community-list standard 1_29_181 permit 65000:1 0:29 0:181 ip community-list standard 1_30_180 permit 65000:1 0:30 0:180 ip community-list standard 1_31_179 permit 65000:1 0:31 0:179 ip community-list standard 1_32_178 permit 65000:1 0:32 0:178 ip community-list standard 1_33_177 permit 65000:1 0:33 0:177 ip community-list standard 1_34_176 permit 65000:1 0:34 0:176 ip community-list standard 1_35_175 permit 65000:1 0:35 0:175 ip community-list standard 1_36_174 permit 65000:1 0:36 0:174 ip community-list standard 1_37_173 permit 65000:1 0:37 0:173 ip community-list standard 1_38_172 permit 65000:1 0:38 0:172 ip community-list standard 1_39_171 permit 65000:1 0:39 0:171 ip community-list standard 1_40_170 permit 65000:1 0:40 0:170 ip community-list standard 1_41_169 permit 65000:1 0:41 0:169 ip community-list standard 1_42_168 permit 65000:1 0:42 0:168 ip community-list standard 1_43_167 permit 65000:1 0:43 0:167 ip community-list standard 1_44_166 permit 65000:1 0:44 0:166 ip community-list standard 1_45_165 permit 65000:1 0:45 0:165 ip community-list standard 1_46_164 permit 65000:1 0:46 0:164 ip community-list standard 1_47_163 permit 65000:1 0:47 0:163 ip community-list standard 1_48_162 permit 65000:1 0:48 0:162 ip community-list standard 1_49_161 permit 65000:1 0:49 0:161 ip community-list standard 1_50_160 permit 65000:1 0:50 0:160 ip community-list standard 1_51_159 permit 65000:1 0:51 0:159 ip community-list standard 1_52_158 permit 65000:1 0:52 0:158 ip community-list standard 1_53_157 permit 65000:1 0:53 0:157 ip community-list standard 1_54_156 permit 65000:1 0:54 0:156 ip community-list standard 1_55_155 permit 65000:1 0:55 0:155 ip community-list standard 1_56_154 permit 65000:1 0:56 0:154 ip community-list standard 1_57_153 permit 65000:1 0:57 0:153 ip community-list standard 1_58_152 permit 65000:1 0:58 0:152 ip community-list standard 1_59_151 permit 65000:1 0:59 0:151 ip community-list standard 1_60_150 permit 65000:1 0:60 0:150 ip community-list standard 1_61_149 permit 65000:1 0:61 0:149 ip community-list standard 1_62_148 permit 65000:1 0:62 0:148 ip community-list standard 1_63_147 permit 65000:1 0:63 0:147 ip community-list standard 1_64_146 permit 65000:1 0:64 0:146 ip community-list standard 1_65_145 permit 65000:1 0:65 0:145 ip community-list standard 1_66_144 permit 65000:1 0:66 0:144 ip community-list standard 1_67_143 permit 65000:1 0:67 0:143 ip community-list standard 1_68_142 permit 65000:1 0:68 0:142 ip community-list standard 1_69_141 permit 65000:1 0:69 0:141 ip community-list standard 1_70_140 permit 65000:1 0:70 0:140 ip community-list standard 1_71_139 permit 65000:1 0:71 0:139 ip community-list standard 1_72_138 permit 65000:1 0:72 0:138 ip community-list standard 1_73_137 permit 65000:1 0:73 0:137 ip community-list standard 1_74_136 permit 65000:1 0:74 0:136 ip community-list standard 1_75_135 permit 65000:1 0:75 0:135 ip community-list standard 1_76_134 permit 65000:1 0:76 0:134 ip community-list standard 1_77_133 permit 65000:1 0:77 0:133 ip community-list standard 1_78_132 permit 65000:1 0:78 0:132 ip community-list standard 1_79_131 permit 65000:1 0:79 0:131 ip community-list standard 1_80_130 permit 65000:1 0:80 0:130 ip community-list standard 1_81_129 permit 65000:1 0:81 0:129 ip community-list standard 1_82_128 permit 65000:1 0:82 0:128 ip community-list standard 1_83_127 permit 65000:1 0:83 0:127 ip community-list standard 1_84_126 permit 65000:1 0:84 0:126 ip community-list standard 1_85_125 permit 65000:1 0:85 0:125 ip community-list standard 1_86_124 permit 65000:1 0:86 0:124 ip community-list standard 1_87_123 permit 65000:1 0:87 0:123 ip community-list standard 1_88_122 permit 65000:1 0:88 0:122 ip community-list standard 1_89_121 permit 65000:1 0:89 0:121 ip community-list standard 1_90_120 permit 65000:1 0:90 0:120 ip community-list standard 1_91_119 permit 65000:1 0:91 0:119 ip community-list standard 1_92_118 permit 65000:1 0:92 0:118 ip community-list standard 1_93_117 permit 65000:1 0:93 0:117 ip community-list standard 1_94_116 permit 65000:1 0:94 0:116 ip community-list standard 1_95_115 permit 65000:1 0:95 0:115 ip community-list standard 1_96_114 permit 65000:1 0:96 0:114 ip community-list standard 1_97_113 permit 65000:1 0:97 0:113 ip community-list standard 1_98_112 permit 65000:1 0:98 0:112 ip community-list standard 1_99_111 permit 65000:1 0:99 0:111 ip community-list standard 1_100_110 permit 65000:1 0:100 0:110 ip community-list standard 1_101_109 permit 65000:1 0:101 0:109 ip community-list standard 1_102_108 permit 65000:1 0:102 0:108 ip community-list standard 1_103_107 permit 65000:1 0:103 0:107 ip community-list standard 1_104_106 permit 65000:1 0:104 0:106 ip community-list standard 1_105_105 permit 65000:1 0:105 0:105 ip community-list expanded c210 permit 1 ^65000:4_0:210_0:1$ ip community-list expanded c210 permit 2 ^65000:3_0:211_0:1$ ip community-list expanded c210 permit 3 ^65000:3_0:212_0:2$ ip community-list expanded c210 permit 4 ^65000:3_0:213_0:3$ ip community-list expanded c210 permit 5 ^65000:3_0:214_0:4$ ip community-list expanded c210 permit 6 ^65000:3_0:215_0:5$ ip community-list expanded c210 permit 7 ^65000:3_0:216_0:6$ ip community-list expanded c210 permit 8 ^65000:3_0:217_0:7$ ip community-list expanded c210 permit 9 ^65000:3_0:218_0:8$ ip community-list expanded c210 permit 10 ^65000:3_0:219_0:9$ ip community-list expanded c210 permit 11 ^65000:3_0:220_0:10$ ip community-list expanded c210 permit 12 ^65000:3_0:221_0:11$ ip community-list expanded c210 permit 13 ^65000:3_0:222_0:12$ ip community-list expanded c210 permit 14 ^65000:3_0:223_0:13$ ip community-list expanded c210 permit 15 ^65000:3_0:224_0:14$ ip community-list expanded c210 permit 16 ^65000:3_0:225_0:15$ ip community-list expanded c210 permit 17 ^65000:3_0:226_0:16$ ip community-list expanded c210 permit 18 ^65000:3_0:227_0:17$ ip community-list expanded c210 permit 19 ^65000:3_0:228_0:18$ ip community-list expanded c210 permit 20 ^65000:3_0:229_0:19$ ip community-list expanded c210 permit 21 ^65000:3_0:230_0:20$ ip community-list expanded c210 permit 22 ^65000:3_0:231_0:21$ ip community-list expanded c210 permit 23 ^65000:3_0:232_0:22$ ip community-list expanded c210 permit 24 ^65000:3_0:233_0:23$ ip community-list expanded c210 permit 25 ^65000:3_0:234_0:24$ ip community-list expanded c210 permit 26 ^65000:3_0:235_0:25$ ip community-list expanded c210 permit 27 ^65000:3_0:236_0:26$ ip community-list expanded c210 permit 28 ^65000:3_0:237_0:27$ ip community-list expanded c210 permit 29 ^65000:3_0:238_0:28$ ip community-list expanded c210 permit 30 ^65000:3_0:239_0:29$ ip community-list expanded c210 permit 31 ^65000:3_0:240_0:30$ ip community-list expanded c210 permit 32 ^65000:3_0:241_0:31$ ip community-list expanded c210 permit 33 ^65000:3_0:242_0:32$ ip community-list expanded c210 permit 34 ^65000:3_0:243_0:33$ ip community-list expanded c210 permit 35 ^65000:3_0:244_0:34$ ip community-list expanded c210 permit 36 ^65000:3_0:245_0:35$ ip community-list expanded c210 permit 37 ^65000:3_0:246_0:36$ ip community-list expanded c210 permit 38 ^65000:3_0:247_0:37$ ip community-list expanded c210 permit 39 ^65000:3_0:248_0:38$ ip community-list expanded c210 permit 40 ^65000:3_0:249_0:39$ ip community-list expanded c210 permit 41 ^65000:3_0:250_0:40$ ip community-list expanded c210 permit 42 ^65000:3_0:251_0:41$ ip community-list expanded c210 permit 43 ^65000:3_0:252_0:42$ ip community-list expanded c210 permit 44 ^65000:3_0:253_0:43$ ip community-list expanded c210 permit 45 ^65000:3_0:254_0:44$ ip community-list expanded c210 permit 46 ^65000:3_0:255_0:45$ ip community-list expanded c210 permit 47 ^65000:3_0:256_0:46$ route-map calculator permit 30638 match community 1_1_209 2_1_210 2_2_105 1_2_208 2_3_70 set community 0:210 route-map calculator permit 30639 match community 1_3_207 1_4_206 2_5_42 1_5_205 2_6_35 set community 0:210 route-map calculator permit 30640 match community 1_6_204 2_7_30 1_7_203 1_8_202 1_9_201 set community 0:210 route-map calculator permit 30641 match community 2_10_21 1_10_200 1_11_199 1_12_198 1_13_197 set community 0:210 route-map calculator permit 30642 match community 2_14_15 1_14_196 1_15_195 1_16_194 1_17_193 set community 0:210 route-map calculator permit 30643 match community 1_18_192 1_19_191 1_20_190 1_21_189 1_22_188 set community 0:210 route-map calculator permit 30644 match community 1_23_187 1_24_186 1_25_185 1_26_184 1_27_183 set community 0:210 route-map calculator permit 30645 match community 1_28_182 1_29_181 1_30_180 1_31_179 1_32_178 set community 0:210 route-map calculator permit 30646 match community 1_33_177 1_34_176 1_35_175 1_36_174 1_37_173 set community 0:210 route-map calculator permit 30647 match community 1_38_172 1_39_171 1_40_170 1_41_169 1_42_168 set community 0:210 route-map calculator permit 30648 match community 1_43_167 1_44_166 1_45_165 1_46_164 1_47_163 set community 0:210 route-map calculator permit 30649 match community 1_48_162 1_49_161 1_50_160 1_51_159 1_52_158 set community 0:210 route-map calculator permit 30650 match community 1_53_157 1_54_156 1_55_155 1_56_154 1_57_153 set community 0:210 route-map calculator permit 30651 match community 1_58_152 1_59_151 1_60_150 1_61_149 1_62_148 set community 0:210 route-map calculator permit 30652 match community 1_63_147 1_64_146 1_65_145 1_66_144 1_67_143 set community 0:210 route-map calculator permit 30653 match community 1_68_142 1_69_141 1_70_140 1_71_139 1_72_138 set community 0:210 route-map calculator permit 30654 match community 1_73_137 1_74_136 1_75_135 1_76_134 1_77_133 set community 0:210 route-map calculator permit 30655 match community 1_78_132 1_79_131 1_80_130 1_81_129 1_82_128 set community 0:210 route-map calculator permit 30656 match community 1_83_127 1_84_126 1_85_125 1_86_124 1_87_123 set community 0:210 route-map calculator permit 30657 match community 1_88_122 1_89_121 1_90_120 1_91_119 1_92_118 set community 0:210 route-map calculator permit 30658 match community 1_93_117 1_94_116 1_95_115 1_96_114 1_97_113 set community 0:210 route-map calculator permit 30659 match community 1_98_112 1_99_111 1_100_110 1_101_109 1_102_108 set community 0:210 route-map calculator permit 30660 match community 1_103_107 1_104_106 1_105_105 c4_210_1 c3_211_1 set community 0:210 route-map calculator permit 30661 match community c3_212_2 c3_213_3 c3_214_4 c3_215_5 c3_216_6 set community 0:210 route-map calculator permit 30662 match community c3_217_7 c3_218_8 c3_219_9 c3_220_10 c3_221_11 set community 0:210 route-map calculator permit 30663 match community c3_222_12 c3_223_13 c3_224_14 c3_225_15 c3_226_16 set community 0:210 route-map calculator permit 30664 match community c3_227_17 c3_228_18 c3_229_19 c3_230_20 c3_231_21 set community 0:210 route-map calculator permit 30665 match community c3_232_22 c3_233_23 c3_234_24 c3_235_25 c3_236_26 set community 0:210 route-map calculator permit 30666 match community c3_237_27 c3_238_28 c3_239_29 c3_240_30 c3_241_31 set community 0:210 route-map calculator permit 30667 match community c3_242_32 c3_243_33 c3_244_34 c3_245_35 c3_246_36 set community 0:210 route-map calculator permit 30668 match community c3_247_37 c3_248_38 c3_249_39 c3_250_40 c3_251_41 set community 0:210 route-map calculator permit 30669 match community c3_252_42 c3_253_43 c3_254_44 c3_255_45 c3_256_46 set community 0:210 ip community-list standard 2_93_177 permit 65000:2 0:93 0:177 route-map calculator permit 30670 match community 2_93_177 set community 0:16461 ip community-list standard 2_23_228 permit 65000:2 0:23 0:228 ip community-list standard 2_38_138 permit 65000:2 0:38 0:138 ip community-list standard 2_46_114 permit 65000:2 0:46 0:114 ip community-list standard 2_57_92 permit 65000:2 0:57 0:92 ip community-list standard 2_69_76 permit 65000:2 0:69 0:76 route-map calculator permit 30671 match community 2_23_228 2_38_138 2_46_114 2_57_92 2_69_76 set community 0:5244 ip community-list standard 2_95_157 permit 65000:2 0:95 0:157 route-map calculator permit 30672 match community 2_95_157 set community 0:14915 ip community-list standard 2_7_242 permit 65000:2 0:7 0:242 ip community-list standard 2_11_154 permit 65000:2 0:11 0:154 ip community-list standard 2_14_121 permit 65000:2 0:14 0:121 ip community-list standard 2_22_77 permit 65000:2 0:22 0:77 route-map calculator permit 30673 match community 2_7_242 2_11_154 2_14_121 2_22_77 set community 0:1694 ip community-list standard 2_17_46 permit 65000:2 0:17 0:46 ip community-list standard 2_23_34 permit 65000:2 0:23 0:34 route-map calculator permit 30674 match community 2_17_46 2_23_34 set community 0:782 ip community-list standard 2_188_249 permit 65000:2 0:188 0:249 route-map calculator permit 30675 match community 2_188_249 set community 0:46812 ip community-list standard 2_2_199 permit 65000:2 0:2 0:199 ip community-list standard 1_142_256 permit 65000:1 0:142 0:256 ip community-list standard 1_143_255 permit 65000:1 0:143 0:255 ip community-list standard 1_144_254 permit 65000:1 0:144 0:254 ip community-list standard 1_145_253 permit 65000:1 0:145 0:253 ip community-list standard 1_146_252 permit 65000:1 0:146 0:252 ip community-list standard 1_147_251 permit 65000:1 0:147 0:251 ip community-list standard 1_148_250 permit 65000:1 0:148 0:250 ip community-list standard 1_149_249 permit 65000:1 0:149 0:249 ip community-list standard 1_150_248 permit 65000:1 0:150 0:248 ip community-list standard 1_151_247 permit 65000:1 0:151 0:247 ip community-list standard 1_152_246 permit 65000:1 0:152 0:246 ip community-list standard 1_153_245 permit 65000:1 0:153 0:245 ip community-list standard 1_154_244 permit 65000:1 0:154 0:244 ip community-list standard 1_155_243 permit 65000:1 0:155 0:243 ip community-list standard 1_156_242 permit 65000:1 0:156 0:242 ip community-list standard 1_157_241 permit 65000:1 0:157 0:241 ip community-list standard 1_158_240 permit 65000:1 0:158 0:240 ip community-list standard 1_159_239 permit 65000:1 0:159 0:239 ip community-list standard 1_160_238 permit 65000:1 0:160 0:238 ip community-list standard 1_161_237 permit 65000:1 0:161 0:237 ip community-list standard 1_162_236 permit 65000:1 0:162 0:236 ip community-list standard 1_163_235 permit 65000:1 0:163 0:235 ip community-list standard 1_164_234 permit 65000:1 0:164 0:234 ip community-list standard 1_165_233 permit 65000:1 0:165 0:233 ip community-list standard 1_166_232 permit 65000:1 0:166 0:232 ip community-list standard 1_167_231 permit 65000:1 0:167 0:231 ip community-list standard 1_168_230 permit 65000:1 0:168 0:230 ip community-list standard 1_169_229 permit 65000:1 0:169 0:229 ip community-list standard 1_170_228 permit 65000:1 0:170 0:228 ip community-list standard 1_171_227 permit 65000:1 0:171 0:227 ip community-list standard 1_172_226 permit 65000:1 0:172 0:226 ip community-list standard 1_173_225 permit 65000:1 0:173 0:225 ip community-list standard 1_174_224 permit 65000:1 0:174 0:224 ip community-list standard 1_175_223 permit 65000:1 0:175 0:223 ip community-list standard 1_176_222 permit 65000:1 0:176 0:222 ip community-list standard 1_177_221 permit 65000:1 0:177 0:221 ip community-list standard 1_178_220 permit 65000:1 0:178 0:220 ip community-list standard 1_179_219 permit 65000:1 0:179 0:219 ip community-list standard 1_180_218 permit 65000:1 0:180 0:218 ip community-list standard 1_181_217 permit 65000:1 0:181 0:217 ip community-list standard 1_182_216 permit 65000:1 0:182 0:216 ip community-list standard 1_183_215 permit 65000:1 0:183 0:215 ip community-list standard 1_184_214 permit 65000:1 0:184 0:214 ip community-list standard 1_185_213 permit 65000:1 0:185 0:213 ip community-list standard 1_186_212 permit 65000:1 0:186 0:212 ip community-list standard 1_187_211 permit 65000:1 0:187 0:211 ip community-list standard 1_188_210 permit 65000:1 0:188 0:210 ip community-list standard 1_189_209 permit 65000:1 0:189 0:209 ip community-list standard 1_190_208 permit 65000:1 0:190 0:208 ip community-list standard 1_191_207 permit 65000:1 0:191 0:207 ip community-list standard 1_192_206 permit 65000:1 0:192 0:206 ip community-list standard 1_193_205 permit 65000:1 0:193 0:205 ip community-list standard 1_194_204 permit 65000:1 0:194 0:204 ip community-list standard 1_195_203 permit 65000:1 0:195 0:203 ip community-list standard 1_196_202 permit 65000:1 0:196 0:202 ip community-list standard 1_197_201 permit 65000:1 0:197 0:201 ip community-list standard 1_198_200 permit 65000:1 0:198 0:200 ip community-list standard 1_199_199 permit 65000:1 0:199 0:199 route-map calculator permit 30676 match community 2_2_199 1_142_256 1_143_255 1_144_254 1_145_253 set community 0:398 route-map calculator permit 30677 match community 1_146_252 1_147_251 1_148_250 1_149_249 1_150_248 set community 0:398 route-map calculator permit 30678 match community 1_151_247 1_152_246 1_153_245 1_154_244 1_155_243 set community 0:398 route-map calculator permit 30679 match community 1_156_242 1_157_241 1_158_240 1_159_239 1_160_238 set community 0:398 route-map calculator permit 30680 match community 1_161_237 1_162_236 1_163_235 1_164_234 1_165_233 set community 0:398 route-map calculator permit 30681 match community 1_166_232 1_167_231 1_168_230 1_169_229 1_170_228 set community 0:398 route-map calculator permit 30682 match community 1_171_227 1_172_226 1_173_225 1_174_224 1_175_223 set community 0:398 route-map calculator permit 30683 match community 1_176_222 1_177_221 1_178_220 1_179_219 1_180_218 set community 0:398 route-map calculator permit 30684 match community 1_181_217 1_182_216 1_183_215 1_184_214 1_185_213 set community 0:398 route-map calculator permit 30685 match community 1_186_212 1_187_211 1_188_210 1_189_209 1_190_208 set community 0:398 route-map calculator permit 30686 match community 1_191_207 1_192_206 1_193_205 1_194_204 1_195_203 set community 0:398 route-map calculator permit 30687 match community 1_196_202 1_197_201 1_198_200 1_199_199 set community 0:398 ip community-list standard 2_103_195 permit 65000:2 0:103 0:195 route-map calculator permit 30688 match community 2_103_195 set community 0:20085 ip community-list standard 1_1_86 permit 65000:1 0:1 0:86 ip community-list standard 2_1_87 permit 65000:2 0:1 0:87 ip community-list standard 1_2_85 permit 65000:1 0:2 0:85 ip community-list standard 2_3_29 permit 65000:2 0:3 0:29 ip community-list standard 1_3_84 permit 65000:1 0:3 0:84 ip community-list standard 1_4_83 permit 65000:1 0:4 0:83 ip community-list standard 1_5_82 permit 65000:1 0:5 0:82 ip community-list standard 1_6_81 permit 65000:1 0:6 0:81 ip community-list standard 1_7_80 permit 65000:1 0:7 0:80 ip community-list standard 1_8_79 permit 65000:1 0:8 0:79 ip community-list standard 1_9_78 permit 65000:1 0:9 0:78 ip community-list standard 1_10_77 permit 65000:1 0:10 0:77 ip community-list standard 1_11_76 permit 65000:1 0:11 0:76 ip community-list standard 1_12_75 permit 65000:1 0:12 0:75 ip community-list standard 1_13_74 permit 65000:1 0:13 0:74 ip community-list standard 1_14_73 permit 65000:1 0:14 0:73 ip community-list standard 1_15_72 permit 65000:1 0:15 0:72 ip community-list standard 1_16_71 permit 65000:1 0:16 0:71 ip community-list standard 1_17_70 permit 65000:1 0:17 0:70 ip community-list standard 1_18_69 permit 65000:1 0:18 0:69 ip community-list standard 1_19_68 permit 65000:1 0:19 0:68 ip community-list standard 1_20_67 permit 65000:1 0:20 0:67 ip community-list standard 1_21_66 permit 65000:1 0:21 0:66 ip community-list standard 1_22_65 permit 65000:1 0:22 0:65 ip community-list standard 1_23_64 permit 65000:1 0:23 0:64 ip community-list standard 1_24_63 permit 65000:1 0:24 0:63 ip community-list standard 1_25_62 permit 65000:1 0:25 0:62 ip community-list standard 1_26_61 permit 65000:1 0:26 0:61 ip community-list standard 1_27_60 permit 65000:1 0:27 0:60 ip community-list standard 1_28_59 permit 65000:1 0:28 0:59 ip community-list standard 1_29_58 permit 65000:1 0:29 0:58 ip community-list standard 1_30_57 permit 65000:1 0:30 0:57 ip community-list standard 1_31_56 permit 65000:1 0:31 0:56 ip community-list standard 1_32_55 permit 65000:1 0:32 0:55 ip community-list standard 1_33_54 permit 65000:1 0:33 0:54 ip community-list standard 1_34_53 permit 65000:1 0:34 0:53 ip community-list standard 1_35_52 permit 65000:1 0:35 0:52 ip community-list standard 1_36_51 permit 65000:1 0:36 0:51 ip community-list standard 1_37_50 permit 65000:1 0:37 0:50 ip community-list standard 1_38_49 permit 65000:1 0:38 0:49 ip community-list standard 1_39_48 permit 65000:1 0:39 0:48 ip community-list standard 1_40_47 permit 65000:1 0:40 0:47 ip community-list standard 1_41_46 permit 65000:1 0:41 0:46 ip community-list standard 1_42_45 permit 65000:1 0:42 0:45 ip community-list standard 1_43_44 permit 65000:1 0:43 0:44 ip community-list expanded c87 permit 1 ^65000:4_0:87_0:1$ ip community-list expanded c87 permit 2 ^65000:3_0:88_0:1$ ip community-list expanded c87 permit 3 ^65000:3_0:89_0:2$ ip community-list expanded c87 permit 4 ^65000:3_0:90_0:3$ ip community-list expanded c87 permit 5 ^65000:3_0:91_0:4$ ip community-list expanded c87 permit 6 ^65000:3_0:92_0:5$ ip community-list expanded c87 permit 7 ^65000:3_0:93_0:6$ ip community-list expanded c87 permit 8 ^65000:3_0:94_0:7$ ip community-list expanded c87 permit 9 ^65000:3_0:95_0:8$ ip community-list expanded c87 permit 10 ^65000:3_0:96_0:9$ ip community-list expanded c87 permit 11 ^65000:3_0:97_0:10$ ip community-list expanded c87 permit 12 ^65000:3_0:98_0:11$ ip community-list expanded c87 permit 13 ^65000:3_0:99_0:12$ ip community-list expanded c87 permit 14 ^65000:3_0:100_0:13$ ip community-list expanded c87 permit 15 ^65000:3_0:101_0:14$ ip community-list expanded c87 permit 16 ^65000:3_0:102_0:15$ ip community-list expanded c87 permit 17 ^65000:3_0:103_0:16$ ip community-list expanded c87 permit 18 ^65000:3_0:104_0:17$ ip community-list expanded c87 permit 19 ^65000:3_0:105_0:18$ ip community-list expanded c87 permit 20 ^65000:3_0:106_0:19$ ip community-list expanded c87 permit 21 ^65000:3_0:107_0:20$ ip community-list expanded c87 permit 22 ^65000:3_0:108_0:21$ ip community-list expanded c87 permit 23 ^65000:3_0:109_0:22$ ip community-list expanded c87 permit 24 ^65000:3_0:110_0:23$ ip community-list expanded c87 permit 25 ^65000:3_0:111_0:24$ ip community-list expanded c87 permit 26 ^65000:3_0:112_0:25$ ip community-list expanded c87 permit 27 ^65000:3_0:113_0:26$ ip community-list expanded c87 permit 28 ^65000:3_0:114_0:27$ ip community-list expanded c87 permit 29 ^65000:3_0:115_0:28$ ip community-list expanded c87 permit 30 ^65000:3_0:116_0:29$ ip community-list expanded c87 permit 31 ^65000:3_0:117_0:30$ ip community-list expanded c87 permit 32 ^65000:3_0:118_0:31$ ip community-list expanded c87 permit 33 ^65000:3_0:119_0:32$ ip community-list expanded c87 permit 34 ^65000:3_0:120_0:33$ ip community-list expanded c87 permit 35 ^65000:3_0:121_0:34$ ip community-list expanded c87 permit 36 ^65000:3_0:122_0:35$ ip community-list expanded c87 permit 37 ^65000:3_0:123_0:36$ ip community-list expanded c87 permit 38 ^65000:3_0:124_0:37$ ip community-list expanded c87 permit 39 ^65000:3_0:125_0:38$ ip community-list expanded c87 permit 40 ^65000:3_0:126_0:39$ ip community-list expanded c87 permit 41 ^65000:3_0:127_0:40$ ip community-list expanded c87 permit 42 ^65000:3_0:128_0:41$ ip community-list expanded c87 permit 43 ^65000:3_0:129_0:42$ ip community-list expanded c87 permit 44 ^65000:3_0:130_0:43$ ip community-list expanded c87 permit 45 ^65000:3_0:131_0:44$ ip community-list expanded c87 permit 46 ^65000:3_0:132_0:45$ ip community-list expanded c87 permit 47 ^65000:3_0:133_0:46$ ip community-list expanded c87 permit 48 ^65000:3_0:134_0:47$ ip community-list expanded c87 permit 49 ^65000:3_0:135_0:48$ ip community-list expanded c87 permit 50 ^65000:3_0:136_0:49$ ip community-list expanded c87 permit 51 ^65000:3_0:137_0:50$ ip community-list expanded c87 permit 52 ^65000:3_0:138_0:51$ ip community-list expanded c87 permit 53 ^65000:3_0:139_0:52$ ip community-list expanded c87 permit 54 ^65000:3_0:140_0:53$ ip community-list expanded c87 permit 55 ^65000:3_0:141_0:54$ ip community-list expanded c87 permit 56 ^65000:3_0:142_0:55$ ip community-list expanded c87 permit 57 ^65000:3_0:143_0:56$ ip community-list expanded c87 permit 58 ^65000:3_0:144_0:57$ ip community-list expanded c87 permit 59 ^65000:3_0:145_0:58$ ip community-list expanded c87 permit 60 ^65000:3_0:146_0:59$ ip community-list expanded c87 permit 61 ^65000:3_0:147_0:60$ ip community-list expanded c87 permit 62 ^65000:3_0:148_0:61$ ip community-list expanded c87 permit 63 ^65000:3_0:149_0:62$ ip community-list expanded c87 permit 64 ^65000:3_0:150_0:63$ ip community-list expanded c87 permit 65 ^65000:3_0:151_0:64$ ip community-list expanded c87 permit 66 ^65000:3_0:152_0:65$ ip community-list expanded c87 permit 67 ^65000:3_0:153_0:66$ ip community-list expanded c87 permit 68 ^65000:3_0:154_0:67$ ip community-list expanded c87 permit 69 ^65000:3_0:155_0:68$ ip community-list expanded c87 permit 70 ^65000:3_0:156_0:69$ ip community-list expanded c87 permit 71 ^65000:3_0:157_0:70$ ip community-list expanded c87 permit 72 ^65000:3_0:158_0:71$ ip community-list expanded c87 permit 73 ^65000:3_0:159_0:72$ ip community-list expanded c87 permit 74 ^65000:3_0:160_0:73$ ip community-list expanded c87 permit 75 ^65000:3_0:161_0:74$ ip community-list expanded c87 permit 76 ^65000:3_0:162_0:75$ ip community-list expanded c87 permit 77 ^65000:3_0:163_0:76$ ip community-list expanded c87 permit 78 ^65000:3_0:164_0:77$ ip community-list expanded c87 permit 79 ^65000:3_0:165_0:78$ ip community-list expanded c87 permit 80 ^65000:3_0:166_0:79$ ip community-list expanded c87 permit 81 ^65000:3_0:167_0:80$ ip community-list expanded c87 permit 82 ^65000:3_0:168_0:81$ ip community-list expanded c87 permit 83 ^65000:3_0:169_0:82$ ip community-list expanded c87 permit 84 ^65000:3_0:170_0:83$ ip community-list expanded c87 permit 85 ^65000:3_0:171_0:84$ ip community-list expanded c87 permit 86 ^65000:3_0:172_0:85$ ip community-list expanded c87 permit 87 ^65000:3_0:173_0:86$ ip community-list expanded c87 permit 88 ^65000:4_0:174_0:2$ ip community-list expanded c87 permit 89 ^65000:3_0:174_0:87$ ip community-list expanded c87 permit 90 ^65000:4_0:175_0:2$ ip community-list expanded c87 permit 91 ^65000:3_0:175_0:88$ ip community-list expanded c87 permit 92 ^65000:3_0:176_0:89$ ip community-list expanded c87 permit 93 ^65000:3_0:177_0:90$ ip community-list expanded c87 permit 94 ^65000:3_0:178_0:91$ ip community-list expanded c87 permit 95 ^65000:3_0:179_0:92$ ip community-list expanded c87 permit 96 ^65000:3_0:180_0:93$ ip community-list expanded c87 permit 97 ^65000:3_0:181_0:94$ ip community-list expanded c87 permit 98 ^65000:3_0:182_0:95$ ip community-list expanded c87 permit 99 ^65000:3_0:183_0:96$ ip community-list expanded c87 permit 100 ^65000:3_0:184_0:97$ ip community-list expanded c87 permit 101 ^65000:3_0:185_0:98$ ip community-list expanded c87 permit 102 ^65000:3_0:186_0:99$ ip community-list expanded c87 permit 103 ^65000:3_0:187_0:100$ ip community-list expanded c87 permit 104 ^65000:3_0:188_0:101$ ip community-list expanded c87 permit 105 ^65000:3_0:189_0:102$ ip community-list expanded c87 permit 106 ^65000:3_0:190_0:103$ ip community-list expanded c87 permit 107 ^65000:3_0:191_0:104$ ip community-list expanded c87 permit 108 ^65000:3_0:192_0:105$ ip community-list expanded c87 permit 109 ^65000:3_0:193_0:106$ ip community-list expanded c87 permit 110 ^65000:3_0:194_0:107$ ip community-list expanded c87 permit 111 ^65000:3_0:195_0:108$ ip community-list expanded c87 permit 112 ^65000:3_0:196_0:109$ ip community-list expanded c87 permit 113 ^65000:3_0:197_0:110$ ip community-list expanded c87 permit 114 ^65000:3_0:198_0:111$ ip community-list expanded c87 permit 115 ^65000:3_0:199_0:112$ ip community-list expanded c87 permit 116 ^65000:3_0:200_0:113$ ip community-list expanded c87 permit 117 ^65000:3_0:201_0:114$ ip community-list expanded c87 permit 118 ^65000:3_0:202_0:115$ ip community-list expanded c87 permit 119 ^65000:3_0:203_0:116$ ip community-list expanded c87 permit 120 ^65000:3_0:204_0:117$ ip community-list expanded c87 permit 121 ^65000:3_0:205_0:118$ ip community-list expanded c87 permit 122 ^65000:3_0:206_0:119$ ip community-list expanded c87 permit 123 ^65000:3_0:207_0:120$ ip community-list expanded c87 permit 124 ^65000:3_0:208_0:121$ ip community-list expanded c87 permit 125 ^65000:3_0:209_0:122$ ip community-list expanded c87 permit 126 ^65000:3_0:210_0:123$ ip community-list expanded c87 permit 127 ^65000:3_0:211_0:124$ ip community-list expanded c87 permit 128 ^65000:3_0:212_0:125$ ip community-list expanded c87 permit 129 ^65000:3_0:213_0:126$ ip community-list expanded c87 permit 130 ^65000:3_0:214_0:127$ ip community-list expanded c87 permit 131 ^65000:3_0:215_0:128$ ip community-list expanded c87 permit 132 ^65000:3_0:216_0:129$ ip community-list expanded c87 permit 133 ^65000:3_0:217_0:130$ ip community-list expanded c87 permit 134 ^65000:3_0:218_0:131$ ip community-list expanded c87 permit 135 ^65000:3_0:219_0:132$ ip community-list expanded c87 permit 136 ^65000:3_0:220_0:133$ ip community-list expanded c87 permit 137 ^65000:3_0:221_0:134$ ip community-list expanded c87 permit 138 ^65000:3_0:222_0:135$ ip community-list expanded c87 permit 139 ^65000:3_0:223_0:136$ ip community-list expanded c87 permit 140 ^65000:3_0:224_0:137$ ip community-list expanded c87 permit 141 ^65000:3_0:225_0:138$ ip community-list expanded c87 permit 142 ^65000:3_0:226_0:139$ ip community-list expanded c87 permit 143 ^65000:3_0:227_0:140$ ip community-list expanded c87 permit 144 ^65000:3_0:228_0:141$ ip community-list expanded c87 permit 145 ^65000:3_0:229_0:142$ ip community-list expanded c87 permit 146 ^65000:3_0:230_0:143$ ip community-list expanded c87 permit 147 ^65000:3_0:231_0:144$ ip community-list expanded c87 permit 148 ^65000:3_0:232_0:145$ ip community-list expanded c87 permit 149 ^65000:3_0:233_0:146$ ip community-list expanded c87 permit 150 ^65000:3_0:234_0:147$ ip community-list expanded c87 permit 151 ^65000:3_0:235_0:148$ ip community-list expanded c87 permit 152 ^65000:3_0:236_0:149$ ip community-list expanded c87 permit 153 ^65000:3_0:237_0:150$ ip community-list expanded c87 permit 154 ^65000:3_0:238_0:151$ ip community-list expanded c87 permit 155 ^65000:3_0:239_0:152$ ip community-list expanded c87 permit 156 ^65000:3_0:240_0:153$ ip community-list expanded c87 permit 157 ^65000:3_0:241_0:154$ ip community-list expanded c87 permit 158 ^65000:3_0:242_0:155$ ip community-list expanded c87 permit 159 ^65000:3_0:243_0:156$ ip community-list expanded c87 permit 160 ^65000:3_0:244_0:157$ ip community-list expanded c87 permit 161 ^65000:3_0:245_0:158$ ip community-list expanded c87 permit 162 ^65000:3_0:246_0:159$ ip community-list expanded c87 permit 163 ^65000:3_0:247_0:160$ ip community-list expanded c87 permit 164 ^65000:3_0:248_0:161$ ip community-list expanded c87 permit 165 ^65000:3_0:249_0:162$ ip community-list expanded c87 permit 166 ^65000:3_0:250_0:163$ ip community-list expanded c87 permit 167 ^65000:3_0:251_0:164$ ip community-list expanded c87 permit 168 ^65000:3_0:252_0:165$ ip community-list expanded c87 permit 169 ^65000:3_0:253_0:166$ ip community-list expanded c87 permit 170 ^65000:3_0:254_0:167$ ip community-list expanded c87 permit 171 ^65000:3_0:255_0:168$ ip community-list expanded c87 permit 172 ^65000:3_0:256_0:169$ route-map calculator permit 30689 match community 1_1_86 2_1_87 1_2_85 2_3_29 1_3_84 set community 0:87 route-map calculator permit 30690 match community 1_4_83 1_5_82 1_6_81 1_7_80 1_8_79 set community 0:87 route-map calculator permit 30691 match community 1_9_78 1_10_77 1_11_76 1_12_75 1_13_74 set community 0:87 route-map calculator permit 30692 match community 1_14_73 1_15_72 1_16_71 1_17_70 1_18_69 set community 0:87 route-map calculator permit 30693 match community 1_19_68 1_20_67 1_21_66 1_22_65 1_23_64 set community 0:87 route-map calculator permit 30694 match community 1_24_63 1_25_62 1_26_61 1_27_60 1_28_59 set community 0:87 route-map calculator permit 30695 match community 1_29_58 1_30_57 1_31_56 1_32_55 1_33_54 set community 0:87 route-map calculator permit 30696 match community 1_34_53 1_35_52 1_36_51 1_37_50 1_38_49 set community 0:87 route-map calculator permit 30697 match community 1_39_48 1_40_47 1_41_46 1_42_45 1_43_44 set community 0:87 route-map calculator permit 30698 match community c4_87_1 c3_88_1 c3_89_2 c3_90_3 c3_91_4 set community 0:87 route-map calculator permit 30699 match community c3_92_5 c3_93_6 c3_94_7 c3_95_8 c3_96_9 set community 0:87 route-map calculator permit 30700 match community c3_97_10 c3_98_11 c3_99_12 c3_100_13 c3_101_14 set community 0:87 route-map calculator permit 30701 match community c3_102_15 c3_103_16 c3_104_17 c3_105_18 c3_106_19 set community 0:87 route-map calculator permit 30702 match community c3_107_20 c3_108_21 c3_109_22 c3_110_23 c3_111_24 set community 0:87 route-map calculator permit 30703 match community c3_112_25 c3_113_26 c3_114_27 c3_115_28 c3_116_29 set community 0:87 route-map calculator permit 30704 match community c3_117_30 c3_118_31 c3_119_32 c3_120_33 c3_121_34 set community 0:87 route-map calculator permit 30705 match community c3_122_35 c3_123_36 c3_124_37 c3_125_38 c3_126_39 set community 0:87 route-map calculator permit 30706 match community c3_127_40 c3_128_41 c3_129_42 c3_130_43 c3_131_44 set community 0:87 route-map calculator permit 30707 match community c3_132_45 c3_133_46 c3_134_47 c3_135_48 c3_136_49 set community 0:87 route-map calculator permit 30708 match community c3_137_50 c3_138_51 c3_139_52 c3_140_53 c3_141_54 set community 0:87 route-map calculator permit 30709 match community c3_142_55 c3_143_56 c3_144_57 c3_145_58 c3_146_59 set community 0:87 route-map calculator permit 30710 match community c3_147_60 c3_148_61 c3_149_62 c3_150_63 c3_151_64 set community 0:87 route-map calculator permit 30711 match community c3_152_65 c3_153_66 c3_154_67 c3_155_68 c3_156_69 set community 0:87 route-map calculator permit 30712 match community c3_157_70 c3_158_71 c3_159_72 c3_160_73 c3_161_74 set community 0:87 route-map calculator permit 30713 match community c3_162_75 c3_163_76 c3_164_77 c3_165_78 c3_166_79 set community 0:87 route-map calculator permit 30714 match community c3_167_80 c3_168_81 c3_169_82 c3_170_83 c3_171_84 set community 0:87 route-map calculator permit 30715 match community c3_172_85 c3_173_86 c4_174_2 c3_174_87 c4_175_2 set community 0:87 route-map calculator permit 30716 match community c3_175_88 c3_176_89 c3_177_90 c3_178_91 c3_179_92 set community 0:87 route-map calculator permit 30717 match community c3_180_93 c3_181_94 c3_182_95 c3_183_96 c3_184_97 set community 0:87 route-map calculator permit 30718 match community c3_185_98 c3_186_99 c3_187_100 c3_188_101 c3_189_102 set community 0:87 route-map calculator permit 30719 match community c3_190_103 c3_191_104 c3_192_105 c3_193_106 c3_194_107 set community 0:87 route-map calculator permit 30720 match community c3_195_108 c3_196_109 c3_197_110 c3_198_111 c3_199_112 set community 0:87 route-map calculator permit 30721 match community c3_200_113 c3_201_114 c3_202_115 c3_203_116 c3_204_117 set community 0:87 route-map calculator permit 30722 match community c3_205_118 c3_206_119 c3_207_120 c3_208_121 c3_209_122 set community 0:87 route-map calculator permit 30723 match community c3_210_123 c3_211_124 c3_212_125 c3_213_126 c3_214_127 set community 0:87 route-map calculator permit 30724 match community c3_215_128 c3_216_129 c3_217_130 c3_218_131 c3_219_132 set community 0:87 route-map calculator permit 30725 match community c3_220_133 c3_221_134 c3_222_135 c3_223_136 c3_224_137 set community 0:87 route-map calculator permit 30726 match community c3_225_138 c3_226_139 c3_227_140 c3_228_141 c3_229_142 set community 0:87 route-map calculator permit 30727 match community c3_230_143 c3_231_144 c3_232_145 c3_233_146 c3_234_147 set community 0:87 route-map calculator permit 30728 match community c3_235_148 c3_236_149 c3_237_150 c3_238_151 c3_239_152 set community 0:87 route-map calculator permit 30729 match community c3_240_153 c3_241_154 c3_242_155 c3_243_156 c3_244_157 set community 0:87 route-map calculator permit 30730 match community c3_245_158 c3_246_159 c3_247_160 c3_248_161 c3_249_162 set community 0:87 route-map calculator permit 30731 match community c3_250_163 c3_251_164 c3_252_165 c3_253_166 c3_254_167 set community 0:87 route-map calculator permit 30732 match community c3_255_168 c3_256_169 set community 0:87 ip community-list standard 2_118_207 permit 65000:2 0:118 0:207 ip community-list standard 2_138_177 permit 65000:2 0:138 0:177 route-map calculator permit 30733 match community 2_118_207 2_138_177 set community 0:24426 ip community-list standard 2_36_149 permit 65000:2 0:36 0:149 route-map calculator permit 30734 match community 2_36_149 set community 0:5364 ip community-list standard 1_1_125 permit 65000:1 0:1 0:125 ip community-list standard 2_1_126 permit 65000:2 0:1 0:126 ip community-list standard 2_2_63 permit 65000:2 0:2 0:63 ip community-list standard 1_2_124 permit 65000:1 0:2 0:124 ip community-list standard 2_3_42 permit 65000:2 0:3 0:42 ip community-list standard 1_3_123 permit 65000:1 0:3 0:123 ip community-list standard 1_4_122 permit 65000:1 0:4 0:122 ip community-list standard 1_5_121 permit 65000:1 0:5 0:121 ip community-list standard 2_6_21 permit 65000:2 0:6 0:21 ip community-list standard 1_6_120 permit 65000:1 0:6 0:120 ip community-list standard 2_7_18 permit 65000:2 0:7 0:18 ip community-list standard 1_7_119 permit 65000:1 0:7 0:119 ip community-list standard 1_8_118 permit 65000:1 0:8 0:118 ip community-list standard 2_9_14 permit 65000:2 0:9 0:14 ip community-list standard 1_9_117 permit 65000:1 0:9 0:117 ip community-list standard 1_10_116 permit 65000:1 0:10 0:116 ip community-list standard 1_11_115 permit 65000:1 0:11 0:115 ip community-list standard 1_12_114 permit 65000:1 0:12 0:114 ip community-list standard 1_13_113 permit 65000:1 0:13 0:113 ip community-list standard 1_14_112 permit 65000:1 0:14 0:112 ip community-list standard 1_15_111 permit 65000:1 0:15 0:111 ip community-list standard 1_16_110 permit 65000:1 0:16 0:110 ip community-list standard 1_17_109 permit 65000:1 0:17 0:109 ip community-list standard 1_18_108 permit 65000:1 0:18 0:108 ip community-list standard 1_19_107 permit 65000:1 0:19 0:107 ip community-list standard 1_20_106 permit 65000:1 0:20 0:106 ip community-list standard 1_21_105 permit 65000:1 0:21 0:105 ip community-list standard 1_22_104 permit 65000:1 0:22 0:104 ip community-list standard 1_23_103 permit 65000:1 0:23 0:103 ip community-list standard 1_24_102 permit 65000:1 0:24 0:102 ip community-list standard 1_25_101 permit 65000:1 0:25 0:101 ip community-list standard 1_26_100 permit 65000:1 0:26 0:100 ip community-list standard 1_27_99 permit 65000:1 0:27 0:99 ip community-list standard 1_28_98 permit 65000:1 0:28 0:98 ip community-list standard 1_29_97 permit 65000:1 0:29 0:97 ip community-list standard 1_30_96 permit 65000:1 0:30 0:96 ip community-list standard 1_31_95 permit 65000:1 0:31 0:95 ip community-list standard 1_32_94 permit 65000:1 0:32 0:94 ip community-list standard 1_33_93 permit 65000:1 0:33 0:93 ip community-list standard 1_34_92 permit 65000:1 0:34 0:92 ip community-list standard 1_35_91 permit 65000:1 0:35 0:91 ip community-list standard 1_36_90 permit 65000:1 0:36 0:90 ip community-list standard 1_37_89 permit 65000:1 0:37 0:89 ip community-list standard 1_38_88 permit 65000:1 0:38 0:88 ip community-list standard 1_39_87 permit 65000:1 0:39 0:87 ip community-list standard 1_40_86 permit 65000:1 0:40 0:86 ip community-list standard 1_41_85 permit 65000:1 0:41 0:85 ip community-list standard 1_42_84 permit 65000:1 0:42 0:84 ip community-list standard 1_43_83 permit 65000:1 0:43 0:83 ip community-list standard 1_44_82 permit 65000:1 0:44 0:82 ip community-list standard 1_45_81 permit 65000:1 0:45 0:81 ip community-list standard 1_46_80 permit 65000:1 0:46 0:80 ip community-list standard 1_47_79 permit 65000:1 0:47 0:79 ip community-list standard 1_48_78 permit 65000:1 0:48 0:78 ip community-list standard 1_49_77 permit 65000:1 0:49 0:77 ip community-list standard 1_50_76 permit 65000:1 0:50 0:76 ip community-list standard 1_51_75 permit 65000:1 0:51 0:75 ip community-list standard 1_52_74 permit 65000:1 0:52 0:74 ip community-list standard 1_53_73 permit 65000:1 0:53 0:73 ip community-list standard 1_54_72 permit 65000:1 0:54 0:72 ip community-list standard 1_55_71 permit 65000:1 0:55 0:71 ip community-list standard 1_56_70 permit 65000:1 0:56 0:70 ip community-list standard 1_57_69 permit 65000:1 0:57 0:69 ip community-list standard 1_58_68 permit 65000:1 0:58 0:68 ip community-list standard 1_59_67 permit 65000:1 0:59 0:67 ip community-list standard 1_60_66 permit 65000:1 0:60 0:66 ip community-list standard 1_61_65 permit 65000:1 0:61 0:65 ip community-list standard 1_62_64 permit 65000:1 0:62 0:64 ip community-list standard 1_63_63 permit 65000:1 0:63 0:63 ip community-list expanded c126 permit 1 ^65000:4_0:126_0:1$ ip community-list expanded c126 permit 2 ^65000:3_0:127_0:1$ ip community-list expanded c126 permit 3 ^65000:3_0:128_0:2$ ip community-list expanded c126 permit 4 ^65000:3_0:129_0:3$ ip community-list expanded c126 permit 5 ^65000:3_0:130_0:4$ ip community-list expanded c126 permit 6 ^65000:3_0:131_0:5$ ip community-list expanded c126 permit 7 ^65000:3_0:132_0:6$ ip community-list expanded c126 permit 8 ^65000:3_0:133_0:7$ ip community-list expanded c126 permit 9 ^65000:3_0:134_0:8$ ip community-list expanded c126 permit 10 ^65000:3_0:135_0:9$ ip community-list expanded c126 permit 11 ^65000:3_0:136_0:10$ ip community-list expanded c126 permit 12 ^65000:3_0:137_0:11$ ip community-list expanded c126 permit 13 ^65000:3_0:138_0:12$ ip community-list expanded c126 permit 14 ^65000:3_0:139_0:13$ ip community-list expanded c126 permit 15 ^65000:3_0:140_0:14$ ip community-list expanded c126 permit 16 ^65000:3_0:141_0:15$ ip community-list expanded c126 permit 17 ^65000:3_0:142_0:16$ ip community-list expanded c126 permit 18 ^65000:3_0:143_0:17$ ip community-list expanded c126 permit 19 ^65000:3_0:144_0:18$ ip community-list expanded c126 permit 20 ^65000:3_0:145_0:19$ ip community-list expanded c126 permit 21 ^65000:3_0:146_0:20$ ip community-list expanded c126 permit 22 ^65000:3_0:147_0:21$ ip community-list expanded c126 permit 23 ^65000:3_0:148_0:22$ ip community-list expanded c126 permit 24 ^65000:3_0:149_0:23$ ip community-list expanded c126 permit 25 ^65000:3_0:150_0:24$ ip community-list expanded c126 permit 26 ^65000:3_0:151_0:25$ ip community-list expanded c126 permit 27 ^65000:3_0:152_0:26$ ip community-list expanded c126 permit 28 ^65000:3_0:153_0:27$ ip community-list expanded c126 permit 29 ^65000:3_0:154_0:28$ ip community-list expanded c126 permit 30 ^65000:3_0:155_0:29$ ip community-list expanded c126 permit 31 ^65000:3_0:156_0:30$ ip community-list expanded c126 permit 32 ^65000:3_0:157_0:31$ ip community-list expanded c126 permit 33 ^65000:3_0:158_0:32$ ip community-list expanded c126 permit 34 ^65000:3_0:159_0:33$ ip community-list expanded c126 permit 35 ^65000:3_0:160_0:34$ ip community-list expanded c126 permit 36 ^65000:3_0:161_0:35$ ip community-list expanded c126 permit 37 ^65000:3_0:162_0:36$ ip community-list expanded c126 permit 38 ^65000:3_0:163_0:37$ ip community-list expanded c126 permit 39 ^65000:3_0:164_0:38$ ip community-list expanded c126 permit 40 ^65000:3_0:165_0:39$ ip community-list expanded c126 permit 41 ^65000:3_0:166_0:40$ ip community-list expanded c126 permit 42 ^65000:3_0:167_0:41$ ip community-list expanded c126 permit 43 ^65000:3_0:168_0:42$ ip community-list expanded c126 permit 44 ^65000:3_0:169_0:43$ ip community-list expanded c126 permit 45 ^65000:3_0:170_0:44$ ip community-list expanded c126 permit 46 ^65000:3_0:171_0:45$ ip community-list expanded c126 permit 47 ^65000:3_0:172_0:46$ ip community-list expanded c126 permit 48 ^65000:3_0:173_0:47$ ip community-list expanded c126 permit 49 ^65000:3_0:174_0:48$ ip community-list expanded c126 permit 50 ^65000:3_0:175_0:49$ ip community-list expanded c126 permit 51 ^65000:3_0:176_0:50$ ip community-list expanded c126 permit 52 ^65000:3_0:177_0:51$ ip community-list expanded c126 permit 53 ^65000:3_0:178_0:52$ ip community-list expanded c126 permit 54 ^65000:3_0:179_0:53$ ip community-list expanded c126 permit 55 ^65000:3_0:180_0:54$ ip community-list expanded c126 permit 56 ^65000:3_0:181_0:55$ ip community-list expanded c126 permit 57 ^65000:3_0:182_0:56$ ip community-list expanded c126 permit 58 ^65000:3_0:183_0:57$ ip community-list expanded c126 permit 59 ^65000:3_0:184_0:58$ ip community-list expanded c126 permit 60 ^65000:3_0:185_0:59$ ip community-list expanded c126 permit 61 ^65000:3_0:186_0:60$ ip community-list expanded c126 permit 62 ^65000:3_0:187_0:61$ ip community-list expanded c126 permit 63 ^65000:3_0:188_0:62$ ip community-list expanded c126 permit 64 ^65000:3_0:189_0:63$ ip community-list expanded c126 permit 65 ^65000:3_0:190_0:64$ ip community-list expanded c126 permit 66 ^65000:3_0:191_0:65$ ip community-list expanded c126 permit 67 ^65000:3_0:192_0:66$ ip community-list expanded c126 permit 68 ^65000:3_0:193_0:67$ ip community-list expanded c126 permit 69 ^65000:3_0:194_0:68$ ip community-list expanded c126 permit 70 ^65000:3_0:195_0:69$ ip community-list expanded c126 permit 71 ^65000:3_0:196_0:70$ ip community-list expanded c126 permit 72 ^65000:3_0:197_0:71$ ip community-list expanded c126 permit 73 ^65000:3_0:198_0:72$ ip community-list expanded c126 permit 74 ^65000:3_0:199_0:73$ ip community-list expanded c126 permit 75 ^65000:3_0:200_0:74$ ip community-list expanded c126 permit 76 ^65000:3_0:201_0:75$ ip community-list expanded c126 permit 77 ^65000:3_0:202_0:76$ ip community-list expanded c126 permit 78 ^65000:3_0:203_0:77$ ip community-list expanded c126 permit 79 ^65000:3_0:204_0:78$ ip community-list expanded c126 permit 80 ^65000:3_0:205_0:79$ ip community-list expanded c126 permit 81 ^65000:3_0:206_0:80$ ip community-list expanded c126 permit 82 ^65000:3_0:207_0:81$ ip community-list expanded c126 permit 83 ^65000:3_0:208_0:82$ ip community-list expanded c126 permit 84 ^65000:3_0:209_0:83$ ip community-list expanded c126 permit 85 ^65000:3_0:210_0:84$ ip community-list expanded c126 permit 86 ^65000:3_0:211_0:85$ ip community-list expanded c126 permit 87 ^65000:3_0:212_0:86$ ip community-list expanded c126 permit 88 ^65000:3_0:213_0:87$ ip community-list expanded c126 permit 89 ^65000:3_0:214_0:88$ ip community-list expanded c126 permit 90 ^65000:3_0:215_0:89$ ip community-list expanded c126 permit 91 ^65000:3_0:216_0:90$ ip community-list expanded c126 permit 92 ^65000:3_0:217_0:91$ ip community-list expanded c126 permit 93 ^65000:3_0:218_0:92$ ip community-list expanded c126 permit 94 ^65000:3_0:219_0:93$ ip community-list expanded c126 permit 95 ^65000:3_0:220_0:94$ ip community-list expanded c126 permit 96 ^65000:3_0:221_0:95$ ip community-list expanded c126 permit 97 ^65000:3_0:222_0:96$ ip community-list expanded c126 permit 98 ^65000:3_0:223_0:97$ ip community-list expanded c126 permit 99 ^65000:3_0:224_0:98$ ip community-list expanded c126 permit 100 ^65000:3_0:225_0:99$ ip community-list expanded c126 permit 101 ^65000:3_0:226_0:100$ ip community-list expanded c126 permit 102 ^65000:3_0:227_0:101$ ip community-list expanded c126 permit 103 ^65000:3_0:228_0:102$ ip community-list expanded c126 permit 104 ^65000:3_0:229_0:103$ ip community-list expanded c126 permit 105 ^65000:3_0:230_0:104$ ip community-list expanded c126 permit 106 ^65000:3_0:231_0:105$ ip community-list expanded c126 permit 107 ^65000:3_0:232_0:106$ ip community-list expanded c126 permit 108 ^65000:3_0:233_0:107$ ip community-list expanded c126 permit 109 ^65000:3_0:234_0:108$ ip community-list expanded c126 permit 110 ^65000:3_0:235_0:109$ ip community-list expanded c126 permit 111 ^65000:3_0:236_0:110$ ip community-list expanded c126 permit 112 ^65000:3_0:237_0:111$ ip community-list expanded c126 permit 113 ^65000:3_0:238_0:112$ ip community-list expanded c126 permit 114 ^65000:3_0:239_0:113$ ip community-list expanded c126 permit 115 ^65000:3_0:240_0:114$ ip community-list expanded c126 permit 116 ^65000:3_0:241_0:115$ ip community-list expanded c126 permit 117 ^65000:3_0:242_0:116$ ip community-list expanded c126 permit 118 ^65000:3_0:243_0:117$ ip community-list expanded c126 permit 119 ^65000:3_0:244_0:118$ ip community-list expanded c126 permit 120 ^65000:3_0:245_0:119$ ip community-list expanded c126 permit 121 ^65000:3_0:246_0:120$ ip community-list expanded c126 permit 122 ^65000:3_0:247_0:121$ ip community-list expanded c126 permit 123 ^65000:3_0:248_0:122$ ip community-list expanded c126 permit 124 ^65000:3_0:249_0:123$ ip community-list expanded c126 permit 125 ^65000:3_0:250_0:124$ ip community-list expanded c126 permit 126 ^65000:3_0:251_0:125$ ip community-list expanded c126 permit 127 ^65000:4_0:252_0:2$ ip community-list expanded c126 permit 128 ^65000:3_0:252_0:126$ ip community-list expanded c126 permit 129 ^65000:4_0:253_0:2$ ip community-list expanded c126 permit 130 ^65000:3_0:253_0:127$ ip community-list expanded c126 permit 131 ^65000:3_0:254_0:128$ ip community-list expanded c126 permit 132 ^65000:3_0:255_0:129$ ip community-list expanded c126 permit 133 ^65000:3_0:256_0:130$ route-map calculator permit 30735 match community 1_1_125 2_1_126 2_2_63 1_2_124 2_3_42 set community 0:126 route-map calculator permit 30736 match community 1_3_123 1_4_122 1_5_121 2_6_21 1_6_120 set community 0:126 route-map calculator permit 30737 match community 2_7_18 1_7_119 1_8_118 2_9_14 1_9_117 set community 0:126 route-map calculator permit 30738 match community 1_10_116 1_11_115 1_12_114 1_13_113 1_14_112 set community 0:126 route-map calculator permit 30739 match community 1_15_111 1_16_110 1_17_109 1_18_108 1_19_107 set community 0:126 route-map calculator permit 30740 match community 1_20_106 1_21_105 1_22_104 1_23_103 1_24_102 set community 0:126 route-map calculator permit 30741 match community 1_25_101 1_26_100 1_27_99 1_28_98 1_29_97 set community 0:126 route-map calculator permit 30742 match community 1_30_96 1_31_95 1_32_94 1_33_93 1_34_92 set community 0:126 route-map calculator permit 30743 match community 1_35_91 1_36_90 1_37_89 1_38_88 1_39_87 set community 0:126 route-map calculator permit 30744 match community 1_40_86 1_41_85 1_42_84 1_43_83 1_44_82 set community 0:126 route-map calculator permit 30745 match community 1_45_81 1_46_80 1_47_79 1_48_78 1_49_77 set community 0:126 route-map calculator permit 30746 match community 1_50_76 1_51_75 1_52_74 1_53_73 1_54_72 set community 0:126 route-map calculator permit 30747 match community 1_55_71 1_56_70 1_57_69 1_58_68 1_59_67 set community 0:126 route-map calculator permit 30748 match community 1_60_66 1_61_65 1_62_64 1_63_63 c4_126_1 set community 0:126 route-map calculator permit 30749 match community c3_127_1 c3_128_2 c3_129_3 c3_130_4 c3_131_5 set community 0:126 route-map calculator permit 30750 match community c3_132_6 c3_133_7 c3_134_8 c3_135_9 c3_136_10 set community 0:126 route-map calculator permit 30751 match community c3_137_11 c3_138_12 c3_139_13 c3_140_14 c3_141_15 set community 0:126 route-map calculator permit 30752 match community c3_142_16 c3_143_17 c3_144_18 c3_145_19 c3_146_20 set community 0:126 route-map calculator permit 30753 match community c3_147_21 c3_148_22 c3_149_23 c3_150_24 c3_151_25 set community 0:126 route-map calculator permit 30754 match community c3_152_26 c3_153_27 c3_154_28 c3_155_29 c3_156_30 set community 0:126 route-map calculator permit 30755 match community c3_157_31 c3_158_32 c3_159_33 c3_160_34 c3_161_35 set community 0:126 route-map calculator permit 30756 match community c3_162_36 c3_163_37 c3_164_38 c3_165_39 c3_166_40 set community 0:126 route-map calculator permit 30757 match community c3_167_41 c3_168_42 c3_169_43 c3_170_44 c3_171_45 set community 0:126 route-map calculator permit 30758 match community c3_172_46 c3_173_47 c3_174_48 c3_175_49 c3_176_50 set community 0:126 route-map calculator permit 30759 match community c3_177_51 c3_178_52 c3_179_53 c3_180_54 c3_181_55 set community 0:126 route-map calculator permit 30760 match community c3_182_56 c3_183_57 c3_184_58 c3_185_59 c3_186_60 set community 0:126 route-map calculator permit 30761 match community c3_187_61 c3_188_62 c3_189_63 c3_190_64 c3_191_65 set community 0:126 route-map calculator permit 30762 match community c3_192_66 c3_193_67 c3_194_68 c3_195_69 c3_196_70 set community 0:126 route-map calculator permit 30763 match community c3_197_71 c3_198_72 c3_199_73 c3_200_74 c3_201_75 set community 0:126 route-map calculator permit 30764 match community c3_202_76 c3_203_77 c3_204_78 c3_205_79 c3_206_80 set community 0:126 route-map calculator permit 30765 match community c3_207_81 c3_208_82 c3_209_83 c3_210_84 c3_211_85 set community 0:126 route-map calculator permit 30766 match community c3_212_86 c3_213_87 c3_214_88 c3_215_89 c3_216_90 set community 0:126 route-map calculator permit 30767 match community c3_217_91 c3_218_92 c3_219_93 c3_220_94 c3_221_95 set community 0:126 route-map calculator permit 30768 match community c3_222_96 c3_223_97 c3_224_98 c3_225_99 c3_226_100 set community 0:126 route-map calculator permit 30769 match community c3_227_101 c3_228_102 c3_229_103 c3_230_104 c3_231_105 set community 0:126 route-map calculator permit 30770 match community c3_232_106 c3_233_107 c3_234_108 c3_235_109 c3_236_110 set community 0:126 route-map calculator permit 30771 match community c3_237_111 c3_238_112 c3_239_113 c3_240_114 c3_241_115 set community 0:126 route-map calculator permit 30772 match community c3_242_116 c3_243_117 c3_244_118 c3_245_119 c3_246_120 set community 0:126 route-map calculator permit 30773 match community c3_247_121 c3_248_122 c3_249_123 c3_250_124 c3_251_125 set community 0:126 route-map calculator permit 30774 match community c4_252_2 c3_252_126 c4_253_2 c3_253_127 c3_254_128 set community 0:126 route-map calculator permit 30775 match community c3_255_129 c3_256_130 set community 0:126 ip community-list standard 2_148_154 permit 65000:2 0:148 0:154 route-map calculator permit 30776 match community 2_148_154 set community 0:22792 ip community-list standard 2_215_232 permit 65000:2 0:215 0:232 route-map calculator permit 30777 match community 2_215_232 set community 0:49880 ip community-list standard 2_80_215 permit 65000:2 0:80 0:215 ip community-list standard 2_86_200 permit 65000:2 0:86 0:200 ip community-list standard 2_100_172 permit 65000:2 0:100 0:172 route-map calculator permit 30778 match community 2_80_215 2_86_200 2_100_172 set community 0:17200 ip community-list standard 2_111_250 permit 65000:2 0:111 0:250 ip community-list standard 2_125_222 permit 65000:2 0:125 0:222 ip community-list standard 2_150_185 permit 65000:2 0:150 0:185 route-map calculator permit 30779 match community 2_111_250 2_125_222 2_150_185 set community 0:27750 ip community-list standard 2_160_241 permit 65000:2 0:160 0:241 route-map calculator permit 30780 match community 2_160_241 set community 0:38560 ip community-list standard 2_135_237 permit 65000:2 0:135 0:237 route-map calculator permit 30781 match community 2_135_237 set community 0:31995 ip community-list standard 2_183_195 permit 65000:2 0:183 0:195 route-map calculator permit 30782 match community 2_183_195 set community 0:35685 ip community-list standard 2_141_143 permit 65000:2 0:141 0:143 route-map calculator permit 30783 match community 2_141_143 set community 0:20163 ip community-list standard 2_17_123 permit 65000:2 0:17 0:123 ip community-list standard 2_41_51 permit 65000:2 0:41 0:51 route-map calculator permit 30784 match community 2_17_123 2_41_51 set community 0:2091 ip community-list standard 2_141_182 permit 65000:2 0:141 0:182 route-map calculator permit 30785 match community 2_141_182 set community 0:25662 ip community-list standard 2_74_199 permit 65000:2 0:74 0:199 route-map calculator permit 30786 match community 2_74_199 set community 0:14726 ip community-list standard 2_193_253 permit 65000:2 0:193 0:253 route-map calculator permit 30787 match community 2_193_253 set community 0:48829 ip community-list standard 2_22_224 permit 65000:2 0:22 0:224 ip community-list standard 2_28_176 permit 65000:2 0:28 0:176 ip community-list standard 2_32_154 permit 65000:2 0:32 0:154 ip community-list standard 2_44_112 permit 65000:2 0:44 0:112 ip community-list standard 2_56_88 permit 65000:2 0:56 0:88 ip community-list standard 2_64_77 permit 65000:2 0:64 0:77 route-map calculator permit 30788 match community 2_22_224 2_28_176 2_32_154 2_44_112 2_56_88 set community 0:4928 route-map calculator permit 30789 match community 2_64_77 set community 0:4928 ip community-list standard 2_23_245 permit 65000:2 0:23 0:245 ip community-list standard 2_35_161 permit 65000:2 0:35 0:161 ip community-list standard 2_49_115 permit 65000:2 0:49 0:115 route-map calculator permit 30790 match community 2_23_245 2_35_161 2_49_115 set community 0:5635 ip community-list standard 2_25_122 permit 65000:2 0:25 0:122 ip community-list standard 2_50_61 permit 65000:2 0:50 0:61 route-map calculator permit 30791 match community 2_25_122 2_50_61 set community 0:3050 ip community-list standard 2_42_188 permit 65000:2 0:42 0:188 ip community-list standard 2_47_168 permit 65000:2 0:47 0:168 ip community-list standard 2_56_141 permit 65000:2 0:56 0:141 ip community-list standard 2_84_94 permit 65000:2 0:84 0:94 route-map calculator permit 30792 match community 2_42_188 2_47_168 2_56_141 2_84_94 set community 0:7896 ip community-list standard 2_29_86 permit 65000:2 0:29 0:86 ip community-list standard 2_43_58 permit 65000:2 0:43 0:58 route-map calculator permit 30793 match community 2_29_86 2_43_58 set community 0:2494 ip community-list standard 2_74_232 permit 65000:2 0:74 0:232 ip community-list standard 2_116_148 permit 65000:2 0:116 0:148 route-map calculator permit 30794 match community 2_74_232 2_116_148 set community 0:17168 ip community-list standard 2_188_214 permit 65000:2 0:188 0:214 route-map calculator permit 30795 match community 2_188_214 set community 0:40232 ip community-list standard 2_127_207 permit 65000:2 0:127 0:207 route-map calculator permit 30796 match community 2_127_207 set community 0:26289 ip community-list standard 2_15_205 permit 65000:2 0:15 0:205 ip community-list standard 2_25_123 permit 65000:2 0:25 0:123 ip community-list standard 2_41_75 permit 65000:2 0:41 0:75 route-map calculator permit 30797 match community 2_15_205 2_25_123 2_41_75 set community 0:3075 ip community-list standard 2_39_207 permit 65000:2 0:39 0:207 ip community-list standard 2_69_117 permit 65000:2 0:69 0:117 route-map calculator permit 30798 match community 2_39_207 2_69_117 set community 0:8073 ip community-list standard 2_71_206 permit 65000:2 0:71 0:206 ip community-list standard 2_103_142 permit 65000:2 0:103 0:142 route-map calculator permit 30799 match community 2_71_206 2_103_142 set community 0:14626 ip community-list standard 2_35_166 permit 65000:2 0:35 0:166 ip community-list standard 2_70_83 permit 65000:2 0:70 0:83 route-map calculator permit 30800 match community 2_35_166 2_70_83 set community 0:5810 ip community-list standard 2_222_232 permit 65000:2 0:222 0:232 route-map calculator permit 30801 match community 2_222_232 set community 0:51504 ip community-list standard 2_195_214 permit 65000:2 0:195 0:214 route-map calculator permit 30802 match community 2_195_214 set community 0:41730 ip community-list standard 2_92_157 permit 65000:2 0:92 0:157 route-map calculator permit 30803 match community 2_92_157 set community 0:14444 ip community-list standard 2_69_207 permit 65000:2 0:69 0:207 route-map calculator permit 30804 match community 2_69_207 set community 0:14283 ip community-list standard 2_4_178 permit 65000:2 0:4 0:178 ip community-list standard 2_8_89 permit 65000:2 0:8 0:89 route-map calculator permit 30805 match community 2_4_178 2_8_89 set community 0:712 ip community-list standard 2_22_205 permit 65000:2 0:22 0:205 ip community-list standard 2_41_110 permit 65000:2 0:41 0:110 ip community-list standard 2_55_82 permit 65000:2 0:55 0:82 route-map calculator permit 30806 match community 2_22_205 2_41_110 2_55_82 set community 0:4510 ip community-list standard 2_130_179 permit 65000:2 0:130 0:179 route-map calculator permit 30807 match community 2_130_179 set community 0:23270 ip community-list standard 2_89_247 permit 65000:2 0:89 0:247 route-map calculator permit 30808 match community 2_89_247 set community 0:21983 ip community-list standard 2_202_211 permit 65000:2 0:202 0:211 route-map calculator permit 30809 match community 2_202_211 set community 0:42622 ip community-list standard 2_13_175 permit 65000:2 0:13 0:175 ip community-list standard 2_25_91 permit 65000:2 0:25 0:91 ip community-list standard 2_35_65 permit 65000:2 0:35 0:65 route-map calculator permit 30810 match community 2_13_175 2_25_91 2_35_65 set community 0:2275 ip community-list standard 2_67_71 permit 65000:2 0:67 0:71 route-map calculator permit 30811 match community 2_67_71 set community 0:4757 ip community-list standard 1_1_72 permit 65000:1 0:1 0:72 ip community-list standard 2_1_73 permit 65000:2 0:1 0:73 ip community-list standard 1_2_71 permit 65000:1 0:2 0:71 ip community-list standard 1_3_70 permit 65000:1 0:3 0:70 ip community-list standard 1_4_69 permit 65000:1 0:4 0:69 ip community-list standard 1_5_68 permit 65000:1 0:5 0:68 ip community-list standard 1_6_67 permit 65000:1 0:6 0:67 ip community-list standard 1_7_66 permit 65000:1 0:7 0:66 ip community-list standard 1_8_65 permit 65000:1 0:8 0:65 ip community-list standard 1_9_64 permit 65000:1 0:9 0:64 ip community-list standard 1_10_63 permit 65000:1 0:10 0:63 ip community-list standard 1_11_62 permit 65000:1 0:11 0:62 ip community-list standard 1_12_61 permit 65000:1 0:12 0:61 ip community-list standard 1_13_60 permit 65000:1 0:13 0:60 ip community-list standard 1_14_59 permit 65000:1 0:14 0:59 ip community-list standard 1_15_58 permit 65000:1 0:15 0:58 ip community-list standard 1_16_57 permit 65000:1 0:16 0:57 ip community-list standard 1_17_56 permit 65000:1 0:17 0:56 ip community-list standard 1_18_55 permit 65000:1 0:18 0:55 ip community-list standard 1_19_54 permit 65000:1 0:19 0:54 ip community-list standard 1_20_53 permit 65000:1 0:20 0:53 ip community-list standard 1_21_52 permit 65000:1 0:21 0:52 ip community-list standard 1_22_51 permit 65000:1 0:22 0:51 ip community-list standard 1_23_50 permit 65000:1 0:23 0:50 ip community-list standard 1_24_49 permit 65000:1 0:24 0:49 ip community-list standard 1_25_48 permit 65000:1 0:25 0:48 ip community-list standard 1_26_47 permit 65000:1 0:26 0:47 ip community-list standard 1_27_46 permit 65000:1 0:27 0:46 ip community-list standard 1_28_45 permit 65000:1 0:28 0:45 ip community-list standard 1_29_44 permit 65000:1 0:29 0:44 ip community-list standard 1_30_43 permit 65000:1 0:30 0:43 ip community-list standard 1_31_42 permit 65000:1 0:31 0:42 ip community-list standard 1_32_41 permit 65000:1 0:32 0:41 ip community-list standard 1_33_40 permit 65000:1 0:33 0:40 ip community-list standard 1_34_39 permit 65000:1 0:34 0:39 ip community-list standard 1_35_38 permit 65000:1 0:35 0:38 ip community-list standard 1_36_37 permit 65000:1 0:36 0:37 ip community-list expanded c73 permit 1 ^65000:4_0:73_0:1$ ip community-list expanded c73 permit 2 ^65000:3_0:74_0:1$ ip community-list expanded c73 permit 3 ^65000:3_0:75_0:2$ ip community-list expanded c73 permit 4 ^65000:3_0:76_0:3$ ip community-list expanded c73 permit 5 ^65000:3_0:77_0:4$ ip community-list expanded c73 permit 6 ^65000:3_0:78_0:5$ ip community-list expanded c73 permit 7 ^65000:3_0:79_0:6$ ip community-list expanded c73 permit 8 ^65000:3_0:80_0:7$ ip community-list expanded c73 permit 9 ^65000:3_0:81_0:8$ ip community-list expanded c73 permit 10 ^65000:3_0:82_0:9$ ip community-list expanded c73 permit 11 ^65000:3_0:83_0:10$ ip community-list expanded c73 permit 12 ^65000:3_0:84_0:11$ ip community-list expanded c73 permit 13 ^65000:3_0:85_0:12$ ip community-list expanded c73 permit 14 ^65000:3_0:86_0:13$ ip community-list expanded c73 permit 15 ^65000:3_0:87_0:14$ ip community-list expanded c73 permit 16 ^65000:3_0:88_0:15$ ip community-list expanded c73 permit 17 ^65000:3_0:89_0:16$ ip community-list expanded c73 permit 18 ^65000:3_0:90_0:17$ ip community-list expanded c73 permit 19 ^65000:3_0:91_0:18$ ip community-list expanded c73 permit 20 ^65000:3_0:92_0:19$ ip community-list expanded c73 permit 21 ^65000:3_0:93_0:20$ ip community-list expanded c73 permit 22 ^65000:3_0:94_0:21$ ip community-list expanded c73 permit 23 ^65000:3_0:95_0:22$ ip community-list expanded c73 permit 24 ^65000:3_0:96_0:23$ ip community-list expanded c73 permit 25 ^65000:3_0:97_0:24$ ip community-list expanded c73 permit 26 ^65000:3_0:98_0:25$ ip community-list expanded c73 permit 27 ^65000:3_0:99_0:26$ ip community-list expanded c73 permit 28 ^65000:3_0:100_0:27$ ip community-list expanded c73 permit 29 ^65000:3_0:101_0:28$ ip community-list expanded c73 permit 30 ^65000:3_0:102_0:29$ ip community-list expanded c73 permit 31 ^65000:3_0:103_0:30$ ip community-list expanded c73 permit 32 ^65000:3_0:104_0:31$ ip community-list expanded c73 permit 33 ^65000:3_0:105_0:32$ ip community-list expanded c73 permit 34 ^65000:3_0:106_0:33$ ip community-list expanded c73 permit 35 ^65000:3_0:107_0:34$ ip community-list expanded c73 permit 36 ^65000:3_0:108_0:35$ ip community-list expanded c73 permit 37 ^65000:3_0:109_0:36$ ip community-list expanded c73 permit 38 ^65000:3_0:110_0:37$ ip community-list expanded c73 permit 39 ^65000:3_0:111_0:38$ ip community-list expanded c73 permit 40 ^65000:3_0:112_0:39$ ip community-list expanded c73 permit 41 ^65000:3_0:113_0:40$ ip community-list expanded c73 permit 42 ^65000:3_0:114_0:41$ ip community-list expanded c73 permit 43 ^65000:3_0:115_0:42$ ip community-list expanded c73 permit 44 ^65000:3_0:116_0:43$ ip community-list expanded c73 permit 45 ^65000:3_0:117_0:44$ ip community-list expanded c73 permit 46 ^65000:3_0:118_0:45$ ip community-list expanded c73 permit 47 ^65000:3_0:119_0:46$ ip community-list expanded c73 permit 48 ^65000:3_0:120_0:47$ ip community-list expanded c73 permit 49 ^65000:3_0:121_0:48$ ip community-list expanded c73 permit 50 ^65000:3_0:122_0:49$ ip community-list expanded c73 permit 51 ^65000:3_0:123_0:50$ ip community-list expanded c73 permit 52 ^65000:3_0:124_0:51$ ip community-list expanded c73 permit 53 ^65000:3_0:125_0:52$ ip community-list expanded c73 permit 54 ^65000:3_0:126_0:53$ ip community-list expanded c73 permit 55 ^65000:3_0:127_0:54$ ip community-list expanded c73 permit 56 ^65000:3_0:128_0:55$ ip community-list expanded c73 permit 57 ^65000:3_0:129_0:56$ ip community-list expanded c73 permit 58 ^65000:3_0:130_0:57$ ip community-list expanded c73 permit 59 ^65000:3_0:131_0:58$ ip community-list expanded c73 permit 60 ^65000:3_0:132_0:59$ ip community-list expanded c73 permit 61 ^65000:3_0:133_0:60$ ip community-list expanded c73 permit 62 ^65000:3_0:134_0:61$ ip community-list expanded c73 permit 63 ^65000:3_0:135_0:62$ ip community-list expanded c73 permit 64 ^65000:3_0:136_0:63$ ip community-list expanded c73 permit 65 ^65000:3_0:137_0:64$ ip community-list expanded c73 permit 66 ^65000:3_0:138_0:65$ ip community-list expanded c73 permit 67 ^65000:3_0:139_0:66$ ip community-list expanded c73 permit 68 ^65000:3_0:140_0:67$ ip community-list expanded c73 permit 69 ^65000:3_0:141_0:68$ ip community-list expanded c73 permit 70 ^65000:3_0:142_0:69$ ip community-list expanded c73 permit 71 ^65000:3_0:143_0:70$ ip community-list expanded c73 permit 72 ^65000:3_0:144_0:71$ ip community-list expanded c73 permit 73 ^65000:3_0:145_0:72$ ip community-list expanded c73 permit 74 ^65000:4_0:146_0:2$ ip community-list expanded c73 permit 75 ^65000:3_0:146_0:73$ ip community-list expanded c73 permit 76 ^65000:4_0:147_0:2$ ip community-list expanded c73 permit 77 ^65000:3_0:147_0:74$ ip community-list expanded c73 permit 78 ^65000:3_0:148_0:75$ ip community-list expanded c73 permit 79 ^65000:3_0:149_0:76$ ip community-list expanded c73 permit 80 ^65000:3_0:150_0:77$ ip community-list expanded c73 permit 81 ^65000:3_0:151_0:78$ ip community-list expanded c73 permit 82 ^65000:3_0:152_0:79$ ip community-list expanded c73 permit 83 ^65000:3_0:153_0:80$ ip community-list expanded c73 permit 84 ^65000:3_0:154_0:81$ ip community-list expanded c73 permit 85 ^65000:3_0:155_0:82$ ip community-list expanded c73 permit 86 ^65000:3_0:156_0:83$ ip community-list expanded c73 permit 87 ^65000:3_0:157_0:84$ ip community-list expanded c73 permit 88 ^65000:3_0:158_0:85$ ip community-list expanded c73 permit 89 ^65000:3_0:159_0:86$ ip community-list expanded c73 permit 90 ^65000:3_0:160_0:87$ ip community-list expanded c73 permit 91 ^65000:3_0:161_0:88$ ip community-list expanded c73 permit 92 ^65000:3_0:162_0:89$ ip community-list expanded c73 permit 93 ^65000:3_0:163_0:90$ ip community-list expanded c73 permit 94 ^65000:3_0:164_0:91$ ip community-list expanded c73 permit 95 ^65000:3_0:165_0:92$ ip community-list expanded c73 permit 96 ^65000:3_0:166_0:93$ ip community-list expanded c73 permit 97 ^65000:3_0:167_0:94$ ip community-list expanded c73 permit 98 ^65000:3_0:168_0:95$ ip community-list expanded c73 permit 99 ^65000:3_0:169_0:96$ ip community-list expanded c73 permit 100 ^65000:3_0:170_0:97$ ip community-list expanded c73 permit 101 ^65000:3_0:171_0:98$ ip community-list expanded c73 permit 102 ^65000:3_0:172_0:99$ ip community-list expanded c73 permit 103 ^65000:3_0:173_0:100$ ip community-list expanded c73 permit 104 ^65000:3_0:174_0:101$ ip community-list expanded c73 permit 105 ^65000:3_0:175_0:102$ ip community-list expanded c73 permit 106 ^65000:3_0:176_0:103$ ip community-list expanded c73 permit 107 ^65000:3_0:177_0:104$ ip community-list expanded c73 permit 108 ^65000:3_0:178_0:105$ ip community-list expanded c73 permit 109 ^65000:3_0:179_0:106$ ip community-list expanded c73 permit 110 ^65000:3_0:180_0:107$ ip community-list expanded c73 permit 111 ^65000:3_0:181_0:108$ ip community-list expanded c73 permit 112 ^65000:3_0:182_0:109$ ip community-list expanded c73 permit 113 ^65000:3_0:183_0:110$ ip community-list expanded c73 permit 114 ^65000:3_0:184_0:111$ ip community-list expanded c73 permit 115 ^65000:3_0:185_0:112$ ip community-list expanded c73 permit 116 ^65000:3_0:186_0:113$ ip community-list expanded c73 permit 117 ^65000:3_0:187_0:114$ ip community-list expanded c73 permit 118 ^65000:3_0:188_0:115$ ip community-list expanded c73 permit 119 ^65000:3_0:189_0:116$ ip community-list expanded c73 permit 120 ^65000:3_0:190_0:117$ ip community-list expanded c73 permit 121 ^65000:3_0:191_0:118$ ip community-list expanded c73 permit 122 ^65000:3_0:192_0:119$ ip community-list expanded c73 permit 123 ^65000:3_0:193_0:120$ ip community-list expanded c73 permit 124 ^65000:3_0:194_0:121$ ip community-list expanded c73 permit 125 ^65000:3_0:195_0:122$ ip community-list expanded c73 permit 126 ^65000:3_0:196_0:123$ ip community-list expanded c73 permit 127 ^65000:3_0:197_0:124$ ip community-list expanded c73 permit 128 ^65000:3_0:198_0:125$ ip community-list expanded c73 permit 129 ^65000:3_0:199_0:126$ ip community-list expanded c73 permit 130 ^65000:3_0:200_0:127$ ip community-list expanded c73 permit 131 ^65000:3_0:201_0:128$ ip community-list expanded c73 permit 132 ^65000:3_0:202_0:129$ ip community-list expanded c73 permit 133 ^65000:3_0:203_0:130$ ip community-list expanded c73 permit 134 ^65000:3_0:204_0:131$ ip community-list expanded c73 permit 135 ^65000:3_0:205_0:132$ ip community-list expanded c73 permit 136 ^65000:3_0:206_0:133$ ip community-list expanded c73 permit 137 ^65000:3_0:207_0:134$ ip community-list expanded c73 permit 138 ^65000:3_0:208_0:135$ ip community-list expanded c73 permit 139 ^65000:3_0:209_0:136$ ip community-list expanded c73 permit 140 ^65000:3_0:210_0:137$ ip community-list expanded c73 permit 141 ^65000:3_0:211_0:138$ ip community-list expanded c73 permit 142 ^65000:3_0:212_0:139$ ip community-list expanded c73 permit 143 ^65000:3_0:213_0:140$ ip community-list expanded c73 permit 144 ^65000:3_0:214_0:141$ ip community-list expanded c73 permit 145 ^65000:3_0:215_0:142$ ip community-list expanded c73 permit 146 ^65000:3_0:216_0:143$ ip community-list expanded c73 permit 147 ^65000:3_0:217_0:144$ ip community-list expanded c73 permit 148 ^65000:3_0:218_0:145$ ip community-list expanded c73 permit 149 ^65000:4_0:219_0:3$ ip community-list expanded c73 permit 150 ^65000:3_0:219_0:146$ ip community-list expanded c73 permit 151 ^65000:4_0:220_0:3$ ip community-list expanded c73 permit 152 ^65000:3_0:220_0:147$ ip community-list expanded c73 permit 153 ^65000:4_0:221_0:3$ ip community-list expanded c73 permit 154 ^65000:3_0:221_0:148$ ip community-list expanded c73 permit 155 ^65000:3_0:222_0:149$ ip community-list expanded c73 permit 156 ^65000:3_0:223_0:150$ ip community-list expanded c73 permit 157 ^65000:3_0:224_0:151$ ip community-list expanded c73 permit 158 ^65000:3_0:225_0:152$ ip community-list expanded c73 permit 159 ^65000:3_0:226_0:153$ ip community-list expanded c73 permit 160 ^65000:3_0:227_0:154$ ip community-list expanded c73 permit 161 ^65000:3_0:228_0:155$ ip community-list expanded c73 permit 162 ^65000:3_0:229_0:156$ ip community-list expanded c73 permit 163 ^65000:3_0:230_0:157$ ip community-list expanded c73 permit 164 ^65000:3_0:231_0:158$ ip community-list expanded c73 permit 165 ^65000:3_0:232_0:159$ ip community-list expanded c73 permit 166 ^65000:3_0:233_0:160$ ip community-list expanded c73 permit 167 ^65000:3_0:234_0:161$ ip community-list expanded c73 permit 168 ^65000:3_0:235_0:162$ ip community-list expanded c73 permit 169 ^65000:3_0:236_0:163$ ip community-list expanded c73 permit 170 ^65000:3_0:237_0:164$ ip community-list expanded c73 permit 171 ^65000:3_0:238_0:165$ ip community-list expanded c73 permit 172 ^65000:3_0:239_0:166$ ip community-list expanded c73 permit 173 ^65000:3_0:240_0:167$ ip community-list expanded c73 permit 174 ^65000:3_0:241_0:168$ ip community-list expanded c73 permit 175 ^65000:3_0:242_0:169$ ip community-list expanded c73 permit 176 ^65000:3_0:243_0:170$ ip community-list expanded c73 permit 177 ^65000:3_0:244_0:171$ ip community-list expanded c73 permit 178 ^65000:3_0:245_0:172$ ip community-list expanded c73 permit 179 ^65000:3_0:246_0:173$ ip community-list expanded c73 permit 180 ^65000:3_0:247_0:174$ ip community-list expanded c73 permit 181 ^65000:3_0:248_0:175$ ip community-list expanded c73 permit 182 ^65000:3_0:249_0:176$ ip community-list expanded c73 permit 183 ^65000:3_0:250_0:177$ ip community-list expanded c73 permit 184 ^65000:3_0:251_0:178$ ip community-list expanded c73 permit 185 ^65000:3_0:252_0:179$ ip community-list expanded c73 permit 186 ^65000:3_0:253_0:180$ ip community-list expanded c73 permit 187 ^65000:3_0:254_0:181$ ip community-list expanded c73 permit 188 ^65000:3_0:255_0:182$ ip community-list expanded c73 permit 189 ^65000:3_0:256_0:183$ route-map calculator permit 30812 match community 1_1_72 2_1_73 1_2_71 1_3_70 1_4_69 set community 0:73 route-map calculator permit 30813 match community 1_5_68 1_6_67 1_7_66 1_8_65 1_9_64 set community 0:73 route-map calculator permit 30814 match community 1_10_63 1_11_62 1_12_61 1_13_60 1_14_59 set community 0:73 route-map calculator permit 30815 match community 1_15_58 1_16_57 1_17_56 1_18_55 1_19_54 set community 0:73 route-map calculator permit 30816 match community 1_20_53 1_21_52 1_22_51 1_23_50 1_24_49 set community 0:73 route-map calculator permit 30817 match community 1_25_48 1_26_47 1_27_46 1_28_45 1_29_44 set community 0:73 route-map calculator permit 30818 match community 1_30_43 1_31_42 1_32_41 1_33_40 1_34_39 set community 0:73 route-map calculator permit 30819 match community 1_35_38 1_36_37 c4_73_1 c3_74_1 c3_75_2 set community 0:73 route-map calculator permit 30820 match community c3_76_3 c3_77_4 c3_78_5 c3_79_6 c3_80_7 set community 0:73 route-map calculator permit 30821 match community c3_81_8 c3_82_9 c3_83_10 c3_84_11 c3_85_12 set community 0:73 route-map calculator permit 30822 match community c3_86_13 c3_87_14 c3_88_15 c3_89_16 c3_90_17 set community 0:73 route-map calculator permit 30823 match community c3_91_18 c3_92_19 c3_93_20 c3_94_21 c3_95_22 set community 0:73 route-map calculator permit 30824 match community c3_96_23 c3_97_24 c3_98_25 c3_99_26 c3_100_27 set community 0:73 route-map calculator permit 30825 match community c3_101_28 c3_102_29 c3_103_30 c3_104_31 c3_105_32 set community 0:73 route-map calculator permit 30826 match community c3_106_33 c3_107_34 c3_108_35 c3_109_36 c3_110_37 set community 0:73 route-map calculator permit 30827 match community c3_111_38 c3_112_39 c3_113_40 c3_114_41 c3_115_42 set community 0:73 route-map calculator permit 30828 match community c3_116_43 c3_117_44 c3_118_45 c3_119_46 c3_120_47 set community 0:73 route-map calculator permit 30829 match community c3_121_48 c3_122_49 c3_123_50 c3_124_51 c3_125_52 set community 0:73 route-map calculator permit 30830 match community c3_126_53 c3_127_54 c3_128_55 c3_129_56 c3_130_57 set community 0:73 route-map calculator permit 30831 match community c3_131_58 c3_132_59 c3_133_60 c3_134_61 c3_135_62 set community 0:73 route-map calculator permit 30832 match community c3_136_63 c3_137_64 c3_138_65 c3_139_66 c3_140_67 set community 0:73 route-map calculator permit 30833 match community c3_141_68 c3_142_69 c3_143_70 c3_144_71 c3_145_72 set community 0:73 route-map calculator permit 30834 match community c4_146_2 c3_146_73 c4_147_2 c3_147_74 c3_148_75 set community 0:73 route-map calculator permit 30835 match community c3_149_76 c3_150_77 c3_151_78 c3_152_79 c3_153_80 set community 0:73 route-map calculator permit 30836 match community c3_154_81 c3_155_82 c3_156_83 c3_157_84 c3_158_85 set community 0:73 route-map calculator permit 30837 match community c3_159_86 c3_160_87 c3_161_88 c3_162_89 c3_163_90 set community 0:73 route-map calculator permit 30838 match community c3_164_91 c3_165_92 c3_166_93 c3_167_94 c3_168_95 set community 0:73 route-map calculator permit 30839 match community c3_169_96 c3_170_97 c3_171_98 c3_172_99 c3_173_100 set community 0:73 route-map calculator permit 30840 match community c3_174_101 c3_175_102 c3_176_103 c3_177_104 c3_178_105 set community 0:73 route-map calculator permit 30841 match community c3_179_106 c3_180_107 c3_181_108 c3_182_109 c3_183_110 set community 0:73 route-map calculator permit 30842 match community c3_184_111 c3_185_112 c3_186_113 c3_187_114 c3_188_115 set community 0:73 route-map calculator permit 30843 match community c3_189_116 c3_190_117 c3_191_118 c3_192_119 c3_193_120 set community 0:73 route-map calculator permit 30844 match community c3_194_121 c3_195_122 c3_196_123 c3_197_124 c3_198_125 set community 0:73 route-map calculator permit 30845 match community c3_199_126 c3_200_127 c3_201_128 c3_202_129 c3_203_130 set community 0:73 route-map calculator permit 30846 match community c3_204_131 c3_205_132 c3_206_133 c3_207_134 c3_208_135 set community 0:73 route-map calculator permit 30847 match community c3_209_136 c3_210_137 c3_211_138 c3_212_139 c3_213_140 set community 0:73 route-map calculator permit 30848 match community c3_214_141 c3_215_142 c3_216_143 c3_217_144 c3_218_145 set community 0:73 route-map calculator permit 30849 match community c4_219_3 c3_219_146 c4_220_3 c3_220_147 c4_221_3 set community 0:73 route-map calculator permit 30850 match community c3_221_148 c3_222_149 c3_223_150 c3_224_151 c3_225_152 set community 0:73 route-map calculator permit 30851 match community c3_226_153 c3_227_154 c3_228_155 c3_229_156 c3_230_157 set community 0:73 route-map calculator permit 30852 match community c3_231_158 c3_232_159 c3_233_160 c3_234_161 c3_235_162 set community 0:73 route-map calculator permit 30853 match community c3_236_163 c3_237_164 c3_238_165 c3_239_166 c3_240_167 set community 0:73 route-map calculator permit 30854 match community c3_241_168 c3_242_169 c3_243_170 c3_244_171 c3_245_172 set community 0:73 route-map calculator permit 30855 match community c3_246_173 c3_247_174 c3_248_175 c3_249_176 c3_250_177 set community 0:73 route-map calculator permit 30856 match community c3_251_178 c3_252_179 c3_253_180 c3_254_181 c3_255_182 set community 0:73 route-map calculator permit 30857 match community c3_256_183 set community 0:73 ip community-list standard 2_103_115 permit 65000:2 0:103 0:115 route-map calculator permit 30858 match community 2_103_115 set community 0:11845 ip community-list standard 2_42_230 permit 65000:2 0:42 0:230 ip community-list standard 2_46_210 permit 65000:2 0:46 0:210 ip community-list standard 2_60_161 permit 65000:2 0:60 0:161 ip community-list standard 2_69_140 permit 65000:2 0:69 0:140 ip community-list standard 2_70_138 permit 65000:2 0:70 0:138 ip community-list standard 2_84_115 permit 65000:2 0:84 0:115 ip community-list standard 2_92_105 permit 65000:2 0:92 0:105 route-map calculator permit 30859 match community 2_42_230 2_46_210 2_60_161 2_69_140 2_70_138 set community 0:9660 route-map calculator permit 30860 match community 2_84_115 2_92_105 set community 0:9660 ip community-list standard 2_190_235 permit 65000:2 0:190 0:235 route-map calculator permit 30861 match community 2_190_235 set community 0:44650 ip community-list standard 2_30_246 permit 65000:2 0:30 0:246 ip community-list standard 2_36_205 permit 65000:2 0:36 0:205 ip community-list standard 2_41_180 permit 65000:2 0:41 0:180 ip community-list standard 2_45_164 permit 65000:2 0:45 0:164 ip community-list standard 2_60_123 permit 65000:2 0:60 0:123 ip community-list standard 2_82_90 permit 65000:2 0:82 0:90 route-map calculator permit 30862 match community 2_30_246 2_36_205 2_41_180 2_45_164 2_60_123 set community 0:7380 route-map calculator permit 30863 match community 2_82_90 set community 0:7380 ip community-list standard 2_46_221 permit 65000:2 0:46 0:221 route-map calculator permit 30864 match community 2_46_221 set community 0:10166 ip community-list standard 2_195_213 permit 65000:2 0:195 0:213 route-map calculator permit 30865 match community 2_195_213 set community 0:41535 ip community-list standard 2_35_243 permit 65000:2 0:35 0:243 ip community-list standard 2_45_189 permit 65000:2 0:45 0:189 ip community-list standard 2_63_135 permit 65000:2 0:63 0:135 ip community-list standard 2_81_105 permit 65000:2 0:81 0:105 route-map calculator permit 30866 match community 2_35_243 2_45_189 2_63_135 2_81_105 set community 0:8505 ip community-list standard 2_24_137 permit 65000:2 0:24 0:137 route-map calculator permit 30867 match community 2_24_137 set community 0:3288 ip community-list standard 2_200_214 permit 65000:2 0:200 0:214 route-map calculator permit 30868 match community 2_200_214 set community 0:42800 ip community-list standard 2_166_242 permit 65000:2 0:166 0:242 route-map calculator permit 30869 match community 2_166_242 set community 0:40172 ip community-list standard 2_34_236 permit 65000:2 0:34 0:236 ip community-list standard 2_59_136 permit 65000:2 0:59 0:136 ip community-list standard 2_68_118 permit 65000:2 0:68 0:118 route-map calculator permit 30870 match community 2_34_236 2_59_136 2_68_118 set community 0:8024 ip community-list standard 2_120_149 permit 65000:2 0:120 0:149 route-map calculator permit 30871 match community 2_120_149 set community 0:17880 ip community-list standard 2_212_222 permit 65000:2 0:212 0:222 route-map calculator permit 30872 match community 2_212_222 set community 0:47064 ip community-list standard 2_47_221 permit 65000:2 0:47 0:221 route-map calculator permit 30873 match community 2_47_221 set community 0:10387 ip community-list standard 2_8_215 permit 65000:2 0:8 0:215 ip community-list standard 2_10_172 permit 65000:2 0:10 0:172 ip community-list standard 2_20_86 permit 65000:2 0:20 0:86 ip community-list standard 2_40_43 permit 65000:2 0:40 0:43 route-map calculator permit 30874 match community 2_8_215 2_10_172 2_20_86 2_40_43 set community 0:1720 ip community-list standard 2_118_221 permit 65000:2 0:118 0:221 route-map calculator permit 30875 match community 2_118_221 set community 0:26078 ip community-list standard 2_182_232 permit 65000:2 0:182 0:232 ip community-list standard 2_203_208 permit 65000:2 0:203 0:208 route-map calculator permit 30876 match community 2_182_232 2_203_208 set community 0:42224 ip community-list standard 2_82_246 permit 65000:2 0:82 0:246 ip community-list standard 2_123_164 permit 65000:2 0:123 0:164 route-map calculator permit 30877 match community 2_82_246 2_123_164 set community 0:20172 ip community-list standard 2_185_211 permit 65000:2 0:185 0:211 route-map calculator permit 30878 match community 2_185_211 set community 0:39035 ip community-list standard 2_57_178 permit 65000:2 0:57 0:178 ip community-list standard 2_89_114 permit 65000:2 0:89 0:114 route-map calculator permit 30879 match community 2_57_178 2_89_114 set community 0:10146 ip community-list standard 2_152_178 permit 65000:2 0:152 0:178 route-map calculator permit 30880 match community 2_152_178 set community 0:27056 ip community-list standard 2_127_183 permit 65000:2 0:127 0:183 route-map calculator permit 30881 match community 2_127_183 set community 0:23241 ip community-list standard 2_18_255 permit 65000:2 0:18 0:255 ip community-list standard 2_27_170 permit 65000:2 0:27 0:170 ip community-list standard 2_30_153 permit 65000:2 0:30 0:153 ip community-list standard 2_34_135 permit 65000:2 0:34 0:135 ip community-list standard 2_45_102 permit 65000:2 0:45 0:102 ip community-list standard 2_51_90 permit 65000:2 0:51 0:90 ip community-list standard 2_54_85 permit 65000:2 0:54 0:85 route-map calculator permit 30882 match community 2_18_255 2_27_170 2_30_153 2_34_135 2_45_102 set community 0:4590 route-map calculator permit 30883 match community 2_51_90 2_54_85 set community 0:4590 ip community-list standard 2_131_228 permit 65000:2 0:131 0:228 route-map calculator permit 30884 match community 2_131_228 set community 0:29868 ip community-list standard 2_70_240 permit 65000:2 0:70 0:240 ip community-list standard 2_75_224 permit 65000:2 0:75 0:224 ip community-list standard 2_80_210 permit 65000:2 0:80 0:210 ip community-list standard 2_84_200 permit 65000:2 0:84 0:200 ip community-list standard 2_96_175 permit 65000:2 0:96 0:175 ip community-list standard 2_100_168 permit 65000:2 0:100 0:168 ip community-list standard 2_105_160 permit 65000:2 0:105 0:160 ip community-list standard 2_112_150 permit 65000:2 0:112 0:150 ip community-list standard 2_120_140 permit 65000:2 0:120 0:140 route-map calculator permit 30885 match community 2_70_240 2_75_224 2_80_210 2_84_200 2_96_175 set community 0:16800 route-map calculator permit 30886 match community 2_100_168 2_105_160 2_112_150 2_120_140 set community 0:16800 ip community-list standard 2_84_226 permit 65000:2 0:84 0:226 ip community-list standard 2_113_168 permit 65000:2 0:113 0:168 route-map calculator permit 30887 match community 2_84_226 2_113_168 set community 0:18984 ip community-list standard 2_211_233 permit 65000:2 0:211 0:233 route-map calculator permit 30888 match community 2_211_233 set community 0:49163 ip community-list standard 2_173_206 permit 65000:2 0:173 0:206 route-map calculator permit 30889 match community 2_173_206 set community 0:35638 ip community-list standard 2_6_191 permit 65000:2 0:6 0:191 route-map calculator permit 30890 match community 2_6_191 set community 0:1146 ip community-list standard 2_123_163 permit 65000:2 0:123 0:163 route-map calculator permit 30891 match community 2_123_163 set community 0:20049 ip community-list standard 2_138_222 permit 65000:2 0:138 0:222 ip community-list standard 2_148_207 permit 65000:2 0:148 0:207 route-map calculator permit 30892 match community 2_138_222 2_148_207 set community 0:30636 ip community-list standard 2_49_252 permit 65000:2 0:49 0:252 ip community-list standard 2_63_196 permit 65000:2 0:63 0:196 ip community-list standard 2_84_147 permit 65000:2 0:84 0:147 ip community-list standard 2_98_126 permit 65000:2 0:98 0:126 route-map calculator permit 30893 match community 2_49_252 2_63_196 2_84_147 2_98_126 set community 0:12348 ip community-list standard 2_113_246 permit 65000:2 0:113 0:246 ip community-list standard 2_123_226 permit 65000:2 0:123 0:226 route-map calculator permit 30894 match community 2_113_246 2_123_226 set community 0:27798 ip community-list standard 2_37_152 permit 65000:2 0:37 0:152 ip community-list standard 2_38_148 permit 65000:2 0:38 0:148 ip community-list standard 2_74_76 permit 65000:2 0:74 0:76 route-map calculator permit 30895 match community 2_37_152 2_38_148 2_74_76 set community 0:5624 ip community-list standard 2_67_175 permit 65000:2 0:67 0:175 route-map calculator permit 30896 match community 2_67_175 set community 0:11725 ip community-list standard 2_43_103 permit 65000:2 0:43 0:103 route-map calculator permit 30897 match community 2_43_103 set community 0:4429 ip community-list standard 2_52_158 permit 65000:2 0:52 0:158 ip community-list standard 2_79_104 permit 65000:2 0:79 0:104 route-map calculator permit 30898 match community 2_52_158 2_79_104 set community 0:8216 ip community-list standard 2_201_256 permit 65000:2 0:201 0:256 route-map calculator permit 30899 match community 2_201_256 set community 0:51456 ip community-list standard 2_124_252 permit 65000:2 0:124 0:252 ip community-list standard 2_126_248 permit 65000:2 0:126 0:248 ip community-list standard 2_144_217 permit 65000:2 0:144 0:217 ip community-list standard 2_168_186 permit 65000:2 0:168 0:186 route-map calculator permit 30900 match community 2_124_252 2_126_248 2_144_217 2_168_186 set community 0:31248 ip community-list standard 2_118_236 permit 65000:2 0:118 0:236 route-map calculator permit 30901 match community 2_118_236 set community 0:27848 ip community-list standard 2_198_254 permit 65000:2 0:198 0:254 route-map calculator permit 30902 match community 2_198_254 set community 0:50292 ip community-list standard 2_133_203 permit 65000:2 0:133 0:203 route-map calculator permit 30903 match community 2_133_203 set community 0:26999 ip community-list standard 2_55_109 permit 65000:2 0:55 0:109 route-map calculator permit 30904 match community 2_55_109 set community 0:5995 ip community-list standard 2_91_188 permit 65000:2 0:91 0:188 ip community-list standard 2_94_182 permit 65000:2 0:94 0:182 route-map calculator permit 30905 match community 2_91_188 2_94_182 set community 0:17108 ip community-list standard 2_57_189 permit 65000:2 0:57 0:189 ip community-list standard 2_63_171 permit 65000:2 0:63 0:171 ip community-list standard 2_81_133 permit 65000:2 0:81 0:133 route-map calculator permit 30906 match community 2_57_189 2_63_171 2_81_133 set community 0:10773 ip community-list standard 2_102_238 permit 65000:2 0:102 0:238 ip community-list standard 2_119_204 permit 65000:2 0:119 0:204 route-map calculator permit 30907 match community 2_102_238 2_119_204 set community 0:24276 ip community-list standard 2_41_71 permit 65000:2 0:41 0:71 route-map calculator permit 30908 match community 2_41_71 set community 0:2911 ip community-list standard 2_139_249 permit 65000:2 0:139 0:249 route-map calculator permit 30909 match community 2_139_249 set community 0:34611 ip community-list standard 2_32_228 permit 65000:2 0:32 0:228 ip community-list standard 2_38_192 permit 65000:2 0:38 0:192 ip community-list standard 2_48_152 permit 65000:2 0:48 0:152 ip community-list standard 2_57_128 permit 65000:2 0:57 0:128 ip community-list standard 2_64_114 permit 65000:2 0:64 0:114 ip community-list standard 2_76_96 permit 65000:2 0:76 0:96 route-map calculator permit 30910 match community 2_32_228 2_38_192 2_48_152 2_57_128 2_64_114 set community 0:7296 route-map calculator permit 30911 match community 2_76_96 set community 0:7296 ip community-list standard 2_86_196 permit 65000:2 0:86 0:196 ip community-list standard 2_98_172 permit 65000:2 0:98 0:172 route-map calculator permit 30912 match community 2_86_196 2_98_172 set community 0:16856 ip community-list standard 2_65_83 permit 65000:2 0:65 0:83 route-map calculator permit 30913 match community 2_65_83 set community 0:5395 ip community-list standard 2_145_151 permit 65000:2 0:145 0:151 route-map calculator permit 30914 match community 2_145_151 set community 0:21895 ip community-list standard 2_40_255 permit 65000:2 0:40 0:255 ip community-list standard 2_50_204 permit 65000:2 0:50 0:204 ip community-list standard 2_51_200 permit 65000:2 0:51 0:200 ip community-list standard 2_60_170 permit 65000:2 0:60 0:170 ip community-list standard 2_68_150 permit 65000:2 0:68 0:150 ip community-list standard 2_75_136 permit 65000:2 0:75 0:136 ip community-list standard 2_85_120 permit 65000:2 0:85 0:120 ip community-list standard 2_100_102 permit 65000:2 0:100 0:102 route-map calculator permit 30915 match community 2_40_255 2_50_204 2_51_200 2_60_170 2_68_150 set community 0:10200 route-map calculator permit 30916 match community 2_75_136 2_85_120 2_100_102 set community 0:10200 ip community-list standard 2_49_127 permit 65000:2 0:49 0:127 route-map calculator permit 30917 match community 2_49_127 set community 0:6223 ip community-list standard 2_3_133 permit 65000:2 0:3 0:133 ip community-list standard 2_7_57 permit 65000:2 0:7 0:57 ip community-list standard 2_19_21 permit 65000:2 0:19 0:21 ip community-list standard 1_143_256 permit 65000:1 0:143 0:256 ip community-list standard 1_144_255 permit 65000:1 0:144 0:255 ip community-list standard 1_145_254 permit 65000:1 0:145 0:254 ip community-list standard 1_146_253 permit 65000:1 0:146 0:253 ip community-list standard 1_147_252 permit 65000:1 0:147 0:252 ip community-list standard 1_148_251 permit 65000:1 0:148 0:251 ip community-list standard 1_149_250 permit 65000:1 0:149 0:250 ip community-list standard 1_150_249 permit 65000:1 0:150 0:249 ip community-list standard 1_151_248 permit 65000:1 0:151 0:248 ip community-list standard 1_152_247 permit 65000:1 0:152 0:247 ip community-list standard 1_153_246 permit 65000:1 0:153 0:246 ip community-list standard 1_154_245 permit 65000:1 0:154 0:245 ip community-list standard 1_155_244 permit 65000:1 0:155 0:244 ip community-list standard 1_156_243 permit 65000:1 0:156 0:243 ip community-list standard 1_157_242 permit 65000:1 0:157 0:242 ip community-list standard 1_158_241 permit 65000:1 0:158 0:241 ip community-list standard 1_159_240 permit 65000:1 0:159 0:240 ip community-list standard 1_160_239 permit 65000:1 0:160 0:239 ip community-list standard 1_161_238 permit 65000:1 0:161 0:238 ip community-list standard 1_162_237 permit 65000:1 0:162 0:237 ip community-list standard 1_163_236 permit 65000:1 0:163 0:236 ip community-list standard 1_164_235 permit 65000:1 0:164 0:235 ip community-list standard 1_165_234 permit 65000:1 0:165 0:234 ip community-list standard 1_166_233 permit 65000:1 0:166 0:233 ip community-list standard 1_167_232 permit 65000:1 0:167 0:232 ip community-list standard 1_168_231 permit 65000:1 0:168 0:231 ip community-list standard 1_169_230 permit 65000:1 0:169 0:230 ip community-list standard 1_170_229 permit 65000:1 0:170 0:229 ip community-list standard 1_171_228 permit 65000:1 0:171 0:228 ip community-list standard 1_172_227 permit 65000:1 0:172 0:227 ip community-list standard 1_173_226 permit 65000:1 0:173 0:226 ip community-list standard 1_174_225 permit 65000:1 0:174 0:225 ip community-list standard 1_175_224 permit 65000:1 0:175 0:224 ip community-list standard 1_176_223 permit 65000:1 0:176 0:223 ip community-list standard 1_177_222 permit 65000:1 0:177 0:222 ip community-list standard 1_178_221 permit 65000:1 0:178 0:221 ip community-list standard 1_179_220 permit 65000:1 0:179 0:220 ip community-list standard 1_180_219 permit 65000:1 0:180 0:219 ip community-list standard 1_181_218 permit 65000:1 0:181 0:218 ip community-list standard 1_182_217 permit 65000:1 0:182 0:217 ip community-list standard 1_183_216 permit 65000:1 0:183 0:216 ip community-list standard 1_184_215 permit 65000:1 0:184 0:215 ip community-list standard 1_185_214 permit 65000:1 0:185 0:214 ip community-list standard 1_186_213 permit 65000:1 0:186 0:213 ip community-list standard 1_187_212 permit 65000:1 0:187 0:212 ip community-list standard 1_188_211 permit 65000:1 0:188 0:211 ip community-list standard 1_189_210 permit 65000:1 0:189 0:210 ip community-list standard 1_190_209 permit 65000:1 0:190 0:209 ip community-list standard 1_191_208 permit 65000:1 0:191 0:208 ip community-list standard 1_192_207 permit 65000:1 0:192 0:207 ip community-list standard 1_193_206 permit 65000:1 0:193 0:206 ip community-list standard 1_194_205 permit 65000:1 0:194 0:205 ip community-list standard 1_195_204 permit 65000:1 0:195 0:204 ip community-list standard 1_196_203 permit 65000:1 0:196 0:203 ip community-list standard 1_197_202 permit 65000:1 0:197 0:202 ip community-list standard 1_198_201 permit 65000:1 0:198 0:201 ip community-list standard 1_199_200 permit 65000:1 0:199 0:200 route-map calculator permit 30918 match community 2_3_133 2_7_57 2_19_21 1_143_256 1_144_255 set community 0:399 route-map calculator permit 30919 match community 1_145_254 1_146_253 1_147_252 1_148_251 1_149_250 set community 0:399 route-map calculator permit 30920 match community 1_150_249 1_151_248 1_152_247 1_153_246 1_154_245 set community 0:399 route-map calculator permit 30921 match community 1_155_244 1_156_243 1_157_242 1_158_241 1_159_240 set community 0:399 route-map calculator permit 30922 match community 1_160_239 1_161_238 1_162_237 1_163_236 1_164_235 set community 0:399 route-map calculator permit 30923 match community 1_165_234 1_166_233 1_167_232 1_168_231 1_169_230 set community 0:399 route-map calculator permit 30924 match community 1_170_229 1_171_228 1_172_227 1_173_226 1_174_225 set community 0:399 route-map calculator permit 30925 match community 1_175_224 1_176_223 1_177_222 1_178_221 1_179_220 set community 0:399 route-map calculator permit 30926 match community 1_180_219 1_181_218 1_182_217 1_183_216 1_184_215 set community 0:399 route-map calculator permit 30927 match community 1_185_214 1_186_213 1_187_212 1_188_211 1_189_210 set community 0:399 route-map calculator permit 30928 match community 1_190_209 1_191_208 1_192_207 1_193_206 1_194_205 set community 0:399 route-map calculator permit 30929 match community 1_195_204 1_196_203 1_197_202 1_198_201 1_199_200 set community 0:399 ip community-list standard 2_128_221 permit 65000:2 0:128 0:221 ip community-list standard 2_136_208 permit 65000:2 0:136 0:208 route-map calculator permit 30930 match community 2_128_221 2_136_208 set community 0:28288 ip community-list standard 2_13_134 permit 65000:2 0:13 0:134 ip community-list standard 2_26_67 permit 65000:2 0:26 0:67 route-map calculator permit 30931 match community 2_13_134 2_26_67 set community 0:1742 ip community-list standard 2_8_242 permit 65000:2 0:8 0:242 ip community-list standard 2_11_176 permit 65000:2 0:11 0:176 ip community-list standard 2_16_121 permit 65000:2 0:16 0:121 ip community-list standard 2_22_88 permit 65000:2 0:22 0:88 ip community-list standard 2_44_44 permit 65000:2 0:44 0:44 route-map calculator permit 30932 match community 2_8_242 2_11_176 2_16_121 2_22_88 2_44_44 set community 0:1936 ip community-list standard 2_153_179 permit 65000:2 0:153 0:179 route-map calculator permit 30933 match community 2_153_179 set community 0:27387 ip community-list standard 2_125_145 permit 65000:2 0:125 0:145 route-map calculator permit 30934 match community 2_125_145 set community 0:18125 ip community-list standard 2_195_248 permit 65000:2 0:195 0:248 route-map calculator permit 30935 match community 2_195_248 set community 0:48360 ip community-list standard 2_171_253 permit 65000:2 0:171 0:253 ip community-list standard 2_207_209 permit 65000:2 0:207 0:209 route-map calculator permit 30936 match community 2_171_253 2_207_209 set community 0:43263 ip community-list standard 2_2_255 permit 65000:2 0:2 0:255 ip community-list standard 2_3_170 permit 65000:2 0:3 0:170 ip community-list standard 2_5_102 permit 65000:2 0:5 0:102 ip community-list standard 2_6_85 permit 65000:2 0:6 0:85 ip community-list standard 2_10_51 permit 65000:2 0:10 0:51 ip community-list standard 2_15_34 permit 65000:2 0:15 0:34 ip community-list standard 2_17_30 permit 65000:2 0:17 0:30 ip community-list standard 1_254_256 permit 65000:1 0:254 0:256 ip community-list standard 1_255_255 permit 65000:1 0:255 0:255 route-map calculator permit 30937 match community 2_2_255 2_3_170 2_5_102 2_6_85 2_10_51 set community 0:510 route-map calculator permit 30938 match community 2_15_34 2_17_30 1_254_256 1_255_255 set community 0:510 ip community-list standard 2_146_222 permit 65000:2 0:146 0:222 ip community-list standard 2_148_219 permit 65000:2 0:148 0:219 route-map calculator permit 30939 match community 2_146_222 2_148_219 set community 0:32412 ip community-list standard 2_163_203 permit 65000:2 0:163 0:203 route-map calculator permit 30940 match community 2_163_203 set community 0:33089 ip community-list standard 2_106_237 permit 65000:2 0:106 0:237 ip community-list standard 2_158_159 permit 65000:2 0:158 0:159 route-map calculator permit 30941 match community 2_106_237 2_158_159 set community 0:25122 ip community-list standard 2_41_133 permit 65000:2 0:41 0:133 route-map calculator permit 30942 match community 2_41_133 set community 0:5453 ip community-list standard 2_58_214 permit 65000:2 0:58 0:214 ip community-list standard 2_107_116 permit 65000:2 0:107 0:116 route-map calculator permit 30943 match community 2_58_214 2_107_116 set community 0:12412 ip community-list standard 2_192_197 permit 65000:2 0:192 0:197 route-map calculator permit 30944 match community 2_192_197 set community 0:37824 ip community-list standard 2_66_247 permit 65000:2 0:66 0:247 ip community-list standard 2_78_209 permit 65000:2 0:78 0:209 ip community-list standard 2_114_143 permit 65000:2 0:114 0:143 route-map calculator permit 30945 match community 2_66_247 2_78_209 2_114_143 set community 0:16302 ip community-list standard 2_47_154 permit 65000:2 0:47 0:154 ip community-list standard 2_77_94 permit 65000:2 0:77 0:94 route-map calculator permit 30946 match community 2_47_154 2_77_94 set community 0:7238 ip community-list standard 2_196_233 permit 65000:2 0:196 0:233 route-map calculator permit 30947 match community 2_196_233 set community 0:45668 ip community-list standard 2_20_253 permit 65000:2 0:20 0:253 ip community-list standard 2_22_230 permit 65000:2 0:22 0:230 ip community-list standard 2_23_220 permit 65000:2 0:23 0:220 ip community-list standard 2_44_115 permit 65000:2 0:44 0:115 ip community-list standard 2_46_110 permit 65000:2 0:46 0:110 ip community-list standard 2_55_92 permit 65000:2 0:55 0:92 route-map calculator permit 30948 match community 2_20_253 2_22_230 2_23_220 2_44_115 2_46_110 set community 0:5060 route-map calculator permit 30949 match community 2_55_92 set community 0:5060 ip community-list standard 2_152_199 permit 65000:2 0:152 0:199 route-map calculator permit 30950 match community 2_152_199 set community 0:30248 ip community-list standard 2_105_179 permit 65000:2 0:105 0:179 route-map calculator permit 30951 match community 2_105_179 set community 0:18795 ip community-list standard 2_203_209 permit 65000:2 0:203 0:209 route-map calculator permit 30952 match community 2_203_209 set community 0:42427 ip community-list standard 2_23_111 permit 65000:2 0:23 0:111 ip community-list standard 2_37_69 permit 65000:2 0:37 0:69 route-map calculator permit 30953 match community 2_23_111 2_37_69 set community 0:2553 ip community-list standard 2_41_103 permit 65000:2 0:41 0:103 route-map calculator permit 30954 match community 2_41_103 set community 0:4223 ip community-list standard 2_107_133 permit 65000:2 0:107 0:133 route-map calculator permit 30955 match community 2_107_133 set community 0:14231 ip community-list standard 2_76_178 permit 65000:2 0:76 0:178 ip community-list standard 2_89_152 permit 65000:2 0:89 0:152 route-map calculator permit 30956 match community 2_76_178 2_89_152 set community 0:13528 ip community-list standard 2_84_218 permit 65000:2 0:84 0:218 ip community-list standard 2_109_168 permit 65000:2 0:109 0:168 route-map calculator permit 30957 match community 2_84_218 2_109_168 set community 0:18312 ip community-list standard 2_65_206 permit 65000:2 0:65 0:206 ip community-list standard 2_103_130 permit 65000:2 0:103 0:130 route-map calculator permit 30958 match community 2_65_206 2_103_130 set community 0:13390 ip community-list standard 2_37_233 permit 65000:2 0:37 0:233 route-map calculator permit 30959 match community 2_37_233 set community 0:8621 ip community-list standard 2_119_129 permit 65000:2 0:119 0:129 route-map calculator permit 30960 match community 2_119_129 set community 0:15351 ip community-list standard 2_114_201 permit 65000:2 0:114 0:201 ip community-list standard 2_134_171 permit 65000:2 0:134 0:171 route-map calculator permit 30961 match community 2_114_201 2_134_171 set community 0:22914 ip community-list standard 2_151_205 permit 65000:2 0:151 0:205 route-map calculator permit 30962 match community 2_151_205 set community 0:30955 ip community-list standard 2_143_246 permit 65000:2 0:143 0:246 route-map calculator permit 30963 match community 2_143_246 set community 0:35178 ip community-list standard 2_161_203 permit 65000:2 0:161 0:203 route-map calculator permit 30964 match community 2_161_203 set community 0:32683 ip community-list standard 2_119_238 permit 65000:2 0:119 0:238 route-map calculator permit 30965 match community 2_119_238 set community 0:28322 ip community-list standard 2_166_252 permit 65000:2 0:166 0:252 ip community-list standard 2_168_249 permit 65000:2 0:168 0:249 route-map calculator permit 30966 match community 2_166_252 2_168_249 set community 0:41832 ip community-list standard 2_89_151 permit 65000:2 0:89 0:151 route-map calculator permit 30967 match community 2_89_151 set community 0:13439 ip community-list standard 2_34_216 permit 65000:2 0:34 0:216 ip community-list standard 2_36_204 permit 65000:2 0:36 0:204 ip community-list standard 2_48_153 permit 65000:2 0:48 0:153 ip community-list standard 2_51_144 permit 65000:2 0:51 0:144 ip community-list standard 2_54_136 permit 65000:2 0:54 0:136 ip community-list standard 2_68_108 permit 65000:2 0:68 0:108 ip community-list standard 2_72_102 permit 65000:2 0:72 0:102 route-map calculator permit 30968 match community 2_34_216 2_36_204 2_48_153 2_51_144 2_54_136 set community 0:7344 route-map calculator permit 30969 match community 2_68_108 2_72_102 set community 0:7344 ip community-list standard 2_220_224 permit 65000:2 0:220 0:224 route-map calculator permit 30970 match community 2_220_224 set community 0:49280 ip community-list standard 2_160_179 permit 65000:2 0:160 0:179 route-map calculator permit 30971 match community 2_160_179 set community 0:28640 ip community-list standard 2_2_222 permit 65000:2 0:2 0:222 ip community-list standard 2_3_148 permit 65000:2 0:3 0:148 ip community-list standard 2_4_111 permit 65000:2 0:4 0:111 ip community-list standard 2_6_74 permit 65000:2 0:6 0:74 ip community-list standard 2_12_37 permit 65000:2 0:12 0:37 ip community-list standard 1_188_256 permit 65000:1 0:188 0:256 ip community-list standard 1_189_255 permit 65000:1 0:189 0:255 ip community-list standard 1_190_254 permit 65000:1 0:190 0:254 ip community-list standard 1_191_253 permit 65000:1 0:191 0:253 ip community-list standard 1_192_252 permit 65000:1 0:192 0:252 ip community-list standard 1_193_251 permit 65000:1 0:193 0:251 ip community-list standard 1_194_250 permit 65000:1 0:194 0:250 ip community-list standard 1_195_249 permit 65000:1 0:195 0:249 ip community-list standard 1_196_248 permit 65000:1 0:196 0:248 ip community-list standard 1_197_247 permit 65000:1 0:197 0:247 ip community-list standard 1_198_246 permit 65000:1 0:198 0:246 ip community-list standard 1_199_245 permit 65000:1 0:199 0:245 ip community-list standard 1_200_244 permit 65000:1 0:200 0:244 ip community-list standard 1_201_243 permit 65000:1 0:201 0:243 ip community-list standard 1_202_242 permit 65000:1 0:202 0:242 ip community-list standard 1_203_241 permit 65000:1 0:203 0:241 ip community-list standard 1_204_240 permit 65000:1 0:204 0:240 ip community-list standard 1_205_239 permit 65000:1 0:205 0:239 ip community-list standard 1_206_238 permit 65000:1 0:206 0:238 ip community-list standard 1_207_237 permit 65000:1 0:207 0:237 ip community-list standard 1_208_236 permit 65000:1 0:208 0:236 ip community-list standard 1_209_235 permit 65000:1 0:209 0:235 ip community-list standard 1_210_234 permit 65000:1 0:210 0:234 ip community-list standard 1_211_233 permit 65000:1 0:211 0:233 ip community-list standard 1_212_232 permit 65000:1 0:212 0:232 ip community-list standard 1_213_231 permit 65000:1 0:213 0:231 ip community-list standard 1_214_230 permit 65000:1 0:214 0:230 ip community-list standard 1_215_229 permit 65000:1 0:215 0:229 ip community-list standard 1_216_228 permit 65000:1 0:216 0:228 ip community-list standard 1_217_227 permit 65000:1 0:217 0:227 ip community-list standard 1_218_226 permit 65000:1 0:218 0:226 ip community-list standard 1_219_225 permit 65000:1 0:219 0:225 ip community-list standard 1_220_224 permit 65000:1 0:220 0:224 ip community-list standard 1_221_223 permit 65000:1 0:221 0:223 ip community-list standard 1_222_222 permit 65000:1 0:222 0:222 route-map calculator permit 30972 match community 2_2_222 2_3_148 2_4_111 2_6_74 2_12_37 set community 0:444 route-map calculator permit 30973 match community 1_188_256 1_189_255 1_190_254 1_191_253 1_192_252 set community 0:444 route-map calculator permit 30974 match community 1_193_251 1_194_250 1_195_249 1_196_248 1_197_247 set community 0:444 route-map calculator permit 30975 match community 1_198_246 1_199_245 1_200_244 1_201_243 1_202_242 set community 0:444 route-map calculator permit 30976 match community 1_203_241 1_204_240 1_205_239 1_206_238 1_207_237 set community 0:444 route-map calculator permit 30977 match community 1_208_236 1_209_235 1_210_234 1_211_233 1_212_232 set community 0:444 route-map calculator permit 30978 match community 1_213_231 1_214_230 1_215_229 1_216_228 1_217_227 set community 0:444 route-map calculator permit 30979 match community 1_218_226 1_219_225 1_220_224 1_221_223 1_222_222 set community 0:444 ip community-list standard 2_88_197 permit 65000:2 0:88 0:197 route-map calculator permit 30980 match community 2_88_197 set community 0:17336 ip community-list standard 2_14_252 permit 65000:2 0:14 0:252 ip community-list standard 2_18_196 permit 65000:2 0:18 0:196 ip community-list standard 2_21_168 permit 65000:2 0:21 0:168 ip community-list standard 2_24_147 permit 65000:2 0:24 0:147 ip community-list standard 2_28_126 permit 65000:2 0:28 0:126 ip community-list standard 2_36_98 permit 65000:2 0:36 0:98 ip community-list standard 2_42_84 permit 65000:2 0:42 0:84 ip community-list standard 2_49_72 permit 65000:2 0:49 0:72 ip community-list standard 2_56_63 permit 65000:2 0:56 0:63 route-map calculator permit 30981 match community 2_14_252 2_18_196 2_21_168 2_24_147 2_28_126 set community 0:3528 route-map calculator permit 30982 match community 2_36_98 2_42_84 2_49_72 2_56_63 set community 0:3528 ip community-list standard 2_22_214 permit 65000:2 0:22 0:214 ip community-list standard 2_44_107 permit 65000:2 0:44 0:107 route-map calculator permit 30983 match community 2_22_214 2_44_107 set community 0:4708 ip community-list standard 2_105_205 permit 65000:2 0:105 0:205 ip community-list standard 2_123_175 permit 65000:2 0:123 0:175 route-map calculator permit 30984 match community 2_105_205 2_123_175 set community 0:21525 ip community-list standard 2_110_241 permit 65000:2 0:110 0:241 route-map calculator permit 30985 match community 2_110_241 set community 0:26510 ip community-list standard 2_10_238 permit 65000:2 0:10 0:238 ip community-list standard 2_14_170 permit 65000:2 0:14 0:170 ip community-list standard 2_17_140 permit 65000:2 0:17 0:140 ip community-list standard 2_20_119 permit 65000:2 0:20 0:119 ip community-list standard 2_28_85 permit 65000:2 0:28 0:85 ip community-list standard 2_34_70 permit 65000:2 0:34 0:70 ip community-list standard 2_35_68 permit 65000:2 0:35 0:68 route-map calculator permit 30986 match community 2_10_238 2_14_170 2_17_140 2_20_119 2_28_85 set community 0:2380 route-map calculator permit 30987 match community 2_34_70 2_35_68 set community 0:2380 ip community-list standard 2_204_241 permit 65000:2 0:204 0:241 route-map calculator permit 30988 match community 2_204_241 set community 0:49164 ip community-list standard 2_83_229 permit 65000:2 0:83 0:229 route-map calculator permit 30989 match community 2_83_229 set community 0:19007 ip community-list standard 2_145_211 permit 65000:2 0:145 0:211 route-map calculator permit 30990 match community 2_145_211 set community 0:30595 ip community-list standard 2_17_119 permit 65000:2 0:17 0:119 route-map calculator permit 30991 match community 2_17_119 set community 0:2023 ip community-list standard 2_52_251 permit 65000:2 0:52 0:251 route-map calculator permit 30992 match community 2_52_251 set community 0:13052 ip community-list standard 2_67_208 permit 65000:2 0:67 0:208 ip community-list standard 2_104_134 permit 65000:2 0:104 0:134 route-map calculator permit 30993 match community 2_67_208 2_104_134 set community 0:13936 ip community-list standard 2_17_238 permit 65000:2 0:17 0:238 ip community-list standard 2_34_119 permit 65000:2 0:34 0:119 route-map calculator permit 30994 match community 2_17_238 2_34_119 set community 0:4046 ip community-list standard 2_86_133 permit 65000:2 0:86 0:133 route-map calculator permit 30995 match community 2_86_133 set community 0:11438 ip community-list standard 2_151_209 permit 65000:2 0:151 0:209 route-map calculator permit 30996 match community 2_151_209 set community 0:31559 ip community-list standard 2_64_237 permit 65000:2 0:64 0:237 ip community-list standard 2_79_192 permit 65000:2 0:79 0:192 ip community-list standard 2_96_158 permit 65000:2 0:96 0:158 route-map calculator permit 30997 match community 2_64_237 2_79_192 2_96_158 set community 0:15168 ip community-list standard 2_221_256 permit 65000:2 0:221 0:256 route-map calculator permit 30998 match community 2_221_256 set community 0:56576 ip community-list standard 1_253_256 permit 65000:1 0:253 0:256 ip community-list standard 1_254_255 permit 65000:1 0:254 0:255 route-map calculator permit 30999 match community 1_253_256 1_254_255 set community 0:509 ip community-list standard 2_79_237 permit 65000:2 0:79 0:237 route-map calculator permit 31000 match community 2_79_237 set community 0:18723 ip community-list standard 2_36_239 permit 65000:2 0:36 0:239 route-map calculator permit 31001 match community 2_36_239 set community 0:8604 ip community-list standard 2_13_227 permit 65000:2 0:13 0:227 route-map calculator permit 31002 match community 2_13_227 set community 0:2951 ip community-list standard 2_10_245 permit 65000:2 0:10 0:245 ip community-list standard 2_14_175 permit 65000:2 0:14 0:175 ip community-list standard 2_25_98 permit 65000:2 0:25 0:98 ip community-list standard 2_35_70 permit 65000:2 0:35 0:70 ip community-list standard 2_49_50 permit 65000:2 0:49 0:50 route-map calculator permit 31003 match community 2_10_245 2_14_175 2_25_98 2_35_70 2_49_50 set community 0:2450 ip community-list standard 2_16_243 permit 65000:2 0:16 0:243 ip community-list standard 2_18_216 permit 65000:2 0:18 0:216 ip community-list standard 2_24_162 permit 65000:2 0:24 0:162 ip community-list standard 2_27_144 permit 65000:2 0:27 0:144 ip community-list standard 2_36_108 permit 65000:2 0:36 0:108 ip community-list standard 2_48_81 permit 65000:2 0:48 0:81 ip community-list standard 2_54_72 permit 65000:2 0:54 0:72 route-map calculator permit 31004 match community 2_16_243 2_18_216 2_24_162 2_27_144 2_36_108 set community 0:3888 route-map calculator permit 31005 match community 2_48_81 2_54_72 set community 0:3888 ip community-list standard 2_131_157 permit 65000:2 0:131 0:157 route-map calculator permit 31006 match community 2_131_157 set community 0:20567 ip community-list standard 2_124_155 permit 65000:2 0:124 0:155 route-map calculator permit 31007 match community 2_124_155 set community 0:19220 ip community-list standard 2_140_218 permit 65000:2 0:140 0:218 route-map calculator permit 31008 match community 2_140_218 set community 0:30520 ip community-list standard 2_44_252 permit 65000:2 0:44 0:252 ip community-list standard 2_48_231 permit 65000:2 0:48 0:231 ip community-list standard 2_56_198 permit 65000:2 0:56 0:198 ip community-list standard 2_63_176 permit 65000:2 0:63 0:176 ip community-list standard 2_66_168 permit 65000:2 0:66 0:168 ip community-list standard 2_72_154 permit 65000:2 0:72 0:154 ip community-list standard 2_77_144 permit 65000:2 0:77 0:144 ip community-list standard 2_84_132 permit 65000:2 0:84 0:132 ip community-list standard 2_88_126 permit 65000:2 0:88 0:126 ip community-list standard 2_99_112 permit 65000:2 0:99 0:112 route-map calculator permit 31009 match community 2_44_252 2_48_231 2_56_198 2_63_176 2_66_168 set community 0:11088 route-map calculator permit 31010 match community 2_72_154 2_77_144 2_84_132 2_88_126 2_99_112 set community 0:11088 ip community-list standard 1_1_57 permit 65000:1 0:1 0:57 ip community-list standard 2_1_58 permit 65000:2 0:1 0:58 ip community-list standard 2_2_29 permit 65000:2 0:2 0:29 ip community-list standard 1_2_56 permit 65000:1 0:2 0:56 ip community-list standard 1_3_55 permit 65000:1 0:3 0:55 ip community-list standard 1_4_54 permit 65000:1 0:4 0:54 ip community-list standard 1_5_53 permit 65000:1 0:5 0:53 ip community-list standard 1_6_52 permit 65000:1 0:6 0:52 ip community-list standard 1_7_51 permit 65000:1 0:7 0:51 ip community-list standard 1_8_50 permit 65000:1 0:8 0:50 ip community-list standard 1_9_49 permit 65000:1 0:9 0:49 ip community-list standard 1_10_48 permit 65000:1 0:10 0:48 ip community-list standard 1_11_47 permit 65000:1 0:11 0:47 ip community-list standard 1_12_46 permit 65000:1 0:12 0:46 ip community-list standard 1_13_45 permit 65000:1 0:13 0:45 ip community-list standard 1_14_44 permit 65000:1 0:14 0:44 ip community-list standard 1_15_43 permit 65000:1 0:15 0:43 ip community-list standard 1_16_42 permit 65000:1 0:16 0:42 ip community-list standard 1_17_41 permit 65000:1 0:17 0:41 ip community-list standard 1_18_40 permit 65000:1 0:18 0:40 ip community-list standard 1_19_39 permit 65000:1 0:19 0:39 ip community-list standard 1_20_38 permit 65000:1 0:20 0:38 ip community-list standard 1_21_37 permit 65000:1 0:21 0:37 ip community-list standard 1_22_36 permit 65000:1 0:22 0:36 ip community-list standard 1_23_35 permit 65000:1 0:23 0:35 ip community-list standard 1_24_34 permit 65000:1 0:24 0:34 ip community-list standard 1_25_33 permit 65000:1 0:25 0:33 ip community-list standard 1_26_32 permit 65000:1 0:26 0:32 ip community-list standard 1_27_31 permit 65000:1 0:27 0:31 ip community-list standard 1_28_30 permit 65000:1 0:28 0:30 ip community-list standard 1_29_29 permit 65000:1 0:29 0:29 ip community-list expanded c58 permit 1 ^65000:4_0:58_0:1$ ip community-list expanded c58 permit 2 ^65000:3_0:59_0:1$ ip community-list expanded c58 permit 3 ^65000:3_0:60_0:2$ ip community-list expanded c58 permit 4 ^65000:3_0:61_0:3$ ip community-list expanded c58 permit 5 ^65000:3_0:62_0:4$ ip community-list expanded c58 permit 6 ^65000:3_0:63_0:5$ ip community-list expanded c58 permit 7 ^65000:3_0:64_0:6$ ip community-list expanded c58 permit 8 ^65000:3_0:65_0:7$ ip community-list expanded c58 permit 9 ^65000:3_0:66_0:8$ ip community-list expanded c58 permit 10 ^65000:3_0:67_0:9$ ip community-list expanded c58 permit 11 ^65000:3_0:68_0:10$ ip community-list expanded c58 permit 12 ^65000:3_0:69_0:11$ ip community-list expanded c58 permit 13 ^65000:3_0:70_0:12$ ip community-list expanded c58 permit 14 ^65000:3_0:71_0:13$ ip community-list expanded c58 permit 15 ^65000:3_0:72_0:14$ ip community-list expanded c58 permit 16 ^65000:3_0:73_0:15$ ip community-list expanded c58 permit 17 ^65000:3_0:74_0:16$ ip community-list expanded c58 permit 18 ^65000:3_0:75_0:17$ ip community-list expanded c58 permit 19 ^65000:3_0:76_0:18$ ip community-list expanded c58 permit 20 ^65000:3_0:77_0:19$ ip community-list expanded c58 permit 21 ^65000:3_0:78_0:20$ ip community-list expanded c58 permit 22 ^65000:3_0:79_0:21$ ip community-list expanded c58 permit 23 ^65000:3_0:80_0:22$ ip community-list expanded c58 permit 24 ^65000:3_0:81_0:23$ ip community-list expanded c58 permit 25 ^65000:3_0:82_0:24$ ip community-list expanded c58 permit 26 ^65000:3_0:83_0:25$ ip community-list expanded c58 permit 27 ^65000:3_0:84_0:26$ ip community-list expanded c58 permit 28 ^65000:3_0:85_0:27$ ip community-list expanded c58 permit 29 ^65000:3_0:86_0:28$ ip community-list expanded c58 permit 30 ^65000:3_0:87_0:29$ ip community-list expanded c58 permit 31 ^65000:3_0:88_0:30$ ip community-list expanded c58 permit 32 ^65000:3_0:89_0:31$ ip community-list expanded c58 permit 33 ^65000:3_0:90_0:32$ ip community-list expanded c58 permit 34 ^65000:3_0:91_0:33$ ip community-list expanded c58 permit 35 ^65000:3_0:92_0:34$ ip community-list expanded c58 permit 36 ^65000:3_0:93_0:35$ ip community-list expanded c58 permit 37 ^65000:3_0:94_0:36$ ip community-list expanded c58 permit 38 ^65000:3_0:95_0:37$ ip community-list expanded c58 permit 39 ^65000:3_0:96_0:38$ ip community-list expanded c58 permit 40 ^65000:3_0:97_0:39$ ip community-list expanded c58 permit 41 ^65000:3_0:98_0:40$ ip community-list expanded c58 permit 42 ^65000:3_0:99_0:41$ ip community-list expanded c58 permit 43 ^65000:3_0:100_0:42$ ip community-list expanded c58 permit 44 ^65000:3_0:101_0:43$ ip community-list expanded c58 permit 45 ^65000:3_0:102_0:44$ ip community-list expanded c58 permit 46 ^65000:3_0:103_0:45$ ip community-list expanded c58 permit 47 ^65000:3_0:104_0:46$ ip community-list expanded c58 permit 48 ^65000:3_0:105_0:47$ ip community-list expanded c58 permit 49 ^65000:3_0:106_0:48$ ip community-list expanded c58 permit 50 ^65000:3_0:107_0:49$ ip community-list expanded c58 permit 51 ^65000:3_0:108_0:50$ ip community-list expanded c58 permit 52 ^65000:3_0:109_0:51$ ip community-list expanded c58 permit 53 ^65000:3_0:110_0:52$ ip community-list expanded c58 permit 54 ^65000:3_0:111_0:53$ ip community-list expanded c58 permit 55 ^65000:3_0:112_0:54$ ip community-list expanded c58 permit 56 ^65000:3_0:113_0:55$ ip community-list expanded c58 permit 57 ^65000:3_0:114_0:56$ ip community-list expanded c58 permit 58 ^65000:3_0:115_0:57$ ip community-list expanded c58 permit 59 ^65000:4_0:116_0:2$ ip community-list expanded c58 permit 60 ^65000:3_0:116_0:58$ ip community-list expanded c58 permit 61 ^65000:4_0:117_0:2$ ip community-list expanded c58 permit 62 ^65000:3_0:117_0:59$ ip community-list expanded c58 permit 63 ^65000:3_0:118_0:60$ ip community-list expanded c58 permit 64 ^65000:3_0:119_0:61$ ip community-list expanded c58 permit 65 ^65000:3_0:120_0:62$ ip community-list expanded c58 permit 66 ^65000:3_0:121_0:63$ ip community-list expanded c58 permit 67 ^65000:3_0:122_0:64$ ip community-list expanded c58 permit 68 ^65000:3_0:123_0:65$ ip community-list expanded c58 permit 69 ^65000:3_0:124_0:66$ ip community-list expanded c58 permit 70 ^65000:3_0:125_0:67$ ip community-list expanded c58 permit 71 ^65000:3_0:126_0:68$ ip community-list expanded c58 permit 72 ^65000:3_0:127_0:69$ ip community-list expanded c58 permit 73 ^65000:3_0:128_0:70$ ip community-list expanded c58 permit 74 ^65000:3_0:129_0:71$ ip community-list expanded c58 permit 75 ^65000:3_0:130_0:72$ ip community-list expanded c58 permit 76 ^65000:3_0:131_0:73$ ip community-list expanded c58 permit 77 ^65000:3_0:132_0:74$ ip community-list expanded c58 permit 78 ^65000:3_0:133_0:75$ ip community-list expanded c58 permit 79 ^65000:3_0:134_0:76$ ip community-list expanded c58 permit 80 ^65000:3_0:135_0:77$ ip community-list expanded c58 permit 81 ^65000:3_0:136_0:78$ ip community-list expanded c58 permit 82 ^65000:3_0:137_0:79$ ip community-list expanded c58 permit 83 ^65000:3_0:138_0:80$ ip community-list expanded c58 permit 84 ^65000:3_0:139_0:81$ ip community-list expanded c58 permit 85 ^65000:3_0:140_0:82$ ip community-list expanded c58 permit 86 ^65000:3_0:141_0:83$ ip community-list expanded c58 permit 87 ^65000:3_0:142_0:84$ ip community-list expanded c58 permit 88 ^65000:3_0:143_0:85$ ip community-list expanded c58 permit 89 ^65000:3_0:144_0:86$ ip community-list expanded c58 permit 90 ^65000:3_0:145_0:87$ ip community-list expanded c58 permit 91 ^65000:3_0:146_0:88$ ip community-list expanded c58 permit 92 ^65000:3_0:147_0:89$ ip community-list expanded c58 permit 93 ^65000:3_0:148_0:90$ ip community-list expanded c58 permit 94 ^65000:3_0:149_0:91$ ip community-list expanded c58 permit 95 ^65000:3_0:150_0:92$ ip community-list expanded c58 permit 96 ^65000:3_0:151_0:93$ ip community-list expanded c58 permit 97 ^65000:3_0:152_0:94$ ip community-list expanded c58 permit 98 ^65000:3_0:153_0:95$ ip community-list expanded c58 permit 99 ^65000:3_0:154_0:96$ ip community-list expanded c58 permit 100 ^65000:3_0:155_0:97$ ip community-list expanded c58 permit 101 ^65000:3_0:156_0:98$ ip community-list expanded c58 permit 102 ^65000:3_0:157_0:99$ ip community-list expanded c58 permit 103 ^65000:3_0:158_0:100$ ip community-list expanded c58 permit 104 ^65000:3_0:159_0:101$ ip community-list expanded c58 permit 105 ^65000:3_0:160_0:102$ ip community-list expanded c58 permit 106 ^65000:3_0:161_0:103$ ip community-list expanded c58 permit 107 ^65000:3_0:162_0:104$ ip community-list expanded c58 permit 108 ^65000:3_0:163_0:105$ ip community-list expanded c58 permit 109 ^65000:3_0:164_0:106$ ip community-list expanded c58 permit 110 ^65000:3_0:165_0:107$ ip community-list expanded c58 permit 111 ^65000:3_0:166_0:108$ ip community-list expanded c58 permit 112 ^65000:3_0:167_0:109$ ip community-list expanded c58 permit 113 ^65000:3_0:168_0:110$ ip community-list expanded c58 permit 114 ^65000:3_0:169_0:111$ ip community-list expanded c58 permit 115 ^65000:3_0:170_0:112$ ip community-list expanded c58 permit 116 ^65000:3_0:171_0:113$ ip community-list expanded c58 permit 117 ^65000:3_0:172_0:114$ ip community-list expanded c58 permit 118 ^65000:3_0:173_0:115$ ip community-list expanded c58 permit 119 ^65000:4_0:174_0:3$ ip community-list expanded c58 permit 120 ^65000:3_0:174_0:116$ ip community-list expanded c58 permit 121 ^65000:4_0:175_0:3$ ip community-list expanded c58 permit 122 ^65000:3_0:175_0:117$ ip community-list expanded c58 permit 123 ^65000:4_0:176_0:3$ ip community-list expanded c58 permit 124 ^65000:3_0:176_0:118$ ip community-list expanded c58 permit 125 ^65000:3_0:177_0:119$ ip community-list expanded c58 permit 126 ^65000:3_0:178_0:120$ ip community-list expanded c58 permit 127 ^65000:3_0:179_0:121$ ip community-list expanded c58 permit 128 ^65000:3_0:180_0:122$ ip community-list expanded c58 permit 129 ^65000:3_0:181_0:123$ ip community-list expanded c58 permit 130 ^65000:3_0:182_0:124$ ip community-list expanded c58 permit 131 ^65000:3_0:183_0:125$ ip community-list expanded c58 permit 132 ^65000:3_0:184_0:126$ ip community-list expanded c58 permit 133 ^65000:3_0:185_0:127$ ip community-list expanded c58 permit 134 ^65000:3_0:186_0:128$ ip community-list expanded c58 permit 135 ^65000:3_0:187_0:129$ ip community-list expanded c58 permit 136 ^65000:3_0:188_0:130$ ip community-list expanded c58 permit 137 ^65000:3_0:189_0:131$ ip community-list expanded c58 permit 138 ^65000:3_0:190_0:132$ ip community-list expanded c58 permit 139 ^65000:3_0:191_0:133$ ip community-list expanded c58 permit 140 ^65000:3_0:192_0:134$ ip community-list expanded c58 permit 141 ^65000:3_0:193_0:135$ ip community-list expanded c58 permit 142 ^65000:3_0:194_0:136$ ip community-list expanded c58 permit 143 ^65000:3_0:195_0:137$ ip community-list expanded c58 permit 144 ^65000:3_0:196_0:138$ ip community-list expanded c58 permit 145 ^65000:3_0:197_0:139$ ip community-list expanded c58 permit 146 ^65000:3_0:198_0:140$ ip community-list expanded c58 permit 147 ^65000:3_0:199_0:141$ ip community-list expanded c58 permit 148 ^65000:3_0:200_0:142$ ip community-list expanded c58 permit 149 ^65000:3_0:201_0:143$ ip community-list expanded c58 permit 150 ^65000:3_0:202_0:144$ ip community-list expanded c58 permit 151 ^65000:3_0:203_0:145$ ip community-list expanded c58 permit 152 ^65000:3_0:204_0:146$ ip community-list expanded c58 permit 153 ^65000:3_0:205_0:147$ ip community-list expanded c58 permit 154 ^65000:3_0:206_0:148$ ip community-list expanded c58 permit 155 ^65000:3_0:207_0:149$ ip community-list expanded c58 permit 156 ^65000:3_0:208_0:150$ ip community-list expanded c58 permit 157 ^65000:3_0:209_0:151$ ip community-list expanded c58 permit 158 ^65000:3_0:210_0:152$ ip community-list expanded c58 permit 159 ^65000:3_0:211_0:153$ ip community-list expanded c58 permit 160 ^65000:3_0:212_0:154$ ip community-list expanded c58 permit 161 ^65000:3_0:213_0:155$ ip community-list expanded c58 permit 162 ^65000:3_0:214_0:156$ ip community-list expanded c58 permit 163 ^65000:3_0:215_0:157$ ip community-list expanded c58 permit 164 ^65000:3_0:216_0:158$ ip community-list expanded c58 permit 165 ^65000:3_0:217_0:159$ ip community-list expanded c58 permit 166 ^65000:3_0:218_0:160$ ip community-list expanded c58 permit 167 ^65000:3_0:219_0:161$ ip community-list expanded c58 permit 168 ^65000:3_0:220_0:162$ ip community-list expanded c58 permit 169 ^65000:3_0:221_0:163$ ip community-list expanded c58 permit 170 ^65000:3_0:222_0:164$ ip community-list expanded c58 permit 171 ^65000:3_0:223_0:165$ ip community-list expanded c58 permit 172 ^65000:3_0:224_0:166$ ip community-list expanded c58 permit 173 ^65000:3_0:225_0:167$ ip community-list expanded c58 permit 174 ^65000:3_0:226_0:168$ ip community-list expanded c58 permit 175 ^65000:3_0:227_0:169$ ip community-list expanded c58 permit 176 ^65000:3_0:228_0:170$ ip community-list expanded c58 permit 177 ^65000:3_0:229_0:171$ ip community-list expanded c58 permit 178 ^65000:3_0:230_0:172$ ip community-list expanded c58 permit 179 ^65000:3_0:231_0:173$ ip community-list expanded c58 permit 180 ^65000:4_0:232_0:4$ ip community-list expanded c58 permit 181 ^65000:3_0:232_0:174$ ip community-list expanded c58 permit 182 ^65000:4_0:233_0:4$ ip community-list expanded c58 permit 183 ^65000:3_0:233_0:175$ ip community-list expanded c58 permit 184 ^65000:4_0:234_0:4$ ip community-list expanded c58 permit 185 ^65000:3_0:234_0:176$ ip community-list expanded c58 permit 186 ^65000:4_0:235_0:4$ ip community-list expanded c58 permit 187 ^65000:3_0:235_0:177$ ip community-list expanded c58 permit 188 ^65000:3_0:236_0:178$ ip community-list expanded c58 permit 189 ^65000:3_0:237_0:179$ ip community-list expanded c58 permit 190 ^65000:3_0:238_0:180$ ip community-list expanded c58 permit 191 ^65000:3_0:239_0:181$ ip community-list expanded c58 permit 192 ^65000:3_0:240_0:182$ ip community-list expanded c58 permit 193 ^65000:3_0:241_0:183$ ip community-list expanded c58 permit 194 ^65000:3_0:242_0:184$ ip community-list expanded c58 permit 195 ^65000:3_0:243_0:185$ ip community-list expanded c58 permit 196 ^65000:3_0:244_0:186$ ip community-list expanded c58 permit 197 ^65000:3_0:245_0:187$ ip community-list expanded c58 permit 198 ^65000:3_0:246_0:188$ ip community-list expanded c58 permit 199 ^65000:3_0:247_0:189$ ip community-list expanded c58 permit 200 ^65000:3_0:248_0:190$ ip community-list expanded c58 permit 201 ^65000:3_0:249_0:191$ ip community-list expanded c58 permit 202 ^65000:3_0:250_0:192$ ip community-list expanded c58 permit 203 ^65000:3_0:251_0:193$ ip community-list expanded c58 permit 204 ^65000:3_0:252_0:194$ ip community-list expanded c58 permit 205 ^65000:3_0:253_0:195$ ip community-list expanded c58 permit 206 ^65000:3_0:254_0:196$ ip community-list expanded c58 permit 207 ^65000:3_0:255_0:197$ ip community-list expanded c58 permit 208 ^65000:3_0:256_0:198$ route-map calculator permit 31011 match community 1_1_57 2_1_58 2_2_29 1_2_56 1_3_55 set community 0:58 route-map calculator permit 31012 match community 1_4_54 1_5_53 1_6_52 1_7_51 1_8_50 set community 0:58 route-map calculator permit 31013 match community 1_9_49 1_10_48 1_11_47 1_12_46 1_13_45 set community 0:58 route-map calculator permit 31014 match community 1_14_44 1_15_43 1_16_42 1_17_41 1_18_40 set community 0:58 route-map calculator permit 31015 match community 1_19_39 1_20_38 1_21_37 1_22_36 1_23_35 set community 0:58 route-map calculator permit 31016 match community 1_24_34 1_25_33 1_26_32 1_27_31 1_28_30 set community 0:58 route-map calculator permit 31017 match community 1_29_29 c4_58_1 c3_59_1 c3_60_2 c3_61_3 set community 0:58 route-map calculator permit 31018 match community c3_62_4 c3_63_5 c3_64_6 c3_65_7 c3_66_8 set community 0:58 route-map calculator permit 31019 match community c3_67_9 c3_68_10 c3_69_11 c3_70_12 c3_71_13 set community 0:58 route-map calculator permit 31020 match community c3_72_14 c3_73_15 c3_74_16 c3_75_17 c3_76_18 set community 0:58 route-map calculator permit 31021 match community c3_77_19 c3_78_20 c3_79_21 c3_80_22 c3_81_23 set community 0:58 route-map calculator permit 31022 match community c3_82_24 c3_83_25 c3_84_26 c3_85_27 c3_86_28 set community 0:58 route-map calculator permit 31023 match community c3_87_29 c3_88_30 c3_89_31 c3_90_32 c3_91_33 set community 0:58 route-map calculator permit 31024 match community c3_92_34 c3_93_35 c3_94_36 c3_95_37 c3_96_38 set community 0:58 route-map calculator permit 31025 match community c3_97_39 c3_98_40 c3_99_41 c3_100_42 c3_101_43 set community 0:58 route-map calculator permit 31026 match community c3_102_44 c3_103_45 c3_104_46 c3_105_47 c3_106_48 set community 0:58 route-map calculator permit 31027 match community c3_107_49 c3_108_50 c3_109_51 c3_110_52 c3_111_53 set community 0:58 route-map calculator permit 31028 match community c3_112_54 c3_113_55 c3_114_56 c3_115_57 c4_116_2 set community 0:58 route-map calculator permit 31029 match community c3_116_58 c4_117_2 c3_117_59 c3_118_60 c3_119_61 set community 0:58 route-map calculator permit 31030 match community c3_120_62 c3_121_63 c3_122_64 c3_123_65 c3_124_66 set community 0:58 route-map calculator permit 31031 match community c3_125_67 c3_126_68 c3_127_69 c3_128_70 c3_129_71 set community 0:58 route-map calculator permit 31032 match community c3_130_72 c3_131_73 c3_132_74 c3_133_75 c3_134_76 set community 0:58 route-map calculator permit 31033 match community c3_135_77 c3_136_78 c3_137_79 c3_138_80 c3_139_81 set community 0:58 route-map calculator permit 31034 match community c3_140_82 c3_141_83 c3_142_84 c3_143_85 c3_144_86 set community 0:58 route-map calculator permit 31035 match community c3_145_87 c3_146_88 c3_147_89 c3_148_90 c3_149_91 set community 0:58 route-map calculator permit 31036 match community c3_150_92 c3_151_93 c3_152_94 c3_153_95 c3_154_96 set community 0:58 route-map calculator permit 31037 match community c3_155_97 c3_156_98 c3_157_99 c3_158_100 c3_159_101 set community 0:58 route-map calculator permit 31038 match community c3_160_102 c3_161_103 c3_162_104 c3_163_105 c3_164_106 set community 0:58 route-map calculator permit 31039 match community c3_165_107 c3_166_108 c3_167_109 c3_168_110 c3_169_111 set community 0:58 route-map calculator permit 31040 match community c3_170_112 c3_171_113 c3_172_114 c3_173_115 c4_174_3 set community 0:58 route-map calculator permit 31041 match community c3_174_116 c4_175_3 c3_175_117 c4_176_3 c3_176_118 set community 0:58 route-map calculator permit 31042 match community c3_177_119 c3_178_120 c3_179_121 c3_180_122 c3_181_123 set community 0:58 route-map calculator permit 31043 match community c3_182_124 c3_183_125 c3_184_126 c3_185_127 c3_186_128 set community 0:58 route-map calculator permit 31044 match community c3_187_129 c3_188_130 c3_189_131 c3_190_132 c3_191_133 set community 0:58 route-map calculator permit 31045 match community c3_192_134 c3_193_135 c3_194_136 c3_195_137 c3_196_138 set community 0:58 route-map calculator permit 31046 match community c3_197_139 c3_198_140 c3_199_141 c3_200_142 c3_201_143 set community 0:58 route-map calculator permit 31047 match community c3_202_144 c3_203_145 c3_204_146 c3_205_147 c3_206_148 set community 0:58 route-map calculator permit 31048 match community c3_207_149 c3_208_150 c3_209_151 c3_210_152 c3_211_153 set community 0:58 route-map calculator permit 31049 match community c3_212_154 c3_213_155 c3_214_156 c3_215_157 c3_216_158 set community 0:58 route-map calculator permit 31050 match community c3_217_159 c3_218_160 c3_219_161 c3_220_162 c3_221_163 set community 0:58 route-map calculator permit 31051 match community c3_222_164 c3_223_165 c3_224_166 c3_225_167 c3_226_168 set community 0:58 route-map calculator permit 31052 match community c3_227_169 c3_228_170 c3_229_171 c3_230_172 c3_231_173 set community 0:58 route-map calculator permit 31053 match community c4_232_4 c3_232_174 c4_233_4 c3_233_175 c4_234_4 set community 0:58 route-map calculator permit 31054 match community c3_234_176 c4_235_4 c3_235_177 c3_236_178 c3_237_179 set community 0:58 route-map calculator permit 31055 match community c3_238_180 c3_239_181 c3_240_182 c3_241_183 c3_242_184 set community 0:58 route-map calculator permit 31056 match community c3_243_185 c3_244_186 c3_245_187 c3_246_188 c3_247_189 set community 0:58 route-map calculator permit 31057 match community c3_248_190 c3_249_191 c3_250_192 c3_251_193 c3_252_194 set community 0:58 route-map calculator permit 31058 match community c3_253_195 c3_254_196 c3_255_197 c3_256_198 set community 0:58 ip community-list standard 2_63_205 permit 65000:2 0:63 0:205 ip community-list standard 2_105_123 permit 65000:2 0:105 0:123 route-map calculator permit 31059 match community 2_63_205 2_105_123 set community 0:12915 ip community-list standard 2_188_199 permit 65000:2 0:188 0:199 route-map calculator permit 31060 match community 2_188_199 set community 0:37412 ip community-list standard 2_31_89 permit 65000:2 0:31 0:89 route-map calculator permit 31061 match community 2_31_89 set community 0:2759 ip community-list standard 2_61_67 permit 65000:2 0:61 0:67 route-map calculator permit 31062 match community 2_61_67 set community 0:4087 ip community-list standard 2_9_226 permit 65000:2 0:9 0:226 ip community-list standard 2_18_113 permit 65000:2 0:18 0:113 route-map calculator permit 31063 match community 2_9_226 2_18_113 set community 0:2034 ip community-list standard 2_110_246 permit 65000:2 0:110 0:246 ip community-list standard 2_123_220 permit 65000:2 0:123 0:220 ip community-list standard 2_132_205 permit 65000:2 0:132 0:205 ip community-list standard 2_164_165 permit 65000:2 0:164 0:165 route-map calculator permit 31064 match community 2_110_246 2_123_220 2_132_205 2_164_165 set community 0:27060 ip community-list standard 2_45_218 permit 65000:2 0:45 0:218 ip community-list standard 2_90_109 permit 65000:2 0:90 0:109 route-map calculator permit 31065 match community 2_45_218 2_90_109 set community 0:9810 ip community-list standard 2_145_255 permit 65000:2 0:145 0:255 route-map calculator permit 31066 match community 2_145_255 set community 0:36975 ip community-list standard 2_109_173 permit 65000:2 0:109 0:173 route-map calculator permit 31067 match community 2_109_173 set community 0:18857 ip community-list standard 2_157_243 permit 65000:2 0:157 0:243 route-map calculator permit 31068 match community 2_157_243 set community 0:38151 ip community-list standard 2_125_179 permit 65000:2 0:125 0:179 route-map calculator permit 31069 match community 2_125_179 set community 0:22375 ip community-list standard 2_239_251 permit 65000:2 0:239 0:251 route-map calculator permit 31070 match community 2_239_251 set community 0:59989 ip community-list standard 2_139_219 permit 65000:2 0:139 0:219 route-map calculator permit 31071 match community 2_139_219 set community 0:30441 ip community-list standard 2_116_139 permit 65000:2 0:116 0:139 route-map calculator permit 31072 match community 2_116_139 set community 0:16124 ip community-list standard 2_19_219 permit 65000:2 0:19 0:219 ip community-list standard 2_57_73 permit 65000:2 0:57 0:73 route-map calculator permit 31073 match community 2_19_219 2_57_73 set community 0:4161 ip community-list standard 2_80_166 permit 65000:2 0:80 0:166 ip community-list standard 2_83_160 permit 65000:2 0:83 0:160 route-map calculator permit 31074 match community 2_80_166 2_83_160 set community 0:13280 ip community-list standard 2_2_208 permit 65000:2 0:2 0:208 ip community-list standard 2_4_104 permit 65000:2 0:4 0:104 ip community-list standard 2_8_52 permit 65000:2 0:8 0:52 ip community-list standard 2_13_32 permit 65000:2 0:13 0:32 ip community-list standard 2_16_26 permit 65000:2 0:16 0:26 ip community-list standard 1_160_256 permit 65000:1 0:160 0:256 ip community-list standard 1_161_255 permit 65000:1 0:161 0:255 ip community-list standard 1_162_254 permit 65000:1 0:162 0:254 ip community-list standard 1_163_253 permit 65000:1 0:163 0:253 ip community-list standard 1_164_252 permit 65000:1 0:164 0:252 ip community-list standard 1_165_251 permit 65000:1 0:165 0:251 ip community-list standard 1_166_250 permit 65000:1 0:166 0:250 ip community-list standard 1_167_249 permit 65000:1 0:167 0:249 ip community-list standard 1_168_248 permit 65000:1 0:168 0:248 ip community-list standard 1_169_247 permit 65000:1 0:169 0:247 ip community-list standard 1_170_246 permit 65000:1 0:170 0:246 ip community-list standard 1_171_245 permit 65000:1 0:171 0:245 ip community-list standard 1_172_244 permit 65000:1 0:172 0:244 ip community-list standard 1_173_243 permit 65000:1 0:173 0:243 ip community-list standard 1_174_242 permit 65000:1 0:174 0:242 ip community-list standard 1_175_241 permit 65000:1 0:175 0:241 ip community-list standard 1_176_240 permit 65000:1 0:176 0:240 ip community-list standard 1_177_239 permit 65000:1 0:177 0:239 ip community-list standard 1_178_238 permit 65000:1 0:178 0:238 ip community-list standard 1_179_237 permit 65000:1 0:179 0:237 ip community-list standard 1_180_236 permit 65000:1 0:180 0:236 ip community-list standard 1_181_235 permit 65000:1 0:181 0:235 ip community-list standard 1_182_234 permit 65000:1 0:182 0:234 ip community-list standard 1_183_233 permit 65000:1 0:183 0:233 ip community-list standard 1_184_232 permit 65000:1 0:184 0:232 ip community-list standard 1_185_231 permit 65000:1 0:185 0:231 ip community-list standard 1_186_230 permit 65000:1 0:186 0:230 ip community-list standard 1_187_229 permit 65000:1 0:187 0:229 ip community-list standard 1_188_228 permit 65000:1 0:188 0:228 ip community-list standard 1_189_227 permit 65000:1 0:189 0:227 ip community-list standard 1_190_226 permit 65000:1 0:190 0:226 ip community-list standard 1_191_225 permit 65000:1 0:191 0:225 ip community-list standard 1_192_224 permit 65000:1 0:192 0:224 ip community-list standard 1_193_223 permit 65000:1 0:193 0:223 ip community-list standard 1_194_222 permit 65000:1 0:194 0:222 ip community-list standard 1_195_221 permit 65000:1 0:195 0:221 ip community-list standard 1_196_220 permit 65000:1 0:196 0:220 ip community-list standard 1_197_219 permit 65000:1 0:197 0:219 ip community-list standard 1_198_218 permit 65000:1 0:198 0:218 ip community-list standard 1_199_217 permit 65000:1 0:199 0:217 ip community-list standard 1_200_216 permit 65000:1 0:200 0:216 ip community-list standard 1_201_215 permit 65000:1 0:201 0:215 ip community-list standard 1_202_214 permit 65000:1 0:202 0:214 ip community-list standard 1_203_213 permit 65000:1 0:203 0:213 ip community-list standard 1_204_212 permit 65000:1 0:204 0:212 ip community-list standard 1_205_211 permit 65000:1 0:205 0:211 ip community-list standard 1_206_210 permit 65000:1 0:206 0:210 ip community-list standard 1_207_209 permit 65000:1 0:207 0:209 ip community-list standard 1_208_208 permit 65000:1 0:208 0:208 route-map calculator permit 31075 match community 2_2_208 2_4_104 2_8_52 2_13_32 2_16_26 set community 0:416 route-map calculator permit 31076 match community 1_160_256 1_161_255 1_162_254 1_163_253 1_164_252 set community 0:416 route-map calculator permit 31077 match community 1_165_251 1_166_250 1_167_249 1_168_248 1_169_247 set community 0:416 route-map calculator permit 31078 match community 1_170_246 1_171_245 1_172_244 1_173_243 1_174_242 set community 0:416 route-map calculator permit 31079 match community 1_175_241 1_176_240 1_177_239 1_178_238 1_179_237 set community 0:416 route-map calculator permit 31080 match community 1_180_236 1_181_235 1_182_234 1_183_233 1_184_232 set community 0:416 route-map calculator permit 31081 match community 1_185_231 1_186_230 1_187_229 1_188_228 1_189_227 set community 0:416 route-map calculator permit 31082 match community 1_190_226 1_191_225 1_192_224 1_193_223 1_194_222 set community 0:416 route-map calculator permit 31083 match community 1_195_221 1_196_220 1_197_219 1_198_218 1_199_217 set community 0:416 route-map calculator permit 31084 match community 1_200_216 1_201_215 1_202_214 1_203_213 1_204_212 set community 0:416 route-map calculator permit 31085 match community 1_205_211 1_206_210 1_207_209 1_208_208 set community 0:416 ip community-list standard 2_230_254 permit 65000:2 0:230 0:254 route-map calculator permit 31086 match community 2_230_254 set community 0:58420 ip community-list standard 2_50_233 permit 65000:2 0:50 0:233 route-map calculator permit 31087 match community 2_50_233 set community 0:11650 ip community-list standard 2_40_232 permit 65000:2 0:40 0:232 ip community-list standard 2_58_160 permit 65000:2 0:58 0:160 ip community-list standard 2_64_145 permit 65000:2 0:64 0:145 ip community-list standard 2_80_116 permit 65000:2 0:80 0:116 route-map calculator permit 31088 match community 2_40_232 2_58_160 2_64_145 2_80_116 set community 0:9280 ip community-list standard 2_73_169 permit 65000:2 0:73 0:169 route-map calculator permit 31089 match community 2_73_169 set community 0:12337 ip community-list standard 2_136_252 permit 65000:2 0:136 0:252 ip community-list standard 2_144_238 permit 65000:2 0:144 0:238 ip community-list standard 2_153_224 permit 65000:2 0:153 0:224 ip community-list standard 2_168_204 permit 65000:2 0:168 0:204 route-map calculator permit 31090 match community 2_136_252 2_144_238 2_153_224 2_168_204 set community 0:34272 ip community-list standard 2_232_250 permit 65000:2 0:232 0:250 route-map calculator permit 31091 match community 2_232_250 set community 0:58000 ip community-list standard 2_46_234 permit 65000:2 0:46 0:234 ip community-list standard 2_52_207 permit 65000:2 0:52 0:207 ip community-list standard 2_69_156 permit 65000:2 0:69 0:156 ip community-list standard 2_78_138 permit 65000:2 0:78 0:138 ip community-list standard 2_92_117 permit 65000:2 0:92 0:117 route-map calculator permit 31092 match community 2_46_234 2_52_207 2_69_156 2_78_138 2_92_117 set community 0:10764 ip community-list standard 2_62_249 permit 65000:2 0:62 0:249 ip community-list standard 2_83_186 permit 65000:2 0:83 0:186 ip community-list standard 2_93_166 permit 65000:2 0:93 0:166 route-map calculator permit 31093 match community 2_62_249 2_83_186 2_93_166 set community 0:15438 ip community-list standard 2_101_223 permit 65000:2 0:101 0:223 route-map calculator permit 31094 match community 2_101_223 set community 0:22523 ip community-list standard 2_234_252 permit 65000:2 0:234 0:252 route-map calculator permit 31095 match community 2_234_252 set community 0:58968 ip community-list standard 2_63_163 permit 65000:2 0:63 0:163 route-map calculator permit 31096 match community 2_63_163 set community 0:10269 ip community-list standard 2_29_180 permit 65000:2 0:29 0:180 ip community-list standard 2_30_174 permit 65000:2 0:30 0:174 ip community-list standard 2_36_145 permit 65000:2 0:36 0:145 ip community-list standard 2_45_116 permit 65000:2 0:45 0:116 ip community-list standard 2_58_90 permit 65000:2 0:58 0:90 ip community-list standard 2_60_87 permit 65000:2 0:60 0:87 route-map calculator permit 31097 match community 2_29_180 2_30_174 2_36_145 2_45_116 2_58_90 set community 0:5220 route-map calculator permit 31098 match community 2_60_87 set community 0:5220 ip community-list standard 2_103_228 permit 65000:2 0:103 0:228 ip community-list standard 2_114_206 permit 65000:2 0:114 0:206 route-map calculator permit 31099 match community 2_103_228 2_114_206 set community 0:23484 ip community-list standard 2_151_255 permit 65000:2 0:151 0:255 route-map calculator permit 31100 match community 2_151_255 set community 0:38505 ip community-list standard 2_134_248 permit 65000:2 0:134 0:248 route-map calculator permit 31101 match community 2_134_248 set community 0:33232 ip community-list standard 2_151_183 permit 65000:2 0:151 0:183 route-map calculator permit 31102 match community 2_151_183 set community 0:27633 ip community-list standard 2_99_248 permit 65000:2 0:99 0:248 ip community-list standard 2_124_198 permit 65000:2 0:124 0:198 ip community-list standard 2_132_186 permit 65000:2 0:132 0:186 route-map calculator permit 31103 match community 2_99_248 2_124_198 2_132_186 set community 0:24552 ip community-list standard 2_27_159 permit 65000:2 0:27 0:159 ip community-list standard 2_53_81 permit 65000:2 0:53 0:81 route-map calculator permit 31104 match community 2_27_159 2_53_81 set community 0:4293 ip community-list standard 2_108_149 permit 65000:2 0:108 0:149 route-map calculator permit 31105 match community 2_108_149 set community 0:16092 ip community-list standard 2_13_61 permit 65000:2 0:13 0:61 route-map calculator permit 31106 match community 2_13_61 set community 0:793 ip community-list standard 2_175_191 permit 65000:2 0:175 0:191 route-map calculator permit 31107 match community 2_175_191 set community 0:33425 ip community-list standard 2_137_207 permit 65000:2 0:137 0:207 route-map calculator permit 31108 match community 2_137_207 set community 0:28359 ip community-list standard 2_29_172 permit 65000:2 0:29 0:172 ip community-list standard 2_43_116 permit 65000:2 0:43 0:116 ip community-list standard 2_58_86 permit 65000:2 0:58 0:86 route-map calculator permit 31109 match community 2_29_172 2_43_116 2_58_86 set community 0:4988 ip community-list standard 2_239_254 permit 65000:2 0:239 0:254 route-map calculator permit 31110 match community 2_239_254 set community 0:60706 ip community-list standard 2_175_177 permit 65000:2 0:175 0:177 route-map calculator permit 31111 match community 2_175_177 set community 0:30975 ip community-list standard 2_3_176 permit 65000:2 0:3 0:176 ip community-list standard 2_4_132 permit 65000:2 0:4 0:132 ip community-list standard 2_6_88 permit 65000:2 0:6 0:88 ip community-list standard 2_8_66 permit 65000:2 0:8 0:66 ip community-list standard 2_11_48 permit 65000:2 0:11 0:48 ip community-list standard 2_12_44 permit 65000:2 0:12 0:44 ip community-list standard 2_16_33 permit 65000:2 0:16 0:33 ip community-list standard 2_22_24 permit 65000:2 0:22 0:24 route-map calculator permit 31112 match community 2_3_176 2_4_132 2_6_88 2_8_66 2_11_48 set community 0:528 route-map calculator permit 31113 match community 2_12_44 2_16_33 2_22_24 set community 0:528 ip community-list standard 2_69_227 permit 65000:2 0:69 0:227 route-map calculator permit 31114 match community 2_69_227 set community 0:15663 ip community-list standard 2_41_171 permit 65000:2 0:41 0:171 ip community-list standard 2_57_123 permit 65000:2 0:57 0:123 route-map calculator permit 31115 match community 2_41_171 2_57_123 set community 0:7011 ip community-list standard 2_29_29 permit 65000:2 0:29 0:29 route-map calculator permit 31116 match community 2_29_29 set community 0:841 ip community-list standard 2_85_194 permit 65000:2 0:85 0:194 ip community-list standard 2_97_170 permit 65000:2 0:97 0:170 route-map calculator permit 31117 match community 2_85_194 2_97_170 set community 0:16490 ip community-list standard 2_107_119 permit 65000:2 0:107 0:119 route-map calculator permit 31118 match community 2_107_119 set community 0:12733 ip community-list standard 2_3_165 permit 65000:2 0:3 0:165 ip community-list standard 2_5_99 permit 65000:2 0:5 0:99 ip community-list standard 2_9_55 permit 65000:2 0:9 0:55 ip community-list standard 2_11_45 permit 65000:2 0:11 0:45 ip community-list standard 2_15_33 permit 65000:2 0:15 0:33 ip community-list standard 1_239_256 permit 65000:1 0:239 0:256 ip community-list standard 1_240_255 permit 65000:1 0:240 0:255 ip community-list standard 1_241_254 permit 65000:1 0:241 0:254 ip community-list standard 1_242_253 permit 65000:1 0:242 0:253 ip community-list standard 1_243_252 permit 65000:1 0:243 0:252 ip community-list standard 1_244_251 permit 65000:1 0:244 0:251 ip community-list standard 1_245_250 permit 65000:1 0:245 0:250 ip community-list standard 1_246_249 permit 65000:1 0:246 0:249 ip community-list standard 1_247_248 permit 65000:1 0:247 0:248 route-map calculator permit 31119 match community 2_3_165 2_5_99 2_9_55 2_11_45 2_15_33 set community 0:495 route-map calculator permit 31120 match community 1_239_256 1_240_255 1_241_254 1_242_253 1_243_252 set community 0:495 route-map calculator permit 31121 match community 1_244_251 1_245_250 1_246_249 1_247_248 set community 0:495 ip community-list standard 2_184_193 permit 65000:2 0:184 0:193 route-map calculator permit 31122 match community 2_184_193 set community 0:35512 ip community-list standard 1_1_128 permit 65000:1 0:1 0:128 ip community-list standard 2_1_129 permit 65000:2 0:1 0:129 ip community-list standard 1_2_127 permit 65000:1 0:2 0:127 ip community-list standard 2_3_43 permit 65000:2 0:3 0:43 ip community-list standard 1_3_126 permit 65000:1 0:3 0:126 ip community-list standard 1_4_125 permit 65000:1 0:4 0:125 ip community-list standard 1_5_124 permit 65000:1 0:5 0:124 ip community-list standard 1_6_123 permit 65000:1 0:6 0:123 ip community-list standard 1_7_122 permit 65000:1 0:7 0:122 ip community-list standard 1_8_121 permit 65000:1 0:8 0:121 ip community-list standard 1_9_120 permit 65000:1 0:9 0:120 ip community-list standard 1_10_119 permit 65000:1 0:10 0:119 ip community-list standard 1_11_118 permit 65000:1 0:11 0:118 ip community-list standard 1_12_117 permit 65000:1 0:12 0:117 ip community-list standard 1_13_116 permit 65000:1 0:13 0:116 ip community-list standard 1_14_115 permit 65000:1 0:14 0:115 ip community-list standard 1_15_114 permit 65000:1 0:15 0:114 ip community-list standard 1_16_113 permit 65000:1 0:16 0:113 ip community-list standard 1_17_112 permit 65000:1 0:17 0:112 ip community-list standard 1_18_111 permit 65000:1 0:18 0:111 ip community-list standard 1_19_110 permit 65000:1 0:19 0:110 ip community-list standard 1_20_109 permit 65000:1 0:20 0:109 ip community-list standard 1_21_108 permit 65000:1 0:21 0:108 ip community-list standard 1_22_107 permit 65000:1 0:22 0:107 ip community-list standard 1_23_106 permit 65000:1 0:23 0:106 ip community-list standard 1_24_105 permit 65000:1 0:24 0:105 ip community-list standard 1_25_104 permit 65000:1 0:25 0:104 ip community-list standard 1_26_103 permit 65000:1 0:26 0:103 ip community-list standard 1_27_102 permit 65000:1 0:27 0:102 ip community-list standard 1_28_101 permit 65000:1 0:28 0:101 ip community-list standard 1_29_100 permit 65000:1 0:29 0:100 ip community-list standard 1_30_99 permit 65000:1 0:30 0:99 ip community-list standard 1_31_98 permit 65000:1 0:31 0:98 ip community-list standard 1_32_97 permit 65000:1 0:32 0:97 ip community-list standard 1_33_96 permit 65000:1 0:33 0:96 ip community-list standard 1_34_95 permit 65000:1 0:34 0:95 ip community-list standard 1_35_94 permit 65000:1 0:35 0:94 ip community-list standard 1_36_93 permit 65000:1 0:36 0:93 ip community-list standard 1_37_92 permit 65000:1 0:37 0:92 ip community-list standard 1_38_91 permit 65000:1 0:38 0:91 ip community-list standard 1_39_90 permit 65000:1 0:39 0:90 ip community-list standard 1_40_89 permit 65000:1 0:40 0:89 ip community-list standard 1_41_88 permit 65000:1 0:41 0:88 ip community-list standard 1_42_87 permit 65000:1 0:42 0:87 ip community-list standard 1_43_86 permit 65000:1 0:43 0:86 ip community-list standard 1_44_85 permit 65000:1 0:44 0:85 ip community-list standard 1_45_84 permit 65000:1 0:45 0:84 ip community-list standard 1_46_83 permit 65000:1 0:46 0:83 ip community-list standard 1_47_82 permit 65000:1 0:47 0:82 ip community-list standard 1_48_81 permit 65000:1 0:48 0:81 ip community-list standard 1_49_80 permit 65000:1 0:49 0:80 ip community-list standard 1_50_79 permit 65000:1 0:50 0:79 ip community-list standard 1_51_78 permit 65000:1 0:51 0:78 ip community-list standard 1_52_77 permit 65000:1 0:52 0:77 ip community-list standard 1_53_76 permit 65000:1 0:53 0:76 ip community-list standard 1_54_75 permit 65000:1 0:54 0:75 ip community-list standard 1_55_74 permit 65000:1 0:55 0:74 ip community-list standard 1_56_73 permit 65000:1 0:56 0:73 ip community-list standard 1_57_72 permit 65000:1 0:57 0:72 ip community-list standard 1_58_71 permit 65000:1 0:58 0:71 ip community-list standard 1_59_70 permit 65000:1 0:59 0:70 ip community-list standard 1_60_69 permit 65000:1 0:60 0:69 ip community-list standard 1_61_68 permit 65000:1 0:61 0:68 ip community-list standard 1_62_67 permit 65000:1 0:62 0:67 ip community-list standard 1_63_66 permit 65000:1 0:63 0:66 ip community-list standard 1_64_65 permit 65000:1 0:64 0:65 ip community-list expanded c129 permit 1 ^65000:4_0:129_0:1$ ip community-list expanded c129 permit 2 ^65000:3_0:130_0:1$ ip community-list expanded c129 permit 3 ^65000:3_0:131_0:2$ ip community-list expanded c129 permit 4 ^65000:3_0:132_0:3$ ip community-list expanded c129 permit 5 ^65000:3_0:133_0:4$ ip community-list expanded c129 permit 6 ^65000:3_0:134_0:5$ ip community-list expanded c129 permit 7 ^65000:3_0:135_0:6$ ip community-list expanded c129 permit 8 ^65000:3_0:136_0:7$ ip community-list expanded c129 permit 9 ^65000:3_0:137_0:8$ ip community-list expanded c129 permit 10 ^65000:3_0:138_0:9$ ip community-list expanded c129 permit 11 ^65000:3_0:139_0:10$ ip community-list expanded c129 permit 12 ^65000:3_0:140_0:11$ ip community-list expanded c129 permit 13 ^65000:3_0:141_0:12$ ip community-list expanded c129 permit 14 ^65000:3_0:142_0:13$ ip community-list expanded c129 permit 15 ^65000:3_0:143_0:14$ ip community-list expanded c129 permit 16 ^65000:3_0:144_0:15$ ip community-list expanded c129 permit 17 ^65000:3_0:145_0:16$ ip community-list expanded c129 permit 18 ^65000:3_0:146_0:17$ ip community-list expanded c129 permit 19 ^65000:3_0:147_0:18$ ip community-list expanded c129 permit 20 ^65000:3_0:148_0:19$ ip community-list expanded c129 permit 21 ^65000:3_0:149_0:20$ ip community-list expanded c129 permit 22 ^65000:3_0:150_0:21$ ip community-list expanded c129 permit 23 ^65000:3_0:151_0:22$ ip community-list expanded c129 permit 24 ^65000:3_0:152_0:23$ ip community-list expanded c129 permit 25 ^65000:3_0:153_0:24$ ip community-list expanded c129 permit 26 ^65000:3_0:154_0:25$ ip community-list expanded c129 permit 27 ^65000:3_0:155_0:26$ ip community-list expanded c129 permit 28 ^65000:3_0:156_0:27$ ip community-list expanded c129 permit 29 ^65000:3_0:157_0:28$ ip community-list expanded c129 permit 30 ^65000:3_0:158_0:29$ ip community-list expanded c129 permit 31 ^65000:3_0:159_0:30$ ip community-list expanded c129 permit 32 ^65000:3_0:160_0:31$ ip community-list expanded c129 permit 33 ^65000:3_0:161_0:32$ ip community-list expanded c129 permit 34 ^65000:3_0:162_0:33$ ip community-list expanded c129 permit 35 ^65000:3_0:163_0:34$ ip community-list expanded c129 permit 36 ^65000:3_0:164_0:35$ ip community-list expanded c129 permit 37 ^65000:3_0:165_0:36$ ip community-list expanded c129 permit 38 ^65000:3_0:166_0:37$ ip community-list expanded c129 permit 39 ^65000:3_0:167_0:38$ ip community-list expanded c129 permit 40 ^65000:3_0:168_0:39$ ip community-list expanded c129 permit 41 ^65000:3_0:169_0:40$ ip community-list expanded c129 permit 42 ^65000:3_0:170_0:41$ ip community-list expanded c129 permit 43 ^65000:3_0:171_0:42$ ip community-list expanded c129 permit 44 ^65000:3_0:172_0:43$ ip community-list expanded c129 permit 45 ^65000:3_0:173_0:44$ ip community-list expanded c129 permit 46 ^65000:3_0:174_0:45$ ip community-list expanded c129 permit 47 ^65000:3_0:175_0:46$ ip community-list expanded c129 permit 48 ^65000:3_0:176_0:47$ ip community-list expanded c129 permit 49 ^65000:3_0:177_0:48$ ip community-list expanded c129 permit 50 ^65000:3_0:178_0:49$ ip community-list expanded c129 permit 51 ^65000:3_0:179_0:50$ ip community-list expanded c129 permit 52 ^65000:3_0:180_0:51$ ip community-list expanded c129 permit 53 ^65000:3_0:181_0:52$ ip community-list expanded c129 permit 54 ^65000:3_0:182_0:53$ ip community-list expanded c129 permit 55 ^65000:3_0:183_0:54$ ip community-list expanded c129 permit 56 ^65000:3_0:184_0:55$ ip community-list expanded c129 permit 57 ^65000:3_0:185_0:56$ ip community-list expanded c129 permit 58 ^65000:3_0:186_0:57$ ip community-list expanded c129 permit 59 ^65000:3_0:187_0:58$ ip community-list expanded c129 permit 60 ^65000:3_0:188_0:59$ ip community-list expanded c129 permit 61 ^65000:3_0:189_0:60$ ip community-list expanded c129 permit 62 ^65000:3_0:190_0:61$ ip community-list expanded c129 permit 63 ^65000:3_0:191_0:62$ ip community-list expanded c129 permit 64 ^65000:3_0:192_0:63$ ip community-list expanded c129 permit 65 ^65000:3_0:193_0:64$ ip community-list expanded c129 permit 66 ^65000:3_0:194_0:65$ ip community-list expanded c129 permit 67 ^65000:3_0:195_0:66$ ip community-list expanded c129 permit 68 ^65000:3_0:196_0:67$ ip community-list expanded c129 permit 69 ^65000:3_0:197_0:68$ ip community-list expanded c129 permit 70 ^65000:3_0:198_0:69$ ip community-list expanded c129 permit 71 ^65000:3_0:199_0:70$ ip community-list expanded c129 permit 72 ^65000:3_0:200_0:71$ ip community-list expanded c129 permit 73 ^65000:3_0:201_0:72$ ip community-list expanded c129 permit 74 ^65000:3_0:202_0:73$ ip community-list expanded c129 permit 75 ^65000:3_0:203_0:74$ ip community-list expanded c129 permit 76 ^65000:3_0:204_0:75$ ip community-list expanded c129 permit 77 ^65000:3_0:205_0:76$ ip community-list expanded c129 permit 78 ^65000:3_0:206_0:77$ ip community-list expanded c129 permit 79 ^65000:3_0:207_0:78$ ip community-list expanded c129 permit 80 ^65000:3_0:208_0:79$ ip community-list expanded c129 permit 81 ^65000:3_0:209_0:80$ ip community-list expanded c129 permit 82 ^65000:3_0:210_0:81$ ip community-list expanded c129 permit 83 ^65000:3_0:211_0:82$ ip community-list expanded c129 permit 84 ^65000:3_0:212_0:83$ ip community-list expanded c129 permit 85 ^65000:3_0:213_0:84$ ip community-list expanded c129 permit 86 ^65000:3_0:214_0:85$ ip community-list expanded c129 permit 87 ^65000:3_0:215_0:86$ ip community-list expanded c129 permit 88 ^65000:3_0:216_0:87$ ip community-list expanded c129 permit 89 ^65000:3_0:217_0:88$ ip community-list expanded c129 permit 90 ^65000:3_0:218_0:89$ ip community-list expanded c129 permit 91 ^65000:3_0:219_0:90$ ip community-list expanded c129 permit 92 ^65000:3_0:220_0:91$ ip community-list expanded c129 permit 93 ^65000:3_0:221_0:92$ ip community-list expanded c129 permit 94 ^65000:3_0:222_0:93$ ip community-list expanded c129 permit 95 ^65000:3_0:223_0:94$ ip community-list expanded c129 permit 96 ^65000:3_0:224_0:95$ ip community-list expanded c129 permit 97 ^65000:3_0:225_0:96$ ip community-list expanded c129 permit 98 ^65000:3_0:226_0:97$ ip community-list expanded c129 permit 99 ^65000:3_0:227_0:98$ ip community-list expanded c129 permit 100 ^65000:3_0:228_0:99$ ip community-list expanded c129 permit 101 ^65000:3_0:229_0:100$ ip community-list expanded c129 permit 102 ^65000:3_0:230_0:101$ ip community-list expanded c129 permit 103 ^65000:3_0:231_0:102$ ip community-list expanded c129 permit 104 ^65000:3_0:232_0:103$ ip community-list expanded c129 permit 105 ^65000:3_0:233_0:104$ ip community-list expanded c129 permit 106 ^65000:3_0:234_0:105$ ip community-list expanded c129 permit 107 ^65000:3_0:235_0:106$ ip community-list expanded c129 permit 108 ^65000:3_0:236_0:107$ ip community-list expanded c129 permit 109 ^65000:3_0:237_0:108$ ip community-list expanded c129 permit 110 ^65000:3_0:238_0:109$ ip community-list expanded c129 permit 111 ^65000:3_0:239_0:110$ ip community-list expanded c129 permit 112 ^65000:3_0:240_0:111$ ip community-list expanded c129 permit 113 ^65000:3_0:241_0:112$ ip community-list expanded c129 permit 114 ^65000:3_0:242_0:113$ ip community-list expanded c129 permit 115 ^65000:3_0:243_0:114$ ip community-list expanded c129 permit 116 ^65000:3_0:244_0:115$ ip community-list expanded c129 permit 117 ^65000:3_0:245_0:116$ ip community-list expanded c129 permit 118 ^65000:3_0:246_0:117$ ip community-list expanded c129 permit 119 ^65000:3_0:247_0:118$ ip community-list expanded c129 permit 120 ^65000:3_0:248_0:119$ ip community-list expanded c129 permit 121 ^65000:3_0:249_0:120$ ip community-list expanded c129 permit 122 ^65000:3_0:250_0:121$ ip community-list expanded c129 permit 123 ^65000:3_0:251_0:122$ ip community-list expanded c129 permit 124 ^65000:3_0:252_0:123$ ip community-list expanded c129 permit 125 ^65000:3_0:253_0:124$ ip community-list expanded c129 permit 126 ^65000:3_0:254_0:125$ ip community-list expanded c129 permit 127 ^65000:3_0:255_0:126$ ip community-list expanded c129 permit 128 ^65000:3_0:256_0:127$ route-map calculator permit 31123 match community 1_1_128 2_1_129 1_2_127 2_3_43 1_3_126 set community 0:129 route-map calculator permit 31124 match community 1_4_125 1_5_124 1_6_123 1_7_122 1_8_121 set community 0:129 route-map calculator permit 31125 match community 1_9_120 1_10_119 1_11_118 1_12_117 1_13_116 set community 0:129 route-map calculator permit 31126 match community 1_14_115 1_15_114 1_16_113 1_17_112 1_18_111 set community 0:129 route-map calculator permit 31127 match community 1_19_110 1_20_109 1_21_108 1_22_107 1_23_106 set community 0:129 route-map calculator permit 31128 match community 1_24_105 1_25_104 1_26_103 1_27_102 1_28_101 set community 0:129 route-map calculator permit 31129 match community 1_29_100 1_30_99 1_31_98 1_32_97 1_33_96 set community 0:129 route-map calculator permit 31130 match community 1_34_95 1_35_94 1_36_93 1_37_92 1_38_91 set community 0:129 route-map calculator permit 31131 match community 1_39_90 1_40_89 1_41_88 1_42_87 1_43_86 set community 0:129 route-map calculator permit 31132 match community 1_44_85 1_45_84 1_46_83 1_47_82 1_48_81 set community 0:129 route-map calculator permit 31133 match community 1_49_80 1_50_79 1_51_78 1_52_77 1_53_76 set community 0:129 route-map calculator permit 31134 match community 1_54_75 1_55_74 1_56_73 1_57_72 1_58_71 set community 0:129 route-map calculator permit 31135 match community 1_59_70 1_60_69 1_61_68 1_62_67 1_63_66 set community 0:129 route-map calculator permit 31136 match community 1_64_65 c4_129_1 c3_130_1 c3_131_2 c3_132_3 set community 0:129 route-map calculator permit 31137 match community c3_133_4 c3_134_5 c3_135_6 c3_136_7 c3_137_8 set community 0:129 route-map calculator permit 31138 match community c3_138_9 c3_139_10 c3_140_11 c3_141_12 c3_142_13 set community 0:129 route-map calculator permit 31139 match community c3_143_14 c3_144_15 c3_145_16 c3_146_17 c3_147_18 set community 0:129 route-map calculator permit 31140 match community c3_148_19 c3_149_20 c3_150_21 c3_151_22 c3_152_23 set community 0:129 route-map calculator permit 31141 match community c3_153_24 c3_154_25 c3_155_26 c3_156_27 c3_157_28 set community 0:129 route-map calculator permit 31142 match community c3_158_29 c3_159_30 c3_160_31 c3_161_32 c3_162_33 set community 0:129 route-map calculator permit 31143 match community c3_163_34 c3_164_35 c3_165_36 c3_166_37 c3_167_38 set community 0:129 route-map calculator permit 31144 match community c3_168_39 c3_169_40 c3_170_41 c3_171_42 c3_172_43 set community 0:129 route-map calculator permit 31145 match community c3_173_44 c3_174_45 c3_175_46 c3_176_47 c3_177_48 set community 0:129 route-map calculator permit 31146 match community c3_178_49 c3_179_50 c3_180_51 c3_181_52 c3_182_53 set community 0:129 route-map calculator permit 31147 match community c3_183_54 c3_184_55 c3_185_56 c3_186_57 c3_187_58 set community 0:129 route-map calculator permit 31148 match community c3_188_59 c3_189_60 c3_190_61 c3_191_62 c3_192_63 set community 0:129 route-map calculator permit 31149 match community c3_193_64 c3_194_65 c3_195_66 c3_196_67 c3_197_68 set community 0:129 route-map calculator permit 31150 match community c3_198_69 c3_199_70 c3_200_71 c3_201_72 c3_202_73 set community 0:129 route-map calculator permit 31151 match community c3_203_74 c3_204_75 c3_205_76 c3_206_77 c3_207_78 set community 0:129 route-map calculator permit 31152 match community c3_208_79 c3_209_80 c3_210_81 c3_211_82 c3_212_83 set community 0:129 route-map calculator permit 31153 match community c3_213_84 c3_214_85 c3_215_86 c3_216_87 c3_217_88 set community 0:129 route-map calculator permit 31154 match community c3_218_89 c3_219_90 c3_220_91 c3_221_92 c3_222_93 set community 0:129 route-map calculator permit 31155 match community c3_223_94 c3_224_95 c3_225_96 c3_226_97 c3_227_98 set community 0:129 route-map calculator permit 31156 match community c3_228_99 c3_229_100 c3_230_101 c3_231_102 c3_232_103 set community 0:129 route-map calculator permit 31157 match community c3_233_104 c3_234_105 c3_235_106 c3_236_107 c3_237_108 set community 0:129 route-map calculator permit 31158 match community c3_238_109 c3_239_110 c3_240_111 c3_241_112 c3_242_113 set community 0:129 route-map calculator permit 31159 match community c3_243_114 c3_244_115 c3_245_116 c3_246_117 c3_247_118 set community 0:129 route-map calculator permit 31160 match community c3_248_119 c3_249_120 c3_250_121 c3_251_122 c3_252_123 set community 0:129 route-map calculator permit 31161 match community c3_253_124 c3_254_125 c3_255_126 c3_256_127 set community 0:129 ip community-list standard 2_79_245 permit 65000:2 0:79 0:245 route-map calculator permit 31162 match community 2_79_245 set community 0:19355 ip community-list standard 2_152_193 permit 65000:2 0:152 0:193 route-map calculator permit 31163 match community 2_152_193 set community 0:29336 ip community-list standard 2_62_250 permit 65000:2 0:62 0:250 ip community-list standard 2_100_155 permit 65000:2 0:100 0:155 ip community-list standard 2_124_125 permit 65000:2 0:124 0:125 route-map calculator permit 31164 match community 2_62_250 2_100_155 2_124_125 set community 0:15500 ip community-list standard 2_104_240 permit 65000:2 0:104 0:240 ip community-list standard 2_120_208 permit 65000:2 0:120 0:208 ip community-list standard 2_128_195 permit 65000:2 0:128 0:195 ip community-list standard 2_130_192 permit 65000:2 0:130 0:192 ip community-list standard 2_156_160 permit 65000:2 0:156 0:160 route-map calculator permit 31165 match community 2_104_240 2_120_208 2_128_195 2_130_192 2_156_160 set community 0:24960 ip community-list standard 2_247_249 permit 65000:2 0:247 0:249 route-map calculator permit 31166 match community 2_247_249 set community 0:61503 ip community-list standard 2_7_254 permit 65000:2 0:7 0:254 ip community-list standard 2_14_127 permit 65000:2 0:14 0:127 route-map calculator permit 31167 match community 2_7_254 2_14_127 set community 0:1778 ip community-list standard 2_47_188 permit 65000:2 0:47 0:188 ip community-list standard 2_94_94 permit 65000:2 0:94 0:94 route-map calculator permit 31168 match community 2_47_188 2_94_94 set community 0:8836 ip community-list standard 2_163_188 permit 65000:2 0:163 0:188 route-map calculator permit 31169 match community 2_163_188 set community 0:30644 ip community-list standard 2_69_161 permit 65000:2 0:69 0:161 route-map calculator permit 31170 match community 2_69_161 set community 0:11109 ip community-list standard 2_202_204 permit 65000:2 0:202 0:204 route-map calculator permit 31171 match community 2_202_204 set community 0:41208 ip community-list standard 2_168_179 permit 65000:2 0:168 0:179 route-map calculator permit 31172 match community 2_168_179 set community 0:30072 ip community-list standard 2_87_226 permit 65000:2 0:87 0:226 ip community-list standard 2_113_174 permit 65000:2 0:113 0:174 route-map calculator permit 31173 match community 2_87_226 2_113_174 set community 0:19662 ip community-list standard 2_177_218 permit 65000:2 0:177 0:218 route-map calculator permit 31174 match community 2_177_218 set community 0:38586 ip community-list standard 2_61_91 permit 65000:2 0:61 0:91 route-map calculator permit 31175 match community 2_61_91 set community 0:5551 ip community-list standard 1_1_109 permit 65000:1 0:1 0:109 ip community-list standard 2_1_110 permit 65000:2 0:1 0:110 ip community-list standard 2_2_55 permit 65000:2 0:2 0:55 ip community-list standard 1_2_108 permit 65000:1 0:2 0:108 ip community-list standard 1_3_107 permit 65000:1 0:3 0:107 ip community-list standard 1_4_106 permit 65000:1 0:4 0:106 ip community-list standard 2_5_22 permit 65000:2 0:5 0:22 ip community-list standard 1_5_105 permit 65000:1 0:5 0:105 ip community-list standard 1_6_104 permit 65000:1 0:6 0:104 ip community-list standard 1_7_103 permit 65000:1 0:7 0:103 ip community-list standard 1_8_102 permit 65000:1 0:8 0:102 ip community-list standard 1_9_101 permit 65000:1 0:9 0:101 ip community-list standard 2_10_11 permit 65000:2 0:10 0:11 ip community-list standard 1_10_100 permit 65000:1 0:10 0:100 ip community-list standard 1_11_99 permit 65000:1 0:11 0:99 ip community-list standard 1_12_98 permit 65000:1 0:12 0:98 ip community-list standard 1_13_97 permit 65000:1 0:13 0:97 ip community-list standard 1_14_96 permit 65000:1 0:14 0:96 ip community-list standard 1_15_95 permit 65000:1 0:15 0:95 ip community-list standard 1_16_94 permit 65000:1 0:16 0:94 ip community-list standard 1_17_93 permit 65000:1 0:17 0:93 ip community-list standard 1_18_92 permit 65000:1 0:18 0:92 ip community-list standard 1_19_91 permit 65000:1 0:19 0:91 ip community-list standard 1_20_90 permit 65000:1 0:20 0:90 ip community-list standard 1_21_89 permit 65000:1 0:21 0:89 ip community-list standard 1_22_88 permit 65000:1 0:22 0:88 ip community-list standard 1_23_87 permit 65000:1 0:23 0:87 ip community-list standard 1_24_86 permit 65000:1 0:24 0:86 ip community-list standard 1_25_85 permit 65000:1 0:25 0:85 ip community-list standard 1_26_84 permit 65000:1 0:26 0:84 ip community-list standard 1_27_83 permit 65000:1 0:27 0:83 ip community-list standard 1_28_82 permit 65000:1 0:28 0:82 ip community-list standard 1_29_81 permit 65000:1 0:29 0:81 ip community-list standard 1_30_80 permit 65000:1 0:30 0:80 ip community-list standard 1_31_79 permit 65000:1 0:31 0:79 ip community-list standard 1_32_78 permit 65000:1 0:32 0:78 ip community-list standard 1_33_77 permit 65000:1 0:33 0:77 ip community-list standard 1_34_76 permit 65000:1 0:34 0:76 ip community-list standard 1_35_75 permit 65000:1 0:35 0:75 ip community-list standard 1_36_74 permit 65000:1 0:36 0:74 ip community-list standard 1_37_73 permit 65000:1 0:37 0:73 ip community-list standard 1_38_72 permit 65000:1 0:38 0:72 ip community-list standard 1_39_71 permit 65000:1 0:39 0:71 ip community-list standard 1_40_70 permit 65000:1 0:40 0:70 ip community-list standard 1_41_69 permit 65000:1 0:41 0:69 ip community-list standard 1_42_68 permit 65000:1 0:42 0:68 ip community-list standard 1_43_67 permit 65000:1 0:43 0:67 ip community-list standard 1_44_66 permit 65000:1 0:44 0:66 ip community-list standard 1_45_65 permit 65000:1 0:45 0:65 ip community-list standard 1_46_64 permit 65000:1 0:46 0:64 ip community-list standard 1_47_63 permit 65000:1 0:47 0:63 ip community-list standard 1_48_62 permit 65000:1 0:48 0:62 ip community-list standard 1_49_61 permit 65000:1 0:49 0:61 ip community-list standard 1_50_60 permit 65000:1 0:50 0:60 ip community-list standard 1_51_59 permit 65000:1 0:51 0:59 ip community-list standard 1_52_58 permit 65000:1 0:52 0:58 ip community-list standard 1_53_57 permit 65000:1 0:53 0:57 ip community-list standard 1_54_56 permit 65000:1 0:54 0:56 ip community-list standard 1_55_55 permit 65000:1 0:55 0:55 ip community-list expanded c110 permit 1 ^65000:4_0:110_0:1$ ip community-list expanded c110 permit 2 ^65000:3_0:111_0:1$ ip community-list expanded c110 permit 3 ^65000:3_0:112_0:2$ ip community-list expanded c110 permit 4 ^65000:3_0:113_0:3$ ip community-list expanded c110 permit 5 ^65000:3_0:114_0:4$ ip community-list expanded c110 permit 6 ^65000:3_0:115_0:5$ ip community-list expanded c110 permit 7 ^65000:3_0:116_0:6$ ip community-list expanded c110 permit 8 ^65000:3_0:117_0:7$ ip community-list expanded c110 permit 9 ^65000:3_0:118_0:8$ ip community-list expanded c110 permit 10 ^65000:3_0:119_0:9$ ip community-list expanded c110 permit 11 ^65000:3_0:120_0:10$ ip community-list expanded c110 permit 12 ^65000:3_0:121_0:11$ ip community-list expanded c110 permit 13 ^65000:3_0:122_0:12$ ip community-list expanded c110 permit 14 ^65000:3_0:123_0:13$ ip community-list expanded c110 permit 15 ^65000:3_0:124_0:14$ ip community-list expanded c110 permit 16 ^65000:3_0:125_0:15$ ip community-list expanded c110 permit 17 ^65000:3_0:126_0:16$ ip community-list expanded c110 permit 18 ^65000:3_0:127_0:17$ ip community-list expanded c110 permit 19 ^65000:3_0:128_0:18$ ip community-list expanded c110 permit 20 ^65000:3_0:129_0:19$ ip community-list expanded c110 permit 21 ^65000:3_0:130_0:20$ ip community-list expanded c110 permit 22 ^65000:3_0:131_0:21$ ip community-list expanded c110 permit 23 ^65000:3_0:132_0:22$ ip community-list expanded c110 permit 24 ^65000:3_0:133_0:23$ ip community-list expanded c110 permit 25 ^65000:3_0:134_0:24$ ip community-list expanded c110 permit 26 ^65000:3_0:135_0:25$ ip community-list expanded c110 permit 27 ^65000:3_0:136_0:26$ ip community-list expanded c110 permit 28 ^65000:3_0:137_0:27$ ip community-list expanded c110 permit 29 ^65000:3_0:138_0:28$ ip community-list expanded c110 permit 30 ^65000:3_0:139_0:29$ ip community-list expanded c110 permit 31 ^65000:3_0:140_0:30$ ip community-list expanded c110 permit 32 ^65000:3_0:141_0:31$ ip community-list expanded c110 permit 33 ^65000:3_0:142_0:32$ ip community-list expanded c110 permit 34 ^65000:3_0:143_0:33$ ip community-list expanded c110 permit 35 ^65000:3_0:144_0:34$ ip community-list expanded c110 permit 36 ^65000:3_0:145_0:35$ ip community-list expanded c110 permit 37 ^65000:3_0:146_0:36$ ip community-list expanded c110 permit 38 ^65000:3_0:147_0:37$ ip community-list expanded c110 permit 39 ^65000:3_0:148_0:38$ ip community-list expanded c110 permit 40 ^65000:3_0:149_0:39$ ip community-list expanded c110 permit 41 ^65000:3_0:150_0:40$ ip community-list expanded c110 permit 42 ^65000:3_0:151_0:41$ ip community-list expanded c110 permit 43 ^65000:3_0:152_0:42$ ip community-list expanded c110 permit 44 ^65000:3_0:153_0:43$ ip community-list expanded c110 permit 45 ^65000:3_0:154_0:44$ ip community-list expanded c110 permit 46 ^65000:3_0:155_0:45$ ip community-list expanded c110 permit 47 ^65000:3_0:156_0:46$ ip community-list expanded c110 permit 48 ^65000:3_0:157_0:47$ ip community-list expanded c110 permit 49 ^65000:3_0:158_0:48$ ip community-list expanded c110 permit 50 ^65000:3_0:159_0:49$ ip community-list expanded c110 permit 51 ^65000:3_0:160_0:50$ ip community-list expanded c110 permit 52 ^65000:3_0:161_0:51$ ip community-list expanded c110 permit 53 ^65000:3_0:162_0:52$ ip community-list expanded c110 permit 54 ^65000:3_0:163_0:53$ ip community-list expanded c110 permit 55 ^65000:3_0:164_0:54$ ip community-list expanded c110 permit 56 ^65000:3_0:165_0:55$ ip community-list expanded c110 permit 57 ^65000:3_0:166_0:56$ ip community-list expanded c110 permit 58 ^65000:3_0:167_0:57$ ip community-list expanded c110 permit 59 ^65000:3_0:168_0:58$ ip community-list expanded c110 permit 60 ^65000:3_0:169_0:59$ ip community-list expanded c110 permit 61 ^65000:3_0:170_0:60$ ip community-list expanded c110 permit 62 ^65000:3_0:171_0:61$ ip community-list expanded c110 permit 63 ^65000:3_0:172_0:62$ ip community-list expanded c110 permit 64 ^65000:3_0:173_0:63$ ip community-list expanded c110 permit 65 ^65000:3_0:174_0:64$ ip community-list expanded c110 permit 66 ^65000:3_0:175_0:65$ ip community-list expanded c110 permit 67 ^65000:3_0:176_0:66$ ip community-list expanded c110 permit 68 ^65000:3_0:177_0:67$ ip community-list expanded c110 permit 69 ^65000:3_0:178_0:68$ ip community-list expanded c110 permit 70 ^65000:3_0:179_0:69$ ip community-list expanded c110 permit 71 ^65000:3_0:180_0:70$ ip community-list expanded c110 permit 72 ^65000:3_0:181_0:71$ ip community-list expanded c110 permit 73 ^65000:3_0:182_0:72$ ip community-list expanded c110 permit 74 ^65000:3_0:183_0:73$ ip community-list expanded c110 permit 75 ^65000:3_0:184_0:74$ ip community-list expanded c110 permit 76 ^65000:3_0:185_0:75$ ip community-list expanded c110 permit 77 ^65000:3_0:186_0:76$ ip community-list expanded c110 permit 78 ^65000:3_0:187_0:77$ ip community-list expanded c110 permit 79 ^65000:3_0:188_0:78$ ip community-list expanded c110 permit 80 ^65000:3_0:189_0:79$ ip community-list expanded c110 permit 81 ^65000:3_0:190_0:80$ ip community-list expanded c110 permit 82 ^65000:3_0:191_0:81$ ip community-list expanded c110 permit 83 ^65000:3_0:192_0:82$ ip community-list expanded c110 permit 84 ^65000:3_0:193_0:83$ ip community-list expanded c110 permit 85 ^65000:3_0:194_0:84$ ip community-list expanded c110 permit 86 ^65000:3_0:195_0:85$ ip community-list expanded c110 permit 87 ^65000:3_0:196_0:86$ ip community-list expanded c110 permit 88 ^65000:3_0:197_0:87$ ip community-list expanded c110 permit 89 ^65000:3_0:198_0:88$ ip community-list expanded c110 permit 90 ^65000:3_0:199_0:89$ ip community-list expanded c110 permit 91 ^65000:3_0:200_0:90$ ip community-list expanded c110 permit 92 ^65000:3_0:201_0:91$ ip community-list expanded c110 permit 93 ^65000:3_0:202_0:92$ ip community-list expanded c110 permit 94 ^65000:3_0:203_0:93$ ip community-list expanded c110 permit 95 ^65000:3_0:204_0:94$ ip community-list expanded c110 permit 96 ^65000:3_0:205_0:95$ ip community-list expanded c110 permit 97 ^65000:3_0:206_0:96$ ip community-list expanded c110 permit 98 ^65000:3_0:207_0:97$ ip community-list expanded c110 permit 99 ^65000:3_0:208_0:98$ ip community-list expanded c110 permit 100 ^65000:3_0:209_0:99$ ip community-list expanded c110 permit 101 ^65000:3_0:210_0:100$ ip community-list expanded c110 permit 102 ^65000:3_0:211_0:101$ ip community-list expanded c110 permit 103 ^65000:3_0:212_0:102$ ip community-list expanded c110 permit 104 ^65000:3_0:213_0:103$ ip community-list expanded c110 permit 105 ^65000:3_0:214_0:104$ ip community-list expanded c110 permit 106 ^65000:3_0:215_0:105$ ip community-list expanded c110 permit 107 ^65000:3_0:216_0:106$ ip community-list expanded c110 permit 108 ^65000:3_0:217_0:107$ ip community-list expanded c110 permit 109 ^65000:3_0:218_0:108$ ip community-list expanded c110 permit 110 ^65000:3_0:219_0:109$ ip community-list expanded c110 permit 111 ^65000:4_0:220_0:2$ ip community-list expanded c110 permit 112 ^65000:3_0:220_0:110$ ip community-list expanded c110 permit 113 ^65000:4_0:221_0:2$ ip community-list expanded c110 permit 114 ^65000:3_0:221_0:111$ ip community-list expanded c110 permit 115 ^65000:3_0:222_0:112$ ip community-list expanded c110 permit 116 ^65000:3_0:223_0:113$ ip community-list expanded c110 permit 117 ^65000:3_0:224_0:114$ ip community-list expanded c110 permit 118 ^65000:3_0:225_0:115$ ip community-list expanded c110 permit 119 ^65000:3_0:226_0:116$ ip community-list expanded c110 permit 120 ^65000:3_0:227_0:117$ ip community-list expanded c110 permit 121 ^65000:3_0:228_0:118$ ip community-list expanded c110 permit 122 ^65000:3_0:229_0:119$ ip community-list expanded c110 permit 123 ^65000:3_0:230_0:120$ ip community-list expanded c110 permit 124 ^65000:3_0:231_0:121$ ip community-list expanded c110 permit 125 ^65000:3_0:232_0:122$ ip community-list expanded c110 permit 126 ^65000:3_0:233_0:123$ ip community-list expanded c110 permit 127 ^65000:3_0:234_0:124$ ip community-list expanded c110 permit 128 ^65000:3_0:235_0:125$ ip community-list expanded c110 permit 129 ^65000:3_0:236_0:126$ ip community-list expanded c110 permit 130 ^65000:3_0:237_0:127$ ip community-list expanded c110 permit 131 ^65000:3_0:238_0:128$ ip community-list expanded c110 permit 132 ^65000:3_0:239_0:129$ ip community-list expanded c110 permit 133 ^65000:3_0:240_0:130$ ip community-list expanded c110 permit 134 ^65000:3_0:241_0:131$ ip community-list expanded c110 permit 135 ^65000:3_0:242_0:132$ ip community-list expanded c110 permit 136 ^65000:3_0:243_0:133$ ip community-list expanded c110 permit 137 ^65000:3_0:244_0:134$ ip community-list expanded c110 permit 138 ^65000:3_0:245_0:135$ ip community-list expanded c110 permit 139 ^65000:3_0:246_0:136$ ip community-list expanded c110 permit 140 ^65000:3_0:247_0:137$ ip community-list expanded c110 permit 141 ^65000:3_0:248_0:138$ ip community-list expanded c110 permit 142 ^65000:3_0:249_0:139$ ip community-list expanded c110 permit 143 ^65000:3_0:250_0:140$ ip community-list expanded c110 permit 144 ^65000:3_0:251_0:141$ ip community-list expanded c110 permit 145 ^65000:3_0:252_0:142$ ip community-list expanded c110 permit 146 ^65000:3_0:253_0:143$ ip community-list expanded c110 permit 147 ^65000:3_0:254_0:144$ ip community-list expanded c110 permit 148 ^65000:3_0:255_0:145$ ip community-list expanded c110 permit 149 ^65000:3_0:256_0:146$ route-map calculator permit 31176 match community 1_1_109 2_1_110 2_2_55 1_2_108 1_3_107 set community 0:110 route-map calculator permit 31177 match community 1_4_106 2_5_22 1_5_105 1_6_104 1_7_103 set community 0:110 route-map calculator permit 31178 match community 1_8_102 1_9_101 2_10_11 1_10_100 1_11_99 set community 0:110 route-map calculator permit 31179 match community 1_12_98 1_13_97 1_14_96 1_15_95 1_16_94 set community 0:110 route-map calculator permit 31180 match community 1_17_93 1_18_92 1_19_91 1_20_90 1_21_89 set community 0:110 route-map calculator permit 31181 match community 1_22_88 1_23_87 1_24_86 1_25_85 1_26_84 set community 0:110 route-map calculator permit 31182 match community 1_27_83 1_28_82 1_29_81 1_30_80 1_31_79 set community 0:110 route-map calculator permit 31183 match community 1_32_78 1_33_77 1_34_76 1_35_75 1_36_74 set community 0:110 route-map calculator permit 31184 match community 1_37_73 1_38_72 1_39_71 1_40_70 1_41_69 set community 0:110 route-map calculator permit 31185 match community 1_42_68 1_43_67 1_44_66 1_45_65 1_46_64 set community 0:110 route-map calculator permit 31186 match community 1_47_63 1_48_62 1_49_61 1_50_60 1_51_59 set community 0:110 route-map calculator permit 31187 match community 1_52_58 1_53_57 1_54_56 1_55_55 c4_110_1 set community 0:110 route-map calculator permit 31188 match community c3_111_1 c3_112_2 c3_113_3 c3_114_4 c3_115_5 set community 0:110 route-map calculator permit 31189 match community c3_116_6 c3_117_7 c3_118_8 c3_119_9 c3_120_10 set community 0:110 route-map calculator permit 31190 match community c3_121_11 c3_122_12 c3_123_13 c3_124_14 c3_125_15 set community 0:110 route-map calculator permit 31191 match community c3_126_16 c3_127_17 c3_128_18 c3_129_19 c3_130_20 set community 0:110 route-map calculator permit 31192 match community c3_131_21 c3_132_22 c3_133_23 c3_134_24 c3_135_25 set community 0:110 route-map calculator permit 31193 match community c3_136_26 c3_137_27 c3_138_28 c3_139_29 c3_140_30 set community 0:110 route-map calculator permit 31194 match community c3_141_31 c3_142_32 c3_143_33 c3_144_34 c3_145_35 set community 0:110 route-map calculator permit 31195 match community c3_146_36 c3_147_37 c3_148_38 c3_149_39 c3_150_40 set community 0:110 route-map calculator permit 31196 match community c3_151_41 c3_152_42 c3_153_43 c3_154_44 c3_155_45 set community 0:110 route-map calculator permit 31197 match community c3_156_46 c3_157_47 c3_158_48 c3_159_49 c3_160_50 set community 0:110 route-map calculator permit 31198 match community c3_161_51 c3_162_52 c3_163_53 c3_164_54 c3_165_55 set community 0:110 route-map calculator permit 31199 match community c3_166_56 c3_167_57 c3_168_58 c3_169_59 c3_170_60 set community 0:110 route-map calculator permit 31200 match community c3_171_61 c3_172_62 c3_173_63 c3_174_64 c3_175_65 set community 0:110 route-map calculator permit 31201 match community c3_176_66 c3_177_67 c3_178_68 c3_179_69 c3_180_70 set community 0:110 route-map calculator permit 31202 match community c3_181_71 c3_182_72 c3_183_73 c3_184_74 c3_185_75 set community 0:110 route-map calculator permit 31203 match community c3_186_76 c3_187_77 c3_188_78 c3_189_79 c3_190_80 set community 0:110 route-map calculator permit 31204 match community c3_191_81 c3_192_82 c3_193_83 c3_194_84 c3_195_85 set community 0:110 route-map calculator permit 31205 match community c3_196_86 c3_197_87 c3_198_88 c3_199_89 c3_200_90 set community 0:110 route-map calculator permit 31206 match community c3_201_91 c3_202_92 c3_203_93 c3_204_94 c3_205_95 set community 0:110 route-map calculator permit 31207 match community c3_206_96 c3_207_97 c3_208_98 c3_209_99 c3_210_100 set community 0:110 route-map calculator permit 31208 match community c3_211_101 c3_212_102 c3_213_103 c3_214_104 c3_215_105 set community 0:110 route-map calculator permit 31209 match community c3_216_106 c3_217_107 c3_218_108 c3_219_109 c4_220_2 set community 0:110 route-map calculator permit 31210 match community c3_220_110 c4_221_2 c3_221_111 c3_222_112 c3_223_113 set community 0:110 route-map calculator permit 31211 match community c3_224_114 c3_225_115 c3_226_116 c3_227_117 c3_228_118 set community 0:110 route-map calculator permit 31212 match community c3_229_119 c3_230_120 c3_231_121 c3_232_122 c3_233_123 set community 0:110 route-map calculator permit 31213 match community c3_234_124 c3_235_125 c3_236_126 c3_237_127 c3_238_128 set community 0:110 route-map calculator permit 31214 match community c3_239_129 c3_240_130 c3_241_131 c3_242_132 c3_243_133 set community 0:110 route-map calculator permit 31215 match community c3_244_134 c3_245_135 c3_246_136 c3_247_137 c3_248_138 set community 0:110 route-map calculator permit 31216 match community c3_249_139 c3_250_140 c3_251_141 c3_252_142 c3_253_143 set community 0:110 route-map calculator permit 31217 match community c3_254_144 c3_255_145 c3_256_146 set community 0:110 ip community-list standard 2_176_247 permit 65000:2 0:176 0:247 ip community-list standard 2_208_209 permit 65000:2 0:208 0:209 route-map calculator permit 31218 match community 2_176_247 2_208_209 set community 0:43472 ip community-list standard 2_64_190 permit 65000:2 0:64 0:190 ip community-list standard 2_76_160 permit 65000:2 0:76 0:160 ip community-list standard 2_80_152 permit 65000:2 0:80 0:152 ip community-list standard 2_95_128 permit 65000:2 0:95 0:128 route-map calculator permit 31219 match community 2_64_190 2_76_160 2_80_152 2_95_128 set community 0:12160 ip community-list standard 2_74_254 permit 65000:2 0:74 0:254 ip community-list standard 2_127_148 permit 65000:2 0:127 0:148 route-map calculator permit 31220 match community 2_74_254 2_127_148 set community 0:18796 ip community-list standard 2_89_123 permit 65000:2 0:89 0:123 route-map calculator permit 31221 match community 2_89_123 set community 0:10947 ip community-list standard 2_130_222 permit 65000:2 0:130 0:222 ip community-list standard 2_148_195 permit 65000:2 0:148 0:195 ip community-list standard 2_156_185 permit 65000:2 0:156 0:185 route-map calculator permit 31222 match community 2_130_222 2_148_195 2_156_185 set community 0:28860 ip community-list standard 2_13_109 permit 65000:2 0:13 0:109 route-map calculator permit 31223 match community 2_13_109 set community 0:1417 ip community-list standard 2_17_166 permit 65000:2 0:17 0:166 ip community-list standard 2_34_83 permit 65000:2 0:34 0:83 route-map calculator permit 31224 match community 2_17_166 2_34_83 set community 0:2822 ip community-list standard 2_15_201 permit 65000:2 0:15 0:201 ip community-list standard 2_45_67 permit 65000:2 0:45 0:67 route-map calculator permit 31225 match community 2_15_201 2_45_67 set community 0:3015 ip community-list standard 2_101_253 permit 65000:2 0:101 0:253 route-map calculator permit 31226 match community 2_101_253 set community 0:25553 ip community-list standard 2_146_169 permit 65000:2 0:146 0:169 route-map calculator permit 31227 match community 2_146_169 set community 0:24674 ip community-list standard 2_181_256 permit 65000:2 0:181 0:256 route-map calculator permit 31228 match community 2_181_256 set community 0:46336 ip community-list standard 2_126_256 permit 65000:2 0:126 0:256 ip community-list standard 2_128_252 permit 65000:2 0:128 0:252 ip community-list standard 2_144_224 permit 65000:2 0:144 0:224 ip community-list standard 2_168_192 permit 65000:2 0:168 0:192 route-map calculator permit 31229 match community 2_126_256 2_128_252 2_144_224 2_168_192 set community 0:32256 ip community-list standard 2_92_188 permit 65000:2 0:92 0:188 ip community-list standard 2_94_184 permit 65000:2 0:94 0:184 route-map calculator permit 31230 match community 2_92_188 2_94_184 set community 0:17296 ip community-list standard 2_124_131 permit 65000:2 0:124 0:131 route-map calculator permit 31231 match community 2_124_131 set community 0:16244 ip community-list standard 2_79_220 permit 65000:2 0:79 0:220 ip community-list standard 2_110_158 permit 65000:2 0:110 0:158 route-map calculator permit 31232 match community 2_79_220 2_110_158 set community 0:17380 ip community-list standard 2_84_227 permit 65000:2 0:84 0:227 route-map calculator permit 31233 match community 2_84_227 set community 0:19068 ip community-list standard 2_27_204 permit 65000:2 0:27 0:204 ip community-list standard 2_34_162 permit 65000:2 0:34 0:162 ip community-list standard 2_36_153 permit 65000:2 0:36 0:153 ip community-list standard 2_51_108 permit 65000:2 0:51 0:108 ip community-list standard 2_54_102 permit 65000:2 0:54 0:102 ip community-list standard 2_68_81 permit 65000:2 0:68 0:81 route-map calculator permit 31234 match community 2_27_204 2_34_162 2_36_153 2_51_108 2_54_102 set community 0:5508 route-map calculator permit 31235 match community 2_68_81 set community 0:5508 ip community-list standard 2_123_147 permit 65000:2 0:123 0:147 route-map calculator permit 31236 match community 2_123_147 set community 0:18081 ip community-list standard 2_136_221 permit 65000:2 0:136 0:221 route-map calculator permit 31237 match community 2_136_221 set community 0:30056 ip community-list standard 2_169_214 permit 65000:2 0:169 0:214 route-map calculator permit 31238 match community 2_169_214 set community 0:36166 ip community-list standard 2_67_151 permit 65000:2 0:67 0:151 route-map calculator permit 31239 match community 2_67_151 set community 0:10117 ip community-list standard 2_49_91 permit 65000:2 0:49 0:91 route-map calculator permit 31240 match community 2_49_91 set community 0:4459 ip community-list standard 2_218_230 permit 65000:2 0:218 0:230 route-map calculator permit 31241 match community 2_218_230 set community 0:50140 ip community-list standard 2_38_203 permit 65000:2 0:38 0:203 ip community-list standard 2_58_133 permit 65000:2 0:58 0:133 route-map calculator permit 31242 match community 2_38_203 2_58_133 set community 0:7714 ip community-list standard 2_93_93 permit 65000:2 0:93 0:93 route-map calculator permit 31243 match community 2_93_93 set community 0:8649 ip community-list standard 2_55_211 permit 65000:2 0:55 0:211 route-map calculator permit 31244 match community 2_55_211 set community 0:11605 ip community-list standard 2_43_83 permit 65000:2 0:43 0:83 route-map calculator permit 31245 match community 2_43_83 set community 0:3569 ip community-list standard 2_62_173 permit 65000:2 0:62 0:173 route-map calculator permit 31246 match community 2_62_173 set community 0:10726 ip community-list standard 2_18_222 permit 65000:2 0:18 0:222 ip community-list standard 2_27_148 permit 65000:2 0:27 0:148 ip community-list standard 2_36_111 permit 65000:2 0:36 0:111 ip community-list standard 2_37_108 permit 65000:2 0:37 0:108 ip community-list standard 2_54_74 permit 65000:2 0:54 0:74 route-map calculator permit 31247 match community 2_18_222 2_27_148 2_36_111 2_37_108 2_54_74 set community 0:3996 ip community-list standard 2_250_256 permit 65000:2 0:250 0:256 route-map calculator permit 31248 match community 2_250_256 set community 0:64000 ip community-list standard 2_211_229 permit 65000:2 0:211 0:229 route-map calculator permit 31249 match community 2_211_229 set community 0:48319 ip community-list standard 2_87_183 permit 65000:2 0:87 0:183 route-map calculator permit 31250 match community 2_87_183 set community 0:15921 ip community-list standard 2_6_177 permit 65000:2 0:6 0:177 ip community-list standard 2_9_118 permit 65000:2 0:9 0:118 ip community-list standard 2_18_59 permit 65000:2 0:18 0:59 route-map calculator permit 31251 match community 2_6_177 2_9_118 2_18_59 set community 0:1062 ip community-list standard 2_174_211 permit 65000:2 0:174 0:211 route-map calculator permit 31252 match community 2_174_211 set community 0:36714 ip community-list standard 2_180_201 permit 65000:2 0:180 0:201 route-map calculator permit 31253 match community 2_180_201 set community 0:36180 ip community-list standard 2_39_184 permit 65000:2 0:39 0:184 ip community-list standard 2_46_156 permit 65000:2 0:46 0:156 ip community-list standard 2_52_138 permit 65000:2 0:52 0:138 ip community-list standard 2_69_104 permit 65000:2 0:69 0:104 ip community-list standard 2_78_92 permit 65000:2 0:78 0:92 route-map calculator permit 31254 match community 2_39_184 2_46_156 2_52_138 2_69_104 2_78_92 set community 0:7176 ip community-list standard 2_37_141 permit 65000:2 0:37 0:141 ip community-list standard 2_47_111 permit 65000:2 0:47 0:111 route-map calculator permit 31255 match community 2_37_141 2_47_111 set community 0:5217 ip community-list standard 2_4_215 permit 65000:2 0:4 0:215 ip community-list standard 2_5_172 permit 65000:2 0:5 0:172 ip community-list standard 2_10_86 permit 65000:2 0:10 0:86 ip community-list standard 2_20_43 permit 65000:2 0:20 0:43 route-map calculator permit 31256 match community 2_4_215 2_5_172 2_10_86 2_20_43 set community 0:860 ip community-list standard 1_1_171 permit 65000:1 0:1 0:171 ip community-list standard 2_1_172 permit 65000:2 0:1 0:172 ip community-list standard 2_2_86 permit 65000:2 0:2 0:86 ip community-list standard 1_2_170 permit 65000:1 0:2 0:170 ip community-list standard 1_3_169 permit 65000:1 0:3 0:169 ip community-list standard 2_4_43 permit 65000:2 0:4 0:43 ip community-list standard 1_4_168 permit 65000:1 0:4 0:168 ip community-list standard 1_5_167 permit 65000:1 0:5 0:167 ip community-list standard 1_6_166 permit 65000:1 0:6 0:166 ip community-list standard 1_7_165 permit 65000:1 0:7 0:165 ip community-list standard 1_8_164 permit 65000:1 0:8 0:164 ip community-list standard 1_9_163 permit 65000:1 0:9 0:163 ip community-list standard 1_10_162 permit 65000:1 0:10 0:162 ip community-list standard 1_11_161 permit 65000:1 0:11 0:161 ip community-list standard 1_12_160 permit 65000:1 0:12 0:160 ip community-list standard 1_13_159 permit 65000:1 0:13 0:159 ip community-list standard 1_14_158 permit 65000:1 0:14 0:158 ip community-list standard 1_15_157 permit 65000:1 0:15 0:157 ip community-list standard 1_16_156 permit 65000:1 0:16 0:156 ip community-list standard 1_17_155 permit 65000:1 0:17 0:155 ip community-list standard 1_18_154 permit 65000:1 0:18 0:154 ip community-list standard 1_19_153 permit 65000:1 0:19 0:153 ip community-list standard 1_20_152 permit 65000:1 0:20 0:152 ip community-list standard 1_21_151 permit 65000:1 0:21 0:151 ip community-list standard 1_22_150 permit 65000:1 0:22 0:150 ip community-list standard 1_23_149 permit 65000:1 0:23 0:149 ip community-list standard 1_24_148 permit 65000:1 0:24 0:148 ip community-list standard 1_25_147 permit 65000:1 0:25 0:147 ip community-list standard 1_26_146 permit 65000:1 0:26 0:146 ip community-list standard 1_27_145 permit 65000:1 0:27 0:145 ip community-list standard 1_28_144 permit 65000:1 0:28 0:144 ip community-list standard 1_29_143 permit 65000:1 0:29 0:143 ip community-list standard 1_30_142 permit 65000:1 0:30 0:142 ip community-list standard 1_31_141 permit 65000:1 0:31 0:141 ip community-list standard 1_32_140 permit 65000:1 0:32 0:140 ip community-list standard 1_33_139 permit 65000:1 0:33 0:139 ip community-list standard 1_34_138 permit 65000:1 0:34 0:138 ip community-list standard 1_35_137 permit 65000:1 0:35 0:137 ip community-list standard 1_36_136 permit 65000:1 0:36 0:136 ip community-list standard 1_37_135 permit 65000:1 0:37 0:135 ip community-list standard 1_38_134 permit 65000:1 0:38 0:134 ip community-list standard 1_39_133 permit 65000:1 0:39 0:133 ip community-list standard 1_40_132 permit 65000:1 0:40 0:132 ip community-list standard 1_41_131 permit 65000:1 0:41 0:131 ip community-list standard 1_42_130 permit 65000:1 0:42 0:130 ip community-list standard 1_43_129 permit 65000:1 0:43 0:129 ip community-list standard 1_44_128 permit 65000:1 0:44 0:128 ip community-list standard 1_45_127 permit 65000:1 0:45 0:127 ip community-list standard 1_46_126 permit 65000:1 0:46 0:126 ip community-list standard 1_47_125 permit 65000:1 0:47 0:125 ip community-list standard 1_48_124 permit 65000:1 0:48 0:124 ip community-list standard 1_49_123 permit 65000:1 0:49 0:123 ip community-list standard 1_50_122 permit 65000:1 0:50 0:122 ip community-list standard 1_51_121 permit 65000:1 0:51 0:121 ip community-list standard 1_52_120 permit 65000:1 0:52 0:120 ip community-list standard 1_53_119 permit 65000:1 0:53 0:119 ip community-list standard 1_54_118 permit 65000:1 0:54 0:118 ip community-list standard 1_55_117 permit 65000:1 0:55 0:117 ip community-list standard 1_56_116 permit 65000:1 0:56 0:116 ip community-list standard 1_57_115 permit 65000:1 0:57 0:115 ip community-list standard 1_58_114 permit 65000:1 0:58 0:114 ip community-list standard 1_59_113 permit 65000:1 0:59 0:113 ip community-list standard 1_60_112 permit 65000:1 0:60 0:112 ip community-list standard 1_61_111 permit 65000:1 0:61 0:111 ip community-list standard 1_62_110 permit 65000:1 0:62 0:110 ip community-list standard 1_63_109 permit 65000:1 0:63 0:109 ip community-list standard 1_64_108 permit 65000:1 0:64 0:108 ip community-list standard 1_65_107 permit 65000:1 0:65 0:107 ip community-list standard 1_66_106 permit 65000:1 0:66 0:106 ip community-list standard 1_67_105 permit 65000:1 0:67 0:105 ip community-list standard 1_68_104 permit 65000:1 0:68 0:104 ip community-list standard 1_69_103 permit 65000:1 0:69 0:103 ip community-list standard 1_70_102 permit 65000:1 0:70 0:102 ip community-list standard 1_71_101 permit 65000:1 0:71 0:101 ip community-list standard 1_72_100 permit 65000:1 0:72 0:100 ip community-list standard 1_73_99 permit 65000:1 0:73 0:99 ip community-list standard 1_74_98 permit 65000:1 0:74 0:98 ip community-list standard 1_75_97 permit 65000:1 0:75 0:97 ip community-list standard 1_76_96 permit 65000:1 0:76 0:96 ip community-list standard 1_77_95 permit 65000:1 0:77 0:95 ip community-list standard 1_78_94 permit 65000:1 0:78 0:94 ip community-list standard 1_79_93 permit 65000:1 0:79 0:93 ip community-list standard 1_80_92 permit 65000:1 0:80 0:92 ip community-list standard 1_81_91 permit 65000:1 0:81 0:91 ip community-list standard 1_82_90 permit 65000:1 0:82 0:90 ip community-list standard 1_83_89 permit 65000:1 0:83 0:89 ip community-list standard 1_84_88 permit 65000:1 0:84 0:88 ip community-list standard 1_85_87 permit 65000:1 0:85 0:87 ip community-list standard 1_86_86 permit 65000:1 0:86 0:86 ip community-list expanded c172 permit 1 ^65000:4_0:172_0:1$ ip community-list expanded c172 permit 2 ^65000:3_0:173_0:1$ ip community-list expanded c172 permit 3 ^65000:3_0:174_0:2$ ip community-list expanded c172 permit 4 ^65000:3_0:175_0:3$ ip community-list expanded c172 permit 5 ^65000:3_0:176_0:4$ ip community-list expanded c172 permit 6 ^65000:3_0:177_0:5$ ip community-list expanded c172 permit 7 ^65000:3_0:178_0:6$ ip community-list expanded c172 permit 8 ^65000:3_0:179_0:7$ ip community-list expanded c172 permit 9 ^65000:3_0:180_0:8$ ip community-list expanded c172 permit 10 ^65000:3_0:181_0:9$ ip community-list expanded c172 permit 11 ^65000:3_0:182_0:10$ ip community-list expanded c172 permit 12 ^65000:3_0:183_0:11$ ip community-list expanded c172 permit 13 ^65000:3_0:184_0:12$ ip community-list expanded c172 permit 14 ^65000:3_0:185_0:13$ ip community-list expanded c172 permit 15 ^65000:3_0:186_0:14$ ip community-list expanded c172 permit 16 ^65000:3_0:187_0:15$ ip community-list expanded c172 permit 17 ^65000:3_0:188_0:16$ ip community-list expanded c172 permit 18 ^65000:3_0:189_0:17$ ip community-list expanded c172 permit 19 ^65000:3_0:190_0:18$ ip community-list expanded c172 permit 20 ^65000:3_0:191_0:19$ ip community-list expanded c172 permit 21 ^65000:3_0:192_0:20$ ip community-list expanded c172 permit 22 ^65000:3_0:193_0:21$ ip community-list expanded c172 permit 23 ^65000:3_0:194_0:22$ ip community-list expanded c172 permit 24 ^65000:3_0:195_0:23$ ip community-list expanded c172 permit 25 ^65000:3_0:196_0:24$ ip community-list expanded c172 permit 26 ^65000:3_0:197_0:25$ ip community-list expanded c172 permit 27 ^65000:3_0:198_0:26$ ip community-list expanded c172 permit 28 ^65000:3_0:199_0:27$ ip community-list expanded c172 permit 29 ^65000:3_0:200_0:28$ ip community-list expanded c172 permit 30 ^65000:3_0:201_0:29$ ip community-list expanded c172 permit 31 ^65000:3_0:202_0:30$ ip community-list expanded c172 permit 32 ^65000:3_0:203_0:31$ ip community-list expanded c172 permit 33 ^65000:3_0:204_0:32$ ip community-list expanded c172 permit 34 ^65000:3_0:205_0:33$ ip community-list expanded c172 permit 35 ^65000:3_0:206_0:34$ ip community-list expanded c172 permit 36 ^65000:3_0:207_0:35$ ip community-list expanded c172 permit 37 ^65000:3_0:208_0:36$ ip community-list expanded c172 permit 38 ^65000:3_0:209_0:37$ ip community-list expanded c172 permit 39 ^65000:3_0:210_0:38$ ip community-list expanded c172 permit 40 ^65000:3_0:211_0:39$ ip community-list expanded c172 permit 41 ^65000:3_0:212_0:40$ ip community-list expanded c172 permit 42 ^65000:3_0:213_0:41$ ip community-list expanded c172 permit 43 ^65000:3_0:214_0:42$ ip community-list expanded c172 permit 44 ^65000:3_0:215_0:43$ ip community-list expanded c172 permit 45 ^65000:3_0:216_0:44$ ip community-list expanded c172 permit 46 ^65000:3_0:217_0:45$ ip community-list expanded c172 permit 47 ^65000:3_0:218_0:46$ ip community-list expanded c172 permit 48 ^65000:3_0:219_0:47$ ip community-list expanded c172 permit 49 ^65000:3_0:220_0:48$ ip community-list expanded c172 permit 50 ^65000:3_0:221_0:49$ ip community-list expanded c172 permit 51 ^65000:3_0:222_0:50$ ip community-list expanded c172 permit 52 ^65000:3_0:223_0:51$ ip community-list expanded c172 permit 53 ^65000:3_0:224_0:52$ ip community-list expanded c172 permit 54 ^65000:3_0:225_0:53$ ip community-list expanded c172 permit 55 ^65000:3_0:226_0:54$ ip community-list expanded c172 permit 56 ^65000:3_0:227_0:55$ ip community-list expanded c172 permit 57 ^65000:3_0:228_0:56$ ip community-list expanded c172 permit 58 ^65000:3_0:229_0:57$ ip community-list expanded c172 permit 59 ^65000:3_0:230_0:58$ ip community-list expanded c172 permit 60 ^65000:3_0:231_0:59$ ip community-list expanded c172 permit 61 ^65000:3_0:232_0:60$ ip community-list expanded c172 permit 62 ^65000:3_0:233_0:61$ ip community-list expanded c172 permit 63 ^65000:3_0:234_0:62$ ip community-list expanded c172 permit 64 ^65000:3_0:235_0:63$ ip community-list expanded c172 permit 65 ^65000:3_0:236_0:64$ ip community-list expanded c172 permit 66 ^65000:3_0:237_0:65$ ip community-list expanded c172 permit 67 ^65000:3_0:238_0:66$ ip community-list expanded c172 permit 68 ^65000:3_0:239_0:67$ ip community-list expanded c172 permit 69 ^65000:3_0:240_0:68$ ip community-list expanded c172 permit 70 ^65000:3_0:241_0:69$ ip community-list expanded c172 permit 71 ^65000:3_0:242_0:70$ ip community-list expanded c172 permit 72 ^65000:3_0:243_0:71$ ip community-list expanded c172 permit 73 ^65000:3_0:244_0:72$ ip community-list expanded c172 permit 74 ^65000:3_0:245_0:73$ ip community-list expanded c172 permit 75 ^65000:3_0:246_0:74$ ip community-list expanded c172 permit 76 ^65000:3_0:247_0:75$ ip community-list expanded c172 permit 77 ^65000:3_0:248_0:76$ ip community-list expanded c172 permit 78 ^65000:3_0:249_0:77$ ip community-list expanded c172 permit 79 ^65000:3_0:250_0:78$ ip community-list expanded c172 permit 80 ^65000:3_0:251_0:79$ ip community-list expanded c172 permit 81 ^65000:3_0:252_0:80$ ip community-list expanded c172 permit 82 ^65000:3_0:253_0:81$ ip community-list expanded c172 permit 83 ^65000:3_0:254_0:82$ ip community-list expanded c172 permit 84 ^65000:3_0:255_0:83$ ip community-list expanded c172 permit 85 ^65000:3_0:256_0:84$ route-map calculator permit 31257 match community 1_1_171 2_1_172 2_2_86 1_2_170 1_3_169 set community 0:172 route-map calculator permit 31258 match community 2_4_43 1_4_168 1_5_167 1_6_166 1_7_165 set community 0:172 route-map calculator permit 31259 match community 1_8_164 1_9_163 1_10_162 1_11_161 1_12_160 set community 0:172 route-map calculator permit 31260 match community 1_13_159 1_14_158 1_15_157 1_16_156 1_17_155 set community 0:172 route-map calculator permit 31261 match community 1_18_154 1_19_153 1_20_152 1_21_151 1_22_150 set community 0:172 route-map calculator permit 31262 match community 1_23_149 1_24_148 1_25_147 1_26_146 1_27_145 set community 0:172 route-map calculator permit 31263 match community 1_28_144 1_29_143 1_30_142 1_31_141 1_32_140 set community 0:172 route-map calculator permit 31264 match community 1_33_139 1_34_138 1_35_137 1_36_136 1_37_135 set community 0:172 route-map calculator permit 31265 match community 1_38_134 1_39_133 1_40_132 1_41_131 1_42_130 set community 0:172 route-map calculator permit 31266 match community 1_43_129 1_44_128 1_45_127 1_46_126 1_47_125 set community 0:172 route-map calculator permit 31267 match community 1_48_124 1_49_123 1_50_122 1_51_121 1_52_120 set community 0:172 route-map calculator permit 31268 match community 1_53_119 1_54_118 1_55_117 1_56_116 1_57_115 set community 0:172 route-map calculator permit 31269 match community 1_58_114 1_59_113 1_60_112 1_61_111 1_62_110 set community 0:172 route-map calculator permit 31270 match community 1_63_109 1_64_108 1_65_107 1_66_106 1_67_105 set community 0:172 route-map calculator permit 31271 match community 1_68_104 1_69_103 1_70_102 1_71_101 1_72_100 set community 0:172 route-map calculator permit 31272 match community 1_73_99 1_74_98 1_75_97 1_76_96 1_77_95 set community 0:172 route-map calculator permit 31273 match community 1_78_94 1_79_93 1_80_92 1_81_91 1_82_90 set community 0:172 route-map calculator permit 31274 match community 1_83_89 1_84_88 1_85_87 1_86_86 c4_172_1 set community 0:172 route-map calculator permit 31275 match community c3_173_1 c3_174_2 c3_175_3 c3_176_4 c3_177_5 set community 0:172 route-map calculator permit 31276 match community c3_178_6 c3_179_7 c3_180_8 c3_181_9 c3_182_10 set community 0:172 route-map calculator permit 31277 match community c3_183_11 c3_184_12 c3_185_13 c3_186_14 c3_187_15 set community 0:172 route-map calculator permit 31278 match community c3_188_16 c3_189_17 c3_190_18 c3_191_19 c3_192_20 set community 0:172 route-map calculator permit 31279 match community c3_193_21 c3_194_22 c3_195_23 c3_196_24 c3_197_25 set community 0:172 route-map calculator permit 31280 match community c3_198_26 c3_199_27 c3_200_28 c3_201_29 c3_202_30 set community 0:172 route-map calculator permit 31281 match community c3_203_31 c3_204_32 c3_205_33 c3_206_34 c3_207_35 set community 0:172 route-map calculator permit 31282 match community c3_208_36 c3_209_37 c3_210_38 c3_211_39 c3_212_40 set community 0:172 route-map calculator permit 31283 match community c3_213_41 c3_214_42 c3_215_43 c3_216_44 c3_217_45 set community 0:172 route-map calculator permit 31284 match community c3_218_46 c3_219_47 c3_220_48 c3_221_49 c3_222_50 set community 0:172 route-map calculator permit 31285 match community c3_223_51 c3_224_52 c3_225_53 c3_226_54 c3_227_55 set community 0:172 route-map calculator permit 31286 match community c3_228_56 c3_229_57 c3_230_58 c3_231_59 c3_232_60 set community 0:172 route-map calculator permit 31287 match community c3_233_61 c3_234_62 c3_235_63 c3_236_64 c3_237_65 set community 0:172 route-map calculator permit 31288 match community c3_238_66 c3_239_67 c3_240_68 c3_241_69 c3_242_70 set community 0:172 route-map calculator permit 31289 match community c3_243_71 c3_244_72 c3_245_73 c3_246_74 c3_247_75 set community 0:172 route-map calculator permit 31290 match community c3_248_76 c3_249_77 c3_250_78 c3_251_79 c3_252_80 set community 0:172 route-map calculator permit 31291 match community c3_253_81 c3_254_82 c3_255_83 c3_256_84 set community 0:172 ip community-list standard 2_18_198 permit 65000:2 0:18 0:198 ip community-list standard 2_22_162 permit 65000:2 0:22 0:162 ip community-list standard 2_27_132 permit 65000:2 0:27 0:132 ip community-list standard 2_33_108 permit 65000:2 0:33 0:108 ip community-list standard 2_36_99 permit 65000:2 0:36 0:99 ip community-list standard 2_44_81 permit 65000:2 0:44 0:81 ip community-list standard 2_54_66 permit 65000:2 0:54 0:66 route-map calculator permit 31292 match community 2_18_198 2_22_162 2_27_132 2_33_108 2_36_99 set community 0:3564 route-map calculator permit 31293 match community 2_44_81 2_54_66 set community 0:3564 ip community-list standard 2_36_228 permit 65000:2 0:36 0:228 ip community-list standard 2_38_216 permit 65000:2 0:38 0:216 ip community-list standard 2_48_171 permit 65000:2 0:48 0:171 ip community-list standard 2_54_152 permit 65000:2 0:54 0:152 ip community-list standard 2_57_144 permit 65000:2 0:57 0:144 ip community-list standard 2_72_114 permit 65000:2 0:72 0:114 ip community-list standard 2_76_108 permit 65000:2 0:76 0:108 route-map calculator permit 31294 match community 2_36_228 2_38_216 2_48_171 2_54_152 2_57_144 set community 0:8208 route-map calculator permit 31295 match community 2_72_114 2_76_108 set community 0:8208 ip community-list standard 2_139_160 permit 65000:2 0:139 0:160 route-map calculator permit 31296 match community 2_139_160 set community 0:22240 ip community-list standard 2_71_143 permit 65000:2 0:71 0:143 route-map calculator permit 31297 match community 2_71_143 set community 0:10153 ip community-list standard 2_244_256 permit 65000:2 0:244 0:256 route-map calculator permit 31298 match community 2_244_256 set community 0:62464 ip community-list standard 2_9_240 permit 65000:2 0:9 0:240 ip community-list standard 2_10_216 permit 65000:2 0:10 0:216 ip community-list standard 2_12_180 permit 65000:2 0:12 0:180 ip community-list standard 2_15_144 permit 65000:2 0:15 0:144 ip community-list standard 2_16_135 permit 65000:2 0:16 0:135 ip community-list standard 2_18_120 permit 65000:2 0:18 0:120 ip community-list standard 2_20_108 permit 65000:2 0:20 0:108 ip community-list standard 2_24_90 permit 65000:2 0:24 0:90 ip community-list standard 2_27_80 permit 65000:2 0:27 0:80 ip community-list standard 2_30_72 permit 65000:2 0:30 0:72 ip community-list standard 2_36_60 permit 65000:2 0:36 0:60 ip community-list standard 2_40_54 permit 65000:2 0:40 0:54 ip community-list standard 2_45_48 permit 65000:2 0:45 0:48 route-map calculator permit 31299 match community 2_9_240 2_10_216 2_12_180 2_15_144 2_16_135 set community 0:2160 route-map calculator permit 31300 match community 2_18_120 2_20_108 2_24_90 2_27_80 2_30_72 set community 0:2160 route-map calculator permit 31301 match community 2_36_60 2_40_54 2_45_48 set community 0:2160 ip community-list standard 2_213_231 permit 65000:2 0:213 0:231 route-map calculator permit 31302 match community 2_213_231 set community 0:49203 ip community-list standard 2_194_241 permit 65000:2 0:194 0:241 route-map calculator permit 31303 match community 2_194_241 set community 0:46754 ip community-list standard 2_84_253 permit 65000:2 0:84 0:253 ip community-list standard 2_92_231 permit 65000:2 0:92 0:231 ip community-list standard 2_132_161 permit 65000:2 0:132 0:161 ip community-list standard 2_138_154 permit 65000:2 0:138 0:154 route-map calculator permit 31304 match community 2_84_253 2_92_231 2_132_161 2_138_154 set community 0:21252 ip community-list standard 2_53_197 permit 65000:2 0:53 0:197 route-map calculator permit 31305 match community 2_53_197 set community 0:10441 ip community-list standard 2_207_250 permit 65000:2 0:207 0:250 ip community-list standard 2_225_230 permit 65000:2 0:225 0:230 route-map calculator permit 31306 match community 2_207_250 2_225_230 set community 0:51750 ip community-list standard 2_236_244 permit 65000:2 0:236 0:244 route-map calculator permit 31307 match community 2_236_244 set community 0:57584 ip community-list standard 2_46_247 permit 65000:2 0:46 0:247 route-map calculator permit 31308 match community 2_46_247 set community 0:11362 ip community-list standard 2_39_225 permit 65000:2 0:39 0:225 ip community-list standard 2_45_195 permit 65000:2 0:45 0:195 ip community-list standard 2_65_135 permit 65000:2 0:65 0:135 ip community-list standard 2_75_117 permit 65000:2 0:75 0:117 route-map calculator permit 31309 match community 2_39_225 2_45_195 2_65_135 2_75_117 set community 0:8775 ip community-list standard 2_72_254 permit 65000:2 0:72 0:254 ip community-list standard 2_127_144 permit 65000:2 0:127 0:144 route-map calculator permit 31310 match community 2_72_254 2_127_144 set community 0:18288 ip community-list standard 2_105_149 permit 65000:2 0:105 0:149 route-map calculator permit 31311 match community 2_105_149 set community 0:15645 ip community-list standard 2_202_214 permit 65000:2 0:202 0:214 route-map calculator permit 31312 match community 2_202_214 set community 0:43228 ip community-list standard 2_86_189 permit 65000:2 0:86 0:189 ip community-list standard 2_126_129 permit 65000:2 0:126 0:129 route-map calculator permit 31313 match community 2_86_189 2_126_129 set community 0:16254 ip community-list standard 2_79_247 permit 65000:2 0:79 0:247 route-map calculator permit 31314 match community 2_79_247 set community 0:19513 ip community-list standard 2_9_236 permit 65000:2 0:9 0:236 ip community-list standard 2_12_177 permit 65000:2 0:12 0:177 ip community-list standard 2_18_118 permit 65000:2 0:18 0:118 ip community-list standard 2_36_59 permit 65000:2 0:36 0:59 route-map calculator permit 31315 match community 2_9_236 2_12_177 2_18_118 2_36_59 set community 0:2124 ip community-list standard 2_83_157 permit 65000:2 0:83 0:157 route-map calculator permit 31316 match community 2_83_157 set community 0:13031 ip community-list standard 2_115_201 permit 65000:2 0:115 0:201 route-map calculator permit 31317 match community 2_115_201 set community 0:23115 ip community-list standard 2_4_234 permit 65000:2 0:4 0:234 ip community-list standard 2_6_156 permit 65000:2 0:6 0:156 ip community-list standard 2_8_117 permit 65000:2 0:8 0:117 ip community-list standard 2_9_104 permit 65000:2 0:9 0:104 ip community-list standard 2_12_78 permit 65000:2 0:12 0:78 ip community-list standard 2_13_72 permit 65000:2 0:13 0:72 ip community-list standard 2_18_52 permit 65000:2 0:18 0:52 ip community-list standard 2_24_39 permit 65000:2 0:24 0:39 ip community-list standard 2_26_36 permit 65000:2 0:26 0:36 route-map calculator permit 31318 match community 2_4_234 2_6_156 2_8_117 2_9_104 2_12_78 set community 0:936 route-map calculator permit 31319 match community 2_13_72 2_18_52 2_24_39 2_26_36 set community 0:936 ip community-list standard 2_197_231 permit 65000:2 0:197 0:231 route-map calculator permit 31320 match community 2_197_231 set community 0:45507 ip community-list standard 2_208_235 permit 65000:2 0:208 0:235 route-map calculator permit 31321 match community 2_208_235 set community 0:48880 ip community-list standard 2_234_255 permit 65000:2 0:234 0:255 route-map calculator permit 31322 match community 2_234_255 set community 0:59670 ip community-list standard 2_87_99 permit 65000:2 0:87 0:99 route-map calculator permit 31323 match community 2_87_99 set community 0:8613 ip community-list standard 2_47_157 permit 65000:2 0:47 0:157 route-map calculator permit 31324 match community 2_47_157 set community 0:7379 ip community-list standard 2_23_73 permit 65000:2 0:23 0:73 route-map calculator permit 31325 match community 2_23_73 set community 0:1679 ip community-list standard 2_107_163 permit 65000:2 0:107 0:163 route-map calculator permit 31326 match community 2_107_163 set community 0:17441 ip community-list standard 2_161_234 permit 65000:2 0:161 0:234 ip community-list standard 2_182_207 permit 65000:2 0:182 0:207 route-map calculator permit 31327 match community 2_161_234 2_182_207 set community 0:37674 ip community-list standard 2_53_226 permit 65000:2 0:53 0:226 ip community-list standard 2_106_113 permit 65000:2 0:106 0:113 route-map calculator permit 31328 match community 2_53_226 2_106_113 set community 0:11978 ip community-list standard 2_137_211 permit 65000:2 0:137 0:211 route-map calculator permit 31329 match community 2_137_211 set community 0:28907 ip community-list standard 2_8_245 permit 65000:2 0:8 0:245 ip community-list standard 2_10_196 permit 65000:2 0:10 0:196 ip community-list standard 2_14_140 permit 65000:2 0:14 0:140 ip community-list standard 2_20_98 permit 65000:2 0:20 0:98 ip community-list standard 2_28_70 permit 65000:2 0:28 0:70 ip community-list standard 2_35_56 permit 65000:2 0:35 0:56 ip community-list standard 2_40_49 permit 65000:2 0:40 0:49 route-map calculator permit 31330 match community 2_8_245 2_10_196 2_14_140 2_20_98 2_28_70 set community 0:1960 route-map calculator permit 31331 match community 2_35_56 2_40_49 set community 0:1960 ip community-list standard 2_34_227 permit 65000:2 0:34 0:227 route-map calculator permit 31332 match community 2_34_227 set community 0:7718 ip community-list standard 2_50_178 permit 65000:2 0:50 0:178 ip community-list standard 2_89_100 permit 65000:2 0:89 0:100 route-map calculator permit 31333 match community 2_50_178 2_89_100 set community 0:8900 ip community-list standard 2_52_218 permit 65000:2 0:52 0:218 ip community-list standard 2_104_109 permit 65000:2 0:104 0:109 route-map calculator permit 31334 match community 2_52_218 2_104_109 set community 0:11336 ip community-list standard 2_241_247 permit 65000:2 0:241 0:247 route-map calculator permit 31335 match community 2_241_247 set community 0:59527 ip community-list standard 2_107_250 permit 65000:2 0:107 0:250 ip community-list standard 2_125_214 permit 65000:2 0:125 0:214 route-map calculator permit 31336 match community 2_107_250 2_125_214 set community 0:26750 ip community-list standard 2_63_253 permit 65000:2 0:63 0:253 ip community-list standard 2_69_231 permit 65000:2 0:69 0:231 ip community-list standard 2_77_207 permit 65000:2 0:77 0:207 ip community-list standard 2_99_161 permit 65000:2 0:99 0:161 route-map calculator permit 31337 match community 2_63_253 2_69_231 2_77_207 2_99_161 set community 0:15939 ip community-list standard 2_198_201 permit 65000:2 0:198 0:201 route-map calculator permit 31338 match community 2_198_201 set community 0:39798 ip community-list standard 2_144_253 permit 65000:2 0:144 0:253 ip community-list standard 2_176_207 permit 65000:2 0:176 0:207 ip community-list standard 2_184_198 permit 65000:2 0:184 0:198 route-map calculator permit 31339 match community 2_144_253 2_176_207 2_184_198 set community 0:36432 ip community-list standard 2_134_235 permit 65000:2 0:134 0:235 route-map calculator permit 31340 match community 2_134_235 set community 0:31490 ip community-list standard 2_153_226 permit 65000:2 0:153 0:226 route-map calculator permit 31341 match community 2_153_226 set community 0:34578 ip community-list standard 2_63_191 permit 65000:2 0:63 0:191 route-map calculator permit 31342 match community 2_63_191 set community 0:12033 ip community-list standard 2_26_231 permit 65000:2 0:26 0:231 ip community-list standard 2_33_182 permit 65000:2 0:33 0:182 ip community-list standard 2_39_154 permit 65000:2 0:39 0:154 ip community-list standard 2_42_143 permit 65000:2 0:42 0:143 ip community-list standard 2_66_91 permit 65000:2 0:66 0:91 ip community-list standard 2_77_78 permit 65000:2 0:77 0:78 route-map calculator permit 31343 match community 2_26_231 2_33_182 2_39_154 2_42_143 2_66_91 set community 0:6006 route-map calculator permit 31344 match community 2_77_78 set community 0:6006 ip community-list standard 2_223_252 permit 65000:2 0:223 0:252 route-map calculator permit 31345 match community 2_223_252 set community 0:56196 ip community-list standard 2_113_147 permit 65000:2 0:113 0:147 route-map calculator permit 31346 match community 2_113_147 set community 0:16611 ip community-list standard 2_160_226 permit 65000:2 0:160 0:226 route-map calculator permit 31347 match community 2_160_226 set community 0:36160 ip community-list standard 2_194_195 permit 65000:2 0:194 0:195 route-map calculator permit 31348 match community 2_194_195 set community 0:37830 ip community-list standard 2_182_217 permit 65000:2 0:182 0:217 route-map calculator permit 31349 match community 2_182_217 set community 0:39494 ip community-list standard 2_41_191 permit 65000:2 0:41 0:191 route-map calculator permit 31350 match community 2_41_191 set community 0:7831 ip community-list standard 2_151_176 permit 65000:2 0:151 0:176 route-map calculator permit 31351 match community 2_151_176 set community 0:26576 ip community-list standard 2_7_71 permit 65000:2 0:7 0:71 ip community-list standard 1_241_256 permit 65000:1 0:241 0:256 ip community-list standard 1_242_255 permit 65000:1 0:242 0:255 ip community-list standard 1_243_254 permit 65000:1 0:243 0:254 ip community-list standard 1_244_253 permit 65000:1 0:244 0:253 ip community-list standard 1_245_252 permit 65000:1 0:245 0:252 ip community-list standard 1_246_251 permit 65000:1 0:246 0:251 ip community-list standard 1_247_250 permit 65000:1 0:247 0:250 ip community-list standard 1_248_249 permit 65000:1 0:248 0:249 route-map calculator permit 31352 match community 2_7_71 1_241_256 1_242_255 1_243_254 1_244_253 set community 0:497 route-map calculator permit 31353 match community 1_245_252 1_246_251 1_247_250 1_248_249 set community 0:497 ip community-list standard 2_169_244 permit 65000:2 0:169 0:244 route-map calculator permit 31354 match community 2_169_244 set community 0:41236 ip community-list standard 2_161_237 permit 65000:2 0:161 0:237 route-map calculator permit 31355 match community 2_161_237 set community 0:38157 ip community-list standard 2_78_249 permit 65000:2 0:78 0:249 ip community-list standard 2_83_234 permit 65000:2 0:83 0:234 ip community-list standard 2_117_166 permit 65000:2 0:117 0:166 route-map calculator permit 31356 match community 2_78_249 2_83_234 2_117_166 set community 0:19422 ip community-list standard 2_194_196 permit 65000:2 0:194 0:196 route-map calculator permit 31357 match community 2_194_196 set community 0:38024 ip community-list standard 2_25_215 permit 65000:2 0:25 0:215 ip community-list standard 2_43_125 permit 65000:2 0:43 0:125 route-map calculator permit 31358 match community 2_25_215 2_43_125 set community 0:5375 ip community-list standard 2_69_225 permit 65000:2 0:69 0:225 ip community-list standard 2_75_207 permit 65000:2 0:75 0:207 ip community-list standard 2_115_135 permit 65000:2 0:115 0:135 route-map calculator permit 31359 match community 2_69_225 2_75_207 2_115_135 set community 0:15525 ip community-list standard 2_165_245 permit 65000:2 0:165 0:245 ip community-list standard 2_175_231 permit 65000:2 0:175 0:231 route-map calculator permit 31360 match community 2_165_245 2_175_231 set community 0:40425 ip community-list standard 2_217_223 permit 65000:2 0:217 0:223 route-map calculator permit 31361 match community 2_217_223 set community 0:48391 ip community-list standard 2_163_206 permit 65000:2 0:163 0:206 route-map calculator permit 31362 match community 2_163_206 set community 0:33578 ip community-list standard 2_71_154 permit 65000:2 0:71 0:154 ip community-list standard 2_77_142 permit 65000:2 0:77 0:142 route-map calculator permit 31363 match community 2_71_154 2_77_142 set community 0:10934 ip community-list standard 2_92_235 permit 65000:2 0:92 0:235 ip community-list standard 2_94_230 permit 65000:2 0:94 0:230 ip community-list standard 2_115_188 permit 65000:2 0:115 0:188 route-map calculator permit 31364 match community 2_92_235 2_94_230 2_115_188 set community 0:21620 ip community-list standard 2_117_197 permit 65000:2 0:117 0:197 route-map calculator permit 31365 match community 2_117_197 set community 0:23049 ip community-list standard 2_224_231 permit 65000:2 0:224 0:231 route-map calculator permit 31366 match community 2_224_231 set community 0:51744 ip community-list standard 2_43_191 permit 65000:2 0:43 0:191 route-map calculator permit 31367 match community 2_43_191 set community 0:8213 ip community-list standard 2_193_234 permit 65000:2 0:193 0:234 route-map calculator permit 31368 match community 2_193_234 set community 0:45162 ip community-list standard 2_165_209 permit 65000:2 0:165 0:209 route-map calculator permit 31369 match community 2_165_209 set community 0:34485 ip community-list standard 2_121_179 permit 65000:2 0:121 0:179 route-map calculator permit 31370 match community 2_121_179 set community 0:21659 ip community-list standard 1_1_41 permit 65000:1 0:1 0:41 ip community-list standard 2_1_42 permit 65000:2 0:1 0:42 ip community-list standard 2_2_21 permit 65000:2 0:2 0:21 ip community-list standard 1_2_40 permit 65000:1 0:2 0:40 ip community-list standard 2_3_14 permit 65000:2 0:3 0:14 ip community-list standard 1_3_39 permit 65000:1 0:3 0:39 ip community-list standard 1_4_38 permit 65000:1 0:4 0:38 ip community-list standard 1_5_37 permit 65000:1 0:5 0:37 ip community-list standard 2_6_7 permit 65000:2 0:6 0:7 ip community-list standard 1_6_36 permit 65000:1 0:6 0:36 ip community-list standard 1_7_35 permit 65000:1 0:7 0:35 ip community-list standard 1_8_34 permit 65000:1 0:8 0:34 ip community-list standard 1_9_33 permit 65000:1 0:9 0:33 ip community-list standard 1_10_32 permit 65000:1 0:10 0:32 ip community-list standard 1_11_31 permit 65000:1 0:11 0:31 ip community-list standard 1_12_30 permit 65000:1 0:12 0:30 ip community-list standard 1_13_29 permit 65000:1 0:13 0:29 ip community-list standard 1_14_28 permit 65000:1 0:14 0:28 ip community-list standard 1_15_27 permit 65000:1 0:15 0:27 ip community-list standard 1_16_26 permit 65000:1 0:16 0:26 ip community-list standard 1_17_25 permit 65000:1 0:17 0:25 ip community-list standard 1_18_24 permit 65000:1 0:18 0:24 ip community-list standard 1_19_23 permit 65000:1 0:19 0:23 ip community-list standard 1_20_22 permit 65000:1 0:20 0:22 ip community-list standard 1_21_21 permit 65000:1 0:21 0:21 ip community-list expanded c42 permit 1 ^65000:4_0:42_0:1$ ip community-list expanded c42 permit 2 ^65000:3_0:43_0:1$ ip community-list expanded c42 permit 3 ^65000:3_0:44_0:2$ ip community-list expanded c42 permit 4 ^65000:3_0:45_0:3$ ip community-list expanded c42 permit 5 ^65000:3_0:46_0:4$ ip community-list expanded c42 permit 6 ^65000:3_0:47_0:5$ ip community-list expanded c42 permit 7 ^65000:3_0:48_0:6$ ip community-list expanded c42 permit 8 ^65000:3_0:49_0:7$ ip community-list expanded c42 permit 9 ^65000:3_0:50_0:8$ ip community-list expanded c42 permit 10 ^65000:3_0:51_0:9$ ip community-list expanded c42 permit 11 ^65000:3_0:52_0:10$ ip community-list expanded c42 permit 12 ^65000:3_0:53_0:11$ ip community-list expanded c42 permit 13 ^65000:3_0:54_0:12$ ip community-list expanded c42 permit 14 ^65000:3_0:55_0:13$ ip community-list expanded c42 permit 15 ^65000:3_0:56_0:14$ ip community-list expanded c42 permit 16 ^65000:3_0:57_0:15$ ip community-list expanded c42 permit 17 ^65000:3_0:58_0:16$ ip community-list expanded c42 permit 18 ^65000:3_0:59_0:17$ ip community-list expanded c42 permit 19 ^65000:3_0:60_0:18$ ip community-list expanded c42 permit 20 ^65000:3_0:61_0:19$ ip community-list expanded c42 permit 21 ^65000:3_0:62_0:20$ ip community-list expanded c42 permit 22 ^65000:3_0:63_0:21$ ip community-list expanded c42 permit 23 ^65000:3_0:64_0:22$ ip community-list expanded c42 permit 24 ^65000:3_0:65_0:23$ ip community-list expanded c42 permit 25 ^65000:3_0:66_0:24$ ip community-list expanded c42 permit 26 ^65000:3_0:67_0:25$ ip community-list expanded c42 permit 27 ^65000:3_0:68_0:26$ ip community-list expanded c42 permit 28 ^65000:3_0:69_0:27$ ip community-list expanded c42 permit 29 ^65000:3_0:70_0:28$ ip community-list expanded c42 permit 30 ^65000:3_0:71_0:29$ ip community-list expanded c42 permit 31 ^65000:3_0:72_0:30$ ip community-list expanded c42 permit 32 ^65000:3_0:73_0:31$ ip community-list expanded c42 permit 33 ^65000:3_0:74_0:32$ ip community-list expanded c42 permit 34 ^65000:3_0:75_0:33$ ip community-list expanded c42 permit 35 ^65000:3_0:76_0:34$ ip community-list expanded c42 permit 36 ^65000:3_0:77_0:35$ ip community-list expanded c42 permit 37 ^65000:3_0:78_0:36$ ip community-list expanded c42 permit 38 ^65000:3_0:79_0:37$ ip community-list expanded c42 permit 39 ^65000:3_0:80_0:38$ ip community-list expanded c42 permit 40 ^65000:3_0:81_0:39$ ip community-list expanded c42 permit 41 ^65000:3_0:82_0:40$ ip community-list expanded c42 permit 42 ^65000:3_0:83_0:41$ ip community-list expanded c42 permit 43 ^65000:4_0:84_0:2$ ip community-list expanded c42 permit 44 ^65000:3_0:84_0:42$ ip community-list expanded c42 permit 45 ^65000:4_0:85_0:2$ ip community-list expanded c42 permit 46 ^65000:3_0:85_0:43$ ip community-list expanded c42 permit 47 ^65000:3_0:86_0:44$ ip community-list expanded c42 permit 48 ^65000:3_0:87_0:45$ ip community-list expanded c42 permit 49 ^65000:3_0:88_0:46$ ip community-list expanded c42 permit 50 ^65000:3_0:89_0:47$ ip community-list expanded c42 permit 51 ^65000:3_0:90_0:48$ ip community-list expanded c42 permit 52 ^65000:3_0:91_0:49$ ip community-list expanded c42 permit 53 ^65000:3_0:92_0:50$ ip community-list expanded c42 permit 54 ^65000:3_0:93_0:51$ ip community-list expanded c42 permit 55 ^65000:3_0:94_0:52$ ip community-list expanded c42 permit 56 ^65000:3_0:95_0:53$ ip community-list expanded c42 permit 57 ^65000:3_0:96_0:54$ ip community-list expanded c42 permit 58 ^65000:3_0:97_0:55$ ip community-list expanded c42 permit 59 ^65000:3_0:98_0:56$ ip community-list expanded c42 permit 60 ^65000:3_0:99_0:57$ ip community-list expanded c42 permit 61 ^65000:3_0:100_0:58$ ip community-list expanded c42 permit 62 ^65000:3_0:101_0:59$ ip community-list expanded c42 permit 63 ^65000:3_0:102_0:60$ ip community-list expanded c42 permit 64 ^65000:3_0:103_0:61$ ip community-list expanded c42 permit 65 ^65000:3_0:104_0:62$ ip community-list expanded c42 permit 66 ^65000:3_0:105_0:63$ ip community-list expanded c42 permit 67 ^65000:3_0:106_0:64$ ip community-list expanded c42 permit 68 ^65000:3_0:107_0:65$ ip community-list expanded c42 permit 69 ^65000:3_0:108_0:66$ ip community-list expanded c42 permit 70 ^65000:3_0:109_0:67$ ip community-list expanded c42 permit 71 ^65000:3_0:110_0:68$ ip community-list expanded c42 permit 72 ^65000:3_0:111_0:69$ ip community-list expanded c42 permit 73 ^65000:3_0:112_0:70$ ip community-list expanded c42 permit 74 ^65000:3_0:113_0:71$ ip community-list expanded c42 permit 75 ^65000:3_0:114_0:72$ ip community-list expanded c42 permit 76 ^65000:3_0:115_0:73$ ip community-list expanded c42 permit 77 ^65000:3_0:116_0:74$ ip community-list expanded c42 permit 78 ^65000:3_0:117_0:75$ ip community-list expanded c42 permit 79 ^65000:3_0:118_0:76$ ip community-list expanded c42 permit 80 ^65000:3_0:119_0:77$ ip community-list expanded c42 permit 81 ^65000:3_0:120_0:78$ ip community-list expanded c42 permit 82 ^65000:3_0:121_0:79$ ip community-list expanded c42 permit 83 ^65000:3_0:122_0:80$ ip community-list expanded c42 permit 84 ^65000:3_0:123_0:81$ ip community-list expanded c42 permit 85 ^65000:3_0:124_0:82$ ip community-list expanded c42 permit 86 ^65000:3_0:125_0:83$ ip community-list expanded c42 permit 87 ^65000:4_0:126_0:3$ ip community-list expanded c42 permit 88 ^65000:3_0:126_0:84$ ip community-list expanded c42 permit 89 ^65000:4_0:127_0:3$ ip community-list expanded c42 permit 90 ^65000:3_0:127_0:85$ ip community-list expanded c42 permit 91 ^65000:4_0:128_0:3$ ip community-list expanded c42 permit 92 ^65000:3_0:128_0:86$ ip community-list expanded c42 permit 93 ^65000:3_0:129_0:87$ ip community-list expanded c42 permit 94 ^65000:3_0:130_0:88$ ip community-list expanded c42 permit 95 ^65000:3_0:131_0:89$ ip community-list expanded c42 permit 96 ^65000:3_0:132_0:90$ ip community-list expanded c42 permit 97 ^65000:3_0:133_0:91$ ip community-list expanded c42 permit 98 ^65000:3_0:134_0:92$ ip community-list expanded c42 permit 99 ^65000:3_0:135_0:93$ ip community-list expanded c42 permit 100 ^65000:3_0:136_0:94$ ip community-list expanded c42 permit 101 ^65000:3_0:137_0:95$ ip community-list expanded c42 permit 102 ^65000:3_0:138_0:96$ ip community-list expanded c42 permit 103 ^65000:3_0:139_0:97$ ip community-list expanded c42 permit 104 ^65000:3_0:140_0:98$ ip community-list expanded c42 permit 105 ^65000:3_0:141_0:99$ ip community-list expanded c42 permit 106 ^65000:3_0:142_0:100$ ip community-list expanded c42 permit 107 ^65000:3_0:143_0:101$ ip community-list expanded c42 permit 108 ^65000:3_0:144_0:102$ ip community-list expanded c42 permit 109 ^65000:3_0:145_0:103$ ip community-list expanded c42 permit 110 ^65000:3_0:146_0:104$ ip community-list expanded c42 permit 111 ^65000:3_0:147_0:105$ ip community-list expanded c42 permit 112 ^65000:3_0:148_0:106$ ip community-list expanded c42 permit 113 ^65000:3_0:149_0:107$ ip community-list expanded c42 permit 114 ^65000:3_0:150_0:108$ ip community-list expanded c42 permit 115 ^65000:3_0:151_0:109$ ip community-list expanded c42 permit 116 ^65000:3_0:152_0:110$ ip community-list expanded c42 permit 117 ^65000:3_0:153_0:111$ ip community-list expanded c42 permit 118 ^65000:3_0:154_0:112$ ip community-list expanded c42 permit 119 ^65000:3_0:155_0:113$ ip community-list expanded c42 permit 120 ^65000:3_0:156_0:114$ ip community-list expanded c42 permit 121 ^65000:3_0:157_0:115$ ip community-list expanded c42 permit 122 ^65000:3_0:158_0:116$ ip community-list expanded c42 permit 123 ^65000:3_0:159_0:117$ ip community-list expanded c42 permit 124 ^65000:3_0:160_0:118$ ip community-list expanded c42 permit 125 ^65000:3_0:161_0:119$ ip community-list expanded c42 permit 126 ^65000:3_0:162_0:120$ ip community-list expanded c42 permit 127 ^65000:3_0:163_0:121$ ip community-list expanded c42 permit 128 ^65000:3_0:164_0:122$ ip community-list expanded c42 permit 129 ^65000:3_0:165_0:123$ ip community-list expanded c42 permit 130 ^65000:3_0:166_0:124$ ip community-list expanded c42 permit 131 ^65000:3_0:167_0:125$ ip community-list expanded c42 permit 132 ^65000:4_0:168_0:4$ ip community-list expanded c42 permit 133 ^65000:3_0:168_0:126$ ip community-list expanded c42 permit 134 ^65000:4_0:169_0:4$ ip community-list expanded c42 permit 135 ^65000:3_0:169_0:127$ ip community-list expanded c42 permit 136 ^65000:4_0:170_0:4$ ip community-list expanded c42 permit 137 ^65000:3_0:170_0:128$ ip community-list expanded c42 permit 138 ^65000:4_0:171_0:4$ ip community-list expanded c42 permit 139 ^65000:3_0:171_0:129$ ip community-list expanded c42 permit 140 ^65000:3_0:172_0:130$ ip community-list expanded c42 permit 141 ^65000:3_0:173_0:131$ ip community-list expanded c42 permit 142 ^65000:3_0:174_0:132$ ip community-list expanded c42 permit 143 ^65000:3_0:175_0:133$ ip community-list expanded c42 permit 144 ^65000:3_0:176_0:134$ ip community-list expanded c42 permit 145 ^65000:3_0:177_0:135$ ip community-list expanded c42 permit 146 ^65000:3_0:178_0:136$ ip community-list expanded c42 permit 147 ^65000:3_0:179_0:137$ ip community-list expanded c42 permit 148 ^65000:3_0:180_0:138$ ip community-list expanded c42 permit 149 ^65000:3_0:181_0:139$ ip community-list expanded c42 permit 150 ^65000:3_0:182_0:140$ ip community-list expanded c42 permit 151 ^65000:3_0:183_0:141$ ip community-list expanded c42 permit 152 ^65000:3_0:184_0:142$ ip community-list expanded c42 permit 153 ^65000:3_0:185_0:143$ ip community-list expanded c42 permit 154 ^65000:3_0:186_0:144$ ip community-list expanded c42 permit 155 ^65000:3_0:187_0:145$ ip community-list expanded c42 permit 156 ^65000:3_0:188_0:146$ ip community-list expanded c42 permit 157 ^65000:3_0:189_0:147$ ip community-list expanded c42 permit 158 ^65000:3_0:190_0:148$ ip community-list expanded c42 permit 159 ^65000:3_0:191_0:149$ ip community-list expanded c42 permit 160 ^65000:3_0:192_0:150$ ip community-list expanded c42 permit 161 ^65000:3_0:193_0:151$ ip community-list expanded c42 permit 162 ^65000:3_0:194_0:152$ ip community-list expanded c42 permit 163 ^65000:3_0:195_0:153$ ip community-list expanded c42 permit 164 ^65000:3_0:196_0:154$ ip community-list expanded c42 permit 165 ^65000:3_0:197_0:155$ ip community-list expanded c42 permit 166 ^65000:3_0:198_0:156$ ip community-list expanded c42 permit 167 ^65000:3_0:199_0:157$ ip community-list expanded c42 permit 168 ^65000:3_0:200_0:158$ ip community-list expanded c42 permit 169 ^65000:3_0:201_0:159$ ip community-list expanded c42 permit 170 ^65000:3_0:202_0:160$ ip community-list expanded c42 permit 171 ^65000:3_0:203_0:161$ ip community-list expanded c42 permit 172 ^65000:3_0:204_0:162$ ip community-list expanded c42 permit 173 ^65000:3_0:205_0:163$ ip community-list expanded c42 permit 174 ^65000:3_0:206_0:164$ ip community-list expanded c42 permit 175 ^65000:3_0:207_0:165$ ip community-list expanded c42 permit 176 ^65000:3_0:208_0:166$ ip community-list expanded c42 permit 177 ^65000:3_0:209_0:167$ ip community-list expanded c42 permit 178 ^65000:4_0:210_0:5$ ip community-list expanded c42 permit 179 ^65000:3_0:210_0:168$ ip community-list expanded c42 permit 180 ^65000:4_0:211_0:5$ ip community-list expanded c42 permit 181 ^65000:3_0:211_0:169$ ip community-list expanded c42 permit 182 ^65000:4_0:212_0:5$ ip community-list expanded c42 permit 183 ^65000:3_0:212_0:170$ ip community-list expanded c42 permit 184 ^65000:4_0:213_0:5$ ip community-list expanded c42 permit 185 ^65000:3_0:213_0:171$ ip community-list expanded c42 permit 186 ^65000:4_0:214_0:5$ ip community-list expanded c42 permit 187 ^65000:3_0:214_0:172$ ip community-list expanded c42 permit 188 ^65000:3_0:215_0:173$ ip community-list expanded c42 permit 189 ^65000:3_0:216_0:174$ ip community-list expanded c42 permit 190 ^65000:3_0:217_0:175$ ip community-list expanded c42 permit 191 ^65000:3_0:218_0:176$ ip community-list expanded c42 permit 192 ^65000:3_0:219_0:177$ ip community-list expanded c42 permit 193 ^65000:3_0:220_0:178$ ip community-list expanded c42 permit 194 ^65000:3_0:221_0:179$ ip community-list expanded c42 permit 195 ^65000:3_0:222_0:180$ ip community-list expanded c42 permit 196 ^65000:3_0:223_0:181$ ip community-list expanded c42 permit 197 ^65000:3_0:224_0:182$ ip community-list expanded c42 permit 198 ^65000:3_0:225_0:183$ ip community-list expanded c42 permit 199 ^65000:3_0:226_0:184$ ip community-list expanded c42 permit 200 ^65000:3_0:227_0:185$ ip community-list expanded c42 permit 201 ^65000:3_0:228_0:186$ ip community-list expanded c42 permit 202 ^65000:3_0:229_0:187$ ip community-list expanded c42 permit 203 ^65000:3_0:230_0:188$ ip community-list expanded c42 permit 204 ^65000:3_0:231_0:189$ ip community-list expanded c42 permit 205 ^65000:3_0:232_0:190$ ip community-list expanded c42 permit 206 ^65000:3_0:233_0:191$ ip community-list expanded c42 permit 207 ^65000:3_0:234_0:192$ ip community-list expanded c42 permit 208 ^65000:3_0:235_0:193$ ip community-list expanded c42 permit 209 ^65000:3_0:236_0:194$ ip community-list expanded c42 permit 210 ^65000:3_0:237_0:195$ ip community-list expanded c42 permit 211 ^65000:3_0:238_0:196$ ip community-list expanded c42 permit 212 ^65000:3_0:239_0:197$ ip community-list expanded c42 permit 213 ^65000:3_0:240_0:198$ ip community-list expanded c42 permit 214 ^65000:3_0:241_0:199$ ip community-list expanded c42 permit 215 ^65000:3_0:242_0:200$ ip community-list expanded c42 permit 216 ^65000:3_0:243_0:201$ ip community-list expanded c42 permit 217 ^65000:3_0:244_0:202$ ip community-list expanded c42 permit 218 ^65000:3_0:245_0:203$ ip community-list expanded c42 permit 219 ^65000:3_0:246_0:204$ ip community-list expanded c42 permit 220 ^65000:3_0:247_0:205$ ip community-list expanded c42 permit 221 ^65000:3_0:248_0:206$ ip community-list expanded c42 permit 222 ^65000:3_0:249_0:207$ ip community-list expanded c42 permit 223 ^65000:3_0:250_0:208$ ip community-list expanded c42 permit 224 ^65000:3_0:251_0:209$ ip community-list expanded c42 permit 225 ^65000:4_0:252_0:6$ ip community-list expanded c42 permit 226 ^65000:3_0:252_0:210$ ip community-list expanded c42 permit 227 ^65000:4_0:253_0:6$ ip community-list expanded c42 permit 228 ^65000:3_0:253_0:211$ ip community-list expanded c42 permit 229 ^65000:4_0:254_0:6$ ip community-list expanded c42 permit 230 ^65000:3_0:254_0:212$ ip community-list expanded c42 permit 231 ^65000:4_0:255_0:6$ ip community-list expanded c42 permit 232 ^65000:3_0:255_0:213$ ip community-list expanded c42 permit 233 ^65000:4_0:256_0:6$ ip community-list expanded c42 permit 234 ^65000:3_0:256_0:214$ route-map calculator permit 31371 match community 1_1_41 2_1_42 2_2_21 1_2_40 2_3_14 set community 0:42 route-map calculator permit 31372 match community 1_3_39 1_4_38 1_5_37 2_6_7 1_6_36 set community 0:42 route-map calculator permit 31373 match community 1_7_35 1_8_34 1_9_33 1_10_32 1_11_31 set community 0:42 route-map calculator permit 31374 match community 1_12_30 1_13_29 1_14_28 1_15_27 1_16_26 set community 0:42 route-map calculator permit 31375 match community 1_17_25 1_18_24 1_19_23 1_20_22 1_21_21 set community 0:42 route-map calculator permit 31376 match community c4_42_1 c3_43_1 c3_44_2 c3_45_3 c3_46_4 set community 0:42 route-map calculator permit 31377 match community c3_47_5 c3_48_6 c3_49_7 c3_50_8 c3_51_9 set community 0:42 route-map calculator permit 31378 match community c3_52_10 c3_53_11 c3_54_12 c3_55_13 c3_56_14 set community 0:42 route-map calculator permit 31379 match community c3_57_15 c3_58_16 c3_59_17 c3_60_18 c3_61_19 set community 0:42 route-map calculator permit 31380 match community c3_62_20 c3_63_21 c3_64_22 c3_65_23 c3_66_24 set community 0:42 route-map calculator permit 31381 match community c3_67_25 c3_68_26 c3_69_27 c3_70_28 c3_71_29 set community 0:42 route-map calculator permit 31382 match community c3_72_30 c3_73_31 c3_74_32 c3_75_33 c3_76_34 set community 0:42 route-map calculator permit 31383 match community c3_77_35 c3_78_36 c3_79_37 c3_80_38 c3_81_39 set community 0:42 route-map calculator permit 31384 match community c3_82_40 c3_83_41 c4_84_2 c3_84_42 c4_85_2 set community 0:42 route-map calculator permit 31385 match community c3_85_43 c3_86_44 c3_87_45 c3_88_46 c3_89_47 set community 0:42 route-map calculator permit 31386 match community c3_90_48 c3_91_49 c3_92_50 c3_93_51 c3_94_52 set community 0:42 route-map calculator permit 31387 match community c3_95_53 c3_96_54 c3_97_55 c3_98_56 c3_99_57 set community 0:42 route-map calculator permit 31388 match community c3_100_58 c3_101_59 c3_102_60 c3_103_61 c3_104_62 set community 0:42 route-map calculator permit 31389 match community c3_105_63 c3_106_64 c3_107_65 c3_108_66 c3_109_67 set community 0:42 route-map calculator permit 31390 match community c3_110_68 c3_111_69 c3_112_70 c3_113_71 c3_114_72 set community 0:42 route-map calculator permit 31391 match community c3_115_73 c3_116_74 c3_117_75 c3_118_76 c3_119_77 set community 0:42 route-map calculator permit 31392 match community c3_120_78 c3_121_79 c3_122_80 c3_123_81 c3_124_82 set community 0:42 route-map calculator permit 31393 match community c3_125_83 c4_126_3 c3_126_84 c4_127_3 c3_127_85 set community 0:42 route-map calculator permit 31394 match community c4_128_3 c3_128_86 c3_129_87 c3_130_88 c3_131_89 set community 0:42 route-map calculator permit 31395 match community c3_132_90 c3_133_91 c3_134_92 c3_135_93 c3_136_94 set community 0:42 route-map calculator permit 31396 match community c3_137_95 c3_138_96 c3_139_97 c3_140_98 c3_141_99 set community 0:42 route-map calculator permit 31397 match community c3_142_100 c3_143_101 c3_144_102 c3_145_103 c3_146_104 set community 0:42 route-map calculator permit 31398 match community c3_147_105 c3_148_106 c3_149_107 c3_150_108 c3_151_109 set community 0:42 route-map calculator permit 31399 match community c3_152_110 c3_153_111 c3_154_112 c3_155_113 c3_156_114 set community 0:42 route-map calculator permit 31400 match community c3_157_115 c3_158_116 c3_159_117 c3_160_118 c3_161_119 set community 0:42 route-map calculator permit 31401 match community c3_162_120 c3_163_121 c3_164_122 c3_165_123 c3_166_124 set community 0:42 route-map calculator permit 31402 match community c3_167_125 c4_168_4 c3_168_126 c4_169_4 c3_169_127 set community 0:42 route-map calculator permit 31403 match community c4_170_4 c3_170_128 c4_171_4 c3_171_129 c3_172_130 set community 0:42 route-map calculator permit 31404 match community c3_173_131 c3_174_132 c3_175_133 c3_176_134 c3_177_135 set community 0:42 route-map calculator permit 31405 match community c3_178_136 c3_179_137 c3_180_138 c3_181_139 c3_182_140 set community 0:42 route-map calculator permit 31406 match community c3_183_141 c3_184_142 c3_185_143 c3_186_144 c3_187_145 set community 0:42 route-map calculator permit 31407 match community c3_188_146 c3_189_147 c3_190_148 c3_191_149 c3_192_150 set community 0:42 route-map calculator permit 31408 match community c3_193_151 c3_194_152 c3_195_153 c3_196_154 c3_197_155 set community 0:42 route-map calculator permit 31409 match community c3_198_156 c3_199_157 c3_200_158 c3_201_159 c3_202_160 set community 0:42 route-map calculator permit 31410 match community c3_203_161 c3_204_162 c3_205_163 c3_206_164 c3_207_165 set community 0:42 route-map calculator permit 31411 match community c3_208_166 c3_209_167 c4_210_5 c3_210_168 c4_211_5 set community 0:42 route-map calculator permit 31412 match community c3_211_169 c4_212_5 c3_212_170 c4_213_5 c3_213_171 set community 0:42 route-map calculator permit 31413 match community c4_214_5 c3_214_172 c3_215_173 c3_216_174 c3_217_175 set community 0:42 route-map calculator permit 31414 match community c3_218_176 c3_219_177 c3_220_178 c3_221_179 c3_222_180 set community 0:42 route-map calculator permit 31415 match community c3_223_181 c3_224_182 c3_225_183 c3_226_184 c3_227_185 set community 0:42 route-map calculator permit 31416 match community c3_228_186 c3_229_187 c3_230_188 c3_231_189 c3_232_190 set community 0:42 route-map calculator permit 31417 match community c3_233_191 c3_234_192 c3_235_193 c3_236_194 c3_237_195 set community 0:42 route-map calculator permit 31418 match community c3_238_196 c3_239_197 c3_240_198 c3_241_199 c3_242_200 set community 0:42 route-map calculator permit 31419 match community c3_243_201 c3_244_202 c3_245_203 c3_246_204 c3_247_205 set community 0:42 route-map calculator permit 31420 match community c3_248_206 c3_249_207 c3_250_208 c3_251_209 c4_252_6 set community 0:42 route-map calculator permit 31421 match community c3_252_210 c4_253_6 c3_253_211 c4_254_6 c3_254_212 set community 0:42 route-map calculator permit 31422 match community c4_255_6 c3_255_213 c4_256_6 c3_256_214 set community 0:42 ip community-list standard 2_10_220 permit 65000:2 0:10 0:220 ip community-list standard 2_11_200 permit 65000:2 0:11 0:200 ip community-list standard 2_20_110 permit 65000:2 0:20 0:110 ip community-list standard 2_22_100 permit 65000:2 0:22 0:100 ip community-list standard 2_25_88 permit 65000:2 0:25 0:88 ip community-list standard 2_40_55 permit 65000:2 0:40 0:55 ip community-list standard 2_44_50 permit 65000:2 0:44 0:50 route-map calculator permit 31423 match community 2_10_220 2_11_200 2_20_110 2_22_100 2_25_88 set community 0:2200 route-map calculator permit 31424 match community 2_40_55 2_44_50 set community 0:2200 ip community-list standard 2_48_237 permit 65000:2 0:48 0:237 ip community-list standard 2_72_158 permit 65000:2 0:72 0:158 ip community-list standard 2_79_144 permit 65000:2 0:79 0:144 route-map calculator permit 31425 match community 2_48_237 2_72_158 2_79_144 set community 0:11376 ip community-list standard 2_50_241 permit 65000:2 0:50 0:241 route-map calculator permit 31426 match community 2_50_241 set community 0:12050 ip community-list standard 2_217_245 permit 65000:2 0:217 0:245 route-map calculator permit 31427 match community 2_217_245 set community 0:53165 ip community-list standard 2_137_244 permit 65000:2 0:137 0:244 route-map calculator permit 31428 match community 2_137_244 set community 0:33428 ip community-list standard 2_142_152 permit 65000:2 0:142 0:152 route-map calculator permit 31429 match community 2_142_152 set community 0:21584 ip community-list standard 2_99_239 permit 65000:2 0:99 0:239 route-map calculator permit 31430 match community 2_99_239 set community 0:23661 ip community-list standard 2_235_245 permit 65000:2 0:235 0:245 route-map calculator permit 31431 match community 2_235_245 set community 0:57575 ip community-list standard 2_7_53 permit 65000:2 0:7 0:53 ip community-list standard 1_115_256 permit 65000:1 0:115 0:256 ip community-list standard 1_116_255 permit 65000:1 0:116 0:255 ip community-list standard 1_117_254 permit 65000:1 0:117 0:254 ip community-list standard 1_118_253 permit 65000:1 0:118 0:253 ip community-list standard 1_119_252 permit 65000:1 0:119 0:252 ip community-list standard 1_120_251 permit 65000:1 0:120 0:251 ip community-list standard 1_121_250 permit 65000:1 0:121 0:250 ip community-list standard 1_122_249 permit 65000:1 0:122 0:249 ip community-list standard 1_123_248 permit 65000:1 0:123 0:248 ip community-list standard 1_124_247 permit 65000:1 0:124 0:247 ip community-list standard 1_125_246 permit 65000:1 0:125 0:246 ip community-list standard 1_126_245 permit 65000:1 0:126 0:245 ip community-list standard 1_127_244 permit 65000:1 0:127 0:244 ip community-list standard 1_128_243 permit 65000:1 0:128 0:243 ip community-list standard 1_129_242 permit 65000:1 0:129 0:242 ip community-list standard 1_130_241 permit 65000:1 0:130 0:241 ip community-list standard 1_131_240 permit 65000:1 0:131 0:240 ip community-list standard 1_132_239 permit 65000:1 0:132 0:239 ip community-list standard 1_133_238 permit 65000:1 0:133 0:238 ip community-list standard 1_134_237 permit 65000:1 0:134 0:237 ip community-list standard 1_135_236 permit 65000:1 0:135 0:236 ip community-list standard 1_136_235 permit 65000:1 0:136 0:235 ip community-list standard 1_137_234 permit 65000:1 0:137 0:234 ip community-list standard 1_138_233 permit 65000:1 0:138 0:233 ip community-list standard 1_139_232 permit 65000:1 0:139 0:232 ip community-list standard 1_140_231 permit 65000:1 0:140 0:231 ip community-list standard 1_141_230 permit 65000:1 0:141 0:230 ip community-list standard 1_142_229 permit 65000:1 0:142 0:229 ip community-list standard 1_143_228 permit 65000:1 0:143 0:228 ip community-list standard 1_144_227 permit 65000:1 0:144 0:227 ip community-list standard 1_145_226 permit 65000:1 0:145 0:226 ip community-list standard 1_146_225 permit 65000:1 0:146 0:225 ip community-list standard 1_147_224 permit 65000:1 0:147 0:224 ip community-list standard 1_148_223 permit 65000:1 0:148 0:223 ip community-list standard 1_149_222 permit 65000:1 0:149 0:222 ip community-list standard 1_150_221 permit 65000:1 0:150 0:221 ip community-list standard 1_151_220 permit 65000:1 0:151 0:220 ip community-list standard 1_152_219 permit 65000:1 0:152 0:219 ip community-list standard 1_153_218 permit 65000:1 0:153 0:218 ip community-list standard 1_154_217 permit 65000:1 0:154 0:217 ip community-list standard 1_155_216 permit 65000:1 0:155 0:216 ip community-list standard 1_156_215 permit 65000:1 0:156 0:215 ip community-list standard 1_157_214 permit 65000:1 0:157 0:214 ip community-list standard 1_158_213 permit 65000:1 0:158 0:213 ip community-list standard 1_159_212 permit 65000:1 0:159 0:212 ip community-list standard 1_160_211 permit 65000:1 0:160 0:211 ip community-list standard 1_161_210 permit 65000:1 0:161 0:210 ip community-list standard 1_162_209 permit 65000:1 0:162 0:209 ip community-list standard 1_163_208 permit 65000:1 0:163 0:208 ip community-list standard 1_164_207 permit 65000:1 0:164 0:207 ip community-list standard 1_165_206 permit 65000:1 0:165 0:206 ip community-list standard 1_166_205 permit 65000:1 0:166 0:205 ip community-list standard 1_167_204 permit 65000:1 0:167 0:204 ip community-list standard 1_168_203 permit 65000:1 0:168 0:203 ip community-list standard 1_169_202 permit 65000:1 0:169 0:202 ip community-list standard 1_170_201 permit 65000:1 0:170 0:201 ip community-list standard 1_171_200 permit 65000:1 0:171 0:200 ip community-list standard 1_172_199 permit 65000:1 0:172 0:199 ip community-list standard 1_173_198 permit 65000:1 0:173 0:198 ip community-list standard 1_174_197 permit 65000:1 0:174 0:197 ip community-list standard 1_175_196 permit 65000:1 0:175 0:196 ip community-list standard 1_176_195 permit 65000:1 0:176 0:195 ip community-list standard 1_177_194 permit 65000:1 0:177 0:194 ip community-list standard 1_178_193 permit 65000:1 0:178 0:193 ip community-list standard 1_179_192 permit 65000:1 0:179 0:192 ip community-list standard 1_180_191 permit 65000:1 0:180 0:191 ip community-list standard 1_181_190 permit 65000:1 0:181 0:190 ip community-list standard 1_182_189 permit 65000:1 0:182 0:189 ip community-list standard 1_183_188 permit 65000:1 0:183 0:188 ip community-list standard 1_184_187 permit 65000:1 0:184 0:187 ip community-list standard 1_185_186 permit 65000:1 0:185 0:186 route-map calculator permit 31432 match community 2_7_53 1_115_256 1_116_255 1_117_254 1_118_253 set community 0:371 route-map calculator permit 31433 match community 1_119_252 1_120_251 1_121_250 1_122_249 1_123_248 set community 0:371 route-map calculator permit 31434 match community 1_124_247 1_125_246 1_126_245 1_127_244 1_128_243 set community 0:371 route-map calculator permit 31435 match community 1_129_242 1_130_241 1_131_240 1_132_239 1_133_238 set community 0:371 route-map calculator permit 31436 match community 1_134_237 1_135_236 1_136_235 1_137_234 1_138_233 set community 0:371 route-map calculator permit 31437 match community 1_139_232 1_140_231 1_141_230 1_142_229 1_143_228 set community 0:371 route-map calculator permit 31438 match community 1_144_227 1_145_226 1_146_225 1_147_224 1_148_223 set community 0:371 route-map calculator permit 31439 match community 1_149_222 1_150_221 1_151_220 1_152_219 1_153_218 set community 0:371 route-map calculator permit 31440 match community 1_154_217 1_155_216 1_156_215 1_157_214 1_158_213 set community 0:371 route-map calculator permit 31441 match community 1_159_212 1_160_211 1_161_210 1_162_209 1_163_208 set community 0:371 route-map calculator permit 31442 match community 1_164_207 1_165_206 1_166_205 1_167_204 1_168_203 set community 0:371 route-map calculator permit 31443 match community 1_169_202 1_170_201 1_171_200 1_172_199 1_173_198 set community 0:371 route-map calculator permit 31444 match community 1_174_197 1_175_196 1_176_195 1_177_194 1_178_193 set community 0:371 route-map calculator permit 31445 match community 1_179_192 1_180_191 1_181_190 1_182_189 1_183_188 set community 0:371 route-map calculator permit 31446 match community 1_184_187 1_185_186 set community 0:371 ip community-list standard 2_141_242 permit 65000:2 0:141 0:242 route-map calculator permit 31447 match community 2_141_242 set community 0:34122 ip community-list standard 2_13_148 permit 65000:2 0:13 0:148 ip community-list standard 2_26_74 permit 65000:2 0:26 0:74 ip community-list standard 2_37_52 permit 65000:2 0:37 0:52 route-map calculator permit 31448 match community 2_13_148 2_26_74 2_37_52 set community 0:1924 ip community-list standard 2_49_53 permit 65000:2 0:49 0:53 route-map calculator permit 31449 match community 2_49_53 set community 0:2597 ip community-list standard 2_203_230 permit 65000:2 0:203 0:230 route-map calculator permit 31450 match community 2_203_230 set community 0:46690 ip community-list standard 2_45_250 permit 65000:2 0:45 0:250 ip community-list standard 2_50_225 permit 65000:2 0:50 0:225 ip community-list standard 2_75_150 permit 65000:2 0:75 0:150 ip community-list standard 2_90_125 permit 65000:2 0:90 0:125 route-map calculator permit 31451 match community 2_45_250 2_50_225 2_75_150 2_90_125 set community 0:11250 ip community-list standard 2_13_238 permit 65000:2 0:13 0:238 ip community-list standard 2_14_221 permit 65000:2 0:14 0:221 ip community-list standard 2_17_182 permit 65000:2 0:17 0:182 ip community-list standard 2_26_119 permit 65000:2 0:26 0:119 ip community-list standard 2_34_91 permit 65000:2 0:34 0:91 route-map calculator permit 31452 match community 2_13_238 2_14_221 2_17_182 2_26_119 2_34_91 set community 0:3094 ip community-list standard 2_129_237 permit 65000:2 0:129 0:237 route-map calculator permit 31453 match community 2_129_237 set community 0:30573 ip community-list standard 2_73_164 permit 65000:2 0:73 0:164 ip community-list standard 2_82_146 permit 65000:2 0:82 0:146 route-map calculator permit 31454 match community 2_73_164 2_82_146 set community 0:11972 ip community-list standard 2_151_235 permit 65000:2 0:151 0:235 route-map calculator permit 31455 match community 2_151_235 set community 0:35485 ip community-list standard 2_19_196 permit 65000:2 0:19 0:196 ip community-list standard 2_28_133 permit 65000:2 0:28 0:133 ip community-list standard 2_38_98 permit 65000:2 0:38 0:98 ip community-list standard 2_49_76 permit 65000:2 0:49 0:76 route-map calculator permit 31456 match community 2_19_196 2_28_133 2_38_98 2_49_76 set community 0:3724 ip community-list standard 2_179_198 permit 65000:2 0:179 0:198 route-map calculator permit 31457 match community 2_179_198 set community 0:35442 ip community-list standard 2_23_251 permit 65000:2 0:23 0:251 route-map calculator permit 31458 match community 2_23_251 set community 0:5773 ip community-list standard 2_177_217 permit 65000:2 0:177 0:217 route-map calculator permit 31459 match community 2_177_217 set community 0:38409 ip community-list standard 2_86_129 permit 65000:2 0:86 0:129 route-map calculator permit 31460 match community 2_86_129 set community 0:11094 ip community-list standard 2_134_143 permit 65000:2 0:134 0:143 route-map calculator permit 31461 match community 2_134_143 set community 0:19162 ip community-list standard 2_103_234 permit 65000:2 0:103 0:234 ip community-list standard 2_117_206 permit 65000:2 0:117 0:206 route-map calculator permit 31462 match community 2_103_234 2_117_206 set community 0:24102 ip community-list standard 2_156_215 permit 65000:2 0:156 0:215 ip community-list standard 2_172_195 permit 65000:2 0:172 0:195 route-map calculator permit 31463 match community 2_156_215 2_172_195 set community 0:33540 ip community-list standard 2_185_197 permit 65000:2 0:185 0:197 route-map calculator permit 31464 match community 2_185_197 set community 0:36445 ip community-list standard 2_161_229 permit 65000:2 0:161 0:229 route-map calculator permit 31465 match community 2_161_229 set community 0:36869 ip community-list standard 2_73_237 permit 65000:2 0:73 0:237 ip community-list standard 2_79_219 permit 65000:2 0:79 0:219 route-map calculator permit 31466 match community 2_73_237 2_79_219 set community 0:17301 ip community-list standard 2_197_245 permit 65000:2 0:197 0:245 route-map calculator permit 31467 match community 2_197_245 set community 0:48265 ip community-list standard 2_229_242 permit 65000:2 0:229 0:242 route-map calculator permit 31468 match community 2_229_242 set community 0:55418 ip community-list standard 2_29_217 permit 65000:2 0:29 0:217 ip community-list standard 2_31_203 permit 65000:2 0:31 0:203 route-map calculator permit 31469 match community 2_29_217 2_31_203 set community 0:6293 ip community-list standard 2_19_137 permit 65000:2 0:19 0:137 route-map calculator permit 31470 match community 2_19_137 set community 0:2603 ip community-list standard 2_159_226 permit 65000:2 0:159 0:226 route-map calculator permit 31471 match community 2_159_226 set community 0:35934 ip community-list standard 2_101_238 permit 65000:2 0:101 0:238 ip community-list standard 2_119_202 permit 65000:2 0:119 0:202 route-map calculator permit 31472 match community 2_101_238 2_119_202 set community 0:24038 ip community-list standard 2_23_141 permit 65000:2 0:23 0:141 ip community-list standard 2_47_69 permit 65000:2 0:47 0:69 route-map calculator permit 31473 match community 2_23_141 2_47_69 set community 0:3243 ip community-list standard 2_127_193 permit 65000:2 0:127 0:193 route-map calculator permit 31474 match community 2_127_193 set community 0:24511 ip community-list standard 2_125_205 permit 65000:2 0:125 0:205 route-map calculator permit 31475 match community 2_125_205 set community 0:25625 ip community-list standard 2_83_163 permit 65000:2 0:83 0:163 route-map calculator permit 31476 match community 2_83_163 set community 0:13529 ip community-list standard 2_216_227 permit 65000:2 0:216 0:227 route-map calculator permit 31477 match community 2_216_227 set community 0:49032 ip community-list standard 2_35_220 permit 65000:2 0:35 0:220 ip community-list standard 2_44_175 permit 65000:2 0:44 0:175 ip community-list standard 2_50_154 permit 65000:2 0:50 0:154 ip community-list standard 2_55_140 permit 65000:2 0:55 0:140 ip community-list standard 2_70_110 permit 65000:2 0:70 0:110 ip community-list standard 2_77_100 permit 65000:2 0:77 0:100 route-map calculator permit 31478 match community 2_35_220 2_44_175 2_50_154 2_55_140 2_70_110 set community 0:7700 route-map calculator permit 31479 match community 2_77_100 set community 0:7700 ip community-list standard 2_112_173 permit 65000:2 0:112 0:173 route-map calculator permit 31480 match community 2_112_173 set community 0:19376 ip community-list standard 2_26_245 permit 65000:2 0:26 0:245 ip community-list standard 2_35_182 permit 65000:2 0:35 0:182 ip community-list standard 2_49_130 permit 65000:2 0:49 0:130 ip community-list standard 2_65_98 permit 65000:2 0:65 0:98 ip community-list standard 2_70_91 permit 65000:2 0:70 0:91 route-map calculator permit 31481 match community 2_26_245 2_35_182 2_49_130 2_65_98 2_70_91 set community 0:6370 ip community-list standard 2_185_232 permit 65000:2 0:185 0:232 route-map calculator permit 31482 match community 2_185_232 set community 0:42920 ip community-list standard 2_19_164 permit 65000:2 0:19 0:164 ip community-list standard 2_38_82 permit 65000:2 0:38 0:82 ip community-list standard 2_41_76 permit 65000:2 0:41 0:76 route-map calculator permit 31483 match community 2_19_164 2_38_82 2_41_76 set community 0:3116 ip community-list standard 2_5_234 permit 65000:2 0:5 0:234 ip community-list standard 2_6_195 permit 65000:2 0:6 0:195 ip community-list standard 2_9_130 permit 65000:2 0:9 0:130 ip community-list standard 2_10_117 permit 65000:2 0:10 0:117 ip community-list standard 2_13_90 permit 65000:2 0:13 0:90 ip community-list standard 2_15_78 permit 65000:2 0:15 0:78 ip community-list standard 2_18_65 permit 65000:2 0:18 0:65 ip community-list standard 2_26_45 permit 65000:2 0:26 0:45 ip community-list standard 2_30_39 permit 65000:2 0:30 0:39 route-map calculator permit 31484 match community 2_5_234 2_6_195 2_9_130 2_10_117 2_13_90 set community 0:1170 route-map calculator permit 31485 match community 2_15_78 2_18_65 2_26_45 2_30_39 set community 0:1170 ip community-list standard 2_47_146 permit 65000:2 0:47 0:146 ip community-list standard 2_73_94 permit 65000:2 0:73 0:94 route-map calculator permit 31486 match community 2_47_146 2_73_94 set community 0:6862 ip community-list standard 2_37_220 permit 65000:2 0:37 0:220 ip community-list standard 2_44_185 permit 65000:2 0:44 0:185 ip community-list standard 2_55_148 permit 65000:2 0:55 0:148 ip community-list standard 2_74_110 permit 65000:2 0:74 0:110 route-map calculator permit 31487 match community 2_37_220 2_44_185 2_55_148 2_74_110 set community 0:8140 ip community-list standard 2_47_189 permit 65000:2 0:47 0:189 ip community-list standard 2_63_141 permit 65000:2 0:63 0:141 route-map calculator permit 31488 match community 2_47_189 2_63_141 set community 0:8883 ip community-list standard 2_49_119 permit 65000:2 0:49 0:119 route-map calculator permit 31489 match community 2_49_119 set community 0:5831 ip community-list standard 2_59_210 permit 65000:2 0:59 0:210 ip community-list standard 2_70_177 permit 65000:2 0:70 0:177 ip community-list standard 2_105_118 permit 65000:2 0:105 0:118 route-map calculator permit 31490 match community 2_59_210 2_70_177 2_105_118 set community 0:12390 ip community-list standard 2_29_249 permit 65000:2 0:29 0:249 ip community-list standard 2_83_87 permit 65000:2 0:83 0:87 route-map calculator permit 31491 match community 2_29_249 2_83_87 set community 0:7221 ip community-list standard 2_55_250 permit 65000:2 0:55 0:250 ip community-list standard 2_110_125 permit 65000:2 0:110 0:125 route-map calculator permit 31492 match community 2_55_250 2_110_125 set community 0:13750 ip community-list standard 2_215_238 permit 65000:2 0:215 0:238 route-map calculator permit 31493 match community 2_215_238 set community 0:51170 ip community-list standard 2_39_205 permit 65000:2 0:39 0:205 ip community-list standard 2_41_195 permit 65000:2 0:41 0:195 ip community-list standard 2_65_123 permit 65000:2 0:65 0:123 route-map calculator permit 31494 match community 2_39_205 2_41_195 2_65_123 set community 0:7995 ip community-list standard 2_173_214 permit 65000:2 0:173 0:214 route-map calculator permit 31495 match community 2_173_214 set community 0:37022 ip community-list standard 2_176_202 permit 65000:2 0:176 0:202 route-map calculator permit 31496 match community 2_176_202 set community 0:35552 ip community-list standard 2_95_125 permit 65000:2 0:95 0:125 route-map calculator permit 31497 match community 2_95_125 set community 0:11875 ip community-list standard 2_174_177 permit 65000:2 0:174 0:177 route-map calculator permit 31498 match community 2_174_177 set community 0:30798 ip community-list standard 2_99_131 permit 65000:2 0:99 0:131 route-map calculator permit 31499 match community 2_99_131 set community 0:12969 ip community-list standard 2_95_171 permit 65000:2 0:95 0:171 route-map calculator permit 31500 match community 2_95_171 set community 0:16245 ip community-list standard 2_93_220 permit 65000:2 0:93 0:220 ip community-list standard 2_110_186 permit 65000:2 0:110 0:186 ip community-list standard 2_124_165 permit 65000:2 0:124 0:165 ip community-list standard 2_132_155 permit 65000:2 0:132 0:155 route-map calculator permit 31501 match community 2_93_220 2_110_186 2_124_165 2_132_155 set community 0:20460 ip community-list standard 2_61_103 permit 65000:2 0:61 0:103 route-map calculator permit 31502 match community 2_61_103 set community 0:6283 ip community-list standard 2_97_167 permit 65000:2 0:97 0:167 route-map calculator permit 31503 match community 2_97_167 set community 0:16199 ip community-list standard 2_57_222 permit 65000:2 0:57 0:222 ip community-list standard 2_74_171 permit 65000:2 0:74 0:171 ip community-list standard 2_111_114 permit 65000:2 0:111 0:114 route-map calculator permit 31504 match community 2_57_222 2_74_171 2_111_114 set community 0:12654 ip community-list standard 2_50_247 permit 65000:2 0:50 0:247 ip community-list standard 2_65_190 permit 65000:2 0:65 0:190 ip community-list standard 2_95_130 permit 65000:2 0:95 0:130 route-map calculator permit 31505 match community 2_50_247 2_65_190 2_95_130 set community 0:12350 ip community-list standard 2_88_201 permit 65000:2 0:88 0:201 ip community-list standard 2_132_134 permit 65000:2 0:132 0:134 route-map calculator permit 31506 match community 2_88_201 2_132_134 set community 0:17688 ip community-list standard 2_217_248 permit 65000:2 0:217 0:248 route-map calculator permit 31507 match community 2_217_248 set community 0:53816 ip community-list standard 2_175_232 permit 65000:2 0:175 0:232 ip community-list standard 2_200_203 permit 65000:2 0:200 0:203 route-map calculator permit 31508 match community 2_175_232 2_200_203 set community 0:40600 ip community-list standard 2_85_232 permit 65000:2 0:85 0:232 ip community-list standard 2_116_170 permit 65000:2 0:116 0:170 ip community-list standard 2_136_145 permit 65000:2 0:136 0:145 route-map calculator permit 31509 match community 2_85_232 2_116_170 2_136_145 set community 0:19720 ip community-list standard 2_55_125 permit 65000:2 0:55 0:125 route-map calculator permit 31510 match community 2_55_125 set community 0:6875 ip community-list standard 2_88_235 permit 65000:2 0:88 0:235 ip community-list standard 2_94_220 permit 65000:2 0:94 0:220 ip community-list standard 2_110_188 permit 65000:2 0:110 0:188 route-map calculator permit 31511 match community 2_88_235 2_94_220 2_110_188 set community 0:20680 ip community-list standard 2_23_224 permit 65000:2 0:23 0:224 ip community-list standard 2_28_184 permit 65000:2 0:28 0:184 ip community-list standard 2_32_161 permit 65000:2 0:32 0:161 ip community-list standard 2_46_112 permit 65000:2 0:46 0:112 ip community-list standard 2_56_92 permit 65000:2 0:56 0:92 route-map calculator permit 31512 match community 2_23_224 2_28_184 2_32_161 2_46_112 2_56_92 set community 0:5152 ip community-list standard 2_176_253 permit 65000:2 0:176 0:253 ip community-list standard 2_184_242 permit 65000:2 0:184 0:242 route-map calculator permit 31513 match community 2_176_253 2_184_242 set community 0:44528 ip community-list standard 2_7_217 permit 65000:2 0:7 0:217 ip community-list standard 2_31_49 permit 65000:2 0:31 0:49 route-map calculator permit 31514 match community 2_7_217 2_31_49 set community 0:1519 ip community-list standard 2_77_169 permit 65000:2 0:77 0:169 ip community-list standard 2_91_143 permit 65000:2 0:91 0:143 route-map calculator permit 31515 match community 2_77_169 2_91_143 set community 0:13013 ip community-list standard 2_158_160 permit 65000:2 0:158 0:160 route-map calculator permit 31516 match community 2_158_160 set community 0:25280 ip community-list standard 2_169_197 permit 65000:2 0:169 0:197 route-map calculator permit 31517 match community 2_169_197 set community 0:33293 ip community-list standard 2_123_127 permit 65000:2 0:123 0:127 route-map calculator permit 31518 match community 2_123_127 set community 0:15621 ip community-list standard 2_62_187 permit 65000:2 0:62 0:187 route-map calculator permit 31519 match community 2_62_187 set community 0:11594 ip community-list standard 2_122_251 permit 65000:2 0:122 0:251 route-map calculator permit 31520 match community 2_122_251 set community 0:30622 ip community-list standard 2_79_253 permit 65000:2 0:79 0:253 route-map calculator permit 31521 match community 2_79_253 set community 0:19987 ip community-list standard 2_123_161 permit 65000:2 0:123 0:161 route-map calculator permit 31522 match community 2_123_161 set community 0:19803 ip community-list standard 2_161_246 permit 65000:2 0:161 0:246 route-map calculator permit 31523 match community 2_161_246 set community 0:39606 ip community-list standard 2_166_187 permit 65000:2 0:166 0:187 route-map calculator permit 31524 match community 2_166_187 set community 0:31042 ip community-list standard 2_162_193 permit 65000:2 0:162 0:193 route-map calculator permit 31525 match community 2_162_193 set community 0:31266 ip community-list standard 2_31_121 permit 65000:2 0:31 0:121 route-map calculator permit 31526 match community 2_31_121 set community 0:3751 ip community-list standard 2_136_239 permit 65000:2 0:136 0:239 route-map calculator permit 31527 match community 2_136_239 set community 0:32504 ip community-list standard 2_129_244 permit 65000:2 0:129 0:244 ip community-list standard 2_172_183 permit 65000:2 0:172 0:183 route-map calculator permit 31528 match community 2_129_244 2_172_183 set community 0:31476 ip community-list standard 2_67_197 permit 65000:2 0:67 0:197 route-map calculator permit 31529 match community 2_67_197 set community 0:13199 ip community-list standard 2_36_232 permit 65000:2 0:36 0:232 ip community-list standard 2_48_174 permit 65000:2 0:48 0:174 ip community-list standard 2_58_144 permit 65000:2 0:58 0:144 ip community-list standard 2_72_116 permit 65000:2 0:72 0:116 ip community-list standard 2_87_96 permit 65000:2 0:87 0:96 route-map calculator permit 31530 match community 2_36_232 2_48_174 2_58_144 2_72_116 2_87_96 set community 0:8352 ip community-list standard 2_21_221 permit 65000:2 0:21 0:221 ip community-list standard 2_39_119 permit 65000:2 0:39 0:119 ip community-list standard 2_51_91 permit 65000:2 0:51 0:91 route-map calculator permit 31531 match community 2_21_221 2_39_119 2_51_91 set community 0:4641 ip community-list standard 2_11_29 permit 65000:2 0:11 0:29 ip community-list standard 1_63_256 permit 65000:1 0:63 0:256 ip community-list standard 1_64_255 permit 65000:1 0:64 0:255 ip community-list standard 1_65_254 permit 65000:1 0:65 0:254 ip community-list standard 1_66_253 permit 65000:1 0:66 0:253 ip community-list standard 1_67_252 permit 65000:1 0:67 0:252 ip community-list standard 1_68_251 permit 65000:1 0:68 0:251 ip community-list standard 1_69_250 permit 65000:1 0:69 0:250 ip community-list standard 1_70_249 permit 65000:1 0:70 0:249 ip community-list standard 1_71_248 permit 65000:1 0:71 0:248 ip community-list standard 1_72_247 permit 65000:1 0:72 0:247 ip community-list standard 1_73_246 permit 65000:1 0:73 0:246 ip community-list standard 1_74_245 permit 65000:1 0:74 0:245 ip community-list standard 1_75_244 permit 65000:1 0:75 0:244 ip community-list standard 1_76_243 permit 65000:1 0:76 0:243 ip community-list standard 1_77_242 permit 65000:1 0:77 0:242 ip community-list standard 1_78_241 permit 65000:1 0:78 0:241 ip community-list standard 1_79_240 permit 65000:1 0:79 0:240 ip community-list standard 1_80_239 permit 65000:1 0:80 0:239 ip community-list standard 1_81_238 permit 65000:1 0:81 0:238 ip community-list standard 1_82_237 permit 65000:1 0:82 0:237 ip community-list standard 1_83_236 permit 65000:1 0:83 0:236 ip community-list standard 1_84_235 permit 65000:1 0:84 0:235 ip community-list standard 1_85_234 permit 65000:1 0:85 0:234 ip community-list standard 1_86_233 permit 65000:1 0:86 0:233 ip community-list standard 1_87_232 permit 65000:1 0:87 0:232 ip community-list standard 1_88_231 permit 65000:1 0:88 0:231 ip community-list standard 1_89_230 permit 65000:1 0:89 0:230 ip community-list standard 1_90_229 permit 65000:1 0:90 0:229 ip community-list standard 1_91_228 permit 65000:1 0:91 0:228 ip community-list standard 1_92_227 permit 65000:1 0:92 0:227 ip community-list standard 1_93_226 permit 65000:1 0:93 0:226 ip community-list standard 1_94_225 permit 65000:1 0:94 0:225 ip community-list standard 1_95_224 permit 65000:1 0:95 0:224 ip community-list standard 1_96_223 permit 65000:1 0:96 0:223 ip community-list standard 1_97_222 permit 65000:1 0:97 0:222 ip community-list standard 1_98_221 permit 65000:1 0:98 0:221 ip community-list standard 1_99_220 permit 65000:1 0:99 0:220 ip community-list standard 1_100_219 permit 65000:1 0:100 0:219 ip community-list standard 1_101_218 permit 65000:1 0:101 0:218 ip community-list standard 1_102_217 permit 65000:1 0:102 0:217 ip community-list standard 1_103_216 permit 65000:1 0:103 0:216 ip community-list standard 1_104_215 permit 65000:1 0:104 0:215 ip community-list standard 1_105_214 permit 65000:1 0:105 0:214 ip community-list standard 1_106_213 permit 65000:1 0:106 0:213 ip community-list standard 1_107_212 permit 65000:1 0:107 0:212 ip community-list standard 1_108_211 permit 65000:1 0:108 0:211 ip community-list standard 1_109_210 permit 65000:1 0:109 0:210 ip community-list standard 1_110_209 permit 65000:1 0:110 0:209 ip community-list standard 1_111_208 permit 65000:1 0:111 0:208 ip community-list standard 1_112_207 permit 65000:1 0:112 0:207 ip community-list standard 1_113_206 permit 65000:1 0:113 0:206 ip community-list standard 1_114_205 permit 65000:1 0:114 0:205 ip community-list standard 1_115_204 permit 65000:1 0:115 0:204 ip community-list standard 1_116_203 permit 65000:1 0:116 0:203 ip community-list standard 1_117_202 permit 65000:1 0:117 0:202 ip community-list standard 1_118_201 permit 65000:1 0:118 0:201 ip community-list standard 1_119_200 permit 65000:1 0:119 0:200 ip community-list standard 1_120_199 permit 65000:1 0:120 0:199 ip community-list standard 1_121_198 permit 65000:1 0:121 0:198 ip community-list standard 1_122_197 permit 65000:1 0:122 0:197 ip community-list standard 1_123_196 permit 65000:1 0:123 0:196 ip community-list standard 1_124_195 permit 65000:1 0:124 0:195 ip community-list standard 1_125_194 permit 65000:1 0:125 0:194 ip community-list standard 1_126_193 permit 65000:1 0:126 0:193 ip community-list standard 1_127_192 permit 65000:1 0:127 0:192 ip community-list standard 1_128_191 permit 65000:1 0:128 0:191 ip community-list standard 1_129_190 permit 65000:1 0:129 0:190 ip community-list standard 1_130_189 permit 65000:1 0:130 0:189 ip community-list standard 1_131_188 permit 65000:1 0:131 0:188 ip community-list standard 1_132_187 permit 65000:1 0:132 0:187 ip community-list standard 1_133_186 permit 65000:1 0:133 0:186 ip community-list standard 1_134_185 permit 65000:1 0:134 0:185 ip community-list standard 1_135_184 permit 65000:1 0:135 0:184 ip community-list standard 1_136_183 permit 65000:1 0:136 0:183 ip community-list standard 1_137_182 permit 65000:1 0:137 0:182 ip community-list standard 1_138_181 permit 65000:1 0:138 0:181 ip community-list standard 1_139_180 permit 65000:1 0:139 0:180 ip community-list standard 1_140_179 permit 65000:1 0:140 0:179 ip community-list standard 1_141_178 permit 65000:1 0:141 0:178 ip community-list standard 1_142_177 permit 65000:1 0:142 0:177 ip community-list standard 1_143_176 permit 65000:1 0:143 0:176 ip community-list standard 1_144_175 permit 65000:1 0:144 0:175 ip community-list standard 1_145_174 permit 65000:1 0:145 0:174 ip community-list standard 1_146_173 permit 65000:1 0:146 0:173 ip community-list standard 1_147_172 permit 65000:1 0:147 0:172 ip community-list standard 1_148_171 permit 65000:1 0:148 0:171 ip community-list standard 1_149_170 permit 65000:1 0:149 0:170 ip community-list standard 1_150_169 permit 65000:1 0:150 0:169 ip community-list standard 1_151_168 permit 65000:1 0:151 0:168 ip community-list standard 1_152_167 permit 65000:1 0:152 0:167 ip community-list standard 1_153_166 permit 65000:1 0:153 0:166 ip community-list standard 1_154_165 permit 65000:1 0:154 0:165 ip community-list standard 1_155_164 permit 65000:1 0:155 0:164 ip community-list standard 1_156_163 permit 65000:1 0:156 0:163 ip community-list standard 1_157_162 permit 65000:1 0:157 0:162 ip community-list standard 1_158_161 permit 65000:1 0:158 0:161 ip community-list standard 1_159_160 permit 65000:1 0:159 0:160 route-map calculator permit 31532 match community 2_11_29 1_63_256 1_64_255 1_65_254 1_66_253 set community 0:319 route-map calculator permit 31533 match community 1_67_252 1_68_251 1_69_250 1_70_249 1_71_248 set community 0:319 route-map calculator permit 31534 match community 1_72_247 1_73_246 1_74_245 1_75_244 1_76_243 set community 0:319 route-map calculator permit 31535 match community 1_77_242 1_78_241 1_79_240 1_80_239 1_81_238 set community 0:319 route-map calculator permit 31536 match community 1_82_237 1_83_236 1_84_235 1_85_234 1_86_233 set community 0:319 route-map calculator permit 31537 match community 1_87_232 1_88_231 1_89_230 1_90_229 1_91_228 set community 0:319 route-map calculator permit 31538 match community 1_92_227 1_93_226 1_94_225 1_95_224 1_96_223 set community 0:319 route-map calculator permit 31539 match community 1_97_222 1_98_221 1_99_220 1_100_219 1_101_218 set community 0:319 route-map calculator permit 31540 match community 1_102_217 1_103_216 1_104_215 1_105_214 1_106_213 set community 0:319 route-map calculator permit 31541 match community 1_107_212 1_108_211 1_109_210 1_110_209 1_111_208 set community 0:319 route-map calculator permit 31542 match community 1_112_207 1_113_206 1_114_205 1_115_204 1_116_203 set community 0:319 route-map calculator permit 31543 match community 1_117_202 1_118_201 1_119_200 1_120_199 1_121_198 set community 0:319 route-map calculator permit 31544 match community 1_122_197 1_123_196 1_124_195 1_125_194 1_126_193 set community 0:319 route-map calculator permit 31545 match community 1_127_192 1_128_191 1_129_190 1_130_189 1_131_188 set community 0:319 route-map calculator permit 31546 match community 1_132_187 1_133_186 1_134_185 1_135_184 1_136_183 set community 0:319 route-map calculator permit 31547 match community 1_137_182 1_138_181 1_139_180 1_140_179 1_141_178 set community 0:319 route-map calculator permit 31548 match community 1_142_177 1_143_176 1_144_175 1_145_174 1_146_173 set community 0:319 route-map calculator permit 31549 match community 1_147_172 1_148_171 1_149_170 1_150_169 1_151_168 set community 0:319 route-map calculator permit 31550 match community 1_152_167 1_153_166 1_154_165 1_155_164 1_156_163 set community 0:319 route-map calculator permit 31551 match community 1_157_162 1_158_161 1_159_160 set community 0:319 ip community-list standard 2_133_151 permit 65000:2 0:133 0:151 route-map calculator permit 31552 match community 2_133_151 set community 0:20083 ip community-list standard 2_118_242 permit 65000:2 0:118 0:242 ip community-list standard 2_121_236 permit 65000:2 0:121 0:236 route-map calculator permit 31553 match community 2_118_242 2_121_236 set community 0:28556 ip community-list standard 2_122_149 permit 65000:2 0:122 0:149 route-map calculator permit 31554 match community 2_122_149 set community 0:18178 ip community-list standard 2_92_204 permit 65000:2 0:92 0:204 ip community-list standard 2_102_184 permit 65000:2 0:102 0:184 ip community-list standard 2_136_138 permit 65000:2 0:136 0:138 route-map calculator permit 31555 match community 2_92_204 2_102_184 2_136_138 set community 0:18768 ip community-list standard 2_119_153 permit 65000:2 0:119 0:153 route-map calculator permit 31556 match community 2_119_153 set community 0:18207 ip community-list standard 1_1_186 permit 65000:1 0:1 0:186 ip community-list standard 2_1_187 permit 65000:2 0:1 0:187 ip community-list standard 1_2_185 permit 65000:1 0:2 0:185 ip community-list standard 1_3_184 permit 65000:1 0:3 0:184 ip community-list standard 1_4_183 permit 65000:1 0:4 0:183 ip community-list standard 1_5_182 permit 65000:1 0:5 0:182 ip community-list standard 1_6_181 permit 65000:1 0:6 0:181 ip community-list standard 1_7_180 permit 65000:1 0:7 0:180 ip community-list standard 1_8_179 permit 65000:1 0:8 0:179 ip community-list standard 1_9_178 permit 65000:1 0:9 0:178 ip community-list standard 1_10_177 permit 65000:1 0:10 0:177 ip community-list standard 2_11_17 permit 65000:2 0:11 0:17 ip community-list standard 1_11_176 permit 65000:1 0:11 0:176 ip community-list standard 1_12_175 permit 65000:1 0:12 0:175 ip community-list standard 1_13_174 permit 65000:1 0:13 0:174 ip community-list standard 1_14_173 permit 65000:1 0:14 0:173 ip community-list standard 1_15_172 permit 65000:1 0:15 0:172 ip community-list standard 1_16_171 permit 65000:1 0:16 0:171 ip community-list standard 1_17_170 permit 65000:1 0:17 0:170 ip community-list standard 1_18_169 permit 65000:1 0:18 0:169 ip community-list standard 1_19_168 permit 65000:1 0:19 0:168 ip community-list standard 1_20_167 permit 65000:1 0:20 0:167 ip community-list standard 1_21_166 permit 65000:1 0:21 0:166 ip community-list standard 1_22_165 permit 65000:1 0:22 0:165 ip community-list standard 1_23_164 permit 65000:1 0:23 0:164 ip community-list standard 1_24_163 permit 65000:1 0:24 0:163 ip community-list standard 1_25_162 permit 65000:1 0:25 0:162 ip community-list standard 1_26_161 permit 65000:1 0:26 0:161 ip community-list standard 1_27_160 permit 65000:1 0:27 0:160 ip community-list standard 1_28_159 permit 65000:1 0:28 0:159 ip community-list standard 1_29_158 permit 65000:1 0:29 0:158 ip community-list standard 1_30_157 permit 65000:1 0:30 0:157 ip community-list standard 1_31_156 permit 65000:1 0:31 0:156 ip community-list standard 1_32_155 permit 65000:1 0:32 0:155 ip community-list standard 1_33_154 permit 65000:1 0:33 0:154 ip community-list standard 1_34_153 permit 65000:1 0:34 0:153 ip community-list standard 1_35_152 permit 65000:1 0:35 0:152 ip community-list standard 1_36_151 permit 65000:1 0:36 0:151 ip community-list standard 1_37_150 permit 65000:1 0:37 0:150 ip community-list standard 1_38_149 permit 65000:1 0:38 0:149 ip community-list standard 1_39_148 permit 65000:1 0:39 0:148 ip community-list standard 1_40_147 permit 65000:1 0:40 0:147 ip community-list standard 1_41_146 permit 65000:1 0:41 0:146 ip community-list standard 1_42_145 permit 65000:1 0:42 0:145 ip community-list standard 1_43_144 permit 65000:1 0:43 0:144 ip community-list standard 1_44_143 permit 65000:1 0:44 0:143 ip community-list standard 1_45_142 permit 65000:1 0:45 0:142 ip community-list standard 1_46_141 permit 65000:1 0:46 0:141 ip community-list standard 1_47_140 permit 65000:1 0:47 0:140 ip community-list standard 1_48_139 permit 65000:1 0:48 0:139 ip community-list standard 1_49_138 permit 65000:1 0:49 0:138 ip community-list standard 1_50_137 permit 65000:1 0:50 0:137 ip community-list standard 1_51_136 permit 65000:1 0:51 0:136 ip community-list standard 1_52_135 permit 65000:1 0:52 0:135 ip community-list standard 1_53_134 permit 65000:1 0:53 0:134 ip community-list standard 1_54_133 permit 65000:1 0:54 0:133 ip community-list standard 1_55_132 permit 65000:1 0:55 0:132 ip community-list standard 1_56_131 permit 65000:1 0:56 0:131 ip community-list standard 1_57_130 permit 65000:1 0:57 0:130 ip community-list standard 1_58_129 permit 65000:1 0:58 0:129 ip community-list standard 1_59_128 permit 65000:1 0:59 0:128 ip community-list standard 1_60_127 permit 65000:1 0:60 0:127 ip community-list standard 1_61_126 permit 65000:1 0:61 0:126 ip community-list standard 1_62_125 permit 65000:1 0:62 0:125 ip community-list standard 1_63_124 permit 65000:1 0:63 0:124 ip community-list standard 1_64_123 permit 65000:1 0:64 0:123 ip community-list standard 1_65_122 permit 65000:1 0:65 0:122 ip community-list standard 1_66_121 permit 65000:1 0:66 0:121 ip community-list standard 1_67_120 permit 65000:1 0:67 0:120 ip community-list standard 1_68_119 permit 65000:1 0:68 0:119 ip community-list standard 1_69_118 permit 65000:1 0:69 0:118 ip community-list standard 1_70_117 permit 65000:1 0:70 0:117 ip community-list standard 1_71_116 permit 65000:1 0:71 0:116 ip community-list standard 1_72_115 permit 65000:1 0:72 0:115 ip community-list standard 1_73_114 permit 65000:1 0:73 0:114 ip community-list standard 1_74_113 permit 65000:1 0:74 0:113 ip community-list standard 1_75_112 permit 65000:1 0:75 0:112 ip community-list standard 1_76_111 permit 65000:1 0:76 0:111 ip community-list standard 1_77_110 permit 65000:1 0:77 0:110 ip community-list standard 1_78_109 permit 65000:1 0:78 0:109 ip community-list standard 1_79_108 permit 65000:1 0:79 0:108 ip community-list standard 1_80_107 permit 65000:1 0:80 0:107 ip community-list standard 1_81_106 permit 65000:1 0:81 0:106 ip community-list standard 1_82_105 permit 65000:1 0:82 0:105 ip community-list standard 1_83_104 permit 65000:1 0:83 0:104 ip community-list standard 1_84_103 permit 65000:1 0:84 0:103 ip community-list standard 1_85_102 permit 65000:1 0:85 0:102 ip community-list standard 1_86_101 permit 65000:1 0:86 0:101 ip community-list standard 1_87_100 permit 65000:1 0:87 0:100 ip community-list standard 1_88_99 permit 65000:1 0:88 0:99 ip community-list standard 1_89_98 permit 65000:1 0:89 0:98 ip community-list standard 1_90_97 permit 65000:1 0:90 0:97 ip community-list standard 1_91_96 permit 65000:1 0:91 0:96 ip community-list standard 1_92_95 permit 65000:1 0:92 0:95 ip community-list standard 1_93_94 permit 65000:1 0:93 0:94 ip community-list expanded c187 permit 1 ^65000:4_0:187_0:1$ ip community-list expanded c187 permit 2 ^65000:3_0:188_0:1$ ip community-list expanded c187 permit 3 ^65000:3_0:189_0:2$ ip community-list expanded c187 permit 4 ^65000:3_0:190_0:3$ ip community-list expanded c187 permit 5 ^65000:3_0:191_0:4$ ip community-list expanded c187 permit 6 ^65000:3_0:192_0:5$ ip community-list expanded c187 permit 7 ^65000:3_0:193_0:6$ ip community-list expanded c187 permit 8 ^65000:3_0:194_0:7$ ip community-list expanded c187 permit 9 ^65000:3_0:195_0:8$ ip community-list expanded c187 permit 10 ^65000:3_0:196_0:9$ ip community-list expanded c187 permit 11 ^65000:3_0:197_0:10$ ip community-list expanded c187 permit 12 ^65000:3_0:198_0:11$ ip community-list expanded c187 permit 13 ^65000:3_0:199_0:12$ ip community-list expanded c187 permit 14 ^65000:3_0:200_0:13$ ip community-list expanded c187 permit 15 ^65000:3_0:201_0:14$ ip community-list expanded c187 permit 16 ^65000:3_0:202_0:15$ ip community-list expanded c187 permit 17 ^65000:3_0:203_0:16$ ip community-list expanded c187 permit 18 ^65000:3_0:204_0:17$ ip community-list expanded c187 permit 19 ^65000:3_0:205_0:18$ ip community-list expanded c187 permit 20 ^65000:3_0:206_0:19$ ip community-list expanded c187 permit 21 ^65000:3_0:207_0:20$ ip community-list expanded c187 permit 22 ^65000:3_0:208_0:21$ ip community-list expanded c187 permit 23 ^65000:3_0:209_0:22$ ip community-list expanded c187 permit 24 ^65000:3_0:210_0:23$ ip community-list expanded c187 permit 25 ^65000:3_0:211_0:24$ ip community-list expanded c187 permit 26 ^65000:3_0:212_0:25$ ip community-list expanded c187 permit 27 ^65000:3_0:213_0:26$ ip community-list expanded c187 permit 28 ^65000:3_0:214_0:27$ ip community-list expanded c187 permit 29 ^65000:3_0:215_0:28$ ip community-list expanded c187 permit 30 ^65000:3_0:216_0:29$ ip community-list expanded c187 permit 31 ^65000:3_0:217_0:30$ ip community-list expanded c187 permit 32 ^65000:3_0:218_0:31$ ip community-list expanded c187 permit 33 ^65000:3_0:219_0:32$ ip community-list expanded c187 permit 34 ^65000:3_0:220_0:33$ ip community-list expanded c187 permit 35 ^65000:3_0:221_0:34$ ip community-list expanded c187 permit 36 ^65000:3_0:222_0:35$ ip community-list expanded c187 permit 37 ^65000:3_0:223_0:36$ ip community-list expanded c187 permit 38 ^65000:3_0:224_0:37$ ip community-list expanded c187 permit 39 ^65000:3_0:225_0:38$ ip community-list expanded c187 permit 40 ^65000:3_0:226_0:39$ ip community-list expanded c187 permit 41 ^65000:3_0:227_0:40$ ip community-list expanded c187 permit 42 ^65000:3_0:228_0:41$ ip community-list expanded c187 permit 43 ^65000:3_0:229_0:42$ ip community-list expanded c187 permit 44 ^65000:3_0:230_0:43$ ip community-list expanded c187 permit 45 ^65000:3_0:231_0:44$ ip community-list expanded c187 permit 46 ^65000:3_0:232_0:45$ ip community-list expanded c187 permit 47 ^65000:3_0:233_0:46$ ip community-list expanded c187 permit 48 ^65000:3_0:234_0:47$ ip community-list expanded c187 permit 49 ^65000:3_0:235_0:48$ ip community-list expanded c187 permit 50 ^65000:3_0:236_0:49$ ip community-list expanded c187 permit 51 ^65000:3_0:237_0:50$ ip community-list expanded c187 permit 52 ^65000:3_0:238_0:51$ ip community-list expanded c187 permit 53 ^65000:3_0:239_0:52$ ip community-list expanded c187 permit 54 ^65000:3_0:240_0:53$ ip community-list expanded c187 permit 55 ^65000:3_0:241_0:54$ ip community-list expanded c187 permit 56 ^65000:3_0:242_0:55$ ip community-list expanded c187 permit 57 ^65000:3_0:243_0:56$ ip community-list expanded c187 permit 58 ^65000:3_0:244_0:57$ ip community-list expanded c187 permit 59 ^65000:3_0:245_0:58$ ip community-list expanded c187 permit 60 ^65000:3_0:246_0:59$ ip community-list expanded c187 permit 61 ^65000:3_0:247_0:60$ ip community-list expanded c187 permit 62 ^65000:3_0:248_0:61$ ip community-list expanded c187 permit 63 ^65000:3_0:249_0:62$ ip community-list expanded c187 permit 64 ^65000:3_0:250_0:63$ ip community-list expanded c187 permit 65 ^65000:3_0:251_0:64$ ip community-list expanded c187 permit 66 ^65000:3_0:252_0:65$ ip community-list expanded c187 permit 67 ^65000:3_0:253_0:66$ ip community-list expanded c187 permit 68 ^65000:3_0:254_0:67$ ip community-list expanded c187 permit 69 ^65000:3_0:255_0:68$ ip community-list expanded c187 permit 70 ^65000:3_0:256_0:69$ route-map calculator permit 31557 match community 1_1_186 2_1_187 1_2_185 1_3_184 1_4_183 set community 0:187 route-map calculator permit 31558 match community 1_5_182 1_6_181 1_7_180 1_8_179 1_9_178 set community 0:187 route-map calculator permit 31559 match community 1_10_177 2_11_17 1_11_176 1_12_175 1_13_174 set community 0:187 route-map calculator permit 31560 match community 1_14_173 1_15_172 1_16_171 1_17_170 1_18_169 set community 0:187 route-map calculator permit 31561 match community 1_19_168 1_20_167 1_21_166 1_22_165 1_23_164 set community 0:187 route-map calculator permit 31562 match community 1_24_163 1_25_162 1_26_161 1_27_160 1_28_159 set community 0:187 route-map calculator permit 31563 match community 1_29_158 1_30_157 1_31_156 1_32_155 1_33_154 set community 0:187 route-map calculator permit 31564 match community 1_34_153 1_35_152 1_36_151 1_37_150 1_38_149 set community 0:187 route-map calculator permit 31565 match community 1_39_148 1_40_147 1_41_146 1_42_145 1_43_144 set community 0:187 route-map calculator permit 31566 match community 1_44_143 1_45_142 1_46_141 1_47_140 1_48_139 set community 0:187 route-map calculator permit 31567 match community 1_49_138 1_50_137 1_51_136 1_52_135 1_53_134 set community 0:187 route-map calculator permit 31568 match community 1_54_133 1_55_132 1_56_131 1_57_130 1_58_129 set community 0:187 route-map calculator permit 31569 match community 1_59_128 1_60_127 1_61_126 1_62_125 1_63_124 set community 0:187 route-map calculator permit 31570 match community 1_64_123 1_65_122 1_66_121 1_67_120 1_68_119 set community 0:187 route-map calculator permit 31571 match community 1_69_118 1_70_117 1_71_116 1_72_115 1_73_114 set community 0:187 route-map calculator permit 31572 match community 1_74_113 1_75_112 1_76_111 1_77_110 1_78_109 set community 0:187 route-map calculator permit 31573 match community 1_79_108 1_80_107 1_81_106 1_82_105 1_83_104 set community 0:187 route-map calculator permit 31574 match community 1_84_103 1_85_102 1_86_101 1_87_100 1_88_99 set community 0:187 route-map calculator permit 31575 match community 1_89_98 1_90_97 1_91_96 1_92_95 1_93_94 set community 0:187 route-map calculator permit 31576 match community c4_187_1 c3_188_1 c3_189_2 c3_190_3 c3_191_4 set community 0:187 route-map calculator permit 31577 match community c3_192_5 c3_193_6 c3_194_7 c3_195_8 c3_196_9 set community 0:187 route-map calculator permit 31578 match community c3_197_10 c3_198_11 c3_199_12 c3_200_13 c3_201_14 set community 0:187 route-map calculator permit 31579 match community c3_202_15 c3_203_16 c3_204_17 c3_205_18 c3_206_19 set community 0:187 route-map calculator permit 31580 match community c3_207_20 c3_208_21 c3_209_22 c3_210_23 c3_211_24 set community 0:187 route-map calculator permit 31581 match community c3_212_25 c3_213_26 c3_214_27 c3_215_28 c3_216_29 set community 0:187 route-map calculator permit 31582 match community c3_217_30 c3_218_31 c3_219_32 c3_220_33 c3_221_34 set community 0:187 route-map calculator permit 31583 match community c3_222_35 c3_223_36 c3_224_37 c3_225_38 c3_226_39 set community 0:187 route-map calculator permit 31584 match community c3_227_40 c3_228_41 c3_229_42 c3_230_43 c3_231_44 set community 0:187 route-map calculator permit 31585 match community c3_232_45 c3_233_46 c3_234_47 c3_235_48 c3_236_49 set community 0:187 route-map calculator permit 31586 match community c3_237_50 c3_238_51 c3_239_52 c3_240_53 c3_241_54 set community 0:187 route-map calculator permit 31587 match community c3_242_55 c3_243_56 c3_244_57 c3_245_58 c3_246_59 set community 0:187 route-map calculator permit 31588 match community c3_247_60 c3_248_61 c3_249_62 c3_250_63 c3_251_64 set community 0:187 route-map calculator permit 31589 match community c3_252_65 c3_253_66 c3_254_67 c3_255_68 c3_256_69 set community 0:187 ip community-list standard 2_82_214 permit 65000:2 0:82 0:214 ip community-list standard 2_107_164 permit 65000:2 0:107 0:164 route-map calculator permit 31590 match community 2_82_214 2_107_164 set community 0:17548 ip community-list standard 2_117_250 permit 65000:2 0:117 0:250 ip community-list standard 2_125_234 permit 65000:2 0:125 0:234 ip community-list standard 2_130_225 permit 65000:2 0:130 0:225 ip community-list standard 2_150_195 permit 65000:2 0:150 0:195 route-map calculator permit 31591 match community 2_117_250 2_125_234 2_130_225 2_150_195 set community 0:29250 ip community-list standard 2_103_145 permit 65000:2 0:103 0:145 route-map calculator permit 31592 match community 2_103_145 set community 0:14935 ip community-list standard 2_16_226 permit 65000:2 0:16 0:226 ip community-list standard 2_32_113 permit 65000:2 0:32 0:113 route-map calculator permit 31593 match community 2_16_226 2_32_113 set community 0:3616 ip community-list standard 2_186_202 permit 65000:2 0:186 0:202 route-map calculator permit 31594 match community 2_186_202 set community 0:37572 ip community-list standard 2_139_173 permit 65000:2 0:139 0:173 route-map calculator permit 31595 match community 2_139_173 set community 0:24047 ip community-list standard 2_89_191 permit 65000:2 0:89 0:191 route-map calculator permit 31596 match community 2_89_191 set community 0:16999 ip community-list standard 2_83_215 permit 65000:2 0:83 0:215 route-map calculator permit 31597 match community 2_83_215 set community 0:17845 ip community-list standard 2_25_222 permit 65000:2 0:25 0:222 ip community-list standard 2_30_185 permit 65000:2 0:30 0:185 ip community-list standard 2_37_150 permit 65000:2 0:37 0:150 ip community-list standard 2_50_111 permit 65000:2 0:50 0:111 ip community-list standard 2_74_75 permit 65000:2 0:74 0:75 route-map calculator permit 31598 match community 2_25_222 2_30_185 2_37_150 2_50_111 2_74_75 set community 0:5550 ip community-list standard 2_35_106 permit 65000:2 0:35 0:106 ip community-list standard 2_53_70 permit 65000:2 0:53 0:70 route-map calculator permit 31599 match community 2_35_106 2_53_70 set community 0:3710 ip community-list standard 2_169_173 permit 65000:2 0:169 0:173 route-map calculator permit 31600 match community 2_169_173 set community 0:29237 ip community-list standard 2_171_252 permit 65000:2 0:171 0:252 ip community-list standard 2_189_228 permit 65000:2 0:189 0:228 route-map calculator permit 31601 match community 2_171_252 2_189_228 set community 0:43092 ip community-list standard 2_160_191 permit 65000:2 0:160 0:191 route-map calculator permit 31602 match community 2_160_191 set community 0:30560 ip community-list standard 1_1_118 permit 65000:1 0:1 0:118 ip community-list standard 2_1_119 permit 65000:2 0:1 0:119 ip community-list standard 1_2_117 permit 65000:1 0:2 0:117 ip community-list standard 1_3_116 permit 65000:1 0:3 0:116 ip community-list standard 1_4_115 permit 65000:1 0:4 0:115 ip community-list standard 1_5_114 permit 65000:1 0:5 0:114 ip community-list standard 1_6_113 permit 65000:1 0:6 0:113 ip community-list standard 2_7_17 permit 65000:2 0:7 0:17 ip community-list standard 1_7_112 permit 65000:1 0:7 0:112 ip community-list standard 1_8_111 permit 65000:1 0:8 0:111 ip community-list standard 1_9_110 permit 65000:1 0:9 0:110 ip community-list standard 1_10_109 permit 65000:1 0:10 0:109 ip community-list standard 1_11_108 permit 65000:1 0:11 0:108 ip community-list standard 1_12_107 permit 65000:1 0:12 0:107 ip community-list standard 1_13_106 permit 65000:1 0:13 0:106 ip community-list standard 1_14_105 permit 65000:1 0:14 0:105 ip community-list standard 1_15_104 permit 65000:1 0:15 0:104 ip community-list standard 1_16_103 permit 65000:1 0:16 0:103 ip community-list standard 1_17_102 permit 65000:1 0:17 0:102 ip community-list standard 1_18_101 permit 65000:1 0:18 0:101 ip community-list standard 1_19_100 permit 65000:1 0:19 0:100 ip community-list standard 1_20_99 permit 65000:1 0:20 0:99 ip community-list standard 1_21_98 permit 65000:1 0:21 0:98 ip community-list standard 1_22_97 permit 65000:1 0:22 0:97 ip community-list standard 1_23_96 permit 65000:1 0:23 0:96 ip community-list standard 1_24_95 permit 65000:1 0:24 0:95 ip community-list standard 1_25_94 permit 65000:1 0:25 0:94 ip community-list standard 1_26_93 permit 65000:1 0:26 0:93 ip community-list standard 1_27_92 permit 65000:1 0:27 0:92 ip community-list standard 1_28_91 permit 65000:1 0:28 0:91 ip community-list standard 1_29_90 permit 65000:1 0:29 0:90 ip community-list standard 1_30_89 permit 65000:1 0:30 0:89 ip community-list standard 1_31_88 permit 65000:1 0:31 0:88 ip community-list standard 1_32_87 permit 65000:1 0:32 0:87 ip community-list standard 1_33_86 permit 65000:1 0:33 0:86 ip community-list standard 1_34_85 permit 65000:1 0:34 0:85 ip community-list standard 1_35_84 permit 65000:1 0:35 0:84 ip community-list standard 1_36_83 permit 65000:1 0:36 0:83 ip community-list standard 1_37_82 permit 65000:1 0:37 0:82 ip community-list standard 1_38_81 permit 65000:1 0:38 0:81 ip community-list standard 1_39_80 permit 65000:1 0:39 0:80 ip community-list standard 1_40_79 permit 65000:1 0:40 0:79 ip community-list standard 1_41_78 permit 65000:1 0:41 0:78 ip community-list standard 1_42_77 permit 65000:1 0:42 0:77 ip community-list standard 1_43_76 permit 65000:1 0:43 0:76 ip community-list standard 1_44_75 permit 65000:1 0:44 0:75 ip community-list standard 1_45_74 permit 65000:1 0:45 0:74 ip community-list standard 1_46_73 permit 65000:1 0:46 0:73 ip community-list standard 1_47_72 permit 65000:1 0:47 0:72 ip community-list standard 1_48_71 permit 65000:1 0:48 0:71 ip community-list standard 1_49_70 permit 65000:1 0:49 0:70 ip community-list standard 1_50_69 permit 65000:1 0:50 0:69 ip community-list standard 1_51_68 permit 65000:1 0:51 0:68 ip community-list standard 1_52_67 permit 65000:1 0:52 0:67 ip community-list standard 1_53_66 permit 65000:1 0:53 0:66 ip community-list standard 1_54_65 permit 65000:1 0:54 0:65 ip community-list standard 1_55_64 permit 65000:1 0:55 0:64 ip community-list standard 1_56_63 permit 65000:1 0:56 0:63 ip community-list standard 1_57_62 permit 65000:1 0:57 0:62 ip community-list standard 1_58_61 permit 65000:1 0:58 0:61 ip community-list standard 1_59_60 permit 65000:1 0:59 0:60 ip community-list expanded c119 permit 1 ^65000:4_0:119_0:1$ ip community-list expanded c119 permit 2 ^65000:3_0:120_0:1$ ip community-list expanded c119 permit 3 ^65000:3_0:121_0:2$ ip community-list expanded c119 permit 4 ^65000:3_0:122_0:3$ ip community-list expanded c119 permit 5 ^65000:3_0:123_0:4$ ip community-list expanded c119 permit 6 ^65000:3_0:124_0:5$ ip community-list expanded c119 permit 7 ^65000:3_0:125_0:6$ ip community-list expanded c119 permit 8 ^65000:3_0:126_0:7$ ip community-list expanded c119 permit 9 ^65000:3_0:127_0:8$ ip community-list expanded c119 permit 10 ^65000:3_0:128_0:9$ ip community-list expanded c119 permit 11 ^65000:3_0:129_0:10$ ip community-list expanded c119 permit 12 ^65000:3_0:130_0:11$ ip community-list expanded c119 permit 13 ^65000:3_0:131_0:12$ ip community-list expanded c119 permit 14 ^65000:3_0:132_0:13$ ip community-list expanded c119 permit 15 ^65000:3_0:133_0:14$ ip community-list expanded c119 permit 16 ^65000:3_0:134_0:15$ ip community-list expanded c119 permit 17 ^65000:3_0:135_0:16$ ip community-list expanded c119 permit 18 ^65000:3_0:136_0:17$ ip community-list expanded c119 permit 19 ^65000:3_0:137_0:18$ ip community-list expanded c119 permit 20 ^65000:3_0:138_0:19$ ip community-list expanded c119 permit 21 ^65000:3_0:139_0:20$ ip community-list expanded c119 permit 22 ^65000:3_0:140_0:21$ ip community-list expanded c119 permit 23 ^65000:3_0:141_0:22$ ip community-list expanded c119 permit 24 ^65000:3_0:142_0:23$ ip community-list expanded c119 permit 25 ^65000:3_0:143_0:24$ ip community-list expanded c119 permit 26 ^65000:3_0:144_0:25$ ip community-list expanded c119 permit 27 ^65000:3_0:145_0:26$ ip community-list expanded c119 permit 28 ^65000:3_0:146_0:27$ ip community-list expanded c119 permit 29 ^65000:3_0:147_0:28$ ip community-list expanded c119 permit 30 ^65000:3_0:148_0:29$ ip community-list expanded c119 permit 31 ^65000:3_0:149_0:30$ ip community-list expanded c119 permit 32 ^65000:3_0:150_0:31$ ip community-list expanded c119 permit 33 ^65000:3_0:151_0:32$ ip community-list expanded c119 permit 34 ^65000:3_0:152_0:33$ ip community-list expanded c119 permit 35 ^65000:3_0:153_0:34$ ip community-list expanded c119 permit 36 ^65000:3_0:154_0:35$ ip community-list expanded c119 permit 37 ^65000:3_0:155_0:36$ ip community-list expanded c119 permit 38 ^65000:3_0:156_0:37$ ip community-list expanded c119 permit 39 ^65000:3_0:157_0:38$ ip community-list expanded c119 permit 40 ^65000:3_0:158_0:39$ ip community-list expanded c119 permit 41 ^65000:3_0:159_0:40$ ip community-list expanded c119 permit 42 ^65000:3_0:160_0:41$ ip community-list expanded c119 permit 43 ^65000:3_0:161_0:42$ ip community-list expanded c119 permit 44 ^65000:3_0:162_0:43$ ip community-list expanded c119 permit 45 ^65000:3_0:163_0:44$ ip community-list expanded c119 permit 46 ^65000:3_0:164_0:45$ ip community-list expanded c119 permit 47 ^65000:3_0:165_0:46$ ip community-list expanded c119 permit 48 ^65000:3_0:166_0:47$ ip community-list expanded c119 permit 49 ^65000:3_0:167_0:48$ ip community-list expanded c119 permit 50 ^65000:3_0:168_0:49$ ip community-list expanded c119 permit 51 ^65000:3_0:169_0:50$ ip community-list expanded c119 permit 52 ^65000:3_0:170_0:51$ ip community-list expanded c119 permit 53 ^65000:3_0:171_0:52$ ip community-list expanded c119 permit 54 ^65000:3_0:172_0:53$ ip community-list expanded c119 permit 55 ^65000:3_0:173_0:54$ ip community-list expanded c119 permit 56 ^65000:3_0:174_0:55$ ip community-list expanded c119 permit 57 ^65000:3_0:175_0:56$ ip community-list expanded c119 permit 58 ^65000:3_0:176_0:57$ ip community-list expanded c119 permit 59 ^65000:3_0:177_0:58$ ip community-list expanded c119 permit 60 ^65000:3_0:178_0:59$ ip community-list expanded c119 permit 61 ^65000:3_0:179_0:60$ ip community-list expanded c119 permit 62 ^65000:3_0:180_0:61$ ip community-list expanded c119 permit 63 ^65000:3_0:181_0:62$ ip community-list expanded c119 permit 64 ^65000:3_0:182_0:63$ ip community-list expanded c119 permit 65 ^65000:3_0:183_0:64$ ip community-list expanded c119 permit 66 ^65000:3_0:184_0:65$ ip community-list expanded c119 permit 67 ^65000:3_0:185_0:66$ ip community-list expanded c119 permit 68 ^65000:3_0:186_0:67$ ip community-list expanded c119 permit 69 ^65000:3_0:187_0:68$ ip community-list expanded c119 permit 70 ^65000:3_0:188_0:69$ ip community-list expanded c119 permit 71 ^65000:3_0:189_0:70$ ip community-list expanded c119 permit 72 ^65000:3_0:190_0:71$ ip community-list expanded c119 permit 73 ^65000:3_0:191_0:72$ ip community-list expanded c119 permit 74 ^65000:3_0:192_0:73$ ip community-list expanded c119 permit 75 ^65000:3_0:193_0:74$ ip community-list expanded c119 permit 76 ^65000:3_0:194_0:75$ ip community-list expanded c119 permit 77 ^65000:3_0:195_0:76$ ip community-list expanded c119 permit 78 ^65000:3_0:196_0:77$ ip community-list expanded c119 permit 79 ^65000:3_0:197_0:78$ ip community-list expanded c119 permit 80 ^65000:3_0:198_0:79$ ip community-list expanded c119 permit 81 ^65000:3_0:199_0:80$ ip community-list expanded c119 permit 82 ^65000:3_0:200_0:81$ ip community-list expanded c119 permit 83 ^65000:3_0:201_0:82$ ip community-list expanded c119 permit 84 ^65000:3_0:202_0:83$ ip community-list expanded c119 permit 85 ^65000:3_0:203_0:84$ ip community-list expanded c119 permit 86 ^65000:3_0:204_0:85$ ip community-list expanded c119 permit 87 ^65000:3_0:205_0:86$ ip community-list expanded c119 permit 88 ^65000:3_0:206_0:87$ ip community-list expanded c119 permit 89 ^65000:3_0:207_0:88$ ip community-list expanded c119 permit 90 ^65000:3_0:208_0:89$ ip community-list expanded c119 permit 91 ^65000:3_0:209_0:90$ ip community-list expanded c119 permit 92 ^65000:3_0:210_0:91$ ip community-list expanded c119 permit 93 ^65000:3_0:211_0:92$ ip community-list expanded c119 permit 94 ^65000:3_0:212_0:93$ ip community-list expanded c119 permit 95 ^65000:3_0:213_0:94$ ip community-list expanded c119 permit 96 ^65000:3_0:214_0:95$ ip community-list expanded c119 permit 97 ^65000:3_0:215_0:96$ ip community-list expanded c119 permit 98 ^65000:3_0:216_0:97$ ip community-list expanded c119 permit 99 ^65000:3_0:217_0:98$ ip community-list expanded c119 permit 100 ^65000:3_0:218_0:99$ ip community-list expanded c119 permit 101 ^65000:3_0:219_0:100$ ip community-list expanded c119 permit 102 ^65000:3_0:220_0:101$ ip community-list expanded c119 permit 103 ^65000:3_0:221_0:102$ ip community-list expanded c119 permit 104 ^65000:3_0:222_0:103$ ip community-list expanded c119 permit 105 ^65000:3_0:223_0:104$ ip community-list expanded c119 permit 106 ^65000:3_0:224_0:105$ ip community-list expanded c119 permit 107 ^65000:3_0:225_0:106$ ip community-list expanded c119 permit 108 ^65000:3_0:226_0:107$ ip community-list expanded c119 permit 109 ^65000:3_0:227_0:108$ ip community-list expanded c119 permit 110 ^65000:3_0:228_0:109$ ip community-list expanded c119 permit 111 ^65000:3_0:229_0:110$ ip community-list expanded c119 permit 112 ^65000:3_0:230_0:111$ ip community-list expanded c119 permit 113 ^65000:3_0:231_0:112$ ip community-list expanded c119 permit 114 ^65000:3_0:232_0:113$ ip community-list expanded c119 permit 115 ^65000:3_0:233_0:114$ ip community-list expanded c119 permit 116 ^65000:3_0:234_0:115$ ip community-list expanded c119 permit 117 ^65000:3_0:235_0:116$ ip community-list expanded c119 permit 118 ^65000:3_0:236_0:117$ ip community-list expanded c119 permit 119 ^65000:3_0:237_0:118$ ip community-list expanded c119 permit 120 ^65000:4_0:238_0:2$ ip community-list expanded c119 permit 121 ^65000:3_0:238_0:119$ ip community-list expanded c119 permit 122 ^65000:4_0:239_0:2$ ip community-list expanded c119 permit 123 ^65000:3_0:239_0:120$ ip community-list expanded c119 permit 124 ^65000:3_0:240_0:121$ ip community-list expanded c119 permit 125 ^65000:3_0:241_0:122$ ip community-list expanded c119 permit 126 ^65000:3_0:242_0:123$ ip community-list expanded c119 permit 127 ^65000:3_0:243_0:124$ ip community-list expanded c119 permit 128 ^65000:3_0:244_0:125$ ip community-list expanded c119 permit 129 ^65000:3_0:245_0:126$ ip community-list expanded c119 permit 130 ^65000:3_0:246_0:127$ ip community-list expanded c119 permit 131 ^65000:3_0:247_0:128$ ip community-list expanded c119 permit 132 ^65000:3_0:248_0:129$ ip community-list expanded c119 permit 133 ^65000:3_0:249_0:130$ ip community-list expanded c119 permit 134 ^65000:3_0:250_0:131$ ip community-list expanded c119 permit 135 ^65000:3_0:251_0:132$ ip community-list expanded c119 permit 136 ^65000:3_0:252_0:133$ ip community-list expanded c119 permit 137 ^65000:3_0:253_0:134$ ip community-list expanded c119 permit 138 ^65000:3_0:254_0:135$ ip community-list expanded c119 permit 139 ^65000:3_0:255_0:136$ ip community-list expanded c119 permit 140 ^65000:3_0:256_0:137$ route-map calculator permit 31603 match community 1_1_118 2_1_119 1_2_117 1_3_116 1_4_115 set community 0:119 route-map calculator permit 31604 match community 1_5_114 1_6_113 2_7_17 1_7_112 1_8_111 set community 0:119 route-map calculator permit 31605 match community 1_9_110 1_10_109 1_11_108 1_12_107 1_13_106 set community 0:119 route-map calculator permit 31606 match community 1_14_105 1_15_104 1_16_103 1_17_102 1_18_101 set community 0:119 route-map calculator permit 31607 match community 1_19_100 1_20_99 1_21_98 1_22_97 1_23_96 set community 0:119 route-map calculator permit 31608 match community 1_24_95 1_25_94 1_26_93 1_27_92 1_28_91 set community 0:119 route-map calculator permit 31609 match community 1_29_90 1_30_89 1_31_88 1_32_87 1_33_86 set community 0:119 route-map calculator permit 31610 match community 1_34_85 1_35_84 1_36_83 1_37_82 1_38_81 set community 0:119 route-map calculator permit 31611 match community 1_39_80 1_40_79 1_41_78 1_42_77 1_43_76 set community 0:119 route-map calculator permit 31612 match community 1_44_75 1_45_74 1_46_73 1_47_72 1_48_71 set community 0:119 route-map calculator permit 31613 match community 1_49_70 1_50_69 1_51_68 1_52_67 1_53_66 set community 0:119 route-map calculator permit 31614 match community 1_54_65 1_55_64 1_56_63 1_57_62 1_58_61 set community 0:119 route-map calculator permit 31615 match community 1_59_60 c4_119_1 c3_120_1 c3_121_2 c3_122_3 set community 0:119 route-map calculator permit 31616 match community c3_123_4 c3_124_5 c3_125_6 c3_126_7 c3_127_8 set community 0:119 route-map calculator permit 31617 match community c3_128_9 c3_129_10 c3_130_11 c3_131_12 c3_132_13 set community 0:119 route-map calculator permit 31618 match community c3_133_14 c3_134_15 c3_135_16 c3_136_17 c3_137_18 set community 0:119 route-map calculator permit 31619 match community c3_138_19 c3_139_20 c3_140_21 c3_141_22 c3_142_23 set community 0:119 route-map calculator permit 31620 match community c3_143_24 c3_144_25 c3_145_26 c3_146_27 c3_147_28 set community 0:119 route-map calculator permit 31621 match community c3_148_29 c3_149_30 c3_150_31 c3_151_32 c3_152_33 set community 0:119 route-map calculator permit 31622 match community c3_153_34 c3_154_35 c3_155_36 c3_156_37 c3_157_38 set community 0:119 route-map calculator permit 31623 match community c3_158_39 c3_159_40 c3_160_41 c3_161_42 c3_162_43 set community 0:119 route-map calculator permit 31624 match community c3_163_44 c3_164_45 c3_165_46 c3_166_47 c3_167_48 set community 0:119 route-map calculator permit 31625 match community c3_168_49 c3_169_50 c3_170_51 c3_171_52 c3_172_53 set community 0:119 route-map calculator permit 31626 match community c3_173_54 c3_174_55 c3_175_56 c3_176_57 c3_177_58 set community 0:119 route-map calculator permit 31627 match community c3_178_59 c3_179_60 c3_180_61 c3_181_62 c3_182_63 set community 0:119 route-map calculator permit 31628 match community c3_183_64 c3_184_65 c3_185_66 c3_186_67 c3_187_68 set community 0:119 route-map calculator permit 31629 match community c3_188_69 c3_189_70 c3_190_71 c3_191_72 c3_192_73 set community 0:119 route-map calculator permit 31630 match community c3_193_74 c3_194_75 c3_195_76 c3_196_77 c3_197_78 set community 0:119 route-map calculator permit 31631 match community c3_198_79 c3_199_80 c3_200_81 c3_201_82 c3_202_83 set community 0:119 route-map calculator permit 31632 match community c3_203_84 c3_204_85 c3_205_86 c3_206_87 c3_207_88 set community 0:119 route-map calculator permit 31633 match community c3_208_89 c3_209_90 c3_210_91 c3_211_92 c3_212_93 set community 0:119 route-map calculator permit 31634 match community c3_213_94 c3_214_95 c3_215_96 c3_216_97 c3_217_98 set community 0:119 route-map calculator permit 31635 match community c3_218_99 c3_219_100 c3_220_101 c3_221_102 c3_222_103 set community 0:119 route-map calculator permit 31636 match community c3_223_104 c3_224_105 c3_225_106 c3_226_107 c3_227_108 set community 0:119 route-map calculator permit 31637 match community c3_228_109 c3_229_110 c3_230_111 c3_231_112 c3_232_113 set community 0:119 route-map calculator permit 31638 match community c3_233_114 c3_234_115 c3_235_116 c3_236_117 c3_237_118 set community 0:119 route-map calculator permit 31639 match community c4_238_2 c3_238_119 c4_239_2 c3_239_120 c3_240_121 set community 0:119 route-map calculator permit 31640 match community c3_241_122 c3_242_123 c3_243_124 c3_244_125 c3_245_126 set community 0:119 route-map calculator permit 31641 match community c3_246_127 c3_247_128 c3_248_129 c3_249_130 c3_250_131 set community 0:119 route-map calculator permit 31642 match community c3_251_132 c3_252_133 c3_253_134 c3_254_135 c3_255_136 set community 0:119 route-map calculator permit 31643 match community c3_256_137 set community 0:119 ip community-list standard 2_66_241 permit 65000:2 0:66 0:241 route-map calculator permit 31644 match community 2_66_241 set community 0:15906 ip community-list standard 2_47_247 permit 65000:2 0:47 0:247 route-map calculator permit 31645 match community 2_47_247 set community 0:11609 ip community-list standard 2_160_247 permit 65000:2 0:160 0:247 ip community-list standard 2_190_208 permit 65000:2 0:190 0:208 route-map calculator permit 31646 match community 2_160_247 2_190_208 set community 0:39520 ip community-list standard 2_51_242 permit 65000:2 0:51 0:242 ip community-list standard 2_66_187 permit 65000:2 0:66 0:187 ip community-list standard 2_102_121 permit 65000:2 0:102 0:121 route-map calculator permit 31647 match community 2_51_242 2_66_187 2_102_121 set community 0:12342 ip community-list standard 2_47_178 permit 65000:2 0:47 0:178 ip community-list standard 2_89_94 permit 65000:2 0:89 0:94 route-map calculator permit 31648 match community 2_47_178 2_89_94 set community 0:8366 ip community-list standard 2_43_176 permit 65000:2 0:43 0:176 ip community-list standard 2_44_172 permit 65000:2 0:44 0:172 ip community-list standard 2_86_88 permit 65000:2 0:86 0:88 route-map calculator permit 31649 match community 2_43_176 2_44_172 2_86_88 set community 0:7568 ip community-list standard 2_22_148 permit 65000:2 0:22 0:148 ip community-list standard 2_37_88 permit 65000:2 0:37 0:88 ip community-list standard 2_44_74 permit 65000:2 0:44 0:74 route-map calculator permit 31650 match community 2_22_148 2_37_88 2_44_74 set community 0:3256 ip community-list standard 2_211_244 permit 65000:2 0:211 0:244 route-map calculator permit 31651 match community 2_211_244 set community 0:51484 ip community-list standard 2_127_139 permit 65000:2 0:127 0:139 route-map calculator permit 31652 match community 2_127_139 set community 0:17653 ip community-list standard 2_85_109 permit 65000:2 0:85 0:109 route-map calculator permit 31653 match community 2_85_109 set community 0:9265 ip community-list standard 2_9_220 permit 65000:2 0:9 0:220 ip community-list standard 2_10_198 permit 65000:2 0:10 0:198 ip community-list standard 2_11_180 permit 65000:2 0:11 0:180 ip community-list standard 2_12_165 permit 65000:2 0:12 0:165 ip community-list standard 2_15_132 permit 65000:2 0:15 0:132 ip community-list standard 2_18_110 permit 65000:2 0:18 0:110 ip community-list standard 2_20_99 permit 65000:2 0:20 0:99 ip community-list standard 2_22_90 permit 65000:2 0:22 0:90 ip community-list standard 2_30_66 permit 65000:2 0:30 0:66 ip community-list standard 2_33_60 permit 65000:2 0:33 0:60 ip community-list standard 2_36_55 permit 65000:2 0:36 0:55 ip community-list standard 2_44_45 permit 65000:2 0:44 0:45 route-map calculator permit 31654 match community 2_9_220 2_10_198 2_11_180 2_12_165 2_15_132 set community 0:1980 route-map calculator permit 31655 match community 2_18_110 2_20_99 2_22_90 2_30_66 2_33_60 set community 0:1980 route-map calculator permit 31656 match community 2_36_55 2_44_45 set community 0:1980 ip community-list standard 2_100_232 permit 65000:2 0:100 0:232 ip community-list standard 2_116_200 permit 65000:2 0:116 0:200 ip community-list standard 2_145_160 permit 65000:2 0:145 0:160 route-map calculator permit 31657 match community 2_100_232 2_116_200 2_145_160 set community 0:23200 ip community-list standard 2_74_214 permit 65000:2 0:74 0:214 ip community-list standard 2_107_148 permit 65000:2 0:107 0:148 route-map calculator permit 31658 match community 2_74_214 2_107_148 set community 0:15836 ip community-list standard 2_53_122 permit 65000:2 0:53 0:122 ip community-list standard 2_61_106 permit 65000:2 0:61 0:106 route-map calculator permit 31659 match community 2_53_122 2_61_106 set community 0:6466 ip community-list standard 2_127_187 permit 65000:2 0:127 0:187 route-map calculator permit 31660 match community 2_127_187 set community 0:23749 ip community-list standard 2_73_232 permit 65000:2 0:73 0:232 ip community-list standard 2_116_146 permit 65000:2 0:116 0:146 route-map calculator permit 31661 match community 2_73_232 2_116_146 set community 0:16936 ip community-list standard 2_58_234 permit 65000:2 0:58 0:234 ip community-list standard 2_78_174 permit 65000:2 0:78 0:174 ip community-list standard 2_87_156 permit 65000:2 0:87 0:156 ip community-list standard 2_116_117 permit 65000:2 0:116 0:117 route-map calculator permit 31662 match community 2_58_234 2_78_174 2_87_156 2_116_117 set community 0:13572 ip community-list standard 2_113_185 permit 65000:2 0:113 0:185 route-map calculator permit 31663 match community 2_113_185 set community 0:20905 ip community-list standard 2_217_241 permit 65000:2 0:217 0:241 route-map calculator permit 31664 match community 2_217_241 set community 0:52297 ip community-list standard 2_101_245 permit 65000:2 0:101 0:245 route-map calculator permit 31665 match community 2_101_245 set community 0:24745 ip community-list standard 2_96_193 permit 65000:2 0:96 0:193 route-map calculator permit 31666 match community 2_96_193 set community 0:18528 ip community-list standard 2_196_254 permit 65000:2 0:196 0:254 route-map calculator permit 31667 match community 2_196_254 set community 0:49784 ip community-list standard 2_15_217 permit 65000:2 0:15 0:217 ip community-list standard 2_21_155 permit 65000:2 0:21 0:155 ip community-list standard 2_31_105 permit 65000:2 0:31 0:105 ip community-list standard 2_35_93 permit 65000:2 0:35 0:93 route-map calculator permit 31668 match community 2_15_217 2_21_155 2_31_105 2_35_93 set community 0:3255 ip community-list standard 2_87_180 permit 65000:2 0:87 0:180 ip community-list standard 2_90_174 permit 65000:2 0:90 0:174 ip community-list standard 2_108_145 permit 65000:2 0:108 0:145 ip community-list standard 2_116_135 permit 65000:2 0:116 0:135 route-map calculator permit 31669 match community 2_87_180 2_90_174 2_108_145 2_116_135 set community 0:15660 ip community-list standard 2_29_185 permit 65000:2 0:29 0:185 ip community-list standard 2_37_145 permit 65000:2 0:37 0:145 route-map calculator permit 31670 match community 2_29_185 2_37_145 set community 0:5365 ip community-list standard 2_5_127 permit 65000:2 0:5 0:127 route-map calculator permit 31671 match community 2_5_127 set community 0:635 ip community-list standard 2_61_199 permit 65000:2 0:61 0:199 route-map calculator permit 31672 match community 2_61_199 set community 0:12139 ip community-list standard 2_109_117 permit 65000:2 0:109 0:117 route-map calculator permit 31673 match community 2_109_117 set community 0:12753 ip community-list standard 2_186_234 permit 65000:2 0:186 0:234 route-map calculator permit 31674 match community 2_186_234 set community 0:43524 ip community-list standard 2_79_205 permit 65000:2 0:79 0:205 route-map calculator permit 31675 match community 2_79_205 set community 0:16195 ip community-list standard 2_111_183 permit 65000:2 0:111 0:183 route-map calculator permit 31676 match community 2_111_183 set community 0:20313 ip community-list standard 2_198_250 permit 65000:2 0:198 0:250 ip community-list standard 2_220_225 permit 65000:2 0:220 0:225 route-map calculator permit 31677 match community 2_198_250 2_220_225 set community 0:49500 ip community-list standard 2_187_236 permit 65000:2 0:187 0:236 route-map calculator permit 31678 match community 2_187_236 set community 0:44132 ip community-list standard 1_1_92 permit 65000:1 0:1 0:92 ip community-list standard 2_1_93 permit 65000:2 0:1 0:93 ip community-list standard 1_2_91 permit 65000:1 0:2 0:91 ip community-list standard 2_3_31 permit 65000:2 0:3 0:31 ip community-list standard 1_3_90 permit 65000:1 0:3 0:90 ip community-list standard 1_4_89 permit 65000:1 0:4 0:89 ip community-list standard 1_5_88 permit 65000:1 0:5 0:88 ip community-list standard 1_6_87 permit 65000:1 0:6 0:87 ip community-list standard 1_7_86 permit 65000:1 0:7 0:86 ip community-list standard 1_8_85 permit 65000:1 0:8 0:85 ip community-list standard 1_9_84 permit 65000:1 0:9 0:84 ip community-list standard 1_10_83 permit 65000:1 0:10 0:83 ip community-list standard 1_11_82 permit 65000:1 0:11 0:82 ip community-list standard 1_12_81 permit 65000:1 0:12 0:81 ip community-list standard 1_13_80 permit 65000:1 0:13 0:80 ip community-list standard 1_14_79 permit 65000:1 0:14 0:79 ip community-list standard 1_15_78 permit 65000:1 0:15 0:78 ip community-list standard 1_16_77 permit 65000:1 0:16 0:77 ip community-list standard 1_17_76 permit 65000:1 0:17 0:76 ip community-list standard 1_18_75 permit 65000:1 0:18 0:75 ip community-list standard 1_19_74 permit 65000:1 0:19 0:74 ip community-list standard 1_20_73 permit 65000:1 0:20 0:73 ip community-list standard 1_21_72 permit 65000:1 0:21 0:72 ip community-list standard 1_22_71 permit 65000:1 0:22 0:71 ip community-list standard 1_23_70 permit 65000:1 0:23 0:70 ip community-list standard 1_24_69 permit 65000:1 0:24 0:69 ip community-list standard 1_25_68 permit 65000:1 0:25 0:68 ip community-list standard 1_26_67 permit 65000:1 0:26 0:67 ip community-list standard 1_27_66 permit 65000:1 0:27 0:66 ip community-list standard 1_28_65 permit 65000:1 0:28 0:65 ip community-list standard 1_29_64 permit 65000:1 0:29 0:64 ip community-list standard 1_30_63 permit 65000:1 0:30 0:63 ip community-list standard 1_31_62 permit 65000:1 0:31 0:62 ip community-list standard 1_32_61 permit 65000:1 0:32 0:61 ip community-list standard 1_33_60 permit 65000:1 0:33 0:60 ip community-list standard 1_34_59 permit 65000:1 0:34 0:59 ip community-list standard 1_35_58 permit 65000:1 0:35 0:58 ip community-list standard 1_36_57 permit 65000:1 0:36 0:57 ip community-list standard 1_37_56 permit 65000:1 0:37 0:56 ip community-list standard 1_38_55 permit 65000:1 0:38 0:55 ip community-list standard 1_39_54 permit 65000:1 0:39 0:54 ip community-list standard 1_40_53 permit 65000:1 0:40 0:53 ip community-list standard 1_41_52 permit 65000:1 0:41 0:52 ip community-list standard 1_42_51 permit 65000:1 0:42 0:51 ip community-list standard 1_43_50 permit 65000:1 0:43 0:50 ip community-list standard 1_44_49 permit 65000:1 0:44 0:49 ip community-list standard 1_45_48 permit 65000:1 0:45 0:48 ip community-list standard 1_46_47 permit 65000:1 0:46 0:47 ip community-list expanded c93 permit 1 ^65000:4_0:93_0:1$ ip community-list expanded c93 permit 2 ^65000:3_0:94_0:1$ ip community-list expanded c93 permit 3 ^65000:3_0:95_0:2$ ip community-list expanded c93 permit 4 ^65000:3_0:96_0:3$ ip community-list expanded c93 permit 5 ^65000:3_0:97_0:4$ ip community-list expanded c93 permit 6 ^65000:3_0:98_0:5$ ip community-list expanded c93 permit 7 ^65000:3_0:99_0:6$ ip community-list expanded c93 permit 8 ^65000:3_0:100_0:7$ ip community-list expanded c93 permit 9 ^65000:3_0:101_0:8$ ip community-list expanded c93 permit 10 ^65000:3_0:102_0:9$ ip community-list expanded c93 permit 11 ^65000:3_0:103_0:10$ ip community-list expanded c93 permit 12 ^65000:3_0:104_0:11$ ip community-list expanded c93 permit 13 ^65000:3_0:105_0:12$ ip community-list expanded c93 permit 14 ^65000:3_0:106_0:13$ ip community-list expanded c93 permit 15 ^65000:3_0:107_0:14$ ip community-list expanded c93 permit 16 ^65000:3_0:108_0:15$ ip community-list expanded c93 permit 17 ^65000:3_0:109_0:16$ ip community-list expanded c93 permit 18 ^65000:3_0:110_0:17$ ip community-list expanded c93 permit 19 ^65000:3_0:111_0:18$ ip community-list expanded c93 permit 20 ^65000:3_0:112_0:19$ ip community-list expanded c93 permit 21 ^65000:3_0:113_0:20$ ip community-list expanded c93 permit 22 ^65000:3_0:114_0:21$ ip community-list expanded c93 permit 23 ^65000:3_0:115_0:22$ ip community-list expanded c93 permit 24 ^65000:3_0:116_0:23$ ip community-list expanded c93 permit 25 ^65000:3_0:117_0:24$ ip community-list expanded c93 permit 26 ^65000:3_0:118_0:25$ ip community-list expanded c93 permit 27 ^65000:3_0:119_0:26$ ip community-list expanded c93 permit 28 ^65000:3_0:120_0:27$ ip community-list expanded c93 permit 29 ^65000:3_0:121_0:28$ ip community-list expanded c93 permit 30 ^65000:3_0:122_0:29$ ip community-list expanded c93 permit 31 ^65000:3_0:123_0:30$ ip community-list expanded c93 permit 32 ^65000:3_0:124_0:31$ ip community-list expanded c93 permit 33 ^65000:3_0:125_0:32$ ip community-list expanded c93 permit 34 ^65000:3_0:126_0:33$ ip community-list expanded c93 permit 35 ^65000:3_0:127_0:34$ ip community-list expanded c93 permit 36 ^65000:3_0:128_0:35$ ip community-list expanded c93 permit 37 ^65000:3_0:129_0:36$ ip community-list expanded c93 permit 38 ^65000:3_0:130_0:37$ ip community-list expanded c93 permit 39 ^65000:3_0:131_0:38$ ip community-list expanded c93 permit 40 ^65000:3_0:132_0:39$ ip community-list expanded c93 permit 41 ^65000:3_0:133_0:40$ ip community-list expanded c93 permit 42 ^65000:3_0:134_0:41$ ip community-list expanded c93 permit 43 ^65000:3_0:135_0:42$ ip community-list expanded c93 permit 44 ^65000:3_0:136_0:43$ ip community-list expanded c93 permit 45 ^65000:3_0:137_0:44$ ip community-list expanded c93 permit 46 ^65000:3_0:138_0:45$ ip community-list expanded c93 permit 47 ^65000:3_0:139_0:46$ ip community-list expanded c93 permit 48 ^65000:3_0:140_0:47$ ip community-list expanded c93 permit 49 ^65000:3_0:141_0:48$ ip community-list expanded c93 permit 50 ^65000:3_0:142_0:49$ ip community-list expanded c93 permit 51 ^65000:3_0:143_0:50$ ip community-list expanded c93 permit 52 ^65000:3_0:144_0:51$ ip community-list expanded c93 permit 53 ^65000:3_0:145_0:52$ ip community-list expanded c93 permit 54 ^65000:3_0:146_0:53$ ip community-list expanded c93 permit 55 ^65000:3_0:147_0:54$ ip community-list expanded c93 permit 56 ^65000:3_0:148_0:55$ ip community-list expanded c93 permit 57 ^65000:3_0:149_0:56$ ip community-list expanded c93 permit 58 ^65000:3_0:150_0:57$ ip community-list expanded c93 permit 59 ^65000:3_0:151_0:58$ ip community-list expanded c93 permit 60 ^65000:3_0:152_0:59$ ip community-list expanded c93 permit 61 ^65000:3_0:153_0:60$ ip community-list expanded c93 permit 62 ^65000:3_0:154_0:61$ ip community-list expanded c93 permit 63 ^65000:3_0:155_0:62$ ip community-list expanded c93 permit 64 ^65000:3_0:156_0:63$ ip community-list expanded c93 permit 65 ^65000:3_0:157_0:64$ ip community-list expanded c93 permit 66 ^65000:3_0:158_0:65$ ip community-list expanded c93 permit 67 ^65000:3_0:159_0:66$ ip community-list expanded c93 permit 68 ^65000:3_0:160_0:67$ ip community-list expanded c93 permit 69 ^65000:3_0:161_0:68$ ip community-list expanded c93 permit 70 ^65000:3_0:162_0:69$ ip community-list expanded c93 permit 71 ^65000:3_0:163_0:70$ ip community-list expanded c93 permit 72 ^65000:3_0:164_0:71$ ip community-list expanded c93 permit 73 ^65000:3_0:165_0:72$ ip community-list expanded c93 permit 74 ^65000:3_0:166_0:73$ ip community-list expanded c93 permit 75 ^65000:3_0:167_0:74$ ip community-list expanded c93 permit 76 ^65000:3_0:168_0:75$ ip community-list expanded c93 permit 77 ^65000:3_0:169_0:76$ ip community-list expanded c93 permit 78 ^65000:3_0:170_0:77$ ip community-list expanded c93 permit 79 ^65000:3_0:171_0:78$ ip community-list expanded c93 permit 80 ^65000:3_0:172_0:79$ ip community-list expanded c93 permit 81 ^65000:3_0:173_0:80$ ip community-list expanded c93 permit 82 ^65000:3_0:174_0:81$ ip community-list expanded c93 permit 83 ^65000:3_0:175_0:82$ ip community-list expanded c93 permit 84 ^65000:3_0:176_0:83$ ip community-list expanded c93 permit 85 ^65000:3_0:177_0:84$ ip community-list expanded c93 permit 86 ^65000:3_0:178_0:85$ ip community-list expanded c93 permit 87 ^65000:3_0:179_0:86$ ip community-list expanded c93 permit 88 ^65000:3_0:180_0:87$ ip community-list expanded c93 permit 89 ^65000:3_0:181_0:88$ ip community-list expanded c93 permit 90 ^65000:3_0:182_0:89$ ip community-list expanded c93 permit 91 ^65000:3_0:183_0:90$ ip community-list expanded c93 permit 92 ^65000:3_0:184_0:91$ ip community-list expanded c93 permit 93 ^65000:3_0:185_0:92$ ip community-list expanded c93 permit 94 ^65000:4_0:186_0:2$ ip community-list expanded c93 permit 95 ^65000:3_0:186_0:93$ ip community-list expanded c93 permit 96 ^65000:4_0:187_0:2$ ip community-list expanded c93 permit 97 ^65000:3_0:187_0:94$ ip community-list expanded c93 permit 98 ^65000:3_0:188_0:95$ ip community-list expanded c93 permit 99 ^65000:3_0:189_0:96$ ip community-list expanded c93 permit 100 ^65000:3_0:190_0:97$ ip community-list expanded c93 permit 101 ^65000:3_0:191_0:98$ ip community-list expanded c93 permit 102 ^65000:3_0:192_0:99$ ip community-list expanded c93 permit 103 ^65000:3_0:193_0:100$ ip community-list expanded c93 permit 104 ^65000:3_0:194_0:101$ ip community-list expanded c93 permit 105 ^65000:3_0:195_0:102$ ip community-list expanded c93 permit 106 ^65000:3_0:196_0:103$ ip community-list expanded c93 permit 107 ^65000:3_0:197_0:104$ ip community-list expanded c93 permit 108 ^65000:3_0:198_0:105$ ip community-list expanded c93 permit 109 ^65000:3_0:199_0:106$ ip community-list expanded c93 permit 110 ^65000:3_0:200_0:107$ ip community-list expanded c93 permit 111 ^65000:3_0:201_0:108$ ip community-list expanded c93 permit 112 ^65000:3_0:202_0:109$ ip community-list expanded c93 permit 113 ^65000:3_0:203_0:110$ ip community-list expanded c93 permit 114 ^65000:3_0:204_0:111$ ip community-list expanded c93 permit 115 ^65000:3_0:205_0:112$ ip community-list expanded c93 permit 116 ^65000:3_0:206_0:113$ ip community-list expanded c93 permit 117 ^65000:3_0:207_0:114$ ip community-list expanded c93 permit 118 ^65000:3_0:208_0:115$ ip community-list expanded c93 permit 119 ^65000:3_0:209_0:116$ ip community-list expanded c93 permit 120 ^65000:3_0:210_0:117$ ip community-list expanded c93 permit 121 ^65000:3_0:211_0:118$ ip community-list expanded c93 permit 122 ^65000:3_0:212_0:119$ ip community-list expanded c93 permit 123 ^65000:3_0:213_0:120$ ip community-list expanded c93 permit 124 ^65000:3_0:214_0:121$ ip community-list expanded c93 permit 125 ^65000:3_0:215_0:122$ ip community-list expanded c93 permit 126 ^65000:3_0:216_0:123$ ip community-list expanded c93 permit 127 ^65000:3_0:217_0:124$ ip community-list expanded c93 permit 128 ^65000:3_0:218_0:125$ ip community-list expanded c93 permit 129 ^65000:3_0:219_0:126$ ip community-list expanded c93 permit 130 ^65000:3_0:220_0:127$ ip community-list expanded c93 permit 131 ^65000:3_0:221_0:128$ ip community-list expanded c93 permit 132 ^65000:3_0:222_0:129$ ip community-list expanded c93 permit 133 ^65000:3_0:223_0:130$ ip community-list expanded c93 permit 134 ^65000:3_0:224_0:131$ ip community-list expanded c93 permit 135 ^65000:3_0:225_0:132$ ip community-list expanded c93 permit 136 ^65000:3_0:226_0:133$ ip community-list expanded c93 permit 137 ^65000:3_0:227_0:134$ ip community-list expanded c93 permit 138 ^65000:3_0:228_0:135$ ip community-list expanded c93 permit 139 ^65000:3_0:229_0:136$ ip community-list expanded c93 permit 140 ^65000:3_0:230_0:137$ ip community-list expanded c93 permit 141 ^65000:3_0:231_0:138$ ip community-list expanded c93 permit 142 ^65000:3_0:232_0:139$ ip community-list expanded c93 permit 143 ^65000:3_0:233_0:140$ ip community-list expanded c93 permit 144 ^65000:3_0:234_0:141$ ip community-list expanded c93 permit 145 ^65000:3_0:235_0:142$ ip community-list expanded c93 permit 146 ^65000:3_0:236_0:143$ ip community-list expanded c93 permit 147 ^65000:3_0:237_0:144$ ip community-list expanded c93 permit 148 ^65000:3_0:238_0:145$ ip community-list expanded c93 permit 149 ^65000:3_0:239_0:146$ ip community-list expanded c93 permit 150 ^65000:3_0:240_0:147$ ip community-list expanded c93 permit 151 ^65000:3_0:241_0:148$ ip community-list expanded c93 permit 152 ^65000:3_0:242_0:149$ ip community-list expanded c93 permit 153 ^65000:3_0:243_0:150$ ip community-list expanded c93 permit 154 ^65000:3_0:244_0:151$ ip community-list expanded c93 permit 155 ^65000:3_0:245_0:152$ ip community-list expanded c93 permit 156 ^65000:3_0:246_0:153$ ip community-list expanded c93 permit 157 ^65000:3_0:247_0:154$ ip community-list expanded c93 permit 158 ^65000:3_0:248_0:155$ ip community-list expanded c93 permit 159 ^65000:3_0:249_0:156$ ip community-list expanded c93 permit 160 ^65000:3_0:250_0:157$ ip community-list expanded c93 permit 161 ^65000:3_0:251_0:158$ ip community-list expanded c93 permit 162 ^65000:3_0:252_0:159$ ip community-list expanded c93 permit 163 ^65000:3_0:253_0:160$ ip community-list expanded c93 permit 164 ^65000:3_0:254_0:161$ ip community-list expanded c93 permit 165 ^65000:3_0:255_0:162$ ip community-list expanded c93 permit 166 ^65000:3_0:256_0:163$ route-map calculator permit 31679 match community 1_1_92 2_1_93 1_2_91 2_3_31 1_3_90 set community 0:93 route-map calculator permit 31680 match community 1_4_89 1_5_88 1_6_87 1_7_86 1_8_85 set community 0:93 route-map calculator permit 31681 match community 1_9_84 1_10_83 1_11_82 1_12_81 1_13_80 set community 0:93 route-map calculator permit 31682 match community 1_14_79 1_15_78 1_16_77 1_17_76 1_18_75 set community 0:93 route-map calculator permit 31683 match community 1_19_74 1_20_73 1_21_72 1_22_71 1_23_70 set community 0:93 route-map calculator permit 31684 match community 1_24_69 1_25_68 1_26_67 1_27_66 1_28_65 set community 0:93 route-map calculator permit 31685 match community 1_29_64 1_30_63 1_31_62 1_32_61 1_33_60 set community 0:93 route-map calculator permit 31686 match community 1_34_59 1_35_58 1_36_57 1_37_56 1_38_55 set community 0:93 route-map calculator permit 31687 match community 1_39_54 1_40_53 1_41_52 1_42_51 1_43_50 set community 0:93 route-map calculator permit 31688 match community 1_44_49 1_45_48 1_46_47 c4_93_1 c3_94_1 set community 0:93 route-map calculator permit 31689 match community c3_95_2 c3_96_3 c3_97_4 c3_98_5 c3_99_6 set community 0:93 route-map calculator permit 31690 match community c3_100_7 c3_101_8 c3_102_9 c3_103_10 c3_104_11 set community 0:93 route-map calculator permit 31691 match community c3_105_12 c3_106_13 c3_107_14 c3_108_15 c3_109_16 set community 0:93 route-map calculator permit 31692 match community c3_110_17 c3_111_18 c3_112_19 c3_113_20 c3_114_21 set community 0:93 route-map calculator permit 31693 match community c3_115_22 c3_116_23 c3_117_24 c3_118_25 c3_119_26 set community 0:93 route-map calculator permit 31694 match community c3_120_27 c3_121_28 c3_122_29 c3_123_30 c3_124_31 set community 0:93 route-map calculator permit 31695 match community c3_125_32 c3_126_33 c3_127_34 c3_128_35 c3_129_36 set community 0:93 route-map calculator permit 31696 match community c3_130_37 c3_131_38 c3_132_39 c3_133_40 c3_134_41 set community 0:93 route-map calculator permit 31697 match community c3_135_42 c3_136_43 c3_137_44 c3_138_45 c3_139_46 set community 0:93 route-map calculator permit 31698 match community c3_140_47 c3_141_48 c3_142_49 c3_143_50 c3_144_51 set community 0:93 route-map calculator permit 31699 match community c3_145_52 c3_146_53 c3_147_54 c3_148_55 c3_149_56 set community 0:93 route-map calculator permit 31700 match community c3_150_57 c3_151_58 c3_152_59 c3_153_60 c3_154_61 set community 0:93 route-map calculator permit 31701 match community c3_155_62 c3_156_63 c3_157_64 c3_158_65 c3_159_66 set community 0:93 route-map calculator permit 31702 match community c3_160_67 c3_161_68 c3_162_69 c3_163_70 c3_164_71 set community 0:93 route-map calculator permit 31703 match community c3_165_72 c3_166_73 c3_167_74 c3_168_75 c3_169_76 set community 0:93 route-map calculator permit 31704 match community c3_170_77 c3_171_78 c3_172_79 c3_173_80 c3_174_81 set community 0:93 route-map calculator permit 31705 match community c3_175_82 c3_176_83 c3_177_84 c3_178_85 c3_179_86 set community 0:93 route-map calculator permit 31706 match community c3_180_87 c3_181_88 c3_182_89 c3_183_90 c3_184_91 set community 0:93 route-map calculator permit 31707 match community c3_185_92 c4_186_2 c3_186_93 c4_187_2 c3_187_94 set community 0:93 route-map calculator permit 31708 match community c3_188_95 c3_189_96 c3_190_97 c3_191_98 c3_192_99 set community 0:93 route-map calculator permit 31709 match community c3_193_100 c3_194_101 c3_195_102 c3_196_103 c3_197_104 set community 0:93 route-map calculator permit 31710 match community c3_198_105 c3_199_106 c3_200_107 c3_201_108 c3_202_109 set community 0:93 route-map calculator permit 31711 match community c3_203_110 c3_204_111 c3_205_112 c3_206_113 c3_207_114 set community 0:93 route-map calculator permit 31712 match community c3_208_115 c3_209_116 c3_210_117 c3_211_118 c3_212_119 set community 0:93 route-map calculator permit 31713 match community c3_213_120 c3_214_121 c3_215_122 c3_216_123 c3_217_124 set community 0:93 route-map calculator permit 31714 match community c3_218_125 c3_219_126 c3_220_127 c3_221_128 c3_222_129 set community 0:93 route-map calculator permit 31715 match community c3_223_130 c3_224_131 c3_225_132 c3_226_133 c3_227_134 set community 0:93 route-map calculator permit 31716 match community c3_228_135 c3_229_136 c3_230_137 c3_231_138 c3_232_139 set community 0:93 route-map calculator permit 31717 match community c3_233_140 c3_234_141 c3_235_142 c3_236_143 c3_237_144 set community 0:93 route-map calculator permit 31718 match community c3_238_145 c3_239_146 c3_240_147 c3_241_148 c3_242_149 set community 0:93 route-map calculator permit 31719 match community c3_243_150 c3_244_151 c3_245_152 c3_246_153 c3_247_154 set community 0:93 route-map calculator permit 31720 match community c3_248_155 c3_249_156 c3_250_157 c3_251_158 c3_252_159 set community 0:93 route-map calculator permit 31721 match community c3_253_160 c3_254_161 c3_255_162 c3_256_163 set community 0:93 ip community-list standard 2_35_59 permit 65000:2 0:35 0:59 route-map calculator permit 31722 match community 2_35_59 set community 0:2065 ip community-list standard 2_66_248 permit 65000:2 0:66 0:248 ip community-list standard 2_88_186 permit 65000:2 0:88 0:186 ip community-list standard 2_93_176 permit 65000:2 0:93 0:176 ip community-list standard 2_124_132 permit 65000:2 0:124 0:132 route-map calculator permit 31723 match community 2_66_248 2_88_186 2_93_176 2_124_132 set community 0:16368 ip community-list standard 2_23_41 permit 65000:2 0:23 0:41 route-map calculator permit 31724 match community 2_23_41 set community 0:943 ip community-list standard 2_210_253 permit 65000:2 0:210 0:253 ip community-list standard 2_230_231 permit 65000:2 0:230 0:231 route-map calculator permit 31725 match community 2_210_253 2_230_231 set community 0:53130 ip community-list standard 2_125_127 permit 65000:2 0:125 0:127 route-map calculator permit 31726 match community 2_125_127 set community 0:15875 ip community-list standard 2_44_225 permit 65000:2 0:44 0:225 ip community-list standard 2_45_220 permit 65000:2 0:45 0:220 ip community-list standard 2_50_198 permit 65000:2 0:50 0:198 ip community-list standard 2_55_180 permit 65000:2 0:55 0:180 ip community-list standard 2_60_165 permit 65000:2 0:60 0:165 ip community-list standard 2_66_150 permit 65000:2 0:66 0:150 ip community-list standard 2_75_132 permit 65000:2 0:75 0:132 ip community-list standard 2_90_110 permit 65000:2 0:90 0:110 ip community-list standard 2_99_100 permit 65000:2 0:99 0:100 route-map calculator permit 31727 match community 2_44_225 2_45_220 2_50_198 2_55_180 2_60_165 set community 0:9900 route-map calculator permit 31728 match community 2_66_150 2_75_132 2_90_110 2_99_100 set community 0:9900 ip community-list standard 2_191_233 permit 65000:2 0:191 0:233 route-map calculator permit 31729 match community 2_191_233 set community 0:44503 ip community-list standard 2_107_216 permit 65000:2 0:107 0:216 ip community-list standard 2_108_214 permit 65000:2 0:108 0:214 route-map calculator permit 31730 match community 2_107_216 2_108_214 set community 0:23112 ip community-list standard 2_251_252 permit 65000:2 0:251 0:252 route-map calculator permit 31731 match community 2_251_252 set community 0:63252 ip community-list standard 2_8_238 permit 65000:2 0:8 0:238 ip community-list standard 2_14_136 permit 65000:2 0:14 0:136 ip community-list standard 2_16_119 permit 65000:2 0:16 0:119 ip community-list standard 2_17_112 permit 65000:2 0:17 0:112 ip community-list standard 2_28_68 permit 65000:2 0:28 0:68 ip community-list standard 2_34_56 permit 65000:2 0:34 0:56 route-map calculator permit 31732 match community 2_8_238 2_14_136 2_16_119 2_17_112 2_28_68 set community 0:1904 route-map calculator permit 31733 match community 2_34_56 set community 0:1904 ip community-list standard 1_231_256 permit 65000:1 0:231 0:256 ip community-list standard 1_232_255 permit 65000:1 0:232 0:255 ip community-list standard 1_233_254 permit 65000:1 0:233 0:254 ip community-list standard 1_234_253 permit 65000:1 0:234 0:253 ip community-list standard 1_235_252 permit 65000:1 0:235 0:252 ip community-list standard 1_236_251 permit 65000:1 0:236 0:251 ip community-list standard 1_237_250 permit 65000:1 0:237 0:250 ip community-list standard 1_238_249 permit 65000:1 0:238 0:249 ip community-list standard 1_239_248 permit 65000:1 0:239 0:248 ip community-list standard 1_240_247 permit 65000:1 0:240 0:247 ip community-list standard 1_241_246 permit 65000:1 0:241 0:246 ip community-list standard 1_242_245 permit 65000:1 0:242 0:245 ip community-list standard 1_243_244 permit 65000:1 0:243 0:244 route-map calculator permit 31734 match community 1_231_256 1_232_255 1_233_254 1_234_253 1_235_252 set community 0:487 route-map calculator permit 31735 match community 1_236_251 1_237_250 1_238_249 1_239_248 1_240_247 set community 0:487 route-map calculator permit 31736 match community 1_241_246 1_242_245 1_243_244 set community 0:487 ip community-list standard 2_114_203 permit 65000:2 0:114 0:203 ip community-list standard 2_133_174 permit 65000:2 0:133 0:174 route-map calculator permit 31737 match community 2_114_203 2_133_174 set community 0:23142 ip community-list standard 2_14_248 permit 65000:2 0:14 0:248 ip community-list standard 2_16_217 permit 65000:2 0:16 0:217 ip community-list standard 2_28_124 permit 65000:2 0:28 0:124 ip community-list standard 2_31_112 permit 65000:2 0:31 0:112 ip community-list standard 2_56_62 permit 65000:2 0:56 0:62 route-map calculator permit 31738 match community 2_14_248 2_16_217 2_28_124 2_31_112 2_56_62 set community 0:3472 ip community-list standard 2_17_162 permit 65000:2 0:17 0:162 ip community-list standard 2_18_153 permit 65000:2 0:18 0:153 ip community-list standard 2_27_102 permit 65000:2 0:27 0:102 ip community-list standard 2_34_81 permit 65000:2 0:34 0:81 ip community-list standard 2_51_54 permit 65000:2 0:51 0:54 route-map calculator permit 31739 match community 2_17_162 2_18_153 2_27_102 2_34_81 2_51_54 set community 0:2754 ip community-list standard 2_43_79 permit 65000:2 0:43 0:79 route-map calculator permit 31740 match community 2_43_79 set community 0:3397 ip community-list standard 2_150_194 permit 65000:2 0:150 0:194 route-map calculator permit 31741 match community 2_150_194 set community 0:29100 ip community-list standard 2_26_240 permit 65000:2 0:26 0:240 ip community-list standard 2_30_208 permit 65000:2 0:30 0:208 ip community-list standard 2_32_195 permit 65000:2 0:32 0:195 ip community-list standard 2_39_160 permit 65000:2 0:39 0:160 ip community-list standard 2_40_156 permit 65000:2 0:40 0:156 ip community-list standard 2_48_130 permit 65000:2 0:48 0:130 ip community-list standard 2_52_120 permit 65000:2 0:52 0:120 ip community-list standard 2_60_104 permit 65000:2 0:60 0:104 ip community-list standard 2_65_96 permit 65000:2 0:65 0:96 ip community-list standard 2_78_80 permit 65000:2 0:78 0:80 route-map calculator permit 31742 match community 2_26_240 2_30_208 2_32_195 2_39_160 2_40_156 set community 0:6240 route-map calculator permit 31743 match community 2_48_130 2_52_120 2_60_104 2_65_96 2_78_80 set community 0:6240 ip community-list standard 2_201_208 permit 65000:2 0:201 0:208 route-map calculator permit 31744 match community 2_201_208 set community 0:41808 ip community-list standard 2_234_242 permit 65000:2 0:234 0:242 route-map calculator permit 31745 match community 2_234_242 set community 0:56628 ip community-list standard 2_155_213 permit 65000:2 0:155 0:213 route-map calculator permit 31746 match community 2_155_213 set community 0:33015 ip community-list standard 2_67_79 permit 65000:2 0:67 0:79 route-map calculator permit 31747 match community 2_67_79 set community 0:5293 ip community-list standard 2_76_248 permit 65000:2 0:76 0:248 ip community-list standard 2_124_152 permit 65000:2 0:124 0:152 route-map calculator permit 31748 match community 2_76_248 2_124_152 set community 0:18848 ip community-list standard 2_56_218 permit 65000:2 0:56 0:218 ip community-list standard 2_109_112 permit 65000:2 0:109 0:112 route-map calculator permit 31749 match community 2_56_218 2_109_112 set community 0:12208 ip community-list standard 2_159_183 permit 65000:2 0:159 0:183 route-map calculator permit 31750 match community 2_159_183 set community 0:29097 ip community-list standard 2_90_209 permit 65000:2 0:90 0:209 ip community-list standard 2_95_198 permit 65000:2 0:95 0:198 ip community-list standard 2_99_190 permit 65000:2 0:99 0:190 ip community-list standard 2_110_171 permit 65000:2 0:110 0:171 ip community-list standard 2_114_165 permit 65000:2 0:114 0:165 route-map calculator permit 31751 match community 2_90_209 2_95_198 2_99_190 2_110_171 2_114_165 set community 0:18810 ip community-list standard 2_50_212 permit 65000:2 0:50 0:212 ip community-list standard 2_53_200 permit 65000:2 0:53 0:200 ip community-list standard 2_100_106 permit 65000:2 0:100 0:106 route-map calculator permit 31752 match community 2_50_212 2_53_200 2_100_106 set community 0:10600 ip community-list standard 2_10_209 permit 65000:2 0:10 0:209 ip community-list standard 2_11_190 permit 65000:2 0:11 0:190 ip community-list standard 2_19_110 permit 65000:2 0:19 0:110 ip community-list standard 2_22_95 permit 65000:2 0:22 0:95 ip community-list standard 2_38_55 permit 65000:2 0:38 0:55 route-map calculator permit 31753 match community 2_10_209 2_11_190 2_19_110 2_22_95 2_38_55 set community 0:2090 ip community-list standard 2_2_256 permit 65000:2 0:2 0:256 ip community-list standard 2_4_128 permit 65000:2 0:4 0:128 ip community-list standard 2_8_64 permit 65000:2 0:8 0:64 ip community-list standard 2_16_32 permit 65000:2 0:16 0:32 ip community-list standard 1_256_256 permit 65000:1 0:256 0:256 route-map calculator permit 31754 match community 2_2_256 2_4_128 2_8_64 2_16_32 1_256_256 set community 0:512 ip community-list standard 2_19_37 permit 65000:2 0:19 0:37 route-map calculator permit 31755 match community 2_19_37 set community 0:703 ip community-list standard 2_234_239 permit 65000:2 0:234 0:239 route-map calculator permit 31756 match community 2_234_239 set community 0:55926 ip community-list standard 2_146_166 permit 65000:2 0:146 0:166 route-map calculator permit 31757 match community 2_146_166 set community 0:24236 ip community-list standard 2_107_246 permit 65000:2 0:107 0:246 ip community-list standard 2_123_214 permit 65000:2 0:123 0:214 route-map calculator permit 31758 match community 2_107_246 2_123_214 set community 0:26322 ip community-list standard 2_37_94 permit 65000:2 0:37 0:94 ip community-list standard 2_47_74 permit 65000:2 0:47 0:74 route-map calculator permit 31759 match community 2_37_94 2_47_74 set community 0:3478 ip community-list standard 2_73_154 permit 65000:2 0:73 0:154 ip community-list standard 2_77_146 permit 65000:2 0:77 0:146 route-map calculator permit 31760 match community 2_73_154 2_77_146 set community 0:11242 ip community-list standard 2_164_235 permit 65000:2 0:164 0:235 ip community-list standard 2_188_205 permit 65000:2 0:188 0:205 route-map calculator permit 31761 match community 2_164_235 2_188_205 set community 0:38540 ip community-list standard 2_132_226 permit 65000:2 0:132 0:226 route-map calculator permit 31762 match community 2_132_226 set community 0:29832 ip community-list standard 2_214_231 permit 65000:2 0:214 0:231 route-map calculator permit 31763 match community 2_214_231 set community 0:49434 ip community-list standard 2_143_245 permit 65000:2 0:143 0:245 route-map calculator permit 31764 match community 2_143_245 set community 0:35035 ip community-list standard 2_38_256 permit 65000:2 0:38 0:256 ip community-list standard 2_64_152 permit 65000:2 0:64 0:152 ip community-list standard 2_76_128 permit 65000:2 0:76 0:128 route-map calculator permit 31765 match community 2_38_256 2_64_152 2_76_128 set community 0:9728 ip community-list standard 2_20_214 permit 65000:2 0:20 0:214 ip community-list standard 2_40_107 permit 65000:2 0:40 0:107 route-map calculator permit 31766 match community 2_20_214 2_40_107 set community 0:4280 ip community-list standard 2_76_158 permit 65000:2 0:76 0:158 ip community-list standard 2_79_152 permit 65000:2 0:79 0:152 route-map calculator permit 31767 match community 2_76_158 2_79_152 set community 0:12008 ip community-list standard 2_25_245 permit 65000:2 0:25 0:245 ip community-list standard 2_35_175 permit 65000:2 0:35 0:175 ip community-list standard 2_49_125 permit 65000:2 0:49 0:125 route-map calculator permit 31768 match community 2_25_245 2_35_175 2_49_125 set community 0:6125 ip community-list standard 2_28_193 permit 65000:2 0:28 0:193 route-map calculator permit 31769 match community 2_28_193 set community 0:5404 ip community-list standard 2_197_200 permit 65000:2 0:197 0:200 route-map calculator permit 31770 match community 2_197_200 set community 0:39400 ip community-list standard 2_2_251 permit 65000:2 0:2 0:251 ip community-list standard 1_246_256 permit 65000:1 0:246 0:256 ip community-list standard 1_247_255 permit 65000:1 0:247 0:255 ip community-list standard 1_248_254 permit 65000:1 0:248 0:254 ip community-list standard 1_249_253 permit 65000:1 0:249 0:253 ip community-list standard 1_250_252 permit 65000:1 0:250 0:252 ip community-list standard 1_251_251 permit 65000:1 0:251 0:251 route-map calculator permit 31771 match community 2_2_251 1_246_256 1_247_255 1_248_254 1_249_253 set community 0:502 route-map calculator permit 31772 match community 1_250_252 1_251_251 set community 0:502 ip community-list standard 2_198_235 permit 65000:2 0:198 0:235 route-map calculator permit 31773 match community 2_198_235 set community 0:46530 ip community-list standard 2_55_178 permit 65000:2 0:55 0:178 ip community-list standard 2_89_110 permit 65000:2 0:89 0:110 route-map calculator permit 31774 match community 2_55_178 2_89_110 set community 0:9790 ip community-list standard 1_187_256 permit 65000:1 0:187 0:256 ip community-list standard 1_188_255 permit 65000:1 0:188 0:255 ip community-list standard 1_189_254 permit 65000:1 0:189 0:254 ip community-list standard 1_190_253 permit 65000:1 0:190 0:253 ip community-list standard 1_191_252 permit 65000:1 0:191 0:252 ip community-list standard 1_192_251 permit 65000:1 0:192 0:251 ip community-list standard 1_193_250 permit 65000:1 0:193 0:250 ip community-list standard 1_194_249 permit 65000:1 0:194 0:249 ip community-list standard 1_195_248 permit 65000:1 0:195 0:248 ip community-list standard 1_196_247 permit 65000:1 0:196 0:247 ip community-list standard 1_197_246 permit 65000:1 0:197 0:246 ip community-list standard 1_198_245 permit 65000:1 0:198 0:245 ip community-list standard 1_199_244 permit 65000:1 0:199 0:244 ip community-list standard 1_200_243 permit 65000:1 0:200 0:243 ip community-list standard 1_201_242 permit 65000:1 0:201 0:242 ip community-list standard 1_202_241 permit 65000:1 0:202 0:241 ip community-list standard 1_203_240 permit 65000:1 0:203 0:240 ip community-list standard 1_204_239 permit 65000:1 0:204 0:239 ip community-list standard 1_205_238 permit 65000:1 0:205 0:238 ip community-list standard 1_206_237 permit 65000:1 0:206 0:237 ip community-list standard 1_207_236 permit 65000:1 0:207 0:236 ip community-list standard 1_208_235 permit 65000:1 0:208 0:235 ip community-list standard 1_209_234 permit 65000:1 0:209 0:234 ip community-list standard 1_210_233 permit 65000:1 0:210 0:233 ip community-list standard 1_211_232 permit 65000:1 0:211 0:232 ip community-list standard 1_212_231 permit 65000:1 0:212 0:231 ip community-list standard 1_213_230 permit 65000:1 0:213 0:230 ip community-list standard 1_214_229 permit 65000:1 0:214 0:229 ip community-list standard 1_215_228 permit 65000:1 0:215 0:228 ip community-list standard 1_216_227 permit 65000:1 0:216 0:227 ip community-list standard 1_217_226 permit 65000:1 0:217 0:226 ip community-list standard 1_218_225 permit 65000:1 0:218 0:225 ip community-list standard 1_219_224 permit 65000:1 0:219 0:224 ip community-list standard 1_220_223 permit 65000:1 0:220 0:223 ip community-list standard 1_221_222 permit 65000:1 0:221 0:222 route-map calculator permit 31775 match community 1_187_256 1_188_255 1_189_254 1_190_253 1_191_252 set community 0:443 route-map calculator permit 31776 match community 1_192_251 1_193_250 1_194_249 1_195_248 1_196_247 set community 0:443 route-map calculator permit 31777 match community 1_197_246 1_198_245 1_199_244 1_200_243 1_201_242 set community 0:443 route-map calculator permit 31778 match community 1_202_241 1_203_240 1_204_239 1_205_238 1_206_237 set community 0:443 route-map calculator permit 31779 match community 1_207_236 1_208_235 1_209_234 1_210_233 1_211_232 set community 0:443 route-map calculator permit 31780 match community 1_212_231 1_213_230 1_214_229 1_215_228 1_216_227 set community 0:443 route-map calculator permit 31781 match community 1_217_226 1_218_225 1_219_224 1_220_223 1_221_222 set community 0:443 ip community-list standard 2_181_197 permit 65000:2 0:181 0:197 route-map calculator permit 31782 match community 2_181_197 set community 0:35657 ip community-list standard 2_71_221 permit 65000:2 0:71 0:221 route-map calculator permit 31783 match community 2_71_221 set community 0:15691 ip community-list standard 2_213_234 permit 65000:2 0:213 0:234 route-map calculator permit 31784 match community 2_213_234 set community 0:49842 ip community-list standard 2_71_199 permit 65000:2 0:71 0:199 route-map calculator permit 31785 match community 2_71_199 set community 0:14129 ip community-list standard 2_70_202 permit 65000:2 0:70 0:202 ip community-list standard 2_101_140 permit 65000:2 0:101 0:140 route-map calculator permit 31786 match community 2_70_202 2_101_140 set community 0:14140 ip community-list standard 2_30_228 permit 65000:2 0:30 0:228 ip community-list standard 2_36_190 permit 65000:2 0:36 0:190 ip community-list standard 2_38_180 permit 65000:2 0:38 0:180 ip community-list standard 2_40_171 permit 65000:2 0:40 0:171 ip community-list standard 2_45_152 permit 65000:2 0:45 0:152 ip community-list standard 2_57_120 permit 65000:2 0:57 0:120 ip community-list standard 2_60_114 permit 65000:2 0:60 0:114 ip community-list standard 2_72_95 permit 65000:2 0:72 0:95 ip community-list standard 2_76_90 permit 65000:2 0:76 0:90 route-map calculator permit 31787 match community 2_30_228 2_36_190 2_38_180 2_40_171 2_45_152 set community 0:6840 route-map calculator permit 31788 match community 2_57_120 2_60_114 2_72_95 2_76_90 set community 0:6840 ip community-list standard 2_41_86 permit 65000:2 0:41 0:86 ip community-list standard 2_43_82 permit 65000:2 0:43 0:82 route-map calculator permit 31789 match community 2_41_86 2_43_82 set community 0:3526 ip community-list standard 2_2_188 permit 65000:2 0:2 0:188 ip community-list standard 2_4_94 permit 65000:2 0:4 0:94 ip community-list standard 2_8_47 permit 65000:2 0:8 0:47 ip community-list standard 1_120_256 permit 65000:1 0:120 0:256 ip community-list standard 1_121_255 permit 65000:1 0:121 0:255 ip community-list standard 1_122_254 permit 65000:1 0:122 0:254 ip community-list standard 1_123_253 permit 65000:1 0:123 0:253 ip community-list standard 1_124_252 permit 65000:1 0:124 0:252 ip community-list standard 1_125_251 permit 65000:1 0:125 0:251 ip community-list standard 1_126_250 permit 65000:1 0:126 0:250 ip community-list standard 1_127_249 permit 65000:1 0:127 0:249 ip community-list standard 1_128_248 permit 65000:1 0:128 0:248 ip community-list standard 1_129_247 permit 65000:1 0:129 0:247 ip community-list standard 1_130_246 permit 65000:1 0:130 0:246 ip community-list standard 1_131_245 permit 65000:1 0:131 0:245 ip community-list standard 1_132_244 permit 65000:1 0:132 0:244 ip community-list standard 1_133_243 permit 65000:1 0:133 0:243 ip community-list standard 1_134_242 permit 65000:1 0:134 0:242 ip community-list standard 1_135_241 permit 65000:1 0:135 0:241 ip community-list standard 1_136_240 permit 65000:1 0:136 0:240 ip community-list standard 1_137_239 permit 65000:1 0:137 0:239 ip community-list standard 1_138_238 permit 65000:1 0:138 0:238 ip community-list standard 1_139_237 permit 65000:1 0:139 0:237 ip community-list standard 1_140_236 permit 65000:1 0:140 0:236 ip community-list standard 1_141_235 permit 65000:1 0:141 0:235 ip community-list standard 1_142_234 permit 65000:1 0:142 0:234 ip community-list standard 1_143_233 permit 65000:1 0:143 0:233 ip community-list standard 1_144_232 permit 65000:1 0:144 0:232 ip community-list standard 1_145_231 permit 65000:1 0:145 0:231 ip community-list standard 1_146_230 permit 65000:1 0:146 0:230 ip community-list standard 1_147_229 permit 65000:1 0:147 0:229 ip community-list standard 1_148_228 permit 65000:1 0:148 0:228 ip community-list standard 1_149_227 permit 65000:1 0:149 0:227 ip community-list standard 1_150_226 permit 65000:1 0:150 0:226 ip community-list standard 1_151_225 permit 65000:1 0:151 0:225 ip community-list standard 1_152_224 permit 65000:1 0:152 0:224 ip community-list standard 1_153_223 permit 65000:1 0:153 0:223 ip community-list standard 1_154_222 permit 65000:1 0:154 0:222 ip community-list standard 1_155_221 permit 65000:1 0:155 0:221 ip community-list standard 1_156_220 permit 65000:1 0:156 0:220 ip community-list standard 1_157_219 permit 65000:1 0:157 0:219 ip community-list standard 1_158_218 permit 65000:1 0:158 0:218 ip community-list standard 1_159_217 permit 65000:1 0:159 0:217 ip community-list standard 1_160_216 permit 65000:1 0:160 0:216 ip community-list standard 1_161_215 permit 65000:1 0:161 0:215 ip community-list standard 1_162_214 permit 65000:1 0:162 0:214 ip community-list standard 1_163_213 permit 65000:1 0:163 0:213 ip community-list standard 1_164_212 permit 65000:1 0:164 0:212 ip community-list standard 1_165_211 permit 65000:1 0:165 0:211 ip community-list standard 1_166_210 permit 65000:1 0:166 0:210 ip community-list standard 1_167_209 permit 65000:1 0:167 0:209 ip community-list standard 1_168_208 permit 65000:1 0:168 0:208 ip community-list standard 1_169_207 permit 65000:1 0:169 0:207 ip community-list standard 1_170_206 permit 65000:1 0:170 0:206 ip community-list standard 1_171_205 permit 65000:1 0:171 0:205 ip community-list standard 1_172_204 permit 65000:1 0:172 0:204 ip community-list standard 1_173_203 permit 65000:1 0:173 0:203 ip community-list standard 1_174_202 permit 65000:1 0:174 0:202 ip community-list standard 1_175_201 permit 65000:1 0:175 0:201 ip community-list standard 1_176_200 permit 65000:1 0:176 0:200 ip community-list standard 1_177_199 permit 65000:1 0:177 0:199 ip community-list standard 1_178_198 permit 65000:1 0:178 0:198 ip community-list standard 1_179_197 permit 65000:1 0:179 0:197 ip community-list standard 1_180_196 permit 65000:1 0:180 0:196 ip community-list standard 1_181_195 permit 65000:1 0:181 0:195 ip community-list standard 1_182_194 permit 65000:1 0:182 0:194 ip community-list standard 1_183_193 permit 65000:1 0:183 0:193 ip community-list standard 1_184_192 permit 65000:1 0:184 0:192 ip community-list standard 1_185_191 permit 65000:1 0:185 0:191 ip community-list standard 1_186_190 permit 65000:1 0:186 0:190 ip community-list standard 1_187_189 permit 65000:1 0:187 0:189 ip community-list standard 1_188_188 permit 65000:1 0:188 0:188 route-map calculator permit 31790 match community 2_2_188 2_4_94 2_8_47 1_120_256 1_121_255 set community 0:376 route-map calculator permit 31791 match community 1_122_254 1_123_253 1_124_252 1_125_251 1_126_250 set community 0:376 route-map calculator permit 31792 match community 1_127_249 1_128_248 1_129_247 1_130_246 1_131_245 set community 0:376 route-map calculator permit 31793 match community 1_132_244 1_133_243 1_134_242 1_135_241 1_136_240 set community 0:376 route-map calculator permit 31794 match community 1_137_239 1_138_238 1_139_237 1_140_236 1_141_235 set community 0:376 route-map calculator permit 31795 match community 1_142_234 1_143_233 1_144_232 1_145_231 1_146_230 set community 0:376 route-map calculator permit 31796 match community 1_147_229 1_148_228 1_149_227 1_150_226 1_151_225 set community 0:376 route-map calculator permit 31797 match community 1_152_224 1_153_223 1_154_222 1_155_221 1_156_220 set community 0:376 route-map calculator permit 31798 match community 1_157_219 1_158_218 1_159_217 1_160_216 1_161_215 set community 0:376 route-map calculator permit 31799 match community 1_162_214 1_163_213 1_164_212 1_165_211 1_166_210 set community 0:376 route-map calculator permit 31800 match community 1_167_209 1_168_208 1_169_207 1_170_206 1_171_205 set community 0:376 route-map calculator permit 31801 match community 1_172_204 1_173_203 1_174_202 1_175_201 1_176_200 set community 0:376 route-map calculator permit 31802 match community 1_177_199 1_178_198 1_179_197 1_180_196 1_181_195 set community 0:376 route-map calculator permit 31803 match community 1_182_194 1_183_193 1_184_192 1_185_191 1_186_190 set community 0:376 route-map calculator permit 31804 match community 1_187_189 1_188_188 set community 0:376 ip community-list standard 2_115_241 permit 65000:2 0:115 0:241 route-map calculator permit 31805 match community 2_115_241 set community 0:27715 ip community-list standard 2_79_161 permit 65000:2 0:79 0:161 route-map calculator permit 31806 match community 2_79_161 set community 0:12719 ip community-list standard 2_47_236 permit 65000:2 0:47 0:236 ip community-list standard 2_59_188 permit 65000:2 0:59 0:188 ip community-list standard 2_94_118 permit 65000:2 0:94 0:118 route-map calculator permit 31807 match community 2_47_236 2_59_188 2_94_118 set community 0:11092 ip community-list standard 2_88_254 permit 65000:2 0:88 0:254 ip community-list standard 2_127_176 permit 65000:2 0:127 0:176 route-map calculator permit 31808 match community 2_88_254 2_127_176 set community 0:22352 ip community-list standard 2_171_223 permit 65000:2 0:171 0:223 route-map calculator permit 31809 match community 2_171_223 set community 0:38133 ip community-list standard 2_207_236 permit 65000:2 0:207 0:236 route-map calculator permit 31810 match community 2_207_236 set community 0:48852 ip community-list standard 2_81_245 permit 65000:2 0:81 0:245 ip community-list standard 2_105_189 permit 65000:2 0:105 0:189 ip community-list standard 2_135_147 permit 65000:2 0:135 0:147 route-map calculator permit 31811 match community 2_81_245 2_105_189 2_135_147 set community 0:19845 ip community-list standard 2_73_160 permit 65000:2 0:73 0:160 ip community-list standard 2_80_146 permit 65000:2 0:80 0:146 route-map calculator permit 31812 match community 2_73_160 2_80_146 set community 0:11680 ip community-list standard 2_43_232 permit 65000:2 0:43 0:232 ip community-list standard 2_58_172 permit 65000:2 0:58 0:172 ip community-list standard 2_86_116 permit 65000:2 0:86 0:116 route-map calculator permit 31813 match community 2_43_232 2_58_172 2_86_116 set community 0:9976 ip community-list standard 2_230_245 permit 65000:2 0:230 0:245 route-map calculator permit 31814 match community 2_230_245 set community 0:56350 ip community-list standard 2_131_156 permit 65000:2 0:131 0:156 route-map calculator permit 31815 match community 2_131_156 set community 0:20436 ip community-list standard 2_103_219 permit 65000:2 0:103 0:219 route-map calculator permit 31816 match community 2_103_219 set community 0:22557 ip community-list standard 2_168_193 permit 65000:2 0:168 0:193 route-map calculator permit 31817 match community 2_168_193 set community 0:32424 ip community-list standard 2_104_245 permit 65000:2 0:104 0:245 ip community-list standard 2_130_196 permit 65000:2 0:130 0:196 ip community-list standard 2_140_182 permit 65000:2 0:140 0:182 route-map calculator permit 31818 match community 2_104_245 2_130_196 2_140_182 set community 0:25480 ip community-list standard 2_157_209 permit 65000:2 0:157 0:209 route-map calculator permit 31819 match community 2_157_209 set community 0:32813 ip community-list standard 2_129_181 permit 65000:2 0:129 0:181 route-map calculator permit 31820 match community 2_129_181 set community 0:23349 ip community-list standard 2_52_246 permit 65000:2 0:52 0:246 ip community-list standard 2_78_164 permit 65000:2 0:78 0:164 ip community-list standard 2_82_156 permit 65000:2 0:82 0:156 ip community-list standard 2_104_123 permit 65000:2 0:104 0:123 route-map calculator permit 31821 match community 2_52_246 2_78_164 2_82_156 2_104_123 set community 0:12792 ip community-list standard 2_86_234 permit 65000:2 0:86 0:234 ip community-list standard 2_117_172 permit 65000:2 0:117 0:172 ip community-list standard 2_129_156 permit 65000:2 0:129 0:156 route-map calculator permit 31822 match community 2_86_234 2_117_172 2_129_156 set community 0:20124 ip community-list standard 2_27_248 permit 65000:2 0:27 0:248 ip community-list standard 2_31_216 permit 65000:2 0:31 0:216 ip community-list standard 2_36_186 permit 65000:2 0:36 0:186 ip community-list standard 2_54_124 permit 65000:2 0:54 0:124 ip community-list standard 2_62_108 permit 65000:2 0:62 0:108 ip community-list standard 2_72_93 permit 65000:2 0:72 0:93 route-map calculator permit 31823 match community 2_27_248 2_31_216 2_36_186 2_54_124 2_62_108 set community 0:6696 route-map calculator permit 31824 match community 2_72_93 set community 0:6696 ip community-list standard 2_69_216 permit 65000:2 0:69 0:216 ip community-list standard 2_72_207 permit 65000:2 0:72 0:207 ip community-list standard 2_81_184 permit 65000:2 0:81 0:184 ip community-list standard 2_92_162 permit 65000:2 0:92 0:162 ip community-list standard 2_108_138 permit 65000:2 0:108 0:138 route-map calculator permit 31825 match community 2_69_216 2_72_207 2_81_184 2_92_162 2_108_138 set community 0:14904 ip community-list standard 2_157_166 permit 65000:2 0:157 0:166 route-map calculator permit 31826 match community 2_157_166 set community 0:26062 ip community-list standard 2_152_218 permit 65000:2 0:152 0:218 route-map calculator permit 31827 match community 2_152_218 set community 0:33136 ip community-list standard 1_1_14 permit 65000:1 0:1 0:14 ip community-list standard 2_1_15 permit 65000:2 0:1 0:15 ip community-list standard 1_2_13 permit 65000:1 0:2 0:13 ip community-list standard 2_3_5 permit 65000:2 0:3 0:5 ip community-list standard 1_3_12 permit 65000:1 0:3 0:12 ip community-list standard 1_4_11 permit 65000:1 0:4 0:11 ip community-list standard 1_5_10 permit 65000:1 0:5 0:10 ip community-list standard 1_6_9 permit 65000:1 0:6 0:9 ip community-list standard 1_7_8 permit 65000:1 0:7 0:8 ip community-list expanded c15 permit 1 ^65000:4_0:15_0:1$ ip community-list expanded c15 permit 2 ^65000:3_0:16_0:1$ ip community-list expanded c15 permit 3 ^65000:3_0:17_0:2$ ip community-list expanded c15 permit 4 ^65000:3_0:18_0:3$ ip community-list expanded c15 permit 5 ^65000:3_0:19_0:4$ ip community-list expanded c15 permit 6 ^65000:3_0:20_0:5$ ip community-list expanded c15 permit 7 ^65000:3_0:21_0:6$ ip community-list expanded c15 permit 8 ^65000:3_0:22_0:7$ ip community-list expanded c15 permit 9 ^65000:3_0:23_0:8$ ip community-list expanded c15 permit 10 ^65000:3_0:24_0:9$ ip community-list expanded c15 permit 11 ^65000:3_0:25_0:10$ ip community-list expanded c15 permit 12 ^65000:3_0:26_0:11$ ip community-list expanded c15 permit 13 ^65000:3_0:27_0:12$ ip community-list expanded c15 permit 14 ^65000:3_0:28_0:13$ ip community-list expanded c15 permit 15 ^65000:3_0:29_0:14$ ip community-list expanded c15 permit 16 ^65000:4_0:30_0:2$ ip community-list expanded c15 permit 17 ^65000:3_0:30_0:15$ ip community-list expanded c15 permit 18 ^65000:4_0:31_0:2$ ip community-list expanded c15 permit 19 ^65000:3_0:31_0:16$ ip community-list expanded c15 permit 20 ^65000:3_0:32_0:17$ ip community-list expanded c15 permit 21 ^65000:3_0:33_0:18$ ip community-list expanded c15 permit 22 ^65000:3_0:34_0:19$ ip community-list expanded c15 permit 23 ^65000:3_0:35_0:20$ ip community-list expanded c15 permit 24 ^65000:3_0:36_0:21$ ip community-list expanded c15 permit 25 ^65000:3_0:37_0:22$ ip community-list expanded c15 permit 26 ^65000:3_0:38_0:23$ ip community-list expanded c15 permit 27 ^65000:3_0:39_0:24$ ip community-list expanded c15 permit 28 ^65000:3_0:40_0:25$ ip community-list expanded c15 permit 29 ^65000:3_0:41_0:26$ ip community-list expanded c15 permit 30 ^65000:3_0:42_0:27$ ip community-list expanded c15 permit 31 ^65000:3_0:43_0:28$ ip community-list expanded c15 permit 32 ^65000:3_0:44_0:29$ ip community-list expanded c15 permit 33 ^65000:4_0:45_0:3$ ip community-list expanded c15 permit 34 ^65000:3_0:45_0:30$ ip community-list expanded c15 permit 35 ^65000:4_0:46_0:3$ ip community-list expanded c15 permit 36 ^65000:3_0:46_0:31$ ip community-list expanded c15 permit 37 ^65000:4_0:47_0:3$ ip community-list expanded c15 permit 38 ^65000:3_0:47_0:32$ ip community-list expanded c15 permit 39 ^65000:3_0:48_0:33$ ip community-list expanded c15 permit 40 ^65000:3_0:49_0:34$ ip community-list expanded c15 permit 41 ^65000:3_0:50_0:35$ ip community-list expanded c15 permit 42 ^65000:3_0:51_0:36$ ip community-list expanded c15 permit 43 ^65000:3_0:52_0:37$ ip community-list expanded c15 permit 44 ^65000:3_0:53_0:38$ ip community-list expanded c15 permit 45 ^65000:3_0:54_0:39$ ip community-list expanded c15 permit 46 ^65000:3_0:55_0:40$ ip community-list expanded c15 permit 47 ^65000:3_0:56_0:41$ ip community-list expanded c15 permit 48 ^65000:3_0:57_0:42$ ip community-list expanded c15 permit 49 ^65000:3_0:58_0:43$ ip community-list expanded c15 permit 50 ^65000:3_0:59_0:44$ ip community-list expanded c15 permit 51 ^65000:4_0:60_0:4$ ip community-list expanded c15 permit 52 ^65000:3_0:60_0:45$ ip community-list expanded c15 permit 53 ^65000:4_0:61_0:4$ ip community-list expanded c15 permit 54 ^65000:3_0:61_0:46$ ip community-list expanded c15 permit 55 ^65000:4_0:62_0:4$ ip community-list expanded c15 permit 56 ^65000:3_0:62_0:47$ ip community-list expanded c15 permit 57 ^65000:4_0:63_0:4$ ip community-list expanded c15 permit 58 ^65000:3_0:63_0:48$ ip community-list expanded c15 permit 59 ^65000:3_0:64_0:49$ ip community-list expanded c15 permit 60 ^65000:3_0:65_0:50$ ip community-list expanded c15 permit 61 ^65000:3_0:66_0:51$ ip community-list expanded c15 permit 62 ^65000:3_0:67_0:52$ ip community-list expanded c15 permit 63 ^65000:3_0:68_0:53$ ip community-list expanded c15 permit 64 ^65000:3_0:69_0:54$ ip community-list expanded c15 permit 65 ^65000:3_0:70_0:55$ ip community-list expanded c15 permit 66 ^65000:3_0:71_0:56$ ip community-list expanded c15 permit 67 ^65000:3_0:72_0:57$ ip community-list expanded c15 permit 68 ^65000:3_0:73_0:58$ ip community-list expanded c15 permit 69 ^65000:3_0:74_0:59$ ip community-list expanded c15 permit 70 ^65000:4_0:75_0:5$ ip community-list expanded c15 permit 71 ^65000:3_0:75_0:60$ ip community-list expanded c15 permit 72 ^65000:4_0:76_0:5$ ip community-list expanded c15 permit 73 ^65000:3_0:76_0:61$ ip community-list expanded c15 permit 74 ^65000:4_0:77_0:5$ ip community-list expanded c15 permit 75 ^65000:3_0:77_0:62$ ip community-list expanded c15 permit 76 ^65000:4_0:78_0:5$ ip community-list expanded c15 permit 77 ^65000:3_0:78_0:63$ ip community-list expanded c15 permit 78 ^65000:4_0:79_0:5$ ip community-list expanded c15 permit 79 ^65000:3_0:79_0:64$ ip community-list expanded c15 permit 80 ^65000:3_0:80_0:65$ ip community-list expanded c15 permit 81 ^65000:3_0:81_0:66$ ip community-list expanded c15 permit 82 ^65000:3_0:82_0:67$ ip community-list expanded c15 permit 83 ^65000:3_0:83_0:68$ ip community-list expanded c15 permit 84 ^65000:3_0:84_0:69$ ip community-list expanded c15 permit 85 ^65000:3_0:85_0:70$ ip community-list expanded c15 permit 86 ^65000:3_0:86_0:71$ ip community-list expanded c15 permit 87 ^65000:3_0:87_0:72$ ip community-list expanded c15 permit 88 ^65000:3_0:88_0:73$ ip community-list expanded c15 permit 89 ^65000:3_0:89_0:74$ ip community-list expanded c15 permit 90 ^65000:4_0:90_0:6$ ip community-list expanded c15 permit 91 ^65000:3_0:90_0:75$ ip community-list expanded c15 permit 92 ^65000:4_0:91_0:6$ ip community-list expanded c15 permit 93 ^65000:3_0:91_0:76$ ip community-list expanded c15 permit 94 ^65000:4_0:92_0:6$ ip community-list expanded c15 permit 95 ^65000:3_0:92_0:77$ ip community-list expanded c15 permit 96 ^65000:4_0:93_0:6$ ip community-list expanded c15 permit 97 ^65000:3_0:93_0:78$ ip community-list expanded c15 permit 98 ^65000:4_0:94_0:6$ ip community-list expanded c15 permit 99 ^65000:3_0:94_0:79$ ip community-list expanded c15 permit 100 ^65000:4_0:95_0:6$ ip community-list expanded c15 permit 101 ^65000:3_0:95_0:80$ ip community-list expanded c15 permit 102 ^65000:3_0:96_0:81$ ip community-list expanded c15 permit 103 ^65000:3_0:97_0:82$ ip community-list expanded c15 permit 104 ^65000:3_0:98_0:83$ ip community-list expanded c15 permit 105 ^65000:3_0:99_0:84$ ip community-list expanded c15 permit 106 ^65000:3_0:100_0:85$ ip community-list expanded c15 permit 107 ^65000:3_0:101_0:86$ ip community-list expanded c15 permit 108 ^65000:3_0:102_0:87$ ip community-list expanded c15 permit 109 ^65000:3_0:103_0:88$ ip community-list expanded c15 permit 110 ^65000:3_0:104_0:89$ ip community-list expanded c15 permit 111 ^65000:4_0:105_0:7$ ip community-list expanded c15 permit 112 ^65000:3_0:105_0:90$ ip community-list expanded c15 permit 113 ^65000:4_0:106_0:7$ ip community-list expanded c15 permit 114 ^65000:3_0:106_0:91$ ip community-list expanded c15 permit 115 ^65000:4_0:107_0:7$ ip community-list expanded c15 permit 116 ^65000:3_0:107_0:92$ ip community-list expanded c15 permit 117 ^65000:4_0:108_0:7$ ip community-list expanded c15 permit 118 ^65000:3_0:108_0:93$ ip community-list expanded c15 permit 119 ^65000:4_0:109_0:7$ ip community-list expanded c15 permit 120 ^65000:3_0:109_0:94$ ip community-list expanded c15 permit 121 ^65000:4_0:110_0:7$ ip community-list expanded c15 permit 122 ^65000:3_0:110_0:95$ ip community-list expanded c15 permit 123 ^65000:4_0:111_0:7$ ip community-list expanded c15 permit 124 ^65000:3_0:111_0:96$ ip community-list expanded c15 permit 125 ^65000:3_0:112_0:97$ ip community-list expanded c15 permit 126 ^65000:3_0:113_0:98$ ip community-list expanded c15 permit 127 ^65000:3_0:114_0:99$ ip community-list expanded c15 permit 128 ^65000:3_0:115_0:100$ ip community-list expanded c15 permit 129 ^65000:3_0:116_0:101$ ip community-list expanded c15 permit 130 ^65000:3_0:117_0:102$ ip community-list expanded c15 permit 131 ^65000:3_0:118_0:103$ ip community-list expanded c15 permit 132 ^65000:3_0:119_0:104$ ip community-list expanded c15 permit 133 ^65000:4_0:120_0:8$ ip community-list expanded c15 permit 134 ^65000:3_0:120_0:105$ ip community-list expanded c15 permit 135 ^65000:4_0:121_0:8$ ip community-list expanded c15 permit 136 ^65000:3_0:121_0:106$ ip community-list expanded c15 permit 137 ^65000:4_0:122_0:8$ ip community-list expanded c15 permit 138 ^65000:3_0:122_0:107$ ip community-list expanded c15 permit 139 ^65000:4_0:123_0:8$ ip community-list expanded c15 permit 140 ^65000:3_0:123_0:108$ ip community-list expanded c15 permit 141 ^65000:4_0:124_0:8$ ip community-list expanded c15 permit 142 ^65000:3_0:124_0:109$ ip community-list expanded c15 permit 143 ^65000:4_0:125_0:8$ ip community-list expanded c15 permit 144 ^65000:3_0:125_0:110$ ip community-list expanded c15 permit 145 ^65000:4_0:126_0:8$ ip community-list expanded c15 permit 146 ^65000:3_0:126_0:111$ ip community-list expanded c15 permit 147 ^65000:4_0:127_0:8$ ip community-list expanded c15 permit 148 ^65000:3_0:127_0:112$ ip community-list expanded c15 permit 149 ^65000:3_0:128_0:113$ ip community-list expanded c15 permit 150 ^65000:3_0:129_0:114$ ip community-list expanded c15 permit 151 ^65000:3_0:130_0:115$ ip community-list expanded c15 permit 152 ^65000:3_0:131_0:116$ ip community-list expanded c15 permit 153 ^65000:3_0:132_0:117$ ip community-list expanded c15 permit 154 ^65000:3_0:133_0:118$ ip community-list expanded c15 permit 155 ^65000:3_0:134_0:119$ ip community-list expanded c15 permit 156 ^65000:4_0:135_0:9$ ip community-list expanded c15 permit 157 ^65000:3_0:135_0:120$ ip community-list expanded c15 permit 158 ^65000:4_0:136_0:9$ ip community-list expanded c15 permit 159 ^65000:3_0:136_0:121$ ip community-list expanded c15 permit 160 ^65000:4_0:137_0:9$ ip community-list expanded c15 permit 161 ^65000:3_0:137_0:122$ ip community-list expanded c15 permit 162 ^65000:4_0:138_0:9$ ip community-list expanded c15 permit 163 ^65000:3_0:138_0:123$ ip community-list expanded c15 permit 164 ^65000:4_0:139_0:9$ ip community-list expanded c15 permit 165 ^65000:3_0:139_0:124$ ip community-list expanded c15 permit 166 ^65000:4_0:140_0:9$ ip community-list expanded c15 permit 167 ^65000:3_0:140_0:125$ ip community-list expanded c15 permit 168 ^65000:4_0:141_0:9$ ip community-list expanded c15 permit 169 ^65000:3_0:141_0:126$ ip community-list expanded c15 permit 170 ^65000:4_0:142_0:9$ ip community-list expanded c15 permit 171 ^65000:3_0:142_0:127$ ip community-list expanded c15 permit 172 ^65000:4_0:143_0:9$ ip community-list expanded c15 permit 173 ^65000:3_0:143_0:128$ ip community-list expanded c15 permit 174 ^65000:3_0:144_0:129$ ip community-list expanded c15 permit 175 ^65000:3_0:145_0:130$ ip community-list expanded c15 permit 176 ^65000:3_0:146_0:131$ ip community-list expanded c15 permit 177 ^65000:3_0:147_0:132$ ip community-list expanded c15 permit 178 ^65000:3_0:148_0:133$ ip community-list expanded c15 permit 179 ^65000:3_0:149_0:134$ ip community-list expanded c15 permit 180 ^65000:4_0:150_0:10$ ip community-list expanded c15 permit 181 ^65000:3_0:150_0:135$ ip community-list expanded c15 permit 182 ^65000:4_0:151_0:10$ ip community-list expanded c15 permit 183 ^65000:3_0:151_0:136$ ip community-list expanded c15 permit 184 ^65000:4_0:152_0:10$ ip community-list expanded c15 permit 185 ^65000:3_0:152_0:137$ ip community-list expanded c15 permit 186 ^65000:4_0:153_0:10$ ip community-list expanded c15 permit 187 ^65000:3_0:153_0:138$ ip community-list expanded c15 permit 188 ^65000:4_0:154_0:10$ ip community-list expanded c15 permit 189 ^65000:3_0:154_0:139$ ip community-list expanded c15 permit 190 ^65000:4_0:155_0:10$ ip community-list expanded c15 permit 191 ^65000:3_0:155_0:140$ ip community-list expanded c15 permit 192 ^65000:4_0:156_0:10$ ip community-list expanded c15 permit 193 ^65000:3_0:156_0:141$ ip community-list expanded c15 permit 194 ^65000:4_0:157_0:10$ ip community-list expanded c15 permit 195 ^65000:3_0:157_0:142$ ip community-list expanded c15 permit 196 ^65000:4_0:158_0:10$ ip community-list expanded c15 permit 197 ^65000:3_0:158_0:143$ ip community-list expanded c15 permit 198 ^65000:4_0:159_0:10$ ip community-list expanded c15 permit 199 ^65000:3_0:159_0:144$ ip community-list expanded c15 permit 200 ^65000:3_0:160_0:145$ ip community-list expanded c15 permit 201 ^65000:3_0:161_0:146$ ip community-list expanded c15 permit 202 ^65000:3_0:162_0:147$ ip community-list expanded c15 permit 203 ^65000:3_0:163_0:148$ ip community-list expanded c15 permit 204 ^65000:3_0:164_0:149$ ip community-list expanded c15 permit 205 ^65000:4_0:165_0:11$ ip community-list expanded c15 permit 206 ^65000:3_0:165_0:150$ ip community-list expanded c15 permit 207 ^65000:4_0:166_0:11$ ip community-list expanded c15 permit 208 ^65000:3_0:166_0:151$ ip community-list expanded c15 permit 209 ^65000:4_0:167_0:11$ ip community-list expanded c15 permit 210 ^65000:3_0:167_0:152$ ip community-list expanded c15 permit 211 ^65000:4_0:168_0:11$ ip community-list expanded c15 permit 212 ^65000:3_0:168_0:153$ ip community-list expanded c15 permit 213 ^65000:4_0:169_0:11$ ip community-list expanded c15 permit 214 ^65000:3_0:169_0:154$ ip community-list expanded c15 permit 215 ^65000:4_0:170_0:11$ ip community-list expanded c15 permit 216 ^65000:3_0:170_0:155$ ip community-list expanded c15 permit 217 ^65000:4_0:171_0:11$ ip community-list expanded c15 permit 218 ^65000:3_0:171_0:156$ ip community-list expanded c15 permit 219 ^65000:4_0:172_0:11$ ip community-list expanded c15 permit 220 ^65000:3_0:172_0:157$ ip community-list expanded c15 permit 221 ^65000:4_0:173_0:11$ ip community-list expanded c15 permit 222 ^65000:3_0:173_0:158$ ip community-list expanded c15 permit 223 ^65000:4_0:174_0:11$ ip community-list expanded c15 permit 224 ^65000:3_0:174_0:159$ ip community-list expanded c15 permit 225 ^65000:4_0:175_0:11$ ip community-list expanded c15 permit 226 ^65000:3_0:175_0:160$ ip community-list expanded c15 permit 227 ^65000:3_0:176_0:161$ ip community-list expanded c15 permit 228 ^65000:3_0:177_0:162$ ip community-list expanded c15 permit 229 ^65000:3_0:178_0:163$ ip community-list expanded c15 permit 230 ^65000:3_0:179_0:164$ ip community-list expanded c15 permit 231 ^65000:4_0:180_0:12$ ip community-list expanded c15 permit 232 ^65000:3_0:180_0:165$ ip community-list expanded c15 permit 233 ^65000:4_0:181_0:12$ ip community-list expanded c15 permit 234 ^65000:3_0:181_0:166$ ip community-list expanded c15 permit 235 ^65000:4_0:182_0:12$ ip community-list expanded c15 permit 236 ^65000:3_0:182_0:167$ ip community-list expanded c15 permit 237 ^65000:4_0:183_0:12$ ip community-list expanded c15 permit 238 ^65000:3_0:183_0:168$ ip community-list expanded c15 permit 239 ^65000:4_0:184_0:12$ ip community-list expanded c15 permit 240 ^65000:3_0:184_0:169$ ip community-list expanded c15 permit 241 ^65000:4_0:185_0:12$ ip community-list expanded c15 permit 242 ^65000:3_0:185_0:170$ ip community-list expanded c15 permit 243 ^65000:4_0:186_0:12$ ip community-list expanded c15 permit 244 ^65000:3_0:186_0:171$ ip community-list expanded c15 permit 245 ^65000:4_0:187_0:12$ ip community-list expanded c15 permit 246 ^65000:3_0:187_0:172$ ip community-list expanded c15 permit 247 ^65000:4_0:188_0:12$ ip community-list expanded c15 permit 248 ^65000:3_0:188_0:173$ ip community-list expanded c15 permit 249 ^65000:4_0:189_0:12$ ip community-list expanded c15 permit 250 ^65000:3_0:189_0:174$ ip community-list expanded c15 permit 251 ^65000:4_0:190_0:12$ ip community-list expanded c15 permit 252 ^65000:3_0:190_0:175$ ip community-list expanded c15 permit 253 ^65000:4_0:191_0:12$ ip community-list expanded c15 permit 254 ^65000:3_0:191_0:176$ ip community-list expanded c15 permit 255 ^65000:3_0:192_0:177$ ip community-list expanded c15 permit 256 ^65000:3_0:193_0:178$ ip community-list expanded c15 permit 257 ^65000:3_0:194_0:179$ ip community-list expanded c15 permit 258 ^65000:4_0:195_0:13$ ip community-list expanded c15 permit 259 ^65000:3_0:195_0:180$ ip community-list expanded c15 permit 260 ^65000:4_0:196_0:13$ ip community-list expanded c15 permit 261 ^65000:3_0:196_0:181$ ip community-list expanded c15 permit 262 ^65000:4_0:197_0:13$ ip community-list expanded c15 permit 263 ^65000:3_0:197_0:182$ ip community-list expanded c15 permit 264 ^65000:4_0:198_0:13$ ip community-list expanded c15 permit 265 ^65000:3_0:198_0:183$ ip community-list expanded c15 permit 266 ^65000:4_0:199_0:13$ ip community-list expanded c15 permit 267 ^65000:3_0:199_0:184$ ip community-list expanded c15 permit 268 ^65000:4_0:200_0:13$ ip community-list expanded c15 permit 269 ^65000:3_0:200_0:185$ ip community-list expanded c15 permit 270 ^65000:4_0:201_0:13$ ip community-list expanded c15 permit 271 ^65000:3_0:201_0:186$ ip community-list expanded c15 permit 272 ^65000:4_0:202_0:13$ ip community-list expanded c15 permit 273 ^65000:3_0:202_0:187$ ip community-list expanded c15 permit 274 ^65000:4_0:203_0:13$ ip community-list expanded c15 permit 275 ^65000:3_0:203_0:188$ ip community-list expanded c15 permit 276 ^65000:4_0:204_0:13$ ip community-list expanded c15 permit 277 ^65000:3_0:204_0:189$ ip community-list expanded c15 permit 278 ^65000:4_0:205_0:13$ ip community-list expanded c15 permit 279 ^65000:3_0:205_0:190$ ip community-list expanded c15 permit 280 ^65000:4_0:206_0:13$ ip community-list expanded c15 permit 281 ^65000:3_0:206_0:191$ ip community-list expanded c15 permit 282 ^65000:4_0:207_0:13$ ip community-list expanded c15 permit 283 ^65000:3_0:207_0:192$ ip community-list expanded c15 permit 284 ^65000:3_0:208_0:193$ ip community-list expanded c15 permit 285 ^65000:3_0:209_0:194$ ip community-list expanded c15 permit 286 ^65000:4_0:210_0:14$ ip community-list expanded c15 permit 287 ^65000:3_0:210_0:195$ ip community-list expanded c15 permit 288 ^65000:4_0:211_0:14$ ip community-list expanded c15 permit 289 ^65000:3_0:211_0:196$ ip community-list expanded c15 permit 290 ^65000:4_0:212_0:14$ ip community-list expanded c15 permit 291 ^65000:3_0:212_0:197$ ip community-list expanded c15 permit 292 ^65000:4_0:213_0:14$ ip community-list expanded c15 permit 293 ^65000:3_0:213_0:198$ ip community-list expanded c15 permit 294 ^65000:4_0:214_0:14$ ip community-list expanded c15 permit 295 ^65000:3_0:214_0:199$ ip community-list expanded c15 permit 296 ^65000:4_0:215_0:14$ ip community-list expanded c15 permit 297 ^65000:3_0:215_0:200$ ip community-list expanded c15 permit 298 ^65000:4_0:216_0:14$ ip community-list expanded c15 permit 299 ^65000:3_0:216_0:201$ ip community-list expanded c15 permit 300 ^65000:4_0:217_0:14$ ip community-list expanded c15 permit 301 ^65000:3_0:217_0:202$ ip community-list expanded c15 permit 302 ^65000:4_0:218_0:14$ ip community-list expanded c15 permit 303 ^65000:3_0:218_0:203$ ip community-list expanded c15 permit 304 ^65000:4_0:219_0:14$ ip community-list expanded c15 permit 305 ^65000:3_0:219_0:204$ ip community-list expanded c15 permit 306 ^65000:4_0:220_0:14$ ip community-list expanded c15 permit 307 ^65000:3_0:220_0:205$ ip community-list expanded c15 permit 308 ^65000:4_0:221_0:14$ ip community-list expanded c15 permit 309 ^65000:3_0:221_0:206$ ip community-list expanded c15 permit 310 ^65000:4_0:222_0:14$ ip community-list expanded c15 permit 311 ^65000:3_0:222_0:207$ ip community-list expanded c15 permit 312 ^65000:4_0:223_0:14$ ip community-list expanded c15 permit 313 ^65000:3_0:223_0:208$ ip community-list expanded c15 permit 314 ^65000:3_0:224_0:209$ ip community-list expanded c15 permit 315 ^65000:4_0:225_0:15$ ip community-list expanded c15 permit 316 ^65000:3_0:225_0:210$ ip community-list expanded c15 permit 317 ^65000:4_0:226_0:15$ ip community-list expanded c15 permit 318 ^65000:3_0:226_0:211$ ip community-list expanded c15 permit 319 ^65000:4_0:227_0:15$ ip community-list expanded c15 permit 320 ^65000:3_0:227_0:212$ ip community-list expanded c15 permit 321 ^65000:4_0:228_0:15$ ip community-list expanded c15 permit 322 ^65000:3_0:228_0:213$ ip community-list expanded c15 permit 323 ^65000:4_0:229_0:15$ ip community-list expanded c15 permit 324 ^65000:3_0:229_0:214$ ip community-list expanded c15 permit 325 ^65000:4_0:230_0:15$ ip community-list expanded c15 permit 326 ^65000:3_0:230_0:215$ ip community-list expanded c15 permit 327 ^65000:4_0:231_0:15$ ip community-list expanded c15 permit 328 ^65000:3_0:231_0:216$ ip community-list expanded c15 permit 329 ^65000:4_0:232_0:15$ ip community-list expanded c15 permit 330 ^65000:3_0:232_0:217$ ip community-list expanded c15 permit 331 ^65000:4_0:233_0:15$ ip community-list expanded c15 permit 332 ^65000:3_0:233_0:218$ ip community-list expanded c15 permit 333 ^65000:4_0:234_0:15$ ip community-list expanded c15 permit 334 ^65000:3_0:234_0:219$ ip community-list expanded c15 permit 335 ^65000:4_0:235_0:15$ ip community-list expanded c15 permit 336 ^65000:3_0:235_0:220$ ip community-list expanded c15 permit 337 ^65000:4_0:236_0:15$ ip community-list expanded c15 permit 338 ^65000:3_0:236_0:221$ ip community-list expanded c15 permit 339 ^65000:4_0:237_0:15$ ip community-list expanded c15 permit 340 ^65000:3_0:237_0:222$ ip community-list expanded c15 permit 341 ^65000:4_0:238_0:15$ ip community-list expanded c15 permit 342 ^65000:3_0:238_0:223$ ip community-list expanded c15 permit 343 ^65000:4_0:239_0:15$ ip community-list expanded c15 permit 344 ^65000:3_0:239_0:224$ ip community-list expanded c15 permit 345 ^65000:4_0:240_0:16$ ip community-list expanded c15 permit 346 ^65000:3_0:240_0:225$ ip community-list expanded c15 permit 347 ^65000:4_0:241_0:16$ ip community-list expanded c15 permit 348 ^65000:3_0:241_0:226$ ip community-list expanded c15 permit 349 ^65000:4_0:242_0:16$ ip community-list expanded c15 permit 350 ^65000:3_0:242_0:227$ ip community-list expanded c15 permit 351 ^65000:4_0:243_0:16$ ip community-list expanded c15 permit 352 ^65000:3_0:243_0:228$ ip community-list expanded c15 permit 353 ^65000:4_0:244_0:16$ ip community-list expanded c15 permit 354 ^65000:3_0:244_0:229$ ip community-list expanded c15 permit 355 ^65000:4_0:245_0:16$ ip community-list expanded c15 permit 356 ^65000:3_0:245_0:230$ ip community-list expanded c15 permit 357 ^65000:4_0:246_0:16$ ip community-list expanded c15 permit 358 ^65000:3_0:246_0:231$ ip community-list expanded c15 permit 359 ^65000:4_0:247_0:16$ ip community-list expanded c15 permit 360 ^65000:3_0:247_0:232$ ip community-list expanded c15 permit 361 ^65000:4_0:248_0:16$ ip community-list expanded c15 permit 362 ^65000:3_0:248_0:233$ ip community-list expanded c15 permit 363 ^65000:4_0:249_0:16$ ip community-list expanded c15 permit 364 ^65000:3_0:249_0:234$ ip community-list expanded c15 permit 365 ^65000:4_0:250_0:16$ ip community-list expanded c15 permit 366 ^65000:3_0:250_0:235$ ip community-list expanded c15 permit 367 ^65000:4_0:251_0:16$ ip community-list expanded c15 permit 368 ^65000:3_0:251_0:236$ ip community-list expanded c15 permit 369 ^65000:4_0:252_0:16$ ip community-list expanded c15 permit 370 ^65000:3_0:252_0:237$ ip community-list expanded c15 permit 371 ^65000:4_0:253_0:16$ ip community-list expanded c15 permit 372 ^65000:3_0:253_0:238$ ip community-list expanded c15 permit 373 ^65000:4_0:254_0:16$ ip community-list expanded c15 permit 374 ^65000:3_0:254_0:239$ ip community-list expanded c15 permit 375 ^65000:4_0:255_0:16$ ip community-list expanded c15 permit 376 ^65000:4_0:255_0:17$ ip community-list expanded c15 permit 377 ^65000:3_0:255_0:240$ ip community-list expanded c15 permit 378 ^65000:4_0:256_0:17$ ip community-list expanded c15 permit 379 ^65000:3_0:256_0:241$ route-map calculator permit 31828 match community 1_1_14 2_1_15 1_2_13 2_3_5 1_3_12 set community 0:15 route-map calculator permit 31829 match community 1_4_11 1_5_10 1_6_9 1_7_8 c4_15_1 set community 0:15 route-map calculator permit 31830 match community c3_16_1 c3_17_2 c3_18_3 c3_19_4 c3_20_5 set community 0:15 route-map calculator permit 31831 match community c3_21_6 c3_22_7 c3_23_8 c3_24_9 c3_25_10 set community 0:15 route-map calculator permit 31832 match community c3_26_11 c3_27_12 c3_28_13 c3_29_14 c4_30_2 set community 0:15 route-map calculator permit 31833 match community c3_30_15 c4_31_2 c3_31_16 c3_32_17 c3_33_18 set community 0:15 route-map calculator permit 31834 match community c3_34_19 c3_35_20 c3_36_21 c3_37_22 c3_38_23 set community 0:15 route-map calculator permit 31835 match community c3_39_24 c3_40_25 c3_41_26 c3_42_27 c3_43_28 set community 0:15 route-map calculator permit 31836 match community c3_44_29 c4_45_3 c3_45_30 c4_46_3 c3_46_31 set community 0:15 route-map calculator permit 31837 match community c4_47_3 c3_47_32 c3_48_33 c3_49_34 c3_50_35 set community 0:15 route-map calculator permit 31838 match community c3_51_36 c3_52_37 c3_53_38 c3_54_39 c3_55_40 set community 0:15 route-map calculator permit 31839 match community c3_56_41 c3_57_42 c3_58_43 c3_59_44 c4_60_4 set community 0:15 route-map calculator permit 31840 match community c3_60_45 c4_61_4 c3_61_46 c4_62_4 c3_62_47 set community 0:15 route-map calculator permit 31841 match community c4_63_4 c3_63_48 c3_64_49 c3_65_50 c3_66_51 set community 0:15 route-map calculator permit 31842 match community c3_67_52 c3_68_53 c3_69_54 c3_70_55 c3_71_56 set community 0:15 route-map calculator permit 31843 match community c3_72_57 c3_73_58 c3_74_59 c4_75_5 c3_75_60 set community 0:15 route-map calculator permit 31844 match community c4_76_5 c3_76_61 c4_77_5 c3_77_62 c4_78_5 set community 0:15 route-map calculator permit 31845 match community c3_78_63 c4_79_5 c3_79_64 c3_80_65 c3_81_66 set community 0:15 route-map calculator permit 31846 match community c3_82_67 c3_83_68 c3_84_69 c3_85_70 c3_86_71 set community 0:15 route-map calculator permit 31847 match community c3_87_72 c3_88_73 c3_89_74 c4_90_6 c3_90_75 set community 0:15 route-map calculator permit 31848 match community c4_91_6 c3_91_76 c4_92_6 c3_92_77 c4_93_6 set community 0:15 route-map calculator permit 31849 match community c3_93_78 c4_94_6 c3_94_79 c4_95_6 c3_95_80 set community 0:15 route-map calculator permit 31850 match community c3_96_81 c3_97_82 c3_98_83 c3_99_84 c3_100_85 set community 0:15 route-map calculator permit 31851 match community c3_101_86 c3_102_87 c3_103_88 c3_104_89 c4_105_7 set community 0:15 route-map calculator permit 31852 match community c3_105_90 c4_106_7 c3_106_91 c4_107_7 c3_107_92 set community 0:15 route-map calculator permit 31853 match community c4_108_7 c3_108_93 c4_109_7 c3_109_94 c4_110_7 set community 0:15 route-map calculator permit 31854 match community c3_110_95 c4_111_7 c3_111_96 c3_112_97 c3_113_98 set community 0:15 route-map calculator permit 31855 match community c3_114_99 c3_115_100 c3_116_101 c3_117_102 c3_118_103 set community 0:15 route-map calculator permit 31856 match community c3_119_104 c4_120_8 c3_120_105 c4_121_8 c3_121_106 set community 0:15 route-map calculator permit 31857 match community c4_122_8 c3_122_107 c4_123_8 c3_123_108 c4_124_8 set community 0:15 route-map calculator permit 31858 match community c3_124_109 c4_125_8 c3_125_110 c4_126_8 c3_126_111 set community 0:15 route-map calculator permit 31859 match community c4_127_8 c3_127_112 c3_128_113 c3_129_114 c3_130_115 set community 0:15 route-map calculator permit 31860 match community c3_131_116 c3_132_117 c3_133_118 c3_134_119 c4_135_9 set community 0:15 route-map calculator permit 31861 match community c3_135_120 c4_136_9 c3_136_121 c4_137_9 c3_137_122 set community 0:15 route-map calculator permit 31862 match community c4_138_9 c3_138_123 c4_139_9 c3_139_124 c4_140_9 set community 0:15 route-map calculator permit 31863 match community c3_140_125 c4_141_9 c3_141_126 c4_142_9 c3_142_127 set community 0:15 route-map calculator permit 31864 match community c4_143_9 c3_143_128 c3_144_129 c3_145_130 c3_146_131 set community 0:15 route-map calculator permit 31865 match community c3_147_132 c3_148_133 c3_149_134 c4_150_10 c3_150_135 set community 0:15 route-map calculator permit 31866 match community c4_151_10 c3_151_136 c4_152_10 c3_152_137 c4_153_10 set community 0:15 route-map calculator permit 31867 match community c3_153_138 c4_154_10 c3_154_139 c4_155_10 c3_155_140 set community 0:15 route-map calculator permit 31868 match community c4_156_10 c3_156_141 c4_157_10 c3_157_142 c4_158_10 set community 0:15 route-map calculator permit 31869 match community c3_158_143 c4_159_10 c3_159_144 c3_160_145 c3_161_146 set community 0:15 route-map calculator permit 31870 match community c3_162_147 c3_163_148 c3_164_149 c4_165_11 c3_165_150 set community 0:15 route-map calculator permit 31871 match community c4_166_11 c3_166_151 c4_167_11 c3_167_152 c4_168_11 set community 0:15 route-map calculator permit 31872 match community c3_168_153 c4_169_11 c3_169_154 c4_170_11 c3_170_155 set community 0:15 route-map calculator permit 31873 match community c4_171_11 c3_171_156 c4_172_11 c3_172_157 c4_173_11 set community 0:15 route-map calculator permit 31874 match community c3_173_158 c4_174_11 c3_174_159 c4_175_11 c3_175_160 set community 0:15 route-map calculator permit 31875 match community c3_176_161 c3_177_162 c3_178_163 c3_179_164 c4_180_12 set community 0:15 route-map calculator permit 31876 match community c3_180_165 c4_181_12 c3_181_166 c4_182_12 c3_182_167 set community 0:15 route-map calculator permit 31877 match community c4_183_12 c3_183_168 c4_184_12 c3_184_169 c4_185_12 set community 0:15 route-map calculator permit 31878 match community c3_185_170 c4_186_12 c3_186_171 c4_187_12 c3_187_172 set community 0:15 route-map calculator permit 31879 match community c4_188_12 c3_188_173 c4_189_12 c3_189_174 c4_190_12 set community 0:15 route-map calculator permit 31880 match community c3_190_175 c4_191_12 c3_191_176 c3_192_177 c3_193_178 set community 0:15 route-map calculator permit 31881 match community c3_194_179 c4_195_13 c3_195_180 c4_196_13 c3_196_181 set community 0:15 route-map calculator permit 31882 match community c4_197_13 c3_197_182 c4_198_13 c3_198_183 c4_199_13 set community 0:15 route-map calculator permit 31883 match community c3_199_184 c4_200_13 c3_200_185 c4_201_13 c3_201_186 set community 0:15 route-map calculator permit 31884 match community c4_202_13 c3_202_187 c4_203_13 c3_203_188 c4_204_13 set community 0:15 route-map calculator permit 31885 match community c3_204_189 c4_205_13 c3_205_190 c4_206_13 c3_206_191 set community 0:15 route-map calculator permit 31886 match community c4_207_13 c3_207_192 c3_208_193 c3_209_194 c4_210_14 set community 0:15 route-map calculator permit 31887 match community c3_210_195 c4_211_14 c3_211_196 c4_212_14 c3_212_197 set community 0:15 route-map calculator permit 31888 match community c4_213_14 c3_213_198 c4_214_14 c3_214_199 c4_215_14 set community 0:15 route-map calculator permit 31889 match community c3_215_200 c4_216_14 c3_216_201 c4_217_14 c3_217_202 set community 0:15 route-map calculator permit 31890 match community c4_218_14 c3_218_203 c4_219_14 c3_219_204 c4_220_14 set community 0:15 route-map calculator permit 31891 match community c3_220_205 c4_221_14 c3_221_206 c4_222_14 c3_222_207 set community 0:15 route-map calculator permit 31892 match community c4_223_14 c3_223_208 c3_224_209 c4_225_15 c3_225_210 set community 0:15 route-map calculator permit 31893 match community c4_226_15 c3_226_211 c4_227_15 c3_227_212 c4_228_15 set community 0:15 route-map calculator permit 31894 match community c3_228_213 c4_229_15 c3_229_214 c4_230_15 c3_230_215 set community 0:15 route-map calculator permit 31895 match community c4_231_15 c3_231_216 c4_232_15 c3_232_217 c4_233_15 set community 0:15 route-map calculator permit 31896 match community c3_233_218 c4_234_15 c3_234_219 c4_235_15 c3_235_220 set community 0:15 route-map calculator permit 31897 match community c4_236_15 c3_236_221 c4_237_15 c3_237_222 c4_238_15 set community 0:15 route-map calculator permit 31898 match community c3_238_223 c4_239_15 c3_239_224 c4_240_16 c3_240_225 set community 0:15 route-map calculator permit 31899 match community c4_241_16 c3_241_226 c4_242_16 c3_242_227 c4_243_16 set community 0:15 route-map calculator permit 31900 match community c3_243_228 c4_244_16 c3_244_229 c4_245_16 c3_245_230 set community 0:15 route-map calculator permit 31901 match community c4_246_16 c3_246_231 c4_247_16 c3_247_232 c4_248_16 set community 0:15 route-map calculator permit 31902 match community c3_248_233 c4_249_16 c3_249_234 c4_250_16 c3_250_235 set community 0:15 route-map calculator permit 31903 match community c4_251_16 c3_251_236 c4_252_16 c3_252_237 c4_253_16 set community 0:15 route-map calculator permit 31904 match community c3_253_238 c4_254_16 c3_254_239 c4_255_16 c4_255_17 set community 0:15 route-map calculator permit 31905 match community c3_255_240 c4_256_17 c3_256_241 set community 0:15 ip community-list standard 2_247_253 permit 65000:2 0:247 0:253 route-map calculator permit 31906 match community 2_247_253 set community 0:62491 ip community-list standard 2_67_155 permit 65000:2 0:67 0:155 route-map calculator permit 31907 match community 2_67_155 set community 0:10385 ip community-list standard 2_135_253 permit 65000:2 0:135 0:253 ip community-list standard 2_165_207 permit 65000:2 0:165 0:207 route-map calculator permit 31908 match community 2_135_253 2_165_207 set community 0:34155 ip community-list standard 2_150_248 permit 65000:2 0:150 0:248 ip community-list standard 2_155_240 permit 65000:2 0:155 0:240 ip community-list standard 2_186_200 permit 65000:2 0:186 0:200 route-map calculator permit 31909 match community 2_150_248 2_155_240 2_186_200 set community 0:37200 ip community-list standard 2_175_244 permit 65000:2 0:175 0:244 route-map calculator permit 31910 match community 2_175_244 set community 0:42700 ip community-list standard 2_127_235 permit 65000:2 0:127 0:235 route-map calculator permit 31911 match community 2_127_235 set community 0:29845 ip community-list standard 2_83_85 permit 65000:2 0:83 0:85 route-map calculator permit 31912 match community 2_83_85 set community 0:7055 ip community-list standard 2_88_173 permit 65000:2 0:88 0:173 route-map calculator permit 31913 match community 2_88_173 set community 0:15224 ip community-list standard 2_9_253 permit 65000:2 0:9 0:253 ip community-list standard 2_11_207 permit 65000:2 0:11 0:207 ip community-list standard 2_23_99 permit 65000:2 0:23 0:99 ip community-list standard 2_33_69 permit 65000:2 0:33 0:69 route-map calculator permit 31914 match community 2_9_253 2_11_207 2_23_99 2_33_69 set community 0:2277 ip community-list standard 2_156_254 permit 65000:2 0:156 0:254 route-map calculator permit 31915 match community 2_156_254 set community 0:39624 ip community-list standard 2_67_193 permit 65000:2 0:67 0:193 route-map calculator permit 31916 match community 2_67_193 set community 0:12931 ip community-list standard 2_221_229 permit 65000:2 0:221 0:229 route-map calculator permit 31917 match community 2_221_229 set community 0:50609 ip community-list standard 2_9_163 permit 65000:2 0:9 0:163 route-map calculator permit 31918 match community 2_9_163 set community 0:1467 ip community-list standard 2_113_143 permit 65000:2 0:113 0:143 route-map calculator permit 31919 match community 2_113_143 set community 0:16159 ip community-list standard 2_218_249 permit 65000:2 0:218 0:249 route-map calculator permit 31920 match community 2_218_249 set community 0:54282 ip community-list standard 2_98_213 permit 65000:2 0:98 0:213 ip community-list standard 2_142_147 permit 65000:2 0:142 0:147 route-map calculator permit 31921 match community 2_98_213 2_142_147 set community 0:20874 ip community-list standard 2_43_196 permit 65000:2 0:43 0:196 ip community-list standard 2_49_172 permit 65000:2 0:49 0:172 ip community-list standard 2_86_98 permit 65000:2 0:86 0:98 route-map calculator permit 31922 match community 2_43_196 2_49_172 2_86_98 set community 0:8428 ip community-list standard 2_24_225 permit 65000:2 0:24 0:225 ip community-list standard 2_25_216 permit 65000:2 0:25 0:216 ip community-list standard 2_27_200 permit 65000:2 0:27 0:200 ip community-list standard 2_30_180 permit 65000:2 0:30 0:180 ip community-list standard 2_36_150 permit 65000:2 0:36 0:150 ip community-list standard 2_40_135 permit 65000:2 0:40 0:135 ip community-list standard 2_45_120 permit 65000:2 0:45 0:120 ip community-list standard 2_50_108 permit 65000:2 0:50 0:108 ip community-list standard 2_54_100 permit 65000:2 0:54 0:100 ip community-list standard 2_60_90 permit 65000:2 0:60 0:90 ip community-list standard 2_72_75 permit 65000:2 0:72 0:75 route-map calculator permit 31923 match community 2_24_225 2_25_216 2_27_200 2_30_180 2_36_150 set community 0:5400 route-map calculator permit 31924 match community 2_40_135 2_45_120 2_50_108 2_54_100 2_60_90 set community 0:5400 route-map calculator permit 31925 match community 2_72_75 set community 0:5400 ip community-list standard 2_173_238 permit 65000:2 0:173 0:238 route-map calculator permit 31926 match community 2_173_238 set community 0:41174 ip community-list standard 2_167_202 permit 65000:2 0:167 0:202 route-map calculator permit 31927 match community 2_167_202 set community 0:33734 ip community-list standard 2_152_157 permit 65000:2 0:152 0:157 route-map calculator permit 31928 match community 2_152_157 set community 0:23864 ip community-list standard 2_67_182 permit 65000:2 0:67 0:182 ip community-list standard 2_91_134 permit 65000:2 0:91 0:134 route-map calculator permit 31929 match community 2_67_182 2_91_134 set community 0:12194 ip community-list standard 2_7_203 permit 65000:2 0:7 0:203 ip community-list standard 2_29_49 permit 65000:2 0:29 0:49 route-map calculator permit 31930 match community 2_7_203 2_29_49 set community 0:1421 ip community-list standard 2_144_226 permit 65000:2 0:144 0:226 route-map calculator permit 31931 match community 2_144_226 set community 0:32544 ip community-list standard 2_12_149 permit 65000:2 0:12 0:149 route-map calculator permit 31932 match community 2_12_149 set community 0:1788 ip community-list standard 2_69_215 permit 65000:2 0:69 0:215 ip community-list standard 2_115_129 permit 65000:2 0:115 0:129 route-map calculator permit 31933 match community 2_69_215 2_115_129 set community 0:14835 ip community-list standard 2_87_123 permit 65000:2 0:87 0:123 route-map calculator permit 31934 match community 2_87_123 set community 0:10701 ip community-list standard 2_179_235 permit 65000:2 0:179 0:235 route-map calculator permit 31935 match community 2_179_235 set community 0:42065 ip community-list standard 2_176_255 permit 65000:2 0:176 0:255 ip community-list standard 2_187_240 permit 65000:2 0:187 0:240 ip community-list standard 2_204_220 permit 65000:2 0:204 0:220 route-map calculator permit 31936 match community 2_176_255 2_187_240 2_204_220 set community 0:44880 ip community-list standard 2_13_245 permit 65000:2 0:13 0:245 ip community-list standard 2_35_91 permit 65000:2 0:35 0:91 ip community-list standard 2_49_65 permit 65000:2 0:49 0:65 route-map calculator permit 31937 match community 2_13_245 2_35_91 2_49_65 set community 0:3185 ip community-list standard 2_127_209 permit 65000:2 0:127 0:209 route-map calculator permit 31938 match community 2_127_209 set community 0:26543 ip community-list standard 2_34_164 permit 65000:2 0:34 0:164 ip community-list standard 2_41_136 permit 65000:2 0:41 0:136 ip community-list standard 2_68_82 permit 65000:2 0:68 0:82 route-map calculator permit 31939 match community 2_34_164 2_41_136 2_68_82 set community 0:5576 ip community-list standard 2_225_237 permit 65000:2 0:225 0:237 route-map calculator permit 31940 match community 2_225_237 set community 0:53325 ip community-list standard 2_8_218 permit 65000:2 0:8 0:218 ip community-list standard 2_16_109 permit 65000:2 0:16 0:109 route-map calculator permit 31941 match community 2_8_218 2_16_109 set community 0:1744 ip community-list standard 2_3_213 permit 65000:2 0:3 0:213 ip community-list standard 2_9_71 permit 65000:2 0:9 0:71 route-map calculator permit 31942 match community 2_3_213 2_9_71 set community 0:639 ip community-list standard 2_4_191 permit 65000:2 0:4 0:191 route-map calculator permit 31943 match community 2_4_191 set community 0:764 ip community-list standard 2_2_157 permit 65000:2 0:2 0:157 ip community-list standard 1_58_256 permit 65000:1 0:58 0:256 ip community-list standard 1_59_255 permit 65000:1 0:59 0:255 ip community-list standard 1_60_254 permit 65000:1 0:60 0:254 ip community-list standard 1_61_253 permit 65000:1 0:61 0:253 ip community-list standard 1_62_252 permit 65000:1 0:62 0:252 ip community-list standard 1_63_251 permit 65000:1 0:63 0:251 ip community-list standard 1_64_250 permit 65000:1 0:64 0:250 ip community-list standard 1_65_249 permit 65000:1 0:65 0:249 ip community-list standard 1_66_248 permit 65000:1 0:66 0:248 ip community-list standard 1_67_247 permit 65000:1 0:67 0:247 ip community-list standard 1_68_246 permit 65000:1 0:68 0:246 ip community-list standard 1_69_245 permit 65000:1 0:69 0:245 ip community-list standard 1_70_244 permit 65000:1 0:70 0:244 ip community-list standard 1_71_243 permit 65000:1 0:71 0:243 ip community-list standard 1_72_242 permit 65000:1 0:72 0:242 ip community-list standard 1_73_241 permit 65000:1 0:73 0:241 ip community-list standard 1_74_240 permit 65000:1 0:74 0:240 ip community-list standard 1_75_239 permit 65000:1 0:75 0:239 ip community-list standard 1_76_238 permit 65000:1 0:76 0:238 ip community-list standard 1_77_237 permit 65000:1 0:77 0:237 ip community-list standard 1_78_236 permit 65000:1 0:78 0:236 ip community-list standard 1_79_235 permit 65000:1 0:79 0:235 ip community-list standard 1_80_234 permit 65000:1 0:80 0:234 ip community-list standard 1_81_233 permit 65000:1 0:81 0:233 ip community-list standard 1_82_232 permit 65000:1 0:82 0:232 ip community-list standard 1_83_231 permit 65000:1 0:83 0:231 ip community-list standard 1_84_230 permit 65000:1 0:84 0:230 ip community-list standard 1_85_229 permit 65000:1 0:85 0:229 ip community-list standard 1_86_228 permit 65000:1 0:86 0:228 ip community-list standard 1_87_227 permit 65000:1 0:87 0:227 ip community-list standard 1_88_226 permit 65000:1 0:88 0:226 ip community-list standard 1_89_225 permit 65000:1 0:89 0:225 ip community-list standard 1_90_224 permit 65000:1 0:90 0:224 ip community-list standard 1_91_223 permit 65000:1 0:91 0:223 ip community-list standard 1_92_222 permit 65000:1 0:92 0:222 ip community-list standard 1_93_221 permit 65000:1 0:93 0:221 ip community-list standard 1_94_220 permit 65000:1 0:94 0:220 ip community-list standard 1_95_219 permit 65000:1 0:95 0:219 ip community-list standard 1_96_218 permit 65000:1 0:96 0:218 ip community-list standard 1_97_217 permit 65000:1 0:97 0:217 ip community-list standard 1_98_216 permit 65000:1 0:98 0:216 ip community-list standard 1_99_215 permit 65000:1 0:99 0:215 ip community-list standard 1_100_214 permit 65000:1 0:100 0:214 ip community-list standard 1_101_213 permit 65000:1 0:101 0:213 ip community-list standard 1_102_212 permit 65000:1 0:102 0:212 ip community-list standard 1_103_211 permit 65000:1 0:103 0:211 ip community-list standard 1_104_210 permit 65000:1 0:104 0:210 ip community-list standard 1_105_209 permit 65000:1 0:105 0:209 ip community-list standard 1_106_208 permit 65000:1 0:106 0:208 ip community-list standard 1_107_207 permit 65000:1 0:107 0:207 ip community-list standard 1_108_206 permit 65000:1 0:108 0:206 ip community-list standard 1_109_205 permit 65000:1 0:109 0:205 ip community-list standard 1_110_204 permit 65000:1 0:110 0:204 ip community-list standard 1_111_203 permit 65000:1 0:111 0:203 ip community-list standard 1_112_202 permit 65000:1 0:112 0:202 ip community-list standard 1_113_201 permit 65000:1 0:113 0:201 ip community-list standard 1_114_200 permit 65000:1 0:114 0:200 ip community-list standard 1_115_199 permit 65000:1 0:115 0:199 ip community-list standard 1_116_198 permit 65000:1 0:116 0:198 ip community-list standard 1_117_197 permit 65000:1 0:117 0:197 ip community-list standard 1_118_196 permit 65000:1 0:118 0:196 ip community-list standard 1_119_195 permit 65000:1 0:119 0:195 ip community-list standard 1_120_194 permit 65000:1 0:120 0:194 ip community-list standard 1_121_193 permit 65000:1 0:121 0:193 ip community-list standard 1_122_192 permit 65000:1 0:122 0:192 ip community-list standard 1_123_191 permit 65000:1 0:123 0:191 ip community-list standard 1_124_190 permit 65000:1 0:124 0:190 ip community-list standard 1_125_189 permit 65000:1 0:125 0:189 ip community-list standard 1_126_188 permit 65000:1 0:126 0:188 ip community-list standard 1_127_187 permit 65000:1 0:127 0:187 ip community-list standard 1_128_186 permit 65000:1 0:128 0:186 ip community-list standard 1_129_185 permit 65000:1 0:129 0:185 ip community-list standard 1_130_184 permit 65000:1 0:130 0:184 ip community-list standard 1_131_183 permit 65000:1 0:131 0:183 ip community-list standard 1_132_182 permit 65000:1 0:132 0:182 ip community-list standard 1_133_181 permit 65000:1 0:133 0:181 ip community-list standard 1_134_180 permit 65000:1 0:134 0:180 ip community-list standard 1_135_179 permit 65000:1 0:135 0:179 ip community-list standard 1_136_178 permit 65000:1 0:136 0:178 ip community-list standard 1_137_177 permit 65000:1 0:137 0:177 ip community-list standard 1_138_176 permit 65000:1 0:138 0:176 ip community-list standard 1_139_175 permit 65000:1 0:139 0:175 ip community-list standard 1_140_174 permit 65000:1 0:140 0:174 ip community-list standard 1_141_173 permit 65000:1 0:141 0:173 ip community-list standard 1_142_172 permit 65000:1 0:142 0:172 ip community-list standard 1_143_171 permit 65000:1 0:143 0:171 ip community-list standard 1_144_170 permit 65000:1 0:144 0:170 ip community-list standard 1_145_169 permit 65000:1 0:145 0:169 ip community-list standard 1_146_168 permit 65000:1 0:146 0:168 ip community-list standard 1_147_167 permit 65000:1 0:147 0:167 ip community-list standard 1_148_166 permit 65000:1 0:148 0:166 ip community-list standard 1_149_165 permit 65000:1 0:149 0:165 ip community-list standard 1_150_164 permit 65000:1 0:150 0:164 ip community-list standard 1_151_163 permit 65000:1 0:151 0:163 ip community-list standard 1_152_162 permit 65000:1 0:152 0:162 ip community-list standard 1_153_161 permit 65000:1 0:153 0:161 ip community-list standard 1_154_160 permit 65000:1 0:154 0:160 ip community-list standard 1_155_159 permit 65000:1 0:155 0:159 ip community-list standard 1_156_158 permit 65000:1 0:156 0:158 ip community-list standard 1_157_157 permit 65000:1 0:157 0:157 route-map calculator permit 31944 match community 2_2_157 1_58_256 1_59_255 1_60_254 1_61_253 set community 0:314 route-map calculator permit 31945 match community 1_62_252 1_63_251 1_64_250 1_65_249 1_66_248 set community 0:314 route-map calculator permit 31946 match community 1_67_247 1_68_246 1_69_245 1_70_244 1_71_243 set community 0:314 route-map calculator permit 31947 match community 1_72_242 1_73_241 1_74_240 1_75_239 1_76_238 set community 0:314 route-map calculator permit 31948 match community 1_77_237 1_78_236 1_79_235 1_80_234 1_81_233 set community 0:314 route-map calculator permit 31949 match community 1_82_232 1_83_231 1_84_230 1_85_229 1_86_228 set community 0:314 route-map calculator permit 31950 match community 1_87_227 1_88_226 1_89_225 1_90_224 1_91_223 set community 0:314 route-map calculator permit 31951 match community 1_92_222 1_93_221 1_94_220 1_95_219 1_96_218 set community 0:314 route-map calculator permit 31952 match community 1_97_217 1_98_216 1_99_215 1_100_214 1_101_213 set community 0:314 route-map calculator permit 31953 match community 1_102_212 1_103_211 1_104_210 1_105_209 1_106_208 set community 0:314 route-map calculator permit 31954 match community 1_107_207 1_108_206 1_109_205 1_110_204 1_111_203 set community 0:314 route-map calculator permit 31955 match community 1_112_202 1_113_201 1_114_200 1_115_199 1_116_198 set community 0:314 route-map calculator permit 31956 match community 1_117_197 1_118_196 1_119_195 1_120_194 1_121_193 set community 0:314 route-map calculator permit 31957 match community 1_122_192 1_123_191 1_124_190 1_125_189 1_126_188 set community 0:314 route-map calculator permit 31958 match community 1_127_187 1_128_186 1_129_185 1_130_184 1_131_183 set community 0:314 route-map calculator permit 31959 match community 1_132_182 1_133_181 1_134_180 1_135_179 1_136_178 set community 0:314 route-map calculator permit 31960 match community 1_137_177 1_138_176 1_139_175 1_140_174 1_141_173 set community 0:314 route-map calculator permit 31961 match community 1_142_172 1_143_171 1_144_170 1_145_169 1_146_168 set community 0:314 route-map calculator permit 31962 match community 1_147_167 1_148_166 1_149_165 1_150_164 1_151_163 set community 0:314 route-map calculator permit 31963 match community 1_152_162 1_153_161 1_154_160 1_155_159 1_156_158 set community 0:314 route-map calculator permit 31964 match community 1_157_157 set community 0:314 ip community-list standard 1_1_104 permit 65000:1 0:1 0:104 ip community-list standard 2_1_105 permit 65000:2 0:1 0:105 ip community-list standard 1_2_103 permit 65000:1 0:2 0:103 ip community-list standard 2_3_35 permit 65000:2 0:3 0:35 ip community-list standard 1_3_102 permit 65000:1 0:3 0:102 ip community-list standard 1_4_101 permit 65000:1 0:4 0:101 ip community-list standard 2_5_21 permit 65000:2 0:5 0:21 ip community-list standard 1_5_100 permit 65000:1 0:5 0:100 ip community-list standard 1_6_99 permit 65000:1 0:6 0:99 ip community-list standard 2_7_15 permit 65000:2 0:7 0:15 ip community-list standard 1_7_98 permit 65000:1 0:7 0:98 ip community-list standard 1_8_97 permit 65000:1 0:8 0:97 ip community-list standard 1_9_96 permit 65000:1 0:9 0:96 ip community-list standard 1_10_95 permit 65000:1 0:10 0:95 ip community-list standard 1_11_94 permit 65000:1 0:11 0:94 ip community-list standard 1_12_93 permit 65000:1 0:12 0:93 ip community-list standard 1_13_92 permit 65000:1 0:13 0:92 ip community-list standard 1_14_91 permit 65000:1 0:14 0:91 ip community-list standard 1_15_90 permit 65000:1 0:15 0:90 ip community-list standard 1_16_89 permit 65000:1 0:16 0:89 ip community-list standard 1_17_88 permit 65000:1 0:17 0:88 ip community-list standard 1_18_87 permit 65000:1 0:18 0:87 ip community-list standard 1_19_86 permit 65000:1 0:19 0:86 ip community-list standard 1_20_85 permit 65000:1 0:20 0:85 ip community-list standard 1_21_84 permit 65000:1 0:21 0:84 ip community-list standard 1_22_83 permit 65000:1 0:22 0:83 ip community-list standard 1_23_82 permit 65000:1 0:23 0:82 ip community-list standard 1_24_81 permit 65000:1 0:24 0:81 ip community-list standard 1_25_80 permit 65000:1 0:25 0:80 ip community-list standard 1_26_79 permit 65000:1 0:26 0:79 ip community-list standard 1_27_78 permit 65000:1 0:27 0:78 ip community-list standard 1_28_77 permit 65000:1 0:28 0:77 ip community-list standard 1_29_76 permit 65000:1 0:29 0:76 ip community-list standard 1_30_75 permit 65000:1 0:30 0:75 ip community-list standard 1_31_74 permit 65000:1 0:31 0:74 ip community-list standard 1_32_73 permit 65000:1 0:32 0:73 ip community-list standard 1_33_72 permit 65000:1 0:33 0:72 ip community-list standard 1_34_71 permit 65000:1 0:34 0:71 ip community-list standard 1_35_70 permit 65000:1 0:35 0:70 ip community-list standard 1_36_69 permit 65000:1 0:36 0:69 ip community-list standard 1_37_68 permit 65000:1 0:37 0:68 ip community-list standard 1_38_67 permit 65000:1 0:38 0:67 ip community-list standard 1_39_66 permit 65000:1 0:39 0:66 ip community-list standard 1_40_65 permit 65000:1 0:40 0:65 ip community-list standard 1_41_64 permit 65000:1 0:41 0:64 ip community-list standard 1_42_63 permit 65000:1 0:42 0:63 ip community-list standard 1_43_62 permit 65000:1 0:43 0:62 ip community-list standard 1_44_61 permit 65000:1 0:44 0:61 ip community-list standard 1_45_60 permit 65000:1 0:45 0:60 ip community-list standard 1_46_59 permit 65000:1 0:46 0:59 ip community-list standard 1_47_58 permit 65000:1 0:47 0:58 ip community-list standard 1_48_57 permit 65000:1 0:48 0:57 ip community-list standard 1_49_56 permit 65000:1 0:49 0:56 ip community-list standard 1_50_55 permit 65000:1 0:50 0:55 ip community-list standard 1_51_54 permit 65000:1 0:51 0:54 ip community-list standard 1_52_53 permit 65000:1 0:52 0:53 ip community-list expanded c105 permit 1 ^65000:4_0:105_0:1$ ip community-list expanded c105 permit 2 ^65000:3_0:106_0:1$ ip community-list expanded c105 permit 3 ^65000:3_0:107_0:2$ ip community-list expanded c105 permit 4 ^65000:3_0:108_0:3$ ip community-list expanded c105 permit 5 ^65000:3_0:109_0:4$ ip community-list expanded c105 permit 6 ^65000:3_0:110_0:5$ ip community-list expanded c105 permit 7 ^65000:3_0:111_0:6$ ip community-list expanded c105 permit 8 ^65000:3_0:112_0:7$ ip community-list expanded c105 permit 9 ^65000:3_0:113_0:8$ ip community-list expanded c105 permit 10 ^65000:3_0:114_0:9$ ip community-list expanded c105 permit 11 ^65000:3_0:115_0:10$ ip community-list expanded c105 permit 12 ^65000:3_0:116_0:11$ ip community-list expanded c105 permit 13 ^65000:3_0:117_0:12$ ip community-list expanded c105 permit 14 ^65000:3_0:118_0:13$ ip community-list expanded c105 permit 15 ^65000:3_0:119_0:14$ ip community-list expanded c105 permit 16 ^65000:3_0:120_0:15$ ip community-list expanded c105 permit 17 ^65000:3_0:121_0:16$ ip community-list expanded c105 permit 18 ^65000:3_0:122_0:17$ ip community-list expanded c105 permit 19 ^65000:3_0:123_0:18$ ip community-list expanded c105 permit 20 ^65000:3_0:124_0:19$ ip community-list expanded c105 permit 21 ^65000:3_0:125_0:20$ ip community-list expanded c105 permit 22 ^65000:3_0:126_0:21$ ip community-list expanded c105 permit 23 ^65000:3_0:127_0:22$ ip community-list expanded c105 permit 24 ^65000:3_0:128_0:23$ ip community-list expanded c105 permit 25 ^65000:3_0:129_0:24$ ip community-list expanded c105 permit 26 ^65000:3_0:130_0:25$ ip community-list expanded c105 permit 27 ^65000:3_0:131_0:26$ ip community-list expanded c105 permit 28 ^65000:3_0:132_0:27$ ip community-list expanded c105 permit 29 ^65000:3_0:133_0:28$ ip community-list expanded c105 permit 30 ^65000:3_0:134_0:29$ ip community-list expanded c105 permit 31 ^65000:3_0:135_0:30$ ip community-list expanded c105 permit 32 ^65000:3_0:136_0:31$ ip community-list expanded c105 permit 33 ^65000:3_0:137_0:32$ ip community-list expanded c105 permit 34 ^65000:3_0:138_0:33$ ip community-list expanded c105 permit 35 ^65000:3_0:139_0:34$ ip community-list expanded c105 permit 36 ^65000:3_0:140_0:35$ ip community-list expanded c105 permit 37 ^65000:3_0:141_0:36$ ip community-list expanded c105 permit 38 ^65000:3_0:142_0:37$ ip community-list expanded c105 permit 39 ^65000:3_0:143_0:38$ ip community-list expanded c105 permit 40 ^65000:3_0:144_0:39$ ip community-list expanded c105 permit 41 ^65000:3_0:145_0:40$ ip community-list expanded c105 permit 42 ^65000:3_0:146_0:41$ ip community-list expanded c105 permit 43 ^65000:3_0:147_0:42$ ip community-list expanded c105 permit 44 ^65000:3_0:148_0:43$ ip community-list expanded c105 permit 45 ^65000:3_0:149_0:44$ ip community-list expanded c105 permit 46 ^65000:3_0:150_0:45$ ip community-list expanded c105 permit 47 ^65000:3_0:151_0:46$ ip community-list expanded c105 permit 48 ^65000:3_0:152_0:47$ ip community-list expanded c105 permit 49 ^65000:3_0:153_0:48$ ip community-list expanded c105 permit 50 ^65000:3_0:154_0:49$ ip community-list expanded c105 permit 51 ^65000:3_0:155_0:50$ ip community-list expanded c105 permit 52 ^65000:3_0:156_0:51$ ip community-list expanded c105 permit 53 ^65000:3_0:157_0:52$ ip community-list expanded c105 permit 54 ^65000:3_0:158_0:53$ ip community-list expanded c105 permit 55 ^65000:3_0:159_0:54$ ip community-list expanded c105 permit 56 ^65000:3_0:160_0:55$ ip community-list expanded c105 permit 57 ^65000:3_0:161_0:56$ ip community-list expanded c105 permit 58 ^65000:3_0:162_0:57$ ip community-list expanded c105 permit 59 ^65000:3_0:163_0:58$ ip community-list expanded c105 permit 60 ^65000:3_0:164_0:59$ ip community-list expanded c105 permit 61 ^65000:3_0:165_0:60$ ip community-list expanded c105 permit 62 ^65000:3_0:166_0:61$ ip community-list expanded c105 permit 63 ^65000:3_0:167_0:62$ ip community-list expanded c105 permit 64 ^65000:3_0:168_0:63$ ip community-list expanded c105 permit 65 ^65000:3_0:169_0:64$ ip community-list expanded c105 permit 66 ^65000:3_0:170_0:65$ ip community-list expanded c105 permit 67 ^65000:3_0:171_0:66$ ip community-list expanded c105 permit 68 ^65000:3_0:172_0:67$ ip community-list expanded c105 permit 69 ^65000:3_0:173_0:68$ ip community-list expanded c105 permit 70 ^65000:3_0:174_0:69$ ip community-list expanded c105 permit 71 ^65000:3_0:175_0:70$ ip community-list expanded c105 permit 72 ^65000:3_0:176_0:71$ ip community-list expanded c105 permit 73 ^65000:3_0:177_0:72$ ip community-list expanded c105 permit 74 ^65000:3_0:178_0:73$ ip community-list expanded c105 permit 75 ^65000:3_0:179_0:74$ ip community-list expanded c105 permit 76 ^65000:3_0:180_0:75$ ip community-list expanded c105 permit 77 ^65000:3_0:181_0:76$ ip community-list expanded c105 permit 78 ^65000:3_0:182_0:77$ ip community-list expanded c105 permit 79 ^65000:3_0:183_0:78$ ip community-list expanded c105 permit 80 ^65000:3_0:184_0:79$ ip community-list expanded c105 permit 81 ^65000:3_0:185_0:80$ ip community-list expanded c105 permit 82 ^65000:3_0:186_0:81$ ip community-list expanded c105 permit 83 ^65000:3_0:187_0:82$ ip community-list expanded c105 permit 84 ^65000:3_0:188_0:83$ ip community-list expanded c105 permit 85 ^65000:3_0:189_0:84$ ip community-list expanded c105 permit 86 ^65000:3_0:190_0:85$ ip community-list expanded c105 permit 87 ^65000:3_0:191_0:86$ ip community-list expanded c105 permit 88 ^65000:3_0:192_0:87$ ip community-list expanded c105 permit 89 ^65000:3_0:193_0:88$ ip community-list expanded c105 permit 90 ^65000:3_0:194_0:89$ ip community-list expanded c105 permit 91 ^65000:3_0:195_0:90$ ip community-list expanded c105 permit 92 ^65000:3_0:196_0:91$ ip community-list expanded c105 permit 93 ^65000:3_0:197_0:92$ ip community-list expanded c105 permit 94 ^65000:3_0:198_0:93$ ip community-list expanded c105 permit 95 ^65000:3_0:199_0:94$ ip community-list expanded c105 permit 96 ^65000:3_0:200_0:95$ ip community-list expanded c105 permit 97 ^65000:3_0:201_0:96$ ip community-list expanded c105 permit 98 ^65000:3_0:202_0:97$ ip community-list expanded c105 permit 99 ^65000:3_0:203_0:98$ ip community-list expanded c105 permit 100 ^65000:3_0:204_0:99$ ip community-list expanded c105 permit 101 ^65000:3_0:205_0:100$ ip community-list expanded c105 permit 102 ^65000:3_0:206_0:101$ ip community-list expanded c105 permit 103 ^65000:3_0:207_0:102$ ip community-list expanded c105 permit 104 ^65000:3_0:208_0:103$ ip community-list expanded c105 permit 105 ^65000:3_0:209_0:104$ ip community-list expanded c105 permit 106 ^65000:4_0:210_0:2$ ip community-list expanded c105 permit 107 ^65000:3_0:210_0:105$ ip community-list expanded c105 permit 108 ^65000:4_0:211_0:2$ ip community-list expanded c105 permit 109 ^65000:3_0:211_0:106$ ip community-list expanded c105 permit 110 ^65000:3_0:212_0:107$ ip community-list expanded c105 permit 111 ^65000:3_0:213_0:108$ ip community-list expanded c105 permit 112 ^65000:3_0:214_0:109$ ip community-list expanded c105 permit 113 ^65000:3_0:215_0:110$ ip community-list expanded c105 permit 114 ^65000:3_0:216_0:111$ ip community-list expanded c105 permit 115 ^65000:3_0:217_0:112$ ip community-list expanded c105 permit 116 ^65000:3_0:218_0:113$ ip community-list expanded c105 permit 117 ^65000:3_0:219_0:114$ ip community-list expanded c105 permit 118 ^65000:3_0:220_0:115$ ip community-list expanded c105 permit 119 ^65000:3_0:221_0:116$ ip community-list expanded c105 permit 120 ^65000:3_0:222_0:117$ ip community-list expanded c105 permit 121 ^65000:3_0:223_0:118$ ip community-list expanded c105 permit 122 ^65000:3_0:224_0:119$ ip community-list expanded c105 permit 123 ^65000:3_0:225_0:120$ ip community-list expanded c105 permit 124 ^65000:3_0:226_0:121$ ip community-list expanded c105 permit 125 ^65000:3_0:227_0:122$ ip community-list expanded c105 permit 126 ^65000:3_0:228_0:123$ ip community-list expanded c105 permit 127 ^65000:3_0:229_0:124$ ip community-list expanded c105 permit 128 ^65000:3_0:230_0:125$ ip community-list expanded c105 permit 129 ^65000:3_0:231_0:126$ ip community-list expanded c105 permit 130 ^65000:3_0:232_0:127$ ip community-list expanded c105 permit 131 ^65000:3_0:233_0:128$ ip community-list expanded c105 permit 132 ^65000:3_0:234_0:129$ ip community-list expanded c105 permit 133 ^65000:3_0:235_0:130$ ip community-list expanded c105 permit 134 ^65000:3_0:236_0:131$ ip community-list expanded c105 permit 135 ^65000:3_0:237_0:132$ ip community-list expanded c105 permit 136 ^65000:3_0:238_0:133$ ip community-list expanded c105 permit 137 ^65000:3_0:239_0:134$ ip community-list expanded c105 permit 138 ^65000:3_0:240_0:135$ ip community-list expanded c105 permit 139 ^65000:3_0:241_0:136$ ip community-list expanded c105 permit 140 ^65000:3_0:242_0:137$ ip community-list expanded c105 permit 141 ^65000:3_0:243_0:138$ ip community-list expanded c105 permit 142 ^65000:3_0:244_0:139$ ip community-list expanded c105 permit 143 ^65000:3_0:245_0:140$ ip community-list expanded c105 permit 144 ^65000:3_0:246_0:141$ ip community-list expanded c105 permit 145 ^65000:3_0:247_0:142$ ip community-list expanded c105 permit 146 ^65000:3_0:248_0:143$ ip community-list expanded c105 permit 147 ^65000:3_0:249_0:144$ ip community-list expanded c105 permit 148 ^65000:3_0:250_0:145$ ip community-list expanded c105 permit 149 ^65000:3_0:251_0:146$ ip community-list expanded c105 permit 150 ^65000:3_0:252_0:147$ ip community-list expanded c105 permit 151 ^65000:3_0:253_0:148$ ip community-list expanded c105 permit 152 ^65000:3_0:254_0:149$ ip community-list expanded c105 permit 153 ^65000:3_0:255_0:150$ ip community-list expanded c105 permit 154 ^65000:3_0:256_0:151$ route-map calculator permit 31965 match community 1_1_104 2_1_105 1_2_103 2_3_35 1_3_102 set community 0:105 route-map calculator permit 31966 match community 1_4_101 2_5_21 1_5_100 1_6_99 2_7_15 set community 0:105 route-map calculator permit 31967 match community 1_7_98 1_8_97 1_9_96 1_10_95 1_11_94 set community 0:105 route-map calculator permit 31968 match community 1_12_93 1_13_92 1_14_91 1_15_90 1_16_89 set community 0:105 route-map calculator permit 31969 match community 1_17_88 1_18_87 1_19_86 1_20_85 1_21_84 set community 0:105 route-map calculator permit 31970 match community 1_22_83 1_23_82 1_24_81 1_25_80 1_26_79 set community 0:105 route-map calculator permit 31971 match community 1_27_78 1_28_77 1_29_76 1_30_75 1_31_74 set community 0:105 route-map calculator permit 31972 match community 1_32_73 1_33_72 1_34_71 1_35_70 1_36_69 set community 0:105 route-map calculator permit 31973 match community 1_37_68 1_38_67 1_39_66 1_40_65 1_41_64 set community 0:105 route-map calculator permit 31974 match community 1_42_63 1_43_62 1_44_61 1_45_60 1_46_59 set community 0:105 route-map calculator permit 31975 match community 1_47_58 1_48_57 1_49_56 1_50_55 1_51_54 set community 0:105 route-map calculator permit 31976 match community 1_52_53 c4_105_1 c3_106_1 c3_107_2 c3_108_3 set community 0:105 route-map calculator permit 31977 match community c3_109_4 c3_110_5 c3_111_6 c3_112_7 c3_113_8 set community 0:105 route-map calculator permit 31978 match community c3_114_9 c3_115_10 c3_116_11 c3_117_12 c3_118_13 set community 0:105 route-map calculator permit 31979 match community c3_119_14 c3_120_15 c3_121_16 c3_122_17 c3_123_18 set community 0:105 route-map calculator permit 31980 match community c3_124_19 c3_125_20 c3_126_21 c3_127_22 c3_128_23 set community 0:105 route-map calculator permit 31981 match community c3_129_24 c3_130_25 c3_131_26 c3_132_27 c3_133_28 set community 0:105 route-map calculator permit 31982 match community c3_134_29 c3_135_30 c3_136_31 c3_137_32 c3_138_33 set community 0:105 route-map calculator permit 31983 match community c3_139_34 c3_140_35 c3_141_36 c3_142_37 c3_143_38 set community 0:105 route-map calculator permit 31984 match community c3_144_39 c3_145_40 c3_146_41 c3_147_42 c3_148_43 set community 0:105 route-map calculator permit 31985 match community c3_149_44 c3_150_45 c3_151_46 c3_152_47 c3_153_48 set community 0:105 route-map calculator permit 31986 match community c3_154_49 c3_155_50 c3_156_51 c3_157_52 c3_158_53 set community 0:105 route-map calculator permit 31987 match community c3_159_54 c3_160_55 c3_161_56 c3_162_57 c3_163_58 set community 0:105 route-map calculator permit 31988 match community c3_164_59 c3_165_60 c3_166_61 c3_167_62 c3_168_63 set community 0:105 route-map calculator permit 31989 match community c3_169_64 c3_170_65 c3_171_66 c3_172_67 c3_173_68 set community 0:105 route-map calculator permit 31990 match community c3_174_69 c3_175_70 c3_176_71 c3_177_72 c3_178_73 set community 0:105 route-map calculator permit 31991 match community c3_179_74 c3_180_75 c3_181_76 c3_182_77 c3_183_78 set community 0:105 route-map calculator permit 31992 match community c3_184_79 c3_185_80 c3_186_81 c3_187_82 c3_188_83 set community 0:105 route-map calculator permit 31993 match community c3_189_84 c3_190_85 c3_191_86 c3_192_87 c3_193_88 set community 0:105 route-map calculator permit 31994 match community c3_194_89 c3_195_90 c3_196_91 c3_197_92 c3_198_93 set community 0:105 route-map calculator permit 31995 match community c3_199_94 c3_200_95 c3_201_96 c3_202_97 c3_203_98 set community 0:105 route-map calculator permit 31996 match community c3_204_99 c3_205_100 c3_206_101 c3_207_102 c3_208_103 set community 0:105 route-map calculator permit 31997 match community c3_209_104 c4_210_2 c3_210_105 c4_211_2 c3_211_106 set community 0:105 route-map calculator permit 31998 match community c3_212_107 c3_213_108 c3_214_109 c3_215_110 c3_216_111 set community 0:105 route-map calculator permit 31999 match community c3_217_112 c3_218_113 c3_219_114 c3_220_115 c3_221_116 set community 0:105 route-map calculator permit 32000 match community c3_222_117 c3_223_118 c3_224_119 c3_225_120 c3_226_121 set community 0:105 route-map calculator permit 32001 match community c3_227_122 c3_228_123 c3_229_124 c3_230_125 c3_231_126 set community 0:105 route-map calculator permit 32002 match community c3_232_127 c3_233_128 c3_234_129 c3_235_130 c3_236_131 set community 0:105 route-map calculator permit 32003 match community c3_237_132 c3_238_133 c3_239_134 c3_240_135 c3_241_136 set community 0:105 route-map calculator permit 32004 match community c3_242_137 c3_243_138 c3_244_139 c3_245_140 c3_246_141 set community 0:105 route-map calculator permit 32005 match community c3_247_142 c3_248_143 c3_249_144 c3_250_145 c3_251_146 set community 0:105 route-map calculator permit 32006 match community c3_252_147 c3_253_148 c3_254_149 c3_255_150 c3_256_151 set community 0:105 ip community-list standard 2_152_227 permit 65000:2 0:152 0:227 route-map calculator permit 32007 match community 2_152_227 set community 0:34504 ip community-list standard 1_1_183 permit 65000:1 0:1 0:183 ip community-list standard 2_1_184 permit 65000:2 0:1 0:184 ip community-list standard 2_2_92 permit 65000:2 0:2 0:92 ip community-list standard 1_2_182 permit 65000:1 0:2 0:182 ip community-list standard 1_3_181 permit 65000:1 0:3 0:181 ip community-list standard 2_4_46 permit 65000:2 0:4 0:46 ip community-list standard 1_4_180 permit 65000:1 0:4 0:180 ip community-list standard 1_5_179 permit 65000:1 0:5 0:179 ip community-list standard 1_6_178 permit 65000:1 0:6 0:178 ip community-list standard 1_7_177 permit 65000:1 0:7 0:177 ip community-list standard 2_8_23 permit 65000:2 0:8 0:23 ip community-list standard 1_8_176 permit 65000:1 0:8 0:176 ip community-list standard 1_9_175 permit 65000:1 0:9 0:175 ip community-list standard 1_10_174 permit 65000:1 0:10 0:174 ip community-list standard 1_11_173 permit 65000:1 0:11 0:173 ip community-list standard 1_12_172 permit 65000:1 0:12 0:172 ip community-list standard 1_13_171 permit 65000:1 0:13 0:171 ip community-list standard 1_14_170 permit 65000:1 0:14 0:170 ip community-list standard 1_15_169 permit 65000:1 0:15 0:169 ip community-list standard 1_16_168 permit 65000:1 0:16 0:168 ip community-list standard 1_17_167 permit 65000:1 0:17 0:167 ip community-list standard 1_18_166 permit 65000:1 0:18 0:166 ip community-list standard 1_19_165 permit 65000:1 0:19 0:165 ip community-list standard 1_20_164 permit 65000:1 0:20 0:164 ip community-list standard 1_21_163 permit 65000:1 0:21 0:163 ip community-list standard 1_22_162 permit 65000:1 0:22 0:162 ip community-list standard 1_23_161 permit 65000:1 0:23 0:161 ip community-list standard 1_24_160 permit 65000:1 0:24 0:160 ip community-list standard 1_25_159 permit 65000:1 0:25 0:159 ip community-list standard 1_26_158 permit 65000:1 0:26 0:158 ip community-list standard 1_27_157 permit 65000:1 0:27 0:157 ip community-list standard 1_28_156 permit 65000:1 0:28 0:156 ip community-list standard 1_29_155 permit 65000:1 0:29 0:155 ip community-list standard 1_30_154 permit 65000:1 0:30 0:154 ip community-list standard 1_31_153 permit 65000:1 0:31 0:153 ip community-list standard 1_32_152 permit 65000:1 0:32 0:152 ip community-list standard 1_33_151 permit 65000:1 0:33 0:151 ip community-list standard 1_34_150 permit 65000:1 0:34 0:150 ip community-list standard 1_35_149 permit 65000:1 0:35 0:149 ip community-list standard 1_36_148 permit 65000:1 0:36 0:148 ip community-list standard 1_37_147 permit 65000:1 0:37 0:147 ip community-list standard 1_38_146 permit 65000:1 0:38 0:146 ip community-list standard 1_39_145 permit 65000:1 0:39 0:145 ip community-list standard 1_40_144 permit 65000:1 0:40 0:144 ip community-list standard 1_41_143 permit 65000:1 0:41 0:143 ip community-list standard 1_42_142 permit 65000:1 0:42 0:142 ip community-list standard 1_43_141 permit 65000:1 0:43 0:141 ip community-list standard 1_44_140 permit 65000:1 0:44 0:140 ip community-list standard 1_45_139 permit 65000:1 0:45 0:139 ip community-list standard 1_46_138 permit 65000:1 0:46 0:138 ip community-list standard 1_47_137 permit 65000:1 0:47 0:137 ip community-list standard 1_48_136 permit 65000:1 0:48 0:136 ip community-list standard 1_49_135 permit 65000:1 0:49 0:135 ip community-list standard 1_50_134 permit 65000:1 0:50 0:134 ip community-list standard 1_51_133 permit 65000:1 0:51 0:133 ip community-list standard 1_52_132 permit 65000:1 0:52 0:132 ip community-list standard 1_53_131 permit 65000:1 0:53 0:131 ip community-list standard 1_54_130 permit 65000:1 0:54 0:130 ip community-list standard 1_55_129 permit 65000:1 0:55 0:129 ip community-list standard 1_56_128 permit 65000:1 0:56 0:128 ip community-list standard 1_57_127 permit 65000:1 0:57 0:127 ip community-list standard 1_58_126 permit 65000:1 0:58 0:126 ip community-list standard 1_59_125 permit 65000:1 0:59 0:125 ip community-list standard 1_60_124 permit 65000:1 0:60 0:124 ip community-list standard 1_61_123 permit 65000:1 0:61 0:123 ip community-list standard 1_62_122 permit 65000:1 0:62 0:122 ip community-list standard 1_63_121 permit 65000:1 0:63 0:121 ip community-list standard 1_64_120 permit 65000:1 0:64 0:120 ip community-list standard 1_65_119 permit 65000:1 0:65 0:119 ip community-list standard 1_66_118 permit 65000:1 0:66 0:118 ip community-list standard 1_67_117 permit 65000:1 0:67 0:117 ip community-list standard 1_68_116 permit 65000:1 0:68 0:116 ip community-list standard 1_69_115 permit 65000:1 0:69 0:115 ip community-list standard 1_70_114 permit 65000:1 0:70 0:114 ip community-list standard 1_71_113 permit 65000:1 0:71 0:113 ip community-list standard 1_72_112 permit 65000:1 0:72 0:112 ip community-list standard 1_73_111 permit 65000:1 0:73 0:111 ip community-list standard 1_74_110 permit 65000:1 0:74 0:110 ip community-list standard 1_75_109 permit 65000:1 0:75 0:109 ip community-list standard 1_76_108 permit 65000:1 0:76 0:108 ip community-list standard 1_77_107 permit 65000:1 0:77 0:107 ip community-list standard 1_78_106 permit 65000:1 0:78 0:106 ip community-list standard 1_79_105 permit 65000:1 0:79 0:105 ip community-list standard 1_80_104 permit 65000:1 0:80 0:104 ip community-list standard 1_81_103 permit 65000:1 0:81 0:103 ip community-list standard 1_82_102 permit 65000:1 0:82 0:102 ip community-list standard 1_83_101 permit 65000:1 0:83 0:101 ip community-list standard 1_84_100 permit 65000:1 0:84 0:100 ip community-list standard 1_85_99 permit 65000:1 0:85 0:99 ip community-list standard 1_86_98 permit 65000:1 0:86 0:98 ip community-list standard 1_87_97 permit 65000:1 0:87 0:97 ip community-list standard 1_88_96 permit 65000:1 0:88 0:96 ip community-list standard 1_89_95 permit 65000:1 0:89 0:95 ip community-list standard 1_90_94 permit 65000:1 0:90 0:94 ip community-list standard 1_91_93 permit 65000:1 0:91 0:93 ip community-list standard 1_92_92 permit 65000:1 0:92 0:92 ip community-list expanded c184 permit 1 ^65000:4_0:184_0:1$ ip community-list expanded c184 permit 2 ^65000:3_0:185_0:1$ ip community-list expanded c184 permit 3 ^65000:3_0:186_0:2$ ip community-list expanded c184 permit 4 ^65000:3_0:187_0:3$ ip community-list expanded c184 permit 5 ^65000:3_0:188_0:4$ ip community-list expanded c184 permit 6 ^65000:3_0:189_0:5$ ip community-list expanded c184 permit 7 ^65000:3_0:190_0:6$ ip community-list expanded c184 permit 8 ^65000:3_0:191_0:7$ ip community-list expanded c184 permit 9 ^65000:3_0:192_0:8$ ip community-list expanded c184 permit 10 ^65000:3_0:193_0:9$ ip community-list expanded c184 permit 11 ^65000:3_0:194_0:10$ ip community-list expanded c184 permit 12 ^65000:3_0:195_0:11$ ip community-list expanded c184 permit 13 ^65000:3_0:196_0:12$ ip community-list expanded c184 permit 14 ^65000:3_0:197_0:13$ ip community-list expanded c184 permit 15 ^65000:3_0:198_0:14$ ip community-list expanded c184 permit 16 ^65000:3_0:199_0:15$ ip community-list expanded c184 permit 17 ^65000:3_0:200_0:16$ ip community-list expanded c184 permit 18 ^65000:3_0:201_0:17$ ip community-list expanded c184 permit 19 ^65000:3_0:202_0:18$ ip community-list expanded c184 permit 20 ^65000:3_0:203_0:19$ ip community-list expanded c184 permit 21 ^65000:3_0:204_0:20$ ip community-list expanded c184 permit 22 ^65000:3_0:205_0:21$ ip community-list expanded c184 permit 23 ^65000:3_0:206_0:22$ ip community-list expanded c184 permit 24 ^65000:3_0:207_0:23$ ip community-list expanded c184 permit 25 ^65000:3_0:208_0:24$ ip community-list expanded c184 permit 26 ^65000:3_0:209_0:25$ ip community-list expanded c184 permit 27 ^65000:3_0:210_0:26$ ip community-list expanded c184 permit 28 ^65000:3_0:211_0:27$ ip community-list expanded c184 permit 29 ^65000:3_0:212_0:28$ ip community-list expanded c184 permit 30 ^65000:3_0:213_0:29$ ip community-list expanded c184 permit 31 ^65000:3_0:214_0:30$ ip community-list expanded c184 permit 32 ^65000:3_0:215_0:31$ ip community-list expanded c184 permit 33 ^65000:3_0:216_0:32$ ip community-list expanded c184 permit 34 ^65000:3_0:217_0:33$ ip community-list expanded c184 permit 35 ^65000:3_0:218_0:34$ ip community-list expanded c184 permit 36 ^65000:3_0:219_0:35$ ip community-list expanded c184 permit 37 ^65000:3_0:220_0:36$ ip community-list expanded c184 permit 38 ^65000:3_0:221_0:37$ ip community-list expanded c184 permit 39 ^65000:3_0:222_0:38$ ip community-list expanded c184 permit 40 ^65000:3_0:223_0:39$ ip community-list expanded c184 permit 41 ^65000:3_0:224_0:40$ ip community-list expanded c184 permit 42 ^65000:3_0:225_0:41$ ip community-list expanded c184 permit 43 ^65000:3_0:226_0:42$ ip community-list expanded c184 permit 44 ^65000:3_0:227_0:43$ ip community-list expanded c184 permit 45 ^65000:3_0:228_0:44$ ip community-list expanded c184 permit 46 ^65000:3_0:229_0:45$ ip community-list expanded c184 permit 47 ^65000:3_0:230_0:46$ ip community-list expanded c184 permit 48 ^65000:3_0:231_0:47$ ip community-list expanded c184 permit 49 ^65000:3_0:232_0:48$ ip community-list expanded c184 permit 50 ^65000:3_0:233_0:49$ ip community-list expanded c184 permit 51 ^65000:3_0:234_0:50$ ip community-list expanded c184 permit 52 ^65000:3_0:235_0:51$ ip community-list expanded c184 permit 53 ^65000:3_0:236_0:52$ ip community-list expanded c184 permit 54 ^65000:3_0:237_0:53$ ip community-list expanded c184 permit 55 ^65000:3_0:238_0:54$ ip community-list expanded c184 permit 56 ^65000:3_0:239_0:55$ ip community-list expanded c184 permit 57 ^65000:3_0:240_0:56$ ip community-list expanded c184 permit 58 ^65000:3_0:241_0:57$ ip community-list expanded c184 permit 59 ^65000:3_0:242_0:58$ ip community-list expanded c184 permit 60 ^65000:3_0:243_0:59$ ip community-list expanded c184 permit 61 ^65000:3_0:244_0:60$ ip community-list expanded c184 permit 62 ^65000:3_0:245_0:61$ ip community-list expanded c184 permit 63 ^65000:3_0:246_0:62$ ip community-list expanded c184 permit 64 ^65000:3_0:247_0:63$ ip community-list expanded c184 permit 65 ^65000:3_0:248_0:64$ ip community-list expanded c184 permit 66 ^65000:3_0:249_0:65$ ip community-list expanded c184 permit 67 ^65000:3_0:250_0:66$ ip community-list expanded c184 permit 68 ^65000:3_0:251_0:67$ ip community-list expanded c184 permit 69 ^65000:3_0:252_0:68$ ip community-list expanded c184 permit 70 ^65000:3_0:253_0:69$ ip community-list expanded c184 permit 71 ^65000:3_0:254_0:70$ ip community-list expanded c184 permit 72 ^65000:3_0:255_0:71$ ip community-list expanded c184 permit 73 ^65000:3_0:256_0:72$ route-map calculator permit 32008 match community 1_1_183 2_1_184 2_2_92 1_2_182 1_3_181 set community 0:184 route-map calculator permit 32009 match community 2_4_46 1_4_180 1_5_179 1_6_178 1_7_177 set community 0:184 route-map calculator permit 32010 match community 2_8_23 1_8_176 1_9_175 1_10_174 1_11_173 set community 0:184 route-map calculator permit 32011 match community 1_12_172 1_13_171 1_14_170 1_15_169 1_16_168 set community 0:184 route-map calculator permit 32012 match community 1_17_167 1_18_166 1_19_165 1_20_164 1_21_163 set community 0:184 route-map calculator permit 32013 match community 1_22_162 1_23_161 1_24_160 1_25_159 1_26_158 set community 0:184 route-map calculator permit 32014 match community 1_27_157 1_28_156 1_29_155 1_30_154 1_31_153 set community 0:184 route-map calculator permit 32015 match community 1_32_152 1_33_151 1_34_150 1_35_149 1_36_148 set community 0:184 route-map calculator permit 32016 match community 1_37_147 1_38_146 1_39_145 1_40_144 1_41_143 set community 0:184 route-map calculator permit 32017 match community 1_42_142 1_43_141 1_44_140 1_45_139 1_46_138 set community 0:184 route-map calculator permit 32018 match community 1_47_137 1_48_136 1_49_135 1_50_134 1_51_133 set community 0:184 route-map calculator permit 32019 match community 1_52_132 1_53_131 1_54_130 1_55_129 1_56_128 set community 0:184 route-map calculator permit 32020 match community 1_57_127 1_58_126 1_59_125 1_60_124 1_61_123 set community 0:184 route-map calculator permit 32021 match community 1_62_122 1_63_121 1_64_120 1_65_119 1_66_118 set community 0:184 route-map calculator permit 32022 match community 1_67_117 1_68_116 1_69_115 1_70_114 1_71_113 set community 0:184 route-map calculator permit 32023 match community 1_72_112 1_73_111 1_74_110 1_75_109 1_76_108 set community 0:184 route-map calculator permit 32024 match community 1_77_107 1_78_106 1_79_105 1_80_104 1_81_103 set community 0:184 route-map calculator permit 32025 match community 1_82_102 1_83_101 1_84_100 1_85_99 1_86_98 set community 0:184 route-map calculator permit 32026 match community 1_87_97 1_88_96 1_89_95 1_90_94 1_91_93 set community 0:184 route-map calculator permit 32027 match community 1_92_92 c4_184_1 c3_185_1 c3_186_2 c3_187_3 set community 0:184 route-map calculator permit 32028 match community c3_188_4 c3_189_5 c3_190_6 c3_191_7 c3_192_8 set community 0:184 route-map calculator permit 32029 match community c3_193_9 c3_194_10 c3_195_11 c3_196_12 c3_197_13 set community 0:184 route-map calculator permit 32030 match community c3_198_14 c3_199_15 c3_200_16 c3_201_17 c3_202_18 set community 0:184 route-map calculator permit 32031 match community c3_203_19 c3_204_20 c3_205_21 c3_206_22 c3_207_23 set community 0:184 route-map calculator permit 32032 match community c3_208_24 c3_209_25 c3_210_26 c3_211_27 c3_212_28 set community 0:184 route-map calculator permit 32033 match community c3_213_29 c3_214_30 c3_215_31 c3_216_32 c3_217_33 set community 0:184 route-map calculator permit 32034 match community c3_218_34 c3_219_35 c3_220_36 c3_221_37 c3_222_38 set community 0:184 route-map calculator permit 32035 match community c3_223_39 c3_224_40 c3_225_41 c3_226_42 c3_227_43 set community 0:184 route-map calculator permit 32036 match community c3_228_44 c3_229_45 c3_230_46 c3_231_47 c3_232_48 set community 0:184 route-map calculator permit 32037 match community c3_233_49 c3_234_50 c3_235_51 c3_236_52 c3_237_53 set community 0:184 route-map calculator permit 32038 match community c3_238_54 c3_239_55 c3_240_56 c3_241_57 c3_242_58 set community 0:184 route-map calculator permit 32039 match community c3_243_59 c3_244_60 c3_245_61 c3_246_62 c3_247_63 set community 0:184 route-map calculator permit 32040 match community c3_248_64 c3_249_65 c3_250_66 c3_251_67 c3_252_68 set community 0:184 route-map calculator permit 32041 match community c3_253_69 c3_254_70 c3_255_71 c3_256_72 set community 0:184 ip community-list standard 2_121_191 permit 65000:2 0:121 0:191 route-map calculator permit 32042 match community 2_121_191 set community 0:23111 ip community-list standard 2_179_245 permit 65000:2 0:179 0:245 route-map calculator permit 32043 match community 2_179_245 set community 0:43855 ip community-list standard 2_2_137 permit 65000:2 0:2 0:137 ip community-list standard 1_18_256 permit 65000:1 0:18 0:256 ip community-list standard 1_19_255 permit 65000:1 0:19 0:255 ip community-list standard 1_20_254 permit 65000:1 0:20 0:254 ip community-list standard 1_21_253 permit 65000:1 0:21 0:253 ip community-list standard 1_22_252 permit 65000:1 0:22 0:252 ip community-list standard 1_23_251 permit 65000:1 0:23 0:251 ip community-list standard 1_24_250 permit 65000:1 0:24 0:250 ip community-list standard 1_25_249 permit 65000:1 0:25 0:249 ip community-list standard 1_26_248 permit 65000:1 0:26 0:248 ip community-list standard 1_27_247 permit 65000:1 0:27 0:247 ip community-list standard 1_28_246 permit 65000:1 0:28 0:246 ip community-list standard 1_29_245 permit 65000:1 0:29 0:245 ip community-list standard 1_30_244 permit 65000:1 0:30 0:244 ip community-list standard 1_31_243 permit 65000:1 0:31 0:243 ip community-list standard 1_32_242 permit 65000:1 0:32 0:242 ip community-list standard 1_33_241 permit 65000:1 0:33 0:241 ip community-list standard 1_34_240 permit 65000:1 0:34 0:240 ip community-list standard 1_35_239 permit 65000:1 0:35 0:239 ip community-list standard 1_36_238 permit 65000:1 0:36 0:238 ip community-list standard 1_37_237 permit 65000:1 0:37 0:237 ip community-list standard 1_38_236 permit 65000:1 0:38 0:236 ip community-list standard 1_39_235 permit 65000:1 0:39 0:235 ip community-list standard 1_40_234 permit 65000:1 0:40 0:234 ip community-list standard 1_41_233 permit 65000:1 0:41 0:233 ip community-list standard 1_42_232 permit 65000:1 0:42 0:232 ip community-list standard 1_43_231 permit 65000:1 0:43 0:231 ip community-list standard 1_44_230 permit 65000:1 0:44 0:230 ip community-list standard 1_45_229 permit 65000:1 0:45 0:229 ip community-list standard 1_46_228 permit 65000:1 0:46 0:228 ip community-list standard 1_47_227 permit 65000:1 0:47 0:227 ip community-list standard 1_48_226 permit 65000:1 0:48 0:226 ip community-list standard 1_49_225 permit 65000:1 0:49 0:225 ip community-list standard 1_50_224 permit 65000:1 0:50 0:224 ip community-list standard 1_51_223 permit 65000:1 0:51 0:223 ip community-list standard 1_52_222 permit 65000:1 0:52 0:222 ip community-list standard 1_53_221 permit 65000:1 0:53 0:221 ip community-list standard 1_54_220 permit 65000:1 0:54 0:220 ip community-list standard 1_55_219 permit 65000:1 0:55 0:219 ip community-list standard 1_56_218 permit 65000:1 0:56 0:218 ip community-list standard 1_57_217 permit 65000:1 0:57 0:217 ip community-list standard 1_58_216 permit 65000:1 0:58 0:216 ip community-list standard 1_59_215 permit 65000:1 0:59 0:215 ip community-list standard 1_60_214 permit 65000:1 0:60 0:214 ip community-list standard 1_61_213 permit 65000:1 0:61 0:213 ip community-list standard 1_62_212 permit 65000:1 0:62 0:212 ip community-list standard 1_63_211 permit 65000:1 0:63 0:211 ip community-list standard 1_64_210 permit 65000:1 0:64 0:210 ip community-list standard 1_65_209 permit 65000:1 0:65 0:209 ip community-list standard 1_66_208 permit 65000:1 0:66 0:208 ip community-list standard 1_67_207 permit 65000:1 0:67 0:207 ip community-list standard 1_68_206 permit 65000:1 0:68 0:206 ip community-list standard 1_69_205 permit 65000:1 0:69 0:205 ip community-list standard 1_70_204 permit 65000:1 0:70 0:204 ip community-list standard 1_71_203 permit 65000:1 0:71 0:203 ip community-list standard 1_72_202 permit 65000:1 0:72 0:202 ip community-list standard 1_73_201 permit 65000:1 0:73 0:201 ip community-list standard 1_74_200 permit 65000:1 0:74 0:200 ip community-list standard 1_75_199 permit 65000:1 0:75 0:199 ip community-list standard 1_76_198 permit 65000:1 0:76 0:198 ip community-list standard 1_77_197 permit 65000:1 0:77 0:197 ip community-list standard 1_78_196 permit 65000:1 0:78 0:196 ip community-list standard 1_79_195 permit 65000:1 0:79 0:195 ip community-list standard 1_80_194 permit 65000:1 0:80 0:194 ip community-list standard 1_81_193 permit 65000:1 0:81 0:193 ip community-list standard 1_82_192 permit 65000:1 0:82 0:192 ip community-list standard 1_83_191 permit 65000:1 0:83 0:191 ip community-list standard 1_84_190 permit 65000:1 0:84 0:190 ip community-list standard 1_85_189 permit 65000:1 0:85 0:189 ip community-list standard 1_86_188 permit 65000:1 0:86 0:188 ip community-list standard 1_87_187 permit 65000:1 0:87 0:187 ip community-list standard 1_88_186 permit 65000:1 0:88 0:186 ip community-list standard 1_89_185 permit 65000:1 0:89 0:185 ip community-list standard 1_90_184 permit 65000:1 0:90 0:184 ip community-list standard 1_91_183 permit 65000:1 0:91 0:183 ip community-list standard 1_92_182 permit 65000:1 0:92 0:182 ip community-list standard 1_93_181 permit 65000:1 0:93 0:181 ip community-list standard 1_94_180 permit 65000:1 0:94 0:180 ip community-list standard 1_95_179 permit 65000:1 0:95 0:179 ip community-list standard 1_96_178 permit 65000:1 0:96 0:178 ip community-list standard 1_97_177 permit 65000:1 0:97 0:177 ip community-list standard 1_98_176 permit 65000:1 0:98 0:176 ip community-list standard 1_99_175 permit 65000:1 0:99 0:175 ip community-list standard 1_100_174 permit 65000:1 0:100 0:174 ip community-list standard 1_101_173 permit 65000:1 0:101 0:173 ip community-list standard 1_102_172 permit 65000:1 0:102 0:172 ip community-list standard 1_103_171 permit 65000:1 0:103 0:171 ip community-list standard 1_104_170 permit 65000:1 0:104 0:170 ip community-list standard 1_105_169 permit 65000:1 0:105 0:169 ip community-list standard 1_106_168 permit 65000:1 0:106 0:168 ip community-list standard 1_107_167 permit 65000:1 0:107 0:167 ip community-list standard 1_108_166 permit 65000:1 0:108 0:166 ip community-list standard 1_109_165 permit 65000:1 0:109 0:165 ip community-list standard 1_110_164 permit 65000:1 0:110 0:164 ip community-list standard 1_111_163 permit 65000:1 0:111 0:163 ip community-list standard 1_112_162 permit 65000:1 0:112 0:162 ip community-list standard 1_113_161 permit 65000:1 0:113 0:161 ip community-list standard 1_114_160 permit 65000:1 0:114 0:160 ip community-list standard 1_115_159 permit 65000:1 0:115 0:159 ip community-list standard 1_116_158 permit 65000:1 0:116 0:158 ip community-list standard 1_117_157 permit 65000:1 0:117 0:157 ip community-list standard 1_118_156 permit 65000:1 0:118 0:156 ip community-list standard 1_119_155 permit 65000:1 0:119 0:155 ip community-list standard 1_120_154 permit 65000:1 0:120 0:154 ip community-list standard 1_121_153 permit 65000:1 0:121 0:153 ip community-list standard 1_122_152 permit 65000:1 0:122 0:152 ip community-list standard 1_123_151 permit 65000:1 0:123 0:151 ip community-list standard 1_124_150 permit 65000:1 0:124 0:150 ip community-list standard 1_125_149 permit 65000:1 0:125 0:149 ip community-list standard 1_126_148 permit 65000:1 0:126 0:148 ip community-list standard 1_127_147 permit 65000:1 0:127 0:147 ip community-list standard 1_128_146 permit 65000:1 0:128 0:146 ip community-list standard 1_129_145 permit 65000:1 0:129 0:145 ip community-list standard 1_130_144 permit 65000:1 0:130 0:144 ip community-list standard 1_131_143 permit 65000:1 0:131 0:143 ip community-list standard 1_132_142 permit 65000:1 0:132 0:142 ip community-list standard 1_133_141 permit 65000:1 0:133 0:141 ip community-list standard 1_134_140 permit 65000:1 0:134 0:140 ip community-list standard 1_135_139 permit 65000:1 0:135 0:139 ip community-list standard 1_136_138 permit 65000:1 0:136 0:138 ip community-list standard 1_137_137 permit 65000:1 0:137 0:137 route-map calculator permit 32044 match community 2_2_137 1_18_256 1_19_255 1_20_254 1_21_253 set community 0:274 route-map calculator permit 32045 match community 1_22_252 1_23_251 1_24_250 1_25_249 1_26_248 set community 0:274 route-map calculator permit 32046 match community 1_27_247 1_28_246 1_29_245 1_30_244 1_31_243 set community 0:274 route-map calculator permit 32047 match community 1_32_242 1_33_241 1_34_240 1_35_239 1_36_238 set community 0:274 route-map calculator permit 32048 match community 1_37_237 1_38_236 1_39_235 1_40_234 1_41_233 set community 0:274 route-map calculator permit 32049 match community 1_42_232 1_43_231 1_44_230 1_45_229 1_46_228 set community 0:274 route-map calculator permit 32050 match community 1_47_227 1_48_226 1_49_225 1_50_224 1_51_223 set community 0:274 route-map calculator permit 32051 match community 1_52_222 1_53_221 1_54_220 1_55_219 1_56_218 set community 0:274 route-map calculator permit 32052 match community 1_57_217 1_58_216 1_59_215 1_60_214 1_61_213 set community 0:274 route-map calculator permit 32053 match community 1_62_212 1_63_211 1_64_210 1_65_209 1_66_208 set community 0:274 route-map calculator permit 32054 match community 1_67_207 1_68_206 1_69_205 1_70_204 1_71_203 set community 0:274 route-map calculator permit 32055 match community 1_72_202 1_73_201 1_74_200 1_75_199 1_76_198 set community 0:274 route-map calculator permit 32056 match community 1_77_197 1_78_196 1_79_195 1_80_194 1_81_193 set community 0:274 route-map calculator permit 32057 match community 1_82_192 1_83_191 1_84_190 1_85_189 1_86_188 set community 0:274 route-map calculator permit 32058 match community 1_87_187 1_88_186 1_89_185 1_90_184 1_91_183 set community 0:274 route-map calculator permit 32059 match community 1_92_182 1_93_181 1_94_180 1_95_179 1_96_178 set community 0:274 route-map calculator permit 32060 match community 1_97_177 1_98_176 1_99_175 1_100_174 1_101_173 set community 0:274 route-map calculator permit 32061 match community 1_102_172 1_103_171 1_104_170 1_105_169 1_106_168 set community 0:274 route-map calculator permit 32062 match community 1_107_167 1_108_166 1_109_165 1_110_164 1_111_163 set community 0:274 route-map calculator permit 32063 match community 1_112_162 1_113_161 1_114_160 1_115_159 1_116_158 set community 0:274 route-map calculator permit 32064 match community 1_117_157 1_118_156 1_119_155 1_120_154 1_121_153 set community 0:274 route-map calculator permit 32065 match community 1_122_152 1_123_151 1_124_150 1_125_149 1_126_148 set community 0:274 route-map calculator permit 32066 match community 1_127_147 1_128_146 1_129_145 1_130_144 1_131_143 set community 0:274 route-map calculator permit 32067 match community 1_132_142 1_133_141 1_134_140 1_135_139 1_136_138 set community 0:274 route-map calculator permit 32068 match community 1_137_137 set community 0:274 ip community-list standard 2_84_149 permit 65000:2 0:84 0:149 route-map calculator permit 32069 match community 2_84_149 set community 0:12516 ip community-list standard 2_13_219 permit 65000:2 0:13 0:219 ip community-list standard 2_39_73 permit 65000:2 0:39 0:73 route-map calculator permit 32070 match community 2_13_219 2_39_73 set community 0:2847 ip community-list standard 2_105_222 permit 65000:2 0:105 0:222 ip community-list standard 2_111_210 permit 65000:2 0:111 0:210 ip community-list standard 2_126_185 permit 65000:2 0:126 0:185 route-map calculator permit 32071 match community 2_105_222 2_111_210 2_126_185 set community 0:23310 ip community-list standard 2_139_200 permit 65000:2 0:139 0:200 route-map calculator permit 32072 match community 2_139_200 set community 0:27800 ip community-list standard 2_59_239 permit 65000:2 0:59 0:239 route-map calculator permit 32073 match community 2_59_239 set community 0:14101 ip community-list standard 2_190_230 permit 65000:2 0:190 0:230 route-map calculator permit 32074 match community 2_190_230 set community 0:43700 ip community-list standard 2_75_243 permit 65000:2 0:75 0:243 ip community-list standard 2_81_225 permit 65000:2 0:81 0:225 ip community-list standard 2_135_135 permit 65000:2 0:135 0:135 route-map calculator permit 32075 match community 2_75_243 2_81_225 2_135_135 set community 0:18225 ip community-list standard 2_25_242 permit 65000:2 0:25 0:242 ip community-list standard 2_50_121 permit 65000:2 0:50 0:121 ip community-list standard 2_55_110 permit 65000:2 0:55 0:110 route-map calculator permit 32076 match community 2_25_242 2_50_121 2_55_110 set community 0:6050 ip community-list standard 2_109_205 permit 65000:2 0:109 0:205 route-map calculator permit 32077 match community 2_109_205 set community 0:22345 ip community-list standard 2_49_109 permit 65000:2 0:49 0:109 route-map calculator permit 32078 match community 2_49_109 set community 0:5341 ip community-list standard 2_37_252 permit 65000:2 0:37 0:252 ip community-list standard 2_42_222 permit 65000:2 0:42 0:222 ip community-list standard 2_63_148 permit 65000:2 0:63 0:148 ip community-list standard 2_74_126 permit 65000:2 0:74 0:126 ip community-list standard 2_84_111 permit 65000:2 0:84 0:111 route-map calculator permit 32079 match community 2_37_252 2_42_222 2_63_148 2_74_126 2_84_111 set community 0:9324 ip community-list standard 2_161_164 permit 65000:2 0:161 0:164 route-map calculator permit 32080 match community 2_161_164 set community 0:26404 ip community-list standard 2_17_58 permit 65000:2 0:17 0:58 ip community-list standard 2_29_34 permit 65000:2 0:29 0:34 route-map calculator permit 32081 match community 2_17_58 2_29_34 set community 0:986 ip community-list standard 2_2_189 permit 65000:2 0:2 0:189 ip community-list standard 2_3_126 permit 65000:2 0:3 0:126 ip community-list standard 2_6_63 permit 65000:2 0:6 0:63 ip community-list standard 2_7_54 permit 65000:2 0:7 0:54 ip community-list standard 2_9_42 permit 65000:2 0:9 0:42 ip community-list standard 2_14_27 permit 65000:2 0:14 0:27 ip community-list standard 2_18_21 permit 65000:2 0:18 0:21 ip community-list standard 1_122_256 permit 65000:1 0:122 0:256 ip community-list standard 1_123_255 permit 65000:1 0:123 0:255 ip community-list standard 1_124_254 permit 65000:1 0:124 0:254 ip community-list standard 1_125_253 permit 65000:1 0:125 0:253 ip community-list standard 1_126_252 permit 65000:1 0:126 0:252 ip community-list standard 1_127_251 permit 65000:1 0:127 0:251 ip community-list standard 1_128_250 permit 65000:1 0:128 0:250 ip community-list standard 1_129_249 permit 65000:1 0:129 0:249 ip community-list standard 1_130_248 permit 65000:1 0:130 0:248 ip community-list standard 1_131_247 permit 65000:1 0:131 0:247 ip community-list standard 1_132_246 permit 65000:1 0:132 0:246 ip community-list standard 1_133_245 permit 65000:1 0:133 0:245 ip community-list standard 1_134_244 permit 65000:1 0:134 0:244 ip community-list standard 1_135_243 permit 65000:1 0:135 0:243 ip community-list standard 1_136_242 permit 65000:1 0:136 0:242 ip community-list standard 1_137_241 permit 65000:1 0:137 0:241 ip community-list standard 1_138_240 permit 65000:1 0:138 0:240 ip community-list standard 1_139_239 permit 65000:1 0:139 0:239 ip community-list standard 1_140_238 permit 65000:1 0:140 0:238 ip community-list standard 1_141_237 permit 65000:1 0:141 0:237 ip community-list standard 1_142_236 permit 65000:1 0:142 0:236 ip community-list standard 1_143_235 permit 65000:1 0:143 0:235 ip community-list standard 1_144_234 permit 65000:1 0:144 0:234 ip community-list standard 1_145_233 permit 65000:1 0:145 0:233 ip community-list standard 1_146_232 permit 65000:1 0:146 0:232 ip community-list standard 1_147_231 permit 65000:1 0:147 0:231 ip community-list standard 1_148_230 permit 65000:1 0:148 0:230 ip community-list standard 1_149_229 permit 65000:1 0:149 0:229 ip community-list standard 1_150_228 permit 65000:1 0:150 0:228 ip community-list standard 1_151_227 permit 65000:1 0:151 0:227 ip community-list standard 1_152_226 permit 65000:1 0:152 0:226 ip community-list standard 1_153_225 permit 65000:1 0:153 0:225 ip community-list standard 1_154_224 permit 65000:1 0:154 0:224 ip community-list standard 1_155_223 permit 65000:1 0:155 0:223 ip community-list standard 1_156_222 permit 65000:1 0:156 0:222 ip community-list standard 1_157_221 permit 65000:1 0:157 0:221 ip community-list standard 1_158_220 permit 65000:1 0:158 0:220 ip community-list standard 1_159_219 permit 65000:1 0:159 0:219 ip community-list standard 1_160_218 permit 65000:1 0:160 0:218 ip community-list standard 1_161_217 permit 65000:1 0:161 0:217 ip community-list standard 1_162_216 permit 65000:1 0:162 0:216 ip community-list standard 1_163_215 permit 65000:1 0:163 0:215 ip community-list standard 1_164_214 permit 65000:1 0:164 0:214 ip community-list standard 1_165_213 permit 65000:1 0:165 0:213 ip community-list standard 1_166_212 permit 65000:1 0:166 0:212 ip community-list standard 1_167_211 permit 65000:1 0:167 0:211 ip community-list standard 1_168_210 permit 65000:1 0:168 0:210 ip community-list standard 1_169_209 permit 65000:1 0:169 0:209 ip community-list standard 1_170_208 permit 65000:1 0:170 0:208 ip community-list standard 1_171_207 permit 65000:1 0:171 0:207 ip community-list standard 1_172_206 permit 65000:1 0:172 0:206 ip community-list standard 1_173_205 permit 65000:1 0:173 0:205 ip community-list standard 1_174_204 permit 65000:1 0:174 0:204 ip community-list standard 1_175_203 permit 65000:1 0:175 0:203 ip community-list standard 1_176_202 permit 65000:1 0:176 0:202 ip community-list standard 1_177_201 permit 65000:1 0:177 0:201 ip community-list standard 1_178_200 permit 65000:1 0:178 0:200 ip community-list standard 1_179_199 permit 65000:1 0:179 0:199 ip community-list standard 1_180_198 permit 65000:1 0:180 0:198 ip community-list standard 1_181_197 permit 65000:1 0:181 0:197 ip community-list standard 1_182_196 permit 65000:1 0:182 0:196 ip community-list standard 1_183_195 permit 65000:1 0:183 0:195 ip community-list standard 1_184_194 permit 65000:1 0:184 0:194 ip community-list standard 1_185_193 permit 65000:1 0:185 0:193 ip community-list standard 1_186_192 permit 65000:1 0:186 0:192 ip community-list standard 1_187_191 permit 65000:1 0:187 0:191 ip community-list standard 1_188_190 permit 65000:1 0:188 0:190 ip community-list standard 1_189_189 permit 65000:1 0:189 0:189 route-map calculator permit 32082 match community 2_2_189 2_3_126 2_6_63 2_7_54 2_9_42 set community 0:378 route-map calculator permit 32083 match community 2_14_27 2_18_21 1_122_256 1_123_255 1_124_254 set community 0:378 route-map calculator permit 32084 match community 1_125_253 1_126_252 1_127_251 1_128_250 1_129_249 set community 0:378 route-map calculator permit 32085 match community 1_130_248 1_131_247 1_132_246 1_133_245 1_134_244 set community 0:378 route-map calculator permit 32086 match community 1_135_243 1_136_242 1_137_241 1_138_240 1_139_239 set community 0:378 route-map calculator permit 32087 match community 1_140_238 1_141_237 1_142_236 1_143_235 1_144_234 set community 0:378 route-map calculator permit 32088 match community 1_145_233 1_146_232 1_147_231 1_148_230 1_149_229 set community 0:378 route-map calculator permit 32089 match community 1_150_228 1_151_227 1_152_226 1_153_225 1_154_224 set community 0:378 route-map calculator permit 32090 match community 1_155_223 1_156_222 1_157_221 1_158_220 1_159_219 set community 0:378 route-map calculator permit 32091 match community 1_160_218 1_161_217 1_162_216 1_163_215 1_164_214 set community 0:378 route-map calculator permit 32092 match community 1_165_213 1_166_212 1_167_211 1_168_210 1_169_209 set community 0:378 route-map calculator permit 32093 match community 1_170_208 1_171_207 1_172_206 1_173_205 1_174_204 set community 0:378 route-map calculator permit 32094 match community 1_175_203 1_176_202 1_177_201 1_178_200 1_179_199 set community 0:378 route-map calculator permit 32095 match community 1_180_198 1_181_197 1_182_196 1_183_195 1_184_194 set community 0:378 route-map calculator permit 32096 match community 1_185_193 1_186_192 1_187_191 1_188_190 1_189_189 set community 0:378 ip community-list standard 2_150_206 permit 65000:2 0:150 0:206 route-map calculator permit 32097 match community 2_150_206 set community 0:30900 ip community-list standard 2_33_191 permit 65000:2 0:33 0:191 route-map calculator permit 32098 match community 2_33_191 set community 0:6303 ip community-list standard 2_199_201 permit 65000:2 0:199 0:201 route-map calculator permit 32099 match community 2_199_201 set community 0:39999 ip community-list standard 2_56_251 permit 65000:2 0:56 0:251 route-map calculator permit 32100 match community 2_56_251 set community 0:14056 ip community-list standard 2_19_127 permit 65000:2 0:19 0:127 route-map calculator permit 32101 match community 2_19_127 set community 0:2413 ip community-list standard 2_98_217 permit 65000:2 0:98 0:217 route-map calculator permit 32102 match community 2_98_217 set community 0:21266 ip community-list standard 2_210_239 permit 65000:2 0:210 0:239 route-map calculator permit 32103 match community 2_210_239 set community 0:50190 ip community-list standard 2_82_184 permit 65000:2 0:82 0:184 ip community-list standard 2_92_164 permit 65000:2 0:92 0:164 route-map calculator permit 32104 match community 2_82_184 2_92_164 set community 0:15088 ip community-list standard 2_157_213 permit 65000:2 0:157 0:213 route-map calculator permit 32105 match community 2_157_213 set community 0:33441 ip community-list standard 2_6_238 permit 65000:2 0:6 0:238 ip community-list standard 2_7_204 permit 65000:2 0:7 0:204 ip community-list standard 2_12_119 permit 65000:2 0:12 0:119 ip community-list standard 2_14_102 permit 65000:2 0:14 0:102 ip community-list standard 2_17_84 permit 65000:2 0:17 0:84 ip community-list standard 2_21_68 permit 65000:2 0:21 0:68 ip community-list standard 2_28_51 permit 65000:2 0:28 0:51 ip community-list standard 2_34_42 permit 65000:2 0:34 0:42 route-map calculator permit 32106 match community 2_6_238 2_7_204 2_12_119 2_14_102 2_17_84 set community 0:1428 route-map calculator permit 32107 match community 2_21_68 2_28_51 2_34_42 set community 0:1428 ip community-list standard 2_68_204 permit 65000:2 0:68 0:204 ip community-list standard 2_102_136 permit 65000:2 0:102 0:136 route-map calculator permit 32108 match community 2_68_204 2_102_136 set community 0:13872 ip community-list standard 2_82_254 permit 65000:2 0:82 0:254 ip community-list standard 2_127_164 permit 65000:2 0:127 0:164 route-map calculator permit 32109 match community 2_82_254 2_127_164 set community 0:20828 ip community-list standard 2_62_233 permit 65000:2 0:62 0:233 route-map calculator permit 32110 match community 2_62_233 set community 0:14446 ip community-list standard 2_28_139 permit 65000:2 0:28 0:139 route-map calculator permit 32111 match community 2_28_139 set community 0:3892 ip community-list standard 2_210_223 permit 65000:2 0:210 0:223 route-map calculator permit 32112 match community 2_210_223 set community 0:46830 ip community-list standard 2_13_147 permit 65000:2 0:13 0:147 ip community-list standard 2_21_91 permit 65000:2 0:21 0:91 ip community-list standard 2_39_49 permit 65000:2 0:39 0:49 route-map calculator permit 32113 match community 2_13_147 2_21_91 2_39_49 set community 0:1911 ip community-list standard 2_127_163 permit 65000:2 0:127 0:163 route-map calculator permit 32114 match community 2_127_163 set community 0:20701 ip community-list standard 2_9_249 permit 65000:2 0:9 0:249 ip community-list standard 2_27_83 permit 65000:2 0:27 0:83 route-map calculator permit 32115 match community 2_9_249 2_27_83 set community 0:2241 ip community-list standard 2_122_244 permit 65000:2 0:122 0:244 route-map calculator permit 32116 match community 2_122_244 set community 0:29768 ip community-list standard 2_122_245 permit 65000:2 0:122 0:245 route-map calculator permit 32117 match community 2_122_245 set community 0:29890 ip community-list standard 2_34_234 permit 65000:2 0:34 0:234 ip community-list standard 2_36_221 permit 65000:2 0:36 0:221 ip community-list standard 2_39_204 permit 65000:2 0:39 0:204 ip community-list standard 2_51_156 permit 65000:2 0:51 0:156 ip community-list standard 2_52_153 permit 65000:2 0:52 0:153 ip community-list standard 2_68_117 permit 65000:2 0:68 0:117 ip community-list standard 2_78_102 permit 65000:2 0:78 0:102 route-map calculator permit 32118 match community 2_34_234 2_36_221 2_39_204 2_51_156 2_52_153 set community 0:7956 route-map calculator permit 32119 match community 2_68_117 2_78_102 set community 0:7956 ip community-list standard 2_19_186 permit 65000:2 0:19 0:186 ip community-list standard 2_31_114 permit 65000:2 0:31 0:114 ip community-list standard 2_38_93 permit 65000:2 0:38 0:93 ip community-list standard 2_57_62 permit 65000:2 0:57 0:62 route-map calculator permit 32120 match community 2_19_186 2_31_114 2_38_93 2_57_62 set community 0:3534 ip community-list standard 2_131_162 permit 65000:2 0:131 0:162 route-map calculator permit 32121 match community 2_131_162 set community 0:21222 ip community-list standard 2_23_233 permit 65000:2 0:23 0:233 route-map calculator permit 32122 match community 2_23_233 set community 0:5359 ip community-list standard 2_67_254 permit 65000:2 0:67 0:254 ip community-list standard 2_127_134 permit 65000:2 0:127 0:134 route-map calculator permit 32123 match community 2_67_254 2_127_134 set community 0:17018 ip community-list standard 2_119_237 permit 65000:2 0:119 0:237 route-map calculator permit 32124 match community 2_119_237 set community 0:28203 ip community-list standard 2_85_241 permit 65000:2 0:85 0:241 route-map calculator permit 32125 match community 2_85_241 set community 0:20485 ip community-list standard 2_26_159 permit 65000:2 0:26 0:159 ip community-list standard 2_39_106 permit 65000:2 0:39 0:106 ip community-list standard 2_53_78 permit 65000:2 0:53 0:78 route-map calculator permit 32126 match community 2_26_159 2_39_106 2_53_78 set community 0:4134 ip community-list standard 2_69_223 permit 65000:2 0:69 0:223 route-map calculator permit 32127 match community 2_69_223 set community 0:15387 ip community-list standard 2_37_71 permit 65000:2 0:37 0:71 route-map calculator permit 32128 match community 2_37_71 set community 0:2627 ip community-list standard 2_77_232 permit 65000:2 0:77 0:232 ip community-list standard 2_88_203 permit 65000:2 0:88 0:203 ip community-list standard 2_116_154 permit 65000:2 0:116 0:154 route-map calculator permit 32129 match community 2_77_232 2_88_203 2_116_154 set community 0:17864 ip community-list standard 2_245_246 permit 65000:2 0:245 0:246 route-map calculator permit 32130 match community 2_245_246 set community 0:60270 ip community-list standard 2_5_207 permit 65000:2 0:5 0:207 ip community-list standard 2_9_115 permit 65000:2 0:9 0:115 ip community-list standard 2_15_69 permit 65000:2 0:15 0:69 ip community-list standard 2_23_45 permit 65000:2 0:23 0:45 route-map calculator permit 32131 match community 2_5_207 2_9_115 2_15_69 2_23_45 set community 0:1035 ip community-list standard 2_184_256 permit 65000:2 0:184 0:256 route-map calculator permit 32132 match community 2_184_256 set community 0:47104 ip community-list standard 2_58_155 permit 65000:2 0:58 0:155 ip community-list standard 2_62_145 permit 65000:2 0:62 0:145 route-map calculator permit 32133 match community 2_58_155 2_62_145 set community 0:8990 ip community-list standard 2_111_131 permit 65000:2 0:111 0:131 route-map calculator permit 32134 match community 2_111_131 set community 0:14541 ip community-list standard 2_23_74 permit 65000:2 0:23 0:74 ip community-list standard 2_37_46 permit 65000:2 0:37 0:46 route-map calculator permit 32135 match community 2_23_74 2_37_46 set community 0:1702 ip community-list standard 2_117_159 permit 65000:2 0:117 0:159 route-map calculator permit 32136 match community 2_117_159 set community 0:18603 ip community-list standard 2_202_253 permit 65000:2 0:202 0:253 route-map calculator permit 32137 match community 2_202_253 set community 0:51106 ip community-list standard 2_32_245 permit 65000:2 0:32 0:245 ip community-list standard 2_35_224 permit 65000:2 0:35 0:224 ip community-list standard 2_40_196 permit 65000:2 0:40 0:196 ip community-list standard 2_49_160 permit 65000:2 0:49 0:160 ip community-list standard 2_56_140 permit 65000:2 0:56 0:140 ip community-list standard 2_70_112 permit 65000:2 0:70 0:112 ip community-list standard 2_80_98 permit 65000:2 0:80 0:98 route-map calculator permit 32138 match community 2_32_245 2_35_224 2_40_196 2_49_160 2_56_140 set community 0:7840 route-map calculator permit 32139 match community 2_70_112 2_80_98 set community 0:7840 ip community-list standard 2_111_252 permit 65000:2 0:111 0:252 ip community-list standard 2_126_222 permit 65000:2 0:126 0:222 ip community-list standard 2_148_189 permit 65000:2 0:148 0:189 route-map calculator permit 32140 match community 2_111_252 2_126_222 2_148_189 set community 0:27972 ip community-list standard 2_254_256 permit 65000:2 0:254 0:256 route-map calculator permit 32141 match community 2_254_256 set community 0:65024 ip community-list standard 2_112_151 permit 65000:2 0:112 0:151 route-map calculator permit 32142 match community 2_112_151 set community 0:16912 ip community-list standard 2_43_129 permit 65000:2 0:43 0:129 route-map calculator permit 32143 match community 2_43_129 set community 0:5547 ip community-list standard 2_86_206 permit 65000:2 0:86 0:206 ip community-list standard 2_103_172 permit 65000:2 0:103 0:172 route-map calculator permit 32144 match community 2_86_206 2_103_172 set community 0:17716 ip community-list standard 2_51_255 permit 65000:2 0:51 0:255 ip community-list standard 2_85_153 permit 65000:2 0:85 0:153 route-map calculator permit 32145 match community 2_51_255 2_85_153 set community 0:13005 ip community-list standard 2_201_251 permit 65000:2 0:201 0:251 route-map calculator permit 32146 match community 2_201_251 set community 0:50451 ip community-list standard 2_111_234 permit 65000:2 0:111 0:234 ip community-list standard 2_117_222 permit 65000:2 0:117 0:222 route-map calculator permit 32147 match community 2_111_234 2_117_222 set community 0:25974 ip community-list standard 2_142_205 permit 65000:2 0:142 0:205 route-map calculator permit 32148 match community 2_142_205 set community 0:29110 ip community-list standard 2_115_173 permit 65000:2 0:115 0:173 route-map calculator permit 32149 match community 2_115_173 set community 0:19895 ip community-list standard 2_127_129 permit 65000:2 0:127 0:129 route-map calculator permit 32150 match community 2_127_129 set community 0:16383 ip community-list standard 2_93_226 permit 65000:2 0:93 0:226 ip community-list standard 2_113_186 permit 65000:2 0:113 0:186 route-map calculator permit 32151 match community 2_93_226 2_113_186 set community 0:21018 ip community-list standard 2_108_233 permit 65000:2 0:108 0:233 route-map calculator permit 32152 match community 2_108_233 set community 0:25164 ip community-list standard 2_188_247 permit 65000:2 0:188 0:247 route-map calculator permit 32153 match community 2_188_247 set community 0:46436 ip community-list standard 2_39_97 permit 65000:2 0:39 0:97 route-map calculator permit 32154 match community 2_39_97 set community 0:3783 ip community-list standard 2_181_234 permit 65000:2 0:181 0:234 route-map calculator permit 32155 match community 2_181_234 set community 0:42354 ip community-list standard 2_221_252 permit 65000:2 0:221 0:252 ip community-list standard 2_234_238 permit 65000:2 0:234 0:238 route-map calculator permit 32156 match community 2_221_252 2_234_238 set community 0:55692 ip community-list standard 2_109_230 permit 65000:2 0:109 0:230 ip community-list standard 2_115_218 permit 65000:2 0:115 0:218 route-map calculator permit 32157 match community 2_109_230 2_115_218 set community 0:25070 ip community-list standard 2_179_239 permit 65000:2 0:179 0:239 route-map calculator permit 32158 match community 2_179_239 set community 0:42781 ip community-list standard 2_154_236 permit 65000:2 0:154 0:236 route-map calculator permit 32159 match community 2_154_236 set community 0:36344 ip community-list standard 2_129_248 permit 65000:2 0:129 0:248 ip community-list standard 2_172_186 permit 65000:2 0:172 0:186 route-map calculator permit 32160 match community 2_129_248 2_172_186 set community 0:31992 ip community-list standard 2_17_142 permit 65000:2 0:17 0:142 ip community-list standard 2_34_71 permit 65000:2 0:34 0:71 route-map calculator permit 32161 match community 2_17_142 2_34_71 set community 0:2414 ip community-list standard 2_185_223 permit 65000:2 0:185 0:223 route-map calculator permit 32162 match community 2_185_223 set community 0:41255 ip community-list standard 2_129_183 permit 65000:2 0:129 0:183 route-map calculator permit 32163 match community 2_129_183 set community 0:23607 ip community-list standard 2_157_225 permit 65000:2 0:157 0:225 route-map calculator permit 32164 match community 2_157_225 set community 0:35325 ip community-list standard 2_204_214 permit 65000:2 0:204 0:214 route-map calculator permit 32165 match community 2_204_214 set community 0:43656 ip community-list standard 2_152_254 permit 65000:2 0:152 0:254 route-map calculator permit 32166 match community 2_152_254 set community 0:38608 ip community-list standard 2_118_244 permit 65000:2 0:118 0:244 ip community-list standard 2_122_236 permit 65000:2 0:122 0:236 route-map calculator permit 32167 match community 2_118_244 2_122_236 set community 0:28792 ip community-list standard 2_20_233 permit 65000:2 0:20 0:233 route-map calculator permit 32168 match community 2_20_233 set community 0:4660 ip community-list standard 2_56_201 permit 65000:2 0:56 0:201 ip community-list standard 2_67_168 permit 65000:2 0:67 0:168 ip community-list standard 2_84_134 permit 65000:2 0:84 0:134 route-map calculator permit 32169 match community 2_56_201 2_67_168 2_84_134 set community 0:11256 ip community-list standard 2_206_206 permit 65000:2 0:206 0:206 route-map calculator permit 32170 match community 2_206_206 set community 0:42436 ip community-list standard 2_181_233 permit 65000:2 0:181 0:233 route-map calculator permit 32171 match community 2_181_233 set community 0:42173 ip community-list standard 2_94_209 permit 65000:2 0:94 0:209 route-map calculator permit 32172 match community 2_94_209 set community 0:19646 ip community-list standard 2_116_211 permit 65000:2 0:116 0:211 route-map calculator permit 32173 match community 2_116_211 set community 0:24476 ip community-list standard 2_71_163 permit 65000:2 0:71 0:163 route-map calculator permit 32174 match community 2_71_163 set community 0:11573 ip community-list standard 2_204_255 permit 65000:2 0:204 0:255 route-map calculator permit 32175 match community 2_204_255 set community 0:52020 ip community-list standard 2_42_223 permit 65000:2 0:42 0:223 route-map calculator permit 32176 match community 2_42_223 set community 0:9366 ip community-list standard 2_15_248 permit 65000:2 0:15 0:248 ip community-list standard 2_20_186 permit 65000:2 0:20 0:186 ip community-list standard 2_24_155 permit 65000:2 0:24 0:155 ip community-list standard 2_30_124 permit 65000:2 0:30 0:124 ip community-list standard 2_31_120 permit 65000:2 0:31 0:120 ip community-list standard 2_40_93 permit 65000:2 0:40 0:93 ip community-list standard 2_60_62 permit 65000:2 0:60 0:62 route-map calculator permit 32177 match community 2_15_248 2_20_186 2_24_155 2_30_124 2_31_120 set community 0:3720 route-map calculator permit 32178 match community 2_40_93 2_60_62 set community 0:3720 ip community-list standard 2_68_228 permit 65000:2 0:68 0:228 ip community-list standard 2_76_204 permit 65000:2 0:76 0:204 ip community-list standard 2_102_152 permit 65000:2 0:102 0:152 ip community-list standard 2_114_136 permit 65000:2 0:114 0:136 route-map calculator permit 32179 match community 2_68_228 2_76_204 2_102_152 2_114_136 set community 0:15504 ip community-list standard 2_77_246 permit 65000:2 0:77 0:246 ip community-list standard 2_82_231 permit 65000:2 0:82 0:231 ip community-list standard 2_123_154 permit 65000:2 0:123 0:154 route-map calculator permit 32180 match community 2_77_246 2_82_231 2_123_154 set community 0:18942 ip community-list standard 2_131_176 permit 65000:2 0:131 0:176 route-map calculator permit 32181 match community 2_131_176 set community 0:23056 ip community-list standard 2_79_218 permit 65000:2 0:79 0:218 ip community-list standard 2_109_158 permit 65000:2 0:109 0:158 route-map calculator permit 32182 match community 2_79_218 2_109_158 set community 0:17222 ip community-list standard 2_198_225 permit 65000:2 0:198 0:225 route-map calculator permit 32183 match community 2_198_225 set community 0:44550 ip community-list standard 2_131_138 permit 65000:2 0:131 0:138 route-map calculator permit 32184 match community 2_131_138 set community 0:18078 ip community-list standard 2_40_137 permit 65000:2 0:40 0:137 route-map calculator permit 32185 match community 2_40_137 set community 0:5480 ip community-list standard 2_191_196 permit 65000:2 0:191 0:196 route-map calculator permit 32186 match community 2_191_196 set community 0:37436 ip community-list standard 2_99_193 permit 65000:2 0:99 0:193 route-map calculator permit 32187 match community 2_99_193 set community 0:19107 ip community-list standard 2_67_170 permit 65000:2 0:67 0:170 ip community-list standard 2_85_134 permit 65000:2 0:85 0:134 route-map calculator permit 32188 match community 2_67_170 2_85_134 set community 0:11390 ip community-list standard 2_57_203 permit 65000:2 0:57 0:203 ip community-list standard 2_87_133 permit 65000:2 0:87 0:133 route-map calculator permit 32189 match community 2_57_203 2_87_133 set community 0:11571 ip community-list standard 2_45_157 permit 65000:2 0:45 0:157 route-map calculator permit 32190 match community 2_45_157 set community 0:7065 ip community-list standard 2_89_133 permit 65000:2 0:89 0:133 route-map calculator permit 32191 match community 2_89_133 set community 0:11837 ip community-list standard 2_187_219 permit 65000:2 0:187 0:219 route-map calculator permit 32192 match community 2_187_219 set community 0:40953 ip community-list standard 2_173_195 permit 65000:2 0:173 0:195 route-map calculator permit 32193 match community 2_173_195 set community 0:33735 ip community-list standard 2_146_209 permit 65000:2 0:146 0:209 route-map calculator permit 32194 match community 2_146_209 set community 0:30514 ip community-list standard 2_91_233 permit 65000:2 0:91 0:233 route-map calculator permit 32195 match community 2_91_233 set community 0:21203 ip community-list standard 2_23_230 permit 65000:2 0:23 0:230 ip community-list standard 2_46_115 permit 65000:2 0:46 0:115 route-map calculator permit 32196 match community 2_23_230 2_46_115 set community 0:5290 ip community-list standard 2_19_223 permit 65000:2 0:19 0:223 route-map calculator permit 32197 match community 2_19_223 set community 0:4237 ip community-list standard 2_8_232 permit 65000:2 0:8 0:232 ip community-list standard 2_16_116 permit 65000:2 0:16 0:116 ip community-list standard 2_29_64 permit 65000:2 0:29 0:64 ip community-list standard 2_32_58 permit 65000:2 0:32 0:58 route-map calculator permit 32198 match community 2_8_232 2_16_116 2_29_64 2_32_58 set community 0:1856 ip community-list standard 2_111_159 permit 65000:2 0:111 0:159 route-map calculator permit 32199 match community 2_111_159 set community 0:17649 ip community-list standard 2_125_137 permit 65000:2 0:125 0:137 route-map calculator permit 32200 match community 2_125_137 set community 0:17125 ip community-list standard 2_36_179 permit 65000:2 0:36 0:179 route-map calculator permit 32201 match community 2_36_179 set community 0:6444 ip community-list standard 2_181_221 permit 65000:2 0:181 0:221 route-map calculator permit 32202 match community 2_181_221 set community 0:40001 ip community-list standard 2_8_148 permit 65000:2 0:8 0:148 ip community-list standard 2_16_74 permit 65000:2 0:16 0:74 ip community-list standard 2_32_37 permit 65000:2 0:32 0:37 route-map calculator permit 32203 match community 2_8_148 2_16_74 2_32_37 set community 0:1184 ip community-list standard 2_211_246 permit 65000:2 0:211 0:246 route-map calculator permit 32204 match community 2_211_246 set community 0:51906 ip community-list standard 2_182_255 permit 65000:2 0:182 0:255 ip community-list standard 2_195_238 permit 65000:2 0:195 0:238 ip community-list standard 2_210_221 permit 65000:2 0:210 0:221 route-map calculator permit 32205 match community 2_182_255 2_195_238 2_210_221 set community 0:46410 ip community-list standard 2_43_238 permit 65000:2 0:43 0:238 ip community-list standard 2_86_119 permit 65000:2 0:86 0:119 route-map calculator permit 32206 match community 2_43_238 2_86_119 set community 0:10234 ip community-list standard 1_1_27 permit 65000:1 0:1 0:27 ip community-list standard 2_1_28 permit 65000:2 0:1 0:28 ip community-list standard 2_2_14 permit 65000:2 0:2 0:14 ip community-list standard 1_2_26 permit 65000:1 0:2 0:26 ip community-list standard 1_3_25 permit 65000:1 0:3 0:25 ip community-list standard 2_4_7 permit 65000:2 0:4 0:7 ip community-list standard 1_4_24 permit 65000:1 0:4 0:24 ip community-list standard 1_5_23 permit 65000:1 0:5 0:23 ip community-list standard 1_6_22 permit 65000:1 0:6 0:22 ip community-list standard 1_7_21 permit 65000:1 0:7 0:21 ip community-list standard 1_8_20 permit 65000:1 0:8 0:20 ip community-list standard 1_9_19 permit 65000:1 0:9 0:19 ip community-list standard 1_10_18 permit 65000:1 0:10 0:18 ip community-list standard 1_11_17 permit 65000:1 0:11 0:17 ip community-list standard 1_12_16 permit 65000:1 0:12 0:16 ip community-list standard 1_13_15 permit 65000:1 0:13 0:15 ip community-list standard 1_14_14 permit 65000:1 0:14 0:14 ip community-list expanded c28 permit 1 ^65000:4_0:28_0:1$ ip community-list expanded c28 permit 2 ^65000:3_0:29_0:1$ ip community-list expanded c28 permit 3 ^65000:3_0:30_0:2$ ip community-list expanded c28 permit 4 ^65000:3_0:31_0:3$ ip community-list expanded c28 permit 5 ^65000:3_0:32_0:4$ ip community-list expanded c28 permit 6 ^65000:3_0:33_0:5$ ip community-list expanded c28 permit 7 ^65000:3_0:34_0:6$ ip community-list expanded c28 permit 8 ^65000:3_0:35_0:7$ ip community-list expanded c28 permit 9 ^65000:3_0:36_0:8$ ip community-list expanded c28 permit 10 ^65000:3_0:37_0:9$ ip community-list expanded c28 permit 11 ^65000:3_0:38_0:10$ ip community-list expanded c28 permit 12 ^65000:3_0:39_0:11$ ip community-list expanded c28 permit 13 ^65000:3_0:40_0:12$ ip community-list expanded c28 permit 14 ^65000:3_0:41_0:13$ ip community-list expanded c28 permit 15 ^65000:3_0:42_0:14$ ip community-list expanded c28 permit 16 ^65000:3_0:43_0:15$ ip community-list expanded c28 permit 17 ^65000:3_0:44_0:16$ ip community-list expanded c28 permit 18 ^65000:3_0:45_0:17$ ip community-list expanded c28 permit 19 ^65000:3_0:46_0:18$ ip community-list expanded c28 permit 20 ^65000:3_0:47_0:19$ ip community-list expanded c28 permit 21 ^65000:3_0:48_0:20$ ip community-list expanded c28 permit 22 ^65000:3_0:49_0:21$ ip community-list expanded c28 permit 23 ^65000:3_0:50_0:22$ ip community-list expanded c28 permit 24 ^65000:3_0:51_0:23$ ip community-list expanded c28 permit 25 ^65000:3_0:52_0:24$ ip community-list expanded c28 permit 26 ^65000:3_0:53_0:25$ ip community-list expanded c28 permit 27 ^65000:3_0:54_0:26$ ip community-list expanded c28 permit 28 ^65000:3_0:55_0:27$ ip community-list expanded c28 permit 29 ^65000:4_0:56_0:2$ ip community-list expanded c28 permit 30 ^65000:3_0:56_0:28$ ip community-list expanded c28 permit 31 ^65000:4_0:57_0:2$ ip community-list expanded c28 permit 32 ^65000:3_0:57_0:29$ ip community-list expanded c28 permit 33 ^65000:3_0:58_0:30$ ip community-list expanded c28 permit 34 ^65000:3_0:59_0:31$ ip community-list expanded c28 permit 35 ^65000:3_0:60_0:32$ ip community-list expanded c28 permit 36 ^65000:3_0:61_0:33$ ip community-list expanded c28 permit 37 ^65000:3_0:62_0:34$ ip community-list expanded c28 permit 38 ^65000:3_0:63_0:35$ ip community-list expanded c28 permit 39 ^65000:3_0:64_0:36$ ip community-list expanded c28 permit 40 ^65000:3_0:65_0:37$ ip community-list expanded c28 permit 41 ^65000:3_0:66_0:38$ ip community-list expanded c28 permit 42 ^65000:3_0:67_0:39$ ip community-list expanded c28 permit 43 ^65000:3_0:68_0:40$ ip community-list expanded c28 permit 44 ^65000:3_0:69_0:41$ ip community-list expanded c28 permit 45 ^65000:3_0:70_0:42$ ip community-list expanded c28 permit 46 ^65000:3_0:71_0:43$ ip community-list expanded c28 permit 47 ^65000:3_0:72_0:44$ ip community-list expanded c28 permit 48 ^65000:3_0:73_0:45$ ip community-list expanded c28 permit 49 ^65000:3_0:74_0:46$ ip community-list expanded c28 permit 50 ^65000:3_0:75_0:47$ ip community-list expanded c28 permit 51 ^65000:3_0:76_0:48$ ip community-list expanded c28 permit 52 ^65000:3_0:77_0:49$ ip community-list expanded c28 permit 53 ^65000:3_0:78_0:50$ ip community-list expanded c28 permit 54 ^65000:3_0:79_0:51$ ip community-list expanded c28 permit 55 ^65000:3_0:80_0:52$ ip community-list expanded c28 permit 56 ^65000:3_0:81_0:53$ ip community-list expanded c28 permit 57 ^65000:3_0:82_0:54$ ip community-list expanded c28 permit 58 ^65000:3_0:83_0:55$ ip community-list expanded c28 permit 59 ^65000:4_0:84_0:3$ ip community-list expanded c28 permit 60 ^65000:3_0:84_0:56$ ip community-list expanded c28 permit 61 ^65000:4_0:85_0:3$ ip community-list expanded c28 permit 62 ^65000:3_0:85_0:57$ ip community-list expanded c28 permit 63 ^65000:4_0:86_0:3$ ip community-list expanded c28 permit 64 ^65000:3_0:86_0:58$ ip community-list expanded c28 permit 65 ^65000:3_0:87_0:59$ ip community-list expanded c28 permit 66 ^65000:3_0:88_0:60$ ip community-list expanded c28 permit 67 ^65000:3_0:89_0:61$ ip community-list expanded c28 permit 68 ^65000:3_0:90_0:62$ ip community-list expanded c28 permit 69 ^65000:3_0:91_0:63$ ip community-list expanded c28 permit 70 ^65000:3_0:92_0:64$ ip community-list expanded c28 permit 71 ^65000:3_0:93_0:65$ ip community-list expanded c28 permit 72 ^65000:3_0:94_0:66$ ip community-list expanded c28 permit 73 ^65000:3_0:95_0:67$ ip community-list expanded c28 permit 74 ^65000:3_0:96_0:68$ ip community-list expanded c28 permit 75 ^65000:3_0:97_0:69$ ip community-list expanded c28 permit 76 ^65000:3_0:98_0:70$ ip community-list expanded c28 permit 77 ^65000:3_0:99_0:71$ ip community-list expanded c28 permit 78 ^65000:3_0:100_0:72$ ip community-list expanded c28 permit 79 ^65000:3_0:101_0:73$ ip community-list expanded c28 permit 80 ^65000:3_0:102_0:74$ ip community-list expanded c28 permit 81 ^65000:3_0:103_0:75$ ip community-list expanded c28 permit 82 ^65000:3_0:104_0:76$ ip community-list expanded c28 permit 83 ^65000:3_0:105_0:77$ ip community-list expanded c28 permit 84 ^65000:3_0:106_0:78$ ip community-list expanded c28 permit 85 ^65000:3_0:107_0:79$ ip community-list expanded c28 permit 86 ^65000:3_0:108_0:80$ ip community-list expanded c28 permit 87 ^65000:3_0:109_0:81$ ip community-list expanded c28 permit 88 ^65000:3_0:110_0:82$ ip community-list expanded c28 permit 89 ^65000:3_0:111_0:83$ ip community-list expanded c28 permit 90 ^65000:4_0:112_0:4$ ip community-list expanded c28 permit 91 ^65000:3_0:112_0:84$ ip community-list expanded c28 permit 92 ^65000:4_0:113_0:4$ ip community-list expanded c28 permit 93 ^65000:3_0:113_0:85$ ip community-list expanded c28 permit 94 ^65000:4_0:114_0:4$ ip community-list expanded c28 permit 95 ^65000:3_0:114_0:86$ ip community-list expanded c28 permit 96 ^65000:4_0:115_0:4$ ip community-list expanded c28 permit 97 ^65000:3_0:115_0:87$ ip community-list expanded c28 permit 98 ^65000:3_0:116_0:88$ ip community-list expanded c28 permit 99 ^65000:3_0:117_0:89$ ip community-list expanded c28 permit 100 ^65000:3_0:118_0:90$ ip community-list expanded c28 permit 101 ^65000:3_0:119_0:91$ ip community-list expanded c28 permit 102 ^65000:3_0:120_0:92$ ip community-list expanded c28 permit 103 ^65000:3_0:121_0:93$ ip community-list expanded c28 permit 104 ^65000:3_0:122_0:94$ ip community-list expanded c28 permit 105 ^65000:3_0:123_0:95$ ip community-list expanded c28 permit 106 ^65000:3_0:124_0:96$ ip community-list expanded c28 permit 107 ^65000:3_0:125_0:97$ ip community-list expanded c28 permit 108 ^65000:3_0:126_0:98$ ip community-list expanded c28 permit 109 ^65000:3_0:127_0:99$ ip community-list expanded c28 permit 110 ^65000:3_0:128_0:100$ ip community-list expanded c28 permit 111 ^65000:3_0:129_0:101$ ip community-list expanded c28 permit 112 ^65000:3_0:130_0:102$ ip community-list expanded c28 permit 113 ^65000:3_0:131_0:103$ ip community-list expanded c28 permit 114 ^65000:3_0:132_0:104$ ip community-list expanded c28 permit 115 ^65000:3_0:133_0:105$ ip community-list expanded c28 permit 116 ^65000:3_0:134_0:106$ ip community-list expanded c28 permit 117 ^65000:3_0:135_0:107$ ip community-list expanded c28 permit 118 ^65000:3_0:136_0:108$ ip community-list expanded c28 permit 119 ^65000:3_0:137_0:109$ ip community-list expanded c28 permit 120 ^65000:3_0:138_0:110$ ip community-list expanded c28 permit 121 ^65000:3_0:139_0:111$ ip community-list expanded c28 permit 122 ^65000:4_0:140_0:5$ ip community-list expanded c28 permit 123 ^65000:3_0:140_0:112$ ip community-list expanded c28 permit 124 ^65000:4_0:141_0:5$ ip community-list expanded c28 permit 125 ^65000:3_0:141_0:113$ ip community-list expanded c28 permit 126 ^65000:4_0:142_0:5$ ip community-list expanded c28 permit 127 ^65000:3_0:142_0:114$ ip community-list expanded c28 permit 128 ^65000:4_0:143_0:5$ ip community-list expanded c28 permit 129 ^65000:3_0:143_0:115$ ip community-list expanded c28 permit 130 ^65000:4_0:144_0:5$ ip community-list expanded c28 permit 131 ^65000:3_0:144_0:116$ ip community-list expanded c28 permit 132 ^65000:3_0:145_0:117$ ip community-list expanded c28 permit 133 ^65000:3_0:146_0:118$ ip community-list expanded c28 permit 134 ^65000:3_0:147_0:119$ ip community-list expanded c28 permit 135 ^65000:3_0:148_0:120$ ip community-list expanded c28 permit 136 ^65000:3_0:149_0:121$ ip community-list expanded c28 permit 137 ^65000:3_0:150_0:122$ ip community-list expanded c28 permit 138 ^65000:3_0:151_0:123$ ip community-list expanded c28 permit 139 ^65000:3_0:152_0:124$ ip community-list expanded c28 permit 140 ^65000:3_0:153_0:125$ ip community-list expanded c28 permit 141 ^65000:3_0:154_0:126$ ip community-list expanded c28 permit 142 ^65000:3_0:155_0:127$ ip community-list expanded c28 permit 143 ^65000:3_0:156_0:128$ ip community-list expanded c28 permit 144 ^65000:3_0:157_0:129$ ip community-list expanded c28 permit 145 ^65000:3_0:158_0:130$ ip community-list expanded c28 permit 146 ^65000:3_0:159_0:131$ ip community-list expanded c28 permit 147 ^65000:3_0:160_0:132$ ip community-list expanded c28 permit 148 ^65000:3_0:161_0:133$ ip community-list expanded c28 permit 149 ^65000:3_0:162_0:134$ ip community-list expanded c28 permit 150 ^65000:3_0:163_0:135$ ip community-list expanded c28 permit 151 ^65000:3_0:164_0:136$ ip community-list expanded c28 permit 152 ^65000:3_0:165_0:137$ ip community-list expanded c28 permit 153 ^65000:3_0:166_0:138$ ip community-list expanded c28 permit 154 ^65000:3_0:167_0:139$ ip community-list expanded c28 permit 155 ^65000:4_0:168_0:6$ ip community-list expanded c28 permit 156 ^65000:3_0:168_0:140$ ip community-list expanded c28 permit 157 ^65000:4_0:169_0:6$ ip community-list expanded c28 permit 158 ^65000:3_0:169_0:141$ ip community-list expanded c28 permit 159 ^65000:4_0:170_0:6$ ip community-list expanded c28 permit 160 ^65000:3_0:170_0:142$ ip community-list expanded c28 permit 161 ^65000:4_0:171_0:6$ ip community-list expanded c28 permit 162 ^65000:3_0:171_0:143$ ip community-list expanded c28 permit 163 ^65000:4_0:172_0:6$ ip community-list expanded c28 permit 164 ^65000:3_0:172_0:144$ ip community-list expanded c28 permit 165 ^65000:4_0:173_0:6$ ip community-list expanded c28 permit 166 ^65000:3_0:173_0:145$ ip community-list expanded c28 permit 167 ^65000:3_0:174_0:146$ ip community-list expanded c28 permit 168 ^65000:3_0:175_0:147$ ip community-list expanded c28 permit 169 ^65000:3_0:176_0:148$ ip community-list expanded c28 permit 170 ^65000:3_0:177_0:149$ ip community-list expanded c28 permit 171 ^65000:3_0:178_0:150$ ip community-list expanded c28 permit 172 ^65000:3_0:179_0:151$ ip community-list expanded c28 permit 173 ^65000:3_0:180_0:152$ ip community-list expanded c28 permit 174 ^65000:3_0:181_0:153$ ip community-list expanded c28 permit 175 ^65000:3_0:182_0:154$ ip community-list expanded c28 permit 176 ^65000:3_0:183_0:155$ ip community-list expanded c28 permit 177 ^65000:3_0:184_0:156$ ip community-list expanded c28 permit 178 ^65000:3_0:185_0:157$ ip community-list expanded c28 permit 179 ^65000:3_0:186_0:158$ ip community-list expanded c28 permit 180 ^65000:3_0:187_0:159$ ip community-list expanded c28 permit 181 ^65000:3_0:188_0:160$ ip community-list expanded c28 permit 182 ^65000:3_0:189_0:161$ ip community-list expanded c28 permit 183 ^65000:3_0:190_0:162$ ip community-list expanded c28 permit 184 ^65000:3_0:191_0:163$ ip community-list expanded c28 permit 185 ^65000:3_0:192_0:164$ ip community-list expanded c28 permit 186 ^65000:3_0:193_0:165$ ip community-list expanded c28 permit 187 ^65000:3_0:194_0:166$ ip community-list expanded c28 permit 188 ^65000:3_0:195_0:167$ ip community-list expanded c28 permit 189 ^65000:4_0:196_0:7$ ip community-list expanded c28 permit 190 ^65000:3_0:196_0:168$ ip community-list expanded c28 permit 191 ^65000:4_0:197_0:7$ ip community-list expanded c28 permit 192 ^65000:3_0:197_0:169$ ip community-list expanded c28 permit 193 ^65000:4_0:198_0:7$ ip community-list expanded c28 permit 194 ^65000:3_0:198_0:170$ ip community-list expanded c28 permit 195 ^65000:4_0:199_0:7$ ip community-list expanded c28 permit 196 ^65000:3_0:199_0:171$ ip community-list expanded c28 permit 197 ^65000:4_0:200_0:7$ ip community-list expanded c28 permit 198 ^65000:3_0:200_0:172$ ip community-list expanded c28 permit 199 ^65000:4_0:201_0:7$ ip community-list expanded c28 permit 200 ^65000:3_0:201_0:173$ ip community-list expanded c28 permit 201 ^65000:4_0:202_0:7$ ip community-list expanded c28 permit 202 ^65000:3_0:202_0:174$ ip community-list expanded c28 permit 203 ^65000:3_0:203_0:175$ ip community-list expanded c28 permit 204 ^65000:3_0:204_0:176$ ip community-list expanded c28 permit 205 ^65000:3_0:205_0:177$ ip community-list expanded c28 permit 206 ^65000:3_0:206_0:178$ ip community-list expanded c28 permit 207 ^65000:3_0:207_0:179$ ip community-list expanded c28 permit 208 ^65000:3_0:208_0:180$ ip community-list expanded c28 permit 209 ^65000:3_0:209_0:181$ ip community-list expanded c28 permit 210 ^65000:3_0:210_0:182$ ip community-list expanded c28 permit 211 ^65000:3_0:211_0:183$ ip community-list expanded c28 permit 212 ^65000:3_0:212_0:184$ ip community-list expanded c28 permit 213 ^65000:3_0:213_0:185$ ip community-list expanded c28 permit 214 ^65000:3_0:214_0:186$ ip community-list expanded c28 permit 215 ^65000:3_0:215_0:187$ ip community-list expanded c28 permit 216 ^65000:3_0:216_0:188$ ip community-list expanded c28 permit 217 ^65000:3_0:217_0:189$ ip community-list expanded c28 permit 218 ^65000:3_0:218_0:190$ ip community-list expanded c28 permit 219 ^65000:3_0:219_0:191$ ip community-list expanded c28 permit 220 ^65000:3_0:220_0:192$ ip community-list expanded c28 permit 221 ^65000:3_0:221_0:193$ ip community-list expanded c28 permit 222 ^65000:3_0:222_0:194$ ip community-list expanded c28 permit 223 ^65000:3_0:223_0:195$ ip community-list expanded c28 permit 224 ^65000:4_0:224_0:8$ ip community-list expanded c28 permit 225 ^65000:3_0:224_0:196$ ip community-list expanded c28 permit 226 ^65000:4_0:225_0:8$ ip community-list expanded c28 permit 227 ^65000:3_0:225_0:197$ ip community-list expanded c28 permit 228 ^65000:4_0:226_0:8$ ip community-list expanded c28 permit 229 ^65000:3_0:226_0:198$ ip community-list expanded c28 permit 230 ^65000:4_0:227_0:8$ ip community-list expanded c28 permit 231 ^65000:3_0:227_0:199$ ip community-list expanded c28 permit 232 ^65000:4_0:228_0:8$ ip community-list expanded c28 permit 233 ^65000:3_0:228_0:200$ ip community-list expanded c28 permit 234 ^65000:4_0:229_0:8$ ip community-list expanded c28 permit 235 ^65000:3_0:229_0:201$ ip community-list expanded c28 permit 236 ^65000:4_0:230_0:8$ ip community-list expanded c28 permit 237 ^65000:3_0:230_0:202$ ip community-list expanded c28 permit 238 ^65000:4_0:231_0:8$ ip community-list expanded c28 permit 239 ^65000:3_0:231_0:203$ ip community-list expanded c28 permit 240 ^65000:3_0:232_0:204$ ip community-list expanded c28 permit 241 ^65000:3_0:233_0:205$ ip community-list expanded c28 permit 242 ^65000:3_0:234_0:206$ ip community-list expanded c28 permit 243 ^65000:3_0:235_0:207$ ip community-list expanded c28 permit 244 ^65000:3_0:236_0:208$ ip community-list expanded c28 permit 245 ^65000:3_0:237_0:209$ ip community-list expanded c28 permit 246 ^65000:3_0:238_0:210$ ip community-list expanded c28 permit 247 ^65000:3_0:239_0:211$ ip community-list expanded c28 permit 248 ^65000:3_0:240_0:212$ ip community-list expanded c28 permit 249 ^65000:3_0:241_0:213$ ip community-list expanded c28 permit 250 ^65000:3_0:242_0:214$ ip community-list expanded c28 permit 251 ^65000:3_0:243_0:215$ ip community-list expanded c28 permit 252 ^65000:3_0:244_0:216$ ip community-list expanded c28 permit 253 ^65000:3_0:245_0:217$ ip community-list expanded c28 permit 254 ^65000:3_0:246_0:218$ ip community-list expanded c28 permit 255 ^65000:3_0:247_0:219$ ip community-list expanded c28 permit 256 ^65000:3_0:248_0:220$ ip community-list expanded c28 permit 257 ^65000:3_0:249_0:221$ ip community-list expanded c28 permit 258 ^65000:3_0:250_0:222$ ip community-list expanded c28 permit 259 ^65000:3_0:251_0:223$ ip community-list expanded c28 permit 260 ^65000:4_0:252_0:9$ ip community-list expanded c28 permit 261 ^65000:3_0:252_0:224$ ip community-list expanded c28 permit 262 ^65000:4_0:253_0:9$ ip community-list expanded c28 permit 263 ^65000:3_0:253_0:225$ ip community-list expanded c28 permit 264 ^65000:4_0:254_0:9$ ip community-list expanded c28 permit 265 ^65000:3_0:254_0:226$ ip community-list expanded c28 permit 266 ^65000:4_0:255_0:9$ ip community-list expanded c28 permit 267 ^65000:3_0:255_0:227$ ip community-list expanded c28 permit 268 ^65000:4_0:256_0:9$ ip community-list expanded c28 permit 269 ^65000:3_0:256_0:228$ route-map calculator permit 32207 match community 1_1_27 2_1_28 2_2_14 1_2_26 1_3_25 set community 0:28 route-map calculator permit 32208 match community 2_4_7 1_4_24 1_5_23 1_6_22 1_7_21 set community 0:28 route-map calculator permit 32209 match community 1_8_20 1_9_19 1_10_18 1_11_17 1_12_16 set community 0:28 route-map calculator permit 32210 match community 1_13_15 1_14_14 c4_28_1 c3_29_1 c3_30_2 set community 0:28 route-map calculator permit 32211 match community c3_31_3 c3_32_4 c3_33_5 c3_34_6 c3_35_7 set community 0:28 route-map calculator permit 32212 match community c3_36_8 c3_37_9 c3_38_10 c3_39_11 c3_40_12 set community 0:28 route-map calculator permit 32213 match community c3_41_13 c3_42_14 c3_43_15 c3_44_16 c3_45_17 set community 0:28 route-map calculator permit 32214 match community c3_46_18 c3_47_19 c3_48_20 c3_49_21 c3_50_22 set community 0:28 route-map calculator permit 32215 match community c3_51_23 c3_52_24 c3_53_25 c3_54_26 c3_55_27 set community 0:28 route-map calculator permit 32216 match community c4_56_2 c3_56_28 c4_57_2 c3_57_29 c3_58_30 set community 0:28 route-map calculator permit 32217 match community c3_59_31 c3_60_32 c3_61_33 c3_62_34 c3_63_35 set community 0:28 route-map calculator permit 32218 match community c3_64_36 c3_65_37 c3_66_38 c3_67_39 c3_68_40 set community 0:28 route-map calculator permit 32219 match community c3_69_41 c3_70_42 c3_71_43 c3_72_44 c3_73_45 set community 0:28 route-map calculator permit 32220 match community c3_74_46 c3_75_47 c3_76_48 c3_77_49 c3_78_50 set community 0:28 route-map calculator permit 32221 match community c3_79_51 c3_80_52 c3_81_53 c3_82_54 c3_83_55 set community 0:28 route-map calculator permit 32222 match community c4_84_3 c3_84_56 c4_85_3 c3_85_57 c4_86_3 set community 0:28 route-map calculator permit 32223 match community c3_86_58 c3_87_59 c3_88_60 c3_89_61 c3_90_62 set community 0:28 route-map calculator permit 32224 match community c3_91_63 c3_92_64 c3_93_65 c3_94_66 c3_95_67 set community 0:28 route-map calculator permit 32225 match community c3_96_68 c3_97_69 c3_98_70 c3_99_71 c3_100_72 set community 0:28 route-map calculator permit 32226 match community c3_101_73 c3_102_74 c3_103_75 c3_104_76 c3_105_77 set community 0:28 route-map calculator permit 32227 match community c3_106_78 c3_107_79 c3_108_80 c3_109_81 c3_110_82 set community 0:28 route-map calculator permit 32228 match community c3_111_83 c4_112_4 c3_112_84 c4_113_4 c3_113_85 set community 0:28 route-map calculator permit 32229 match community c4_114_4 c3_114_86 c4_115_4 c3_115_87 c3_116_88 set community 0:28 route-map calculator permit 32230 match community c3_117_89 c3_118_90 c3_119_91 c3_120_92 c3_121_93 set community 0:28 route-map calculator permit 32231 match community c3_122_94 c3_123_95 c3_124_96 c3_125_97 c3_126_98 set community 0:28 route-map calculator permit 32232 match community c3_127_99 c3_128_100 c3_129_101 c3_130_102 c3_131_103 set community 0:28 route-map calculator permit 32233 match community c3_132_104 c3_133_105 c3_134_106 c3_135_107 c3_136_108 set community 0:28 route-map calculator permit 32234 match community c3_137_109 c3_138_110 c3_139_111 c4_140_5 c3_140_112 set community 0:28 route-map calculator permit 32235 match community c4_141_5 c3_141_113 c4_142_5 c3_142_114 c4_143_5 set community 0:28 route-map calculator permit 32236 match community c3_143_115 c4_144_5 c3_144_116 c3_145_117 c3_146_118 set community 0:28 route-map calculator permit 32237 match community c3_147_119 c3_148_120 c3_149_121 c3_150_122 c3_151_123 set community 0:28 route-map calculator permit 32238 match community c3_152_124 c3_153_125 c3_154_126 c3_155_127 c3_156_128 set community 0:28 route-map calculator permit 32239 match community c3_157_129 c3_158_130 c3_159_131 c3_160_132 c3_161_133 set community 0:28 route-map calculator permit 32240 match community c3_162_134 c3_163_135 c3_164_136 c3_165_137 c3_166_138 set community 0:28 route-map calculator permit 32241 match community c3_167_139 c4_168_6 c3_168_140 c4_169_6 c3_169_141 set community 0:28 route-map calculator permit 32242 match community c4_170_6 c3_170_142 c4_171_6 c3_171_143 c4_172_6 set community 0:28 route-map calculator permit 32243 match community c3_172_144 c4_173_6 c3_173_145 c3_174_146 c3_175_147 set community 0:28 route-map calculator permit 32244 match community c3_176_148 c3_177_149 c3_178_150 c3_179_151 c3_180_152 set community 0:28 route-map calculator permit 32245 match community c3_181_153 c3_182_154 c3_183_155 c3_184_156 c3_185_157 set community 0:28 route-map calculator permit 32246 match community c3_186_158 c3_187_159 c3_188_160 c3_189_161 c3_190_162 set community 0:28 route-map calculator permit 32247 match community c3_191_163 c3_192_164 c3_193_165 c3_194_166 c3_195_167 set community 0:28 route-map calculator permit 32248 match community c4_196_7 c3_196_168 c4_197_7 c3_197_169 c4_198_7 set community 0:28 route-map calculator permit 32249 match community c3_198_170 c4_199_7 c3_199_171 c4_200_7 c3_200_172 set community 0:28 route-map calculator permit 32250 match community c4_201_7 c3_201_173 c4_202_7 c3_202_174 c3_203_175 set community 0:28 route-map calculator permit 32251 match community c3_204_176 c3_205_177 c3_206_178 c3_207_179 c3_208_180 set community 0:28 route-map calculator permit 32252 match community c3_209_181 c3_210_182 c3_211_183 c3_212_184 c3_213_185 set community 0:28 route-map calculator permit 32253 match community c3_214_186 c3_215_187 c3_216_188 c3_217_189 c3_218_190 set community 0:28 route-map calculator permit 32254 match community c3_219_191 c3_220_192 c3_221_193 c3_222_194 c3_223_195 set community 0:28 route-map calculator permit 32255 match community c4_224_8 c3_224_196 c4_225_8 c3_225_197 c4_226_8 set community 0:28 route-map calculator permit 32256 match community c3_226_198 c4_227_8 c3_227_199 c4_228_8 c3_228_200 set community 0:28 route-map calculator permit 32257 match community c4_229_8 c3_229_201 c4_230_8 c3_230_202 c4_231_8 set community 0:28 route-map calculator permit 32258 match community c3_231_203 c3_232_204 c3_233_205 c3_234_206 c3_235_207 set community 0:28 route-map calculator permit 32259 match community c3_236_208 c3_237_209 c3_238_210 c3_239_211 c3_240_212 set community 0:28 route-map calculator permit 32260 match community c3_241_213 c3_242_214 c3_243_215 c3_244_216 c3_245_217 set community 0:28 route-map calculator permit 32261 match community c3_246_218 c3_247_219 c3_248_220 c3_249_221 c3_250_222 set community 0:28 route-map calculator permit 32262 match community c3_251_223 c4_252_9 c3_252_224 c4_253_9 c3_253_225 set community 0:28 route-map calculator permit 32263 match community c4_254_9 c3_254_226 c4_255_9 c3_255_227 c4_256_9 set community 0:28 route-map calculator permit 32264 match community c3_256_228 set community 0:28 ip community-list standard 2_180_247 permit 65000:2 0:180 0:247 ip community-list standard 2_190_234 permit 65000:2 0:190 0:234 ip community-list standard 2_195_228 permit 65000:2 0:195 0:228 route-map calculator permit 32265 match community 2_180_247 2_190_234 2_195_228 set community 0:44460 ip community-list standard 2_16_202 permit 65000:2 0:16 0:202 ip community-list standard 2_32_101 permit 65000:2 0:32 0:101 route-map calculator permit 32266 match community 2_16_202 2_32_101 set community 0:3232 ip community-list standard 2_39_199 permit 65000:2 0:39 0:199 route-map calculator permit 32267 match community 2_39_199 set community 0:7761 ip community-list standard 2_129_251 permit 65000:2 0:129 0:251 route-map calculator permit 32268 match community 2_129_251 set community 0:32379 ip community-list standard 2_170_241 permit 65000:2 0:170 0:241 route-map calculator permit 32269 match community 2_170_241 set community 0:40970 ip community-list standard 2_190_238 permit 65000:2 0:190 0:238 route-map calculator permit 32270 match community 2_190_238 set community 0:45220 ip community-list standard 2_64_198 permit 65000:2 0:64 0:198 ip community-list standard 2_66_192 permit 65000:2 0:66 0:192 ip community-list standard 2_72_176 permit 65000:2 0:72 0:176 ip community-list standard 2_88_144 permit 65000:2 0:88 0:144 ip community-list standard 2_96_132 permit 65000:2 0:96 0:132 ip community-list standard 2_99_128 permit 65000:2 0:99 0:128 route-map calculator permit 32271 match community 2_64_198 2_66_192 2_72_176 2_88_144 2_96_132 set community 0:12672 route-map calculator permit 32272 match community 2_99_128 set community 0:12672 ip community-list standard 2_123_221 permit 65000:2 0:123 0:221 route-map calculator permit 32273 match community 2_123_221 set community 0:27183 ip community-list standard 2_74_250 permit 65000:2 0:74 0:250 ip community-list standard 2_100_185 permit 65000:2 0:100 0:185 ip community-list standard 2_125_148 permit 65000:2 0:125 0:148 route-map calculator permit 32274 match community 2_74_250 2_100_185 2_125_148 set community 0:18500 ip community-list standard 2_9_217 permit 65000:2 0:9 0:217 ip community-list standard 2_21_93 permit 65000:2 0:21 0:93 ip community-list standard 2_31_63 permit 65000:2 0:31 0:63 route-map calculator permit 32275 match community 2_9_217 2_21_93 2_31_63 set community 0:1953 ip community-list standard 2_65_157 permit 65000:2 0:65 0:157 route-map calculator permit 32276 match community 2_65_157 set community 0:10205 ip community-list standard 2_5_163 permit 65000:2 0:5 0:163 route-map calculator permit 32277 match community 2_5_163 set community 0:815 ip community-list standard 2_130_226 permit 65000:2 0:130 0:226 route-map calculator permit 32278 match community 2_130_226 set community 0:29380 ip community-list standard 2_143_226 permit 65000:2 0:143 0:226 route-map calculator permit 32279 match community 2_143_226 set community 0:32318 ip community-list standard 2_182_196 permit 65000:2 0:182 0:196 route-map calculator permit 32280 match community 2_182_196 set community 0:35672 ip community-list standard 2_33_205 permit 65000:2 0:33 0:205 ip community-list standard 2_41_165 permit 65000:2 0:41 0:165 ip community-list standard 2_55_123 permit 65000:2 0:55 0:123 route-map calculator permit 32281 match community 2_33_205 2_41_165 2_55_123 set community 0:6765 ip community-list standard 2_30_218 permit 65000:2 0:30 0:218 ip community-list standard 2_60_109 permit 65000:2 0:60 0:109 route-map calculator permit 32282 match community 2_30_218 2_60_109 set community 0:6540 ip community-list standard 2_65_163 permit 65000:2 0:65 0:163 route-map calculator permit 32283 match community 2_65_163 set community 0:10595 ip community-list standard 2_45_181 permit 65000:2 0:45 0:181 route-map calculator permit 32284 match community 2_45_181 set community 0:8145 ip community-list standard 2_173_211 permit 65000:2 0:173 0:211 route-map calculator permit 32285 match community 2_173_211 set community 0:36503 ip community-list standard 2_132_239 permit 65000:2 0:132 0:239 route-map calculator permit 32286 match community 2_132_239 set community 0:31548 ip community-list standard 2_75_139 permit 65000:2 0:75 0:139 route-map calculator permit 32287 match community 2_75_139 set community 0:10425 ip community-list standard 2_137_196 permit 65000:2 0:137 0:196 route-map calculator permit 32288 match community 2_137_196 set community 0:26852 ip community-list standard 2_35_205 permit 65000:2 0:35 0:205 ip community-list standard 2_41_175 permit 65000:2 0:41 0:175 route-map calculator permit 32289 match community 2_35_205 2_41_175 set community 0:7175 ip community-list standard 2_209_238 permit 65000:2 0:209 0:238 route-map calculator permit 32290 match community 2_209_238 set community 0:49742 ip community-list standard 2_66_157 permit 65000:2 0:66 0:157 route-map calculator permit 32291 match community 2_66_157 set community 0:10362 ip community-list standard 2_109_240 permit 65000:2 0:109 0:240 ip community-list standard 2_120_218 permit 65000:2 0:120 0:218 route-map calculator permit 32292 match community 2_109_240 2_120_218 set community 0:26160 ip community-list standard 2_32_214 permit 65000:2 0:32 0:214 ip community-list standard 2_64_107 permit 65000:2 0:64 0:107 route-map calculator permit 32293 match community 2_32_214 2_64_107 set community 0:6848 ip community-list standard 2_192_221 permit 65000:2 0:192 0:221 ip community-list standard 2_204_208 permit 65000:2 0:204 0:208 route-map calculator permit 32294 match community 2_192_221 2_204_208 set community 0:42432 ip community-list standard 2_5_118 permit 65000:2 0:5 0:118 ip community-list standard 2_10_59 permit 65000:2 0:10 0:59 route-map calculator permit 32295 match community 2_5_118 2_10_59 set community 0:590 ip community-list standard 2_18_228 permit 65000:2 0:18 0:228 ip community-list standard 2_19_216 permit 65000:2 0:19 0:216 ip community-list standard 2_24_171 permit 65000:2 0:24 0:171 ip community-list standard 2_27_152 permit 65000:2 0:27 0:152 ip community-list standard 2_36_114 permit 65000:2 0:36 0:114 ip community-list standard 2_38_108 permit 65000:2 0:38 0:108 ip community-list standard 2_54_76 permit 65000:2 0:54 0:76 ip community-list standard 2_57_72 permit 65000:2 0:57 0:72 route-map calculator permit 32296 match community 2_18_228 2_19_216 2_24_171 2_27_152 2_36_114 set community 0:4104 route-map calculator permit 32297 match community 2_38_108 2_54_76 2_57_72 set community 0:4104 ip community-list standard 2_31_223 permit 65000:2 0:31 0:223 route-map calculator permit 32298 match community 2_31_223 set community 0:6913 ip community-list standard 2_115_251 permit 65000:2 0:115 0:251 route-map calculator permit 32299 match community 2_115_251 set community 0:28865 ip community-list standard 2_14_147 permit 65000:2 0:14 0:147 ip community-list standard 2_21_98 permit 65000:2 0:21 0:98 ip community-list standard 2_42_49 permit 65000:2 0:42 0:49 route-map calculator permit 32300 match community 2_14_147 2_21_98 2_42_49 set community 0:2058 ip community-list standard 2_2_253 permit 65000:2 0:2 0:253 ip community-list standard 2_11_46 permit 65000:2 0:11 0:46 ip community-list standard 2_22_23 permit 65000:2 0:22 0:23 ip community-list standard 1_250_256 permit 65000:1 0:250 0:256 ip community-list standard 1_251_255 permit 65000:1 0:251 0:255 ip community-list standard 1_252_254 permit 65000:1 0:252 0:254 ip community-list standard 1_253_253 permit 65000:1 0:253 0:253 route-map calculator permit 32301 match community 2_2_253 2_11_46 2_22_23 1_250_256 1_251_255 set community 0:506 route-map calculator permit 32302 match community 1_252_254 1_253_253 set community 0:506 ip community-list standard 2_157_236 permit 65000:2 0:157 0:236 route-map calculator permit 32303 match community 2_157_236 set community 0:37052 ip community-list standard 2_23_97 permit 65000:2 0:23 0:97 route-map calculator permit 32304 match community 2_23_97 set community 0:2231 ip community-list standard 2_12_208 permit 65000:2 0:12 0:208 ip community-list standard 2_13_192 permit 65000:2 0:13 0:192 ip community-list standard 2_16_156 permit 65000:2 0:16 0:156 ip community-list standard 2_24_104 permit 65000:2 0:24 0:104 ip community-list standard 2_26_96 permit 65000:2 0:26 0:96 ip community-list standard 2_32_78 permit 65000:2 0:32 0:78 ip community-list standard 2_39_64 permit 65000:2 0:39 0:64 ip community-list standard 2_48_52 permit 65000:2 0:48 0:52 route-map calculator permit 32305 match community 2_12_208 2_13_192 2_16_156 2_24_104 2_26_96 set community 0:2496 route-map calculator permit 32306 match community 2_32_78 2_39_64 2_48_52 set community 0:2496 ip community-list standard 2_13_93 permit 65000:2 0:13 0:93 ip community-list standard 2_31_39 permit 65000:2 0:31 0:39 route-map calculator permit 32307 match community 2_13_93 2_31_39 set community 0:1209 ip community-list standard 2_139_163 permit 65000:2 0:139 0:163 route-map calculator permit 32308 match community 2_139_163 set community 0:22657 ip community-list standard 2_101_167 permit 65000:2 0:101 0:167 route-map calculator permit 32309 match community 2_101_167 set community 0:16867 ip community-list standard 2_157_194 permit 65000:2 0:157 0:194 route-map calculator permit 32310 match community 2_157_194 set community 0:30458 ip community-list standard 2_213_235 permit 65000:2 0:213 0:235 route-map calculator permit 32311 match community 2_213_235 set community 0:50055 ip community-list standard 2_5_77 permit 65000:2 0:5 0:77 ip community-list standard 2_7_55 permit 65000:2 0:7 0:55 ip community-list standard 2_11_35 permit 65000:2 0:11 0:35 ip community-list standard 1_129_256 permit 65000:1 0:129 0:256 ip community-list standard 1_130_255 permit 65000:1 0:130 0:255 ip community-list standard 1_131_254 permit 65000:1 0:131 0:254 ip community-list standard 1_132_253 permit 65000:1 0:132 0:253 ip community-list standard 1_133_252 permit 65000:1 0:133 0:252 ip community-list standard 1_134_251 permit 65000:1 0:134 0:251 ip community-list standard 1_135_250 permit 65000:1 0:135 0:250 ip community-list standard 1_136_249 permit 65000:1 0:136 0:249 ip community-list standard 1_137_248 permit 65000:1 0:137 0:248 ip community-list standard 1_138_247 permit 65000:1 0:138 0:247 ip community-list standard 1_139_246 permit 65000:1 0:139 0:246 ip community-list standard 1_140_245 permit 65000:1 0:140 0:245 ip community-list standard 1_141_244 permit 65000:1 0:141 0:244 ip community-list standard 1_142_243 permit 65000:1 0:142 0:243 ip community-list standard 1_143_242 permit 65000:1 0:143 0:242 ip community-list standard 1_144_241 permit 65000:1 0:144 0:241 ip community-list standard 1_145_240 permit 65000:1 0:145 0:240 ip community-list standard 1_146_239 permit 65000:1 0:146 0:239 ip community-list standard 1_147_238 permit 65000:1 0:147 0:238 ip community-list standard 1_148_237 permit 65000:1 0:148 0:237 ip community-list standard 1_149_236 permit 65000:1 0:149 0:236 ip community-list standard 1_150_235 permit 65000:1 0:150 0:235 ip community-list standard 1_151_234 permit 65000:1 0:151 0:234 ip community-list standard 1_152_233 permit 65000:1 0:152 0:233 ip community-list standard 1_153_232 permit 65000:1 0:153 0:232 ip community-list standard 1_154_231 permit 65000:1 0:154 0:231 ip community-list standard 1_155_230 permit 65000:1 0:155 0:230 ip community-list standard 1_156_229 permit 65000:1 0:156 0:229 ip community-list standard 1_157_228 permit 65000:1 0:157 0:228 ip community-list standard 1_158_227 permit 65000:1 0:158 0:227 ip community-list standard 1_159_226 permit 65000:1 0:159 0:226 ip community-list standard 1_160_225 permit 65000:1 0:160 0:225 ip community-list standard 1_161_224 permit 65000:1 0:161 0:224 ip community-list standard 1_162_223 permit 65000:1 0:162 0:223 ip community-list standard 1_163_222 permit 65000:1 0:163 0:222 ip community-list standard 1_164_221 permit 65000:1 0:164 0:221 ip community-list standard 1_165_220 permit 65000:1 0:165 0:220 ip community-list standard 1_166_219 permit 65000:1 0:166 0:219 ip community-list standard 1_167_218 permit 65000:1 0:167 0:218 ip community-list standard 1_168_217 permit 65000:1 0:168 0:217 ip community-list standard 1_169_216 permit 65000:1 0:169 0:216 ip community-list standard 1_170_215 permit 65000:1 0:170 0:215 ip community-list standard 1_171_214 permit 65000:1 0:171 0:214 ip community-list standard 1_172_213 permit 65000:1 0:172 0:213 ip community-list standard 1_173_212 permit 65000:1 0:173 0:212 ip community-list standard 1_174_211 permit 65000:1 0:174 0:211 ip community-list standard 1_175_210 permit 65000:1 0:175 0:210 ip community-list standard 1_176_209 permit 65000:1 0:176 0:209 ip community-list standard 1_177_208 permit 65000:1 0:177 0:208 ip community-list standard 1_178_207 permit 65000:1 0:178 0:207 ip community-list standard 1_179_206 permit 65000:1 0:179 0:206 ip community-list standard 1_180_205 permit 65000:1 0:180 0:205 ip community-list standard 1_181_204 permit 65000:1 0:181 0:204 ip community-list standard 1_182_203 permit 65000:1 0:182 0:203 ip community-list standard 1_183_202 permit 65000:1 0:183 0:202 ip community-list standard 1_184_201 permit 65000:1 0:184 0:201 ip community-list standard 1_185_200 permit 65000:1 0:185 0:200 ip community-list standard 1_186_199 permit 65000:1 0:186 0:199 ip community-list standard 1_187_198 permit 65000:1 0:187 0:198 ip community-list standard 1_188_197 permit 65000:1 0:188 0:197 ip community-list standard 1_189_196 permit 65000:1 0:189 0:196 ip community-list standard 1_190_195 permit 65000:1 0:190 0:195 ip community-list standard 1_191_194 permit 65000:1 0:191 0:194 ip community-list standard 1_192_193 permit 65000:1 0:192 0:193 route-map calculator permit 32312 match community 2_5_77 2_7_55 2_11_35 1_129_256 1_130_255 set community 0:385 route-map calculator permit 32313 match community 1_131_254 1_132_253 1_133_252 1_134_251 1_135_250 set community 0:385 route-map calculator permit 32314 match community 1_136_249 1_137_248 1_138_247 1_139_246 1_140_245 set community 0:385 route-map calculator permit 32315 match community 1_141_244 1_142_243 1_143_242 1_144_241 1_145_240 set community 0:385 route-map calculator permit 32316 match community 1_146_239 1_147_238 1_148_237 1_149_236 1_150_235 set community 0:385 route-map calculator permit 32317 match community 1_151_234 1_152_233 1_153_232 1_154_231 1_155_230 set community 0:385 route-map calculator permit 32318 match community 1_156_229 1_157_228 1_158_227 1_159_226 1_160_225 set community 0:385 route-map calculator permit 32319 match community 1_161_224 1_162_223 1_163_222 1_164_221 1_165_220 set community 0:385 route-map calculator permit 32320 match community 1_166_219 1_167_218 1_168_217 1_169_216 1_170_215 set community 0:385 route-map calculator permit 32321 match community 1_171_214 1_172_213 1_173_212 1_174_211 1_175_210 set community 0:385 route-map calculator permit 32322 match community 1_176_209 1_177_208 1_178_207 1_179_206 1_180_205 set community 0:385 route-map calculator permit 32323 match community 1_181_204 1_182_203 1_183_202 1_184_201 1_185_200 set community 0:385 route-map calculator permit 32324 match community 1_186_199 1_187_198 1_188_197 1_189_196 1_190_195 set community 0:385 route-map calculator permit 32325 match community 1_191_194 1_192_193 set community 0:385 ip community-list standard 2_67_134 permit 65000:2 0:67 0:134 route-map calculator permit 32326 match community 2_67_134 set community 0:8978 ip community-list standard 2_75_248 permit 65000:2 0:75 0:248 ip community-list standard 2_93_200 permit 65000:2 0:93 0:200 ip community-list standard 2_100_186 permit 65000:2 0:100 0:186 ip community-list standard 2_120_155 permit 65000:2 0:120 0:155 ip community-list standard 2_124_150 permit 65000:2 0:124 0:150 route-map calculator permit 32327 match community 2_75_248 2_93_200 2_100_186 2_120_155 2_124_150 set community 0:18600 ip community-list standard 2_175_248 permit 65000:2 0:175 0:248 ip community-list standard 2_200_217 permit 65000:2 0:200 0:217 route-map calculator permit 32328 match community 2_175_248 2_200_217 set community 0:43400 ip community-list standard 2_99_236 permit 65000:2 0:99 0:236 ip community-list standard 2_118_198 permit 65000:2 0:118 0:198 ip community-list standard 2_132_177 permit 65000:2 0:132 0:177 route-map calculator permit 32329 match community 2_99_236 2_118_198 2_132_177 set community 0:23364 ip community-list standard 2_129_172 permit 65000:2 0:129 0:172 route-map calculator permit 32330 match community 2_129_172 set community 0:22188 ip community-list standard 2_136_243 permit 65000:2 0:136 0:243 ip community-list standard 2_153_216 permit 65000:2 0:153 0:216 ip community-list standard 2_162_204 permit 65000:2 0:162 0:204 route-map calculator permit 32331 match community 2_136_243 2_153_216 2_162_204 set community 0:33048 ip community-list standard 2_157_165 permit 65000:2 0:157 0:165 route-map calculator permit 32332 match community 2_157_165 set community 0:25905 ip community-list standard 2_214_247 permit 65000:2 0:214 0:247 route-map calculator permit 32333 match community 2_214_247 set community 0:52858 ip community-list standard 2_220_234 permit 65000:2 0:220 0:234 route-map calculator permit 32334 match community 2_220_234 set community 0:51480 ip community-list standard 2_107_151 permit 65000:2 0:107 0:151 route-map calculator permit 32335 match community 2_107_151 set community 0:16157 ip community-list standard 2_187_234 permit 65000:2 0:187 0:234 ip community-list standard 2_198_221 permit 65000:2 0:198 0:221 route-map calculator permit 32336 match community 2_187_234 2_198_221 set community 0:43758 ip community-list standard 2_92_249 permit 65000:2 0:92 0:249 ip community-list standard 2_138_166 permit 65000:2 0:138 0:166 route-map calculator permit 32337 match community 2_92_249 2_138_166 set community 0:22908 ip community-list standard 2_215_242 permit 65000:2 0:215 0:242 route-map calculator permit 32338 match community 2_215_242 set community 0:52030 ip community-list standard 2_5_218 permit 65000:2 0:5 0:218 ip community-list standard 2_10_109 permit 65000:2 0:10 0:109 route-map calculator permit 32339 match community 2_5_218 2_10_109 set community 0:1090 ip community-list standard 2_118_151 permit 65000:2 0:118 0:151 route-map calculator permit 32340 match community 2_118_151 set community 0:17818 ip community-list standard 2_95_251 permit 65000:2 0:95 0:251 route-map calculator permit 32341 match community 2_95_251 set community 0:23845 ip community-list standard 2_251_256 permit 65000:2 0:251 0:256 route-map calculator permit 32342 match community 2_251_256 set community 0:64256 ip community-list standard 2_71_246 permit 65000:2 0:71 0:246 ip community-list standard 2_82_213 permit 65000:2 0:82 0:213 ip community-list standard 2_123_142 permit 65000:2 0:123 0:142 route-map calculator permit 32343 match community 2_71_246 2_82_213 2_123_142 set community 0:17466 ip community-list standard 2_13_82 permit 65000:2 0:13 0:82 ip community-list standard 2_26_41 permit 65000:2 0:26 0:41 route-map calculator permit 32344 match community 2_13_82 2_26_41 set community 0:1066 ip community-list standard 2_164_178 permit 65000:2 0:164 0:178 route-map calculator permit 32345 match community 2_164_178 set community 0:29192 ip community-list standard 2_207_237 permit 65000:2 0:207 0:237 route-map calculator permit 32346 match community 2_207_237 set community 0:49059 ip community-list standard 2_103_199 permit 65000:2 0:103 0:199 route-map calculator permit 32347 match community 2_103_199 set community 0:20497 ip community-list standard 2_195_206 permit 65000:2 0:195 0:206 route-map calculator permit 32348 match community 2_195_206 set community 0:40170 ip community-list standard 2_29_74 permit 65000:2 0:29 0:74 ip community-list standard 2_37_58 permit 65000:2 0:37 0:58 route-map calculator permit 32349 match community 2_29_74 2_37_58 set community 0:2146 ip community-list standard 2_213_230 permit 65000:2 0:213 0:230 route-map calculator permit 32350 match community 2_213_230 set community 0:48990 ip community-list standard 2_151_192 permit 65000:2 0:151 0:192 route-map calculator permit 32351 match community 2_151_192 set community 0:28992 ip community-list standard 2_24_179 permit 65000:2 0:24 0:179 route-map calculator permit 32352 match community 2_24_179 set community 0:4296 ip community-list standard 2_139_247 permit 65000:2 0:139 0:247 route-map calculator permit 32353 match community 2_139_247 set community 0:34333 ip community-list standard 2_205_215 permit 65000:2 0:205 0:215 route-map calculator permit 32354 match community 2_205_215 set community 0:44075 ip community-list standard 2_181_195 permit 65000:2 0:181 0:195 route-map calculator permit 32355 match community 2_181_195 set community 0:35295 ip community-list standard 2_156_181 permit 65000:2 0:156 0:181 route-map calculator permit 32356 match community 2_156_181 set community 0:28236 ip community-list standard 2_173_187 permit 65000:2 0:173 0:187 route-map calculator permit 32357 match community 2_173_187 set community 0:32351 ip community-list standard 2_17_230 permit 65000:2 0:17 0:230 ip community-list standard 2_23_170 permit 65000:2 0:23 0:170 ip community-list standard 2_34_115 permit 65000:2 0:34 0:115 ip community-list standard 2_46_85 permit 65000:2 0:46 0:85 route-map calculator permit 32358 match community 2_17_230 2_23_170 2_34_115 2_46_85 set community 0:3910 ip community-list standard 2_161_224 permit 65000:2 0:161 0:224 ip community-list standard 2_184_196 permit 65000:2 0:184 0:196 route-map calculator permit 32359 match community 2_161_224 2_184_196 set community 0:36064 ip community-list standard 2_137_197 permit 65000:2 0:137 0:197 route-map calculator permit 32360 match community 2_137_197 set community 0:26989 ip community-list standard 2_75_236 permit 65000:2 0:75 0:236 ip community-list standard 2_100_177 permit 65000:2 0:100 0:177 ip community-list standard 2_118_150 permit 65000:2 0:118 0:150 route-map calculator permit 32361 match community 2_75_236 2_100_177 2_118_150 set community 0:17700 ip community-list standard 2_237_244 permit 65000:2 0:237 0:244 route-map calculator permit 32362 match community 2_237_244 set community 0:57828 ip community-list standard 2_57_223 permit 65000:2 0:57 0:223 route-map calculator permit 32363 match community 2_57_223 set community 0:12711 ip community-list standard 2_182_218 permit 65000:2 0:182 0:218 route-map calculator permit 32364 match community 2_182_218 set community 0:39676 ip community-list standard 2_128_193 permit 65000:2 0:128 0:193 route-map calculator permit 32365 match community 2_128_193 set community 0:24704 ip community-list standard 2_188_202 permit 65000:2 0:188 0:202 route-map calculator permit 32366 match community 2_188_202 set community 0:37976 ip community-list standard 2_142_251 permit 65000:2 0:142 0:251 route-map calculator permit 32367 match community 2_142_251 set community 0:35642 ip community-list standard 2_58_238 permit 65000:2 0:58 0:238 ip community-list standard 2_68_203 permit 65000:2 0:68 0:203 ip community-list standard 2_116_119 permit 65000:2 0:116 0:119 route-map calculator permit 32368 match community 2_58_238 2_68_203 2_116_119 set community 0:13804 ip community-list standard 2_2_216 permit 65000:2 0:2 0:216 ip community-list standard 2_3_144 permit 65000:2 0:3 0:144 ip community-list standard 2_4_108 permit 65000:2 0:4 0:108 ip community-list standard 2_6_72 permit 65000:2 0:6 0:72 ip community-list standard 2_8_54 permit 65000:2 0:8 0:54 ip community-list standard 2_9_48 permit 65000:2 0:9 0:48 ip community-list standard 2_12_36 permit 65000:2 0:12 0:36 ip community-list standard 2_16_27 permit 65000:2 0:16 0:27 ip community-list standard 2_18_24 permit 65000:2 0:18 0:24 ip community-list standard 1_176_256 permit 65000:1 0:176 0:256 ip community-list standard 1_177_255 permit 65000:1 0:177 0:255 ip community-list standard 1_178_254 permit 65000:1 0:178 0:254 ip community-list standard 1_179_253 permit 65000:1 0:179 0:253 ip community-list standard 1_180_252 permit 65000:1 0:180 0:252 ip community-list standard 1_181_251 permit 65000:1 0:181 0:251 ip community-list standard 1_182_250 permit 65000:1 0:182 0:250 ip community-list standard 1_183_249 permit 65000:1 0:183 0:249 ip community-list standard 1_184_248 permit 65000:1 0:184 0:248 ip community-list standard 1_185_247 permit 65000:1 0:185 0:247 ip community-list standard 1_186_246 permit 65000:1 0:186 0:246 ip community-list standard 1_187_245 permit 65000:1 0:187 0:245 ip community-list standard 1_188_244 permit 65000:1 0:188 0:244 ip community-list standard 1_189_243 permit 65000:1 0:189 0:243 ip community-list standard 1_190_242 permit 65000:1 0:190 0:242 ip community-list standard 1_191_241 permit 65000:1 0:191 0:241 ip community-list standard 1_192_240 permit 65000:1 0:192 0:240 ip community-list standard 1_193_239 permit 65000:1 0:193 0:239 ip community-list standard 1_194_238 permit 65000:1 0:194 0:238 ip community-list standard 1_195_237 permit 65000:1 0:195 0:237 ip community-list standard 1_196_236 permit 65000:1 0:196 0:236 ip community-list standard 1_197_235 permit 65000:1 0:197 0:235 ip community-list standard 1_198_234 permit 65000:1 0:198 0:234 ip community-list standard 1_199_233 permit 65000:1 0:199 0:233 ip community-list standard 1_200_232 permit 65000:1 0:200 0:232 ip community-list standard 1_201_231 permit 65000:1 0:201 0:231 ip community-list standard 1_202_230 permit 65000:1 0:202 0:230 ip community-list standard 1_203_229 permit 65000:1 0:203 0:229 ip community-list standard 1_204_228 permit 65000:1 0:204 0:228 ip community-list standard 1_205_227 permit 65000:1 0:205 0:227 ip community-list standard 1_206_226 permit 65000:1 0:206 0:226 ip community-list standard 1_207_225 permit 65000:1 0:207 0:225 ip community-list standard 1_208_224 permit 65000:1 0:208 0:224 ip community-list standard 1_209_223 permit 65000:1 0:209 0:223 ip community-list standard 1_210_222 permit 65000:1 0:210 0:222 ip community-list standard 1_211_221 permit 65000:1 0:211 0:221 ip community-list standard 1_212_220 permit 65000:1 0:212 0:220 ip community-list standard 1_213_219 permit 65000:1 0:213 0:219 ip community-list standard 1_214_218 permit 65000:1 0:214 0:218 ip community-list standard 1_215_217 permit 65000:1 0:215 0:217 ip community-list standard 1_216_216 permit 65000:1 0:216 0:216 route-map calculator permit 32369 match community 2_2_216 2_3_144 2_4_108 2_6_72 2_8_54 set community 0:432 route-map calculator permit 32370 match community 2_9_48 2_12_36 2_16_27 2_18_24 1_176_256 set community 0:432 route-map calculator permit 32371 match community 1_177_255 1_178_254 1_179_253 1_180_252 1_181_251 set community 0:432 route-map calculator permit 32372 match community 1_182_250 1_183_249 1_184_248 1_185_247 1_186_246 set community 0:432 route-map calculator permit 32373 match community 1_187_245 1_188_244 1_189_243 1_190_242 1_191_241 set community 0:432 route-map calculator permit 32374 match community 1_192_240 1_193_239 1_194_238 1_195_237 1_196_236 set community 0:432 route-map calculator permit 32375 match community 1_197_235 1_198_234 1_199_233 1_200_232 1_201_231 set community 0:432 route-map calculator permit 32376 match community 1_202_230 1_203_229 1_204_228 1_205_227 1_206_226 set community 0:432 route-map calculator permit 32377 match community 1_207_225 1_208_224 1_209_223 1_210_222 1_211_221 set community 0:432 route-map calculator permit 32378 match community 1_212_220 1_213_219 1_214_218 1_215_217 1_216_216 set community 0:432 ip community-list standard 1_1_141 permit 65000:1 0:1 0:141 ip community-list standard 2_1_142 permit 65000:2 0:1 0:142 ip community-list standard 2_2_71 permit 65000:2 0:2 0:71 ip community-list standard 1_2_140 permit 65000:1 0:2 0:140 ip community-list standard 1_3_139 permit 65000:1 0:3 0:139 ip community-list standard 1_4_138 permit 65000:1 0:4 0:138 ip community-list standard 1_5_137 permit 65000:1 0:5 0:137 ip community-list standard 1_6_136 permit 65000:1 0:6 0:136 ip community-list standard 1_7_135 permit 65000:1 0:7 0:135 ip community-list standard 1_8_134 permit 65000:1 0:8 0:134 ip community-list standard 1_9_133 permit 65000:1 0:9 0:133 ip community-list standard 1_10_132 permit 65000:1 0:10 0:132 ip community-list standard 1_11_131 permit 65000:1 0:11 0:131 ip community-list standard 1_12_130 permit 65000:1 0:12 0:130 ip community-list standard 1_13_129 permit 65000:1 0:13 0:129 ip community-list standard 1_14_128 permit 65000:1 0:14 0:128 ip community-list standard 1_15_127 permit 65000:1 0:15 0:127 ip community-list standard 1_16_126 permit 65000:1 0:16 0:126 ip community-list standard 1_17_125 permit 65000:1 0:17 0:125 ip community-list standard 1_18_124 permit 65000:1 0:18 0:124 ip community-list standard 1_19_123 permit 65000:1 0:19 0:123 ip community-list standard 1_20_122 permit 65000:1 0:20 0:122 ip community-list standard 1_21_121 permit 65000:1 0:21 0:121 ip community-list standard 1_22_120 permit 65000:1 0:22 0:120 ip community-list standard 1_23_119 permit 65000:1 0:23 0:119 ip community-list standard 1_24_118 permit 65000:1 0:24 0:118 ip community-list standard 1_25_117 permit 65000:1 0:25 0:117 ip community-list standard 1_26_116 permit 65000:1 0:26 0:116 ip community-list standard 1_27_115 permit 65000:1 0:27 0:115 ip community-list standard 1_28_114 permit 65000:1 0:28 0:114 ip community-list standard 1_29_113 permit 65000:1 0:29 0:113 ip community-list standard 1_30_112 permit 65000:1 0:30 0:112 ip community-list standard 1_31_111 permit 65000:1 0:31 0:111 ip community-list standard 1_32_110 permit 65000:1 0:32 0:110 ip community-list standard 1_33_109 permit 65000:1 0:33 0:109 ip community-list standard 1_34_108 permit 65000:1 0:34 0:108 ip community-list standard 1_35_107 permit 65000:1 0:35 0:107 ip community-list standard 1_36_106 permit 65000:1 0:36 0:106 ip community-list standard 1_37_105 permit 65000:1 0:37 0:105 ip community-list standard 1_38_104 permit 65000:1 0:38 0:104 ip community-list standard 1_39_103 permit 65000:1 0:39 0:103 ip community-list standard 1_40_102 permit 65000:1 0:40 0:102 ip community-list standard 1_41_101 permit 65000:1 0:41 0:101 ip community-list standard 1_42_100 permit 65000:1 0:42 0:100 ip community-list standard 1_43_99 permit 65000:1 0:43 0:99 ip community-list standard 1_44_98 permit 65000:1 0:44 0:98 ip community-list standard 1_45_97 permit 65000:1 0:45 0:97 ip community-list standard 1_46_96 permit 65000:1 0:46 0:96 ip community-list standard 1_47_95 permit 65000:1 0:47 0:95 ip community-list standard 1_48_94 permit 65000:1 0:48 0:94 ip community-list standard 1_49_93 permit 65000:1 0:49 0:93 ip community-list standard 1_50_92 permit 65000:1 0:50 0:92 ip community-list standard 1_51_91 permit 65000:1 0:51 0:91 ip community-list standard 1_52_90 permit 65000:1 0:52 0:90 ip community-list standard 1_53_89 permit 65000:1 0:53 0:89 ip community-list standard 1_54_88 permit 65000:1 0:54 0:88 ip community-list standard 1_55_87 permit 65000:1 0:55 0:87 ip community-list standard 1_56_86 permit 65000:1 0:56 0:86 ip community-list standard 1_57_85 permit 65000:1 0:57 0:85 ip community-list standard 1_58_84 permit 65000:1 0:58 0:84 ip community-list standard 1_59_83 permit 65000:1 0:59 0:83 ip community-list standard 1_60_82 permit 65000:1 0:60 0:82 ip community-list standard 1_61_81 permit 65000:1 0:61 0:81 ip community-list standard 1_62_80 permit 65000:1 0:62 0:80 ip community-list standard 1_63_79 permit 65000:1 0:63 0:79 ip community-list standard 1_64_78 permit 65000:1 0:64 0:78 ip community-list standard 1_65_77 permit 65000:1 0:65 0:77 ip community-list standard 1_66_76 permit 65000:1 0:66 0:76 ip community-list standard 1_67_75 permit 65000:1 0:67 0:75 ip community-list standard 1_68_74 permit 65000:1 0:68 0:74 ip community-list standard 1_69_73 permit 65000:1 0:69 0:73 ip community-list standard 1_70_72 permit 65000:1 0:70 0:72 ip community-list standard 1_71_71 permit 65000:1 0:71 0:71 ip community-list expanded c142 permit 1 ^65000:4_0:142_0:1$ ip community-list expanded c142 permit 2 ^65000:3_0:143_0:1$ ip community-list expanded c142 permit 3 ^65000:3_0:144_0:2$ ip community-list expanded c142 permit 4 ^65000:3_0:145_0:3$ ip community-list expanded c142 permit 5 ^65000:3_0:146_0:4$ ip community-list expanded c142 permit 6 ^65000:3_0:147_0:5$ ip community-list expanded c142 permit 7 ^65000:3_0:148_0:6$ ip community-list expanded c142 permit 8 ^65000:3_0:149_0:7$ ip community-list expanded c142 permit 9 ^65000:3_0:150_0:8$ ip community-list expanded c142 permit 10 ^65000:3_0:151_0:9$ ip community-list expanded c142 permit 11 ^65000:3_0:152_0:10$ ip community-list expanded c142 permit 12 ^65000:3_0:153_0:11$ ip community-list expanded c142 permit 13 ^65000:3_0:154_0:12$ ip community-list expanded c142 permit 14 ^65000:3_0:155_0:13$ ip community-list expanded c142 permit 15 ^65000:3_0:156_0:14$ ip community-list expanded c142 permit 16 ^65000:3_0:157_0:15$ ip community-list expanded c142 permit 17 ^65000:3_0:158_0:16$ ip community-list expanded c142 permit 18 ^65000:3_0:159_0:17$ ip community-list expanded c142 permit 19 ^65000:3_0:160_0:18$ ip community-list expanded c142 permit 20 ^65000:3_0:161_0:19$ ip community-list expanded c142 permit 21 ^65000:3_0:162_0:20$ ip community-list expanded c142 permit 22 ^65000:3_0:163_0:21$ ip community-list expanded c142 permit 23 ^65000:3_0:164_0:22$ ip community-list expanded c142 permit 24 ^65000:3_0:165_0:23$ ip community-list expanded c142 permit 25 ^65000:3_0:166_0:24$ ip community-list expanded c142 permit 26 ^65000:3_0:167_0:25$ ip community-list expanded c142 permit 27 ^65000:3_0:168_0:26$ ip community-list expanded c142 permit 28 ^65000:3_0:169_0:27$ ip community-list expanded c142 permit 29 ^65000:3_0:170_0:28$ ip community-list expanded c142 permit 30 ^65000:3_0:171_0:29$ ip community-list expanded c142 permit 31 ^65000:3_0:172_0:30$ ip community-list expanded c142 permit 32 ^65000:3_0:173_0:31$ ip community-list expanded c142 permit 33 ^65000:3_0:174_0:32$ ip community-list expanded c142 permit 34 ^65000:3_0:175_0:33$ ip community-list expanded c142 permit 35 ^65000:3_0:176_0:34$ ip community-list expanded c142 permit 36 ^65000:3_0:177_0:35$ ip community-list expanded c142 permit 37 ^65000:3_0:178_0:36$ ip community-list expanded c142 permit 38 ^65000:3_0:179_0:37$ ip community-list expanded c142 permit 39 ^65000:3_0:180_0:38$ ip community-list expanded c142 permit 40 ^65000:3_0:181_0:39$ ip community-list expanded c142 permit 41 ^65000:3_0:182_0:40$ ip community-list expanded c142 permit 42 ^65000:3_0:183_0:41$ ip community-list expanded c142 permit 43 ^65000:3_0:184_0:42$ ip community-list expanded c142 permit 44 ^65000:3_0:185_0:43$ ip community-list expanded c142 permit 45 ^65000:3_0:186_0:44$ ip community-list expanded c142 permit 46 ^65000:3_0:187_0:45$ ip community-list expanded c142 permit 47 ^65000:3_0:188_0:46$ ip community-list expanded c142 permit 48 ^65000:3_0:189_0:47$ ip community-list expanded c142 permit 49 ^65000:3_0:190_0:48$ ip community-list expanded c142 permit 50 ^65000:3_0:191_0:49$ ip community-list expanded c142 permit 51 ^65000:3_0:192_0:50$ ip community-list expanded c142 permit 52 ^65000:3_0:193_0:51$ ip community-list expanded c142 permit 53 ^65000:3_0:194_0:52$ ip community-list expanded c142 permit 54 ^65000:3_0:195_0:53$ ip community-list expanded c142 permit 55 ^65000:3_0:196_0:54$ ip community-list expanded c142 permit 56 ^65000:3_0:197_0:55$ ip community-list expanded c142 permit 57 ^65000:3_0:198_0:56$ ip community-list expanded c142 permit 58 ^65000:3_0:199_0:57$ ip community-list expanded c142 permit 59 ^65000:3_0:200_0:58$ ip community-list expanded c142 permit 60 ^65000:3_0:201_0:59$ ip community-list expanded c142 permit 61 ^65000:3_0:202_0:60$ ip community-list expanded c142 permit 62 ^65000:3_0:203_0:61$ ip community-list expanded c142 permit 63 ^65000:3_0:204_0:62$ ip community-list expanded c142 permit 64 ^65000:3_0:205_0:63$ ip community-list expanded c142 permit 65 ^65000:3_0:206_0:64$ ip community-list expanded c142 permit 66 ^65000:3_0:207_0:65$ ip community-list expanded c142 permit 67 ^65000:3_0:208_0:66$ ip community-list expanded c142 permit 68 ^65000:3_0:209_0:67$ ip community-list expanded c142 permit 69 ^65000:3_0:210_0:68$ ip community-list expanded c142 permit 70 ^65000:3_0:211_0:69$ ip community-list expanded c142 permit 71 ^65000:3_0:212_0:70$ ip community-list expanded c142 permit 72 ^65000:3_0:213_0:71$ ip community-list expanded c142 permit 73 ^65000:3_0:214_0:72$ ip community-list expanded c142 permit 74 ^65000:3_0:215_0:73$ ip community-list expanded c142 permit 75 ^65000:3_0:216_0:74$ ip community-list expanded c142 permit 76 ^65000:3_0:217_0:75$ ip community-list expanded c142 permit 77 ^65000:3_0:218_0:76$ ip community-list expanded c142 permit 78 ^65000:3_0:219_0:77$ ip community-list expanded c142 permit 79 ^65000:3_0:220_0:78$ ip community-list expanded c142 permit 80 ^65000:3_0:221_0:79$ ip community-list expanded c142 permit 81 ^65000:3_0:222_0:80$ ip community-list expanded c142 permit 82 ^65000:3_0:223_0:81$ ip community-list expanded c142 permit 83 ^65000:3_0:224_0:82$ ip community-list expanded c142 permit 84 ^65000:3_0:225_0:83$ ip community-list expanded c142 permit 85 ^65000:3_0:226_0:84$ ip community-list expanded c142 permit 86 ^65000:3_0:227_0:85$ ip community-list expanded c142 permit 87 ^65000:3_0:228_0:86$ ip community-list expanded c142 permit 88 ^65000:3_0:229_0:87$ ip community-list expanded c142 permit 89 ^65000:3_0:230_0:88$ ip community-list expanded c142 permit 90 ^65000:3_0:231_0:89$ ip community-list expanded c142 permit 91 ^65000:3_0:232_0:90$ ip community-list expanded c142 permit 92 ^65000:3_0:233_0:91$ ip community-list expanded c142 permit 93 ^65000:3_0:234_0:92$ ip community-list expanded c142 permit 94 ^65000:3_0:235_0:93$ ip community-list expanded c142 permit 95 ^65000:3_0:236_0:94$ ip community-list expanded c142 permit 96 ^65000:3_0:237_0:95$ ip community-list expanded c142 permit 97 ^65000:3_0:238_0:96$ ip community-list expanded c142 permit 98 ^65000:3_0:239_0:97$ ip community-list expanded c142 permit 99 ^65000:3_0:240_0:98$ ip community-list expanded c142 permit 100 ^65000:3_0:241_0:99$ ip community-list expanded c142 permit 101 ^65000:3_0:242_0:100$ ip community-list expanded c142 permit 102 ^65000:3_0:243_0:101$ ip community-list expanded c142 permit 103 ^65000:3_0:244_0:102$ ip community-list expanded c142 permit 104 ^65000:3_0:245_0:103$ ip community-list expanded c142 permit 105 ^65000:3_0:246_0:104$ ip community-list expanded c142 permit 106 ^65000:3_0:247_0:105$ ip community-list expanded c142 permit 107 ^65000:3_0:248_0:106$ ip community-list expanded c142 permit 108 ^65000:3_0:249_0:107$ ip community-list expanded c142 permit 109 ^65000:3_0:250_0:108$ ip community-list expanded c142 permit 110 ^65000:3_0:251_0:109$ ip community-list expanded c142 permit 111 ^65000:3_0:252_0:110$ ip community-list expanded c142 permit 112 ^65000:3_0:253_0:111$ ip community-list expanded c142 permit 113 ^65000:3_0:254_0:112$ ip community-list expanded c142 permit 114 ^65000:3_0:255_0:113$ ip community-list expanded c142 permit 115 ^65000:3_0:256_0:114$ route-map calculator permit 32379 match community 1_1_141 2_1_142 2_2_71 1_2_140 1_3_139 set community 0:142 route-map calculator permit 32380 match community 1_4_138 1_5_137 1_6_136 1_7_135 1_8_134 set community 0:142 route-map calculator permit 32381 match community 1_9_133 1_10_132 1_11_131 1_12_130 1_13_129 set community 0:142 route-map calculator permit 32382 match community 1_14_128 1_15_127 1_16_126 1_17_125 1_18_124 set community 0:142 route-map calculator permit 32383 match community 1_19_123 1_20_122 1_21_121 1_22_120 1_23_119 set community 0:142 route-map calculator permit 32384 match community 1_24_118 1_25_117 1_26_116 1_27_115 1_28_114 set community 0:142 route-map calculator permit 32385 match community 1_29_113 1_30_112 1_31_111 1_32_110 1_33_109 set community 0:142 route-map calculator permit 32386 match community 1_34_108 1_35_107 1_36_106 1_37_105 1_38_104 set community 0:142 route-map calculator permit 32387 match community 1_39_103 1_40_102 1_41_101 1_42_100 1_43_99 set community 0:142 route-map calculator permit 32388 match community 1_44_98 1_45_97 1_46_96 1_47_95 1_48_94 set community 0:142 route-map calculator permit 32389 match community 1_49_93 1_50_92 1_51_91 1_52_90 1_53_89 set community 0:142 route-map calculator permit 32390 match community 1_54_88 1_55_87 1_56_86 1_57_85 1_58_84 set community 0:142 route-map calculator permit 32391 match community 1_59_83 1_60_82 1_61_81 1_62_80 1_63_79 set community 0:142 route-map calculator permit 32392 match community 1_64_78 1_65_77 1_66_76 1_67_75 1_68_74 set community 0:142 route-map calculator permit 32393 match community 1_69_73 1_70_72 1_71_71 c4_142_1 c3_143_1 set community 0:142 route-map calculator permit 32394 match community c3_144_2 c3_145_3 c3_146_4 c3_147_5 c3_148_6 set community 0:142 route-map calculator permit 32395 match community c3_149_7 c3_150_8 c3_151_9 c3_152_10 c3_153_11 set community 0:142 route-map calculator permit 32396 match community c3_154_12 c3_155_13 c3_156_14 c3_157_15 c3_158_16 set community 0:142 route-map calculator permit 32397 match community c3_159_17 c3_160_18 c3_161_19 c3_162_20 c3_163_21 set community 0:142 route-map calculator permit 32398 match community c3_164_22 c3_165_23 c3_166_24 c3_167_25 c3_168_26 set community 0:142 route-map calculator permit 32399 match community c3_169_27 c3_170_28 c3_171_29 c3_172_30 c3_173_31 set community 0:142 route-map calculator permit 32400 match community c3_174_32 c3_175_33 c3_176_34 c3_177_35 c3_178_36 set community 0:142 route-map calculator permit 32401 match community c3_179_37 c3_180_38 c3_181_39 c3_182_40 c3_183_41 set community 0:142 route-map calculator permit 32402 match community c3_184_42 c3_185_43 c3_186_44 c3_187_45 c3_188_46 set community 0:142 route-map calculator permit 32403 match community c3_189_47 c3_190_48 c3_191_49 c3_192_50 c3_193_51 set community 0:142 route-map calculator permit 32404 match community c3_194_52 c3_195_53 c3_196_54 c3_197_55 c3_198_56 set community 0:142 route-map calculator permit 32405 match community c3_199_57 c3_200_58 c3_201_59 c3_202_60 c3_203_61 set community 0:142 route-map calculator permit 32406 match community c3_204_62 c3_205_63 c3_206_64 c3_207_65 c3_208_66 set community 0:142 route-map calculator permit 32407 match community c3_209_67 c3_210_68 c3_211_69 c3_212_70 c3_213_71 set community 0:142 route-map calculator permit 32408 match community c3_214_72 c3_215_73 c3_216_74 c3_217_75 c3_218_76 set community 0:142 route-map calculator permit 32409 match community c3_219_77 c3_220_78 c3_221_79 c3_222_80 c3_223_81 set community 0:142 route-map calculator permit 32410 match community c3_224_82 c3_225_83 c3_226_84 c3_227_85 c3_228_86 set community 0:142 route-map calculator permit 32411 match community c3_229_87 c3_230_88 c3_231_89 c3_232_90 c3_233_91 set community 0:142 route-map calculator permit 32412 match community c3_234_92 c3_235_93 c3_236_94 c3_237_95 c3_238_96 set community 0:142 route-map calculator permit 32413 match community c3_239_97 c3_240_98 c3_241_99 c3_242_100 c3_243_101 set community 0:142 route-map calculator permit 32414 match community c3_244_102 c3_245_103 c3_246_104 c3_247_105 c3_248_106 set community 0:142 route-map calculator permit 32415 match community c3_249_107 c3_250_108 c3_251_109 c3_252_110 c3_253_111 set community 0:142 route-map calculator permit 32416 match community c3_254_112 c3_255_113 c3_256_114 set community 0:142 ip community-list standard 2_131_133 permit 65000:2 0:131 0:133 route-map calculator permit 32417 match community 2_131_133 set community 0:17423 ip community-list standard 2_115_239 permit 65000:2 0:115 0:239 route-map calculator permit 32418 match community 2_115_239 set community 0:27485 ip community-list standard 2_98_207 permit 65000:2 0:98 0:207 ip community-list standard 2_126_161 permit 65000:2 0:126 0:161 ip community-list standard 2_138_147 permit 65000:2 0:138 0:147 route-map calculator permit 32419 match community 2_98_207 2_126_161 2_138_147 set community 0:20286 ip community-list standard 2_82_181 permit 65000:2 0:82 0:181 route-map calculator permit 32420 match community 2_82_181 set community 0:14842 ip community-list standard 2_210_219 permit 65000:2 0:210 0:219 route-map calculator permit 32421 match community 2_210_219 set community 0:45990 ip community-list standard 2_150_211 permit 65000:2 0:150 0:211 route-map calculator permit 32422 match community 2_150_211 set community 0:31650 ip community-list standard 2_123_207 permit 65000:2 0:123 0:207 route-map calculator permit 32423 match community 2_123_207 set community 0:25461 ip community-list standard 2_20_193 permit 65000:2 0:20 0:193 route-map calculator permit 32424 match community 2_20_193 set community 0:3860 ip community-list standard 2_133_232 permit 65000:2 0:133 0:232 ip community-list standard 2_152_203 permit 65000:2 0:152 0:203 route-map calculator permit 32425 match community 2_133_232 2_152_203 set community 0:30856 ip community-list standard 2_210_242 permit 65000:2 0:210 0:242 ip community-list standard 2_220_231 permit 65000:2 0:220 0:231 route-map calculator permit 32426 match community 2_210_242 2_220_231 set community 0:50820 ip community-list standard 2_194_232 permit 65000:2 0:194 0:232 route-map calculator permit 32427 match community 2_194_232 set community 0:45008 ip community-list standard 2_203_206 permit 65000:2 0:203 0:206 route-map calculator permit 32428 match community 2_203_206 set community 0:41818 ip community-list standard 2_37_82 permit 65000:2 0:37 0:82 ip community-list standard 2_41_74 permit 65000:2 0:41 0:74 route-map calculator permit 32429 match community 2_37_82 2_41_74 set community 0:3034 ip community-list standard 2_137_172 permit 65000:2 0:137 0:172 route-map calculator permit 32430 match community 2_137_172 set community 0:23564 ip community-list standard 2_170_223 permit 65000:2 0:170 0:223 route-map calculator permit 32431 match community 2_170_223 set community 0:37910 ip community-list standard 2_5_155 permit 65000:2 0:5 0:155 ip community-list standard 2_25_31 permit 65000:2 0:25 0:31 route-map calculator permit 32432 match community 2_5_155 2_25_31 set community 0:775 ip community-list standard 2_139_206 permit 65000:2 0:139 0:206 route-map calculator permit 32433 match community 2_139_206 set community 0:28634 ip community-list standard 2_95_220 permit 65000:2 0:95 0:220 ip community-list standard 2_100_209 permit 65000:2 0:100 0:209 ip community-list standard 2_110_190 permit 65000:2 0:110 0:190 route-map calculator permit 32434 match community 2_95_220 2_100_209 2_110_190 set community 0:20900 ip community-list standard 2_133_247 permit 65000:2 0:133 0:247 route-map calculator permit 32435 match community 2_133_247 set community 0:32851 ip community-list standard 2_130_199 permit 65000:2 0:130 0:199 route-map calculator permit 32436 match community 2_130_199 set community 0:25870 ip community-list standard 2_77_251 permit 65000:2 0:77 0:251 route-map calculator permit 32437 match community 2_77_251 set community 0:19327 ip community-list standard 2_151_182 permit 65000:2 0:151 0:182 route-map calculator permit 32438 match community 2_151_182 set community 0:27482 ip community-list standard 2_156_221 permit 65000:2 0:156 0:221 ip community-list standard 2_169_204 permit 65000:2 0:169 0:204 route-map calculator permit 32439 match community 2_156_221 2_169_204 set community 0:34476 ip community-list standard 2_241_245 permit 65000:2 0:241 0:245 route-map calculator permit 32440 match community 2_241_245 set community 0:59045 ip community-list standard 2_53_134 permit 65000:2 0:53 0:134 ip community-list standard 2_67_106 permit 65000:2 0:67 0:106 route-map calculator permit 32441 match community 2_53_134 2_67_106 set community 0:7102 ip community-list standard 2_173_185 permit 65000:2 0:173 0:185 route-map calculator permit 32442 match community 2_173_185 set community 0:32005 ip community-list standard 2_134_236 permit 65000:2 0:134 0:236 route-map calculator permit 32443 match community 2_134_236 set community 0:31624 ip community-list standard 2_8_234 permit 65000:2 0:8 0:234 ip community-list standard 2_9_208 permit 65000:2 0:9 0:208 ip community-list standard 2_12_156 permit 65000:2 0:12 0:156 ip community-list standard 2_13_144 permit 65000:2 0:13 0:144 ip community-list standard 2_16_117 permit 65000:2 0:16 0:117 ip community-list standard 2_18_104 permit 65000:2 0:18 0:104 ip community-list standard 2_24_78 permit 65000:2 0:24 0:78 ip community-list standard 2_26_72 permit 65000:2 0:26 0:72 ip community-list standard 2_36_52 permit 65000:2 0:36 0:52 ip community-list standard 2_39_48 permit 65000:2 0:39 0:48 route-map calculator permit 32444 match community 2_8_234 2_9_208 2_12_156 2_13_144 2_16_117 set community 0:1872 route-map calculator permit 32445 match community 2_18_104 2_24_78 2_26_72 2_36_52 2_39_48 set community 0:1872 ip community-list standard 2_175_179 permit 65000:2 0:175 0:179 route-map calculator permit 32446 match community 2_175_179 set community 0:31325 ip community-list standard 2_61_187 permit 65000:2 0:61 0:187 route-map calculator permit 32447 match community 2_61_187 set community 0:11407 ip community-list standard 2_21_101 permit 65000:2 0:21 0:101 route-map calculator permit 32448 match community 2_21_101 set community 0:2121 ip community-list standard 2_177_202 permit 65000:2 0:177 0:202 route-map calculator permit 32449 match community 2_177_202 set community 0:35754 ip community-list standard 2_149_160 permit 65000:2 0:149 0:160 route-map calculator permit 32450 match community 2_149_160 set community 0:23840 ip community-list standard 2_74_206 permit 65000:2 0:74 0:206 ip community-list standard 2_103_148 permit 65000:2 0:103 0:148 route-map calculator permit 32451 match community 2_74_206 2_103_148 set community 0:15244 ip community-list standard 2_178_243 permit 65000:2 0:178 0:243 route-map calculator permit 32452 match community 2_178_243 set community 0:43254 ip community-list standard 2_141_198 permit 65000:2 0:141 0:198 route-map calculator permit 32453 match community 2_141_198 set community 0:27918 ip community-list standard 2_60_137 permit 65000:2 0:60 0:137 route-map calculator permit 32454 match community 2_60_137 set community 0:8220 ip community-list standard 2_26_241 permit 65000:2 0:26 0:241 route-map calculator permit 32455 match community 2_26_241 set community 0:6266 ip community-list standard 2_79_113 permit 65000:2 0:79 0:113 route-map calculator permit 32456 match community 2_79_113 set community 0:8927 ip community-list standard 2_228_246 permit 65000:2 0:228 0:246 route-map calculator permit 32457 match community 2_228_246 set community 0:56088 ip community-list standard 2_57_227 permit 65000:2 0:57 0:227 route-map calculator permit 32458 match community 2_57_227 set community 0:12939 ip community-list standard 2_3_236 permit 65000:2 0:3 0:236 ip community-list standard 2_4_177 permit 65000:2 0:4 0:177 ip community-list standard 2_6_118 permit 65000:2 0:6 0:118 ip community-list standard 2_12_59 permit 65000:2 0:12 0:59 route-map calculator permit 32459 match community 2_3_236 2_4_177 2_6_118 2_12_59 set community 0:708 ip community-list standard 2_17_205 permit 65000:2 0:17 0:205 ip community-list standard 2_41_85 permit 65000:2 0:41 0:85 route-map calculator permit 32460 match community 2_17_205 2_41_85 set community 0:3485 ip community-list standard 2_200_243 permit 65000:2 0:200 0:243 ip community-list standard 2_216_225 permit 65000:2 0:216 0:225 route-map calculator permit 32461 match community 2_200_243 2_216_225 set community 0:48600 ip community-list standard 2_215_246 permit 65000:2 0:215 0:246 route-map calculator permit 32462 match community 2_215_246 set community 0:52890 ip community-list standard 2_63_237 permit 65000:2 0:63 0:237 ip community-list standard 2_79_189 permit 65000:2 0:79 0:189 route-map calculator permit 32463 match community 2_63_237 2_79_189 set community 0:14931 ip community-list standard 2_37_237 permit 65000:2 0:37 0:237 ip community-list standard 2_79_111 permit 65000:2 0:79 0:111 route-map calculator permit 32464 match community 2_37_237 2_79_111 set community 0:8769 ip community-list standard 2_71_115 permit 65000:2 0:71 0:115 route-map calculator permit 32465 match community 2_71_115 set community 0:8165 ip community-list standard 2_89_101 permit 65000:2 0:89 0:101 route-map calculator permit 32466 match community 2_89_101 set community 0:8989 ip community-list standard 1_1_70 permit 65000:1 0:1 0:70 ip community-list standard 2_1_71 permit 65000:2 0:1 0:71 ip community-list standard 1_2_69 permit 65000:1 0:2 0:69 ip community-list standard 1_3_68 permit 65000:1 0:3 0:68 ip community-list standard 1_4_67 permit 65000:1 0:4 0:67 ip community-list standard 1_5_66 permit 65000:1 0:5 0:66 ip community-list standard 1_6_65 permit 65000:1 0:6 0:65 ip community-list standard 1_7_64 permit 65000:1 0:7 0:64 ip community-list standard 1_8_63 permit 65000:1 0:8 0:63 ip community-list standard 1_9_62 permit 65000:1 0:9 0:62 ip community-list standard 1_10_61 permit 65000:1 0:10 0:61 ip community-list standard 1_11_60 permit 65000:1 0:11 0:60 ip community-list standard 1_12_59 permit 65000:1 0:12 0:59 ip community-list standard 1_13_58 permit 65000:1 0:13 0:58 ip community-list standard 1_14_57 permit 65000:1 0:14 0:57 ip community-list standard 1_15_56 permit 65000:1 0:15 0:56 ip community-list standard 1_16_55 permit 65000:1 0:16 0:55 ip community-list standard 1_17_54 permit 65000:1 0:17 0:54 ip community-list standard 1_18_53 permit 65000:1 0:18 0:53 ip community-list standard 1_19_52 permit 65000:1 0:19 0:52 ip community-list standard 1_20_51 permit 65000:1 0:20 0:51 ip community-list standard 1_21_50 permit 65000:1 0:21 0:50 ip community-list standard 1_22_49 permit 65000:1 0:22 0:49 ip community-list standard 1_23_48 permit 65000:1 0:23 0:48 ip community-list standard 1_24_47 permit 65000:1 0:24 0:47 ip community-list standard 1_25_46 permit 65000:1 0:25 0:46 ip community-list standard 1_26_45 permit 65000:1 0:26 0:45 ip community-list standard 1_27_44 permit 65000:1 0:27 0:44 ip community-list standard 1_28_43 permit 65000:1 0:28 0:43 ip community-list standard 1_29_42 permit 65000:1 0:29 0:42 ip community-list standard 1_30_41 permit 65000:1 0:30 0:41 ip community-list standard 1_31_40 permit 65000:1 0:31 0:40 ip community-list standard 1_32_39 permit 65000:1 0:32 0:39 ip community-list standard 1_33_38 permit 65000:1 0:33 0:38 ip community-list standard 1_34_37 permit 65000:1 0:34 0:37 ip community-list standard 1_35_36 permit 65000:1 0:35 0:36 ip community-list expanded c71 permit 1 ^65000:4_0:71_0:1$ ip community-list expanded c71 permit 2 ^65000:3_0:72_0:1$ ip community-list expanded c71 permit 3 ^65000:3_0:73_0:2$ ip community-list expanded c71 permit 4 ^65000:3_0:74_0:3$ ip community-list expanded c71 permit 5 ^65000:3_0:75_0:4$ ip community-list expanded c71 permit 6 ^65000:3_0:76_0:5$ ip community-list expanded c71 permit 7 ^65000:3_0:77_0:6$ ip community-list expanded c71 permit 8 ^65000:3_0:78_0:7$ ip community-list expanded c71 permit 9 ^65000:3_0:79_0:8$ ip community-list expanded c71 permit 10 ^65000:3_0:80_0:9$ ip community-list expanded c71 permit 11 ^65000:3_0:81_0:10$ ip community-list expanded c71 permit 12 ^65000:3_0:82_0:11$ ip community-list expanded c71 permit 13 ^65000:3_0:83_0:12$ ip community-list expanded c71 permit 14 ^65000:3_0:84_0:13$ ip community-list expanded c71 permit 15 ^65000:3_0:85_0:14$ ip community-list expanded c71 permit 16 ^65000:3_0:86_0:15$ ip community-list expanded c71 permit 17 ^65000:3_0:87_0:16$ ip community-list expanded c71 permit 18 ^65000:3_0:88_0:17$ ip community-list expanded c71 permit 19 ^65000:3_0:89_0:18$ ip community-list expanded c71 permit 20 ^65000:3_0:90_0:19$ ip community-list expanded c71 permit 21 ^65000:3_0:91_0:20$ ip community-list expanded c71 permit 22 ^65000:3_0:92_0:21$ ip community-list expanded c71 permit 23 ^65000:3_0:93_0:22$ ip community-list expanded c71 permit 24 ^65000:3_0:94_0:23$ ip community-list expanded c71 permit 25 ^65000:3_0:95_0:24$ ip community-list expanded c71 permit 26 ^65000:3_0:96_0:25$ ip community-list expanded c71 permit 27 ^65000:3_0:97_0:26$ ip community-list expanded c71 permit 28 ^65000:3_0:98_0:27$ ip community-list expanded c71 permit 29 ^65000:3_0:99_0:28$ ip community-list expanded c71 permit 30 ^65000:3_0:100_0:29$ ip community-list expanded c71 permit 31 ^65000:3_0:101_0:30$ ip community-list expanded c71 permit 32 ^65000:3_0:102_0:31$ ip community-list expanded c71 permit 33 ^65000:3_0:103_0:32$ ip community-list expanded c71 permit 34 ^65000:3_0:104_0:33$ ip community-list expanded c71 permit 35 ^65000:3_0:105_0:34$ ip community-list expanded c71 permit 36 ^65000:3_0:106_0:35$ ip community-list expanded c71 permit 37 ^65000:3_0:107_0:36$ ip community-list expanded c71 permit 38 ^65000:3_0:108_0:37$ ip community-list expanded c71 permit 39 ^65000:3_0:109_0:38$ ip community-list expanded c71 permit 40 ^65000:3_0:110_0:39$ ip community-list expanded c71 permit 41 ^65000:3_0:111_0:40$ ip community-list expanded c71 permit 42 ^65000:3_0:112_0:41$ ip community-list expanded c71 permit 43 ^65000:3_0:113_0:42$ ip community-list expanded c71 permit 44 ^65000:3_0:114_0:43$ ip community-list expanded c71 permit 45 ^65000:3_0:115_0:44$ ip community-list expanded c71 permit 46 ^65000:3_0:116_0:45$ ip community-list expanded c71 permit 47 ^65000:3_0:117_0:46$ ip community-list expanded c71 permit 48 ^65000:3_0:118_0:47$ ip community-list expanded c71 permit 49 ^65000:3_0:119_0:48$ ip community-list expanded c71 permit 50 ^65000:3_0:120_0:49$ ip community-list expanded c71 permit 51 ^65000:3_0:121_0:50$ ip community-list expanded c71 permit 52 ^65000:3_0:122_0:51$ ip community-list expanded c71 permit 53 ^65000:3_0:123_0:52$ ip community-list expanded c71 permit 54 ^65000:3_0:124_0:53$ ip community-list expanded c71 permit 55 ^65000:3_0:125_0:54$ ip community-list expanded c71 permit 56 ^65000:3_0:126_0:55$ ip community-list expanded c71 permit 57 ^65000:3_0:127_0:56$ ip community-list expanded c71 permit 58 ^65000:3_0:128_0:57$ ip community-list expanded c71 permit 59 ^65000:3_0:129_0:58$ ip community-list expanded c71 permit 60 ^65000:3_0:130_0:59$ ip community-list expanded c71 permit 61 ^65000:3_0:131_0:60$ ip community-list expanded c71 permit 62 ^65000:3_0:132_0:61$ ip community-list expanded c71 permit 63 ^65000:3_0:133_0:62$ ip community-list expanded c71 permit 64 ^65000:3_0:134_0:63$ ip community-list expanded c71 permit 65 ^65000:3_0:135_0:64$ ip community-list expanded c71 permit 66 ^65000:3_0:136_0:65$ ip community-list expanded c71 permit 67 ^65000:3_0:137_0:66$ ip community-list expanded c71 permit 68 ^65000:3_0:138_0:67$ ip community-list expanded c71 permit 69 ^65000:3_0:139_0:68$ ip community-list expanded c71 permit 70 ^65000:3_0:140_0:69$ ip community-list expanded c71 permit 71 ^65000:3_0:141_0:70$ ip community-list expanded c71 permit 72 ^65000:4_0:142_0:2$ ip community-list expanded c71 permit 73 ^65000:3_0:142_0:71$ ip community-list expanded c71 permit 74 ^65000:4_0:143_0:2$ ip community-list expanded c71 permit 75 ^65000:3_0:143_0:72$ ip community-list expanded c71 permit 76 ^65000:3_0:144_0:73$ ip community-list expanded c71 permit 77 ^65000:3_0:145_0:74$ ip community-list expanded c71 permit 78 ^65000:3_0:146_0:75$ ip community-list expanded c71 permit 79 ^65000:3_0:147_0:76$ ip community-list expanded c71 permit 80 ^65000:3_0:148_0:77$ ip community-list expanded c71 permit 81 ^65000:3_0:149_0:78$ ip community-list expanded c71 permit 82 ^65000:3_0:150_0:79$ ip community-list expanded c71 permit 83 ^65000:3_0:151_0:80$ ip community-list expanded c71 permit 84 ^65000:3_0:152_0:81$ ip community-list expanded c71 permit 85 ^65000:3_0:153_0:82$ ip community-list expanded c71 permit 86 ^65000:3_0:154_0:83$ ip community-list expanded c71 permit 87 ^65000:3_0:155_0:84$ ip community-list expanded c71 permit 88 ^65000:3_0:156_0:85$ ip community-list expanded c71 permit 89 ^65000:3_0:157_0:86$ ip community-list expanded c71 permit 90 ^65000:3_0:158_0:87$ ip community-list expanded c71 permit 91 ^65000:3_0:159_0:88$ ip community-list expanded c71 permit 92 ^65000:3_0:160_0:89$ ip community-list expanded c71 permit 93 ^65000:3_0:161_0:90$ ip community-list expanded c71 permit 94 ^65000:3_0:162_0:91$ ip community-list expanded c71 permit 95 ^65000:3_0:163_0:92$ ip community-list expanded c71 permit 96 ^65000:3_0:164_0:93$ ip community-list expanded c71 permit 97 ^65000:3_0:165_0:94$ ip community-list expanded c71 permit 98 ^65000:3_0:166_0:95$ ip community-list expanded c71 permit 99 ^65000:3_0:167_0:96$ ip community-list expanded c71 permit 100 ^65000:3_0:168_0:97$ ip community-list expanded c71 permit 101 ^65000:3_0:169_0:98$ ip community-list expanded c71 permit 102 ^65000:3_0:170_0:99$ ip community-list expanded c71 permit 103 ^65000:3_0:171_0:100$ ip community-list expanded c71 permit 104 ^65000:3_0:172_0:101$ ip community-list expanded c71 permit 105 ^65000:3_0:173_0:102$ ip community-list expanded c71 permit 106 ^65000:3_0:174_0:103$ ip community-list expanded c71 permit 107 ^65000:3_0:175_0:104$ ip community-list expanded c71 permit 108 ^65000:3_0:176_0:105$ ip community-list expanded c71 permit 109 ^65000:3_0:177_0:106$ ip community-list expanded c71 permit 110 ^65000:3_0:178_0:107$ ip community-list expanded c71 permit 111 ^65000:3_0:179_0:108$ ip community-list expanded c71 permit 112 ^65000:3_0:180_0:109$ ip community-list expanded c71 permit 113 ^65000:3_0:181_0:110$ ip community-list expanded c71 permit 114 ^65000:3_0:182_0:111$ ip community-list expanded c71 permit 115 ^65000:3_0:183_0:112$ ip community-list expanded c71 permit 116 ^65000:3_0:184_0:113$ ip community-list expanded c71 permit 117 ^65000:3_0:185_0:114$ ip community-list expanded c71 permit 118 ^65000:3_0:186_0:115$ ip community-list expanded c71 permit 119 ^65000:3_0:187_0:116$ ip community-list expanded c71 permit 120 ^65000:3_0:188_0:117$ ip community-list expanded c71 permit 121 ^65000:3_0:189_0:118$ ip community-list expanded c71 permit 122 ^65000:3_0:190_0:119$ ip community-list expanded c71 permit 123 ^65000:3_0:191_0:120$ ip community-list expanded c71 permit 124 ^65000:3_0:192_0:121$ ip community-list expanded c71 permit 125 ^65000:3_0:193_0:122$ ip community-list expanded c71 permit 126 ^65000:3_0:194_0:123$ ip community-list expanded c71 permit 127 ^65000:3_0:195_0:124$ ip community-list expanded c71 permit 128 ^65000:3_0:196_0:125$ ip community-list expanded c71 permit 129 ^65000:3_0:197_0:126$ ip community-list expanded c71 permit 130 ^65000:3_0:198_0:127$ ip community-list expanded c71 permit 131 ^65000:3_0:199_0:128$ ip community-list expanded c71 permit 132 ^65000:3_0:200_0:129$ ip community-list expanded c71 permit 133 ^65000:3_0:201_0:130$ ip community-list expanded c71 permit 134 ^65000:3_0:202_0:131$ ip community-list expanded c71 permit 135 ^65000:3_0:203_0:132$ ip community-list expanded c71 permit 136 ^65000:3_0:204_0:133$ ip community-list expanded c71 permit 137 ^65000:3_0:205_0:134$ ip community-list expanded c71 permit 138 ^65000:3_0:206_0:135$ ip community-list expanded c71 permit 139 ^65000:3_0:207_0:136$ ip community-list expanded c71 permit 140 ^65000:3_0:208_0:137$ ip community-list expanded c71 permit 141 ^65000:3_0:209_0:138$ ip community-list expanded c71 permit 142 ^65000:3_0:210_0:139$ ip community-list expanded c71 permit 143 ^65000:3_0:211_0:140$ ip community-list expanded c71 permit 144 ^65000:3_0:212_0:141$ ip community-list expanded c71 permit 145 ^65000:4_0:213_0:3$ ip community-list expanded c71 permit 146 ^65000:3_0:213_0:142$ ip community-list expanded c71 permit 147 ^65000:4_0:214_0:3$ ip community-list expanded c71 permit 148 ^65000:3_0:214_0:143$ ip community-list expanded c71 permit 149 ^65000:4_0:215_0:3$ ip community-list expanded c71 permit 150 ^65000:3_0:215_0:144$ ip community-list expanded c71 permit 151 ^65000:3_0:216_0:145$ ip community-list expanded c71 permit 152 ^65000:3_0:217_0:146$ ip community-list expanded c71 permit 153 ^65000:3_0:218_0:147$ ip community-list expanded c71 permit 154 ^65000:3_0:219_0:148$ ip community-list expanded c71 permit 155 ^65000:3_0:220_0:149$ ip community-list expanded c71 permit 156 ^65000:3_0:221_0:150$ ip community-list expanded c71 permit 157 ^65000:3_0:222_0:151$ ip community-list expanded c71 permit 158 ^65000:3_0:223_0:152$ ip community-list expanded c71 permit 159 ^65000:3_0:224_0:153$ ip community-list expanded c71 permit 160 ^65000:3_0:225_0:154$ ip community-list expanded c71 permit 161 ^65000:3_0:226_0:155$ ip community-list expanded c71 permit 162 ^65000:3_0:227_0:156$ ip community-list expanded c71 permit 163 ^65000:3_0:228_0:157$ ip community-list expanded c71 permit 164 ^65000:3_0:229_0:158$ ip community-list expanded c71 permit 165 ^65000:3_0:230_0:159$ ip community-list expanded c71 permit 166 ^65000:3_0:231_0:160$ ip community-list expanded c71 permit 167 ^65000:3_0:232_0:161$ ip community-list expanded c71 permit 168 ^65000:3_0:233_0:162$ ip community-list expanded c71 permit 169 ^65000:3_0:234_0:163$ ip community-list expanded c71 permit 170 ^65000:3_0:235_0:164$ ip community-list expanded c71 permit 171 ^65000:3_0:236_0:165$ ip community-list expanded c71 permit 172 ^65000:3_0:237_0:166$ ip community-list expanded c71 permit 173 ^65000:3_0:238_0:167$ ip community-list expanded c71 permit 174 ^65000:3_0:239_0:168$ ip community-list expanded c71 permit 175 ^65000:3_0:240_0:169$ ip community-list expanded c71 permit 176 ^65000:3_0:241_0:170$ ip community-list expanded c71 permit 177 ^65000:3_0:242_0:171$ ip community-list expanded c71 permit 178 ^65000:3_0:243_0:172$ ip community-list expanded c71 permit 179 ^65000:3_0:244_0:173$ ip community-list expanded c71 permit 180 ^65000:3_0:245_0:174$ ip community-list expanded c71 permit 181 ^65000:3_0:246_0:175$ ip community-list expanded c71 permit 182 ^65000:3_0:247_0:176$ ip community-list expanded c71 permit 183 ^65000:3_0:248_0:177$ ip community-list expanded c71 permit 184 ^65000:3_0:249_0:178$ ip community-list expanded c71 permit 185 ^65000:3_0:250_0:179$ ip community-list expanded c71 permit 186 ^65000:3_0:251_0:180$ ip community-list expanded c71 permit 187 ^65000:3_0:252_0:181$ ip community-list expanded c71 permit 188 ^65000:3_0:253_0:182$ ip community-list expanded c71 permit 189 ^65000:3_0:254_0:183$ ip community-list expanded c71 permit 190 ^65000:3_0:255_0:184$ ip community-list expanded c71 permit 191 ^65000:3_0:256_0:185$ route-map calculator permit 32467 match community 1_1_70 2_1_71 1_2_69 1_3_68 1_4_67 set community 0:71 route-map calculator permit 32468 match community 1_5_66 1_6_65 1_7_64 1_8_63 1_9_62 set community 0:71 route-map calculator permit 32469 match community 1_10_61 1_11_60 1_12_59 1_13_58 1_14_57 set community 0:71 route-map calculator permit 32470 match community 1_15_56 1_16_55 1_17_54 1_18_53 1_19_52 set community 0:71 route-map calculator permit 32471 match community 1_20_51 1_21_50 1_22_49 1_23_48 1_24_47 set community 0:71 route-map calculator permit 32472 match community 1_25_46 1_26_45 1_27_44 1_28_43 1_29_42 set community 0:71 route-map calculator permit 32473 match community 1_30_41 1_31_40 1_32_39 1_33_38 1_34_37 set community 0:71 route-map calculator permit 32474 match community 1_35_36 c4_71_1 c3_72_1 c3_73_2 c3_74_3 set community 0:71 route-map calculator permit 32475 match community c3_75_4 c3_76_5 c3_77_6 c3_78_7 c3_79_8 set community 0:71 route-map calculator permit 32476 match community c3_80_9 c3_81_10 c3_82_11 c3_83_12 c3_84_13 set community 0:71 route-map calculator permit 32477 match community c3_85_14 c3_86_15 c3_87_16 c3_88_17 c3_89_18 set community 0:71 route-map calculator permit 32478 match community c3_90_19 c3_91_20 c3_92_21 c3_93_22 c3_94_23 set community 0:71 route-map calculator permit 32479 match community c3_95_24 c3_96_25 c3_97_26 c3_98_27 c3_99_28 set community 0:71 route-map calculator permit 32480 match community c3_100_29 c3_101_30 c3_102_31 c3_103_32 c3_104_33 set community 0:71 route-map calculator permit 32481 match community c3_105_34 c3_106_35 c3_107_36 c3_108_37 c3_109_38 set community 0:71 route-map calculator permit 32482 match community c3_110_39 c3_111_40 c3_112_41 c3_113_42 c3_114_43 set community 0:71 route-map calculator permit 32483 match community c3_115_44 c3_116_45 c3_117_46 c3_118_47 c3_119_48 set community 0:71 route-map calculator permit 32484 match community c3_120_49 c3_121_50 c3_122_51 c3_123_52 c3_124_53 set community 0:71 route-map calculator permit 32485 match community c3_125_54 c3_126_55 c3_127_56 c3_128_57 c3_129_58 set community 0:71 route-map calculator permit 32486 match community c3_130_59 c3_131_60 c3_132_61 c3_133_62 c3_134_63 set community 0:71 route-map calculator permit 32487 match community c3_135_64 c3_136_65 c3_137_66 c3_138_67 c3_139_68 set community 0:71 route-map calculator permit 32488 match community c3_140_69 c3_141_70 c4_142_2 c3_142_71 c4_143_2 set community 0:71 route-map calculator permit 32489 match community c3_143_72 c3_144_73 c3_145_74 c3_146_75 c3_147_76 set community 0:71 route-map calculator permit 32490 match community c3_148_77 c3_149_78 c3_150_79 c3_151_80 c3_152_81 set community 0:71 route-map calculator permit 32491 match community c3_153_82 c3_154_83 c3_155_84 c3_156_85 c3_157_86 set community 0:71 route-map calculator permit 32492 match community c3_158_87 c3_159_88 c3_160_89 c3_161_90 c3_162_91 set community 0:71 route-map calculator permit 32493 match community c3_163_92 c3_164_93 c3_165_94 c3_166_95 c3_167_96 set community 0:71 route-map calculator permit 32494 match community c3_168_97 c3_169_98 c3_170_99 c3_171_100 c3_172_101 set community 0:71 route-map calculator permit 32495 match community c3_173_102 c3_174_103 c3_175_104 c3_176_105 c3_177_106 set community 0:71 route-map calculator permit 32496 match community c3_178_107 c3_179_108 c3_180_109 c3_181_110 c3_182_111 set community 0:71 route-map calculator permit 32497 match community c3_183_112 c3_184_113 c3_185_114 c3_186_115 c3_187_116 set community 0:71 route-map calculator permit 32498 match community c3_188_117 c3_189_118 c3_190_119 c3_191_120 c3_192_121 set community 0:71 route-map calculator permit 32499 match community c3_193_122 c3_194_123 c3_195_124 c3_196_125 c3_197_126 set community 0:71 route-map calculator permit 32500 match community c3_198_127 c3_199_128 c3_200_129 c3_201_130 c3_202_131 set community 0:71 route-map calculator permit 32501 match community c3_203_132 c3_204_133 c3_205_134 c3_206_135 c3_207_136 set community 0:71 route-map calculator permit 32502 match community c3_208_137 c3_209_138 c3_210_139 c3_211_140 c3_212_141 set community 0:71 route-map calculator permit 32503 match community c4_213_3 c3_213_142 c4_214_3 c3_214_143 c4_215_3 set community 0:71 route-map calculator permit 32504 match community c3_215_144 c3_216_145 c3_217_146 c3_218_147 c3_219_148 set community 0:71 route-map calculator permit 32505 match community c3_220_149 c3_221_150 c3_222_151 c3_223_152 c3_224_153 set community 0:71 route-map calculator permit 32506 match community c3_225_154 c3_226_155 c3_227_156 c3_228_157 c3_229_158 set community 0:71 route-map calculator permit 32507 match community c3_230_159 c3_231_160 c3_232_161 c3_233_162 c3_234_163 set community 0:71 route-map calculator permit 32508 match community c3_235_164 c3_236_165 c3_237_166 c3_238_167 c3_239_168 set community 0:71 route-map calculator permit 32509 match community c3_240_169 c3_241_170 c3_242_171 c3_243_172 c3_244_173 set community 0:71 route-map calculator permit 32510 match community c3_245_174 c3_246_175 c3_247_176 c3_248_177 c3_249_178 set community 0:71 route-map calculator permit 32511 match community c3_250_179 c3_251_180 c3_252_181 c3_253_182 c3_254_183 set community 0:71 route-map calculator permit 32512 match community c3_255_184 c3_256_185 set community 0:71 ip community-list standard 2_35_137 permit 65000:2 0:35 0:137 route-map calculator permit 32513 match community 2_35_137 set community 0:4795 ip community-list standard 2_87_202 permit 65000:2 0:87 0:202 ip community-list standard 2_101_174 permit 65000:2 0:101 0:174 route-map calculator permit 32514 match community 2_87_202 2_101_174 set community 0:17574 ip community-list standard 2_42_244 permit 65000:2 0:42 0:244 ip community-list standard 2_56_183 permit 65000:2 0:56 0:183 ip community-list standard 2_61_168 permit 65000:2 0:61 0:168 ip community-list standard 2_84_122 permit 65000:2 0:84 0:122 route-map calculator permit 32515 match community 2_42_244 2_56_183 2_61_168 2_84_122 set community 0:10248 ip community-list standard 2_216_236 permit 65000:2 0:216 0:236 route-map calculator permit 32516 match community 2_216_236 set community 0:50976 ip community-list standard 2_52_210 permit 65000:2 0:52 0:210 ip community-list standard 2_56_195 permit 65000:2 0:56 0:195 ip community-list standard 2_60_182 permit 65000:2 0:60 0:182 ip community-list standard 2_65_168 permit 65000:2 0:65 0:168 ip community-list standard 2_70_156 permit 65000:2 0:70 0:156 ip community-list standard 2_78_140 permit 65000:2 0:78 0:140 ip community-list standard 2_84_130 permit 65000:2 0:84 0:130 ip community-list standard 2_91_120 permit 65000:2 0:91 0:120 ip community-list standard 2_104_105 permit 65000:2 0:104 0:105 route-map calculator permit 32517 match community 2_52_210 2_56_195 2_60_182 2_65_168 2_70_156 set community 0:10920 route-map calculator permit 32518 match community 2_78_140 2_84_130 2_91_120 2_104_105 set community 0:10920 ip community-list standard 2_211_243 permit 65000:2 0:211 0:243 route-map calculator permit 32519 match community 2_211_243 set community 0:51273 ip community-list standard 2_26_211 permit 65000:2 0:26 0:211 route-map calculator permit 32520 match community 2_26_211 set community 0:5486 ip community-list standard 2_58_237 permit 65000:2 0:58 0:237 ip community-list standard 2_79_174 permit 65000:2 0:79 0:174 ip community-list standard 2_87_158 permit 65000:2 0:87 0:158 route-map calculator permit 32521 match community 2_58_237 2_79_174 2_87_158 set community 0:13746 ip community-list standard 2_216_255 permit 65000:2 0:216 0:255 route-map calculator permit 32522 match community 2_216_255 set community 0:55080 ip community-list standard 2_155_220 permit 65000:2 0:155 0:220 route-map calculator permit 32523 match community 2_155_220 set community 0:34100 ip community-list standard 2_50_231 permit 65000:2 0:50 0:231 ip community-list standard 2_55_210 permit 65000:2 0:55 0:210 ip community-list standard 2_66_175 permit 65000:2 0:66 0:175 ip community-list standard 2_70_165 permit 65000:2 0:70 0:165 ip community-list standard 2_75_154 permit 65000:2 0:75 0:154 ip community-list standard 2_77_150 permit 65000:2 0:77 0:150 ip community-list standard 2_105_110 permit 65000:2 0:105 0:110 route-map calculator permit 32524 match community 2_50_231 2_55_210 2_66_175 2_70_165 2_75_154 set community 0:11550 route-map calculator permit 32525 match community 2_77_150 2_105_110 set community 0:11550 ip community-list standard 2_89_105 permit 65000:2 0:89 0:105 route-map calculator permit 32526 match community 2_89_105 set community 0:9345 ip community-list standard 2_73_203 permit 65000:2 0:73 0:203 route-map calculator permit 32527 match community 2_73_203 set community 0:14819 ip community-list standard 2_146_203 permit 65000:2 0:146 0:203 route-map calculator permit 32528 match community 2_146_203 set community 0:29638 ip community-list standard 2_139_180 permit 65000:2 0:139 0:180 route-map calculator permit 32529 match community 2_139_180 set community 0:25020 ip community-list standard 2_57_194 permit 65000:2 0:57 0:194 ip community-list standard 2_97_114 permit 65000:2 0:97 0:114 route-map calculator permit 32530 match community 2_57_194 2_97_114 set community 0:11058 ip community-list standard 2_17_141 permit 65000:2 0:17 0:141 ip community-list standard 2_47_51 permit 65000:2 0:47 0:51 route-map calculator permit 32531 match community 2_17_141 2_47_51 set community 0:2397 ip community-list standard 2_21_202 permit 65000:2 0:21 0:202 ip community-list standard 2_42_101 permit 65000:2 0:42 0:101 route-map calculator permit 32532 match community 2_21_202 2_42_101 set community 0:4242 ip community-list standard 2_11_83 permit 65000:2 0:11 0:83 route-map calculator permit 32533 match community 2_11_83 set community 0:913 ip community-list standard 2_103_218 permit 65000:2 0:103 0:218 ip community-list standard 2_109_206 permit 65000:2 0:109 0:206 route-map calculator permit 32534 match community 2_103_218 2_109_206 set community 0:22454 ip community-list standard 2_90_241 permit 65000:2 0:90 0:241 route-map calculator permit 32535 match community 2_90_241 set community 0:21690 ip community-list standard 2_98_199 permit 65000:2 0:98 0:199 route-map calculator permit 32536 match community 2_98_199 set community 0:19502 ip community-list standard 2_38_184 permit 65000:2 0:38 0:184 ip community-list standard 2_46_152 permit 65000:2 0:46 0:152 ip community-list standard 2_76_92 permit 65000:2 0:76 0:92 route-map calculator permit 32537 match community 2_38_184 2_46_152 2_76_92 set community 0:6992 ip community-list standard 2_198_242 permit 65000:2 0:198 0:242 route-map calculator permit 32538 match community 2_198_242 set community 0:47916 ip community-list standard 2_90_226 permit 65000:2 0:90 0:226 ip community-list standard 2_113_180 permit 65000:2 0:113 0:180 route-map calculator permit 32539 match community 2_90_226 2_113_180 set community 0:20340 ip community-list standard 2_185_227 permit 65000:2 0:185 0:227 route-map calculator permit 32540 match community 2_185_227 set community 0:41995 ip community-list standard 2_235_253 permit 65000:2 0:235 0:253 route-map calculator permit 32541 match community 2_235_253 set community 0:59455 ip community-list standard 2_77_167 permit 65000:2 0:77 0:167 route-map calculator permit 32542 match community 2_77_167 set community 0:12859 ip community-list standard 2_137_256 permit 65000:2 0:137 0:256 route-map calculator permit 32543 match community 2_137_256 set community 0:35072 ip community-list standard 2_68_213 permit 65000:2 0:68 0:213 ip community-list standard 2_71_204 permit 65000:2 0:71 0:204 ip community-list standard 2_102_142 permit 65000:2 0:102 0:142 route-map calculator permit 32544 match community 2_68_213 2_71_204 2_102_142 set community 0:14484 ip community-list standard 2_190_232 permit 65000:2 0:190 0:232 route-map calculator permit 32545 match community 2_190_232 set community 0:44080 ip community-list standard 2_41_137 permit 65000:2 0:41 0:137 route-map calculator permit 32546 match community 2_41_137 set community 0:5617 ip community-list standard 2_143_236 permit 65000:2 0:143 0:236 route-map calculator permit 32547 match community 2_143_236 set community 0:33748 ip community-list standard 2_157_183 permit 65000:2 0:157 0:183 route-map calculator permit 32548 match community 2_157_183 set community 0:28731 ip community-list standard 2_161_205 permit 65000:2 0:161 0:205 route-map calculator permit 32549 match community 2_161_205 set community 0:33005 ip community-list standard 2_93_137 permit 65000:2 0:93 0:137 route-map calculator permit 32550 match community 2_93_137 set community 0:12741 ip community-list standard 2_78_149 permit 65000:2 0:78 0:149 route-map calculator permit 32551 match community 2_78_149 set community 0:11622 ip community-list standard 2_128_233 permit 65000:2 0:128 0:233 route-map calculator permit 32552 match community 2_128_233 set community 0:29824 ip community-list standard 2_8_228 permit 65000:2 0:8 0:228 ip community-list standard 2_12_152 permit 65000:2 0:12 0:152 ip community-list standard 2_16_114 permit 65000:2 0:16 0:114 ip community-list standard 2_19_96 permit 65000:2 0:19 0:96 ip community-list standard 2_24_76 permit 65000:2 0:24 0:76 ip community-list standard 2_32_57 permit 65000:2 0:32 0:57 ip community-list standard 2_38_48 permit 65000:2 0:38 0:48 route-map calculator permit 32553 match community 2_8_228 2_12_152 2_16_114 2_19_96 2_24_76 set community 0:1824 route-map calculator permit 32554 match community 2_32_57 2_38_48 set community 0:1824 ip community-list standard 2_117_179 permit 65000:2 0:117 0:179 route-map calculator permit 32555 match community 2_117_179 set community 0:20943 ip community-list standard 2_139_238 permit 65000:2 0:139 0:238 route-map calculator permit 32556 match community 2_139_238 set community 0:33082 ip community-list standard 2_202_249 permit 65000:2 0:202 0:249 route-map calculator permit 32557 match community 2_202_249 set community 0:50298 ip community-list standard 2_64_206 permit 65000:2 0:64 0:206 ip community-list standard 2_103_128 permit 65000:2 0:103 0:128 route-map calculator permit 32558 match community 2_64_206 2_103_128 set community 0:13184 ip community-list standard 2_162_252 permit 65000:2 0:162 0:252 ip community-list standard 2_168_243 permit 65000:2 0:168 0:243 ip community-list standard 2_189_216 permit 65000:2 0:189 0:216 route-map calculator permit 32559 match community 2_162_252 2_168_243 2_189_216 set community 0:40824 ip community-list standard 2_132_256 permit 65000:2 0:132 0:256 ip community-list standard 2_176_192 permit 65000:2 0:176 0:192 route-map calculator permit 32560 match community 2_132_256 2_176_192 set community 0:33792 ip community-list standard 2_230_230 permit 65000:2 0:230 0:230 route-map calculator permit 32561 match community 2_230_230 set community 0:52900 ip community-list standard 2_21_169 permit 65000:2 0:21 0:169 ip community-list standard 2_39_91 permit 65000:2 0:39 0:91 route-map calculator permit 32562 match community 2_21_169 2_39_91 set community 0:3549 ip community-list standard 2_141_240 permit 65000:2 0:141 0:240 ip community-list standard 2_144_235 permit 65000:2 0:144 0:235 ip community-list standard 2_180_188 permit 65000:2 0:180 0:188 route-map calculator permit 32563 match community 2_141_240 2_144_235 2_180_188 set community 0:33840 ip community-list standard 2_116_231 permit 65000:2 0:116 0:231 ip community-list standard 2_132_203 permit 65000:2 0:132 0:203 ip community-list standard 2_154_174 permit 65000:2 0:154 0:174 route-map calculator permit 32564 match community 2_116_231 2_132_203 2_154_174 set community 0:26796 ip community-list standard 2_204_239 permit 65000:2 0:204 0:239 route-map calculator permit 32565 match community 2_204_239 set community 0:48756 ip community-list standard 2_201_242 permit 65000:2 0:201 0:242 route-map calculator permit 32566 match community 2_201_242 set community 0:48642 ip community-list standard 2_89_253 permit 65000:2 0:89 0:253 route-map calculator permit 32567 match community 2_89_253 set community 0:22517 ip community-list standard 2_26_224 permit 65000:2 0:26 0:224 ip community-list standard 2_28_208 permit 65000:2 0:28 0:208 ip community-list standard 2_32_182 permit 65000:2 0:32 0:182 ip community-list standard 2_52_112 permit 65000:2 0:52 0:112 ip community-list standard 2_56_104 permit 65000:2 0:56 0:104 ip community-list standard 2_64_91 permit 65000:2 0:64 0:91 route-map calculator permit 32568 match community 2_26_224 2_28_208 2_32_182 2_52_112 2_56_104 set community 0:5824 route-map calculator permit 32569 match community 2_64_91 set community 0:5824 ip community-list standard 2_21_172 permit 65000:2 0:21 0:172 ip community-list standard 2_28_129 permit 65000:2 0:28 0:129 ip community-list standard 2_42_86 permit 65000:2 0:42 0:86 ip community-list standard 2_43_84 permit 65000:2 0:43 0:84 route-map calculator permit 32570 match community 2_21_172 2_28_129 2_42_86 2_43_84 set community 0:3612 ip community-list standard 2_55_242 permit 65000:2 0:55 0:242 ip community-list standard 2_110_121 permit 65000:2 0:110 0:121 route-map calculator permit 32571 match community 2_55_242 2_110_121 set community 0:13310 ip community-list standard 2_96_218 permit 65000:2 0:96 0:218 ip community-list standard 2_109_192 permit 65000:2 0:109 0:192 route-map calculator permit 32572 match community 2_96_218 2_109_192 set community 0:20928 ip community-list standard 2_33_194 permit 65000:2 0:33 0:194 ip community-list standard 2_66_97 permit 65000:2 0:66 0:97 route-map calculator permit 32573 match community 2_33_194 2_66_97 set community 0:6402 ip community-list standard 2_22_250 permit 65000:2 0:22 0:250 ip community-list standard 2_25_220 permit 65000:2 0:25 0:220 ip community-list standard 2_44_125 permit 65000:2 0:44 0:125 ip community-list standard 2_50_110 permit 65000:2 0:50 0:110 ip community-list standard 2_55_100 permit 65000:2 0:55 0:100 route-map calculator permit 32574 match community 2_22_250 2_25_220 2_44_125 2_50_110 2_55_100 set community 0:5500 ip community-list standard 2_46_159 permit 65000:2 0:46 0:159 ip community-list standard 2_53_138 permit 65000:2 0:53 0:138 ip community-list standard 2_69_106 permit 65000:2 0:69 0:106 route-map calculator permit 32575 match community 2_46_159 2_53_138 2_69_106 set community 0:7314 ip community-list standard 2_29_205 permit 65000:2 0:29 0:205 ip community-list standard 2_41_145 permit 65000:2 0:41 0:145 route-map calculator permit 32576 match community 2_29_205 2_41_145 set community 0:5945 ip community-list standard 2_178_181 permit 65000:2 0:178 0:181 route-map calculator permit 32577 match community 2_178_181 set community 0:32218 ip community-list standard 2_64_226 permit 65000:2 0:64 0:226 ip community-list standard 2_113_128 permit 65000:2 0:113 0:128 route-map calculator permit 32578 match community 2_64_226 2_113_128 set community 0:14464 ip community-list standard 2_58_239 permit 65000:2 0:58 0:239 route-map calculator permit 32579 match community 2_58_239 set community 0:13862 ip community-list standard 2_33_185 permit 65000:2 0:33 0:185 ip community-list standard 2_37_165 permit 65000:2 0:37 0:165 ip community-list standard 2_55_111 permit 65000:2 0:55 0:111 route-map calculator permit 32580 match community 2_33_185 2_37_165 2_55_111 set community 0:6105 ip community-list standard 2_48_255 permit 65000:2 0:48 0:255 ip community-list standard 2_51_240 permit 65000:2 0:51 0:240 ip community-list standard 2_60_204 permit 65000:2 0:60 0:204 ip community-list standard 2_68_180 permit 65000:2 0:68 0:180 ip community-list standard 2_72_170 permit 65000:2 0:72 0:170 ip community-list standard 2_80_153 permit 65000:2 0:80 0:153 ip community-list standard 2_85_144 permit 65000:2 0:85 0:144 ip community-list standard 2_90_136 permit 65000:2 0:90 0:136 ip community-list standard 2_102_120 permit 65000:2 0:102 0:120 route-map calculator permit 32581 match community 2_48_255 2_51_240 2_60_204 2_68_180 2_72_170 set community 0:12240 route-map calculator permit 32582 match community 2_80_153 2_85_144 2_90_136 2_102_120 set community 0:12240 ip community-list standard 2_98_139 permit 65000:2 0:98 0:139 route-map calculator permit 32583 match community 2_98_139 set community 0:13622 ip community-list standard 2_44_169 permit 65000:2 0:44 0:169 ip community-list standard 2_52_143 permit 65000:2 0:52 0:143 route-map calculator permit 32584 match community 2_44_169 2_52_143 set community 0:7436 ip community-list standard 2_184_252 permit 65000:2 0:184 0:252 ip community-list standard 2_207_224 permit 65000:2 0:207 0:224 route-map calculator permit 32585 match community 2_184_252 2_207_224 set community 0:46368 ip community-list standard 2_3_89 permit 65000:2 0:3 0:89 ip community-list standard 1_11_256 permit 65000:1 0:11 0:256 ip community-list standard 1_12_255 permit 65000:1 0:12 0:255 ip community-list standard 1_13_254 permit 65000:1 0:13 0:254 ip community-list standard 1_14_253 permit 65000:1 0:14 0:253 ip community-list standard 1_15_252 permit 65000:1 0:15 0:252 ip community-list standard 1_16_251 permit 65000:1 0:16 0:251 ip community-list standard 1_17_250 permit 65000:1 0:17 0:250 ip community-list standard 1_18_249 permit 65000:1 0:18 0:249 ip community-list standard 1_19_248 permit 65000:1 0:19 0:248 ip community-list standard 1_20_247 permit 65000:1 0:20 0:247 ip community-list standard 1_21_246 permit 65000:1 0:21 0:246 ip community-list standard 1_22_245 permit 65000:1 0:22 0:245 ip community-list standard 1_23_244 permit 65000:1 0:23 0:244 ip community-list standard 1_24_243 permit 65000:1 0:24 0:243 ip community-list standard 1_25_242 permit 65000:1 0:25 0:242 ip community-list standard 1_26_241 permit 65000:1 0:26 0:241 ip community-list standard 1_27_240 permit 65000:1 0:27 0:240 ip community-list standard 1_28_239 permit 65000:1 0:28 0:239 ip community-list standard 1_29_238 permit 65000:1 0:29 0:238 ip community-list standard 1_30_237 permit 65000:1 0:30 0:237 ip community-list standard 1_31_236 permit 65000:1 0:31 0:236 ip community-list standard 1_32_235 permit 65000:1 0:32 0:235 ip community-list standard 1_33_234 permit 65000:1 0:33 0:234 ip community-list standard 1_34_233 permit 65000:1 0:34 0:233 ip community-list standard 1_35_232 permit 65000:1 0:35 0:232 ip community-list standard 1_36_231 permit 65000:1 0:36 0:231 ip community-list standard 1_37_230 permit 65000:1 0:37 0:230 ip community-list standard 1_38_229 permit 65000:1 0:38 0:229 ip community-list standard 1_39_228 permit 65000:1 0:39 0:228 ip community-list standard 1_40_227 permit 65000:1 0:40 0:227 ip community-list standard 1_41_226 permit 65000:1 0:41 0:226 ip community-list standard 1_42_225 permit 65000:1 0:42 0:225 ip community-list standard 1_43_224 permit 65000:1 0:43 0:224 ip community-list standard 1_44_223 permit 65000:1 0:44 0:223 ip community-list standard 1_45_222 permit 65000:1 0:45 0:222 ip community-list standard 1_46_221 permit 65000:1 0:46 0:221 ip community-list standard 1_47_220 permit 65000:1 0:47 0:220 ip community-list standard 1_48_219 permit 65000:1 0:48 0:219 ip community-list standard 1_49_218 permit 65000:1 0:49 0:218 ip community-list standard 1_50_217 permit 65000:1 0:50 0:217 ip community-list standard 1_51_216 permit 65000:1 0:51 0:216 ip community-list standard 1_52_215 permit 65000:1 0:52 0:215 ip community-list standard 1_53_214 permit 65000:1 0:53 0:214 ip community-list standard 1_54_213 permit 65000:1 0:54 0:213 ip community-list standard 1_55_212 permit 65000:1 0:55 0:212 ip community-list standard 1_56_211 permit 65000:1 0:56 0:211 ip community-list standard 1_57_210 permit 65000:1 0:57 0:210 ip community-list standard 1_58_209 permit 65000:1 0:58 0:209 ip community-list standard 1_59_208 permit 65000:1 0:59 0:208 ip community-list standard 1_60_207 permit 65000:1 0:60 0:207 ip community-list standard 1_61_206 permit 65000:1 0:61 0:206 ip community-list standard 1_62_205 permit 65000:1 0:62 0:205 ip community-list standard 1_63_204 permit 65000:1 0:63 0:204 ip community-list standard 1_64_203 permit 65000:1 0:64 0:203 ip community-list standard 1_65_202 permit 65000:1 0:65 0:202 ip community-list standard 1_66_201 permit 65000:1 0:66 0:201 ip community-list standard 1_67_200 permit 65000:1 0:67 0:200 ip community-list standard 1_68_199 permit 65000:1 0:68 0:199 ip community-list standard 1_69_198 permit 65000:1 0:69 0:198 ip community-list standard 1_70_197 permit 65000:1 0:70 0:197 ip community-list standard 1_71_196 permit 65000:1 0:71 0:196 ip community-list standard 1_72_195 permit 65000:1 0:72 0:195 ip community-list standard 1_73_194 permit 65000:1 0:73 0:194 ip community-list standard 1_74_193 permit 65000:1 0:74 0:193 ip community-list standard 1_75_192 permit 65000:1 0:75 0:192 ip community-list standard 1_76_191 permit 65000:1 0:76 0:191 ip community-list standard 1_77_190 permit 65000:1 0:77 0:190 ip community-list standard 1_78_189 permit 65000:1 0:78 0:189 ip community-list standard 1_79_188 permit 65000:1 0:79 0:188 ip community-list standard 1_80_187 permit 65000:1 0:80 0:187 ip community-list standard 1_81_186 permit 65000:1 0:81 0:186 ip community-list standard 1_82_185 permit 65000:1 0:82 0:185 ip community-list standard 1_83_184 permit 65000:1 0:83 0:184 ip community-list standard 1_84_183 permit 65000:1 0:84 0:183 ip community-list standard 1_85_182 permit 65000:1 0:85 0:182 ip community-list standard 1_86_181 permit 65000:1 0:86 0:181 ip community-list standard 1_87_180 permit 65000:1 0:87 0:180 ip community-list standard 1_88_179 permit 65000:1 0:88 0:179 ip community-list standard 1_89_178 permit 65000:1 0:89 0:178 ip community-list standard 1_90_177 permit 65000:1 0:90 0:177 ip community-list standard 1_91_176 permit 65000:1 0:91 0:176 ip community-list standard 1_92_175 permit 65000:1 0:92 0:175 ip community-list standard 1_93_174 permit 65000:1 0:93 0:174 ip community-list standard 1_94_173 permit 65000:1 0:94 0:173 ip community-list standard 1_95_172 permit 65000:1 0:95 0:172 ip community-list standard 1_96_171 permit 65000:1 0:96 0:171 ip community-list standard 1_97_170 permit 65000:1 0:97 0:170 ip community-list standard 1_98_169 permit 65000:1 0:98 0:169 ip community-list standard 1_99_168 permit 65000:1 0:99 0:168 ip community-list standard 1_100_167 permit 65000:1 0:100 0:167 ip community-list standard 1_101_166 permit 65000:1 0:101 0:166 ip community-list standard 1_102_165 permit 65000:1 0:102 0:165 ip community-list standard 1_103_164 permit 65000:1 0:103 0:164 ip community-list standard 1_104_163 permit 65000:1 0:104 0:163 ip community-list standard 1_105_162 permit 65000:1 0:105 0:162 ip community-list standard 1_106_161 permit 65000:1 0:106 0:161 ip community-list standard 1_107_160 permit 65000:1 0:107 0:160 ip community-list standard 1_108_159 permit 65000:1 0:108 0:159 ip community-list standard 1_109_158 permit 65000:1 0:109 0:158 ip community-list standard 1_110_157 permit 65000:1 0:110 0:157 ip community-list standard 1_111_156 permit 65000:1 0:111 0:156 ip community-list standard 1_112_155 permit 65000:1 0:112 0:155 ip community-list standard 1_113_154 permit 65000:1 0:113 0:154 ip community-list standard 1_114_153 permit 65000:1 0:114 0:153 ip community-list standard 1_115_152 permit 65000:1 0:115 0:152 ip community-list standard 1_116_151 permit 65000:1 0:116 0:151 ip community-list standard 1_117_150 permit 65000:1 0:117 0:150 ip community-list standard 1_118_149 permit 65000:1 0:118 0:149 ip community-list standard 1_119_148 permit 65000:1 0:119 0:148 ip community-list standard 1_120_147 permit 65000:1 0:120 0:147 ip community-list standard 1_121_146 permit 65000:1 0:121 0:146 ip community-list standard 1_122_145 permit 65000:1 0:122 0:145 ip community-list standard 1_123_144 permit 65000:1 0:123 0:144 ip community-list standard 1_124_143 permit 65000:1 0:124 0:143 ip community-list standard 1_125_142 permit 65000:1 0:125 0:142 ip community-list standard 1_126_141 permit 65000:1 0:126 0:141 ip community-list standard 1_127_140 permit 65000:1 0:127 0:140 ip community-list standard 1_128_139 permit 65000:1 0:128 0:139 ip community-list standard 1_129_138 permit 65000:1 0:129 0:138 ip community-list standard 1_130_137 permit 65000:1 0:130 0:137 ip community-list standard 1_131_136 permit 65000:1 0:131 0:136 ip community-list standard 1_132_135 permit 65000:1 0:132 0:135 ip community-list standard 1_133_134 permit 65000:1 0:133 0:134 route-map calculator permit 32586 match community 2_3_89 1_11_256 1_12_255 1_13_254 1_14_253 set community 0:267 route-map calculator permit 32587 match community 1_15_252 1_16_251 1_17_250 1_18_249 1_19_248 set community 0:267 route-map calculator permit 32588 match community 1_20_247 1_21_246 1_22_245 1_23_244 1_24_243 set community 0:267 route-map calculator permit 32589 match community 1_25_242 1_26_241 1_27_240 1_28_239 1_29_238 set community 0:267 route-map calculator permit 32590 match community 1_30_237 1_31_236 1_32_235 1_33_234 1_34_233 set community 0:267 route-map calculator permit 32591 match community 1_35_232 1_36_231 1_37_230 1_38_229 1_39_228 set community 0:267 route-map calculator permit 32592 match community 1_40_227 1_41_226 1_42_225 1_43_224 1_44_223 set community 0:267 route-map calculator permit 32593 match community 1_45_222 1_46_221 1_47_220 1_48_219 1_49_218 set community 0:267 route-map calculator permit 32594 match community 1_50_217 1_51_216 1_52_215 1_53_214 1_54_213 set community 0:267 route-map calculator permit 32595 match community 1_55_212 1_56_211 1_57_210 1_58_209 1_59_208 set community 0:267 route-map calculator permit 32596 match community 1_60_207 1_61_206 1_62_205 1_63_204 1_64_203 set community 0:267 route-map calculator permit 32597 match community 1_65_202 1_66_201 1_67_200 1_68_199 1_69_198 set community 0:267 route-map calculator permit 32598 match community 1_70_197 1_71_196 1_72_195 1_73_194 1_74_193 set community 0:267 route-map calculator permit 32599 match community 1_75_192 1_76_191 1_77_190 1_78_189 1_79_188 set community 0:267 route-map calculator permit 32600 match community 1_80_187 1_81_186 1_82_185 1_83_184 1_84_183 set community 0:267 route-map calculator permit 32601 match community 1_85_182 1_86_181 1_87_180 1_88_179 1_89_178 set community 0:267 route-map calculator permit 32602 match community 1_90_177 1_91_176 1_92_175 1_93_174 1_94_173 set community 0:267 route-map calculator permit 32603 match community 1_95_172 1_96_171 1_97_170 1_98_169 1_99_168 set community 0:267 route-map calculator permit 32604 match community 1_100_167 1_101_166 1_102_165 1_103_164 1_104_163 set community 0:267 route-map calculator permit 32605 match community 1_105_162 1_106_161 1_107_160 1_108_159 1_109_158 set community 0:267 route-map calculator permit 32606 match community 1_110_157 1_111_156 1_112_155 1_113_154 1_114_153 set community 0:267 route-map calculator permit 32607 match community 1_115_152 1_116_151 1_117_150 1_118_149 1_119_148 set community 0:267 route-map calculator permit 32608 match community 1_120_147 1_121_146 1_122_145 1_123_144 1_124_143 set community 0:267 route-map calculator permit 32609 match community 1_125_142 1_126_141 1_127_140 1_128_139 1_129_138 set community 0:267 route-map calculator permit 32610 match community 1_130_137 1_131_136 1_132_135 1_133_134 set community 0:267 ip community-list standard 2_12_216 permit 65000:2 0:12 0:216 ip community-list standard 2_16_162 permit 65000:2 0:16 0:162 ip community-list standard 2_18_144 permit 65000:2 0:18 0:144 ip community-list standard 2_24_108 permit 65000:2 0:24 0:108 ip community-list standard 2_27_96 permit 65000:2 0:27 0:96 ip community-list standard 2_32_81 permit 65000:2 0:32 0:81 ip community-list standard 2_36_72 permit 65000:2 0:36 0:72 ip community-list standard 2_48_54 permit 65000:2 0:48 0:54 route-map calculator permit 32611 match community 2_12_216 2_16_162 2_18_144 2_24_108 2_27_96 set community 0:2592 route-map calculator permit 32612 match community 2_32_81 2_36_72 2_48_54 set community 0:2592 ip community-list standard 2_82_167 permit 65000:2 0:82 0:167 route-map calculator permit 32613 match community 2_82_167 set community 0:13694 ip community-list standard 2_61_194 permit 65000:2 0:61 0:194 ip community-list standard 2_97_122 permit 65000:2 0:97 0:122 route-map calculator permit 32614 match community 2_61_194 2_97_122 set community 0:11834 ip community-list standard 2_144_236 permit 65000:2 0:144 0:236 ip community-list standard 2_177_192 permit 65000:2 0:177 0:192 route-map calculator permit 32615 match community 2_144_236 2_177_192 set community 0:33984 ip community-list standard 2_51_103 permit 65000:2 0:51 0:103 route-map calculator permit 32616 match community 2_51_103 set community 0:5253 ip community-list standard 2_227_227 permit 65000:2 0:227 0:227 route-map calculator permit 32617 match community 2_227_227 set community 0:51529 ip community-list standard 2_165_197 permit 65000:2 0:165 0:197 route-map calculator permit 32618 match community 2_165_197 set community 0:32505 ip community-list standard 2_238_248 permit 65000:2 0:238 0:248 route-map calculator permit 32619 match community 2_238_248 set community 0:59024 ip community-list standard 2_142_208 permit 65000:2 0:142 0:208 route-map calculator permit 32620 match community 2_142_208 set community 0:29536 ip community-list standard 2_75_191 permit 65000:2 0:75 0:191 route-map calculator permit 32621 match community 2_75_191 set community 0:14325 ip community-list standard 2_179_181 permit 65000:2 0:179 0:181 route-map calculator permit 32622 match community 2_179_181 set community 0:32399 ip community-list standard 2_23_79 permit 65000:2 0:23 0:79 route-map calculator permit 32623 match community 2_23_79 set community 0:1817 ip community-list standard 2_85_217 permit 65000:2 0:85 0:217 ip community-list standard 2_119_155 permit 65000:2 0:119 0:155 route-map calculator permit 32624 match community 2_85_217 2_119_155 set community 0:18445 ip community-list standard 2_163_240 permit 65000:2 0:163 0:240 route-map calculator permit 32625 match community 2_163_240 set community 0:39120 ip community-list standard 2_78_172 permit 65000:2 0:78 0:172 ip community-list standard 2_86_156 permit 65000:2 0:86 0:156 ip community-list standard 2_104_129 permit 65000:2 0:104 0:129 route-map calculator permit 32626 match community 2_78_172 2_86_156 2_104_129 set community 0:13416 ip community-list standard 2_136_220 permit 65000:2 0:136 0:220 ip community-list standard 2_160_187 permit 65000:2 0:160 0:187 ip community-list standard 2_170_176 permit 65000:2 0:170 0:176 route-map calculator permit 32627 match community 2_136_220 2_160_187 2_170_176 set community 0:29920 ip community-list standard 2_14_224 permit 65000:2 0:14 0:224 ip community-list standard 2_16_196 permit 65000:2 0:16 0:196 ip community-list standard 2_28_112 permit 65000:2 0:28 0:112 ip community-list standard 2_32_98 permit 65000:2 0:32 0:98 ip community-list standard 2_49_64 permit 65000:2 0:49 0:64 ip community-list standard 2_56_56 permit 65000:2 0:56 0:56 route-map calculator permit 32628 match community 2_14_224 2_16_196 2_28_112 2_32_98 2_49_64 set community 0:3136 route-map calculator permit 32629 match community 2_56_56 set community 0:3136 ip community-list standard 2_205_233 permit 65000:2 0:205 0:233 route-map calculator permit 32630 match community 2_205_233 set community 0:47765 ip community-list standard 2_51_227 permit 65000:2 0:51 0:227 route-map calculator permit 32631 match community 2_51_227 set community 0:11577 ip community-list standard 2_24_214 permit 65000:2 0:24 0:214 ip community-list standard 2_48_107 permit 65000:2 0:48 0:107 route-map calculator permit 32632 match community 2_24_214 2_48_107 set community 0:5136 ip community-list standard 2_17_73 permit 65000:2 0:17 0:73 route-map calculator permit 32633 match community 2_17_73 set community 0:1241 ip community-list standard 2_22_223 permit 65000:2 0:22 0:223 route-map calculator permit 32634 match community 2_22_223 set community 0:4906 ip community-list standard 2_159_248 permit 65000:2 0:159 0:248 ip community-list standard 2_186_212 permit 65000:2 0:186 0:212 route-map calculator permit 32635 match community 2_159_248 2_186_212 set community 0:39432 ip community-list standard 2_116_238 permit 65000:2 0:116 0:238 ip community-list standard 2_119_232 permit 65000:2 0:119 0:232 ip community-list standard 2_136_203 permit 65000:2 0:136 0:203 route-map calculator permit 32636 match community 2_116_238 2_119_232 2_136_203 set community 0:27608 ip community-list standard 2_55_206 permit 65000:2 0:55 0:206 ip community-list standard 2_103_110 permit 65000:2 0:103 0:110 route-map calculator permit 32637 match community 2_55_206 2_103_110 set community 0:11330 ip community-list standard 2_24_255 permit 65000:2 0:24 0:255 ip community-list standard 2_30_204 permit 65000:2 0:30 0:204 ip community-list standard 2_34_180 permit 65000:2 0:34 0:180 ip community-list standard 2_36_170 permit 65000:2 0:36 0:170 ip community-list standard 2_40_153 permit 65000:2 0:40 0:153 ip community-list standard 2_45_136 permit 65000:2 0:45 0:136 ip community-list standard 2_51_120 permit 65000:2 0:51 0:120 ip community-list standard 2_60_102 permit 65000:2 0:60 0:102 ip community-list standard 2_68_90 permit 65000:2 0:68 0:90 ip community-list standard 2_72_85 permit 65000:2 0:72 0:85 route-map calculator permit 32638 match community 2_24_255 2_30_204 2_34_180 2_36_170 2_40_153 set community 0:6120 route-map calculator permit 32639 match community 2_45_136 2_51_120 2_60_102 2_68_90 2_72_85 set community 0:6120 ip community-list standard 2_145_234 permit 65000:2 0:145 0:234 ip community-list standard 2_174_195 permit 65000:2 0:174 0:195 route-map calculator permit 32640 match community 2_145_234 2_174_195 set community 0:33930 ip community-list standard 2_3_137 permit 65000:2 0:3 0:137 ip community-list standard 1_155_256 permit 65000:1 0:155 0:256 ip community-list standard 1_156_255 permit 65000:1 0:156 0:255 ip community-list standard 1_157_254 permit 65000:1 0:157 0:254 ip community-list standard 1_158_253 permit 65000:1 0:158 0:253 ip community-list standard 1_159_252 permit 65000:1 0:159 0:252 ip community-list standard 1_160_251 permit 65000:1 0:160 0:251 ip community-list standard 1_161_250 permit 65000:1 0:161 0:250 ip community-list standard 1_162_249 permit 65000:1 0:162 0:249 ip community-list standard 1_163_248 permit 65000:1 0:163 0:248 ip community-list standard 1_164_247 permit 65000:1 0:164 0:247 ip community-list standard 1_165_246 permit 65000:1 0:165 0:246 ip community-list standard 1_166_245 permit 65000:1 0:166 0:245 ip community-list standard 1_167_244 permit 65000:1 0:167 0:244 ip community-list standard 1_168_243 permit 65000:1 0:168 0:243 ip community-list standard 1_169_242 permit 65000:1 0:169 0:242 ip community-list standard 1_170_241 permit 65000:1 0:170 0:241 ip community-list standard 1_171_240 permit 65000:1 0:171 0:240 ip community-list standard 1_172_239 permit 65000:1 0:172 0:239 ip community-list standard 1_173_238 permit 65000:1 0:173 0:238 ip community-list standard 1_174_237 permit 65000:1 0:174 0:237 ip community-list standard 1_175_236 permit 65000:1 0:175 0:236 ip community-list standard 1_176_235 permit 65000:1 0:176 0:235 ip community-list standard 1_177_234 permit 65000:1 0:177 0:234 ip community-list standard 1_178_233 permit 65000:1 0:178 0:233 ip community-list standard 1_179_232 permit 65000:1 0:179 0:232 ip community-list standard 1_180_231 permit 65000:1 0:180 0:231 ip community-list standard 1_181_230 permit 65000:1 0:181 0:230 ip community-list standard 1_182_229 permit 65000:1 0:182 0:229 ip community-list standard 1_183_228 permit 65000:1 0:183 0:228 ip community-list standard 1_184_227 permit 65000:1 0:184 0:227 ip community-list standard 1_185_226 permit 65000:1 0:185 0:226 ip community-list standard 1_186_225 permit 65000:1 0:186 0:225 ip community-list standard 1_187_224 permit 65000:1 0:187 0:224 ip community-list standard 1_188_223 permit 65000:1 0:188 0:223 ip community-list standard 1_189_222 permit 65000:1 0:189 0:222 ip community-list standard 1_190_221 permit 65000:1 0:190 0:221 ip community-list standard 1_191_220 permit 65000:1 0:191 0:220 ip community-list standard 1_192_219 permit 65000:1 0:192 0:219 ip community-list standard 1_193_218 permit 65000:1 0:193 0:218 ip community-list standard 1_194_217 permit 65000:1 0:194 0:217 ip community-list standard 1_195_216 permit 65000:1 0:195 0:216 ip community-list standard 1_196_215 permit 65000:1 0:196 0:215 ip community-list standard 1_197_214 permit 65000:1 0:197 0:214 ip community-list standard 1_198_213 permit 65000:1 0:198 0:213 ip community-list standard 1_199_212 permit 65000:1 0:199 0:212 ip community-list standard 1_200_211 permit 65000:1 0:200 0:211 ip community-list standard 1_201_210 permit 65000:1 0:201 0:210 ip community-list standard 1_202_209 permit 65000:1 0:202 0:209 ip community-list standard 1_203_208 permit 65000:1 0:203 0:208 ip community-list standard 1_204_207 permit 65000:1 0:204 0:207 ip community-list standard 1_205_206 permit 65000:1 0:205 0:206 route-map calculator permit 32641 match community 2_3_137 1_155_256 1_156_255 1_157_254 1_158_253 set community 0:411 route-map calculator permit 32642 match community 1_159_252 1_160_251 1_161_250 1_162_249 1_163_248 set community 0:411 route-map calculator permit 32643 match community 1_164_247 1_165_246 1_166_245 1_167_244 1_168_243 set community 0:411 route-map calculator permit 32644 match community 1_169_242 1_170_241 1_171_240 1_172_239 1_173_238 set community 0:411 route-map calculator permit 32645 match community 1_174_237 1_175_236 1_176_235 1_177_234 1_178_233 set community 0:411 route-map calculator permit 32646 match community 1_179_232 1_180_231 1_181_230 1_182_229 1_183_228 set community 0:411 route-map calculator permit 32647 match community 1_184_227 1_185_226 1_186_225 1_187_224 1_188_223 set community 0:411 route-map calculator permit 32648 match community 1_189_222 1_190_221 1_191_220 1_192_219 1_193_218 set community 0:411 route-map calculator permit 32649 match community 1_194_217 1_195_216 1_196_215 1_197_214 1_198_213 set community 0:411 route-map calculator permit 32650 match community 1_199_212 1_200_211 1_201_210 1_202_209 1_203_208 set community 0:411 route-map calculator permit 32651 match community 1_204_207 1_205_206 set community 0:411 ip community-list standard 2_152_220 permit 65000:2 0:152 0:220 ip community-list standard 2_160_209 permit 65000:2 0:160 0:209 ip community-list standard 2_176_190 permit 65000:2 0:176 0:190 route-map calculator permit 32652 match community 2_152_220 2_160_209 2_176_190 set community 0:33440 ip community-list standard 2_73_254 permit 65000:2 0:73 0:254 ip community-list standard 2_127_146 permit 65000:2 0:127 0:146 route-map calculator permit 32653 match community 2_73_254 2_127_146 set community 0:18542 ip community-list standard 2_17_177 permit 65000:2 0:17 0:177 ip community-list standard 2_51_59 permit 65000:2 0:51 0:59 route-map calculator permit 32654 match community 2_17_177 2_51_59 set community 0:3009 ip community-list standard 2_125_181 permit 65000:2 0:125 0:181 route-map calculator permit 32655 match community 2_125_181 set community 0:22625 ip community-list standard 2_73_249 permit 65000:2 0:73 0:249 ip community-list standard 2_83_219 permit 65000:2 0:83 0:219 route-map calculator permit 32656 match community 2_73_249 2_83_219 set community 0:18177 ip community-list standard 2_99_183 permit 65000:2 0:99 0:183 route-map calculator permit 32657 match community 2_99_183 set community 0:18117 ip community-list standard 2_119_229 permit 65000:2 0:119 0:229 route-map calculator permit 32658 match community 2_119_229 set community 0:27251 ip community-list standard 2_205_206 permit 65000:2 0:205 0:206 route-map calculator permit 32659 match community 2_205_206 set community 0:42230 ip community-list standard 2_161_183 permit 65000:2 0:161 0:183 route-map calculator permit 32660 match community 2_161_183 set community 0:29463 ip community-list standard 2_22_242 permit 65000:2 0:22 0:242 ip community-list standard 2_44_121 permit 65000:2 0:44 0:121 route-map calculator permit 32661 match community 2_22_242 2_44_121 set community 0:5324 ip community-list standard 2_173_181 permit 65000:2 0:173 0:181 route-map calculator permit 32662 match community 2_173_181 set community 0:31313 ip community-list standard 2_92_241 permit 65000:2 0:92 0:241 route-map calculator permit 32663 match community 2_92_241 set community 0:22172 ip community-list standard 2_163_204 permit 65000:2 0:163 0:204 route-map calculator permit 32664 match community 2_163_204 set community 0:33252 ip community-list standard 2_159_237 permit 65000:2 0:159 0:237 route-map calculator permit 32665 match community 2_159_237 set community 0:37683 ip community-list standard 2_216_229 permit 65000:2 0:216 0:229 route-map calculator permit 32666 match community 2_216_229 set community 0:49464 ip community-list standard 2_41_217 permit 65000:2 0:41 0:217 route-map calculator permit 32667 match community 2_41_217 set community 0:8897 ip community-list standard 2_135_241 permit 65000:2 0:135 0:241 route-map calculator permit 32668 match community 2_135_241 set community 0:32535 ip community-list standard 2_183_215 permit 65000:2 0:183 0:215 route-map calculator permit 32669 match community 2_183_215 set community 0:39345 ip community-list standard 2_19_243 permit 65000:2 0:19 0:243 ip community-list standard 2_27_171 permit 65000:2 0:27 0:171 ip community-list standard 2_57_81 permit 65000:2 0:57 0:81 route-map calculator permit 32670 match community 2_19_243 2_27_171 2_57_81 set community 0:4617 ip community-list standard 2_9_210 permit 65000:2 0:9 0:210 ip community-list standard 2_10_189 permit 65000:2 0:10 0:189 ip community-list standard 2_14_135 permit 65000:2 0:14 0:135 ip community-list standard 2_15_126 permit 65000:2 0:15 0:126 ip community-list standard 2_18_105 permit 65000:2 0:18 0:105 ip community-list standard 2_21_90 permit 65000:2 0:21 0:90 ip community-list standard 2_27_70 permit 65000:2 0:27 0:70 ip community-list standard 2_30_63 permit 65000:2 0:30 0:63 ip community-list standard 2_35_54 permit 65000:2 0:35 0:54 ip community-list standard 2_42_45 permit 65000:2 0:42 0:45 route-map calculator permit 32671 match community 2_9_210 2_10_189 2_14_135 2_15_126 2_18_105 set community 0:1890 route-map calculator permit 32672 match community 2_21_90 2_27_70 2_30_63 2_35_54 2_42_45 set community 0:1890 ip community-list standard 2_137_234 permit 65000:2 0:137 0:234 route-map calculator permit 32673 match community 2_137_234 set community 0:32058 ip community-list standard 2_171_246 permit 65000:2 0:171 0:246 route-map calculator permit 32674 match community 2_171_246 set community 0:42066 ip community-list standard 2_189_241 permit 65000:2 0:189 0:241 route-map calculator permit 32675 match community 2_189_241 set community 0:45549 ip community-list standard 2_108_226 permit 65000:2 0:108 0:226 ip community-list standard 2_113_216 permit 65000:2 0:113 0:216 route-map calculator permit 32676 match community 2_108_226 2_113_216 set community 0:24408 ip community-list standard 2_33_253 permit 65000:2 0:33 0:253 ip community-list standard 2_69_121 permit 65000:2 0:69 0:121 route-map calculator permit 32677 match community 2_33_253 2_69_121 set community 0:8349 ip community-list standard 2_7_246 permit 65000:2 0:7 0:246 ip community-list standard 2_14_123 permit 65000:2 0:14 0:123 ip community-list standard 2_21_82 permit 65000:2 0:21 0:82 ip community-list standard 2_41_42 permit 65000:2 0:41 0:42 route-map calculator permit 32678 match community 2_7_246 2_14_123 2_21_82 2_41_42 set community 0:1722 ip community-list standard 2_213_227 permit 65000:2 0:213 0:227 route-map calculator permit 32679 match community 2_213_227 set community 0:48351 ip community-list standard 2_20_203 permit 65000:2 0:20 0:203 ip community-list standard 2_28_145 permit 65000:2 0:28 0:145 ip community-list standard 2_29_140 permit 65000:2 0:29 0:140 ip community-list standard 2_35_116 permit 65000:2 0:35 0:116 ip community-list standard 2_58_70 permit 65000:2 0:58 0:70 route-map calculator permit 32680 match community 2_20_203 2_28_145 2_29_140 2_35_116 2_58_70 set community 0:4060 ip community-list standard 2_13_236 permit 65000:2 0:13 0:236 ip community-list standard 2_26_118 permit 65000:2 0:26 0:118 ip community-list standard 2_52_59 permit 65000:2 0:52 0:59 route-map calculator permit 32681 match community 2_13_236 2_26_118 2_52_59 set community 0:3068 ip community-list standard 2_151_246 permit 65000:2 0:151 0:246 route-map calculator permit 32682 match community 2_151_246 set community 0:37146 ip community-list standard 2_37_91 permit 65000:2 0:37 0:91 route-map calculator permit 32683 match community 2_37_91 set community 0:3367 ip community-list standard 2_192_242 permit 65000:2 0:192 0:242 route-map calculator permit 32684 match community 2_192_242 set community 0:46464 ip community-list standard 2_96_194 permit 65000:2 0:96 0:194 ip community-list standard 2_97_192 permit 65000:2 0:97 0:192 route-map calculator permit 32685 match community 2_96_194 2_97_192 set community 0:18624 ip community-list standard 2_182_239 permit 65000:2 0:182 0:239 route-map calculator permit 32686 match community 2_182_239 set community 0:43498 ip community-list standard 2_99_245 permit 65000:2 0:99 0:245 ip community-list standard 2_105_231 permit 65000:2 0:105 0:231 ip community-list standard 2_147_165 permit 65000:2 0:147 0:165 route-map calculator permit 32687 match community 2_99_245 2_105_231 2_147_165 set community 0:24255 ip community-list standard 2_29_223 permit 65000:2 0:29 0:223 route-map calculator permit 32688 match community 2_29_223 set community 0:6467 ip community-list standard 2_10_206 permit 65000:2 0:10 0:206 ip community-list standard 2_20_103 permit 65000:2 0:20 0:103 route-map calculator permit 32689 match community 2_10_206 2_20_103 set community 0:2060 ip community-list standard 2_104_179 permit 65000:2 0:104 0:179 route-map calculator permit 32690 match community 2_104_179 set community 0:18616 ip community-list standard 2_194_229 permit 65000:2 0:194 0:229 route-map calculator permit 32691 match community 2_194_229 set community 0:44426 ip community-list standard 2_173_236 permit 65000:2 0:173 0:236 route-map calculator permit 32692 match community 2_173_236 set community 0:40828 ip community-list standard 2_240_251 permit 65000:2 0:240 0:251 route-map calculator permit 32693 match community 2_240_251 set community 0:60240 ip community-list standard 2_58_252 permit 65000:2 0:58 0:252 ip community-list standard 2_63_232 permit 65000:2 0:63 0:232 ip community-list standard 2_72_203 permit 65000:2 0:72 0:203 ip community-list standard 2_84_174 permit 65000:2 0:84 0:174 ip community-list standard 2_87_168 permit 65000:2 0:87 0:168 ip community-list standard 2_116_126 permit 65000:2 0:116 0:126 route-map calculator permit 32694 match community 2_58_252 2_63_232 2_72_203 2_84_174 2_87_168 set community 0:14616 route-map calculator permit 32695 match community 2_116_126 set community 0:14616 ip community-list standard 2_227_228 permit 65000:2 0:227 0:228 route-map calculator permit 32696 match community 2_227_228 set community 0:51756 ip community-list standard 2_60_215 permit 65000:2 0:60 0:215 ip community-list standard 2_75_172 permit 65000:2 0:75 0:172 ip community-list standard 2_86_150 permit 65000:2 0:86 0:150 ip community-list standard 2_100_129 permit 65000:2 0:100 0:129 route-map calculator permit 32697 match community 2_60_215 2_75_172 2_86_150 2_100_129 set community 0:12900 ip community-list standard 2_77_221 permit 65000:2 0:77 0:221 ip community-list standard 2_91_187 permit 65000:2 0:91 0:187 ip community-list standard 2_119_143 permit 65000:2 0:119 0:143 route-map calculator permit 32698 match community 2_77_221 2_91_187 2_119_143 set community 0:17017 ip community-list standard 2_71_230 permit 65000:2 0:71 0:230 ip community-list standard 2_115_142 permit 65000:2 0:115 0:142 route-map calculator permit 32699 match community 2_71_230 2_115_142 set community 0:16330 ip community-list standard 2_49_147 permit 65000:2 0:49 0:147 route-map calculator permit 32700 match community 2_49_147 set community 0:7203 ip community-list standard 2_72_249 permit 65000:2 0:72 0:249 ip community-list standard 2_83_216 permit 65000:2 0:83 0:216 ip community-list standard 2_108_166 permit 65000:2 0:108 0:166 route-map calculator permit 32701 match community 2_72_249 2_83_216 2_108_166 set community 0:17928 ip community-list standard 2_139_192 permit 65000:2 0:139 0:192 route-map calculator permit 32702 match community 2_139_192 set community 0:26688 ip community-list standard 2_71_151 permit 65000:2 0:71 0:151 route-map calculator permit 32703 match community 2_71_151 set community 0:10721 ip community-list standard 2_109_235 permit 65000:2 0:109 0:235 route-map calculator permit 32704 match community 2_109_235 set community 0:25615 ip community-list standard 2_97_105 permit 65000:2 0:97 0:105 route-map calculator permit 32705 match community 2_97_105 set community 0:10185 ip community-list standard 2_223_223 permit 65000:2 0:223 0:223 route-map calculator permit 32706 match community 2_223_223 set community 0:49729 ip community-list standard 2_45_248 permit 65000:2 0:45 0:248 ip community-list standard 2_60_186 permit 65000:2 0:60 0:186 ip community-list standard 2_62_180 permit 65000:2 0:62 0:180 ip community-list standard 2_72_155 permit 65000:2 0:72 0:155 ip community-list standard 2_90_124 permit 65000:2 0:90 0:124 ip community-list standard 2_93_120 permit 65000:2 0:93 0:120 route-map calculator permit 32707 match community 2_45_248 2_60_186 2_62_180 2_72_155 2_90_124 set community 0:11160 route-map calculator permit 32708 match community 2_93_120 set community 0:11160 ip community-list standard 2_49_246 permit 65000:2 0:49 0:246 ip community-list standard 2_82_147 permit 65000:2 0:82 0:147 ip community-list standard 2_98_123 permit 65000:2 0:98 0:123 route-map calculator permit 32709 match community 2_49_246 2_82_147 2_98_123 set community 0:12054 ip community-list standard 2_158_247 permit 65000:2 0:158 0:247 route-map calculator permit 32710 match community 2_158_247 set community 0:39026 ip community-list standard 2_131_149 permit 65000:2 0:131 0:149 route-map calculator permit 32711 match community 2_131_149 set community 0:19519 ip community-list standard 1_1_96 permit 65000:1 0:1 0:96 ip community-list standard 2_1_97 permit 65000:2 0:1 0:97 ip community-list standard 1_2_95 permit 65000:1 0:2 0:95 ip community-list standard 1_3_94 permit 65000:1 0:3 0:94 ip community-list standard 1_4_93 permit 65000:1 0:4 0:93 ip community-list standard 1_5_92 permit 65000:1 0:5 0:92 ip community-list standard 1_6_91 permit 65000:1 0:6 0:91 ip community-list standard 1_7_90 permit 65000:1 0:7 0:90 ip community-list standard 1_8_89 permit 65000:1 0:8 0:89 ip community-list standard 1_9_88 permit 65000:1 0:9 0:88 ip community-list standard 1_10_87 permit 65000:1 0:10 0:87 ip community-list standard 1_11_86 permit 65000:1 0:11 0:86 ip community-list standard 1_12_85 permit 65000:1 0:12 0:85 ip community-list standard 1_13_84 permit 65000:1 0:13 0:84 ip community-list standard 1_14_83 permit 65000:1 0:14 0:83 ip community-list standard 1_15_82 permit 65000:1 0:15 0:82 ip community-list standard 1_16_81 permit 65000:1 0:16 0:81 ip community-list standard 1_17_80 permit 65000:1 0:17 0:80 ip community-list standard 1_18_79 permit 65000:1 0:18 0:79 ip community-list standard 1_19_78 permit 65000:1 0:19 0:78 ip community-list standard 1_20_77 permit 65000:1 0:20 0:77 ip community-list standard 1_21_76 permit 65000:1 0:21 0:76 ip community-list standard 1_22_75 permit 65000:1 0:22 0:75 ip community-list standard 1_23_74 permit 65000:1 0:23 0:74 ip community-list standard 1_24_73 permit 65000:1 0:24 0:73 ip community-list standard 1_25_72 permit 65000:1 0:25 0:72 ip community-list standard 1_26_71 permit 65000:1 0:26 0:71 ip community-list standard 1_27_70 permit 65000:1 0:27 0:70 ip community-list standard 1_28_69 permit 65000:1 0:28 0:69 ip community-list standard 1_29_68 permit 65000:1 0:29 0:68 ip community-list standard 1_30_67 permit 65000:1 0:30 0:67 ip community-list standard 1_31_66 permit 65000:1 0:31 0:66 ip community-list standard 1_32_65 permit 65000:1 0:32 0:65 ip community-list standard 1_33_64 permit 65000:1 0:33 0:64 ip community-list standard 1_34_63 permit 65000:1 0:34 0:63 ip community-list standard 1_35_62 permit 65000:1 0:35 0:62 ip community-list standard 1_36_61 permit 65000:1 0:36 0:61 ip community-list standard 1_37_60 permit 65000:1 0:37 0:60 ip community-list standard 1_38_59 permit 65000:1 0:38 0:59 ip community-list standard 1_39_58 permit 65000:1 0:39 0:58 ip community-list standard 1_40_57 permit 65000:1 0:40 0:57 ip community-list standard 1_41_56 permit 65000:1 0:41 0:56 ip community-list standard 1_42_55 permit 65000:1 0:42 0:55 ip community-list standard 1_43_54 permit 65000:1 0:43 0:54 ip community-list standard 1_44_53 permit 65000:1 0:44 0:53 ip community-list standard 1_45_52 permit 65000:1 0:45 0:52 ip community-list standard 1_46_51 permit 65000:1 0:46 0:51 ip community-list standard 1_47_50 permit 65000:1 0:47 0:50 ip community-list standard 1_48_49 permit 65000:1 0:48 0:49 ip community-list expanded c97 permit 1 ^65000:4_0:97_0:1$ ip community-list expanded c97 permit 2 ^65000:3_0:98_0:1$ ip community-list expanded c97 permit 3 ^65000:3_0:99_0:2$ ip community-list expanded c97 permit 4 ^65000:3_0:100_0:3$ ip community-list expanded c97 permit 5 ^65000:3_0:101_0:4$ ip community-list expanded c97 permit 6 ^65000:3_0:102_0:5$ ip community-list expanded c97 permit 7 ^65000:3_0:103_0:6$ ip community-list expanded c97 permit 8 ^65000:3_0:104_0:7$ ip community-list expanded c97 permit 9 ^65000:3_0:105_0:8$ ip community-list expanded c97 permit 10 ^65000:3_0:106_0:9$ ip community-list expanded c97 permit 11 ^65000:3_0:107_0:10$ ip community-list expanded c97 permit 12 ^65000:3_0:108_0:11$ ip community-list expanded c97 permit 13 ^65000:3_0:109_0:12$ ip community-list expanded c97 permit 14 ^65000:3_0:110_0:13$ ip community-list expanded c97 permit 15 ^65000:3_0:111_0:14$ ip community-list expanded c97 permit 16 ^65000:3_0:112_0:15$ ip community-list expanded c97 permit 17 ^65000:3_0:113_0:16$ ip community-list expanded c97 permit 18 ^65000:3_0:114_0:17$ ip community-list expanded c97 permit 19 ^65000:3_0:115_0:18$ ip community-list expanded c97 permit 20 ^65000:3_0:116_0:19$ ip community-list expanded c97 permit 21 ^65000:3_0:117_0:20$ ip community-list expanded c97 permit 22 ^65000:3_0:118_0:21$ ip community-list expanded c97 permit 23 ^65000:3_0:119_0:22$ ip community-list expanded c97 permit 24 ^65000:3_0:120_0:23$ ip community-list expanded c97 permit 25 ^65000:3_0:121_0:24$ ip community-list expanded c97 permit 26 ^65000:3_0:122_0:25$ ip community-list expanded c97 permit 27 ^65000:3_0:123_0:26$ ip community-list expanded c97 permit 28 ^65000:3_0:124_0:27$ ip community-list expanded c97 permit 29 ^65000:3_0:125_0:28$ ip community-list expanded c97 permit 30 ^65000:3_0:126_0:29$ ip community-list expanded c97 permit 31 ^65000:3_0:127_0:30$ ip community-list expanded c97 permit 32 ^65000:3_0:128_0:31$ ip community-list expanded c97 permit 33 ^65000:3_0:129_0:32$ ip community-list expanded c97 permit 34 ^65000:3_0:130_0:33$ ip community-list expanded c97 permit 35 ^65000:3_0:131_0:34$ ip community-list expanded c97 permit 36 ^65000:3_0:132_0:35$ ip community-list expanded c97 permit 37 ^65000:3_0:133_0:36$ ip community-list expanded c97 permit 38 ^65000:3_0:134_0:37$ ip community-list expanded c97 permit 39 ^65000:3_0:135_0:38$ ip community-list expanded c97 permit 40 ^65000:3_0:136_0:39$ ip community-list expanded c97 permit 41 ^65000:3_0:137_0:40$ ip community-list expanded c97 permit 42 ^65000:3_0:138_0:41$ ip community-list expanded c97 permit 43 ^65000:3_0:139_0:42$ ip community-list expanded c97 permit 44 ^65000:3_0:140_0:43$ ip community-list expanded c97 permit 45 ^65000:3_0:141_0:44$ ip community-list expanded c97 permit 46 ^65000:3_0:142_0:45$ ip community-list expanded c97 permit 47 ^65000:3_0:143_0:46$ ip community-list expanded c97 permit 48 ^65000:3_0:144_0:47$ ip community-list expanded c97 permit 49 ^65000:3_0:145_0:48$ ip community-list expanded c97 permit 50 ^65000:3_0:146_0:49$ ip community-list expanded c97 permit 51 ^65000:3_0:147_0:50$ ip community-list expanded c97 permit 52 ^65000:3_0:148_0:51$ ip community-list expanded c97 permit 53 ^65000:3_0:149_0:52$ ip community-list expanded c97 permit 54 ^65000:3_0:150_0:53$ ip community-list expanded c97 permit 55 ^65000:3_0:151_0:54$ ip community-list expanded c97 permit 56 ^65000:3_0:152_0:55$ ip community-list expanded c97 permit 57 ^65000:3_0:153_0:56$ ip community-list expanded c97 permit 58 ^65000:3_0:154_0:57$ ip community-list expanded c97 permit 59 ^65000:3_0:155_0:58$ ip community-list expanded c97 permit 60 ^65000:3_0:156_0:59$ ip community-list expanded c97 permit 61 ^65000:3_0:157_0:60$ ip community-list expanded c97 permit 62 ^65000:3_0:158_0:61$ ip community-list expanded c97 permit 63 ^65000:3_0:159_0:62$ ip community-list expanded c97 permit 64 ^65000:3_0:160_0:63$ ip community-list expanded c97 permit 65 ^65000:3_0:161_0:64$ ip community-list expanded c97 permit 66 ^65000:3_0:162_0:65$ ip community-list expanded c97 permit 67 ^65000:3_0:163_0:66$ ip community-list expanded c97 permit 68 ^65000:3_0:164_0:67$ ip community-list expanded c97 permit 69 ^65000:3_0:165_0:68$ ip community-list expanded c97 permit 70 ^65000:3_0:166_0:69$ ip community-list expanded c97 permit 71 ^65000:3_0:167_0:70$ ip community-list expanded c97 permit 72 ^65000:3_0:168_0:71$ ip community-list expanded c97 permit 73 ^65000:3_0:169_0:72$ ip community-list expanded c97 permit 74 ^65000:3_0:170_0:73$ ip community-list expanded c97 permit 75 ^65000:3_0:171_0:74$ ip community-list expanded c97 permit 76 ^65000:3_0:172_0:75$ ip community-list expanded c97 permit 77 ^65000:3_0:173_0:76$ ip community-list expanded c97 permit 78 ^65000:3_0:174_0:77$ ip community-list expanded c97 permit 79 ^65000:3_0:175_0:78$ ip community-list expanded c97 permit 80 ^65000:3_0:176_0:79$ ip community-list expanded c97 permit 81 ^65000:3_0:177_0:80$ ip community-list expanded c97 permit 82 ^65000:3_0:178_0:81$ ip community-list expanded c97 permit 83 ^65000:3_0:179_0:82$ ip community-list expanded c97 permit 84 ^65000:3_0:180_0:83$ ip community-list expanded c97 permit 85 ^65000:3_0:181_0:84$ ip community-list expanded c97 permit 86 ^65000:3_0:182_0:85$ ip community-list expanded c97 permit 87 ^65000:3_0:183_0:86$ ip community-list expanded c97 permit 88 ^65000:3_0:184_0:87$ ip community-list expanded c97 permit 89 ^65000:3_0:185_0:88$ ip community-list expanded c97 permit 90 ^65000:3_0:186_0:89$ ip community-list expanded c97 permit 91 ^65000:3_0:187_0:90$ ip community-list expanded c97 permit 92 ^65000:3_0:188_0:91$ ip community-list expanded c97 permit 93 ^65000:3_0:189_0:92$ ip community-list expanded c97 permit 94 ^65000:3_0:190_0:93$ ip community-list expanded c97 permit 95 ^65000:3_0:191_0:94$ ip community-list expanded c97 permit 96 ^65000:3_0:192_0:95$ ip community-list expanded c97 permit 97 ^65000:3_0:193_0:96$ ip community-list expanded c97 permit 98 ^65000:4_0:194_0:2$ ip community-list expanded c97 permit 99 ^65000:3_0:194_0:97$ ip community-list expanded c97 permit 100 ^65000:4_0:195_0:2$ ip community-list expanded c97 permit 101 ^65000:3_0:195_0:98$ ip community-list expanded c97 permit 102 ^65000:3_0:196_0:99$ ip community-list expanded c97 permit 103 ^65000:3_0:197_0:100$ ip community-list expanded c97 permit 104 ^65000:3_0:198_0:101$ ip community-list expanded c97 permit 105 ^65000:3_0:199_0:102$ ip community-list expanded c97 permit 106 ^65000:3_0:200_0:103$ ip community-list expanded c97 permit 107 ^65000:3_0:201_0:104$ ip community-list expanded c97 permit 108 ^65000:3_0:202_0:105$ ip community-list expanded c97 permit 109 ^65000:3_0:203_0:106$ ip community-list expanded c97 permit 110 ^65000:3_0:204_0:107$ ip community-list expanded c97 permit 111 ^65000:3_0:205_0:108$ ip community-list expanded c97 permit 112 ^65000:3_0:206_0:109$ ip community-list expanded c97 permit 113 ^65000:3_0:207_0:110$ ip community-list expanded c97 permit 114 ^65000:3_0:208_0:111$ ip community-list expanded c97 permit 115 ^65000:3_0:209_0:112$ ip community-list expanded c97 permit 116 ^65000:3_0:210_0:113$ ip community-list expanded c97 permit 117 ^65000:3_0:211_0:114$ ip community-list expanded c97 permit 118 ^65000:3_0:212_0:115$ ip community-list expanded c97 permit 119 ^65000:3_0:213_0:116$ ip community-list expanded c97 permit 120 ^65000:3_0:214_0:117$ ip community-list expanded c97 permit 121 ^65000:3_0:215_0:118$ ip community-list expanded c97 permit 122 ^65000:3_0:216_0:119$ ip community-list expanded c97 permit 123 ^65000:3_0:217_0:120$ ip community-list expanded c97 permit 124 ^65000:3_0:218_0:121$ ip community-list expanded c97 permit 125 ^65000:3_0:219_0:122$ ip community-list expanded c97 permit 126 ^65000:3_0:220_0:123$ ip community-list expanded c97 permit 127 ^65000:3_0:221_0:124$ ip community-list expanded c97 permit 128 ^65000:3_0:222_0:125$ ip community-list expanded c97 permit 129 ^65000:3_0:223_0:126$ ip community-list expanded c97 permit 130 ^65000:3_0:224_0:127$ ip community-list expanded c97 permit 131 ^65000:3_0:225_0:128$ ip community-list expanded c97 permit 132 ^65000:3_0:226_0:129$ ip community-list expanded c97 permit 133 ^65000:3_0:227_0:130$ ip community-list expanded c97 permit 134 ^65000:3_0:228_0:131$ ip community-list expanded c97 permit 135 ^65000:3_0:229_0:132$ ip community-list expanded c97 permit 136 ^65000:3_0:230_0:133$ ip community-list expanded c97 permit 137 ^65000:3_0:231_0:134$ ip community-list expanded c97 permit 138 ^65000:3_0:232_0:135$ ip community-list expanded c97 permit 139 ^65000:3_0:233_0:136$ ip community-list expanded c97 permit 140 ^65000:3_0:234_0:137$ ip community-list expanded c97 permit 141 ^65000:3_0:235_0:138$ ip community-list expanded c97 permit 142 ^65000:3_0:236_0:139$ ip community-list expanded c97 permit 143 ^65000:3_0:237_0:140$ ip community-list expanded c97 permit 144 ^65000:3_0:238_0:141$ ip community-list expanded c97 permit 145 ^65000:3_0:239_0:142$ ip community-list expanded c97 permit 146 ^65000:3_0:240_0:143$ ip community-list expanded c97 permit 147 ^65000:3_0:241_0:144$ ip community-list expanded c97 permit 148 ^65000:3_0:242_0:145$ ip community-list expanded c97 permit 149 ^65000:3_0:243_0:146$ ip community-list expanded c97 permit 150 ^65000:3_0:244_0:147$ ip community-list expanded c97 permit 151 ^65000:3_0:245_0:148$ ip community-list expanded c97 permit 152 ^65000:3_0:246_0:149$ ip community-list expanded c97 permit 153 ^65000:3_0:247_0:150$ ip community-list expanded c97 permit 154 ^65000:3_0:248_0:151$ ip community-list expanded c97 permit 155 ^65000:3_0:249_0:152$ ip community-list expanded c97 permit 156 ^65000:3_0:250_0:153$ ip community-list expanded c97 permit 157 ^65000:3_0:251_0:154$ ip community-list expanded c97 permit 158 ^65000:3_0:252_0:155$ ip community-list expanded c97 permit 159 ^65000:3_0:253_0:156$ ip community-list expanded c97 permit 160 ^65000:3_0:254_0:157$ ip community-list expanded c97 permit 161 ^65000:3_0:255_0:158$ ip community-list expanded c97 permit 162 ^65000:3_0:256_0:159$ route-map calculator permit 32712 match community 1_1_96 2_1_97 1_2_95 1_3_94 1_4_93 set community 0:97 route-map calculator permit 32713 match community 1_5_92 1_6_91 1_7_90 1_8_89 1_9_88 set community 0:97 route-map calculator permit 32714 match community 1_10_87 1_11_86 1_12_85 1_13_84 1_14_83 set community 0:97 route-map calculator permit 32715 match community 1_15_82 1_16_81 1_17_80 1_18_79 1_19_78 set community 0:97 route-map calculator permit 32716 match community 1_20_77 1_21_76 1_22_75 1_23_74 1_24_73 set community 0:97 route-map calculator permit 32717 match community 1_25_72 1_26_71 1_27_70 1_28_69 1_29_68 set community 0:97 route-map calculator permit 32718 match community 1_30_67 1_31_66 1_32_65 1_33_64 1_34_63 set community 0:97 route-map calculator permit 32719 match community 1_35_62 1_36_61 1_37_60 1_38_59 1_39_58 set community 0:97 route-map calculator permit 32720 match community 1_40_57 1_41_56 1_42_55 1_43_54 1_44_53 set community 0:97 route-map calculator permit 32721 match community 1_45_52 1_46_51 1_47_50 1_48_49 c4_97_1 set community 0:97 route-map calculator permit 32722 match community c3_98_1 c3_99_2 c3_100_3 c3_101_4 c3_102_5 set community 0:97 route-map calculator permit 32723 match community c3_103_6 c3_104_7 c3_105_8 c3_106_9 c3_107_10 set community 0:97 route-map calculator permit 32724 match community c3_108_11 c3_109_12 c3_110_13 c3_111_14 c3_112_15 set community 0:97 route-map calculator permit 32725 match community c3_113_16 c3_114_17 c3_115_18 c3_116_19 c3_117_20 set community 0:97 route-map calculator permit 32726 match community c3_118_21 c3_119_22 c3_120_23 c3_121_24 c3_122_25 set community 0:97 route-map calculator permit 32727 match community c3_123_26 c3_124_27 c3_125_28 c3_126_29 c3_127_30 set community 0:97 route-map calculator permit 32728 match community c3_128_31 c3_129_32 c3_130_33 c3_131_34 c3_132_35 set community 0:97 route-map calculator permit 32729 match community c3_133_36 c3_134_37 c3_135_38 c3_136_39 c3_137_40 set community 0:97 route-map calculator permit 32730 match community c3_138_41 c3_139_42 c3_140_43 c3_141_44 c3_142_45 set community 0:97 route-map calculator permit 32731 match community c3_143_46 c3_144_47 c3_145_48 c3_146_49 c3_147_50 set community 0:97 route-map calculator permit 32732 match community c3_148_51 c3_149_52 c3_150_53 c3_151_54 c3_152_55 set community 0:97 route-map calculator permit 32733 match community c3_153_56 c3_154_57 c3_155_58 c3_156_59 c3_157_60 set community 0:97 route-map calculator permit 32734 match community c3_158_61 c3_159_62 c3_160_63 c3_161_64 c3_162_65 set community 0:97 route-map calculator permit 32735 match community c3_163_66 c3_164_67 c3_165_68 c3_166_69 c3_167_70 set community 0:97 route-map calculator permit 32736 match community c3_168_71 c3_169_72 c3_170_73 c3_171_74 c3_172_75 set community 0:97 route-map calculator permit 32737 match community c3_173_76 c3_174_77 c3_175_78 c3_176_79 c3_177_80 set community 0:97 route-map calculator permit 32738 match community c3_178_81 c3_179_82 c3_180_83 c3_181_84 c3_182_85 set community 0:97 route-map calculator permit 32739 match community c3_183_86 c3_184_87 c3_185_88 c3_186_89 c3_187_90 set community 0:97 route-map calculator permit 32740 match community c3_188_91 c3_189_92 c3_190_93 c3_191_94 c3_192_95 set community 0:97 route-map calculator permit 32741 match community c3_193_96 c4_194_2 c3_194_97 c4_195_2 c3_195_98 set community 0:97 route-map calculator permit 32742 match community c3_196_99 c3_197_100 c3_198_101 c3_199_102 c3_200_103 set community 0:97 route-map calculator permit 32743 match community c3_201_104 c3_202_105 c3_203_106 c3_204_107 c3_205_108 set community 0:97 route-map calculator permit 32744 match community c3_206_109 c3_207_110 c3_208_111 c3_209_112 c3_210_113 set community 0:97 route-map calculator permit 32745 match community c3_211_114 c3_212_115 c3_213_116 c3_214_117 c3_215_118 set community 0:97 route-map calculator permit 32746 match community c3_216_119 c3_217_120 c3_218_121 c3_219_122 c3_220_123 set community 0:97 route-map calculator permit 32747 match community c3_221_124 c3_222_125 c3_223_126 c3_224_127 c3_225_128 set community 0:97 route-map calculator permit 32748 match community c3_226_129 c3_227_130 c3_228_131 c3_229_132 c3_230_133 set community 0:97 route-map calculator permit 32749 match community c3_231_134 c3_232_135 c3_233_136 c3_234_137 c3_235_138 set community 0:97 route-map calculator permit 32750 match community c3_236_139 c3_237_140 c3_238_141 c3_239_142 c3_240_143 set community 0:97 route-map calculator permit 32751 match community c3_241_144 c3_242_145 c3_243_146 c3_244_147 c3_245_148 set community 0:97 route-map calculator permit 32752 match community c3_246_149 c3_247_150 c3_248_151 c3_249_152 c3_250_153 set community 0:97 route-map calculator permit 32753 match community c3_251_154 c3_252_155 c3_253_156 c3_254_157 c3_255_158 set community 0:97 route-map calculator permit 32754 match community c3_256_159 set community 0:97 ip community-list standard 2_31_183 permit 65000:2 0:31 0:183 ip community-list standard 2_61_93 permit 65000:2 0:61 0:93 route-map calculator permit 32755 match community 2_31_183 2_61_93 set community 0:5673 ip community-list standard 2_69_185 permit 65000:2 0:69 0:185 ip community-list standard 2_111_115 permit 65000:2 0:111 0:115 route-map calculator permit 32756 match community 2_69_185 2_111_115 set community 0:12765 ip community-list standard 2_94_216 permit 65000:2 0:94 0:216 ip community-list standard 2_108_188 permit 65000:2 0:108 0:188 ip community-list standard 2_141_144 permit 65000:2 0:141 0:144 route-map calculator permit 32757 match community 2_94_216 2_108_188 2_141_144 set community 0:20304 ip community-list standard 2_206_221 permit 65000:2 0:206 0:221 route-map calculator permit 32758 match community 2_206_221 set community 0:45526 ip community-list standard 2_197_204 permit 65000:2 0:197 0:204 route-map calculator permit 32759 match community 2_197_204 set community 0:40188 ip community-list standard 2_121_221 permit 65000:2 0:121 0:221 ip community-list standard 2_143_187 permit 65000:2 0:143 0:187 route-map calculator permit 32760 match community 2_121_221 2_143_187 set community 0:26741 ip community-list standard 2_31_219 permit 65000:2 0:31 0:219 ip community-list standard 2_73_93 permit 65000:2 0:73 0:93 route-map calculator permit 32761 match community 2_31_219 2_73_93 set community 0:6789 ip community-list standard 1_1_84 permit 65000:1 0:1 0:84 ip community-list standard 2_1_85 permit 65000:2 0:1 0:85 ip community-list standard 1_2_83 permit 65000:1 0:2 0:83 ip community-list standard 1_3_82 permit 65000:1 0:3 0:82 ip community-list standard 1_4_81 permit 65000:1 0:4 0:81 ip community-list standard 2_5_17 permit 65000:2 0:5 0:17 ip community-list standard 1_5_80 permit 65000:1 0:5 0:80 ip community-list standard 1_6_79 permit 65000:1 0:6 0:79 ip community-list standard 1_7_78 permit 65000:1 0:7 0:78 ip community-list standard 1_8_77 permit 65000:1 0:8 0:77 ip community-list standard 1_9_76 permit 65000:1 0:9 0:76 ip community-list standard 1_10_75 permit 65000:1 0:10 0:75 ip community-list standard 1_11_74 permit 65000:1 0:11 0:74 ip community-list standard 1_12_73 permit 65000:1 0:12 0:73 ip community-list standard 1_13_72 permit 65000:1 0:13 0:72 ip community-list standard 1_14_71 permit 65000:1 0:14 0:71 ip community-list standard 1_15_70 permit 65000:1 0:15 0:70 ip community-list standard 1_16_69 permit 65000:1 0:16 0:69 ip community-list standard 1_17_68 permit 65000:1 0:17 0:68 ip community-list standard 1_18_67 permit 65000:1 0:18 0:67 ip community-list standard 1_19_66 permit 65000:1 0:19 0:66 ip community-list standard 1_20_65 permit 65000:1 0:20 0:65 ip community-list standard 1_21_64 permit 65000:1 0:21 0:64 ip community-list standard 1_22_63 permit 65000:1 0:22 0:63 ip community-list standard 1_23_62 permit 65000:1 0:23 0:62 ip community-list standard 1_24_61 permit 65000:1 0:24 0:61 ip community-list standard 1_25_60 permit 65000:1 0:25 0:60 ip community-list standard 1_26_59 permit 65000:1 0:26 0:59 ip community-list standard 1_27_58 permit 65000:1 0:27 0:58 ip community-list standard 1_28_57 permit 65000:1 0:28 0:57 ip community-list standard 1_29_56 permit 65000:1 0:29 0:56 ip community-list standard 1_30_55 permit 65000:1 0:30 0:55 ip community-list standard 1_31_54 permit 65000:1 0:31 0:54 ip community-list standard 1_32_53 permit 65000:1 0:32 0:53 ip community-list standard 1_33_52 permit 65000:1 0:33 0:52 ip community-list standard 1_34_51 permit 65000:1 0:34 0:51 ip community-list standard 1_35_50 permit 65000:1 0:35 0:50 ip community-list standard 1_36_49 permit 65000:1 0:36 0:49 ip community-list standard 1_37_48 permit 65000:1 0:37 0:48 ip community-list standard 1_38_47 permit 65000:1 0:38 0:47 ip community-list standard 1_39_46 permit 65000:1 0:39 0:46 ip community-list standard 1_40_45 permit 65000:1 0:40 0:45 ip community-list standard 1_41_44 permit 65000:1 0:41 0:44 ip community-list standard 1_42_43 permit 65000:1 0:42 0:43 ip community-list expanded c85 permit 1 ^65000:4_0:85_0:1$ ip community-list expanded c85 permit 2 ^65000:3_0:86_0:1$ ip community-list expanded c85 permit 3 ^65000:3_0:87_0:2$ ip community-list expanded c85 permit 4 ^65000:3_0:88_0:3$ ip community-list expanded c85 permit 5 ^65000:3_0:89_0:4$ ip community-list expanded c85 permit 6 ^65000:3_0:90_0:5$ ip community-list expanded c85 permit 7 ^65000:3_0:91_0:6$ ip community-list expanded c85 permit 8 ^65000:3_0:92_0:7$ ip community-list expanded c85 permit 9 ^65000:3_0:93_0:8$ ip community-list expanded c85 permit 10 ^65000:3_0:94_0:9$ ip community-list expanded c85 permit 11 ^65000:3_0:95_0:10$ ip community-list expanded c85 permit 12 ^65000:3_0:96_0:11$ ip community-list expanded c85 permit 13 ^65000:3_0:97_0:12$ ip community-list expanded c85 permit 14 ^65000:3_0:98_0:13$ ip community-list expanded c85 permit 15 ^65000:3_0:99_0:14$ ip community-list expanded c85 permit 16 ^65000:3_0:100_0:15$ ip community-list expanded c85 permit 17 ^65000:3_0:101_0:16$ ip community-list expanded c85 permit 18 ^65000:3_0:102_0:17$ ip community-list expanded c85 permit 19 ^65000:3_0:103_0:18$ ip community-list expanded c85 permit 20 ^65000:3_0:104_0:19$ ip community-list expanded c85 permit 21 ^65000:3_0:105_0:20$ ip community-list expanded c85 permit 22 ^65000:3_0:106_0:21$ ip community-list expanded c85 permit 23 ^65000:3_0:107_0:22$ ip community-list expanded c85 permit 24 ^65000:3_0:108_0:23$ ip community-list expanded c85 permit 25 ^65000:3_0:109_0:24$ ip community-list expanded c85 permit 26 ^65000:3_0:110_0:25$ ip community-list expanded c85 permit 27 ^65000:3_0:111_0:26$ ip community-list expanded c85 permit 28 ^65000:3_0:112_0:27$ ip community-list expanded c85 permit 29 ^65000:3_0:113_0:28$ ip community-list expanded c85 permit 30 ^65000:3_0:114_0:29$ ip community-list expanded c85 permit 31 ^65000:3_0:115_0:30$ ip community-list expanded c85 permit 32 ^65000:3_0:116_0:31$ ip community-list expanded c85 permit 33 ^65000:3_0:117_0:32$ ip community-list expanded c85 permit 34 ^65000:3_0:118_0:33$ ip community-list expanded c85 permit 35 ^65000:3_0:119_0:34$ ip community-list expanded c85 permit 36 ^65000:3_0:120_0:35$ ip community-list expanded c85 permit 37 ^65000:3_0:121_0:36$ ip community-list expanded c85 permit 38 ^65000:3_0:122_0:37$ ip community-list expanded c85 permit 39 ^65000:3_0:123_0:38$ ip community-list expanded c85 permit 40 ^65000:3_0:124_0:39$ ip community-list expanded c85 permit 41 ^65000:3_0:125_0:40$ ip community-list expanded c85 permit 42 ^65000:3_0:126_0:41$ ip community-list expanded c85 permit 43 ^65000:3_0:127_0:42$ ip community-list expanded c85 permit 44 ^65000:3_0:128_0:43$ ip community-list expanded c85 permit 45 ^65000:3_0:129_0:44$ ip community-list expanded c85 permit 46 ^65000:3_0:130_0:45$ ip community-list expanded c85 permit 47 ^65000:3_0:131_0:46$ ip community-list expanded c85 permit 48 ^65000:3_0:132_0:47$ ip community-list expanded c85 permit 49 ^65000:3_0:133_0:48$ ip community-list expanded c85 permit 50 ^65000:3_0:134_0:49$ ip community-list expanded c85 permit 51 ^65000:3_0:135_0:50$ ip community-list expanded c85 permit 52 ^65000:3_0:136_0:51$ ip community-list expanded c85 permit 53 ^65000:3_0:137_0:52$ ip community-list expanded c85 permit 54 ^65000:3_0:138_0:53$ ip community-list expanded c85 permit 55 ^65000:3_0:139_0:54$ ip community-list expanded c85 permit 56 ^65000:3_0:140_0:55$ ip community-list expanded c85 permit 57 ^65000:3_0:141_0:56$ ip community-list expanded c85 permit 58 ^65000:3_0:142_0:57$ ip community-list expanded c85 permit 59 ^65000:3_0:143_0:58$ ip community-list expanded c85 permit 60 ^65000:3_0:144_0:59$ ip community-list expanded c85 permit 61 ^65000:3_0:145_0:60$ ip community-list expanded c85 permit 62 ^65000:3_0:146_0:61$ ip community-list expanded c85 permit 63 ^65000:3_0:147_0:62$ ip community-list expanded c85 permit 64 ^65000:3_0:148_0:63$ ip community-list expanded c85 permit 65 ^65000:3_0:149_0:64$ ip community-list expanded c85 permit 66 ^65000:3_0:150_0:65$ ip community-list expanded c85 permit 67 ^65000:3_0:151_0:66$ ip community-list expanded c85 permit 68 ^65000:3_0:152_0:67$ ip community-list expanded c85 permit 69 ^65000:3_0:153_0:68$ ip community-list expanded c85 permit 70 ^65000:3_0:154_0:69$ ip community-list expanded c85 permit 71 ^65000:3_0:155_0:70$ ip community-list expanded c85 permit 72 ^65000:3_0:156_0:71$ ip community-list expanded c85 permit 73 ^65000:3_0:157_0:72$ ip community-list expanded c85 permit 74 ^65000:3_0:158_0:73$ ip community-list expanded c85 permit 75 ^65000:3_0:159_0:74$ ip community-list expanded c85 permit 76 ^65000:3_0:160_0:75$ ip community-list expanded c85 permit 77 ^65000:3_0:161_0:76$ ip community-list expanded c85 permit 78 ^65000:3_0:162_0:77$ ip community-list expanded c85 permit 79 ^65000:3_0:163_0:78$ ip community-list expanded c85 permit 80 ^65000:3_0:164_0:79$ ip community-list expanded c85 permit 81 ^65000:3_0:165_0:80$ ip community-list expanded c85 permit 82 ^65000:3_0:166_0:81$ ip community-list expanded c85 permit 83 ^65000:3_0:167_0:82$ ip community-list expanded c85 permit 84 ^65000:3_0:168_0:83$ ip community-list expanded c85 permit 85 ^65000:3_0:169_0:84$ ip community-list expanded c85 permit 86 ^65000:4_0:170_0:2$ ip community-list expanded c85 permit 87 ^65000:3_0:170_0:85$ ip community-list expanded c85 permit 88 ^65000:4_0:171_0:2$ ip community-list expanded c85 permit 89 ^65000:3_0:171_0:86$ ip community-list expanded c85 permit 90 ^65000:3_0:172_0:87$ ip community-list expanded c85 permit 91 ^65000:3_0:173_0:88$ ip community-list expanded c85 permit 92 ^65000:3_0:174_0:89$ ip community-list expanded c85 permit 93 ^65000:3_0:175_0:90$ ip community-list expanded c85 permit 94 ^65000:3_0:176_0:91$ ip community-list expanded c85 permit 95 ^65000:3_0:177_0:92$ ip community-list expanded c85 permit 96 ^65000:3_0:178_0:93$ ip community-list expanded c85 permit 97 ^65000:3_0:179_0:94$ ip community-list expanded c85 permit 98 ^65000:3_0:180_0:95$ ip community-list expanded c85 permit 99 ^65000:3_0:181_0:96$ ip community-list expanded c85 permit 100 ^65000:3_0:182_0:97$ ip community-list expanded c85 permit 101 ^65000:3_0:183_0:98$ ip community-list expanded c85 permit 102 ^65000:3_0:184_0:99$ ip community-list expanded c85 permit 103 ^65000:3_0:185_0:100$ ip community-list expanded c85 permit 104 ^65000:3_0:186_0:101$ ip community-list expanded c85 permit 105 ^65000:3_0:187_0:102$ ip community-list expanded c85 permit 106 ^65000:3_0:188_0:103$ ip community-list expanded c85 permit 107 ^65000:3_0:189_0:104$ ip community-list expanded c85 permit 108 ^65000:3_0:190_0:105$ ip community-list expanded c85 permit 109 ^65000:3_0:191_0:106$ ip community-list expanded c85 permit 110 ^65000:3_0:192_0:107$ ip community-list expanded c85 permit 111 ^65000:3_0:193_0:108$ ip community-list expanded c85 permit 112 ^65000:3_0:194_0:109$ ip community-list expanded c85 permit 113 ^65000:3_0:195_0:110$ ip community-list expanded c85 permit 114 ^65000:3_0:196_0:111$ ip community-list expanded c85 permit 115 ^65000:3_0:197_0:112$ ip community-list expanded c85 permit 116 ^65000:3_0:198_0:113$ ip community-list expanded c85 permit 117 ^65000:3_0:199_0:114$ ip community-list expanded c85 permit 118 ^65000:3_0:200_0:115$ ip community-list expanded c85 permit 119 ^65000:3_0:201_0:116$ ip community-list expanded c85 permit 120 ^65000:3_0:202_0:117$ ip community-list expanded c85 permit 121 ^65000:3_0:203_0:118$ ip community-list expanded c85 permit 122 ^65000:3_0:204_0:119$ ip community-list expanded c85 permit 123 ^65000:3_0:205_0:120$ ip community-list expanded c85 permit 124 ^65000:3_0:206_0:121$ ip community-list expanded c85 permit 125 ^65000:3_0:207_0:122$ ip community-list expanded c85 permit 126 ^65000:3_0:208_0:123$ ip community-list expanded c85 permit 127 ^65000:3_0:209_0:124$ ip community-list expanded c85 permit 128 ^65000:3_0:210_0:125$ ip community-list expanded c85 permit 129 ^65000:3_0:211_0:126$ ip community-list expanded c85 permit 130 ^65000:3_0:212_0:127$ ip community-list expanded c85 permit 131 ^65000:3_0:213_0:128$ ip community-list expanded c85 permit 132 ^65000:3_0:214_0:129$ ip community-list expanded c85 permit 133 ^65000:3_0:215_0:130$ ip community-list expanded c85 permit 134 ^65000:3_0:216_0:131$ ip community-list expanded c85 permit 135 ^65000:3_0:217_0:132$ ip community-list expanded c85 permit 136 ^65000:3_0:218_0:133$ ip community-list expanded c85 permit 137 ^65000:3_0:219_0:134$ ip community-list expanded c85 permit 138 ^65000:3_0:220_0:135$ ip community-list expanded c85 permit 139 ^65000:3_0:221_0:136$ ip community-list expanded c85 permit 140 ^65000:3_0:222_0:137$ ip community-list expanded c85 permit 141 ^65000:3_0:223_0:138$ ip community-list expanded c85 permit 142 ^65000:3_0:224_0:139$ ip community-list expanded c85 permit 143 ^65000:3_0:225_0:140$ ip community-list expanded c85 permit 144 ^65000:3_0:226_0:141$ ip community-list expanded c85 permit 145 ^65000:3_0:227_0:142$ ip community-list expanded c85 permit 146 ^65000:3_0:228_0:143$ ip community-list expanded c85 permit 147 ^65000:3_0:229_0:144$ ip community-list expanded c85 permit 148 ^65000:3_0:230_0:145$ ip community-list expanded c85 permit 149 ^65000:3_0:231_0:146$ ip community-list expanded c85 permit 150 ^65000:3_0:232_0:147$ ip community-list expanded c85 permit 151 ^65000:3_0:233_0:148$ ip community-list expanded c85 permit 152 ^65000:3_0:234_0:149$ ip community-list expanded c85 permit 153 ^65000:3_0:235_0:150$ ip community-list expanded c85 permit 154 ^65000:3_0:236_0:151$ ip community-list expanded c85 permit 155 ^65000:3_0:237_0:152$ ip community-list expanded c85 permit 156 ^65000:3_0:238_0:153$ ip community-list expanded c85 permit 157 ^65000:3_0:239_0:154$ ip community-list expanded c85 permit 158 ^65000:3_0:240_0:155$ ip community-list expanded c85 permit 159 ^65000:3_0:241_0:156$ ip community-list expanded c85 permit 160 ^65000:3_0:242_0:157$ ip community-list expanded c85 permit 161 ^65000:3_0:243_0:158$ ip community-list expanded c85 permit 162 ^65000:3_0:244_0:159$ ip community-list expanded c85 permit 163 ^65000:3_0:245_0:160$ ip community-list expanded c85 permit 164 ^65000:3_0:246_0:161$ ip community-list expanded c85 permit 165 ^65000:3_0:247_0:162$ ip community-list expanded c85 permit 166 ^65000:3_0:248_0:163$ ip community-list expanded c85 permit 167 ^65000:3_0:249_0:164$ ip community-list expanded c85 permit 168 ^65000:3_0:250_0:165$ ip community-list expanded c85 permit 169 ^65000:3_0:251_0:166$ ip community-list expanded c85 permit 170 ^65000:3_0:252_0:167$ ip community-list expanded c85 permit 171 ^65000:3_0:253_0:168$ ip community-list expanded c85 permit 172 ^65000:3_0:254_0:169$ ip community-list expanded c85 permit 173 ^65000:4_0:255_0:3$ ip community-list expanded c85 permit 174 ^65000:3_0:255_0:170$ ip community-list expanded c85 permit 175 ^65000:4_0:256_0:3$ ip community-list expanded c85 permit 176 ^65000:3_0:256_0:171$ route-map calculator permit 32762 match community 1_1_84 2_1_85 1_2_83 1_3_82 1_4_81 set community 0:85 route-map calculator permit 32763 match community 2_5_17 1_5_80 1_6_79 1_7_78 1_8_77 set community 0:85 route-map calculator permit 32764 match community 1_9_76 1_10_75 1_11_74 1_12_73 1_13_72 set community 0:85 route-map calculator permit 32765 match community 1_14_71 1_15_70 1_16_69 1_17_68 1_18_67 set community 0:85 route-map calculator permit 32766 match community 1_19_66 1_20_65 1_21_64 1_22_63 1_23_62 set community 0:85 route-map calculator permit 32767 match community 1_24_61 1_25_60 1_26_59 1_27_58 1_28_57 set community 0:85 route-map calculator permit 32768 match community 1_29_56 1_30_55 1_31_54 1_32_53 1_33_52 set community 0:85 route-map calculator permit 32769 match community 1_34_51 1_35_50 1_36_49 1_37_48 1_38_47 set community 0:85 route-map calculator permit 32770 match community 1_39_46 1_40_45 1_41_44 1_42_43 c4_85_1 set community 0:85 route-map calculator permit 32771 match community c3_86_1 c3_87_2 c3_88_3 c3_89_4 c3_90_5 set community 0:85 route-map calculator permit 32772 match community c3_91_6 c3_92_7 c3_93_8 c3_94_9 c3_95_10 set community 0:85 route-map calculator permit 32773 match community c3_96_11 c3_97_12 c3_98_13 c3_99_14 c3_100_15 set community 0:85 route-map calculator permit 32774 match community c3_101_16 c3_102_17 c3_103_18 c3_104_19 c3_105_20 set community 0:85 route-map calculator permit 32775 match community c3_106_21 c3_107_22 c3_108_23 c3_109_24 c3_110_25 set community 0:85 route-map calculator permit 32776 match community c3_111_26 c3_112_27 c3_113_28 c3_114_29 c3_115_30 set community 0:85 route-map calculator permit 32777 match community c3_116_31 c3_117_32 c3_118_33 c3_119_34 c3_120_35 set community 0:85 route-map calculator permit 32778 match community c3_121_36 c3_122_37 c3_123_38 c3_124_39 c3_125_40 set community 0:85 route-map calculator permit 32779 match community c3_126_41 c3_127_42 c3_128_43 c3_129_44 c3_130_45 set community 0:85 route-map calculator permit 32780 match community c3_131_46 c3_132_47 c3_133_48 c3_134_49 c3_135_50 set community 0:85 route-map calculator permit 32781 match community c3_136_51 c3_137_52 c3_138_53 c3_139_54 c3_140_55 set community 0:85 route-map calculator permit 32782 match community c3_141_56 c3_142_57 c3_143_58 c3_144_59 c3_145_60 set community 0:85 route-map calculator permit 32783 match community c3_146_61 c3_147_62 c3_148_63 c3_149_64 c3_150_65 set community 0:85 route-map calculator permit 32784 match community c3_151_66 c3_152_67 c3_153_68 c3_154_69 c3_155_70 set community 0:85 route-map calculator permit 32785 match community c3_156_71 c3_157_72 c3_158_73 c3_159_74 c3_160_75 set community 0:85 route-map calculator permit 32786 match community c3_161_76 c3_162_77 c3_163_78 c3_164_79 c3_165_80 set community 0:85 route-map calculator permit 32787 match community c3_166_81 c3_167_82 c3_168_83 c3_169_84 c4_170_2 set community 0:85 route-map calculator permit 32788 match community c3_170_85 c4_171_2 c3_171_86 c3_172_87 c3_173_88 set community 0:85 route-map calculator permit 32789 match community c3_174_89 c3_175_90 c3_176_91 c3_177_92 c3_178_93 set community 0:85 route-map calculator permit 32790 match community c3_179_94 c3_180_95 c3_181_96 c3_182_97 c3_183_98 set community 0:85 route-map calculator permit 32791 match community c3_184_99 c3_185_100 c3_186_101 c3_187_102 c3_188_103 set community 0:85 route-map calculator permit 32792 match community c3_189_104 c3_190_105 c3_191_106 c3_192_107 c3_193_108 set community 0:85 route-map calculator permit 32793 match community c3_194_109 c3_195_110 c3_196_111 c3_197_112 c3_198_113 set community 0:85 route-map calculator permit 32794 match community c3_199_114 c3_200_115 c3_201_116 c3_202_117 c3_203_118 set community 0:85 route-map calculator permit 32795 match community c3_204_119 c3_205_120 c3_206_121 c3_207_122 c3_208_123 set community 0:85 route-map calculator permit 32796 match community c3_209_124 c3_210_125 c3_211_126 c3_212_127 c3_213_128 set community 0:85 route-map calculator permit 32797 match community c3_214_129 c3_215_130 c3_216_131 c3_217_132 c3_218_133 set community 0:85 route-map calculator permit 32798 match community c3_219_134 c3_220_135 c3_221_136 c3_222_137 c3_223_138 set community 0:85 route-map calculator permit 32799 match community c3_224_139 c3_225_140 c3_226_141 c3_227_142 c3_228_143 set community 0:85 route-map calculator permit 32800 match community c3_229_144 c3_230_145 c3_231_146 c3_232_147 c3_233_148 set community 0:85 route-map calculator permit 32801 match community c3_234_149 c3_235_150 c3_236_151 c3_237_152 c3_238_153 set community 0:85 route-map calculator permit 32802 match community c3_239_154 c3_240_155 c3_241_156 c3_242_157 c3_243_158 set community 0:85 route-map calculator permit 32803 match community c3_244_159 c3_245_160 c3_246_161 c3_247_162 c3_248_163 set community 0:85 route-map calculator permit 32804 match community c3_249_164 c3_250_165 c3_251_166 c3_252_167 c3_253_168 set community 0:85 route-map calculator permit 32805 match community c3_254_169 c4_255_3 c3_255_170 c4_256_3 c3_256_171 set community 0:85 ip community-list standard 2_129_217 permit 65000:2 0:129 0:217 route-map calculator permit 32806 match community 2_129_217 set community 0:27993 ip community-list standard 2_68_221 permit 65000:2 0:68 0:221 route-map calculator permit 32807 match community 2_68_221 set community 0:15028 ip community-list standard 2_75_127 permit 65000:2 0:75 0:127 route-map calculator permit 32808 match community 2_75_127 set community 0:9525 ip community-list standard 2_7_161 permit 65000:2 0:7 0:161 ip community-list standard 2_23_49 permit 65000:2 0:23 0:49 route-map calculator permit 32809 match community 2_7_161 2_23_49 set community 0:1127 ip community-list standard 2_18_191 permit 65000:2 0:18 0:191 route-map calculator permit 32810 match community 2_18_191 set community 0:3438 ip community-list standard 2_206_235 permit 65000:2 0:206 0:235 route-map calculator permit 32811 match community 2_206_235 set community 0:48410 ip community-list standard 2_163_176 permit 65000:2 0:163 0:176 route-map calculator permit 32812 match community 2_163_176 set community 0:28688 ip community-list standard 2_139_244 permit 65000:2 0:139 0:244 route-map calculator permit 32813 match community 2_139_244 set community 0:33916 ip community-list standard 2_89_250 permit 65000:2 0:89 0:250 ip community-list standard 2_125_178 permit 65000:2 0:125 0:178 route-map calculator permit 32814 match community 2_89_250 2_125_178 set community 0:22250 ip community-list standard 2_49_107 permit 65000:2 0:49 0:107 route-map calculator permit 32815 match community 2_49_107 set community 0:5243 ip community-list standard 2_15_115 permit 65000:2 0:15 0:115 ip community-list standard 2_23_75 permit 65000:2 0:23 0:75 ip community-list standard 2_25_69 permit 65000:2 0:25 0:69 route-map calculator permit 32816 match community 2_15_115 2_23_75 2_25_69 set community 0:1725 ip community-list standard 2_7_107 permit 65000:2 0:7 0:107 route-map calculator permit 32817 match community 2_7_107 set community 0:749 ip community-list standard 2_229_256 permit 65000:2 0:229 0:256 route-map calculator permit 32818 match community 2_229_256 set community 0:58624 ip community-list standard 2_149_193 permit 65000:2 0:149 0:193 route-map calculator permit 32819 match community 2_149_193 set community 0:28757 ip community-list standard 2_114_215 permit 65000:2 0:114 0:215 ip community-list standard 2_129_190 permit 65000:2 0:129 0:190 route-map calculator permit 32820 match community 2_114_215 2_129_190 set community 0:24510 ip community-list standard 2_219_242 permit 65000:2 0:219 0:242 route-map calculator permit 32821 match community 2_219_242 set community 0:52998 ip community-list standard 2_101_187 permit 65000:2 0:101 0:187 route-map calculator permit 32822 match community 2_101_187 set community 0:18887 ip community-list standard 2_169_186 permit 65000:2 0:169 0:186 route-map calculator permit 32823 match community 2_169_186 set community 0:31434 ip community-list standard 2_176_216 permit 65000:2 0:176 0:216 ip community-list standard 2_192_198 permit 65000:2 0:192 0:198 route-map calculator permit 32824 match community 2_176_216 2_192_198 set community 0:38016 ip community-list standard 2_187_221 permit 65000:2 0:187 0:221 route-map calculator permit 32825 match community 2_187_221 set community 0:41327 ip community-list standard 2_151_208 permit 65000:2 0:151 0:208 route-map calculator permit 32826 match community 2_151_208 set community 0:31408 ip community-list standard 2_29_243 permit 65000:2 0:29 0:243 ip community-list standard 2_81_87 permit 65000:2 0:81 0:87 route-map calculator permit 32827 match community 2_29_243 2_81_87 set community 0:7047 ip community-list standard 2_109_109 permit 65000:2 0:109 0:109 route-map calculator permit 32828 match community 2_109_109 set community 0:11881 ip community-list standard 2_75_125 permit 65000:2 0:75 0:125 route-map calculator permit 32829 match community 2_75_125 set community 0:9375 ip community-list standard 2_110_228 permit 65000:2 0:110 0:228 ip community-list standard 2_114_220 permit 65000:2 0:114 0:220 ip community-list standard 2_120_209 permit 65000:2 0:120 0:209 ip community-list standard 2_132_190 permit 65000:2 0:132 0:190 ip community-list standard 2_152_165 permit 65000:2 0:152 0:165 route-map calculator permit 32830 match community 2_110_228 2_114_220 2_120_209 2_132_190 2_152_165 set community 0:25080 ip community-list standard 2_72_215 permit 65000:2 0:72 0:215 ip community-list standard 2_86_180 permit 65000:2 0:86 0:180 ip community-list standard 2_90_172 permit 65000:2 0:90 0:172 ip community-list standard 2_120_129 permit 65000:2 0:120 0:129 route-map calculator permit 32831 match community 2_72_215 2_86_180 2_90_172 2_120_129 set community 0:15480 ip community-list standard 2_73_137 permit 65000:2 0:73 0:137 route-map calculator permit 32832 match community 2_73_137 set community 0:10001 ip community-list standard 2_169_222 permit 65000:2 0:169 0:222 route-map calculator permit 32833 match community 2_169_222 set community 0:37518 ip community-list standard 2_184_207 permit 65000:2 0:184 0:207 route-map calculator permit 32834 match community 2_184_207 set community 0:38088 ip community-list standard 2_10_239 permit 65000:2 0:10 0:239 route-map calculator permit 32835 match community 2_10_239 set community 0:2390 ip community-list standard 2_58_145 permit 65000:2 0:58 0:145 route-map calculator permit 32836 match community 2_58_145 set community 0:8410 ip community-list standard 2_148_173 permit 65000:2 0:148 0:173 route-map calculator permit 32837 match community 2_148_173 set community 0:25604 ip community-list standard 2_131_177 permit 65000:2 0:131 0:177 route-map calculator permit 32838 match community 2_131_177 set community 0:23187 ip community-list standard 2_109_179 permit 65000:2 0:109 0:179 route-map calculator permit 32839 match community 2_109_179 set community 0:19511 ip community-list standard 2_58_142 permit 65000:2 0:58 0:142 ip community-list standard 2_71_116 permit 65000:2 0:71 0:116 route-map calculator permit 32840 match community 2_58_142 2_71_116 set community 0:8236 ip community-list standard 2_53_149 permit 65000:2 0:53 0:149 route-map calculator permit 32841 match community 2_53_149 set community 0:7897 ip community-list standard 2_110_213 permit 65000:2 0:110 0:213 ip community-list standard 2_142_165 permit 65000:2 0:142 0:165 route-map calculator permit 32842 match community 2_110_213 2_142_165 set community 0:23430 ip community-list standard 2_125_199 permit 65000:2 0:125 0:199 route-map calculator permit 32843 match community 2_125_199 set community 0:24875 ip community-list standard 2_126_151 permit 65000:2 0:126 0:151 route-map calculator permit 32844 match community 2_126_151 set community 0:19026 ip community-list standard 2_65_211 permit 65000:2 0:65 0:211 route-map calculator permit 32845 match community 2_65_211 set community 0:13715 ip community-list standard 2_173_191 permit 65000:2 0:173 0:191 route-map calculator permit 32846 match community 2_173_191 set community 0:33043 ip community-list standard 2_163_209 permit 65000:2 0:163 0:209 route-map calculator permit 32847 match community 2_163_209 set community 0:34067 ip community-list standard 2_214_248 permit 65000:2 0:214 0:248 route-map calculator permit 32848 match community 2_214_248 set community 0:53072 ip community-list standard 2_179_214 permit 65000:2 0:179 0:214 route-map calculator permit 32849 match community 2_179_214 set community 0:38306 ip community-list standard 2_193_210 permit 65000:2 0:193 0:210 route-map calculator permit 32850 match community 2_193_210 set community 0:40530 ip community-list standard 2_38_247 permit 65000:2 0:38 0:247 route-map calculator permit 32851 match community 2_38_247 set community 0:9386 ip community-list standard 2_222_223 permit 65000:2 0:222 0:223 route-map calculator permit 32852 match community 2_222_223 set community 0:49506 ip community-list standard 2_169_232 permit 65000:2 0:169 0:232 route-map calculator permit 32853 match community 2_169_232 set community 0:39208 ip community-list standard 2_213_249 permit 65000:2 0:213 0:249 route-map calculator permit 32854 match community 2_213_249 set community 0:53037 ip community-list standard 2_44_219 permit 65000:2 0:44 0:219 ip community-list standard 2_66_146 permit 65000:2 0:66 0:146 ip community-list standard 2_73_132 permit 65000:2 0:73 0:132 route-map calculator permit 32855 match community 2_44_219 2_66_146 2_73_132 set community 0:9636 ip community-list standard 2_203_228 permit 65000:2 0:203 0:228 route-map calculator permit 32856 match community 2_203_228 set community 0:46284 ip community-list standard 2_22_256 permit 65000:2 0:22 0:256 ip community-list standard 2_32_176 permit 65000:2 0:32 0:176 ip community-list standard 2_44_128 permit 65000:2 0:44 0:128 ip community-list standard 2_64_88 permit 65000:2 0:64 0:88 route-map calculator permit 32857 match community 2_22_256 2_32_176 2_44_128 2_64_88 set community 0:5632 ip community-list standard 2_136_245 permit 65000:2 0:136 0:245 ip community-list standard 2_140_238 permit 65000:2 0:140 0:238 ip community-list standard 2_170_196 permit 65000:2 0:170 0:196 route-map calculator permit 32858 match community 2_136_245 2_140_238 2_170_196 set community 0:33320 ip community-list standard 2_44_223 permit 65000:2 0:44 0:223 route-map calculator permit 32859 match community 2_44_223 set community 0:9812 ip community-list standard 2_98_224 permit 65000:2 0:98 0:224 ip community-list standard 2_112_196 permit 65000:2 0:112 0:196 route-map calculator permit 32860 match community 2_98_224 2_112_196 set community 0:21952 ip community-list standard 2_97_157 permit 65000:2 0:97 0:157 route-map calculator permit 32861 match community 2_97_157 set community 0:15229 ip community-list standard 2_81_232 permit 65000:2 0:81 0:232 ip community-list standard 2_87_216 permit 65000:2 0:87 0:216 ip community-list standard 2_108_174 permit 65000:2 0:108 0:174 ip community-list standard 2_116_162 permit 65000:2 0:116 0:162 route-map calculator permit 32862 match community 2_81_232 2_87_216 2_108_174 2_116_162 set community 0:18792 ip community-list standard 2_127_159 permit 65000:2 0:127 0:159 route-map calculator permit 32863 match community 2_127_159 set community 0:20193 ip community-list standard 2_75_218 permit 65000:2 0:75 0:218 ip community-list standard 2_109_150 permit 65000:2 0:109 0:150 route-map calculator permit 32864 match community 2_75_218 2_109_150 set community 0:16350 ip community-list standard 2_117_173 permit 65000:2 0:117 0:173 route-map calculator permit 32865 match community 2_117_173 set community 0:20241 ip community-list standard 2_95_133 permit 65000:2 0:95 0:133 route-map calculator permit 32866 match community 2_95_133 set community 0:12635 ip community-list standard 2_194_203 permit 65000:2 0:194 0:203 route-map calculator permit 32867 match community 2_194_203 set community 0:39382 ip community-list standard 2_48_252 permit 65000:2 0:48 0:252 ip community-list standard 2_54_224 permit 65000:2 0:54 0:224 ip community-list standard 2_56_216 permit 65000:2 0:56 0:216 ip community-list standard 2_63_192 permit 65000:2 0:63 0:192 ip community-list standard 2_64_189 permit 65000:2 0:64 0:189 ip community-list standard 2_72_168 permit 65000:2 0:72 0:168 ip community-list standard 2_84_144 permit 65000:2 0:84 0:144 ip community-list standard 2_96_126 permit 65000:2 0:96 0:126 ip community-list standard 2_108_112 permit 65000:2 0:108 0:112 route-map calculator permit 32868 match community 2_48_252 2_54_224 2_56_216 2_63_192 2_64_189 set community 0:12096 route-map calculator permit 32869 match community 2_72_168 2_84_144 2_96_126 2_108_112 set community 0:12096 ip community-list standard 2_204_246 permit 65000:2 0:204 0:246 route-map calculator permit 32870 match community 2_204_246 set community 0:50184 ip community-list standard 2_133_245 permit 65000:2 0:133 0:245 route-map calculator permit 32871 match community 2_133_245 set community 0:32585 ip community-list standard 2_169_240 permit 65000:2 0:169 0:240 ip community-list standard 2_195_208 permit 65000:2 0:195 0:208 route-map calculator permit 32872 match community 2_169_240 2_195_208 set community 0:40560 ip community-list standard 2_63_219 permit 65000:2 0:63 0:219 ip community-list standard 2_73_189 permit 65000:2 0:73 0:189 route-map calculator permit 32873 match community 2_63_219 2_73_189 set community 0:13797 ip community-list standard 2_38_225 permit 65000:2 0:38 0:225 ip community-list standard 2_45_190 permit 65000:2 0:45 0:190 ip community-list standard 2_50_171 permit 65000:2 0:50 0:171 ip community-list standard 2_57_150 permit 65000:2 0:57 0:150 ip community-list standard 2_75_114 permit 65000:2 0:75 0:114 ip community-list standard 2_90_95 permit 65000:2 0:90 0:95 route-map calculator permit 32874 match community 2_38_225 2_45_190 2_50_171 2_57_150 2_75_114 set community 0:8550 route-map calculator permit 32875 match community 2_90_95 set community 0:8550 ip community-list standard 2_211_223 permit 65000:2 0:211 0:223 route-map calculator permit 32876 match community 2_211_223 set community 0:47053 ip community-list standard 2_149_217 permit 65000:2 0:149 0:217 route-map calculator permit 32877 match community 2_149_217 set community 0:32333 ip community-list standard 2_4_248 permit 65000:2 0:4 0:248 ip community-list standard 2_8_124 permit 65000:2 0:8 0:124 ip community-list standard 2_16_62 permit 65000:2 0:16 0:62 ip community-list standard 2_31_32 permit 65000:2 0:31 0:32 route-map calculator permit 32878 match community 2_4_248 2_8_124 2_16_62 2_31_32 set community 0:992 ip community-list standard 2_141_194 permit 65000:2 0:141 0:194 route-map calculator permit 32879 match community 2_141_194 set community 0:27354 ip community-list standard 2_207_229 permit 65000:2 0:207 0:229 route-map calculator permit 32880 match community 2_207_229 set community 0:47403 ip community-list standard 2_212_218 permit 65000:2 0:212 0:218 route-map calculator permit 32881 match community 2_212_218 set community 0:46216 ip community-list standard 2_54_206 permit 65000:2 0:54 0:206 ip community-list standard 2_103_108 permit 65000:2 0:103 0:108 route-map calculator permit 32882 match community 2_54_206 2_103_108 set community 0:11124 ip community-list standard 2_215_243 permit 65000:2 0:215 0:243 route-map calculator permit 32883 match community 2_215_243 set community 0:52245 ip community-list standard 2_157_218 permit 65000:2 0:157 0:218 route-map calculator permit 32884 match community 2_157_218 set community 0:34226 ip community-list standard 2_35_122 permit 65000:2 0:35 0:122 ip community-list standard 2_61_70 permit 65000:2 0:61 0:70 route-map calculator permit 32885 match community 2_35_122 2_61_70 set community 0:4270 ip community-list standard 2_162_163 permit 65000:2 0:162 0:163 route-map calculator permit 32886 match community 2_162_163 set community 0:26406 ip community-list standard 2_58_177 permit 65000:2 0:58 0:177 ip community-list standard 2_59_174 permit 65000:2 0:59 0:174 ip community-list standard 2_87_118 permit 65000:2 0:87 0:118 route-map calculator permit 32887 match community 2_58_177 2_59_174 2_87_118 set community 0:10266 ip community-list standard 2_136_233 permit 65000:2 0:136 0:233 route-map calculator permit 32888 match community 2_136_233 set community 0:31688 ip community-list standard 2_219_238 permit 65000:2 0:219 0:238 route-map calculator permit 32889 match community 2_219_238 set community 0:52122 ip community-list standard 2_185_242 permit 65000:2 0:185 0:242 route-map calculator permit 32890 match community 2_185_242 set community 0:44770 ip community-list standard 2_34_205 permit 65000:2 0:34 0:205 ip community-list standard 2_41_170 permit 65000:2 0:41 0:170 ip community-list standard 2_82_85 permit 65000:2 0:82 0:85 route-map calculator permit 32891 match community 2_34_205 2_41_170 2_82_85 set community 0:6970 ip community-list standard 2_138_149 permit 65000:2 0:138 0:149 route-map calculator permit 32892 match community 2_138_149 set community 0:20562 ip community-list standard 2_33_143 permit 65000:2 0:33 0:143 ip community-list standard 2_39_121 permit 65000:2 0:39 0:121 route-map calculator permit 32893 match community 2_33_143 2_39_121 set community 0:4719 ip community-list standard 2_109_181 permit 65000:2 0:109 0:181 route-map calculator permit 32894 match community 2_109_181 set community 0:19729 ip community-list standard 2_85_139 permit 65000:2 0:85 0:139 route-map calculator permit 32895 match community 2_85_139 set community 0:11815 ip community-list standard 2_144_178 permit 65000:2 0:144 0:178 route-map calculator permit 32896 match community 2_144_178 set community 0:25632 ip community-list standard 2_51_253 permit 65000:2 0:51 0:253 ip community-list standard 2_69_187 permit 65000:2 0:69 0:187 route-map calculator permit 32897 match community 2_51_253 2_69_187 set community 0:12903 ip community-list standard 2_94_171 permit 65000:2 0:94 0:171 ip community-list standard 2_114_141 permit 65000:2 0:114 0:141 route-map calculator permit 32898 match community 2_94_171 2_114_141 set community 0:16074 ip community-list standard 2_122_155 permit 65000:2 0:122 0:155 route-map calculator permit 32899 match community 2_122_155 set community 0:18910 ip community-list standard 2_183_252 permit 65000:2 0:183 0:252 ip community-list standard 2_189_244 permit 65000:2 0:189 0:244 route-map calculator permit 32900 match community 2_183_252 2_189_244 set community 0:46116 ip community-list standard 2_26_237 permit 65000:2 0:26 0:237 ip community-list standard 2_39_158 permit 65000:2 0:39 0:158 ip community-list standard 2_78_79 permit 65000:2 0:78 0:79 route-map calculator permit 32901 match community 2_26_237 2_39_158 2_78_79 set community 0:6162 ip community-list standard 2_45_177 permit 65000:2 0:45 0:177 ip community-list standard 2_59_135 permit 65000:2 0:59 0:135 route-map calculator permit 32902 match community 2_45_177 2_59_135 set community 0:7965 ip community-list standard 2_129_252 permit 65000:2 0:129 0:252 ip community-list standard 2_172_189 permit 65000:2 0:172 0:189 route-map calculator permit 32903 match community 2_129_252 2_172_189 set community 0:32508 ip community-list standard 2_97_232 permit 65000:2 0:97 0:232 ip community-list standard 2_116_194 permit 65000:2 0:116 0:194 route-map calculator permit 32904 match community 2_97_232 2_116_194 set community 0:22504 ip community-list standard 2_229_248 permit 65000:2 0:229 0:248 route-map calculator permit 32905 match community 2_229_248 set community 0:56792 ip community-list standard 2_211_242 permit 65000:2 0:211 0:242 route-map calculator permit 32906 match community 2_211_242 set community 0:51062 ip community-list standard 1_1_67 permit 65000:1 0:1 0:67 ip community-list standard 2_1_68 permit 65000:2 0:1 0:68 ip community-list standard 2_2_34 permit 65000:2 0:2 0:34 ip community-list standard 1_2_66 permit 65000:1 0:2 0:66 ip community-list standard 1_3_65 permit 65000:1 0:3 0:65 ip community-list standard 2_4_17 permit 65000:2 0:4 0:17 ip community-list standard 1_4_64 permit 65000:1 0:4 0:64 ip community-list standard 1_5_63 permit 65000:1 0:5 0:63 ip community-list standard 1_6_62 permit 65000:1 0:6 0:62 ip community-list standard 1_7_61 permit 65000:1 0:7 0:61 ip community-list standard 1_8_60 permit 65000:1 0:8 0:60 ip community-list standard 1_9_59 permit 65000:1 0:9 0:59 ip community-list standard 1_10_58 permit 65000:1 0:10 0:58 ip community-list standard 1_11_57 permit 65000:1 0:11 0:57 ip community-list standard 1_12_56 permit 65000:1 0:12 0:56 ip community-list standard 1_13_55 permit 65000:1 0:13 0:55 ip community-list standard 1_14_54 permit 65000:1 0:14 0:54 ip community-list standard 1_15_53 permit 65000:1 0:15 0:53 ip community-list standard 1_16_52 permit 65000:1 0:16 0:52 ip community-list standard 1_17_51 permit 65000:1 0:17 0:51 ip community-list standard 1_18_50 permit 65000:1 0:18 0:50 ip community-list standard 1_19_49 permit 65000:1 0:19 0:49 ip community-list standard 1_20_48 permit 65000:1 0:20 0:48 ip community-list standard 1_21_47 permit 65000:1 0:21 0:47 ip community-list standard 1_22_46 permit 65000:1 0:22 0:46 ip community-list standard 1_23_45 permit 65000:1 0:23 0:45 ip community-list standard 1_24_44 permit 65000:1 0:24 0:44 ip community-list standard 1_25_43 permit 65000:1 0:25 0:43 ip community-list standard 1_26_42 permit 65000:1 0:26 0:42 ip community-list standard 1_27_41 permit 65000:1 0:27 0:41 ip community-list standard 1_28_40 permit 65000:1 0:28 0:40 ip community-list standard 1_29_39 permit 65000:1 0:29 0:39 ip community-list standard 1_30_38 permit 65000:1 0:30 0:38 ip community-list standard 1_31_37 permit 65000:1 0:31 0:37 ip community-list standard 1_32_36 permit 65000:1 0:32 0:36 ip community-list standard 1_33_35 permit 65000:1 0:33 0:35 ip community-list standard 1_34_34 permit 65000:1 0:34 0:34 ip community-list expanded c68 permit 1 ^65000:4_0:68_0:1$ ip community-list expanded c68 permit 2 ^65000:3_0:69_0:1$ ip community-list expanded c68 permit 3 ^65000:3_0:70_0:2$ ip community-list expanded c68 permit 4 ^65000:3_0:71_0:3$ ip community-list expanded c68 permit 5 ^65000:3_0:72_0:4$ ip community-list expanded c68 permit 6 ^65000:3_0:73_0:5$ ip community-list expanded c68 permit 7 ^65000:3_0:74_0:6$ ip community-list expanded c68 permit 8 ^65000:3_0:75_0:7$ ip community-list expanded c68 permit 9 ^65000:3_0:76_0:8$ ip community-list expanded c68 permit 10 ^65000:3_0:77_0:9$ ip community-list expanded c68 permit 11 ^65000:3_0:78_0:10$ ip community-list expanded c68 permit 12 ^65000:3_0:79_0:11$ ip community-list expanded c68 permit 13 ^65000:3_0:80_0:12$ ip community-list expanded c68 permit 14 ^65000:3_0:81_0:13$ ip community-list expanded c68 permit 15 ^65000:3_0:82_0:14$ ip community-list expanded c68 permit 16 ^65000:3_0:83_0:15$ ip community-list expanded c68 permit 17 ^65000:3_0:84_0:16$ ip community-list expanded c68 permit 18 ^65000:3_0:85_0:17$ ip community-list expanded c68 permit 19 ^65000:3_0:86_0:18$ ip community-list expanded c68 permit 20 ^65000:3_0:87_0:19$ ip community-list expanded c68 permit 21 ^65000:3_0:88_0:20$ ip community-list expanded c68 permit 22 ^65000:3_0:89_0:21$ ip community-list expanded c68 permit 23 ^65000:3_0:90_0:22$ ip community-list expanded c68 permit 24 ^65000:3_0:91_0:23$ ip community-list expanded c68 permit 25 ^65000:3_0:92_0:24$ ip community-list expanded c68 permit 26 ^65000:3_0:93_0:25$ ip community-list expanded c68 permit 27 ^65000:3_0:94_0:26$ ip community-list expanded c68 permit 28 ^65000:3_0:95_0:27$ ip community-list expanded c68 permit 29 ^65000:3_0:96_0:28$ ip community-list expanded c68 permit 30 ^65000:3_0:97_0:29$ ip community-list expanded c68 permit 31 ^65000:3_0:98_0:30$ ip community-list expanded c68 permit 32 ^65000:3_0:99_0:31$ ip community-list expanded c68 permit 33 ^65000:3_0:100_0:32$ ip community-list expanded c68 permit 34 ^65000:3_0:101_0:33$ ip community-list expanded c68 permit 35 ^65000:3_0:102_0:34$ ip community-list expanded c68 permit 36 ^65000:3_0:103_0:35$ ip community-list expanded c68 permit 37 ^65000:3_0:104_0:36$ ip community-list expanded c68 permit 38 ^65000:3_0:105_0:37$ ip community-list expanded c68 permit 39 ^65000:3_0:106_0:38$ ip community-list expanded c68 permit 40 ^65000:3_0:107_0:39$ ip community-list expanded c68 permit 41 ^65000:3_0:108_0:40$ ip community-list expanded c68 permit 42 ^65000:3_0:109_0:41$ ip community-list expanded c68 permit 43 ^65000:3_0:110_0:42$ ip community-list expanded c68 permit 44 ^65000:3_0:111_0:43$ ip community-list expanded c68 permit 45 ^65000:3_0:112_0:44$ ip community-list expanded c68 permit 46 ^65000:3_0:113_0:45$ ip community-list expanded c68 permit 47 ^65000:3_0:114_0:46$ ip community-list expanded c68 permit 48 ^65000:3_0:115_0:47$ ip community-list expanded c68 permit 49 ^65000:3_0:116_0:48$ ip community-list expanded c68 permit 50 ^65000:3_0:117_0:49$ ip community-list expanded c68 permit 51 ^65000:3_0:118_0:50$ ip community-list expanded c68 permit 52 ^65000:3_0:119_0:51$ ip community-list expanded c68 permit 53 ^65000:3_0:120_0:52$ ip community-list expanded c68 permit 54 ^65000:3_0:121_0:53$ ip community-list expanded c68 permit 55 ^65000:3_0:122_0:54$ ip community-list expanded c68 permit 56 ^65000:3_0:123_0:55$ ip community-list expanded c68 permit 57 ^65000:3_0:124_0:56$ ip community-list expanded c68 permit 58 ^65000:3_0:125_0:57$ ip community-list expanded c68 permit 59 ^65000:3_0:126_0:58$ ip community-list expanded c68 permit 60 ^65000:3_0:127_0:59$ ip community-list expanded c68 permit 61 ^65000:3_0:128_0:60$ ip community-list expanded c68 permit 62 ^65000:3_0:129_0:61$ ip community-list expanded c68 permit 63 ^65000:3_0:130_0:62$ ip community-list expanded c68 permit 64 ^65000:3_0:131_0:63$ ip community-list expanded c68 permit 65 ^65000:3_0:132_0:64$ ip community-list expanded c68 permit 66 ^65000:3_0:133_0:65$ ip community-list expanded c68 permit 67 ^65000:3_0:134_0:66$ ip community-list expanded c68 permit 68 ^65000:3_0:135_0:67$ ip community-list expanded c68 permit 69 ^65000:4_0:136_0:2$ ip community-list expanded c68 permit 70 ^65000:3_0:136_0:68$ ip community-list expanded c68 permit 71 ^65000:4_0:137_0:2$ ip community-list expanded c68 permit 72 ^65000:3_0:137_0:69$ ip community-list expanded c68 permit 73 ^65000:3_0:138_0:70$ ip community-list expanded c68 permit 74 ^65000:3_0:139_0:71$ ip community-list expanded c68 permit 75 ^65000:3_0:140_0:72$ ip community-list expanded c68 permit 76 ^65000:3_0:141_0:73$ ip community-list expanded c68 permit 77 ^65000:3_0:142_0:74$ ip community-list expanded c68 permit 78 ^65000:3_0:143_0:75$ ip community-list expanded c68 permit 79 ^65000:3_0:144_0:76$ ip community-list expanded c68 permit 80 ^65000:3_0:145_0:77$ ip community-list expanded c68 permit 81 ^65000:3_0:146_0:78$ ip community-list expanded c68 permit 82 ^65000:3_0:147_0:79$ ip community-list expanded c68 permit 83 ^65000:3_0:148_0:80$ ip community-list expanded c68 permit 84 ^65000:3_0:149_0:81$ ip community-list expanded c68 permit 85 ^65000:3_0:150_0:82$ ip community-list expanded c68 permit 86 ^65000:3_0:151_0:83$ ip community-list expanded c68 permit 87 ^65000:3_0:152_0:84$ ip community-list expanded c68 permit 88 ^65000:3_0:153_0:85$ ip community-list expanded c68 permit 89 ^65000:3_0:154_0:86$ ip community-list expanded c68 permit 90 ^65000:3_0:155_0:87$ ip community-list expanded c68 permit 91 ^65000:3_0:156_0:88$ ip community-list expanded c68 permit 92 ^65000:3_0:157_0:89$ ip community-list expanded c68 permit 93 ^65000:3_0:158_0:90$ ip community-list expanded c68 permit 94 ^65000:3_0:159_0:91$ ip community-list expanded c68 permit 95 ^65000:3_0:160_0:92$ ip community-list expanded c68 permit 96 ^65000:3_0:161_0:93$ ip community-list expanded c68 permit 97 ^65000:3_0:162_0:94$ ip community-list expanded c68 permit 98 ^65000:3_0:163_0:95$ ip community-list expanded c68 permit 99 ^65000:3_0:164_0:96$ ip community-list expanded c68 permit 100 ^65000:3_0:165_0:97$ ip community-list expanded c68 permit 101 ^65000:3_0:166_0:98$ ip community-list expanded c68 permit 102 ^65000:3_0:167_0:99$ ip community-list expanded c68 permit 103 ^65000:3_0:168_0:100$ ip community-list expanded c68 permit 104 ^65000:3_0:169_0:101$ ip community-list expanded c68 permit 105 ^65000:3_0:170_0:102$ ip community-list expanded c68 permit 106 ^65000:3_0:171_0:103$ ip community-list expanded c68 permit 107 ^65000:3_0:172_0:104$ ip community-list expanded c68 permit 108 ^65000:3_0:173_0:105$ ip community-list expanded c68 permit 109 ^65000:3_0:174_0:106$ ip community-list expanded c68 permit 110 ^65000:3_0:175_0:107$ ip community-list expanded c68 permit 111 ^65000:3_0:176_0:108$ ip community-list expanded c68 permit 112 ^65000:3_0:177_0:109$ ip community-list expanded c68 permit 113 ^65000:3_0:178_0:110$ ip community-list expanded c68 permit 114 ^65000:3_0:179_0:111$ ip community-list expanded c68 permit 115 ^65000:3_0:180_0:112$ ip community-list expanded c68 permit 116 ^65000:3_0:181_0:113$ ip community-list expanded c68 permit 117 ^65000:3_0:182_0:114$ ip community-list expanded c68 permit 118 ^65000:3_0:183_0:115$ ip community-list expanded c68 permit 119 ^65000:3_0:184_0:116$ ip community-list expanded c68 permit 120 ^65000:3_0:185_0:117$ ip community-list expanded c68 permit 121 ^65000:3_0:186_0:118$ ip community-list expanded c68 permit 122 ^65000:3_0:187_0:119$ ip community-list expanded c68 permit 123 ^65000:3_0:188_0:120$ ip community-list expanded c68 permit 124 ^65000:3_0:189_0:121$ ip community-list expanded c68 permit 125 ^65000:3_0:190_0:122$ ip community-list expanded c68 permit 126 ^65000:3_0:191_0:123$ ip community-list expanded c68 permit 127 ^65000:3_0:192_0:124$ ip community-list expanded c68 permit 128 ^65000:3_0:193_0:125$ ip community-list expanded c68 permit 129 ^65000:3_0:194_0:126$ ip community-list expanded c68 permit 130 ^65000:3_0:195_0:127$ ip community-list expanded c68 permit 131 ^65000:3_0:196_0:128$ ip community-list expanded c68 permit 132 ^65000:3_0:197_0:129$ ip community-list expanded c68 permit 133 ^65000:3_0:198_0:130$ ip community-list expanded c68 permit 134 ^65000:3_0:199_0:131$ ip community-list expanded c68 permit 135 ^65000:3_0:200_0:132$ ip community-list expanded c68 permit 136 ^65000:3_0:201_0:133$ ip community-list expanded c68 permit 137 ^65000:3_0:202_0:134$ ip community-list expanded c68 permit 138 ^65000:3_0:203_0:135$ ip community-list expanded c68 permit 139 ^65000:4_0:204_0:3$ ip community-list expanded c68 permit 140 ^65000:3_0:204_0:136$ ip community-list expanded c68 permit 141 ^65000:4_0:205_0:3$ ip community-list expanded c68 permit 142 ^65000:3_0:205_0:137$ ip community-list expanded c68 permit 143 ^65000:4_0:206_0:3$ ip community-list expanded c68 permit 144 ^65000:3_0:206_0:138$ ip community-list expanded c68 permit 145 ^65000:3_0:207_0:139$ ip community-list expanded c68 permit 146 ^65000:3_0:208_0:140$ ip community-list expanded c68 permit 147 ^65000:3_0:209_0:141$ ip community-list expanded c68 permit 148 ^65000:3_0:210_0:142$ ip community-list expanded c68 permit 149 ^65000:3_0:211_0:143$ ip community-list expanded c68 permit 150 ^65000:3_0:212_0:144$ ip community-list expanded c68 permit 151 ^65000:3_0:213_0:145$ ip community-list expanded c68 permit 152 ^65000:3_0:214_0:146$ ip community-list expanded c68 permit 153 ^65000:3_0:215_0:147$ ip community-list expanded c68 permit 154 ^65000:3_0:216_0:148$ ip community-list expanded c68 permit 155 ^65000:3_0:217_0:149$ ip community-list expanded c68 permit 156 ^65000:3_0:218_0:150$ ip community-list expanded c68 permit 157 ^65000:3_0:219_0:151$ ip community-list expanded c68 permit 158 ^65000:3_0:220_0:152$ ip community-list expanded c68 permit 159 ^65000:3_0:221_0:153$ ip community-list expanded c68 permit 160 ^65000:3_0:222_0:154$ ip community-list expanded c68 permit 161 ^65000:3_0:223_0:155$ ip community-list expanded c68 permit 162 ^65000:3_0:224_0:156$ ip community-list expanded c68 permit 163 ^65000:3_0:225_0:157$ ip community-list expanded c68 permit 164 ^65000:3_0:226_0:158$ ip community-list expanded c68 permit 165 ^65000:3_0:227_0:159$ ip community-list expanded c68 permit 166 ^65000:3_0:228_0:160$ ip community-list expanded c68 permit 167 ^65000:3_0:229_0:161$ ip community-list expanded c68 permit 168 ^65000:3_0:230_0:162$ ip community-list expanded c68 permit 169 ^65000:3_0:231_0:163$ ip community-list expanded c68 permit 170 ^65000:3_0:232_0:164$ ip community-list expanded c68 permit 171 ^65000:3_0:233_0:165$ ip community-list expanded c68 permit 172 ^65000:3_0:234_0:166$ ip community-list expanded c68 permit 173 ^65000:3_0:235_0:167$ ip community-list expanded c68 permit 174 ^65000:3_0:236_0:168$ ip community-list expanded c68 permit 175 ^65000:3_0:237_0:169$ ip community-list expanded c68 permit 176 ^65000:3_0:238_0:170$ ip community-list expanded c68 permit 177 ^65000:3_0:239_0:171$ ip community-list expanded c68 permit 178 ^65000:3_0:240_0:172$ ip community-list expanded c68 permit 179 ^65000:3_0:241_0:173$ ip community-list expanded c68 permit 180 ^65000:3_0:242_0:174$ ip community-list expanded c68 permit 181 ^65000:3_0:243_0:175$ ip community-list expanded c68 permit 182 ^65000:3_0:244_0:176$ ip community-list expanded c68 permit 183 ^65000:3_0:245_0:177$ ip community-list expanded c68 permit 184 ^65000:3_0:246_0:178$ ip community-list expanded c68 permit 185 ^65000:3_0:247_0:179$ ip community-list expanded c68 permit 186 ^65000:3_0:248_0:180$ ip community-list expanded c68 permit 187 ^65000:3_0:249_0:181$ ip community-list expanded c68 permit 188 ^65000:3_0:250_0:182$ ip community-list expanded c68 permit 189 ^65000:3_0:251_0:183$ ip community-list expanded c68 permit 190 ^65000:3_0:252_0:184$ ip community-list expanded c68 permit 191 ^65000:3_0:253_0:185$ ip community-list expanded c68 permit 192 ^65000:3_0:254_0:186$ ip community-list expanded c68 permit 193 ^65000:3_0:255_0:187$ ip community-list expanded c68 permit 194 ^65000:3_0:256_0:188$ route-map calculator permit 32907 match community 1_1_67 2_1_68 2_2_34 1_2_66 1_3_65 set community 0:68 route-map calculator permit 32908 match community 2_4_17 1_4_64 1_5_63 1_6_62 1_7_61 set community 0:68 route-map calculator permit 32909 match community 1_8_60 1_9_59 1_10_58 1_11_57 1_12_56 set community 0:68 route-map calculator permit 32910 match community 1_13_55 1_14_54 1_15_53 1_16_52 1_17_51 set community 0:68 route-map calculator permit 32911 match community 1_18_50 1_19_49 1_20_48 1_21_47 1_22_46 set community 0:68 route-map calculator permit 32912 match community 1_23_45 1_24_44 1_25_43 1_26_42 1_27_41 set community 0:68 route-map calculator permit 32913 match community 1_28_40 1_29_39 1_30_38 1_31_37 1_32_36 set community 0:68 route-map calculator permit 32914 match community 1_33_35 1_34_34 c4_68_1 c3_69_1 c3_70_2 set community 0:68 route-map calculator permit 32915 match community c3_71_3 c3_72_4 c3_73_5 c3_74_6 c3_75_7 set community 0:68 route-map calculator permit 32916 match community c3_76_8 c3_77_9 c3_78_10 c3_79_11 c3_80_12 set community 0:68 route-map calculator permit 32917 match community c3_81_13 c3_82_14 c3_83_15 c3_84_16 c3_85_17 set community 0:68 route-map calculator permit 32918 match community c3_86_18 c3_87_19 c3_88_20 c3_89_21 c3_90_22 set community 0:68 route-map calculator permit 32919 match community c3_91_23 c3_92_24 c3_93_25 c3_94_26 c3_95_27 set community 0:68 route-map calculator permit 32920 match community c3_96_28 c3_97_29 c3_98_30 c3_99_31 c3_100_32 set community 0:68 route-map calculator permit 32921 match community c3_101_33 c3_102_34 c3_103_35 c3_104_36 c3_105_37 set community 0:68 route-map calculator permit 32922 match community c3_106_38 c3_107_39 c3_108_40 c3_109_41 c3_110_42 set community 0:68 route-map calculator permit 32923 match community c3_111_43 c3_112_44 c3_113_45 c3_114_46 c3_115_47 set community 0:68 route-map calculator permit 32924 match community c3_116_48 c3_117_49 c3_118_50 c3_119_51 c3_120_52 set community 0:68 route-map calculator permit 32925 match community c3_121_53 c3_122_54 c3_123_55 c3_124_56 c3_125_57 set community 0:68 route-map calculator permit 32926 match community c3_126_58 c3_127_59 c3_128_60 c3_129_61 c3_130_62 set community 0:68 route-map calculator permit 32927 match community c3_131_63 c3_132_64 c3_133_65 c3_134_66 c3_135_67 set community 0:68 route-map calculator permit 32928 match community c4_136_2 c3_136_68 c4_137_2 c3_137_69 c3_138_70 set community 0:68 route-map calculator permit 32929 match community c3_139_71 c3_140_72 c3_141_73 c3_142_74 c3_143_75 set community 0:68 route-map calculator permit 32930 match community c3_144_76 c3_145_77 c3_146_78 c3_147_79 c3_148_80 set community 0:68 route-map calculator permit 32931 match community c3_149_81 c3_150_82 c3_151_83 c3_152_84 c3_153_85 set community 0:68 route-map calculator permit 32932 match community c3_154_86 c3_155_87 c3_156_88 c3_157_89 c3_158_90 set community 0:68 route-map calculator permit 32933 match community c3_159_91 c3_160_92 c3_161_93 c3_162_94 c3_163_95 set community 0:68 route-map calculator permit 32934 match community c3_164_96 c3_165_97 c3_166_98 c3_167_99 c3_168_100 set community 0:68 route-map calculator permit 32935 match community c3_169_101 c3_170_102 c3_171_103 c3_172_104 c3_173_105 set community 0:68 route-map calculator permit 32936 match community c3_174_106 c3_175_107 c3_176_108 c3_177_109 c3_178_110 set community 0:68 route-map calculator permit 32937 match community c3_179_111 c3_180_112 c3_181_113 c3_182_114 c3_183_115 set community 0:68 route-map calculator permit 32938 match community c3_184_116 c3_185_117 c3_186_118 c3_187_119 c3_188_120 set community 0:68 route-map calculator permit 32939 match community c3_189_121 c3_190_122 c3_191_123 c3_192_124 c3_193_125 set community 0:68 route-map calculator permit 32940 match community c3_194_126 c3_195_127 c3_196_128 c3_197_129 c3_198_130 set community 0:68 route-map calculator permit 32941 match community c3_199_131 c3_200_132 c3_201_133 c3_202_134 c3_203_135 set community 0:68 route-map calculator permit 32942 match community c4_204_3 c3_204_136 c4_205_3 c3_205_137 c4_206_3 set community 0:68 route-map calculator permit 32943 match community c3_206_138 c3_207_139 c3_208_140 c3_209_141 c3_210_142 set community 0:68 route-map calculator permit 32944 match community c3_211_143 c3_212_144 c3_213_145 c3_214_146 c3_215_147 set community 0:68 route-map calculator permit 32945 match community c3_216_148 c3_217_149 c3_218_150 c3_219_151 c3_220_152 set community 0:68 route-map calculator permit 32946 match community c3_221_153 c3_222_154 c3_223_155 c3_224_156 c3_225_157 set community 0:68 route-map calculator permit 32947 match community c3_226_158 c3_227_159 c3_228_160 c3_229_161 c3_230_162 set community 0:68 route-map calculator permit 32948 match community c3_231_163 c3_232_164 c3_233_165 c3_234_166 c3_235_167 set community 0:68 route-map calculator permit 32949 match community c3_236_168 c3_237_169 c3_238_170 c3_239_171 c3_240_172 set community 0:68 route-map calculator permit 32950 match community c3_241_173 c3_242_174 c3_243_175 c3_244_176 c3_245_177 set community 0:68 route-map calculator permit 32951 match community c3_246_178 c3_247_179 c3_248_180 c3_249_181 c3_250_182 set community 0:68 route-map calculator permit 32952 match community c3_251_183 c3_252_184 c3_253_185 c3_254_186 c3_255_187 set community 0:68 route-map calculator permit 32953 match community c3_256_188 set community 0:68 ip community-list standard 2_199_246 permit 65000:2 0:199 0:246 route-map calculator permit 32954 match community 2_199_246 set community 0:48954 ip community-list standard 2_68_158 permit 65000:2 0:68 0:158 ip community-list standard 2_79_136 permit 65000:2 0:79 0:136 route-map calculator permit 32955 match community 2_68_158 2_79_136 set community 0:10744 ip community-list standard 2_17_94 permit 65000:2 0:17 0:94 ip community-list standard 2_34_47 permit 65000:2 0:34 0:47 route-map calculator permit 32956 match community 2_17_94 2_34_47 set community 0:1598 ip community-list standard 2_38_229 permit 65000:2 0:38 0:229 route-map calculator permit 32957 match community 2_38_229 set community 0:8702 ip community-list standard 2_198_245 permit 65000:2 0:198 0:245 ip community-list standard 2_210_231 permit 65000:2 0:210 0:231 route-map calculator permit 32958 match community 2_198_245 2_210_231 set community 0:48510 ip community-list standard 2_199_238 permit 65000:2 0:199 0:238 route-map calculator permit 32959 match community 2_199_238 set community 0:47362 ip community-list standard 2_164_254 permit 65000:2 0:164 0:254 route-map calculator permit 32960 match community 2_164_254 set community 0:41656 ip community-list standard 2_27_205 permit 65000:2 0:27 0:205 ip community-list standard 2_41_135 permit 65000:2 0:41 0:135 ip community-list standard 2_45_123 permit 65000:2 0:45 0:123 route-map calculator permit 32961 match community 2_27_205 2_41_135 2_45_123 set community 0:5535 ip community-list standard 1_1_32 permit 65000:1 0:1 0:32 ip community-list standard 2_1_33 permit 65000:2 0:1 0:33 ip community-list standard 1_2_31 permit 65000:1 0:2 0:31 ip community-list standard 2_3_11 permit 65000:2 0:3 0:11 ip community-list standard 1_3_30 permit 65000:1 0:3 0:30 ip community-list standard 1_4_29 permit 65000:1 0:4 0:29 ip community-list standard 1_5_28 permit 65000:1 0:5 0:28 ip community-list standard 1_6_27 permit 65000:1 0:6 0:27 ip community-list standard 1_7_26 permit 65000:1 0:7 0:26 ip community-list standard 1_8_25 permit 65000:1 0:8 0:25 ip community-list standard 1_9_24 permit 65000:1 0:9 0:24 ip community-list standard 1_10_23 permit 65000:1 0:10 0:23 ip community-list standard 1_11_22 permit 65000:1 0:11 0:22 ip community-list standard 1_12_21 permit 65000:1 0:12 0:21 ip community-list standard 1_13_20 permit 65000:1 0:13 0:20 ip community-list standard 1_14_19 permit 65000:1 0:14 0:19 ip community-list standard 1_15_18 permit 65000:1 0:15 0:18 ip community-list standard 1_16_17 permit 65000:1 0:16 0:17 ip community-list expanded c33 permit 1 ^65000:4_0:33_0:1$ ip community-list expanded c33 permit 2 ^65000:3_0:34_0:1$ ip community-list expanded c33 permit 3 ^65000:3_0:35_0:2$ ip community-list expanded c33 permit 4 ^65000:3_0:36_0:3$ ip community-list expanded c33 permit 5 ^65000:3_0:37_0:4$ ip community-list expanded c33 permit 6 ^65000:3_0:38_0:5$ ip community-list expanded c33 permit 7 ^65000:3_0:39_0:6$ ip community-list expanded c33 permit 8 ^65000:3_0:40_0:7$ ip community-list expanded c33 permit 9 ^65000:3_0:41_0:8$ ip community-list expanded c33 permit 10 ^65000:3_0:42_0:9$ ip community-list expanded c33 permit 11 ^65000:3_0:43_0:10$ ip community-list expanded c33 permit 12 ^65000:3_0:44_0:11$ ip community-list expanded c33 permit 13 ^65000:3_0:45_0:12$ ip community-list expanded c33 permit 14 ^65000:3_0:46_0:13$ ip community-list expanded c33 permit 15 ^65000:3_0:47_0:14$ ip community-list expanded c33 permit 16 ^65000:3_0:48_0:15$ ip community-list expanded c33 permit 17 ^65000:3_0:49_0:16$ ip community-list expanded c33 permit 18 ^65000:3_0:50_0:17$ ip community-list expanded c33 permit 19 ^65000:3_0:51_0:18$ ip community-list expanded c33 permit 20 ^65000:3_0:52_0:19$ ip community-list expanded c33 permit 21 ^65000:3_0:53_0:20$ ip community-list expanded c33 permit 22 ^65000:3_0:54_0:21$ ip community-list expanded c33 permit 23 ^65000:3_0:55_0:22$ ip community-list expanded c33 permit 24 ^65000:3_0:56_0:23$ ip community-list expanded c33 permit 25 ^65000:3_0:57_0:24$ ip community-list expanded c33 permit 26 ^65000:3_0:58_0:25$ ip community-list expanded c33 permit 27 ^65000:3_0:59_0:26$ ip community-list expanded c33 permit 28 ^65000:3_0:60_0:27$ ip community-list expanded c33 permit 29 ^65000:3_0:61_0:28$ ip community-list expanded c33 permit 30 ^65000:3_0:62_0:29$ ip community-list expanded c33 permit 31 ^65000:3_0:63_0:30$ ip community-list expanded c33 permit 32 ^65000:3_0:64_0:31$ ip community-list expanded c33 permit 33 ^65000:3_0:65_0:32$ ip community-list expanded c33 permit 34 ^65000:4_0:66_0:2$ ip community-list expanded c33 permit 35 ^65000:3_0:66_0:33$ ip community-list expanded c33 permit 36 ^65000:4_0:67_0:2$ ip community-list expanded c33 permit 37 ^65000:3_0:67_0:34$ ip community-list expanded c33 permit 38 ^65000:3_0:68_0:35$ ip community-list expanded c33 permit 39 ^65000:3_0:69_0:36$ ip community-list expanded c33 permit 40 ^65000:3_0:70_0:37$ ip community-list expanded c33 permit 41 ^65000:3_0:71_0:38$ ip community-list expanded c33 permit 42 ^65000:3_0:72_0:39$ ip community-list expanded c33 permit 43 ^65000:3_0:73_0:40$ ip community-list expanded c33 permit 44 ^65000:3_0:74_0:41$ ip community-list expanded c33 permit 45 ^65000:3_0:75_0:42$ ip community-list expanded c33 permit 46 ^65000:3_0:76_0:43$ ip community-list expanded c33 permit 47 ^65000:3_0:77_0:44$ ip community-list expanded c33 permit 48 ^65000:3_0:78_0:45$ ip community-list expanded c33 permit 49 ^65000:3_0:79_0:46$ ip community-list expanded c33 permit 50 ^65000:3_0:80_0:47$ ip community-list expanded c33 permit 51 ^65000:3_0:81_0:48$ ip community-list expanded c33 permit 52 ^65000:3_0:82_0:49$ ip community-list expanded c33 permit 53 ^65000:3_0:83_0:50$ ip community-list expanded c33 permit 54 ^65000:3_0:84_0:51$ ip community-list expanded c33 permit 55 ^65000:3_0:85_0:52$ ip community-list expanded c33 permit 56 ^65000:3_0:86_0:53$ ip community-list expanded c33 permit 57 ^65000:3_0:87_0:54$ ip community-list expanded c33 permit 58 ^65000:3_0:88_0:55$ ip community-list expanded c33 permit 59 ^65000:3_0:89_0:56$ ip community-list expanded c33 permit 60 ^65000:3_0:90_0:57$ ip community-list expanded c33 permit 61 ^65000:3_0:91_0:58$ ip community-list expanded c33 permit 62 ^65000:3_0:92_0:59$ ip community-list expanded c33 permit 63 ^65000:3_0:93_0:60$ ip community-list expanded c33 permit 64 ^65000:3_0:94_0:61$ ip community-list expanded c33 permit 65 ^65000:3_0:95_0:62$ ip community-list expanded c33 permit 66 ^65000:3_0:96_0:63$ ip community-list expanded c33 permit 67 ^65000:3_0:97_0:64$ ip community-list expanded c33 permit 68 ^65000:3_0:98_0:65$ ip community-list expanded c33 permit 69 ^65000:4_0:99_0:3$ ip community-list expanded c33 permit 70 ^65000:3_0:99_0:66$ ip community-list expanded c33 permit 71 ^65000:4_0:100_0:3$ ip community-list expanded c33 permit 72 ^65000:3_0:100_0:67$ ip community-list expanded c33 permit 73 ^65000:4_0:101_0:3$ ip community-list expanded c33 permit 74 ^65000:3_0:101_0:68$ ip community-list expanded c33 permit 75 ^65000:3_0:102_0:69$ ip community-list expanded c33 permit 76 ^65000:3_0:103_0:70$ ip community-list expanded c33 permit 77 ^65000:3_0:104_0:71$ ip community-list expanded c33 permit 78 ^65000:3_0:105_0:72$ ip community-list expanded c33 permit 79 ^65000:3_0:106_0:73$ ip community-list expanded c33 permit 80 ^65000:3_0:107_0:74$ ip community-list expanded c33 permit 81 ^65000:3_0:108_0:75$ ip community-list expanded c33 permit 82 ^65000:3_0:109_0:76$ ip community-list expanded c33 permit 83 ^65000:3_0:110_0:77$ ip community-list expanded c33 permit 84 ^65000:3_0:111_0:78$ ip community-list expanded c33 permit 85 ^65000:3_0:112_0:79$ ip community-list expanded c33 permit 86 ^65000:3_0:113_0:80$ ip community-list expanded c33 permit 87 ^65000:3_0:114_0:81$ ip community-list expanded c33 permit 88 ^65000:3_0:115_0:82$ ip community-list expanded c33 permit 89 ^65000:3_0:116_0:83$ ip community-list expanded c33 permit 90 ^65000:3_0:117_0:84$ ip community-list expanded c33 permit 91 ^65000:3_0:118_0:85$ ip community-list expanded c33 permit 92 ^65000:3_0:119_0:86$ ip community-list expanded c33 permit 93 ^65000:3_0:120_0:87$ ip community-list expanded c33 permit 94 ^65000:3_0:121_0:88$ ip community-list expanded c33 permit 95 ^65000:3_0:122_0:89$ ip community-list expanded c33 permit 96 ^65000:3_0:123_0:90$ ip community-list expanded c33 permit 97 ^65000:3_0:124_0:91$ ip community-list expanded c33 permit 98 ^65000:3_0:125_0:92$ ip community-list expanded c33 permit 99 ^65000:3_0:126_0:93$ ip community-list expanded c33 permit 100 ^65000:3_0:127_0:94$ ip community-list expanded c33 permit 101 ^65000:3_0:128_0:95$ ip community-list expanded c33 permit 102 ^65000:3_0:129_0:96$ ip community-list expanded c33 permit 103 ^65000:3_0:130_0:97$ ip community-list expanded c33 permit 104 ^65000:3_0:131_0:98$ ip community-list expanded c33 permit 105 ^65000:4_0:132_0:4$ ip community-list expanded c33 permit 106 ^65000:3_0:132_0:99$ ip community-list expanded c33 permit 107 ^65000:4_0:133_0:4$ ip community-list expanded c33 permit 108 ^65000:3_0:133_0:100$ ip community-list expanded c33 permit 109 ^65000:4_0:134_0:4$ ip community-list expanded c33 permit 110 ^65000:3_0:134_0:101$ ip community-list expanded c33 permit 111 ^65000:4_0:135_0:4$ ip community-list expanded c33 permit 112 ^65000:3_0:135_0:102$ ip community-list expanded c33 permit 113 ^65000:3_0:136_0:103$ ip community-list expanded c33 permit 114 ^65000:3_0:137_0:104$ ip community-list expanded c33 permit 115 ^65000:3_0:138_0:105$ ip community-list expanded c33 permit 116 ^65000:3_0:139_0:106$ ip community-list expanded c33 permit 117 ^65000:3_0:140_0:107$ ip community-list expanded c33 permit 118 ^65000:3_0:141_0:108$ ip community-list expanded c33 permit 119 ^65000:3_0:142_0:109$ ip community-list expanded c33 permit 120 ^65000:3_0:143_0:110$ ip community-list expanded c33 permit 121 ^65000:3_0:144_0:111$ ip community-list expanded c33 permit 122 ^65000:3_0:145_0:112$ ip community-list expanded c33 permit 123 ^65000:3_0:146_0:113$ ip community-list expanded c33 permit 124 ^65000:3_0:147_0:114$ ip community-list expanded c33 permit 125 ^65000:3_0:148_0:115$ ip community-list expanded c33 permit 126 ^65000:3_0:149_0:116$ ip community-list expanded c33 permit 127 ^65000:3_0:150_0:117$ ip community-list expanded c33 permit 128 ^65000:3_0:151_0:118$ ip community-list expanded c33 permit 129 ^65000:3_0:152_0:119$ ip community-list expanded c33 permit 130 ^65000:3_0:153_0:120$ ip community-list expanded c33 permit 131 ^65000:3_0:154_0:121$ ip community-list expanded c33 permit 132 ^65000:3_0:155_0:122$ ip community-list expanded c33 permit 133 ^65000:3_0:156_0:123$ ip community-list expanded c33 permit 134 ^65000:3_0:157_0:124$ ip community-list expanded c33 permit 135 ^65000:3_0:158_0:125$ ip community-list expanded c33 permit 136 ^65000:3_0:159_0:126$ ip community-list expanded c33 permit 137 ^65000:3_0:160_0:127$ ip community-list expanded c33 permit 138 ^65000:3_0:161_0:128$ ip community-list expanded c33 permit 139 ^65000:3_0:162_0:129$ ip community-list expanded c33 permit 140 ^65000:3_0:163_0:130$ ip community-list expanded c33 permit 141 ^65000:3_0:164_0:131$ ip community-list expanded c33 permit 142 ^65000:4_0:165_0:5$ ip community-list expanded c33 permit 143 ^65000:3_0:165_0:132$ ip community-list expanded c33 permit 144 ^65000:4_0:166_0:5$ ip community-list expanded c33 permit 145 ^65000:3_0:166_0:133$ ip community-list expanded c33 permit 146 ^65000:4_0:167_0:5$ ip community-list expanded c33 permit 147 ^65000:3_0:167_0:134$ ip community-list expanded c33 permit 148 ^65000:4_0:168_0:5$ ip community-list expanded c33 permit 149 ^65000:3_0:168_0:135$ ip community-list expanded c33 permit 150 ^65000:4_0:169_0:5$ ip community-list expanded c33 permit 151 ^65000:3_0:169_0:136$ ip community-list expanded c33 permit 152 ^65000:3_0:170_0:137$ ip community-list expanded c33 permit 153 ^65000:3_0:171_0:138$ ip community-list expanded c33 permit 154 ^65000:3_0:172_0:139$ ip community-list expanded c33 permit 155 ^65000:3_0:173_0:140$ ip community-list expanded c33 permit 156 ^65000:3_0:174_0:141$ ip community-list expanded c33 permit 157 ^65000:3_0:175_0:142$ ip community-list expanded c33 permit 158 ^65000:3_0:176_0:143$ ip community-list expanded c33 permit 159 ^65000:3_0:177_0:144$ ip community-list expanded c33 permit 160 ^65000:3_0:178_0:145$ ip community-list expanded c33 permit 161 ^65000:3_0:179_0:146$ ip community-list expanded c33 permit 162 ^65000:3_0:180_0:147$ ip community-list expanded c33 permit 163 ^65000:3_0:181_0:148$ ip community-list expanded c33 permit 164 ^65000:3_0:182_0:149$ ip community-list expanded c33 permit 165 ^65000:3_0:183_0:150$ ip community-list expanded c33 permit 166 ^65000:3_0:184_0:151$ ip community-list expanded c33 permit 167 ^65000:3_0:185_0:152$ ip community-list expanded c33 permit 168 ^65000:3_0:186_0:153$ ip community-list expanded c33 permit 169 ^65000:3_0:187_0:154$ ip community-list expanded c33 permit 170 ^65000:3_0:188_0:155$ ip community-list expanded c33 permit 171 ^65000:3_0:189_0:156$ ip community-list expanded c33 permit 172 ^65000:3_0:190_0:157$ ip community-list expanded c33 permit 173 ^65000:3_0:191_0:158$ ip community-list expanded c33 permit 174 ^65000:3_0:192_0:159$ ip community-list expanded c33 permit 175 ^65000:3_0:193_0:160$ ip community-list expanded c33 permit 176 ^65000:3_0:194_0:161$ ip community-list expanded c33 permit 177 ^65000:3_0:195_0:162$ ip community-list expanded c33 permit 178 ^65000:3_0:196_0:163$ ip community-list expanded c33 permit 179 ^65000:3_0:197_0:164$ ip community-list expanded c33 permit 180 ^65000:4_0:198_0:6$ ip community-list expanded c33 permit 181 ^65000:3_0:198_0:165$ ip community-list expanded c33 permit 182 ^65000:4_0:199_0:6$ ip community-list expanded c33 permit 183 ^65000:3_0:199_0:166$ ip community-list expanded c33 permit 184 ^65000:4_0:200_0:6$ ip community-list expanded c33 permit 185 ^65000:3_0:200_0:167$ ip community-list expanded c33 permit 186 ^65000:4_0:201_0:6$ ip community-list expanded c33 permit 187 ^65000:3_0:201_0:168$ ip community-list expanded c33 permit 188 ^65000:4_0:202_0:6$ ip community-list expanded c33 permit 189 ^65000:3_0:202_0:169$ ip community-list expanded c33 permit 190 ^65000:4_0:203_0:6$ ip community-list expanded c33 permit 191 ^65000:3_0:203_0:170$ ip community-list expanded c33 permit 192 ^65000:3_0:204_0:171$ ip community-list expanded c33 permit 193 ^65000:3_0:205_0:172$ ip community-list expanded c33 permit 194 ^65000:3_0:206_0:173$ ip community-list expanded c33 permit 195 ^65000:3_0:207_0:174$ ip community-list expanded c33 permit 196 ^65000:3_0:208_0:175$ ip community-list expanded c33 permit 197 ^65000:3_0:209_0:176$ ip community-list expanded c33 permit 198 ^65000:3_0:210_0:177$ ip community-list expanded c33 permit 199 ^65000:3_0:211_0:178$ ip community-list expanded c33 permit 200 ^65000:3_0:212_0:179$ ip community-list expanded c33 permit 201 ^65000:3_0:213_0:180$ ip community-list expanded c33 permit 202 ^65000:3_0:214_0:181$ ip community-list expanded c33 permit 203 ^65000:3_0:215_0:182$ ip community-list expanded c33 permit 204 ^65000:3_0:216_0:183$ ip community-list expanded c33 permit 205 ^65000:3_0:217_0:184$ ip community-list expanded c33 permit 206 ^65000:3_0:218_0:185$ ip community-list expanded c33 permit 207 ^65000:3_0:219_0:186$ ip community-list expanded c33 permit 208 ^65000:3_0:220_0:187$ ip community-list expanded c33 permit 209 ^65000:3_0:221_0:188$ ip community-list expanded c33 permit 210 ^65000:3_0:222_0:189$ ip community-list expanded c33 permit 211 ^65000:3_0:223_0:190$ ip community-list expanded c33 permit 212 ^65000:3_0:224_0:191$ ip community-list expanded c33 permit 213 ^65000:3_0:225_0:192$ ip community-list expanded c33 permit 214 ^65000:3_0:226_0:193$ ip community-list expanded c33 permit 215 ^65000:3_0:227_0:194$ ip community-list expanded c33 permit 216 ^65000:3_0:228_0:195$ ip community-list expanded c33 permit 217 ^65000:3_0:229_0:196$ ip community-list expanded c33 permit 218 ^65000:3_0:230_0:197$ ip community-list expanded c33 permit 219 ^65000:4_0:231_0:7$ ip community-list expanded c33 permit 220 ^65000:3_0:231_0:198$ ip community-list expanded c33 permit 221 ^65000:4_0:232_0:7$ ip community-list expanded c33 permit 222 ^65000:3_0:232_0:199$ ip community-list expanded c33 permit 223 ^65000:4_0:233_0:7$ ip community-list expanded c33 permit 224 ^65000:3_0:233_0:200$ ip community-list expanded c33 permit 225 ^65000:4_0:234_0:7$ ip community-list expanded c33 permit 226 ^65000:3_0:234_0:201$ ip community-list expanded c33 permit 227 ^65000:4_0:235_0:7$ ip community-list expanded c33 permit 228 ^65000:3_0:235_0:202$ ip community-list expanded c33 permit 229 ^65000:4_0:236_0:7$ ip community-list expanded c33 permit 230 ^65000:3_0:236_0:203$ ip community-list expanded c33 permit 231 ^65000:4_0:237_0:7$ ip community-list expanded c33 permit 232 ^65000:3_0:237_0:204$ ip community-list expanded c33 permit 233 ^65000:3_0:238_0:205$ ip community-list expanded c33 permit 234 ^65000:3_0:239_0:206$ ip community-list expanded c33 permit 235 ^65000:3_0:240_0:207$ ip community-list expanded c33 permit 236 ^65000:3_0:241_0:208$ ip community-list expanded c33 permit 237 ^65000:3_0:242_0:209$ ip community-list expanded c33 permit 238 ^65000:3_0:243_0:210$ ip community-list expanded c33 permit 239 ^65000:3_0:244_0:211$ ip community-list expanded c33 permit 240 ^65000:3_0:245_0:212$ ip community-list expanded c33 permit 241 ^65000:3_0:246_0:213$ ip community-list expanded c33 permit 242 ^65000:3_0:247_0:214$ ip community-list expanded c33 permit 243 ^65000:3_0:248_0:215$ ip community-list expanded c33 permit 244 ^65000:3_0:249_0:216$ ip community-list expanded c33 permit 245 ^65000:3_0:250_0:217$ ip community-list expanded c33 permit 246 ^65000:3_0:251_0:218$ ip community-list expanded c33 permit 247 ^65000:3_0:252_0:219$ ip community-list expanded c33 permit 248 ^65000:3_0:253_0:220$ ip community-list expanded c33 permit 249 ^65000:3_0:254_0:221$ ip community-list expanded c33 permit 250 ^65000:3_0:255_0:222$ ip community-list expanded c33 permit 251 ^65000:3_0:256_0:223$ route-map calculator permit 32962 match community 1_1_32 2_1_33 1_2_31 2_3_11 1_3_30 set community 0:33 route-map calculator permit 32963 match community 1_4_29 1_5_28 1_6_27 1_7_26 1_8_25 set community 0:33 route-map calculator permit 32964 match community 1_9_24 1_10_23 1_11_22 1_12_21 1_13_20 set community 0:33 route-map calculator permit 32965 match community 1_14_19 1_15_18 1_16_17 c4_33_1 c3_34_1 set community 0:33 route-map calculator permit 32966 match community c3_35_2 c3_36_3 c3_37_4 c3_38_5 c3_39_6 set community 0:33 route-map calculator permit 32967 match community c3_40_7 c3_41_8 c3_42_9 c3_43_10 c3_44_11 set community 0:33 route-map calculator permit 32968 match community c3_45_12 c3_46_13 c3_47_14 c3_48_15 c3_49_16 set community 0:33 route-map calculator permit 32969 match community c3_50_17 c3_51_18 c3_52_19 c3_53_20 c3_54_21 set community 0:33 route-map calculator permit 32970 match community c3_55_22 c3_56_23 c3_57_24 c3_58_25 c3_59_26 set community 0:33 route-map calculator permit 32971 match community c3_60_27 c3_61_28 c3_62_29 c3_63_30 c3_64_31 set community 0:33 route-map calculator permit 32972 match community c3_65_32 c4_66_2 c3_66_33 c4_67_2 c3_67_34 set community 0:33 route-map calculator permit 32973 match community c3_68_35 c3_69_36 c3_70_37 c3_71_38 c3_72_39 set community 0:33 route-map calculator permit 32974 match community c3_73_40 c3_74_41 c3_75_42 c3_76_43 c3_77_44 set community 0:33 route-map calculator permit 32975 match community c3_78_45 c3_79_46 c3_80_47 c3_81_48 c3_82_49 set community 0:33 route-map calculator permit 32976 match community c3_83_50 c3_84_51 c3_85_52 c3_86_53 c3_87_54 set community 0:33 route-map calculator permit 32977 match community c3_88_55 c3_89_56 c3_90_57 c3_91_58 c3_92_59 set community 0:33 route-map calculator permit 32978 match community c3_93_60 c3_94_61 c3_95_62 c3_96_63 c3_97_64 set community 0:33 route-map calculator permit 32979 match community c3_98_65 c4_99_3 c3_99_66 c4_100_3 c3_100_67 set community 0:33 route-map calculator permit 32980 match community c4_101_3 c3_101_68 c3_102_69 c3_103_70 c3_104_71 set community 0:33 route-map calculator permit 32981 match community c3_105_72 c3_106_73 c3_107_74 c3_108_75 c3_109_76 set community 0:33 route-map calculator permit 32982 match community c3_110_77 c3_111_78 c3_112_79 c3_113_80 c3_114_81 set community 0:33 route-map calculator permit 32983 match community c3_115_82 c3_116_83 c3_117_84 c3_118_85 c3_119_86 set community 0:33 route-map calculator permit 32984 match community c3_120_87 c3_121_88 c3_122_89 c3_123_90 c3_124_91 set community 0:33 route-map calculator permit 32985 match community c3_125_92 c3_126_93 c3_127_94 c3_128_95 c3_129_96 set community 0:33 route-map calculator permit 32986 match community c3_130_97 c3_131_98 c4_132_4 c3_132_99 c4_133_4 set community 0:33 route-map calculator permit 32987 match community c3_133_100 c4_134_4 c3_134_101 c4_135_4 c3_135_102 set community 0:33 route-map calculator permit 32988 match community c3_136_103 c3_137_104 c3_138_105 c3_139_106 c3_140_107 set community 0:33 route-map calculator permit 32989 match community c3_141_108 c3_142_109 c3_143_110 c3_144_111 c3_145_112 set community 0:33 route-map calculator permit 32990 match community c3_146_113 c3_147_114 c3_148_115 c3_149_116 c3_150_117 set community 0:33 route-map calculator permit 32991 match community c3_151_118 c3_152_119 c3_153_120 c3_154_121 c3_155_122 set community 0:33 route-map calculator permit 32992 match community c3_156_123 c3_157_124 c3_158_125 c3_159_126 c3_160_127 set community 0:33 route-map calculator permit 32993 match community c3_161_128 c3_162_129 c3_163_130 c3_164_131 c4_165_5 set community 0:33 route-map calculator permit 32994 match community c3_165_132 c4_166_5 c3_166_133 c4_167_5 c3_167_134 set community 0:33 route-map calculator permit 32995 match community c4_168_5 c3_168_135 c4_169_5 c3_169_136 c3_170_137 set community 0:33 route-map calculator permit 32996 match community c3_171_138 c3_172_139 c3_173_140 c3_174_141 c3_175_142 set community 0:33 route-map calculator permit 32997 match community c3_176_143 c3_177_144 c3_178_145 c3_179_146 c3_180_147 set community 0:33 route-map calculator permit 32998 match community c3_181_148 c3_182_149 c3_183_150 c3_184_151 c3_185_152 set community 0:33 route-map calculator permit 32999 match community c3_186_153 c3_187_154 c3_188_155 c3_189_156 c3_190_157 set community 0:33 route-map calculator permit 33000 match community c3_191_158 c3_192_159 c3_193_160 c3_194_161 c3_195_162 set community 0:33 route-map calculator permit 33001 match community c3_196_163 c3_197_164 c4_198_6 c3_198_165 c4_199_6 set community 0:33 route-map calculator permit 33002 match community c3_199_166 c4_200_6 c3_200_167 c4_201_6 c3_201_168 set community 0:33 route-map calculator permit 33003 match community c4_202_6 c3_202_169 c4_203_6 c3_203_170 c3_204_171 set community 0:33 route-map calculator permit 33004 match community c3_205_172 c3_206_173 c3_207_174 c3_208_175 c3_209_176 set community 0:33 route-map calculator permit 33005 match community c3_210_177 c3_211_178 c3_212_179 c3_213_180 c3_214_181 set community 0:33 route-map calculator permit 33006 match community c3_215_182 c3_216_183 c3_217_184 c3_218_185 c3_219_186 set community 0:33 route-map calculator permit 33007 match community c3_220_187 c3_221_188 c3_222_189 c3_223_190 c3_224_191 set community 0:33 route-map calculator permit 33008 match community c3_225_192 c3_226_193 c3_227_194 c3_228_195 c3_229_196 set community 0:33 route-map calculator permit 33009 match community c3_230_197 c4_231_7 c3_231_198 c4_232_7 c3_232_199 set community 0:33 route-map calculator permit 33010 match community c4_233_7 c3_233_200 c4_234_7 c3_234_201 c4_235_7 set community 0:33 route-map calculator permit 33011 match community c3_235_202 c4_236_7 c3_236_203 c4_237_7 c3_237_204 set community 0:33 route-map calculator permit 33012 match community c3_238_205 c3_239_206 c3_240_207 c3_241_208 c3_242_209 set community 0:33 route-map calculator permit 33013 match community c3_243_210 c3_244_211 c3_245_212 c3_246_213 c3_247_214 set community 0:33 route-map calculator permit 33014 match community c3_248_215 c3_249_216 c3_250_217 c3_251_218 c3_252_219 set community 0:33 route-map calculator permit 33015 match community c3_253_220 c3_254_221 c3_255_222 c3_256_223 set community 0:33 ip community-list standard 2_182_229 permit 65000:2 0:182 0:229 route-map calculator permit 33016 match community 2_182_229 set community 0:41678 ip community-list standard 2_222_225 permit 65000:2 0:222 0:225 route-map calculator permit 33017 match community 2_222_225 set community 0:49950 ip community-list standard 2_131_224 permit 65000:2 0:131 0:224 route-map calculator permit 33018 match community 2_131_224 set community 0:29344 ip community-list standard 2_5_215 permit 65000:2 0:5 0:215 ip community-list standard 2_25_43 permit 65000:2 0:25 0:43 route-map calculator permit 33019 match community 2_5_215 2_25_43 set community 0:1075 ip community-list standard 2_91_151 permit 65000:2 0:91 0:151 route-map calculator permit 33020 match community 2_91_151 set community 0:13741 ip community-list standard 2_77_172 permit 65000:2 0:77 0:172 ip community-list standard 2_86_154 permit 65000:2 0:86 0:154 route-map calculator permit 33021 match community 2_77_172 2_86_154 set community 0:13244 ip community-list standard 2_113_175 permit 65000:2 0:113 0:175 route-map calculator permit 33022 match community 2_113_175 set community 0:19775 ip community-list standard 2_35_131 permit 65000:2 0:35 0:131 route-map calculator permit 33023 match community 2_35_131 set community 0:4585 ip community-list standard 2_26_244 permit 65000:2 0:26 0:244 ip community-list standard 2_52_122 permit 65000:2 0:52 0:122 ip community-list standard 2_61_104 permit 65000:2 0:61 0:104 route-map calculator permit 33024 match community 2_26_244 2_52_122 2_61_104 set community 0:6344 ip community-list standard 2_91_169 permit 65000:2 0:91 0:169 route-map calculator permit 33025 match community 2_91_169 set community 0:15379 ip community-list standard 2_145_230 permit 65000:2 0:145 0:230 route-map calculator permit 33026 match community 2_145_230 set community 0:33350 ip community-list standard 2_137_155 permit 65000:2 0:137 0:155 route-map calculator permit 33027 match community 2_137_155 set community 0:21235 ip community-list standard 2_29_238 permit 65000:2 0:29 0:238 ip community-list standard 2_34_203 permit 65000:2 0:34 0:203 ip community-list standard 2_58_119 permit 65000:2 0:58 0:119 route-map calculator permit 33028 match community 2_29_238 2_34_203 2_58_119 set community 0:6902 ip community-list standard 2_27_131 permit 65000:2 0:27 0:131 route-map calculator permit 33029 match community 2_27_131 set community 0:3537 ip community-list standard 2_172_241 permit 65000:2 0:172 0:241 route-map calculator permit 33030 match community 2_172_241 set community 0:41452 ip community-list standard 2_5_226 permit 65000:2 0:5 0:226 ip community-list standard 2_10_113 permit 65000:2 0:10 0:113 route-map calculator permit 33031 match community 2_5_226 2_10_113 set community 0:1130 ip community-list standard 2_12_157 permit 65000:2 0:12 0:157 route-map calculator permit 33032 match community 2_12_157 set community 0:1884 ip community-list standard 2_101_183 permit 65000:2 0:101 0:183 route-map calculator permit 33033 match community 2_101_183 set community 0:18483 ip community-list standard 2_76_199 permit 65000:2 0:76 0:199 route-map calculator permit 33034 match community 2_76_199 set community 0:15124 ip community-list standard 2_66_188 permit 65000:2 0:66 0:188 ip community-list standard 2_88_141 permit 65000:2 0:88 0:141 ip community-list standard 2_94_132 permit 65000:2 0:94 0:132 route-map calculator permit 33035 match community 2_66_188 2_88_141 2_94_132 set community 0:12408 ip community-list standard 2_82_203 permit 65000:2 0:82 0:203 route-map calculator permit 33036 match community 2_82_203 set community 0:16646 ip community-list standard 2_77_101 permit 65000:2 0:77 0:101 route-map calculator permit 33037 match community 2_77_101 set community 0:7777 ip community-list standard 2_44_201 permit 65000:2 0:44 0:201 ip community-list standard 2_66_134 permit 65000:2 0:66 0:134 ip community-list standard 2_67_132 permit 65000:2 0:67 0:132 route-map calculator permit 33038 match community 2_44_201 2_66_134 2_67_132 set community 0:8844 ip community-list standard 2_87_185 permit 65000:2 0:87 0:185 ip community-list standard 2_111_145 permit 65000:2 0:111 0:145 route-map calculator permit 33039 match community 2_87_185 2_111_145 set community 0:16095 ip community-list standard 2_189_218 permit 65000:2 0:189 0:218 route-map calculator permit 33040 match community 2_189_218 set community 0:41202 ip community-list standard 2_133_252 permit 65000:2 0:133 0:252 ip community-list standard 2_147_228 permit 65000:2 0:147 0:228 ip community-list standard 2_171_196 permit 65000:2 0:171 0:196 route-map calculator permit 33041 match community 2_133_252 2_147_228 2_171_196 set community 0:33516 ip community-list standard 2_9_221 permit 65000:2 0:9 0:221 ip community-list standard 2_13_153 permit 65000:2 0:13 0:153 ip community-list standard 2_17_117 permit 65000:2 0:17 0:117 ip community-list standard 2_39_51 permit 65000:2 0:39 0:51 route-map calculator permit 33042 match community 2_9_221 2_13_153 2_17_117 2_39_51 set community 0:1989 ip community-list standard 2_67_215 permit 65000:2 0:67 0:215 route-map calculator permit 33043 match community 2_67_215 set community 0:14405 ip community-list standard 1_1_97 permit 65000:1 0:1 0:97 ip community-list standard 2_1_98 permit 65000:2 0:1 0:98 ip community-list standard 2_2_49 permit 65000:2 0:2 0:49 ip community-list standard 1_2_96 permit 65000:1 0:2 0:96 ip community-list standard 1_3_95 permit 65000:1 0:3 0:95 ip community-list standard 1_4_94 permit 65000:1 0:4 0:94 ip community-list standard 1_5_93 permit 65000:1 0:5 0:93 ip community-list standard 1_6_92 permit 65000:1 0:6 0:92 ip community-list standard 2_7_14 permit 65000:2 0:7 0:14 ip community-list standard 1_7_91 permit 65000:1 0:7 0:91 ip community-list standard 1_8_90 permit 65000:1 0:8 0:90 ip community-list standard 1_9_89 permit 65000:1 0:9 0:89 ip community-list standard 1_10_88 permit 65000:1 0:10 0:88 ip community-list standard 1_11_87 permit 65000:1 0:11 0:87 ip community-list standard 1_12_86 permit 65000:1 0:12 0:86 ip community-list standard 1_13_85 permit 65000:1 0:13 0:85 ip community-list standard 1_14_84 permit 65000:1 0:14 0:84 ip community-list standard 1_15_83 permit 65000:1 0:15 0:83 ip community-list standard 1_16_82 permit 65000:1 0:16 0:82 ip community-list standard 1_17_81 permit 65000:1 0:17 0:81 ip community-list standard 1_18_80 permit 65000:1 0:18 0:80 ip community-list standard 1_19_79 permit 65000:1 0:19 0:79 ip community-list standard 1_20_78 permit 65000:1 0:20 0:78 ip community-list standard 1_21_77 permit 65000:1 0:21 0:77 ip community-list standard 1_22_76 permit 65000:1 0:22 0:76 ip community-list standard 1_23_75 permit 65000:1 0:23 0:75 ip community-list standard 1_24_74 permit 65000:1 0:24 0:74 ip community-list standard 1_25_73 permit 65000:1 0:25 0:73 ip community-list standard 1_26_72 permit 65000:1 0:26 0:72 ip community-list standard 1_27_71 permit 65000:1 0:27 0:71 ip community-list standard 1_28_70 permit 65000:1 0:28 0:70 ip community-list standard 1_29_69 permit 65000:1 0:29 0:69 ip community-list standard 1_30_68 permit 65000:1 0:30 0:68 ip community-list standard 1_31_67 permit 65000:1 0:31 0:67 ip community-list standard 1_32_66 permit 65000:1 0:32 0:66 ip community-list standard 1_33_65 permit 65000:1 0:33 0:65 ip community-list standard 1_34_64 permit 65000:1 0:34 0:64 ip community-list standard 1_35_63 permit 65000:1 0:35 0:63 ip community-list standard 1_36_62 permit 65000:1 0:36 0:62 ip community-list standard 1_37_61 permit 65000:1 0:37 0:61 ip community-list standard 1_38_60 permit 65000:1 0:38 0:60 ip community-list standard 1_39_59 permit 65000:1 0:39 0:59 ip community-list standard 1_40_58 permit 65000:1 0:40 0:58 ip community-list standard 1_41_57 permit 65000:1 0:41 0:57 ip community-list standard 1_42_56 permit 65000:1 0:42 0:56 ip community-list standard 1_43_55 permit 65000:1 0:43 0:55 ip community-list standard 1_44_54 permit 65000:1 0:44 0:54 ip community-list standard 1_45_53 permit 65000:1 0:45 0:53 ip community-list standard 1_46_52 permit 65000:1 0:46 0:52 ip community-list standard 1_47_51 permit 65000:1 0:47 0:51 ip community-list standard 1_48_50 permit 65000:1 0:48 0:50 ip community-list standard 1_49_49 permit 65000:1 0:49 0:49 ip community-list expanded c98 permit 1 ^65000:4_0:98_0:1$ ip community-list expanded c98 permit 2 ^65000:3_0:99_0:1$ ip community-list expanded c98 permit 3 ^65000:3_0:100_0:2$ ip community-list expanded c98 permit 4 ^65000:3_0:101_0:3$ ip community-list expanded c98 permit 5 ^65000:3_0:102_0:4$ ip community-list expanded c98 permit 6 ^65000:3_0:103_0:5$ ip community-list expanded c98 permit 7 ^65000:3_0:104_0:6$ ip community-list expanded c98 permit 8 ^65000:3_0:105_0:7$ ip community-list expanded c98 permit 9 ^65000:3_0:106_0:8$ ip community-list expanded c98 permit 10 ^65000:3_0:107_0:9$ ip community-list expanded c98 permit 11 ^65000:3_0:108_0:10$ ip community-list expanded c98 permit 12 ^65000:3_0:109_0:11$ ip community-list expanded c98 permit 13 ^65000:3_0:110_0:12$ ip community-list expanded c98 permit 14 ^65000:3_0:111_0:13$ ip community-list expanded c98 permit 15 ^65000:3_0:112_0:14$ ip community-list expanded c98 permit 16 ^65000:3_0:113_0:15$ ip community-list expanded c98 permit 17 ^65000:3_0:114_0:16$ ip community-list expanded c98 permit 18 ^65000:3_0:115_0:17$ ip community-list expanded c98 permit 19 ^65000:3_0:116_0:18$ ip community-list expanded c98 permit 20 ^65000:3_0:117_0:19$ ip community-list expanded c98 permit 21 ^65000:3_0:118_0:20$ ip community-list expanded c98 permit 22 ^65000:3_0:119_0:21$ ip community-list expanded c98 permit 23 ^65000:3_0:120_0:22$ ip community-list expanded c98 permit 24 ^65000:3_0:121_0:23$ ip community-list expanded c98 permit 25 ^65000:3_0:122_0:24$ ip community-list expanded c98 permit 26 ^65000:3_0:123_0:25$ ip community-list expanded c98 permit 27 ^65000:3_0:124_0:26$ ip community-list expanded c98 permit 28 ^65000:3_0:125_0:27$ ip community-list expanded c98 permit 29 ^65000:3_0:126_0:28$ ip community-list expanded c98 permit 30 ^65000:3_0:127_0:29$ ip community-list expanded c98 permit 31 ^65000:3_0:128_0:30$ ip community-list expanded c98 permit 32 ^65000:3_0:129_0:31$ ip community-list expanded c98 permit 33 ^65000:3_0:130_0:32$ ip community-list expanded c98 permit 34 ^65000:3_0:131_0:33$ ip community-list expanded c98 permit 35 ^65000:3_0:132_0:34$ ip community-list expanded c98 permit 36 ^65000:3_0:133_0:35$ ip community-list expanded c98 permit 37 ^65000:3_0:134_0:36$ ip community-list expanded c98 permit 38 ^65000:3_0:135_0:37$ ip community-list expanded c98 permit 39 ^65000:3_0:136_0:38$ ip community-list expanded c98 permit 40 ^65000:3_0:137_0:39$ ip community-list expanded c98 permit 41 ^65000:3_0:138_0:40$ ip community-list expanded c98 permit 42 ^65000:3_0:139_0:41$ ip community-list expanded c98 permit 43 ^65000:3_0:140_0:42$ ip community-list expanded c98 permit 44 ^65000:3_0:141_0:43$ ip community-list expanded c98 permit 45 ^65000:3_0:142_0:44$ ip community-list expanded c98 permit 46 ^65000:3_0:143_0:45$ ip community-list expanded c98 permit 47 ^65000:3_0:144_0:46$ ip community-list expanded c98 permit 48 ^65000:3_0:145_0:47$ ip community-list expanded c98 permit 49 ^65000:3_0:146_0:48$ ip community-list expanded c98 permit 50 ^65000:3_0:147_0:49$ ip community-list expanded c98 permit 51 ^65000:3_0:148_0:50$ ip community-list expanded c98 permit 52 ^65000:3_0:149_0:51$ ip community-list expanded c98 permit 53 ^65000:3_0:150_0:52$ ip community-list expanded c98 permit 54 ^65000:3_0:151_0:53$ ip community-list expanded c98 permit 55 ^65000:3_0:152_0:54$ ip community-list expanded c98 permit 56 ^65000:3_0:153_0:55$ ip community-list expanded c98 permit 57 ^65000:3_0:154_0:56$ ip community-list expanded c98 permit 58 ^65000:3_0:155_0:57$ ip community-list expanded c98 permit 59 ^65000:3_0:156_0:58$ ip community-list expanded c98 permit 60 ^65000:3_0:157_0:59$ ip community-list expanded c98 permit 61 ^65000:3_0:158_0:60$ ip community-list expanded c98 permit 62 ^65000:3_0:159_0:61$ ip community-list expanded c98 permit 63 ^65000:3_0:160_0:62$ ip community-list expanded c98 permit 64 ^65000:3_0:161_0:63$ ip community-list expanded c98 permit 65 ^65000:3_0:162_0:64$ ip community-list expanded c98 permit 66 ^65000:3_0:163_0:65$ ip community-list expanded c98 permit 67 ^65000:3_0:164_0:66$ ip community-list expanded c98 permit 68 ^65000:3_0:165_0:67$ ip community-list expanded c98 permit 69 ^65000:3_0:166_0:68$ ip community-list expanded c98 permit 70 ^65000:3_0:167_0:69$ ip community-list expanded c98 permit 71 ^65000:3_0:168_0:70$ ip community-list expanded c98 permit 72 ^65000:3_0:169_0:71$ ip community-list expanded c98 permit 73 ^65000:3_0:170_0:72$ ip community-list expanded c98 permit 74 ^65000:3_0:171_0:73$ ip community-list expanded c98 permit 75 ^65000:3_0:172_0:74$ ip community-list expanded c98 permit 76 ^65000:3_0:173_0:75$ ip community-list expanded c98 permit 77 ^65000:3_0:174_0:76$ ip community-list expanded c98 permit 78 ^65000:3_0:175_0:77$ ip community-list expanded c98 permit 79 ^65000:3_0:176_0:78$ ip community-list expanded c98 permit 80 ^65000:3_0:177_0:79$ ip community-list expanded c98 permit 81 ^65000:3_0:178_0:80$ ip community-list expanded c98 permit 82 ^65000:3_0:179_0:81$ ip community-list expanded c98 permit 83 ^65000:3_0:180_0:82$ ip community-list expanded c98 permit 84 ^65000:3_0:181_0:83$ ip community-list expanded c98 permit 85 ^65000:3_0:182_0:84$ ip community-list expanded c98 permit 86 ^65000:3_0:183_0:85$ ip community-list expanded c98 permit 87 ^65000:3_0:184_0:86$ ip community-list expanded c98 permit 88 ^65000:3_0:185_0:87$ ip community-list expanded c98 permit 89 ^65000:3_0:186_0:88$ ip community-list expanded c98 permit 90 ^65000:3_0:187_0:89$ ip community-list expanded c98 permit 91 ^65000:3_0:188_0:90$ ip community-list expanded c98 permit 92 ^65000:3_0:189_0:91$ ip community-list expanded c98 permit 93 ^65000:3_0:190_0:92$ ip community-list expanded c98 permit 94 ^65000:3_0:191_0:93$ ip community-list expanded c98 permit 95 ^65000:3_0:192_0:94$ ip community-list expanded c98 permit 96 ^65000:3_0:193_0:95$ ip community-list expanded c98 permit 97 ^65000:3_0:194_0:96$ ip community-list expanded c98 permit 98 ^65000:3_0:195_0:97$ ip community-list expanded c98 permit 99 ^65000:4_0:196_0:2$ ip community-list expanded c98 permit 100 ^65000:3_0:196_0:98$ ip community-list expanded c98 permit 101 ^65000:4_0:197_0:2$ ip community-list expanded c98 permit 102 ^65000:3_0:197_0:99$ ip community-list expanded c98 permit 103 ^65000:3_0:198_0:100$ ip community-list expanded c98 permit 104 ^65000:3_0:199_0:101$ ip community-list expanded c98 permit 105 ^65000:3_0:200_0:102$ ip community-list expanded c98 permit 106 ^65000:3_0:201_0:103$ ip community-list expanded c98 permit 107 ^65000:3_0:202_0:104$ ip community-list expanded c98 permit 108 ^65000:3_0:203_0:105$ ip community-list expanded c98 permit 109 ^65000:3_0:204_0:106$ ip community-list expanded c98 permit 110 ^65000:3_0:205_0:107$ ip community-list expanded c98 permit 111 ^65000:3_0:206_0:108$ ip community-list expanded c98 permit 112 ^65000:3_0:207_0:109$ ip community-list expanded c98 permit 113 ^65000:3_0:208_0:110$ ip community-list expanded c98 permit 114 ^65000:3_0:209_0:111$ ip community-list expanded c98 permit 115 ^65000:3_0:210_0:112$ ip community-list expanded c98 permit 116 ^65000:3_0:211_0:113$ ip community-list expanded c98 permit 117 ^65000:3_0:212_0:114$ ip community-list expanded c98 permit 118 ^65000:3_0:213_0:115$ ip community-list expanded c98 permit 119 ^65000:3_0:214_0:116$ ip community-list expanded c98 permit 120 ^65000:3_0:215_0:117$ ip community-list expanded c98 permit 121 ^65000:3_0:216_0:118$ ip community-list expanded c98 permit 122 ^65000:3_0:217_0:119$ ip community-list expanded c98 permit 123 ^65000:3_0:218_0:120$ ip community-list expanded c98 permit 124 ^65000:3_0:219_0:121$ ip community-list expanded c98 permit 125 ^65000:3_0:220_0:122$ ip community-list expanded c98 permit 126 ^65000:3_0:221_0:123$ ip community-list expanded c98 permit 127 ^65000:3_0:222_0:124$ ip community-list expanded c98 permit 128 ^65000:3_0:223_0:125$ ip community-list expanded c98 permit 129 ^65000:3_0:224_0:126$ ip community-list expanded c98 permit 130 ^65000:3_0:225_0:127$ ip community-list expanded c98 permit 131 ^65000:3_0:226_0:128$ ip community-list expanded c98 permit 132 ^65000:3_0:227_0:129$ ip community-list expanded c98 permit 133 ^65000:3_0:228_0:130$ ip community-list expanded c98 permit 134 ^65000:3_0:229_0:131$ ip community-list expanded c98 permit 135 ^65000:3_0:230_0:132$ ip community-list expanded c98 permit 136 ^65000:3_0:231_0:133$ ip community-list expanded c98 permit 137 ^65000:3_0:232_0:134$ ip community-list expanded c98 permit 138 ^65000:3_0:233_0:135$ ip community-list expanded c98 permit 139 ^65000:3_0:234_0:136$ ip community-list expanded c98 permit 140 ^65000:3_0:235_0:137$ ip community-list expanded c98 permit 141 ^65000:3_0:236_0:138$ ip community-list expanded c98 permit 142 ^65000:3_0:237_0:139$ ip community-list expanded c98 permit 143 ^65000:3_0:238_0:140$ ip community-list expanded c98 permit 144 ^65000:3_0:239_0:141$ ip community-list expanded c98 permit 145 ^65000:3_0:240_0:142$ ip community-list expanded c98 permit 146 ^65000:3_0:241_0:143$ ip community-list expanded c98 permit 147 ^65000:3_0:242_0:144$ ip community-list expanded c98 permit 148 ^65000:3_0:243_0:145$ ip community-list expanded c98 permit 149 ^65000:3_0:244_0:146$ ip community-list expanded c98 permit 150 ^65000:3_0:245_0:147$ ip community-list expanded c98 permit 151 ^65000:3_0:246_0:148$ ip community-list expanded c98 permit 152 ^65000:3_0:247_0:149$ ip community-list expanded c98 permit 153 ^65000:3_0:248_0:150$ ip community-list expanded c98 permit 154 ^65000:3_0:249_0:151$ ip community-list expanded c98 permit 155 ^65000:3_0:250_0:152$ ip community-list expanded c98 permit 156 ^65000:3_0:251_0:153$ ip community-list expanded c98 permit 157 ^65000:3_0:252_0:154$ ip community-list expanded c98 permit 158 ^65000:3_0:253_0:155$ ip community-list expanded c98 permit 159 ^65000:3_0:254_0:156$ ip community-list expanded c98 permit 160 ^65000:3_0:255_0:157$ ip community-list expanded c98 permit 161 ^65000:3_0:256_0:158$ route-map calculator permit 33044 match community 1_1_97 2_1_98 2_2_49 1_2_96 1_3_95 set community 0:98 route-map calculator permit 33045 match community 1_4_94 1_5_93 1_6_92 2_7_14 1_7_91 set community 0:98 route-map calculator permit 33046 match community 1_8_90 1_9_89 1_10_88 1_11_87 1_12_86 set community 0:98 route-map calculator permit 33047 match community 1_13_85 1_14_84 1_15_83 1_16_82 1_17_81 set community 0:98 route-map calculator permit 33048 match community 1_18_80 1_19_79 1_20_78 1_21_77 1_22_76 set community 0:98 route-map calculator permit 33049 match community 1_23_75 1_24_74 1_25_73 1_26_72 1_27_71 set community 0:98 route-map calculator permit 33050 match community 1_28_70 1_29_69 1_30_68 1_31_67 1_32_66 set community 0:98 route-map calculator permit 33051 match community 1_33_65 1_34_64 1_35_63 1_36_62 1_37_61 set community 0:98 route-map calculator permit 33052 match community 1_38_60 1_39_59 1_40_58 1_41_57 1_42_56 set community 0:98 route-map calculator permit 33053 match community 1_43_55 1_44_54 1_45_53 1_46_52 1_47_51 set community 0:98 route-map calculator permit 33054 match community 1_48_50 1_49_49 c4_98_1 c3_99_1 c3_100_2 set community 0:98 route-map calculator permit 33055 match community c3_101_3 c3_102_4 c3_103_5 c3_104_6 c3_105_7 set community 0:98 route-map calculator permit 33056 match community c3_106_8 c3_107_9 c3_108_10 c3_109_11 c3_110_12 set community 0:98 route-map calculator permit 33057 match community c3_111_13 c3_112_14 c3_113_15 c3_114_16 c3_115_17 set community 0:98 route-map calculator permit 33058 match community c3_116_18 c3_117_19 c3_118_20 c3_119_21 c3_120_22 set community 0:98 route-map calculator permit 33059 match community c3_121_23 c3_122_24 c3_123_25 c3_124_26 c3_125_27 set community 0:98 route-map calculator permit 33060 match community c3_126_28 c3_127_29 c3_128_30 c3_129_31 c3_130_32 set community 0:98 route-map calculator permit 33061 match community c3_131_33 c3_132_34 c3_133_35 c3_134_36 c3_135_37 set community 0:98 route-map calculator permit 33062 match community c3_136_38 c3_137_39 c3_138_40 c3_139_41 c3_140_42 set community 0:98 route-map calculator permit 33063 match community c3_141_43 c3_142_44 c3_143_45 c3_144_46 c3_145_47 set community 0:98 route-map calculator permit 33064 match community c3_146_48 c3_147_49 c3_148_50 c3_149_51 c3_150_52 set community 0:98 route-map calculator permit 33065 match community c3_151_53 c3_152_54 c3_153_55 c3_154_56 c3_155_57 set community 0:98 route-map calculator permit 33066 match community c3_156_58 c3_157_59 c3_158_60 c3_159_61 c3_160_62 set community 0:98 route-map calculator permit 33067 match community c3_161_63 c3_162_64 c3_163_65 c3_164_66 c3_165_67 set community 0:98 route-map calculator permit 33068 match community c3_166_68 c3_167_69 c3_168_70 c3_169_71 c3_170_72 set community 0:98 route-map calculator permit 33069 match community c3_171_73 c3_172_74 c3_173_75 c3_174_76 c3_175_77 set community 0:98 route-map calculator permit 33070 match community c3_176_78 c3_177_79 c3_178_80 c3_179_81 c3_180_82 set community 0:98 route-map calculator permit 33071 match community c3_181_83 c3_182_84 c3_183_85 c3_184_86 c3_185_87 set community 0:98 route-map calculator permit 33072 match community c3_186_88 c3_187_89 c3_188_90 c3_189_91 c3_190_92 set community 0:98 route-map calculator permit 33073 match community c3_191_93 c3_192_94 c3_193_95 c3_194_96 c3_195_97 set community 0:98 route-map calculator permit 33074 match community c4_196_2 c3_196_98 c4_197_2 c3_197_99 c3_198_100 set community 0:98 route-map calculator permit 33075 match community c3_199_101 c3_200_102 c3_201_103 c3_202_104 c3_203_105 set community 0:98 route-map calculator permit 33076 match community c3_204_106 c3_205_107 c3_206_108 c3_207_109 c3_208_110 set community 0:98 route-map calculator permit 33077 match community c3_209_111 c3_210_112 c3_211_113 c3_212_114 c3_213_115 set community 0:98 route-map calculator permit 33078 match community c3_214_116 c3_215_117 c3_216_118 c3_217_119 c3_218_120 set community 0:98 route-map calculator permit 33079 match community c3_219_121 c3_220_122 c3_221_123 c3_222_124 c3_223_125 set community 0:98 route-map calculator permit 33080 match community c3_224_126 c3_225_127 c3_226_128 c3_227_129 c3_228_130 set community 0:98 route-map calculator permit 33081 match community c3_229_131 c3_230_132 c3_231_133 c3_232_134 c3_233_135 set community 0:98 route-map calculator permit 33082 match community c3_234_136 c3_235_137 c3_236_138 c3_237_139 c3_238_140 set community 0:98 route-map calculator permit 33083 match community c3_239_141 c3_240_142 c3_241_143 c3_242_144 c3_243_145 set community 0:98 route-map calculator permit 33084 match community c3_244_146 c3_245_147 c3_246_148 c3_247_149 c3_248_150 set community 0:98 route-map calculator permit 33085 match community c3_249_151 c3_250_152 c3_251_153 c3_252_154 c3_253_155 set community 0:98 route-map calculator permit 33086 match community c3_254_156 c3_255_157 c3_256_158 set community 0:98 ip community-list standard 2_107_145 permit 65000:2 0:107 0:145 route-map calculator permit 33087 match community 2_107_145 set community 0:15515 ip community-list standard 2_38_166 permit 65000:2 0:38 0:166 ip community-list standard 2_76_83 permit 65000:2 0:76 0:83 route-map calculator permit 33088 match community 2_38_166 2_76_83 set community 0:6308 ip community-list standard 2_195_232 permit 65000:2 0:195 0:232 route-map calculator permit 33089 match community 2_195_232 set community 0:45240 ip community-list standard 2_26_146 permit 65000:2 0:26 0:146 ip community-list standard 2_52_73 permit 65000:2 0:52 0:73 route-map calculator permit 33090 match community 2_26_146 2_52_73 set community 0:3796 ip community-list standard 2_137_235 permit 65000:2 0:137 0:235 route-map calculator permit 33091 match community 2_137_235 set community 0:32195 ip community-list standard 2_15_127 permit 65000:2 0:15 0:127 route-map calculator permit 33092 match community 2_15_127 set community 0:1905 ip community-list standard 2_37_107 permit 65000:2 0:37 0:107 route-map calculator permit 33093 match community 2_37_107 set community 0:3959 ip community-list standard 2_172_176 permit 65000:2 0:172 0:176 route-map calculator permit 33094 match community 2_172_176 set community 0:30272 ip community-list standard 2_146_248 permit 65000:2 0:146 0:248 route-map calculator permit 33095 match community 2_146_248 set community 0:36208 ip community-list standard 2_116_254 permit 65000:2 0:116 0:254 ip community-list standard 2_127_232 permit 65000:2 0:127 0:232 route-map calculator permit 33096 match community 2_116_254 2_127_232 set community 0:29464 ip community-list standard 2_11_61 permit 65000:2 0:11 0:61 route-map calculator permit 33097 match community 2_11_61 set community 0:671 ip community-list standard 2_92_250 permit 65000:2 0:92 0:250 ip community-list standard 2_100_230 permit 65000:2 0:100 0:230 ip community-list standard 2_115_200 permit 65000:2 0:115 0:200 ip community-list standard 2_125_184 permit 65000:2 0:125 0:184 route-map calculator permit 33098 match community 2_92_250 2_100_230 2_115_200 2_125_184 set community 0:23000 ip community-list standard 2_79_121 permit 65000:2 0:79 0:121 route-map calculator permit 33099 match community 2_79_121 set community 0:9559 ip community-list standard 2_84_191 permit 65000:2 0:84 0:191 route-map calculator permit 33100 match community 2_84_191 set community 0:16044 ip community-list standard 2_70_254 permit 65000:2 0:70 0:254 ip community-list standard 2_127_140 permit 65000:2 0:127 0:140 route-map calculator permit 33101 match community 2_70_254 2_127_140 set community 0:17780 ip community-list standard 2_54_227 permit 65000:2 0:54 0:227 route-map calculator permit 33102 match community 2_54_227 set community 0:12258 ip community-list standard 2_184_229 permit 65000:2 0:184 0:229 route-map calculator permit 33103 match community 2_184_229 set community 0:42136 ip community-list standard 2_93_238 permit 65000:2 0:93 0:238 ip community-list standard 2_102_217 permit 65000:2 0:102 0:217 ip community-list standard 2_119_186 permit 65000:2 0:119 0:186 route-map calculator permit 33104 match community 2_93_238 2_102_217 2_119_186 set community 0:22134 ip community-list standard 2_121_141 permit 65000:2 0:121 0:141 route-map calculator permit 33105 match community 2_121_141 set community 0:17061 ip community-list standard 2_242_254 permit 65000:2 0:242 0:254 route-map calculator permit 33106 match community 2_242_254 set community 0:61468 ip community-list standard 2_164_224 permit 65000:2 0:164 0:224 route-map calculator permit 33107 match community 2_164_224 set community 0:36736 ip community-list standard 2_167_239 permit 65000:2 0:167 0:239 route-map calculator permit 33108 match community 2_167_239 set community 0:39913 ip community-list standard 2_157_184 permit 65000:2 0:157 0:184 route-map calculator permit 33109 match community 2_157_184 set community 0:28888 ip community-list standard 2_113_139 permit 65000:2 0:113 0:139 route-map calculator permit 33110 match community 2_113_139 set community 0:15707 ip community-list standard 2_29_251 permit 65000:2 0:29 0:251 route-map calculator permit 33111 match community 2_29_251 set community 0:7279 ip community-list standard 2_21_222 permit 65000:2 0:21 0:222 ip community-list standard 2_37_126 permit 65000:2 0:37 0:126 ip community-list standard 2_42_111 permit 65000:2 0:42 0:111 ip community-list standard 2_63_74 permit 65000:2 0:63 0:74 route-map calculator permit 33112 match community 2_21_222 2_37_126 2_42_111 2_63_74 set community 0:4662 ip community-list standard 2_53_182 permit 65000:2 0:53 0:182 ip community-list standard 2_91_106 permit 65000:2 0:91 0:106 route-map calculator permit 33113 match community 2_53_182 2_91_106 set community 0:9646 ip community-list standard 2_113_145 permit 65000:2 0:113 0:145 route-map calculator permit 33114 match community 2_113_145 set community 0:16385 ip community-list standard 2_117_193 permit 65000:2 0:117 0:193 route-map calculator permit 33115 match community 2_117_193 set community 0:22581 ip community-list standard 2_134_241 permit 65000:2 0:134 0:241 route-map calculator permit 33116 match community 2_134_241 set community 0:32294 ip community-list standard 2_61_107 permit 65000:2 0:61 0:107 route-map calculator permit 33117 match community 2_61_107 set community 0:6527 ip community-list standard 2_219_225 permit 65000:2 0:219 0:225 route-map calculator permit 33118 match community 2_219_225 set community 0:49275 ip community-list standard 2_46_139 permit 65000:2 0:46 0:139 route-map calculator permit 33119 match community 2_46_139 set community 0:6394 ip community-list standard 2_4_241 permit 65000:2 0:4 0:241 route-map calculator permit 33120 match community 2_4_241 set community 0:964 ip community-list standard 2_163_237 permit 65000:2 0:163 0:237 route-map calculator permit 33121 match community 2_163_237 set community 0:38631 ip community-list standard 2_132_139 permit 65000:2 0:132 0:139 route-map calculator permit 33122 match community 2_132_139 set community 0:18348 ip community-list standard 2_49_201 permit 65000:2 0:49 0:201 ip community-list standard 2_67_147 permit 65000:2 0:67 0:147 route-map calculator permit 33123 match community 2_49_201 2_67_147 set community 0:9849 ip community-list standard 2_74_227 permit 65000:2 0:74 0:227 route-map calculator permit 33124 match community 2_74_227 set community 0:16798 ip community-list standard 2_26_234 permit 65000:2 0:26 0:234 ip community-list standard 2_36_169 permit 65000:2 0:36 0:169 ip community-list standard 2_39_156 permit 65000:2 0:39 0:156 ip community-list standard 2_52_117 permit 65000:2 0:52 0:117 ip community-list standard 2_78_78 permit 65000:2 0:78 0:78 route-map calculator permit 33125 match community 2_26_234 2_36_169 2_39_156 2_52_117 2_78_78 set community 0:6084 ip community-list standard 2_34_204 permit 65000:2 0:34 0:204 ip community-list standard 2_51_136 permit 65000:2 0:51 0:136 ip community-list standard 2_68_102 permit 65000:2 0:68 0:102 route-map calculator permit 33126 match community 2_34_204 2_51_136 2_68_102 set community 0:6936 ip community-list standard 2_134_240 permit 65000:2 0:134 0:240 ip community-list standard 2_160_201 permit 65000:2 0:160 0:201 route-map calculator permit 33127 match community 2_134_240 2_160_201 set community 0:32160 ip community-list standard 2_120_193 permit 65000:2 0:120 0:193 route-map calculator permit 33128 match community 2_120_193 set community 0:23160 ip community-list standard 2_188_242 permit 65000:2 0:188 0:242 route-map calculator permit 33129 match community 2_188_242 set community 0:45496 ip community-list standard 2_185_241 permit 65000:2 0:185 0:241 route-map calculator permit 33130 match community 2_185_241 set community 0:44585 ip community-list standard 2_107_181 permit 65000:2 0:107 0:181 route-map calculator permit 33131 match community 2_107_181 set community 0:19367 ip community-list standard 2_100_253 permit 65000:2 0:100 0:253 ip community-list standard 2_110_230 permit 65000:2 0:110 0:230 ip community-list standard 2_115_220 permit 65000:2 0:115 0:220 route-map calculator permit 33132 match community 2_100_253 2_110_230 2_115_220 set community 0:25300 ip community-list standard 2_143_242 permit 65000:2 0:143 0:242 route-map calculator permit 33133 match community 2_143_242 set community 0:34606 ip community-list standard 2_28_222 permit 65000:2 0:28 0:222 ip community-list standard 2_37_168 permit 65000:2 0:37 0:168 ip community-list standard 2_42_148 permit 65000:2 0:42 0:148 ip community-list standard 2_56_111 permit 65000:2 0:56 0:111 ip community-list standard 2_74_84 permit 65000:2 0:74 0:84 route-map calculator permit 33134 match community 2_28_222 2_37_168 2_42_148 2_56_111 2_74_84 set community 0:6216 ip community-list standard 2_188_193 permit 65000:2 0:188 0:193 route-map calculator permit 33135 match community 2_188_193 set community 0:36284 ip community-list standard 2_164_247 permit 65000:2 0:164 0:247 route-map calculator permit 33136 match community 2_164_247 set community 0:40508 ip community-list standard 2_103_239 permit 65000:2 0:103 0:239 route-map calculator permit 33137 match community 2_103_239 set community 0:24617 ip community-list standard 2_119_161 permit 65000:2 0:119 0:161 route-map calculator permit 33138 match community 2_119_161 set community 0:19159 ip community-list standard 2_66_255 permit 65000:2 0:66 0:255 ip community-list standard 2_85_198 permit 65000:2 0:85 0:198 ip community-list standard 2_90_187 permit 65000:2 0:90 0:187 ip community-list standard 2_99_170 permit 65000:2 0:99 0:170 ip community-list standard 2_102_165 permit 65000:2 0:102 0:165 ip community-list standard 2_110_153 permit 65000:2 0:110 0:153 route-map calculator permit 33139 match community 2_66_255 2_85_198 2_90_187 2_99_170 2_102_165 set community 0:16830 route-map calculator permit 33140 match community 2_110_153 set community 0:16830 ip community-list standard 2_122_195 permit 65000:2 0:122 0:195 ip community-list standard 2_130_183 permit 65000:2 0:130 0:183 route-map calculator permit 33141 match community 2_122_195 2_130_183 set community 0:23790 ip community-list standard 2_203_238 permit 65000:2 0:203 0:238 route-map calculator permit 33142 match community 2_203_238 set community 0:48314 ip community-list standard 2_255_256 permit 65000:2 0:255 0:256 route-map calculator permit 33143 match community 2_255_256 set community 0:65280 ip community-list standard 2_60_178 permit 65000:2 0:60 0:178 ip community-list standard 2_89_120 permit 65000:2 0:89 0:120 route-map calculator permit 33144 match community 2_60_178 2_89_120 set community 0:10680 ip community-list standard 2_173_179 permit 65000:2 0:173 0:179 route-map calculator permit 33145 match community 2_173_179 set community 0:30967 ip community-list standard 2_74_187 permit 65000:2 0:74 0:187 route-map calculator permit 33146 match community 2_74_187 set community 0:13838 ip community-list standard 2_163_244 permit 65000:2 0:163 0:244 route-map calculator permit 33147 match community 2_163_244 set community 0:39772 ip community-list standard 2_154_163 permit 65000:2 0:154 0:163 route-map calculator permit 33148 match community 2_154_163 set community 0:25102 ip community-list standard 2_15_191 permit 65000:2 0:15 0:191 route-map calculator permit 33149 match community 2_15_191 set community 0:2865 ip community-list standard 2_12_225 permit 65000:2 0:12 0:225 ip community-list standard 2_15_180 permit 65000:2 0:15 0:180 ip community-list standard 2_18_150 permit 65000:2 0:18 0:150 ip community-list standard 2_20_135 permit 65000:2 0:20 0:135 ip community-list standard 2_25_108 permit 65000:2 0:25 0:108 ip community-list standard 2_27_100 permit 65000:2 0:27 0:100 ip community-list standard 2_30_90 permit 65000:2 0:30 0:90 ip community-list standard 2_36_75 permit 65000:2 0:36 0:75 ip community-list standard 2_45_60 permit 65000:2 0:45 0:60 ip community-list standard 2_50_54 permit 65000:2 0:50 0:54 route-map calculator permit 33150 match community 2_12_225 2_15_180 2_18_150 2_20_135 2_25_108 set community 0:2700 route-map calculator permit 33151 match community 2_27_100 2_30_90 2_36_75 2_45_60 2_50_54 set community 0:2700 ip community-list standard 2_99_214 permit 65000:2 0:99 0:214 ip community-list standard 2_107_198 permit 65000:2 0:107 0:198 route-map calculator permit 33152 match community 2_99_214 2_107_198 set community 0:21186 ip community-list standard 2_85_119 permit 65000:2 0:85 0:119 route-map calculator permit 33153 match community 2_85_119 set community 0:10115 ip community-list standard 2_158_236 permit 65000:2 0:158 0:236 route-map calculator permit 33154 match community 2_158_236 set community 0:37288 ip community-list standard 1_1_40 permit 65000:1 0:1 0:40 ip community-list standard 2_1_41 permit 65000:2 0:1 0:41 ip community-list standard 1_2_39 permit 65000:1 0:2 0:39 ip community-list standard 1_3_38 permit 65000:1 0:3 0:38 ip community-list standard 1_4_37 permit 65000:1 0:4 0:37 ip community-list standard 1_5_36 permit 65000:1 0:5 0:36 ip community-list standard 1_6_35 permit 65000:1 0:6 0:35 ip community-list standard 1_7_34 permit 65000:1 0:7 0:34 ip community-list standard 1_8_33 permit 65000:1 0:8 0:33 ip community-list standard 1_9_32 permit 65000:1 0:9 0:32 ip community-list standard 1_10_31 permit 65000:1 0:10 0:31 ip community-list standard 1_11_30 permit 65000:1 0:11 0:30 ip community-list standard 1_12_29 permit 65000:1 0:12 0:29 ip community-list standard 1_13_28 permit 65000:1 0:13 0:28 ip community-list standard 1_14_27 permit 65000:1 0:14 0:27 ip community-list standard 1_15_26 permit 65000:1 0:15 0:26 ip community-list standard 1_16_25 permit 65000:1 0:16 0:25 ip community-list standard 1_17_24 permit 65000:1 0:17 0:24 ip community-list standard 1_18_23 permit 65000:1 0:18 0:23 ip community-list standard 1_19_22 permit 65000:1 0:19 0:22 ip community-list standard 1_20_21 permit 65000:1 0:20 0:21 ip community-list expanded c41 permit 1 ^65000:4_0:41_0:1$ ip community-list expanded c41 permit 2 ^65000:3_0:42_0:1$ ip community-list expanded c41 permit 3 ^65000:3_0:43_0:2$ ip community-list expanded c41 permit 4 ^65000:3_0:44_0:3$ ip community-list expanded c41 permit 5 ^65000:3_0:45_0:4$ ip community-list expanded c41 permit 6 ^65000:3_0:46_0:5$ ip community-list expanded c41 permit 7 ^65000:3_0:47_0:6$ ip community-list expanded c41 permit 8 ^65000:3_0:48_0:7$ ip community-list expanded c41 permit 9 ^65000:3_0:49_0:8$ ip community-list expanded c41 permit 10 ^65000:3_0:50_0:9$ ip community-list expanded c41 permit 11 ^65000:3_0:51_0:10$ ip community-list expanded c41 permit 12 ^65000:3_0:52_0:11$ ip community-list expanded c41 permit 13 ^65000:3_0:53_0:12$ ip community-list expanded c41 permit 14 ^65000:3_0:54_0:13$ ip community-list expanded c41 permit 15 ^65000:3_0:55_0:14$ ip community-list expanded c41 permit 16 ^65000:3_0:56_0:15$ ip community-list expanded c41 permit 17 ^65000:3_0:57_0:16$ ip community-list expanded c41 permit 18 ^65000:3_0:58_0:17$ ip community-list expanded c41 permit 19 ^65000:3_0:59_0:18$ ip community-list expanded c41 permit 20 ^65000:3_0:60_0:19$ ip community-list expanded c41 permit 21 ^65000:3_0:61_0:20$ ip community-list expanded c41 permit 22 ^65000:3_0:62_0:21$ ip community-list expanded c41 permit 23 ^65000:3_0:63_0:22$ ip community-list expanded c41 permit 24 ^65000:3_0:64_0:23$ ip community-list expanded c41 permit 25 ^65000:3_0:65_0:24$ ip community-list expanded c41 permit 26 ^65000:3_0:66_0:25$ ip community-list expanded c41 permit 27 ^65000:3_0:67_0:26$ ip community-list expanded c41 permit 28 ^65000:3_0:68_0:27$ ip community-list expanded c41 permit 29 ^65000:3_0:69_0:28$ ip community-list expanded c41 permit 30 ^65000:3_0:70_0:29$ ip community-list expanded c41 permit 31 ^65000:3_0:71_0:30$ ip community-list expanded c41 permit 32 ^65000:3_0:72_0:31$ ip community-list expanded c41 permit 33 ^65000:3_0:73_0:32$ ip community-list expanded c41 permit 34 ^65000:3_0:74_0:33$ ip community-list expanded c41 permit 35 ^65000:3_0:75_0:34$ ip community-list expanded c41 permit 36 ^65000:3_0:76_0:35$ ip community-list expanded c41 permit 37 ^65000:3_0:77_0:36$ ip community-list expanded c41 permit 38 ^65000:3_0:78_0:37$ ip community-list expanded c41 permit 39 ^65000:3_0:79_0:38$ ip community-list expanded c41 permit 40 ^65000:3_0:80_0:39$ ip community-list expanded c41 permit 41 ^65000:3_0:81_0:40$ ip community-list expanded c41 permit 42 ^65000:4_0:82_0:2$ ip community-list expanded c41 permit 43 ^65000:3_0:82_0:41$ ip community-list expanded c41 permit 44 ^65000:4_0:83_0:2$ ip community-list expanded c41 permit 45 ^65000:3_0:83_0:42$ ip community-list expanded c41 permit 46 ^65000:3_0:84_0:43$ ip community-list expanded c41 permit 47 ^65000:3_0:85_0:44$ ip community-list expanded c41 permit 48 ^65000:3_0:86_0:45$ ip community-list expanded c41 permit 49 ^65000:3_0:87_0:46$ ip community-list expanded c41 permit 50 ^65000:3_0:88_0:47$ ip community-list expanded c41 permit 51 ^65000:3_0:89_0:48$ ip community-list expanded c41 permit 52 ^65000:3_0:90_0:49$ ip community-list expanded c41 permit 53 ^65000:3_0:91_0:50$ ip community-list expanded c41 permit 54 ^65000:3_0:92_0:51$ ip community-list expanded c41 permit 55 ^65000:3_0:93_0:52$ ip community-list expanded c41 permit 56 ^65000:3_0:94_0:53$ ip community-list expanded c41 permit 57 ^65000:3_0:95_0:54$ ip community-list expanded c41 permit 58 ^65000:3_0:96_0:55$ ip community-list expanded c41 permit 59 ^65000:3_0:97_0:56$ ip community-list expanded c41 permit 60 ^65000:3_0:98_0:57$ ip community-list expanded c41 permit 61 ^65000:3_0:99_0:58$ ip community-list expanded c41 permit 62 ^65000:3_0:100_0:59$ ip community-list expanded c41 permit 63 ^65000:3_0:101_0:60$ ip community-list expanded c41 permit 64 ^65000:3_0:102_0:61$ ip community-list expanded c41 permit 65 ^65000:3_0:103_0:62$ ip community-list expanded c41 permit 66 ^65000:3_0:104_0:63$ ip community-list expanded c41 permit 67 ^65000:3_0:105_0:64$ ip community-list expanded c41 permit 68 ^65000:3_0:106_0:65$ ip community-list expanded c41 permit 69 ^65000:3_0:107_0:66$ ip community-list expanded c41 permit 70 ^65000:3_0:108_0:67$ ip community-list expanded c41 permit 71 ^65000:3_0:109_0:68$ ip community-list expanded c41 permit 72 ^65000:3_0:110_0:69$ ip community-list expanded c41 permit 73 ^65000:3_0:111_0:70$ ip community-list expanded c41 permit 74 ^65000:3_0:112_0:71$ ip community-list expanded c41 permit 75 ^65000:3_0:113_0:72$ ip community-list expanded c41 permit 76 ^65000:3_0:114_0:73$ ip community-list expanded c41 permit 77 ^65000:3_0:115_0:74$ ip community-list expanded c41 permit 78 ^65000:3_0:116_0:75$ ip community-list expanded c41 permit 79 ^65000:3_0:117_0:76$ ip community-list expanded c41 permit 80 ^65000:3_0:118_0:77$ ip community-list expanded c41 permit 81 ^65000:3_0:119_0:78$ ip community-list expanded c41 permit 82 ^65000:3_0:120_0:79$ ip community-list expanded c41 permit 83 ^65000:3_0:121_0:80$ ip community-list expanded c41 permit 84 ^65000:3_0:122_0:81$ ip community-list expanded c41 permit 85 ^65000:4_0:123_0:3$ ip community-list expanded c41 permit 86 ^65000:3_0:123_0:82$ ip community-list expanded c41 permit 87 ^65000:4_0:124_0:3$ ip community-list expanded c41 permit 88 ^65000:3_0:124_0:83$ ip community-list expanded c41 permit 89 ^65000:4_0:125_0:3$ ip community-list expanded c41 permit 90 ^65000:3_0:125_0:84$ ip community-list expanded c41 permit 91 ^65000:3_0:126_0:85$ ip community-list expanded c41 permit 92 ^65000:3_0:127_0:86$ ip community-list expanded c41 permit 93 ^65000:3_0:128_0:87$ ip community-list expanded c41 permit 94 ^65000:3_0:129_0:88$ ip community-list expanded c41 permit 95 ^65000:3_0:130_0:89$ ip community-list expanded c41 permit 96 ^65000:3_0:131_0:90$ ip community-list expanded c41 permit 97 ^65000:3_0:132_0:91$ ip community-list expanded c41 permit 98 ^65000:3_0:133_0:92$ ip community-list expanded c41 permit 99 ^65000:3_0:134_0:93$ ip community-list expanded c41 permit 100 ^65000:3_0:135_0:94$ ip community-list expanded c41 permit 101 ^65000:3_0:136_0:95$ ip community-list expanded c41 permit 102 ^65000:3_0:137_0:96$ ip community-list expanded c41 permit 103 ^65000:3_0:138_0:97$ ip community-list expanded c41 permit 104 ^65000:3_0:139_0:98$ ip community-list expanded c41 permit 105 ^65000:3_0:140_0:99$ ip community-list expanded c41 permit 106 ^65000:3_0:141_0:100$ ip community-list expanded c41 permit 107 ^65000:3_0:142_0:101$ ip community-list expanded c41 permit 108 ^65000:3_0:143_0:102$ ip community-list expanded c41 permit 109 ^65000:3_0:144_0:103$ ip community-list expanded c41 permit 110 ^65000:3_0:145_0:104$ ip community-list expanded c41 permit 111 ^65000:3_0:146_0:105$ ip community-list expanded c41 permit 112 ^65000:3_0:147_0:106$ ip community-list expanded c41 permit 113 ^65000:3_0:148_0:107$ ip community-list expanded c41 permit 114 ^65000:3_0:149_0:108$ ip community-list expanded c41 permit 115 ^65000:3_0:150_0:109$ ip community-list expanded c41 permit 116 ^65000:3_0:151_0:110$ ip community-list expanded c41 permit 117 ^65000:3_0:152_0:111$ ip community-list expanded c41 permit 118 ^65000:3_0:153_0:112$ ip community-list expanded c41 permit 119 ^65000:3_0:154_0:113$ ip community-list expanded c41 permit 120 ^65000:3_0:155_0:114$ ip community-list expanded c41 permit 121 ^65000:3_0:156_0:115$ ip community-list expanded c41 permit 122 ^65000:3_0:157_0:116$ ip community-list expanded c41 permit 123 ^65000:3_0:158_0:117$ ip community-list expanded c41 permit 124 ^65000:3_0:159_0:118$ ip community-list expanded c41 permit 125 ^65000:3_0:160_0:119$ ip community-list expanded c41 permit 126 ^65000:3_0:161_0:120$ ip community-list expanded c41 permit 127 ^65000:3_0:162_0:121$ ip community-list expanded c41 permit 128 ^65000:3_0:163_0:122$ ip community-list expanded c41 permit 129 ^65000:4_0:164_0:4$ ip community-list expanded c41 permit 130 ^65000:3_0:164_0:123$ ip community-list expanded c41 permit 131 ^65000:4_0:165_0:4$ ip community-list expanded c41 permit 132 ^65000:3_0:165_0:124$ ip community-list expanded c41 permit 133 ^65000:4_0:166_0:4$ ip community-list expanded c41 permit 134 ^65000:3_0:166_0:125$ ip community-list expanded c41 permit 135 ^65000:4_0:167_0:4$ ip community-list expanded c41 permit 136 ^65000:3_0:167_0:126$ ip community-list expanded c41 permit 137 ^65000:3_0:168_0:127$ ip community-list expanded c41 permit 138 ^65000:3_0:169_0:128$ ip community-list expanded c41 permit 139 ^65000:3_0:170_0:129$ ip community-list expanded c41 permit 140 ^65000:3_0:171_0:130$ ip community-list expanded c41 permit 141 ^65000:3_0:172_0:131$ ip community-list expanded c41 permit 142 ^65000:3_0:173_0:132$ ip community-list expanded c41 permit 143 ^65000:3_0:174_0:133$ ip community-list expanded c41 permit 144 ^65000:3_0:175_0:134$ ip community-list expanded c41 permit 145 ^65000:3_0:176_0:135$ ip community-list expanded c41 permit 146 ^65000:3_0:177_0:136$ ip community-list expanded c41 permit 147 ^65000:3_0:178_0:137$ ip community-list expanded c41 permit 148 ^65000:3_0:179_0:138$ ip community-list expanded c41 permit 149 ^65000:3_0:180_0:139$ ip community-list expanded c41 permit 150 ^65000:3_0:181_0:140$ ip community-list expanded c41 permit 151 ^65000:3_0:182_0:141$ ip community-list expanded c41 permit 152 ^65000:3_0:183_0:142$ ip community-list expanded c41 permit 153 ^65000:3_0:184_0:143$ ip community-list expanded c41 permit 154 ^65000:3_0:185_0:144$ ip community-list expanded c41 permit 155 ^65000:3_0:186_0:145$ ip community-list expanded c41 permit 156 ^65000:3_0:187_0:146$ ip community-list expanded c41 permit 157 ^65000:3_0:188_0:147$ ip community-list expanded c41 permit 158 ^65000:3_0:189_0:148$ ip community-list expanded c41 permit 159 ^65000:3_0:190_0:149$ ip community-list expanded c41 permit 160 ^65000:3_0:191_0:150$ ip community-list expanded c41 permit 161 ^65000:3_0:192_0:151$ ip community-list expanded c41 permit 162 ^65000:3_0:193_0:152$ ip community-list expanded c41 permit 163 ^65000:3_0:194_0:153$ ip community-list expanded c41 permit 164 ^65000:3_0:195_0:154$ ip community-list expanded c41 permit 165 ^65000:3_0:196_0:155$ ip community-list expanded c41 permit 166 ^65000:3_0:197_0:156$ ip community-list expanded c41 permit 167 ^65000:3_0:198_0:157$ ip community-list expanded c41 permit 168 ^65000:3_0:199_0:158$ ip community-list expanded c41 permit 169 ^65000:3_0:200_0:159$ ip community-list expanded c41 permit 170 ^65000:3_0:201_0:160$ ip community-list expanded c41 permit 171 ^65000:3_0:202_0:161$ ip community-list expanded c41 permit 172 ^65000:3_0:203_0:162$ ip community-list expanded c41 permit 173 ^65000:3_0:204_0:163$ ip community-list expanded c41 permit 174 ^65000:4_0:205_0:5$ ip community-list expanded c41 permit 175 ^65000:3_0:205_0:164$ ip community-list expanded c41 permit 176 ^65000:4_0:206_0:5$ ip community-list expanded c41 permit 177 ^65000:3_0:206_0:165$ ip community-list expanded c41 permit 178 ^65000:4_0:207_0:5$ ip community-list expanded c41 permit 179 ^65000:3_0:207_0:166$ ip community-list expanded c41 permit 180 ^65000:4_0:208_0:5$ ip community-list expanded c41 permit 181 ^65000:3_0:208_0:167$ ip community-list expanded c41 permit 182 ^65000:4_0:209_0:5$ ip community-list expanded c41 permit 183 ^65000:3_0:209_0:168$ ip community-list expanded c41 permit 184 ^65000:3_0:210_0:169$ ip community-list expanded c41 permit 185 ^65000:3_0:211_0:170$ ip community-list expanded c41 permit 186 ^65000:3_0:212_0:171$ ip community-list expanded c41 permit 187 ^65000:3_0:213_0:172$ ip community-list expanded c41 permit 188 ^65000:3_0:214_0:173$ ip community-list expanded c41 permit 189 ^65000:3_0:215_0:174$ ip community-list expanded c41 permit 190 ^65000:3_0:216_0:175$ ip community-list expanded c41 permit 191 ^65000:3_0:217_0:176$ ip community-list expanded c41 permit 192 ^65000:3_0:218_0:177$ ip community-list expanded c41 permit 193 ^65000:3_0:219_0:178$ ip community-list expanded c41 permit 194 ^65000:3_0:220_0:179$ ip community-list expanded c41 permit 195 ^65000:3_0:221_0:180$ ip community-list expanded c41 permit 196 ^65000:3_0:222_0:181$ ip community-list expanded c41 permit 197 ^65000:3_0:223_0:182$ ip community-list expanded c41 permit 198 ^65000:3_0:224_0:183$ ip community-list expanded c41 permit 199 ^65000:3_0:225_0:184$ ip community-list expanded c41 permit 200 ^65000:3_0:226_0:185$ ip community-list expanded c41 permit 201 ^65000:3_0:227_0:186$ ip community-list expanded c41 permit 202 ^65000:3_0:228_0:187$ ip community-list expanded c41 permit 203 ^65000:3_0:229_0:188$ ip community-list expanded c41 permit 204 ^65000:3_0:230_0:189$ ip community-list expanded c41 permit 205 ^65000:3_0:231_0:190$ ip community-list expanded c41 permit 206 ^65000:3_0:232_0:191$ ip community-list expanded c41 permit 207 ^65000:3_0:233_0:192$ ip community-list expanded c41 permit 208 ^65000:3_0:234_0:193$ ip community-list expanded c41 permit 209 ^65000:3_0:235_0:194$ ip community-list expanded c41 permit 210 ^65000:3_0:236_0:195$ ip community-list expanded c41 permit 211 ^65000:3_0:237_0:196$ ip community-list expanded c41 permit 212 ^65000:3_0:238_0:197$ ip community-list expanded c41 permit 213 ^65000:3_0:239_0:198$ ip community-list expanded c41 permit 214 ^65000:3_0:240_0:199$ ip community-list expanded c41 permit 215 ^65000:3_0:241_0:200$ ip community-list expanded c41 permit 216 ^65000:3_0:242_0:201$ ip community-list expanded c41 permit 217 ^65000:3_0:243_0:202$ ip community-list expanded c41 permit 218 ^65000:3_0:244_0:203$ ip community-list expanded c41 permit 219 ^65000:3_0:245_0:204$ ip community-list expanded c41 permit 220 ^65000:4_0:246_0:6$ ip community-list expanded c41 permit 221 ^65000:3_0:246_0:205$ ip community-list expanded c41 permit 222 ^65000:4_0:247_0:6$ ip community-list expanded c41 permit 223 ^65000:3_0:247_0:206$ ip community-list expanded c41 permit 224 ^65000:4_0:248_0:6$ ip community-list expanded c41 permit 225 ^65000:3_0:248_0:207$ ip community-list expanded c41 permit 226 ^65000:4_0:249_0:6$ ip community-list expanded c41 permit 227 ^65000:3_0:249_0:208$ ip community-list expanded c41 permit 228 ^65000:4_0:250_0:6$ ip community-list expanded c41 permit 229 ^65000:3_0:250_0:209$ ip community-list expanded c41 permit 230 ^65000:4_0:251_0:6$ ip community-list expanded c41 permit 231 ^65000:3_0:251_0:210$ ip community-list expanded c41 permit 232 ^65000:3_0:252_0:211$ ip community-list expanded c41 permit 233 ^65000:3_0:253_0:212$ ip community-list expanded c41 permit 234 ^65000:3_0:254_0:213$ ip community-list expanded c41 permit 235 ^65000:3_0:255_0:214$ ip community-list expanded c41 permit 236 ^65000:3_0:256_0:215$ route-map calculator permit 33155 match community 1_1_40 2_1_41 1_2_39 1_3_38 1_4_37 set community 0:41 route-map calculator permit 33156 match community 1_5_36 1_6_35 1_7_34 1_8_33 1_9_32 set community 0:41 route-map calculator permit 33157 match community 1_10_31 1_11_30 1_12_29 1_13_28 1_14_27 set community 0:41 route-map calculator permit 33158 match community 1_15_26 1_16_25 1_17_24 1_18_23 1_19_22 set community 0:41 route-map calculator permit 33159 match community 1_20_21 c4_41_1 c3_42_1 c3_43_2 c3_44_3 set community 0:41 route-map calculator permit 33160 match community c3_45_4 c3_46_5 c3_47_6 c3_48_7 c3_49_8 set community 0:41 route-map calculator permit 33161 match community c3_50_9 c3_51_10 c3_52_11 c3_53_12 c3_54_13 set community 0:41 route-map calculator permit 33162 match community c3_55_14 c3_56_15 c3_57_16 c3_58_17 c3_59_18 set community 0:41 route-map calculator permit 33163 match community c3_60_19 c3_61_20 c3_62_21 c3_63_22 c3_64_23 set community 0:41 route-map calculator permit 33164 match community c3_65_24 c3_66_25 c3_67_26 c3_68_27 c3_69_28 set community 0:41 route-map calculator permit 33165 match community c3_70_29 c3_71_30 c3_72_31 c3_73_32 c3_74_33 set community 0:41 route-map calculator permit 33166 match community c3_75_34 c3_76_35 c3_77_36 c3_78_37 c3_79_38 set community 0:41 route-map calculator permit 33167 match community c3_80_39 c3_81_40 c4_82_2 c3_82_41 c4_83_2 set community 0:41 route-map calculator permit 33168 match community c3_83_42 c3_84_43 c3_85_44 c3_86_45 c3_87_46 set community 0:41 route-map calculator permit 33169 match community c3_88_47 c3_89_48 c3_90_49 c3_91_50 c3_92_51 set community 0:41 route-map calculator permit 33170 match community c3_93_52 c3_94_53 c3_95_54 c3_96_55 c3_97_56 set community 0:41 route-map calculator permit 33171 match community c3_98_57 c3_99_58 c3_100_59 c3_101_60 c3_102_61 set community 0:41 route-map calculator permit 33172 match community c3_103_62 c3_104_63 c3_105_64 c3_106_65 c3_107_66 set community 0:41 route-map calculator permit 33173 match community c3_108_67 c3_109_68 c3_110_69 c3_111_70 c3_112_71 set community 0:41 route-map calculator permit 33174 match community c3_113_72 c3_114_73 c3_115_74 c3_116_75 c3_117_76 set community 0:41 route-map calculator permit 33175 match community c3_118_77 c3_119_78 c3_120_79 c3_121_80 c3_122_81 set community 0:41 route-map calculator permit 33176 match community c4_123_3 c3_123_82 c4_124_3 c3_124_83 c4_125_3 set community 0:41 route-map calculator permit 33177 match community c3_125_84 c3_126_85 c3_127_86 c3_128_87 c3_129_88 set community 0:41 route-map calculator permit 33178 match community c3_130_89 c3_131_90 c3_132_91 c3_133_92 c3_134_93 set community 0:41 route-map calculator permit 33179 match community c3_135_94 c3_136_95 c3_137_96 c3_138_97 c3_139_98 set community 0:41 route-map calculator permit 33180 match community c3_140_99 c3_141_100 c3_142_101 c3_143_102 c3_144_103 set community 0:41 route-map calculator permit 33181 match community c3_145_104 c3_146_105 c3_147_106 c3_148_107 c3_149_108 set community 0:41 route-map calculator permit 33182 match community c3_150_109 c3_151_110 c3_152_111 c3_153_112 c3_154_113 set community 0:41 route-map calculator permit 33183 match community c3_155_114 c3_156_115 c3_157_116 c3_158_117 c3_159_118 set community 0:41 route-map calculator permit 33184 match community c3_160_119 c3_161_120 c3_162_121 c3_163_122 c4_164_4 set community 0:41 route-map calculator permit 33185 match community c3_164_123 c4_165_4 c3_165_124 c4_166_4 c3_166_125 set community 0:41 route-map calculator permit 33186 match community c4_167_4 c3_167_126 c3_168_127 c3_169_128 c3_170_129 set community 0:41 route-map calculator permit 33187 match community c3_171_130 c3_172_131 c3_173_132 c3_174_133 c3_175_134 set community 0:41 route-map calculator permit 33188 match community c3_176_135 c3_177_136 c3_178_137 c3_179_138 c3_180_139 set community 0:41 route-map calculator permit 33189 match community c3_181_140 c3_182_141 c3_183_142 c3_184_143 c3_185_144 set community 0:41 route-map calculator permit 33190 match community c3_186_145 c3_187_146 c3_188_147 c3_189_148 c3_190_149 set community 0:41 route-map calculator permit 33191 match community c3_191_150 c3_192_151 c3_193_152 c3_194_153 c3_195_154 set community 0:41 route-map calculator permit 33192 match community c3_196_155 c3_197_156 c3_198_157 c3_199_158 c3_200_159 set community 0:41 route-map calculator permit 33193 match community c3_201_160 c3_202_161 c3_203_162 c3_204_163 c4_205_5 set community 0:41 route-map calculator permit 33194 match community c3_205_164 c4_206_5 c3_206_165 c4_207_5 c3_207_166 set community 0:41 route-map calculator permit 33195 match community c4_208_5 c3_208_167 c4_209_5 c3_209_168 c3_210_169 set community 0:41 route-map calculator permit 33196 match community c3_211_170 c3_212_171 c3_213_172 c3_214_173 c3_215_174 set community 0:41 route-map calculator permit 33197 match community c3_216_175 c3_217_176 c3_218_177 c3_219_178 c3_220_179 set community 0:41 route-map calculator permit 33198 match community c3_221_180 c3_222_181 c3_223_182 c3_224_183 c3_225_184 set community 0:41 route-map calculator permit 33199 match community c3_226_185 c3_227_186 c3_228_187 c3_229_188 c3_230_189 set community 0:41 route-map calculator permit 33200 match community c3_231_190 c3_232_191 c3_233_192 c3_234_193 c3_235_194 set community 0:41 route-map calculator permit 33201 match community c3_236_195 c3_237_196 c3_238_197 c3_239_198 c3_240_199 set community 0:41 route-map calculator permit 33202 match community c3_241_200 c3_242_201 c3_243_202 c3_244_203 c3_245_204 set community 0:41 route-map calculator permit 33203 match community c4_246_6 c3_246_205 c4_247_6 c3_247_206 c4_248_6 set community 0:41 route-map calculator permit 33204 match community c3_248_207 c4_249_6 c3_249_208 c4_250_6 c3_250_209 set community 0:41 route-map calculator permit 33205 match community c4_251_6 c3_251_210 c3_252_211 c3_253_212 c3_254_213 set community 0:41 route-map calculator permit 33206 match community c3_255_214 c3_256_215 set community 0:41 ip community-list standard 2_38_205 permit 65000:2 0:38 0:205 ip community-list standard 2_41_190 permit 65000:2 0:41 0:190 ip community-list standard 2_82_95 permit 65000:2 0:82 0:95 route-map calculator permit 33207 match community 2_38_205 2_41_190 2_82_95 set community 0:7790 ip community-list standard 2_12_256 permit 65000:2 0:12 0:256 ip community-list standard 2_16_192 permit 65000:2 0:16 0:192 ip community-list standard 2_24_128 permit 65000:2 0:24 0:128 ip community-list standard 2_32_96 permit 65000:2 0:32 0:96 ip community-list standard 2_48_64 permit 65000:2 0:48 0:64 route-map calculator permit 33208 match community 2_12_256 2_16_192 2_24_128 2_32_96 2_48_64 set community 0:3072 ip community-list standard 2_176_179 permit 65000:2 0:176 0:179 route-map calculator permit 33209 match community 2_176_179 set community 0:31504 ip community-list standard 2_43_158 permit 65000:2 0:43 0:158 ip community-list standard 2_79_86 permit 65000:2 0:79 0:86 route-map calculator permit 33210 match community 2_43_158 2_79_86 set community 0:6794 ip community-list standard 2_51_213 permit 65000:2 0:51 0:213 ip community-list standard 2_71_153 permit 65000:2 0:71 0:153 route-map calculator permit 33211 match community 2_51_213 2_71_153 set community 0:10863 ip community-list standard 2_125_217 permit 65000:2 0:125 0:217 ip community-list standard 2_155_175 permit 65000:2 0:155 0:175 route-map calculator permit 33212 match community 2_125_217 2_155_175 set community 0:27125 ip community-list standard 2_54_193 permit 65000:2 0:54 0:193 route-map calculator permit 33213 match community 2_54_193 set community 0:10422 ip community-list standard 2_60_199 permit 65000:2 0:60 0:199 route-map calculator permit 33214 match community 2_60_199 set community 0:11940 ip community-list standard 2_65_240 permit 65000:2 0:65 0:240 ip community-list standard 2_75_208 permit 65000:2 0:75 0:208 ip community-list standard 2_78_200 permit 65000:2 0:78 0:200 ip community-list standard 2_80_195 permit 65000:2 0:80 0:195 ip community-list standard 2_100_156 permit 65000:2 0:100 0:156 ip community-list standard 2_104_150 permit 65000:2 0:104 0:150 ip community-list standard 2_120_130 permit 65000:2 0:120 0:130 route-map calculator permit 33215 match community 2_65_240 2_75_208 2_78_200 2_80_195 2_100_156 set community 0:15600 route-map calculator permit 33216 match community 2_104_150 2_120_130 set community 0:15600 ip community-list standard 2_3_220 permit 65000:2 0:3 0:220 ip community-list standard 2_4_165 permit 65000:2 0:4 0:165 ip community-list standard 2_5_132 permit 65000:2 0:5 0:132 ip community-list standard 2_6_110 permit 65000:2 0:6 0:110 ip community-list standard 2_10_66 permit 65000:2 0:10 0:66 ip community-list standard 2_11_60 permit 65000:2 0:11 0:60 ip community-list standard 2_12_55 permit 65000:2 0:12 0:55 ip community-list standard 2_15_44 permit 65000:2 0:15 0:44 ip community-list standard 2_20_33 permit 65000:2 0:20 0:33 ip community-list standard 2_22_30 permit 65000:2 0:22 0:30 route-map calculator permit 33217 match community 2_3_220 2_4_165 2_5_132 2_6_110 2_10_66 set community 0:660 route-map calculator permit 33218 match community 2_11_60 2_12_55 2_15_44 2_20_33 2_22_30 set community 0:660 ip community-list standard 2_138_236 permit 65000:2 0:138 0:236 ip community-list standard 2_177_184 permit 65000:2 0:177 0:184 route-map calculator permit 33219 match community 2_138_236 2_177_184 set community 0:32568 ip community-list standard 2_134_155 permit 65000:2 0:134 0:155 route-map calculator permit 33220 match community 2_134_155 set community 0:20770 ip community-list standard 2_4_211 permit 65000:2 0:4 0:211 route-map calculator permit 33221 match community 2_4_211 set community 0:844 ip community-list standard 2_141_238 permit 65000:2 0:141 0:238 route-map calculator permit 33222 match community 2_141_238 set community 0:33558 ip community-list standard 2_111_163 permit 65000:2 0:111 0:163 route-map calculator permit 33223 match community 2_111_163 set community 0:18093 ip community-list standard 2_204_226 permit 65000:2 0:204 0:226 route-map calculator permit 33224 match community 2_204_226 set community 0:46104 ip community-list standard 2_141_219 permit 65000:2 0:141 0:219 route-map calculator permit 33225 match community 2_141_219 set community 0:30879 ip community-list standard 2_13_195 permit 65000:2 0:13 0:195 ip community-list standard 2_15_169 permit 65000:2 0:15 0:169 ip community-list standard 2_39_65 permit 65000:2 0:39 0:65 route-map calculator permit 33226 match community 2_13_195 2_15_169 2_39_65 set community 0:2535 ip community-list standard 2_23_43 permit 65000:2 0:23 0:43 route-map calculator permit 33227 match community 2_23_43 set community 0:989 ip community-list standard 2_107_237 permit 65000:2 0:107 0:237 route-map calculator permit 33228 match community 2_107_237 set community 0:25359 ip community-list standard 2_215_256 permit 65000:2 0:215 0:256 route-map calculator permit 33229 match community 2_215_256 set community 0:55040 ip community-list standard 2_84_167 permit 65000:2 0:84 0:167 route-map calculator permit 33230 match community 2_84_167 set community 0:14028 ip community-list standard 2_156_250 permit 65000:2 0:156 0:250 ip community-list standard 2_195_200 permit 65000:2 0:195 0:200 route-map calculator permit 33231 match community 2_156_250 2_195_200 set community 0:39000 ip community-list standard 2_188_253 permit 65000:2 0:188 0:253 route-map calculator permit 33232 match community 2_188_253 set community 0:47564 ip community-list standard 2_109_252 permit 65000:2 0:109 0:252 ip community-list standard 2_126_218 permit 65000:2 0:126 0:218 route-map calculator permit 33233 match community 2_109_252 2_126_218 set community 0:27468 ip community-list standard 2_3_174 permit 65000:2 0:3 0:174 ip community-list standard 2_6_87 permit 65000:2 0:6 0:87 ip community-list standard 2_9_58 permit 65000:2 0:9 0:58 ip community-list standard 2_18_29 permit 65000:2 0:18 0:29 route-map calculator permit 33234 match community 2_3_174 2_6_87 2_9_58 2_18_29 set community 0:522 ip community-list standard 2_126_223 permit 65000:2 0:126 0:223 route-map calculator permit 33235 match community 2_126_223 set community 0:28098 ip community-list standard 2_163_229 permit 65000:2 0:163 0:229 route-map calculator permit 33236 match community 2_163_229 set community 0:37327 ip community-list standard 2_62_227 permit 65000:2 0:62 0:227 route-map calculator permit 33237 match community 2_62_227 set community 0:14074 ip community-list standard 2_106_253 permit 65000:2 0:106 0:253 route-map calculator permit 33238 match community 2_106_253 set community 0:26818 ip community-list standard 2_133_137 permit 65000:2 0:133 0:137 route-map calculator permit 33239 match community 2_133_137 set community 0:18221 ip community-list standard 2_142_197 permit 65000:2 0:142 0:197 route-map calculator permit 33240 match community 2_142_197 set community 0:27974 ip community-list standard 2_59_131 permit 65000:2 0:59 0:131 route-map calculator permit 33241 match community 2_59_131 set community 0:7729 ip community-list standard 2_37_101 permit 65000:2 0:37 0:101 route-map calculator permit 33242 match community 2_37_101 set community 0:3737 ip community-list standard 2_2_210 permit 65000:2 0:2 0:210 ip community-list standard 2_3_140 permit 65000:2 0:3 0:140 ip community-list standard 2_4_105 permit 65000:2 0:4 0:105 ip community-list standard 2_5_84 permit 65000:2 0:5 0:84 ip community-list standard 2_6_70 permit 65000:2 0:6 0:70 ip community-list standard 2_7_60 permit 65000:2 0:7 0:60 ip community-list standard 2_10_42 permit 65000:2 0:10 0:42 ip community-list standard 2_12_35 permit 65000:2 0:12 0:35 ip community-list standard 2_14_30 permit 65000:2 0:14 0:30 ip community-list standard 2_15_28 permit 65000:2 0:15 0:28 ip community-list standard 2_20_21 permit 65000:2 0:20 0:21 ip community-list standard 1_164_256 permit 65000:1 0:164 0:256 ip community-list standard 1_165_255 permit 65000:1 0:165 0:255 ip community-list standard 1_166_254 permit 65000:1 0:166 0:254 ip community-list standard 1_167_253 permit 65000:1 0:167 0:253 ip community-list standard 1_168_252 permit 65000:1 0:168 0:252 ip community-list standard 1_169_251 permit 65000:1 0:169 0:251 ip community-list standard 1_170_250 permit 65000:1 0:170 0:250 ip community-list standard 1_171_249 permit 65000:1 0:171 0:249 ip community-list standard 1_172_248 permit 65000:1 0:172 0:248 ip community-list standard 1_173_247 permit 65000:1 0:173 0:247 ip community-list standard 1_174_246 permit 65000:1 0:174 0:246 ip community-list standard 1_175_245 permit 65000:1 0:175 0:245 ip community-list standard 1_176_244 permit 65000:1 0:176 0:244 ip community-list standard 1_177_243 permit 65000:1 0:177 0:243 ip community-list standard 1_178_242 permit 65000:1 0:178 0:242 ip community-list standard 1_179_241 permit 65000:1 0:179 0:241 ip community-list standard 1_180_240 permit 65000:1 0:180 0:240 ip community-list standard 1_181_239 permit 65000:1 0:181 0:239 ip community-list standard 1_182_238 permit 65000:1 0:182 0:238 ip community-list standard 1_183_237 permit 65000:1 0:183 0:237 ip community-list standard 1_184_236 permit 65000:1 0:184 0:236 ip community-list standard 1_185_235 permit 65000:1 0:185 0:235 ip community-list standard 1_186_234 permit 65000:1 0:186 0:234 ip community-list standard 1_187_233 permit 65000:1 0:187 0:233 ip community-list standard 1_188_232 permit 65000:1 0:188 0:232 ip community-list standard 1_189_231 permit 65000:1 0:189 0:231 ip community-list standard 1_190_230 permit 65000:1 0:190 0:230 ip community-list standard 1_191_229 permit 65000:1 0:191 0:229 ip community-list standard 1_192_228 permit 65000:1 0:192 0:228 ip community-list standard 1_193_227 permit 65000:1 0:193 0:227 ip community-list standard 1_194_226 permit 65000:1 0:194 0:226 ip community-list standard 1_195_225 permit 65000:1 0:195 0:225 ip community-list standard 1_196_224 permit 65000:1 0:196 0:224 ip community-list standard 1_197_223 permit 65000:1 0:197 0:223 ip community-list standard 1_198_222 permit 65000:1 0:198 0:222 ip community-list standard 1_199_221 permit 65000:1 0:199 0:221 ip community-list standard 1_200_220 permit 65000:1 0:200 0:220 ip community-list standard 1_201_219 permit 65000:1 0:201 0:219 ip community-list standard 1_202_218 permit 65000:1 0:202 0:218 ip community-list standard 1_203_217 permit 65000:1 0:203 0:217 ip community-list standard 1_204_216 permit 65000:1 0:204 0:216 ip community-list standard 1_205_215 permit 65000:1 0:205 0:215 ip community-list standard 1_206_214 permit 65000:1 0:206 0:214 ip community-list standard 1_207_213 permit 65000:1 0:207 0:213 ip community-list standard 1_208_212 permit 65000:1 0:208 0:212 ip community-list standard 1_209_211 permit 65000:1 0:209 0:211 ip community-list standard 1_210_210 permit 65000:1 0:210 0:210 route-map calculator permit 33243 match community 2_2_210 2_3_140 2_4_105 2_5_84 2_6_70 set community 0:420 route-map calculator permit 33244 match community 2_7_60 2_10_42 2_12_35 2_14_30 2_15_28 set community 0:420 route-map calculator permit 33245 match community 2_20_21 1_164_256 1_165_255 1_166_254 1_167_253 set community 0:420 route-map calculator permit 33246 match community 1_168_252 1_169_251 1_170_250 1_171_249 1_172_248 set community 0:420 route-map calculator permit 33247 match community 1_173_247 1_174_246 1_175_245 1_176_244 1_177_243 set community 0:420 route-map calculator permit 33248 match community 1_178_242 1_179_241 1_180_240 1_181_239 1_182_238 set community 0:420 route-map calculator permit 33249 match community 1_183_237 1_184_236 1_185_235 1_186_234 1_187_233 set community 0:420 route-map calculator permit 33250 match community 1_188_232 1_189_231 1_190_230 1_191_229 1_192_228 set community 0:420 route-map calculator permit 33251 match community 1_193_227 1_194_226 1_195_225 1_196_224 1_197_223 set community 0:420 route-map calculator permit 33252 match community 1_198_222 1_199_221 1_200_220 1_201_219 1_202_218 set community 0:420 route-map calculator permit 33253 match community 1_203_217 1_204_216 1_205_215 1_206_214 1_207_213 set community 0:420 route-map calculator permit 33254 match community 1_208_212 1_209_211 1_210_210 set community 0:420 ip community-list standard 2_155_166 permit 65000:2 0:155 0:166 route-map calculator permit 33255 match community 2_155_166 set community 0:25730 ip community-list standard 2_196_253 permit 65000:2 0:196 0:253 route-map calculator permit 33256 match community 2_196_253 set community 0:49588 ip community-list standard 2_27_190 permit 65000:2 0:27 0:190 ip community-list standard 2_30_171 permit 65000:2 0:30 0:171 ip community-list standard 2_38_135 permit 65000:2 0:38 0:135 ip community-list standard 2_45_114 permit 65000:2 0:45 0:114 ip community-list standard 2_54_95 permit 65000:2 0:54 0:95 ip community-list standard 2_57_90 permit 65000:2 0:57 0:90 route-map calculator permit 33257 match community 2_27_190 2_30_171 2_38_135 2_45_114 2_54_95 set community 0:5130 route-map calculator permit 33258 match community 2_57_90 set community 0:5130 ip community-list standard 2_79_172 permit 65000:2 0:79 0:172 ip community-list standard 2_86_158 permit 65000:2 0:86 0:158 route-map calculator permit 33259 match community 2_79_172 2_86_158 set community 0:13588 ip community-list standard 2_37_189 permit 65000:2 0:37 0:189 ip community-list standard 2_63_111 permit 65000:2 0:63 0:111 route-map calculator permit 33260 match community 2_37_189 2_63_111 set community 0:6993 ip community-list standard 2_75_212 permit 65000:2 0:75 0:212 ip community-list standard 2_100_159 permit 65000:2 0:100 0:159 ip community-list standard 2_106_150 permit 65000:2 0:106 0:150 route-map calculator permit 33261 match community 2_75_212 2_100_159 2_106_150 set community 0:15900 ip community-list standard 2_197_213 permit 65000:2 0:197 0:213 route-map calculator permit 33262 match community 2_197_213 set community 0:41961 ip community-list standard 2_102_226 permit 65000:2 0:102 0:226 ip community-list standard 2_113_204 permit 65000:2 0:113 0:204 route-map calculator permit 33263 match community 2_102_226 2_113_204 set community 0:23052 ip community-list standard 2_170_256 permit 65000:2 0:170 0:256 route-map calculator permit 33264 match community 2_170_256 set community 0:43520 ip community-list standard 2_183_229 permit 65000:2 0:183 0:229 route-map calculator permit 33265 match community 2_183_229 set community 0:41907 ip community-list standard 2_85_205 permit 65000:2 0:85 0:205 route-map calculator permit 33266 match community 2_85_205 set community 0:17425 ip community-list standard 2_77_158 permit 65000:2 0:77 0:158 ip community-list standard 2_79_154 permit 65000:2 0:79 0:154 route-map calculator permit 33267 match community 2_77_158 2_79_154 set community 0:12166 ip community-list standard 2_73_256 permit 65000:2 0:73 0:256 ip community-list standard 2_128_146 permit 65000:2 0:128 0:146 route-map calculator permit 33268 match community 2_73_256 2_128_146 set community 0:18688 ip community-list standard 2_71_148 permit 65000:2 0:71 0:148 ip community-list standard 2_74_142 permit 65000:2 0:74 0:142 route-map calculator permit 33269 match community 2_71_148 2_74_142 set community 0:10508 ip community-list standard 2_7_171 permit 65000:2 0:7 0:171 ip community-list standard 2_9_133 permit 65000:2 0:9 0:133 ip community-list standard 2_19_63 permit 65000:2 0:19 0:63 ip community-list standard 2_21_57 permit 65000:2 0:21 0:57 route-map calculator permit 33270 match community 2_7_171 2_9_133 2_19_63 2_21_57 set community 0:1197 ip community-list standard 2_90_236 permit 65000:2 0:90 0:236 ip community-list standard 2_118_180 permit 65000:2 0:118 0:180 ip community-list standard 2_120_177 permit 65000:2 0:120 0:177 route-map calculator permit 33271 match community 2_90_236 2_118_180 2_120_177 set community 0:21240 ip community-list standard 2_4_228 permit 65000:2 0:4 0:228 ip community-list standard 2_6_152 permit 65000:2 0:6 0:152 ip community-list standard 2_8_114 permit 65000:2 0:8 0:114 ip community-list standard 2_12_76 permit 65000:2 0:12 0:76 ip community-list standard 2_16_57 permit 65000:2 0:16 0:57 ip community-list standard 2_19_48 permit 65000:2 0:19 0:48 ip community-list standard 2_24_38 permit 65000:2 0:24 0:38 route-map calculator permit 33272 match community 2_4_228 2_6_152 2_8_114 2_12_76 2_16_57 set community 0:912 route-map calculator permit 33273 match community 2_19_48 2_24_38 set community 0:912 ip community-list standard 2_201_202 permit 65000:2 0:201 0:202 route-map calculator permit 33274 match community 2_201_202 set community 0:40602 ip community-list standard 2_125_223 permit 65000:2 0:125 0:223 route-map calculator permit 33275 match community 2_125_223 set community 0:27875 ip community-list standard 2_111_244 permit 65000:2 0:111 0:244 ip community-list standard 2_122_222 permit 65000:2 0:122 0:222 ip community-list standard 2_148_183 permit 65000:2 0:148 0:183 route-map calculator permit 33276 match community 2_111_244 2_122_222 2_148_183 set community 0:27084 ip community-list standard 2_27_151 permit 65000:2 0:27 0:151 route-map calculator permit 33277 match community 2_27_151 set community 0:4077 ip community-list standard 2_87_244 permit 65000:2 0:87 0:244 ip community-list standard 2_116_183 permit 65000:2 0:116 0:183 ip community-list standard 2_122_174 permit 65000:2 0:122 0:174 route-map calculator permit 33278 match community 2_87_244 2_116_183 2_122_174 set community 0:21228 ip community-list standard 2_211_228 permit 65000:2 0:211 0:228 route-map calculator permit 33279 match community 2_211_228 set community 0:48108 ip community-list standard 2_149_231 permit 65000:2 0:149 0:231 route-map calculator permit 33280 match community 2_149_231 set community 0:34419 ip community-list standard 2_178_198 permit 65000:2 0:178 0:198 route-map calculator permit 33281 match community 2_178_198 set community 0:35244 ip community-list standard 2_41_214 permit 65000:2 0:41 0:214 ip community-list standard 2_82_107 permit 65000:2 0:82 0:107 route-map calculator permit 33282 match community 2_41_214 2_82_107 set community 0:8774 ip community-list standard 2_92_230 permit 65000:2 0:92 0:230 ip community-list standard 2_115_184 permit 65000:2 0:115 0:184 route-map calculator permit 33283 match community 2_92_230 2_115_184 set community 0:21160 ip community-list standard 2_81_172 permit 65000:2 0:81 0:172 ip community-list standard 2_86_162 permit 65000:2 0:86 0:162 ip community-list standard 2_108_129 permit 65000:2 0:108 0:129 route-map calculator permit 33284 match community 2_81_172 2_86_162 2_108_129 set community 0:13932 ip community-list standard 2_151_206 permit 65000:2 0:151 0:206 route-map calculator permit 33285 match community 2_151_206 set community 0:31106 ip community-list standard 2_55_131 permit 65000:2 0:55 0:131 route-map calculator permit 33286 match community 2_55_131 set community 0:7205 ip community-list standard 2_189_229 permit 65000:2 0:189 0:229 route-map calculator permit 33287 match community 2_189_229 set community 0:43281 ip community-list standard 2_124_243 permit 65000:2 0:124 0:243 ip community-list standard 2_162_186 permit 65000:2 0:162 0:186 route-map calculator permit 33288 match community 2_124_243 2_162_186 set community 0:30132 ip community-list standard 2_191_234 permit 65000:2 0:191 0:234 route-map calculator permit 33289 match community 2_191_234 set community 0:44694 ip community-list standard 2_93_253 permit 65000:2 0:93 0:253 route-map calculator permit 33290 match community 2_93_253 set community 0:23529 ip community-list standard 2_109_183 permit 65000:2 0:109 0:183 route-map calculator permit 33291 match community 2_109_183 set community 0:19947 ip community-list standard 2_150_242 permit 65000:2 0:150 0:242 ip community-list standard 2_165_220 permit 65000:2 0:165 0:220 route-map calculator permit 33292 match community 2_150_242 2_165_220 set community 0:36300 ip community-list standard 2_48_173 permit 65000:2 0:48 0:173 route-map calculator permit 33293 match community 2_48_173 set community 0:8304 ip community-list standard 2_120_252 permit 65000:2 0:120 0:252 ip community-list standard 2_126_240 permit 65000:2 0:126 0:240 ip community-list standard 2_135_224 permit 65000:2 0:135 0:224 ip community-list standard 2_140_216 permit 65000:2 0:140 0:216 ip community-list standard 2_144_210 permit 65000:2 0:144 0:210 ip community-list standard 2_160_189 permit 65000:2 0:160 0:189 ip community-list standard 2_168_180 permit 65000:2 0:168 0:180 route-map calculator permit 33294 match community 2_120_252 2_126_240 2_135_224 2_140_216 2_144_210 set community 0:30240 route-map calculator permit 33295 match community 2_160_189 2_168_180 set community 0:30240 ip community-list standard 2_234_250 permit 65000:2 0:234 0:250 route-map calculator permit 33296 match community 2_234_250 set community 0:58500 ip community-list standard 2_62_131 permit 65000:2 0:62 0:131 route-map calculator permit 33297 match community 2_62_131 set community 0:8122 ip community-list standard 2_83_137 permit 65000:2 0:83 0:137 route-map calculator permit 33298 match community 2_83_137 set community 0:11371 ip community-list standard 2_25_202 permit 65000:2 0:25 0:202 ip community-list standard 2_50_101 permit 65000:2 0:50 0:101 route-map calculator permit 33299 match community 2_25_202 2_50_101 set community 0:5050 ip community-list standard 2_14_196 permit 65000:2 0:14 0:196 ip community-list standard 2_28_98 permit 65000:2 0:28 0:98 ip community-list standard 2_49_56 permit 65000:2 0:49 0:56 route-map calculator permit 33300 match community 2_14_196 2_28_98 2_49_56 set community 0:2744 ip community-list standard 2_23_248 permit 65000:2 0:23 0:248 ip community-list standard 2_31_184 permit 65000:2 0:31 0:184 ip community-list standard 2_46_124 permit 65000:2 0:46 0:124 ip community-list standard 2_62_92 permit 65000:2 0:62 0:92 route-map calculator permit 33301 match community 2_23_248 2_31_184 2_46_124 2_62_92 set community 0:5704 ip community-list standard 2_23_227 permit 65000:2 0:23 0:227 route-map calculator permit 33302 match community 2_23_227 set community 0:5221 ip community-list standard 2_106_220 permit 65000:2 0:106 0:220 ip community-list standard 2_110_212 permit 65000:2 0:110 0:212 route-map calculator permit 33303 match community 2_106_220 2_110_212 set community 0:23320 ip community-list standard 2_117_151 permit 65000:2 0:117 0:151 route-map calculator permit 33304 match community 2_117_151 set community 0:17667 ip community-list standard 2_205_231 permit 65000:2 0:205 0:231 route-map calculator permit 33305 match community 2_205_231 set community 0:47355 ip community-list standard 2_70_218 permit 65000:2 0:70 0:218 ip community-list standard 2_109_140 permit 65000:2 0:109 0:140 route-map calculator permit 33306 match community 2_70_218 2_109_140 set community 0:15260 ip community-list standard 2_16_190 permit 65000:2 0:16 0:190 ip community-list standard 2_19_160 permit 65000:2 0:19 0:160 ip community-list standard 2_20_152 permit 65000:2 0:20 0:152 ip community-list standard 2_32_95 permit 65000:2 0:32 0:95 ip community-list standard 2_38_80 permit 65000:2 0:38 0:80 ip community-list standard 2_40_76 permit 65000:2 0:40 0:76 route-map calculator permit 33307 match community 2_16_190 2_19_160 2_20_152 2_32_95 2_38_80 set community 0:3040 route-map calculator permit 33308 match community 2_40_76 set community 0:3040 ip community-list standard 2_100_181 permit 65000:2 0:100 0:181 route-map calculator permit 33309 match community 2_100_181 set community 0:18100 ip community-list standard 2_131_211 permit 65000:2 0:131 0:211 route-map calculator permit 33310 match community 2_131_211 set community 0:27641 ip community-list standard 2_25_250 permit 65000:2 0:25 0:250 ip community-list standard 2_50_125 permit 65000:2 0:50 0:125 route-map calculator permit 33311 match community 2_25_250 2_50_125 set community 0:6250 ip community-list standard 2_68_194 permit 65000:2 0:68 0:194 ip community-list standard 2_97_136 permit 65000:2 0:97 0:136 route-map calculator permit 33312 match community 2_68_194 2_97_136 set community 0:13192 ip community-list standard 2_3_207 permit 65000:2 0:3 0:207 ip community-list standard 2_9_69 permit 65000:2 0:9 0:69 ip community-list standard 2_23_27 permit 65000:2 0:23 0:27 route-map calculator permit 33313 match community 2_3_207 2_9_69 2_23_27 set community 0:621 ip community-list standard 2_70_237 permit 65000:2 0:70 0:237 ip community-list standard 2_79_210 permit 65000:2 0:79 0:210 ip community-list standard 2_105_158 permit 65000:2 0:105 0:158 route-map calculator permit 33314 match community 2_70_237 2_79_210 2_105_158 set community 0:16590 ip community-list standard 2_23_37 permit 65000:2 0:23 0:37 route-map calculator permit 33315 match community 2_23_37 set community 0:851 ip community-list standard 2_118_193 permit 65000:2 0:118 0:193 route-map calculator permit 33316 match community 2_118_193 set community 0:22774 ip community-list standard 2_68_188 permit 65000:2 0:68 0:188 ip community-list standard 2_94_136 permit 65000:2 0:94 0:136 route-map calculator permit 33317 match community 2_68_188 2_94_136 set community 0:12784 ip community-list standard 2_8_240 permit 65000:2 0:8 0:240 ip community-list standard 2_10_192 permit 65000:2 0:10 0:192 ip community-list standard 2_12_160 permit 65000:2 0:12 0:160 ip community-list standard 2_15_128 permit 65000:2 0:15 0:128 ip community-list standard 2_16_120 permit 65000:2 0:16 0:120 ip community-list standard 2_20_96 permit 65000:2 0:20 0:96 ip community-list standard 2_24_80 permit 65000:2 0:24 0:80 ip community-list standard 2_30_64 permit 65000:2 0:30 0:64 ip community-list standard 2_32_60 permit 65000:2 0:32 0:60 ip community-list standard 2_40_48 permit 65000:2 0:40 0:48 route-map calculator permit 33318 match community 2_8_240 2_10_192 2_12_160 2_15_128 2_16_120 set community 0:1920 route-map calculator permit 33319 match community 2_20_96 2_24_80 2_30_64 2_32_60 2_40_48 set community 0:1920 ip community-list standard 2_198_246 permit 65000:2 0:198 0:246 route-map calculator permit 33320 match community 2_198_246 set community 0:48708 ip community-list standard 2_164_203 permit 65000:2 0:164 0:203 route-map calculator permit 33321 match community 2_164_203 set community 0:33292 ip community-list standard 2_49_228 permit 65000:2 0:49 0:228 ip community-list standard 2_57_196 permit 65000:2 0:57 0:196 ip community-list standard 2_76_147 permit 65000:2 0:76 0:147 ip community-list standard 2_84_133 permit 65000:2 0:84 0:133 ip community-list standard 2_98_114 permit 65000:2 0:98 0:114 route-map calculator permit 33322 match community 2_49_228 2_57_196 2_76_147 2_84_133 2_98_114 set community 0:11172 ip community-list standard 2_82_253 permit 65000:2 0:82 0:253 route-map calculator permit 33323 match community 2_82_253 set community 0:20746 ip community-list standard 2_22_193 permit 65000:2 0:22 0:193 route-map calculator permit 33324 match community 2_22_193 set community 0:4246 ip community-list standard 2_129_193 permit 65000:2 0:129 0:193 route-map calculator permit 33325 match community 2_129_193 set community 0:24897 ip community-list standard 2_11_209 permit 65000:2 0:11 0:209 ip community-list standard 2_19_121 permit 65000:2 0:19 0:121 route-map calculator permit 33326 match community 2_11_209 2_19_121 set community 0:2299 ip community-list standard 2_220_247 permit 65000:2 0:220 0:247 route-map calculator permit 33327 match community 2_220_247 set community 0:54340 ip community-list standard 2_71_205 permit 65000:2 0:71 0:205 route-map calculator permit 33328 match community 2_71_205 set community 0:14555 ip community-list standard 2_214_224 permit 65000:2 0:214 0:224 route-map calculator permit 33329 match community 2_214_224 set community 0:47936 ip community-list standard 2_79_226 permit 65000:2 0:79 0:226 ip community-list standard 2_113_158 permit 65000:2 0:113 0:158 route-map calculator permit 33330 match community 2_79_226 2_113_158 set community 0:17854 ip community-list standard 1_1_130 permit 65000:1 0:1 0:130 ip community-list standard 2_1_131 permit 65000:2 0:1 0:131 ip community-list standard 1_2_129 permit 65000:1 0:2 0:129 ip community-list standard 1_3_128 permit 65000:1 0:3 0:128 ip community-list standard 1_4_127 permit 65000:1 0:4 0:127 ip community-list standard 1_5_126 permit 65000:1 0:5 0:126 ip community-list standard 1_6_125 permit 65000:1 0:6 0:125 ip community-list standard 1_7_124 permit 65000:1 0:7 0:124 ip community-list standard 1_8_123 permit 65000:1 0:8 0:123 ip community-list standard 1_9_122 permit 65000:1 0:9 0:122 ip community-list standard 1_10_121 permit 65000:1 0:10 0:121 ip community-list standard 1_11_120 permit 65000:1 0:11 0:120 ip community-list standard 1_12_119 permit 65000:1 0:12 0:119 ip community-list standard 1_13_118 permit 65000:1 0:13 0:118 ip community-list standard 1_14_117 permit 65000:1 0:14 0:117 ip community-list standard 1_15_116 permit 65000:1 0:15 0:116 ip community-list standard 1_16_115 permit 65000:1 0:16 0:115 ip community-list standard 1_17_114 permit 65000:1 0:17 0:114 ip community-list standard 1_18_113 permit 65000:1 0:18 0:113 ip community-list standard 1_19_112 permit 65000:1 0:19 0:112 ip community-list standard 1_20_111 permit 65000:1 0:20 0:111 ip community-list standard 1_21_110 permit 65000:1 0:21 0:110 ip community-list standard 1_22_109 permit 65000:1 0:22 0:109 ip community-list standard 1_23_108 permit 65000:1 0:23 0:108 ip community-list standard 1_24_107 permit 65000:1 0:24 0:107 ip community-list standard 1_25_106 permit 65000:1 0:25 0:106 ip community-list standard 1_26_105 permit 65000:1 0:26 0:105 ip community-list standard 1_27_104 permit 65000:1 0:27 0:104 ip community-list standard 1_28_103 permit 65000:1 0:28 0:103 ip community-list standard 1_29_102 permit 65000:1 0:29 0:102 ip community-list standard 1_30_101 permit 65000:1 0:30 0:101 ip community-list standard 1_31_100 permit 65000:1 0:31 0:100 ip community-list standard 1_32_99 permit 65000:1 0:32 0:99 ip community-list standard 1_33_98 permit 65000:1 0:33 0:98 ip community-list standard 1_34_97 permit 65000:1 0:34 0:97 ip community-list standard 1_35_96 permit 65000:1 0:35 0:96 ip community-list standard 1_36_95 permit 65000:1 0:36 0:95 ip community-list standard 1_37_94 permit 65000:1 0:37 0:94 ip community-list standard 1_38_93 permit 65000:1 0:38 0:93 ip community-list standard 1_39_92 permit 65000:1 0:39 0:92 ip community-list standard 1_40_91 permit 65000:1 0:40 0:91 ip community-list standard 1_41_90 permit 65000:1 0:41 0:90 ip community-list standard 1_42_89 permit 65000:1 0:42 0:89 ip community-list standard 1_43_88 permit 65000:1 0:43 0:88 ip community-list standard 1_44_87 permit 65000:1 0:44 0:87 ip community-list standard 1_45_86 permit 65000:1 0:45 0:86 ip community-list standard 1_46_85 permit 65000:1 0:46 0:85 ip community-list standard 1_47_84 permit 65000:1 0:47 0:84 ip community-list standard 1_48_83 permit 65000:1 0:48 0:83 ip community-list standard 1_49_82 permit 65000:1 0:49 0:82 ip community-list standard 1_50_81 permit 65000:1 0:50 0:81 ip community-list standard 1_51_80 permit 65000:1 0:51 0:80 ip community-list standard 1_52_79 permit 65000:1 0:52 0:79 ip community-list standard 1_53_78 permit 65000:1 0:53 0:78 ip community-list standard 1_54_77 permit 65000:1 0:54 0:77 ip community-list standard 1_55_76 permit 65000:1 0:55 0:76 ip community-list standard 1_56_75 permit 65000:1 0:56 0:75 ip community-list standard 1_57_74 permit 65000:1 0:57 0:74 ip community-list standard 1_58_73 permit 65000:1 0:58 0:73 ip community-list standard 1_59_72 permit 65000:1 0:59 0:72 ip community-list standard 1_60_71 permit 65000:1 0:60 0:71 ip community-list standard 1_61_70 permit 65000:1 0:61 0:70 ip community-list standard 1_62_69 permit 65000:1 0:62 0:69 ip community-list standard 1_63_68 permit 65000:1 0:63 0:68 ip community-list standard 1_64_67 permit 65000:1 0:64 0:67 ip community-list standard 1_65_66 permit 65000:1 0:65 0:66 ip community-list expanded c131 permit 1 ^65000:4_0:131_0:1$ ip community-list expanded c131 permit 2 ^65000:3_0:132_0:1$ ip community-list expanded c131 permit 3 ^65000:3_0:133_0:2$ ip community-list expanded c131 permit 4 ^65000:3_0:134_0:3$ ip community-list expanded c131 permit 5 ^65000:3_0:135_0:4$ ip community-list expanded c131 permit 6 ^65000:3_0:136_0:5$ ip community-list expanded c131 permit 7 ^65000:3_0:137_0:6$ ip community-list expanded c131 permit 8 ^65000:3_0:138_0:7$ ip community-list expanded c131 permit 9 ^65000:3_0:139_0:8$ ip community-list expanded c131 permit 10 ^65000:3_0:140_0:9$ ip community-list expanded c131 permit 11 ^65000:3_0:141_0:10$ ip community-list expanded c131 permit 12 ^65000:3_0:142_0:11$ ip community-list expanded c131 permit 13 ^65000:3_0:143_0:12$ ip community-list expanded c131 permit 14 ^65000:3_0:144_0:13$ ip community-list expanded c131 permit 15 ^65000:3_0:145_0:14$ ip community-list expanded c131 permit 16 ^65000:3_0:146_0:15$ ip community-list expanded c131 permit 17 ^65000:3_0:147_0:16$ ip community-list expanded c131 permit 18 ^65000:3_0:148_0:17$ ip community-list expanded c131 permit 19 ^65000:3_0:149_0:18$ ip community-list expanded c131 permit 20 ^65000:3_0:150_0:19$ ip community-list expanded c131 permit 21 ^65000:3_0:151_0:20$ ip community-list expanded c131 permit 22 ^65000:3_0:152_0:21$ ip community-list expanded c131 permit 23 ^65000:3_0:153_0:22$ ip community-list expanded c131 permit 24 ^65000:3_0:154_0:23$ ip community-list expanded c131 permit 25 ^65000:3_0:155_0:24$ ip community-list expanded c131 permit 26 ^65000:3_0:156_0:25$ ip community-list expanded c131 permit 27 ^65000:3_0:157_0:26$ ip community-list expanded c131 permit 28 ^65000:3_0:158_0:27$ ip community-list expanded c131 permit 29 ^65000:3_0:159_0:28$ ip community-list expanded c131 permit 30 ^65000:3_0:160_0:29$ ip community-list expanded c131 permit 31 ^65000:3_0:161_0:30$ ip community-list expanded c131 permit 32 ^65000:3_0:162_0:31$ ip community-list expanded c131 permit 33 ^65000:3_0:163_0:32$ ip community-list expanded c131 permit 34 ^65000:3_0:164_0:33$ ip community-list expanded c131 permit 35 ^65000:3_0:165_0:34$ ip community-list expanded c131 permit 36 ^65000:3_0:166_0:35$ ip community-list expanded c131 permit 37 ^65000:3_0:167_0:36$ ip community-list expanded c131 permit 38 ^65000:3_0:168_0:37$ ip community-list expanded c131 permit 39 ^65000:3_0:169_0:38$ ip community-list expanded c131 permit 40 ^65000:3_0:170_0:39$ ip community-list expanded c131 permit 41 ^65000:3_0:171_0:40$ ip community-list expanded c131 permit 42 ^65000:3_0:172_0:41$ ip community-list expanded c131 permit 43 ^65000:3_0:173_0:42$ ip community-list expanded c131 permit 44 ^65000:3_0:174_0:43$ ip community-list expanded c131 permit 45 ^65000:3_0:175_0:44$ ip community-list expanded c131 permit 46 ^65000:3_0:176_0:45$ ip community-list expanded c131 permit 47 ^65000:3_0:177_0:46$ ip community-list expanded c131 permit 48 ^65000:3_0:178_0:47$ ip community-list expanded c131 permit 49 ^65000:3_0:179_0:48$ ip community-list expanded c131 permit 50 ^65000:3_0:180_0:49$ ip community-list expanded c131 permit 51 ^65000:3_0:181_0:50$ ip community-list expanded c131 permit 52 ^65000:3_0:182_0:51$ ip community-list expanded c131 permit 53 ^65000:3_0:183_0:52$ ip community-list expanded c131 permit 54 ^65000:3_0:184_0:53$ ip community-list expanded c131 permit 55 ^65000:3_0:185_0:54$ ip community-list expanded c131 permit 56 ^65000:3_0:186_0:55$ ip community-list expanded c131 permit 57 ^65000:3_0:187_0:56$ ip community-list expanded c131 permit 58 ^65000:3_0:188_0:57$ ip community-list expanded c131 permit 59 ^65000:3_0:189_0:58$ ip community-list expanded c131 permit 60 ^65000:3_0:190_0:59$ ip community-list expanded c131 permit 61 ^65000:3_0:191_0:60$ ip community-list expanded c131 permit 62 ^65000:3_0:192_0:61$ ip community-list expanded c131 permit 63 ^65000:3_0:193_0:62$ ip community-list expanded c131 permit 64 ^65000:3_0:194_0:63$ ip community-list expanded c131 permit 65 ^65000:3_0:195_0:64$ ip community-list expanded c131 permit 66 ^65000:3_0:196_0:65$ ip community-list expanded c131 permit 67 ^65000:3_0:197_0:66$ ip community-list expanded c131 permit 68 ^65000:3_0:198_0:67$ ip community-list expanded c131 permit 69 ^65000:3_0:199_0:68$ ip community-list expanded c131 permit 70 ^65000:3_0:200_0:69$ ip community-list expanded c131 permit 71 ^65000:3_0:201_0:70$ ip community-list expanded c131 permit 72 ^65000:3_0:202_0:71$ ip community-list expanded c131 permit 73 ^65000:3_0:203_0:72$ ip community-list expanded c131 permit 74 ^65000:3_0:204_0:73$ ip community-list expanded c131 permit 75 ^65000:3_0:205_0:74$ ip community-list expanded c131 permit 76 ^65000:3_0:206_0:75$ ip community-list expanded c131 permit 77 ^65000:3_0:207_0:76$ ip community-list expanded c131 permit 78 ^65000:3_0:208_0:77$ ip community-list expanded c131 permit 79 ^65000:3_0:209_0:78$ ip community-list expanded c131 permit 80 ^65000:3_0:210_0:79$ ip community-list expanded c131 permit 81 ^65000:3_0:211_0:80$ ip community-list expanded c131 permit 82 ^65000:3_0:212_0:81$ ip community-list expanded c131 permit 83 ^65000:3_0:213_0:82$ ip community-list expanded c131 permit 84 ^65000:3_0:214_0:83$ ip community-list expanded c131 permit 85 ^65000:3_0:215_0:84$ ip community-list expanded c131 permit 86 ^65000:3_0:216_0:85$ ip community-list expanded c131 permit 87 ^65000:3_0:217_0:86$ ip community-list expanded c131 permit 88 ^65000:3_0:218_0:87$ ip community-list expanded c131 permit 89 ^65000:3_0:219_0:88$ ip community-list expanded c131 permit 90 ^65000:3_0:220_0:89$ ip community-list expanded c131 permit 91 ^65000:3_0:221_0:90$ ip community-list expanded c131 permit 92 ^65000:3_0:222_0:91$ ip community-list expanded c131 permit 93 ^65000:3_0:223_0:92$ ip community-list expanded c131 permit 94 ^65000:3_0:224_0:93$ ip community-list expanded c131 permit 95 ^65000:3_0:225_0:94$ ip community-list expanded c131 permit 96 ^65000:3_0:226_0:95$ ip community-list expanded c131 permit 97 ^65000:3_0:227_0:96$ ip community-list expanded c131 permit 98 ^65000:3_0:228_0:97$ ip community-list expanded c131 permit 99 ^65000:3_0:229_0:98$ ip community-list expanded c131 permit 100 ^65000:3_0:230_0:99$ ip community-list expanded c131 permit 101 ^65000:3_0:231_0:100$ ip community-list expanded c131 permit 102 ^65000:3_0:232_0:101$ ip community-list expanded c131 permit 103 ^65000:3_0:233_0:102$ ip community-list expanded c131 permit 104 ^65000:3_0:234_0:103$ ip community-list expanded c131 permit 105 ^65000:3_0:235_0:104$ ip community-list expanded c131 permit 106 ^65000:3_0:236_0:105$ ip community-list expanded c131 permit 107 ^65000:3_0:237_0:106$ ip community-list expanded c131 permit 108 ^65000:3_0:238_0:107$ ip community-list expanded c131 permit 109 ^65000:3_0:239_0:108$ ip community-list expanded c131 permit 110 ^65000:3_0:240_0:109$ ip community-list expanded c131 permit 111 ^65000:3_0:241_0:110$ ip community-list expanded c131 permit 112 ^65000:3_0:242_0:111$ ip community-list expanded c131 permit 113 ^65000:3_0:243_0:112$ ip community-list expanded c131 permit 114 ^65000:3_0:244_0:113$ ip community-list expanded c131 permit 115 ^65000:3_0:245_0:114$ ip community-list expanded c131 permit 116 ^65000:3_0:246_0:115$ ip community-list expanded c131 permit 117 ^65000:3_0:247_0:116$ ip community-list expanded c131 permit 118 ^65000:3_0:248_0:117$ ip community-list expanded c131 permit 119 ^65000:3_0:249_0:118$ ip community-list expanded c131 permit 120 ^65000:3_0:250_0:119$ ip community-list expanded c131 permit 121 ^65000:3_0:251_0:120$ ip community-list expanded c131 permit 122 ^65000:3_0:252_0:121$ ip community-list expanded c131 permit 123 ^65000:3_0:253_0:122$ ip community-list expanded c131 permit 124 ^65000:3_0:254_0:123$ ip community-list expanded c131 permit 125 ^65000:3_0:255_0:124$ ip community-list expanded c131 permit 126 ^65000:3_0:256_0:125$ route-map calculator permit 33331 match community 1_1_130 2_1_131 1_2_129 1_3_128 1_4_127 set community 0:131 route-map calculator permit 33332 match community 1_5_126 1_6_125 1_7_124 1_8_123 1_9_122 set community 0:131 route-map calculator permit 33333 match community 1_10_121 1_11_120 1_12_119 1_13_118 1_14_117 set community 0:131 route-map calculator permit 33334 match community 1_15_116 1_16_115 1_17_114 1_18_113 1_19_112 set community 0:131 route-map calculator permit 33335 match community 1_20_111 1_21_110 1_22_109 1_23_108 1_24_107 set community 0:131 route-map calculator permit 33336 match community 1_25_106 1_26_105 1_27_104 1_28_103 1_29_102 set community 0:131 route-map calculator permit 33337 match community 1_30_101 1_31_100 1_32_99 1_33_98 1_34_97 set community 0:131 route-map calculator permit 33338 match community 1_35_96 1_36_95 1_37_94 1_38_93 1_39_92 set community 0:131 route-map calculator permit 33339 match community 1_40_91 1_41_90 1_42_89 1_43_88 1_44_87 set community 0:131 route-map calculator permit 33340 match community 1_45_86 1_46_85 1_47_84 1_48_83 1_49_82 set community 0:131 route-map calculator permit 33341 match community 1_50_81 1_51_80 1_52_79 1_53_78 1_54_77 set community 0:131 route-map calculator permit 33342 match community 1_55_76 1_56_75 1_57_74 1_58_73 1_59_72 set community 0:131 route-map calculator permit 33343 match community 1_60_71 1_61_70 1_62_69 1_63_68 1_64_67 set community 0:131 route-map calculator permit 33344 match community 1_65_66 c4_131_1 c3_132_1 c3_133_2 c3_134_3 set community 0:131 route-map calculator permit 33345 match community c3_135_4 c3_136_5 c3_137_6 c3_138_7 c3_139_8 set community 0:131 route-map calculator permit 33346 match community c3_140_9 c3_141_10 c3_142_11 c3_143_12 c3_144_13 set community 0:131 route-map calculator permit 33347 match community c3_145_14 c3_146_15 c3_147_16 c3_148_17 c3_149_18 set community 0:131 route-map calculator permit 33348 match community c3_150_19 c3_151_20 c3_152_21 c3_153_22 c3_154_23 set community 0:131 route-map calculator permit 33349 match community c3_155_24 c3_156_25 c3_157_26 c3_158_27 c3_159_28 set community 0:131 route-map calculator permit 33350 match community c3_160_29 c3_161_30 c3_162_31 c3_163_32 c3_164_33 set community 0:131 route-map calculator permit 33351 match community c3_165_34 c3_166_35 c3_167_36 c3_168_37 c3_169_38 set community 0:131 route-map calculator permit 33352 match community c3_170_39 c3_171_40 c3_172_41 c3_173_42 c3_174_43 set community 0:131 route-map calculator permit 33353 match community c3_175_44 c3_176_45 c3_177_46 c3_178_47 c3_179_48 set community 0:131 route-map calculator permit 33354 match community c3_180_49 c3_181_50 c3_182_51 c3_183_52 c3_184_53 set community 0:131 route-map calculator permit 33355 match community c3_185_54 c3_186_55 c3_187_56 c3_188_57 c3_189_58 set community 0:131 route-map calculator permit 33356 match community c3_190_59 c3_191_60 c3_192_61 c3_193_62 c3_194_63 set community 0:131 route-map calculator permit 33357 match community c3_195_64 c3_196_65 c3_197_66 c3_198_67 c3_199_68 set community 0:131 route-map calculator permit 33358 match community c3_200_69 c3_201_70 c3_202_71 c3_203_72 c3_204_73 set community 0:131 route-map calculator permit 33359 match community c3_205_74 c3_206_75 c3_207_76 c3_208_77 c3_209_78 set community 0:131 route-map calculator permit 33360 match community c3_210_79 c3_211_80 c3_212_81 c3_213_82 c3_214_83 set community 0:131 route-map calculator permit 33361 match community c3_215_84 c3_216_85 c3_217_86 c3_218_87 c3_219_88 set community 0:131 route-map calculator permit 33362 match community c3_220_89 c3_221_90 c3_222_91 c3_223_92 c3_224_93 set community 0:131 route-map calculator permit 33363 match community c3_225_94 c3_226_95 c3_227_96 c3_228_97 c3_229_98 set community 0:131 route-map calculator permit 33364 match community c3_230_99 c3_231_100 c3_232_101 c3_233_102 c3_234_103 set community 0:131 route-map calculator permit 33365 match community c3_235_104 c3_236_105 c3_237_106 c3_238_107 c3_239_108 set community 0:131 route-map calculator permit 33366 match community c3_240_109 c3_241_110 c3_242_111 c3_243_112 c3_244_113 set community 0:131 route-map calculator permit 33367 match community c3_245_114 c3_246_115 c3_247_116 c3_248_117 c3_249_118 set community 0:131 route-map calculator permit 33368 match community c3_250_119 c3_251_120 c3_252_121 c3_253_122 c3_254_123 set community 0:131 route-map calculator permit 33369 match community c3_255_124 c3_256_125 set community 0:131 ip community-list standard 2_4_151 permit 65000:2 0:4 0:151 route-map calculator permit 33370 match community 2_4_151 set community 0:604 ip community-list standard 1_1_121 permit 65000:1 0:1 0:121 ip community-list standard 2_1_122 permit 65000:2 0:1 0:122 ip community-list standard 2_2_61 permit 65000:2 0:2 0:61 ip community-list standard 1_2_120 permit 65000:1 0:2 0:120 ip community-list standard 1_3_119 permit 65000:1 0:3 0:119 ip community-list standard 1_4_118 permit 65000:1 0:4 0:118 ip community-list standard 1_5_117 permit 65000:1 0:5 0:117 ip community-list standard 1_6_116 permit 65000:1 0:6 0:116 ip community-list standard 1_7_115 permit 65000:1 0:7 0:115 ip community-list standard 1_8_114 permit 65000:1 0:8 0:114 ip community-list standard 1_9_113 permit 65000:1 0:9 0:113 ip community-list standard 1_10_112 permit 65000:1 0:10 0:112 ip community-list standard 1_11_111 permit 65000:1 0:11 0:111 ip community-list standard 1_12_110 permit 65000:1 0:12 0:110 ip community-list standard 1_13_109 permit 65000:1 0:13 0:109 ip community-list standard 1_14_108 permit 65000:1 0:14 0:108 ip community-list standard 1_15_107 permit 65000:1 0:15 0:107 ip community-list standard 1_16_106 permit 65000:1 0:16 0:106 ip community-list standard 1_17_105 permit 65000:1 0:17 0:105 ip community-list standard 1_18_104 permit 65000:1 0:18 0:104 ip community-list standard 1_19_103 permit 65000:1 0:19 0:103 ip community-list standard 1_20_102 permit 65000:1 0:20 0:102 ip community-list standard 1_21_101 permit 65000:1 0:21 0:101 ip community-list standard 1_22_100 permit 65000:1 0:22 0:100 ip community-list standard 1_23_99 permit 65000:1 0:23 0:99 ip community-list standard 1_24_98 permit 65000:1 0:24 0:98 ip community-list standard 1_25_97 permit 65000:1 0:25 0:97 ip community-list standard 1_26_96 permit 65000:1 0:26 0:96 ip community-list standard 1_27_95 permit 65000:1 0:27 0:95 ip community-list standard 1_28_94 permit 65000:1 0:28 0:94 ip community-list standard 1_29_93 permit 65000:1 0:29 0:93 ip community-list standard 1_30_92 permit 65000:1 0:30 0:92 ip community-list standard 1_31_91 permit 65000:1 0:31 0:91 ip community-list standard 1_32_90 permit 65000:1 0:32 0:90 ip community-list standard 1_33_89 permit 65000:1 0:33 0:89 ip community-list standard 1_34_88 permit 65000:1 0:34 0:88 ip community-list standard 1_35_87 permit 65000:1 0:35 0:87 ip community-list standard 1_36_86 permit 65000:1 0:36 0:86 ip community-list standard 1_37_85 permit 65000:1 0:37 0:85 ip community-list standard 1_38_84 permit 65000:1 0:38 0:84 ip community-list standard 1_39_83 permit 65000:1 0:39 0:83 ip community-list standard 1_40_82 permit 65000:1 0:40 0:82 ip community-list standard 1_41_81 permit 65000:1 0:41 0:81 ip community-list standard 1_42_80 permit 65000:1 0:42 0:80 ip community-list standard 1_43_79 permit 65000:1 0:43 0:79 ip community-list standard 1_44_78 permit 65000:1 0:44 0:78 ip community-list standard 1_45_77 permit 65000:1 0:45 0:77 ip community-list standard 1_46_76 permit 65000:1 0:46 0:76 ip community-list standard 1_47_75 permit 65000:1 0:47 0:75 ip community-list standard 1_48_74 permit 65000:1 0:48 0:74 ip community-list standard 1_49_73 permit 65000:1 0:49 0:73 ip community-list standard 1_50_72 permit 65000:1 0:50 0:72 ip community-list standard 1_51_71 permit 65000:1 0:51 0:71 ip community-list standard 1_52_70 permit 65000:1 0:52 0:70 ip community-list standard 1_53_69 permit 65000:1 0:53 0:69 ip community-list standard 1_54_68 permit 65000:1 0:54 0:68 ip community-list standard 1_55_67 permit 65000:1 0:55 0:67 ip community-list standard 1_56_66 permit 65000:1 0:56 0:66 ip community-list standard 1_57_65 permit 65000:1 0:57 0:65 ip community-list standard 1_58_64 permit 65000:1 0:58 0:64 ip community-list standard 1_59_63 permit 65000:1 0:59 0:63 ip community-list standard 1_60_62 permit 65000:1 0:60 0:62 ip community-list standard 1_61_61 permit 65000:1 0:61 0:61 ip community-list expanded c122 permit 1 ^65000:4_0:122_0:1$ ip community-list expanded c122 permit 2 ^65000:3_0:123_0:1$ ip community-list expanded c122 permit 3 ^65000:3_0:124_0:2$ ip community-list expanded c122 permit 4 ^65000:3_0:125_0:3$ ip community-list expanded c122 permit 5 ^65000:3_0:126_0:4$ ip community-list expanded c122 permit 6 ^65000:3_0:127_0:5$ ip community-list expanded c122 permit 7 ^65000:3_0:128_0:6$ ip community-list expanded c122 permit 8 ^65000:3_0:129_0:7$ ip community-list expanded c122 permit 9 ^65000:3_0:130_0:8$ ip community-list expanded c122 permit 10 ^65000:3_0:131_0:9$ ip community-list expanded c122 permit 11 ^65000:3_0:132_0:10$ ip community-list expanded c122 permit 12 ^65000:3_0:133_0:11$ ip community-list expanded c122 permit 13 ^65000:3_0:134_0:12$ ip community-list expanded c122 permit 14 ^65000:3_0:135_0:13$ ip community-list expanded c122 permit 15 ^65000:3_0:136_0:14$ ip community-list expanded c122 permit 16 ^65000:3_0:137_0:15$ ip community-list expanded c122 permit 17 ^65000:3_0:138_0:16$ ip community-list expanded c122 permit 18 ^65000:3_0:139_0:17$ ip community-list expanded c122 permit 19 ^65000:3_0:140_0:18$ ip community-list expanded c122 permit 20 ^65000:3_0:141_0:19$ ip community-list expanded c122 permit 21 ^65000:3_0:142_0:20$ ip community-list expanded c122 permit 22 ^65000:3_0:143_0:21$ ip community-list expanded c122 permit 23 ^65000:3_0:144_0:22$ ip community-list expanded c122 permit 24 ^65000:3_0:145_0:23$ ip community-list expanded c122 permit 25 ^65000:3_0:146_0:24$ ip community-list expanded c122 permit 26 ^65000:3_0:147_0:25$ ip community-list expanded c122 permit 27 ^65000:3_0:148_0:26$ ip community-list expanded c122 permit 28 ^65000:3_0:149_0:27$ ip community-list expanded c122 permit 29 ^65000:3_0:150_0:28$ ip community-list expanded c122 permit 30 ^65000:3_0:151_0:29$ ip community-list expanded c122 permit 31 ^65000:3_0:152_0:30$ ip community-list expanded c122 permit 32 ^65000:3_0:153_0:31$ ip community-list expanded c122 permit 33 ^65000:3_0:154_0:32$ ip community-list expanded c122 permit 34 ^65000:3_0:155_0:33$ ip community-list expanded c122 permit 35 ^65000:3_0:156_0:34$ ip community-list expanded c122 permit 36 ^65000:3_0:157_0:35$ ip community-list expanded c122 permit 37 ^65000:3_0:158_0:36$ ip community-list expanded c122 permit 38 ^65000:3_0:159_0:37$ ip community-list expanded c122 permit 39 ^65000:3_0:160_0:38$ ip community-list expanded c122 permit 40 ^65000:3_0:161_0:39$ ip community-list expanded c122 permit 41 ^65000:3_0:162_0:40$ ip community-list expanded c122 permit 42 ^65000:3_0:163_0:41$ ip community-list expanded c122 permit 43 ^65000:3_0:164_0:42$ ip community-list expanded c122 permit 44 ^65000:3_0:165_0:43$ ip community-list expanded c122 permit 45 ^65000:3_0:166_0:44$ ip community-list expanded c122 permit 46 ^65000:3_0:167_0:45$ ip community-list expanded c122 permit 47 ^65000:3_0:168_0:46$ ip community-list expanded c122 permit 48 ^65000:3_0:169_0:47$ ip community-list expanded c122 permit 49 ^65000:3_0:170_0:48$ ip community-list expanded c122 permit 50 ^65000:3_0:171_0:49$ ip community-list expanded c122 permit 51 ^65000:3_0:172_0:50$ ip community-list expanded c122 permit 52 ^65000:3_0:173_0:51$ ip community-list expanded c122 permit 53 ^65000:3_0:174_0:52$ ip community-list expanded c122 permit 54 ^65000:3_0:175_0:53$ ip community-list expanded c122 permit 55 ^65000:3_0:176_0:54$ ip community-list expanded c122 permit 56 ^65000:3_0:177_0:55$ ip community-list expanded c122 permit 57 ^65000:3_0:178_0:56$ ip community-list expanded c122 permit 58 ^65000:3_0:179_0:57$ ip community-list expanded c122 permit 59 ^65000:3_0:180_0:58$ ip community-list expanded c122 permit 60 ^65000:3_0:181_0:59$ ip community-list expanded c122 permit 61 ^65000:3_0:182_0:60$ ip community-list expanded c122 permit 62 ^65000:3_0:183_0:61$ ip community-list expanded c122 permit 63 ^65000:3_0:184_0:62$ ip community-list expanded c122 permit 64 ^65000:3_0:185_0:63$ ip community-list expanded c122 permit 65 ^65000:3_0:186_0:64$ ip community-list expanded c122 permit 66 ^65000:3_0:187_0:65$ ip community-list expanded c122 permit 67 ^65000:3_0:188_0:66$ ip community-list expanded c122 permit 68 ^65000:3_0:189_0:67$ ip community-list expanded c122 permit 69 ^65000:3_0:190_0:68$ ip community-list expanded c122 permit 70 ^65000:3_0:191_0:69$ ip community-list expanded c122 permit 71 ^65000:3_0:192_0:70$ ip community-list expanded c122 permit 72 ^65000:3_0:193_0:71$ ip community-list expanded c122 permit 73 ^65000:3_0:194_0:72$ ip community-list expanded c122 permit 74 ^65000:3_0:195_0:73$ ip community-list expanded c122 permit 75 ^65000:3_0:196_0:74$ ip community-list expanded c122 permit 76 ^65000:3_0:197_0:75$ ip community-list expanded c122 permit 77 ^65000:3_0:198_0:76$ ip community-list expanded c122 permit 78 ^65000:3_0:199_0:77$ ip community-list expanded c122 permit 79 ^65000:3_0:200_0:78$ ip community-list expanded c122 permit 80 ^65000:3_0:201_0:79$ ip community-list expanded c122 permit 81 ^65000:3_0:202_0:80$ ip community-list expanded c122 permit 82 ^65000:3_0:203_0:81$ ip community-list expanded c122 permit 83 ^65000:3_0:204_0:82$ ip community-list expanded c122 permit 84 ^65000:3_0:205_0:83$ ip community-list expanded c122 permit 85 ^65000:3_0:206_0:84$ ip community-list expanded c122 permit 86 ^65000:3_0:207_0:85$ ip community-list expanded c122 permit 87 ^65000:3_0:208_0:86$ ip community-list expanded c122 permit 88 ^65000:3_0:209_0:87$ ip community-list expanded c122 permit 89 ^65000:3_0:210_0:88$ ip community-list expanded c122 permit 90 ^65000:3_0:211_0:89$ ip community-list expanded c122 permit 91 ^65000:3_0:212_0:90$ ip community-list expanded c122 permit 92 ^65000:3_0:213_0:91$ ip community-list expanded c122 permit 93 ^65000:3_0:214_0:92$ ip community-list expanded c122 permit 94 ^65000:3_0:215_0:93$ ip community-list expanded c122 permit 95 ^65000:3_0:216_0:94$ ip community-list expanded c122 permit 96 ^65000:3_0:217_0:95$ ip community-list expanded c122 permit 97 ^65000:3_0:218_0:96$ ip community-list expanded c122 permit 98 ^65000:3_0:219_0:97$ ip community-list expanded c122 permit 99 ^65000:3_0:220_0:98$ ip community-list expanded c122 permit 100 ^65000:3_0:221_0:99$ ip community-list expanded c122 permit 101 ^65000:3_0:222_0:100$ ip community-list expanded c122 permit 102 ^65000:3_0:223_0:101$ ip community-list expanded c122 permit 103 ^65000:3_0:224_0:102$ ip community-list expanded c122 permit 104 ^65000:3_0:225_0:103$ ip community-list expanded c122 permit 105 ^65000:3_0:226_0:104$ ip community-list expanded c122 permit 106 ^65000:3_0:227_0:105$ ip community-list expanded c122 permit 107 ^65000:3_0:228_0:106$ ip community-list expanded c122 permit 108 ^65000:3_0:229_0:107$ ip community-list expanded c122 permit 109 ^65000:3_0:230_0:108$ ip community-list expanded c122 permit 110 ^65000:3_0:231_0:109$ ip community-list expanded c122 permit 111 ^65000:3_0:232_0:110$ ip community-list expanded c122 permit 112 ^65000:3_0:233_0:111$ ip community-list expanded c122 permit 113 ^65000:3_0:234_0:112$ ip community-list expanded c122 permit 114 ^65000:3_0:235_0:113$ ip community-list expanded c122 permit 115 ^65000:3_0:236_0:114$ ip community-list expanded c122 permit 116 ^65000:3_0:237_0:115$ ip community-list expanded c122 permit 117 ^65000:3_0:238_0:116$ ip community-list expanded c122 permit 118 ^65000:3_0:239_0:117$ ip community-list expanded c122 permit 119 ^65000:3_0:240_0:118$ ip community-list expanded c122 permit 120 ^65000:3_0:241_0:119$ ip community-list expanded c122 permit 121 ^65000:3_0:242_0:120$ ip community-list expanded c122 permit 122 ^65000:3_0:243_0:121$ ip community-list expanded c122 permit 123 ^65000:4_0:244_0:2$ ip community-list expanded c122 permit 124 ^65000:3_0:244_0:122$ ip community-list expanded c122 permit 125 ^65000:4_0:245_0:2$ ip community-list expanded c122 permit 126 ^65000:3_0:245_0:123$ ip community-list expanded c122 permit 127 ^65000:3_0:246_0:124$ ip community-list expanded c122 permit 128 ^65000:3_0:247_0:125$ ip community-list expanded c122 permit 129 ^65000:3_0:248_0:126$ ip community-list expanded c122 permit 130 ^65000:3_0:249_0:127$ ip community-list expanded c122 permit 131 ^65000:3_0:250_0:128$ ip community-list expanded c122 permit 132 ^65000:3_0:251_0:129$ ip community-list expanded c122 permit 133 ^65000:3_0:252_0:130$ ip community-list expanded c122 permit 134 ^65000:3_0:253_0:131$ ip community-list expanded c122 permit 135 ^65000:3_0:254_0:132$ ip community-list expanded c122 permit 136 ^65000:3_0:255_0:133$ ip community-list expanded c122 permit 137 ^65000:3_0:256_0:134$ route-map calculator permit 33371 match community 1_1_121 2_1_122 2_2_61 1_2_120 1_3_119 set community 0:122 route-map calculator permit 33372 match community 1_4_118 1_5_117 1_6_116 1_7_115 1_8_114 set community 0:122 route-map calculator permit 33373 match community 1_9_113 1_10_112 1_11_111 1_12_110 1_13_109 set community 0:122 route-map calculator permit 33374 match community 1_14_108 1_15_107 1_16_106 1_17_105 1_18_104 set community 0:122 route-map calculator permit 33375 match community 1_19_103 1_20_102 1_21_101 1_22_100 1_23_99 set community 0:122 route-map calculator permit 33376 match community 1_24_98 1_25_97 1_26_96 1_27_95 1_28_94 set community 0:122 route-map calculator permit 33377 match community 1_29_93 1_30_92 1_31_91 1_32_90 1_33_89 set community 0:122 route-map calculator permit 33378 match community 1_34_88 1_35_87 1_36_86 1_37_85 1_38_84 set community 0:122 route-map calculator permit 33379 match community 1_39_83 1_40_82 1_41_81 1_42_80 1_43_79 set community 0:122 route-map calculator permit 33380 match community 1_44_78 1_45_77 1_46_76 1_47_75 1_48_74 set community 0:122 route-map calculator permit 33381 match community 1_49_73 1_50_72 1_51_71 1_52_70 1_53_69 set community 0:122 route-map calculator permit 33382 match community 1_54_68 1_55_67 1_56_66 1_57_65 1_58_64 set community 0:122 route-map calculator permit 33383 match community 1_59_63 1_60_62 1_61_61 c4_122_1 c3_123_1 set community 0:122 route-map calculator permit 33384 match community c3_124_2 c3_125_3 c3_126_4 c3_127_5 c3_128_6 set community 0:122 route-map calculator permit 33385 match community c3_129_7 c3_130_8 c3_131_9 c3_132_10 c3_133_11 set community 0:122 route-map calculator permit 33386 match community c3_134_12 c3_135_13 c3_136_14 c3_137_15 c3_138_16 set community 0:122 route-map calculator permit 33387 match community c3_139_17 c3_140_18 c3_141_19 c3_142_20 c3_143_21 set community 0:122 route-map calculator permit 33388 match community c3_144_22 c3_145_23 c3_146_24 c3_147_25 c3_148_26 set community 0:122 route-map calculator permit 33389 match community c3_149_27 c3_150_28 c3_151_29 c3_152_30 c3_153_31 set community 0:122 route-map calculator permit 33390 match community c3_154_32 c3_155_33 c3_156_34 c3_157_35 c3_158_36 set community 0:122 route-map calculator permit 33391 match community c3_159_37 c3_160_38 c3_161_39 c3_162_40 c3_163_41 set community 0:122 route-map calculator permit 33392 match community c3_164_42 c3_165_43 c3_166_44 c3_167_45 c3_168_46 set community 0:122 route-map calculator permit 33393 match community c3_169_47 c3_170_48 c3_171_49 c3_172_50 c3_173_51 set community 0:122 route-map calculator permit 33394 match community c3_174_52 c3_175_53 c3_176_54 c3_177_55 c3_178_56 set community 0:122 route-map calculator permit 33395 match community c3_179_57 c3_180_58 c3_181_59 c3_182_60 c3_183_61 set community 0:122 route-map calculator permit 33396 match community c3_184_62 c3_185_63 c3_186_64 c3_187_65 c3_188_66 set community 0:122 route-map calculator permit 33397 match community c3_189_67 c3_190_68 c3_191_69 c3_192_70 c3_193_71 set community 0:122 route-map calculator permit 33398 match community c3_194_72 c3_195_73 c3_196_74 c3_197_75 c3_198_76 set community 0:122 route-map calculator permit 33399 match community c3_199_77 c3_200_78 c3_201_79 c3_202_80 c3_203_81 set community 0:122 route-map calculator permit 33400 match community c3_204_82 c3_205_83 c3_206_84 c3_207_85 c3_208_86 set community 0:122 route-map calculator permit 33401 match community c3_209_87 c3_210_88 c3_211_89 c3_212_90 c3_213_91 set community 0:122 route-map calculator permit 33402 match community c3_214_92 c3_215_93 c3_216_94 c3_217_95 c3_218_96 set community 0:122 route-map calculator permit 33403 match community c3_219_97 c3_220_98 c3_221_99 c3_222_100 c3_223_101 set community 0:122 route-map calculator permit 33404 match community c3_224_102 c3_225_103 c3_226_104 c3_227_105 c3_228_106 set community 0:122 route-map calculator permit 33405 match community c3_229_107 c3_230_108 c3_231_109 c3_232_110 c3_233_111 set community 0:122 route-map calculator permit 33406 match community c3_234_112 c3_235_113 c3_236_114 c3_237_115 c3_238_116 set community 0:122 route-map calculator permit 33407 match community c3_239_117 c3_240_118 c3_241_119 c3_242_120 c3_243_121 set community 0:122 route-map calculator permit 33408 match community c4_244_2 c3_244_122 c4_245_2 c3_245_123 c3_246_124 set community 0:122 route-map calculator permit 33409 match community c3_247_125 c3_248_126 c3_249_127 c3_250_128 c3_251_129 set community 0:122 route-map calculator permit 33410 match community c3_252_130 c3_253_131 c3_254_132 c3_255_133 c3_256_134 set community 0:122 ip community-list standard 2_5_67 permit 65000:2 0:5 0:67 ip community-list standard 1_79_256 permit 65000:1 0:79 0:256 ip community-list standard 1_80_255 permit 65000:1 0:80 0:255 ip community-list standard 1_81_254 permit 65000:1 0:81 0:254 ip community-list standard 1_82_253 permit 65000:1 0:82 0:253 ip community-list standard 1_83_252 permit 65000:1 0:83 0:252 ip community-list standard 1_84_251 permit 65000:1 0:84 0:251 ip community-list standard 1_85_250 permit 65000:1 0:85 0:250 ip community-list standard 1_86_249 permit 65000:1 0:86 0:249 ip community-list standard 1_87_248 permit 65000:1 0:87 0:248 ip community-list standard 1_88_247 permit 65000:1 0:88 0:247 ip community-list standard 1_89_246 permit 65000:1 0:89 0:246 ip community-list standard 1_90_245 permit 65000:1 0:90 0:245 ip community-list standard 1_91_244 permit 65000:1 0:91 0:244 ip community-list standard 1_92_243 permit 65000:1 0:92 0:243 ip community-list standard 1_93_242 permit 65000:1 0:93 0:242 ip community-list standard 1_94_241 permit 65000:1 0:94 0:241 ip community-list standard 1_95_240 permit 65000:1 0:95 0:240 ip community-list standard 1_96_239 permit 65000:1 0:96 0:239 ip community-list standard 1_97_238 permit 65000:1 0:97 0:238 ip community-list standard 1_98_237 permit 65000:1 0:98 0:237 ip community-list standard 1_99_236 permit 65000:1 0:99 0:236 ip community-list standard 1_100_235 permit 65000:1 0:100 0:235 ip community-list standard 1_101_234 permit 65000:1 0:101 0:234 ip community-list standard 1_102_233 permit 65000:1 0:102 0:233 ip community-list standard 1_103_232 permit 65000:1 0:103 0:232 ip community-list standard 1_104_231 permit 65000:1 0:104 0:231 ip community-list standard 1_105_230 permit 65000:1 0:105 0:230 ip community-list standard 1_106_229 permit 65000:1 0:106 0:229 ip community-list standard 1_107_228 permit 65000:1 0:107 0:228 ip community-list standard 1_108_227 permit 65000:1 0:108 0:227 ip community-list standard 1_109_226 permit 65000:1 0:109 0:226 ip community-list standard 1_110_225 permit 65000:1 0:110 0:225 ip community-list standard 1_111_224 permit 65000:1 0:111 0:224 ip community-list standard 1_112_223 permit 65000:1 0:112 0:223 ip community-list standard 1_113_222 permit 65000:1 0:113 0:222 ip community-list standard 1_114_221 permit 65000:1 0:114 0:221 ip community-list standard 1_115_220 permit 65000:1 0:115 0:220 ip community-list standard 1_116_219 permit 65000:1 0:116 0:219 ip community-list standard 1_117_218 permit 65000:1 0:117 0:218 ip community-list standard 1_118_217 permit 65000:1 0:118 0:217 ip community-list standard 1_119_216 permit 65000:1 0:119 0:216 ip community-list standard 1_120_215 permit 65000:1 0:120 0:215 ip community-list standard 1_121_214 permit 65000:1 0:121 0:214 ip community-list standard 1_122_213 permit 65000:1 0:122 0:213 ip community-list standard 1_123_212 permit 65000:1 0:123 0:212 ip community-list standard 1_124_211 permit 65000:1 0:124 0:211 ip community-list standard 1_125_210 permit 65000:1 0:125 0:210 ip community-list standard 1_126_209 permit 65000:1 0:126 0:209 ip community-list standard 1_127_208 permit 65000:1 0:127 0:208 ip community-list standard 1_128_207 permit 65000:1 0:128 0:207 ip community-list standard 1_129_206 permit 65000:1 0:129 0:206 ip community-list standard 1_130_205 permit 65000:1 0:130 0:205 ip community-list standard 1_131_204 permit 65000:1 0:131 0:204 ip community-list standard 1_132_203 permit 65000:1 0:132 0:203 ip community-list standard 1_133_202 permit 65000:1 0:133 0:202 ip community-list standard 1_134_201 permit 65000:1 0:134 0:201 ip community-list standard 1_135_200 permit 65000:1 0:135 0:200 ip community-list standard 1_136_199 permit 65000:1 0:136 0:199 ip community-list standard 1_137_198 permit 65000:1 0:137 0:198 ip community-list standard 1_138_197 permit 65000:1 0:138 0:197 ip community-list standard 1_139_196 permit 65000:1 0:139 0:196 ip community-list standard 1_140_195 permit 65000:1 0:140 0:195 ip community-list standard 1_141_194 permit 65000:1 0:141 0:194 ip community-list standard 1_142_193 permit 65000:1 0:142 0:193 ip community-list standard 1_143_192 permit 65000:1 0:143 0:192 ip community-list standard 1_144_191 permit 65000:1 0:144 0:191 ip community-list standard 1_145_190 permit 65000:1 0:145 0:190 ip community-list standard 1_146_189 permit 65000:1 0:146 0:189 ip community-list standard 1_147_188 permit 65000:1 0:147 0:188 ip community-list standard 1_148_187 permit 65000:1 0:148 0:187 ip community-list standard 1_149_186 permit 65000:1 0:149 0:186 ip community-list standard 1_150_185 permit 65000:1 0:150 0:185 ip community-list standard 1_151_184 permit 65000:1 0:151 0:184 ip community-list standard 1_152_183 permit 65000:1 0:152 0:183 ip community-list standard 1_153_182 permit 65000:1 0:153 0:182 ip community-list standard 1_154_181 permit 65000:1 0:154 0:181 ip community-list standard 1_155_180 permit 65000:1 0:155 0:180 ip community-list standard 1_156_179 permit 65000:1 0:156 0:179 ip community-list standard 1_157_178 permit 65000:1 0:157 0:178 ip community-list standard 1_158_177 permit 65000:1 0:158 0:177 ip community-list standard 1_159_176 permit 65000:1 0:159 0:176 ip community-list standard 1_160_175 permit 65000:1 0:160 0:175 ip community-list standard 1_161_174 permit 65000:1 0:161 0:174 ip community-list standard 1_162_173 permit 65000:1 0:162 0:173 ip community-list standard 1_163_172 permit 65000:1 0:163 0:172 ip community-list standard 1_164_171 permit 65000:1 0:164 0:171 ip community-list standard 1_165_170 permit 65000:1 0:165 0:170 ip community-list standard 1_166_169 permit 65000:1 0:166 0:169 ip community-list standard 1_167_168 permit 65000:1 0:167 0:168 route-map calculator permit 33411 match community 2_5_67 1_79_256 1_80_255 1_81_254 1_82_253 set community 0:335 route-map calculator permit 33412 match community 1_83_252 1_84_251 1_85_250 1_86_249 1_87_248 set community 0:335 route-map calculator permit 33413 match community 1_88_247 1_89_246 1_90_245 1_91_244 1_92_243 set community 0:335 route-map calculator permit 33414 match community 1_93_242 1_94_241 1_95_240 1_96_239 1_97_238 set community 0:335 route-map calculator permit 33415 match community 1_98_237 1_99_236 1_100_235 1_101_234 1_102_233 set community 0:335 route-map calculator permit 33416 match community 1_103_232 1_104_231 1_105_230 1_106_229 1_107_228 set community 0:335 route-map calculator permit 33417 match community 1_108_227 1_109_226 1_110_225 1_111_224 1_112_223 set community 0:335 route-map calculator permit 33418 match community 1_113_222 1_114_221 1_115_220 1_116_219 1_117_218 set community 0:335 route-map calculator permit 33419 match community 1_118_217 1_119_216 1_120_215 1_121_214 1_122_213 set community 0:335 route-map calculator permit 33420 match community 1_123_212 1_124_211 1_125_210 1_126_209 1_127_208 set community 0:335 route-map calculator permit 33421 match community 1_128_207 1_129_206 1_130_205 1_131_204 1_132_203 set community 0:335 route-map calculator permit 33422 match community 1_133_202 1_134_201 1_135_200 1_136_199 1_137_198 set community 0:335 route-map calculator permit 33423 match community 1_138_197 1_139_196 1_140_195 1_141_194 1_142_193 set community 0:335 route-map calculator permit 33424 match community 1_143_192 1_144_191 1_145_190 1_146_189 1_147_188 set community 0:335 route-map calculator permit 33425 match community 1_148_187 1_149_186 1_150_185 1_151_184 1_152_183 set community 0:335 route-map calculator permit 33426 match community 1_153_182 1_154_181 1_155_180 1_156_179 1_157_178 set community 0:335 route-map calculator permit 33427 match community 1_158_177 1_159_176 1_160_175 1_161_174 1_162_173 set community 0:335 route-map calculator permit 33428 match community 1_163_172 1_164_171 1_165_170 1_166_169 1_167_168 set community 0:335 ip community-list standard 2_49_103 permit 65000:2 0:49 0:103 route-map calculator permit 33429 match community 2_49_103 set community 0:5047 ip community-list standard 2_57_232 permit 65000:2 0:57 0:232 ip community-list standard 2_58_228 permit 65000:2 0:58 0:228 ip community-list standard 2_76_174 permit 65000:2 0:76 0:174 ip community-list standard 2_87_152 permit 65000:2 0:87 0:152 ip community-list standard 2_114_116 permit 65000:2 0:114 0:116 route-map calculator permit 33430 match community 2_57_232 2_58_228 2_76_174 2_87_152 2_114_116 set community 0:13224 ip community-list standard 2_49_217 permit 65000:2 0:49 0:217 route-map calculator permit 33431 match community 2_49_217 set community 0:10633 ip community-list standard 2_10_223 permit 65000:2 0:10 0:223 route-map calculator permit 33432 match community 2_10_223 set community 0:2230 ip community-list standard 2_33_167 permit 65000:2 0:33 0:167 route-map calculator permit 33433 match community 2_33_167 set community 0:5511 ip community-list standard 2_200_239 permit 65000:2 0:200 0:239 route-map calculator permit 33434 match community 2_200_239 set community 0:47800 ip community-list standard 2_167_223 permit 65000:2 0:167 0:223 route-map calculator permit 33435 match community 2_167_223 set community 0:37241 ip community-list standard 2_59_255 permit 65000:2 0:59 0:255 ip community-list standard 2_85_177 permit 65000:2 0:85 0:177 route-map calculator permit 33436 match community 2_59_255 2_85_177 set community 0:15045 ip community-list standard 2_86_255 permit 65000:2 0:86 0:255 ip community-list standard 2_102_215 permit 65000:2 0:102 0:215 ip community-list standard 2_129_170 permit 65000:2 0:129 0:170 route-map calculator permit 33437 match community 2_86_255 2_102_215 2_129_170 set community 0:21930 ip community-list standard 2_245_253 permit 65000:2 0:245 0:253 route-map calculator permit 33438 match community 2_245_253 set community 0:61985 ip community-list standard 2_197_218 permit 65000:2 0:197 0:218 route-map calculator permit 33439 match community 2_197_218 set community 0:42946 ip community-list standard 2_58_139 permit 65000:2 0:58 0:139 route-map calculator permit 33440 match community 2_58_139 set community 0:8062 ip community-list standard 2_19_148 permit 65000:2 0:19 0:148 ip community-list standard 2_37_76 permit 65000:2 0:37 0:76 ip community-list standard 2_38_74 permit 65000:2 0:38 0:74 route-map calculator permit 33441 match community 2_19_148 2_37_76 2_38_74 set community 0:2812 ip community-list standard 2_2_145 permit 65000:2 0:2 0:145 ip community-list standard 2_5_58 permit 65000:2 0:5 0:58 ip community-list standard 2_10_29 permit 65000:2 0:10 0:29 ip community-list standard 1_34_256 permit 65000:1 0:34 0:256 ip community-list standard 1_35_255 permit 65000:1 0:35 0:255 ip community-list standard 1_36_254 permit 65000:1 0:36 0:254 ip community-list standard 1_37_253 permit 65000:1 0:37 0:253 ip community-list standard 1_38_252 permit 65000:1 0:38 0:252 ip community-list standard 1_39_251 permit 65000:1 0:39 0:251 ip community-list standard 1_40_250 permit 65000:1 0:40 0:250 ip community-list standard 1_41_249 permit 65000:1 0:41 0:249 ip community-list standard 1_42_248 permit 65000:1 0:42 0:248 ip community-list standard 1_43_247 permit 65000:1 0:43 0:247 ip community-list standard 1_44_246 permit 65000:1 0:44 0:246 ip community-list standard 1_45_245 permit 65000:1 0:45 0:245 ip community-list standard 1_46_244 permit 65000:1 0:46 0:244 ip community-list standard 1_47_243 permit 65000:1 0:47 0:243 ip community-list standard 1_48_242 permit 65000:1 0:48 0:242 ip community-list standard 1_49_241 permit 65000:1 0:49 0:241 ip community-list standard 1_50_240 permit 65000:1 0:50 0:240 ip community-list standard 1_51_239 permit 65000:1 0:51 0:239 ip community-list standard 1_52_238 permit 65000:1 0:52 0:238 ip community-list standard 1_53_237 permit 65000:1 0:53 0:237 ip community-list standard 1_54_236 permit 65000:1 0:54 0:236 ip community-list standard 1_55_235 permit 65000:1 0:55 0:235 ip community-list standard 1_56_234 permit 65000:1 0:56 0:234 ip community-list standard 1_57_233 permit 65000:1 0:57 0:233 ip community-list standard 1_58_232 permit 65000:1 0:58 0:232 ip community-list standard 1_59_231 permit 65000:1 0:59 0:231 ip community-list standard 1_60_230 permit 65000:1 0:60 0:230 ip community-list standard 1_61_229 permit 65000:1 0:61 0:229 ip community-list standard 1_62_228 permit 65000:1 0:62 0:228 ip community-list standard 1_63_227 permit 65000:1 0:63 0:227 ip community-list standard 1_64_226 permit 65000:1 0:64 0:226 ip community-list standard 1_65_225 permit 65000:1 0:65 0:225 ip community-list standard 1_66_224 permit 65000:1 0:66 0:224 ip community-list standard 1_67_223 permit 65000:1 0:67 0:223 ip community-list standard 1_68_222 permit 65000:1 0:68 0:222 ip community-list standard 1_69_221 permit 65000:1 0:69 0:221 ip community-list standard 1_70_220 permit 65000:1 0:70 0:220 ip community-list standard 1_71_219 permit 65000:1 0:71 0:219 ip community-list standard 1_72_218 permit 65000:1 0:72 0:218 ip community-list standard 1_73_217 permit 65000:1 0:73 0:217 ip community-list standard 1_74_216 permit 65000:1 0:74 0:216 ip community-list standard 1_75_215 permit 65000:1 0:75 0:215 ip community-list standard 1_76_214 permit 65000:1 0:76 0:214 ip community-list standard 1_77_213 permit 65000:1 0:77 0:213 ip community-list standard 1_78_212 permit 65000:1 0:78 0:212 ip community-list standard 1_79_211 permit 65000:1 0:79 0:211 ip community-list standard 1_80_210 permit 65000:1 0:80 0:210 ip community-list standard 1_81_209 permit 65000:1 0:81 0:209 ip community-list standard 1_82_208 permit 65000:1 0:82 0:208 ip community-list standard 1_83_207 permit 65000:1 0:83 0:207 ip community-list standard 1_84_206 permit 65000:1 0:84 0:206 ip community-list standard 1_85_205 permit 65000:1 0:85 0:205 ip community-list standard 1_86_204 permit 65000:1 0:86 0:204 ip community-list standard 1_87_203 permit 65000:1 0:87 0:203 ip community-list standard 1_88_202 permit 65000:1 0:88 0:202 ip community-list standard 1_89_201 permit 65000:1 0:89 0:201 ip community-list standard 1_90_200 permit 65000:1 0:90 0:200 ip community-list standard 1_91_199 permit 65000:1 0:91 0:199 ip community-list standard 1_92_198 permit 65000:1 0:92 0:198 ip community-list standard 1_93_197 permit 65000:1 0:93 0:197 ip community-list standard 1_94_196 permit 65000:1 0:94 0:196 ip community-list standard 1_95_195 permit 65000:1 0:95 0:195 ip community-list standard 1_96_194 permit 65000:1 0:96 0:194 ip community-list standard 1_97_193 permit 65000:1 0:97 0:193 ip community-list standard 1_98_192 permit 65000:1 0:98 0:192 ip community-list standard 1_99_191 permit 65000:1 0:99 0:191 ip community-list standard 1_100_190 permit 65000:1 0:100 0:190 ip community-list standard 1_101_189 permit 65000:1 0:101 0:189 ip community-list standard 1_102_188 permit 65000:1 0:102 0:188 ip community-list standard 1_103_187 permit 65000:1 0:103 0:187 ip community-list standard 1_104_186 permit 65000:1 0:104 0:186 ip community-list standard 1_105_185 permit 65000:1 0:105 0:185 ip community-list standard 1_106_184 permit 65000:1 0:106 0:184 ip community-list standard 1_107_183 permit 65000:1 0:107 0:183 ip community-list standard 1_108_182 permit 65000:1 0:108 0:182 ip community-list standard 1_109_181 permit 65000:1 0:109 0:181 ip community-list standard 1_110_180 permit 65000:1 0:110 0:180 ip community-list standard 1_111_179 permit 65000:1 0:111 0:179 ip community-list standard 1_112_178 permit 65000:1 0:112 0:178 ip community-list standard 1_113_177 permit 65000:1 0:113 0:177 ip community-list standard 1_114_176 permit 65000:1 0:114 0:176 ip community-list standard 1_115_175 permit 65000:1 0:115 0:175 ip community-list standard 1_116_174 permit 65000:1 0:116 0:174 ip community-list standard 1_117_173 permit 65000:1 0:117 0:173 ip community-list standard 1_118_172 permit 65000:1 0:118 0:172 ip community-list standard 1_119_171 permit 65000:1 0:119 0:171 ip community-list standard 1_120_170 permit 65000:1 0:120 0:170 ip community-list standard 1_121_169 permit 65000:1 0:121 0:169 ip community-list standard 1_122_168 permit 65000:1 0:122 0:168 ip community-list standard 1_123_167 permit 65000:1 0:123 0:167 ip community-list standard 1_124_166 permit 65000:1 0:124 0:166 ip community-list standard 1_125_165 permit 65000:1 0:125 0:165 ip community-list standard 1_126_164 permit 65000:1 0:126 0:164 ip community-list standard 1_127_163 permit 65000:1 0:127 0:163 ip community-list standard 1_128_162 permit 65000:1 0:128 0:162 ip community-list standard 1_129_161 permit 65000:1 0:129 0:161 ip community-list standard 1_130_160 permit 65000:1 0:130 0:160 ip community-list standard 1_131_159 permit 65000:1 0:131 0:159 ip community-list standard 1_132_158 permit 65000:1 0:132 0:158 ip community-list standard 1_133_157 permit 65000:1 0:133 0:157 ip community-list standard 1_134_156 permit 65000:1 0:134 0:156 ip community-list standard 1_135_155 permit 65000:1 0:135 0:155 ip community-list standard 1_136_154 permit 65000:1 0:136 0:154 ip community-list standard 1_137_153 permit 65000:1 0:137 0:153 ip community-list standard 1_138_152 permit 65000:1 0:138 0:152 ip community-list standard 1_139_151 permit 65000:1 0:139 0:151 ip community-list standard 1_140_150 permit 65000:1 0:140 0:150 ip community-list standard 1_141_149 permit 65000:1 0:141 0:149 ip community-list standard 1_142_148 permit 65000:1 0:142 0:148 ip community-list standard 1_143_147 permit 65000:1 0:143 0:147 ip community-list standard 1_144_146 permit 65000:1 0:144 0:146 ip community-list standard 1_145_145 permit 65000:1 0:145 0:145 route-map calculator permit 33442 match community 2_2_145 2_5_58 2_10_29 1_34_256 1_35_255 set community 0:290 route-map calculator permit 33443 match community 1_36_254 1_37_253 1_38_252 1_39_251 1_40_250 set community 0:290 route-map calculator permit 33444 match community 1_41_249 1_42_248 1_43_247 1_44_246 1_45_245 set community 0:290 route-map calculator permit 33445 match community 1_46_244 1_47_243 1_48_242 1_49_241 1_50_240 set community 0:290 route-map calculator permit 33446 match community 1_51_239 1_52_238 1_53_237 1_54_236 1_55_235 set community 0:290 route-map calculator permit 33447 match community 1_56_234 1_57_233 1_58_232 1_59_231 1_60_230 set community 0:290 route-map calculator permit 33448 match community 1_61_229 1_62_228 1_63_227 1_64_226 1_65_225 set community 0:290 route-map calculator permit 33449 match community 1_66_224 1_67_223 1_68_222 1_69_221 1_70_220 set community 0:290 route-map calculator permit 33450 match community 1_71_219 1_72_218 1_73_217 1_74_216 1_75_215 set community 0:290 route-map calculator permit 33451 match community 1_76_214 1_77_213 1_78_212 1_79_211 1_80_210 set community 0:290 route-map calculator permit 33452 match community 1_81_209 1_82_208 1_83_207 1_84_206 1_85_205 set community 0:290 route-map calculator permit 33453 match community 1_86_204 1_87_203 1_88_202 1_89_201 1_90_200 set community 0:290 route-map calculator permit 33454 match community 1_91_199 1_92_198 1_93_197 1_94_196 1_95_195 set community 0:290 route-map calculator permit 33455 match community 1_96_194 1_97_193 1_98_192 1_99_191 1_100_190 set community 0:290 route-map calculator permit 33456 match community 1_101_189 1_102_188 1_103_187 1_104_186 1_105_185 set community 0:290 route-map calculator permit 33457 match community 1_106_184 1_107_183 1_108_182 1_109_181 1_110_180 set community 0:290 route-map calculator permit 33458 match community 1_111_179 1_112_178 1_113_177 1_114_176 1_115_175 set community 0:290 route-map calculator permit 33459 match community 1_116_174 1_117_173 1_118_172 1_119_171 1_120_170 set community 0:290 route-map calculator permit 33460 match community 1_121_169 1_122_168 1_123_167 1_124_166 1_125_165 set community 0:290 route-map calculator permit 33461 match community 1_126_164 1_127_163 1_128_162 1_129_161 1_130_160 set community 0:290 route-map calculator permit 33462 match community 1_131_159 1_132_158 1_133_157 1_134_156 1_135_155 set community 0:290 route-map calculator permit 33463 match community 1_136_154 1_137_153 1_138_152 1_139_151 1_140_150 set community 0:290 route-map calculator permit 33464 match community 1_141_149 1_142_148 1_143_147 1_144_146 1_145_145 set community 0:290 ip community-list standard 2_81_173 permit 65000:2 0:81 0:173 route-map calculator permit 33465 match community 2_81_173 set community 0:14013 ip community-list standard 2_43_122 permit 65000:2 0:43 0:122 ip community-list standard 2_61_86 permit 65000:2 0:61 0:86 route-map calculator permit 33466 match community 2_43_122 2_61_86 set community 0:5246 ip community-list standard 2_62_199 permit 65000:2 0:62 0:199 route-map calculator permit 33467 match community 2_62_199 set community 0:12338 ip community-list standard 2_78_179 permit 65000:2 0:78 0:179 route-map calculator permit 33468 match community 2_78_179 set community 0:13962 ip community-list standard 2_6_230 permit 65000:2 0:6 0:230 ip community-list standard 2_10_138 permit 65000:2 0:10 0:138 ip community-list standard 2_12_115 permit 65000:2 0:12 0:115 ip community-list standard 2_15_92 permit 65000:2 0:15 0:92 ip community-list standard 2_20_69 permit 65000:2 0:20 0:69 ip community-list standard 2_23_60 permit 65000:2 0:23 0:60 ip community-list standard 2_30_46 permit 65000:2 0:30 0:46 route-map calculator permit 33469 match community 2_6_230 2_10_138 2_12_115 2_15_92 2_20_69 set community 0:1380 route-map calculator permit 33470 match community 2_23_60 2_30_46 set community 0:1380 ip community-list standard 2_213_240 permit 65000:2 0:213 0:240 route-map calculator permit 33471 match community 2_213_240 set community 0:51120 ip community-list standard 2_70_190 permit 65000:2 0:70 0:190 ip community-list standard 2_76_175 permit 65000:2 0:76 0:175 ip community-list standard 2_95_140 permit 65000:2 0:95 0:140 ip community-list standard 2_100_133 permit 65000:2 0:100 0:133 route-map calculator permit 33472 match community 2_70_190 2_76_175 2_95_140 2_100_133 set community 0:13300 ip community-list standard 2_50_139 permit 65000:2 0:50 0:139 route-map calculator permit 33473 match community 2_50_139 set community 0:6950 ip community-list standard 2_20_255 permit 65000:2 0:20 0:255 ip community-list standard 2_25_204 permit 65000:2 0:25 0:204 ip community-list standard 2_30_170 permit 65000:2 0:30 0:170 ip community-list standard 2_34_150 permit 65000:2 0:34 0:150 ip community-list standard 2_50_102 permit 65000:2 0:50 0:102 ip community-list standard 2_51_100 permit 65000:2 0:51 0:100 ip community-list standard 2_60_85 permit 65000:2 0:60 0:85 ip community-list standard 2_68_75 permit 65000:2 0:68 0:75 route-map calculator permit 33474 match community 2_20_255 2_25_204 2_30_170 2_34_150 2_50_102 set community 0:5100 route-map calculator permit 33475 match community 2_51_100 2_60_85 2_68_75 set community 0:5100 ip community-list standard 2_19_152 permit 65000:2 0:19 0:152 ip community-list standard 2_38_76 permit 65000:2 0:38 0:76 route-map calculator permit 33476 match community 2_19_152 2_38_76 set community 0:2888 ip community-list standard 2_177_227 permit 65000:2 0:177 0:227 route-map calculator permit 33477 match community 2_177_227 set community 0:40179 ip community-list standard 2_251_253 permit 65000:2 0:251 0:253 route-map calculator permit 33478 match community 2_251_253 set community 0:63503 ip community-list standard 1_1_170 permit 65000:1 0:1 0:170 ip community-list standard 2_1_171 permit 65000:2 0:1 0:171 ip community-list standard 1_2_169 permit 65000:1 0:2 0:169 ip community-list standard 2_3_57 permit 65000:2 0:3 0:57 ip community-list standard 1_3_168 permit 65000:1 0:3 0:168 ip community-list standard 1_4_167 permit 65000:1 0:4 0:167 ip community-list standard 1_5_166 permit 65000:1 0:5 0:166 ip community-list standard 1_6_165 permit 65000:1 0:6 0:165 ip community-list standard 1_7_164 permit 65000:1 0:7 0:164 ip community-list standard 1_8_163 permit 65000:1 0:8 0:163 ip community-list standard 2_9_19 permit 65000:2 0:9 0:19 ip community-list standard 1_9_162 permit 65000:1 0:9 0:162 ip community-list standard 1_10_161 permit 65000:1 0:10 0:161 ip community-list standard 1_11_160 permit 65000:1 0:11 0:160 ip community-list standard 1_12_159 permit 65000:1 0:12 0:159 ip community-list standard 1_13_158 permit 65000:1 0:13 0:158 ip community-list standard 1_14_157 permit 65000:1 0:14 0:157 ip community-list standard 1_15_156 permit 65000:1 0:15 0:156 ip community-list standard 1_16_155 permit 65000:1 0:16 0:155 ip community-list standard 1_17_154 permit 65000:1 0:17 0:154 ip community-list standard 1_18_153 permit 65000:1 0:18 0:153 ip community-list standard 1_19_152 permit 65000:1 0:19 0:152 ip community-list standard 1_20_151 permit 65000:1 0:20 0:151 ip community-list standard 1_21_150 permit 65000:1 0:21 0:150 ip community-list standard 1_22_149 permit 65000:1 0:22 0:149 ip community-list standard 1_23_148 permit 65000:1 0:23 0:148 ip community-list standard 1_24_147 permit 65000:1 0:24 0:147 ip community-list standard 1_25_146 permit 65000:1 0:25 0:146 ip community-list standard 1_26_145 permit 65000:1 0:26 0:145 ip community-list standard 1_27_144 permit 65000:1 0:27 0:144 ip community-list standard 1_28_143 permit 65000:1 0:28 0:143 ip community-list standard 1_29_142 permit 65000:1 0:29 0:142 ip community-list standard 1_30_141 permit 65000:1 0:30 0:141 ip community-list standard 1_31_140 permit 65000:1 0:31 0:140 ip community-list standard 1_32_139 permit 65000:1 0:32 0:139 ip community-list standard 1_33_138 permit 65000:1 0:33 0:138 ip community-list standard 1_34_137 permit 65000:1 0:34 0:137 ip community-list standard 1_35_136 permit 65000:1 0:35 0:136 ip community-list standard 1_36_135 permit 65000:1 0:36 0:135 ip community-list standard 1_37_134 permit 65000:1 0:37 0:134 ip community-list standard 1_38_133 permit 65000:1 0:38 0:133 ip community-list standard 1_39_132 permit 65000:1 0:39 0:132 ip community-list standard 1_40_131 permit 65000:1 0:40 0:131 ip community-list standard 1_41_130 permit 65000:1 0:41 0:130 ip community-list standard 1_42_129 permit 65000:1 0:42 0:129 ip community-list standard 1_43_128 permit 65000:1 0:43 0:128 ip community-list standard 1_44_127 permit 65000:1 0:44 0:127 ip community-list standard 1_45_126 permit 65000:1 0:45 0:126 ip community-list standard 1_46_125 permit 65000:1 0:46 0:125 ip community-list standard 1_47_124 permit 65000:1 0:47 0:124 ip community-list standard 1_48_123 permit 65000:1 0:48 0:123 ip community-list standard 1_49_122 permit 65000:1 0:49 0:122 ip community-list standard 1_50_121 permit 65000:1 0:50 0:121 ip community-list standard 1_51_120 permit 65000:1 0:51 0:120 ip community-list standard 1_52_119 permit 65000:1 0:52 0:119 ip community-list standard 1_53_118 permit 65000:1 0:53 0:118 ip community-list standard 1_54_117 permit 65000:1 0:54 0:117 ip community-list standard 1_55_116 permit 65000:1 0:55 0:116 ip community-list standard 1_56_115 permit 65000:1 0:56 0:115 ip community-list standard 1_57_114 permit 65000:1 0:57 0:114 ip community-list standard 1_58_113 permit 65000:1 0:58 0:113 ip community-list standard 1_59_112 permit 65000:1 0:59 0:112 ip community-list standard 1_60_111 permit 65000:1 0:60 0:111 ip community-list standard 1_61_110 permit 65000:1 0:61 0:110 ip community-list standard 1_62_109 permit 65000:1 0:62 0:109 ip community-list standard 1_63_108 permit 65000:1 0:63 0:108 ip community-list standard 1_64_107 permit 65000:1 0:64 0:107 ip community-list standard 1_65_106 permit 65000:1 0:65 0:106 ip community-list standard 1_66_105 permit 65000:1 0:66 0:105 ip community-list standard 1_67_104 permit 65000:1 0:67 0:104 ip community-list standard 1_68_103 permit 65000:1 0:68 0:103 ip community-list standard 1_69_102 permit 65000:1 0:69 0:102 ip community-list standard 1_70_101 permit 65000:1 0:70 0:101 ip community-list standard 1_71_100 permit 65000:1 0:71 0:100 ip community-list standard 1_72_99 permit 65000:1 0:72 0:99 ip community-list standard 1_73_98 permit 65000:1 0:73 0:98 ip community-list standard 1_74_97 permit 65000:1 0:74 0:97 ip community-list standard 1_75_96 permit 65000:1 0:75 0:96 ip community-list standard 1_76_95 permit 65000:1 0:76 0:95 ip community-list standard 1_77_94 permit 65000:1 0:77 0:94 ip community-list standard 1_78_93 permit 65000:1 0:78 0:93 ip community-list standard 1_79_92 permit 65000:1 0:79 0:92 ip community-list standard 1_80_91 permit 65000:1 0:80 0:91 ip community-list standard 1_81_90 permit 65000:1 0:81 0:90 ip community-list standard 1_82_89 permit 65000:1 0:82 0:89 ip community-list standard 1_83_88 permit 65000:1 0:83 0:88 ip community-list standard 1_84_87 permit 65000:1 0:84 0:87 ip community-list standard 1_85_86 permit 65000:1 0:85 0:86 ip community-list expanded c171 permit 1 ^65000:4_0:171_0:1$ ip community-list expanded c171 permit 2 ^65000:3_0:172_0:1$ ip community-list expanded c171 permit 3 ^65000:3_0:173_0:2$ ip community-list expanded c171 permit 4 ^65000:3_0:174_0:3$ ip community-list expanded c171 permit 5 ^65000:3_0:175_0:4$ ip community-list expanded c171 permit 6 ^65000:3_0:176_0:5$ ip community-list expanded c171 permit 7 ^65000:3_0:177_0:6$ ip community-list expanded c171 permit 8 ^65000:3_0:178_0:7$ ip community-list expanded c171 permit 9 ^65000:3_0:179_0:8$ ip community-list expanded c171 permit 10 ^65000:3_0:180_0:9$ ip community-list expanded c171 permit 11 ^65000:3_0:181_0:10$ ip community-list expanded c171 permit 12 ^65000:3_0:182_0:11$ ip community-list expanded c171 permit 13 ^65000:3_0:183_0:12$ ip community-list expanded c171 permit 14 ^65000:3_0:184_0:13$ ip community-list expanded c171 permit 15 ^65000:3_0:185_0:14$ ip community-list expanded c171 permit 16 ^65000:3_0:186_0:15$ ip community-list expanded c171 permit 17 ^65000:3_0:187_0:16$ ip community-list expanded c171 permit 18 ^65000:3_0:188_0:17$ ip community-list expanded c171 permit 19 ^65000:3_0:189_0:18$ ip community-list expanded c171 permit 20 ^65000:3_0:190_0:19$ ip community-list expanded c171 permit 21 ^65000:3_0:191_0:20$ ip community-list expanded c171 permit 22 ^65000:3_0:192_0:21$ ip community-list expanded c171 permit 23 ^65000:3_0:193_0:22$ ip community-list expanded c171 permit 24 ^65000:3_0:194_0:23$ ip community-list expanded c171 permit 25 ^65000:3_0:195_0:24$ ip community-list expanded c171 permit 26 ^65000:3_0:196_0:25$ ip community-list expanded c171 permit 27 ^65000:3_0:197_0:26$ ip community-list expanded c171 permit 28 ^65000:3_0:198_0:27$ ip community-list expanded c171 permit 29 ^65000:3_0:199_0:28$ ip community-list expanded c171 permit 30 ^65000:3_0:200_0:29$ ip community-list expanded c171 permit 31 ^65000:3_0:201_0:30$ ip community-list expanded c171 permit 32 ^65000:3_0:202_0:31$ ip community-list expanded c171 permit 33 ^65000:3_0:203_0:32$ ip community-list expanded c171 permit 34 ^65000:3_0:204_0:33$ ip community-list expanded c171 permit 35 ^65000:3_0:205_0:34$ ip community-list expanded c171 permit 36 ^65000:3_0:206_0:35$ ip community-list expanded c171 permit 37 ^65000:3_0:207_0:36$ ip community-list expanded c171 permit 38 ^65000:3_0:208_0:37$ ip community-list expanded c171 permit 39 ^65000:3_0:209_0:38$ ip community-list expanded c171 permit 40 ^65000:3_0:210_0:39$ ip community-list expanded c171 permit 41 ^65000:3_0:211_0:40$ ip community-list expanded c171 permit 42 ^65000:3_0:212_0:41$ ip community-list expanded c171 permit 43 ^65000:3_0:213_0:42$ ip community-list expanded c171 permit 44 ^65000:3_0:214_0:43$ ip community-list expanded c171 permit 45 ^65000:3_0:215_0:44$ ip community-list expanded c171 permit 46 ^65000:3_0:216_0:45$ ip community-list expanded c171 permit 47 ^65000:3_0:217_0:46$ ip community-list expanded c171 permit 48 ^65000:3_0:218_0:47$ ip community-list expanded c171 permit 49 ^65000:3_0:219_0:48$ ip community-list expanded c171 permit 50 ^65000:3_0:220_0:49$ ip community-list expanded c171 permit 51 ^65000:3_0:221_0:50$ ip community-list expanded c171 permit 52 ^65000:3_0:222_0:51$ ip community-list expanded c171 permit 53 ^65000:3_0:223_0:52$ ip community-list expanded c171 permit 54 ^65000:3_0:224_0:53$ ip community-list expanded c171 permit 55 ^65000:3_0:225_0:54$ ip community-list expanded c171 permit 56 ^65000:3_0:226_0:55$ ip community-list expanded c171 permit 57 ^65000:3_0:227_0:56$ ip community-list expanded c171 permit 58 ^65000:3_0:228_0:57$ ip community-list expanded c171 permit 59 ^65000:3_0:229_0:58$ ip community-list expanded c171 permit 60 ^65000:3_0:230_0:59$ ip community-list expanded c171 permit 61 ^65000:3_0:231_0:60$ ip community-list expanded c171 permit 62 ^65000:3_0:232_0:61$ ip community-list expanded c171 permit 63 ^65000:3_0:233_0:62$ ip community-list expanded c171 permit 64 ^65000:3_0:234_0:63$ ip community-list expanded c171 permit 65 ^65000:3_0:235_0:64$ ip community-list expanded c171 permit 66 ^65000:3_0:236_0:65$ ip community-list expanded c171 permit 67 ^65000:3_0:237_0:66$ ip community-list expanded c171 permit 68 ^65000:3_0:238_0:67$ ip community-list expanded c171 permit 69 ^65000:3_0:239_0:68$ ip community-list expanded c171 permit 70 ^65000:3_0:240_0:69$ ip community-list expanded c171 permit 71 ^65000:3_0:241_0:70$ ip community-list expanded c171 permit 72 ^65000:3_0:242_0:71$ ip community-list expanded c171 permit 73 ^65000:3_0:243_0:72$ ip community-list expanded c171 permit 74 ^65000:3_0:244_0:73$ ip community-list expanded c171 permit 75 ^65000:3_0:245_0:74$ ip community-list expanded c171 permit 76 ^65000:3_0:246_0:75$ ip community-list expanded c171 permit 77 ^65000:3_0:247_0:76$ ip community-list expanded c171 permit 78 ^65000:3_0:248_0:77$ ip community-list expanded c171 permit 79 ^65000:3_0:249_0:78$ ip community-list expanded c171 permit 80 ^65000:3_0:250_0:79$ ip community-list expanded c171 permit 81 ^65000:3_0:251_0:80$ ip community-list expanded c171 permit 82 ^65000:3_0:252_0:81$ ip community-list expanded c171 permit 83 ^65000:3_0:253_0:82$ ip community-list expanded c171 permit 84 ^65000:3_0:254_0:83$ ip community-list expanded c171 permit 85 ^65000:3_0:255_0:84$ ip community-list expanded c171 permit 86 ^65000:3_0:256_0:85$ route-map calculator permit 33479 match community 1_1_170 2_1_171 1_2_169 2_3_57 1_3_168 set community 0:171 route-map calculator permit 33480 match community 1_4_167 1_5_166 1_6_165 1_7_164 1_8_163 set community 0:171 route-map calculator permit 33481 match community 2_9_19 1_9_162 1_10_161 1_11_160 1_12_159 set community 0:171 route-map calculator permit 33482 match community 1_13_158 1_14_157 1_15_156 1_16_155 1_17_154 set community 0:171 route-map calculator permit 33483 match community 1_18_153 1_19_152 1_20_151 1_21_150 1_22_149 set community 0:171 route-map calculator permit 33484 match community 1_23_148 1_24_147 1_25_146 1_26_145 1_27_144 set community 0:171 route-map calculator permit 33485 match community 1_28_143 1_29_142 1_30_141 1_31_140 1_32_139 set community 0:171 route-map calculator permit 33486 match community 1_33_138 1_34_137 1_35_136 1_36_135 1_37_134 set community 0:171 route-map calculator permit 33487 match community 1_38_133 1_39_132 1_40_131 1_41_130 1_42_129 set community 0:171 route-map calculator permit 33488 match community 1_43_128 1_44_127 1_45_126 1_46_125 1_47_124 set community 0:171 route-map calculator permit 33489 match community 1_48_123 1_49_122 1_50_121 1_51_120 1_52_119 set community 0:171 route-map calculator permit 33490 match community 1_53_118 1_54_117 1_55_116 1_56_115 1_57_114 set community 0:171 route-map calculator permit 33491 match community 1_58_113 1_59_112 1_60_111 1_61_110 1_62_109 set community 0:171 route-map calculator permit 33492 match community 1_63_108 1_64_107 1_65_106 1_66_105 1_67_104 set community 0:171 route-map calculator permit 33493 match community 1_68_103 1_69_102 1_70_101 1_71_100 1_72_99 set community 0:171 route-map calculator permit 33494 match community 1_73_98 1_74_97 1_75_96 1_76_95 1_77_94 set community 0:171 route-map calculator permit 33495 match community 1_78_93 1_79_92 1_80_91 1_81_90 1_82_89 set community 0:171 route-map calculator permit 33496 match community 1_83_88 1_84_87 1_85_86 c4_171_1 c3_172_1 set community 0:171 route-map calculator permit 33497 match community c3_173_2 c3_174_3 c3_175_4 c3_176_5 c3_177_6 set community 0:171 route-map calculator permit 33498 match community c3_178_7 c3_179_8 c3_180_9 c3_181_10 c3_182_11 set community 0:171 route-map calculator permit 33499 match community c3_183_12 c3_184_13 c3_185_14 c3_186_15 c3_187_16 set community 0:171 route-map calculator permit 33500 match community c3_188_17 c3_189_18 c3_190_19 c3_191_20 c3_192_21 set community 0:171 route-map calculator permit 33501 match community c3_193_22 c3_194_23 c3_195_24 c3_196_25 c3_197_26 set community 0:171 route-map calculator permit 33502 match community c3_198_27 c3_199_28 c3_200_29 c3_201_30 c3_202_31 set community 0:171 route-map calculator permit 33503 match community c3_203_32 c3_204_33 c3_205_34 c3_206_35 c3_207_36 set community 0:171 route-map calculator permit 33504 match community c3_208_37 c3_209_38 c3_210_39 c3_211_40 c3_212_41 set community 0:171 route-map calculator permit 33505 match community c3_213_42 c3_214_43 c3_215_44 c3_216_45 c3_217_46 set community 0:171 route-map calculator permit 33506 match community c3_218_47 c3_219_48 c3_220_49 c3_221_50 c3_222_51 set community 0:171 route-map calculator permit 33507 match community c3_223_52 c3_224_53 c3_225_54 c3_226_55 c3_227_56 set community 0:171 route-map calculator permit 33508 match community c3_228_57 c3_229_58 c3_230_59 c3_231_60 c3_232_61 set community 0:171 route-map calculator permit 33509 match community c3_233_62 c3_234_63 c3_235_64 c3_236_65 c3_237_66 set community 0:171 route-map calculator permit 33510 match community c3_238_67 c3_239_68 c3_240_69 c3_241_70 c3_242_71 set community 0:171 route-map calculator permit 33511 match community c3_243_72 c3_244_73 c3_245_74 c3_246_75 c3_247_76 set community 0:171 route-map calculator permit 33512 match community c3_248_77 c3_249_78 c3_250_79 c3_251_80 c3_252_81 set community 0:171 route-map calculator permit 33513 match community c3_253_82 c3_254_83 c3_255_84 c3_256_85 set community 0:171 ip community-list standard 2_91_217 permit 65000:2 0:91 0:217 route-map calculator permit 33514 match community 2_91_217 set community 0:19747 ip community-list standard 2_181_188 permit 65000:2 0:181 0:188 route-map calculator permit 33515 match community 2_181_188 set community 0:34028 ip community-list standard 2_139_253 permit 65000:2 0:139 0:253 route-map calculator permit 33516 match community 2_139_253 set community 0:35167 ip community-list standard 2_22_194 permit 65000:2 0:22 0:194 ip community-list standard 2_44_97 permit 65000:2 0:44 0:97 route-map calculator permit 33517 match community 2_22_194 2_44_97 set community 0:4268 ip community-list standard 2_25_236 permit 65000:2 0:25 0:236 ip community-list standard 2_50_118 permit 65000:2 0:50 0:118 ip community-list standard 2_59_100 permit 65000:2 0:59 0:100 route-map calculator permit 33518 match community 2_25_236 2_50_118 2_59_100 set community 0:5900 ip community-list standard 2_43_173 permit 65000:2 0:43 0:173 route-map calculator permit 33519 match community 2_43_173 set community 0:7439 ip community-list standard 2_9_159 permit 65000:2 0:9 0:159 ip community-list standard 2_27_53 permit 65000:2 0:27 0:53 route-map calculator permit 33520 match community 2_9_159 2_27_53 set community 0:1431 ip community-list standard 2_70_235 permit 65000:2 0:70 0:235 ip community-list standard 2_94_175 permit 65000:2 0:94 0:175 route-map calculator permit 33521 match community 2_70_235 2_94_175 set community 0:16450 ip community-list standard 2_73_230 permit 65000:2 0:73 0:230 ip community-list standard 2_115_146 permit 65000:2 0:115 0:146 route-map calculator permit 33522 match community 2_73_230 2_115_146 set community 0:16790 ip community-list standard 2_227_248 permit 65000:2 0:227 0:248 route-map calculator permit 33523 match community 2_227_248 set community 0:56296 ip community-list standard 2_224_252 permit 65000:2 0:224 0:252 route-map calculator permit 33524 match community 2_224_252 set community 0:56448 ip community-list standard 2_4_245 permit 65000:2 0:4 0:245 ip community-list standard 2_5_196 permit 65000:2 0:5 0:196 ip community-list standard 2_7_140 permit 65000:2 0:7 0:140 ip community-list standard 2_10_98 permit 65000:2 0:10 0:98 ip community-list standard 2_14_70 permit 65000:2 0:14 0:70 ip community-list standard 2_20_49 permit 65000:2 0:20 0:49 ip community-list standard 2_28_35 permit 65000:2 0:28 0:35 route-map calculator permit 33525 match community 2_4_245 2_5_196 2_7_140 2_10_98 2_14_70 set community 0:980 route-map calculator permit 33526 match community 2_20_49 2_28_35 set community 0:980 ip community-list standard 2_29_167 permit 65000:2 0:29 0:167 route-map calculator permit 33527 match community 2_29_167 set community 0:4843 ip community-list standard 2_138_219 permit 65000:2 0:138 0:219 ip community-list standard 2_146_207 permit 65000:2 0:146 0:207 route-map calculator permit 33528 match community 2_138_219 2_146_207 set community 0:30222 ip community-list standard 2_59_201 permit 65000:2 0:59 0:201 ip community-list standard 2_67_177 permit 65000:2 0:67 0:177 route-map calculator permit 33529 match community 2_59_201 2_67_177 set community 0:11859 ip community-list standard 2_196_218 permit 65000:2 0:196 0:218 route-map calculator permit 33530 match community 2_196_218 set community 0:42728 ip community-list standard 2_206_237 permit 65000:2 0:206 0:237 route-map calculator permit 33531 match community 2_206_237 set community 0:48822 ip community-list standard 2_43_215 permit 65000:2 0:43 0:215 route-map calculator permit 33532 match community 2_43_215 set community 0:9245 ip community-list standard 2_148_163 permit 65000:2 0:148 0:163 route-map calculator permit 33533 match community 2_148_163 set community 0:24124 ip community-list standard 2_198_223 permit 65000:2 0:198 0:223 route-map calculator permit 33534 match community 2_198_223 set community 0:44154 ip community-list standard 2_103_236 permit 65000:2 0:103 0:236 ip community-list standard 2_118_206 permit 65000:2 0:118 0:206 route-map calculator permit 33535 match community 2_103_236 2_118_206 set community 0:24308 ip community-list standard 2_65_131 permit 65000:2 0:65 0:131 route-map calculator permit 33536 match community 2_65_131 set community 0:8515 ip community-list standard 2_71_155 permit 65000:2 0:71 0:155 route-map calculator permit 33537 match community 2_71_155 set community 0:11005 ip community-list standard 2_63_215 permit 65000:2 0:63 0:215 ip community-list standard 2_105_129 permit 65000:2 0:105 0:129 route-map calculator permit 33538 match community 2_63_215 2_105_129 set community 0:13545 ip community-list standard 2_154_243 permit 65000:2 0:154 0:243 ip community-list standard 2_162_231 permit 65000:2 0:162 0:231 ip community-list standard 2_189_198 permit 65000:2 0:189 0:198 route-map calculator permit 33539 match community 2_154_243 2_162_231 2_189_198 set community 0:37422 ip community-list standard 2_161_193 permit 65000:2 0:161 0:193 route-map calculator permit 33540 match community 2_161_193 set community 0:31073 ip community-list standard 2_43_89 permit 65000:2 0:43 0:89 route-map calculator permit 33541 match community 2_43_89 set community 0:3827 ip community-list standard 2_44_216 permit 65000:2 0:44 0:216 ip community-list standard 2_48_198 permit 65000:2 0:48 0:198 ip community-list standard 2_54_176 permit 65000:2 0:54 0:176 ip community-list standard 2_66_144 permit 65000:2 0:66 0:144 ip community-list standard 2_72_132 permit 65000:2 0:72 0:132 ip community-list standard 2_88_108 permit 65000:2 0:88 0:108 ip community-list standard 2_96_99 permit 65000:2 0:96 0:99 route-map calculator permit 33542 match community 2_44_216 2_48_198 2_54_176 2_66_144 2_72_132 set community 0:9504 route-map calculator permit 33543 match community 2_88_108 2_96_99 set community 0:9504 ip community-list standard 2_24_194 permit 65000:2 0:24 0:194 ip community-list standard 2_48_97 permit 65000:2 0:48 0:97 route-map calculator permit 33544 match community 2_24_194 2_48_97 set community 0:4656 ip community-list standard 2_88_232 permit 65000:2 0:88 0:232 ip community-list standard 2_116_176 permit 65000:2 0:116 0:176 route-map calculator permit 33545 match community 2_88_232 2_116_176 set community 0:20416 ip community-list standard 2_157_239 permit 65000:2 0:157 0:239 route-map calculator permit 33546 match community 2_157_239 set community 0:37523 ip community-list standard 2_142_163 permit 65000:2 0:142 0:163 route-map calculator permit 33547 match community 2_142_163 set community 0:23146 ip community-list standard 2_231_237 permit 65000:2 0:231 0:237 route-map calculator permit 33548 match community 2_231_237 set community 0:54747 ip community-list standard 2_187_217 permit 65000:2 0:187 0:217 route-map calculator permit 33549 match community 2_187_217 set community 0:40579 ip community-list standard 2_134_157 permit 65000:2 0:134 0:157 route-map calculator permit 33550 match community 2_134_157 set community 0:21038 ip community-list standard 1_1_252 permit 65000:1 0:1 0:252 ip community-list standard 2_1_253 permit 65000:2 0:1 0:253 ip community-list standard 1_2_251 permit 65000:1 0:2 0:251 ip community-list standard 1_3_250 permit 65000:1 0:3 0:250 ip community-list standard 1_4_249 permit 65000:1 0:4 0:249 ip community-list standard 1_5_248 permit 65000:1 0:5 0:248 ip community-list standard 1_6_247 permit 65000:1 0:6 0:247 ip community-list standard 1_7_246 permit 65000:1 0:7 0:246 ip community-list standard 1_8_245 permit 65000:1 0:8 0:245 ip community-list standard 1_9_244 permit 65000:1 0:9 0:244 ip community-list standard 1_10_243 permit 65000:1 0:10 0:243 ip community-list standard 2_11_23 permit 65000:2 0:11 0:23 ip community-list standard 1_11_242 permit 65000:1 0:11 0:242 ip community-list standard 1_12_241 permit 65000:1 0:12 0:241 ip community-list standard 1_13_240 permit 65000:1 0:13 0:240 ip community-list standard 1_14_239 permit 65000:1 0:14 0:239 ip community-list standard 1_15_238 permit 65000:1 0:15 0:238 ip community-list standard 1_16_237 permit 65000:1 0:16 0:237 ip community-list standard 1_17_236 permit 65000:1 0:17 0:236 ip community-list standard 1_18_235 permit 65000:1 0:18 0:235 ip community-list standard 1_19_234 permit 65000:1 0:19 0:234 ip community-list standard 1_20_233 permit 65000:1 0:20 0:233 ip community-list standard 1_21_232 permit 65000:1 0:21 0:232 ip community-list standard 1_22_231 permit 65000:1 0:22 0:231 ip community-list standard 1_23_230 permit 65000:1 0:23 0:230 ip community-list standard 1_24_229 permit 65000:1 0:24 0:229 ip community-list standard 1_25_228 permit 65000:1 0:25 0:228 ip community-list standard 1_26_227 permit 65000:1 0:26 0:227 ip community-list standard 1_27_226 permit 65000:1 0:27 0:226 ip community-list standard 1_28_225 permit 65000:1 0:28 0:225 ip community-list standard 1_29_224 permit 65000:1 0:29 0:224 ip community-list standard 1_30_223 permit 65000:1 0:30 0:223 ip community-list standard 1_31_222 permit 65000:1 0:31 0:222 ip community-list standard 1_32_221 permit 65000:1 0:32 0:221 ip community-list standard 1_33_220 permit 65000:1 0:33 0:220 ip community-list standard 1_34_219 permit 65000:1 0:34 0:219 ip community-list standard 1_35_218 permit 65000:1 0:35 0:218 ip community-list standard 1_36_217 permit 65000:1 0:36 0:217 ip community-list standard 1_37_216 permit 65000:1 0:37 0:216 ip community-list standard 1_38_215 permit 65000:1 0:38 0:215 ip community-list standard 1_39_214 permit 65000:1 0:39 0:214 ip community-list standard 1_40_213 permit 65000:1 0:40 0:213 ip community-list standard 1_41_212 permit 65000:1 0:41 0:212 ip community-list standard 1_42_211 permit 65000:1 0:42 0:211 ip community-list standard 1_43_210 permit 65000:1 0:43 0:210 ip community-list standard 1_44_209 permit 65000:1 0:44 0:209 ip community-list standard 1_45_208 permit 65000:1 0:45 0:208 ip community-list standard 1_46_207 permit 65000:1 0:46 0:207 ip community-list standard 1_47_206 permit 65000:1 0:47 0:206 ip community-list standard 1_48_205 permit 65000:1 0:48 0:205 ip community-list standard 1_49_204 permit 65000:1 0:49 0:204 ip community-list standard 1_50_203 permit 65000:1 0:50 0:203 ip community-list standard 1_51_202 permit 65000:1 0:51 0:202 ip community-list standard 1_52_201 permit 65000:1 0:52 0:201 ip community-list standard 1_53_200 permit 65000:1 0:53 0:200 ip community-list standard 1_54_199 permit 65000:1 0:54 0:199 ip community-list standard 1_55_198 permit 65000:1 0:55 0:198 ip community-list standard 1_56_197 permit 65000:1 0:56 0:197 ip community-list standard 1_57_196 permit 65000:1 0:57 0:196 ip community-list standard 1_58_195 permit 65000:1 0:58 0:195 ip community-list standard 1_59_194 permit 65000:1 0:59 0:194 ip community-list standard 1_60_193 permit 65000:1 0:60 0:193 ip community-list standard 1_61_192 permit 65000:1 0:61 0:192 ip community-list standard 1_62_191 permit 65000:1 0:62 0:191 ip community-list standard 1_63_190 permit 65000:1 0:63 0:190 ip community-list standard 1_64_189 permit 65000:1 0:64 0:189 ip community-list standard 1_65_188 permit 65000:1 0:65 0:188 ip community-list standard 1_66_187 permit 65000:1 0:66 0:187 ip community-list standard 1_67_186 permit 65000:1 0:67 0:186 ip community-list standard 1_68_185 permit 65000:1 0:68 0:185 ip community-list standard 1_69_184 permit 65000:1 0:69 0:184 ip community-list standard 1_70_183 permit 65000:1 0:70 0:183 ip community-list standard 1_71_182 permit 65000:1 0:71 0:182 ip community-list standard 1_72_181 permit 65000:1 0:72 0:181 ip community-list standard 1_73_180 permit 65000:1 0:73 0:180 ip community-list standard 1_74_179 permit 65000:1 0:74 0:179 ip community-list standard 1_75_178 permit 65000:1 0:75 0:178 ip community-list standard 1_76_177 permit 65000:1 0:76 0:177 ip community-list standard 1_77_176 permit 65000:1 0:77 0:176 ip community-list standard 1_78_175 permit 65000:1 0:78 0:175 ip community-list standard 1_79_174 permit 65000:1 0:79 0:174 ip community-list standard 1_80_173 permit 65000:1 0:80 0:173 ip community-list standard 1_81_172 permit 65000:1 0:81 0:172 ip community-list standard 1_82_171 permit 65000:1 0:82 0:171 ip community-list standard 1_83_170 permit 65000:1 0:83 0:170 ip community-list standard 1_84_169 permit 65000:1 0:84 0:169 ip community-list standard 1_85_168 permit 65000:1 0:85 0:168 ip community-list standard 1_86_167 permit 65000:1 0:86 0:167 ip community-list standard 1_87_166 permit 65000:1 0:87 0:166 ip community-list standard 1_88_165 permit 65000:1 0:88 0:165 ip community-list standard 1_89_164 permit 65000:1 0:89 0:164 ip community-list standard 1_90_163 permit 65000:1 0:90 0:163 ip community-list standard 1_91_162 permit 65000:1 0:91 0:162 ip community-list standard 1_92_161 permit 65000:1 0:92 0:161 ip community-list standard 1_93_160 permit 65000:1 0:93 0:160 ip community-list standard 1_94_159 permit 65000:1 0:94 0:159 ip community-list standard 1_95_158 permit 65000:1 0:95 0:158 ip community-list standard 1_96_157 permit 65000:1 0:96 0:157 ip community-list standard 1_97_156 permit 65000:1 0:97 0:156 ip community-list standard 1_98_155 permit 65000:1 0:98 0:155 ip community-list standard 1_99_154 permit 65000:1 0:99 0:154 ip community-list standard 1_100_153 permit 65000:1 0:100 0:153 ip community-list standard 1_101_152 permit 65000:1 0:101 0:152 ip community-list standard 1_102_151 permit 65000:1 0:102 0:151 ip community-list standard 1_103_150 permit 65000:1 0:103 0:150 ip community-list standard 1_104_149 permit 65000:1 0:104 0:149 ip community-list standard 1_105_148 permit 65000:1 0:105 0:148 ip community-list standard 1_106_147 permit 65000:1 0:106 0:147 ip community-list standard 1_107_146 permit 65000:1 0:107 0:146 ip community-list standard 1_108_145 permit 65000:1 0:108 0:145 ip community-list standard 1_109_144 permit 65000:1 0:109 0:144 ip community-list standard 1_110_143 permit 65000:1 0:110 0:143 ip community-list standard 1_111_142 permit 65000:1 0:111 0:142 ip community-list standard 1_112_141 permit 65000:1 0:112 0:141 ip community-list standard 1_113_140 permit 65000:1 0:113 0:140 ip community-list standard 1_114_139 permit 65000:1 0:114 0:139 ip community-list standard 1_115_138 permit 65000:1 0:115 0:138 ip community-list standard 1_116_137 permit 65000:1 0:116 0:137 ip community-list standard 1_117_136 permit 65000:1 0:117 0:136 ip community-list standard 1_118_135 permit 65000:1 0:118 0:135 ip community-list standard 1_119_134 permit 65000:1 0:119 0:134 ip community-list standard 1_120_133 permit 65000:1 0:120 0:133 ip community-list standard 1_121_132 permit 65000:1 0:121 0:132 ip community-list standard 1_122_131 permit 65000:1 0:122 0:131 ip community-list standard 1_123_130 permit 65000:1 0:123 0:130 ip community-list standard 1_124_129 permit 65000:1 0:124 0:129 ip community-list standard 1_125_128 permit 65000:1 0:125 0:128 ip community-list standard 1_126_127 permit 65000:1 0:126 0:127 ip community-list expanded c253 permit 1 ^65000:4_0:253_0:1$ ip community-list expanded c253 permit 2 ^65000:3_0:254_0:1$ ip community-list expanded c253 permit 3 ^65000:3_0:255_0:2$ ip community-list expanded c253 permit 4 ^65000:3_0:256_0:3$ route-map calculator permit 33551 match community 1_1_252 2_1_253 1_2_251 1_3_250 1_4_249 set community 0:253 route-map calculator permit 33552 match community 1_5_248 1_6_247 1_7_246 1_8_245 1_9_244 set community 0:253 route-map calculator permit 33553 match community 1_10_243 2_11_23 1_11_242 1_12_241 1_13_240 set community 0:253 route-map calculator permit 33554 match community 1_14_239 1_15_238 1_16_237 1_17_236 1_18_235 set community 0:253 route-map calculator permit 33555 match community 1_19_234 1_20_233 1_21_232 1_22_231 1_23_230 set community 0:253 route-map calculator permit 33556 match community 1_24_229 1_25_228 1_26_227 1_27_226 1_28_225 set community 0:253 route-map calculator permit 33557 match community 1_29_224 1_30_223 1_31_222 1_32_221 1_33_220 set community 0:253 route-map calculator permit 33558 match community 1_34_219 1_35_218 1_36_217 1_37_216 1_38_215 set community 0:253 route-map calculator permit 33559 match community 1_39_214 1_40_213 1_41_212 1_42_211 1_43_210 set community 0:253 route-map calculator permit 33560 match community 1_44_209 1_45_208 1_46_207 1_47_206 1_48_205 set community 0:253 route-map calculator permit 33561 match community 1_49_204 1_50_203 1_51_202 1_52_201 1_53_200 set community 0:253 route-map calculator permit 33562 match community 1_54_199 1_55_198 1_56_197 1_57_196 1_58_195 set community 0:253 route-map calculator permit 33563 match community 1_59_194 1_60_193 1_61_192 1_62_191 1_63_190 set community 0:253 route-map calculator permit 33564 match community 1_64_189 1_65_188 1_66_187 1_67_186 1_68_185 set community 0:253 route-map calculator permit 33565 match community 1_69_184 1_70_183 1_71_182 1_72_181 1_73_180 set community 0:253 route-map calculator permit 33566 match community 1_74_179 1_75_178 1_76_177 1_77_176 1_78_175 set community 0:253 route-map calculator permit 33567 match community 1_79_174 1_80_173 1_81_172 1_82_171 1_83_170 set community 0:253 route-map calculator permit 33568 match community 1_84_169 1_85_168 1_86_167 1_87_166 1_88_165 set community 0:253 route-map calculator permit 33569 match community 1_89_164 1_90_163 1_91_162 1_92_161 1_93_160 set community 0:253 route-map calculator permit 33570 match community 1_94_159 1_95_158 1_96_157 1_97_156 1_98_155 set community 0:253 route-map calculator permit 33571 match community 1_99_154 1_100_153 1_101_152 1_102_151 1_103_150 set community 0:253 route-map calculator permit 33572 match community 1_104_149 1_105_148 1_106_147 1_107_146 1_108_145 set community 0:253 route-map calculator permit 33573 match community 1_109_144 1_110_143 1_111_142 1_112_141 1_113_140 set community 0:253 route-map calculator permit 33574 match community 1_114_139 1_115_138 1_116_137 1_117_136 1_118_135 set community 0:253 route-map calculator permit 33575 match community 1_119_134 1_120_133 1_121_132 1_122_131 1_123_130 set community 0:253 route-map calculator permit 33576 match community 1_124_129 1_125_128 1_126_127 c4_253_1 c3_254_1 set community 0:253 route-map calculator permit 33577 match community c3_255_2 c3_256_3 set community 0:253 ip community-list standard 2_121_167 permit 65000:2 0:121 0:167 route-map calculator permit 33578 match community 2_121_167 set community 0:20207 ip community-list standard 2_203_205 permit 65000:2 0:203 0:205 route-map calculator permit 33579 match community 2_203_205 set community 0:41615 ip community-list standard 2_206_213 permit 65000:2 0:206 0:213 route-map calculator permit 33580 match community 2_206_213 set community 0:43878 ip community-list standard 2_8_170 permit 65000:2 0:8 0:170 ip community-list standard 2_10_136 permit 65000:2 0:10 0:136 ip community-list standard 2_16_85 permit 65000:2 0:16 0:85 ip community-list standard 2_17_80 permit 65000:2 0:17 0:80 ip community-list standard 2_20_68 permit 65000:2 0:20 0:68 ip community-list standard 2_34_40 permit 65000:2 0:34 0:40 route-map calculator permit 33581 match community 2_8_170 2_10_136 2_16_85 2_17_80 2_20_68 set community 0:1360 route-map calculator permit 33582 match community 2_34_40 set community 0:1360 ip community-list standard 2_66_167 permit 65000:2 0:66 0:167 route-map calculator permit 33583 match community 2_66_167 set community 0:11022 ip community-list standard 2_149_198 permit 65000:2 0:149 0:198 route-map calculator permit 33584 match community 2_149_198 set community 0:29502 ip community-list standard 2_153_234 permit 65000:2 0:153 0:234 ip community-list standard 2_162_221 permit 65000:2 0:162 0:221 route-map calculator permit 33585 match community 2_153_234 2_162_221 set community 0:35802 ip community-list standard 2_198_232 permit 65000:2 0:198 0:232 route-map calculator permit 33586 match community 2_198_232 set community 0:45936 ip community-list standard 2_108_163 permit 65000:2 0:108 0:163 route-map calculator permit 33587 match community 2_108_163 set community 0:17604 ip community-list standard 2_141_206 permit 65000:2 0:141 0:206 route-map calculator permit 33588 match community 2_141_206 set community 0:29046 ip community-list standard 2_73_179 permit 65000:2 0:73 0:179 route-map calculator permit 33589 match community 2_73_179 set community 0:13067 ip community-list standard 2_127_199 permit 65000:2 0:127 0:199 route-map calculator permit 33590 match community 2_127_199 set community 0:25273 ip community-list standard 2_6_229 permit 65000:2 0:6 0:229 route-map calculator permit 33591 match community 2_6_229 set community 0:1374 ip community-list standard 2_31_206 permit 65000:2 0:31 0:206 ip community-list standard 2_62_103 permit 65000:2 0:62 0:103 route-map calculator permit 33592 match community 2_31_206 2_62_103 set community 0:6386 ip community-list standard 2_15_225 permit 65000:2 0:15 0:225 ip community-list standard 2_25_135 permit 65000:2 0:25 0:135 ip community-list standard 2_27_125 permit 65000:2 0:27 0:125 ip community-list standard 2_45_75 permit 65000:2 0:45 0:75 route-map calculator permit 33593 match community 2_15_225 2_25_135 2_27_125 2_45_75 set community 0:3375 ip community-list standard 2_67_225 permit 65000:2 0:67 0:225 ip community-list standard 2_75_201 permit 65000:2 0:75 0:201 route-map calculator permit 33594 match community 2_67_225 2_75_201 set community 0:15075 ip community-list standard 2_52_226 permit 65000:2 0:52 0:226 ip community-list standard 2_104_113 permit 65000:2 0:104 0:113 route-map calculator permit 33595 match community 2_52_226 2_104_113 set community 0:11752 ip community-list standard 2_189_202 permit 65000:2 0:189 0:202 route-map calculator permit 33596 match community 2_189_202 set community 0:38178 ip community-list standard 2_100_203 permit 65000:2 0:100 0:203 ip community-list standard 2_116_175 permit 65000:2 0:116 0:175 ip community-list standard 2_140_145 permit 65000:2 0:140 0:145 route-map calculator permit 33597 match community 2_100_203 2_116_175 2_140_145 set community 0:20300 ip community-list standard 2_45_159 permit 65000:2 0:45 0:159 ip community-list standard 2_53_135 permit 65000:2 0:53 0:135 route-map calculator permit 33598 match community 2_45_159 2_53_135 set community 0:7155 ip community-list standard 2_130_250 permit 65000:2 0:130 0:250 route-map calculator permit 33599 match community 2_130_250 set community 0:32500 ip community-list standard 2_40_246 permit 65000:2 0:40 0:246 ip community-list standard 2_41_240 permit 65000:2 0:41 0:240 ip community-list standard 2_48_205 permit 65000:2 0:48 0:205 ip community-list standard 2_60_164 permit 65000:2 0:60 0:164 ip community-list standard 2_80_123 permit 65000:2 0:80 0:123 ip community-list standard 2_82_120 permit 65000:2 0:82 0:120 route-map calculator permit 33600 match community 2_40_246 2_41_240 2_48_205 2_60_164 2_80_123 set community 0:9840 route-map calculator permit 33601 match community 2_82_120 set community 0:9840 ip community-list standard 2_213_254 permit 65000:2 0:213 0:254 route-map calculator permit 33602 match community 2_213_254 set community 0:54102 ip community-list standard 2_179_241 permit 65000:2 0:179 0:241 route-map calculator permit 33603 match community 2_179_241 set community 0:43139 ip community-list standard 2_14_189 permit 65000:2 0:14 0:189 ip community-list standard 2_18_147 permit 65000:2 0:18 0:147 ip community-list standard 2_21_126 permit 65000:2 0:21 0:126 ip community-list standard 2_27_98 permit 65000:2 0:27 0:98 ip community-list standard 2_42_63 permit 65000:2 0:42 0:63 ip community-list standard 2_49_54 permit 65000:2 0:49 0:54 route-map calculator permit 33604 match community 2_14_189 2_18_147 2_21_126 2_27_98 2_42_63 set community 0:2646 route-map calculator permit 33605 match community 2_49_54 set community 0:2646 ip community-list standard 1_1_145 permit 65000:1 0:1 0:145 ip community-list standard 2_1_146 permit 65000:2 0:1 0:146 ip community-list standard 2_2_73 permit 65000:2 0:2 0:73 ip community-list standard 1_2_144 permit 65000:1 0:2 0:144 ip community-list standard 1_3_143 permit 65000:1 0:3 0:143 ip community-list standard 1_4_142 permit 65000:1 0:4 0:142 ip community-list standard 1_5_141 permit 65000:1 0:5 0:141 ip community-list standard 1_6_140 permit 65000:1 0:6 0:140 ip community-list standard 1_7_139 permit 65000:1 0:7 0:139 ip community-list standard 1_8_138 permit 65000:1 0:8 0:138 ip community-list standard 1_9_137 permit 65000:1 0:9 0:137 ip community-list standard 1_10_136 permit 65000:1 0:10 0:136 ip community-list standard 1_11_135 permit 65000:1 0:11 0:135 ip community-list standard 1_12_134 permit 65000:1 0:12 0:134 ip community-list standard 1_13_133 permit 65000:1 0:13 0:133 ip community-list standard 1_14_132 permit 65000:1 0:14 0:132 ip community-list standard 1_15_131 permit 65000:1 0:15 0:131 ip community-list standard 1_16_130 permit 65000:1 0:16 0:130 ip community-list standard 1_17_129 permit 65000:1 0:17 0:129 ip community-list standard 1_18_128 permit 65000:1 0:18 0:128 ip community-list standard 1_19_127 permit 65000:1 0:19 0:127 ip community-list standard 1_20_126 permit 65000:1 0:20 0:126 ip community-list standard 1_21_125 permit 65000:1 0:21 0:125 ip community-list standard 1_22_124 permit 65000:1 0:22 0:124 ip community-list standard 1_23_123 permit 65000:1 0:23 0:123 ip community-list standard 1_24_122 permit 65000:1 0:24 0:122 ip community-list standard 1_25_121 permit 65000:1 0:25 0:121 ip community-list standard 1_26_120 permit 65000:1 0:26 0:120 ip community-list standard 1_27_119 permit 65000:1 0:27 0:119 ip community-list standard 1_28_118 permit 65000:1 0:28 0:118 ip community-list standard 1_29_117 permit 65000:1 0:29 0:117 ip community-list standard 1_30_116 permit 65000:1 0:30 0:116 ip community-list standard 1_31_115 permit 65000:1 0:31 0:115 ip community-list standard 1_32_114 permit 65000:1 0:32 0:114 ip community-list standard 1_33_113 permit 65000:1 0:33 0:113 ip community-list standard 1_34_112 permit 65000:1 0:34 0:112 ip community-list standard 1_35_111 permit 65000:1 0:35 0:111 ip community-list standard 1_36_110 permit 65000:1 0:36 0:110 ip community-list standard 1_37_109 permit 65000:1 0:37 0:109 ip community-list standard 1_38_108 permit 65000:1 0:38 0:108 ip community-list standard 1_39_107 permit 65000:1 0:39 0:107 ip community-list standard 1_40_106 permit 65000:1 0:40 0:106 ip community-list standard 1_41_105 permit 65000:1 0:41 0:105 ip community-list standard 1_42_104 permit 65000:1 0:42 0:104 ip community-list standard 1_43_103 permit 65000:1 0:43 0:103 ip community-list standard 1_44_102 permit 65000:1 0:44 0:102 ip community-list standard 1_45_101 permit 65000:1 0:45 0:101 ip community-list standard 1_46_100 permit 65000:1 0:46 0:100 ip community-list standard 1_47_99 permit 65000:1 0:47 0:99 ip community-list standard 1_48_98 permit 65000:1 0:48 0:98 ip community-list standard 1_49_97 permit 65000:1 0:49 0:97 ip community-list standard 1_50_96 permit 65000:1 0:50 0:96 ip community-list standard 1_51_95 permit 65000:1 0:51 0:95 ip community-list standard 1_52_94 permit 65000:1 0:52 0:94 ip community-list standard 1_53_93 permit 65000:1 0:53 0:93 ip community-list standard 1_54_92 permit 65000:1 0:54 0:92 ip community-list standard 1_55_91 permit 65000:1 0:55 0:91 ip community-list standard 1_56_90 permit 65000:1 0:56 0:90 ip community-list standard 1_57_89 permit 65000:1 0:57 0:89 ip community-list standard 1_58_88 permit 65000:1 0:58 0:88 ip community-list standard 1_59_87 permit 65000:1 0:59 0:87 ip community-list standard 1_60_86 permit 65000:1 0:60 0:86 ip community-list standard 1_61_85 permit 65000:1 0:61 0:85 ip community-list standard 1_62_84 permit 65000:1 0:62 0:84 ip community-list standard 1_63_83 permit 65000:1 0:63 0:83 ip community-list standard 1_64_82 permit 65000:1 0:64 0:82 ip community-list standard 1_65_81 permit 65000:1 0:65 0:81 ip community-list standard 1_66_80 permit 65000:1 0:66 0:80 ip community-list standard 1_67_79 permit 65000:1 0:67 0:79 ip community-list standard 1_68_78 permit 65000:1 0:68 0:78 ip community-list standard 1_69_77 permit 65000:1 0:69 0:77 ip community-list standard 1_70_76 permit 65000:1 0:70 0:76 ip community-list standard 1_71_75 permit 65000:1 0:71 0:75 ip community-list standard 1_72_74 permit 65000:1 0:72 0:74 ip community-list standard 1_73_73 permit 65000:1 0:73 0:73 ip community-list expanded c146 permit 1 ^65000:4_0:146_0:1$ ip community-list expanded c146 permit 2 ^65000:3_0:147_0:1$ ip community-list expanded c146 permit 3 ^65000:3_0:148_0:2$ ip community-list expanded c146 permit 4 ^65000:3_0:149_0:3$ ip community-list expanded c146 permit 5 ^65000:3_0:150_0:4$ ip community-list expanded c146 permit 6 ^65000:3_0:151_0:5$ ip community-list expanded c146 permit 7 ^65000:3_0:152_0:6$ ip community-list expanded c146 permit 8 ^65000:3_0:153_0:7$ ip community-list expanded c146 permit 9 ^65000:3_0:154_0:8$ ip community-list expanded c146 permit 10 ^65000:3_0:155_0:9$ ip community-list expanded c146 permit 11 ^65000:3_0:156_0:10$ ip community-list expanded c146 permit 12 ^65000:3_0:157_0:11$ ip community-list expanded c146 permit 13 ^65000:3_0:158_0:12$ ip community-list expanded c146 permit 14 ^65000:3_0:159_0:13$ ip community-list expanded c146 permit 15 ^65000:3_0:160_0:14$ ip community-list expanded c146 permit 16 ^65000:3_0:161_0:15$ ip community-list expanded c146 permit 17 ^65000:3_0:162_0:16$ ip community-list expanded c146 permit 18 ^65000:3_0:163_0:17$ ip community-list expanded c146 permit 19 ^65000:3_0:164_0:18$ ip community-list expanded c146 permit 20 ^65000:3_0:165_0:19$ ip community-list expanded c146 permit 21 ^65000:3_0:166_0:20$ ip community-list expanded c146 permit 22 ^65000:3_0:167_0:21$ ip community-list expanded c146 permit 23 ^65000:3_0:168_0:22$ ip community-list expanded c146 permit 24 ^65000:3_0:169_0:23$ ip community-list expanded c146 permit 25 ^65000:3_0:170_0:24$ ip community-list expanded c146 permit 26 ^65000:3_0:171_0:25$ ip community-list expanded c146 permit 27 ^65000:3_0:172_0:26$ ip community-list expanded c146 permit 28 ^65000:3_0:173_0:27$ ip community-list expanded c146 permit 29 ^65000:3_0:174_0:28$ ip community-list expanded c146 permit 30 ^65000:3_0:175_0:29$ ip community-list expanded c146 permit 31 ^65000:3_0:176_0:30$ ip community-list expanded c146 permit 32 ^65000:3_0:177_0:31$ ip community-list expanded c146 permit 33 ^65000:3_0:178_0:32$ ip community-list expanded c146 permit 34 ^65000:3_0:179_0:33$ ip community-list expanded c146 permit 35 ^65000:3_0:180_0:34$ ip community-list expanded c146 permit 36 ^65000:3_0:181_0:35$ ip community-list expanded c146 permit 37 ^65000:3_0:182_0:36$ ip community-list expanded c146 permit 38 ^65000:3_0:183_0:37$ ip community-list expanded c146 permit 39 ^65000:3_0:184_0:38$ ip community-list expanded c146 permit 40 ^65000:3_0:185_0:39$ ip community-list expanded c146 permit 41 ^65000:3_0:186_0:40$ ip community-list expanded c146 permit 42 ^65000:3_0:187_0:41$ ip community-list expanded c146 permit 43 ^65000:3_0:188_0:42$ ip community-list expanded c146 permit 44 ^65000:3_0:189_0:43$ ip community-list expanded c146 permit 45 ^65000:3_0:190_0:44$ ip community-list expanded c146 permit 46 ^65000:3_0:191_0:45$ ip community-list expanded c146 permit 47 ^65000:3_0:192_0:46$ ip community-list expanded c146 permit 48 ^65000:3_0:193_0:47$ ip community-list expanded c146 permit 49 ^65000:3_0:194_0:48$ ip community-list expanded c146 permit 50 ^65000:3_0:195_0:49$ ip community-list expanded c146 permit 51 ^65000:3_0:196_0:50$ ip community-list expanded c146 permit 52 ^65000:3_0:197_0:51$ ip community-list expanded c146 permit 53 ^65000:3_0:198_0:52$ ip community-list expanded c146 permit 54 ^65000:3_0:199_0:53$ ip community-list expanded c146 permit 55 ^65000:3_0:200_0:54$ ip community-list expanded c146 permit 56 ^65000:3_0:201_0:55$ ip community-list expanded c146 permit 57 ^65000:3_0:202_0:56$ ip community-list expanded c146 permit 58 ^65000:3_0:203_0:57$ ip community-list expanded c146 permit 59 ^65000:3_0:204_0:58$ ip community-list expanded c146 permit 60 ^65000:3_0:205_0:59$ ip community-list expanded c146 permit 61 ^65000:3_0:206_0:60$ ip community-list expanded c146 permit 62 ^65000:3_0:207_0:61$ ip community-list expanded c146 permit 63 ^65000:3_0:208_0:62$ ip community-list expanded c146 permit 64 ^65000:3_0:209_0:63$ ip community-list expanded c146 permit 65 ^65000:3_0:210_0:64$ ip community-list expanded c146 permit 66 ^65000:3_0:211_0:65$ ip community-list expanded c146 permit 67 ^65000:3_0:212_0:66$ ip community-list expanded c146 permit 68 ^65000:3_0:213_0:67$ ip community-list expanded c146 permit 69 ^65000:3_0:214_0:68$ ip community-list expanded c146 permit 70 ^65000:3_0:215_0:69$ ip community-list expanded c146 permit 71 ^65000:3_0:216_0:70$ ip community-list expanded c146 permit 72 ^65000:3_0:217_0:71$ ip community-list expanded c146 permit 73 ^65000:3_0:218_0:72$ ip community-list expanded c146 permit 74 ^65000:3_0:219_0:73$ ip community-list expanded c146 permit 75 ^65000:3_0:220_0:74$ ip community-list expanded c146 permit 76 ^65000:3_0:221_0:75$ ip community-list expanded c146 permit 77 ^65000:3_0:222_0:76$ ip community-list expanded c146 permit 78 ^65000:3_0:223_0:77$ ip community-list expanded c146 permit 79 ^65000:3_0:224_0:78$ ip community-list expanded c146 permit 80 ^65000:3_0:225_0:79$ ip community-list expanded c146 permit 81 ^65000:3_0:226_0:80$ ip community-list expanded c146 permit 82 ^65000:3_0:227_0:81$ ip community-list expanded c146 permit 83 ^65000:3_0:228_0:82$ ip community-list expanded c146 permit 84 ^65000:3_0:229_0:83$ ip community-list expanded c146 permit 85 ^65000:3_0:230_0:84$ ip community-list expanded c146 permit 86 ^65000:3_0:231_0:85$ ip community-list expanded c146 permit 87 ^65000:3_0:232_0:86$ ip community-list expanded c146 permit 88 ^65000:3_0:233_0:87$ ip community-list expanded c146 permit 89 ^65000:3_0:234_0:88$ ip community-list expanded c146 permit 90 ^65000:3_0:235_0:89$ ip community-list expanded c146 permit 91 ^65000:3_0:236_0:90$ ip community-list expanded c146 permit 92 ^65000:3_0:237_0:91$ ip community-list expanded c146 permit 93 ^65000:3_0:238_0:92$ ip community-list expanded c146 permit 94 ^65000:3_0:239_0:93$ ip community-list expanded c146 permit 95 ^65000:3_0:240_0:94$ ip community-list expanded c146 permit 96 ^65000:3_0:241_0:95$ ip community-list expanded c146 permit 97 ^65000:3_0:242_0:96$ ip community-list expanded c146 permit 98 ^65000:3_0:243_0:97$ ip community-list expanded c146 permit 99 ^65000:3_0:244_0:98$ ip community-list expanded c146 permit 100 ^65000:3_0:245_0:99$ ip community-list expanded c146 permit 101 ^65000:3_0:246_0:100$ ip community-list expanded c146 permit 102 ^65000:3_0:247_0:101$ ip community-list expanded c146 permit 103 ^65000:3_0:248_0:102$ ip community-list expanded c146 permit 104 ^65000:3_0:249_0:103$ ip community-list expanded c146 permit 105 ^65000:3_0:250_0:104$ ip community-list expanded c146 permit 106 ^65000:3_0:251_0:105$ ip community-list expanded c146 permit 107 ^65000:3_0:252_0:106$ ip community-list expanded c146 permit 108 ^65000:3_0:253_0:107$ ip community-list expanded c146 permit 109 ^65000:3_0:254_0:108$ ip community-list expanded c146 permit 110 ^65000:3_0:255_0:109$ ip community-list expanded c146 permit 111 ^65000:3_0:256_0:110$ route-map calculator permit 33606 match community 1_1_145 2_1_146 2_2_73 1_2_144 1_3_143 set community 0:146 route-map calculator permit 33607 match community 1_4_142 1_5_141 1_6_140 1_7_139 1_8_138 set community 0:146 route-map calculator permit 33608 match community 1_9_137 1_10_136 1_11_135 1_12_134 1_13_133 set community 0:146 route-map calculator permit 33609 match community 1_14_132 1_15_131 1_16_130 1_17_129 1_18_128 set community 0:146 route-map calculator permit 33610 match community 1_19_127 1_20_126 1_21_125 1_22_124 1_23_123 set community 0:146 route-map calculator permit 33611 match community 1_24_122 1_25_121 1_26_120 1_27_119 1_28_118 set community 0:146 route-map calculator permit 33612 match community 1_29_117 1_30_116 1_31_115 1_32_114 1_33_113 set community 0:146 route-map calculator permit 33613 match community 1_34_112 1_35_111 1_36_110 1_37_109 1_38_108 set community 0:146 route-map calculator permit 33614 match community 1_39_107 1_40_106 1_41_105 1_42_104 1_43_103 set community 0:146 route-map calculator permit 33615 match community 1_44_102 1_45_101 1_46_100 1_47_99 1_48_98 set community 0:146 route-map calculator permit 33616 match community 1_49_97 1_50_96 1_51_95 1_52_94 1_53_93 set community 0:146 route-map calculator permit 33617 match community 1_54_92 1_55_91 1_56_90 1_57_89 1_58_88 set community 0:146 route-map calculator permit 33618 match community 1_59_87 1_60_86 1_61_85 1_62_84 1_63_83 set community 0:146 route-map calculator permit 33619 match community 1_64_82 1_65_81 1_66_80 1_67_79 1_68_78 set community 0:146 route-map calculator permit 33620 match community 1_69_77 1_70_76 1_71_75 1_72_74 1_73_73 set community 0:146 route-map calculator permit 33621 match community c4_146_1 c3_147_1 c3_148_2 c3_149_3 c3_150_4 set community 0:146 route-map calculator permit 33622 match community c3_151_5 c3_152_6 c3_153_7 c3_154_8 c3_155_9 set community 0:146 route-map calculator permit 33623 match community c3_156_10 c3_157_11 c3_158_12 c3_159_13 c3_160_14 set community 0:146 route-map calculator permit 33624 match community c3_161_15 c3_162_16 c3_163_17 c3_164_18 c3_165_19 set community 0:146 route-map calculator permit 33625 match community c3_166_20 c3_167_21 c3_168_22 c3_169_23 c3_170_24 set community 0:146 route-map calculator permit 33626 match community c3_171_25 c3_172_26 c3_173_27 c3_174_28 c3_175_29 set community 0:146 route-map calculator permit 33627 match community c3_176_30 c3_177_31 c3_178_32 c3_179_33 c3_180_34 set community 0:146 route-map calculator permit 33628 match community c3_181_35 c3_182_36 c3_183_37 c3_184_38 c3_185_39 set community 0:146 route-map calculator permit 33629 match community c3_186_40 c3_187_41 c3_188_42 c3_189_43 c3_190_44 set community 0:146 route-map calculator permit 33630 match community c3_191_45 c3_192_46 c3_193_47 c3_194_48 c3_195_49 set community 0:146 route-map calculator permit 33631 match community c3_196_50 c3_197_51 c3_198_52 c3_199_53 c3_200_54 set community 0:146 route-map calculator permit 33632 match community c3_201_55 c3_202_56 c3_203_57 c3_204_58 c3_205_59 set community 0:146 route-map calculator permit 33633 match community c3_206_60 c3_207_61 c3_208_62 c3_209_63 c3_210_64 set community 0:146 route-map calculator permit 33634 match community c3_211_65 c3_212_66 c3_213_67 c3_214_68 c3_215_69 set community 0:146 route-map calculator permit 33635 match community c3_216_70 c3_217_71 c3_218_72 c3_219_73 c3_220_74 set community 0:146 route-map calculator permit 33636 match community c3_221_75 c3_222_76 c3_223_77 c3_224_78 c3_225_79 set community 0:146 route-map calculator permit 33637 match community c3_226_80 c3_227_81 c3_228_82 c3_229_83 c3_230_84 set community 0:146 route-map calculator permit 33638 match community c3_231_85 c3_232_86 c3_233_87 c3_234_88 c3_235_89 set community 0:146 route-map calculator permit 33639 match community c3_236_90 c3_237_91 c3_238_92 c3_239_93 c3_240_94 set community 0:146 route-map calculator permit 33640 match community c3_241_95 c3_242_96 c3_243_97 c3_244_98 c3_245_99 set community 0:146 route-map calculator permit 33641 match community c3_246_100 c3_247_101 c3_248_102 c3_249_103 c3_250_104 set community 0:146 route-map calculator permit 33642 match community c3_251_105 c3_252_106 c3_253_107 c3_254_108 c3_255_109 set community 0:146 route-map calculator permit 33643 match community c3_256_110 set community 0:146 ip community-list standard 2_233_250 permit 65000:2 0:233 0:250 route-map calculator permit 33644 match community 2_233_250 set community 0:58250 ip community-list standard 2_181_239 permit 65000:2 0:181 0:239 route-map calculator permit 33645 match community 2_181_239 set community 0:43259 ip community-list standard 2_55_146 permit 65000:2 0:55 0:146 ip community-list standard 2_73_110 permit 65000:2 0:73 0:110 route-map calculator permit 33646 match community 2_55_146 2_73_110 set community 0:8030 ip community-list standard 2_104_250 permit 65000:2 0:104 0:250 ip community-list standard 2_125_208 permit 65000:2 0:125 0:208 ip community-list standard 2_130_200 permit 65000:2 0:130 0:200 route-map calculator permit 33647 match community 2_104_250 2_125_208 2_130_200 set community 0:26000 ip community-list standard 2_137_198 permit 65000:2 0:137 0:198 route-map calculator permit 33648 match community 2_137_198 set community 0:27126 ip community-list standard 2_95_210 permit 65000:2 0:95 0:210 ip community-list standard 2_105_190 permit 65000:2 0:105 0:190 ip community-list standard 2_114_175 permit 65000:2 0:114 0:175 ip community-list standard 2_133_150 permit 65000:2 0:133 0:150 route-map calculator permit 33649 match community 2_95_210 2_105_190 2_114_175 2_133_150 set community 0:19950 ip community-list standard 2_7_154 permit 65000:2 0:7 0:154 ip community-list standard 2_11_98 permit 65000:2 0:11 0:98 ip community-list standard 2_14_77 permit 65000:2 0:14 0:77 ip community-list standard 2_22_49 permit 65000:2 0:22 0:49 route-map calculator permit 33650 match community 2_7_154 2_11_98 2_14_77 2_22_49 set community 0:1078 ip community-list standard 2_140_229 permit 65000:2 0:140 0:229 route-map calculator permit 33651 match community 2_140_229 set community 0:32060 ip community-list standard 2_10_232 permit 65000:2 0:10 0:232 ip community-list standard 2_16_145 permit 65000:2 0:16 0:145 ip community-list standard 2_20_116 permit 65000:2 0:20 0:116 ip community-list standard 2_29_80 permit 65000:2 0:29 0:80 ip community-list standard 2_40_58 permit 65000:2 0:40 0:58 route-map calculator permit 33652 match community 2_10_232 2_16_145 2_20_116 2_29_80 2_40_58 set community 0:2320 ip community-list standard 2_71_179 permit 65000:2 0:71 0:179 route-map calculator permit 33653 match community 2_71_179 set community 0:12709 ip community-list standard 2_40_231 permit 65000:2 0:40 0:231 ip community-list standard 2_42_220 permit 65000:2 0:42 0:220 ip community-list standard 2_44_210 permit 65000:2 0:44 0:210 ip community-list standard 2_55_168 permit 65000:2 0:55 0:168 ip community-list standard 2_56_165 permit 65000:2 0:56 0:165 ip community-list standard 2_60_154 permit 65000:2 0:60 0:154 ip community-list standard 2_66_140 permit 65000:2 0:66 0:140 ip community-list standard 2_70_132 permit 65000:2 0:70 0:132 ip community-list standard 2_77_120 permit 65000:2 0:77 0:120 ip community-list standard 2_84_110 permit 65000:2 0:84 0:110 ip community-list standard 2_88_105 permit 65000:2 0:88 0:105 route-map calculator permit 33654 match community 2_40_231 2_42_220 2_44_210 2_55_168 2_56_165 set community 0:9240 route-map calculator permit 33655 match community 2_60_154 2_66_140 2_70_132 2_77_120 2_84_110 set community 0:9240 route-map calculator permit 33656 match community 2_88_105 set community 0:9240 ip community-list standard 2_143_151 permit 65000:2 0:143 0:151 route-map calculator permit 33657 match community 2_143_151 set community 0:21593 ip community-list standard 2_171_238 permit 65000:2 0:171 0:238 route-map calculator permit 33658 match community 2_171_238 set community 0:40698 ip community-list standard 2_210_211 permit 65000:2 0:210 0:211 route-map calculator permit 33659 match community 2_210_211 set community 0:44310 ip community-list standard 2_87_207 permit 65000:2 0:87 0:207 route-map calculator permit 33660 match community 2_87_207 set community 0:18009 ip community-list standard 2_145_237 permit 65000:2 0:145 0:237 route-map calculator permit 33661 match community 2_145_237 set community 0:34365 ip community-list standard 2_103_244 permit 65000:2 0:103 0:244 ip community-list standard 2_122_206 permit 65000:2 0:122 0:206 route-map calculator permit 33662 match community 2_103_244 2_122_206 set community 0:25132 ip community-list standard 2_187_241 permit 65000:2 0:187 0:241 route-map calculator permit 33663 match community 2_187_241 set community 0:45067 ip community-list standard 2_218_218 permit 65000:2 0:218 0:218 route-map calculator permit 33664 match community 2_218_218 set community 0:47524 ip community-list standard 2_104_193 permit 65000:2 0:104 0:193 route-map calculator permit 33665 match community 2_104_193 set community 0:20072 ip community-list standard 2_129_214 permit 65000:2 0:129 0:214 route-map calculator permit 33666 match community 2_129_214 set community 0:27606 ip community-list standard 2_199_243 permit 65000:2 0:199 0:243 route-map calculator permit 33667 match community 2_199_243 set community 0:48357 ip community-list standard 2_105_214 permit 65000:2 0:105 0:214 ip community-list standard 2_107_210 permit 65000:2 0:107 0:210 route-map calculator permit 33668 match community 2_105_214 2_107_210 set community 0:22470 ip community-list standard 2_25_137 permit 65000:2 0:25 0:137 route-map calculator permit 33669 match community 2_25_137 set community 0:3425 ip community-list standard 2_9_206 permit 65000:2 0:9 0:206 ip community-list standard 2_18_103 permit 65000:2 0:18 0:103 route-map calculator permit 33670 match community 2_9_206 2_18_103 set community 0:1854 ip community-list standard 2_61_71 permit 65000:2 0:61 0:71 route-map calculator permit 33671 match community 2_61_71 set community 0:4331 ip community-list standard 2_46_146 permit 65000:2 0:46 0:146 ip community-list standard 2_73_92 permit 65000:2 0:73 0:92 route-map calculator permit 33672 match community 2_46_146 2_73_92 set community 0:6716 ip community-list standard 2_14_256 permit 65000:2 0:14 0:256 ip community-list standard 2_16_224 permit 65000:2 0:16 0:224 ip community-list standard 2_28_128 permit 65000:2 0:28 0:128 ip community-list standard 2_32_112 permit 65000:2 0:32 0:112 ip community-list standard 2_56_64 permit 65000:2 0:56 0:64 route-map calculator permit 33673 match community 2_14_256 2_16_224 2_28_128 2_32_112 2_56_64 set community 0:3584 ip community-list standard 2_163_179 permit 65000:2 0:163 0:179 route-map calculator permit 33674 match community 2_163_179 set community 0:29177 ip community-list standard 2_111_248 permit 65000:2 0:111 0:248 ip community-list standard 2_124_222 permit 65000:2 0:124 0:222 ip community-list standard 2_148_186 permit 65000:2 0:148 0:186 route-map calculator permit 33675 match community 2_111_248 2_124_222 2_148_186 set community 0:27528 ip community-list standard 2_100_229 permit 65000:2 0:100 0:229 route-map calculator permit 33676 match community 2_100_229 set community 0:22900 ip community-list standard 2_59_143 permit 65000:2 0:59 0:143 route-map calculator permit 33677 match community 2_59_143 set community 0:8437 ip community-list standard 2_24_248 permit 65000:2 0:24 0:248 ip community-list standard 2_31_192 permit 65000:2 0:31 0:192 ip community-list standard 2_32_186 permit 65000:2 0:32 0:186 ip community-list standard 2_48_124 permit 65000:2 0:48 0:124 ip community-list standard 2_62_96 permit 65000:2 0:62 0:96 ip community-list standard 2_64_93 permit 65000:2 0:64 0:93 route-map calculator permit 33678 match community 2_24_248 2_31_192 2_32_186 2_48_124 2_62_96 set community 0:5952 route-map calculator permit 33679 match community 2_64_93 set community 0:5952 ip community-list standard 2_142_157 permit 65000:2 0:142 0:157 route-map calculator permit 33680 match community 2_142_157 set community 0:22294 ip community-list standard 2_162_239 permit 65000:2 0:162 0:239 route-map calculator permit 33681 match community 2_162_239 set community 0:38718 ip community-list standard 2_40_181 permit 65000:2 0:40 0:181 route-map calculator permit 33682 match community 2_40_181 set community 0:7240 ip community-list standard 2_19_103 permit 65000:2 0:19 0:103 route-map calculator permit 33683 match community 2_19_103 set community 0:1957 ip community-list standard 2_3_214 permit 65000:2 0:3 0:214 ip community-list standard 2_6_107 permit 65000:2 0:6 0:107 route-map calculator permit 33684 match community 2_3_214 2_6_107 set community 0:642 ip community-list standard 2_46_245 permit 65000:2 0:46 0:245 ip community-list standard 2_49_230 permit 65000:2 0:49 0:230 ip community-list standard 2_70_161 permit 65000:2 0:70 0:161 ip community-list standard 2_98_115 permit 65000:2 0:98 0:115 route-map calculator permit 33685 match community 2_46_245 2_49_230 2_70_161 2_98_115 set community 0:11270 ip community-list standard 2_203_255 permit 65000:2 0:203 0:255 route-map calculator permit 33686 match community 2_203_255 set community 0:51765 ip community-list standard 2_7_253 permit 65000:2 0:7 0:253 ip community-list standard 2_11_161 permit 65000:2 0:11 0:161 ip community-list standard 2_23_77 permit 65000:2 0:23 0:77 route-map calculator permit 33687 match community 2_7_253 2_11_161 2_23_77 set community 0:1771 ip community-list standard 2_105_234 permit 65000:2 0:105 0:234 ip community-list standard 2_117_210 permit 65000:2 0:117 0:210 ip community-list standard 2_126_195 permit 65000:2 0:126 0:195 ip community-list standard 2_130_189 permit 65000:2 0:130 0:189 ip community-list standard 2_135_182 permit 65000:2 0:135 0:182 route-map calculator permit 33688 match community 2_105_234 2_117_210 2_126_195 2_130_189 2_135_182 set community 0:24570 ip community-list standard 2_61_83 permit 65000:2 0:61 0:83 route-map calculator permit 33689 match community 2_61_83 set community 0:5063 ip community-list standard 2_2_160 permit 65000:2 0:2 0:160 ip community-list standard 2_4_80 permit 65000:2 0:4 0:80 ip community-list standard 2_5_64 permit 65000:2 0:5 0:64 ip community-list standard 2_8_40 permit 65000:2 0:8 0:40 ip community-list standard 2_10_32 permit 65000:2 0:10 0:32 ip community-list standard 2_16_20 permit 65000:2 0:16 0:20 ip community-list standard 1_64_256 permit 65000:1 0:64 0:256 ip community-list standard 1_65_255 permit 65000:1 0:65 0:255 ip community-list standard 1_66_254 permit 65000:1 0:66 0:254 ip community-list standard 1_67_253 permit 65000:1 0:67 0:253 ip community-list standard 1_68_252 permit 65000:1 0:68 0:252 ip community-list standard 1_69_251 permit 65000:1 0:69 0:251 ip community-list standard 1_70_250 permit 65000:1 0:70 0:250 ip community-list standard 1_71_249 permit 65000:1 0:71 0:249 ip community-list standard 1_72_248 permit 65000:1 0:72 0:248 ip community-list standard 1_73_247 permit 65000:1 0:73 0:247 ip community-list standard 1_74_246 permit 65000:1 0:74 0:246 ip community-list standard 1_75_245 permit 65000:1 0:75 0:245 ip community-list standard 1_76_244 permit 65000:1 0:76 0:244 ip community-list standard 1_77_243 permit 65000:1 0:77 0:243 ip community-list standard 1_78_242 permit 65000:1 0:78 0:242 ip community-list standard 1_79_241 permit 65000:1 0:79 0:241 ip community-list standard 1_80_240 permit 65000:1 0:80 0:240 ip community-list standard 1_81_239 permit 65000:1 0:81 0:239 ip community-list standard 1_82_238 permit 65000:1 0:82 0:238 ip community-list standard 1_83_237 permit 65000:1 0:83 0:237 ip community-list standard 1_84_236 permit 65000:1 0:84 0:236 ip community-list standard 1_85_235 permit 65000:1 0:85 0:235 ip community-list standard 1_86_234 permit 65000:1 0:86 0:234 ip community-list standard 1_87_233 permit 65000:1 0:87 0:233 ip community-list standard 1_88_232 permit 65000:1 0:88 0:232 ip community-list standard 1_89_231 permit 65000:1 0:89 0:231 ip community-list standard 1_90_230 permit 65000:1 0:90 0:230 ip community-list standard 1_91_229 permit 65000:1 0:91 0:229 ip community-list standard 1_92_228 permit 65000:1 0:92 0:228 ip community-list standard 1_93_227 permit 65000:1 0:93 0:227 ip community-list standard 1_94_226 permit 65000:1 0:94 0:226 ip community-list standard 1_95_225 permit 65000:1 0:95 0:225 ip community-list standard 1_96_224 permit 65000:1 0:96 0:224 ip community-list standard 1_97_223 permit 65000:1 0:97 0:223 ip community-list standard 1_98_222 permit 65000:1 0:98 0:222 ip community-list standard 1_99_221 permit 65000:1 0:99 0:221 ip community-list standard 1_100_220 permit 65000:1 0:100 0:220 ip community-list standard 1_101_219 permit 65000:1 0:101 0:219 ip community-list standard 1_102_218 permit 65000:1 0:102 0:218 ip community-list standard 1_103_217 permit 65000:1 0:103 0:217 ip community-list standard 1_104_216 permit 65000:1 0:104 0:216 ip community-list standard 1_105_215 permit 65000:1 0:105 0:215 ip community-list standard 1_106_214 permit 65000:1 0:106 0:214 ip community-list standard 1_107_213 permit 65000:1 0:107 0:213 ip community-list standard 1_108_212 permit 65000:1 0:108 0:212 ip community-list standard 1_109_211 permit 65000:1 0:109 0:211 ip community-list standard 1_110_210 permit 65000:1 0:110 0:210 ip community-list standard 1_111_209 permit 65000:1 0:111 0:209 ip community-list standard 1_112_208 permit 65000:1 0:112 0:208 ip community-list standard 1_113_207 permit 65000:1 0:113 0:207 ip community-list standard 1_114_206 permit 65000:1 0:114 0:206 ip community-list standard 1_115_205 permit 65000:1 0:115 0:205 ip community-list standard 1_116_204 permit 65000:1 0:116 0:204 ip community-list standard 1_117_203 permit 65000:1 0:117 0:203 ip community-list standard 1_118_202 permit 65000:1 0:118 0:202 ip community-list standard 1_119_201 permit 65000:1 0:119 0:201 ip community-list standard 1_120_200 permit 65000:1 0:120 0:200 ip community-list standard 1_121_199 permit 65000:1 0:121 0:199 ip community-list standard 1_122_198 permit 65000:1 0:122 0:198 ip community-list standard 1_123_197 permit 65000:1 0:123 0:197 ip community-list standard 1_124_196 permit 65000:1 0:124 0:196 ip community-list standard 1_125_195 permit 65000:1 0:125 0:195 ip community-list standard 1_126_194 permit 65000:1 0:126 0:194 ip community-list standard 1_127_193 permit 65000:1 0:127 0:193 ip community-list standard 1_128_192 permit 65000:1 0:128 0:192 ip community-list standard 1_129_191 permit 65000:1 0:129 0:191 ip community-list standard 1_130_190 permit 65000:1 0:130 0:190 ip community-list standard 1_131_189 permit 65000:1 0:131 0:189 ip community-list standard 1_132_188 permit 65000:1 0:132 0:188 ip community-list standard 1_133_187 permit 65000:1 0:133 0:187 ip community-list standard 1_134_186 permit 65000:1 0:134 0:186 ip community-list standard 1_135_185 permit 65000:1 0:135 0:185 ip community-list standard 1_136_184 permit 65000:1 0:136 0:184 ip community-list standard 1_137_183 permit 65000:1 0:137 0:183 ip community-list standard 1_138_182 permit 65000:1 0:138 0:182 ip community-list standard 1_139_181 permit 65000:1 0:139 0:181 ip community-list standard 1_140_180 permit 65000:1 0:140 0:180 ip community-list standard 1_141_179 permit 65000:1 0:141 0:179 ip community-list standard 1_142_178 permit 65000:1 0:142 0:178 ip community-list standard 1_143_177 permit 65000:1 0:143 0:177 ip community-list standard 1_144_176 permit 65000:1 0:144 0:176 ip community-list standard 1_145_175 permit 65000:1 0:145 0:175 ip community-list standard 1_146_174 permit 65000:1 0:146 0:174 ip community-list standard 1_147_173 permit 65000:1 0:147 0:173 ip community-list standard 1_148_172 permit 65000:1 0:148 0:172 ip community-list standard 1_149_171 permit 65000:1 0:149 0:171 ip community-list standard 1_150_170 permit 65000:1 0:150 0:170 ip community-list standard 1_151_169 permit 65000:1 0:151 0:169 ip community-list standard 1_152_168 permit 65000:1 0:152 0:168 ip community-list standard 1_153_167 permit 65000:1 0:153 0:167 ip community-list standard 1_154_166 permit 65000:1 0:154 0:166 ip community-list standard 1_155_165 permit 65000:1 0:155 0:165 ip community-list standard 1_156_164 permit 65000:1 0:156 0:164 ip community-list standard 1_157_163 permit 65000:1 0:157 0:163 ip community-list standard 1_158_162 permit 65000:1 0:158 0:162 ip community-list standard 1_159_161 permit 65000:1 0:159 0:161 ip community-list standard 1_160_160 permit 65000:1 0:160 0:160 route-map calculator permit 33690 match community 2_2_160 2_4_80 2_5_64 2_8_40 2_10_32 set community 0:320 route-map calculator permit 33691 match community 2_16_20 1_64_256 1_65_255 1_66_254 1_67_253 set community 0:320 route-map calculator permit 33692 match community 1_68_252 1_69_251 1_70_250 1_71_249 1_72_248 set community 0:320 route-map calculator permit 33693 match community 1_73_247 1_74_246 1_75_245 1_76_244 1_77_243 set community 0:320 route-map calculator permit 33694 match community 1_78_242 1_79_241 1_80_240 1_81_239 1_82_238 set community 0:320 route-map calculator permit 33695 match community 1_83_237 1_84_236 1_85_235 1_86_234 1_87_233 set community 0:320 route-map calculator permit 33696 match community 1_88_232 1_89_231 1_90_230 1_91_229 1_92_228 set community 0:320 route-map calculator permit 33697 match community 1_93_227 1_94_226 1_95_225 1_96_224 1_97_223 set community 0:320 route-map calculator permit 33698 match community 1_98_222 1_99_221 1_100_220 1_101_219 1_102_218 set community 0:320 route-map calculator permit 33699 match community 1_103_217 1_104_216 1_105_215 1_106_214 1_107_213 set community 0:320 route-map calculator permit 33700 match community 1_108_212 1_109_211 1_110_210 1_111_209 1_112_208 set community 0:320 route-map calculator permit 33701 match community 1_113_207 1_114_206 1_115_205 1_116_204 1_117_203 set community 0:320 route-map calculator permit 33702 match community 1_118_202 1_119_201 1_120_200 1_121_199 1_122_198 set community 0:320 route-map calculator permit 33703 match community 1_123_197 1_124_196 1_125_195 1_126_194 1_127_193 set community 0:320 route-map calculator permit 33704 match community 1_128_192 1_129_191 1_130_190 1_131_189 1_132_188 set community 0:320 route-map calculator permit 33705 match community 1_133_187 1_134_186 1_135_185 1_136_184 1_137_183 set community 0:320 route-map calculator permit 33706 match community 1_138_182 1_139_181 1_140_180 1_141_179 1_142_178 set community 0:320 route-map calculator permit 33707 match community 1_143_177 1_144_176 1_145_175 1_146_174 1_147_173 set community 0:320 route-map calculator permit 33708 match community 1_148_172 1_149_171 1_150_170 1_151_169 1_152_168 set community 0:320 route-map calculator permit 33709 match community 1_153_167 1_154_166 1_155_165 1_156_164 1_157_163 set community 0:320 route-map calculator permit 33710 match community 1_158_162 1_159_161 1_160_160 set community 0:320 ip community-list standard 2_199_255 permit 65000:2 0:199 0:255 route-map calculator permit 33711 match community 2_199_255 set community 0:50745 ip community-list standard 2_199_221 permit 65000:2 0:199 0:221 route-map calculator permit 33712 match community 2_199_221 set community 0:43979 ip community-list standard 2_35_211 permit 65000:2 0:35 0:211 route-map calculator permit 33713 match community 2_35_211 set community 0:7385 ip community-list standard 2_194_238 permit 65000:2 0:194 0:238 route-map calculator permit 33714 match community 2_194_238 set community 0:46172 ip community-list standard 2_74_139 permit 65000:2 0:74 0:139 route-map calculator permit 33715 match community 2_74_139 set community 0:10286 ip community-list standard 2_109_155 permit 65000:2 0:109 0:155 route-map calculator permit 33716 match community 2_109_155 set community 0:16895 ip community-list standard 2_97_219 permit 65000:2 0:97 0:219 route-map calculator permit 33717 match community 2_97_219 set community 0:21243 ip community-list standard 2_130_215 permit 65000:2 0:130 0:215 route-map calculator permit 33718 match community 2_130_215 set community 0:27950 ip community-list standard 2_163_251 permit 65000:2 0:163 0:251 route-map calculator permit 33719 match community 2_163_251 set community 0:40913 ip community-list standard 2_225_231 permit 65000:2 0:225 0:231 route-map calculator permit 33720 match community 2_225_231 set community 0:51975 ip community-list standard 2_2_249 permit 65000:2 0:2 0:249 ip community-list standard 2_3_166 permit 65000:2 0:3 0:166 ip community-list standard 2_6_83 permit 65000:2 0:6 0:83 ip community-list standard 1_242_256 permit 65000:1 0:242 0:256 ip community-list standard 1_243_255 permit 65000:1 0:243 0:255 ip community-list standard 1_244_254 permit 65000:1 0:244 0:254 ip community-list standard 1_245_253 permit 65000:1 0:245 0:253 ip community-list standard 1_246_252 permit 65000:1 0:246 0:252 ip community-list standard 1_247_251 permit 65000:1 0:247 0:251 ip community-list standard 1_248_250 permit 65000:1 0:248 0:250 ip community-list standard 1_249_249 permit 65000:1 0:249 0:249 route-map calculator permit 33721 match community 2_2_249 2_3_166 2_6_83 1_242_256 1_243_255 set community 0:498 route-map calculator permit 33722 match community 1_244_254 1_245_253 1_246_252 1_247_251 1_248_250 set community 0:498 route-map calculator permit 33723 match community 1_249_249 set community 0:498 ip community-list standard 2_78_223 permit 65000:2 0:78 0:223 route-map calculator permit 33724 match community 2_78_223 set community 0:17394 ip community-list standard 2_136_163 permit 65000:2 0:136 0:163 route-map calculator permit 33725 match community 2_136_163 set community 0:22168 ip community-list standard 2_44_134 permit 65000:2 0:44 0:134 ip community-list standard 2_67_88 permit 65000:2 0:67 0:88 route-map calculator permit 33726 match community 2_44_134 2_67_88 set community 0:5896 ip community-list standard 2_218_248 permit 65000:2 0:218 0:248 route-map calculator permit 33727 match community 2_218_248 set community 0:54064 ip community-list standard 2_7_197 permit 65000:2 0:7 0:197 route-map calculator permit 33728 match community 2_7_197 set community 0:1379 ip community-list standard 2_59_205 permit 65000:2 0:59 0:205 route-map calculator permit 33729 match community 2_59_205 set community 0:12095 ip community-list standard 2_69_125 permit 65000:2 0:69 0:125 ip community-list standard 2_75_115 permit 65000:2 0:75 0:115 route-map calculator permit 33730 match community 2_69_125 2_75_115 set community 0:8625 ip community-list standard 2_183_254 permit 65000:2 0:183 0:254 route-map calculator permit 33731 match community 2_183_254 set community 0:46482 ip community-list standard 2_56_191 permit 65000:2 0:56 0:191 route-map calculator permit 33732 match community 2_56_191 set community 0:10696 ip community-list standard 2_91_182 permit 65000:2 0:91 0:182 ip community-list standard 2_98_169 permit 65000:2 0:98 0:169 route-map calculator permit 33733 match community 2_91_182 2_98_169 set community 0:16562 ip community-list standard 2_29_209 permit 65000:2 0:29 0:209 route-map calculator permit 33734 match community 2_29_209 set community 0:6061 ip community-list standard 2_61_222 permit 65000:2 0:61 0:222 ip community-list standard 2_74_183 permit 65000:2 0:74 0:183 ip community-list standard 2_111_122 permit 65000:2 0:111 0:122 route-map calculator permit 33735 match community 2_61_222 2_74_183 2_111_122 set community 0:13542 ip community-list standard 2_135_174 permit 65000:2 0:135 0:174 ip community-list standard 2_145_162 permit 65000:2 0:145 0:162 route-map calculator permit 33736 match community 2_135_174 2_145_162 set community 0:23490 ip community-list standard 2_13_248 permit 65000:2 0:13 0:248 ip community-list standard 2_26_124 permit 65000:2 0:26 0:124 ip community-list standard 2_31_104 permit 65000:2 0:31 0:104 ip community-list standard 2_52_62 permit 65000:2 0:52 0:62 route-map calculator permit 33737 match community 2_13_248 2_26_124 2_31_104 2_52_62 set community 0:3224 ip community-list standard 2_133_250 permit 65000:2 0:133 0:250 ip community-list standard 2_175_190 permit 65000:2 0:175 0:190 route-map calculator permit 33738 match community 2_133_250 2_175_190 set community 0:33250 ip community-list standard 2_159_201 permit 65000:2 0:159 0:201 route-map calculator permit 33739 match community 2_159_201 set community 0:31959 ip community-list standard 2_108_242 permit 65000:2 0:108 0:242 ip community-list standard 2_121_216 permit 65000:2 0:121 0:216 ip community-list standard 2_132_198 permit 65000:2 0:132 0:198 route-map calculator permit 33740 match community 2_108_242 2_121_216 2_132_198 set community 0:26136 ip community-list standard 2_43_109 permit 65000:2 0:43 0:109 route-map calculator permit 33741 match community 2_43_109 set community 0:4687 ip community-list standard 2_33_238 permit 65000:2 0:33 0:238 ip community-list standard 2_34_231 permit 65000:2 0:34 0:231 ip community-list standard 2_42_187 permit 65000:2 0:42 0:187 ip community-list standard 2_51_154 permit 65000:2 0:51 0:154 ip community-list standard 2_66_119 permit 65000:2 0:66 0:119 ip community-list standard 2_77_102 permit 65000:2 0:77 0:102 route-map calculator permit 33742 match community 2_33_238 2_34_231 2_42_187 2_51_154 2_66_119 set community 0:7854 route-map calculator permit 33743 match community 2_77_102 set community 0:7854 ip community-list standard 2_175_197 permit 65000:2 0:175 0:197 route-map calculator permit 33744 match community 2_175_197 set community 0:34475 ip community-list standard 2_121_195 permit 65000:2 0:121 0:195 ip community-list standard 2_143_165 permit 65000:2 0:143 0:165 route-map calculator permit 33745 match community 2_121_195 2_143_165 set community 0:23595 ip community-list standard 2_104_256 permit 65000:2 0:104 0:256 ip community-list standard 2_128_208 permit 65000:2 0:128 0:208 route-map calculator permit 33746 match community 2_104_256 2_128_208 set community 0:26624 ip community-list standard 2_20_158 permit 65000:2 0:20 0:158 ip community-list standard 2_40_79 permit 65000:2 0:40 0:79 route-map calculator permit 33747 match community 2_20_158 2_40_79 set community 0:3160 ip community-list standard 2_48_253 permit 65000:2 0:48 0:253 ip community-list standard 2_66_184 permit 65000:2 0:66 0:184 ip community-list standard 2_69_176 permit 65000:2 0:69 0:176 ip community-list standard 2_88_138 permit 65000:2 0:88 0:138 ip community-list standard 2_92_132 permit 65000:2 0:92 0:132 route-map calculator permit 33748 match community 2_48_253 2_66_184 2_69_176 2_88_138 2_92_132 set community 0:12144 ip community-list standard 2_132_194 permit 65000:2 0:132 0:194 route-map calculator permit 33749 match community 2_132_194 set community 0:25608 ip community-list standard 2_78_235 permit 65000:2 0:78 0:235 ip community-list standard 2_94_195 permit 65000:2 0:94 0:195 ip community-list standard 2_130_141 permit 65000:2 0:130 0:141 route-map calculator permit 33750 match community 2_78_235 2_94_195 2_130_141 set community 0:18330 ip community-list standard 2_171_226 permit 65000:2 0:171 0:226 route-map calculator permit 33751 match community 2_171_226 set community 0:38646 ip community-list standard 2_7_173 permit 65000:2 0:7 0:173 route-map calculator permit 33752 match community 2_7_173 set community 0:1211 ip community-list standard 2_166_170 permit 65000:2 0:166 0:170 route-map calculator permit 33753 match community 2_166_170 set community 0:28220 ip community-list standard 1_1_187 permit 65000:1 0:1 0:187 ip community-list standard 2_1_188 permit 65000:2 0:1 0:188 ip community-list standard 2_2_94 permit 65000:2 0:2 0:94 ip community-list standard 1_2_186 permit 65000:1 0:2 0:186 ip community-list standard 1_3_185 permit 65000:1 0:3 0:185 ip community-list standard 2_4_47 permit 65000:2 0:4 0:47 ip community-list standard 1_4_184 permit 65000:1 0:4 0:184 ip community-list standard 1_5_183 permit 65000:1 0:5 0:183 ip community-list standard 1_6_182 permit 65000:1 0:6 0:182 ip community-list standard 1_7_181 permit 65000:1 0:7 0:181 ip community-list standard 1_8_180 permit 65000:1 0:8 0:180 ip community-list standard 1_9_179 permit 65000:1 0:9 0:179 ip community-list standard 1_10_178 permit 65000:1 0:10 0:178 ip community-list standard 1_11_177 permit 65000:1 0:11 0:177 ip community-list standard 1_12_176 permit 65000:1 0:12 0:176 ip community-list standard 1_13_175 permit 65000:1 0:13 0:175 ip community-list standard 1_14_174 permit 65000:1 0:14 0:174 ip community-list standard 1_15_173 permit 65000:1 0:15 0:173 ip community-list standard 1_16_172 permit 65000:1 0:16 0:172 ip community-list standard 1_17_171 permit 65000:1 0:17 0:171 ip community-list standard 1_18_170 permit 65000:1 0:18 0:170 ip community-list standard 1_19_169 permit 65000:1 0:19 0:169 ip community-list standard 1_20_168 permit 65000:1 0:20 0:168 ip community-list standard 1_21_167 permit 65000:1 0:21 0:167 ip community-list standard 1_22_166 permit 65000:1 0:22 0:166 ip community-list standard 1_23_165 permit 65000:1 0:23 0:165 ip community-list standard 1_24_164 permit 65000:1 0:24 0:164 ip community-list standard 1_25_163 permit 65000:1 0:25 0:163 ip community-list standard 1_26_162 permit 65000:1 0:26 0:162 ip community-list standard 1_27_161 permit 65000:1 0:27 0:161 ip community-list standard 1_28_160 permit 65000:1 0:28 0:160 ip community-list standard 1_29_159 permit 65000:1 0:29 0:159 ip community-list standard 1_30_158 permit 65000:1 0:30 0:158 ip community-list standard 1_31_157 permit 65000:1 0:31 0:157 ip community-list standard 1_32_156 permit 65000:1 0:32 0:156 ip community-list standard 1_33_155 permit 65000:1 0:33 0:155 ip community-list standard 1_34_154 permit 65000:1 0:34 0:154 ip community-list standard 1_35_153 permit 65000:1 0:35 0:153 ip community-list standard 1_36_152 permit 65000:1 0:36 0:152 ip community-list standard 1_37_151 permit 65000:1 0:37 0:151 ip community-list standard 1_38_150 permit 65000:1 0:38 0:150 ip community-list standard 1_39_149 permit 65000:1 0:39 0:149 ip community-list standard 1_40_148 permit 65000:1 0:40 0:148 ip community-list standard 1_41_147 permit 65000:1 0:41 0:147 ip community-list standard 1_42_146 permit 65000:1 0:42 0:146 ip community-list standard 1_43_145 permit 65000:1 0:43 0:145 ip community-list standard 1_44_144 permit 65000:1 0:44 0:144 ip community-list standard 1_45_143 permit 65000:1 0:45 0:143 ip community-list standard 1_46_142 permit 65000:1 0:46 0:142 ip community-list standard 1_47_141 permit 65000:1 0:47 0:141 ip community-list standard 1_48_140 permit 65000:1 0:48 0:140 ip community-list standard 1_49_139 permit 65000:1 0:49 0:139 ip community-list standard 1_50_138 permit 65000:1 0:50 0:138 ip community-list standard 1_51_137 permit 65000:1 0:51 0:137 ip community-list standard 1_52_136 permit 65000:1 0:52 0:136 ip community-list standard 1_53_135 permit 65000:1 0:53 0:135 ip community-list standard 1_54_134 permit 65000:1 0:54 0:134 ip community-list standard 1_55_133 permit 65000:1 0:55 0:133 ip community-list standard 1_56_132 permit 65000:1 0:56 0:132 ip community-list standard 1_57_131 permit 65000:1 0:57 0:131 ip community-list standard 1_58_130 permit 65000:1 0:58 0:130 ip community-list standard 1_59_129 permit 65000:1 0:59 0:129 ip community-list standard 1_60_128 permit 65000:1 0:60 0:128 ip community-list standard 1_61_127 permit 65000:1 0:61 0:127 ip community-list standard 1_62_126 permit 65000:1 0:62 0:126 ip community-list standard 1_63_125 permit 65000:1 0:63 0:125 ip community-list standard 1_64_124 permit 65000:1 0:64 0:124 ip community-list standard 1_65_123 permit 65000:1 0:65 0:123 ip community-list standard 1_66_122 permit 65000:1 0:66 0:122 ip community-list standard 1_67_121 permit 65000:1 0:67 0:121 ip community-list standard 1_68_120 permit 65000:1 0:68 0:120 ip community-list standard 1_69_119 permit 65000:1 0:69 0:119 ip community-list standard 1_70_118 permit 65000:1 0:70 0:118 ip community-list standard 1_71_117 permit 65000:1 0:71 0:117 ip community-list standard 1_72_116 permit 65000:1 0:72 0:116 ip community-list standard 1_73_115 permit 65000:1 0:73 0:115 ip community-list standard 1_74_114 permit 65000:1 0:74 0:114 ip community-list standard 1_75_113 permit 65000:1 0:75 0:113 ip community-list standard 1_76_112 permit 65000:1 0:76 0:112 ip community-list standard 1_77_111 permit 65000:1 0:77 0:111 ip community-list standard 1_78_110 permit 65000:1 0:78 0:110 ip community-list standard 1_79_109 permit 65000:1 0:79 0:109 ip community-list standard 1_80_108 permit 65000:1 0:80 0:108 ip community-list standard 1_81_107 permit 65000:1 0:81 0:107 ip community-list standard 1_82_106 permit 65000:1 0:82 0:106 ip community-list standard 1_83_105 permit 65000:1 0:83 0:105 ip community-list standard 1_84_104 permit 65000:1 0:84 0:104 ip community-list standard 1_85_103 permit 65000:1 0:85 0:103 ip community-list standard 1_86_102 permit 65000:1 0:86 0:102 ip community-list standard 1_87_101 permit 65000:1 0:87 0:101 ip community-list standard 1_88_100 permit 65000:1 0:88 0:100 ip community-list standard 1_89_99 permit 65000:1 0:89 0:99 ip community-list standard 1_90_98 permit 65000:1 0:90 0:98 ip community-list standard 1_91_97 permit 65000:1 0:91 0:97 ip community-list standard 1_92_96 permit 65000:1 0:92 0:96 ip community-list standard 1_93_95 permit 65000:1 0:93 0:95 ip community-list standard 1_94_94 permit 65000:1 0:94 0:94 ip community-list expanded c188 permit 1 ^65000:4_0:188_0:1$ ip community-list expanded c188 permit 2 ^65000:3_0:189_0:1$ ip community-list expanded c188 permit 3 ^65000:3_0:190_0:2$ ip community-list expanded c188 permit 4 ^65000:3_0:191_0:3$ ip community-list expanded c188 permit 5 ^65000:3_0:192_0:4$ ip community-list expanded c188 permit 6 ^65000:3_0:193_0:5$ ip community-list expanded c188 permit 7 ^65000:3_0:194_0:6$ ip community-list expanded c188 permit 8 ^65000:3_0:195_0:7$ ip community-list expanded c188 permit 9 ^65000:3_0:196_0:8$ ip community-list expanded c188 permit 10 ^65000:3_0:197_0:9$ ip community-list expanded c188 permit 11 ^65000:3_0:198_0:10$ ip community-list expanded c188 permit 12 ^65000:3_0:199_0:11$ ip community-list expanded c188 permit 13 ^65000:3_0:200_0:12$ ip community-list expanded c188 permit 14 ^65000:3_0:201_0:13$ ip community-list expanded c188 permit 15 ^65000:3_0:202_0:14$ ip community-list expanded c188 permit 16 ^65000:3_0:203_0:15$ ip community-list expanded c188 permit 17 ^65000:3_0:204_0:16$ ip community-list expanded c188 permit 18 ^65000:3_0:205_0:17$ ip community-list expanded c188 permit 19 ^65000:3_0:206_0:18$ ip community-list expanded c188 permit 20 ^65000:3_0:207_0:19$ ip community-list expanded c188 permit 21 ^65000:3_0:208_0:20$ ip community-list expanded c188 permit 22 ^65000:3_0:209_0:21$ ip community-list expanded c188 permit 23 ^65000:3_0:210_0:22$ ip community-list expanded c188 permit 24 ^65000:3_0:211_0:23$ ip community-list expanded c188 permit 25 ^65000:3_0:212_0:24$ ip community-list expanded c188 permit 26 ^65000:3_0:213_0:25$ ip community-list expanded c188 permit 27 ^65000:3_0:214_0:26$ ip community-list expanded c188 permit 28 ^65000:3_0:215_0:27$ ip community-list expanded c188 permit 29 ^65000:3_0:216_0:28$ ip community-list expanded c188 permit 30 ^65000:3_0:217_0:29$ ip community-list expanded c188 permit 31 ^65000:3_0:218_0:30$ ip community-list expanded c188 permit 32 ^65000:3_0:219_0:31$ ip community-list expanded c188 permit 33 ^65000:3_0:220_0:32$ ip community-list expanded c188 permit 34 ^65000:3_0:221_0:33$ ip community-list expanded c188 permit 35 ^65000:3_0:222_0:34$ ip community-list expanded c188 permit 36 ^65000:3_0:223_0:35$ ip community-list expanded c188 permit 37 ^65000:3_0:224_0:36$ ip community-list expanded c188 permit 38 ^65000:3_0:225_0:37$ ip community-list expanded c188 permit 39 ^65000:3_0:226_0:38$ ip community-list expanded c188 permit 40 ^65000:3_0:227_0:39$ ip community-list expanded c188 permit 41 ^65000:3_0:228_0:40$ ip community-list expanded c188 permit 42 ^65000:3_0:229_0:41$ ip community-list expanded c188 permit 43 ^65000:3_0:230_0:42$ ip community-list expanded c188 permit 44 ^65000:3_0:231_0:43$ ip community-list expanded c188 permit 45 ^65000:3_0:232_0:44$ ip community-list expanded c188 permit 46 ^65000:3_0:233_0:45$ ip community-list expanded c188 permit 47 ^65000:3_0:234_0:46$ ip community-list expanded c188 permit 48 ^65000:3_0:235_0:47$ ip community-list expanded c188 permit 49 ^65000:3_0:236_0:48$ ip community-list expanded c188 permit 50 ^65000:3_0:237_0:49$ ip community-list expanded c188 permit 51 ^65000:3_0:238_0:50$ ip community-list expanded c188 permit 52 ^65000:3_0:239_0:51$ ip community-list expanded c188 permit 53 ^65000:3_0:240_0:52$ ip community-list expanded c188 permit 54 ^65000:3_0:241_0:53$ ip community-list expanded c188 permit 55 ^65000:3_0:242_0:54$ ip community-list expanded c188 permit 56 ^65000:3_0:243_0:55$ ip community-list expanded c188 permit 57 ^65000:3_0:244_0:56$ ip community-list expanded c188 permit 58 ^65000:3_0:245_0:57$ ip community-list expanded c188 permit 59 ^65000:3_0:246_0:58$ ip community-list expanded c188 permit 60 ^65000:3_0:247_0:59$ ip community-list expanded c188 permit 61 ^65000:3_0:248_0:60$ ip community-list expanded c188 permit 62 ^65000:3_0:249_0:61$ ip community-list expanded c188 permit 63 ^65000:3_0:250_0:62$ ip community-list expanded c188 permit 64 ^65000:3_0:251_0:63$ ip community-list expanded c188 permit 65 ^65000:3_0:252_0:64$ ip community-list expanded c188 permit 66 ^65000:3_0:253_0:65$ ip community-list expanded c188 permit 67 ^65000:3_0:254_0:66$ ip community-list expanded c188 permit 68 ^65000:3_0:255_0:67$ ip community-list expanded c188 permit 69 ^65000:3_0:256_0:68$ route-map calculator permit 33754 match community 1_1_187 2_1_188 2_2_94 1_2_186 1_3_185 set community 0:188 route-map calculator permit 33755 match community 2_4_47 1_4_184 1_5_183 1_6_182 1_7_181 set community 0:188 route-map calculator permit 33756 match community 1_8_180 1_9_179 1_10_178 1_11_177 1_12_176 set community 0:188 route-map calculator permit 33757 match community 1_13_175 1_14_174 1_15_173 1_16_172 1_17_171 set community 0:188 route-map calculator permit 33758 match community 1_18_170 1_19_169 1_20_168 1_21_167 1_22_166 set community 0:188 route-map calculator permit 33759 match community 1_23_165 1_24_164 1_25_163 1_26_162 1_27_161 set community 0:188 route-map calculator permit 33760 match community 1_28_160 1_29_159 1_30_158 1_31_157 1_32_156 set community 0:188 route-map calculator permit 33761 match community 1_33_155 1_34_154 1_35_153 1_36_152 1_37_151 set community 0:188 route-map calculator permit 33762 match community 1_38_150 1_39_149 1_40_148 1_41_147 1_42_146 set community 0:188 route-map calculator permit 33763 match community 1_43_145 1_44_144 1_45_143 1_46_142 1_47_141 set community 0:188 route-map calculator permit 33764 match community 1_48_140 1_49_139 1_50_138 1_51_137 1_52_136 set community 0:188 route-map calculator permit 33765 match community 1_53_135 1_54_134 1_55_133 1_56_132 1_57_131 set community 0:188 route-map calculator permit 33766 match community 1_58_130 1_59_129 1_60_128 1_61_127 1_62_126 set community 0:188 route-map calculator permit 33767 match community 1_63_125 1_64_124 1_65_123 1_66_122 1_67_121 set community 0:188 route-map calculator permit 33768 match community 1_68_120 1_69_119 1_70_118 1_71_117 1_72_116 set community 0:188 route-map calculator permit 33769 match community 1_73_115 1_74_114 1_75_113 1_76_112 1_77_111 set community 0:188 route-map calculator permit 33770 match community 1_78_110 1_79_109 1_80_108 1_81_107 1_82_106 set community 0:188 route-map calculator permit 33771 match community 1_83_105 1_84_104 1_85_103 1_86_102 1_87_101 set community 0:188 route-map calculator permit 33772 match community 1_88_100 1_89_99 1_90_98 1_91_97 1_92_96 set community 0:188 route-map calculator permit 33773 match community 1_93_95 1_94_94 c4_188_1 c3_189_1 c3_190_2 set community 0:188 route-map calculator permit 33774 match community c3_191_3 c3_192_4 c3_193_5 c3_194_6 c3_195_7 set community 0:188 route-map calculator permit 33775 match community c3_196_8 c3_197_9 c3_198_10 c3_199_11 c3_200_12 set community 0:188 route-map calculator permit 33776 match community c3_201_13 c3_202_14 c3_203_15 c3_204_16 c3_205_17 set community 0:188 route-map calculator permit 33777 match community c3_206_18 c3_207_19 c3_208_20 c3_209_21 c3_210_22 set community 0:188 route-map calculator permit 33778 match community c3_211_23 c3_212_24 c3_213_25 c3_214_26 c3_215_27 set community 0:188 route-map calculator permit 33779 match community c3_216_28 c3_217_29 c3_218_30 c3_219_31 c3_220_32 set community 0:188 route-map calculator permit 33780 match community c3_221_33 c3_222_34 c3_223_35 c3_224_36 c3_225_37 set community 0:188 route-map calculator permit 33781 match community c3_226_38 c3_227_39 c3_228_40 c3_229_41 c3_230_42 set community 0:188 route-map calculator permit 33782 match community c3_231_43 c3_232_44 c3_233_45 c3_234_46 c3_235_47 set community 0:188 route-map calculator permit 33783 match community c3_236_48 c3_237_49 c3_238_50 c3_239_51 c3_240_52 set community 0:188 route-map calculator permit 33784 match community c3_241_53 c3_242_54 c3_243_55 c3_244_56 c3_245_57 set community 0:188 route-map calculator permit 33785 match community c3_246_58 c3_247_59 c3_248_60 c3_249_61 c3_250_62 set community 0:188 route-map calculator permit 33786 match community c3_251_63 c3_252_64 c3_253_65 c3_254_66 c3_255_67 set community 0:188 route-map calculator permit 33787 match community c3_256_68 set community 0:188 ip community-list standard 2_134_229 permit 65000:2 0:134 0:229 route-map calculator permit 33788 match community 2_134_229 set community 0:30686 ip community-list standard 2_79_179 permit 65000:2 0:79 0:179 route-map calculator permit 33789 match community 2_79_179 set community 0:14141 ip community-list standard 2_155_246 permit 65000:2 0:155 0:246 ip community-list standard 2_186_205 permit 65000:2 0:186 0:205 route-map calculator permit 33790 match community 2_155_246 2_186_205 set community 0:38130 ip community-list standard 2_215_230 permit 65000:2 0:215 0:230 route-map calculator permit 33791 match community 2_215_230 set community 0:49450 ip community-list standard 2_45_127 permit 65000:2 0:45 0:127 route-map calculator permit 33792 match community 2_45_127 set community 0:5715 ip community-list standard 2_131_226 permit 65000:2 0:131 0:226 route-map calculator permit 33793 match community 2_131_226 set community 0:29606 ip community-list standard 2_194_235 permit 65000:2 0:194 0:235 route-map calculator permit 33794 match community 2_194_235 set community 0:45590 ip community-list standard 2_26_129 permit 65000:2 0:26 0:129 ip community-list standard 2_39_86 permit 65000:2 0:39 0:86 ip community-list standard 2_43_78 permit 65000:2 0:43 0:78 route-map calculator permit 33795 match community 2_26_129 2_39_86 2_43_78 set community 0:3354 ip community-list standard 2_134_223 permit 65000:2 0:134 0:223 route-map calculator permit 33796 match community 2_134_223 set community 0:29882 ip community-list standard 2_93_207 permit 65000:2 0:93 0:207 route-map calculator permit 33797 match community 2_93_207 set community 0:19251 ip community-list standard 2_171_206 permit 65000:2 0:171 0:206 route-map calculator permit 33798 match community 2_171_206 set community 0:35226 ip community-list standard 2_52_221 permit 65000:2 0:52 0:221 ip community-list standard 2_68_169 permit 65000:2 0:68 0:169 route-map calculator permit 33799 match community 2_52_221 2_68_169 set community 0:11492 ip community-list standard 2_22_163 permit 65000:2 0:22 0:163 route-map calculator permit 33800 match community 2_22_163 set community 0:3586 ip community-list standard 2_132_225 permit 65000:2 0:132 0:225 ip community-list standard 2_135_220 permit 65000:2 0:135 0:220 ip community-list standard 2_150_198 permit 65000:2 0:150 0:198 ip community-list standard 2_165_180 permit 65000:2 0:165 0:180 route-map calculator permit 33801 match community 2_132_225 2_135_220 2_150_198 2_165_180 set community 0:29700 ip community-list standard 2_190_229 permit 65000:2 0:190 0:229 route-map calculator permit 33802 match community 2_190_229 set community 0:43510 ip community-list standard 2_89_180 permit 65000:2 0:89 0:180 ip community-list standard 2_90_178 permit 65000:2 0:90 0:178 route-map calculator permit 33803 match community 2_89_180 2_90_178 set community 0:16020 ip community-list standard 2_134_210 permit 65000:2 0:134 0:210 ip community-list standard 2_140_201 permit 65000:2 0:140 0:201 route-map calculator permit 33804 match community 2_134_210 2_140_201 set community 0:28140 ip community-list standard 2_94_173 permit 65000:2 0:94 0:173 route-map calculator permit 33805 match community 2_94_173 set community 0:16262 ip community-list standard 2_195_223 permit 65000:2 0:195 0:223 route-map calculator permit 33806 match community 2_195_223 set community 0:43485 ip community-list standard 2_88_237 permit 65000:2 0:88 0:237 ip community-list standard 2_132_158 permit 65000:2 0:132 0:158 route-map calculator permit 33807 match community 2_88_237 2_132_158 set community 0:20856 ip community-list standard 2_140_244 permit 65000:2 0:140 0:244 route-map calculator permit 33808 match community 2_140_244 set community 0:34160 ip community-list standard 2_79_202 permit 65000:2 0:79 0:202 ip community-list standard 2_101_158 permit 65000:2 0:101 0:158 route-map calculator permit 33809 match community 2_79_202 2_101_158 set community 0:15958 ip community-list standard 2_122_163 permit 65000:2 0:122 0:163 route-map calculator permit 33810 match community 2_122_163 set community 0:19886 ip community-list standard 2_184_184 permit 65000:2 0:184 0:184 route-map calculator permit 33811 match community 2_184_184 set community 0:33856 ip community-list standard 2_205_251 permit 65000:2 0:205 0:251 route-map calculator permit 33812 match community 2_205_251 set community 0:51455 ip community-list standard 2_11_217 permit 65000:2 0:11 0:217 ip community-list standard 2_31_77 permit 65000:2 0:31 0:77 route-map calculator permit 33813 match community 2_11_217 2_31_77 set community 0:2387 ip community-list standard 2_132_204 permit 65000:2 0:132 0:204 ip community-list standard 2_136_198 permit 65000:2 0:136 0:198 ip community-list standard 2_144_187 permit 65000:2 0:144 0:187 ip community-list standard 2_153_176 permit 65000:2 0:153 0:176 route-map calculator permit 33814 match community 2_132_204 2_136_198 2_144_187 2_153_176 set community 0:26928 ip community-list standard 2_52_223 permit 65000:2 0:52 0:223 route-map calculator permit 33815 match community 2_52_223 set community 0:11596 ip community-list standard 2_131_181 permit 65000:2 0:131 0:181 route-map calculator permit 33816 match community 2_131_181 set community 0:23711 ip community-list standard 2_190_203 permit 65000:2 0:190 0:203 route-map calculator permit 33817 match community 2_190_203 set community 0:38570 ip community-list standard 2_68_216 permit 65000:2 0:68 0:216 ip community-list standard 2_72_204 permit 65000:2 0:72 0:204 ip community-list standard 2_96_153 permit 65000:2 0:96 0:153 ip community-list standard 2_102_144 permit 65000:2 0:102 0:144 ip community-list standard 2_108_136 permit 65000:2 0:108 0:136 route-map calculator permit 33818 match community 2_68_216 2_72_204 2_96_153 2_102_144 2_108_136 set community 0:14688 ip community-list standard 2_126_215 permit 65000:2 0:126 0:215 ip community-list standard 2_129_210 permit 65000:2 0:129 0:210 route-map calculator permit 33819 match community 2_126_215 2_129_210 set community 0:27090 ip community-list standard 2_37_123 permit 65000:2 0:37 0:123 ip community-list standard 2_41_111 permit 65000:2 0:41 0:111 route-map calculator permit 33820 match community 2_37_123 2_41_111 set community 0:4551 ip community-list standard 2_37_193 permit 65000:2 0:37 0:193 route-map calculator permit 33821 match community 2_37_193 set community 0:7141 ip community-list standard 2_194_202 permit 65000:2 0:194 0:202 route-map calculator permit 33822 match community 2_194_202 set community 0:39188 ip community-list standard 2_64_179 permit 65000:2 0:64 0:179 route-map calculator permit 33823 match community 2_64_179 set community 0:11456 ip community-list standard 2_166_184 permit 65000:2 0:166 0:184 route-map calculator permit 33824 match community 2_166_184 set community 0:30544 ip community-list standard 2_117_181 permit 65000:2 0:117 0:181 route-map calculator permit 33825 match community 2_117_181 set community 0:21177 ip community-list standard 2_72_251 permit 65000:2 0:72 0:251 route-map calculator permit 33826 match community 2_72_251 set community 0:18072 ip community-list standard 1_1_223 permit 65000:1 0:1 0:223 ip community-list standard 2_1_224 permit 65000:2 0:1 0:224 ip community-list standard 2_2_112 permit 65000:2 0:2 0:112 ip community-list standard 1_2_222 permit 65000:1 0:2 0:222 ip community-list standard 1_3_221 permit 65000:1 0:3 0:221 ip community-list standard 2_4_56 permit 65000:2 0:4 0:56 ip community-list standard 1_4_220 permit 65000:1 0:4 0:220 ip community-list standard 1_5_219 permit 65000:1 0:5 0:219 ip community-list standard 1_6_218 permit 65000:1 0:6 0:218 ip community-list standard 2_7_32 permit 65000:2 0:7 0:32 ip community-list standard 1_7_217 permit 65000:1 0:7 0:217 ip community-list standard 2_8_28 permit 65000:2 0:8 0:28 ip community-list standard 1_8_216 permit 65000:1 0:8 0:216 ip community-list standard 1_9_215 permit 65000:1 0:9 0:215 ip community-list standard 1_10_214 permit 65000:1 0:10 0:214 ip community-list standard 1_11_213 permit 65000:1 0:11 0:213 ip community-list standard 1_12_212 permit 65000:1 0:12 0:212 ip community-list standard 1_13_211 permit 65000:1 0:13 0:211 ip community-list standard 2_14_16 permit 65000:2 0:14 0:16 ip community-list standard 1_14_210 permit 65000:1 0:14 0:210 ip community-list standard 1_15_209 permit 65000:1 0:15 0:209 ip community-list standard 1_16_208 permit 65000:1 0:16 0:208 ip community-list standard 1_17_207 permit 65000:1 0:17 0:207 ip community-list standard 1_18_206 permit 65000:1 0:18 0:206 ip community-list standard 1_19_205 permit 65000:1 0:19 0:205 ip community-list standard 1_20_204 permit 65000:1 0:20 0:204 ip community-list standard 1_21_203 permit 65000:1 0:21 0:203 ip community-list standard 1_22_202 permit 65000:1 0:22 0:202 ip community-list standard 1_23_201 permit 65000:1 0:23 0:201 ip community-list standard 1_24_200 permit 65000:1 0:24 0:200 ip community-list standard 1_25_199 permit 65000:1 0:25 0:199 ip community-list standard 1_26_198 permit 65000:1 0:26 0:198 ip community-list standard 1_27_197 permit 65000:1 0:27 0:197 ip community-list standard 1_28_196 permit 65000:1 0:28 0:196 ip community-list standard 1_29_195 permit 65000:1 0:29 0:195 ip community-list standard 1_30_194 permit 65000:1 0:30 0:194 ip community-list standard 1_31_193 permit 65000:1 0:31 0:193 ip community-list standard 1_32_192 permit 65000:1 0:32 0:192 ip community-list standard 1_33_191 permit 65000:1 0:33 0:191 ip community-list standard 1_34_190 permit 65000:1 0:34 0:190 ip community-list standard 1_35_189 permit 65000:1 0:35 0:189 ip community-list standard 1_36_188 permit 65000:1 0:36 0:188 ip community-list standard 1_37_187 permit 65000:1 0:37 0:187 ip community-list standard 1_38_186 permit 65000:1 0:38 0:186 ip community-list standard 1_39_185 permit 65000:1 0:39 0:185 ip community-list standard 1_40_184 permit 65000:1 0:40 0:184 ip community-list standard 1_41_183 permit 65000:1 0:41 0:183 ip community-list standard 1_42_182 permit 65000:1 0:42 0:182 ip community-list standard 1_43_181 permit 65000:1 0:43 0:181 ip community-list standard 1_44_180 permit 65000:1 0:44 0:180 ip community-list standard 1_45_179 permit 65000:1 0:45 0:179 ip community-list standard 1_46_178 permit 65000:1 0:46 0:178 ip community-list standard 1_47_177 permit 65000:1 0:47 0:177 ip community-list standard 1_48_176 permit 65000:1 0:48 0:176 ip community-list standard 1_49_175 permit 65000:1 0:49 0:175 ip community-list standard 1_50_174 permit 65000:1 0:50 0:174 ip community-list standard 1_51_173 permit 65000:1 0:51 0:173 ip community-list standard 1_52_172 permit 65000:1 0:52 0:172 ip community-list standard 1_53_171 permit 65000:1 0:53 0:171 ip community-list standard 1_54_170 permit 65000:1 0:54 0:170 ip community-list standard 1_55_169 permit 65000:1 0:55 0:169 ip community-list standard 1_56_168 permit 65000:1 0:56 0:168 ip community-list standard 1_57_167 permit 65000:1 0:57 0:167 ip community-list standard 1_58_166 permit 65000:1 0:58 0:166 ip community-list standard 1_59_165 permit 65000:1 0:59 0:165 ip community-list standard 1_60_164 permit 65000:1 0:60 0:164 ip community-list standard 1_61_163 permit 65000:1 0:61 0:163 ip community-list standard 1_62_162 permit 65000:1 0:62 0:162 ip community-list standard 1_63_161 permit 65000:1 0:63 0:161 ip community-list standard 1_64_160 permit 65000:1 0:64 0:160 ip community-list standard 1_65_159 permit 65000:1 0:65 0:159 ip community-list standard 1_66_158 permit 65000:1 0:66 0:158 ip community-list standard 1_67_157 permit 65000:1 0:67 0:157 ip community-list standard 1_68_156 permit 65000:1 0:68 0:156 ip community-list standard 1_69_155 permit 65000:1 0:69 0:155 ip community-list standard 1_70_154 permit 65000:1 0:70 0:154 ip community-list standard 1_71_153 permit 65000:1 0:71 0:153 ip community-list standard 1_72_152 permit 65000:1 0:72 0:152 ip community-list standard 1_73_151 permit 65000:1 0:73 0:151 ip community-list standard 1_74_150 permit 65000:1 0:74 0:150 ip community-list standard 1_75_149 permit 65000:1 0:75 0:149 ip community-list standard 1_76_148 permit 65000:1 0:76 0:148 ip community-list standard 1_77_147 permit 65000:1 0:77 0:147 ip community-list standard 1_78_146 permit 65000:1 0:78 0:146 ip community-list standard 1_79_145 permit 65000:1 0:79 0:145 ip community-list standard 1_80_144 permit 65000:1 0:80 0:144 ip community-list standard 1_81_143 permit 65000:1 0:81 0:143 ip community-list standard 1_82_142 permit 65000:1 0:82 0:142 ip community-list standard 1_83_141 permit 65000:1 0:83 0:141 ip community-list standard 1_84_140 permit 65000:1 0:84 0:140 ip community-list standard 1_85_139 permit 65000:1 0:85 0:139 ip community-list standard 1_86_138 permit 65000:1 0:86 0:138 ip community-list standard 1_87_137 permit 65000:1 0:87 0:137 ip community-list standard 1_88_136 permit 65000:1 0:88 0:136 ip community-list standard 1_89_135 permit 65000:1 0:89 0:135 ip community-list standard 1_90_134 permit 65000:1 0:90 0:134 ip community-list standard 1_91_133 permit 65000:1 0:91 0:133 ip community-list standard 1_92_132 permit 65000:1 0:92 0:132 ip community-list standard 1_93_131 permit 65000:1 0:93 0:131 ip community-list standard 1_94_130 permit 65000:1 0:94 0:130 ip community-list standard 1_95_129 permit 65000:1 0:95 0:129 ip community-list standard 1_96_128 permit 65000:1 0:96 0:128 ip community-list standard 1_97_127 permit 65000:1 0:97 0:127 ip community-list standard 1_98_126 permit 65000:1 0:98 0:126 ip community-list standard 1_99_125 permit 65000:1 0:99 0:125 ip community-list standard 1_100_124 permit 65000:1 0:100 0:124 ip community-list standard 1_101_123 permit 65000:1 0:101 0:123 ip community-list standard 1_102_122 permit 65000:1 0:102 0:122 ip community-list standard 1_103_121 permit 65000:1 0:103 0:121 ip community-list standard 1_104_120 permit 65000:1 0:104 0:120 ip community-list standard 1_105_119 permit 65000:1 0:105 0:119 ip community-list standard 1_106_118 permit 65000:1 0:106 0:118 ip community-list standard 1_107_117 permit 65000:1 0:107 0:117 ip community-list standard 1_108_116 permit 65000:1 0:108 0:116 ip community-list standard 1_109_115 permit 65000:1 0:109 0:115 ip community-list standard 1_110_114 permit 65000:1 0:110 0:114 ip community-list standard 1_111_113 permit 65000:1 0:111 0:113 ip community-list standard 1_112_112 permit 65000:1 0:112 0:112 ip community-list expanded c224 permit 1 ^65000:4_0:224_0:1$ ip community-list expanded c224 permit 2 ^65000:3_0:225_0:1$ ip community-list expanded c224 permit 3 ^65000:3_0:226_0:2$ ip community-list expanded c224 permit 4 ^65000:3_0:227_0:3$ ip community-list expanded c224 permit 5 ^65000:3_0:228_0:4$ ip community-list expanded c224 permit 6 ^65000:3_0:229_0:5$ ip community-list expanded c224 permit 7 ^65000:3_0:230_0:6$ ip community-list expanded c224 permit 8 ^65000:3_0:231_0:7$ ip community-list expanded c224 permit 9 ^65000:3_0:232_0:8$ ip community-list expanded c224 permit 10 ^65000:3_0:233_0:9$ ip community-list expanded c224 permit 11 ^65000:3_0:234_0:10$ ip community-list expanded c224 permit 12 ^65000:3_0:235_0:11$ ip community-list expanded c224 permit 13 ^65000:3_0:236_0:12$ ip community-list expanded c224 permit 14 ^65000:3_0:237_0:13$ ip community-list expanded c224 permit 15 ^65000:3_0:238_0:14$ ip community-list expanded c224 permit 16 ^65000:3_0:239_0:15$ ip community-list expanded c224 permit 17 ^65000:3_0:240_0:16$ ip community-list expanded c224 permit 18 ^65000:3_0:241_0:17$ ip community-list expanded c224 permit 19 ^65000:3_0:242_0:18$ ip community-list expanded c224 permit 20 ^65000:3_0:243_0:19$ ip community-list expanded c224 permit 21 ^65000:3_0:244_0:20$ ip community-list expanded c224 permit 22 ^65000:3_0:245_0:21$ ip community-list expanded c224 permit 23 ^65000:3_0:246_0:22$ ip community-list expanded c224 permit 24 ^65000:3_0:247_0:23$ ip community-list expanded c224 permit 25 ^65000:3_0:248_0:24$ ip community-list expanded c224 permit 26 ^65000:3_0:249_0:25$ ip community-list expanded c224 permit 27 ^65000:3_0:250_0:26$ ip community-list expanded c224 permit 28 ^65000:3_0:251_0:27$ ip community-list expanded c224 permit 29 ^65000:3_0:252_0:28$ ip community-list expanded c224 permit 30 ^65000:3_0:253_0:29$ ip community-list expanded c224 permit 31 ^65000:3_0:254_0:30$ ip community-list expanded c224 permit 32 ^65000:3_0:255_0:31$ ip community-list expanded c224 permit 33 ^65000:3_0:256_0:32$ route-map calculator permit 33827 match community 1_1_223 2_1_224 2_2_112 1_2_222 1_3_221 set community 0:224 route-map calculator permit 33828 match community 2_4_56 1_4_220 1_5_219 1_6_218 2_7_32 set community 0:224 route-map calculator permit 33829 match community 1_7_217 2_8_28 1_8_216 1_9_215 1_10_214 set community 0:224 route-map calculator permit 33830 match community 1_11_213 1_12_212 1_13_211 2_14_16 1_14_210 set community 0:224 route-map calculator permit 33831 match community 1_15_209 1_16_208 1_17_207 1_18_206 1_19_205 set community 0:224 route-map calculator permit 33832 match community 1_20_204 1_21_203 1_22_202 1_23_201 1_24_200 set community 0:224 route-map calculator permit 33833 match community 1_25_199 1_26_198 1_27_197 1_28_196 1_29_195 set community 0:224 route-map calculator permit 33834 match community 1_30_194 1_31_193 1_32_192 1_33_191 1_34_190 set community 0:224 route-map calculator permit 33835 match community 1_35_189 1_36_188 1_37_187 1_38_186 1_39_185 set community 0:224 route-map calculator permit 33836 match community 1_40_184 1_41_183 1_42_182 1_43_181 1_44_180 set community 0:224 route-map calculator permit 33837 match community 1_45_179 1_46_178 1_47_177 1_48_176 1_49_175 set community 0:224 route-map calculator permit 33838 match community 1_50_174 1_51_173 1_52_172 1_53_171 1_54_170 set community 0:224 route-map calculator permit 33839 match community 1_55_169 1_56_168 1_57_167 1_58_166 1_59_165 set community 0:224 route-map calculator permit 33840 match community 1_60_164 1_61_163 1_62_162 1_63_161 1_64_160 set community 0:224 route-map calculator permit 33841 match community 1_65_159 1_66_158 1_67_157 1_68_156 1_69_155 set community 0:224 route-map calculator permit 33842 match community 1_70_154 1_71_153 1_72_152 1_73_151 1_74_150 set community 0:224 route-map calculator permit 33843 match community 1_75_149 1_76_148 1_77_147 1_78_146 1_79_145 set community 0:224 route-map calculator permit 33844 match community 1_80_144 1_81_143 1_82_142 1_83_141 1_84_140 set community 0:224 route-map calculator permit 33845 match community 1_85_139 1_86_138 1_87_137 1_88_136 1_89_135 set community 0:224 route-map calculator permit 33846 match community 1_90_134 1_91_133 1_92_132 1_93_131 1_94_130 set community 0:224 route-map calculator permit 33847 match community 1_95_129 1_96_128 1_97_127 1_98_126 1_99_125 set community 0:224 route-map calculator permit 33848 match community 1_100_124 1_101_123 1_102_122 1_103_121 1_104_120 set community 0:224 route-map calculator permit 33849 match community 1_105_119 1_106_118 1_107_117 1_108_116 1_109_115 set community 0:224 route-map calculator permit 33850 match community 1_110_114 1_111_113 1_112_112 c4_224_1 c3_225_1 set community 0:224 route-map calculator permit 33851 match community c3_226_2 c3_227_3 c3_228_4 c3_229_5 c3_230_6 set community 0:224 route-map calculator permit 33852 match community c3_231_7 c3_232_8 c3_233_9 c3_234_10 c3_235_11 set community 0:224 route-map calculator permit 33853 match community c3_236_12 c3_237_13 c3_238_14 c3_239_15 c3_240_16 set community 0:224 route-map calculator permit 33854 match community c3_241_17 c3_242_18 c3_243_19 c3_244_20 c3_245_21 set community 0:224 route-map calculator permit 33855 match community c3_246_22 c3_247_23 c3_248_24 c3_249_25 c3_250_26 set community 0:224 route-map calculator permit 33856 match community c3_251_27 c3_252_28 c3_253_29 c3_254_30 c3_255_31 set community 0:224 route-map calculator permit 33857 match community c3_256_32 set community 0:224 ip community-list standard 2_200_227 permit 65000:2 0:200 0:227 route-map calculator permit 33858 match community 2_200_227 set community 0:45400 ip community-list standard 2_39_218 permit 65000:2 0:39 0:218 ip community-list standard 2_78_109 permit 65000:2 0:78 0:109 route-map calculator permit 33859 match community 2_39_218 2_78_109 set community 0:8502 ip community-list standard 1_1_215 permit 65000:1 0:1 0:215 ip community-list standard 2_1_216 permit 65000:2 0:1 0:216 ip community-list standard 2_2_108 permit 65000:2 0:2 0:108 ip community-list standard 1_2_214 permit 65000:1 0:2 0:214 ip community-list standard 2_3_72 permit 65000:2 0:3 0:72 ip community-list standard 1_3_213 permit 65000:1 0:3 0:213 ip community-list standard 2_4_54 permit 65000:2 0:4 0:54 ip community-list standard 1_4_212 permit 65000:1 0:4 0:212 ip community-list standard 1_5_211 permit 65000:1 0:5 0:211 ip community-list standard 2_6_36 permit 65000:2 0:6 0:36 ip community-list standard 1_6_210 permit 65000:1 0:6 0:210 ip community-list standard 1_7_209 permit 65000:1 0:7 0:209 ip community-list standard 2_8_27 permit 65000:2 0:8 0:27 ip community-list standard 1_8_208 permit 65000:1 0:8 0:208 ip community-list standard 2_9_24 permit 65000:2 0:9 0:24 ip community-list standard 1_9_207 permit 65000:1 0:9 0:207 ip community-list standard 1_10_206 permit 65000:1 0:10 0:206 ip community-list standard 1_11_205 permit 65000:1 0:11 0:205 ip community-list standard 2_12_18 permit 65000:2 0:12 0:18 ip community-list standard 1_12_204 permit 65000:1 0:12 0:204 ip community-list standard 1_13_203 permit 65000:1 0:13 0:203 ip community-list standard 1_14_202 permit 65000:1 0:14 0:202 ip community-list standard 1_15_201 permit 65000:1 0:15 0:201 ip community-list standard 1_16_200 permit 65000:1 0:16 0:200 ip community-list standard 1_17_199 permit 65000:1 0:17 0:199 ip community-list standard 1_18_198 permit 65000:1 0:18 0:198 ip community-list standard 1_19_197 permit 65000:1 0:19 0:197 ip community-list standard 1_20_196 permit 65000:1 0:20 0:196 ip community-list standard 1_21_195 permit 65000:1 0:21 0:195 ip community-list standard 1_22_194 permit 65000:1 0:22 0:194 ip community-list standard 1_23_193 permit 65000:1 0:23 0:193 ip community-list standard 1_24_192 permit 65000:1 0:24 0:192 ip community-list standard 1_25_191 permit 65000:1 0:25 0:191 ip community-list standard 1_26_190 permit 65000:1 0:26 0:190 ip community-list standard 1_27_189 permit 65000:1 0:27 0:189 ip community-list standard 1_28_188 permit 65000:1 0:28 0:188 ip community-list standard 1_29_187 permit 65000:1 0:29 0:187 ip community-list standard 1_30_186 permit 65000:1 0:30 0:186 ip community-list standard 1_31_185 permit 65000:1 0:31 0:185 ip community-list standard 1_32_184 permit 65000:1 0:32 0:184 ip community-list standard 1_33_183 permit 65000:1 0:33 0:183 ip community-list standard 1_34_182 permit 65000:1 0:34 0:182 ip community-list standard 1_35_181 permit 65000:1 0:35 0:181 ip community-list standard 1_36_180 permit 65000:1 0:36 0:180 ip community-list standard 1_37_179 permit 65000:1 0:37 0:179 ip community-list standard 1_38_178 permit 65000:1 0:38 0:178 ip community-list standard 1_39_177 permit 65000:1 0:39 0:177 ip community-list standard 1_40_176 permit 65000:1 0:40 0:176 ip community-list standard 1_41_175 permit 65000:1 0:41 0:175 ip community-list standard 1_42_174 permit 65000:1 0:42 0:174 ip community-list standard 1_43_173 permit 65000:1 0:43 0:173 ip community-list standard 1_44_172 permit 65000:1 0:44 0:172 ip community-list standard 1_45_171 permit 65000:1 0:45 0:171 ip community-list standard 1_46_170 permit 65000:1 0:46 0:170 ip community-list standard 1_47_169 permit 65000:1 0:47 0:169 ip community-list standard 1_48_168 permit 65000:1 0:48 0:168 ip community-list standard 1_49_167 permit 65000:1 0:49 0:167 ip community-list standard 1_50_166 permit 65000:1 0:50 0:166 ip community-list standard 1_51_165 permit 65000:1 0:51 0:165 ip community-list standard 1_52_164 permit 65000:1 0:52 0:164 ip community-list standard 1_53_163 permit 65000:1 0:53 0:163 ip community-list standard 1_54_162 permit 65000:1 0:54 0:162 ip community-list standard 1_55_161 permit 65000:1 0:55 0:161 ip community-list standard 1_56_160 permit 65000:1 0:56 0:160 ip community-list standard 1_57_159 permit 65000:1 0:57 0:159 ip community-list standard 1_58_158 permit 65000:1 0:58 0:158 ip community-list standard 1_59_157 permit 65000:1 0:59 0:157 ip community-list standard 1_60_156 permit 65000:1 0:60 0:156 ip community-list standard 1_61_155 permit 65000:1 0:61 0:155 ip community-list standard 1_62_154 permit 65000:1 0:62 0:154 ip community-list standard 1_63_153 permit 65000:1 0:63 0:153 ip community-list standard 1_64_152 permit 65000:1 0:64 0:152 ip community-list standard 1_65_151 permit 65000:1 0:65 0:151 ip community-list standard 1_66_150 permit 65000:1 0:66 0:150 ip community-list standard 1_67_149 permit 65000:1 0:67 0:149 ip community-list standard 1_68_148 permit 65000:1 0:68 0:148 ip community-list standard 1_69_147 permit 65000:1 0:69 0:147 ip community-list standard 1_70_146 permit 65000:1 0:70 0:146 ip community-list standard 1_71_145 permit 65000:1 0:71 0:145 ip community-list standard 1_72_144 permit 65000:1 0:72 0:144 ip community-list standard 1_73_143 permit 65000:1 0:73 0:143 ip community-list standard 1_74_142 permit 65000:1 0:74 0:142 ip community-list standard 1_75_141 permit 65000:1 0:75 0:141 ip community-list standard 1_76_140 permit 65000:1 0:76 0:140 ip community-list standard 1_77_139 permit 65000:1 0:77 0:139 ip community-list standard 1_78_138 permit 65000:1 0:78 0:138 ip community-list standard 1_79_137 permit 65000:1 0:79 0:137 ip community-list standard 1_80_136 permit 65000:1 0:80 0:136 ip community-list standard 1_81_135 permit 65000:1 0:81 0:135 ip community-list standard 1_82_134 permit 65000:1 0:82 0:134 ip community-list standard 1_83_133 permit 65000:1 0:83 0:133 ip community-list standard 1_84_132 permit 65000:1 0:84 0:132 ip community-list standard 1_85_131 permit 65000:1 0:85 0:131 ip community-list standard 1_86_130 permit 65000:1 0:86 0:130 ip community-list standard 1_87_129 permit 65000:1 0:87 0:129 ip community-list standard 1_88_128 permit 65000:1 0:88 0:128 ip community-list standard 1_89_127 permit 65000:1 0:89 0:127 ip community-list standard 1_90_126 permit 65000:1 0:90 0:126 ip community-list standard 1_91_125 permit 65000:1 0:91 0:125 ip community-list standard 1_92_124 permit 65000:1 0:92 0:124 ip community-list standard 1_93_123 permit 65000:1 0:93 0:123 ip community-list standard 1_94_122 permit 65000:1 0:94 0:122 ip community-list standard 1_95_121 permit 65000:1 0:95 0:121 ip community-list standard 1_96_120 permit 65000:1 0:96 0:120 ip community-list standard 1_97_119 permit 65000:1 0:97 0:119 ip community-list standard 1_98_118 permit 65000:1 0:98 0:118 ip community-list standard 1_99_117 permit 65000:1 0:99 0:117 ip community-list standard 1_100_116 permit 65000:1 0:100 0:116 ip community-list standard 1_101_115 permit 65000:1 0:101 0:115 ip community-list standard 1_102_114 permit 65000:1 0:102 0:114 ip community-list standard 1_103_113 permit 65000:1 0:103 0:113 ip community-list standard 1_104_112 permit 65000:1 0:104 0:112 ip community-list standard 1_105_111 permit 65000:1 0:105 0:111 ip community-list standard 1_106_110 permit 65000:1 0:106 0:110 ip community-list standard 1_107_109 permit 65000:1 0:107 0:109 ip community-list standard 1_108_108 permit 65000:1 0:108 0:108 ip community-list expanded c216 permit 1 ^65000:4_0:216_0:1$ ip community-list expanded c216 permit 2 ^65000:3_0:217_0:1$ ip community-list expanded c216 permit 3 ^65000:3_0:218_0:2$ ip community-list expanded c216 permit 4 ^65000:3_0:219_0:3$ ip community-list expanded c216 permit 5 ^65000:3_0:220_0:4$ ip community-list expanded c216 permit 6 ^65000:3_0:221_0:5$ ip community-list expanded c216 permit 7 ^65000:3_0:222_0:6$ ip community-list expanded c216 permit 8 ^65000:3_0:223_0:7$ ip community-list expanded c216 permit 9 ^65000:3_0:224_0:8$ ip community-list expanded c216 permit 10 ^65000:3_0:225_0:9$ ip community-list expanded c216 permit 11 ^65000:3_0:226_0:10$ ip community-list expanded c216 permit 12 ^65000:3_0:227_0:11$ ip community-list expanded c216 permit 13 ^65000:3_0:228_0:12$ ip community-list expanded c216 permit 14 ^65000:3_0:229_0:13$ ip community-list expanded c216 permit 15 ^65000:3_0:230_0:14$ ip community-list expanded c216 permit 16 ^65000:3_0:231_0:15$ ip community-list expanded c216 permit 17 ^65000:3_0:232_0:16$ ip community-list expanded c216 permit 18 ^65000:3_0:233_0:17$ ip community-list expanded c216 permit 19 ^65000:3_0:234_0:18$ ip community-list expanded c216 permit 20 ^65000:3_0:235_0:19$ ip community-list expanded c216 permit 21 ^65000:3_0:236_0:20$ ip community-list expanded c216 permit 22 ^65000:3_0:237_0:21$ ip community-list expanded c216 permit 23 ^65000:3_0:238_0:22$ ip community-list expanded c216 permit 24 ^65000:3_0:239_0:23$ ip community-list expanded c216 permit 25 ^65000:3_0:240_0:24$ ip community-list expanded c216 permit 26 ^65000:3_0:241_0:25$ ip community-list expanded c216 permit 27 ^65000:3_0:242_0:26$ ip community-list expanded c216 permit 28 ^65000:3_0:243_0:27$ ip community-list expanded c216 permit 29 ^65000:3_0:244_0:28$ ip community-list expanded c216 permit 30 ^65000:3_0:245_0:29$ ip community-list expanded c216 permit 31 ^65000:3_0:246_0:30$ ip community-list expanded c216 permit 32 ^65000:3_0:247_0:31$ ip community-list expanded c216 permit 33 ^65000:3_0:248_0:32$ ip community-list expanded c216 permit 34 ^65000:3_0:249_0:33$ ip community-list expanded c216 permit 35 ^65000:3_0:250_0:34$ ip community-list expanded c216 permit 36 ^65000:3_0:251_0:35$ ip community-list expanded c216 permit 37 ^65000:3_0:252_0:36$ ip community-list expanded c216 permit 38 ^65000:3_0:253_0:37$ ip community-list expanded c216 permit 39 ^65000:3_0:254_0:38$ ip community-list expanded c216 permit 40 ^65000:3_0:255_0:39$ ip community-list expanded c216 permit 41 ^65000:3_0:256_0:40$ route-map calculator permit 33860 match community 1_1_215 2_1_216 2_2_108 1_2_214 2_3_72 set community 0:216 route-map calculator permit 33861 match community 1_3_213 2_4_54 1_4_212 1_5_211 2_6_36 set community 0:216 route-map calculator permit 33862 match community 1_6_210 1_7_209 2_8_27 1_8_208 2_9_24 set community 0:216 route-map calculator permit 33863 match community 1_9_207 1_10_206 1_11_205 2_12_18 1_12_204 set community 0:216 route-map calculator permit 33864 match community 1_13_203 1_14_202 1_15_201 1_16_200 1_17_199 set community 0:216 route-map calculator permit 33865 match community 1_18_198 1_19_197 1_20_196 1_21_195 1_22_194 set community 0:216 route-map calculator permit 33866 match community 1_23_193 1_24_192 1_25_191 1_26_190 1_27_189 set community 0:216 route-map calculator permit 33867 match community 1_28_188 1_29_187 1_30_186 1_31_185 1_32_184 set community 0:216 route-map calculator permit 33868 match community 1_33_183 1_34_182 1_35_181 1_36_180 1_37_179 set community 0:216 route-map calculator permit 33869 match community 1_38_178 1_39_177 1_40_176 1_41_175 1_42_174 set community 0:216 route-map calculator permit 33870 match community 1_43_173 1_44_172 1_45_171 1_46_170 1_47_169 set community 0:216 route-map calculator permit 33871 match community 1_48_168 1_49_167 1_50_166 1_51_165 1_52_164 set community 0:216 route-map calculator permit 33872 match community 1_53_163 1_54_162 1_55_161 1_56_160 1_57_159 set community 0:216 route-map calculator permit 33873 match community 1_58_158 1_59_157 1_60_156 1_61_155 1_62_154 set community 0:216 route-map calculator permit 33874 match community 1_63_153 1_64_152 1_65_151 1_66_150 1_67_149 set community 0:216 route-map calculator permit 33875 match community 1_68_148 1_69_147 1_70_146 1_71_145 1_72_144 set community 0:216 route-map calculator permit 33876 match community 1_73_143 1_74_142 1_75_141 1_76_140 1_77_139 set community 0:216 route-map calculator permit 33877 match community 1_78_138 1_79_137 1_80_136 1_81_135 1_82_134 set community 0:216 route-map calculator permit 33878 match community 1_83_133 1_84_132 1_85_131 1_86_130 1_87_129 set community 0:216 route-map calculator permit 33879 match community 1_88_128 1_89_127 1_90_126 1_91_125 1_92_124 set community 0:216 route-map calculator permit 33880 match community 1_93_123 1_94_122 1_95_121 1_96_120 1_97_119 set community 0:216 route-map calculator permit 33881 match community 1_98_118 1_99_117 1_100_116 1_101_115 1_102_114 set community 0:216 route-map calculator permit 33882 match community 1_103_113 1_104_112 1_105_111 1_106_110 1_107_109 set community 0:216 route-map calculator permit 33883 match community 1_108_108 c4_216_1 c3_217_1 c3_218_2 c3_219_3 set community 0:216 route-map calculator permit 33884 match community c3_220_4 c3_221_5 c3_222_6 c3_223_7 c3_224_8 set community 0:216 route-map calculator permit 33885 match community c3_225_9 c3_226_10 c3_227_11 c3_228_12 c3_229_13 set community 0:216 route-map calculator permit 33886 match community c3_230_14 c3_231_15 c3_232_16 c3_233_17 c3_234_18 set community 0:216 route-map calculator permit 33887 match community c3_235_19 c3_236_20 c3_237_21 c3_238_22 c3_239_23 set community 0:216 route-map calculator permit 33888 match community c3_240_24 c3_241_25 c3_242_26 c3_243_27 c3_244_28 set community 0:216 route-map calculator permit 33889 match community c3_245_29 c3_246_30 c3_247_31 c3_248_32 c3_249_33 set community 0:216 route-map calculator permit 33890 match community c3_250_34 c3_251_35 c3_252_36 c3_253_37 c3_254_38 set community 0:216 route-map calculator permit 33891 match community c3_255_39 c3_256_40 set community 0:216 ip community-list standard 2_65_242 permit 65000:2 0:65 0:242 ip community-list standard 2_110_143 permit 65000:2 0:110 0:143 ip community-list standard 2_121_130 permit 65000:2 0:121 0:130 route-map calculator permit 33892 match community 2_65_242 2_110_143 2_121_130 set community 0:15730 ip community-list standard 1_243_256 permit 65000:1 0:243 0:256 ip community-list standard 1_244_255 permit 65000:1 0:244 0:255 ip community-list standard 1_245_254 permit 65000:1 0:245 0:254 ip community-list standard 1_246_253 permit 65000:1 0:246 0:253 ip community-list standard 1_247_252 permit 65000:1 0:247 0:252 ip community-list standard 1_248_251 permit 65000:1 0:248 0:251 ip community-list standard 1_249_250 permit 65000:1 0:249 0:250 route-map calculator permit 33893 match community 1_243_256 1_244_255 1_245_254 1_246_253 1_247_252 set community 0:499 route-map calculator permit 33894 match community 1_248_251 1_249_250 set community 0:499 ip community-list standard 2_46_134 permit 65000:2 0:46 0:134 ip community-list standard 2_67_92 permit 65000:2 0:67 0:92 route-map calculator permit 33895 match community 2_46_134 2_67_92 set community 0:6164 ip community-list standard 2_142_246 permit 65000:2 0:142 0:246 ip community-list standard 2_164_213 permit 65000:2 0:164 0:213 route-map calculator permit 33896 match community 2_142_246 2_164_213 set community 0:34932 ip community-list standard 2_195_249 permit 65000:2 0:195 0:249 route-map calculator permit 33897 match community 2_195_249 set community 0:48555 ip community-list standard 2_41_53 permit 65000:2 0:41 0:53 route-map calculator permit 33898 match community 2_41_53 set community 0:2173 ip community-list standard 2_162_191 permit 65000:2 0:162 0:191 route-map calculator permit 33899 match community 2_162_191 set community 0:30942 ip community-list standard 2_74_221 permit 65000:2 0:74 0:221 route-map calculator permit 33900 match community 2_74_221 set community 0:16354 ip community-list standard 2_218_221 permit 65000:2 0:218 0:221 route-map calculator permit 33901 match community 2_218_221 set community 0:48178 ip community-list standard 2_133_213 permit 65000:2 0:133 0:213 route-map calculator permit 33902 match community 2_133_213 set community 0:28329 ip community-list standard 2_167_229 permit 65000:2 0:167 0:229 route-map calculator permit 33903 match community 2_167_229 set community 0:38243 ip community-list standard 2_39_178 permit 65000:2 0:39 0:178 ip community-list standard 2_78_89 permit 65000:2 0:78 0:89 route-map calculator permit 33904 match community 2_39_178 2_78_89 set community 0:6942 ip community-list standard 2_32_237 permit 65000:2 0:32 0:237 ip community-list standard 2_48_158 permit 65000:2 0:48 0:158 ip community-list standard 2_79_96 permit 65000:2 0:79 0:96 route-map calculator permit 33905 match community 2_32_237 2_48_158 2_79_96 set community 0:7584 ip community-list standard 2_59_133 permit 65000:2 0:59 0:133 route-map calculator permit 33906 match community 2_59_133 set community 0:7847 ip community-list standard 2_246_253 permit 65000:2 0:246 0:253 route-map calculator permit 33907 match community 2_246_253 set community 0:62238 ip community-list standard 2_75_225 permit 65000:2 0:75 0:225 ip community-list standard 2_125_135 permit 65000:2 0:125 0:135 route-map calculator permit 33908 match community 2_75_225 2_125_135 set community 0:16875 ip community-list standard 2_186_248 permit 65000:2 0:186 0:248 route-map calculator permit 33909 match community 2_186_248 set community 0:46128 ip community-list standard 2_236_249 permit 65000:2 0:236 0:249 route-map calculator permit 33910 match community 2_236_249 set community 0:58764 ip community-list standard 2_144_212 permit 65000:2 0:144 0:212 ip community-list standard 2_159_192 permit 65000:2 0:159 0:192 route-map calculator permit 33911 match community 2_144_212 2_159_192 set community 0:30528 ip community-list standard 2_56_229 permit 65000:2 0:56 0:229 route-map calculator permit 33912 match community 2_56_229 set community 0:12824 ip community-list standard 2_145_158 permit 65000:2 0:145 0:158 route-map calculator permit 33913 match community 2_145_158 set community 0:22910 ip community-list standard 2_184_233 permit 65000:2 0:184 0:233 route-map calculator permit 33914 match community 2_184_233 set community 0:42872 ip community-list standard 2_5_59 permit 65000:2 0:5 0:59 ip community-list standard 1_39_256 permit 65000:1 0:39 0:256 ip community-list standard 1_40_255 permit 65000:1 0:40 0:255 ip community-list standard 1_41_254 permit 65000:1 0:41 0:254 ip community-list standard 1_42_253 permit 65000:1 0:42 0:253 ip community-list standard 1_43_252 permit 65000:1 0:43 0:252 ip community-list standard 1_44_251 permit 65000:1 0:44 0:251 ip community-list standard 1_45_250 permit 65000:1 0:45 0:250 ip community-list standard 1_46_249 permit 65000:1 0:46 0:249 ip community-list standard 1_47_248 permit 65000:1 0:47 0:248 ip community-list standard 1_48_247 permit 65000:1 0:48 0:247 ip community-list standard 1_49_246 permit 65000:1 0:49 0:246 ip community-list standard 1_50_245 permit 65000:1 0:50 0:245 ip community-list standard 1_51_244 permit 65000:1 0:51 0:244 ip community-list standard 1_52_243 permit 65000:1 0:52 0:243 ip community-list standard 1_53_242 permit 65000:1 0:53 0:242 ip community-list standard 1_54_241 permit 65000:1 0:54 0:241 ip community-list standard 1_55_240 permit 65000:1 0:55 0:240 ip community-list standard 1_56_239 permit 65000:1 0:56 0:239 ip community-list standard 1_57_238 permit 65000:1 0:57 0:238 ip community-list standard 1_58_237 permit 65000:1 0:58 0:237 ip community-list standard 1_59_236 permit 65000:1 0:59 0:236 ip community-list standard 1_60_235 permit 65000:1 0:60 0:235 ip community-list standard 1_61_234 permit 65000:1 0:61 0:234 ip community-list standard 1_62_233 permit 65000:1 0:62 0:233 ip community-list standard 1_63_232 permit 65000:1 0:63 0:232 ip community-list standard 1_64_231 permit 65000:1 0:64 0:231 ip community-list standard 1_65_230 permit 65000:1 0:65 0:230 ip community-list standard 1_66_229 permit 65000:1 0:66 0:229 ip community-list standard 1_67_228 permit 65000:1 0:67 0:228 ip community-list standard 1_68_227 permit 65000:1 0:68 0:227 ip community-list standard 1_69_226 permit 65000:1 0:69 0:226 ip community-list standard 1_70_225 permit 65000:1 0:70 0:225 ip community-list standard 1_71_224 permit 65000:1 0:71 0:224 ip community-list standard 1_72_223 permit 65000:1 0:72 0:223 ip community-list standard 1_73_222 permit 65000:1 0:73 0:222 ip community-list standard 1_74_221 permit 65000:1 0:74 0:221 ip community-list standard 1_75_220 permit 65000:1 0:75 0:220 ip community-list standard 1_76_219 permit 65000:1 0:76 0:219 ip community-list standard 1_77_218 permit 65000:1 0:77 0:218 ip community-list standard 1_78_217 permit 65000:1 0:78 0:217 ip community-list standard 1_79_216 permit 65000:1 0:79 0:216 ip community-list standard 1_80_215 permit 65000:1 0:80 0:215 ip community-list standard 1_81_214 permit 65000:1 0:81 0:214 ip community-list standard 1_82_213 permit 65000:1 0:82 0:213 ip community-list standard 1_83_212 permit 65000:1 0:83 0:212 ip community-list standard 1_84_211 permit 65000:1 0:84 0:211 ip community-list standard 1_85_210 permit 65000:1 0:85 0:210 ip community-list standard 1_86_209 permit 65000:1 0:86 0:209 ip community-list standard 1_87_208 permit 65000:1 0:87 0:208 ip community-list standard 1_88_207 permit 65000:1 0:88 0:207 ip community-list standard 1_89_206 permit 65000:1 0:89 0:206 ip community-list standard 1_90_205 permit 65000:1 0:90 0:205 ip community-list standard 1_91_204 permit 65000:1 0:91 0:204 ip community-list standard 1_92_203 permit 65000:1 0:92 0:203 ip community-list standard 1_93_202 permit 65000:1 0:93 0:202 ip community-list standard 1_94_201 permit 65000:1 0:94 0:201 ip community-list standard 1_95_200 permit 65000:1 0:95 0:200 ip community-list standard 1_96_199 permit 65000:1 0:96 0:199 ip community-list standard 1_97_198 permit 65000:1 0:97 0:198 ip community-list standard 1_98_197 permit 65000:1 0:98 0:197 ip community-list standard 1_99_196 permit 65000:1 0:99 0:196 ip community-list standard 1_100_195 permit 65000:1 0:100 0:195 ip community-list standard 1_101_194 permit 65000:1 0:101 0:194 ip community-list standard 1_102_193 permit 65000:1 0:102 0:193 ip community-list standard 1_103_192 permit 65000:1 0:103 0:192 ip community-list standard 1_104_191 permit 65000:1 0:104 0:191 ip community-list standard 1_105_190 permit 65000:1 0:105 0:190 ip community-list standard 1_106_189 permit 65000:1 0:106 0:189 ip community-list standard 1_107_188 permit 65000:1 0:107 0:188 ip community-list standard 1_108_187 permit 65000:1 0:108 0:187 ip community-list standard 1_109_186 permit 65000:1 0:109 0:186 ip community-list standard 1_110_185 permit 65000:1 0:110 0:185 ip community-list standard 1_111_184 permit 65000:1 0:111 0:184 ip community-list standard 1_112_183 permit 65000:1 0:112 0:183 ip community-list standard 1_113_182 permit 65000:1 0:113 0:182 ip community-list standard 1_114_181 permit 65000:1 0:114 0:181 ip community-list standard 1_115_180 permit 65000:1 0:115 0:180 ip community-list standard 1_116_179 permit 65000:1 0:116 0:179 ip community-list standard 1_117_178 permit 65000:1 0:117 0:178 ip community-list standard 1_118_177 permit 65000:1 0:118 0:177 ip community-list standard 1_119_176 permit 65000:1 0:119 0:176 ip community-list standard 1_120_175 permit 65000:1 0:120 0:175 ip community-list standard 1_121_174 permit 65000:1 0:121 0:174 ip community-list standard 1_122_173 permit 65000:1 0:122 0:173 ip community-list standard 1_123_172 permit 65000:1 0:123 0:172 ip community-list standard 1_124_171 permit 65000:1 0:124 0:171 ip community-list standard 1_125_170 permit 65000:1 0:125 0:170 ip community-list standard 1_126_169 permit 65000:1 0:126 0:169 ip community-list standard 1_127_168 permit 65000:1 0:127 0:168 ip community-list standard 1_128_167 permit 65000:1 0:128 0:167 ip community-list standard 1_129_166 permit 65000:1 0:129 0:166 ip community-list standard 1_130_165 permit 65000:1 0:130 0:165 ip community-list standard 1_131_164 permit 65000:1 0:131 0:164 ip community-list standard 1_132_163 permit 65000:1 0:132 0:163 ip community-list standard 1_133_162 permit 65000:1 0:133 0:162 ip community-list standard 1_134_161 permit 65000:1 0:134 0:161 ip community-list standard 1_135_160 permit 65000:1 0:135 0:160 ip community-list standard 1_136_159 permit 65000:1 0:136 0:159 ip community-list standard 1_137_158 permit 65000:1 0:137 0:158 ip community-list standard 1_138_157 permit 65000:1 0:138 0:157 ip community-list standard 1_139_156 permit 65000:1 0:139 0:156 ip community-list standard 1_140_155 permit 65000:1 0:140 0:155 ip community-list standard 1_141_154 permit 65000:1 0:141 0:154 ip community-list standard 1_142_153 permit 65000:1 0:142 0:153 ip community-list standard 1_143_152 permit 65000:1 0:143 0:152 ip community-list standard 1_144_151 permit 65000:1 0:144 0:151 ip community-list standard 1_145_150 permit 65000:1 0:145 0:150 ip community-list standard 1_146_149 permit 65000:1 0:146 0:149 ip community-list standard 1_147_148 permit 65000:1 0:147 0:148 route-map calculator permit 33915 match community 2_5_59 1_39_256 1_40_255 1_41_254 1_42_253 set community 0:295 route-map calculator permit 33916 match community 1_43_252 1_44_251 1_45_250 1_46_249 1_47_248 set community 0:295 route-map calculator permit 33917 match community 1_48_247 1_49_246 1_50_245 1_51_244 1_52_243 set community 0:295 route-map calculator permit 33918 match community 1_53_242 1_54_241 1_55_240 1_56_239 1_57_238 set community 0:295 route-map calculator permit 33919 match community 1_58_237 1_59_236 1_60_235 1_61_234 1_62_233 set community 0:295 route-map calculator permit 33920 match community 1_63_232 1_64_231 1_65_230 1_66_229 1_67_228 set community 0:295 route-map calculator permit 33921 match community 1_68_227 1_69_226 1_70_225 1_71_224 1_72_223 set community 0:295 route-map calculator permit 33922 match community 1_73_222 1_74_221 1_75_220 1_76_219 1_77_218 set community 0:295 route-map calculator permit 33923 match community 1_78_217 1_79_216 1_80_215 1_81_214 1_82_213 set community 0:295 route-map calculator permit 33924 match community 1_83_212 1_84_211 1_85_210 1_86_209 1_87_208 set community 0:295 route-map calculator permit 33925 match community 1_88_207 1_89_206 1_90_205 1_91_204 1_92_203 set community 0:295 route-map calculator permit 33926 match community 1_93_202 1_94_201 1_95_200 1_96_199 1_97_198 set community 0:295 route-map calculator permit 33927 match community 1_98_197 1_99_196 1_100_195 1_101_194 1_102_193 set community 0:295 route-map calculator permit 33928 match community 1_103_192 1_104_191 1_105_190 1_106_189 1_107_188 set community 0:295 route-map calculator permit 33929 match community 1_108_187 1_109_186 1_110_185 1_111_184 1_112_183 set community 0:295 route-map calculator permit 33930 match community 1_113_182 1_114_181 1_115_180 1_116_179 1_117_178 set community 0:295 route-map calculator permit 33931 match community 1_118_177 1_119_176 1_120_175 1_121_174 1_122_173 set community 0:295 route-map calculator permit 33932 match community 1_123_172 1_124_171 1_125_170 1_126_169 1_127_168 set community 0:295 route-map calculator permit 33933 match community 1_128_167 1_129_166 1_130_165 1_131_164 1_132_163 set community 0:295 route-map calculator permit 33934 match community 1_133_162 1_134_161 1_135_160 1_136_159 1_137_158 set community 0:295 route-map calculator permit 33935 match community 1_138_157 1_139_156 1_140_155 1_141_154 1_142_153 set community 0:295 route-map calculator permit 33936 match community 1_143_152 1_144_151 1_145_150 1_146_149 1_147_148 set community 0:295 ip community-list standard 2_47_161 permit 65000:2 0:47 0:161 route-map calculator permit 33937 match community 2_47_161 set community 0:7567 ip community-list standard 2_153_251 permit 65000:2 0:153 0:251 route-map calculator permit 33938 match community 2_153_251 set community 0:38403 ip community-list standard 2_209_218 permit 65000:2 0:209 0:218 route-map calculator permit 33939 match community 2_209_218 set community 0:45562 ip community-list standard 2_49_163 permit 65000:2 0:49 0:163 route-map calculator permit 33940 match community 2_49_163 set community 0:7987 ip community-list standard 2_183_199 permit 65000:2 0:183 0:199 route-map calculator permit 33941 match community 2_183_199 set community 0:36417 ip community-list standard 2_183_249 permit 65000:2 0:183 0:249 route-map calculator permit 33942 match community 2_183_249 set community 0:45567 ip community-list standard 2_75_113 permit 65000:2 0:75 0:113 route-map calculator permit 33943 match community 2_75_113 set community 0:8475 ip community-list standard 2_195_247 permit 65000:2 0:195 0:247 route-map calculator permit 33944 match community 2_195_247 set community 0:48165 ip community-list standard 2_93_228 permit 65000:2 0:93 0:228 ip community-list standard 2_114_186 permit 65000:2 0:114 0:186 ip community-list standard 2_124_171 permit 65000:2 0:124 0:171 route-map calculator permit 33945 match community 2_93_228 2_114_186 2_124_171 set community 0:21204 ip community-list standard 2_163_166 permit 65000:2 0:163 0:166 route-map calculator permit 33946 match community 2_163_166 set community 0:27058 ip community-list standard 2_49_244 permit 65000:2 0:49 0:244 ip community-list standard 2_61_196 permit 65000:2 0:61 0:196 ip community-list standard 2_98_122 permit 65000:2 0:98 0:122 route-map calculator permit 33947 match community 2_49_244 2_61_196 2_98_122 set community 0:11956 ip community-list standard 2_85_248 permit 65000:2 0:85 0:248 ip community-list standard 2_124_170 permit 65000:2 0:124 0:170 ip community-list standard 2_136_155 permit 65000:2 0:136 0:155 route-map calculator permit 33948 match community 2_85_248 2_124_170 2_136_155 set community 0:21080 ip community-list standard 2_41_205 permit 65000:2 0:41 0:205 route-map calculator permit 33949 match community 2_41_205 set community 0:8405 ip community-list standard 2_45_219 permit 65000:2 0:45 0:219 ip community-list standard 2_73_135 permit 65000:2 0:73 0:135 route-map calculator permit 33950 match community 2_45_219 2_73_135 set community 0:9855 ip community-list standard 2_125_195 permit 65000:2 0:125 0:195 route-map calculator permit 33951 match community 2_125_195 set community 0:24375 ip community-list standard 2_132_218 permit 65000:2 0:132 0:218 route-map calculator permit 33952 match community 2_132_218 set community 0:28776 ip community-list standard 2_60_211 permit 65000:2 0:60 0:211 route-map calculator permit 33953 match community 2_60_211 set community 0:12660 ip community-list standard 2_132_242 permit 65000:2 0:132 0:242 route-map calculator permit 33954 match community 2_132_242 set community 0:31944 ip community-list standard 2_55_79 permit 65000:2 0:55 0:79 route-map calculator permit 33955 match community 2_55_79 set community 0:4345 ip community-list standard 2_16_256 permit 65000:2 0:16 0:256 ip community-list standard 2_32_128 permit 65000:2 0:32 0:128 ip community-list standard 2_64_64 permit 65000:2 0:64 0:64 route-map calculator permit 33956 match community 2_16_256 2_32_128 2_64_64 set community 0:4096 ip community-list standard 2_58_185 permit 65000:2 0:58 0:185 ip community-list standard 2_74_145 permit 65000:2 0:74 0:145 route-map calculator permit 33957 match community 2_58_185 2_74_145 set community 0:10730 ip community-list standard 2_114_171 permit 65000:2 0:114 0:171 route-map calculator permit 33958 match community 2_114_171 set community 0:19494 ip community-list standard 2_23_236 permit 65000:2 0:23 0:236 ip community-list standard 2_46_118 permit 65000:2 0:46 0:118 ip community-list standard 2_59_92 permit 65000:2 0:59 0:92 route-map calculator permit 33959 match community 2_23_236 2_46_118 2_59_92 set community 0:5428 ip community-list standard 1_1_6 permit 65000:1 0:1 0:6 ip community-list standard 2_1_7 permit 65000:2 0:1 0:7 ip community-list standard 1_2_5 permit 65000:1 0:2 0:5 ip community-list standard 1_3_4 permit 65000:1 0:3 0:4 ip community-list expanded c7 permit 1 ^65000:4_0:7_0:1$ ip community-list expanded c7 permit 2 ^65000:3_0:8_0:1$ ip community-list expanded c7 permit 3 ^65000:3_0:9_0:2$ ip community-list expanded c7 permit 4 ^65000:3_0:10_0:3$ ip community-list expanded c7 permit 5 ^65000:3_0:11_0:4$ ip community-list expanded c7 permit 6 ^65000:3_0:12_0:5$ ip community-list expanded c7 permit 7 ^65000:3_0:13_0:6$ ip community-list expanded c7 permit 8 ^65000:4_0:14_0:2$ ip community-list expanded c7 permit 9 ^65000:3_0:14_0:7$ ip community-list expanded c7 permit 10 ^65000:4_0:15_0:2$ ip community-list expanded c7 permit 11 ^65000:3_0:15_0:8$ ip community-list expanded c7 permit 12 ^65000:3_0:16_0:9$ ip community-list expanded c7 permit 13 ^65000:3_0:17_0:10$ ip community-list expanded c7 permit 14 ^65000:3_0:18_0:11$ ip community-list expanded c7 permit 15 ^65000:3_0:19_0:12$ ip community-list expanded c7 permit 16 ^65000:3_0:20_0:13$ ip community-list expanded c7 permit 17 ^65000:4_0:21_0:3$ ip community-list expanded c7 permit 18 ^65000:3_0:21_0:14$ ip community-list expanded c7 permit 19 ^65000:4_0:22_0:3$ ip community-list expanded c7 permit 20 ^65000:3_0:22_0:15$ ip community-list expanded c7 permit 21 ^65000:4_0:23_0:3$ ip community-list expanded c7 permit 22 ^65000:3_0:23_0:16$ ip community-list expanded c7 permit 23 ^65000:3_0:24_0:17$ ip community-list expanded c7 permit 24 ^65000:3_0:25_0:18$ ip community-list expanded c7 permit 25 ^65000:3_0:26_0:19$ ip community-list expanded c7 permit 26 ^65000:3_0:27_0:20$ ip community-list expanded c7 permit 27 ^65000:4_0:28_0:4$ ip community-list expanded c7 permit 28 ^65000:3_0:28_0:21$ ip community-list expanded c7 permit 29 ^65000:4_0:29_0:4$ ip community-list expanded c7 permit 30 ^65000:3_0:29_0:22$ ip community-list expanded c7 permit 31 ^65000:4_0:30_0:4$ ip community-list expanded c7 permit 32 ^65000:3_0:30_0:23$ ip community-list expanded c7 permit 33 ^65000:4_0:31_0:4$ ip community-list expanded c7 permit 34 ^65000:3_0:31_0:24$ ip community-list expanded c7 permit 35 ^65000:3_0:32_0:25$ ip community-list expanded c7 permit 36 ^65000:3_0:33_0:26$ ip community-list expanded c7 permit 37 ^65000:3_0:34_0:27$ ip community-list expanded c7 permit 38 ^65000:4_0:35_0:5$ ip community-list expanded c7 permit 39 ^65000:3_0:35_0:28$ ip community-list expanded c7 permit 40 ^65000:4_0:36_0:5$ ip community-list expanded c7 permit 41 ^65000:3_0:36_0:29$ ip community-list expanded c7 permit 42 ^65000:4_0:37_0:5$ ip community-list expanded c7 permit 43 ^65000:3_0:37_0:30$ ip community-list expanded c7 permit 44 ^65000:4_0:38_0:5$ ip community-list expanded c7 permit 45 ^65000:3_0:38_0:31$ ip community-list expanded c7 permit 46 ^65000:4_0:39_0:5$ ip community-list expanded c7 permit 47 ^65000:3_0:39_0:32$ ip community-list expanded c7 permit 48 ^65000:3_0:40_0:33$ ip community-list expanded c7 permit 49 ^65000:3_0:41_0:34$ ip community-list expanded c7 permit 50 ^65000:4_0:42_0:6$ ip community-list expanded c7 permit 51 ^65000:3_0:42_0:35$ ip community-list expanded c7 permit 52 ^65000:4_0:43_0:6$ ip community-list expanded c7 permit 53 ^65000:3_0:43_0:36$ ip community-list expanded c7 permit 54 ^65000:4_0:44_0:6$ ip community-list expanded c7 permit 55 ^65000:3_0:44_0:37$ ip community-list expanded c7 permit 56 ^65000:4_0:45_0:6$ ip community-list expanded c7 permit 57 ^65000:3_0:45_0:38$ ip community-list expanded c7 permit 58 ^65000:4_0:46_0:6$ ip community-list expanded c7 permit 59 ^65000:3_0:46_0:39$ ip community-list expanded c7 permit 60 ^65000:4_0:47_0:6$ ip community-list expanded c7 permit 61 ^65000:3_0:47_0:40$ ip community-list expanded c7 permit 62 ^65000:3_0:48_0:41$ ip community-list expanded c7 permit 63 ^65000:4_0:49_0:7$ ip community-list expanded c7 permit 64 ^65000:3_0:49_0:42$ ip community-list expanded c7 permit 65 ^65000:4_0:50_0:7$ ip community-list expanded c7 permit 66 ^65000:3_0:50_0:43$ ip community-list expanded c7 permit 67 ^65000:4_0:51_0:7$ ip community-list expanded c7 permit 68 ^65000:3_0:51_0:44$ ip community-list expanded c7 permit 69 ^65000:4_0:52_0:7$ ip community-list expanded c7 permit 70 ^65000:3_0:52_0:45$ ip community-list expanded c7 permit 71 ^65000:4_0:53_0:7$ ip community-list expanded c7 permit 72 ^65000:3_0:53_0:46$ ip community-list expanded c7 permit 73 ^65000:4_0:54_0:7$ ip community-list expanded c7 permit 74 ^65000:3_0:54_0:47$ ip community-list expanded c7 permit 75 ^65000:4_0:55_0:7$ ip community-list expanded c7 permit 76 ^65000:3_0:55_0:48$ ip community-list expanded c7 permit 77 ^65000:4_0:56_0:8$ ip community-list expanded c7 permit 78 ^65000:3_0:56_0:49$ ip community-list expanded c7 permit 79 ^65000:4_0:57_0:8$ ip community-list expanded c7 permit 80 ^65000:3_0:57_0:50$ ip community-list expanded c7 permit 81 ^65000:4_0:58_0:8$ ip community-list expanded c7 permit 82 ^65000:3_0:58_0:51$ ip community-list expanded c7 permit 83 ^65000:4_0:59_0:8$ ip community-list expanded c7 permit 84 ^65000:3_0:59_0:52$ ip community-list expanded c7 permit 85 ^65000:4_0:60_0:8$ ip community-list expanded c7 permit 86 ^65000:3_0:60_0:53$ ip community-list expanded c7 permit 87 ^65000:4_0:61_0:8$ ip community-list expanded c7 permit 88 ^65000:3_0:61_0:54$ ip community-list expanded c7 permit 89 ^65000:4_0:62_0:8$ ip community-list expanded c7 permit 90 ^65000:3_0:62_0:55$ ip community-list expanded c7 permit 91 ^65000:4_0:63_0:8$ ip community-list expanded c7 permit 92 ^65000:4_0:63_0:9$ ip community-list expanded c7 permit 93 ^65000:3_0:63_0:56$ ip community-list expanded c7 permit 94 ^65000:4_0:64_0:9$ ip community-list expanded c7 permit 95 ^65000:3_0:64_0:57$ ip community-list expanded c7 permit 96 ^65000:4_0:65_0:9$ ip community-list expanded c7 permit 97 ^65000:3_0:65_0:58$ ip community-list expanded c7 permit 98 ^65000:4_0:66_0:9$ ip community-list expanded c7 permit 99 ^65000:3_0:66_0:59$ ip community-list expanded c7 permit 100 ^65000:4_0:67_0:9$ ip community-list expanded c7 permit 101 ^65000:3_0:67_0:60$ ip community-list expanded c7 permit 102 ^65000:4_0:68_0:9$ ip community-list expanded c7 permit 103 ^65000:3_0:68_0:61$ ip community-list expanded c7 permit 104 ^65000:4_0:69_0:9$ ip community-list expanded c7 permit 105 ^65000:3_0:69_0:62$ ip community-list expanded c7 permit 106 ^65000:4_0:70_0:9$ ip community-list expanded c7 permit 107 ^65000:4_0:70_0:10$ ip community-list expanded c7 permit 108 ^65000:3_0:70_0:63$ ip community-list expanded c7 permit 109 ^65000:4_0:71_0:9$ ip community-list expanded c7 permit 110 ^65000:4_0:71_0:10$ ip community-list expanded c7 permit 111 ^65000:3_0:71_0:64$ ip community-list expanded c7 permit 112 ^65000:4_0:72_0:10$ ip community-list expanded c7 permit 113 ^65000:3_0:72_0:65$ ip community-list expanded c7 permit 114 ^65000:4_0:73_0:10$ ip community-list expanded c7 permit 115 ^65000:3_0:73_0:66$ ip community-list expanded c7 permit 116 ^65000:4_0:74_0:10$ ip community-list expanded c7 permit 117 ^65000:3_0:74_0:67$ ip community-list expanded c7 permit 118 ^65000:4_0:75_0:10$ ip community-list expanded c7 permit 119 ^65000:3_0:75_0:68$ ip community-list expanded c7 permit 120 ^65000:4_0:76_0:10$ ip community-list expanded c7 permit 121 ^65000:3_0:76_0:69$ ip community-list expanded c7 permit 122 ^65000:4_0:77_0:10$ ip community-list expanded c7 permit 123 ^65000:4_0:77_0:11$ ip community-list expanded c7 permit 124 ^65000:3_0:77_0:70$ ip community-list expanded c7 permit 125 ^65000:4_0:78_0:10$ ip community-list expanded c7 permit 126 ^65000:4_0:78_0:11$ ip community-list expanded c7 permit 127 ^65000:3_0:78_0:71$ ip community-list expanded c7 permit 128 ^65000:4_0:79_0:10$ ip community-list expanded c7 permit 129 ^65000:4_0:79_0:11$ ip community-list expanded c7 permit 130 ^65000:3_0:79_0:72$ ip community-list expanded c7 permit 131 ^65000:4_0:80_0:11$ ip community-list expanded c7 permit 132 ^65000:3_0:80_0:73$ ip community-list expanded c7 permit 133 ^65000:4_0:81_0:11$ ip community-list expanded c7 permit 134 ^65000:3_0:81_0:74$ ip community-list expanded c7 permit 135 ^65000:4_0:82_0:11$ ip community-list expanded c7 permit 136 ^65000:3_0:82_0:75$ ip community-list expanded c7 permit 137 ^65000:4_0:83_0:11$ ip community-list expanded c7 permit 138 ^65000:3_0:83_0:76$ ip community-list expanded c7 permit 139 ^65000:4_0:84_0:11$ ip community-list expanded c7 permit 140 ^65000:4_0:84_0:12$ ip community-list expanded c7 permit 141 ^65000:3_0:84_0:77$ ip community-list expanded c7 permit 142 ^65000:4_0:85_0:11$ ip community-list expanded c7 permit 143 ^65000:4_0:85_0:12$ ip community-list expanded c7 permit 144 ^65000:3_0:85_0:78$ ip community-list expanded c7 permit 145 ^65000:4_0:86_0:11$ ip community-list expanded c7 permit 146 ^65000:4_0:86_0:12$ ip community-list expanded c7 permit 147 ^65000:3_0:86_0:79$ ip community-list expanded c7 permit 148 ^65000:4_0:87_0:11$ ip community-list expanded c7 permit 149 ^65000:4_0:87_0:12$ ip community-list expanded c7 permit 150 ^65000:3_0:87_0:80$ ip community-list expanded c7 permit 151 ^65000:4_0:88_0:12$ ip community-list expanded c7 permit 152 ^65000:3_0:88_0:81$ ip community-list expanded c7 permit 153 ^65000:4_0:89_0:12$ ip community-list expanded c7 permit 154 ^65000:3_0:89_0:82$ ip community-list expanded c7 permit 155 ^65000:4_0:90_0:12$ ip community-list expanded c7 permit 156 ^65000:3_0:90_0:83$ ip community-list expanded c7 permit 157 ^65000:4_0:91_0:12$ ip community-list expanded c7 permit 158 ^65000:4_0:91_0:13$ ip community-list expanded c7 permit 159 ^65000:3_0:91_0:84$ ip community-list expanded c7 permit 160 ^65000:4_0:92_0:12$ ip community-list expanded c7 permit 161 ^65000:4_0:92_0:13$ ip community-list expanded c7 permit 162 ^65000:3_0:92_0:85$ ip community-list expanded c7 permit 163 ^65000:4_0:93_0:12$ ip community-list expanded c7 permit 164 ^65000:4_0:93_0:13$ ip community-list expanded c7 permit 165 ^65000:3_0:93_0:86$ ip community-list expanded c7 permit 166 ^65000:4_0:94_0:12$ ip community-list expanded c7 permit 167 ^65000:4_0:94_0:13$ ip community-list expanded c7 permit 168 ^65000:3_0:94_0:87$ ip community-list expanded c7 permit 169 ^65000:4_0:95_0:12$ ip community-list expanded c7 permit 170 ^65000:4_0:95_0:13$ ip community-list expanded c7 permit 171 ^65000:3_0:95_0:88$ ip community-list expanded c7 permit 172 ^65000:4_0:96_0:13$ ip community-list expanded c7 permit 173 ^65000:3_0:96_0:89$ ip community-list expanded c7 permit 174 ^65000:4_0:97_0:13$ ip community-list expanded c7 permit 175 ^65000:3_0:97_0:90$ ip community-list expanded c7 permit 176 ^65000:4_0:98_0:13$ ip community-list expanded c7 permit 177 ^65000:4_0:98_0:14$ ip community-list expanded c7 permit 178 ^65000:3_0:98_0:91$ ip community-list expanded c7 permit 179 ^65000:4_0:99_0:13$ ip community-list expanded c7 permit 180 ^65000:4_0:99_0:14$ ip community-list expanded c7 permit 181 ^65000:3_0:99_0:92$ ip community-list expanded c7 permit 182 ^65000:4_0:100_0:13$ ip community-list expanded c7 permit 183 ^65000:4_0:100_0:14$ ip community-list expanded c7 permit 184 ^65000:3_0:100_0:93$ ip community-list expanded c7 permit 185 ^65000:4_0:101_0:13$ ip community-list expanded c7 permit 186 ^65000:4_0:101_0:14$ ip community-list expanded c7 permit 187 ^65000:3_0:101_0:94$ ip community-list expanded c7 permit 188 ^65000:4_0:102_0:13$ ip community-list expanded c7 permit 189 ^65000:4_0:102_0:14$ ip community-list expanded c7 permit 190 ^65000:3_0:102_0:95$ ip community-list expanded c7 permit 191 ^65000:4_0:103_0:13$ ip community-list expanded c7 permit 192 ^65000:4_0:103_0:14$ ip community-list expanded c7 permit 193 ^65000:3_0:103_0:96$ ip community-list expanded c7 permit 194 ^65000:4_0:104_0:14$ ip community-list expanded c7 permit 195 ^65000:3_0:104_0:97$ ip community-list expanded c7 permit 196 ^65000:4_0:105_0:14$ ip community-list expanded c7 permit 197 ^65000:4_0:105_0:15$ ip community-list expanded c7 permit 198 ^65000:3_0:105_0:98$ ip community-list expanded c7 permit 199 ^65000:4_0:106_0:14$ ip community-list expanded c7 permit 200 ^65000:4_0:106_0:15$ ip community-list expanded c7 permit 201 ^65000:3_0:106_0:99$ ip community-list expanded c7 permit 202 ^65000:4_0:107_0:14$ ip community-list expanded c7 permit 203 ^65000:4_0:107_0:15$ ip community-list expanded c7 permit 204 ^65000:3_0:107_0:100$ ip community-list expanded c7 permit 205 ^65000:4_0:108_0:14$ ip community-list expanded c7 permit 206 ^65000:4_0:108_0:15$ ip community-list expanded c7 permit 207 ^65000:3_0:108_0:101$ ip community-list expanded c7 permit 208 ^65000:4_0:109_0:14$ ip community-list expanded c7 permit 209 ^65000:4_0:109_0:15$ ip community-list expanded c7 permit 210 ^65000:3_0:109_0:102$ ip community-list expanded c7 permit 211 ^65000:4_0:110_0:14$ ip community-list expanded c7 permit 212 ^65000:4_0:110_0:15$ ip community-list expanded c7 permit 213 ^65000:3_0:110_0:103$ ip community-list expanded c7 permit 214 ^65000:4_0:111_0:14$ ip community-list expanded c7 permit 215 ^65000:4_0:111_0:15$ ip community-list expanded c7 permit 216 ^65000:3_0:111_0:104$ ip community-list expanded c7 permit 217 ^65000:4_0:112_0:15$ ip community-list expanded c7 permit 218 ^65000:4_0:112_0:16$ ip community-list expanded c7 permit 219 ^65000:3_0:112_0:105$ ip community-list expanded c7 permit 220 ^65000:4_0:113_0:15$ ip community-list expanded c7 permit 221 ^65000:4_0:113_0:16$ ip community-list expanded c7 permit 222 ^65000:3_0:113_0:106$ ip community-list expanded c7 permit 223 ^65000:4_0:114_0:15$ ip community-list expanded c7 permit 224 ^65000:4_0:114_0:16$ ip community-list expanded c7 permit 225 ^65000:3_0:114_0:107$ ip community-list expanded c7 permit 226 ^65000:4_0:115_0:15$ ip community-list expanded c7 permit 227 ^65000:4_0:115_0:16$ ip community-list expanded c7 permit 228 ^65000:3_0:115_0:108$ ip community-list expanded c7 permit 229 ^65000:4_0:116_0:15$ ip community-list expanded c7 permit 230 ^65000:4_0:116_0:16$ ip community-list expanded c7 permit 231 ^65000:3_0:116_0:109$ ip community-list expanded c7 permit 232 ^65000:4_0:117_0:15$ ip community-list expanded c7 permit 233 ^65000:4_0:117_0:16$ ip community-list expanded c7 permit 234 ^65000:3_0:117_0:110$ ip community-list expanded c7 permit 235 ^65000:4_0:118_0:15$ ip community-list expanded c7 permit 236 ^65000:4_0:118_0:16$ ip community-list expanded c7 permit 237 ^65000:3_0:118_0:111$ ip community-list expanded c7 permit 238 ^65000:4_0:119_0:15$ ip community-list expanded c7 permit 239 ^65000:4_0:119_0:16$ ip community-list expanded c7 permit 240 ^65000:4_0:119_0:17$ ip community-list expanded c7 permit 241 ^65000:3_0:119_0:112$ ip community-list expanded c7 permit 242 ^65000:4_0:120_0:16$ ip community-list expanded c7 permit 243 ^65000:4_0:120_0:17$ ip community-list expanded c7 permit 244 ^65000:3_0:120_0:113$ ip community-list expanded c7 permit 245 ^65000:4_0:121_0:16$ ip community-list expanded c7 permit 246 ^65000:4_0:121_0:17$ ip community-list expanded c7 permit 247 ^65000:3_0:121_0:114$ ip community-list expanded c7 permit 248 ^65000:4_0:122_0:16$ ip community-list expanded c7 permit 249 ^65000:4_0:122_0:17$ ip community-list expanded c7 permit 250 ^65000:3_0:122_0:115$ ip community-list expanded c7 permit 251 ^65000:4_0:123_0:16$ ip community-list expanded c7 permit 252 ^65000:4_0:123_0:17$ ip community-list expanded c7 permit 253 ^65000:3_0:123_0:116$ ip community-list expanded c7 permit 254 ^65000:4_0:124_0:16$ ip community-list expanded c7 permit 255 ^65000:4_0:124_0:17$ ip community-list expanded c7 permit 256 ^65000:3_0:124_0:117$ ip community-list expanded c7 permit 257 ^65000:4_0:125_0:16$ ip community-list expanded c7 permit 258 ^65000:4_0:125_0:17$ ip community-list expanded c7 permit 259 ^65000:3_0:125_0:118$ ip community-list expanded c7 permit 260 ^65000:4_0:126_0:16$ ip community-list expanded c7 permit 261 ^65000:4_0:126_0:17$ ip community-list expanded c7 permit 262 ^65000:4_0:126_0:18$ ip community-list expanded c7 permit 263 ^65000:3_0:126_0:119$ ip community-list expanded c7 permit 264 ^65000:4_0:127_0:16$ ip community-list expanded c7 permit 265 ^65000:4_0:127_0:17$ ip community-list expanded c7 permit 266 ^65000:4_0:127_0:18$ ip community-list expanded c7 permit 267 ^65000:3_0:127_0:120$ ip community-list expanded c7 permit 268 ^65000:4_0:128_0:17$ ip community-list expanded c7 permit 269 ^65000:4_0:128_0:18$ ip community-list expanded c7 permit 270 ^65000:3_0:128_0:121$ ip community-list expanded c7 permit 271 ^65000:4_0:129_0:17$ ip community-list expanded c7 permit 272 ^65000:4_0:129_0:18$ ip community-list expanded c7 permit 273 ^65000:3_0:129_0:122$ ip community-list expanded c7 permit 274 ^65000:4_0:130_0:17$ ip community-list expanded c7 permit 275 ^65000:4_0:130_0:18$ ip community-list expanded c7 permit 276 ^65000:3_0:130_0:123$ ip community-list expanded c7 permit 277 ^65000:4_0:131_0:17$ ip community-list expanded c7 permit 278 ^65000:4_0:131_0:18$ ip community-list expanded c7 permit 279 ^65000:3_0:131_0:124$ ip community-list expanded c7 permit 280 ^65000:4_0:132_0:17$ ip community-list expanded c7 permit 281 ^65000:4_0:132_0:18$ ip community-list expanded c7 permit 282 ^65000:3_0:132_0:125$ ip community-list expanded c7 permit 283 ^65000:4_0:133_0:17$ ip community-list expanded c7 permit 284 ^65000:4_0:133_0:18$ ip community-list expanded c7 permit 285 ^65000:4_0:133_0:19$ ip community-list expanded c7 permit 286 ^65000:3_0:133_0:126$ ip community-list expanded c7 permit 287 ^65000:4_0:134_0:17$ ip community-list expanded c7 permit 288 ^65000:4_0:134_0:18$ ip community-list expanded c7 permit 289 ^65000:4_0:134_0:19$ ip community-list expanded c7 permit 290 ^65000:3_0:134_0:127$ ip community-list expanded c7 permit 291 ^65000:4_0:135_0:17$ ip community-list expanded c7 permit 292 ^65000:4_0:135_0:18$ ip community-list expanded c7 permit 293 ^65000:4_0:135_0:19$ ip community-list expanded c7 permit 294 ^65000:3_0:135_0:128$ ip community-list expanded c7 permit 295 ^65000:4_0:136_0:18$ ip community-list expanded c7 permit 296 ^65000:4_0:136_0:19$ ip community-list expanded c7 permit 297 ^65000:3_0:136_0:129$ ip community-list expanded c7 permit 298 ^65000:4_0:137_0:18$ ip community-list expanded c7 permit 299 ^65000:4_0:137_0:19$ ip community-list expanded c7 permit 300 ^65000:3_0:137_0:130$ ip community-list expanded c7 permit 301 ^65000:4_0:138_0:18$ ip community-list expanded c7 permit 302 ^65000:4_0:138_0:19$ ip community-list expanded c7 permit 303 ^65000:3_0:138_0:131$ ip community-list expanded c7 permit 304 ^65000:4_0:139_0:18$ ip community-list expanded c7 permit 305 ^65000:4_0:139_0:19$ ip community-list expanded c7 permit 306 ^65000:3_0:139_0:132$ ip community-list expanded c7 permit 307 ^65000:4_0:140_0:18$ ip community-list expanded c7 permit 308 ^65000:4_0:140_0:19$ ip community-list expanded c7 permit 309 ^65000:4_0:140_0:20$ ip community-list expanded c7 permit 310 ^65000:3_0:140_0:133$ ip community-list expanded c7 permit 311 ^65000:4_0:141_0:18$ ip community-list expanded c7 permit 312 ^65000:4_0:141_0:19$ ip community-list expanded c7 permit 313 ^65000:4_0:141_0:20$ ip community-list expanded c7 permit 314 ^65000:3_0:141_0:134$ ip community-list expanded c7 permit 315 ^65000:4_0:142_0:18$ ip community-list expanded c7 permit 316 ^65000:4_0:142_0:19$ ip community-list expanded c7 permit 317 ^65000:4_0:142_0:20$ ip community-list expanded c7 permit 318 ^65000:3_0:142_0:135$ ip community-list expanded c7 permit 319 ^65000:4_0:143_0:18$ ip community-list expanded c7 permit 320 ^65000:4_0:143_0:19$ ip community-list expanded c7 permit 321 ^65000:4_0:143_0:20$ ip community-list expanded c7 permit 322 ^65000:3_0:143_0:136$ ip community-list expanded c7 permit 323 ^65000:4_0:144_0:19$ ip community-list expanded c7 permit 324 ^65000:4_0:144_0:20$ ip community-list expanded c7 permit 325 ^65000:3_0:144_0:137$ ip community-list expanded c7 permit 326 ^65000:4_0:145_0:19$ ip community-list expanded c7 permit 327 ^65000:4_0:145_0:20$ ip community-list expanded c7 permit 328 ^65000:3_0:145_0:138$ ip community-list expanded c7 permit 329 ^65000:4_0:146_0:19$ ip community-list expanded c7 permit 330 ^65000:4_0:146_0:20$ ip community-list expanded c7 permit 331 ^65000:3_0:146_0:139$ ip community-list expanded c7 permit 332 ^65000:4_0:147_0:19$ ip community-list expanded c7 permit 333 ^65000:4_0:147_0:20$ ip community-list expanded c7 permit 334 ^65000:4_0:147_0:21$ ip community-list expanded c7 permit 335 ^65000:3_0:147_0:140$ ip community-list expanded c7 permit 336 ^65000:4_0:148_0:19$ ip community-list expanded c7 permit 337 ^65000:4_0:148_0:20$ ip community-list expanded c7 permit 338 ^65000:4_0:148_0:21$ ip community-list expanded c7 permit 339 ^65000:3_0:148_0:141$ ip community-list expanded c7 permit 340 ^65000:4_0:149_0:19$ ip community-list expanded c7 permit 341 ^65000:4_0:149_0:20$ ip community-list expanded c7 permit 342 ^65000:4_0:149_0:21$ ip community-list expanded c7 permit 343 ^65000:3_0:149_0:142$ ip community-list expanded c7 permit 344 ^65000:4_0:150_0:19$ ip community-list expanded c7 permit 345 ^65000:4_0:150_0:20$ ip community-list expanded c7 permit 346 ^65000:4_0:150_0:21$ ip community-list expanded c7 permit 347 ^65000:3_0:150_0:143$ ip community-list expanded c7 permit 348 ^65000:4_0:151_0:19$ ip community-list expanded c7 permit 349 ^65000:4_0:151_0:20$ ip community-list expanded c7 permit 350 ^65000:4_0:151_0:21$ ip community-list expanded c7 permit 351 ^65000:3_0:151_0:144$ ip community-list expanded c7 permit 352 ^65000:4_0:152_0:20$ ip community-list expanded c7 permit 353 ^65000:4_0:152_0:21$ ip community-list expanded c7 permit 354 ^65000:3_0:152_0:145$ ip community-list expanded c7 permit 355 ^65000:4_0:153_0:20$ ip community-list expanded c7 permit 356 ^65000:4_0:153_0:21$ ip community-list expanded c7 permit 357 ^65000:3_0:153_0:146$ ip community-list expanded c7 permit 358 ^65000:4_0:154_0:20$ ip community-list expanded c7 permit 359 ^65000:4_0:154_0:21$ ip community-list expanded c7 permit 360 ^65000:4_0:154_0:22$ ip community-list expanded c7 permit 361 ^65000:3_0:154_0:147$ ip community-list expanded c7 permit 362 ^65000:4_0:155_0:20$ ip community-list expanded c7 permit 363 ^65000:4_0:155_0:21$ ip community-list expanded c7 permit 364 ^65000:4_0:155_0:22$ ip community-list expanded c7 permit 365 ^65000:3_0:155_0:148$ ip community-list expanded c7 permit 366 ^65000:4_0:156_0:20$ ip community-list expanded c7 permit 367 ^65000:4_0:156_0:21$ ip community-list expanded c7 permit 368 ^65000:4_0:156_0:22$ ip community-list expanded c7 permit 369 ^65000:3_0:156_0:149$ ip community-list expanded c7 permit 370 ^65000:4_0:157_0:20$ ip community-list expanded c7 permit 371 ^65000:4_0:157_0:21$ ip community-list expanded c7 permit 372 ^65000:4_0:157_0:22$ ip community-list expanded c7 permit 373 ^65000:3_0:157_0:150$ ip community-list expanded c7 permit 374 ^65000:4_0:158_0:20$ ip community-list expanded c7 permit 375 ^65000:4_0:158_0:21$ ip community-list expanded c7 permit 376 ^65000:4_0:158_0:22$ ip community-list expanded c7 permit 377 ^65000:3_0:158_0:151$ ip community-list expanded c7 permit 378 ^65000:4_0:159_0:20$ ip community-list expanded c7 permit 379 ^65000:4_0:159_0:21$ ip community-list expanded c7 permit 380 ^65000:4_0:159_0:22$ ip community-list expanded c7 permit 381 ^65000:3_0:159_0:152$ ip community-list expanded c7 permit 382 ^65000:4_0:160_0:21$ ip community-list expanded c7 permit 383 ^65000:4_0:160_0:22$ ip community-list expanded c7 permit 384 ^65000:3_0:160_0:153$ ip community-list expanded c7 permit 385 ^65000:4_0:161_0:21$ ip community-list expanded c7 permit 386 ^65000:4_0:161_0:22$ ip community-list expanded c7 permit 387 ^65000:4_0:161_0:23$ ip community-list expanded c7 permit 388 ^65000:3_0:161_0:154$ ip community-list expanded c7 permit 389 ^65000:4_0:162_0:21$ ip community-list expanded c7 permit 390 ^65000:4_0:162_0:22$ ip community-list expanded c7 permit 391 ^65000:4_0:162_0:23$ ip community-list expanded c7 permit 392 ^65000:3_0:162_0:155$ ip community-list expanded c7 permit 393 ^65000:4_0:163_0:21$ ip community-list expanded c7 permit 394 ^65000:4_0:163_0:22$ ip community-list expanded c7 permit 395 ^65000:4_0:163_0:23$ ip community-list expanded c7 permit 396 ^65000:3_0:163_0:156$ ip community-list expanded c7 permit 397 ^65000:4_0:164_0:21$ ip community-list expanded c7 permit 398 ^65000:4_0:164_0:22$ ip community-list expanded c7 permit 399 ^65000:4_0:164_0:23$ ip community-list expanded c7 permit 400 ^65000:3_0:164_0:157$ ip community-list expanded c7 permit 401 ^65000:4_0:165_0:21$ ip community-list expanded c7 permit 402 ^65000:4_0:165_0:22$ ip community-list expanded c7 permit 403 ^65000:4_0:165_0:23$ ip community-list expanded c7 permit 404 ^65000:3_0:165_0:158$ ip community-list expanded c7 permit 405 ^65000:4_0:166_0:21$ ip community-list expanded c7 permit 406 ^65000:4_0:166_0:22$ ip community-list expanded c7 permit 407 ^65000:4_0:166_0:23$ ip community-list expanded c7 permit 408 ^65000:3_0:166_0:159$ ip community-list expanded c7 permit 409 ^65000:4_0:167_0:21$ ip community-list expanded c7 permit 410 ^65000:4_0:167_0:22$ ip community-list expanded c7 permit 411 ^65000:4_0:167_0:23$ ip community-list expanded c7 permit 412 ^65000:3_0:167_0:160$ ip community-list expanded c7 permit 413 ^65000:4_0:168_0:22$ ip community-list expanded c7 permit 414 ^65000:4_0:168_0:23$ ip community-list expanded c7 permit 415 ^65000:4_0:168_0:24$ ip community-list expanded c7 permit 416 ^65000:3_0:168_0:161$ ip community-list expanded c7 permit 417 ^65000:4_0:169_0:22$ ip community-list expanded c7 permit 418 ^65000:4_0:169_0:23$ ip community-list expanded c7 permit 419 ^65000:4_0:169_0:24$ ip community-list expanded c7 permit 420 ^65000:3_0:169_0:162$ ip community-list expanded c7 permit 421 ^65000:4_0:170_0:22$ ip community-list expanded c7 permit 422 ^65000:4_0:170_0:23$ ip community-list expanded c7 permit 423 ^65000:4_0:170_0:24$ ip community-list expanded c7 permit 424 ^65000:3_0:170_0:163$ ip community-list expanded c7 permit 425 ^65000:4_0:171_0:22$ ip community-list expanded c7 permit 426 ^65000:4_0:171_0:23$ ip community-list expanded c7 permit 427 ^65000:4_0:171_0:24$ ip community-list expanded c7 permit 428 ^65000:3_0:171_0:164$ ip community-list expanded c7 permit 429 ^65000:4_0:172_0:22$ ip community-list expanded c7 permit 430 ^65000:4_0:172_0:23$ ip community-list expanded c7 permit 431 ^65000:4_0:172_0:24$ ip community-list expanded c7 permit 432 ^65000:3_0:172_0:165$ ip community-list expanded c7 permit 433 ^65000:4_0:173_0:22$ ip community-list expanded c7 permit 434 ^65000:4_0:173_0:23$ ip community-list expanded c7 permit 435 ^65000:4_0:173_0:24$ ip community-list expanded c7 permit 436 ^65000:3_0:173_0:166$ ip community-list expanded c7 permit 437 ^65000:4_0:174_0:22$ ip community-list expanded c7 permit 438 ^65000:4_0:174_0:23$ ip community-list expanded c7 permit 439 ^65000:4_0:174_0:24$ ip community-list expanded c7 permit 440 ^65000:3_0:174_0:167$ ip community-list expanded c7 permit 441 ^65000:4_0:175_0:22$ ip community-list expanded c7 permit 442 ^65000:4_0:175_0:23$ ip community-list expanded c7 permit 443 ^65000:4_0:175_0:24$ ip community-list expanded c7 permit 444 ^65000:4_0:175_0:25$ ip community-list expanded c7 permit 445 ^65000:3_0:175_0:168$ ip community-list expanded c7 permit 446 ^65000:4_0:176_0:23$ ip community-list expanded c7 permit 447 ^65000:4_0:176_0:24$ ip community-list expanded c7 permit 448 ^65000:4_0:176_0:25$ ip community-list expanded c7 permit 449 ^65000:3_0:176_0:169$ ip community-list expanded c7 permit 450 ^65000:4_0:177_0:23$ ip community-list expanded c7 permit 451 ^65000:4_0:177_0:24$ ip community-list expanded c7 permit 452 ^65000:4_0:177_0:25$ ip community-list expanded c7 permit 453 ^65000:3_0:177_0:170$ ip community-list expanded c7 permit 454 ^65000:4_0:178_0:23$ ip community-list expanded c7 permit 455 ^65000:4_0:178_0:24$ ip community-list expanded c7 permit 456 ^65000:4_0:178_0:25$ ip community-list expanded c7 permit 457 ^65000:3_0:178_0:171$ ip community-list expanded c7 permit 458 ^65000:4_0:179_0:23$ ip community-list expanded c7 permit 459 ^65000:4_0:179_0:24$ ip community-list expanded c7 permit 460 ^65000:4_0:179_0:25$ ip community-list expanded c7 permit 461 ^65000:3_0:179_0:172$ ip community-list expanded c7 permit 462 ^65000:4_0:180_0:23$ ip community-list expanded c7 permit 463 ^65000:4_0:180_0:24$ ip community-list expanded c7 permit 464 ^65000:4_0:180_0:25$ ip community-list expanded c7 permit 465 ^65000:3_0:180_0:173$ ip community-list expanded c7 permit 466 ^65000:4_0:181_0:23$ ip community-list expanded c7 permit 467 ^65000:4_0:181_0:24$ ip community-list expanded c7 permit 468 ^65000:4_0:181_0:25$ ip community-list expanded c7 permit 469 ^65000:3_0:181_0:174$ ip community-list expanded c7 permit 470 ^65000:4_0:182_0:23$ ip community-list expanded c7 permit 471 ^65000:4_0:182_0:24$ ip community-list expanded c7 permit 472 ^65000:4_0:182_0:25$ ip community-list expanded c7 permit 473 ^65000:4_0:182_0:26$ ip community-list expanded c7 permit 474 ^65000:3_0:182_0:175$ ip community-list expanded c7 permit 475 ^65000:4_0:183_0:23$ ip community-list expanded c7 permit 476 ^65000:4_0:183_0:24$ ip community-list expanded c7 permit 477 ^65000:4_0:183_0:25$ ip community-list expanded c7 permit 478 ^65000:4_0:183_0:26$ ip community-list expanded c7 permit 479 ^65000:3_0:183_0:176$ ip community-list expanded c7 permit 480 ^65000:4_0:184_0:24$ ip community-list expanded c7 permit 481 ^65000:4_0:184_0:25$ ip community-list expanded c7 permit 482 ^65000:4_0:184_0:26$ ip community-list expanded c7 permit 483 ^65000:3_0:184_0:177$ ip community-list expanded c7 permit 484 ^65000:4_0:185_0:24$ ip community-list expanded c7 permit 485 ^65000:4_0:185_0:25$ ip community-list expanded c7 permit 486 ^65000:4_0:185_0:26$ ip community-list expanded c7 permit 487 ^65000:3_0:185_0:178$ ip community-list expanded c7 permit 488 ^65000:4_0:186_0:24$ ip community-list expanded c7 permit 489 ^65000:4_0:186_0:25$ ip community-list expanded c7 permit 490 ^65000:4_0:186_0:26$ ip community-list expanded c7 permit 491 ^65000:3_0:186_0:179$ ip community-list expanded c7 permit 492 ^65000:4_0:187_0:24$ ip community-list expanded c7 permit 493 ^65000:4_0:187_0:25$ ip community-list expanded c7 permit 494 ^65000:4_0:187_0:26$ ip community-list expanded c7 permit 495 ^65000:3_0:187_0:180$ ip community-list expanded c7 permit 496 ^65000:4_0:188_0:24$ ip community-list expanded c7 permit 497 ^65000:4_0:188_0:25$ ip community-list expanded c7 permit 498 ^65000:4_0:188_0:26$ ip community-list expanded c7 permit 499 ^65000:3_0:188_0:181$ ip community-list expanded c7 permit 500 ^65000:4_0:189_0:24$ ip community-list expanded c7 permit 501 ^65000:4_0:189_0:25$ ip community-list expanded c7 permit 502 ^65000:4_0:189_0:26$ ip community-list expanded c7 permit 503 ^65000:4_0:189_0:27$ ip community-list expanded c7 permit 504 ^65000:3_0:189_0:182$ ip community-list expanded c7 permit 505 ^65000:4_0:190_0:24$ ip community-list expanded c7 permit 506 ^65000:4_0:190_0:25$ ip community-list expanded c7 permit 507 ^65000:4_0:190_0:26$ ip community-list expanded c7 permit 508 ^65000:4_0:190_0:27$ ip community-list expanded c7 permit 509 ^65000:3_0:190_0:183$ ip community-list expanded c7 permit 510 ^65000:4_0:191_0:24$ ip community-list expanded c7 permit 511 ^65000:4_0:191_0:25$ ip community-list expanded c7 permit 512 ^65000:4_0:191_0:26$ ip community-list expanded c7 permit 513 ^65000:4_0:191_0:27$ ip community-list expanded c7 permit 514 ^65000:3_0:191_0:184$ ip community-list expanded c7 permit 515 ^65000:4_0:192_0:25$ ip community-list expanded c7 permit 516 ^65000:4_0:192_0:26$ ip community-list expanded c7 permit 517 ^65000:4_0:192_0:27$ ip community-list expanded c7 permit 518 ^65000:3_0:192_0:185$ ip community-list expanded c7 permit 519 ^65000:4_0:193_0:25$ ip community-list expanded c7 permit 520 ^65000:4_0:193_0:26$ ip community-list expanded c7 permit 521 ^65000:4_0:193_0:27$ ip community-list expanded c7 permit 522 ^65000:3_0:193_0:186$ ip community-list expanded c7 permit 523 ^65000:4_0:194_0:25$ ip community-list expanded c7 permit 524 ^65000:4_0:194_0:26$ ip community-list expanded c7 permit 525 ^65000:4_0:194_0:27$ ip community-list expanded c7 permit 526 ^65000:3_0:194_0:187$ ip community-list expanded c7 permit 527 ^65000:4_0:195_0:25$ ip community-list expanded c7 permit 528 ^65000:4_0:195_0:26$ ip community-list expanded c7 permit 529 ^65000:4_0:195_0:27$ ip community-list expanded c7 permit 530 ^65000:3_0:195_0:188$ ip community-list expanded c7 permit 531 ^65000:4_0:196_0:25$ ip community-list expanded c7 permit 532 ^65000:4_0:196_0:26$ ip community-list expanded c7 permit 533 ^65000:4_0:196_0:27$ ip community-list expanded c7 permit 534 ^65000:4_0:196_0:28$ ip community-list expanded c7 permit 535 ^65000:3_0:196_0:189$ ip community-list expanded c7 permit 536 ^65000:4_0:197_0:25$ ip community-list expanded c7 permit 537 ^65000:4_0:197_0:26$ ip community-list expanded c7 permit 538 ^65000:4_0:197_0:27$ ip community-list expanded c7 permit 539 ^65000:4_0:197_0:28$ ip community-list expanded c7 permit 540 ^65000:3_0:197_0:190$ ip community-list expanded c7 permit 541 ^65000:4_0:198_0:25$ ip community-list expanded c7 permit 542 ^65000:4_0:198_0:26$ ip community-list expanded c7 permit 543 ^65000:4_0:198_0:27$ ip community-list expanded c7 permit 544 ^65000:4_0:198_0:28$ ip community-list expanded c7 permit 545 ^65000:3_0:198_0:191$ ip community-list expanded c7 permit 546 ^65000:4_0:199_0:25$ ip community-list expanded c7 permit 547 ^65000:4_0:199_0:26$ ip community-list expanded c7 permit 548 ^65000:4_0:199_0:27$ ip community-list expanded c7 permit 549 ^65000:4_0:199_0:28$ ip community-list expanded c7 permit 550 ^65000:3_0:199_0:192$ ip community-list expanded c7 permit 551 ^65000:4_0:200_0:26$ ip community-list expanded c7 permit 552 ^65000:4_0:200_0:27$ ip community-list expanded c7 permit 553 ^65000:4_0:200_0:28$ ip community-list expanded c7 permit 554 ^65000:3_0:200_0:193$ ip community-list expanded c7 permit 555 ^65000:4_0:201_0:26$ ip community-list expanded c7 permit 556 ^65000:4_0:201_0:27$ ip community-list expanded c7 permit 557 ^65000:4_0:201_0:28$ ip community-list expanded c7 permit 558 ^65000:3_0:201_0:194$ ip community-list expanded c7 permit 559 ^65000:4_0:202_0:26$ ip community-list expanded c7 permit 560 ^65000:4_0:202_0:27$ ip community-list expanded c7 permit 561 ^65000:4_0:202_0:28$ ip community-list expanded c7 permit 562 ^65000:3_0:202_0:195$ ip community-list expanded c7 permit 563 ^65000:4_0:203_0:26$ ip community-list expanded c7 permit 564 ^65000:4_0:203_0:27$ ip community-list expanded c7 permit 565 ^65000:4_0:203_0:28$ ip community-list expanded c7 permit 566 ^65000:4_0:203_0:29$ ip community-list expanded c7 permit 567 ^65000:3_0:203_0:196$ ip community-list expanded c7 permit 568 ^65000:4_0:204_0:26$ ip community-list expanded c7 permit 569 ^65000:4_0:204_0:27$ ip community-list expanded c7 permit 570 ^65000:4_0:204_0:28$ ip community-list expanded c7 permit 571 ^65000:4_0:204_0:29$ ip community-list expanded c7 permit 572 ^65000:3_0:204_0:197$ ip community-list expanded c7 permit 573 ^65000:4_0:205_0:26$ ip community-list expanded c7 permit 574 ^65000:4_0:205_0:27$ ip community-list expanded c7 permit 575 ^65000:4_0:205_0:28$ ip community-list expanded c7 permit 576 ^65000:4_0:205_0:29$ ip community-list expanded c7 permit 577 ^65000:3_0:205_0:198$ ip community-list expanded c7 permit 578 ^65000:4_0:206_0:26$ ip community-list expanded c7 permit 579 ^65000:4_0:206_0:27$ ip community-list expanded c7 permit 580 ^65000:4_0:206_0:28$ ip community-list expanded c7 permit 581 ^65000:4_0:206_0:29$ ip community-list expanded c7 permit 582 ^65000:3_0:206_0:199$ ip community-list expanded c7 permit 583 ^65000:4_0:207_0:26$ ip community-list expanded c7 permit 584 ^65000:4_0:207_0:27$ ip community-list expanded c7 permit 585 ^65000:4_0:207_0:28$ ip community-list expanded c7 permit 586 ^65000:4_0:207_0:29$ ip community-list expanded c7 permit 587 ^65000:3_0:207_0:200$ ip community-list expanded c7 permit 588 ^65000:4_0:208_0:27$ ip community-list expanded c7 permit 589 ^65000:4_0:208_0:28$ ip community-list expanded c7 permit 590 ^65000:4_0:208_0:29$ ip community-list expanded c7 permit 591 ^65000:3_0:208_0:201$ ip community-list expanded c7 permit 592 ^65000:4_0:209_0:27$ ip community-list expanded c7 permit 593 ^65000:4_0:209_0:28$ ip community-list expanded c7 permit 594 ^65000:4_0:209_0:29$ ip community-list expanded c7 permit 595 ^65000:3_0:209_0:202$ ip community-list expanded c7 permit 596 ^65000:4_0:210_0:27$ ip community-list expanded c7 permit 597 ^65000:4_0:210_0:28$ ip community-list expanded c7 permit 598 ^65000:4_0:210_0:29$ ip community-list expanded c7 permit 599 ^65000:4_0:210_0:30$ ip community-list expanded c7 permit 600 ^65000:3_0:210_0:203$ ip community-list expanded c7 permit 601 ^65000:4_0:211_0:27$ ip community-list expanded c7 permit 602 ^65000:4_0:211_0:28$ ip community-list expanded c7 permit 603 ^65000:4_0:211_0:29$ ip community-list expanded c7 permit 604 ^65000:4_0:211_0:30$ ip community-list expanded c7 permit 605 ^65000:3_0:211_0:204$ ip community-list expanded c7 permit 606 ^65000:4_0:212_0:27$ ip community-list expanded c7 permit 607 ^65000:4_0:212_0:28$ ip community-list expanded c7 permit 608 ^65000:4_0:212_0:29$ ip community-list expanded c7 permit 609 ^65000:4_0:212_0:30$ ip community-list expanded c7 permit 610 ^65000:3_0:212_0:205$ ip community-list expanded c7 permit 611 ^65000:4_0:213_0:27$ ip community-list expanded c7 permit 612 ^65000:4_0:213_0:28$ ip community-list expanded c7 permit 613 ^65000:4_0:213_0:29$ ip community-list expanded c7 permit 614 ^65000:4_0:213_0:30$ ip community-list expanded c7 permit 615 ^65000:3_0:213_0:206$ ip community-list expanded c7 permit 616 ^65000:4_0:214_0:27$ ip community-list expanded c7 permit 617 ^65000:4_0:214_0:28$ ip community-list expanded c7 permit 618 ^65000:4_0:214_0:29$ ip community-list expanded c7 permit 619 ^65000:4_0:214_0:30$ ip community-list expanded c7 permit 620 ^65000:3_0:214_0:207$ ip community-list expanded c7 permit 621 ^65000:4_0:215_0:27$ ip community-list expanded c7 permit 622 ^65000:4_0:215_0:28$ ip community-list expanded c7 permit 623 ^65000:4_0:215_0:29$ ip community-list expanded c7 permit 624 ^65000:4_0:215_0:30$ ip community-list expanded c7 permit 625 ^65000:3_0:215_0:208$ ip community-list expanded c7 permit 626 ^65000:4_0:216_0:28$ ip community-list expanded c7 permit 627 ^65000:4_0:216_0:29$ ip community-list expanded c7 permit 628 ^65000:4_0:216_0:30$ ip community-list expanded c7 permit 629 ^65000:3_0:216_0:209$ ip community-list expanded c7 permit 630 ^65000:4_0:217_0:28$ ip community-list expanded c7 permit 631 ^65000:4_0:217_0:29$ ip community-list expanded c7 permit 632 ^65000:4_0:217_0:30$ ip community-list expanded c7 permit 633 ^65000:4_0:217_0:31$ ip community-list expanded c7 permit 634 ^65000:3_0:217_0:210$ ip community-list expanded c7 permit 635 ^65000:4_0:218_0:28$ ip community-list expanded c7 permit 636 ^65000:4_0:218_0:29$ ip community-list expanded c7 permit 637 ^65000:4_0:218_0:30$ ip community-list expanded c7 permit 638 ^65000:4_0:218_0:31$ ip community-list expanded c7 permit 639 ^65000:3_0:218_0:211$ ip community-list expanded c7 permit 640 ^65000:4_0:219_0:28$ ip community-list expanded c7 permit 641 ^65000:4_0:219_0:29$ ip community-list expanded c7 permit 642 ^65000:4_0:219_0:30$ ip community-list expanded c7 permit 643 ^65000:4_0:219_0:31$ ip community-list expanded c7 permit 644 ^65000:3_0:219_0:212$ ip community-list expanded c7 permit 645 ^65000:4_0:220_0:28$ ip community-list expanded c7 permit 646 ^65000:4_0:220_0:29$ ip community-list expanded c7 permit 647 ^65000:4_0:220_0:30$ ip community-list expanded c7 permit 648 ^65000:4_0:220_0:31$ ip community-list expanded c7 permit 649 ^65000:3_0:220_0:213$ ip community-list expanded c7 permit 650 ^65000:4_0:221_0:28$ ip community-list expanded c7 permit 651 ^65000:4_0:221_0:29$ ip community-list expanded c7 permit 652 ^65000:4_0:221_0:30$ ip community-list expanded c7 permit 653 ^65000:4_0:221_0:31$ ip community-list expanded c7 permit 654 ^65000:3_0:221_0:214$ ip community-list expanded c7 permit 655 ^65000:4_0:222_0:28$ ip community-list expanded c7 permit 656 ^65000:4_0:222_0:29$ ip community-list expanded c7 permit 657 ^65000:4_0:222_0:30$ ip community-list expanded c7 permit 658 ^65000:4_0:222_0:31$ ip community-list expanded c7 permit 659 ^65000:3_0:222_0:215$ ip community-list expanded c7 permit 660 ^65000:4_0:223_0:28$ ip community-list expanded c7 permit 661 ^65000:4_0:223_0:29$ ip community-list expanded c7 permit 662 ^65000:4_0:223_0:30$ ip community-list expanded c7 permit 663 ^65000:4_0:223_0:31$ ip community-list expanded c7 permit 664 ^65000:3_0:223_0:216$ ip community-list expanded c7 permit 665 ^65000:4_0:224_0:29$ ip community-list expanded c7 permit 666 ^65000:4_0:224_0:30$ ip community-list expanded c7 permit 667 ^65000:4_0:224_0:31$ ip community-list expanded c7 permit 668 ^65000:4_0:224_0:32$ ip community-list expanded c7 permit 669 ^65000:3_0:224_0:217$ ip community-list expanded c7 permit 670 ^65000:4_0:225_0:29$ ip community-list expanded c7 permit 671 ^65000:4_0:225_0:30$ ip community-list expanded c7 permit 672 ^65000:4_0:225_0:31$ ip community-list expanded c7 permit 673 ^65000:4_0:225_0:32$ ip community-list expanded c7 permit 674 ^65000:3_0:225_0:218$ ip community-list expanded c7 permit 675 ^65000:4_0:226_0:29$ ip community-list expanded c7 permit 676 ^65000:4_0:226_0:30$ ip community-list expanded c7 permit 677 ^65000:4_0:226_0:31$ ip community-list expanded c7 permit 678 ^65000:4_0:226_0:32$ ip community-list expanded c7 permit 679 ^65000:3_0:226_0:219$ ip community-list expanded c7 permit 680 ^65000:4_0:227_0:29$ ip community-list expanded c7 permit 681 ^65000:4_0:227_0:30$ ip community-list expanded c7 permit 682 ^65000:4_0:227_0:31$ ip community-list expanded c7 permit 683 ^65000:4_0:227_0:32$ ip community-list expanded c7 permit 684 ^65000:3_0:227_0:220$ ip community-list expanded c7 permit 685 ^65000:4_0:228_0:29$ ip community-list expanded c7 permit 686 ^65000:4_0:228_0:30$ ip community-list expanded c7 permit 687 ^65000:4_0:228_0:31$ ip community-list expanded c7 permit 688 ^65000:4_0:228_0:32$ ip community-list expanded c7 permit 689 ^65000:3_0:228_0:221$ ip community-list expanded c7 permit 690 ^65000:4_0:229_0:29$ ip community-list expanded c7 permit 691 ^65000:4_0:229_0:30$ ip community-list expanded c7 permit 692 ^65000:4_0:229_0:31$ ip community-list expanded c7 permit 693 ^65000:4_0:229_0:32$ ip community-list expanded c7 permit 694 ^65000:3_0:229_0:222$ ip community-list expanded c7 permit 695 ^65000:4_0:230_0:29$ ip community-list expanded c7 permit 696 ^65000:4_0:230_0:30$ ip community-list expanded c7 permit 697 ^65000:4_0:230_0:31$ ip community-list expanded c7 permit 698 ^65000:4_0:230_0:32$ ip community-list expanded c7 permit 699 ^65000:3_0:230_0:223$ ip community-list expanded c7 permit 700 ^65000:4_0:231_0:29$ ip community-list expanded c7 permit 701 ^65000:4_0:231_0:30$ ip community-list expanded c7 permit 702 ^65000:4_0:231_0:31$ ip community-list expanded c7 permit 703 ^65000:4_0:231_0:32$ ip community-list expanded c7 permit 704 ^65000:4_0:231_0:33$ ip community-list expanded c7 permit 705 ^65000:3_0:231_0:224$ ip community-list expanded c7 permit 706 ^65000:4_0:232_0:30$ ip community-list expanded c7 permit 707 ^65000:4_0:232_0:31$ ip community-list expanded c7 permit 708 ^65000:4_0:232_0:32$ ip community-list expanded c7 permit 709 ^65000:4_0:232_0:33$ ip community-list expanded c7 permit 710 ^65000:3_0:232_0:225$ ip community-list expanded c7 permit 711 ^65000:4_0:233_0:30$ ip community-list expanded c7 permit 712 ^65000:4_0:233_0:31$ ip community-list expanded c7 permit 713 ^65000:4_0:233_0:32$ ip community-list expanded c7 permit 714 ^65000:4_0:233_0:33$ ip community-list expanded c7 permit 715 ^65000:3_0:233_0:226$ ip community-list expanded c7 permit 716 ^65000:4_0:234_0:30$ ip community-list expanded c7 permit 717 ^65000:4_0:234_0:31$ ip community-list expanded c7 permit 718 ^65000:4_0:234_0:32$ ip community-list expanded c7 permit 719 ^65000:4_0:234_0:33$ ip community-list expanded c7 permit 720 ^65000:3_0:234_0:227$ ip community-list expanded c7 permit 721 ^65000:4_0:235_0:30$ ip community-list expanded c7 permit 722 ^65000:4_0:235_0:31$ ip community-list expanded c7 permit 723 ^65000:4_0:235_0:32$ ip community-list expanded c7 permit 724 ^65000:4_0:235_0:33$ ip community-list expanded c7 permit 725 ^65000:3_0:235_0:228$ ip community-list expanded c7 permit 726 ^65000:4_0:236_0:30$ ip community-list expanded c7 permit 727 ^65000:4_0:236_0:31$ ip community-list expanded c7 permit 728 ^65000:4_0:236_0:32$ ip community-list expanded c7 permit 729 ^65000:4_0:236_0:33$ ip community-list expanded c7 permit 730 ^65000:3_0:236_0:229$ ip community-list expanded c7 permit 731 ^65000:4_0:237_0:30$ ip community-list expanded c7 permit 732 ^65000:4_0:237_0:31$ ip community-list expanded c7 permit 733 ^65000:4_0:237_0:32$ ip community-list expanded c7 permit 734 ^65000:4_0:237_0:33$ ip community-list expanded c7 permit 735 ^65000:3_0:237_0:230$ ip community-list expanded c7 permit 736 ^65000:4_0:238_0:30$ ip community-list expanded c7 permit 737 ^65000:4_0:238_0:31$ ip community-list expanded c7 permit 738 ^65000:4_0:238_0:32$ ip community-list expanded c7 permit 739 ^65000:4_0:238_0:33$ ip community-list expanded c7 permit 740 ^65000:4_0:238_0:34$ ip community-list expanded c7 permit 741 ^65000:3_0:238_0:231$ ip community-list expanded c7 permit 742 ^65000:4_0:239_0:30$ ip community-list expanded c7 permit 743 ^65000:4_0:239_0:31$ ip community-list expanded c7 permit 744 ^65000:4_0:239_0:32$ ip community-list expanded c7 permit 745 ^65000:4_0:239_0:33$ ip community-list expanded c7 permit 746 ^65000:4_0:239_0:34$ ip community-list expanded c7 permit 747 ^65000:3_0:239_0:232$ ip community-list expanded c7 permit 748 ^65000:4_0:240_0:31$ ip community-list expanded c7 permit 749 ^65000:4_0:240_0:32$ ip community-list expanded c7 permit 750 ^65000:4_0:240_0:33$ ip community-list expanded c7 permit 751 ^65000:4_0:240_0:34$ ip community-list expanded c7 permit 752 ^65000:3_0:240_0:233$ ip community-list expanded c7 permit 753 ^65000:4_0:241_0:31$ ip community-list expanded c7 permit 754 ^65000:4_0:241_0:32$ ip community-list expanded c7 permit 755 ^65000:4_0:241_0:33$ ip community-list expanded c7 permit 756 ^65000:4_0:241_0:34$ ip community-list expanded c7 permit 757 ^65000:3_0:241_0:234$ ip community-list expanded c7 permit 758 ^65000:4_0:242_0:31$ ip community-list expanded c7 permit 759 ^65000:4_0:242_0:32$ ip community-list expanded c7 permit 760 ^65000:4_0:242_0:33$ ip community-list expanded c7 permit 761 ^65000:4_0:242_0:34$ ip community-list expanded c7 permit 762 ^65000:3_0:242_0:235$ ip community-list expanded c7 permit 763 ^65000:4_0:243_0:31$ ip community-list expanded c7 permit 764 ^65000:4_0:243_0:32$ ip community-list expanded c7 permit 765 ^65000:4_0:243_0:33$ ip community-list expanded c7 permit 766 ^65000:4_0:243_0:34$ ip community-list expanded c7 permit 767 ^65000:3_0:243_0:236$ ip community-list expanded c7 permit 768 ^65000:4_0:244_0:31$ ip community-list expanded c7 permit 769 ^65000:4_0:244_0:32$ ip community-list expanded c7 permit 770 ^65000:4_0:244_0:33$ ip community-list expanded c7 permit 771 ^65000:4_0:244_0:34$ ip community-list expanded c7 permit 772 ^65000:3_0:244_0:237$ ip community-list expanded c7 permit 773 ^65000:4_0:245_0:31$ ip community-list expanded c7 permit 774 ^65000:4_0:245_0:32$ ip community-list expanded c7 permit 775 ^65000:4_0:245_0:33$ ip community-list expanded c7 permit 776 ^65000:4_0:245_0:34$ ip community-list expanded c7 permit 777 ^65000:4_0:245_0:35$ ip community-list expanded c7 permit 778 ^65000:3_0:245_0:238$ ip community-list expanded c7 permit 779 ^65000:4_0:246_0:31$ ip community-list expanded c7 permit 780 ^65000:4_0:246_0:32$ ip community-list expanded c7 permit 781 ^65000:4_0:246_0:33$ ip community-list expanded c7 permit 782 ^65000:4_0:246_0:34$ ip community-list expanded c7 permit 783 ^65000:4_0:246_0:35$ ip community-list expanded c7 permit 784 ^65000:3_0:246_0:239$ ip community-list expanded c7 permit 785 ^65000:4_0:247_0:31$ ip community-list expanded c7 permit 786 ^65000:4_0:247_0:32$ ip community-list expanded c7 permit 787 ^65000:4_0:247_0:33$ ip community-list expanded c7 permit 788 ^65000:4_0:247_0:34$ ip community-list expanded c7 permit 789 ^65000:4_0:247_0:35$ ip community-list expanded c7 permit 790 ^65000:3_0:247_0:240$ ip community-list expanded c7 permit 791 ^65000:4_0:248_0:32$ ip community-list expanded c7 permit 792 ^65000:4_0:248_0:33$ ip community-list expanded c7 permit 793 ^65000:4_0:248_0:34$ ip community-list expanded c7 permit 794 ^65000:4_0:248_0:35$ ip community-list expanded c7 permit 795 ^65000:3_0:248_0:241$ ip community-list expanded c7 permit 796 ^65000:4_0:249_0:32$ ip community-list expanded c7 permit 797 ^65000:4_0:249_0:33$ ip community-list expanded c7 permit 798 ^65000:4_0:249_0:34$ ip community-list expanded c7 permit 799 ^65000:4_0:249_0:35$ ip community-list expanded c7 permit 800 ^65000:3_0:249_0:242$ ip community-list expanded c7 permit 801 ^65000:4_0:250_0:32$ ip community-list expanded c7 permit 802 ^65000:4_0:250_0:33$ ip community-list expanded c7 permit 803 ^65000:4_0:250_0:34$ ip community-list expanded c7 permit 804 ^65000:4_0:250_0:35$ ip community-list expanded c7 permit 805 ^65000:3_0:250_0:243$ ip community-list expanded c7 permit 806 ^65000:4_0:251_0:32$ ip community-list expanded c7 permit 807 ^65000:4_0:251_0:33$ ip community-list expanded c7 permit 808 ^65000:4_0:251_0:34$ ip community-list expanded c7 permit 809 ^65000:4_0:251_0:35$ ip community-list expanded c7 permit 810 ^65000:3_0:251_0:244$ ip community-list expanded c7 permit 811 ^65000:4_0:252_0:32$ ip community-list expanded c7 permit 812 ^65000:4_0:252_0:33$ ip community-list expanded c7 permit 813 ^65000:4_0:252_0:34$ ip community-list expanded c7 permit 814 ^65000:4_0:252_0:35$ ip community-list expanded c7 permit 815 ^65000:4_0:252_0:36$ ip community-list expanded c7 permit 816 ^65000:3_0:252_0:245$ ip community-list expanded c7 permit 817 ^65000:4_0:253_0:32$ ip community-list expanded c7 permit 818 ^65000:4_0:253_0:33$ ip community-list expanded c7 permit 819 ^65000:4_0:253_0:34$ ip community-list expanded c7 permit 820 ^65000:4_0:253_0:35$ ip community-list expanded c7 permit 821 ^65000:4_0:253_0:36$ ip community-list expanded c7 permit 822 ^65000:3_0:253_0:246$ ip community-list expanded c7 permit 823 ^65000:4_0:254_0:32$ ip community-list expanded c7 permit 824 ^65000:4_0:254_0:33$ ip community-list expanded c7 permit 825 ^65000:4_0:254_0:34$ ip community-list expanded c7 permit 826 ^65000:4_0:254_0:35$ ip community-list expanded c7 permit 827 ^65000:4_0:254_0:36$ ip community-list expanded c7 permit 828 ^65000:3_0:254_0:247$ ip community-list expanded c7 permit 829 ^65000:4_0:255_0:32$ ip community-list expanded c7 permit 830 ^65000:4_0:255_0:33$ ip community-list expanded c7 permit 831 ^65000:4_0:255_0:34$ ip community-list expanded c7 permit 832 ^65000:4_0:255_0:35$ ip community-list expanded c7 permit 833 ^65000:4_0:255_0:36$ ip community-list expanded c7 permit 834 ^65000:3_0:255_0:248$ ip community-list expanded c7 permit 835 ^65000:4_0:256_0:33$ ip community-list expanded c7 permit 836 ^65000:4_0:256_0:34$ ip community-list expanded c7 permit 837 ^65000:4_0:256_0:35$ ip community-list expanded c7 permit 838 ^65000:4_0:256_0:36$ ip community-list expanded c7 permit 839 ^65000:3_0:256_0:249$ route-map calculator permit 33960 match community 1_1_6 2_1_7 1_2_5 1_3_4 c4_7_1 set community 0:7 route-map calculator permit 33961 match community c3_8_1 c3_9_2 c3_10_3 c3_11_4 c3_12_5 set community 0:7 route-map calculator permit 33962 match community c3_13_6 c4_14_2 c3_14_7 c4_15_2 c3_15_8 set community 0:7 route-map calculator permit 33963 match community c3_16_9 c3_17_10 c3_18_11 c3_19_12 c3_20_13 set community 0:7 route-map calculator permit 33964 match community c4_21_3 c3_21_14 c4_22_3 c3_22_15 c4_23_3 set community 0:7 route-map calculator permit 33965 match community c3_23_16 c3_24_17 c3_25_18 c3_26_19 c3_27_20 set community 0:7 route-map calculator permit 33966 match community c4_28_4 c3_28_21 c4_29_4 c3_29_22 c4_30_4 set community 0:7 route-map calculator permit 33967 match community c3_30_23 c4_31_4 c3_31_24 c3_32_25 c3_33_26 set community 0:7 route-map calculator permit 33968 match community c3_34_27 c4_35_5 c3_35_28 c4_36_5 c3_36_29 set community 0:7 route-map calculator permit 33969 match community c4_37_5 c3_37_30 c4_38_5 c3_38_31 c4_39_5 set community 0:7 route-map calculator permit 33970 match community c3_39_32 c3_40_33 c3_41_34 c4_42_6 c3_42_35 set community 0:7 route-map calculator permit 33971 match community c4_43_6 c3_43_36 c4_44_6 c3_44_37 c4_45_6 set community 0:7 route-map calculator permit 33972 match community c3_45_38 c4_46_6 c3_46_39 c4_47_6 c3_47_40 set community 0:7 route-map calculator permit 33973 match community c3_48_41 c4_49_7 c3_49_42 c4_50_7 c3_50_43 set community 0:7 route-map calculator permit 33974 match community c4_51_7 c3_51_44 c4_52_7 c3_52_45 c4_53_7 set community 0:7 route-map calculator permit 33975 match community c3_53_46 c4_54_7 c3_54_47 c4_55_7 c3_55_48 set community 0:7 route-map calculator permit 33976 match community c4_56_8 c3_56_49 c4_57_8 c3_57_50 c4_58_8 set community 0:7 route-map calculator permit 33977 match community c3_58_51 c4_59_8 c3_59_52 c4_60_8 c3_60_53 set community 0:7 route-map calculator permit 33978 match community c4_61_8 c3_61_54 c4_62_8 c3_62_55 c4_63_8 set community 0:7 route-map calculator permit 33979 match community c4_63_9 c3_63_56 c4_64_9 c3_64_57 c4_65_9 set community 0:7 route-map calculator permit 33980 match community c3_65_58 c4_66_9 c3_66_59 c4_67_9 c3_67_60 set community 0:7 route-map calculator permit 33981 match community c4_68_9 c3_68_61 c4_69_9 c3_69_62 c4_70_9 set community 0:7 route-map calculator permit 33982 match community c4_70_10 c3_70_63 c4_71_9 c4_71_10 c3_71_64 set community 0:7 route-map calculator permit 33983 match community c4_72_10 c3_72_65 c4_73_10 c3_73_66 c4_74_10 set community 0:7 route-map calculator permit 33984 match community c3_74_67 c4_75_10 c3_75_68 c4_76_10 c3_76_69 set community 0:7 route-map calculator permit 33985 match community c4_77_10 c4_77_11 c3_77_70 c4_78_10 c4_78_11 set community 0:7 route-map calculator permit 33986 match community c3_78_71 c4_79_10 c4_79_11 c3_79_72 c4_80_11 set community 0:7 route-map calculator permit 33987 match community c3_80_73 c4_81_11 c3_81_74 c4_82_11 c3_82_75 set community 0:7 route-map calculator permit 33988 match community c4_83_11 c3_83_76 c4_84_11 c4_84_12 c3_84_77 set community 0:7 route-map calculator permit 33989 match community c4_85_11 c4_85_12 c3_85_78 c4_86_11 c4_86_12 set community 0:7 route-map calculator permit 33990 match community c3_86_79 c4_87_11 c4_87_12 c3_87_80 c4_88_12 set community 0:7 route-map calculator permit 33991 match community c3_88_81 c4_89_12 c3_89_82 c4_90_12 c3_90_83 set community 0:7 route-map calculator permit 33992 match community c4_91_12 c4_91_13 c3_91_84 c4_92_12 c4_92_13 set community 0:7 route-map calculator permit 33993 match community c3_92_85 c4_93_12 c4_93_13 c3_93_86 c4_94_12 set community 0:7 route-map calculator permit 33994 match community c4_94_13 c3_94_87 c4_95_12 c4_95_13 c3_95_88 set community 0:7 route-map calculator permit 33995 match community c4_96_13 c3_96_89 c4_97_13 c3_97_90 c4_98_13 set community 0:7 route-map calculator permit 33996 match community c4_98_14 c3_98_91 c4_99_13 c4_99_14 c3_99_92 set community 0:7 route-map calculator permit 33997 match community c4_100_13 c4_100_14 c3_100_93 c4_101_13 c4_101_14 set community 0:7 route-map calculator permit 33998 match community c3_101_94 c4_102_13 c4_102_14 c3_102_95 c4_103_13 set community 0:7 route-map calculator permit 33999 match community c4_103_14 c3_103_96 c4_104_14 c3_104_97 c4_105_14 set community 0:7 route-map calculator permit 34000 match community c4_105_15 c3_105_98 c4_106_14 c4_106_15 c3_106_99 set community 0:7 route-map calculator permit 34001 match community c4_107_14 c4_107_15 c3_107_100 c4_108_14 c4_108_15 set community 0:7 route-map calculator permit 34002 match community c3_108_101 c4_109_14 c4_109_15 c3_109_102 c4_110_14 set community 0:7 route-map calculator permit 34003 match community c4_110_15 c3_110_103 c4_111_14 c4_111_15 c3_111_104 set community 0:7 route-map calculator permit 34004 match community c4_112_15 c4_112_16 c3_112_105 c4_113_15 c4_113_16 set community 0:7 route-map calculator permit 34005 match community c3_113_106 c4_114_15 c4_114_16 c3_114_107 c4_115_15 set community 0:7 route-map calculator permit 34006 match community c4_115_16 c3_115_108 c4_116_15 c4_116_16 c3_116_109 set community 0:7 route-map calculator permit 34007 match community c4_117_15 c4_117_16 c3_117_110 c4_118_15 c4_118_16 set community 0:7 route-map calculator permit 34008 match community c3_118_111 c4_119_15 c4_119_16 c4_119_17 c3_119_112 set community 0:7 route-map calculator permit 34009 match community c4_120_16 c4_120_17 c3_120_113 c4_121_16 c4_121_17 set community 0:7 route-map calculator permit 34010 match community c3_121_114 c4_122_16 c4_122_17 c3_122_115 c4_123_16 set community 0:7 route-map calculator permit 34011 match community c4_123_17 c3_123_116 c4_124_16 c4_124_17 c3_124_117 set community 0:7 route-map calculator permit 34012 match community c4_125_16 c4_125_17 c3_125_118 c4_126_16 c4_126_17 set community 0:7 route-map calculator permit 34013 match community c4_126_18 c3_126_119 c4_127_16 c4_127_17 c4_127_18 set community 0:7 route-map calculator permit 34014 match community c3_127_120 c4_128_17 c4_128_18 c3_128_121 c4_129_17 set community 0:7 route-map calculator permit 34015 match community c4_129_18 c3_129_122 c4_130_17 c4_130_18 c3_130_123 set community 0:7 route-map calculator permit 34016 match community c4_131_17 c4_131_18 c3_131_124 c4_132_17 c4_132_18 set community 0:7 route-map calculator permit 34017 match community c3_132_125 c4_133_17 c4_133_18 c4_133_19 c3_133_126 set community 0:7 route-map calculator permit 34018 match community c4_134_17 c4_134_18 c4_134_19 c3_134_127 c4_135_17 set community 0:7 route-map calculator permit 34019 match community c4_135_18 c4_135_19 c3_135_128 c4_136_18 c4_136_19 set community 0:7 route-map calculator permit 34020 match community c3_136_129 c4_137_18 c4_137_19 c3_137_130 c4_138_18 set community 0:7 route-map calculator permit 34021 match community c4_138_19 c3_138_131 c4_139_18 c4_139_19 c3_139_132 set community 0:7 route-map calculator permit 34022 match community c4_140_18 c4_140_19 c4_140_20 c3_140_133 c4_141_18 set community 0:7 route-map calculator permit 34023 match community c4_141_19 c4_141_20 c3_141_134 c4_142_18 c4_142_19 set community 0:7 route-map calculator permit 34024 match community c4_142_20 c3_142_135 c4_143_18 c4_143_19 c4_143_20 set community 0:7 route-map calculator permit 34025 match community c3_143_136 c4_144_19 c4_144_20 c3_144_137 c4_145_19 set community 0:7 route-map calculator permit 34026 match community c4_145_20 c3_145_138 c4_146_19 c4_146_20 c3_146_139 set community 0:7 route-map calculator permit 34027 match community c4_147_19 c4_147_20 c4_147_21 c3_147_140 c4_148_19 set community 0:7 route-map calculator permit 34028 match community c4_148_20 c4_148_21 c3_148_141 c4_149_19 c4_149_20 set community 0:7 route-map calculator permit 34029 match community c4_149_21 c3_149_142 c4_150_19 c4_150_20 c4_150_21 set community 0:7 route-map calculator permit 34030 match community c3_150_143 c4_151_19 c4_151_20 c4_151_21 c3_151_144 set community 0:7 route-map calculator permit 34031 match community c4_152_20 c4_152_21 c3_152_145 c4_153_20 c4_153_21 set community 0:7 route-map calculator permit 34032 match community c3_153_146 c4_154_20 c4_154_21 c4_154_22 c3_154_147 set community 0:7 route-map calculator permit 34033 match community c4_155_20 c4_155_21 c4_155_22 c3_155_148 c4_156_20 set community 0:7 route-map calculator permit 34034 match community c4_156_21 c4_156_22 c3_156_149 c4_157_20 c4_157_21 set community 0:7 route-map calculator permit 34035 match community c4_157_22 c3_157_150 c4_158_20 c4_158_21 c4_158_22 set community 0:7 route-map calculator permit 34036 match community c3_158_151 c4_159_20 c4_159_21 c4_159_22 c3_159_152 set community 0:7 route-map calculator permit 34037 match community c4_160_21 c4_160_22 c3_160_153 c4_161_21 c4_161_22 set community 0:7 route-map calculator permit 34038 match community c4_161_23 c3_161_154 c4_162_21 c4_162_22 c4_162_23 set community 0:7 route-map calculator permit 34039 match community c3_162_155 c4_163_21 c4_163_22 c4_163_23 c3_163_156 set community 0:7 route-map calculator permit 34040 match community c4_164_21 c4_164_22 c4_164_23 c3_164_157 c4_165_21 set community 0:7 route-map calculator permit 34041 match community c4_165_22 c4_165_23 c3_165_158 c4_166_21 c4_166_22 set community 0:7 route-map calculator permit 34042 match community c4_166_23 c3_166_159 c4_167_21 c4_167_22 c4_167_23 set community 0:7 route-map calculator permit 34043 match community c3_167_160 c4_168_22 c4_168_23 c4_168_24 c3_168_161 set community 0:7 route-map calculator permit 34044 match community c4_169_22 c4_169_23 c4_169_24 c3_169_162 c4_170_22 set community 0:7 route-map calculator permit 34045 match community c4_170_23 c4_170_24 c3_170_163 c4_171_22 c4_171_23 set community 0:7 route-map calculator permit 34046 match community c4_171_24 c3_171_164 c4_172_22 c4_172_23 c4_172_24 set community 0:7 route-map calculator permit 34047 match community c3_172_165 c4_173_22 c4_173_23 c4_173_24 c3_173_166 set community 0:7 route-map calculator permit 34048 match community c4_174_22 c4_174_23 c4_174_24 c3_174_167 c4_175_22 set community 0:7 route-map calculator permit 34049 match community c4_175_23 c4_175_24 c4_175_25 c3_175_168 c4_176_23 set community 0:7 route-map calculator permit 34050 match community c4_176_24 c4_176_25 c3_176_169 c4_177_23 c4_177_24 set community 0:7 route-map calculator permit 34051 match community c4_177_25 c3_177_170 c4_178_23 c4_178_24 c4_178_25 set community 0:7 route-map calculator permit 34052 match community c3_178_171 c4_179_23 c4_179_24 c4_179_25 c3_179_172 set community 0:7 route-map calculator permit 34053 match community c4_180_23 c4_180_24 c4_180_25 c3_180_173 c4_181_23 set community 0:7 route-map calculator permit 34054 match community c4_181_24 c4_181_25 c3_181_174 c4_182_23 c4_182_24 set community 0:7 route-map calculator permit 34055 match community c4_182_25 c4_182_26 c3_182_175 c4_183_23 c4_183_24 set community 0:7 route-map calculator permit 34056 match community c4_183_25 c4_183_26 c3_183_176 c4_184_24 c4_184_25 set community 0:7 route-map calculator permit 34057 match community c4_184_26 c3_184_177 c4_185_24 c4_185_25 c4_185_26 set community 0:7 route-map calculator permit 34058 match community c3_185_178 c4_186_24 c4_186_25 c4_186_26 c3_186_179 set community 0:7 route-map calculator permit 34059 match community c4_187_24 c4_187_25 c4_187_26 c3_187_180 c4_188_24 set community 0:7 route-map calculator permit 34060 match community c4_188_25 c4_188_26 c3_188_181 c4_189_24 c4_189_25 set community 0:7 route-map calculator permit 34061 match community c4_189_26 c4_189_27 c3_189_182 c4_190_24 c4_190_25 set community 0:7 route-map calculator permit 34062 match community c4_190_26 c4_190_27 c3_190_183 c4_191_24 c4_191_25 set community 0:7 route-map calculator permit 34063 match community c4_191_26 c4_191_27 c3_191_184 c4_192_25 c4_192_26 set community 0:7 route-map calculator permit 34064 match community c4_192_27 c3_192_185 c4_193_25 c4_193_26 c4_193_27 set community 0:7 route-map calculator permit 34065 match community c3_193_186 c4_194_25 c4_194_26 c4_194_27 c3_194_187 set community 0:7 route-map calculator permit 34066 match community c4_195_25 c4_195_26 c4_195_27 c3_195_188 c4_196_25 set community 0:7 route-map calculator permit 34067 match community c4_196_26 c4_196_27 c4_196_28 c3_196_189 c4_197_25 set community 0:7 route-map calculator permit 34068 match community c4_197_26 c4_197_27 c4_197_28 c3_197_190 c4_198_25 set community 0:7 route-map calculator permit 34069 match community c4_198_26 c4_198_27 c4_198_28 c3_198_191 c4_199_25 set community 0:7 route-map calculator permit 34070 match community c4_199_26 c4_199_27 c4_199_28 c3_199_192 c4_200_26 set community 0:7 route-map calculator permit 34071 match community c4_200_27 c4_200_28 c3_200_193 c4_201_26 c4_201_27 set community 0:7 route-map calculator permit 34072 match community c4_201_28 c3_201_194 c4_202_26 c4_202_27 c4_202_28 set community 0:7 route-map calculator permit 34073 match community c3_202_195 c4_203_26 c4_203_27 c4_203_28 c4_203_29 set community 0:7 route-map calculator permit 34074 match community c3_203_196 c4_204_26 c4_204_27 c4_204_28 c4_204_29 set community 0:7 route-map calculator permit 34075 match community c3_204_197 c4_205_26 c4_205_27 c4_205_28 c4_205_29 set community 0:7 route-map calculator permit 34076 match community c3_205_198 c4_206_26 c4_206_27 c4_206_28 c4_206_29 set community 0:7 route-map calculator permit 34077 match community c3_206_199 c4_207_26 c4_207_27 c4_207_28 c4_207_29 set community 0:7 route-map calculator permit 34078 match community c3_207_200 c4_208_27 c4_208_28 c4_208_29 c3_208_201 set community 0:7 route-map calculator permit 34079 match community c4_209_27 c4_209_28 c4_209_29 c3_209_202 c4_210_27 set community 0:7 route-map calculator permit 34080 match community c4_210_28 c4_210_29 c4_210_30 c3_210_203 c4_211_27 set community 0:7 route-map calculator permit 34081 match community c4_211_28 c4_211_29 c4_211_30 c3_211_204 c4_212_27 set community 0:7 route-map calculator permit 34082 match community c4_212_28 c4_212_29 c4_212_30 c3_212_205 c4_213_27 set community 0:7 route-map calculator permit 34083 match community c4_213_28 c4_213_29 c4_213_30 c3_213_206 c4_214_27 set community 0:7 route-map calculator permit 34084 match community c4_214_28 c4_214_29 c4_214_30 c3_214_207 c4_215_27 set community 0:7 route-map calculator permit 34085 match community c4_215_28 c4_215_29 c4_215_30 c3_215_208 c4_216_28 set community 0:7 route-map calculator permit 34086 match community c4_216_29 c4_216_30 c3_216_209 c4_217_28 c4_217_29 set community 0:7 route-map calculator permit 34087 match community c4_217_30 c4_217_31 c3_217_210 c4_218_28 c4_218_29 set community 0:7 route-map calculator permit 34088 match community c4_218_30 c4_218_31 c3_218_211 c4_219_28 c4_219_29 set community 0:7 route-map calculator permit 34089 match community c4_219_30 c4_219_31 c3_219_212 c4_220_28 c4_220_29 set community 0:7 route-map calculator permit 34090 match community c4_220_30 c4_220_31 c3_220_213 c4_221_28 c4_221_29 set community 0:7 route-map calculator permit 34091 match community c4_221_30 c4_221_31 c3_221_214 c4_222_28 c4_222_29 set community 0:7 route-map calculator permit 34092 match community c4_222_30 c4_222_31 c3_222_215 c4_223_28 c4_223_29 set community 0:7 route-map calculator permit 34093 match community c4_223_30 c4_223_31 c3_223_216 c4_224_29 c4_224_30 set community 0:7 route-map calculator permit 34094 match community c4_224_31 c4_224_32 c3_224_217 c4_225_29 c4_225_30 set community 0:7 route-map calculator permit 34095 match community c4_225_31 c4_225_32 c3_225_218 c4_226_29 c4_226_30 set community 0:7 route-map calculator permit 34096 match community c4_226_31 c4_226_32 c3_226_219 c4_227_29 c4_227_30 set community 0:7 route-map calculator permit 34097 match community c4_227_31 c4_227_32 c3_227_220 c4_228_29 c4_228_30 set community 0:7 route-map calculator permit 34098 match community c4_228_31 c4_228_32 c3_228_221 c4_229_29 c4_229_30 set community 0:7 route-map calculator permit 34099 match community c4_229_31 c4_229_32 c3_229_222 c4_230_29 c4_230_30 set community 0:7 route-map calculator permit 34100 match community c4_230_31 c4_230_32 c3_230_223 c4_231_29 c4_231_30 set community 0:7 route-map calculator permit 34101 match community c4_231_31 c4_231_32 c4_231_33 c3_231_224 c4_232_30 set community 0:7 route-map calculator permit 34102 match community c4_232_31 c4_232_32 c4_232_33 c3_232_225 c4_233_30 set community 0:7 route-map calculator permit 34103 match community c4_233_31 c4_233_32 c4_233_33 c3_233_226 c4_234_30 set community 0:7 route-map calculator permit 34104 match community c4_234_31 c4_234_32 c4_234_33 c3_234_227 c4_235_30 set community 0:7 route-map calculator permit 34105 match community c4_235_31 c4_235_32 c4_235_33 c3_235_228 c4_236_30 set community 0:7 route-map calculator permit 34106 match community c4_236_31 c4_236_32 c4_236_33 c3_236_229 c4_237_30 set community 0:7 route-map calculator permit 34107 match community c4_237_31 c4_237_32 c4_237_33 c3_237_230 c4_238_30 set community 0:7 route-map calculator permit 34108 match community c4_238_31 c4_238_32 c4_238_33 c4_238_34 c3_238_231 set community 0:7 route-map calculator permit 34109 match community c4_239_30 c4_239_31 c4_239_32 c4_239_33 c4_239_34 set community 0:7 route-map calculator permit 34110 match community c3_239_232 c4_240_31 c4_240_32 c4_240_33 c4_240_34 set community 0:7 route-map calculator permit 34111 match community c3_240_233 c4_241_31 c4_241_32 c4_241_33 c4_241_34 set community 0:7 route-map calculator permit 34112 match community c3_241_234 c4_242_31 c4_242_32 c4_242_33 c4_242_34 set community 0:7 route-map calculator permit 34113 match community c3_242_235 c4_243_31 c4_243_32 c4_243_33 c4_243_34 set community 0:7 route-map calculator permit 34114 match community c3_243_236 c4_244_31 c4_244_32 c4_244_33 c4_244_34 set community 0:7 route-map calculator permit 34115 match community c3_244_237 c4_245_31 c4_245_32 c4_245_33 c4_245_34 set community 0:7 route-map calculator permit 34116 match community c4_245_35 c3_245_238 c4_246_31 c4_246_32 c4_246_33 set community 0:7 route-map calculator permit 34117 match community c4_246_34 c4_246_35 c3_246_239 c4_247_31 c4_247_32 set community 0:7 route-map calculator permit 34118 match community c4_247_33 c4_247_34 c4_247_35 c3_247_240 c4_248_32 set community 0:7 route-map calculator permit 34119 match community c4_248_33 c4_248_34 c4_248_35 c3_248_241 c4_249_32 set community 0:7 route-map calculator permit 34120 match community c4_249_33 c4_249_34 c4_249_35 c3_249_242 c4_250_32 set community 0:7 route-map calculator permit 34121 match community c4_250_33 c4_250_34 c4_250_35 c3_250_243 c4_251_32 set community 0:7 route-map calculator permit 34122 match community c4_251_33 c4_251_34 c4_251_35 c3_251_244 c4_252_32 set community 0:7 route-map calculator permit 34123 match community c4_252_33 c4_252_34 c4_252_35 c4_252_36 c3_252_245 set community 0:7 route-map calculator permit 34124 match community c4_253_32 c4_253_33 c4_253_34 c4_253_35 c4_253_36 set community 0:7 route-map calculator permit 34125 match community c3_253_246 c4_254_32 c4_254_33 c4_254_34 c4_254_35 set community 0:7 route-map calculator permit 34126 match community c4_254_36 c3_254_247 c4_255_32 c4_255_33 c4_255_34 set community 0:7 route-map calculator permit 34127 match community c4_255_35 c4_255_36 c3_255_248 c4_256_33 c4_256_34 set community 0:7 route-map calculator permit 34128 match community c4_256_35 c4_256_36 c3_256_249 set community 0:7 ip community-list standard 2_143_254 permit 65000:2 0:143 0:254 route-map calculator permit 34129 match community 2_143_254 set community 0:36322 ip community-list standard 2_213_246 permit 65000:2 0:213 0:246 route-map calculator permit 34130 match community 2_213_246 set community 0:52398 ip community-list standard 2_103_217 permit 65000:2 0:103 0:217 route-map calculator permit 34131 match community 2_103_217 set community 0:22351 ip community-list standard 2_28_131 permit 65000:2 0:28 0:131 route-map calculator permit 34132 match community 2_28_131 set community 0:3668 ip community-list standard 2_201_221 permit 65000:2 0:201 0:221 route-map calculator permit 34133 match community 2_201_221 set community 0:44421 ip community-list standard 2_71_200 permit 65000:2 0:71 0:200 ip community-list standard 2_100_142 permit 65000:2 0:100 0:142 route-map calculator permit 34134 match community 2_71_200 2_100_142 set community 0:14200 ip community-list standard 2_62_198 permit 65000:2 0:62 0:198 ip community-list standard 2_66_186 permit 65000:2 0:66 0:186 ip community-list standard 2_93_132 permit 65000:2 0:93 0:132 ip community-list standard 2_99_124 permit 65000:2 0:99 0:124 route-map calculator permit 34135 match community 2_62_198 2_66_186 2_93_132 2_99_124 set community 0:12276 ip community-list standard 2_86_247 permit 65000:2 0:86 0:247 route-map calculator permit 34136 match community 2_86_247 set community 0:21242 ip community-list standard 2_80_220 permit 65000:2 0:80 0:220 ip community-list standard 2_88_200 permit 65000:2 0:88 0:200 ip community-list standard 2_100_176 permit 65000:2 0:100 0:176 ip community-list standard 2_110_160 permit 65000:2 0:110 0:160 route-map calculator permit 34137 match community 2_80_220 2_88_200 2_100_176 2_110_160 set community 0:17600 ip community-list standard 2_74_251 permit 65000:2 0:74 0:251 route-map calculator permit 34138 match community 2_74_251 set community 0:18574 ip community-list standard 2_168_235 permit 65000:2 0:168 0:235 ip community-list standard 2_188_210 permit 65000:2 0:188 0:210 route-map calculator permit 34139 match community 2_168_235 2_188_210 set community 0:39480 ip community-list standard 2_81_254 permit 65000:2 0:81 0:254 ip community-list standard 2_127_162 permit 65000:2 0:127 0:162 route-map calculator permit 34140 match community 2_81_254 2_127_162 set community 0:20574 ip community-list standard 2_108_197 permit 65000:2 0:108 0:197 route-map calculator permit 34141 match community 2_108_197 set community 0:21276 ip community-list standard 2_177_191 permit 65000:2 0:177 0:191 route-map calculator permit 34142 match community 2_177_191 set community 0:33807 ip community-list standard 1_1_65 permit 65000:1 0:1 0:65 ip community-list standard 2_1_66 permit 65000:2 0:1 0:66 ip community-list standard 2_2_33 permit 65000:2 0:2 0:33 ip community-list standard 1_2_64 permit 65000:1 0:2 0:64 ip community-list standard 2_3_22 permit 65000:2 0:3 0:22 ip community-list standard 1_3_63 permit 65000:1 0:3 0:63 ip community-list standard 1_4_62 permit 65000:1 0:4 0:62 ip community-list standard 1_5_61 permit 65000:1 0:5 0:61 ip community-list standard 2_6_11 permit 65000:2 0:6 0:11 ip community-list standard 1_6_60 permit 65000:1 0:6 0:60 ip community-list standard 1_7_59 permit 65000:1 0:7 0:59 ip community-list standard 1_8_58 permit 65000:1 0:8 0:58 ip community-list standard 1_9_57 permit 65000:1 0:9 0:57 ip community-list standard 1_10_56 permit 65000:1 0:10 0:56 ip community-list standard 1_11_55 permit 65000:1 0:11 0:55 ip community-list standard 1_12_54 permit 65000:1 0:12 0:54 ip community-list standard 1_13_53 permit 65000:1 0:13 0:53 ip community-list standard 1_14_52 permit 65000:1 0:14 0:52 ip community-list standard 1_15_51 permit 65000:1 0:15 0:51 ip community-list standard 1_16_50 permit 65000:1 0:16 0:50 ip community-list standard 1_17_49 permit 65000:1 0:17 0:49 ip community-list standard 1_18_48 permit 65000:1 0:18 0:48 ip community-list standard 1_19_47 permit 65000:1 0:19 0:47 ip community-list standard 1_20_46 permit 65000:1 0:20 0:46 ip community-list standard 1_21_45 permit 65000:1 0:21 0:45 ip community-list standard 1_22_44 permit 65000:1 0:22 0:44 ip community-list standard 1_23_43 permit 65000:1 0:23 0:43 ip community-list standard 1_24_42 permit 65000:1 0:24 0:42 ip community-list standard 1_25_41 permit 65000:1 0:25 0:41 ip community-list standard 1_26_40 permit 65000:1 0:26 0:40 ip community-list standard 1_27_39 permit 65000:1 0:27 0:39 ip community-list standard 1_28_38 permit 65000:1 0:28 0:38 ip community-list standard 1_29_37 permit 65000:1 0:29 0:37 ip community-list standard 1_30_36 permit 65000:1 0:30 0:36 ip community-list standard 1_31_35 permit 65000:1 0:31 0:35 ip community-list standard 1_32_34 permit 65000:1 0:32 0:34 ip community-list standard 1_33_33 permit 65000:1 0:33 0:33 ip community-list expanded c66 permit 1 ^65000:4_0:66_0:1$ ip community-list expanded c66 permit 2 ^65000:3_0:67_0:1$ ip community-list expanded c66 permit 3 ^65000:3_0:68_0:2$ ip community-list expanded c66 permit 4 ^65000:3_0:69_0:3$ ip community-list expanded c66 permit 5 ^65000:3_0:70_0:4$ ip community-list expanded c66 permit 6 ^65000:3_0:71_0:5$ ip community-list expanded c66 permit 7 ^65000:3_0:72_0:6$ ip community-list expanded c66 permit 8 ^65000:3_0:73_0:7$ ip community-list expanded c66 permit 9 ^65000:3_0:74_0:8$ ip community-list expanded c66 permit 10 ^65000:3_0:75_0:9$ ip community-list expanded c66 permit 11 ^65000:3_0:76_0:10$ ip community-list expanded c66 permit 12 ^65000:3_0:77_0:11$ ip community-list expanded c66 permit 13 ^65000:3_0:78_0:12$ ip community-list expanded c66 permit 14 ^65000:3_0:79_0:13$ ip community-list expanded c66 permit 15 ^65000:3_0:80_0:14$ ip community-list expanded c66 permit 16 ^65000:3_0:81_0:15$ ip community-list expanded c66 permit 17 ^65000:3_0:82_0:16$ ip community-list expanded c66 permit 18 ^65000:3_0:83_0:17$ ip community-list expanded c66 permit 19 ^65000:3_0:84_0:18$ ip community-list expanded c66 permit 20 ^65000:3_0:85_0:19$ ip community-list expanded c66 permit 21 ^65000:3_0:86_0:20$ ip community-list expanded c66 permit 22 ^65000:3_0:87_0:21$ ip community-list expanded c66 permit 23 ^65000:3_0:88_0:22$ ip community-list expanded c66 permit 24 ^65000:3_0:89_0:23$ ip community-list expanded c66 permit 25 ^65000:3_0:90_0:24$ ip community-list expanded c66 permit 26 ^65000:3_0:91_0:25$ ip community-list expanded c66 permit 27 ^65000:3_0:92_0:26$ ip community-list expanded c66 permit 28 ^65000:3_0:93_0:27$ ip community-list expanded c66 permit 29 ^65000:3_0:94_0:28$ ip community-list expanded c66 permit 30 ^65000:3_0:95_0:29$ ip community-list expanded c66 permit 31 ^65000:3_0:96_0:30$ ip community-list expanded c66 permit 32 ^65000:3_0:97_0:31$ ip community-list expanded c66 permit 33 ^65000:3_0:98_0:32$ ip community-list expanded c66 permit 34 ^65000:3_0:99_0:33$ ip community-list expanded c66 permit 35 ^65000:3_0:100_0:34$ ip community-list expanded c66 permit 36 ^65000:3_0:101_0:35$ ip community-list expanded c66 permit 37 ^65000:3_0:102_0:36$ ip community-list expanded c66 permit 38 ^65000:3_0:103_0:37$ ip community-list expanded c66 permit 39 ^65000:3_0:104_0:38$ ip community-list expanded c66 permit 40 ^65000:3_0:105_0:39$ ip community-list expanded c66 permit 41 ^65000:3_0:106_0:40$ ip community-list expanded c66 permit 42 ^65000:3_0:107_0:41$ ip community-list expanded c66 permit 43 ^65000:3_0:108_0:42$ ip community-list expanded c66 permit 44 ^65000:3_0:109_0:43$ ip community-list expanded c66 permit 45 ^65000:3_0:110_0:44$ ip community-list expanded c66 permit 46 ^65000:3_0:111_0:45$ ip community-list expanded c66 permit 47 ^65000:3_0:112_0:46$ ip community-list expanded c66 permit 48 ^65000:3_0:113_0:47$ ip community-list expanded c66 permit 49 ^65000:3_0:114_0:48$ ip community-list expanded c66 permit 50 ^65000:3_0:115_0:49$ ip community-list expanded c66 permit 51 ^65000:3_0:116_0:50$ ip community-list expanded c66 permit 52 ^65000:3_0:117_0:51$ ip community-list expanded c66 permit 53 ^65000:3_0:118_0:52$ ip community-list expanded c66 permit 54 ^65000:3_0:119_0:53$ ip community-list expanded c66 permit 55 ^65000:3_0:120_0:54$ ip community-list expanded c66 permit 56 ^65000:3_0:121_0:55$ ip community-list expanded c66 permit 57 ^65000:3_0:122_0:56$ ip community-list expanded c66 permit 58 ^65000:3_0:123_0:57$ ip community-list expanded c66 permit 59 ^65000:3_0:124_0:58$ ip community-list expanded c66 permit 60 ^65000:3_0:125_0:59$ ip community-list expanded c66 permit 61 ^65000:3_0:126_0:60$ ip community-list expanded c66 permit 62 ^65000:3_0:127_0:61$ ip community-list expanded c66 permit 63 ^65000:3_0:128_0:62$ ip community-list expanded c66 permit 64 ^65000:3_0:129_0:63$ ip community-list expanded c66 permit 65 ^65000:3_0:130_0:64$ ip community-list expanded c66 permit 66 ^65000:3_0:131_0:65$ ip community-list expanded c66 permit 67 ^65000:4_0:132_0:2$ ip community-list expanded c66 permit 68 ^65000:3_0:132_0:66$ ip community-list expanded c66 permit 69 ^65000:4_0:133_0:2$ ip community-list expanded c66 permit 70 ^65000:3_0:133_0:67$ ip community-list expanded c66 permit 71 ^65000:3_0:134_0:68$ ip community-list expanded c66 permit 72 ^65000:3_0:135_0:69$ ip community-list expanded c66 permit 73 ^65000:3_0:136_0:70$ ip community-list expanded c66 permit 74 ^65000:3_0:137_0:71$ ip community-list expanded c66 permit 75 ^65000:3_0:138_0:72$ ip community-list expanded c66 permit 76 ^65000:3_0:139_0:73$ ip community-list expanded c66 permit 77 ^65000:3_0:140_0:74$ ip community-list expanded c66 permit 78 ^65000:3_0:141_0:75$ ip community-list expanded c66 permit 79 ^65000:3_0:142_0:76$ ip community-list expanded c66 permit 80 ^65000:3_0:143_0:77$ ip community-list expanded c66 permit 81 ^65000:3_0:144_0:78$ ip community-list expanded c66 permit 82 ^65000:3_0:145_0:79$ ip community-list expanded c66 permit 83 ^65000:3_0:146_0:80$ ip community-list expanded c66 permit 84 ^65000:3_0:147_0:81$ ip community-list expanded c66 permit 85 ^65000:3_0:148_0:82$ ip community-list expanded c66 permit 86 ^65000:3_0:149_0:83$ ip community-list expanded c66 permit 87 ^65000:3_0:150_0:84$ ip community-list expanded c66 permit 88 ^65000:3_0:151_0:85$ ip community-list expanded c66 permit 89 ^65000:3_0:152_0:86$ ip community-list expanded c66 permit 90 ^65000:3_0:153_0:87$ ip community-list expanded c66 permit 91 ^65000:3_0:154_0:88$ ip community-list expanded c66 permit 92 ^65000:3_0:155_0:89$ ip community-list expanded c66 permit 93 ^65000:3_0:156_0:90$ ip community-list expanded c66 permit 94 ^65000:3_0:157_0:91$ ip community-list expanded c66 permit 95 ^65000:3_0:158_0:92$ ip community-list expanded c66 permit 96 ^65000:3_0:159_0:93$ ip community-list expanded c66 permit 97 ^65000:3_0:160_0:94$ ip community-list expanded c66 permit 98 ^65000:3_0:161_0:95$ ip community-list expanded c66 permit 99 ^65000:3_0:162_0:96$ ip community-list expanded c66 permit 100 ^65000:3_0:163_0:97$ ip community-list expanded c66 permit 101 ^65000:3_0:164_0:98$ ip community-list expanded c66 permit 102 ^65000:3_0:165_0:99$ ip community-list expanded c66 permit 103 ^65000:3_0:166_0:100$ ip community-list expanded c66 permit 104 ^65000:3_0:167_0:101$ ip community-list expanded c66 permit 105 ^65000:3_0:168_0:102$ ip community-list expanded c66 permit 106 ^65000:3_0:169_0:103$ ip community-list expanded c66 permit 107 ^65000:3_0:170_0:104$ ip community-list expanded c66 permit 108 ^65000:3_0:171_0:105$ ip community-list expanded c66 permit 109 ^65000:3_0:172_0:106$ ip community-list expanded c66 permit 110 ^65000:3_0:173_0:107$ ip community-list expanded c66 permit 111 ^65000:3_0:174_0:108$ ip community-list expanded c66 permit 112 ^65000:3_0:175_0:109$ ip community-list expanded c66 permit 113 ^65000:3_0:176_0:110$ ip community-list expanded c66 permit 114 ^65000:3_0:177_0:111$ ip community-list expanded c66 permit 115 ^65000:3_0:178_0:112$ ip community-list expanded c66 permit 116 ^65000:3_0:179_0:113$ ip community-list expanded c66 permit 117 ^65000:3_0:180_0:114$ ip community-list expanded c66 permit 118 ^65000:3_0:181_0:115$ ip community-list expanded c66 permit 119 ^65000:3_0:182_0:116$ ip community-list expanded c66 permit 120 ^65000:3_0:183_0:117$ ip community-list expanded c66 permit 121 ^65000:3_0:184_0:118$ ip community-list expanded c66 permit 122 ^65000:3_0:185_0:119$ ip community-list expanded c66 permit 123 ^65000:3_0:186_0:120$ ip community-list expanded c66 permit 124 ^65000:3_0:187_0:121$ ip community-list expanded c66 permit 125 ^65000:3_0:188_0:122$ ip community-list expanded c66 permit 126 ^65000:3_0:189_0:123$ ip community-list expanded c66 permit 127 ^65000:3_0:190_0:124$ ip community-list expanded c66 permit 128 ^65000:3_0:191_0:125$ ip community-list expanded c66 permit 129 ^65000:3_0:192_0:126$ ip community-list expanded c66 permit 130 ^65000:3_0:193_0:127$ ip community-list expanded c66 permit 131 ^65000:3_0:194_0:128$ ip community-list expanded c66 permit 132 ^65000:3_0:195_0:129$ ip community-list expanded c66 permit 133 ^65000:3_0:196_0:130$ ip community-list expanded c66 permit 134 ^65000:3_0:197_0:131$ ip community-list expanded c66 permit 135 ^65000:4_0:198_0:3$ ip community-list expanded c66 permit 136 ^65000:3_0:198_0:132$ ip community-list expanded c66 permit 137 ^65000:4_0:199_0:3$ ip community-list expanded c66 permit 138 ^65000:3_0:199_0:133$ ip community-list expanded c66 permit 139 ^65000:4_0:200_0:3$ ip community-list expanded c66 permit 140 ^65000:3_0:200_0:134$ ip community-list expanded c66 permit 141 ^65000:3_0:201_0:135$ ip community-list expanded c66 permit 142 ^65000:3_0:202_0:136$ ip community-list expanded c66 permit 143 ^65000:3_0:203_0:137$ ip community-list expanded c66 permit 144 ^65000:3_0:204_0:138$ ip community-list expanded c66 permit 145 ^65000:3_0:205_0:139$ ip community-list expanded c66 permit 146 ^65000:3_0:206_0:140$ ip community-list expanded c66 permit 147 ^65000:3_0:207_0:141$ ip community-list expanded c66 permit 148 ^65000:3_0:208_0:142$ ip community-list expanded c66 permit 149 ^65000:3_0:209_0:143$ ip community-list expanded c66 permit 150 ^65000:3_0:210_0:144$ ip community-list expanded c66 permit 151 ^65000:3_0:211_0:145$ ip community-list expanded c66 permit 152 ^65000:3_0:212_0:146$ ip community-list expanded c66 permit 153 ^65000:3_0:213_0:147$ ip community-list expanded c66 permit 154 ^65000:3_0:214_0:148$ ip community-list expanded c66 permit 155 ^65000:3_0:215_0:149$ ip community-list expanded c66 permit 156 ^65000:3_0:216_0:150$ ip community-list expanded c66 permit 157 ^65000:3_0:217_0:151$ ip community-list expanded c66 permit 158 ^65000:3_0:218_0:152$ ip community-list expanded c66 permit 159 ^65000:3_0:219_0:153$ ip community-list expanded c66 permit 160 ^65000:3_0:220_0:154$ ip community-list expanded c66 permit 161 ^65000:3_0:221_0:155$ ip community-list expanded c66 permit 162 ^65000:3_0:222_0:156$ ip community-list expanded c66 permit 163 ^65000:3_0:223_0:157$ ip community-list expanded c66 permit 164 ^65000:3_0:224_0:158$ ip community-list expanded c66 permit 165 ^65000:3_0:225_0:159$ ip community-list expanded c66 permit 166 ^65000:3_0:226_0:160$ ip community-list expanded c66 permit 167 ^65000:3_0:227_0:161$ ip community-list expanded c66 permit 168 ^65000:3_0:228_0:162$ ip community-list expanded c66 permit 169 ^65000:3_0:229_0:163$ ip community-list expanded c66 permit 170 ^65000:3_0:230_0:164$ ip community-list expanded c66 permit 171 ^65000:3_0:231_0:165$ ip community-list expanded c66 permit 172 ^65000:3_0:232_0:166$ ip community-list expanded c66 permit 173 ^65000:3_0:233_0:167$ ip community-list expanded c66 permit 174 ^65000:3_0:234_0:168$ ip community-list expanded c66 permit 175 ^65000:3_0:235_0:169$ ip community-list expanded c66 permit 176 ^65000:3_0:236_0:170$ ip community-list expanded c66 permit 177 ^65000:3_0:237_0:171$ ip community-list expanded c66 permit 178 ^65000:3_0:238_0:172$ ip community-list expanded c66 permit 179 ^65000:3_0:239_0:173$ ip community-list expanded c66 permit 180 ^65000:3_0:240_0:174$ ip community-list expanded c66 permit 181 ^65000:3_0:241_0:175$ ip community-list expanded c66 permit 182 ^65000:3_0:242_0:176$ ip community-list expanded c66 permit 183 ^65000:3_0:243_0:177$ ip community-list expanded c66 permit 184 ^65000:3_0:244_0:178$ ip community-list expanded c66 permit 185 ^65000:3_0:245_0:179$ ip community-list expanded c66 permit 186 ^65000:3_0:246_0:180$ ip community-list expanded c66 permit 187 ^65000:3_0:247_0:181$ ip community-list expanded c66 permit 188 ^65000:3_0:248_0:182$ ip community-list expanded c66 permit 189 ^65000:3_0:249_0:183$ ip community-list expanded c66 permit 190 ^65000:3_0:250_0:184$ ip community-list expanded c66 permit 191 ^65000:3_0:251_0:185$ ip community-list expanded c66 permit 192 ^65000:3_0:252_0:186$ ip community-list expanded c66 permit 193 ^65000:3_0:253_0:187$ ip community-list expanded c66 permit 194 ^65000:3_0:254_0:188$ ip community-list expanded c66 permit 195 ^65000:3_0:255_0:189$ ip community-list expanded c66 permit 196 ^65000:3_0:256_0:190$ route-map calculator permit 34143 match community 1_1_65 2_1_66 2_2_33 1_2_64 2_3_22 set community 0:66 route-map calculator permit 34144 match community 1_3_63 1_4_62 1_5_61 2_6_11 1_6_60 set community 0:66 route-map calculator permit 34145 match community 1_7_59 1_8_58 1_9_57 1_10_56 1_11_55 set community 0:66 route-map calculator permit 34146 match community 1_12_54 1_13_53 1_14_52 1_15_51 1_16_50 set community 0:66 route-map calculator permit 34147 match community 1_17_49 1_18_48 1_19_47 1_20_46 1_21_45 set community 0:66 route-map calculator permit 34148 match community 1_22_44 1_23_43 1_24_42 1_25_41 1_26_40 set community 0:66 route-map calculator permit 34149 match community 1_27_39 1_28_38 1_29_37 1_30_36 1_31_35 set community 0:66 route-map calculator permit 34150 match community 1_32_34 1_33_33 c4_66_1 c3_67_1 c3_68_2 set community 0:66 route-map calculator permit 34151 match community c3_69_3 c3_70_4 c3_71_5 c3_72_6 c3_73_7 set community 0:66 route-map calculator permit 34152 match community c3_74_8 c3_75_9 c3_76_10 c3_77_11 c3_78_12 set community 0:66 route-map calculator permit 34153 match community c3_79_13 c3_80_14 c3_81_15 c3_82_16 c3_83_17 set community 0:66 route-map calculator permit 34154 match community c3_84_18 c3_85_19 c3_86_20 c3_87_21 c3_88_22 set community 0:66 route-map calculator permit 34155 match community c3_89_23 c3_90_24 c3_91_25 c3_92_26 c3_93_27 set community 0:66 route-map calculator permit 34156 match community c3_94_28 c3_95_29 c3_96_30 c3_97_31 c3_98_32 set community 0:66 route-map calculator permit 34157 match community c3_99_33 c3_100_34 c3_101_35 c3_102_36 c3_103_37 set community 0:66 route-map calculator permit 34158 match community c3_104_38 c3_105_39 c3_106_40 c3_107_41 c3_108_42 set community 0:66 route-map calculator permit 34159 match community c3_109_43 c3_110_44 c3_111_45 c3_112_46 c3_113_47 set community 0:66 route-map calculator permit 34160 match community c3_114_48 c3_115_49 c3_116_50 c3_117_51 c3_118_52 set community 0:66 route-map calculator permit 34161 match community c3_119_53 c3_120_54 c3_121_55 c3_122_56 c3_123_57 set community 0:66 route-map calculator permit 34162 match community c3_124_58 c3_125_59 c3_126_60 c3_127_61 c3_128_62 set community 0:66 route-map calculator permit 34163 match community c3_129_63 c3_130_64 c3_131_65 c4_132_2 c3_132_66 set community 0:66 route-map calculator permit 34164 match community c4_133_2 c3_133_67 c3_134_68 c3_135_69 c3_136_70 set community 0:66 route-map calculator permit 34165 match community c3_137_71 c3_138_72 c3_139_73 c3_140_74 c3_141_75 set community 0:66 route-map calculator permit 34166 match community c3_142_76 c3_143_77 c3_144_78 c3_145_79 c3_146_80 set community 0:66 route-map calculator permit 34167 match community c3_147_81 c3_148_82 c3_149_83 c3_150_84 c3_151_85 set community 0:66 route-map calculator permit 34168 match community c3_152_86 c3_153_87 c3_154_88 c3_155_89 c3_156_90 set community 0:66 route-map calculator permit 34169 match community c3_157_91 c3_158_92 c3_159_93 c3_160_94 c3_161_95 set community 0:66 route-map calculator permit 34170 match community c3_162_96 c3_163_97 c3_164_98 c3_165_99 c3_166_100 set community 0:66 route-map calculator permit 34171 match community c3_167_101 c3_168_102 c3_169_103 c3_170_104 c3_171_105 set community 0:66 route-map calculator permit 34172 match community c3_172_106 c3_173_107 c3_174_108 c3_175_109 c3_176_110 set community 0:66 route-map calculator permit 34173 match community c3_177_111 c3_178_112 c3_179_113 c3_180_114 c3_181_115 set community 0:66 route-map calculator permit 34174 match community c3_182_116 c3_183_117 c3_184_118 c3_185_119 c3_186_120 set community 0:66 route-map calculator permit 34175 match community c3_187_121 c3_188_122 c3_189_123 c3_190_124 c3_191_125 set community 0:66 route-map calculator permit 34176 match community c3_192_126 c3_193_127 c3_194_128 c3_195_129 c3_196_130 set community 0:66 route-map calculator permit 34177 match community c3_197_131 c4_198_3 c3_198_132 c4_199_3 c3_199_133 set community 0:66 route-map calculator permit 34178 match community c4_200_3 c3_200_134 c3_201_135 c3_202_136 c3_203_137 set community 0:66 route-map calculator permit 34179 match community c3_204_138 c3_205_139 c3_206_140 c3_207_141 c3_208_142 set community 0:66 route-map calculator permit 34180 match community c3_209_143 c3_210_144 c3_211_145 c3_212_146 c3_213_147 set community 0:66 route-map calculator permit 34181 match community c3_214_148 c3_215_149 c3_216_150 c3_217_151 c3_218_152 set community 0:66 route-map calculator permit 34182 match community c3_219_153 c3_220_154 c3_221_155 c3_222_156 c3_223_157 set community 0:66 route-map calculator permit 34183 match community c3_224_158 c3_225_159 c3_226_160 c3_227_161 c3_228_162 set community 0:66 route-map calculator permit 34184 match community c3_229_163 c3_230_164 c3_231_165 c3_232_166 c3_233_167 set community 0:66 route-map calculator permit 34185 match community c3_234_168 c3_235_169 c3_236_170 c3_237_171 c3_238_172 set community 0:66 route-map calculator permit 34186 match community c3_239_173 c3_240_174 c3_241_175 c3_242_176 c3_243_177 set community 0:66 route-map calculator permit 34187 match community c3_244_178 c3_245_179 c3_246_180 c3_247_181 c3_248_182 set community 0:66 route-map calculator permit 34188 match community c3_249_183 c3_250_184 c3_251_185 c3_252_186 c3_253_187 set community 0:66 route-map calculator permit 34189 match community c3_254_188 c3_255_189 c3_256_190 set community 0:66 ip community-list standard 2_58_186 permit 65000:2 0:58 0:186 ip community-list standard 2_62_174 permit 65000:2 0:62 0:174 ip community-list standard 2_87_124 permit 65000:2 0:87 0:124 ip community-list standard 2_93_116 permit 65000:2 0:93 0:116 route-map calculator permit 34190 match community 2_58_186 2_62_174 2_87_124 2_93_116 set community 0:10788 ip community-list standard 2_65_67 permit 65000:2 0:65 0:67 route-map calculator permit 34191 match community 2_65_67 set community 0:4355 ip community-list standard 2_68_236 permit 65000:2 0:68 0:236 ip community-list standard 2_118_136 permit 65000:2 0:118 0:136 route-map calculator permit 34192 match community 2_68_236 2_118_136 set community 0:16048 ip community-list standard 2_193_242 permit 65000:2 0:193 0:242 route-map calculator permit 34193 match community 2_193_242 set community 0:46706 ip community-list standard 2_183_230 permit 65000:2 0:183 0:230 route-map calculator permit 34194 match community 2_183_230 set community 0:42090 ip community-list standard 2_30_248 permit 65000:2 0:30 0:248 ip community-list standard 2_31_240 permit 65000:2 0:31 0:240 ip community-list standard 2_40_186 permit 65000:2 0:40 0:186 ip community-list standard 2_48_155 permit 65000:2 0:48 0:155 ip community-list standard 2_60_124 permit 65000:2 0:60 0:124 ip community-list standard 2_62_120 permit 65000:2 0:62 0:120 ip community-list standard 2_80_93 permit 65000:2 0:80 0:93 route-map calculator permit 34195 match community 2_30_248 2_31_240 2_40_186 2_48_155 2_60_124 set community 0:7440 route-map calculator permit 34196 match community 2_62_120 2_80_93 set community 0:7440 ip community-list standard 2_83_176 permit 65000:2 0:83 0:176 ip community-list standard 2_88_166 permit 65000:2 0:88 0:166 route-map calculator permit 34197 match community 2_83_176 2_88_166 set community 0:14608 ip community-list standard 2_164_179 permit 65000:2 0:164 0:179 route-map calculator permit 34198 match community 2_164_179 set community 0:29356 ip community-list standard 2_28_157 permit 65000:2 0:28 0:157 route-map calculator permit 34199 match community 2_28_157 set community 0:4396 ip community-list standard 2_204_238 permit 65000:2 0:204 0:238 route-map calculator permit 34200 match community 2_204_238 set community 0:48552 ip community-list standard 2_158_188 permit 65000:2 0:158 0:188 route-map calculator permit 34201 match community 2_158_188 set community 0:29704 ip community-list standard 2_155_256 permit 65000:2 0:155 0:256 ip community-list standard 2_160_248 permit 65000:2 0:160 0:248 route-map calculator permit 34202 match community 2_155_256 2_160_248 set community 0:39680 ip community-list standard 2_111_199 permit 65000:2 0:111 0:199 route-map calculator permit 34203 match community 2_111_199 set community 0:22089 ip community-list standard 2_100_197 permit 65000:2 0:100 0:197 route-map calculator permit 34204 match community 2_100_197 set community 0:19700 ip community-list standard 2_87_153 permit 65000:2 0:87 0:153 route-map calculator permit 34205 match community 2_87_153 set community 0:13311 ip community-list standard 2_69_109 permit 65000:2 0:69 0:109 route-map calculator permit 34206 match community 2_69_109 set community 0:7521 ip community-list standard 2_6_192 permit 65000:2 0:6 0:192 ip community-list standard 2_8_144 permit 65000:2 0:8 0:144 ip community-list standard 2_9_128 permit 65000:2 0:9 0:128 ip community-list standard 2_12_96 permit 65000:2 0:12 0:96 ip community-list standard 2_16_72 permit 65000:2 0:16 0:72 ip community-list standard 2_18_64 permit 65000:2 0:18 0:64 ip community-list standard 2_24_48 permit 65000:2 0:24 0:48 ip community-list standard 2_32_36 permit 65000:2 0:32 0:36 route-map calculator permit 34207 match community 2_6_192 2_8_144 2_9_128 2_12_96 2_16_72 set community 0:1152 route-map calculator permit 34208 match community 2_18_64 2_24_48 2_32_36 set community 0:1152 ip community-list standard 2_118_181 permit 65000:2 0:118 0:181 route-map calculator permit 34209 match community 2_118_181 set community 0:21358 ip community-list standard 2_180_239 permit 65000:2 0:180 0:239 route-map calculator permit 34210 match community 2_180_239 set community 0:43020 ip community-list standard 2_72_244 permit 65000:2 0:72 0:244 ip community-list standard 2_96_183 permit 65000:2 0:96 0:183 ip community-list standard 2_122_144 permit 65000:2 0:122 0:144 route-map calculator permit 34211 match community 2_72_244 2_96_183 2_122_144 set community 0:17568 ip community-list standard 2_137_248 permit 65000:2 0:137 0:248 route-map calculator permit 34212 match community 2_137_248 set community 0:33976 ip community-list standard 2_173_249 permit 65000:2 0:173 0:249 route-map calculator permit 34213 match community 2_173_249 set community 0:43077 ip community-list standard 2_90_247 permit 65000:2 0:90 0:247 ip community-list standard 2_95_234 permit 65000:2 0:95 0:234 ip community-list standard 2_114_195 permit 65000:2 0:114 0:195 ip community-list standard 2_117_190 permit 65000:2 0:117 0:190 ip community-list standard 2_130_171 permit 65000:2 0:130 0:171 route-map calculator permit 34214 match community 2_90_247 2_95_234 2_114_195 2_117_190 2_130_171 set community 0:22230 ip community-list standard 2_25_67 permit 65000:2 0:25 0:67 route-map calculator permit 34215 match community 2_25_67 set community 0:1675 ip community-list standard 2_132_149 permit 65000:2 0:132 0:149 route-map calculator permit 34216 match community 2_132_149 set community 0:19668 ip community-list standard 2_66_244 permit 65000:2 0:66 0:244 ip community-list standard 2_88_183 permit 65000:2 0:88 0:183 ip community-list standard 2_122_132 permit 65000:2 0:122 0:132 route-map calculator permit 34217 match community 2_66_244 2_88_183 2_122_132 set community 0:16104 ip community-list standard 2_137_146 permit 65000:2 0:137 0:146 route-map calculator permit 34218 match community 2_137_146 set community 0:20002 ip community-list standard 2_22_237 permit 65000:2 0:22 0:237 ip community-list standard 2_33_158 permit 65000:2 0:33 0:158 ip community-list standard 2_66_79 permit 65000:2 0:66 0:79 route-map calculator permit 34219 match community 2_22_237 2_33_158 2_66_79 set community 0:5214 ip community-list standard 2_80_244 permit 65000:2 0:80 0:244 ip community-list standard 2_122_160 permit 65000:2 0:122 0:160 route-map calculator permit 34220 match community 2_80_244 2_122_160 set community 0:19520 ip community-list standard 2_60_217 permit 65000:2 0:60 0:217 ip community-list standard 2_62_210 permit 65000:2 0:62 0:210 ip community-list standard 2_70_186 permit 65000:2 0:70 0:186 ip community-list standard 2_84_155 permit 65000:2 0:84 0:155 ip community-list standard 2_93_140 permit 65000:2 0:93 0:140 ip community-list standard 2_105_124 permit 65000:2 0:105 0:124 route-map calculator permit 34221 match community 2_60_217 2_62_210 2_70_186 2_84_155 2_93_140 set community 0:13020 route-map calculator permit 34222 match community 2_105_124 set community 0:13020 ip community-list standard 2_17_101 permit 65000:2 0:17 0:101 route-map calculator permit 34223 match community 2_17_101 set community 0:1717 ip community-list standard 2_244_250 permit 65000:2 0:244 0:250 route-map calculator permit 34224 match community 2_244_250 set community 0:61000 ip community-list standard 2_19_181 permit 65000:2 0:19 0:181 route-map calculator permit 34225 match community 2_19_181 set community 0:3439 ip community-list standard 2_146_184 permit 65000:2 0:146 0:184 route-map calculator permit 34226 match community 2_146_184 set community 0:26864 ip community-list standard 2_89_230 permit 65000:2 0:89 0:230 ip community-list standard 2_115_178 permit 65000:2 0:115 0:178 route-map calculator permit 34227 match community 2_89_230 2_115_178 set community 0:20470 ip community-list standard 2_17_148 permit 65000:2 0:17 0:148 ip community-list standard 2_34_74 permit 65000:2 0:34 0:74 ip community-list standard 2_37_68 permit 65000:2 0:37 0:68 route-map calculator permit 34228 match community 2_17_148 2_34_74 2_37_68 set community 0:2516 ip community-list standard 2_8_208 permit 65000:2 0:8 0:208 ip community-list standard 2_13_128 permit 65000:2 0:13 0:128 ip community-list standard 2_16_104 permit 65000:2 0:16 0:104 ip community-list standard 2_26_64 permit 65000:2 0:26 0:64 ip community-list standard 2_32_52 permit 65000:2 0:32 0:52 route-map calculator permit 34229 match community 2_8_208 2_13_128 2_16_104 2_26_64 2_32_52 set community 0:1664 ip community-list standard 2_19_202 permit 65000:2 0:19 0:202 ip community-list standard 2_38_101 permit 65000:2 0:38 0:101 route-map calculator permit 34230 match community 2_19_202 2_38_101 set community 0:3838 ip community-list standard 2_7_142 permit 65000:2 0:7 0:142 ip community-list standard 2_14_71 permit 65000:2 0:14 0:71 route-map calculator permit 34231 match community 2_7_142 2_14_71 set community 0:994 ip community-list standard 2_143_251 permit 65000:2 0:143 0:251 route-map calculator permit 34232 match community 2_143_251 set community 0:35893 ip community-list standard 2_66_246 permit 65000:2 0:66 0:246 ip community-list standard 2_82_198 permit 65000:2 0:82 0:198 ip community-list standard 2_99_164 permit 65000:2 0:99 0:164 ip community-list standard 2_123_132 permit 65000:2 0:123 0:132 route-map calculator permit 34233 match community 2_66_246 2_82_198 2_99_164 2_123_132 set community 0:16236 ip community-list standard 2_78_251 permit 65000:2 0:78 0:251 route-map calculator permit 34234 match community 2_78_251 set community 0:19578 ip community-list standard 2_32_229 permit 65000:2 0:32 0:229 route-map calculator permit 34235 match community 2_32_229 set community 0:7328 ip community-list standard 2_221_237 permit 65000:2 0:221 0:237 route-map calculator permit 34236 match community 2_221_237 set community 0:52377 ip community-list standard 2_110_137 permit 65000:2 0:110 0:137 route-map calculator permit 34237 match community 2_110_137 set community 0:15070 ip community-list standard 2_12_254 permit 65000:2 0:12 0:254 ip community-list standard 2_24_127 permit 65000:2 0:24 0:127 route-map calculator permit 34238 match community 2_12_254 2_24_127 set community 0:3048 ip community-list standard 2_217_230 permit 65000:2 0:217 0:230 route-map calculator permit 34239 match community 2_217_230 set community 0:49910 ip community-list standard 2_41_219 permit 65000:2 0:41 0:219 ip community-list standard 2_73_123 permit 65000:2 0:73 0:123 route-map calculator permit 34240 match community 2_41_219 2_73_123 set community 0:8979 ip community-list standard 2_77_234 permit 65000:2 0:77 0:234 ip community-list standard 2_78_231 permit 65000:2 0:78 0:231 ip community-list standard 2_91_198 permit 65000:2 0:91 0:198 ip community-list standard 2_99_182 permit 65000:2 0:99 0:182 ip community-list standard 2_117_154 permit 65000:2 0:117 0:154 ip community-list standard 2_126_143 permit 65000:2 0:126 0:143 route-map calculator permit 34241 match community 2_77_234 2_78_231 2_91_198 2_99_182 2_117_154 set community 0:18018 route-map calculator permit 34242 match community 2_126_143 set community 0:18018 ip community-list standard 2_158_233 permit 65000:2 0:158 0:233 route-map calculator permit 34243 match community 2_158_233 set community 0:36814 ip community-list standard 2_172_193 permit 65000:2 0:172 0:193 route-map calculator permit 34244 match community 2_172_193 set community 0:33196 ip community-list standard 2_220_239 permit 65000:2 0:220 0:239 route-map calculator permit 34245 match community 2_220_239 set community 0:52580 ip community-list standard 2_143_240 permit 65000:2 0:143 0:240 ip community-list standard 2_156_220 permit 65000:2 0:156 0:220 ip community-list standard 2_165_208 permit 65000:2 0:165 0:208 ip community-list standard 2_176_195 permit 65000:2 0:176 0:195 route-map calculator permit 34246 match community 2_143_240 2_156_220 2_165_208 2_176_195 set community 0:34320 ip community-list standard 2_89_127 permit 65000:2 0:89 0:127 route-map calculator permit 34247 match community 2_89_127 set community 0:11303 ip community-list standard 2_14_230 permit 65000:2 0:14 0:230 ip community-list standard 2_20_161 permit 65000:2 0:20 0:161 ip community-list standard 2_23_140 permit 65000:2 0:23 0:140 ip community-list standard 2_28_115 permit 65000:2 0:28 0:115 ip community-list standard 2_35_92 permit 65000:2 0:35 0:92 ip community-list standard 2_46_70 permit 65000:2 0:46 0:70 route-map calculator permit 34248 match community 2_14_230 2_20_161 2_23_140 2_28_115 2_35_92 set community 0:3220 route-map calculator permit 34249 match community 2_46_70 set community 0:3220 ip community-list standard 2_207_256 permit 65000:2 0:207 0:256 route-map calculator permit 34250 match community 2_207_256 set community 0:52992 ip community-list standard 2_27_211 permit 65000:2 0:27 0:211 route-map calculator permit 34251 match community 2_27_211 set community 0:5697 ip community-list standard 2_71_95 permit 65000:2 0:71 0:95 route-map calculator permit 34252 match community 2_71_95 set community 0:6745 ip community-list standard 2_70_163 permit 65000:2 0:70 0:163 route-map calculator permit 34253 match community 2_70_163 set community 0:11410 ip community-list standard 2_91_208 permit 65000:2 0:91 0:208 ip community-list standard 2_104_182 permit 65000:2 0:104 0:182 ip community-list standard 2_112_169 permit 65000:2 0:112 0:169 route-map calculator permit 34254 match community 2_91_208 2_104_182 2_112_169 set community 0:18928 ip community-list standard 2_105_127 permit 65000:2 0:105 0:127 route-map calculator permit 34255 match community 2_105_127 set community 0:13335 ip community-list standard 2_128_239 permit 65000:2 0:128 0:239 route-map calculator permit 34256 match community 2_128_239 set community 0:30592 ip community-list standard 2_83_127 permit 65000:2 0:83 0:127 route-map calculator permit 34257 match community 2_83_127 set community 0:10541 ip community-list standard 2_236_254 permit 65000:2 0:236 0:254 route-map calculator permit 34258 match community 2_236_254 set community 0:59944 ip community-list standard 2_58_223 permit 65000:2 0:58 0:223 route-map calculator permit 34259 match community 2_58_223 set community 0:12934 ip community-list standard 2_5_222 permit 65000:2 0:5 0:222 ip community-list standard 2_6_185 permit 65000:2 0:6 0:185 ip community-list standard 2_10_111 permit 65000:2 0:10 0:111 ip community-list standard 2_15_74 permit 65000:2 0:15 0:74 ip community-list standard 2_30_37 permit 65000:2 0:30 0:37 route-map calculator permit 34260 match community 2_5_222 2_6_185 2_10_111 2_15_74 2_30_37 set community 0:1110 ip community-list standard 2_43_209 permit 65000:2 0:43 0:209 route-map calculator permit 34261 match community 2_43_209 set community 0:8987 ip community-list standard 2_189_206 permit 65000:2 0:189 0:206 route-map calculator permit 34262 match community 2_189_206 set community 0:38934 ip community-list standard 2_56_166 permit 65000:2 0:56 0:166 ip community-list standard 2_83_112 permit 65000:2 0:83 0:112 route-map calculator permit 34263 match community 2_56_166 2_83_112 set community 0:9296 ip community-list standard 2_54_252 permit 65000:2 0:54 0:252 ip community-list standard 2_56_243 permit 65000:2 0:56 0:243 ip community-list standard 2_63_216 permit 65000:2 0:63 0:216 ip community-list standard 2_72_189 permit 65000:2 0:72 0:189 ip community-list standard 2_81_168 permit 65000:2 0:81 0:168 ip community-list standard 2_84_162 permit 65000:2 0:84 0:162 ip community-list standard 2_108_126 permit 65000:2 0:108 0:126 route-map calculator permit 34264 match community 2_54_252 2_56_243 2_63_216 2_72_189 2_81_168 set community 0:13608 route-map calculator permit 34265 match community 2_84_162 2_108_126 set community 0:13608 ip community-list standard 2_156_182 permit 65000:2 0:156 0:182 ip community-list standard 2_168_169 permit 65000:2 0:168 0:169 route-map calculator permit 34266 match community 2_156_182 2_168_169 set community 0:28392 ip community-list standard 2_87_228 permit 65000:2 0:87 0:228 ip community-list standard 2_114_174 permit 65000:2 0:114 0:174 ip community-list standard 2_116_171 permit 65000:2 0:116 0:171 route-map calculator permit 34267 match community 2_87_228 2_114_174 2_116_171 set community 0:19836 ip community-list standard 2_131_201 permit 65000:2 0:131 0:201 route-map calculator permit 34268 match community 2_131_201 set community 0:26331 ip community-list standard 2_149_228 permit 65000:2 0:149 0:228 route-map calculator permit 34269 match community 2_149_228 set community 0:33972 ip community-list standard 2_93_129 permit 65000:2 0:93 0:129 route-map calculator permit 34270 match community 2_93_129 set community 0:11997 ip community-list standard 2_191_208 permit 65000:2 0:191 0:208 route-map calculator permit 34271 match community 2_191_208 set community 0:39728 ip community-list standard 2_132_233 permit 65000:2 0:132 0:233 route-map calculator permit 34272 match community 2_132_233 set community 0:30756 ip community-list standard 2_36_226 permit 65000:2 0:36 0:226 ip community-list standard 2_72_113 permit 65000:2 0:72 0:113 route-map calculator permit 34273 match community 2_36_226 2_72_113 set community 0:8136 ip community-list standard 2_39_193 permit 65000:2 0:39 0:193 route-map calculator permit 34274 match community 2_39_193 set community 0:7527 ip community-list standard 2_207_249 permit 65000:2 0:207 0:249 route-map calculator permit 34275 match community 2_207_249 set community 0:51543 ip community-list standard 2_71_175 permit 65000:2 0:71 0:175 route-map calculator permit 34276 match community 2_71_175 set community 0:12425 ip community-list standard 2_134_247 permit 65000:2 0:134 0:247 route-map calculator permit 34277 match community 2_134_247 set community 0:33098 ip community-list standard 2_134_233 permit 65000:2 0:134 0:233 route-map calculator permit 34278 match community 2_134_233 set community 0:31222 ip community-list standard 2_127_167 permit 65000:2 0:127 0:167 route-map calculator permit 34279 match community 2_127_167 set community 0:21209 ip community-list standard 2_78_245 permit 65000:2 0:78 0:245 ip community-list standard 2_91_210 permit 65000:2 0:91 0:210 ip community-list standard 2_98_195 permit 65000:2 0:98 0:195 ip community-list standard 2_105_182 permit 65000:2 0:105 0:182 ip community-list standard 2_130_147 permit 65000:2 0:130 0:147 route-map calculator permit 34280 match community 2_78_245 2_91_210 2_98_195 2_105_182 2_130_147 set community 0:19110 ip community-list standard 2_9_250 permit 65000:2 0:9 0:250 ip community-list standard 2_10_225 permit 65000:2 0:10 0:225 ip community-list standard 2_15_150 permit 65000:2 0:15 0:150 ip community-list standard 2_18_125 permit 65000:2 0:18 0:125 ip community-list standard 2_25_90 permit 65000:2 0:25 0:90 ip community-list standard 2_30_75 permit 65000:2 0:30 0:75 ip community-list standard 2_45_50 permit 65000:2 0:45 0:50 route-map calculator permit 34281 match community 2_9_250 2_10_225 2_15_150 2_18_125 2_25_90 set community 0:2250 route-map calculator permit 34282 match community 2_30_75 2_45_50 set community 0:2250 ip community-list standard 2_154_173 permit 65000:2 0:154 0:173 route-map calculator permit 34283 match community 2_154_173 set community 0:26642 ip community-list standard 2_4_190 permit 65000:2 0:4 0:190 ip community-list standard 2_5_152 permit 65000:2 0:5 0:152 ip community-list standard 2_8_95 permit 65000:2 0:8 0:95 ip community-list standard 2_10_76 permit 65000:2 0:10 0:76 ip community-list standard 2_19_40 permit 65000:2 0:19 0:40 ip community-list standard 2_20_38 permit 65000:2 0:20 0:38 route-map calculator permit 34284 match community 2_4_190 2_5_152 2_8_95 2_10_76 2_19_40 set community 0:760 route-map calculator permit 34285 match community 2_20_38 set community 0:760 ip community-list standard 1_1_11 permit 65000:1 0:1 0:11 ip community-list standard 2_1_12 permit 65000:2 0:1 0:12 ip community-list standard 2_2_6 permit 65000:2 0:2 0:6 ip community-list standard 1_2_10 permit 65000:1 0:2 0:10 ip community-list standard 2_3_4 permit 65000:2 0:3 0:4 ip community-list standard 1_3_9 permit 65000:1 0:3 0:9 ip community-list standard 1_4_8 permit 65000:1 0:4 0:8 ip community-list standard 1_5_7 permit 65000:1 0:5 0:7 ip community-list standard 1_6_6 permit 65000:1 0:6 0:6 ip community-list expanded c12 permit 1 ^65000:4_0:12_0:1$ ip community-list expanded c12 permit 2 ^65000:3_0:13_0:1$ ip community-list expanded c12 permit 3 ^65000:3_0:14_0:2$ ip community-list expanded c12 permit 4 ^65000:3_0:15_0:3$ ip community-list expanded c12 permit 5 ^65000:3_0:16_0:4$ ip community-list expanded c12 permit 6 ^65000:3_0:17_0:5$ ip community-list expanded c12 permit 7 ^65000:3_0:18_0:6$ ip community-list expanded c12 permit 8 ^65000:3_0:19_0:7$ ip community-list expanded c12 permit 9 ^65000:3_0:20_0:8$ ip community-list expanded c12 permit 10 ^65000:3_0:21_0:9$ ip community-list expanded c12 permit 11 ^65000:3_0:22_0:10$ ip community-list expanded c12 permit 12 ^65000:3_0:23_0:11$ ip community-list expanded c12 permit 13 ^65000:4_0:24_0:2$ ip community-list expanded c12 permit 14 ^65000:3_0:24_0:12$ ip community-list expanded c12 permit 15 ^65000:4_0:25_0:2$ ip community-list expanded c12 permit 16 ^65000:3_0:25_0:13$ ip community-list expanded c12 permit 17 ^65000:3_0:26_0:14$ ip community-list expanded c12 permit 18 ^65000:3_0:27_0:15$ ip community-list expanded c12 permit 19 ^65000:3_0:28_0:16$ ip community-list expanded c12 permit 20 ^65000:3_0:29_0:17$ ip community-list expanded c12 permit 21 ^65000:3_0:30_0:18$ ip community-list expanded c12 permit 22 ^65000:3_0:31_0:19$ ip community-list expanded c12 permit 23 ^65000:3_0:32_0:20$ ip community-list expanded c12 permit 24 ^65000:3_0:33_0:21$ ip community-list expanded c12 permit 25 ^65000:3_0:34_0:22$ ip community-list expanded c12 permit 26 ^65000:3_0:35_0:23$ ip community-list expanded c12 permit 27 ^65000:4_0:36_0:3$ ip community-list expanded c12 permit 28 ^65000:3_0:36_0:24$ ip community-list expanded c12 permit 29 ^65000:4_0:37_0:3$ ip community-list expanded c12 permit 30 ^65000:3_0:37_0:25$ ip community-list expanded c12 permit 31 ^65000:4_0:38_0:3$ ip community-list expanded c12 permit 32 ^65000:3_0:38_0:26$ ip community-list expanded c12 permit 33 ^65000:3_0:39_0:27$ ip community-list expanded c12 permit 34 ^65000:3_0:40_0:28$ ip community-list expanded c12 permit 35 ^65000:3_0:41_0:29$ ip community-list expanded c12 permit 36 ^65000:3_0:42_0:30$ ip community-list expanded c12 permit 37 ^65000:3_0:43_0:31$ ip community-list expanded c12 permit 38 ^65000:3_0:44_0:32$ ip community-list expanded c12 permit 39 ^65000:3_0:45_0:33$ ip community-list expanded c12 permit 40 ^65000:3_0:46_0:34$ ip community-list expanded c12 permit 41 ^65000:3_0:47_0:35$ ip community-list expanded c12 permit 42 ^65000:4_0:48_0:4$ ip community-list expanded c12 permit 43 ^65000:3_0:48_0:36$ ip community-list expanded c12 permit 44 ^65000:4_0:49_0:4$ ip community-list expanded c12 permit 45 ^65000:3_0:49_0:37$ ip community-list expanded c12 permit 46 ^65000:4_0:50_0:4$ ip community-list expanded c12 permit 47 ^65000:3_0:50_0:38$ ip community-list expanded c12 permit 48 ^65000:4_0:51_0:4$ ip community-list expanded c12 permit 49 ^65000:3_0:51_0:39$ ip community-list expanded c12 permit 50 ^65000:3_0:52_0:40$ ip community-list expanded c12 permit 51 ^65000:3_0:53_0:41$ ip community-list expanded c12 permit 52 ^65000:3_0:54_0:42$ ip community-list expanded c12 permit 53 ^65000:3_0:55_0:43$ ip community-list expanded c12 permit 54 ^65000:3_0:56_0:44$ ip community-list expanded c12 permit 55 ^65000:3_0:57_0:45$ ip community-list expanded c12 permit 56 ^65000:3_0:58_0:46$ ip community-list expanded c12 permit 57 ^65000:3_0:59_0:47$ ip community-list expanded c12 permit 58 ^65000:4_0:60_0:5$ ip community-list expanded c12 permit 59 ^65000:3_0:60_0:48$ ip community-list expanded c12 permit 60 ^65000:4_0:61_0:5$ ip community-list expanded c12 permit 61 ^65000:3_0:61_0:49$ ip community-list expanded c12 permit 62 ^65000:4_0:62_0:5$ ip community-list expanded c12 permit 63 ^65000:3_0:62_0:50$ ip community-list expanded c12 permit 64 ^65000:4_0:63_0:5$ ip community-list expanded c12 permit 65 ^65000:3_0:63_0:51$ ip community-list expanded c12 permit 66 ^65000:4_0:64_0:5$ ip community-list expanded c12 permit 67 ^65000:3_0:64_0:52$ ip community-list expanded c12 permit 68 ^65000:3_0:65_0:53$ ip community-list expanded c12 permit 69 ^65000:3_0:66_0:54$ ip community-list expanded c12 permit 70 ^65000:3_0:67_0:55$ ip community-list expanded c12 permit 71 ^65000:3_0:68_0:56$ ip community-list expanded c12 permit 72 ^65000:3_0:69_0:57$ ip community-list expanded c12 permit 73 ^65000:3_0:70_0:58$ ip community-list expanded c12 permit 74 ^65000:3_0:71_0:59$ ip community-list expanded c12 permit 75 ^65000:4_0:72_0:6$ ip community-list expanded c12 permit 76 ^65000:3_0:72_0:60$ ip community-list expanded c12 permit 77 ^65000:4_0:73_0:6$ ip community-list expanded c12 permit 78 ^65000:3_0:73_0:61$ ip community-list expanded c12 permit 79 ^65000:4_0:74_0:6$ ip community-list expanded c12 permit 80 ^65000:3_0:74_0:62$ ip community-list expanded c12 permit 81 ^65000:4_0:75_0:6$ ip community-list expanded c12 permit 82 ^65000:3_0:75_0:63$ ip community-list expanded c12 permit 83 ^65000:4_0:76_0:6$ ip community-list expanded c12 permit 84 ^65000:3_0:76_0:64$ ip community-list expanded c12 permit 85 ^65000:4_0:77_0:6$ ip community-list expanded c12 permit 86 ^65000:3_0:77_0:65$ ip community-list expanded c12 permit 87 ^65000:3_0:78_0:66$ ip community-list expanded c12 permit 88 ^65000:3_0:79_0:67$ ip community-list expanded c12 permit 89 ^65000:3_0:80_0:68$ ip community-list expanded c12 permit 90 ^65000:3_0:81_0:69$ ip community-list expanded c12 permit 91 ^65000:3_0:82_0:70$ ip community-list expanded c12 permit 92 ^65000:3_0:83_0:71$ ip community-list expanded c12 permit 93 ^65000:4_0:84_0:7$ ip community-list expanded c12 permit 94 ^65000:3_0:84_0:72$ ip community-list expanded c12 permit 95 ^65000:4_0:85_0:7$ ip community-list expanded c12 permit 96 ^65000:3_0:85_0:73$ ip community-list expanded c12 permit 97 ^65000:4_0:86_0:7$ ip community-list expanded c12 permit 98 ^65000:3_0:86_0:74$ ip community-list expanded c12 permit 99 ^65000:4_0:87_0:7$ ip community-list expanded c12 permit 100 ^65000:3_0:87_0:75$ ip community-list expanded c12 permit 101 ^65000:4_0:88_0:7$ ip community-list expanded c12 permit 102 ^65000:3_0:88_0:76$ ip community-list expanded c12 permit 103 ^65000:4_0:89_0:7$ ip community-list expanded c12 permit 104 ^65000:3_0:89_0:77$ ip community-list expanded c12 permit 105 ^65000:4_0:90_0:7$ ip community-list expanded c12 permit 106 ^65000:3_0:90_0:78$ ip community-list expanded c12 permit 107 ^65000:3_0:91_0:79$ ip community-list expanded c12 permit 108 ^65000:3_0:92_0:80$ ip community-list expanded c12 permit 109 ^65000:3_0:93_0:81$ ip community-list expanded c12 permit 110 ^65000:3_0:94_0:82$ ip community-list expanded c12 permit 111 ^65000:3_0:95_0:83$ ip community-list expanded c12 permit 112 ^65000:4_0:96_0:8$ ip community-list expanded c12 permit 113 ^65000:3_0:96_0:84$ ip community-list expanded c12 permit 114 ^65000:4_0:97_0:8$ ip community-list expanded c12 permit 115 ^65000:3_0:97_0:85$ ip community-list expanded c12 permit 116 ^65000:4_0:98_0:8$ ip community-list expanded c12 permit 117 ^65000:3_0:98_0:86$ ip community-list expanded c12 permit 118 ^65000:4_0:99_0:8$ ip community-list expanded c12 permit 119 ^65000:3_0:99_0:87$ ip community-list expanded c12 permit 120 ^65000:4_0:100_0:8$ ip community-list expanded c12 permit 121 ^65000:3_0:100_0:88$ ip community-list expanded c12 permit 122 ^65000:4_0:101_0:8$ ip community-list expanded c12 permit 123 ^65000:3_0:101_0:89$ ip community-list expanded c12 permit 124 ^65000:4_0:102_0:8$ ip community-list expanded c12 permit 125 ^65000:3_0:102_0:90$ ip community-list expanded c12 permit 126 ^65000:4_0:103_0:8$ ip community-list expanded c12 permit 127 ^65000:3_0:103_0:91$ ip community-list expanded c12 permit 128 ^65000:3_0:104_0:92$ ip community-list expanded c12 permit 129 ^65000:3_0:105_0:93$ ip community-list expanded c12 permit 130 ^65000:3_0:106_0:94$ ip community-list expanded c12 permit 131 ^65000:3_0:107_0:95$ ip community-list expanded c12 permit 132 ^65000:4_0:108_0:9$ ip community-list expanded c12 permit 133 ^65000:3_0:108_0:96$ ip community-list expanded c12 permit 134 ^65000:4_0:109_0:9$ ip community-list expanded c12 permit 135 ^65000:3_0:109_0:97$ ip community-list expanded c12 permit 136 ^65000:4_0:110_0:9$ ip community-list expanded c12 permit 137 ^65000:3_0:110_0:98$ ip community-list expanded c12 permit 138 ^65000:4_0:111_0:9$ ip community-list expanded c12 permit 139 ^65000:3_0:111_0:99$ ip community-list expanded c12 permit 140 ^65000:4_0:112_0:9$ ip community-list expanded c12 permit 141 ^65000:3_0:112_0:100$ ip community-list expanded c12 permit 142 ^65000:4_0:113_0:9$ ip community-list expanded c12 permit 143 ^65000:3_0:113_0:101$ ip community-list expanded c12 permit 144 ^65000:4_0:114_0:9$ ip community-list expanded c12 permit 145 ^65000:3_0:114_0:102$ ip community-list expanded c12 permit 146 ^65000:4_0:115_0:9$ ip community-list expanded c12 permit 147 ^65000:3_0:115_0:103$ ip community-list expanded c12 permit 148 ^65000:4_0:116_0:9$ ip community-list expanded c12 permit 149 ^65000:3_0:116_0:104$ ip community-list expanded c12 permit 150 ^65000:3_0:117_0:105$ ip community-list expanded c12 permit 151 ^65000:3_0:118_0:106$ ip community-list expanded c12 permit 152 ^65000:3_0:119_0:107$ ip community-list expanded c12 permit 153 ^65000:4_0:120_0:10$ ip community-list expanded c12 permit 154 ^65000:3_0:120_0:108$ ip community-list expanded c12 permit 155 ^65000:4_0:121_0:10$ ip community-list expanded c12 permit 156 ^65000:3_0:121_0:109$ ip community-list expanded c12 permit 157 ^65000:4_0:122_0:10$ ip community-list expanded c12 permit 158 ^65000:3_0:122_0:110$ ip community-list expanded c12 permit 159 ^65000:4_0:123_0:10$ ip community-list expanded c12 permit 160 ^65000:3_0:123_0:111$ ip community-list expanded c12 permit 161 ^65000:4_0:124_0:10$ ip community-list expanded c12 permit 162 ^65000:3_0:124_0:112$ ip community-list expanded c12 permit 163 ^65000:4_0:125_0:10$ ip community-list expanded c12 permit 164 ^65000:3_0:125_0:113$ ip community-list expanded c12 permit 165 ^65000:4_0:126_0:10$ ip community-list expanded c12 permit 166 ^65000:3_0:126_0:114$ ip community-list expanded c12 permit 167 ^65000:4_0:127_0:10$ ip community-list expanded c12 permit 168 ^65000:3_0:127_0:115$ ip community-list expanded c12 permit 169 ^65000:4_0:128_0:10$ ip community-list expanded c12 permit 170 ^65000:3_0:128_0:116$ ip community-list expanded c12 permit 171 ^65000:4_0:129_0:10$ ip community-list expanded c12 permit 172 ^65000:3_0:129_0:117$ ip community-list expanded c12 permit 173 ^65000:3_0:130_0:118$ ip community-list expanded c12 permit 174 ^65000:3_0:131_0:119$ ip community-list expanded c12 permit 175 ^65000:4_0:132_0:11$ ip community-list expanded c12 permit 176 ^65000:3_0:132_0:120$ ip community-list expanded c12 permit 177 ^65000:4_0:133_0:11$ ip community-list expanded c12 permit 178 ^65000:3_0:133_0:121$ ip community-list expanded c12 permit 179 ^65000:4_0:134_0:11$ ip community-list expanded c12 permit 180 ^65000:3_0:134_0:122$ ip community-list expanded c12 permit 181 ^65000:4_0:135_0:11$ ip community-list expanded c12 permit 182 ^65000:3_0:135_0:123$ ip community-list expanded c12 permit 183 ^65000:4_0:136_0:11$ ip community-list expanded c12 permit 184 ^65000:3_0:136_0:124$ ip community-list expanded c12 permit 185 ^65000:4_0:137_0:11$ ip community-list expanded c12 permit 186 ^65000:3_0:137_0:125$ ip community-list expanded c12 permit 187 ^65000:4_0:138_0:11$ ip community-list expanded c12 permit 188 ^65000:3_0:138_0:126$ ip community-list expanded c12 permit 189 ^65000:4_0:139_0:11$ ip community-list expanded c12 permit 190 ^65000:3_0:139_0:127$ ip community-list expanded c12 permit 191 ^65000:4_0:140_0:11$ ip community-list expanded c12 permit 192 ^65000:3_0:140_0:128$ ip community-list expanded c12 permit 193 ^65000:4_0:141_0:11$ ip community-list expanded c12 permit 194 ^65000:3_0:141_0:129$ ip community-list expanded c12 permit 195 ^65000:4_0:142_0:11$ ip community-list expanded c12 permit 196 ^65000:3_0:142_0:130$ ip community-list expanded c12 permit 197 ^65000:3_0:143_0:131$ ip community-list expanded c12 permit 198 ^65000:4_0:144_0:12$ ip community-list expanded c12 permit 199 ^65000:3_0:144_0:132$ ip community-list expanded c12 permit 200 ^65000:4_0:145_0:12$ ip community-list expanded c12 permit 201 ^65000:3_0:145_0:133$ ip community-list expanded c12 permit 202 ^65000:4_0:146_0:12$ ip community-list expanded c12 permit 203 ^65000:3_0:146_0:134$ ip community-list expanded c12 permit 204 ^65000:4_0:147_0:12$ ip community-list expanded c12 permit 205 ^65000:3_0:147_0:135$ ip community-list expanded c12 permit 206 ^65000:4_0:148_0:12$ ip community-list expanded c12 permit 207 ^65000:3_0:148_0:136$ ip community-list expanded c12 permit 208 ^65000:4_0:149_0:12$ ip community-list expanded c12 permit 209 ^65000:3_0:149_0:137$ ip community-list expanded c12 permit 210 ^65000:4_0:150_0:12$ ip community-list expanded c12 permit 211 ^65000:3_0:150_0:138$ ip community-list expanded c12 permit 212 ^65000:4_0:151_0:12$ ip community-list expanded c12 permit 213 ^65000:3_0:151_0:139$ ip community-list expanded c12 permit 214 ^65000:4_0:152_0:12$ ip community-list expanded c12 permit 215 ^65000:3_0:152_0:140$ ip community-list expanded c12 permit 216 ^65000:4_0:153_0:12$ ip community-list expanded c12 permit 217 ^65000:3_0:153_0:141$ ip community-list expanded c12 permit 218 ^65000:4_0:154_0:12$ ip community-list expanded c12 permit 219 ^65000:3_0:154_0:142$ ip community-list expanded c12 permit 220 ^65000:4_0:155_0:12$ ip community-list expanded c12 permit 221 ^65000:3_0:155_0:143$ ip community-list expanded c12 permit 222 ^65000:4_0:156_0:13$ ip community-list expanded c12 permit 223 ^65000:3_0:156_0:144$ ip community-list expanded c12 permit 224 ^65000:4_0:157_0:13$ ip community-list expanded c12 permit 225 ^65000:3_0:157_0:145$ ip community-list expanded c12 permit 226 ^65000:4_0:158_0:13$ ip community-list expanded c12 permit 227 ^65000:3_0:158_0:146$ ip community-list expanded c12 permit 228 ^65000:4_0:159_0:13$ ip community-list expanded c12 permit 229 ^65000:3_0:159_0:147$ ip community-list expanded c12 permit 230 ^65000:4_0:160_0:13$ ip community-list expanded c12 permit 231 ^65000:3_0:160_0:148$ ip community-list expanded c12 permit 232 ^65000:4_0:161_0:13$ ip community-list expanded c12 permit 233 ^65000:3_0:161_0:149$ ip community-list expanded c12 permit 234 ^65000:4_0:162_0:13$ ip community-list expanded c12 permit 235 ^65000:3_0:162_0:150$ ip community-list expanded c12 permit 236 ^65000:4_0:163_0:13$ ip community-list expanded c12 permit 237 ^65000:3_0:163_0:151$ ip community-list expanded c12 permit 238 ^65000:4_0:164_0:13$ ip community-list expanded c12 permit 239 ^65000:3_0:164_0:152$ ip community-list expanded c12 permit 240 ^65000:4_0:165_0:13$ ip community-list expanded c12 permit 241 ^65000:3_0:165_0:153$ ip community-list expanded c12 permit 242 ^65000:4_0:166_0:13$ ip community-list expanded c12 permit 243 ^65000:3_0:166_0:154$ ip community-list expanded c12 permit 244 ^65000:4_0:167_0:13$ ip community-list expanded c12 permit 245 ^65000:3_0:167_0:155$ ip community-list expanded c12 permit 246 ^65000:4_0:168_0:13$ ip community-list expanded c12 permit 247 ^65000:4_0:168_0:14$ ip community-list expanded c12 permit 248 ^65000:3_0:168_0:156$ ip community-list expanded c12 permit 249 ^65000:4_0:169_0:14$ ip community-list expanded c12 permit 250 ^65000:3_0:169_0:157$ ip community-list expanded c12 permit 251 ^65000:4_0:170_0:14$ ip community-list expanded c12 permit 252 ^65000:3_0:170_0:158$ ip community-list expanded c12 permit 253 ^65000:4_0:171_0:14$ ip community-list expanded c12 permit 254 ^65000:3_0:171_0:159$ ip community-list expanded c12 permit 255 ^65000:4_0:172_0:14$ ip community-list expanded c12 permit 256 ^65000:3_0:172_0:160$ ip community-list expanded c12 permit 257 ^65000:4_0:173_0:14$ ip community-list expanded c12 permit 258 ^65000:3_0:173_0:161$ ip community-list expanded c12 permit 259 ^65000:4_0:174_0:14$ ip community-list expanded c12 permit 260 ^65000:3_0:174_0:162$ ip community-list expanded c12 permit 261 ^65000:4_0:175_0:14$ ip community-list expanded c12 permit 262 ^65000:3_0:175_0:163$ ip community-list expanded c12 permit 263 ^65000:4_0:176_0:14$ ip community-list expanded c12 permit 264 ^65000:3_0:176_0:164$ ip community-list expanded c12 permit 265 ^65000:4_0:177_0:14$ ip community-list expanded c12 permit 266 ^65000:3_0:177_0:165$ ip community-list expanded c12 permit 267 ^65000:4_0:178_0:14$ ip community-list expanded c12 permit 268 ^65000:3_0:178_0:166$ ip community-list expanded c12 permit 269 ^65000:4_0:179_0:14$ ip community-list expanded c12 permit 270 ^65000:3_0:179_0:167$ ip community-list expanded c12 permit 271 ^65000:4_0:180_0:14$ ip community-list expanded c12 permit 272 ^65000:4_0:180_0:15$ ip community-list expanded c12 permit 273 ^65000:3_0:180_0:168$ ip community-list expanded c12 permit 274 ^65000:4_0:181_0:14$ ip community-list expanded c12 permit 275 ^65000:4_0:181_0:15$ ip community-list expanded c12 permit 276 ^65000:3_0:181_0:169$ ip community-list expanded c12 permit 277 ^65000:4_0:182_0:15$ ip community-list expanded c12 permit 278 ^65000:3_0:182_0:170$ ip community-list expanded c12 permit 279 ^65000:4_0:183_0:15$ ip community-list expanded c12 permit 280 ^65000:3_0:183_0:171$ ip community-list expanded c12 permit 281 ^65000:4_0:184_0:15$ ip community-list expanded c12 permit 282 ^65000:3_0:184_0:172$ ip community-list expanded c12 permit 283 ^65000:4_0:185_0:15$ ip community-list expanded c12 permit 284 ^65000:3_0:185_0:173$ ip community-list expanded c12 permit 285 ^65000:4_0:186_0:15$ ip community-list expanded c12 permit 286 ^65000:3_0:186_0:174$ ip community-list expanded c12 permit 287 ^65000:4_0:187_0:15$ ip community-list expanded c12 permit 288 ^65000:3_0:187_0:175$ ip community-list expanded c12 permit 289 ^65000:4_0:188_0:15$ ip community-list expanded c12 permit 290 ^65000:3_0:188_0:176$ ip community-list expanded c12 permit 291 ^65000:4_0:189_0:15$ ip community-list expanded c12 permit 292 ^65000:3_0:189_0:177$ ip community-list expanded c12 permit 293 ^65000:4_0:190_0:15$ ip community-list expanded c12 permit 294 ^65000:3_0:190_0:178$ ip community-list expanded c12 permit 295 ^65000:4_0:191_0:15$ ip community-list expanded c12 permit 296 ^65000:3_0:191_0:179$ ip community-list expanded c12 permit 297 ^65000:4_0:192_0:15$ ip community-list expanded c12 permit 298 ^65000:4_0:192_0:16$ ip community-list expanded c12 permit 299 ^65000:3_0:192_0:180$ ip community-list expanded c12 permit 300 ^65000:4_0:193_0:15$ ip community-list expanded c12 permit 301 ^65000:4_0:193_0:16$ ip community-list expanded c12 permit 302 ^65000:3_0:193_0:181$ ip community-list expanded c12 permit 303 ^65000:4_0:194_0:15$ ip community-list expanded c12 permit 304 ^65000:4_0:194_0:16$ ip community-list expanded c12 permit 305 ^65000:3_0:194_0:182$ ip community-list expanded c12 permit 306 ^65000:4_0:195_0:16$ ip community-list expanded c12 permit 307 ^65000:3_0:195_0:183$ ip community-list expanded c12 permit 308 ^65000:4_0:196_0:16$ ip community-list expanded c12 permit 309 ^65000:3_0:196_0:184$ ip community-list expanded c12 permit 310 ^65000:4_0:197_0:16$ ip community-list expanded c12 permit 311 ^65000:3_0:197_0:185$ ip community-list expanded c12 permit 312 ^65000:4_0:198_0:16$ ip community-list expanded c12 permit 313 ^65000:3_0:198_0:186$ ip community-list expanded c12 permit 314 ^65000:4_0:199_0:16$ ip community-list expanded c12 permit 315 ^65000:3_0:199_0:187$ ip community-list expanded c12 permit 316 ^65000:4_0:200_0:16$ ip community-list expanded c12 permit 317 ^65000:3_0:200_0:188$ ip community-list expanded c12 permit 318 ^65000:4_0:201_0:16$ ip community-list expanded c12 permit 319 ^65000:3_0:201_0:189$ ip community-list expanded c12 permit 320 ^65000:4_0:202_0:16$ ip community-list expanded c12 permit 321 ^65000:3_0:202_0:190$ ip community-list expanded c12 permit 322 ^65000:4_0:203_0:16$ ip community-list expanded c12 permit 323 ^65000:3_0:203_0:191$ ip community-list expanded c12 permit 324 ^65000:4_0:204_0:16$ ip community-list expanded c12 permit 325 ^65000:4_0:204_0:17$ ip community-list expanded c12 permit 326 ^65000:3_0:204_0:192$ ip community-list expanded c12 permit 327 ^65000:4_0:205_0:16$ ip community-list expanded c12 permit 328 ^65000:4_0:205_0:17$ ip community-list expanded c12 permit 329 ^65000:3_0:205_0:193$ ip community-list expanded c12 permit 330 ^65000:4_0:206_0:16$ ip community-list expanded c12 permit 331 ^65000:4_0:206_0:17$ ip community-list expanded c12 permit 332 ^65000:3_0:206_0:194$ ip community-list expanded c12 permit 333 ^65000:4_0:207_0:16$ ip community-list expanded c12 permit 334 ^65000:4_0:207_0:17$ ip community-list expanded c12 permit 335 ^65000:3_0:207_0:195$ ip community-list expanded c12 permit 336 ^65000:4_0:208_0:17$ ip community-list expanded c12 permit 337 ^65000:3_0:208_0:196$ ip community-list expanded c12 permit 338 ^65000:4_0:209_0:17$ ip community-list expanded c12 permit 339 ^65000:3_0:209_0:197$ ip community-list expanded c12 permit 340 ^65000:4_0:210_0:17$ ip community-list expanded c12 permit 341 ^65000:3_0:210_0:198$ ip community-list expanded c12 permit 342 ^65000:4_0:211_0:17$ ip community-list expanded c12 permit 343 ^65000:3_0:211_0:199$ ip community-list expanded c12 permit 344 ^65000:4_0:212_0:17$ ip community-list expanded c12 permit 345 ^65000:3_0:212_0:200$ ip community-list expanded c12 permit 346 ^65000:4_0:213_0:17$ ip community-list expanded c12 permit 347 ^65000:3_0:213_0:201$ ip community-list expanded c12 permit 348 ^65000:4_0:214_0:17$ ip community-list expanded c12 permit 349 ^65000:3_0:214_0:202$ ip community-list expanded c12 permit 350 ^65000:4_0:215_0:17$ ip community-list expanded c12 permit 351 ^65000:3_0:215_0:203$ ip community-list expanded c12 permit 352 ^65000:4_0:216_0:17$ ip community-list expanded c12 permit 353 ^65000:4_0:216_0:18$ ip community-list expanded c12 permit 354 ^65000:3_0:216_0:204$ ip community-list expanded c12 permit 355 ^65000:4_0:217_0:17$ ip community-list expanded c12 permit 356 ^65000:4_0:217_0:18$ ip community-list expanded c12 permit 357 ^65000:3_0:217_0:205$ ip community-list expanded c12 permit 358 ^65000:4_0:218_0:17$ ip community-list expanded c12 permit 359 ^65000:4_0:218_0:18$ ip community-list expanded c12 permit 360 ^65000:3_0:218_0:206$ ip community-list expanded c12 permit 361 ^65000:4_0:219_0:17$ ip community-list expanded c12 permit 362 ^65000:4_0:219_0:18$ ip community-list expanded c12 permit 363 ^65000:3_0:219_0:207$ ip community-list expanded c12 permit 364 ^65000:4_0:220_0:17$ ip community-list expanded c12 permit 365 ^65000:4_0:220_0:18$ ip community-list expanded c12 permit 366 ^65000:3_0:220_0:208$ ip community-list expanded c12 permit 367 ^65000:4_0:221_0:18$ ip community-list expanded c12 permit 368 ^65000:3_0:221_0:209$ ip community-list expanded c12 permit 369 ^65000:4_0:222_0:18$ ip community-list expanded c12 permit 370 ^65000:3_0:222_0:210$ ip community-list expanded c12 permit 371 ^65000:4_0:223_0:18$ ip community-list expanded c12 permit 372 ^65000:3_0:223_0:211$ ip community-list expanded c12 permit 373 ^65000:4_0:224_0:18$ ip community-list expanded c12 permit 374 ^65000:3_0:224_0:212$ ip community-list expanded c12 permit 375 ^65000:4_0:225_0:18$ ip community-list expanded c12 permit 376 ^65000:3_0:225_0:213$ ip community-list expanded c12 permit 377 ^65000:4_0:226_0:18$ ip community-list expanded c12 permit 378 ^65000:3_0:226_0:214$ ip community-list expanded c12 permit 379 ^65000:4_0:227_0:18$ ip community-list expanded c12 permit 380 ^65000:3_0:227_0:215$ ip community-list expanded c12 permit 381 ^65000:4_0:228_0:18$ ip community-list expanded c12 permit 382 ^65000:4_0:228_0:19$ ip community-list expanded c12 permit 383 ^65000:3_0:228_0:216$ ip community-list expanded c12 permit 384 ^65000:4_0:229_0:18$ ip community-list expanded c12 permit 385 ^65000:4_0:229_0:19$ ip community-list expanded c12 permit 386 ^65000:3_0:229_0:217$ ip community-list expanded c12 permit 387 ^65000:4_0:230_0:18$ ip community-list expanded c12 permit 388 ^65000:4_0:230_0:19$ ip community-list expanded c12 permit 389 ^65000:3_0:230_0:218$ ip community-list expanded c12 permit 390 ^65000:4_0:231_0:18$ ip community-list expanded c12 permit 391 ^65000:4_0:231_0:19$ ip community-list expanded c12 permit 392 ^65000:3_0:231_0:219$ ip community-list expanded c12 permit 393 ^65000:4_0:232_0:18$ ip community-list expanded c12 permit 394 ^65000:4_0:232_0:19$ ip community-list expanded c12 permit 395 ^65000:3_0:232_0:220$ ip community-list expanded c12 permit 396 ^65000:4_0:233_0:18$ ip community-list expanded c12 permit 397 ^65000:4_0:233_0:19$ ip community-list expanded c12 permit 398 ^65000:3_0:233_0:221$ ip community-list expanded c12 permit 399 ^65000:4_0:234_0:19$ ip community-list expanded c12 permit 400 ^65000:3_0:234_0:222$ ip community-list expanded c12 permit 401 ^65000:4_0:235_0:19$ ip community-list expanded c12 permit 402 ^65000:3_0:235_0:223$ ip community-list expanded c12 permit 403 ^65000:4_0:236_0:19$ ip community-list expanded c12 permit 404 ^65000:3_0:236_0:224$ ip community-list expanded c12 permit 405 ^65000:4_0:237_0:19$ ip community-list expanded c12 permit 406 ^65000:3_0:237_0:225$ ip community-list expanded c12 permit 407 ^65000:4_0:238_0:19$ ip community-list expanded c12 permit 408 ^65000:3_0:238_0:226$ ip community-list expanded c12 permit 409 ^65000:4_0:239_0:19$ ip community-list expanded c12 permit 410 ^65000:3_0:239_0:227$ ip community-list expanded c12 permit 411 ^65000:4_0:240_0:19$ ip community-list expanded c12 permit 412 ^65000:4_0:240_0:20$ ip community-list expanded c12 permit 413 ^65000:3_0:240_0:228$ ip community-list expanded c12 permit 414 ^65000:4_0:241_0:19$ ip community-list expanded c12 permit 415 ^65000:4_0:241_0:20$ ip community-list expanded c12 permit 416 ^65000:3_0:241_0:229$ ip community-list expanded c12 permit 417 ^65000:4_0:242_0:19$ ip community-list expanded c12 permit 418 ^65000:4_0:242_0:20$ ip community-list expanded c12 permit 419 ^65000:3_0:242_0:230$ ip community-list expanded c12 permit 420 ^65000:4_0:243_0:19$ ip community-list expanded c12 permit 421 ^65000:4_0:243_0:20$ ip community-list expanded c12 permit 422 ^65000:3_0:243_0:231$ ip community-list expanded c12 permit 423 ^65000:4_0:244_0:19$ ip community-list expanded c12 permit 424 ^65000:4_0:244_0:20$ ip community-list expanded c12 permit 425 ^65000:3_0:244_0:232$ ip community-list expanded c12 permit 426 ^65000:4_0:245_0:19$ ip community-list expanded c12 permit 427 ^65000:4_0:245_0:20$ ip community-list expanded c12 permit 428 ^65000:3_0:245_0:233$ ip community-list expanded c12 permit 429 ^65000:4_0:246_0:19$ ip community-list expanded c12 permit 430 ^65000:4_0:246_0:20$ ip community-list expanded c12 permit 431 ^65000:3_0:246_0:234$ ip community-list expanded c12 permit 432 ^65000:4_0:247_0:20$ ip community-list expanded c12 permit 433 ^65000:3_0:247_0:235$ ip community-list expanded c12 permit 434 ^65000:4_0:248_0:20$ ip community-list expanded c12 permit 435 ^65000:3_0:248_0:236$ ip community-list expanded c12 permit 436 ^65000:4_0:249_0:20$ ip community-list expanded c12 permit 437 ^65000:3_0:249_0:237$ ip community-list expanded c12 permit 438 ^65000:4_0:250_0:20$ ip community-list expanded c12 permit 439 ^65000:3_0:250_0:238$ ip community-list expanded c12 permit 440 ^65000:4_0:251_0:20$ ip community-list expanded c12 permit 441 ^65000:3_0:251_0:239$ ip community-list expanded c12 permit 442 ^65000:4_0:252_0:20$ ip community-list expanded c12 permit 443 ^65000:4_0:252_0:21$ ip community-list expanded c12 permit 444 ^65000:3_0:252_0:240$ ip community-list expanded c12 permit 445 ^65000:4_0:253_0:20$ ip community-list expanded c12 permit 446 ^65000:4_0:253_0:21$ ip community-list expanded c12 permit 447 ^65000:3_0:253_0:241$ ip community-list expanded c12 permit 448 ^65000:4_0:254_0:20$ ip community-list expanded c12 permit 449 ^65000:4_0:254_0:21$ ip community-list expanded c12 permit 450 ^65000:3_0:254_0:242$ ip community-list expanded c12 permit 451 ^65000:4_0:255_0:20$ ip community-list expanded c12 permit 452 ^65000:4_0:255_0:21$ ip community-list expanded c12 permit 453 ^65000:3_0:255_0:243$ ip community-list expanded c12 permit 454 ^65000:4_0:256_0:20$ ip community-list expanded c12 permit 455 ^65000:4_0:256_0:21$ ip community-list expanded c12 permit 456 ^65000:3_0:256_0:244$ route-map calculator permit 34286 match community 1_1_11 2_1_12 2_2_6 1_2_10 2_3_4 set community 0:12 route-map calculator permit 34287 match community 1_3_9 1_4_8 1_5_7 1_6_6 c4_12_1 set community 0:12 route-map calculator permit 34288 match community c3_13_1 c3_14_2 c3_15_3 c3_16_4 c3_17_5 set community 0:12 route-map calculator permit 34289 match community c3_18_6 c3_19_7 c3_20_8 c3_21_9 c3_22_10 set community 0:12 route-map calculator permit 34290 match community c3_23_11 c4_24_2 c3_24_12 c4_25_2 c3_25_13 set community 0:12 route-map calculator permit 34291 match community c3_26_14 c3_27_15 c3_28_16 c3_29_17 c3_30_18 set community 0:12 route-map calculator permit 34292 match community c3_31_19 c3_32_20 c3_33_21 c3_34_22 c3_35_23 set community 0:12 route-map calculator permit 34293 match community c4_36_3 c3_36_24 c4_37_3 c3_37_25 c4_38_3 set community 0:12 route-map calculator permit 34294 match community c3_38_26 c3_39_27 c3_40_28 c3_41_29 c3_42_30 set community 0:12 route-map calculator permit 34295 match community c3_43_31 c3_44_32 c3_45_33 c3_46_34 c3_47_35 set community 0:12 route-map calculator permit 34296 match community c4_48_4 c3_48_36 c4_49_4 c3_49_37 c4_50_4 set community 0:12 route-map calculator permit 34297 match community c3_50_38 c4_51_4 c3_51_39 c3_52_40 c3_53_41 set community 0:12 route-map calculator permit 34298 match community c3_54_42 c3_55_43 c3_56_44 c3_57_45 c3_58_46 set community 0:12 route-map calculator permit 34299 match community c3_59_47 c4_60_5 c3_60_48 c4_61_5 c3_61_49 set community 0:12 route-map calculator permit 34300 match community c4_62_5 c3_62_50 c4_63_5 c3_63_51 c4_64_5 set community 0:12 route-map calculator permit 34301 match community c3_64_52 c3_65_53 c3_66_54 c3_67_55 c3_68_56 set community 0:12 route-map calculator permit 34302 match community c3_69_57 c3_70_58 c3_71_59 c4_72_6 c3_72_60 set community 0:12 route-map calculator permit 34303 match community c4_73_6 c3_73_61 c4_74_6 c3_74_62 c4_75_6 set community 0:12 route-map calculator permit 34304 match community c3_75_63 c4_76_6 c3_76_64 c4_77_6 c3_77_65 set community 0:12 route-map calculator permit 34305 match community c3_78_66 c3_79_67 c3_80_68 c3_81_69 c3_82_70 set community 0:12 route-map calculator permit 34306 match community c3_83_71 c4_84_7 c3_84_72 c4_85_7 c3_85_73 set community 0:12 route-map calculator permit 34307 match community c4_86_7 c3_86_74 c4_87_7 c3_87_75 c4_88_7 set community 0:12 route-map calculator permit 34308 match community c3_88_76 c4_89_7 c3_89_77 c4_90_7 c3_90_78 set community 0:12 route-map calculator permit 34309 match community c3_91_79 c3_92_80 c3_93_81 c3_94_82 c3_95_83 set community 0:12 route-map calculator permit 34310 match community c4_96_8 c3_96_84 c4_97_8 c3_97_85 c4_98_8 set community 0:12 route-map calculator permit 34311 match community c3_98_86 c4_99_8 c3_99_87 c4_100_8 c3_100_88 set community 0:12 route-map calculator permit 34312 match community c4_101_8 c3_101_89 c4_102_8 c3_102_90 c4_103_8 set community 0:12 route-map calculator permit 34313 match community c3_103_91 c3_104_92 c3_105_93 c3_106_94 c3_107_95 set community 0:12 route-map calculator permit 34314 match community c4_108_9 c3_108_96 c4_109_9 c3_109_97 c4_110_9 set community 0:12 route-map calculator permit 34315 match community c3_110_98 c4_111_9 c3_111_99 c4_112_9 c3_112_100 set community 0:12 route-map calculator permit 34316 match community c4_113_9 c3_113_101 c4_114_9 c3_114_102 c4_115_9 set community 0:12 route-map calculator permit 34317 match community c3_115_103 c4_116_9 c3_116_104 c3_117_105 c3_118_106 set community 0:12 route-map calculator permit 34318 match community c3_119_107 c4_120_10 c3_120_108 c4_121_10 c3_121_109 set community 0:12 route-map calculator permit 34319 match community c4_122_10 c3_122_110 c4_123_10 c3_123_111 c4_124_10 set community 0:12 route-map calculator permit 34320 match community c3_124_112 c4_125_10 c3_125_113 c4_126_10 c3_126_114 set community 0:12 route-map calculator permit 34321 match community c4_127_10 c3_127_115 c4_128_10 c3_128_116 c4_129_10 set community 0:12 route-map calculator permit 34322 match community c3_129_117 c3_130_118 c3_131_119 c4_132_11 c3_132_120 set community 0:12 route-map calculator permit 34323 match community c4_133_11 c3_133_121 c4_134_11 c3_134_122 c4_135_11 set community 0:12 route-map calculator permit 34324 match community c3_135_123 c4_136_11 c3_136_124 c4_137_11 c3_137_125 set community 0:12 route-map calculator permit 34325 match community c4_138_11 c3_138_126 c4_139_11 c3_139_127 c4_140_11 set community 0:12 route-map calculator permit 34326 match community c3_140_128 c4_141_11 c3_141_129 c4_142_11 c3_142_130 set community 0:12 route-map calculator permit 34327 match community c3_143_131 c4_144_12 c3_144_132 c4_145_12 c3_145_133 set community 0:12 route-map calculator permit 34328 match community c4_146_12 c3_146_134 c4_147_12 c3_147_135 c4_148_12 set community 0:12 route-map calculator permit 34329 match community c3_148_136 c4_149_12 c3_149_137 c4_150_12 c3_150_138 set community 0:12 route-map calculator permit 34330 match community c4_151_12 c3_151_139 c4_152_12 c3_152_140 c4_153_12 set community 0:12 route-map calculator permit 34331 match community c3_153_141 c4_154_12 c3_154_142 c4_155_12 c3_155_143 set community 0:12 route-map calculator permit 34332 match community c4_156_13 c3_156_144 c4_157_13 c3_157_145 c4_158_13 set community 0:12 route-map calculator permit 34333 match community c3_158_146 c4_159_13 c3_159_147 c4_160_13 c3_160_148 set community 0:12 route-map calculator permit 34334 match community c4_161_13 c3_161_149 c4_162_13 c3_162_150 c4_163_13 set community 0:12 route-map calculator permit 34335 match community c3_163_151 c4_164_13 c3_164_152 c4_165_13 c3_165_153 set community 0:12 route-map calculator permit 34336 match community c4_166_13 c3_166_154 c4_167_13 c3_167_155 c4_168_13 set community 0:12 route-map calculator permit 34337 match community c4_168_14 c3_168_156 c4_169_14 c3_169_157 c4_170_14 set community 0:12 route-map calculator permit 34338 match community c3_170_158 c4_171_14 c3_171_159 c4_172_14 c3_172_160 set community 0:12 route-map calculator permit 34339 match community c4_173_14 c3_173_161 c4_174_14 c3_174_162 c4_175_14 set community 0:12 route-map calculator permit 34340 match community c3_175_163 c4_176_14 c3_176_164 c4_177_14 c3_177_165 set community 0:12 route-map calculator permit 34341 match community c4_178_14 c3_178_166 c4_179_14 c3_179_167 c4_180_14 set community 0:12 route-map calculator permit 34342 match community c4_180_15 c3_180_168 c4_181_14 c4_181_15 c3_181_169 set community 0:12 route-map calculator permit 34343 match community c4_182_15 c3_182_170 c4_183_15 c3_183_171 c4_184_15 set community 0:12 route-map calculator permit 34344 match community c3_184_172 c4_185_15 c3_185_173 c4_186_15 c3_186_174 set community 0:12 route-map calculator permit 34345 match community c4_187_15 c3_187_175 c4_188_15 c3_188_176 c4_189_15 set community 0:12 route-map calculator permit 34346 match community c3_189_177 c4_190_15 c3_190_178 c4_191_15 c3_191_179 set community 0:12 route-map calculator permit 34347 match community c4_192_15 c4_192_16 c3_192_180 c4_193_15 c4_193_16 set community 0:12 route-map calculator permit 34348 match community c3_193_181 c4_194_15 c4_194_16 c3_194_182 c4_195_16 set community 0:12 route-map calculator permit 34349 match community c3_195_183 c4_196_16 c3_196_184 c4_197_16 c3_197_185 set community 0:12 route-map calculator permit 34350 match community c4_198_16 c3_198_186 c4_199_16 c3_199_187 c4_200_16 set community 0:12 route-map calculator permit 34351 match community c3_200_188 c4_201_16 c3_201_189 c4_202_16 c3_202_190 set community 0:12 route-map calculator permit 34352 match community c4_203_16 c3_203_191 c4_204_16 c4_204_17 c3_204_192 set community 0:12 route-map calculator permit 34353 match community c4_205_16 c4_205_17 c3_205_193 c4_206_16 c4_206_17 set community 0:12 route-map calculator permit 34354 match community c3_206_194 c4_207_16 c4_207_17 c3_207_195 c4_208_17 set community 0:12 route-map calculator permit 34355 match community c3_208_196 c4_209_17 c3_209_197 c4_210_17 c3_210_198 set community 0:12 route-map calculator permit 34356 match community c4_211_17 c3_211_199 c4_212_17 c3_212_200 c4_213_17 set community 0:12 route-map calculator permit 34357 match community c3_213_201 c4_214_17 c3_214_202 c4_215_17 c3_215_203 set community 0:12 route-map calculator permit 34358 match community c4_216_17 c4_216_18 c3_216_204 c4_217_17 c4_217_18 set community 0:12 route-map calculator permit 34359 match community c3_217_205 c4_218_17 c4_218_18 c3_218_206 c4_219_17 set community 0:12 route-map calculator permit 34360 match community c4_219_18 c3_219_207 c4_220_17 c4_220_18 c3_220_208 set community 0:12 route-map calculator permit 34361 match community c4_221_18 c3_221_209 c4_222_18 c3_222_210 c4_223_18 set community 0:12 route-map calculator permit 34362 match community c3_223_211 c4_224_18 c3_224_212 c4_225_18 c3_225_213 set community 0:12 route-map calculator permit 34363 match community c4_226_18 c3_226_214 c4_227_18 c3_227_215 c4_228_18 set community 0:12 route-map calculator permit 34364 match community c4_228_19 c3_228_216 c4_229_18 c4_229_19 c3_229_217 set community 0:12 route-map calculator permit 34365 match community c4_230_18 c4_230_19 c3_230_218 c4_231_18 c4_231_19 set community 0:12 route-map calculator permit 34366 match community c3_231_219 c4_232_18 c4_232_19 c3_232_220 c4_233_18 set community 0:12 route-map calculator permit 34367 match community c4_233_19 c3_233_221 c4_234_19 c3_234_222 c4_235_19 set community 0:12 route-map calculator permit 34368 match community c3_235_223 c4_236_19 c3_236_224 c4_237_19 c3_237_225 set community 0:12 route-map calculator permit 34369 match community c4_238_19 c3_238_226 c4_239_19 c3_239_227 c4_240_19 set community 0:12 route-map calculator permit 34370 match community c4_240_20 c3_240_228 c4_241_19 c4_241_20 c3_241_229 set community 0:12 route-map calculator permit 34371 match community c4_242_19 c4_242_20 c3_242_230 c4_243_19 c4_243_20 set community 0:12 route-map calculator permit 34372 match community c3_243_231 c4_244_19 c4_244_20 c3_244_232 c4_245_19 set community 0:12 route-map calculator permit 34373 match community c4_245_20 c3_245_233 c4_246_19 c4_246_20 c3_246_234 set community 0:12 route-map calculator permit 34374 match community c4_247_20 c3_247_235 c4_248_20 c3_248_236 c4_249_20 set community 0:12 route-map calculator permit 34375 match community c3_249_237 c4_250_20 c3_250_238 c4_251_20 c3_251_239 set community 0:12 route-map calculator permit 34376 match community c4_252_20 c4_252_21 c3_252_240 c4_253_20 c4_253_21 set community 0:12 route-map calculator permit 34377 match community c3_253_241 c4_254_20 c4_254_21 c3_254_242 c4_255_20 set community 0:12 route-map calculator permit 34378 match community c4_255_21 c3_255_243 c4_256_20 c4_256_21 c3_256_244 set community 0:12 ip community-list standard 2_107_111 permit 65000:2 0:107 0:111 route-map calculator permit 34379 match community 2_107_111 set community 0:11877 ip community-list standard 2_66_239 permit 65000:2 0:66 0:239 route-map calculator permit 34380 match community 2_66_239 set community 0:15774 ip community-list standard 2_124_213 permit 65000:2 0:124 0:213 ip community-list standard 2_142_186 permit 65000:2 0:142 0:186 route-map calculator permit 34381 match community 2_124_213 2_142_186 set community 0:26412 ip community-list standard 2_166_199 permit 65000:2 0:166 0:199 route-map calculator permit 34382 match community 2_166_199 set community 0:33034 ip community-list standard 2_86_147 permit 65000:2 0:86 0:147 ip community-list standard 2_98_129 permit 65000:2 0:98 0:129 route-map calculator permit 34383 match community 2_86_147 2_98_129 set community 0:12642 ip community-list standard 2_93_101 permit 65000:2 0:93 0:101 route-map calculator permit 34384 match community 2_93_101 set community 0:9393 ip community-list standard 2_121_131 permit 65000:2 0:121 0:131 route-map calculator permit 34385 match community 2_121_131 set community 0:15851 ip community-list standard 2_111_255 permit 65000:2 0:111 0:255 ip community-list standard 2_153_185 permit 65000:2 0:153 0:185 route-map calculator permit 34386 match community 2_111_255 2_153_185 set community 0:28305 ip community-list standard 2_42_212 permit 65000:2 0:42 0:212 ip community-list standard 2_53_168 permit 65000:2 0:53 0:168 ip community-list standard 2_56_159 permit 65000:2 0:56 0:159 ip community-list standard 2_84_106 permit 65000:2 0:84 0:106 route-map calculator permit 34387 match community 2_42_212 2_53_168 2_56_159 2_84_106 set community 0:8904 ip community-list standard 2_23_92 permit 65000:2 0:23 0:92 ip community-list standard 2_46_46 permit 65000:2 0:46 0:46 route-map calculator permit 34388 match community 2_23_92 2_46_46 set community 0:2116 ip community-list standard 2_148_172 permit 65000:2 0:148 0:172 route-map calculator permit 34389 match community 2_148_172 set community 0:25456 ip community-list standard 2_182_212 permit 65000:2 0:182 0:212 route-map calculator permit 34390 match community 2_182_212 set community 0:38584 ip community-list standard 2_174_227 permit 65000:2 0:174 0:227 route-map calculator permit 34391 match community 2_174_227 set community 0:39498 ip community-list standard 2_41_49 permit 65000:2 0:41 0:49 route-map calculator permit 34392 match community 2_41_49 set community 0:2009 ip community-list standard 2_170_179 permit 65000:2 0:170 0:179 route-map calculator permit 34393 match community 2_170_179 set community 0:30430 ip community-list standard 2_204_237 permit 65000:2 0:204 0:237 route-map calculator permit 34394 match community 2_204_237 set community 0:48348 ip community-list standard 2_126_229 permit 65000:2 0:126 0:229 route-map calculator permit 34395 match community 2_126_229 set community 0:28854 ip community-list standard 2_82_206 permit 65000:2 0:82 0:206 ip community-list standard 2_103_164 permit 65000:2 0:103 0:164 route-map calculator permit 34396 match community 2_82_206 2_103_164 set community 0:16892 ip community-list standard 2_107_115 permit 65000:2 0:107 0:115 route-map calculator permit 34397 match community 2_107_115 set community 0:12305 ip community-list standard 2_23_129 permit 65000:2 0:23 0:129 ip community-list standard 2_43_69 permit 65000:2 0:43 0:69 route-map calculator permit 34398 match community 2_23_129 2_43_69 set community 0:2967 ip community-list standard 2_14_240 permit 65000:2 0:14 0:240 ip community-list standard 2_15_224 permit 65000:2 0:15 0:224 ip community-list standard 2_16_210 permit 65000:2 0:16 0:210 ip community-list standard 2_20_168 permit 65000:2 0:20 0:168 ip community-list standard 2_21_160 permit 65000:2 0:21 0:160 ip community-list standard 2_24_140 permit 65000:2 0:24 0:140 ip community-list standard 2_28_120 permit 65000:2 0:28 0:120 ip community-list standard 2_30_112 permit 65000:2 0:30 0:112 ip community-list standard 2_32_105 permit 65000:2 0:32 0:105 ip community-list standard 2_35_96 permit 65000:2 0:35 0:96 ip community-list standard 2_40_84 permit 65000:2 0:40 0:84 ip community-list standard 2_42_80 permit 65000:2 0:42 0:80 ip community-list standard 2_48_70 permit 65000:2 0:48 0:70 ip community-list standard 2_56_60 permit 65000:2 0:56 0:60 route-map calculator permit 34399 match community 2_14_240 2_15_224 2_16_210 2_20_168 2_21_160 set community 0:3360 route-map calculator permit 34400 match community 2_24_140 2_28_120 2_30_112 2_32_105 2_35_96 set community 0:3360 route-map calculator permit 34401 match community 2_40_84 2_42_80 2_48_70 2_56_60 set community 0:3360 ip community-list standard 2_101_133 permit 65000:2 0:101 0:133 route-map calculator permit 34402 match community 2_101_133 set community 0:13433 ip community-list standard 2_21_131 permit 65000:2 0:21 0:131 route-map calculator permit 34403 match community 2_21_131 set community 0:2751 ip community-list standard 2_137_217 permit 65000:2 0:137 0:217 route-map calculator permit 34404 match community 2_137_217 set community 0:29729 ip community-list standard 2_210_241 permit 65000:2 0:210 0:241 route-map calculator permit 34405 match community 2_210_241 set community 0:50610 ip community-list standard 2_103_159 permit 65000:2 0:103 0:159 route-map calculator permit 34406 match community 2_103_159 set community 0:16377 ip community-list standard 1_1_189 permit 65000:1 0:1 0:189 ip community-list standard 2_1_190 permit 65000:2 0:1 0:190 ip community-list standard 2_2_95 permit 65000:2 0:2 0:95 ip community-list standard 1_2_188 permit 65000:1 0:2 0:188 ip community-list standard 1_3_187 permit 65000:1 0:3 0:187 ip community-list standard 1_4_186 permit 65000:1 0:4 0:186 ip community-list standard 2_5_38 permit 65000:2 0:5 0:38 ip community-list standard 1_5_185 permit 65000:1 0:5 0:185 ip community-list standard 1_6_184 permit 65000:1 0:6 0:184 ip community-list standard 1_7_183 permit 65000:1 0:7 0:183 ip community-list standard 1_8_182 permit 65000:1 0:8 0:182 ip community-list standard 1_9_181 permit 65000:1 0:9 0:181 ip community-list standard 2_10_19 permit 65000:2 0:10 0:19 ip community-list standard 1_10_180 permit 65000:1 0:10 0:180 ip community-list standard 1_11_179 permit 65000:1 0:11 0:179 ip community-list standard 1_12_178 permit 65000:1 0:12 0:178 ip community-list standard 1_13_177 permit 65000:1 0:13 0:177 ip community-list standard 1_14_176 permit 65000:1 0:14 0:176 ip community-list standard 1_15_175 permit 65000:1 0:15 0:175 ip community-list standard 1_16_174 permit 65000:1 0:16 0:174 ip community-list standard 1_17_173 permit 65000:1 0:17 0:173 ip community-list standard 1_18_172 permit 65000:1 0:18 0:172 ip community-list standard 1_19_171 permit 65000:1 0:19 0:171 ip community-list standard 1_20_170 permit 65000:1 0:20 0:170 ip community-list standard 1_21_169 permit 65000:1 0:21 0:169 ip community-list standard 1_22_168 permit 65000:1 0:22 0:168 ip community-list standard 1_23_167 permit 65000:1 0:23 0:167 ip community-list standard 1_24_166 permit 65000:1 0:24 0:166 ip community-list standard 1_25_165 permit 65000:1 0:25 0:165 ip community-list standard 1_26_164 permit 65000:1 0:26 0:164 ip community-list standard 1_27_163 permit 65000:1 0:27 0:163 ip community-list standard 1_28_162 permit 65000:1 0:28 0:162 ip community-list standard 1_29_161 permit 65000:1 0:29 0:161 ip community-list standard 1_30_160 permit 65000:1 0:30 0:160 ip community-list standard 1_31_159 permit 65000:1 0:31 0:159 ip community-list standard 1_32_158 permit 65000:1 0:32 0:158 ip community-list standard 1_33_157 permit 65000:1 0:33 0:157 ip community-list standard 1_34_156 permit 65000:1 0:34 0:156 ip community-list standard 1_35_155 permit 65000:1 0:35 0:155 ip community-list standard 1_36_154 permit 65000:1 0:36 0:154 ip community-list standard 1_37_153 permit 65000:1 0:37 0:153 ip community-list standard 1_38_152 permit 65000:1 0:38 0:152 ip community-list standard 1_39_151 permit 65000:1 0:39 0:151 ip community-list standard 1_40_150 permit 65000:1 0:40 0:150 ip community-list standard 1_41_149 permit 65000:1 0:41 0:149 ip community-list standard 1_42_148 permit 65000:1 0:42 0:148 ip community-list standard 1_43_147 permit 65000:1 0:43 0:147 ip community-list standard 1_44_146 permit 65000:1 0:44 0:146 ip community-list standard 1_45_145 permit 65000:1 0:45 0:145 ip community-list standard 1_46_144 permit 65000:1 0:46 0:144 ip community-list standard 1_47_143 permit 65000:1 0:47 0:143 ip community-list standard 1_48_142 permit 65000:1 0:48 0:142 ip community-list standard 1_49_141 permit 65000:1 0:49 0:141 ip community-list standard 1_50_140 permit 65000:1 0:50 0:140 ip community-list standard 1_51_139 permit 65000:1 0:51 0:139 ip community-list standard 1_52_138 permit 65000:1 0:52 0:138 ip community-list standard 1_53_137 permit 65000:1 0:53 0:137 ip community-list standard 1_54_136 permit 65000:1 0:54 0:136 ip community-list standard 1_55_135 permit 65000:1 0:55 0:135 ip community-list standard 1_56_134 permit 65000:1 0:56 0:134 ip community-list standard 1_57_133 permit 65000:1 0:57 0:133 ip community-list standard 1_58_132 permit 65000:1 0:58 0:132 ip community-list standard 1_59_131 permit 65000:1 0:59 0:131 ip community-list standard 1_60_130 permit 65000:1 0:60 0:130 ip community-list standard 1_61_129 permit 65000:1 0:61 0:129 ip community-list standard 1_62_128 permit 65000:1 0:62 0:128 ip community-list standard 1_63_127 permit 65000:1 0:63 0:127 ip community-list standard 1_64_126 permit 65000:1 0:64 0:126 ip community-list standard 1_65_125 permit 65000:1 0:65 0:125 ip community-list standard 1_66_124 permit 65000:1 0:66 0:124 ip community-list standard 1_67_123 permit 65000:1 0:67 0:123 ip community-list standard 1_68_122 permit 65000:1 0:68 0:122 ip community-list standard 1_69_121 permit 65000:1 0:69 0:121 ip community-list standard 1_70_120 permit 65000:1 0:70 0:120 ip community-list standard 1_71_119 permit 65000:1 0:71 0:119 ip community-list standard 1_72_118 permit 65000:1 0:72 0:118 ip community-list standard 1_73_117 permit 65000:1 0:73 0:117 ip community-list standard 1_74_116 permit 65000:1 0:74 0:116 ip community-list standard 1_75_115 permit 65000:1 0:75 0:115 ip community-list standard 1_76_114 permit 65000:1 0:76 0:114 ip community-list standard 1_77_113 permit 65000:1 0:77 0:113 ip community-list standard 1_78_112 permit 65000:1 0:78 0:112 ip community-list standard 1_79_111 permit 65000:1 0:79 0:111 ip community-list standard 1_80_110 permit 65000:1 0:80 0:110 ip community-list standard 1_81_109 permit 65000:1 0:81 0:109 ip community-list standard 1_82_108 permit 65000:1 0:82 0:108 ip community-list standard 1_83_107 permit 65000:1 0:83 0:107 ip community-list standard 1_84_106 permit 65000:1 0:84 0:106 ip community-list standard 1_85_105 permit 65000:1 0:85 0:105 ip community-list standard 1_86_104 permit 65000:1 0:86 0:104 ip community-list standard 1_87_103 permit 65000:1 0:87 0:103 ip community-list standard 1_88_102 permit 65000:1 0:88 0:102 ip community-list standard 1_89_101 permit 65000:1 0:89 0:101 ip community-list standard 1_90_100 permit 65000:1 0:90 0:100 ip community-list standard 1_91_99 permit 65000:1 0:91 0:99 ip community-list standard 1_92_98 permit 65000:1 0:92 0:98 ip community-list standard 1_93_97 permit 65000:1 0:93 0:97 ip community-list standard 1_94_96 permit 65000:1 0:94 0:96 ip community-list standard 1_95_95 permit 65000:1 0:95 0:95 ip community-list expanded c190 permit 1 ^65000:4_0:190_0:1$ ip community-list expanded c190 permit 2 ^65000:3_0:191_0:1$ ip community-list expanded c190 permit 3 ^65000:3_0:192_0:2$ ip community-list expanded c190 permit 4 ^65000:3_0:193_0:3$ ip community-list expanded c190 permit 5 ^65000:3_0:194_0:4$ ip community-list expanded c190 permit 6 ^65000:3_0:195_0:5$ ip community-list expanded c190 permit 7 ^65000:3_0:196_0:6$ ip community-list expanded c190 permit 8 ^65000:3_0:197_0:7$ ip community-list expanded c190 permit 9 ^65000:3_0:198_0:8$ ip community-list expanded c190 permit 10 ^65000:3_0:199_0:9$ ip community-list expanded c190 permit 11 ^65000:3_0:200_0:10$ ip community-list expanded c190 permit 12 ^65000:3_0:201_0:11$ ip community-list expanded c190 permit 13 ^65000:3_0:202_0:12$ ip community-list expanded c190 permit 14 ^65000:3_0:203_0:13$ ip community-list expanded c190 permit 15 ^65000:3_0:204_0:14$ ip community-list expanded c190 permit 16 ^65000:3_0:205_0:15$ ip community-list expanded c190 permit 17 ^65000:3_0:206_0:16$ ip community-list expanded c190 permit 18 ^65000:3_0:207_0:17$ ip community-list expanded c190 permit 19 ^65000:3_0:208_0:18$ ip community-list expanded c190 permit 20 ^65000:3_0:209_0:19$ ip community-list expanded c190 permit 21 ^65000:3_0:210_0:20$ ip community-list expanded c190 permit 22 ^65000:3_0:211_0:21$ ip community-list expanded c190 permit 23 ^65000:3_0:212_0:22$ ip community-list expanded c190 permit 24 ^65000:3_0:213_0:23$ ip community-list expanded c190 permit 25 ^65000:3_0:214_0:24$ ip community-list expanded c190 permit 26 ^65000:3_0:215_0:25$ ip community-list expanded c190 permit 27 ^65000:3_0:216_0:26$ ip community-list expanded c190 permit 28 ^65000:3_0:217_0:27$ ip community-list expanded c190 permit 29 ^65000:3_0:218_0:28$ ip community-list expanded c190 permit 30 ^65000:3_0:219_0:29$ ip community-list expanded c190 permit 31 ^65000:3_0:220_0:30$ ip community-list expanded c190 permit 32 ^65000:3_0:221_0:31$ ip community-list expanded c190 permit 33 ^65000:3_0:222_0:32$ ip community-list expanded c190 permit 34 ^65000:3_0:223_0:33$ ip community-list expanded c190 permit 35 ^65000:3_0:224_0:34$ ip community-list expanded c190 permit 36 ^65000:3_0:225_0:35$ ip community-list expanded c190 permit 37 ^65000:3_0:226_0:36$ ip community-list expanded c190 permit 38 ^65000:3_0:227_0:37$ ip community-list expanded c190 permit 39 ^65000:3_0:228_0:38$ ip community-list expanded c190 permit 40 ^65000:3_0:229_0:39$ ip community-list expanded c190 permit 41 ^65000:3_0:230_0:40$ ip community-list expanded c190 permit 42 ^65000:3_0:231_0:41$ ip community-list expanded c190 permit 43 ^65000:3_0:232_0:42$ ip community-list expanded c190 permit 44 ^65000:3_0:233_0:43$ ip community-list expanded c190 permit 45 ^65000:3_0:234_0:44$ ip community-list expanded c190 permit 46 ^65000:3_0:235_0:45$ ip community-list expanded c190 permit 47 ^65000:3_0:236_0:46$ ip community-list expanded c190 permit 48 ^65000:3_0:237_0:47$ ip community-list expanded c190 permit 49 ^65000:3_0:238_0:48$ ip community-list expanded c190 permit 50 ^65000:3_0:239_0:49$ ip community-list expanded c190 permit 51 ^65000:3_0:240_0:50$ ip community-list expanded c190 permit 52 ^65000:3_0:241_0:51$ ip community-list expanded c190 permit 53 ^65000:3_0:242_0:52$ ip community-list expanded c190 permit 54 ^65000:3_0:243_0:53$ ip community-list expanded c190 permit 55 ^65000:3_0:244_0:54$ ip community-list expanded c190 permit 56 ^65000:3_0:245_0:55$ ip community-list expanded c190 permit 57 ^65000:3_0:246_0:56$ ip community-list expanded c190 permit 58 ^65000:3_0:247_0:57$ ip community-list expanded c190 permit 59 ^65000:3_0:248_0:58$ ip community-list expanded c190 permit 60 ^65000:3_0:249_0:59$ ip community-list expanded c190 permit 61 ^65000:3_0:250_0:60$ ip community-list expanded c190 permit 62 ^65000:3_0:251_0:61$ ip community-list expanded c190 permit 63 ^65000:3_0:252_0:62$ ip community-list expanded c190 permit 64 ^65000:3_0:253_0:63$ ip community-list expanded c190 permit 65 ^65000:3_0:254_0:64$ ip community-list expanded c190 permit 66 ^65000:3_0:255_0:65$ ip community-list expanded c190 permit 67 ^65000:3_0:256_0:66$ route-map calculator permit 34407 match community 1_1_189 2_1_190 2_2_95 1_2_188 1_3_187 set community 0:190 route-map calculator permit 34408 match community 1_4_186 2_5_38 1_5_185 1_6_184 1_7_183 set community 0:190 route-map calculator permit 34409 match community 1_8_182 1_9_181 2_10_19 1_10_180 1_11_179 set community 0:190 route-map calculator permit 34410 match community 1_12_178 1_13_177 1_14_176 1_15_175 1_16_174 set community 0:190 route-map calculator permit 34411 match community 1_17_173 1_18_172 1_19_171 1_20_170 1_21_169 set community 0:190 route-map calculator permit 34412 match community 1_22_168 1_23_167 1_24_166 1_25_165 1_26_164 set community 0:190 route-map calculator permit 34413 match community 1_27_163 1_28_162 1_29_161 1_30_160 1_31_159 set community 0:190 route-map calculator permit 34414 match community 1_32_158 1_33_157 1_34_156 1_35_155 1_36_154 set community 0:190 route-map calculator permit 34415 match community 1_37_153 1_38_152 1_39_151 1_40_150 1_41_149 set community 0:190 route-map calculator permit 34416 match community 1_42_148 1_43_147 1_44_146 1_45_145 1_46_144 set community 0:190 route-map calculator permit 34417 match community 1_47_143 1_48_142 1_49_141 1_50_140 1_51_139 set community 0:190 route-map calculator permit 34418 match community 1_52_138 1_53_137 1_54_136 1_55_135 1_56_134 set community 0:190 route-map calculator permit 34419 match community 1_57_133 1_58_132 1_59_131 1_60_130 1_61_129 set community 0:190 route-map calculator permit 34420 match community 1_62_128 1_63_127 1_64_126 1_65_125 1_66_124 set community 0:190 route-map calculator permit 34421 match community 1_67_123 1_68_122 1_69_121 1_70_120 1_71_119 set community 0:190 route-map calculator permit 34422 match community 1_72_118 1_73_117 1_74_116 1_75_115 1_76_114 set community 0:190 route-map calculator permit 34423 match community 1_77_113 1_78_112 1_79_111 1_80_110 1_81_109 set community 0:190 route-map calculator permit 34424 match community 1_82_108 1_83_107 1_84_106 1_85_105 1_86_104 set community 0:190 route-map calculator permit 34425 match community 1_87_103 1_88_102 1_89_101 1_90_100 1_91_99 set community 0:190 route-map calculator permit 34426 match community 1_92_98 1_93_97 1_94_96 1_95_95 c4_190_1 set community 0:190 route-map calculator permit 34427 match community c3_191_1 c3_192_2 c3_193_3 c3_194_4 c3_195_5 set community 0:190 route-map calculator permit 34428 match community c3_196_6 c3_197_7 c3_198_8 c3_199_9 c3_200_10 set community 0:190 route-map calculator permit 34429 match community c3_201_11 c3_202_12 c3_203_13 c3_204_14 c3_205_15 set community 0:190 route-map calculator permit 34430 match community c3_206_16 c3_207_17 c3_208_18 c3_209_19 c3_210_20 set community 0:190 route-map calculator permit 34431 match community c3_211_21 c3_212_22 c3_213_23 c3_214_24 c3_215_25 set community 0:190 route-map calculator permit 34432 match community c3_216_26 c3_217_27 c3_218_28 c3_219_29 c3_220_30 set community 0:190 route-map calculator permit 34433 match community c3_221_31 c3_222_32 c3_223_33 c3_224_34 c3_225_35 set community 0:190 route-map calculator permit 34434 match community c3_226_36 c3_227_37 c3_228_38 c3_229_39 c3_230_40 set community 0:190 route-map calculator permit 34435 match community c3_231_41 c3_232_42 c3_233_43 c3_234_44 c3_235_45 set community 0:190 route-map calculator permit 34436 match community c3_236_46 c3_237_47 c3_238_48 c3_239_49 c3_240_50 set community 0:190 route-map calculator permit 34437 match community c3_241_51 c3_242_52 c3_243_53 c3_244_54 c3_245_55 set community 0:190 route-map calculator permit 34438 match community c3_246_56 c3_247_57 c3_248_58 c3_249_59 c3_250_60 set community 0:190 route-map calculator permit 34439 match community c3_251_61 c3_252_62 c3_253_63 c3_254_64 c3_255_65 set community 0:190 route-map calculator permit 34440 match community c3_256_66 set community 0:190 ip community-list standard 2_102_163 permit 65000:2 0:102 0:163 route-map calculator permit 34441 match community 2_102_163 set community 0:16626 ip community-list standard 2_66_191 permit 65000:2 0:66 0:191 route-map calculator permit 34442 match community 2_66_191 set community 0:12606 ip community-list standard 2_203_244 permit 65000:2 0:203 0:244 route-map calculator permit 34443 match community 2_203_244 set community 0:49532 ip community-list standard 2_128_131 permit 65000:2 0:128 0:131 route-map calculator permit 34444 match community 2_128_131 set community 0:16768 ip community-list standard 2_148_225 permit 65000:2 0:148 0:225 ip community-list standard 2_150_222 permit 65000:2 0:150 0:222 ip community-list standard 2_180_185 permit 65000:2 0:180 0:185 route-map calculator permit 34445 match community 2_148_225 2_150_222 2_180_185 set community 0:33300 ip community-list standard 2_13_94 permit 65000:2 0:13 0:94 ip community-list standard 2_26_47 permit 65000:2 0:26 0:47 route-map calculator permit 34446 match community 2_13_94 2_26_47 set community 0:1222 ip community-list standard 2_128_205 permit 65000:2 0:128 0:205 ip community-list standard 2_160_164 permit 65000:2 0:160 0:164 route-map calculator permit 34447 match community 2_128_205 2_160_164 set community 0:26240 ip community-list standard 2_103_209 permit 65000:2 0:103 0:209 route-map calculator permit 34448 match community 2_103_209 set community 0:21527 ip community-list standard 2_90_245 permit 65000:2 0:90 0:245 ip community-list standard 2_98_225 permit 65000:2 0:98 0:225 ip community-list standard 2_105_210 permit 65000:2 0:105 0:210 ip community-list standard 2_126_175 permit 65000:2 0:126 0:175 ip community-list standard 2_147_150 permit 65000:2 0:147 0:150 route-map calculator permit 34449 match community 2_90_245 2_98_225 2_105_210 2_126_175 2_147_150 set community 0:22050 ip community-list standard 2_153_246 permit 65000:2 0:153 0:246 route-map calculator permit 34450 match community 2_153_246 set community 0:37638 ip community-list standard 2_14_191 permit 65000:2 0:14 0:191 route-map calculator permit 34451 match community 2_14_191 set community 0:2674 ip community-list standard 2_217_225 permit 65000:2 0:217 0:225 route-map calculator permit 34452 match community 2_217_225 set community 0:48825 ip community-list standard 2_49_242 permit 65000:2 0:49 0:242 ip community-list standard 2_77_154 permit 65000:2 0:77 0:154 ip community-list standard 2_98_121 permit 65000:2 0:98 0:121 route-map calculator permit 34453 match community 2_49_242 2_77_154 2_98_121 set community 0:11858 ip community-list standard 2_28_226 permit 65000:2 0:28 0:226 ip community-list standard 2_56_113 permit 65000:2 0:56 0:113 route-map calculator permit 34454 match community 2_28_226 2_56_113 set community 0:6328 ip community-list standard 2_165_215 permit 65000:2 0:165 0:215 route-map calculator permit 34455 match community 2_165_215 set community 0:35475 ip community-list standard 2_128_255 permit 65000:2 0:128 0:255 ip community-list standard 2_136_240 permit 65000:2 0:136 0:240 ip community-list standard 2_160_204 permit 65000:2 0:160 0:204 ip community-list standard 2_170_192 permit 65000:2 0:170 0:192 route-map calculator permit 34456 match community 2_128_255 2_136_240 2_160_204 2_170_192 set community 0:32640 ip community-list standard 2_166_247 permit 65000:2 0:166 0:247 route-map calculator permit 34457 match community 2_166_247 set community 0:41002 ip community-list standard 2_186_235 permit 65000:2 0:186 0:235 route-map calculator permit 34458 match community 2_186_235 set community 0:43710 ip community-list standard 2_145_233 permit 65000:2 0:145 0:233 route-map calculator permit 34459 match community 2_145_233 set community 0:33785 ip community-list standard 2_29_47 permit 65000:2 0:29 0:47 route-map calculator permit 34460 match community 2_29_47 set community 0:1363 ip community-list standard 2_167_250 permit 65000:2 0:167 0:250 route-map calculator permit 34461 match community 2_167_250 set community 0:41750 ip community-list standard 2_77_166 permit 65000:2 0:77 0:166 ip community-list standard 2_83_154 permit 65000:2 0:83 0:154 route-map calculator permit 34462 match community 2_77_166 2_83_154 set community 0:12782 ip community-list standard 2_104_235 permit 65000:2 0:104 0:235 ip community-list standard 2_130_188 permit 65000:2 0:130 0:188 route-map calculator permit 34463 match community 2_104_235 2_130_188 set community 0:24440 ip community-list standard 2_49_89 permit 65000:2 0:49 0:89 route-map calculator permit 34464 match community 2_49_89 set community 0:4361 ip community-list standard 2_115_167 permit 65000:2 0:115 0:167 route-map calculator permit 34465 match community 2_115_167 set community 0:19205 ip community-list standard 2_52_237 permit 65000:2 0:52 0:237 ip community-list standard 2_78_158 permit 65000:2 0:78 0:158 ip community-list standard 2_79_156 permit 65000:2 0:79 0:156 route-map calculator permit 34466 match community 2_52_237 2_78_158 2_79_156 set community 0:12324 ip community-list standard 2_64_223 permit 65000:2 0:64 0:223 route-map calculator permit 34467 match community 2_64_223 set community 0:14272 ip community-list standard 2_187_246 permit 65000:2 0:187 0:246 route-map calculator permit 34468 match community 2_187_246 set community 0:46002 ip community-list standard 2_43_157 permit 65000:2 0:43 0:157 route-map calculator permit 34469 match community 2_43_157 set community 0:6751 ip community-list standard 2_155_218 permit 65000:2 0:155 0:218 route-map calculator permit 34470 match community 2_155_218 set community 0:33790 ip community-list standard 2_107_121 permit 65000:2 0:107 0:121 route-map calculator permit 34471 match community 2_107_121 set community 0:12947 ip community-list standard 2_32_234 permit 65000:2 0:32 0:234 ip community-list standard 2_36_208 permit 65000:2 0:36 0:208 ip community-list standard 2_39_192 permit 65000:2 0:39 0:192 ip community-list standard 2_48_156 permit 65000:2 0:48 0:156 ip community-list standard 2_52_144 permit 65000:2 0:52 0:144 ip community-list standard 2_64_117 permit 65000:2 0:64 0:117 ip community-list standard 2_72_104 permit 65000:2 0:72 0:104 ip community-list standard 2_78_96 permit 65000:2 0:78 0:96 route-map calculator permit 34472 match community 2_32_234 2_36_208 2_39_192 2_48_156 2_52_144 set community 0:7488 route-map calculator permit 34473 match community 2_64_117 2_72_104 2_78_96 set community 0:7488 ip community-list standard 2_179_185 permit 65000:2 0:179 0:185 route-map calculator permit 34474 match community 2_179_185 set community 0:33115 ip community-list standard 2_141_218 permit 65000:2 0:141 0:218 route-map calculator permit 34475 match community 2_141_218 set community 0:30738 ip community-list standard 2_124_248 permit 65000:2 0:124 0:248 route-map calculator permit 34476 match community 2_124_248 set community 0:30752 ip community-list standard 2_63_101 permit 65000:2 0:63 0:101 route-map calculator permit 34477 match community 2_63_101 set community 0:6363 ip community-list standard 2_116_149 permit 65000:2 0:116 0:149 route-map calculator permit 34478 match community 2_116_149 set community 0:17284 ip community-list standard 2_12_234 permit 65000:2 0:12 0:234 ip community-list standard 2_13_216 permit 65000:2 0:13 0:216 ip community-list standard 2_18_156 permit 65000:2 0:18 0:156 ip community-list standard 2_24_117 permit 65000:2 0:24 0:117 ip community-list standard 2_26_108 permit 65000:2 0:26 0:108 ip community-list standard 2_27_104 permit 65000:2 0:27 0:104 ip community-list standard 2_36_78 permit 65000:2 0:36 0:78 ip community-list standard 2_39_72 permit 65000:2 0:39 0:72 ip community-list standard 2_52_54 permit 65000:2 0:52 0:54 route-map calculator permit 34479 match community 2_12_234 2_13_216 2_18_156 2_24_117 2_26_108 set community 0:2808 route-map calculator permit 34480 match community 2_27_104 2_36_78 2_39_72 2_52_54 set community 0:2808 ip community-list standard 2_243_248 permit 65000:2 0:243 0:248 route-map calculator permit 34481 match community 2_243_248 set community 0:60264 ip community-list standard 2_41_189 permit 65000:2 0:41 0:189 ip community-list standard 2_63_123 permit 65000:2 0:63 0:123 route-map calculator permit 34482 match community 2_41_189 2_63_123 set community 0:7749 ip community-list standard 2_7_74 permit 65000:2 0:7 0:74 ip community-list standard 2_14_37 permit 65000:2 0:14 0:37 route-map calculator permit 34483 match community 2_7_74 2_14_37 set community 0:518 ip community-list standard 2_129_215 permit 65000:2 0:129 0:215 route-map calculator permit 34484 match community 2_129_215 set community 0:27735 ip community-list standard 2_2_196 permit 65000:2 0:2 0:196 ip community-list standard 2_4_98 permit 65000:2 0:4 0:98 ip community-list standard 2_7_56 permit 65000:2 0:7 0:56 ip community-list standard 2_8_49 permit 65000:2 0:8 0:49 ip community-list standard 2_14_28 permit 65000:2 0:14 0:28 ip community-list standard 1_136_256 permit 65000:1 0:136 0:256 ip community-list standard 1_137_255 permit 65000:1 0:137 0:255 ip community-list standard 1_138_254 permit 65000:1 0:138 0:254 ip community-list standard 1_139_253 permit 65000:1 0:139 0:253 ip community-list standard 1_140_252 permit 65000:1 0:140 0:252 ip community-list standard 1_141_251 permit 65000:1 0:141 0:251 ip community-list standard 1_142_250 permit 65000:1 0:142 0:250 ip community-list standard 1_143_249 permit 65000:1 0:143 0:249 ip community-list standard 1_144_248 permit 65000:1 0:144 0:248 ip community-list standard 1_145_247 permit 65000:1 0:145 0:247 ip community-list standard 1_146_246 permit 65000:1 0:146 0:246 ip community-list standard 1_147_245 permit 65000:1 0:147 0:245 ip community-list standard 1_148_244 permit 65000:1 0:148 0:244 ip community-list standard 1_149_243 permit 65000:1 0:149 0:243 ip community-list standard 1_150_242 permit 65000:1 0:150 0:242 ip community-list standard 1_151_241 permit 65000:1 0:151 0:241 ip community-list standard 1_152_240 permit 65000:1 0:152 0:240 ip community-list standard 1_153_239 permit 65000:1 0:153 0:239 ip community-list standard 1_154_238 permit 65000:1 0:154 0:238 ip community-list standard 1_155_237 permit 65000:1 0:155 0:237 ip community-list standard 1_156_236 permit 65000:1 0:156 0:236 ip community-list standard 1_157_235 permit 65000:1 0:157 0:235 ip community-list standard 1_158_234 permit 65000:1 0:158 0:234 ip community-list standard 1_159_233 permit 65000:1 0:159 0:233 ip community-list standard 1_160_232 permit 65000:1 0:160 0:232 ip community-list standard 1_161_231 permit 65000:1 0:161 0:231 ip community-list standard 1_162_230 permit 65000:1 0:162 0:230 ip community-list standard 1_163_229 permit 65000:1 0:163 0:229 ip community-list standard 1_164_228 permit 65000:1 0:164 0:228 ip community-list standard 1_165_227 permit 65000:1 0:165 0:227 ip community-list standard 1_166_226 permit 65000:1 0:166 0:226 ip community-list standard 1_167_225 permit 65000:1 0:167 0:225 ip community-list standard 1_168_224 permit 65000:1 0:168 0:224 ip community-list standard 1_169_223 permit 65000:1 0:169 0:223 ip community-list standard 1_170_222 permit 65000:1 0:170 0:222 ip community-list standard 1_171_221 permit 65000:1 0:171 0:221 ip community-list standard 1_172_220 permit 65000:1 0:172 0:220 ip community-list standard 1_173_219 permit 65000:1 0:173 0:219 ip community-list standard 1_174_218 permit 65000:1 0:174 0:218 ip community-list standard 1_175_217 permit 65000:1 0:175 0:217 ip community-list standard 1_176_216 permit 65000:1 0:176 0:216 ip community-list standard 1_177_215 permit 65000:1 0:177 0:215 ip community-list standard 1_178_214 permit 65000:1 0:178 0:214 ip community-list standard 1_179_213 permit 65000:1 0:179 0:213 ip community-list standard 1_180_212 permit 65000:1 0:180 0:212 ip community-list standard 1_181_211 permit 65000:1 0:181 0:211 ip community-list standard 1_182_210 permit 65000:1 0:182 0:210 ip community-list standard 1_183_209 permit 65000:1 0:183 0:209 ip community-list standard 1_184_208 permit 65000:1 0:184 0:208 ip community-list standard 1_185_207 permit 65000:1 0:185 0:207 ip community-list standard 1_186_206 permit 65000:1 0:186 0:206 ip community-list standard 1_187_205 permit 65000:1 0:187 0:205 ip community-list standard 1_188_204 permit 65000:1 0:188 0:204 ip community-list standard 1_189_203 permit 65000:1 0:189 0:203 ip community-list standard 1_190_202 permit 65000:1 0:190 0:202 ip community-list standard 1_191_201 permit 65000:1 0:191 0:201 ip community-list standard 1_192_200 permit 65000:1 0:192 0:200 ip community-list standard 1_193_199 permit 65000:1 0:193 0:199 ip community-list standard 1_194_198 permit 65000:1 0:194 0:198 ip community-list standard 1_195_197 permit 65000:1 0:195 0:197 ip community-list standard 1_196_196 permit 65000:1 0:196 0:196 route-map calculator permit 34485 match community 2_2_196 2_4_98 2_7_56 2_8_49 2_14_28 set community 0:392 route-map calculator permit 34486 match community 1_136_256 1_137_255 1_138_254 1_139_253 1_140_252 set community 0:392 route-map calculator permit 34487 match community 1_141_251 1_142_250 1_143_249 1_144_248 1_145_247 set community 0:392 route-map calculator permit 34488 match community 1_146_246 1_147_245 1_148_244 1_149_243 1_150_242 set community 0:392 route-map calculator permit 34489 match community 1_151_241 1_152_240 1_153_239 1_154_238 1_155_237 set community 0:392 route-map calculator permit 34490 match community 1_156_236 1_157_235 1_158_234 1_159_233 1_160_232 set community 0:392 route-map calculator permit 34491 match community 1_161_231 1_162_230 1_163_229 1_164_228 1_165_227 set community 0:392 route-map calculator permit 34492 match community 1_166_226 1_167_225 1_168_224 1_169_223 1_170_222 set community 0:392 route-map calculator permit 34493 match community 1_171_221 1_172_220 1_173_219 1_174_218 1_175_217 set community 0:392 route-map calculator permit 34494 match community 1_176_216 1_177_215 1_178_214 1_179_213 1_180_212 set community 0:392 route-map calculator permit 34495 match community 1_181_211 1_182_210 1_183_209 1_184_208 1_185_207 set community 0:392 route-map calculator permit 34496 match community 1_186_206 1_187_205 1_188_204 1_189_203 1_190_202 set community 0:392 route-map calculator permit 34497 match community 1_191_201 1_192_200 1_193_199 1_194_198 1_195_197 set community 0:392 route-map calculator permit 34498 match community 1_196_196 set community 0:392 ip community-list standard 2_140_158 permit 65000:2 0:140 0:158 route-map calculator permit 34499 match community 2_140_158 set community 0:22120 ip community-list standard 2_23_202 permit 65000:2 0:23 0:202 ip community-list standard 2_46_101 permit 65000:2 0:46 0:101 route-map calculator permit 34500 match community 2_23_202 2_46_101 set community 0:4646 ip community-list standard 2_162_217 permit 65000:2 0:162 0:217 ip community-list standard 2_186_189 permit 65000:2 0:186 0:189 route-map calculator permit 34501 match community 2_162_217 2_186_189 set community 0:35154 ip community-list standard 2_168_256 permit 65000:2 0:168 0:256 ip community-list standard 2_192_224 permit 65000:2 0:192 0:224 route-map calculator permit 34502 match community 2_168_256 2_192_224 set community 0:43008 ip community-list standard 2_6_254 permit 65000:2 0:6 0:254 ip community-list standard 2_12_127 permit 65000:2 0:12 0:127 route-map calculator permit 34503 match community 2_6_254 2_12_127 set community 0:1524 ip community-list standard 2_18_188 permit 65000:2 0:18 0:188 ip community-list standard 2_24_141 permit 65000:2 0:24 0:141 ip community-list standard 2_36_94 permit 65000:2 0:36 0:94 ip community-list standard 2_47_72 permit 65000:2 0:47 0:72 route-map calculator permit 34504 match community 2_18_188 2_24_141 2_36_94 2_47_72 set community 0:3384 ip community-list standard 2_99_234 permit 65000:2 0:99 0:234 ip community-list standard 2_117_198 permit 65000:2 0:117 0:198 ip community-list standard 2_143_162 permit 65000:2 0:143 0:162 route-map calculator permit 34505 match community 2_99_234 2_117_198 2_143_162 set community 0:23166 ip community-list standard 2_2_159 permit 65000:2 0:2 0:159 ip community-list standard 2_3_106 permit 65000:2 0:3 0:106 ip community-list standard 2_6_53 permit 65000:2 0:6 0:53 ip community-list standard 1_62_256 permit 65000:1 0:62 0:256 ip community-list standard 1_63_255 permit 65000:1 0:63 0:255 ip community-list standard 1_64_254 permit 65000:1 0:64 0:254 ip community-list standard 1_65_253 permit 65000:1 0:65 0:253 ip community-list standard 1_66_252 permit 65000:1 0:66 0:252 ip community-list standard 1_67_251 permit 65000:1 0:67 0:251 ip community-list standard 1_68_250 permit 65000:1 0:68 0:250 ip community-list standard 1_69_249 permit 65000:1 0:69 0:249 ip community-list standard 1_70_248 permit 65000:1 0:70 0:248 ip community-list standard 1_71_247 permit 65000:1 0:71 0:247 ip community-list standard 1_72_246 permit 65000:1 0:72 0:246 ip community-list standard 1_73_245 permit 65000:1 0:73 0:245 ip community-list standard 1_74_244 permit 65000:1 0:74 0:244 ip community-list standard 1_75_243 permit 65000:1 0:75 0:243 ip community-list standard 1_76_242 permit 65000:1 0:76 0:242 ip community-list standard 1_77_241 permit 65000:1 0:77 0:241 ip community-list standard 1_78_240 permit 65000:1 0:78 0:240 ip community-list standard 1_79_239 permit 65000:1 0:79 0:239 ip community-list standard 1_80_238 permit 65000:1 0:80 0:238 ip community-list standard 1_81_237 permit 65000:1 0:81 0:237 ip community-list standard 1_82_236 permit 65000:1 0:82 0:236 ip community-list standard 1_83_235 permit 65000:1 0:83 0:235 ip community-list standard 1_84_234 permit 65000:1 0:84 0:234 ip community-list standard 1_85_233 permit 65000:1 0:85 0:233 ip community-list standard 1_86_232 permit 65000:1 0:86 0:232 ip community-list standard 1_87_231 permit 65000:1 0:87 0:231 ip community-list standard 1_88_230 permit 65000:1 0:88 0:230 ip community-list standard 1_89_229 permit 65000:1 0:89 0:229 ip community-list standard 1_90_228 permit 65000:1 0:90 0:228 ip community-list standard 1_91_227 permit 65000:1 0:91 0:227 ip community-list standard 1_92_226 permit 65000:1 0:92 0:226 ip community-list standard 1_93_225 permit 65000:1 0:93 0:225 ip community-list standard 1_94_224 permit 65000:1 0:94 0:224 ip community-list standard 1_95_223 permit 65000:1 0:95 0:223 ip community-list standard 1_96_222 permit 65000:1 0:96 0:222 ip community-list standard 1_97_221 permit 65000:1 0:97 0:221 ip community-list standard 1_98_220 permit 65000:1 0:98 0:220 ip community-list standard 1_99_219 permit 65000:1 0:99 0:219 ip community-list standard 1_100_218 permit 65000:1 0:100 0:218 ip community-list standard 1_101_217 permit 65000:1 0:101 0:217 ip community-list standard 1_102_216 permit 65000:1 0:102 0:216 ip community-list standard 1_103_215 permit 65000:1 0:103 0:215 ip community-list standard 1_104_214 permit 65000:1 0:104 0:214 ip community-list standard 1_105_213 permit 65000:1 0:105 0:213 ip community-list standard 1_106_212 permit 65000:1 0:106 0:212 ip community-list standard 1_107_211 permit 65000:1 0:107 0:211 ip community-list standard 1_108_210 permit 65000:1 0:108 0:210 ip community-list standard 1_109_209 permit 65000:1 0:109 0:209 ip community-list standard 1_110_208 permit 65000:1 0:110 0:208 ip community-list standard 1_111_207 permit 65000:1 0:111 0:207 ip community-list standard 1_112_206 permit 65000:1 0:112 0:206 ip community-list standard 1_113_205 permit 65000:1 0:113 0:205 ip community-list standard 1_114_204 permit 65000:1 0:114 0:204 ip community-list standard 1_115_203 permit 65000:1 0:115 0:203 ip community-list standard 1_116_202 permit 65000:1 0:116 0:202 ip community-list standard 1_117_201 permit 65000:1 0:117 0:201 ip community-list standard 1_118_200 permit 65000:1 0:118 0:200 ip community-list standard 1_119_199 permit 65000:1 0:119 0:199 ip community-list standard 1_120_198 permit 65000:1 0:120 0:198 ip community-list standard 1_121_197 permit 65000:1 0:121 0:197 ip community-list standard 1_122_196 permit 65000:1 0:122 0:196 ip community-list standard 1_123_195 permit 65000:1 0:123 0:195 ip community-list standard 1_124_194 permit 65000:1 0:124 0:194 ip community-list standard 1_125_193 permit 65000:1 0:125 0:193 ip community-list standard 1_126_192 permit 65000:1 0:126 0:192 ip community-list standard 1_127_191 permit 65000:1 0:127 0:191 ip community-list standard 1_128_190 permit 65000:1 0:128 0:190 ip community-list standard 1_129_189 permit 65000:1 0:129 0:189 ip community-list standard 1_130_188 permit 65000:1 0:130 0:188 ip community-list standard 1_131_187 permit 65000:1 0:131 0:187 ip community-list standard 1_132_186 permit 65000:1 0:132 0:186 ip community-list standard 1_133_185 permit 65000:1 0:133 0:185 ip community-list standard 1_134_184 permit 65000:1 0:134 0:184 ip community-list standard 1_135_183 permit 65000:1 0:135 0:183 ip community-list standard 1_136_182 permit 65000:1 0:136 0:182 ip community-list standard 1_137_181 permit 65000:1 0:137 0:181 ip community-list standard 1_138_180 permit 65000:1 0:138 0:180 ip community-list standard 1_139_179 permit 65000:1 0:139 0:179 ip community-list standard 1_140_178 permit 65000:1 0:140 0:178 ip community-list standard 1_141_177 permit 65000:1 0:141 0:177 ip community-list standard 1_142_176 permit 65000:1 0:142 0:176 ip community-list standard 1_143_175 permit 65000:1 0:143 0:175 ip community-list standard 1_144_174 permit 65000:1 0:144 0:174 ip community-list standard 1_145_173 permit 65000:1 0:145 0:173 ip community-list standard 1_146_172 permit 65000:1 0:146 0:172 ip community-list standard 1_147_171 permit 65000:1 0:147 0:171 ip community-list standard 1_148_170 permit 65000:1 0:148 0:170 ip community-list standard 1_149_169 permit 65000:1 0:149 0:169 ip community-list standard 1_150_168 permit 65000:1 0:150 0:168 ip community-list standard 1_151_167 permit 65000:1 0:151 0:167 ip community-list standard 1_152_166 permit 65000:1 0:152 0:166 ip community-list standard 1_153_165 permit 65000:1 0:153 0:165 ip community-list standard 1_154_164 permit 65000:1 0:154 0:164 ip community-list standard 1_155_163 permit 65000:1 0:155 0:163 ip community-list standard 1_156_162 permit 65000:1 0:156 0:162 ip community-list standard 1_157_161 permit 65000:1 0:157 0:161 ip community-list standard 1_158_160 permit 65000:1 0:158 0:160 ip community-list standard 1_159_159 permit 65000:1 0:159 0:159 route-map calculator permit 34506 match community 2_2_159 2_3_106 2_6_53 1_62_256 1_63_255 set community 0:318 route-map calculator permit 34507 match community 1_64_254 1_65_253 1_66_252 1_67_251 1_68_250 set community 0:318 route-map calculator permit 34508 match community 1_69_249 1_70_248 1_71_247 1_72_246 1_73_245 set community 0:318 route-map calculator permit 34509 match community 1_74_244 1_75_243 1_76_242 1_77_241 1_78_240 set community 0:318 route-map calculator permit 34510 match community 1_79_239 1_80_238 1_81_237 1_82_236 1_83_235 set community 0:318 route-map calculator permit 34511 match community 1_84_234 1_85_233 1_86_232 1_87_231 1_88_230 set community 0:318 route-map calculator permit 34512 match community 1_89_229 1_90_228 1_91_227 1_92_226 1_93_225 set community 0:318 route-map calculator permit 34513 match community 1_94_224 1_95_223 1_96_222 1_97_221 1_98_220 set community 0:318 route-map calculator permit 34514 match community 1_99_219 1_100_218 1_101_217 1_102_216 1_103_215 set community 0:318 route-map calculator permit 34515 match community 1_104_214 1_105_213 1_106_212 1_107_211 1_108_210 set community 0:318 route-map calculator permit 34516 match community 1_109_209 1_110_208 1_111_207 1_112_206 1_113_205 set community 0:318 route-map calculator permit 34517 match community 1_114_204 1_115_203 1_116_202 1_117_201 1_118_200 set community 0:318 route-map calculator permit 34518 match community 1_119_199 1_120_198 1_121_197 1_122_196 1_123_195 set community 0:318 route-map calculator permit 34519 match community 1_124_194 1_125_193 1_126_192 1_127_191 1_128_190 set community 0:318 route-map calculator permit 34520 match community 1_129_189 1_130_188 1_131_187 1_132_186 1_133_185 set community 0:318 route-map calculator permit 34521 match community 1_134_184 1_135_183 1_136_182 1_137_181 1_138_180 set community 0:318 route-map calculator permit 34522 match community 1_139_179 1_140_178 1_141_177 1_142_176 1_143_175 set community 0:318 route-map calculator permit 34523 match community 1_144_174 1_145_173 1_146_172 1_147_171 1_148_170 set community 0:318 route-map calculator permit 34524 match community 1_149_169 1_150_168 1_151_167 1_152_166 1_153_165 set community 0:318 route-map calculator permit 34525 match community 1_154_164 1_155_163 1_156_162 1_157_161 1_158_160 set community 0:318 route-map calculator permit 34526 match community 1_159_159 set community 0:318 ip community-list standard 2_97_103 permit 65000:2 0:97 0:103 route-map calculator permit 34527 match community 2_97_103 set community 0:9991 ip community-list standard 2_11_235 permit 65000:2 0:11 0:235 ip community-list standard 2_47_55 permit 65000:2 0:47 0:55 route-map calculator permit 34528 match community 2_11_235 2_47_55 set community 0:2585 ip community-list standard 2_83_151 permit 65000:2 0:83 0:151 route-map calculator permit 34529 match community 2_83_151 set community 0:12533 ip community-list standard 2_197_217 permit 65000:2 0:197 0:217 route-map calculator permit 34530 match community 2_197_217 set community 0:42749 ip community-list standard 2_61_246 permit 65000:2 0:61 0:246 ip community-list standard 2_82_183 permit 65000:2 0:82 0:183 ip community-list standard 2_122_123 permit 65000:2 0:122 0:123 route-map calculator permit 34531 match community 2_61_246 2_82_183 2_122_123 set community 0:15006 ip community-list standard 2_230_249 permit 65000:2 0:230 0:249 route-map calculator permit 34532 match community 2_230_249 set community 0:57270 ip community-list standard 2_92_212 permit 65000:2 0:92 0:212 ip community-list standard 2_106_184 permit 65000:2 0:106 0:184 route-map calculator permit 34533 match community 2_92_212 2_106_184 set community 0:19504 ip community-list standard 2_81_113 permit 65000:2 0:81 0:113 route-map calculator permit 34534 match community 2_81_113 set community 0:9153 ip community-list standard 2_31_187 permit 65000:2 0:31 0:187 route-map calculator permit 34535 match community 2_31_187 set community 0:5797 ip community-list standard 2_94_192 permit 65000:2 0:94 0:192 ip community-list standard 2_96_188 permit 65000:2 0:96 0:188 ip community-list standard 2_128_141 permit 65000:2 0:128 0:141 route-map calculator permit 34536 match community 2_94_192 2_96_188 2_128_141 set community 0:18048 ip community-list standard 2_5_122 permit 65000:2 0:5 0:122 ip community-list standard 2_10_61 permit 65000:2 0:10 0:61 route-map calculator permit 34537 match community 2_5_122 2_10_61 set community 0:610 ip community-list standard 2_27_247 permit 65000:2 0:27 0:247 ip community-list standard 2_39_171 permit 65000:2 0:39 0:171 ip community-list standard 2_57_117 permit 65000:2 0:57 0:117 route-map calculator permit 34538 match community 2_27_247 2_39_171 2_57_117 set community 0:6669 ip community-list standard 2_35_185 permit 65000:2 0:35 0:185 ip community-list standard 2_37_175 permit 65000:2 0:37 0:175 route-map calculator permit 34539 match community 2_35_185 2_37_175 set community 0:6475 ip community-list standard 2_131_218 permit 65000:2 0:131 0:218 route-map calculator permit 34540 match community 2_131_218 set community 0:28558 ip community-list standard 2_165_229 permit 65000:2 0:165 0:229 route-map calculator permit 34541 match community 2_165_229 set community 0:37785 ip community-list standard 2_95_193 permit 65000:2 0:95 0:193 route-map calculator permit 34542 match community 2_95_193 set community 0:18335 ip community-list standard 2_221_239 permit 65000:2 0:221 0:239 route-map calculator permit 34543 match community 2_221_239 set community 0:52819 ip community-list standard 2_10_145 permit 65000:2 0:10 0:145 ip community-list standard 2_25_58 permit 65000:2 0:25 0:58 ip community-list standard 2_29_50 permit 65000:2 0:29 0:50 route-map calculator permit 34544 match community 2_10_145 2_25_58 2_29_50 set community 0:1450 ip community-list standard 2_23_186 permit 65000:2 0:23 0:186 ip community-list standard 2_31_138 permit 65000:2 0:31 0:138 ip community-list standard 2_46_93 permit 65000:2 0:46 0:93 ip community-list standard 2_62_69 permit 65000:2 0:62 0:69 route-map calculator permit 34545 match community 2_23_186 2_31_138 2_46_93 2_62_69 set community 0:4278 ip community-list standard 2_5_162 permit 65000:2 0:5 0:162 ip community-list standard 2_6_135 permit 65000:2 0:6 0:135 ip community-list standard 2_9_90 permit 65000:2 0:9 0:90 ip community-list standard 2_10_81 permit 65000:2 0:10 0:81 ip community-list standard 2_15_54 permit 65000:2 0:15 0:54 ip community-list standard 2_18_45 permit 65000:2 0:18 0:45 ip community-list standard 2_27_30 permit 65000:2 0:27 0:30 route-map calculator permit 34546 match community 2_5_162 2_6_135 2_9_90 2_10_81 2_15_54 set community 0:810 route-map calculator permit 34547 match community 2_18_45 2_27_30 set community 0:810 ip community-list standard 2_210_251 permit 65000:2 0:210 0:251 route-map calculator permit 34548 match community 2_210_251 set community 0:52710 ip community-list standard 2_74_224 permit 65000:2 0:74 0:224 ip community-list standard 2_112_148 permit 65000:2 0:112 0:148 route-map calculator permit 34549 match community 2_74_224 2_112_148 set community 0:16576 ip community-list standard 2_176_238 permit 65000:2 0:176 0:238 ip community-list standard 2_187_224 permit 65000:2 0:187 0:224 route-map calculator permit 34550 match community 2_176_238 2_187_224 set community 0:41888 ip community-list standard 2_46_204 permit 65000:2 0:46 0:204 ip community-list standard 2_51_184 permit 65000:2 0:51 0:184 ip community-list standard 2_68_138 permit 65000:2 0:68 0:138 ip community-list standard 2_69_136 permit 65000:2 0:69 0:136 ip community-list standard 2_92_102 permit 65000:2 0:92 0:102 route-map calculator permit 34551 match community 2_46_204 2_51_184 2_68_138 2_69_136 2_92_102 set community 0:9384 ip community-list standard 2_29_230 permit 65000:2 0:29 0:230 ip community-list standard 2_46_145 permit 65000:2 0:46 0:145 ip community-list standard 2_58_115 permit 65000:2 0:58 0:115 route-map calculator permit 34552 match community 2_29_230 2_46_145 2_58_115 set community 0:6670 ip community-list standard 2_110_177 permit 65000:2 0:110 0:177 ip community-list standard 2_118_165 permit 65000:2 0:118 0:165 route-map calculator permit 34553 match community 2_110_177 2_118_165 set community 0:19470 ip community-list standard 2_151_164 permit 65000:2 0:151 0:164 route-map calculator permit 34554 match community 2_151_164 set community 0:24764 ip community-list standard 2_183_233 permit 65000:2 0:183 0:233 route-map calculator permit 34555 match community 2_183_233 set community 0:42639 ip community-list standard 2_36_229 permit 65000:2 0:36 0:229 route-map calculator permit 34556 match community 2_36_229 set community 0:8244 ip community-list standard 2_21_196 permit 65000:2 0:21 0:196 ip community-list standard 2_28_147 permit 65000:2 0:28 0:147 ip community-list standard 2_42_98 permit 65000:2 0:42 0:98 ip community-list standard 2_49_84 permit 65000:2 0:49 0:84 route-map calculator permit 34557 match community 2_21_196 2_28_147 2_42_98 2_49_84 set community 0:4116 ip community-list standard 2_35_219 permit 65000:2 0:35 0:219 ip community-list standard 2_73_105 permit 65000:2 0:73 0:105 route-map calculator permit 34558 match community 2_35_219 2_73_105 set community 0:7665 ip community-list standard 2_124_169 permit 65000:2 0:124 0:169 route-map calculator permit 34559 match community 2_124_169 set community 0:20956 ip community-list standard 2_218_238 permit 65000:2 0:218 0:238 route-map calculator permit 34560 match community 2_218_238 set community 0:51884 ip community-list standard 2_121_211 permit 65000:2 0:121 0:211 route-map calculator permit 34561 match community 2_121_211 set community 0:25531 ip community-list standard 2_95_145 permit 65000:2 0:95 0:145 route-map calculator permit 34562 match community 2_95_145 set community 0:13775 ip community-list standard 2_48_163 permit 65000:2 0:48 0:163 route-map calculator permit 34563 match community 2_48_163 set community 0:7824 ip community-list standard 2_42_199 permit 65000:2 0:42 0:199 route-map calculator permit 34564 match community 2_42_199 set community 0:8358 ip community-list standard 2_90_181 permit 65000:2 0:90 0:181 route-map calculator permit 34565 match community 2_90_181 set community 0:16290 ip community-list standard 2_131_200 permit 65000:2 0:131 0:200 route-map calculator permit 34566 match community 2_131_200 set community 0:26200 ip community-list standard 2_5_241 permit 65000:2 0:5 0:241 route-map calculator permit 34567 match community 2_5_241 set community 0:1205 ip community-list standard 1_1_127 permit 65000:1 0:1 0:127 ip community-list standard 2_1_128 permit 65000:2 0:1 0:128 ip community-list standard 2_2_64 permit 65000:2 0:2 0:64 ip community-list standard 1_2_126 permit 65000:1 0:2 0:126 ip community-list standard 1_3_125 permit 65000:1 0:3 0:125 ip community-list standard 2_4_32 permit 65000:2 0:4 0:32 ip community-list standard 1_4_124 permit 65000:1 0:4 0:124 ip community-list standard 1_5_123 permit 65000:1 0:5 0:123 ip community-list standard 1_6_122 permit 65000:1 0:6 0:122 ip community-list standard 1_7_121 permit 65000:1 0:7 0:121 ip community-list standard 2_8_16 permit 65000:2 0:8 0:16 ip community-list standard 1_8_120 permit 65000:1 0:8 0:120 ip community-list standard 1_9_119 permit 65000:1 0:9 0:119 ip community-list standard 1_10_118 permit 65000:1 0:10 0:118 ip community-list standard 1_11_117 permit 65000:1 0:11 0:117 ip community-list standard 1_12_116 permit 65000:1 0:12 0:116 ip community-list standard 1_13_115 permit 65000:1 0:13 0:115 ip community-list standard 1_14_114 permit 65000:1 0:14 0:114 ip community-list standard 1_15_113 permit 65000:1 0:15 0:113 ip community-list standard 1_16_112 permit 65000:1 0:16 0:112 ip community-list standard 1_17_111 permit 65000:1 0:17 0:111 ip community-list standard 1_18_110 permit 65000:1 0:18 0:110 ip community-list standard 1_19_109 permit 65000:1 0:19 0:109 ip community-list standard 1_20_108 permit 65000:1 0:20 0:108 ip community-list standard 1_21_107 permit 65000:1 0:21 0:107 ip community-list standard 1_22_106 permit 65000:1 0:22 0:106 ip community-list standard 1_23_105 permit 65000:1 0:23 0:105 ip community-list standard 1_24_104 permit 65000:1 0:24 0:104 ip community-list standard 1_25_103 permit 65000:1 0:25 0:103 ip community-list standard 1_26_102 permit 65000:1 0:26 0:102 ip community-list standard 1_27_101 permit 65000:1 0:27 0:101 ip community-list standard 1_28_100 permit 65000:1 0:28 0:100 ip community-list standard 1_29_99 permit 65000:1 0:29 0:99 ip community-list standard 1_30_98 permit 65000:1 0:30 0:98 ip community-list standard 1_31_97 permit 65000:1 0:31 0:97 ip community-list standard 1_32_96 permit 65000:1 0:32 0:96 ip community-list standard 1_33_95 permit 65000:1 0:33 0:95 ip community-list standard 1_34_94 permit 65000:1 0:34 0:94 ip community-list standard 1_35_93 permit 65000:1 0:35 0:93 ip community-list standard 1_36_92 permit 65000:1 0:36 0:92 ip community-list standard 1_37_91 permit 65000:1 0:37 0:91 ip community-list standard 1_38_90 permit 65000:1 0:38 0:90 ip community-list standard 1_39_89 permit 65000:1 0:39 0:89 ip community-list standard 1_40_88 permit 65000:1 0:40 0:88 ip community-list standard 1_41_87 permit 65000:1 0:41 0:87 ip community-list standard 1_42_86 permit 65000:1 0:42 0:86 ip community-list standard 1_43_85 permit 65000:1 0:43 0:85 ip community-list standard 1_44_84 permit 65000:1 0:44 0:84 ip community-list standard 1_45_83 permit 65000:1 0:45 0:83 ip community-list standard 1_46_82 permit 65000:1 0:46 0:82 ip community-list standard 1_47_81 permit 65000:1 0:47 0:81 ip community-list standard 1_48_80 permit 65000:1 0:48 0:80 ip community-list standard 1_49_79 permit 65000:1 0:49 0:79 ip community-list standard 1_50_78 permit 65000:1 0:50 0:78 ip community-list standard 1_51_77 permit 65000:1 0:51 0:77 ip community-list standard 1_52_76 permit 65000:1 0:52 0:76 ip community-list standard 1_53_75 permit 65000:1 0:53 0:75 ip community-list standard 1_54_74 permit 65000:1 0:54 0:74 ip community-list standard 1_55_73 permit 65000:1 0:55 0:73 ip community-list standard 1_56_72 permit 65000:1 0:56 0:72 ip community-list standard 1_57_71 permit 65000:1 0:57 0:71 ip community-list standard 1_58_70 permit 65000:1 0:58 0:70 ip community-list standard 1_59_69 permit 65000:1 0:59 0:69 ip community-list standard 1_60_68 permit 65000:1 0:60 0:68 ip community-list standard 1_61_67 permit 65000:1 0:61 0:67 ip community-list standard 1_62_66 permit 65000:1 0:62 0:66 ip community-list standard 1_63_65 permit 65000:1 0:63 0:65 ip community-list standard 1_64_64 permit 65000:1 0:64 0:64 ip community-list expanded c128 permit 1 ^65000:4_0:128_0:1$ ip community-list expanded c128 permit 2 ^65000:3_0:129_0:1$ ip community-list expanded c128 permit 3 ^65000:3_0:130_0:2$ ip community-list expanded c128 permit 4 ^65000:3_0:131_0:3$ ip community-list expanded c128 permit 5 ^65000:3_0:132_0:4$ ip community-list expanded c128 permit 6 ^65000:3_0:133_0:5$ ip community-list expanded c128 permit 7 ^65000:3_0:134_0:6$ ip community-list expanded c128 permit 8 ^65000:3_0:135_0:7$ ip community-list expanded c128 permit 9 ^65000:3_0:136_0:8$ ip community-list expanded c128 permit 10 ^65000:3_0:137_0:9$ ip community-list expanded c128 permit 11 ^65000:3_0:138_0:10$ ip community-list expanded c128 permit 12 ^65000:3_0:139_0:11$ ip community-list expanded c128 permit 13 ^65000:3_0:140_0:12$ ip community-list expanded c128 permit 14 ^65000:3_0:141_0:13$ ip community-list expanded c128 permit 15 ^65000:3_0:142_0:14$ ip community-list expanded c128 permit 16 ^65000:3_0:143_0:15$ ip community-list expanded c128 permit 17 ^65000:3_0:144_0:16$ ip community-list expanded c128 permit 18 ^65000:3_0:145_0:17$ ip community-list expanded c128 permit 19 ^65000:3_0:146_0:18$ ip community-list expanded c128 permit 20 ^65000:3_0:147_0:19$ ip community-list expanded c128 permit 21 ^65000:3_0:148_0:20$ ip community-list expanded c128 permit 22 ^65000:3_0:149_0:21$ ip community-list expanded c128 permit 23 ^65000:3_0:150_0:22$ ip community-list expanded c128 permit 24 ^65000:3_0:151_0:23$ ip community-list expanded c128 permit 25 ^65000:3_0:152_0:24$ ip community-list expanded c128 permit 26 ^65000:3_0:153_0:25$ ip community-list expanded c128 permit 27 ^65000:3_0:154_0:26$ ip community-list expanded c128 permit 28 ^65000:3_0:155_0:27$ ip community-list expanded c128 permit 29 ^65000:3_0:156_0:28$ ip community-list expanded c128 permit 30 ^65000:3_0:157_0:29$ ip community-list expanded c128 permit 31 ^65000:3_0:158_0:30$ ip community-list expanded c128 permit 32 ^65000:3_0:159_0:31$ ip community-list expanded c128 permit 33 ^65000:3_0:160_0:32$ ip community-list expanded c128 permit 34 ^65000:3_0:161_0:33$ ip community-list expanded c128 permit 35 ^65000:3_0:162_0:34$ ip community-list expanded c128 permit 36 ^65000:3_0:163_0:35$ ip community-list expanded c128 permit 37 ^65000:3_0:164_0:36$ ip community-list expanded c128 permit 38 ^65000:3_0:165_0:37$ ip community-list expanded c128 permit 39 ^65000:3_0:166_0:38$ ip community-list expanded c128 permit 40 ^65000:3_0:167_0:39$ ip community-list expanded c128 permit 41 ^65000:3_0:168_0:40$ ip community-list expanded c128 permit 42 ^65000:3_0:169_0:41$ ip community-list expanded c128 permit 43 ^65000:3_0:170_0:42$ ip community-list expanded c128 permit 44 ^65000:3_0:171_0:43$ ip community-list expanded c128 permit 45 ^65000:3_0:172_0:44$ ip community-list expanded c128 permit 46 ^65000:3_0:173_0:45$ ip community-list expanded c128 permit 47 ^65000:3_0:174_0:46$ ip community-list expanded c128 permit 48 ^65000:3_0:175_0:47$ ip community-list expanded c128 permit 49 ^65000:3_0:176_0:48$ ip community-list expanded c128 permit 50 ^65000:3_0:177_0:49$ ip community-list expanded c128 permit 51 ^65000:3_0:178_0:50$ ip community-list expanded c128 permit 52 ^65000:3_0:179_0:51$ ip community-list expanded c128 permit 53 ^65000:3_0:180_0:52$ ip community-list expanded c128 permit 54 ^65000:3_0:181_0:53$ ip community-list expanded c128 permit 55 ^65000:3_0:182_0:54$ ip community-list expanded c128 permit 56 ^65000:3_0:183_0:55$ ip community-list expanded c128 permit 57 ^65000:3_0:184_0:56$ ip community-list expanded c128 permit 58 ^65000:3_0:185_0:57$ ip community-list expanded c128 permit 59 ^65000:3_0:186_0:58$ ip community-list expanded c128 permit 60 ^65000:3_0:187_0:59$ ip community-list expanded c128 permit 61 ^65000:3_0:188_0:60$ ip community-list expanded c128 permit 62 ^65000:3_0:189_0:61$ ip community-list expanded c128 permit 63 ^65000:3_0:190_0:62$ ip community-list expanded c128 permit 64 ^65000:3_0:191_0:63$ ip community-list expanded c128 permit 65 ^65000:3_0:192_0:64$ ip community-list expanded c128 permit 66 ^65000:3_0:193_0:65$ ip community-list expanded c128 permit 67 ^65000:3_0:194_0:66$ ip community-list expanded c128 permit 68 ^65000:3_0:195_0:67$ ip community-list expanded c128 permit 69 ^65000:3_0:196_0:68$ ip community-list expanded c128 permit 70 ^65000:3_0:197_0:69$ ip community-list expanded c128 permit 71 ^65000:3_0:198_0:70$ ip community-list expanded c128 permit 72 ^65000:3_0:199_0:71$ ip community-list expanded c128 permit 73 ^65000:3_0:200_0:72$ ip community-list expanded c128 permit 74 ^65000:3_0:201_0:73$ ip community-list expanded c128 permit 75 ^65000:3_0:202_0:74$ ip community-list expanded c128 permit 76 ^65000:3_0:203_0:75$ ip community-list expanded c128 permit 77 ^65000:3_0:204_0:76$ ip community-list expanded c128 permit 78 ^65000:3_0:205_0:77$ ip community-list expanded c128 permit 79 ^65000:3_0:206_0:78$ ip community-list expanded c128 permit 80 ^65000:3_0:207_0:79$ ip community-list expanded c128 permit 81 ^65000:3_0:208_0:80$ ip community-list expanded c128 permit 82 ^65000:3_0:209_0:81$ ip community-list expanded c128 permit 83 ^65000:3_0:210_0:82$ ip community-list expanded c128 permit 84 ^65000:3_0:211_0:83$ ip community-list expanded c128 permit 85 ^65000:3_0:212_0:84$ ip community-list expanded c128 permit 86 ^65000:3_0:213_0:85$ ip community-list expanded c128 permit 87 ^65000:3_0:214_0:86$ ip community-list expanded c128 permit 88 ^65000:3_0:215_0:87$ ip community-list expanded c128 permit 89 ^65000:3_0:216_0:88$ ip community-list expanded c128 permit 90 ^65000:3_0:217_0:89$ ip community-list expanded c128 permit 91 ^65000:3_0:218_0:90$ ip community-list expanded c128 permit 92 ^65000:3_0:219_0:91$ ip community-list expanded c128 permit 93 ^65000:3_0:220_0:92$ ip community-list expanded c128 permit 94 ^65000:3_0:221_0:93$ ip community-list expanded c128 permit 95 ^65000:3_0:222_0:94$ ip community-list expanded c128 permit 96 ^65000:3_0:223_0:95$ ip community-list expanded c128 permit 97 ^65000:3_0:224_0:96$ ip community-list expanded c128 permit 98 ^65000:3_0:225_0:97$ ip community-list expanded c128 permit 99 ^65000:3_0:226_0:98$ ip community-list expanded c128 permit 100 ^65000:3_0:227_0:99$ ip community-list expanded c128 permit 101 ^65000:3_0:228_0:100$ ip community-list expanded c128 permit 102 ^65000:3_0:229_0:101$ ip community-list expanded c128 permit 103 ^65000:3_0:230_0:102$ ip community-list expanded c128 permit 104 ^65000:3_0:231_0:103$ ip community-list expanded c128 permit 105 ^65000:3_0:232_0:104$ ip community-list expanded c128 permit 106 ^65000:3_0:233_0:105$ ip community-list expanded c128 permit 107 ^65000:3_0:234_0:106$ ip community-list expanded c128 permit 108 ^65000:3_0:235_0:107$ ip community-list expanded c128 permit 109 ^65000:3_0:236_0:108$ ip community-list expanded c128 permit 110 ^65000:3_0:237_0:109$ ip community-list expanded c128 permit 111 ^65000:3_0:238_0:110$ ip community-list expanded c128 permit 112 ^65000:3_0:239_0:111$ ip community-list expanded c128 permit 113 ^65000:3_0:240_0:112$ ip community-list expanded c128 permit 114 ^65000:3_0:241_0:113$ ip community-list expanded c128 permit 115 ^65000:3_0:242_0:114$ ip community-list expanded c128 permit 116 ^65000:3_0:243_0:115$ ip community-list expanded c128 permit 117 ^65000:3_0:244_0:116$ ip community-list expanded c128 permit 118 ^65000:3_0:245_0:117$ ip community-list expanded c128 permit 119 ^65000:3_0:246_0:118$ ip community-list expanded c128 permit 120 ^65000:3_0:247_0:119$ ip community-list expanded c128 permit 121 ^65000:3_0:248_0:120$ ip community-list expanded c128 permit 122 ^65000:3_0:249_0:121$ ip community-list expanded c128 permit 123 ^65000:3_0:250_0:122$ ip community-list expanded c128 permit 124 ^65000:3_0:251_0:123$ ip community-list expanded c128 permit 125 ^65000:3_0:252_0:124$ ip community-list expanded c128 permit 126 ^65000:3_0:253_0:125$ ip community-list expanded c128 permit 127 ^65000:3_0:254_0:126$ ip community-list expanded c128 permit 128 ^65000:3_0:255_0:127$ ip community-list expanded c128 permit 129 ^65000:4_0:256_0:2$ ip community-list expanded c128 permit 130 ^65000:3_0:256_0:128$ route-map calculator permit 34568 match community 1_1_127 2_1_128 2_2_64 1_2_126 1_3_125 set community 0:128 route-map calculator permit 34569 match community 2_4_32 1_4_124 1_5_123 1_6_122 1_7_121 set community 0:128 route-map calculator permit 34570 match community 2_8_16 1_8_120 1_9_119 1_10_118 1_11_117 set community 0:128 route-map calculator permit 34571 match community 1_12_116 1_13_115 1_14_114 1_15_113 1_16_112 set community 0:128 route-map calculator permit 34572 match community 1_17_111 1_18_110 1_19_109 1_20_108 1_21_107 set community 0:128 route-map calculator permit 34573 match community 1_22_106 1_23_105 1_24_104 1_25_103 1_26_102 set community 0:128 route-map calculator permit 34574 match community 1_27_101 1_28_100 1_29_99 1_30_98 1_31_97 set community 0:128 route-map calculator permit 34575 match community 1_32_96 1_33_95 1_34_94 1_35_93 1_36_92 set community 0:128 route-map calculator permit 34576 match community 1_37_91 1_38_90 1_39_89 1_40_88 1_41_87 set community 0:128 route-map calculator permit 34577 match community 1_42_86 1_43_85 1_44_84 1_45_83 1_46_82 set community 0:128 route-map calculator permit 34578 match community 1_47_81 1_48_80 1_49_79 1_50_78 1_51_77 set community 0:128 route-map calculator permit 34579 match community 1_52_76 1_53_75 1_54_74 1_55_73 1_56_72 set community 0:128 route-map calculator permit 34580 match community 1_57_71 1_58_70 1_59_69 1_60_68 1_61_67 set community 0:128 route-map calculator permit 34581 match community 1_62_66 1_63_65 1_64_64 c4_128_1 c3_129_1 set community 0:128 route-map calculator permit 34582 match community c3_130_2 c3_131_3 c3_132_4 c3_133_5 c3_134_6 set community 0:128 route-map calculator permit 34583 match community c3_135_7 c3_136_8 c3_137_9 c3_138_10 c3_139_11 set community 0:128 route-map calculator permit 34584 match community c3_140_12 c3_141_13 c3_142_14 c3_143_15 c3_144_16 set community 0:128 route-map calculator permit 34585 match community c3_145_17 c3_146_18 c3_147_19 c3_148_20 c3_149_21 set community 0:128 route-map calculator permit 34586 match community c3_150_22 c3_151_23 c3_152_24 c3_153_25 c3_154_26 set community 0:128 route-map calculator permit 34587 match community c3_155_27 c3_156_28 c3_157_29 c3_158_30 c3_159_31 set community 0:128 route-map calculator permit 34588 match community c3_160_32 c3_161_33 c3_162_34 c3_163_35 c3_164_36 set community 0:128 route-map calculator permit 34589 match community c3_165_37 c3_166_38 c3_167_39 c3_168_40 c3_169_41 set community 0:128 route-map calculator permit 34590 match community c3_170_42 c3_171_43 c3_172_44 c3_173_45 c3_174_46 set community 0:128 route-map calculator permit 34591 match community c3_175_47 c3_176_48 c3_177_49 c3_178_50 c3_179_51 set community 0:128 route-map calculator permit 34592 match community c3_180_52 c3_181_53 c3_182_54 c3_183_55 c3_184_56 set community 0:128 route-map calculator permit 34593 match community c3_185_57 c3_186_58 c3_187_59 c3_188_60 c3_189_61 set community 0:128 route-map calculator permit 34594 match community c3_190_62 c3_191_63 c3_192_64 c3_193_65 c3_194_66 set community 0:128 route-map calculator permit 34595 match community c3_195_67 c3_196_68 c3_197_69 c3_198_70 c3_199_71 set community 0:128 route-map calculator permit 34596 match community c3_200_72 c3_201_73 c3_202_74 c3_203_75 c3_204_76 set community 0:128 route-map calculator permit 34597 match community c3_205_77 c3_206_78 c3_207_79 c3_208_80 c3_209_81 set community 0:128 route-map calculator permit 34598 match community c3_210_82 c3_211_83 c3_212_84 c3_213_85 c3_214_86 set community 0:128 route-map calculator permit 34599 match community c3_215_87 c3_216_88 c3_217_89 c3_218_90 c3_219_91 set community 0:128 route-map calculator permit 34600 match community c3_220_92 c3_221_93 c3_222_94 c3_223_95 c3_224_96 set community 0:128 route-map calculator permit 34601 match community c3_225_97 c3_226_98 c3_227_99 c3_228_100 c3_229_101 set community 0:128 route-map calculator permit 34602 match community c3_230_102 c3_231_103 c3_232_104 c3_233_105 c3_234_106 set community 0:128 route-map calculator permit 34603 match community c3_235_107 c3_236_108 c3_237_109 c3_238_110 c3_239_111 set community 0:128 route-map calculator permit 34604 match community c3_240_112 c3_241_113 c3_242_114 c3_243_115 c3_244_116 set community 0:128 route-map calculator permit 34605 match community c3_245_117 c3_246_118 c3_247_119 c3_248_120 c3_249_121 set community 0:128 route-map calculator permit 34606 match community c3_250_122 c3_251_123 c3_252_124 c3_253_125 c3_254_126 set community 0:128 route-map calculator permit 34607 match community c3_255_127 c4_256_2 c3_256_128 set community 0:128 ip community-list standard 2_30_226 permit 65000:2 0:30 0:226 ip community-list standard 2_60_113 permit 65000:2 0:60 0:113 route-map calculator permit 34608 match community 2_30_226 2_60_113 set community 0:6780 ip community-list standard 2_55_219 permit 65000:2 0:55 0:219 ip community-list standard 2_73_165 permit 65000:2 0:73 0:165 route-map calculator permit 34609 match community 2_55_219 2_73_165 set community 0:12045 ip community-list standard 2_149_179 permit 65000:2 0:149 0:179 route-map calculator permit 34610 match community 2_149_179 set community 0:26671 ip community-list standard 2_150_244 permit 65000:2 0:150 0:244 ip community-list standard 2_183_200 permit 65000:2 0:183 0:200 route-map calculator permit 34611 match community 2_150_244 2_183_200 set community 0:36600 ip community-list standard 2_219_240 permit 65000:2 0:219 0:240 route-map calculator permit 34612 match community 2_219_240 set community 0:52560 ip community-list standard 2_27_243 permit 65000:2 0:27 0:243 ip community-list standard 2_81_81 permit 65000:2 0:81 0:81 route-map calculator permit 34613 match community 2_27_243 2_81_81 set community 0:6561 ip community-list standard 2_123_199 permit 65000:2 0:123 0:199 route-map calculator permit 34614 match community 2_123_199 set community 0:24477 ip community-list standard 2_59_71 permit 65000:2 0:59 0:71 route-map calculator permit 34615 match community 2_59_71 set community 0:4189 ip community-list standard 2_10_181 permit 65000:2 0:10 0:181 route-map calculator permit 34616 match community 2_10_181 set community 0:1810 ip community-list standard 2_23_222 permit 65000:2 0:23 0:222 ip community-list standard 2_37_138 permit 65000:2 0:37 0:138 ip community-list standard 2_46_111 permit 65000:2 0:46 0:111 ip community-list standard 2_69_74 permit 65000:2 0:69 0:74 route-map calculator permit 34617 match community 2_23_222 2_37_138 2_46_111 2_69_74 set community 0:5106 ip community-list standard 1_91_256 permit 65000:1 0:91 0:256 ip community-list standard 1_92_255 permit 65000:1 0:92 0:255 ip community-list standard 1_93_254 permit 65000:1 0:93 0:254 ip community-list standard 1_94_253 permit 65000:1 0:94 0:253 ip community-list standard 1_95_252 permit 65000:1 0:95 0:252 ip community-list standard 1_96_251 permit 65000:1 0:96 0:251 ip community-list standard 1_97_250 permit 65000:1 0:97 0:250 ip community-list standard 1_98_249 permit 65000:1 0:98 0:249 ip community-list standard 1_99_248 permit 65000:1 0:99 0:248 ip community-list standard 1_100_247 permit 65000:1 0:100 0:247 ip community-list standard 1_101_246 permit 65000:1 0:101 0:246 ip community-list standard 1_102_245 permit 65000:1 0:102 0:245 ip community-list standard 1_103_244 permit 65000:1 0:103 0:244 ip community-list standard 1_104_243 permit 65000:1 0:104 0:243 ip community-list standard 1_105_242 permit 65000:1 0:105 0:242 ip community-list standard 1_106_241 permit 65000:1 0:106 0:241 ip community-list standard 1_107_240 permit 65000:1 0:107 0:240 ip community-list standard 1_108_239 permit 65000:1 0:108 0:239 ip community-list standard 1_109_238 permit 65000:1 0:109 0:238 ip community-list standard 1_110_237 permit 65000:1 0:110 0:237 ip community-list standard 1_111_236 permit 65000:1 0:111 0:236 ip community-list standard 1_112_235 permit 65000:1 0:112 0:235 ip community-list standard 1_113_234 permit 65000:1 0:113 0:234 ip community-list standard 1_114_233 permit 65000:1 0:114 0:233 ip community-list standard 1_115_232 permit 65000:1 0:115 0:232 ip community-list standard 1_116_231 permit 65000:1 0:116 0:231 ip community-list standard 1_117_230 permit 65000:1 0:117 0:230 ip community-list standard 1_118_229 permit 65000:1 0:118 0:229 ip community-list standard 1_119_228 permit 65000:1 0:119 0:228 ip community-list standard 1_120_227 permit 65000:1 0:120 0:227 ip community-list standard 1_121_226 permit 65000:1 0:121 0:226 ip community-list standard 1_122_225 permit 65000:1 0:122 0:225 ip community-list standard 1_123_224 permit 65000:1 0:123 0:224 ip community-list standard 1_124_223 permit 65000:1 0:124 0:223 ip community-list standard 1_125_222 permit 65000:1 0:125 0:222 ip community-list standard 1_126_221 permit 65000:1 0:126 0:221 ip community-list standard 1_127_220 permit 65000:1 0:127 0:220 ip community-list standard 1_128_219 permit 65000:1 0:128 0:219 ip community-list standard 1_129_218 permit 65000:1 0:129 0:218 ip community-list standard 1_130_217 permit 65000:1 0:130 0:217 ip community-list standard 1_131_216 permit 65000:1 0:131 0:216 ip community-list standard 1_132_215 permit 65000:1 0:132 0:215 ip community-list standard 1_133_214 permit 65000:1 0:133 0:214 ip community-list standard 1_134_213 permit 65000:1 0:134 0:213 ip community-list standard 1_135_212 permit 65000:1 0:135 0:212 ip community-list standard 1_136_211 permit 65000:1 0:136 0:211 ip community-list standard 1_137_210 permit 65000:1 0:137 0:210 ip community-list standard 1_138_209 permit 65000:1 0:138 0:209 ip community-list standard 1_139_208 permit 65000:1 0:139 0:208 ip community-list standard 1_140_207 permit 65000:1 0:140 0:207 ip community-list standard 1_141_206 permit 65000:1 0:141 0:206 ip community-list standard 1_142_205 permit 65000:1 0:142 0:205 ip community-list standard 1_143_204 permit 65000:1 0:143 0:204 ip community-list standard 1_144_203 permit 65000:1 0:144 0:203 ip community-list standard 1_145_202 permit 65000:1 0:145 0:202 ip community-list standard 1_146_201 permit 65000:1 0:146 0:201 ip community-list standard 1_147_200 permit 65000:1 0:147 0:200 ip community-list standard 1_148_199 permit 65000:1 0:148 0:199 ip community-list standard 1_149_198 permit 65000:1 0:149 0:198 ip community-list standard 1_150_197 permit 65000:1 0:150 0:197 ip community-list standard 1_151_196 permit 65000:1 0:151 0:196 ip community-list standard 1_152_195 permit 65000:1 0:152 0:195 ip community-list standard 1_153_194 permit 65000:1 0:153 0:194 ip community-list standard 1_154_193 permit 65000:1 0:154 0:193 ip community-list standard 1_155_192 permit 65000:1 0:155 0:192 ip community-list standard 1_156_191 permit 65000:1 0:156 0:191 ip community-list standard 1_157_190 permit 65000:1 0:157 0:190 ip community-list standard 1_158_189 permit 65000:1 0:158 0:189 ip community-list standard 1_159_188 permit 65000:1 0:159 0:188 ip community-list standard 1_160_187 permit 65000:1 0:160 0:187 ip community-list standard 1_161_186 permit 65000:1 0:161 0:186 ip community-list standard 1_162_185 permit 65000:1 0:162 0:185 ip community-list standard 1_163_184 permit 65000:1 0:163 0:184 ip community-list standard 1_164_183 permit 65000:1 0:164 0:183 ip community-list standard 1_165_182 permit 65000:1 0:165 0:182 ip community-list standard 1_166_181 permit 65000:1 0:166 0:181 ip community-list standard 1_167_180 permit 65000:1 0:167 0:180 ip community-list standard 1_168_179 permit 65000:1 0:168 0:179 ip community-list standard 1_169_178 permit 65000:1 0:169 0:178 ip community-list standard 1_170_177 permit 65000:1 0:170 0:177 ip community-list standard 1_171_176 permit 65000:1 0:171 0:176 ip community-list standard 1_172_175 permit 65000:1 0:172 0:175 ip community-list standard 1_173_174 permit 65000:1 0:173 0:174 route-map calculator permit 34618 match community 1_91_256 1_92_255 1_93_254 1_94_253 1_95_252 set community 0:347 route-map calculator permit 34619 match community 1_96_251 1_97_250 1_98_249 1_99_248 1_100_247 set community 0:347 route-map calculator permit 34620 match community 1_101_246 1_102_245 1_103_244 1_104_243 1_105_242 set community 0:347 route-map calculator permit 34621 match community 1_106_241 1_107_240 1_108_239 1_109_238 1_110_237 set community 0:347 route-map calculator permit 34622 match community 1_111_236 1_112_235 1_113_234 1_114_233 1_115_232 set community 0:347 route-map calculator permit 34623 match community 1_116_231 1_117_230 1_118_229 1_119_228 1_120_227 set community 0:347 route-map calculator permit 34624 match community 1_121_226 1_122_225 1_123_224 1_124_223 1_125_222 set community 0:347 route-map calculator permit 34625 match community 1_126_221 1_127_220 1_128_219 1_129_218 1_130_217 set community 0:347 route-map calculator permit 34626 match community 1_131_216 1_132_215 1_133_214 1_134_213 1_135_212 set community 0:347 route-map calculator permit 34627 match community 1_136_211 1_137_210 1_138_209 1_139_208 1_140_207 set community 0:347 route-map calculator permit 34628 match community 1_141_206 1_142_205 1_143_204 1_144_203 1_145_202 set community 0:347 route-map calculator permit 34629 match community 1_146_201 1_147_200 1_148_199 1_149_198 1_150_197 set community 0:347 route-map calculator permit 34630 match community 1_151_196 1_152_195 1_153_194 1_154_193 1_155_192 set community 0:347 route-map calculator permit 34631 match community 1_156_191 1_157_190 1_158_189 1_159_188 1_160_187 set community 0:347 route-map calculator permit 34632 match community 1_161_186 1_162_185 1_163_184 1_164_183 1_165_182 set community 0:347 route-map calculator permit 34633 match community 1_166_181 1_167_180 1_168_179 1_169_178 1_170_177 set community 0:347 route-map calculator permit 34634 match community 1_171_176 1_172_175 1_173_174 set community 0:347 ip community-list standard 2_68_178 permit 65000:2 0:68 0:178 ip community-list standard 2_89_136 permit 65000:2 0:89 0:136 route-map calculator permit 34635 match community 2_68_178 2_89_136 set community 0:12104 ip community-list standard 2_148_251 permit 65000:2 0:148 0:251 route-map calculator permit 34636 match community 2_148_251 set community 0:37148 ip community-list standard 2_125_250 permit 65000:2 0:125 0:250 route-map calculator permit 34637 match community 2_125_250 set community 0:31250 ip community-list standard 2_118_223 permit 65000:2 0:118 0:223 route-map calculator permit 34638 match community 2_118_223 set community 0:26314 ip community-list standard 2_52_191 permit 65000:2 0:52 0:191 route-map calculator permit 34639 match community 2_52_191 set community 0:9932 ip community-list standard 2_173_180 permit 65000:2 0:173 0:180 route-map calculator permit 34640 match community 2_173_180 set community 0:31140 ip community-list standard 2_62_211 permit 65000:2 0:62 0:211 route-map calculator permit 34641 match community 2_62_211 set community 0:13082 ip community-list standard 2_63_202 permit 65000:2 0:63 0:202 ip community-list standard 2_101_126 permit 65000:2 0:101 0:126 route-map calculator permit 34642 match community 2_63_202 2_101_126 set community 0:12726 ip community-list standard 2_124_137 permit 65000:2 0:124 0:137 route-map calculator permit 34643 match community 2_124_137 set community 0:16988 ip community-list standard 2_65_230 permit 65000:2 0:65 0:230 ip community-list standard 2_115_130 permit 65000:2 0:115 0:130 route-map calculator permit 34644 match community 2_65_230 2_115_130 set community 0:14950 ip community-list standard 2_29_177 permit 65000:2 0:29 0:177 ip community-list standard 2_59_87 permit 65000:2 0:59 0:87 route-map calculator permit 34645 match community 2_29_177 2_59_87 set community 0:5133 ip community-list standard 2_69_255 permit 65000:2 0:69 0:255 ip community-list standard 2_85_207 permit 65000:2 0:85 0:207 ip community-list standard 2_115_153 permit 65000:2 0:115 0:153 route-map calculator permit 34646 match community 2_69_255 2_85_207 2_115_153 set community 0:17595 ip community-list standard 2_9_238 permit 65000:2 0:9 0:238 ip community-list standard 2_14_153 permit 65000:2 0:14 0:153 ip community-list standard 2_17_126 permit 65000:2 0:17 0:126 ip community-list standard 2_18_119 permit 65000:2 0:18 0:119 ip community-list standard 2_21_102 permit 65000:2 0:21 0:102 ip community-list standard 2_34_63 permit 65000:2 0:34 0:63 ip community-list standard 2_42_51 permit 65000:2 0:42 0:51 route-map calculator permit 34647 match community 2_9_238 2_14_153 2_17_126 2_18_119 2_21_102 set community 0:2142 route-map calculator permit 34648 match community 2_34_63 2_42_51 set community 0:2142 ip community-list standard 2_44_251 permit 65000:2 0:44 0:251 route-map calculator permit 34649 match community 2_44_251 set community 0:11044 ip community-list standard 2_108_240 permit 65000:2 0:108 0:240 ip community-list standard 2_120_216 permit 65000:2 0:120 0:216 ip community-list standard 2_135_192 permit 65000:2 0:135 0:192 ip community-list standard 2_144_180 permit 65000:2 0:144 0:180 ip community-list standard 2_160_162 permit 65000:2 0:160 0:162 route-map calculator permit 34650 match community 2_108_240 2_120_216 2_135_192 2_144_180 2_160_162 set community 0:25920 ip community-list standard 2_9_149 permit 65000:2 0:9 0:149 route-map calculator permit 34651 match community 2_9_149 set community 0:1341 ip community-list standard 2_173_189 permit 65000:2 0:173 0:189 route-map calculator permit 34652 match community 2_173_189 set community 0:32697 ip community-list standard 2_128_157 permit 65000:2 0:128 0:157 route-map calculator permit 34653 match community 2_128_157 set community 0:20096 ip community-list standard 2_107_240 permit 65000:2 0:107 0:240 ip community-list standard 2_120_214 permit 65000:2 0:120 0:214 route-map calculator permit 34654 match community 2_107_240 2_120_214 set community 0:25680 ip community-list standard 2_139_155 permit 65000:2 0:139 0:155 route-map calculator permit 34655 match community 2_139_155 set community 0:21545 ip community-list standard 2_83_191 permit 65000:2 0:83 0:191 route-map calculator permit 34656 match community 2_83_191 set community 0:15853 ip community-list standard 1_1_47 permit 65000:1 0:1 0:47 ip community-list standard 2_1_48 permit 65000:2 0:1 0:48 ip community-list standard 2_2_24 permit 65000:2 0:2 0:24 ip community-list standard 1_2_46 permit 65000:1 0:2 0:46 ip community-list standard 2_3_16 permit 65000:2 0:3 0:16 ip community-list standard 1_3_45 permit 65000:1 0:3 0:45 ip community-list standard 2_4_12 permit 65000:2 0:4 0:12 ip community-list standard 1_4_44 permit 65000:1 0:4 0:44 ip community-list standard 1_5_43 permit 65000:1 0:5 0:43 ip community-list standard 2_6_8 permit 65000:2 0:6 0:8 ip community-list standard 1_6_42 permit 65000:1 0:6 0:42 ip community-list standard 1_7_41 permit 65000:1 0:7 0:41 ip community-list standard 1_8_40 permit 65000:1 0:8 0:40 ip community-list standard 1_9_39 permit 65000:1 0:9 0:39 ip community-list standard 1_10_38 permit 65000:1 0:10 0:38 ip community-list standard 1_11_37 permit 65000:1 0:11 0:37 ip community-list standard 1_12_36 permit 65000:1 0:12 0:36 ip community-list standard 1_13_35 permit 65000:1 0:13 0:35 ip community-list standard 1_14_34 permit 65000:1 0:14 0:34 ip community-list standard 1_15_33 permit 65000:1 0:15 0:33 ip community-list standard 1_16_32 permit 65000:1 0:16 0:32 ip community-list standard 1_17_31 permit 65000:1 0:17 0:31 ip community-list standard 1_18_30 permit 65000:1 0:18 0:30 ip community-list standard 1_19_29 permit 65000:1 0:19 0:29 ip community-list standard 1_20_28 permit 65000:1 0:20 0:28 ip community-list standard 1_21_27 permit 65000:1 0:21 0:27 ip community-list standard 1_22_26 permit 65000:1 0:22 0:26 ip community-list standard 1_23_25 permit 65000:1 0:23 0:25 ip community-list standard 1_24_24 permit 65000:1 0:24 0:24 ip community-list expanded c48 permit 1 ^65000:4_0:48_0:1$ ip community-list expanded c48 permit 2 ^65000:3_0:49_0:1$ ip community-list expanded c48 permit 3 ^65000:3_0:50_0:2$ ip community-list expanded c48 permit 4 ^65000:3_0:51_0:3$ ip community-list expanded c48 permit 5 ^65000:3_0:52_0:4$ ip community-list expanded c48 permit 6 ^65000:3_0:53_0:5$ ip community-list expanded c48 permit 7 ^65000:3_0:54_0:6$ ip community-list expanded c48 permit 8 ^65000:3_0:55_0:7$ ip community-list expanded c48 permit 9 ^65000:3_0:56_0:8$ ip community-list expanded c48 permit 10 ^65000:3_0:57_0:9$ ip community-list expanded c48 permit 11 ^65000:3_0:58_0:10$ ip community-list expanded c48 permit 12 ^65000:3_0:59_0:11$ ip community-list expanded c48 permit 13 ^65000:3_0:60_0:12$ ip community-list expanded c48 permit 14 ^65000:3_0:61_0:13$ ip community-list expanded c48 permit 15 ^65000:3_0:62_0:14$ ip community-list expanded c48 permit 16 ^65000:3_0:63_0:15$ ip community-list expanded c48 permit 17 ^65000:3_0:64_0:16$ ip community-list expanded c48 permit 18 ^65000:3_0:65_0:17$ ip community-list expanded c48 permit 19 ^65000:3_0:66_0:18$ ip community-list expanded c48 permit 20 ^65000:3_0:67_0:19$ ip community-list expanded c48 permit 21 ^65000:3_0:68_0:20$ ip community-list expanded c48 permit 22 ^65000:3_0:69_0:21$ ip community-list expanded c48 permit 23 ^65000:3_0:70_0:22$ ip community-list expanded c48 permit 24 ^65000:3_0:71_0:23$ ip community-list expanded c48 permit 25 ^65000:3_0:72_0:24$ ip community-list expanded c48 permit 26 ^65000:3_0:73_0:25$ ip community-list expanded c48 permit 27 ^65000:3_0:74_0:26$ ip community-list expanded c48 permit 28 ^65000:3_0:75_0:27$ ip community-list expanded c48 permit 29 ^65000:3_0:76_0:28$ ip community-list expanded c48 permit 30 ^65000:3_0:77_0:29$ ip community-list expanded c48 permit 31 ^65000:3_0:78_0:30$ ip community-list expanded c48 permit 32 ^65000:3_0:79_0:31$ ip community-list expanded c48 permit 33 ^65000:3_0:80_0:32$ ip community-list expanded c48 permit 34 ^65000:3_0:81_0:33$ ip community-list expanded c48 permit 35 ^65000:3_0:82_0:34$ ip community-list expanded c48 permit 36 ^65000:3_0:83_0:35$ ip community-list expanded c48 permit 37 ^65000:3_0:84_0:36$ ip community-list expanded c48 permit 38 ^65000:3_0:85_0:37$ ip community-list expanded c48 permit 39 ^65000:3_0:86_0:38$ ip community-list expanded c48 permit 40 ^65000:3_0:87_0:39$ ip community-list expanded c48 permit 41 ^65000:3_0:88_0:40$ ip community-list expanded c48 permit 42 ^65000:3_0:89_0:41$ ip community-list expanded c48 permit 43 ^65000:3_0:90_0:42$ ip community-list expanded c48 permit 44 ^65000:3_0:91_0:43$ ip community-list expanded c48 permit 45 ^65000:3_0:92_0:44$ ip community-list expanded c48 permit 46 ^65000:3_0:93_0:45$ ip community-list expanded c48 permit 47 ^65000:3_0:94_0:46$ ip community-list expanded c48 permit 48 ^65000:3_0:95_0:47$ ip community-list expanded c48 permit 49 ^65000:4_0:96_0:2$ ip community-list expanded c48 permit 50 ^65000:3_0:96_0:48$ ip community-list expanded c48 permit 51 ^65000:4_0:97_0:2$ ip community-list expanded c48 permit 52 ^65000:3_0:97_0:49$ ip community-list expanded c48 permit 53 ^65000:3_0:98_0:50$ ip community-list expanded c48 permit 54 ^65000:3_0:99_0:51$ ip community-list expanded c48 permit 55 ^65000:3_0:100_0:52$ ip community-list expanded c48 permit 56 ^65000:3_0:101_0:53$ ip community-list expanded c48 permit 57 ^65000:3_0:102_0:54$ ip community-list expanded c48 permit 58 ^65000:3_0:103_0:55$ ip community-list expanded c48 permit 59 ^65000:3_0:104_0:56$ ip community-list expanded c48 permit 60 ^65000:3_0:105_0:57$ ip community-list expanded c48 permit 61 ^65000:3_0:106_0:58$ ip community-list expanded c48 permit 62 ^65000:3_0:107_0:59$ ip community-list expanded c48 permit 63 ^65000:3_0:108_0:60$ ip community-list expanded c48 permit 64 ^65000:3_0:109_0:61$ ip community-list expanded c48 permit 65 ^65000:3_0:110_0:62$ ip community-list expanded c48 permit 66 ^65000:3_0:111_0:63$ ip community-list expanded c48 permit 67 ^65000:3_0:112_0:64$ ip community-list expanded c48 permit 68 ^65000:3_0:113_0:65$ ip community-list expanded c48 permit 69 ^65000:3_0:114_0:66$ ip community-list expanded c48 permit 70 ^65000:3_0:115_0:67$ ip community-list expanded c48 permit 71 ^65000:3_0:116_0:68$ ip community-list expanded c48 permit 72 ^65000:3_0:117_0:69$ ip community-list expanded c48 permit 73 ^65000:3_0:118_0:70$ ip community-list expanded c48 permit 74 ^65000:3_0:119_0:71$ ip community-list expanded c48 permit 75 ^65000:3_0:120_0:72$ ip community-list expanded c48 permit 76 ^65000:3_0:121_0:73$ ip community-list expanded c48 permit 77 ^65000:3_0:122_0:74$ ip community-list expanded c48 permit 78 ^65000:3_0:123_0:75$ ip community-list expanded c48 permit 79 ^65000:3_0:124_0:76$ ip community-list expanded c48 permit 80 ^65000:3_0:125_0:77$ ip community-list expanded c48 permit 81 ^65000:3_0:126_0:78$ ip community-list expanded c48 permit 82 ^65000:3_0:127_0:79$ ip community-list expanded c48 permit 83 ^65000:3_0:128_0:80$ ip community-list expanded c48 permit 84 ^65000:3_0:129_0:81$ ip community-list expanded c48 permit 85 ^65000:3_0:130_0:82$ ip community-list expanded c48 permit 86 ^65000:3_0:131_0:83$ ip community-list expanded c48 permit 87 ^65000:3_0:132_0:84$ ip community-list expanded c48 permit 88 ^65000:3_0:133_0:85$ ip community-list expanded c48 permit 89 ^65000:3_0:134_0:86$ ip community-list expanded c48 permit 90 ^65000:3_0:135_0:87$ ip community-list expanded c48 permit 91 ^65000:3_0:136_0:88$ ip community-list expanded c48 permit 92 ^65000:3_0:137_0:89$ ip community-list expanded c48 permit 93 ^65000:3_0:138_0:90$ ip community-list expanded c48 permit 94 ^65000:3_0:139_0:91$ ip community-list expanded c48 permit 95 ^65000:3_0:140_0:92$ ip community-list expanded c48 permit 96 ^65000:3_0:141_0:93$ ip community-list expanded c48 permit 97 ^65000:3_0:142_0:94$ ip community-list expanded c48 permit 98 ^65000:3_0:143_0:95$ ip community-list expanded c48 permit 99 ^65000:4_0:144_0:3$ ip community-list expanded c48 permit 100 ^65000:3_0:144_0:96$ ip community-list expanded c48 permit 101 ^65000:4_0:145_0:3$ ip community-list expanded c48 permit 102 ^65000:3_0:145_0:97$ ip community-list expanded c48 permit 103 ^65000:4_0:146_0:3$ ip community-list expanded c48 permit 104 ^65000:3_0:146_0:98$ ip community-list expanded c48 permit 105 ^65000:3_0:147_0:99$ ip community-list expanded c48 permit 106 ^65000:3_0:148_0:100$ ip community-list expanded c48 permit 107 ^65000:3_0:149_0:101$ ip community-list expanded c48 permit 108 ^65000:3_0:150_0:102$ ip community-list expanded c48 permit 109 ^65000:3_0:151_0:103$ ip community-list expanded c48 permit 110 ^65000:3_0:152_0:104$ ip community-list expanded c48 permit 111 ^65000:3_0:153_0:105$ ip community-list expanded c48 permit 112 ^65000:3_0:154_0:106$ ip community-list expanded c48 permit 113 ^65000:3_0:155_0:107$ ip community-list expanded c48 permit 114 ^65000:3_0:156_0:108$ ip community-list expanded c48 permit 115 ^65000:3_0:157_0:109$ ip community-list expanded c48 permit 116 ^65000:3_0:158_0:110$ ip community-list expanded c48 permit 117 ^65000:3_0:159_0:111$ ip community-list expanded c48 permit 118 ^65000:3_0:160_0:112$ ip community-list expanded c48 permit 119 ^65000:3_0:161_0:113$ ip community-list expanded c48 permit 120 ^65000:3_0:162_0:114$ ip community-list expanded c48 permit 121 ^65000:3_0:163_0:115$ ip community-list expanded c48 permit 122 ^65000:3_0:164_0:116$ ip community-list expanded c48 permit 123 ^65000:3_0:165_0:117$ ip community-list expanded c48 permit 124 ^65000:3_0:166_0:118$ ip community-list expanded c48 permit 125 ^65000:3_0:167_0:119$ ip community-list expanded c48 permit 126 ^65000:3_0:168_0:120$ ip community-list expanded c48 permit 127 ^65000:3_0:169_0:121$ ip community-list expanded c48 permit 128 ^65000:3_0:170_0:122$ ip community-list expanded c48 permit 129 ^65000:3_0:171_0:123$ ip community-list expanded c48 permit 130 ^65000:3_0:172_0:124$ ip community-list expanded c48 permit 131 ^65000:3_0:173_0:125$ ip community-list expanded c48 permit 132 ^65000:3_0:174_0:126$ ip community-list expanded c48 permit 133 ^65000:3_0:175_0:127$ ip community-list expanded c48 permit 134 ^65000:3_0:176_0:128$ ip community-list expanded c48 permit 135 ^65000:3_0:177_0:129$ ip community-list expanded c48 permit 136 ^65000:3_0:178_0:130$ ip community-list expanded c48 permit 137 ^65000:3_0:179_0:131$ ip community-list expanded c48 permit 138 ^65000:3_0:180_0:132$ ip community-list expanded c48 permit 139 ^65000:3_0:181_0:133$ ip community-list expanded c48 permit 140 ^65000:3_0:182_0:134$ ip community-list expanded c48 permit 141 ^65000:3_0:183_0:135$ ip community-list expanded c48 permit 142 ^65000:3_0:184_0:136$ ip community-list expanded c48 permit 143 ^65000:3_0:185_0:137$ ip community-list expanded c48 permit 144 ^65000:3_0:186_0:138$ ip community-list expanded c48 permit 145 ^65000:3_0:187_0:139$ ip community-list expanded c48 permit 146 ^65000:3_0:188_0:140$ ip community-list expanded c48 permit 147 ^65000:3_0:189_0:141$ ip community-list expanded c48 permit 148 ^65000:3_0:190_0:142$ ip community-list expanded c48 permit 149 ^65000:3_0:191_0:143$ ip community-list expanded c48 permit 150 ^65000:4_0:192_0:4$ ip community-list expanded c48 permit 151 ^65000:3_0:192_0:144$ ip community-list expanded c48 permit 152 ^65000:4_0:193_0:4$ ip community-list expanded c48 permit 153 ^65000:3_0:193_0:145$ ip community-list expanded c48 permit 154 ^65000:4_0:194_0:4$ ip community-list expanded c48 permit 155 ^65000:3_0:194_0:146$ ip community-list expanded c48 permit 156 ^65000:4_0:195_0:4$ ip community-list expanded c48 permit 157 ^65000:3_0:195_0:147$ ip community-list expanded c48 permit 158 ^65000:3_0:196_0:148$ ip community-list expanded c48 permit 159 ^65000:3_0:197_0:149$ ip community-list expanded c48 permit 160 ^65000:3_0:198_0:150$ ip community-list expanded c48 permit 161 ^65000:3_0:199_0:151$ ip community-list expanded c48 permit 162 ^65000:3_0:200_0:152$ ip community-list expanded c48 permit 163 ^65000:3_0:201_0:153$ ip community-list expanded c48 permit 164 ^65000:3_0:202_0:154$ ip community-list expanded c48 permit 165 ^65000:3_0:203_0:155$ ip community-list expanded c48 permit 166 ^65000:3_0:204_0:156$ ip community-list expanded c48 permit 167 ^65000:3_0:205_0:157$ ip community-list expanded c48 permit 168 ^65000:3_0:206_0:158$ ip community-list expanded c48 permit 169 ^65000:3_0:207_0:159$ ip community-list expanded c48 permit 170 ^65000:3_0:208_0:160$ ip community-list expanded c48 permit 171 ^65000:3_0:209_0:161$ ip community-list expanded c48 permit 172 ^65000:3_0:210_0:162$ ip community-list expanded c48 permit 173 ^65000:3_0:211_0:163$ ip community-list expanded c48 permit 174 ^65000:3_0:212_0:164$ ip community-list expanded c48 permit 175 ^65000:3_0:213_0:165$ ip community-list expanded c48 permit 176 ^65000:3_0:214_0:166$ ip community-list expanded c48 permit 177 ^65000:3_0:215_0:167$ ip community-list expanded c48 permit 178 ^65000:3_0:216_0:168$ ip community-list expanded c48 permit 179 ^65000:3_0:217_0:169$ ip community-list expanded c48 permit 180 ^65000:3_0:218_0:170$ ip community-list expanded c48 permit 181 ^65000:3_0:219_0:171$ ip community-list expanded c48 permit 182 ^65000:3_0:220_0:172$ ip community-list expanded c48 permit 183 ^65000:3_0:221_0:173$ ip community-list expanded c48 permit 184 ^65000:3_0:222_0:174$ ip community-list expanded c48 permit 185 ^65000:3_0:223_0:175$ ip community-list expanded c48 permit 186 ^65000:3_0:224_0:176$ ip community-list expanded c48 permit 187 ^65000:3_0:225_0:177$ ip community-list expanded c48 permit 188 ^65000:3_0:226_0:178$ ip community-list expanded c48 permit 189 ^65000:3_0:227_0:179$ ip community-list expanded c48 permit 190 ^65000:3_0:228_0:180$ ip community-list expanded c48 permit 191 ^65000:3_0:229_0:181$ ip community-list expanded c48 permit 192 ^65000:3_0:230_0:182$ ip community-list expanded c48 permit 193 ^65000:3_0:231_0:183$ ip community-list expanded c48 permit 194 ^65000:3_0:232_0:184$ ip community-list expanded c48 permit 195 ^65000:3_0:233_0:185$ ip community-list expanded c48 permit 196 ^65000:3_0:234_0:186$ ip community-list expanded c48 permit 197 ^65000:3_0:235_0:187$ ip community-list expanded c48 permit 198 ^65000:3_0:236_0:188$ ip community-list expanded c48 permit 199 ^65000:3_0:237_0:189$ ip community-list expanded c48 permit 200 ^65000:3_0:238_0:190$ ip community-list expanded c48 permit 201 ^65000:3_0:239_0:191$ ip community-list expanded c48 permit 202 ^65000:4_0:240_0:5$ ip community-list expanded c48 permit 203 ^65000:3_0:240_0:192$ ip community-list expanded c48 permit 204 ^65000:4_0:241_0:5$ ip community-list expanded c48 permit 205 ^65000:3_0:241_0:193$ ip community-list expanded c48 permit 206 ^65000:4_0:242_0:5$ ip community-list expanded c48 permit 207 ^65000:3_0:242_0:194$ ip community-list expanded c48 permit 208 ^65000:4_0:243_0:5$ ip community-list expanded c48 permit 209 ^65000:3_0:243_0:195$ ip community-list expanded c48 permit 210 ^65000:4_0:244_0:5$ ip community-list expanded c48 permit 211 ^65000:3_0:244_0:196$ ip community-list expanded c48 permit 212 ^65000:3_0:245_0:197$ ip community-list expanded c48 permit 213 ^65000:3_0:246_0:198$ ip community-list expanded c48 permit 214 ^65000:3_0:247_0:199$ ip community-list expanded c48 permit 215 ^65000:3_0:248_0:200$ ip community-list expanded c48 permit 216 ^65000:3_0:249_0:201$ ip community-list expanded c48 permit 217 ^65000:3_0:250_0:202$ ip community-list expanded c48 permit 218 ^65000:3_0:251_0:203$ ip community-list expanded c48 permit 219 ^65000:3_0:252_0:204$ ip community-list expanded c48 permit 220 ^65000:3_0:253_0:205$ ip community-list expanded c48 permit 221 ^65000:3_0:254_0:206$ ip community-list expanded c48 permit 222 ^65000:3_0:255_0:207$ ip community-list expanded c48 permit 223 ^65000:3_0:256_0:208$ route-map calculator permit 34657 match community 1_1_47 2_1_48 2_2_24 1_2_46 2_3_16 set community 0:48 route-map calculator permit 34658 match community 1_3_45 2_4_12 1_4_44 1_5_43 2_6_8 set community 0:48 route-map calculator permit 34659 match community 1_6_42 1_7_41 1_8_40 1_9_39 1_10_38 set community 0:48 route-map calculator permit 34660 match community 1_11_37 1_12_36 1_13_35 1_14_34 1_15_33 set community 0:48 route-map calculator permit 34661 match community 1_16_32 1_17_31 1_18_30 1_19_29 1_20_28 set community 0:48 route-map calculator permit 34662 match community 1_21_27 1_22_26 1_23_25 1_24_24 c4_48_1 set community 0:48 route-map calculator permit 34663 match community c3_49_1 c3_50_2 c3_51_3 c3_52_4 c3_53_5 set community 0:48 route-map calculator permit 34664 match community c3_54_6 c3_55_7 c3_56_8 c3_57_9 c3_58_10 set community 0:48 route-map calculator permit 34665 match community c3_59_11 c3_60_12 c3_61_13 c3_62_14 c3_63_15 set community 0:48 route-map calculator permit 34666 match community c3_64_16 c3_65_17 c3_66_18 c3_67_19 c3_68_20 set community 0:48 route-map calculator permit 34667 match community c3_69_21 c3_70_22 c3_71_23 c3_72_24 c3_73_25 set community 0:48 route-map calculator permit 34668 match community c3_74_26 c3_75_27 c3_76_28 c3_77_29 c3_78_30 set community 0:48 route-map calculator permit 34669 match community c3_79_31 c3_80_32 c3_81_33 c3_82_34 c3_83_35 set community 0:48 route-map calculator permit 34670 match community c3_84_36 c3_85_37 c3_86_38 c3_87_39 c3_88_40 set community 0:48 route-map calculator permit 34671 match community c3_89_41 c3_90_42 c3_91_43 c3_92_44 c3_93_45 set community 0:48 route-map calculator permit 34672 match community c3_94_46 c3_95_47 c4_96_2 c3_96_48 c4_97_2 set community 0:48 route-map calculator permit 34673 match community c3_97_49 c3_98_50 c3_99_51 c3_100_52 c3_101_53 set community 0:48 route-map calculator permit 34674 match community c3_102_54 c3_103_55 c3_104_56 c3_105_57 c3_106_58 set community 0:48 route-map calculator permit 34675 match community c3_107_59 c3_108_60 c3_109_61 c3_110_62 c3_111_63 set community 0:48 route-map calculator permit 34676 match community c3_112_64 c3_113_65 c3_114_66 c3_115_67 c3_116_68 set community 0:48 route-map calculator permit 34677 match community c3_117_69 c3_118_70 c3_119_71 c3_120_72 c3_121_73 set community 0:48 route-map calculator permit 34678 match community c3_122_74 c3_123_75 c3_124_76 c3_125_77 c3_126_78 set community 0:48 route-map calculator permit 34679 match community c3_127_79 c3_128_80 c3_129_81 c3_130_82 c3_131_83 set community 0:48 route-map calculator permit 34680 match community c3_132_84 c3_133_85 c3_134_86 c3_135_87 c3_136_88 set community 0:48 route-map calculator permit 34681 match community c3_137_89 c3_138_90 c3_139_91 c3_140_92 c3_141_93 set community 0:48 route-map calculator permit 34682 match community c3_142_94 c3_143_95 c4_144_3 c3_144_96 c4_145_3 set community 0:48 route-map calculator permit 34683 match community c3_145_97 c4_146_3 c3_146_98 c3_147_99 c3_148_100 set community 0:48 route-map calculator permit 34684 match community c3_149_101 c3_150_102 c3_151_103 c3_152_104 c3_153_105 set community 0:48 route-map calculator permit 34685 match community c3_154_106 c3_155_107 c3_156_108 c3_157_109 c3_158_110 set community 0:48 route-map calculator permit 34686 match community c3_159_111 c3_160_112 c3_161_113 c3_162_114 c3_163_115 set community 0:48 route-map calculator permit 34687 match community c3_164_116 c3_165_117 c3_166_118 c3_167_119 c3_168_120 set community 0:48 route-map calculator permit 34688 match community c3_169_121 c3_170_122 c3_171_123 c3_172_124 c3_173_125 set community 0:48 route-map calculator permit 34689 match community c3_174_126 c3_175_127 c3_176_128 c3_177_129 c3_178_130 set community 0:48 route-map calculator permit 34690 match community c3_179_131 c3_180_132 c3_181_133 c3_182_134 c3_183_135 set community 0:48 route-map calculator permit 34691 match community c3_184_136 c3_185_137 c3_186_138 c3_187_139 c3_188_140 set community 0:48 route-map calculator permit 34692 match community c3_189_141 c3_190_142 c3_191_143 c4_192_4 c3_192_144 set community 0:48 route-map calculator permit 34693 match community c4_193_4 c3_193_145 c4_194_4 c3_194_146 c4_195_4 set community 0:48 route-map calculator permit 34694 match community c3_195_147 c3_196_148 c3_197_149 c3_198_150 c3_199_151 set community 0:48 route-map calculator permit 34695 match community c3_200_152 c3_201_153 c3_202_154 c3_203_155 c3_204_156 set community 0:48 route-map calculator permit 34696 match community c3_205_157 c3_206_158 c3_207_159 c3_208_160 c3_209_161 set community 0:48 route-map calculator permit 34697 match community c3_210_162 c3_211_163 c3_212_164 c3_213_165 c3_214_166 set community 0:48 route-map calculator permit 34698 match community c3_215_167 c3_216_168 c3_217_169 c3_218_170 c3_219_171 set community 0:48 route-map calculator permit 34699 match community c3_220_172 c3_221_173 c3_222_174 c3_223_175 c3_224_176 set community 0:48 route-map calculator permit 34700 match community c3_225_177 c3_226_178 c3_227_179 c3_228_180 c3_229_181 set community 0:48 route-map calculator permit 34701 match community c3_230_182 c3_231_183 c3_232_184 c3_233_185 c3_234_186 set community 0:48 route-map calculator permit 34702 match community c3_235_187 c3_236_188 c3_237_189 c3_238_190 c3_239_191 set community 0:48 route-map calculator permit 34703 match community c4_240_5 c3_240_192 c4_241_5 c3_241_193 c4_242_5 set community 0:48 route-map calculator permit 34704 match community c3_242_194 c4_243_5 c3_243_195 c4_244_5 c3_244_196 set community 0:48 route-map calculator permit 34705 match community c3_245_197 c3_246_198 c3_247_199 c3_248_200 c3_249_201 set community 0:48 route-map calculator permit 34706 match community c3_250_202 c3_251_203 c3_252_204 c3_253_205 c3_254_206 set community 0:48 route-map calculator permit 34707 match community c3_255_207 c3_256_208 set community 0:48 ip community-list standard 2_153_187 permit 65000:2 0:153 0:187 route-map calculator permit 34708 match community 2_153_187 set community 0:28611 ip community-list standard 2_152_173 permit 65000:2 0:152 0:173 route-map calculator permit 34709 match community 2_152_173 set community 0:26296 ip community-list standard 2_183_241 permit 65000:2 0:183 0:241 route-map calculator permit 34710 match community 2_183_241 set community 0:44103 ip community-list standard 2_34_239 permit 65000:2 0:34 0:239 route-map calculator permit 34711 match community 2_34_239 set community 0:8126 ip community-list standard 2_7_232 permit 65000:2 0:7 0:232 ip community-list standard 2_8_203 permit 65000:2 0:8 0:203 ip community-list standard 2_14_116 permit 65000:2 0:14 0:116 ip community-list standard 2_28_58 permit 65000:2 0:28 0:58 ip community-list standard 2_29_56 permit 65000:2 0:29 0:56 route-map calculator permit 34712 match community 2_7_232 2_8_203 2_14_116 2_28_58 2_29_56 set community 0:1624 ip community-list standard 2_28_196 permit 65000:2 0:28 0:196 ip community-list standard 2_49_112 permit 65000:2 0:49 0:112 ip community-list standard 2_56_98 permit 65000:2 0:56 0:98 route-map calculator permit 34713 match community 2_28_196 2_49_112 2_56_98 set community 0:5488 ip community-list standard 2_14_206 permit 65000:2 0:14 0:206 ip community-list standard 2_28_103 permit 65000:2 0:28 0:103 route-map calculator permit 34714 match community 2_14_206 2_28_103 set community 0:2884 ip community-list standard 2_155_254 permit 65000:2 0:155 0:254 route-map calculator permit 34715 match community 2_155_254 set community 0:39370 ip community-list standard 2_7_234 permit 65000:2 0:7 0:234 ip community-list standard 2_9_182 permit 65000:2 0:9 0:182 ip community-list standard 2_13_126 permit 65000:2 0:13 0:126 ip community-list standard 2_14_117 permit 65000:2 0:14 0:117 ip community-list standard 2_18_91 permit 65000:2 0:18 0:91 ip community-list standard 2_21_78 permit 65000:2 0:21 0:78 ip community-list standard 2_26_63 permit 65000:2 0:26 0:63 ip community-list standard 2_39_42 permit 65000:2 0:39 0:42 route-map calculator permit 34716 match community 2_7_234 2_9_182 2_13_126 2_14_117 2_18_91 set community 0:1638 route-map calculator permit 34717 match community 2_21_78 2_26_63 2_39_42 set community 0:1638 ip community-list standard 2_182_233 permit 65000:2 0:182 0:233 route-map calculator permit 34718 match community 2_182_233 set community 0:42406 ip community-list standard 2_5_256 permit 65000:2 0:5 0:256 ip community-list standard 2_8_160 permit 65000:2 0:8 0:160 ip community-list standard 2_10_128 permit 65000:2 0:10 0:128 ip community-list standard 2_16_80 permit 65000:2 0:16 0:80 ip community-list standard 2_20_64 permit 65000:2 0:20 0:64 ip community-list standard 2_32_40 permit 65000:2 0:32 0:40 route-map calculator permit 34719 match community 2_5_256 2_8_160 2_10_128 2_16_80 2_20_64 set community 0:1280 route-map calculator permit 34720 match community 2_32_40 set community 0:1280 ip community-list standard 2_214_238 permit 65000:2 0:214 0:238 route-map calculator permit 34721 match community 2_214_238 set community 0:50932 ip community-list standard 2_136_164 permit 65000:2 0:136 0:164 route-map calculator permit 34722 match community 2_136_164 set community 0:22304 ip community-list standard 2_224_230 permit 65000:2 0:224 0:230 route-map calculator permit 34723 match community 2_224_230 set community 0:51520 ip community-list standard 2_57_131 permit 65000:2 0:57 0:131 route-map calculator permit 34724 match community 2_57_131 set community 0:7467 ip community-list standard 2_74_176 permit 65000:2 0:74 0:176 ip community-list standard 2_88_148 permit 65000:2 0:88 0:148 route-map calculator permit 34725 match community 2_74_176 2_88_148 set community 0:13024 ip community-list standard 2_92_244 permit 65000:2 0:92 0:244 ip community-list standard 2_122_184 permit 65000:2 0:122 0:184 route-map calculator permit 34726 match community 2_92_244 2_122_184 set community 0:22448 ip community-list standard 2_91_201 permit 65000:2 0:91 0:201 route-map calculator permit 34727 match community 2_91_201 set community 0:18291 ip community-list standard 2_7_41 permit 65000:2 0:7 0:41 ip community-list standard 1_31_256 permit 65000:1 0:31 0:256 ip community-list standard 1_32_255 permit 65000:1 0:32 0:255 ip community-list standard 1_33_254 permit 65000:1 0:33 0:254 ip community-list standard 1_34_253 permit 65000:1 0:34 0:253 ip community-list standard 1_35_252 permit 65000:1 0:35 0:252 ip community-list standard 1_36_251 permit 65000:1 0:36 0:251 ip community-list standard 1_37_250 permit 65000:1 0:37 0:250 ip community-list standard 1_38_249 permit 65000:1 0:38 0:249 ip community-list standard 1_39_248 permit 65000:1 0:39 0:248 ip community-list standard 1_40_247 permit 65000:1 0:40 0:247 ip community-list standard 1_41_246 permit 65000:1 0:41 0:246 ip community-list standard 1_42_245 permit 65000:1 0:42 0:245 ip community-list standard 1_43_244 permit 65000:1 0:43 0:244 ip community-list standard 1_44_243 permit 65000:1 0:44 0:243 ip community-list standard 1_45_242 permit 65000:1 0:45 0:242 ip community-list standard 1_46_241 permit 65000:1 0:46 0:241 ip community-list standard 1_47_240 permit 65000:1 0:47 0:240 ip community-list standard 1_48_239 permit 65000:1 0:48 0:239 ip community-list standard 1_49_238 permit 65000:1 0:49 0:238 ip community-list standard 1_50_237 permit 65000:1 0:50 0:237 ip community-list standard 1_51_236 permit 65000:1 0:51 0:236 ip community-list standard 1_52_235 permit 65000:1 0:52 0:235 ip community-list standard 1_53_234 permit 65000:1 0:53 0:234 ip community-list standard 1_54_233 permit 65000:1 0:54 0:233 ip community-list standard 1_55_232 permit 65000:1 0:55 0:232 ip community-list standard 1_56_231 permit 65000:1 0:56 0:231 ip community-list standard 1_57_230 permit 65000:1 0:57 0:230 ip community-list standard 1_58_229 permit 65000:1 0:58 0:229 ip community-list standard 1_59_228 permit 65000:1 0:59 0:228 ip community-list standard 1_60_227 permit 65000:1 0:60 0:227 ip community-list standard 1_61_226 permit 65000:1 0:61 0:226 ip community-list standard 1_62_225 permit 65000:1 0:62 0:225 ip community-list standard 1_63_224 permit 65000:1 0:63 0:224 ip community-list standard 1_64_223 permit 65000:1 0:64 0:223 ip community-list standard 1_65_222 permit 65000:1 0:65 0:222 ip community-list standard 1_66_221 permit 65000:1 0:66 0:221 ip community-list standard 1_67_220 permit 65000:1 0:67 0:220 ip community-list standard 1_68_219 permit 65000:1 0:68 0:219 ip community-list standard 1_69_218 permit 65000:1 0:69 0:218 ip community-list standard 1_70_217 permit 65000:1 0:70 0:217 ip community-list standard 1_71_216 permit 65000:1 0:71 0:216 ip community-list standard 1_72_215 permit 65000:1 0:72 0:215 ip community-list standard 1_73_214 permit 65000:1 0:73 0:214 ip community-list standard 1_74_213 permit 65000:1 0:74 0:213 ip community-list standard 1_75_212 permit 65000:1 0:75 0:212 ip community-list standard 1_76_211 permit 65000:1 0:76 0:211 ip community-list standard 1_77_210 permit 65000:1 0:77 0:210 ip community-list standard 1_78_209 permit 65000:1 0:78 0:209 ip community-list standard 1_79_208 permit 65000:1 0:79 0:208 ip community-list standard 1_80_207 permit 65000:1 0:80 0:207 ip community-list standard 1_81_206 permit 65000:1 0:81 0:206 ip community-list standard 1_82_205 permit 65000:1 0:82 0:205 ip community-list standard 1_83_204 permit 65000:1 0:83 0:204 ip community-list standard 1_84_203 permit 65000:1 0:84 0:203 ip community-list standard 1_85_202 permit 65000:1 0:85 0:202 ip community-list standard 1_86_201 permit 65000:1 0:86 0:201 ip community-list standard 1_87_200 permit 65000:1 0:87 0:200 ip community-list standard 1_88_199 permit 65000:1 0:88 0:199 ip community-list standard 1_89_198 permit 65000:1 0:89 0:198 ip community-list standard 1_90_197 permit 65000:1 0:90 0:197 ip community-list standard 1_91_196 permit 65000:1 0:91 0:196 ip community-list standard 1_92_195 permit 65000:1 0:92 0:195 ip community-list standard 1_93_194 permit 65000:1 0:93 0:194 ip community-list standard 1_94_193 permit 65000:1 0:94 0:193 ip community-list standard 1_95_192 permit 65000:1 0:95 0:192 ip community-list standard 1_96_191 permit 65000:1 0:96 0:191 ip community-list standard 1_97_190 permit 65000:1 0:97 0:190 ip community-list standard 1_98_189 permit 65000:1 0:98 0:189 ip community-list standard 1_99_188 permit 65000:1 0:99 0:188 ip community-list standard 1_100_187 permit 65000:1 0:100 0:187 ip community-list standard 1_101_186 permit 65000:1 0:101 0:186 ip community-list standard 1_102_185 permit 65000:1 0:102 0:185 ip community-list standard 1_103_184 permit 65000:1 0:103 0:184 ip community-list standard 1_104_183 permit 65000:1 0:104 0:183 ip community-list standard 1_105_182 permit 65000:1 0:105 0:182 ip community-list standard 1_106_181 permit 65000:1 0:106 0:181 ip community-list standard 1_107_180 permit 65000:1 0:107 0:180 ip community-list standard 1_108_179 permit 65000:1 0:108 0:179 ip community-list standard 1_109_178 permit 65000:1 0:109 0:178 ip community-list standard 1_110_177 permit 65000:1 0:110 0:177 ip community-list standard 1_111_176 permit 65000:1 0:111 0:176 ip community-list standard 1_112_175 permit 65000:1 0:112 0:175 ip community-list standard 1_113_174 permit 65000:1 0:113 0:174 ip community-list standard 1_114_173 permit 65000:1 0:114 0:173 ip community-list standard 1_115_172 permit 65000:1 0:115 0:172 ip community-list standard 1_116_171 permit 65000:1 0:116 0:171 ip community-list standard 1_117_170 permit 65000:1 0:117 0:170 ip community-list standard 1_118_169 permit 65000:1 0:118 0:169 ip community-list standard 1_119_168 permit 65000:1 0:119 0:168 ip community-list standard 1_120_167 permit 65000:1 0:120 0:167 ip community-list standard 1_121_166 permit 65000:1 0:121 0:166 ip community-list standard 1_122_165 permit 65000:1 0:122 0:165 ip community-list standard 1_123_164 permit 65000:1 0:123 0:164 ip community-list standard 1_124_163 permit 65000:1 0:124 0:163 ip community-list standard 1_125_162 permit 65000:1 0:125 0:162 ip community-list standard 1_126_161 permit 65000:1 0:126 0:161 ip community-list standard 1_127_160 permit 65000:1 0:127 0:160 ip community-list standard 1_128_159 permit 65000:1 0:128 0:159 ip community-list standard 1_129_158 permit 65000:1 0:129 0:158 ip community-list standard 1_130_157 permit 65000:1 0:130 0:157 ip community-list standard 1_131_156 permit 65000:1 0:131 0:156 ip community-list standard 1_132_155 permit 65000:1 0:132 0:155 ip community-list standard 1_133_154 permit 65000:1 0:133 0:154 ip community-list standard 1_134_153 permit 65000:1 0:134 0:153 ip community-list standard 1_135_152 permit 65000:1 0:135 0:152 ip community-list standard 1_136_151 permit 65000:1 0:136 0:151 ip community-list standard 1_137_150 permit 65000:1 0:137 0:150 ip community-list standard 1_138_149 permit 65000:1 0:138 0:149 ip community-list standard 1_139_148 permit 65000:1 0:139 0:148 ip community-list standard 1_140_147 permit 65000:1 0:140 0:147 ip community-list standard 1_141_146 permit 65000:1 0:141 0:146 ip community-list standard 1_142_145 permit 65000:1 0:142 0:145 ip community-list standard 1_143_144 permit 65000:1 0:143 0:144 route-map calculator permit 34728 match community 2_7_41 1_31_256 1_32_255 1_33_254 1_34_253 set community 0:287 route-map calculator permit 34729 match community 1_35_252 1_36_251 1_37_250 1_38_249 1_39_248 set community 0:287 route-map calculator permit 34730 match community 1_40_247 1_41_246 1_42_245 1_43_244 1_44_243 set community 0:287 route-map calculator permit 34731 match community 1_45_242 1_46_241 1_47_240 1_48_239 1_49_238 set community 0:287 route-map calculator permit 34732 match community 1_50_237 1_51_236 1_52_235 1_53_234 1_54_233 set community 0:287 route-map calculator permit 34733 match community 1_55_232 1_56_231 1_57_230 1_58_229 1_59_228 set community 0:287 route-map calculator permit 34734 match community 1_60_227 1_61_226 1_62_225 1_63_224 1_64_223 set community 0:287 route-map calculator permit 34735 match community 1_65_222 1_66_221 1_67_220 1_68_219 1_69_218 set community 0:287 route-map calculator permit 34736 match community 1_70_217 1_71_216 1_72_215 1_73_214 1_74_213 set community 0:287 route-map calculator permit 34737 match community 1_75_212 1_76_211 1_77_210 1_78_209 1_79_208 set community 0:287 route-map calculator permit 34738 match community 1_80_207 1_81_206 1_82_205 1_83_204 1_84_203 set community 0:287 route-map calculator permit 34739 match community 1_85_202 1_86_201 1_87_200 1_88_199 1_89_198 set community 0:287 route-map calculator permit 34740 match community 1_90_197 1_91_196 1_92_195 1_93_194 1_94_193 set community 0:287 route-map calculator permit 34741 match community 1_95_192 1_96_191 1_97_190 1_98_189 1_99_188 set community 0:287 route-map calculator permit 34742 match community 1_100_187 1_101_186 1_102_185 1_103_184 1_104_183 set community 0:287 route-map calculator permit 34743 match community 1_105_182 1_106_181 1_107_180 1_108_179 1_109_178 set community 0:287 route-map calculator permit 34744 match community 1_110_177 1_111_176 1_112_175 1_113_174 1_114_173 set community 0:287 route-map calculator permit 34745 match community 1_115_172 1_116_171 1_117_170 1_118_169 1_119_168 set community 0:287 route-map calculator permit 34746 match community 1_120_167 1_121_166 1_122_165 1_123_164 1_124_163 set community 0:287 route-map calculator permit 34747 match community 1_125_162 1_126_161 1_127_160 1_128_159 1_129_158 set community 0:287 route-map calculator permit 34748 match community 1_130_157 1_131_156 1_132_155 1_133_154 1_134_153 set community 0:287 route-map calculator permit 34749 match community 1_135_152 1_136_151 1_137_150 1_138_149 1_139_148 set community 0:287 route-map calculator permit 34750 match community 1_140_147 1_141_146 1_142_145 1_143_144 set community 0:287 ip community-list standard 2_80_256 permit 65000:2 0:80 0:256 ip community-list standard 2_128_160 permit 65000:2 0:128 0:160 route-map calculator permit 34751 match community 2_80_256 2_128_160 set community 0:20480 ip community-list standard 2_59_166 permit 65000:2 0:59 0:166 ip community-list standard 2_83_118 permit 65000:2 0:83 0:118 route-map calculator permit 34752 match community 2_59_166 2_83_118 set community 0:9794 ip community-list standard 2_103_121 permit 65000:2 0:103 0:121 route-map calculator permit 34753 match community 2_103_121 set community 0:12463 ip community-list standard 2_111_246 permit 65000:2 0:111 0:246 ip community-list standard 2_123_222 permit 65000:2 0:123 0:222 route-map calculator permit 34754 match community 2_111_246 2_123_222 set community 0:27306 ip community-list standard 2_242_243 permit 65000:2 0:242 0:243 route-map calculator permit 34755 match community 2_242_243 set community 0:58806 ip community-list standard 2_164_208 permit 65000:2 0:164 0:208 route-map calculator permit 34756 match community 2_164_208 set community 0:34112 ip community-list standard 2_5_254 permit 65000:2 0:5 0:254 ip community-list standard 2_10_127 permit 65000:2 0:10 0:127 route-map calculator permit 34757 match community 2_5_254 2_10_127 set community 0:1270 ip community-list standard 2_55_245 permit 65000:2 0:55 0:245 ip community-list standard 2_77_175 permit 65000:2 0:77 0:175 route-map calculator permit 34758 match community 2_55_245 2_77_175 set community 0:13475 ip community-list standard 2_67_113 permit 65000:2 0:67 0:113 route-map calculator permit 34759 match community 2_67_113 set community 0:7571 ip community-list standard 2_137_251 permit 65000:2 0:137 0:251 route-map calculator permit 34760 match community 2_137_251 set community 0:34387 ip community-list standard 2_130_247 permit 65000:2 0:130 0:247 ip community-list standard 2_169_190 permit 65000:2 0:169 0:190 route-map calculator permit 34761 match community 2_130_247 2_169_190 set community 0:32110 ip community-list standard 2_14_152 permit 65000:2 0:14 0:152 ip community-list standard 2_16_133 permit 65000:2 0:16 0:133 ip community-list standard 2_19_112 permit 65000:2 0:19 0:112 ip community-list standard 2_28_76 permit 65000:2 0:28 0:76 ip community-list standard 2_38_56 permit 65000:2 0:38 0:56 route-map calculator permit 34762 match community 2_14_152 2_16_133 2_19_112 2_28_76 2_38_56 set community 0:2128 ip community-list standard 2_169_193 permit 65000:2 0:169 0:193 route-map calculator permit 34763 match community 2_169_193 set community 0:32617 ip community-list standard 2_56_237 permit 65000:2 0:56 0:237 ip community-list standard 2_79_168 permit 65000:2 0:79 0:168 ip community-list standard 2_84_158 permit 65000:2 0:84 0:158 route-map calculator permit 34764 match community 2_56_237 2_79_168 2_84_158 set community 0:13272 ip community-list standard 2_132_240 permit 65000:2 0:132 0:240 ip community-list standard 2_144_220 permit 65000:2 0:144 0:220 ip community-list standard 2_160_198 permit 65000:2 0:160 0:198 ip community-list standard 2_165_192 permit 65000:2 0:165 0:192 ip community-list standard 2_176_180 permit 65000:2 0:176 0:180 route-map calculator permit 34765 match community 2_132_240 2_144_220 2_160_198 2_165_192 2_176_180 set community 0:31680 ip community-list standard 2_177_239 permit 65000:2 0:177 0:239 route-map calculator permit 34766 match community 2_177_239 set community 0:42303 ip community-list standard 2_27_239 permit 65000:2 0:27 0:239 route-map calculator permit 34767 match community 2_27_239 set community 0:6453 ip community-list standard 2_75_227 permit 65000:2 0:75 0:227 route-map calculator permit 34768 match community 2_75_227 set community 0:17025 ip community-list standard 2_99_235 permit 65000:2 0:99 0:235 ip community-list standard 2_141_165 permit 65000:2 0:141 0:165 route-map calculator permit 34769 match community 2_99_235 2_141_165 set community 0:23265 ip community-list standard 2_12_196 permit 65000:2 0:12 0:196 ip community-list standard 2_14_168 permit 65000:2 0:14 0:168 ip community-list standard 2_16_147 permit 65000:2 0:16 0:147 ip community-list standard 2_21_112 permit 65000:2 0:21 0:112 ip community-list standard 2_24_98 permit 65000:2 0:24 0:98 ip community-list standard 2_28_84 permit 65000:2 0:28 0:84 ip community-list standard 2_42_56 permit 65000:2 0:42 0:56 ip community-list standard 2_48_49 permit 65000:2 0:48 0:49 route-map calculator permit 34770 match community 2_12_196 2_14_168 2_16_147 2_21_112 2_24_98 set community 0:2352 route-map calculator permit 34771 match community 2_28_84 2_42_56 2_48_49 set community 0:2352 ip community-list standard 2_141_209 permit 65000:2 0:141 0:209 route-map calculator permit 34772 match community 2_141_209 set community 0:29469 ip community-list standard 2_149_208 permit 65000:2 0:149 0:208 route-map calculator permit 34773 match community 2_149_208 set community 0:30992 ip community-list standard 2_158_178 permit 65000:2 0:158 0:178 route-map calculator permit 34774 match community 2_158_178 set community 0:28124 ip community-list standard 2_145_166 permit 65000:2 0:145 0:166 route-map calculator permit 34775 match community 2_145_166 set community 0:24070 ip community-list standard 2_68_164 permit 65000:2 0:68 0:164 ip community-list standard 2_82_136 permit 65000:2 0:82 0:136 route-map calculator permit 34776 match community 2_68_164 2_82_136 set community 0:11152 ip community-list standard 2_71_178 permit 65000:2 0:71 0:178 ip community-list standard 2_89_142 permit 65000:2 0:89 0:142 route-map calculator permit 34777 match community 2_71_178 2_89_142 set community 0:12638 ip community-list standard 2_209_248 permit 65000:2 0:209 0:248 route-map calculator permit 34778 match community 2_209_248 set community 0:51832 ip community-list standard 2_191_221 permit 65000:2 0:191 0:221 route-map calculator permit 34779 match community 2_191_221 set community 0:42211 ip community-list standard 2_62_178 permit 65000:2 0:62 0:178 ip community-list standard 2_89_124 permit 65000:2 0:89 0:124 route-map calculator permit 34780 match community 2_62_178 2_89_124 set community 0:11036 ip community-list standard 2_109_255 permit 65000:2 0:109 0:255 route-map calculator permit 34781 match community 2_109_255 set community 0:27795 ip community-list standard 2_137_218 permit 65000:2 0:137 0:218 route-map calculator permit 34782 match community 2_137_218 set community 0:29866 ip community-list standard 2_141_223 permit 65000:2 0:141 0:223 route-map calculator permit 34783 match community 2_141_223 set community 0:31443 ip community-list standard 2_177_219 permit 65000:2 0:177 0:219 route-map calculator permit 34784 match community 2_177_219 set community 0:38763 ip community-list standard 2_61_251 permit 65000:2 0:61 0:251 route-map calculator permit 34785 match community 2_61_251 set community 0:15311 ip community-list standard 2_207_228 permit 65000:2 0:207 0:228 route-map calculator permit 34786 match community 2_207_228 set community 0:47196 ip community-list standard 2_169_237 permit 65000:2 0:169 0:237 route-map calculator permit 34787 match community 2_169_237 set community 0:40053 ip community-list standard 2_8_230 permit 65000:2 0:8 0:230 ip community-list standard 2_10_184 permit 65000:2 0:10 0:184 ip community-list standard 2_16_115 permit 65000:2 0:16 0:115 ip community-list standard 2_20_92 permit 65000:2 0:20 0:92 ip community-list standard 2_23_80 permit 65000:2 0:23 0:80 ip community-list standard 2_40_46 permit 65000:2 0:40 0:46 route-map calculator permit 34788 match community 2_8_230 2_10_184 2_16_115 2_20_92 2_23_80 set community 0:1840 route-map calculator permit 34789 match community 2_40_46 set community 0:1840 ip community-list standard 2_222_236 permit 65000:2 0:222 0:236 route-map calculator permit 34790 match community 2_222_236 set community 0:52392 ip community-list standard 2_76_163 permit 65000:2 0:76 0:163 route-map calculator permit 34791 match community 2_76_163 set community 0:12388 ip community-list standard 2_28_253 permit 65000:2 0:28 0:253 ip community-list standard 2_44_161 permit 65000:2 0:44 0:161 ip community-list standard 2_46_154 permit 65000:2 0:46 0:154 ip community-list standard 2_77_92 permit 65000:2 0:77 0:92 route-map calculator permit 34792 match community 2_28_253 2_44_161 2_46_154 2_77_92 set community 0:7084 ip community-list standard 2_16_247 permit 65000:2 0:16 0:247 ip community-list standard 2_19_208 permit 65000:2 0:19 0:208 ip community-list standard 2_26_152 permit 65000:2 0:26 0:152 ip community-list standard 2_38_104 permit 65000:2 0:38 0:104 ip community-list standard 2_52_76 permit 65000:2 0:52 0:76 route-map calculator permit 34793 match community 2_16_247 2_19_208 2_26_152 2_38_104 2_52_76 set community 0:3952 ip community-list standard 2_30_211 permit 65000:2 0:30 0:211 route-map calculator permit 34794 match community 2_30_211 set community 0:6330 ip community-list standard 2_7_243 permit 65000:2 0:7 0:243 ip community-list standard 2_9_189 permit 65000:2 0:9 0:189 ip community-list standard 2_21_81 permit 65000:2 0:21 0:81 ip community-list standard 2_27_63 permit 65000:2 0:27 0:63 route-map calculator permit 34795 match community 2_7_243 2_9_189 2_21_81 2_27_63 set community 0:1701 ip community-list standard 2_188_226 permit 65000:2 0:188 0:226 route-map calculator permit 34796 match community 2_188_226 set community 0:42488 ip community-list standard 2_138_224 permit 65000:2 0:138 0:224 ip community-list standard 2_161_192 permit 65000:2 0:161 0:192 ip community-list standard 2_168_184 permit 65000:2 0:168 0:184 route-map calculator permit 34797 match community 2_138_224 2_161_192 2_168_184 set community 0:30912 ip community-list standard 2_8_226 permit 65000:2 0:8 0:226 ip community-list standard 2_16_113 permit 65000:2 0:16 0:113 route-map calculator permit 34798 match community 2_8_226 2_16_113 set community 0:1808 ip community-list standard 2_68_235 permit 65000:2 0:68 0:235 ip community-list standard 2_85_188 permit 65000:2 0:85 0:188 ip community-list standard 2_94_170 permit 65000:2 0:94 0:170 route-map calculator permit 34799 match community 2_68_235 2_85_188 2_94_170 set community 0:15980 ip community-list standard 2_26_212 permit 65000:2 0:26 0:212 ip community-list standard 2_52_106 permit 65000:2 0:52 0:106 ip community-list standard 2_53_104 permit 65000:2 0:53 0:104 route-map calculator permit 34800 match community 2_26_212 2_52_106 2_53_104 set community 0:5512 ip community-list standard 2_193_230 permit 65000:2 0:193 0:230 route-map calculator permit 34801 match community 2_193_230 set community 0:44390 ip community-list standard 2_99_137 permit 65000:2 0:99 0:137 route-map calculator permit 34802 match community 2_99_137 set community 0:13563 ip community-list standard 2_137_148 permit 65000:2 0:137 0:148 route-map calculator permit 34803 match community 2_137_148 set community 0:20276 ip community-list standard 2_32_178 permit 65000:2 0:32 0:178 ip community-list standard 2_64_89 permit 65000:2 0:64 0:89 route-map calculator permit 34804 match community 2_32_178 2_64_89 set community 0:5696 ip community-list standard 2_81_238 permit 65000:2 0:81 0:238 ip community-list standard 2_102_189 permit 65000:2 0:102 0:189 ip community-list standard 2_119_162 permit 65000:2 0:119 0:162 ip community-list standard 2_126_153 permit 65000:2 0:126 0:153 route-map calculator permit 34805 match community 2_81_238 2_102_189 2_119_162 2_126_153 set community 0:19278 ip community-list standard 2_77_182 permit 65000:2 0:77 0:182 ip community-list standard 2_91_154 permit 65000:2 0:91 0:154 ip community-list standard 2_98_143 permit 65000:2 0:98 0:143 route-map calculator permit 34806 match community 2_77_182 2_91_154 2_98_143 set community 0:14014 ip community-list standard 2_107_211 permit 65000:2 0:107 0:211 route-map calculator permit 34807 match community 2_107_211 set community 0:22577 ip community-list standard 2_163_219 permit 65000:2 0:163 0:219 route-map calculator permit 34808 match community 2_163_219 set community 0:35697 ip community-list standard 2_11_142 permit 65000:2 0:11 0:142 ip community-list standard 2_22_71 permit 65000:2 0:22 0:71 route-map calculator permit 34809 match community 2_11_142 2_22_71 set community 0:1562 ip community-list standard 2_195_207 permit 65000:2 0:195 0:207 route-map calculator permit 34810 match community 2_195_207 set community 0:40365 ip community-list standard 2_143_164 permit 65000:2 0:143 0:164 route-map calculator permit 34811 match community 2_143_164 set community 0:23452 ip community-list standard 2_63_197 permit 65000:2 0:63 0:197 route-map calculator permit 34812 match community 2_63_197 set community 0:12411 ip community-list standard 2_206_252 permit 65000:2 0:206 0:252 route-map calculator permit 34813 match community 2_206_252 set community 0:51912 ip community-list standard 2_55_194 permit 65000:2 0:55 0:194 ip community-list standard 2_97_110 permit 65000:2 0:97 0:110 route-map calculator permit 34814 match community 2_55_194 2_97_110 set community 0:10670 ip community-list standard 2_61_142 permit 65000:2 0:61 0:142 ip community-list standard 2_71_122 permit 65000:2 0:71 0:122 route-map calculator permit 34815 match community 2_61_142 2_71_122 set community 0:8662 ip community-list standard 2_81_131 permit 65000:2 0:81 0:131 route-map calculator permit 34816 match community 2_81_131 set community 0:10611 ip community-list standard 2_90_139 permit 65000:2 0:90 0:139 route-map calculator permit 34817 match community 2_90_139 set community 0:12510 ip community-list standard 2_2_152 permit 65000:2 0:2 0:152 ip community-list standard 2_4_76 permit 65000:2 0:4 0:76 ip community-list standard 2_8_38 permit 65000:2 0:8 0:38 ip community-list standard 2_16_19 permit 65000:2 0:16 0:19 ip community-list standard 1_48_256 permit 65000:1 0:48 0:256 ip community-list standard 1_49_255 permit 65000:1 0:49 0:255 ip community-list standard 1_50_254 permit 65000:1 0:50 0:254 ip community-list standard 1_51_253 permit 65000:1 0:51 0:253 ip community-list standard 1_52_252 permit 65000:1 0:52 0:252 ip community-list standard 1_53_251 permit 65000:1 0:53 0:251 ip community-list standard 1_54_250 permit 65000:1 0:54 0:250 ip community-list standard 1_55_249 permit 65000:1 0:55 0:249 ip community-list standard 1_56_248 permit 65000:1 0:56 0:248 ip community-list standard 1_57_247 permit 65000:1 0:57 0:247 ip community-list standard 1_58_246 permit 65000:1 0:58 0:246 ip community-list standard 1_59_245 permit 65000:1 0:59 0:245 ip community-list standard 1_60_244 permit 65000:1 0:60 0:244 ip community-list standard 1_61_243 permit 65000:1 0:61 0:243 ip community-list standard 1_62_242 permit 65000:1 0:62 0:242 ip community-list standard 1_63_241 permit 65000:1 0:63 0:241 ip community-list standard 1_64_240 permit 65000:1 0:64 0:240 ip community-list standard 1_65_239 permit 65000:1 0:65 0:239 ip community-list standard 1_66_238 permit 65000:1 0:66 0:238 ip community-list standard 1_67_237 permit 65000:1 0:67 0:237 ip community-list standard 1_68_236 permit 65000:1 0:68 0:236 ip community-list standard 1_69_235 permit 65000:1 0:69 0:235 ip community-list standard 1_70_234 permit 65000:1 0:70 0:234 ip community-list standard 1_71_233 permit 65000:1 0:71 0:233 ip community-list standard 1_72_232 permit 65000:1 0:72 0:232 ip community-list standard 1_73_231 permit 65000:1 0:73 0:231 ip community-list standard 1_74_230 permit 65000:1 0:74 0:230 ip community-list standard 1_75_229 permit 65000:1 0:75 0:229 ip community-list standard 1_76_228 permit 65000:1 0:76 0:228 ip community-list standard 1_77_227 permit 65000:1 0:77 0:227 ip community-list standard 1_78_226 permit 65000:1 0:78 0:226 ip community-list standard 1_79_225 permit 65000:1 0:79 0:225 ip community-list standard 1_80_224 permit 65000:1 0:80 0:224 ip community-list standard 1_81_223 permit 65000:1 0:81 0:223 ip community-list standard 1_82_222 permit 65000:1 0:82 0:222 ip community-list standard 1_83_221 permit 65000:1 0:83 0:221 ip community-list standard 1_84_220 permit 65000:1 0:84 0:220 ip community-list standard 1_85_219 permit 65000:1 0:85 0:219 ip community-list standard 1_86_218 permit 65000:1 0:86 0:218 ip community-list standard 1_87_217 permit 65000:1 0:87 0:217 ip community-list standard 1_88_216 permit 65000:1 0:88 0:216 ip community-list standard 1_89_215 permit 65000:1 0:89 0:215 ip community-list standard 1_90_214 permit 65000:1 0:90 0:214 ip community-list standard 1_91_213 permit 65000:1 0:91 0:213 ip community-list standard 1_92_212 permit 65000:1 0:92 0:212 ip community-list standard 1_93_211 permit 65000:1 0:93 0:211 ip community-list standard 1_94_210 permit 65000:1 0:94 0:210 ip community-list standard 1_95_209 permit 65000:1 0:95 0:209 ip community-list standard 1_96_208 permit 65000:1 0:96 0:208 ip community-list standard 1_97_207 permit 65000:1 0:97 0:207 ip community-list standard 1_98_206 permit 65000:1 0:98 0:206 ip community-list standard 1_99_205 permit 65000:1 0:99 0:205 ip community-list standard 1_100_204 permit 65000:1 0:100 0:204 ip community-list standard 1_101_203 permit 65000:1 0:101 0:203 ip community-list standard 1_102_202 permit 65000:1 0:102 0:202 ip community-list standard 1_103_201 permit 65000:1 0:103 0:201 ip community-list standard 1_104_200 permit 65000:1 0:104 0:200 ip community-list standard 1_105_199 permit 65000:1 0:105 0:199 ip community-list standard 1_106_198 permit 65000:1 0:106 0:198 ip community-list standard 1_107_197 permit 65000:1 0:107 0:197 ip community-list standard 1_108_196 permit 65000:1 0:108 0:196 ip community-list standard 1_109_195 permit 65000:1 0:109 0:195 ip community-list standard 1_110_194 permit 65000:1 0:110 0:194 ip community-list standard 1_111_193 permit 65000:1 0:111 0:193 ip community-list standard 1_112_192 permit 65000:1 0:112 0:192 ip community-list standard 1_113_191 permit 65000:1 0:113 0:191 ip community-list standard 1_114_190 permit 65000:1 0:114 0:190 ip community-list standard 1_115_189 permit 65000:1 0:115 0:189 ip community-list standard 1_116_188 permit 65000:1 0:116 0:188 ip community-list standard 1_117_187 permit 65000:1 0:117 0:187 ip community-list standard 1_118_186 permit 65000:1 0:118 0:186 ip community-list standard 1_119_185 permit 65000:1 0:119 0:185 ip community-list standard 1_120_184 permit 65000:1 0:120 0:184 ip community-list standard 1_121_183 permit 65000:1 0:121 0:183 ip community-list standard 1_122_182 permit 65000:1 0:122 0:182 ip community-list standard 1_123_181 permit 65000:1 0:123 0:181 ip community-list standard 1_124_180 permit 65000:1 0:124 0:180 ip community-list standard 1_125_179 permit 65000:1 0:125 0:179 ip community-list standard 1_126_178 permit 65000:1 0:126 0:178 ip community-list standard 1_127_177 permit 65000:1 0:127 0:177 ip community-list standard 1_128_176 permit 65000:1 0:128 0:176 ip community-list standard 1_129_175 permit 65000:1 0:129 0:175 ip community-list standard 1_130_174 permit 65000:1 0:130 0:174 ip community-list standard 1_131_173 permit 65000:1 0:131 0:173 ip community-list standard 1_132_172 permit 65000:1 0:132 0:172 ip community-list standard 1_133_171 permit 65000:1 0:133 0:171 ip community-list standard 1_134_170 permit 65000:1 0:134 0:170 ip community-list standard 1_135_169 permit 65000:1 0:135 0:169 ip community-list standard 1_136_168 permit 65000:1 0:136 0:168 ip community-list standard 1_137_167 permit 65000:1 0:137 0:167 ip community-list standard 1_138_166 permit 65000:1 0:138 0:166 ip community-list standard 1_139_165 permit 65000:1 0:139 0:165 ip community-list standard 1_140_164 permit 65000:1 0:140 0:164 ip community-list standard 1_141_163 permit 65000:1 0:141 0:163 ip community-list standard 1_142_162 permit 65000:1 0:142 0:162 ip community-list standard 1_143_161 permit 65000:1 0:143 0:161 ip community-list standard 1_144_160 permit 65000:1 0:144 0:160 ip community-list standard 1_145_159 permit 65000:1 0:145 0:159 ip community-list standard 1_146_158 permit 65000:1 0:146 0:158 ip community-list standard 1_147_157 permit 65000:1 0:147 0:157 ip community-list standard 1_148_156 permit 65000:1 0:148 0:156 ip community-list standard 1_149_155 permit 65000:1 0:149 0:155 ip community-list standard 1_150_154 permit 65000:1 0:150 0:154 ip community-list standard 1_151_153 permit 65000:1 0:151 0:153 ip community-list standard 1_152_152 permit 65000:1 0:152 0:152 route-map calculator permit 34818 match community 2_2_152 2_4_76 2_8_38 2_16_19 1_48_256 set community 0:304 route-map calculator permit 34819 match community 1_49_255 1_50_254 1_51_253 1_52_252 1_53_251 set community 0:304 route-map calculator permit 34820 match community 1_54_250 1_55_249 1_56_248 1_57_247 1_58_246 set community 0:304 route-map calculator permit 34821 match community 1_59_245 1_60_244 1_61_243 1_62_242 1_63_241 set community 0:304 route-map calculator permit 34822 match community 1_64_240 1_65_239 1_66_238 1_67_237 1_68_236 set community 0:304 route-map calculator permit 34823 match community 1_69_235 1_70_234 1_71_233 1_72_232 1_73_231 set community 0:304 route-map calculator permit 34824 match community 1_74_230 1_75_229 1_76_228 1_77_227 1_78_226 set community 0:304 route-map calculator permit 34825 match community 1_79_225 1_80_224 1_81_223 1_82_222 1_83_221 set community 0:304 route-map calculator permit 34826 match community 1_84_220 1_85_219 1_86_218 1_87_217 1_88_216 set community 0:304 route-map calculator permit 34827 match community 1_89_215 1_90_214 1_91_213 1_92_212 1_93_211 set community 0:304 route-map calculator permit 34828 match community 1_94_210 1_95_209 1_96_208 1_97_207 1_98_206 set community 0:304 route-map calculator permit 34829 match community 1_99_205 1_100_204 1_101_203 1_102_202 1_103_201 set community 0:304 route-map calculator permit 34830 match community 1_104_200 1_105_199 1_106_198 1_107_197 1_108_196 set community 0:304 route-map calculator permit 34831 match community 1_109_195 1_110_194 1_111_193 1_112_192 1_113_191 set community 0:304 route-map calculator permit 34832 match community 1_114_190 1_115_189 1_116_188 1_117_187 1_118_186 set community 0:304 route-map calculator permit 34833 match community 1_119_185 1_120_184 1_121_183 1_122_182 1_123_181 set community 0:304 route-map calculator permit 34834 match community 1_124_180 1_125_179 1_126_178 1_127_177 1_128_176 set community 0:304 route-map calculator permit 34835 match community 1_129_175 1_130_174 1_131_173 1_132_172 1_133_171 set community 0:304 route-map calculator permit 34836 match community 1_134_170 1_135_169 1_136_168 1_137_167 1_138_166 set community 0:304 route-map calculator permit 34837 match community 1_139_165 1_140_164 1_141_163 1_142_162 1_143_161 set community 0:304 route-map calculator permit 34838 match community 1_144_160 1_145_159 1_146_158 1_147_157 1_148_156 set community 0:304 route-map calculator permit 34839 match community 1_149_155 1_150_154 1_151_153 1_152_152 set community 0:304 ip community-list standard 2_159_230 permit 65000:2 0:159 0:230 route-map calculator permit 34840 match community 2_159_230 set community 0:36570 ip community-list standard 2_151_165 permit 65000:2 0:151 0:165 route-map calculator permit 34841 match community 2_151_165 set community 0:24915 ip community-list standard 2_18_236 permit 65000:2 0:18 0:236 ip community-list standard 2_24_177 permit 65000:2 0:24 0:177 ip community-list standard 2_36_118 permit 65000:2 0:36 0:118 ip community-list standard 2_59_72 permit 65000:2 0:59 0:72 route-map calculator permit 34842 match community 2_18_236 2_24_177 2_36_118 2_59_72 set community 0:4248 ip community-list standard 2_133_248 permit 65000:2 0:133 0:248 ip community-list standard 2_152_217 permit 65000:2 0:152 0:217 route-map calculator permit 34843 match community 2_133_248 2_152_217 set community 0:32984 ip community-list standard 2_189_230 permit 65000:2 0:189 0:230 ip community-list standard 2_207_210 permit 65000:2 0:207 0:210 route-map calculator permit 34844 match community 2_189_230 2_207_210 set community 0:43470 ip community-list standard 1_1_53 permit 65000:1 0:1 0:53 ip community-list standard 2_1_54 permit 65000:2 0:1 0:54 ip community-list standard 2_2_27 permit 65000:2 0:2 0:27 ip community-list standard 1_2_52 permit 65000:1 0:2 0:52 ip community-list standard 2_3_18 permit 65000:2 0:3 0:18 ip community-list standard 1_3_51 permit 65000:1 0:3 0:51 ip community-list standard 1_4_50 permit 65000:1 0:4 0:50 ip community-list standard 1_5_49 permit 65000:1 0:5 0:49 ip community-list standard 2_6_9 permit 65000:2 0:6 0:9 ip community-list standard 1_6_48 permit 65000:1 0:6 0:48 ip community-list standard 1_7_47 permit 65000:1 0:7 0:47 ip community-list standard 1_8_46 permit 65000:1 0:8 0:46 ip community-list standard 1_9_45 permit 65000:1 0:9 0:45 ip community-list standard 1_10_44 permit 65000:1 0:10 0:44 ip community-list standard 1_11_43 permit 65000:1 0:11 0:43 ip community-list standard 1_12_42 permit 65000:1 0:12 0:42 ip community-list standard 1_13_41 permit 65000:1 0:13 0:41 ip community-list standard 1_14_40 permit 65000:1 0:14 0:40 ip community-list standard 1_15_39 permit 65000:1 0:15 0:39 ip community-list standard 1_16_38 permit 65000:1 0:16 0:38 ip community-list standard 1_17_37 permit 65000:1 0:17 0:37 ip community-list standard 1_18_36 permit 65000:1 0:18 0:36 ip community-list standard 1_19_35 permit 65000:1 0:19 0:35 ip community-list standard 1_20_34 permit 65000:1 0:20 0:34 ip community-list standard 1_21_33 permit 65000:1 0:21 0:33 ip community-list standard 1_22_32 permit 65000:1 0:22 0:32 ip community-list standard 1_23_31 permit 65000:1 0:23 0:31 ip community-list standard 1_24_30 permit 65000:1 0:24 0:30 ip community-list standard 1_25_29 permit 65000:1 0:25 0:29 ip community-list standard 1_26_28 permit 65000:1 0:26 0:28 ip community-list standard 1_27_27 permit 65000:1 0:27 0:27 ip community-list expanded c54 permit 1 ^65000:4_0:54_0:1$ ip community-list expanded c54 permit 2 ^65000:3_0:55_0:1$ ip community-list expanded c54 permit 3 ^65000:3_0:56_0:2$ ip community-list expanded c54 permit 4 ^65000:3_0:57_0:3$ ip community-list expanded c54 permit 5 ^65000:3_0:58_0:4$ ip community-list expanded c54 permit 6 ^65000:3_0:59_0:5$ ip community-list expanded c54 permit 7 ^65000:3_0:60_0:6$ ip community-list expanded c54 permit 8 ^65000:3_0:61_0:7$ ip community-list expanded c54 permit 9 ^65000:3_0:62_0:8$ ip community-list expanded c54 permit 10 ^65000:3_0:63_0:9$ ip community-list expanded c54 permit 11 ^65000:3_0:64_0:10$ ip community-list expanded c54 permit 12 ^65000:3_0:65_0:11$ ip community-list expanded c54 permit 13 ^65000:3_0:66_0:12$ ip community-list expanded c54 permit 14 ^65000:3_0:67_0:13$ ip community-list expanded c54 permit 15 ^65000:3_0:68_0:14$ ip community-list expanded c54 permit 16 ^65000:3_0:69_0:15$ ip community-list expanded c54 permit 17 ^65000:3_0:70_0:16$ ip community-list expanded c54 permit 18 ^65000:3_0:71_0:17$ ip community-list expanded c54 permit 19 ^65000:3_0:72_0:18$ ip community-list expanded c54 permit 20 ^65000:3_0:73_0:19$ ip community-list expanded c54 permit 21 ^65000:3_0:74_0:20$ ip community-list expanded c54 permit 22 ^65000:3_0:75_0:21$ ip community-list expanded c54 permit 23 ^65000:3_0:76_0:22$ ip community-list expanded c54 permit 24 ^65000:3_0:77_0:23$ ip community-list expanded c54 permit 25 ^65000:3_0:78_0:24$ ip community-list expanded c54 permit 26 ^65000:3_0:79_0:25$ ip community-list expanded c54 permit 27 ^65000:3_0:80_0:26$ ip community-list expanded c54 permit 28 ^65000:3_0:81_0:27$ ip community-list expanded c54 permit 29 ^65000:3_0:82_0:28$ ip community-list expanded c54 permit 30 ^65000:3_0:83_0:29$ ip community-list expanded c54 permit 31 ^65000:3_0:84_0:30$ ip community-list expanded c54 permit 32 ^65000:3_0:85_0:31$ ip community-list expanded c54 permit 33 ^65000:3_0:86_0:32$ ip community-list expanded c54 permit 34 ^65000:3_0:87_0:33$ ip community-list expanded c54 permit 35 ^65000:3_0:88_0:34$ ip community-list expanded c54 permit 36 ^65000:3_0:89_0:35$ ip community-list expanded c54 permit 37 ^65000:3_0:90_0:36$ ip community-list expanded c54 permit 38 ^65000:3_0:91_0:37$ ip community-list expanded c54 permit 39 ^65000:3_0:92_0:38$ ip community-list expanded c54 permit 40 ^65000:3_0:93_0:39$ ip community-list expanded c54 permit 41 ^65000:3_0:94_0:40$ ip community-list expanded c54 permit 42 ^65000:3_0:95_0:41$ ip community-list expanded c54 permit 43 ^65000:3_0:96_0:42$ ip community-list expanded c54 permit 44 ^65000:3_0:97_0:43$ ip community-list expanded c54 permit 45 ^65000:3_0:98_0:44$ ip community-list expanded c54 permit 46 ^65000:3_0:99_0:45$ ip community-list expanded c54 permit 47 ^65000:3_0:100_0:46$ ip community-list expanded c54 permit 48 ^65000:3_0:101_0:47$ ip community-list expanded c54 permit 49 ^65000:3_0:102_0:48$ ip community-list expanded c54 permit 50 ^65000:3_0:103_0:49$ ip community-list expanded c54 permit 51 ^65000:3_0:104_0:50$ ip community-list expanded c54 permit 52 ^65000:3_0:105_0:51$ ip community-list expanded c54 permit 53 ^65000:3_0:106_0:52$ ip community-list expanded c54 permit 54 ^65000:3_0:107_0:53$ ip community-list expanded c54 permit 55 ^65000:4_0:108_0:2$ ip community-list expanded c54 permit 56 ^65000:3_0:108_0:54$ ip community-list expanded c54 permit 57 ^65000:4_0:109_0:2$ ip community-list expanded c54 permit 58 ^65000:3_0:109_0:55$ ip community-list expanded c54 permit 59 ^65000:3_0:110_0:56$ ip community-list expanded c54 permit 60 ^65000:3_0:111_0:57$ ip community-list expanded c54 permit 61 ^65000:3_0:112_0:58$ ip community-list expanded c54 permit 62 ^65000:3_0:113_0:59$ ip community-list expanded c54 permit 63 ^65000:3_0:114_0:60$ ip community-list expanded c54 permit 64 ^65000:3_0:115_0:61$ ip community-list expanded c54 permit 65 ^65000:3_0:116_0:62$ ip community-list expanded c54 permit 66 ^65000:3_0:117_0:63$ ip community-list expanded c54 permit 67 ^65000:3_0:118_0:64$ ip community-list expanded c54 permit 68 ^65000:3_0:119_0:65$ ip community-list expanded c54 permit 69 ^65000:3_0:120_0:66$ ip community-list expanded c54 permit 70 ^65000:3_0:121_0:67$ ip community-list expanded c54 permit 71 ^65000:3_0:122_0:68$ ip community-list expanded c54 permit 72 ^65000:3_0:123_0:69$ ip community-list expanded c54 permit 73 ^65000:3_0:124_0:70$ ip community-list expanded c54 permit 74 ^65000:3_0:125_0:71$ ip community-list expanded c54 permit 75 ^65000:3_0:126_0:72$ ip community-list expanded c54 permit 76 ^65000:3_0:127_0:73$ ip community-list expanded c54 permit 77 ^65000:3_0:128_0:74$ ip community-list expanded c54 permit 78 ^65000:3_0:129_0:75$ ip community-list expanded c54 permit 79 ^65000:3_0:130_0:76$ ip community-list expanded c54 permit 80 ^65000:3_0:131_0:77$ ip community-list expanded c54 permit 81 ^65000:3_0:132_0:78$ ip community-list expanded c54 permit 82 ^65000:3_0:133_0:79$ ip community-list expanded c54 permit 83 ^65000:3_0:134_0:80$ ip community-list expanded c54 permit 84 ^65000:3_0:135_0:81$ ip community-list expanded c54 permit 85 ^65000:3_0:136_0:82$ ip community-list expanded c54 permit 86 ^65000:3_0:137_0:83$ ip community-list expanded c54 permit 87 ^65000:3_0:138_0:84$ ip community-list expanded c54 permit 88 ^65000:3_0:139_0:85$ ip community-list expanded c54 permit 89 ^65000:3_0:140_0:86$ ip community-list expanded c54 permit 90 ^65000:3_0:141_0:87$ ip community-list expanded c54 permit 91 ^65000:3_0:142_0:88$ ip community-list expanded c54 permit 92 ^65000:3_0:143_0:89$ ip community-list expanded c54 permit 93 ^65000:3_0:144_0:90$ ip community-list expanded c54 permit 94 ^65000:3_0:145_0:91$ ip community-list expanded c54 permit 95 ^65000:3_0:146_0:92$ ip community-list expanded c54 permit 96 ^65000:3_0:147_0:93$ ip community-list expanded c54 permit 97 ^65000:3_0:148_0:94$ ip community-list expanded c54 permit 98 ^65000:3_0:149_0:95$ ip community-list expanded c54 permit 99 ^65000:3_0:150_0:96$ ip community-list expanded c54 permit 100 ^65000:3_0:151_0:97$ ip community-list expanded c54 permit 101 ^65000:3_0:152_0:98$ ip community-list expanded c54 permit 102 ^65000:3_0:153_0:99$ ip community-list expanded c54 permit 103 ^65000:3_0:154_0:100$ ip community-list expanded c54 permit 104 ^65000:3_0:155_0:101$ ip community-list expanded c54 permit 105 ^65000:3_0:156_0:102$ ip community-list expanded c54 permit 106 ^65000:3_0:157_0:103$ ip community-list expanded c54 permit 107 ^65000:3_0:158_0:104$ ip community-list expanded c54 permit 108 ^65000:3_0:159_0:105$ ip community-list expanded c54 permit 109 ^65000:3_0:160_0:106$ ip community-list expanded c54 permit 110 ^65000:3_0:161_0:107$ ip community-list expanded c54 permit 111 ^65000:4_0:162_0:3$ ip community-list expanded c54 permit 112 ^65000:3_0:162_0:108$ ip community-list expanded c54 permit 113 ^65000:4_0:163_0:3$ ip community-list expanded c54 permit 114 ^65000:3_0:163_0:109$ ip community-list expanded c54 permit 115 ^65000:4_0:164_0:3$ ip community-list expanded c54 permit 116 ^65000:3_0:164_0:110$ ip community-list expanded c54 permit 117 ^65000:3_0:165_0:111$ ip community-list expanded c54 permit 118 ^65000:3_0:166_0:112$ ip community-list expanded c54 permit 119 ^65000:3_0:167_0:113$ ip community-list expanded c54 permit 120 ^65000:3_0:168_0:114$ ip community-list expanded c54 permit 121 ^65000:3_0:169_0:115$ ip community-list expanded c54 permit 122 ^65000:3_0:170_0:116$ ip community-list expanded c54 permit 123 ^65000:3_0:171_0:117$ ip community-list expanded c54 permit 124 ^65000:3_0:172_0:118$ ip community-list expanded c54 permit 125 ^65000:3_0:173_0:119$ ip community-list expanded c54 permit 126 ^65000:3_0:174_0:120$ ip community-list expanded c54 permit 127 ^65000:3_0:175_0:121$ ip community-list expanded c54 permit 128 ^65000:3_0:176_0:122$ ip community-list expanded c54 permit 129 ^65000:3_0:177_0:123$ ip community-list expanded c54 permit 130 ^65000:3_0:178_0:124$ ip community-list expanded c54 permit 131 ^65000:3_0:179_0:125$ ip community-list expanded c54 permit 132 ^65000:3_0:180_0:126$ ip community-list expanded c54 permit 133 ^65000:3_0:181_0:127$ ip community-list expanded c54 permit 134 ^65000:3_0:182_0:128$ ip community-list expanded c54 permit 135 ^65000:3_0:183_0:129$ ip community-list expanded c54 permit 136 ^65000:3_0:184_0:130$ ip community-list expanded c54 permit 137 ^65000:3_0:185_0:131$ ip community-list expanded c54 permit 138 ^65000:3_0:186_0:132$ ip community-list expanded c54 permit 139 ^65000:3_0:187_0:133$ ip community-list expanded c54 permit 140 ^65000:3_0:188_0:134$ ip community-list expanded c54 permit 141 ^65000:3_0:189_0:135$ ip community-list expanded c54 permit 142 ^65000:3_0:190_0:136$ ip community-list expanded c54 permit 143 ^65000:3_0:191_0:137$ ip community-list expanded c54 permit 144 ^65000:3_0:192_0:138$ ip community-list expanded c54 permit 145 ^65000:3_0:193_0:139$ ip community-list expanded c54 permit 146 ^65000:3_0:194_0:140$ ip community-list expanded c54 permit 147 ^65000:3_0:195_0:141$ ip community-list expanded c54 permit 148 ^65000:3_0:196_0:142$ ip community-list expanded c54 permit 149 ^65000:3_0:197_0:143$ ip community-list expanded c54 permit 150 ^65000:3_0:198_0:144$ ip community-list expanded c54 permit 151 ^65000:3_0:199_0:145$ ip community-list expanded c54 permit 152 ^65000:3_0:200_0:146$ ip community-list expanded c54 permit 153 ^65000:3_0:201_0:147$ ip community-list expanded c54 permit 154 ^65000:3_0:202_0:148$ ip community-list expanded c54 permit 155 ^65000:3_0:203_0:149$ ip community-list expanded c54 permit 156 ^65000:3_0:204_0:150$ ip community-list expanded c54 permit 157 ^65000:3_0:205_0:151$ ip community-list expanded c54 permit 158 ^65000:3_0:206_0:152$ ip community-list expanded c54 permit 159 ^65000:3_0:207_0:153$ ip community-list expanded c54 permit 160 ^65000:3_0:208_0:154$ ip community-list expanded c54 permit 161 ^65000:3_0:209_0:155$ ip community-list expanded c54 permit 162 ^65000:3_0:210_0:156$ ip community-list expanded c54 permit 163 ^65000:3_0:211_0:157$ ip community-list expanded c54 permit 164 ^65000:3_0:212_0:158$ ip community-list expanded c54 permit 165 ^65000:3_0:213_0:159$ ip community-list expanded c54 permit 166 ^65000:3_0:214_0:160$ ip community-list expanded c54 permit 167 ^65000:3_0:215_0:161$ ip community-list expanded c54 permit 168 ^65000:4_0:216_0:4$ ip community-list expanded c54 permit 169 ^65000:3_0:216_0:162$ ip community-list expanded c54 permit 170 ^65000:4_0:217_0:4$ ip community-list expanded c54 permit 171 ^65000:3_0:217_0:163$ ip community-list expanded c54 permit 172 ^65000:4_0:218_0:4$ ip community-list expanded c54 permit 173 ^65000:3_0:218_0:164$ ip community-list expanded c54 permit 174 ^65000:4_0:219_0:4$ ip community-list expanded c54 permit 175 ^65000:3_0:219_0:165$ ip community-list expanded c54 permit 176 ^65000:3_0:220_0:166$ ip community-list expanded c54 permit 177 ^65000:3_0:221_0:167$ ip community-list expanded c54 permit 178 ^65000:3_0:222_0:168$ ip community-list expanded c54 permit 179 ^65000:3_0:223_0:169$ ip community-list expanded c54 permit 180 ^65000:3_0:224_0:170$ ip community-list expanded c54 permit 181 ^65000:3_0:225_0:171$ ip community-list expanded c54 permit 182 ^65000:3_0:226_0:172$ ip community-list expanded c54 permit 183 ^65000:3_0:227_0:173$ ip community-list expanded c54 permit 184 ^65000:3_0:228_0:174$ ip community-list expanded c54 permit 185 ^65000:3_0:229_0:175$ ip community-list expanded c54 permit 186 ^65000:3_0:230_0:176$ ip community-list expanded c54 permit 187 ^65000:3_0:231_0:177$ ip community-list expanded c54 permit 188 ^65000:3_0:232_0:178$ ip community-list expanded c54 permit 189 ^65000:3_0:233_0:179$ ip community-list expanded c54 permit 190 ^65000:3_0:234_0:180$ ip community-list expanded c54 permit 191 ^65000:3_0:235_0:181$ ip community-list expanded c54 permit 192 ^65000:3_0:236_0:182$ ip community-list expanded c54 permit 193 ^65000:3_0:237_0:183$ ip community-list expanded c54 permit 194 ^65000:3_0:238_0:184$ ip community-list expanded c54 permit 195 ^65000:3_0:239_0:185$ ip community-list expanded c54 permit 196 ^65000:3_0:240_0:186$ ip community-list expanded c54 permit 197 ^65000:3_0:241_0:187$ ip community-list expanded c54 permit 198 ^65000:3_0:242_0:188$ ip community-list expanded c54 permit 199 ^65000:3_0:243_0:189$ ip community-list expanded c54 permit 200 ^65000:3_0:244_0:190$ ip community-list expanded c54 permit 201 ^65000:3_0:245_0:191$ ip community-list expanded c54 permit 202 ^65000:3_0:246_0:192$ ip community-list expanded c54 permit 203 ^65000:3_0:247_0:193$ ip community-list expanded c54 permit 204 ^65000:3_0:248_0:194$ ip community-list expanded c54 permit 205 ^65000:3_0:249_0:195$ ip community-list expanded c54 permit 206 ^65000:3_0:250_0:196$ ip community-list expanded c54 permit 207 ^65000:3_0:251_0:197$ ip community-list expanded c54 permit 208 ^65000:3_0:252_0:198$ ip community-list expanded c54 permit 209 ^65000:3_0:253_0:199$ ip community-list expanded c54 permit 210 ^65000:3_0:254_0:200$ ip community-list expanded c54 permit 211 ^65000:3_0:255_0:201$ ip community-list expanded c54 permit 212 ^65000:3_0:256_0:202$ route-map calculator permit 34845 match community 1_1_53 2_1_54 2_2_27 1_2_52 2_3_18 set community 0:54 route-map calculator permit 34846 match community 1_3_51 1_4_50 1_5_49 2_6_9 1_6_48 set community 0:54 route-map calculator permit 34847 match community 1_7_47 1_8_46 1_9_45 1_10_44 1_11_43 set community 0:54 route-map calculator permit 34848 match community 1_12_42 1_13_41 1_14_40 1_15_39 1_16_38 set community 0:54 route-map calculator permit 34849 match community 1_17_37 1_18_36 1_19_35 1_20_34 1_21_33 set community 0:54 route-map calculator permit 34850 match community 1_22_32 1_23_31 1_24_30 1_25_29 1_26_28 set community 0:54 route-map calculator permit 34851 match community 1_27_27 c4_54_1 c3_55_1 c3_56_2 c3_57_3 set community 0:54 route-map calculator permit 34852 match community c3_58_4 c3_59_5 c3_60_6 c3_61_7 c3_62_8 set community 0:54 route-map calculator permit 34853 match community c3_63_9 c3_64_10 c3_65_11 c3_66_12 c3_67_13 set community 0:54 route-map calculator permit 34854 match community c3_68_14 c3_69_15 c3_70_16 c3_71_17 c3_72_18 set community 0:54 route-map calculator permit 34855 match community c3_73_19 c3_74_20 c3_75_21 c3_76_22 c3_77_23 set community 0:54 route-map calculator permit 34856 match community c3_78_24 c3_79_25 c3_80_26 c3_81_27 c3_82_28 set community 0:54 route-map calculator permit 34857 match community c3_83_29 c3_84_30 c3_85_31 c3_86_32 c3_87_33 set community 0:54 route-map calculator permit 34858 match community c3_88_34 c3_89_35 c3_90_36 c3_91_37 c3_92_38 set community 0:54 route-map calculator permit 34859 match community c3_93_39 c3_94_40 c3_95_41 c3_96_42 c3_97_43 set community 0:54 route-map calculator permit 34860 match community c3_98_44 c3_99_45 c3_100_46 c3_101_47 c3_102_48 set community 0:54 route-map calculator permit 34861 match community c3_103_49 c3_104_50 c3_105_51 c3_106_52 c3_107_53 set community 0:54 route-map calculator permit 34862 match community c4_108_2 c3_108_54 c4_109_2 c3_109_55 c3_110_56 set community 0:54 route-map calculator permit 34863 match community c3_111_57 c3_112_58 c3_113_59 c3_114_60 c3_115_61 set community 0:54 route-map calculator permit 34864 match community c3_116_62 c3_117_63 c3_118_64 c3_119_65 c3_120_66 set community 0:54 route-map calculator permit 34865 match community c3_121_67 c3_122_68 c3_123_69 c3_124_70 c3_125_71 set community 0:54 route-map calculator permit 34866 match community c3_126_72 c3_127_73 c3_128_74 c3_129_75 c3_130_76 set community 0:54 route-map calculator permit 34867 match community c3_131_77 c3_132_78 c3_133_79 c3_134_80 c3_135_81 set community 0:54 route-map calculator permit 34868 match community c3_136_82 c3_137_83 c3_138_84 c3_139_85 c3_140_86 set community 0:54 route-map calculator permit 34869 match community c3_141_87 c3_142_88 c3_143_89 c3_144_90 c3_145_91 set community 0:54 route-map calculator permit 34870 match community c3_146_92 c3_147_93 c3_148_94 c3_149_95 c3_150_96 set community 0:54 route-map calculator permit 34871 match community c3_151_97 c3_152_98 c3_153_99 c3_154_100 c3_155_101 set community 0:54 route-map calculator permit 34872 match community c3_156_102 c3_157_103 c3_158_104 c3_159_105 c3_160_106 set community 0:54 route-map calculator permit 34873 match community c3_161_107 c4_162_3 c3_162_108 c4_163_3 c3_163_109 set community 0:54 route-map calculator permit 34874 match community c4_164_3 c3_164_110 c3_165_111 c3_166_112 c3_167_113 set community 0:54 route-map calculator permit 34875 match community c3_168_114 c3_169_115 c3_170_116 c3_171_117 c3_172_118 set community 0:54 route-map calculator permit 34876 match community c3_173_119 c3_174_120 c3_175_121 c3_176_122 c3_177_123 set community 0:54 route-map calculator permit 34877 match community c3_178_124 c3_179_125 c3_180_126 c3_181_127 c3_182_128 set community 0:54 route-map calculator permit 34878 match community c3_183_129 c3_184_130 c3_185_131 c3_186_132 c3_187_133 set community 0:54 route-map calculator permit 34879 match community c3_188_134 c3_189_135 c3_190_136 c3_191_137 c3_192_138 set community 0:54 route-map calculator permit 34880 match community c3_193_139 c3_194_140 c3_195_141 c3_196_142 c3_197_143 set community 0:54 route-map calculator permit 34881 match community c3_198_144 c3_199_145 c3_200_146 c3_201_147 c3_202_148 set community 0:54 route-map calculator permit 34882 match community c3_203_149 c3_204_150 c3_205_151 c3_206_152 c3_207_153 set community 0:54 route-map calculator permit 34883 match community c3_208_154 c3_209_155 c3_210_156 c3_211_157 c3_212_158 set community 0:54 route-map calculator permit 34884 match community c3_213_159 c3_214_160 c3_215_161 c4_216_4 c3_216_162 set community 0:54 route-map calculator permit 34885 match community c4_217_4 c3_217_163 c4_218_4 c3_218_164 c4_219_4 set community 0:54 route-map calculator permit 34886 match community c3_219_165 c3_220_166 c3_221_167 c3_222_168 c3_223_169 set community 0:54 route-map calculator permit 34887 match community c3_224_170 c3_225_171 c3_226_172 c3_227_173 c3_228_174 set community 0:54 route-map calculator permit 34888 match community c3_229_175 c3_230_176 c3_231_177 c3_232_178 c3_233_179 set community 0:54 route-map calculator permit 34889 match community c3_234_180 c3_235_181 c3_236_182 c3_237_183 c3_238_184 set community 0:54 route-map calculator permit 34890 match community c3_239_185 c3_240_186 c3_241_187 c3_242_188 c3_243_189 set community 0:54 route-map calculator permit 34891 match community c3_244_190 c3_245_191 c3_246_192 c3_247_193 c3_248_194 set community 0:54 route-map calculator permit 34892 match community c3_249_195 c3_250_196 c3_251_197 c3_252_198 c3_253_199 set community 0:54 route-map calculator permit 34893 match community c3_254_200 c3_255_201 c3_256_202 set community 0:54 ip community-list standard 2_52_201 permit 65000:2 0:52 0:201 ip community-list standard 2_67_156 permit 65000:2 0:67 0:156 ip community-list standard 2_78_134 permit 65000:2 0:78 0:134 route-map calculator permit 34894 match community 2_52_201 2_67_156 2_78_134 set community 0:10452 ip community-list standard 2_93_246 permit 65000:2 0:93 0:246 ip community-list standard 2_123_186 permit 65000:2 0:123 0:186 route-map calculator permit 34895 match community 2_93_246 2_123_186 set community 0:22878 ip community-list standard 2_8_223 permit 65000:2 0:8 0:223 route-map calculator permit 34896 match community 2_8_223 set community 0:1784 ip community-list standard 2_24_181 permit 65000:2 0:24 0:181 route-map calculator permit 34897 match community 2_24_181 set community 0:4344 ip community-list standard 2_40_134 permit 65000:2 0:40 0:134 ip community-list standard 2_67_80 permit 65000:2 0:67 0:80 route-map calculator permit 34898 match community 2_40_134 2_67_80 set community 0:5360 ip community-list standard 2_25_224 permit 65000:2 0:25 0:224 ip community-list standard 2_28_200 permit 65000:2 0:28 0:200 ip community-list standard 2_32_175 permit 65000:2 0:32 0:175 ip community-list standard 2_35_160 permit 65000:2 0:35 0:160 ip community-list standard 2_40_140 permit 65000:2 0:40 0:140 ip community-list standard 2_50_112 permit 65000:2 0:50 0:112 ip community-list standard 2_56_100 permit 65000:2 0:56 0:100 ip community-list standard 2_70_80 permit 65000:2 0:70 0:80 route-map calculator permit 34899 match community 2_25_224 2_28_200 2_32_175 2_35_160 2_40_140 set community 0:5600 route-map calculator permit 34900 match community 2_50_112 2_56_100 2_70_80 set community 0:5600 ip community-list standard 2_13_250 permit 65000:2 0:13 0:250 ip community-list standard 2_25_130 permit 65000:2 0:25 0:130 ip community-list standard 2_26_125 permit 65000:2 0:26 0:125 ip community-list standard 2_50_65 permit 65000:2 0:50 0:65 route-map calculator permit 34901 match community 2_13_250 2_25_130 2_26_125 2_50_65 set community 0:3250 ip community-list standard 2_85_229 permit 65000:2 0:85 0:229 route-map calculator permit 34902 match community 2_85_229 set community 0:19465 ip community-list standard 2_21_139 permit 65000:2 0:21 0:139 route-map calculator permit 34903 match community 2_21_139 set community 0:2919 ip community-list standard 2_107_248 permit 65000:2 0:107 0:248 ip community-list standard 2_124_214 permit 65000:2 0:124 0:214 route-map calculator permit 34904 match community 2_107_248 2_124_214 set community 0:26536 ip community-list standard 2_164_191 permit 65000:2 0:164 0:191 route-map calculator permit 34905 match community 2_164_191 set community 0:31324 ip community-list standard 2_7_73 permit 65000:2 0:7 0:73 ip community-list standard 1_255_256 permit 65000:1 0:255 0:256 route-map calculator permit 34906 match community 2_7_73 1_255_256 set community 0:511 ip community-list standard 2_134_199 permit 65000:2 0:134 0:199 route-map calculator permit 34907 match community 2_134_199 set community 0:26666 ip community-list standard 2_68_253 permit 65000:2 0:68 0:253 ip community-list standard 2_92_187 permit 65000:2 0:92 0:187 route-map calculator permit 34908 match community 2_68_253 2_92_187 set community 0:17204 ip community-list standard 2_225_250 permit 65000:2 0:225 0:250 route-map calculator permit 34909 match community 2_225_250 set community 0:56250 ip community-list standard 2_199_229 permit 65000:2 0:199 0:229 route-map calculator permit 34910 match community 2_199_229 set community 0:45571 ip community-list standard 2_86_226 permit 65000:2 0:86 0:226 ip community-list standard 2_113_172 permit 65000:2 0:113 0:172 route-map calculator permit 34911 match community 2_86_226 2_113_172 set community 0:19436 ip community-list standard 2_58_236 permit 65000:2 0:58 0:236 ip community-list standard 2_59_232 permit 65000:2 0:59 0:232 ip community-list standard 2_116_118 permit 65000:2 0:116 0:118 route-map calculator permit 34912 match community 2_58_236 2_59_232 2_116_118 set community 0:13688 ip community-list standard 2_61_167 permit 65000:2 0:61 0:167 route-map calculator permit 34913 match community 2_61_167 set community 0:10187 ip community-list standard 2_63_233 permit 65000:2 0:63 0:233 route-map calculator permit 34914 match community 2_63_233 set community 0:14679 ip community-list standard 2_7_79 permit 65000:2 0:7 0:79 route-map calculator permit 34915 match community 2_7_79 set community 0:553 ip community-list standard 2_238_244 permit 65000:2 0:238 0:244 route-map calculator permit 34916 match community 2_238_244 set community 0:58072 ip community-list standard 2_123_251 permit 65000:2 0:123 0:251 route-map calculator permit 34917 match community 2_123_251 set community 0:30873 ip community-list standard 2_178_179 permit 65000:2 0:178 0:179 route-map calculator permit 34918 match community 2_178_179 set community 0:31862 ip community-list standard 2_49_182 permit 65000:2 0:49 0:182 ip community-list standard 2_91_98 permit 65000:2 0:91 0:98 route-map calculator permit 34919 match community 2_49_182 2_91_98 set community 0:8918 ip community-list standard 2_172_227 permit 65000:2 0:172 0:227 route-map calculator permit 34920 match community 2_172_227 set community 0:39044 ip community-list standard 2_80_232 permit 65000:2 0:80 0:232 ip community-list standard 2_116_160 permit 65000:2 0:116 0:160 ip community-list standard 2_128_145 permit 65000:2 0:128 0:145 route-map calculator permit 34921 match community 2_80_232 2_116_160 2_128_145 set community 0:18560 ip community-list standard 2_83_161 permit 65000:2 0:83 0:161 route-map calculator permit 34922 match community 2_83_161 set community 0:13363 ip community-list standard 2_4_203 permit 65000:2 0:4 0:203 ip community-list standard 2_7_116 permit 65000:2 0:7 0:116 ip community-list standard 2_14_58 permit 65000:2 0:14 0:58 ip community-list standard 2_28_29 permit 65000:2 0:28 0:29 route-map calculator permit 34923 match community 2_4_203 2_7_116 2_14_58 2_28_29 set community 0:812 ip community-list standard 2_65_252 permit 65000:2 0:65 0:252 ip community-list standard 2_70_234 permit 65000:2 0:70 0:234 ip community-list standard 2_78_210 permit 65000:2 0:78 0:210 ip community-list standard 2_84_195 permit 65000:2 0:84 0:195 ip community-list standard 2_90_182 permit 65000:2 0:90 0:182 ip community-list standard 2_91_180 permit 65000:2 0:91 0:180 ip community-list standard 2_105_156 permit 65000:2 0:105 0:156 ip community-list standard 2_117_140 permit 65000:2 0:117 0:140 ip community-list standard 2_126_130 permit 65000:2 0:126 0:130 route-map calculator permit 34924 match community 2_65_252 2_70_234 2_78_210 2_84_195 2_90_182 set community 0:16380 route-map calculator permit 34925 match community 2_91_180 2_105_156 2_117_140 2_126_130 set community 0:16380 ip community-list standard 2_66_179 permit 65000:2 0:66 0:179 route-map calculator permit 34926 match community 2_66_179 set community 0:11814 ip community-list standard 2_222_228 permit 65000:2 0:222 0:228 route-map calculator permit 34927 match community 2_222_228 set community 0:50616 ip community-list standard 2_31_211 permit 65000:2 0:31 0:211 route-map calculator permit 34928 match community 2_31_211 set community 0:6541 ip community-list standard 2_33_183 permit 65000:2 0:33 0:183 ip community-list standard 2_61_99 permit 65000:2 0:61 0:99 route-map calculator permit 34929 match community 2_33_183 2_61_99 set community 0:6039 ip community-list standard 2_17_181 permit 65000:2 0:17 0:181 route-map calculator permit 34930 match community 2_17_181 set community 0:3077 ip community-list standard 2_55_101 permit 65000:2 0:55 0:101 route-map calculator permit 34931 match community 2_55_101 set community 0:5555 ip community-list standard 2_17_239 permit 65000:2 0:17 0:239 route-map calculator permit 34932 match community 2_17_239 set community 0:4063 ip community-list standard 2_193_235 permit 65000:2 0:193 0:235 route-map calculator permit 34933 match community 2_193_235 set community 0:45355 ip community-list standard 2_157_220 permit 65000:2 0:157 0:220 route-map calculator permit 34934 match community 2_157_220 set community 0:34540 ip community-list standard 2_93_231 permit 65000:2 0:93 0:231 ip community-list standard 2_99_217 permit 65000:2 0:99 0:217 route-map calculator permit 34935 match community 2_93_231 2_99_217 set community 0:21483 ip community-list standard 2_152_197 permit 65000:2 0:152 0:197 route-map calculator permit 34936 match community 2_152_197 set community 0:29944 ip community-list standard 2_4_208 permit 65000:2 0:4 0:208 ip community-list standard 2_8_104 permit 65000:2 0:8 0:104 ip community-list standard 2_13_64 permit 65000:2 0:13 0:64 ip community-list standard 2_16_52 permit 65000:2 0:16 0:52 ip community-list standard 2_26_32 permit 65000:2 0:26 0:32 route-map calculator permit 34937 match community 2_4_208 2_8_104 2_13_64 2_16_52 2_26_32 set community 0:832 ip community-list standard 2_5_177 permit 65000:2 0:5 0:177 ip community-list standard 2_15_59 permit 65000:2 0:15 0:59 route-map calculator permit 34938 match community 2_5_177 2_15_59 set community 0:885 ip community-list standard 2_90_206 permit 65000:2 0:90 0:206 ip community-list standard 2_103_180 permit 65000:2 0:103 0:180 route-map calculator permit 34939 match community 2_90_206 2_103_180 set community 0:18540 ip community-list standard 2_8_195 permit 65000:2 0:8 0:195 ip community-list standard 2_10_156 permit 65000:2 0:10 0:156 ip community-list standard 2_12_130 permit 65000:2 0:12 0:130 ip community-list standard 2_13_120 permit 65000:2 0:13 0:120 ip community-list standard 2_15_104 permit 65000:2 0:15 0:104 ip community-list standard 2_20_78 permit 65000:2 0:20 0:78 ip community-list standard 2_24_65 permit 65000:2 0:24 0:65 ip community-list standard 2_26_60 permit 65000:2 0:26 0:60 ip community-list standard 2_30_52 permit 65000:2 0:30 0:52 ip community-list standard 2_39_40 permit 65000:2 0:39 0:40 route-map calculator permit 34940 match community 2_8_195 2_10_156 2_12_130 2_13_120 2_15_104 set community 0:1560 route-map calculator permit 34941 match community 2_20_78 2_24_65 2_26_60 2_30_52 2_39_40 set community 0:1560 ip community-list standard 2_177_243 permit 65000:2 0:177 0:243 route-map calculator permit 34942 match community 2_177_243 set community 0:43011 ip community-list standard 2_3_153 permit 65000:2 0:3 0:153 ip community-list standard 2_9_51 permit 65000:2 0:9 0:51 ip community-list standard 2_17_27 permit 65000:2 0:17 0:27 ip community-list standard 1_203_256 permit 65000:1 0:203 0:256 ip community-list standard 1_204_255 permit 65000:1 0:204 0:255 ip community-list standard 1_205_254 permit 65000:1 0:205 0:254 ip community-list standard 1_206_253 permit 65000:1 0:206 0:253 ip community-list standard 1_207_252 permit 65000:1 0:207 0:252 ip community-list standard 1_208_251 permit 65000:1 0:208 0:251 ip community-list standard 1_209_250 permit 65000:1 0:209 0:250 ip community-list standard 1_210_249 permit 65000:1 0:210 0:249 ip community-list standard 1_211_248 permit 65000:1 0:211 0:248 ip community-list standard 1_212_247 permit 65000:1 0:212 0:247 ip community-list standard 1_213_246 permit 65000:1 0:213 0:246 ip community-list standard 1_214_245 permit 65000:1 0:214 0:245 ip community-list standard 1_215_244 permit 65000:1 0:215 0:244 ip community-list standard 1_216_243 permit 65000:1 0:216 0:243 ip community-list standard 1_217_242 permit 65000:1 0:217 0:242 ip community-list standard 1_218_241 permit 65000:1 0:218 0:241 ip community-list standard 1_219_240 permit 65000:1 0:219 0:240 ip community-list standard 1_220_239 permit 65000:1 0:220 0:239 ip community-list standard 1_221_238 permit 65000:1 0:221 0:238 ip community-list standard 1_222_237 permit 65000:1 0:222 0:237 ip community-list standard 1_223_236 permit 65000:1 0:223 0:236 ip community-list standard 1_224_235 permit 65000:1 0:224 0:235 ip community-list standard 1_225_234 permit 65000:1 0:225 0:234 ip community-list standard 1_226_233 permit 65000:1 0:226 0:233 ip community-list standard 1_227_232 permit 65000:1 0:227 0:232 ip community-list standard 1_228_231 permit 65000:1 0:228 0:231 ip community-list standard 1_229_230 permit 65000:1 0:229 0:230 route-map calculator permit 34943 match community 2_3_153 2_9_51 2_17_27 1_203_256 1_204_255 set community 0:459 route-map calculator permit 34944 match community 1_205_254 1_206_253 1_207_252 1_208_251 1_209_250 set community 0:459 route-map calculator permit 34945 match community 1_210_249 1_211_248 1_212_247 1_213_246 1_214_245 set community 0:459 route-map calculator permit 34946 match community 1_215_244 1_216_243 1_217_242 1_218_241 1_219_240 set community 0:459 route-map calculator permit 34947 match community 1_220_239 1_221_238 1_222_237 1_223_236 1_224_235 set community 0:459 route-map calculator permit 34948 match community 1_225_234 1_226_233 1_227_232 1_228_231 1_229_230 set community 0:459 ip community-list standard 2_29_241 permit 65000:2 0:29 0:241 route-map calculator permit 34949 match community 2_29_241 set community 0:6989 ip community-list standard 2_221_242 permit 65000:2 0:221 0:242 route-map calculator permit 34950 match community 2_221_242 set community 0:53482 ip community-list standard 2_5_130 permit 65000:2 0:5 0:130 ip community-list standard 2_10_65 permit 65000:2 0:10 0:65 ip community-list standard 2_13_50 permit 65000:2 0:13 0:50 ip community-list standard 2_25_26 permit 65000:2 0:25 0:26 route-map calculator permit 34951 match community 2_5_130 2_10_65 2_13_50 2_25_26 set community 0:650 ip community-list standard 2_158_243 permit 65000:2 0:158 0:243 ip community-list standard 2_162_237 permit 65000:2 0:162 0:237 route-map calculator permit 34952 match community 2_158_243 2_162_237 set community 0:38394 ip community-list standard 2_57_228 permit 65000:2 0:57 0:228 ip community-list standard 2_76_171 permit 65000:2 0:76 0:171 ip community-list standard 2_114_114 permit 65000:2 0:114 0:114 route-map calculator permit 34953 match community 2_57_228 2_76_171 2_114_114 set community 0:12996 ip community-list standard 2_39_256 permit 65000:2 0:39 0:256 ip community-list standard 2_48_208 permit 65000:2 0:48 0:208 ip community-list standard 2_52_192 permit 65000:2 0:52 0:192 ip community-list standard 2_64_156 permit 65000:2 0:64 0:156 ip community-list standard 2_78_128 permit 65000:2 0:78 0:128 ip community-list standard 2_96_104 permit 65000:2 0:96 0:104 route-map calculator permit 34954 match community 2_39_256 2_48_208 2_52_192 2_64_156 2_78_128 set community 0:9984 route-map calculator permit 34955 match community 2_96_104 set community 0:9984 ip community-list standard 2_176_193 permit 65000:2 0:176 0:193 route-map calculator permit 34956 match community 2_176_193 set community 0:33968 ip community-list standard 2_35_222 permit 65000:2 0:35 0:222 ip community-list standard 2_37_210 permit 65000:2 0:37 0:210 ip community-list standard 2_42_185 permit 65000:2 0:42 0:185 ip community-list standard 2_70_111 permit 65000:2 0:70 0:111 ip community-list standard 2_74_105 permit 65000:2 0:74 0:105 route-map calculator permit 34957 match community 2_35_222 2_37_210 2_42_185 2_70_111 2_74_105 set community 0:7770 ip community-list standard 2_3_186 permit 65000:2 0:3 0:186 ip community-list standard 2_6_93 permit 65000:2 0:6 0:93 ip community-list standard 2_9_62 permit 65000:2 0:9 0:62 ip community-list standard 2_18_31 permit 65000:2 0:18 0:31 route-map calculator permit 34958 match community 2_3_186 2_6_93 2_9_62 2_18_31 set community 0:558 ip community-list standard 2_3_254 permit 65000:2 0:3 0:254 ip community-list standard 2_6_127 permit 65000:2 0:6 0:127 route-map calculator permit 34959 match community 2_3_254 2_6_127 set community 0:762 ip community-list standard 2_16_193 permit 65000:2 0:16 0:193 route-map calculator permit 34960 match community 2_16_193 set community 0:3088 ip community-list standard 2_16_151 permit 65000:2 0:16 0:151 route-map calculator permit 34961 match community 2_16_151 set community 0:2416 ip community-list standard 2_48_222 permit 65000:2 0:48 0:222 ip community-list standard 2_72_148 permit 65000:2 0:72 0:148 ip community-list standard 2_74_144 permit 65000:2 0:74 0:144 ip community-list standard 2_96_111 permit 65000:2 0:96 0:111 route-map calculator permit 34962 match community 2_48_222 2_72_148 2_74_144 2_96_111 set community 0:10656 ip community-list standard 2_151_151 permit 65000:2 0:151 0:151 route-map calculator permit 34963 match community 2_151_151 set community 0:22801 ip community-list standard 2_67_161 permit 65000:2 0:67 0:161 route-map calculator permit 34964 match community 2_67_161 set community 0:10787 ip community-list standard 2_147_244 permit 65000:2 0:147 0:244 ip community-list standard 2_183_196 permit 65000:2 0:183 0:196 route-map calculator permit 34965 match community 2_147_244 2_183_196 set community 0:35868 ip community-list standard 2_227_230 permit 65000:2 0:227 0:230 route-map calculator permit 34966 match community 2_227_230 set community 0:52210 ip community-list standard 2_142_148 permit 65000:2 0:142 0:148 route-map calculator permit 34967 match community 2_142_148 set community 0:21016 ip community-list standard 1_1_13 permit 65000:1 0:1 0:13 ip community-list standard 2_1_14 permit 65000:2 0:1 0:14 ip community-list standard 2_2_7 permit 65000:2 0:2 0:7 ip community-list standard 1_2_12 permit 65000:1 0:2 0:12 ip community-list standard 1_3_11 permit 65000:1 0:3 0:11 ip community-list standard 1_4_10 permit 65000:1 0:4 0:10 ip community-list standard 1_5_9 permit 65000:1 0:5 0:9 ip community-list standard 1_6_8 permit 65000:1 0:6 0:8 ip community-list standard 1_7_7 permit 65000:1 0:7 0:7 ip community-list expanded c14 permit 1 ^65000:4_0:14_0:1$ ip community-list expanded c14 permit 2 ^65000:3_0:15_0:1$ ip community-list expanded c14 permit 3 ^65000:3_0:16_0:2$ ip community-list expanded c14 permit 4 ^65000:3_0:17_0:3$ ip community-list expanded c14 permit 5 ^65000:3_0:18_0:4$ ip community-list expanded c14 permit 6 ^65000:3_0:19_0:5$ ip community-list expanded c14 permit 7 ^65000:3_0:20_0:6$ ip community-list expanded c14 permit 8 ^65000:3_0:21_0:7$ ip community-list expanded c14 permit 9 ^65000:3_0:22_0:8$ ip community-list expanded c14 permit 10 ^65000:3_0:23_0:9$ ip community-list expanded c14 permit 11 ^65000:3_0:24_0:10$ ip community-list expanded c14 permit 12 ^65000:3_0:25_0:11$ ip community-list expanded c14 permit 13 ^65000:3_0:26_0:12$ ip community-list expanded c14 permit 14 ^65000:3_0:27_0:13$ ip community-list expanded c14 permit 15 ^65000:4_0:28_0:2$ ip community-list expanded c14 permit 16 ^65000:3_0:28_0:14$ ip community-list expanded c14 permit 17 ^65000:4_0:29_0:2$ ip community-list expanded c14 permit 18 ^65000:3_0:29_0:15$ ip community-list expanded c14 permit 19 ^65000:3_0:30_0:16$ ip community-list expanded c14 permit 20 ^65000:3_0:31_0:17$ ip community-list expanded c14 permit 21 ^65000:3_0:32_0:18$ ip community-list expanded c14 permit 22 ^65000:3_0:33_0:19$ ip community-list expanded c14 permit 23 ^65000:3_0:34_0:20$ ip community-list expanded c14 permit 24 ^65000:3_0:35_0:21$ ip community-list expanded c14 permit 25 ^65000:3_0:36_0:22$ ip community-list expanded c14 permit 26 ^65000:3_0:37_0:23$ ip community-list expanded c14 permit 27 ^65000:3_0:38_0:24$ ip community-list expanded c14 permit 28 ^65000:3_0:39_0:25$ ip community-list expanded c14 permit 29 ^65000:3_0:40_0:26$ ip community-list expanded c14 permit 30 ^65000:3_0:41_0:27$ ip community-list expanded c14 permit 31 ^65000:4_0:42_0:3$ ip community-list expanded c14 permit 32 ^65000:3_0:42_0:28$ ip community-list expanded c14 permit 33 ^65000:4_0:43_0:3$ ip community-list expanded c14 permit 34 ^65000:3_0:43_0:29$ ip community-list expanded c14 permit 35 ^65000:4_0:44_0:3$ ip community-list expanded c14 permit 36 ^65000:3_0:44_0:30$ ip community-list expanded c14 permit 37 ^65000:3_0:45_0:31$ ip community-list expanded c14 permit 38 ^65000:3_0:46_0:32$ ip community-list expanded c14 permit 39 ^65000:3_0:47_0:33$ ip community-list expanded c14 permit 40 ^65000:3_0:48_0:34$ ip community-list expanded c14 permit 41 ^65000:3_0:49_0:35$ ip community-list expanded c14 permit 42 ^65000:3_0:50_0:36$ ip community-list expanded c14 permit 43 ^65000:3_0:51_0:37$ ip community-list expanded c14 permit 44 ^65000:3_0:52_0:38$ ip community-list expanded c14 permit 45 ^65000:3_0:53_0:39$ ip community-list expanded c14 permit 46 ^65000:3_0:54_0:40$ ip community-list expanded c14 permit 47 ^65000:3_0:55_0:41$ ip community-list expanded c14 permit 48 ^65000:4_0:56_0:4$ ip community-list expanded c14 permit 49 ^65000:3_0:56_0:42$ ip community-list expanded c14 permit 50 ^65000:4_0:57_0:4$ ip community-list expanded c14 permit 51 ^65000:3_0:57_0:43$ ip community-list expanded c14 permit 52 ^65000:4_0:58_0:4$ ip community-list expanded c14 permit 53 ^65000:3_0:58_0:44$ ip community-list expanded c14 permit 54 ^65000:4_0:59_0:4$ ip community-list expanded c14 permit 55 ^65000:3_0:59_0:45$ ip community-list expanded c14 permit 56 ^65000:3_0:60_0:46$ ip community-list expanded c14 permit 57 ^65000:3_0:61_0:47$ ip community-list expanded c14 permit 58 ^65000:3_0:62_0:48$ ip community-list expanded c14 permit 59 ^65000:3_0:63_0:49$ ip community-list expanded c14 permit 60 ^65000:3_0:64_0:50$ ip community-list expanded c14 permit 61 ^65000:3_0:65_0:51$ ip community-list expanded c14 permit 62 ^65000:3_0:66_0:52$ ip community-list expanded c14 permit 63 ^65000:3_0:67_0:53$ ip community-list expanded c14 permit 64 ^65000:3_0:68_0:54$ ip community-list expanded c14 permit 65 ^65000:3_0:69_0:55$ ip community-list expanded c14 permit 66 ^65000:4_0:70_0:5$ ip community-list expanded c14 permit 67 ^65000:3_0:70_0:56$ ip community-list expanded c14 permit 68 ^65000:4_0:71_0:5$ ip community-list expanded c14 permit 69 ^65000:3_0:71_0:57$ ip community-list expanded c14 permit 70 ^65000:4_0:72_0:5$ ip community-list expanded c14 permit 71 ^65000:3_0:72_0:58$ ip community-list expanded c14 permit 72 ^65000:4_0:73_0:5$ ip community-list expanded c14 permit 73 ^65000:3_0:73_0:59$ ip community-list expanded c14 permit 74 ^65000:4_0:74_0:5$ ip community-list expanded c14 permit 75 ^65000:3_0:74_0:60$ ip community-list expanded c14 permit 76 ^65000:3_0:75_0:61$ ip community-list expanded c14 permit 77 ^65000:3_0:76_0:62$ ip community-list expanded c14 permit 78 ^65000:3_0:77_0:63$ ip community-list expanded c14 permit 79 ^65000:3_0:78_0:64$ ip community-list expanded c14 permit 80 ^65000:3_0:79_0:65$ ip community-list expanded c14 permit 81 ^65000:3_0:80_0:66$ ip community-list expanded c14 permit 82 ^65000:3_0:81_0:67$ ip community-list expanded c14 permit 83 ^65000:3_0:82_0:68$ ip community-list expanded c14 permit 84 ^65000:3_0:83_0:69$ ip community-list expanded c14 permit 85 ^65000:4_0:84_0:6$ ip community-list expanded c14 permit 86 ^65000:3_0:84_0:70$ ip community-list expanded c14 permit 87 ^65000:4_0:85_0:6$ ip community-list expanded c14 permit 88 ^65000:3_0:85_0:71$ ip community-list expanded c14 permit 89 ^65000:4_0:86_0:6$ ip community-list expanded c14 permit 90 ^65000:3_0:86_0:72$ ip community-list expanded c14 permit 91 ^65000:4_0:87_0:6$ ip community-list expanded c14 permit 92 ^65000:3_0:87_0:73$ ip community-list expanded c14 permit 93 ^65000:4_0:88_0:6$ ip community-list expanded c14 permit 94 ^65000:3_0:88_0:74$ ip community-list expanded c14 permit 95 ^65000:4_0:89_0:6$ ip community-list expanded c14 permit 96 ^65000:3_0:89_0:75$ ip community-list expanded c14 permit 97 ^65000:3_0:90_0:76$ ip community-list expanded c14 permit 98 ^65000:3_0:91_0:77$ ip community-list expanded c14 permit 99 ^65000:3_0:92_0:78$ ip community-list expanded c14 permit 100 ^65000:3_0:93_0:79$ ip community-list expanded c14 permit 101 ^65000:3_0:94_0:80$ ip community-list expanded c14 permit 102 ^65000:3_0:95_0:81$ ip community-list expanded c14 permit 103 ^65000:3_0:96_0:82$ ip community-list expanded c14 permit 104 ^65000:3_0:97_0:83$ ip community-list expanded c14 permit 105 ^65000:4_0:98_0:7$ ip community-list expanded c14 permit 106 ^65000:3_0:98_0:84$ ip community-list expanded c14 permit 107 ^65000:4_0:99_0:7$ ip community-list expanded c14 permit 108 ^65000:3_0:99_0:85$ ip community-list expanded c14 permit 109 ^65000:4_0:100_0:7$ ip community-list expanded c14 permit 110 ^65000:3_0:100_0:86$ ip community-list expanded c14 permit 111 ^65000:4_0:101_0:7$ ip community-list expanded c14 permit 112 ^65000:3_0:101_0:87$ ip community-list expanded c14 permit 113 ^65000:4_0:102_0:7$ ip community-list expanded c14 permit 114 ^65000:3_0:102_0:88$ ip community-list expanded c14 permit 115 ^65000:4_0:103_0:7$ ip community-list expanded c14 permit 116 ^65000:3_0:103_0:89$ ip community-list expanded c14 permit 117 ^65000:4_0:104_0:7$ ip community-list expanded c14 permit 118 ^65000:3_0:104_0:90$ ip community-list expanded c14 permit 119 ^65000:3_0:105_0:91$ ip community-list expanded c14 permit 120 ^65000:3_0:106_0:92$ ip community-list expanded c14 permit 121 ^65000:3_0:107_0:93$ ip community-list expanded c14 permit 122 ^65000:3_0:108_0:94$ ip community-list expanded c14 permit 123 ^65000:3_0:109_0:95$ ip community-list expanded c14 permit 124 ^65000:3_0:110_0:96$ ip community-list expanded c14 permit 125 ^65000:3_0:111_0:97$ ip community-list expanded c14 permit 126 ^65000:4_0:112_0:8$ ip community-list expanded c14 permit 127 ^65000:3_0:112_0:98$ ip community-list expanded c14 permit 128 ^65000:4_0:113_0:8$ ip community-list expanded c14 permit 129 ^65000:3_0:113_0:99$ ip community-list expanded c14 permit 130 ^65000:4_0:114_0:8$ ip community-list expanded c14 permit 131 ^65000:3_0:114_0:100$ ip community-list expanded c14 permit 132 ^65000:4_0:115_0:8$ ip community-list expanded c14 permit 133 ^65000:3_0:115_0:101$ ip community-list expanded c14 permit 134 ^65000:4_0:116_0:8$ ip community-list expanded c14 permit 135 ^65000:3_0:116_0:102$ ip community-list expanded c14 permit 136 ^65000:4_0:117_0:8$ ip community-list expanded c14 permit 137 ^65000:3_0:117_0:103$ ip community-list expanded c14 permit 138 ^65000:4_0:118_0:8$ ip community-list expanded c14 permit 139 ^65000:3_0:118_0:104$ ip community-list expanded c14 permit 140 ^65000:4_0:119_0:8$ ip community-list expanded c14 permit 141 ^65000:3_0:119_0:105$ ip community-list expanded c14 permit 142 ^65000:3_0:120_0:106$ ip community-list expanded c14 permit 143 ^65000:3_0:121_0:107$ ip community-list expanded c14 permit 144 ^65000:3_0:122_0:108$ ip community-list expanded c14 permit 145 ^65000:3_0:123_0:109$ ip community-list expanded c14 permit 146 ^65000:3_0:124_0:110$ ip community-list expanded c14 permit 147 ^65000:3_0:125_0:111$ ip community-list expanded c14 permit 148 ^65000:4_0:126_0:9$ ip community-list expanded c14 permit 149 ^65000:3_0:126_0:112$ ip community-list expanded c14 permit 150 ^65000:4_0:127_0:9$ ip community-list expanded c14 permit 151 ^65000:3_0:127_0:113$ ip community-list expanded c14 permit 152 ^65000:4_0:128_0:9$ ip community-list expanded c14 permit 153 ^65000:3_0:128_0:114$ ip community-list expanded c14 permit 154 ^65000:4_0:129_0:9$ ip community-list expanded c14 permit 155 ^65000:3_0:129_0:115$ ip community-list expanded c14 permit 156 ^65000:4_0:130_0:9$ ip community-list expanded c14 permit 157 ^65000:3_0:130_0:116$ ip community-list expanded c14 permit 158 ^65000:4_0:131_0:9$ ip community-list expanded c14 permit 159 ^65000:3_0:131_0:117$ ip community-list expanded c14 permit 160 ^65000:4_0:132_0:9$ ip community-list expanded c14 permit 161 ^65000:3_0:132_0:118$ ip community-list expanded c14 permit 162 ^65000:4_0:133_0:9$ ip community-list expanded c14 permit 163 ^65000:3_0:133_0:119$ ip community-list expanded c14 permit 164 ^65000:4_0:134_0:9$ ip community-list expanded c14 permit 165 ^65000:3_0:134_0:120$ ip community-list expanded c14 permit 166 ^65000:3_0:135_0:121$ ip community-list expanded c14 permit 167 ^65000:3_0:136_0:122$ ip community-list expanded c14 permit 168 ^65000:3_0:137_0:123$ ip community-list expanded c14 permit 169 ^65000:3_0:138_0:124$ ip community-list expanded c14 permit 170 ^65000:3_0:139_0:125$ ip community-list expanded c14 permit 171 ^65000:4_0:140_0:10$ ip community-list expanded c14 permit 172 ^65000:3_0:140_0:126$ ip community-list expanded c14 permit 173 ^65000:4_0:141_0:10$ ip community-list expanded c14 permit 174 ^65000:3_0:141_0:127$ ip community-list expanded c14 permit 175 ^65000:4_0:142_0:10$ ip community-list expanded c14 permit 176 ^65000:3_0:142_0:128$ ip community-list expanded c14 permit 177 ^65000:4_0:143_0:10$ ip community-list expanded c14 permit 178 ^65000:3_0:143_0:129$ ip community-list expanded c14 permit 179 ^65000:4_0:144_0:10$ ip community-list expanded c14 permit 180 ^65000:3_0:144_0:130$ ip community-list expanded c14 permit 181 ^65000:4_0:145_0:10$ ip community-list expanded c14 permit 182 ^65000:3_0:145_0:131$ ip community-list expanded c14 permit 183 ^65000:4_0:146_0:10$ ip community-list expanded c14 permit 184 ^65000:3_0:146_0:132$ ip community-list expanded c14 permit 185 ^65000:4_0:147_0:10$ ip community-list expanded c14 permit 186 ^65000:3_0:147_0:133$ ip community-list expanded c14 permit 187 ^65000:4_0:148_0:10$ ip community-list expanded c14 permit 188 ^65000:3_0:148_0:134$ ip community-list expanded c14 permit 189 ^65000:4_0:149_0:10$ ip community-list expanded c14 permit 190 ^65000:3_0:149_0:135$ ip community-list expanded c14 permit 191 ^65000:3_0:150_0:136$ ip community-list expanded c14 permit 192 ^65000:3_0:151_0:137$ ip community-list expanded c14 permit 193 ^65000:3_0:152_0:138$ ip community-list expanded c14 permit 194 ^65000:3_0:153_0:139$ ip community-list expanded c14 permit 195 ^65000:4_0:154_0:11$ ip community-list expanded c14 permit 196 ^65000:3_0:154_0:140$ ip community-list expanded c14 permit 197 ^65000:4_0:155_0:11$ ip community-list expanded c14 permit 198 ^65000:3_0:155_0:141$ ip community-list expanded c14 permit 199 ^65000:4_0:156_0:11$ ip community-list expanded c14 permit 200 ^65000:3_0:156_0:142$ ip community-list expanded c14 permit 201 ^65000:4_0:157_0:11$ ip community-list expanded c14 permit 202 ^65000:3_0:157_0:143$ ip community-list expanded c14 permit 203 ^65000:4_0:158_0:11$ ip community-list expanded c14 permit 204 ^65000:3_0:158_0:144$ ip community-list expanded c14 permit 205 ^65000:4_0:159_0:11$ ip community-list expanded c14 permit 206 ^65000:3_0:159_0:145$ ip community-list expanded c14 permit 207 ^65000:4_0:160_0:11$ ip community-list expanded c14 permit 208 ^65000:3_0:160_0:146$ ip community-list expanded c14 permit 209 ^65000:4_0:161_0:11$ ip community-list expanded c14 permit 210 ^65000:3_0:161_0:147$ ip community-list expanded c14 permit 211 ^65000:4_0:162_0:11$ ip community-list expanded c14 permit 212 ^65000:3_0:162_0:148$ ip community-list expanded c14 permit 213 ^65000:4_0:163_0:11$ ip community-list expanded c14 permit 214 ^65000:3_0:163_0:149$ ip community-list expanded c14 permit 215 ^65000:4_0:164_0:11$ ip community-list expanded c14 permit 216 ^65000:3_0:164_0:150$ ip community-list expanded c14 permit 217 ^65000:3_0:165_0:151$ ip community-list expanded c14 permit 218 ^65000:3_0:166_0:152$ ip community-list expanded c14 permit 219 ^65000:3_0:167_0:153$ ip community-list expanded c14 permit 220 ^65000:4_0:168_0:12$ ip community-list expanded c14 permit 221 ^65000:3_0:168_0:154$ ip community-list expanded c14 permit 222 ^65000:4_0:169_0:12$ ip community-list expanded c14 permit 223 ^65000:3_0:169_0:155$ ip community-list expanded c14 permit 224 ^65000:4_0:170_0:12$ ip community-list expanded c14 permit 225 ^65000:3_0:170_0:156$ ip community-list expanded c14 permit 226 ^65000:4_0:171_0:12$ ip community-list expanded c14 permit 227 ^65000:3_0:171_0:157$ ip community-list expanded c14 permit 228 ^65000:4_0:172_0:12$ ip community-list expanded c14 permit 229 ^65000:3_0:172_0:158$ ip community-list expanded c14 permit 230 ^65000:4_0:173_0:12$ ip community-list expanded c14 permit 231 ^65000:3_0:173_0:159$ ip community-list expanded c14 permit 232 ^65000:4_0:174_0:12$ ip community-list expanded c14 permit 233 ^65000:3_0:174_0:160$ ip community-list expanded c14 permit 234 ^65000:4_0:175_0:12$ ip community-list expanded c14 permit 235 ^65000:3_0:175_0:161$ ip community-list expanded c14 permit 236 ^65000:4_0:176_0:12$ ip community-list expanded c14 permit 237 ^65000:3_0:176_0:162$ ip community-list expanded c14 permit 238 ^65000:4_0:177_0:12$ ip community-list expanded c14 permit 239 ^65000:3_0:177_0:163$ ip community-list expanded c14 permit 240 ^65000:4_0:178_0:12$ ip community-list expanded c14 permit 241 ^65000:3_0:178_0:164$ ip community-list expanded c14 permit 242 ^65000:4_0:179_0:12$ ip community-list expanded c14 permit 243 ^65000:3_0:179_0:165$ ip community-list expanded c14 permit 244 ^65000:3_0:180_0:166$ ip community-list expanded c14 permit 245 ^65000:3_0:181_0:167$ ip community-list expanded c14 permit 246 ^65000:4_0:182_0:13$ ip community-list expanded c14 permit 247 ^65000:3_0:182_0:168$ ip community-list expanded c14 permit 248 ^65000:4_0:183_0:13$ ip community-list expanded c14 permit 249 ^65000:3_0:183_0:169$ ip community-list expanded c14 permit 250 ^65000:4_0:184_0:13$ ip community-list expanded c14 permit 251 ^65000:3_0:184_0:170$ ip community-list expanded c14 permit 252 ^65000:4_0:185_0:13$ ip community-list expanded c14 permit 253 ^65000:3_0:185_0:171$ ip community-list expanded c14 permit 254 ^65000:4_0:186_0:13$ ip community-list expanded c14 permit 255 ^65000:3_0:186_0:172$ ip community-list expanded c14 permit 256 ^65000:4_0:187_0:13$ ip community-list expanded c14 permit 257 ^65000:3_0:187_0:173$ ip community-list expanded c14 permit 258 ^65000:4_0:188_0:13$ ip community-list expanded c14 permit 259 ^65000:3_0:188_0:174$ ip community-list expanded c14 permit 260 ^65000:4_0:189_0:13$ ip community-list expanded c14 permit 261 ^65000:3_0:189_0:175$ ip community-list expanded c14 permit 262 ^65000:4_0:190_0:13$ ip community-list expanded c14 permit 263 ^65000:3_0:190_0:176$ ip community-list expanded c14 permit 264 ^65000:4_0:191_0:13$ ip community-list expanded c14 permit 265 ^65000:3_0:191_0:177$ ip community-list expanded c14 permit 266 ^65000:4_0:192_0:13$ ip community-list expanded c14 permit 267 ^65000:3_0:192_0:178$ ip community-list expanded c14 permit 268 ^65000:4_0:193_0:13$ ip community-list expanded c14 permit 269 ^65000:3_0:193_0:179$ ip community-list expanded c14 permit 270 ^65000:4_0:194_0:13$ ip community-list expanded c14 permit 271 ^65000:3_0:194_0:180$ ip community-list expanded c14 permit 272 ^65000:3_0:195_0:181$ ip community-list expanded c14 permit 273 ^65000:4_0:196_0:14$ ip community-list expanded c14 permit 274 ^65000:3_0:196_0:182$ ip community-list expanded c14 permit 275 ^65000:4_0:197_0:14$ ip community-list expanded c14 permit 276 ^65000:3_0:197_0:183$ ip community-list expanded c14 permit 277 ^65000:4_0:198_0:14$ ip community-list expanded c14 permit 278 ^65000:3_0:198_0:184$ ip community-list expanded c14 permit 279 ^65000:4_0:199_0:14$ ip community-list expanded c14 permit 280 ^65000:3_0:199_0:185$ ip community-list expanded c14 permit 281 ^65000:4_0:200_0:14$ ip community-list expanded c14 permit 282 ^65000:3_0:200_0:186$ ip community-list expanded c14 permit 283 ^65000:4_0:201_0:14$ ip community-list expanded c14 permit 284 ^65000:3_0:201_0:187$ ip community-list expanded c14 permit 285 ^65000:4_0:202_0:14$ ip community-list expanded c14 permit 286 ^65000:3_0:202_0:188$ ip community-list expanded c14 permit 287 ^65000:4_0:203_0:14$ ip community-list expanded c14 permit 288 ^65000:3_0:203_0:189$ ip community-list expanded c14 permit 289 ^65000:4_0:204_0:14$ ip community-list expanded c14 permit 290 ^65000:3_0:204_0:190$ ip community-list expanded c14 permit 291 ^65000:4_0:205_0:14$ ip community-list expanded c14 permit 292 ^65000:3_0:205_0:191$ ip community-list expanded c14 permit 293 ^65000:4_0:206_0:14$ ip community-list expanded c14 permit 294 ^65000:3_0:206_0:192$ ip community-list expanded c14 permit 295 ^65000:4_0:207_0:14$ ip community-list expanded c14 permit 296 ^65000:3_0:207_0:193$ ip community-list expanded c14 permit 297 ^65000:4_0:208_0:14$ ip community-list expanded c14 permit 298 ^65000:3_0:208_0:194$ ip community-list expanded c14 permit 299 ^65000:4_0:209_0:14$ ip community-list expanded c14 permit 300 ^65000:3_0:209_0:195$ ip community-list expanded c14 permit 301 ^65000:4_0:210_0:15$ ip community-list expanded c14 permit 302 ^65000:3_0:210_0:196$ ip community-list expanded c14 permit 303 ^65000:4_0:211_0:15$ ip community-list expanded c14 permit 304 ^65000:3_0:211_0:197$ ip community-list expanded c14 permit 305 ^65000:4_0:212_0:15$ ip community-list expanded c14 permit 306 ^65000:3_0:212_0:198$ ip community-list expanded c14 permit 307 ^65000:4_0:213_0:15$ ip community-list expanded c14 permit 308 ^65000:3_0:213_0:199$ ip community-list expanded c14 permit 309 ^65000:4_0:214_0:15$ ip community-list expanded c14 permit 310 ^65000:3_0:214_0:200$ ip community-list expanded c14 permit 311 ^65000:4_0:215_0:15$ ip community-list expanded c14 permit 312 ^65000:3_0:215_0:201$ ip community-list expanded c14 permit 313 ^65000:4_0:216_0:15$ ip community-list expanded c14 permit 314 ^65000:3_0:216_0:202$ ip community-list expanded c14 permit 315 ^65000:4_0:217_0:15$ ip community-list expanded c14 permit 316 ^65000:3_0:217_0:203$ ip community-list expanded c14 permit 317 ^65000:4_0:218_0:15$ ip community-list expanded c14 permit 318 ^65000:3_0:218_0:204$ ip community-list expanded c14 permit 319 ^65000:4_0:219_0:15$ ip community-list expanded c14 permit 320 ^65000:3_0:219_0:205$ ip community-list expanded c14 permit 321 ^65000:4_0:220_0:15$ ip community-list expanded c14 permit 322 ^65000:3_0:220_0:206$ ip community-list expanded c14 permit 323 ^65000:4_0:221_0:15$ ip community-list expanded c14 permit 324 ^65000:3_0:221_0:207$ ip community-list expanded c14 permit 325 ^65000:4_0:222_0:15$ ip community-list expanded c14 permit 326 ^65000:3_0:222_0:208$ ip community-list expanded c14 permit 327 ^65000:4_0:223_0:15$ ip community-list expanded c14 permit 328 ^65000:3_0:223_0:209$ ip community-list expanded c14 permit 329 ^65000:4_0:224_0:15$ ip community-list expanded c14 permit 330 ^65000:4_0:224_0:16$ ip community-list expanded c14 permit 331 ^65000:3_0:224_0:210$ ip community-list expanded c14 permit 332 ^65000:4_0:225_0:16$ ip community-list expanded c14 permit 333 ^65000:3_0:225_0:211$ ip community-list expanded c14 permit 334 ^65000:4_0:226_0:16$ ip community-list expanded c14 permit 335 ^65000:3_0:226_0:212$ ip community-list expanded c14 permit 336 ^65000:4_0:227_0:16$ ip community-list expanded c14 permit 337 ^65000:3_0:227_0:213$ ip community-list expanded c14 permit 338 ^65000:4_0:228_0:16$ ip community-list expanded c14 permit 339 ^65000:3_0:228_0:214$ ip community-list expanded c14 permit 340 ^65000:4_0:229_0:16$ ip community-list expanded c14 permit 341 ^65000:3_0:229_0:215$ ip community-list expanded c14 permit 342 ^65000:4_0:230_0:16$ ip community-list expanded c14 permit 343 ^65000:3_0:230_0:216$ ip community-list expanded c14 permit 344 ^65000:4_0:231_0:16$ ip community-list expanded c14 permit 345 ^65000:3_0:231_0:217$ ip community-list expanded c14 permit 346 ^65000:4_0:232_0:16$ ip community-list expanded c14 permit 347 ^65000:3_0:232_0:218$ ip community-list expanded c14 permit 348 ^65000:4_0:233_0:16$ ip community-list expanded c14 permit 349 ^65000:3_0:233_0:219$ ip community-list expanded c14 permit 350 ^65000:4_0:234_0:16$ ip community-list expanded c14 permit 351 ^65000:3_0:234_0:220$ ip community-list expanded c14 permit 352 ^65000:4_0:235_0:16$ ip community-list expanded c14 permit 353 ^65000:3_0:235_0:221$ ip community-list expanded c14 permit 354 ^65000:4_0:236_0:16$ ip community-list expanded c14 permit 355 ^65000:3_0:236_0:222$ ip community-list expanded c14 permit 356 ^65000:4_0:237_0:16$ ip community-list expanded c14 permit 357 ^65000:3_0:237_0:223$ ip community-list expanded c14 permit 358 ^65000:4_0:238_0:16$ ip community-list expanded c14 permit 359 ^65000:4_0:238_0:17$ ip community-list expanded c14 permit 360 ^65000:3_0:238_0:224$ ip community-list expanded c14 permit 361 ^65000:4_0:239_0:16$ ip community-list expanded c14 permit 362 ^65000:4_0:239_0:17$ ip community-list expanded c14 permit 363 ^65000:3_0:239_0:225$ ip community-list expanded c14 permit 364 ^65000:4_0:240_0:17$ ip community-list expanded c14 permit 365 ^65000:3_0:240_0:226$ ip community-list expanded c14 permit 366 ^65000:4_0:241_0:17$ ip community-list expanded c14 permit 367 ^65000:3_0:241_0:227$ ip community-list expanded c14 permit 368 ^65000:4_0:242_0:17$ ip community-list expanded c14 permit 369 ^65000:3_0:242_0:228$ ip community-list expanded c14 permit 370 ^65000:4_0:243_0:17$ ip community-list expanded c14 permit 371 ^65000:3_0:243_0:229$ ip community-list expanded c14 permit 372 ^65000:4_0:244_0:17$ ip community-list expanded c14 permit 373 ^65000:3_0:244_0:230$ ip community-list expanded c14 permit 374 ^65000:4_0:245_0:17$ ip community-list expanded c14 permit 375 ^65000:3_0:245_0:231$ ip community-list expanded c14 permit 376 ^65000:4_0:246_0:17$ ip community-list expanded c14 permit 377 ^65000:3_0:246_0:232$ ip community-list expanded c14 permit 378 ^65000:4_0:247_0:17$ ip community-list expanded c14 permit 379 ^65000:3_0:247_0:233$ ip community-list expanded c14 permit 380 ^65000:4_0:248_0:17$ ip community-list expanded c14 permit 381 ^65000:3_0:248_0:234$ ip community-list expanded c14 permit 382 ^65000:4_0:249_0:17$ ip community-list expanded c14 permit 383 ^65000:3_0:249_0:235$ ip community-list expanded c14 permit 384 ^65000:4_0:250_0:17$ ip community-list expanded c14 permit 385 ^65000:3_0:250_0:236$ ip community-list expanded c14 permit 386 ^65000:4_0:251_0:17$ ip community-list expanded c14 permit 387 ^65000:3_0:251_0:237$ ip community-list expanded c14 permit 388 ^65000:4_0:252_0:17$ ip community-list expanded c14 permit 389 ^65000:4_0:252_0:18$ ip community-list expanded c14 permit 390 ^65000:3_0:252_0:238$ ip community-list expanded c14 permit 391 ^65000:4_0:253_0:17$ ip community-list expanded c14 permit 392 ^65000:4_0:253_0:18$ ip community-list expanded c14 permit 393 ^65000:3_0:253_0:239$ ip community-list expanded c14 permit 394 ^65000:4_0:254_0:17$ ip community-list expanded c14 permit 395 ^65000:4_0:254_0:18$ ip community-list expanded c14 permit 396 ^65000:3_0:254_0:240$ ip community-list expanded c14 permit 397 ^65000:4_0:255_0:18$ ip community-list expanded c14 permit 398 ^65000:3_0:255_0:241$ ip community-list expanded c14 permit 399 ^65000:4_0:256_0:18$ ip community-list expanded c14 permit 400 ^65000:3_0:256_0:242$ route-map calculator permit 34968 match community 1_1_13 2_1_14 2_2_7 1_2_12 1_3_11 set community 0:14 route-map calculator permit 34969 match community 1_4_10 1_5_9 1_6_8 1_7_7 c4_14_1 set community 0:14 route-map calculator permit 34970 match community c3_15_1 c3_16_2 c3_17_3 c3_18_4 c3_19_5 set community 0:14 route-map calculator permit 34971 match community c3_20_6 c3_21_7 c3_22_8 c3_23_9 c3_24_10 set community 0:14 route-map calculator permit 34972 match community c3_25_11 c3_26_12 c3_27_13 c4_28_2 c3_28_14 set community 0:14 route-map calculator permit 34973 match community c4_29_2 c3_29_15 c3_30_16 c3_31_17 c3_32_18 set community 0:14 route-map calculator permit 34974 match community c3_33_19 c3_34_20 c3_35_21 c3_36_22 c3_37_23 set community 0:14 route-map calculator permit 34975 match community c3_38_24 c3_39_25 c3_40_26 c3_41_27 c4_42_3 set community 0:14 route-map calculator permit 34976 match community c3_42_28 c4_43_3 c3_43_29 c4_44_3 c3_44_30 set community 0:14 route-map calculator permit 34977 match community c3_45_31 c3_46_32 c3_47_33 c3_48_34 c3_49_35 set community 0:14 route-map calculator permit 34978 match community c3_50_36 c3_51_37 c3_52_38 c3_53_39 c3_54_40 set community 0:14 route-map calculator permit 34979 match community c3_55_41 c4_56_4 c3_56_42 c4_57_4 c3_57_43 set community 0:14 route-map calculator permit 34980 match community c4_58_4 c3_58_44 c4_59_4 c3_59_45 c3_60_46 set community 0:14 route-map calculator permit 34981 match community c3_61_47 c3_62_48 c3_63_49 c3_64_50 c3_65_51 set community 0:14 route-map calculator permit 34982 match community c3_66_52 c3_67_53 c3_68_54 c3_69_55 c4_70_5 set community 0:14 route-map calculator permit 34983 match community c3_70_56 c4_71_5 c3_71_57 c4_72_5 c3_72_58 set community 0:14 route-map calculator permit 34984 match community c4_73_5 c3_73_59 c4_74_5 c3_74_60 c3_75_61 set community 0:14 route-map calculator permit 34985 match community c3_76_62 c3_77_63 c3_78_64 c3_79_65 c3_80_66 set community 0:14 route-map calculator permit 34986 match community c3_81_67 c3_82_68 c3_83_69 c4_84_6 c3_84_70 set community 0:14 route-map calculator permit 34987 match community c4_85_6 c3_85_71 c4_86_6 c3_86_72 c4_87_6 set community 0:14 route-map calculator permit 34988 match community c3_87_73 c4_88_6 c3_88_74 c4_89_6 c3_89_75 set community 0:14 route-map calculator permit 34989 match community c3_90_76 c3_91_77 c3_92_78 c3_93_79 c3_94_80 set community 0:14 route-map calculator permit 34990 match community c3_95_81 c3_96_82 c3_97_83 c4_98_7 c3_98_84 set community 0:14 route-map calculator permit 34991 match community c4_99_7 c3_99_85 c4_100_7 c3_100_86 c4_101_7 set community 0:14 route-map calculator permit 34992 match community c3_101_87 c4_102_7 c3_102_88 c4_103_7 c3_103_89 set community 0:14 route-map calculator permit 34993 match community c4_104_7 c3_104_90 c3_105_91 c3_106_92 c3_107_93 set community 0:14 route-map calculator permit 34994 match community c3_108_94 c3_109_95 c3_110_96 c3_111_97 c4_112_8 set community 0:14 route-map calculator permit 34995 match community c3_112_98 c4_113_8 c3_113_99 c4_114_8 c3_114_100 set community 0:14 route-map calculator permit 34996 match community c4_115_8 c3_115_101 c4_116_8 c3_116_102 c4_117_8 set community 0:14 route-map calculator permit 34997 match community c3_117_103 c4_118_8 c3_118_104 c4_119_8 c3_119_105 set community 0:14 route-map calculator permit 34998 match community c3_120_106 c3_121_107 c3_122_108 c3_123_109 c3_124_110 set community 0:14 route-map calculator permit 34999 match community c3_125_111 c4_126_9 c3_126_112 c4_127_9 c3_127_113 set community 0:14 route-map calculator permit 35000 match community c4_128_9 c3_128_114 c4_129_9 c3_129_115 c4_130_9 set community 0:14 route-map calculator permit 35001 match community c3_130_116 c4_131_9 c3_131_117 c4_132_9 c3_132_118 set community 0:14 route-map calculator permit 35002 match community c4_133_9 c3_133_119 c4_134_9 c3_134_120 c3_135_121 set community 0:14 route-map calculator permit 35003 match community c3_136_122 c3_137_123 c3_138_124 c3_139_125 c4_140_10 set community 0:14 route-map calculator permit 35004 match community c3_140_126 c4_141_10 c3_141_127 c4_142_10 c3_142_128 set community 0:14 route-map calculator permit 35005 match community c4_143_10 c3_143_129 c4_144_10 c3_144_130 c4_145_10 set community 0:14 route-map calculator permit 35006 match community c3_145_131 c4_146_10 c3_146_132 c4_147_10 c3_147_133 set community 0:14 route-map calculator permit 35007 match community c4_148_10 c3_148_134 c4_149_10 c3_149_135 c3_150_136 set community 0:14 route-map calculator permit 35008 match community c3_151_137 c3_152_138 c3_153_139 c4_154_11 c3_154_140 set community 0:14 route-map calculator permit 35009 match community c4_155_11 c3_155_141 c4_156_11 c3_156_142 c4_157_11 set community 0:14 route-map calculator permit 35010 match community c3_157_143 c4_158_11 c3_158_144 c4_159_11 c3_159_145 set community 0:14 route-map calculator permit 35011 match community c4_160_11 c3_160_146 c4_161_11 c3_161_147 c4_162_11 set community 0:14 route-map calculator permit 35012 match community c3_162_148 c4_163_11 c3_163_149 c4_164_11 c3_164_150 set community 0:14 route-map calculator permit 35013 match community c3_165_151 c3_166_152 c3_167_153 c4_168_12 c3_168_154 set community 0:14 route-map calculator permit 35014 match community c4_169_12 c3_169_155 c4_170_12 c3_170_156 c4_171_12 set community 0:14 route-map calculator permit 35015 match community c3_171_157 c4_172_12 c3_172_158 c4_173_12 c3_173_159 set community 0:14 route-map calculator permit 35016 match community c4_174_12 c3_174_160 c4_175_12 c3_175_161 c4_176_12 set community 0:14 route-map calculator permit 35017 match community c3_176_162 c4_177_12 c3_177_163 c4_178_12 c3_178_164 set community 0:14 route-map calculator permit 35018 match community c4_179_12 c3_179_165 c3_180_166 c3_181_167 c4_182_13 set community 0:14 route-map calculator permit 35019 match community c3_182_168 c4_183_13 c3_183_169 c4_184_13 c3_184_170 set community 0:14 route-map calculator permit 35020 match community c4_185_13 c3_185_171 c4_186_13 c3_186_172 c4_187_13 set community 0:14 route-map calculator permit 35021 match community c3_187_173 c4_188_13 c3_188_174 c4_189_13 c3_189_175 set community 0:14 route-map calculator permit 35022 match community c4_190_13 c3_190_176 c4_191_13 c3_191_177 c4_192_13 set community 0:14 route-map calculator permit 35023 match community c3_192_178 c4_193_13 c3_193_179 c4_194_13 c3_194_180 set community 0:14 route-map calculator permit 35024 match community c3_195_181 c4_196_14 c3_196_182 c4_197_14 c3_197_183 set community 0:14 route-map calculator permit 35025 match community c4_198_14 c3_198_184 c4_199_14 c3_199_185 c4_200_14 set community 0:14 route-map calculator permit 35026 match community c3_200_186 c4_201_14 c3_201_187 c4_202_14 c3_202_188 set community 0:14 route-map calculator permit 35027 match community c4_203_14 c3_203_189 c4_204_14 c3_204_190 c4_205_14 set community 0:14 route-map calculator permit 35028 match community c3_205_191 c4_206_14 c3_206_192 c4_207_14 c3_207_193 set community 0:14 route-map calculator permit 35029 match community c4_208_14 c3_208_194 c4_209_14 c3_209_195 c4_210_15 set community 0:14 route-map calculator permit 35030 match community c3_210_196 c4_211_15 c3_211_197 c4_212_15 c3_212_198 set community 0:14 route-map calculator permit 35031 match community c4_213_15 c3_213_199 c4_214_15 c3_214_200 c4_215_15 set community 0:14 route-map calculator permit 35032 match community c3_215_201 c4_216_15 c3_216_202 c4_217_15 c3_217_203 set community 0:14 route-map calculator permit 35033 match community c4_218_15 c3_218_204 c4_219_15 c3_219_205 c4_220_15 set community 0:14 route-map calculator permit 35034 match community c3_220_206 c4_221_15 c3_221_207 c4_222_15 c3_222_208 set community 0:14 route-map calculator permit 35035 match community c4_223_15 c3_223_209 c4_224_15 c4_224_16 c3_224_210 set community 0:14 route-map calculator permit 35036 match community c4_225_16 c3_225_211 c4_226_16 c3_226_212 c4_227_16 set community 0:14 route-map calculator permit 35037 match community c3_227_213 c4_228_16 c3_228_214 c4_229_16 c3_229_215 set community 0:14 route-map calculator permit 35038 match community c4_230_16 c3_230_216 c4_231_16 c3_231_217 c4_232_16 set community 0:14 route-map calculator permit 35039 match community c3_232_218 c4_233_16 c3_233_219 c4_234_16 c3_234_220 set community 0:14 route-map calculator permit 35040 match community c4_235_16 c3_235_221 c4_236_16 c3_236_222 c4_237_16 set community 0:14 route-map calculator permit 35041 match community c3_237_223 c4_238_16 c4_238_17 c3_238_224 c4_239_16 set community 0:14 route-map calculator permit 35042 match community c4_239_17 c3_239_225 c4_240_17 c3_240_226 c4_241_17 set community 0:14 route-map calculator permit 35043 match community c3_241_227 c4_242_17 c3_242_228 c4_243_17 c3_243_229 set community 0:14 route-map calculator permit 35044 match community c4_244_17 c3_244_230 c4_245_17 c3_245_231 c4_246_17 set community 0:14 route-map calculator permit 35045 match community c3_246_232 c4_247_17 c3_247_233 c4_248_17 c3_248_234 set community 0:14 route-map calculator permit 35046 match community c4_249_17 c3_249_235 c4_250_17 c3_250_236 c4_251_17 set community 0:14 route-map calculator permit 35047 match community c3_251_237 c4_252_17 c4_252_18 c3_252_238 c4_253_17 set community 0:14 route-map calculator permit 35048 match community c4_253_18 c3_253_239 c4_254_17 c4_254_18 c3_254_240 set community 0:14 route-map calculator permit 35049 match community c4_255_18 c3_255_241 c4_256_18 c3_256_242 set community 0:14 ip community-list standard 2_179_188 permit 65000:2 0:179 0:188 route-map calculator permit 35050 match community 2_179_188 set community 0:33652 ip community-list standard 2_62_243 permit 65000:2 0:62 0:243 ip community-list standard 2_81_186 permit 65000:2 0:81 0:186 ip community-list standard 2_93_162 permit 65000:2 0:93 0:162 route-map calculator permit 35051 match community 2_62_243 2_81_186 2_93_162 set community 0:15066 ip community-list standard 2_9_141 permit 65000:2 0:9 0:141 ip community-list standard 2_27_47 permit 65000:2 0:27 0:47 route-map calculator permit 35052 match community 2_9_141 2_27_47 set community 0:1269 ip community-list standard 2_69_196 permit 65000:2 0:69 0:196 ip community-list standard 2_84_161 permit 65000:2 0:84 0:161 ip community-list standard 2_92_147 permit 65000:2 0:92 0:147 ip community-list standard 2_98_138 permit 65000:2 0:98 0:138 route-map calculator permit 35053 match community 2_69_196 2_84_161 2_92_147 2_98_138 set community 0:13524 ip community-list standard 2_51_243 permit 65000:2 0:51 0:243 ip community-list standard 2_81_153 permit 65000:2 0:81 0:153 route-map calculator permit 35054 match community 2_51_243 2_81_153 set community 0:12393 ip community-list standard 2_28_236 permit 65000:2 0:28 0:236 ip community-list standard 2_56_118 permit 65000:2 0:56 0:118 ip community-list standard 2_59_112 permit 65000:2 0:59 0:112 route-map calculator permit 35055 match community 2_28_236 2_56_118 2_59_112 set community 0:6608 ip community-list standard 2_199_203 permit 65000:2 0:199 0:203 route-map calculator permit 35056 match community 2_199_203 set community 0:40397 ip community-list standard 2_132_254 permit 65000:2 0:132 0:254 route-map calculator permit 35057 match community 2_132_254 set community 0:33528 ip community-list standard 2_199_214 permit 65000:2 0:199 0:214 route-map calculator permit 35058 match community 2_199_214 set community 0:42586 ip community-list standard 2_125_215 permit 65000:2 0:125 0:215 route-map calculator permit 35059 match community 2_125_215 set community 0:26875 ip community-list standard 2_213_219 permit 65000:2 0:213 0:219 route-map calculator permit 35060 match community 2_213_219 set community 0:46647 ip community-list standard 2_97_145 permit 65000:2 0:97 0:145 route-map calculator permit 35061 match community 2_97_145 set community 0:14065 ip community-list standard 2_22_175 permit 65000:2 0:22 0:175 ip community-list standard 2_25_154 permit 65000:2 0:25 0:154 ip community-list standard 2_35_110 permit 65000:2 0:35 0:110 ip community-list standard 2_50_77 permit 65000:2 0:50 0:77 ip community-list standard 2_55_70 permit 65000:2 0:55 0:70 route-map calculator permit 35062 match community 2_22_175 2_25_154 2_35_110 2_50_77 2_55_70 set community 0:3850 ip community-list standard 2_167_196 permit 65000:2 0:167 0:196 route-map calculator permit 35063 match community 2_167_196 set community 0:32732 ip community-list standard 2_127_157 permit 65000:2 0:127 0:157 route-map calculator permit 35064 match community 2_127_157 set community 0:19939 ip community-list standard 2_221_233 permit 65000:2 0:221 0:233 route-map calculator permit 35065 match community 2_221_233 set community 0:51493 ip community-list standard 2_148_202 permit 65000:2 0:148 0:202 route-map calculator permit 35066 match community 2_148_202 set community 0:29896 ip community-list standard 2_25_182 permit 65000:2 0:25 0:182 ip community-list standard 2_26_175 permit 65000:2 0:26 0:175 ip community-list standard 2_35_130 permit 65000:2 0:35 0:130 ip community-list standard 2_50_91 permit 65000:2 0:50 0:91 ip community-list standard 2_65_70 permit 65000:2 0:65 0:70 route-map calculator permit 35067 match community 2_25_182 2_26_175 2_35_130 2_50_91 2_65_70 set community 0:4550 ip community-list standard 2_138_179 permit 65000:2 0:138 0:179 route-map calculator permit 35068 match community 2_138_179 set community 0:24702 ip community-list standard 2_21_234 permit 65000:2 0:21 0:234 ip community-list standard 2_26_189 permit 65000:2 0:26 0:189 ip community-list standard 2_27_182 permit 65000:2 0:27 0:182 ip community-list standard 2_39_126 permit 65000:2 0:39 0:126 ip community-list standard 2_42_117 permit 65000:2 0:42 0:117 ip community-list standard 2_54_91 permit 65000:2 0:54 0:91 ip community-list standard 2_63_78 permit 65000:2 0:63 0:78 route-map calculator permit 35069 match community 2_21_234 2_26_189 2_27_182 2_39_126 2_42_117 set community 0:4914 route-map calculator permit 35070 match community 2_54_91 2_63_78 set community 0:4914 ip community-list standard 2_18_207 permit 65000:2 0:18 0:207 ip community-list standard 2_23_162 permit 65000:2 0:23 0:162 ip community-list standard 2_27_138 permit 65000:2 0:27 0:138 ip community-list standard 2_46_81 permit 65000:2 0:46 0:81 ip community-list standard 2_54_69 permit 65000:2 0:54 0:69 route-map calculator permit 35071 match community 2_18_207 2_23_162 2_27_138 2_46_81 2_54_69 set community 0:3726 ip community-list standard 2_32_218 permit 65000:2 0:32 0:218 ip community-list standard 2_64_109 permit 65000:2 0:64 0:109 route-map calculator permit 35072 match community 2_32_218 2_64_109 set community 0:6976 ip community-list standard 2_49_134 permit 65000:2 0:49 0:134 ip community-list standard 2_67_98 permit 65000:2 0:67 0:98 route-map calculator permit 35073 match community 2_49_134 2_67_98 set community 0:6566 ip community-list standard 2_38_133 permit 65000:2 0:38 0:133 route-map calculator permit 35074 match community 2_38_133 set community 0:5054 ip community-list standard 2_181_186 permit 65000:2 0:181 0:186 route-map calculator permit 35075 match community 2_181_186 set community 0:33666 ip community-list standard 2_22_215 permit 65000:2 0:22 0:215 ip community-list standard 2_43_110 permit 65000:2 0:43 0:110 ip community-list standard 2_55_86 permit 65000:2 0:55 0:86 route-map calculator permit 35076 match community 2_22_215 2_43_110 2_55_86 set community 0:4730 ip community-list standard 2_53_248 permit 65000:2 0:53 0:248 ip community-list standard 2_62_212 permit 65000:2 0:62 0:212 ip community-list standard 2_106_124 permit 65000:2 0:106 0:124 route-map calculator permit 35077 match community 2_53_248 2_62_212 2_106_124 set community 0:13144 ip community-list standard 2_135_226 permit 65000:2 0:135 0:226 route-map calculator permit 35078 match community 2_135_226 set community 0:30510 ip community-list standard 2_129_169 permit 65000:2 0:129 0:169 route-map calculator permit 35079 match community 2_129_169 set community 0:21801 ip community-list standard 2_195_243 permit 65000:2 0:195 0:243 route-map calculator permit 35080 match community 2_195_243 set community 0:47385 ip community-list standard 2_139_203 permit 65000:2 0:139 0:203 route-map calculator permit 35081 match community 2_139_203 set community 0:28217 ip community-list standard 2_78_238 permit 65000:2 0:78 0:238 ip community-list standard 2_84_221 permit 65000:2 0:84 0:221 ip community-list standard 2_91_204 permit 65000:2 0:91 0:204 ip community-list standard 2_102_182 permit 65000:2 0:102 0:182 ip community-list standard 2_119_156 permit 65000:2 0:119 0:156 route-map calculator permit 35082 match community 2_78_238 2_84_221 2_91_204 2_102_182 2_119_156 set community 0:18564 ip community-list standard 2_25_146 permit 65000:2 0:25 0:146 ip community-list standard 2_50_73 permit 65000:2 0:50 0:73 route-map calculator permit 35083 match community 2_25_146 2_50_73 set community 0:3650 ip community-list standard 2_38_238 permit 65000:2 0:38 0:238 ip community-list standard 2_68_133 permit 65000:2 0:68 0:133 ip community-list standard 2_76_119 permit 65000:2 0:76 0:119 route-map calculator permit 35084 match community 2_38_238 2_68_133 2_76_119 set community 0:9044 ip community-list standard 2_47_194 permit 65000:2 0:47 0:194 ip community-list standard 2_94_97 permit 65000:2 0:94 0:97 route-map calculator permit 35085 match community 2_47_194 2_94_97 set community 0:9118 ip community-list standard 2_135_181 permit 65000:2 0:135 0:181 route-map calculator permit 35086 match community 2_135_181 set community 0:24435 ip community-list standard 2_212_215 permit 65000:2 0:212 0:215 route-map calculator permit 35087 match community 2_212_215 set community 0:45580 ip community-list standard 1_1_185 permit 65000:1 0:1 0:185 ip community-list standard 2_1_186 permit 65000:2 0:1 0:186 ip community-list standard 2_2_93 permit 65000:2 0:2 0:93 ip community-list standard 1_2_184 permit 65000:1 0:2 0:184 ip community-list standard 2_3_62 permit 65000:2 0:3 0:62 ip community-list standard 1_3_183 permit 65000:1 0:3 0:183 ip community-list standard 1_4_182 permit 65000:1 0:4 0:182 ip community-list standard 1_5_181 permit 65000:1 0:5 0:181 ip community-list standard 2_6_31 permit 65000:2 0:6 0:31 ip community-list standard 1_6_180 permit 65000:1 0:6 0:180 ip community-list standard 1_7_179 permit 65000:1 0:7 0:179 ip community-list standard 1_8_178 permit 65000:1 0:8 0:178 ip community-list standard 1_9_177 permit 65000:1 0:9 0:177 ip community-list standard 1_10_176 permit 65000:1 0:10 0:176 ip community-list standard 1_11_175 permit 65000:1 0:11 0:175 ip community-list standard 1_12_174 permit 65000:1 0:12 0:174 ip community-list standard 1_13_173 permit 65000:1 0:13 0:173 ip community-list standard 1_14_172 permit 65000:1 0:14 0:172 ip community-list standard 1_15_171 permit 65000:1 0:15 0:171 ip community-list standard 1_16_170 permit 65000:1 0:16 0:170 ip community-list standard 1_17_169 permit 65000:1 0:17 0:169 ip community-list standard 1_18_168 permit 65000:1 0:18 0:168 ip community-list standard 1_19_167 permit 65000:1 0:19 0:167 ip community-list standard 1_20_166 permit 65000:1 0:20 0:166 ip community-list standard 1_21_165 permit 65000:1 0:21 0:165 ip community-list standard 1_22_164 permit 65000:1 0:22 0:164 ip community-list standard 1_23_163 permit 65000:1 0:23 0:163 ip community-list standard 1_24_162 permit 65000:1 0:24 0:162 ip community-list standard 1_25_161 permit 65000:1 0:25 0:161 ip community-list standard 1_26_160 permit 65000:1 0:26 0:160 ip community-list standard 1_27_159 permit 65000:1 0:27 0:159 ip community-list standard 1_28_158 permit 65000:1 0:28 0:158 ip community-list standard 1_29_157 permit 65000:1 0:29 0:157 ip community-list standard 1_30_156 permit 65000:1 0:30 0:156 ip community-list standard 1_31_155 permit 65000:1 0:31 0:155 ip community-list standard 1_32_154 permit 65000:1 0:32 0:154 ip community-list standard 1_33_153 permit 65000:1 0:33 0:153 ip community-list standard 1_34_152 permit 65000:1 0:34 0:152 ip community-list standard 1_35_151 permit 65000:1 0:35 0:151 ip community-list standard 1_36_150 permit 65000:1 0:36 0:150 ip community-list standard 1_37_149 permit 65000:1 0:37 0:149 ip community-list standard 1_38_148 permit 65000:1 0:38 0:148 ip community-list standard 1_39_147 permit 65000:1 0:39 0:147 ip community-list standard 1_40_146 permit 65000:1 0:40 0:146 ip community-list standard 1_41_145 permit 65000:1 0:41 0:145 ip community-list standard 1_42_144 permit 65000:1 0:42 0:144 ip community-list standard 1_43_143 permit 65000:1 0:43 0:143 ip community-list standard 1_44_142 permit 65000:1 0:44 0:142 ip community-list standard 1_45_141 permit 65000:1 0:45 0:141 ip community-list standard 1_46_140 permit 65000:1 0:46 0:140 ip community-list standard 1_47_139 permit 65000:1 0:47 0:139 ip community-list standard 1_48_138 permit 65000:1 0:48 0:138 ip community-list standard 1_49_137 permit 65000:1 0:49 0:137 ip community-list standard 1_50_136 permit 65000:1 0:50 0:136 ip community-list standard 1_51_135 permit 65000:1 0:51 0:135 ip community-list standard 1_52_134 permit 65000:1 0:52 0:134 ip community-list standard 1_53_133 permit 65000:1 0:53 0:133 ip community-list standard 1_54_132 permit 65000:1 0:54 0:132 ip community-list standard 1_55_131 permit 65000:1 0:55 0:131 ip community-list standard 1_56_130 permit 65000:1 0:56 0:130 ip community-list standard 1_57_129 permit 65000:1 0:57 0:129 ip community-list standard 1_58_128 permit 65000:1 0:58 0:128 ip community-list standard 1_59_127 permit 65000:1 0:59 0:127 ip community-list standard 1_60_126 permit 65000:1 0:60 0:126 ip community-list standard 1_61_125 permit 65000:1 0:61 0:125 ip community-list standard 1_62_124 permit 65000:1 0:62 0:124 ip community-list standard 1_63_123 permit 65000:1 0:63 0:123 ip community-list standard 1_64_122 permit 65000:1 0:64 0:122 ip community-list standard 1_65_121 permit 65000:1 0:65 0:121 ip community-list standard 1_66_120 permit 65000:1 0:66 0:120 ip community-list standard 1_67_119 permit 65000:1 0:67 0:119 ip community-list standard 1_68_118 permit 65000:1 0:68 0:118 ip community-list standard 1_69_117 permit 65000:1 0:69 0:117 ip community-list standard 1_70_116 permit 65000:1 0:70 0:116 ip community-list standard 1_71_115 permit 65000:1 0:71 0:115 ip community-list standard 1_72_114 permit 65000:1 0:72 0:114 ip community-list standard 1_73_113 permit 65000:1 0:73 0:113 ip community-list standard 1_74_112 permit 65000:1 0:74 0:112 ip community-list standard 1_75_111 permit 65000:1 0:75 0:111 ip community-list standard 1_76_110 permit 65000:1 0:76 0:110 ip community-list standard 1_77_109 permit 65000:1 0:77 0:109 ip community-list standard 1_78_108 permit 65000:1 0:78 0:108 ip community-list standard 1_79_107 permit 65000:1 0:79 0:107 ip community-list standard 1_80_106 permit 65000:1 0:80 0:106 ip community-list standard 1_81_105 permit 65000:1 0:81 0:105 ip community-list standard 1_82_104 permit 65000:1 0:82 0:104 ip community-list standard 1_83_103 permit 65000:1 0:83 0:103 ip community-list standard 1_84_102 permit 65000:1 0:84 0:102 ip community-list standard 1_85_101 permit 65000:1 0:85 0:101 ip community-list standard 1_86_100 permit 65000:1 0:86 0:100 ip community-list standard 1_87_99 permit 65000:1 0:87 0:99 ip community-list standard 1_88_98 permit 65000:1 0:88 0:98 ip community-list standard 1_89_97 permit 65000:1 0:89 0:97 ip community-list standard 1_90_96 permit 65000:1 0:90 0:96 ip community-list standard 1_91_95 permit 65000:1 0:91 0:95 ip community-list standard 1_92_94 permit 65000:1 0:92 0:94 ip community-list standard 1_93_93 permit 65000:1 0:93 0:93 ip community-list expanded c186 permit 1 ^65000:4_0:186_0:1$ ip community-list expanded c186 permit 2 ^65000:3_0:187_0:1$ ip community-list expanded c186 permit 3 ^65000:3_0:188_0:2$ ip community-list expanded c186 permit 4 ^65000:3_0:189_0:3$ ip community-list expanded c186 permit 5 ^65000:3_0:190_0:4$ ip community-list expanded c186 permit 6 ^65000:3_0:191_0:5$ ip community-list expanded c186 permit 7 ^65000:3_0:192_0:6$ ip community-list expanded c186 permit 8 ^65000:3_0:193_0:7$ ip community-list expanded c186 permit 9 ^65000:3_0:194_0:8$ ip community-list expanded c186 permit 10 ^65000:3_0:195_0:9$ ip community-list expanded c186 permit 11 ^65000:3_0:196_0:10$ ip community-list expanded c186 permit 12 ^65000:3_0:197_0:11$ ip community-list expanded c186 permit 13 ^65000:3_0:198_0:12$ ip community-list expanded c186 permit 14 ^65000:3_0:199_0:13$ ip community-list expanded c186 permit 15 ^65000:3_0:200_0:14$ ip community-list expanded c186 permit 16 ^65000:3_0:201_0:15$ ip community-list expanded c186 permit 17 ^65000:3_0:202_0:16$ ip community-list expanded c186 permit 18 ^65000:3_0:203_0:17$ ip community-list expanded c186 permit 19 ^65000:3_0:204_0:18$ ip community-list expanded c186 permit 20 ^65000:3_0:205_0:19$ ip community-list expanded c186 permit 21 ^65000:3_0:206_0:20$ ip community-list expanded c186 permit 22 ^65000:3_0:207_0:21$ ip community-list expanded c186 permit 23 ^65000:3_0:208_0:22$ ip community-list expanded c186 permit 24 ^65000:3_0:209_0:23$ ip community-list expanded c186 permit 25 ^65000:3_0:210_0:24$ ip community-list expanded c186 permit 26 ^65000:3_0:211_0:25$ ip community-list expanded c186 permit 27 ^65000:3_0:212_0:26$ ip community-list expanded c186 permit 28 ^65000:3_0:213_0:27$ ip community-list expanded c186 permit 29 ^65000:3_0:214_0:28$ ip community-list expanded c186 permit 30 ^65000:3_0:215_0:29$ ip community-list expanded c186 permit 31 ^65000:3_0:216_0:30$ ip community-list expanded c186 permit 32 ^65000:3_0:217_0:31$ ip community-list expanded c186 permit 33 ^65000:3_0:218_0:32$ ip community-list expanded c186 permit 34 ^65000:3_0:219_0:33$ ip community-list expanded c186 permit 35 ^65000:3_0:220_0:34$ ip community-list expanded c186 permit 36 ^65000:3_0:221_0:35$ ip community-list expanded c186 permit 37 ^65000:3_0:222_0:36$ ip community-list expanded c186 permit 38 ^65000:3_0:223_0:37$ ip community-list expanded c186 permit 39 ^65000:3_0:224_0:38$ ip community-list expanded c186 permit 40 ^65000:3_0:225_0:39$ ip community-list expanded c186 permit 41 ^65000:3_0:226_0:40$ ip community-list expanded c186 permit 42 ^65000:3_0:227_0:41$ ip community-list expanded c186 permit 43 ^65000:3_0:228_0:42$ ip community-list expanded c186 permit 44 ^65000:3_0:229_0:43$ ip community-list expanded c186 permit 45 ^65000:3_0:230_0:44$ ip community-list expanded c186 permit 46 ^65000:3_0:231_0:45$ ip community-list expanded c186 permit 47 ^65000:3_0:232_0:46$ ip community-list expanded c186 permit 48 ^65000:3_0:233_0:47$ ip community-list expanded c186 permit 49 ^65000:3_0:234_0:48$ ip community-list expanded c186 permit 50 ^65000:3_0:235_0:49$ ip community-list expanded c186 permit 51 ^65000:3_0:236_0:50$ ip community-list expanded c186 permit 52 ^65000:3_0:237_0:51$ ip community-list expanded c186 permit 53 ^65000:3_0:238_0:52$ ip community-list expanded c186 permit 54 ^65000:3_0:239_0:53$ ip community-list expanded c186 permit 55 ^65000:3_0:240_0:54$ ip community-list expanded c186 permit 56 ^65000:3_0:241_0:55$ ip community-list expanded c186 permit 57 ^65000:3_0:242_0:56$ ip community-list expanded c186 permit 58 ^65000:3_0:243_0:57$ ip community-list expanded c186 permit 59 ^65000:3_0:244_0:58$ ip community-list expanded c186 permit 60 ^65000:3_0:245_0:59$ ip community-list expanded c186 permit 61 ^65000:3_0:246_0:60$ ip community-list expanded c186 permit 62 ^65000:3_0:247_0:61$ ip community-list expanded c186 permit 63 ^65000:3_0:248_0:62$ ip community-list expanded c186 permit 64 ^65000:3_0:249_0:63$ ip community-list expanded c186 permit 65 ^65000:3_0:250_0:64$ ip community-list expanded c186 permit 66 ^65000:3_0:251_0:65$ ip community-list expanded c186 permit 67 ^65000:3_0:252_0:66$ ip community-list expanded c186 permit 68 ^65000:3_0:253_0:67$ ip community-list expanded c186 permit 69 ^65000:3_0:254_0:68$ ip community-list expanded c186 permit 70 ^65000:3_0:255_0:69$ ip community-list expanded c186 permit 71 ^65000:3_0:256_0:70$ route-map calculator permit 35088 match community 1_1_185 2_1_186 2_2_93 1_2_184 2_3_62 set community 0:186 route-map calculator permit 35089 match community 1_3_183 1_4_182 1_5_181 2_6_31 1_6_180 set community 0:186 route-map calculator permit 35090 match community 1_7_179 1_8_178 1_9_177 1_10_176 1_11_175 set community 0:186 route-map calculator permit 35091 match community 1_12_174 1_13_173 1_14_172 1_15_171 1_16_170 set community 0:186 route-map calculator permit 35092 match community 1_17_169 1_18_168 1_19_167 1_20_166 1_21_165 set community 0:186 route-map calculator permit 35093 match community 1_22_164 1_23_163 1_24_162 1_25_161 1_26_160 set community 0:186 route-map calculator permit 35094 match community 1_27_159 1_28_158 1_29_157 1_30_156 1_31_155 set community 0:186 route-map calculator permit 35095 match community 1_32_154 1_33_153 1_34_152 1_35_151 1_36_150 set community 0:186 route-map calculator permit 35096 match community 1_37_149 1_38_148 1_39_147 1_40_146 1_41_145 set community 0:186 route-map calculator permit 35097 match community 1_42_144 1_43_143 1_44_142 1_45_141 1_46_140 set community 0:186 route-map calculator permit 35098 match community 1_47_139 1_48_138 1_49_137 1_50_136 1_51_135 set community 0:186 route-map calculator permit 35099 match community 1_52_134 1_53_133 1_54_132 1_55_131 1_56_130 set community 0:186 route-map calculator permit 35100 match community 1_57_129 1_58_128 1_59_127 1_60_126 1_61_125 set community 0:186 route-map calculator permit 35101 match community 1_62_124 1_63_123 1_64_122 1_65_121 1_66_120 set community 0:186 route-map calculator permit 35102 match community 1_67_119 1_68_118 1_69_117 1_70_116 1_71_115 set community 0:186 route-map calculator permit 35103 match community 1_72_114 1_73_113 1_74_112 1_75_111 1_76_110 set community 0:186 route-map calculator permit 35104 match community 1_77_109 1_78_108 1_79_107 1_80_106 1_81_105 set community 0:186 route-map calculator permit 35105 match community 1_82_104 1_83_103 1_84_102 1_85_101 1_86_100 set community 0:186 route-map calculator permit 35106 match community 1_87_99 1_88_98 1_89_97 1_90_96 1_91_95 set community 0:186 route-map calculator permit 35107 match community 1_92_94 1_93_93 c4_186_1 c3_187_1 c3_188_2 set community 0:186 route-map calculator permit 35108 match community c3_189_3 c3_190_4 c3_191_5 c3_192_6 c3_193_7 set community 0:186 route-map calculator permit 35109 match community c3_194_8 c3_195_9 c3_196_10 c3_197_11 c3_198_12 set community 0:186 route-map calculator permit 35110 match community c3_199_13 c3_200_14 c3_201_15 c3_202_16 c3_203_17 set community 0:186 route-map calculator permit 35111 match community c3_204_18 c3_205_19 c3_206_20 c3_207_21 c3_208_22 set community 0:186 route-map calculator permit 35112 match community c3_209_23 c3_210_24 c3_211_25 c3_212_26 c3_213_27 set community 0:186 route-map calculator permit 35113 match community c3_214_28 c3_215_29 c3_216_30 c3_217_31 c3_218_32 set community 0:186 route-map calculator permit 35114 match community c3_219_33 c3_220_34 c3_221_35 c3_222_36 c3_223_37 set community 0:186 route-map calculator permit 35115 match community c3_224_38 c3_225_39 c3_226_40 c3_227_41 c3_228_42 set community 0:186 route-map calculator permit 35116 match community c3_229_43 c3_230_44 c3_231_45 c3_232_46 c3_233_47 set community 0:186 route-map calculator permit 35117 match community c3_234_48 c3_235_49 c3_236_50 c3_237_51 c3_238_52 set community 0:186 route-map calculator permit 35118 match community c3_239_53 c3_240_54 c3_241_55 c3_242_56 c3_243_57 set community 0:186 route-map calculator permit 35119 match community c3_244_58 c3_245_59 c3_246_60 c3_247_61 c3_248_62 set community 0:186 route-map calculator permit 35120 match community c3_249_63 c3_250_64 c3_251_65 c3_252_66 c3_253_67 set community 0:186 route-map calculator permit 35121 match community c3_254_68 c3_255_69 c3_256_70 set community 0:186 ip community-list standard 2_103_141 permit 65000:2 0:103 0:141 route-map calculator permit 35122 match community 2_103_141 set community 0:14523 ip community-list standard 2_96_244 permit 65000:2 0:96 0:244 ip community-list standard 2_122_192 permit 65000:2 0:122 0:192 ip community-list standard 2_128_183 permit 65000:2 0:128 0:183 route-map calculator permit 35123 match community 2_96_244 2_122_192 2_128_183 set community 0:23424 ip community-list standard 2_159_211 permit 65000:2 0:159 0:211 route-map calculator permit 35124 match community 2_159_211 set community 0:33549 ip community-list standard 2_64_170 permit 65000:2 0:64 0:170 ip community-list standard 2_68_160 permit 65000:2 0:68 0:160 ip community-list standard 2_80_136 permit 65000:2 0:80 0:136 ip community-list standard 2_85_128 permit 65000:2 0:85 0:128 route-map calculator permit 35125 match community 2_64_170 2_68_160 2_80_136 2_85_128 set community 0:10880 ip community-list standard 2_94_187 permit 65000:2 0:94 0:187 route-map calculator permit 35126 match community 2_94_187 set community 0:17578 ip community-list standard 1_1_221 permit 65000:1 0:1 0:221 ip community-list standard 2_1_222 permit 65000:2 0:1 0:222 ip community-list standard 2_2_111 permit 65000:2 0:2 0:111 ip community-list standard 1_2_220 permit 65000:1 0:2 0:220 ip community-list standard 2_3_74 permit 65000:2 0:3 0:74 ip community-list standard 1_3_219 permit 65000:1 0:3 0:219 ip community-list standard 1_4_218 permit 65000:1 0:4 0:218 ip community-list standard 1_5_217 permit 65000:1 0:5 0:217 ip community-list standard 2_6_37 permit 65000:2 0:6 0:37 ip community-list standard 1_6_216 permit 65000:1 0:6 0:216 ip community-list standard 1_7_215 permit 65000:1 0:7 0:215 ip community-list standard 1_8_214 permit 65000:1 0:8 0:214 ip community-list standard 1_9_213 permit 65000:1 0:9 0:213 ip community-list standard 1_10_212 permit 65000:1 0:10 0:212 ip community-list standard 1_11_211 permit 65000:1 0:11 0:211 ip community-list standard 1_12_210 permit 65000:1 0:12 0:210 ip community-list standard 1_13_209 permit 65000:1 0:13 0:209 ip community-list standard 1_14_208 permit 65000:1 0:14 0:208 ip community-list standard 1_15_207 permit 65000:1 0:15 0:207 ip community-list standard 1_16_206 permit 65000:1 0:16 0:206 ip community-list standard 1_17_205 permit 65000:1 0:17 0:205 ip community-list standard 1_18_204 permit 65000:1 0:18 0:204 ip community-list standard 1_19_203 permit 65000:1 0:19 0:203 ip community-list standard 1_20_202 permit 65000:1 0:20 0:202 ip community-list standard 1_21_201 permit 65000:1 0:21 0:201 ip community-list standard 1_22_200 permit 65000:1 0:22 0:200 ip community-list standard 1_23_199 permit 65000:1 0:23 0:199 ip community-list standard 1_24_198 permit 65000:1 0:24 0:198 ip community-list standard 1_25_197 permit 65000:1 0:25 0:197 ip community-list standard 1_26_196 permit 65000:1 0:26 0:196 ip community-list standard 1_27_195 permit 65000:1 0:27 0:195 ip community-list standard 1_28_194 permit 65000:1 0:28 0:194 ip community-list standard 1_29_193 permit 65000:1 0:29 0:193 ip community-list standard 1_30_192 permit 65000:1 0:30 0:192 ip community-list standard 1_31_191 permit 65000:1 0:31 0:191 ip community-list standard 1_32_190 permit 65000:1 0:32 0:190 ip community-list standard 1_33_189 permit 65000:1 0:33 0:189 ip community-list standard 1_34_188 permit 65000:1 0:34 0:188 ip community-list standard 1_35_187 permit 65000:1 0:35 0:187 ip community-list standard 1_36_186 permit 65000:1 0:36 0:186 ip community-list standard 1_37_185 permit 65000:1 0:37 0:185 ip community-list standard 1_38_184 permit 65000:1 0:38 0:184 ip community-list standard 1_39_183 permit 65000:1 0:39 0:183 ip community-list standard 1_40_182 permit 65000:1 0:40 0:182 ip community-list standard 1_41_181 permit 65000:1 0:41 0:181 ip community-list standard 1_42_180 permit 65000:1 0:42 0:180 ip community-list standard 1_43_179 permit 65000:1 0:43 0:179 ip community-list standard 1_44_178 permit 65000:1 0:44 0:178 ip community-list standard 1_45_177 permit 65000:1 0:45 0:177 ip community-list standard 1_46_176 permit 65000:1 0:46 0:176 ip community-list standard 1_47_175 permit 65000:1 0:47 0:175 ip community-list standard 1_48_174 permit 65000:1 0:48 0:174 ip community-list standard 1_49_173 permit 65000:1 0:49 0:173 ip community-list standard 1_50_172 permit 65000:1 0:50 0:172 ip community-list standard 1_51_171 permit 65000:1 0:51 0:171 ip community-list standard 1_52_170 permit 65000:1 0:52 0:170 ip community-list standard 1_53_169 permit 65000:1 0:53 0:169 ip community-list standard 1_54_168 permit 65000:1 0:54 0:168 ip community-list standard 1_55_167 permit 65000:1 0:55 0:167 ip community-list standard 1_56_166 permit 65000:1 0:56 0:166 ip community-list standard 1_57_165 permit 65000:1 0:57 0:165 ip community-list standard 1_58_164 permit 65000:1 0:58 0:164 ip community-list standard 1_59_163 permit 65000:1 0:59 0:163 ip community-list standard 1_60_162 permit 65000:1 0:60 0:162 ip community-list standard 1_61_161 permit 65000:1 0:61 0:161 ip community-list standard 1_62_160 permit 65000:1 0:62 0:160 ip community-list standard 1_63_159 permit 65000:1 0:63 0:159 ip community-list standard 1_64_158 permit 65000:1 0:64 0:158 ip community-list standard 1_65_157 permit 65000:1 0:65 0:157 ip community-list standard 1_66_156 permit 65000:1 0:66 0:156 ip community-list standard 1_67_155 permit 65000:1 0:67 0:155 ip community-list standard 1_68_154 permit 65000:1 0:68 0:154 ip community-list standard 1_69_153 permit 65000:1 0:69 0:153 ip community-list standard 1_70_152 permit 65000:1 0:70 0:152 ip community-list standard 1_71_151 permit 65000:1 0:71 0:151 ip community-list standard 1_72_150 permit 65000:1 0:72 0:150 ip community-list standard 1_73_149 permit 65000:1 0:73 0:149 ip community-list standard 1_74_148 permit 65000:1 0:74 0:148 ip community-list standard 1_75_147 permit 65000:1 0:75 0:147 ip community-list standard 1_76_146 permit 65000:1 0:76 0:146 ip community-list standard 1_77_145 permit 65000:1 0:77 0:145 ip community-list standard 1_78_144 permit 65000:1 0:78 0:144 ip community-list standard 1_79_143 permit 65000:1 0:79 0:143 ip community-list standard 1_80_142 permit 65000:1 0:80 0:142 ip community-list standard 1_81_141 permit 65000:1 0:81 0:141 ip community-list standard 1_82_140 permit 65000:1 0:82 0:140 ip community-list standard 1_83_139 permit 65000:1 0:83 0:139 ip community-list standard 1_84_138 permit 65000:1 0:84 0:138 ip community-list standard 1_85_137 permit 65000:1 0:85 0:137 ip community-list standard 1_86_136 permit 65000:1 0:86 0:136 ip community-list standard 1_87_135 permit 65000:1 0:87 0:135 ip community-list standard 1_88_134 permit 65000:1 0:88 0:134 ip community-list standard 1_89_133 permit 65000:1 0:89 0:133 ip community-list standard 1_90_132 permit 65000:1 0:90 0:132 ip community-list standard 1_91_131 permit 65000:1 0:91 0:131 ip community-list standard 1_92_130 permit 65000:1 0:92 0:130 ip community-list standard 1_93_129 permit 65000:1 0:93 0:129 ip community-list standard 1_94_128 permit 65000:1 0:94 0:128 ip community-list standard 1_95_127 permit 65000:1 0:95 0:127 ip community-list standard 1_96_126 permit 65000:1 0:96 0:126 ip community-list standard 1_97_125 permit 65000:1 0:97 0:125 ip community-list standard 1_98_124 permit 65000:1 0:98 0:124 ip community-list standard 1_99_123 permit 65000:1 0:99 0:123 ip community-list standard 1_100_122 permit 65000:1 0:100 0:122 ip community-list standard 1_101_121 permit 65000:1 0:101 0:121 ip community-list standard 1_102_120 permit 65000:1 0:102 0:120 ip community-list standard 1_103_119 permit 65000:1 0:103 0:119 ip community-list standard 1_104_118 permit 65000:1 0:104 0:118 ip community-list standard 1_105_117 permit 65000:1 0:105 0:117 ip community-list standard 1_106_116 permit 65000:1 0:106 0:116 ip community-list standard 1_107_115 permit 65000:1 0:107 0:115 ip community-list standard 1_108_114 permit 65000:1 0:108 0:114 ip community-list standard 1_109_113 permit 65000:1 0:109 0:113 ip community-list standard 1_110_112 permit 65000:1 0:110 0:112 ip community-list standard 1_111_111 permit 65000:1 0:111 0:111 ip community-list expanded c222 permit 1 ^65000:4_0:222_0:1$ ip community-list expanded c222 permit 2 ^65000:3_0:223_0:1$ ip community-list expanded c222 permit 3 ^65000:3_0:224_0:2$ ip community-list expanded c222 permit 4 ^65000:3_0:225_0:3$ ip community-list expanded c222 permit 5 ^65000:3_0:226_0:4$ ip community-list expanded c222 permit 6 ^65000:3_0:227_0:5$ ip community-list expanded c222 permit 7 ^65000:3_0:228_0:6$ ip community-list expanded c222 permit 8 ^65000:3_0:229_0:7$ ip community-list expanded c222 permit 9 ^65000:3_0:230_0:8$ ip community-list expanded c222 permit 10 ^65000:3_0:231_0:9$ ip community-list expanded c222 permit 11 ^65000:3_0:232_0:10$ ip community-list expanded c222 permit 12 ^65000:3_0:233_0:11$ ip community-list expanded c222 permit 13 ^65000:3_0:234_0:12$ ip community-list expanded c222 permit 14 ^65000:3_0:235_0:13$ ip community-list expanded c222 permit 15 ^65000:3_0:236_0:14$ ip community-list expanded c222 permit 16 ^65000:3_0:237_0:15$ ip community-list expanded c222 permit 17 ^65000:3_0:238_0:16$ ip community-list expanded c222 permit 18 ^65000:3_0:239_0:17$ ip community-list expanded c222 permit 19 ^65000:3_0:240_0:18$ ip community-list expanded c222 permit 20 ^65000:3_0:241_0:19$ ip community-list expanded c222 permit 21 ^65000:3_0:242_0:20$ ip community-list expanded c222 permit 22 ^65000:3_0:243_0:21$ ip community-list expanded c222 permit 23 ^65000:3_0:244_0:22$ ip community-list expanded c222 permit 24 ^65000:3_0:245_0:23$ ip community-list expanded c222 permit 25 ^65000:3_0:246_0:24$ ip community-list expanded c222 permit 26 ^65000:3_0:247_0:25$ ip community-list expanded c222 permit 27 ^65000:3_0:248_0:26$ ip community-list expanded c222 permit 28 ^65000:3_0:249_0:27$ ip community-list expanded c222 permit 29 ^65000:3_0:250_0:28$ ip community-list expanded c222 permit 30 ^65000:3_0:251_0:29$ ip community-list expanded c222 permit 31 ^65000:3_0:252_0:30$ ip community-list expanded c222 permit 32 ^65000:3_0:253_0:31$ ip community-list expanded c222 permit 33 ^65000:3_0:254_0:32$ ip community-list expanded c222 permit 34 ^65000:3_0:255_0:33$ ip community-list expanded c222 permit 35 ^65000:3_0:256_0:34$ route-map calculator permit 35127 match community 1_1_221 2_1_222 2_2_111 1_2_220 2_3_74 set community 0:222 route-map calculator permit 35128 match community 1_3_219 1_4_218 1_5_217 2_6_37 1_6_216 set community 0:222 route-map calculator permit 35129 match community 1_7_215 1_8_214 1_9_213 1_10_212 1_11_211 set community 0:222 route-map calculator permit 35130 match community 1_12_210 1_13_209 1_14_208 1_15_207 1_16_206 set community 0:222 route-map calculator permit 35131 match community 1_17_205 1_18_204 1_19_203 1_20_202 1_21_201 set community 0:222 route-map calculator permit 35132 match community 1_22_200 1_23_199 1_24_198 1_25_197 1_26_196 set community 0:222 route-map calculator permit 35133 match community 1_27_195 1_28_194 1_29_193 1_30_192 1_31_191 set community 0:222 route-map calculator permit 35134 match community 1_32_190 1_33_189 1_34_188 1_35_187 1_36_186 set community 0:222 route-map calculator permit 35135 match community 1_37_185 1_38_184 1_39_183 1_40_182 1_41_181 set community 0:222 route-map calculator permit 35136 match community 1_42_180 1_43_179 1_44_178 1_45_177 1_46_176 set community 0:222 route-map calculator permit 35137 match community 1_47_175 1_48_174 1_49_173 1_50_172 1_51_171 set community 0:222 route-map calculator permit 35138 match community 1_52_170 1_53_169 1_54_168 1_55_167 1_56_166 set community 0:222 route-map calculator permit 35139 match community 1_57_165 1_58_164 1_59_163 1_60_162 1_61_161 set community 0:222 route-map calculator permit 35140 match community 1_62_160 1_63_159 1_64_158 1_65_157 1_66_156 set community 0:222 route-map calculator permit 35141 match community 1_67_155 1_68_154 1_69_153 1_70_152 1_71_151 set community 0:222 route-map calculator permit 35142 match community 1_72_150 1_73_149 1_74_148 1_75_147 1_76_146 set community 0:222 route-map calculator permit 35143 match community 1_77_145 1_78_144 1_79_143 1_80_142 1_81_141 set community 0:222 route-map calculator permit 35144 match community 1_82_140 1_83_139 1_84_138 1_85_137 1_86_136 set community 0:222 route-map calculator permit 35145 match community 1_87_135 1_88_134 1_89_133 1_90_132 1_91_131 set community 0:222 route-map calculator permit 35146 match community 1_92_130 1_93_129 1_94_128 1_95_127 1_96_126 set community 0:222 route-map calculator permit 35147 match community 1_97_125 1_98_124 1_99_123 1_100_122 1_101_121 set community 0:222 route-map calculator permit 35148 match community 1_102_120 1_103_119 1_104_118 1_105_117 1_106_116 set community 0:222 route-map calculator permit 35149 match community 1_107_115 1_108_114 1_109_113 1_110_112 1_111_111 set community 0:222 route-map calculator permit 35150 match community c4_222_1 c3_223_1 c3_224_2 c3_225_3 c3_226_4 set community 0:222 route-map calculator permit 35151 match community c3_227_5 c3_228_6 c3_229_7 c3_230_8 c3_231_9 set community 0:222 route-map calculator permit 35152 match community c3_232_10 c3_233_11 c3_234_12 c3_235_13 c3_236_14 set community 0:222 route-map calculator permit 35153 match community c3_237_15 c3_238_16 c3_239_17 c3_240_18 c3_241_19 set community 0:222 route-map calculator permit 35154 match community c3_242_20 c3_243_21 c3_244_22 c3_245_23 c3_246_24 set community 0:222 route-map calculator permit 35155 match community c3_247_25 c3_248_26 c3_249_27 c3_250_28 c3_251_29 set community 0:222 route-map calculator permit 35156 match community c3_252_30 c3_253_31 c3_254_32 c3_255_33 c3_256_34 set community 0:222 ip community-list standard 2_89_194 permit 65000:2 0:89 0:194 ip community-list standard 2_97_178 permit 65000:2 0:97 0:178 route-map calculator permit 35157 match community 2_89_194 2_97_178 set community 0:17266 ip community-list standard 2_74_203 permit 65000:2 0:74 0:203 route-map calculator permit 35158 match community 2_74_203 set community 0:15022 ip community-list standard 2_230_233 permit 65000:2 0:230 0:233 route-map calculator permit 35159 match community 2_230_233 set community 0:53590 ip community-list standard 2_67_222 permit 65000:2 0:67 0:222 ip community-list standard 2_74_201 permit 65000:2 0:74 0:201 ip community-list standard 2_111_134 permit 65000:2 0:111 0:134 route-map calculator permit 35160 match community 2_67_222 2_74_201 2_111_134 set community 0:14874 ip community-list standard 2_191_247 permit 65000:2 0:191 0:247 route-map calculator permit 35161 match community 2_191_247 set community 0:47177 ip community-list standard 2_81_227 permit 65000:2 0:81 0:227 route-map calculator permit 35162 match community 2_81_227 set community 0:18387 ip community-list standard 2_115_256 permit 65000:2 0:115 0:256 ip community-list standard 2_128_230 permit 65000:2 0:128 0:230 ip community-list standard 2_160_184 permit 65000:2 0:160 0:184 route-map calculator permit 35163 match community 2_115_256 2_128_230 2_160_184 set community 0:29440 ip community-list standard 2_23_86 permit 65000:2 0:23 0:86 ip community-list standard 2_43_46 permit 65000:2 0:43 0:46 route-map calculator permit 35164 match community 2_23_86 2_43_46 set community 0:1978 ip community-list standard 2_110_226 permit 65000:2 0:110 0:226 ip community-list standard 2_113_220 permit 65000:2 0:113 0:220 route-map calculator permit 35165 match community 2_110_226 2_113_220 set community 0:24860 ip community-list standard 2_73_220 permit 65000:2 0:73 0:220 ip community-list standard 2_110_146 permit 65000:2 0:110 0:146 route-map calculator permit 35166 match community 2_73_220 2_110_146 set community 0:16060 ip community-list standard 2_71_149 permit 65000:2 0:71 0:149 route-map calculator permit 35167 match community 2_71_149 set community 0:10579 ip community-list standard 2_43_197 permit 65000:2 0:43 0:197 route-map calculator permit 35168 match community 2_43_197 set community 0:8471 ip community-list standard 2_71_160 permit 65000:2 0:71 0:160 ip community-list standard 2_80_142 permit 65000:2 0:80 0:142 route-map calculator permit 35169 match community 2_71_160 2_80_142 set community 0:11360 ip community-list standard 2_35_167 permit 65000:2 0:35 0:167 route-map calculator permit 35170 match community 2_35_167 set community 0:5845 ip community-list standard 2_51_193 permit 65000:2 0:51 0:193 route-map calculator permit 35171 match community 2_51_193 set community 0:9843 ip community-list standard 2_151_169 permit 65000:2 0:151 0:169 route-map calculator permit 35172 match community 2_151_169 set community 0:25519 ip community-list standard 2_36_233 permit 65000:2 0:36 0:233 route-map calculator permit 35173 match community 2_36_233 set community 0:8388 ip community-list standard 2_47_253 permit 65000:2 0:47 0:253 route-map calculator permit 35174 match community 2_47_253 set community 0:11891 ip community-list standard 2_138_167 permit 65000:2 0:138 0:167 route-map calculator permit 35175 match community 2_138_167 set community 0:23046 ip community-list standard 2_117_141 permit 65000:2 0:117 0:141 route-map calculator permit 35176 match community 2_117_141 set community 0:16497 ip community-list standard 2_226_253 permit 65000:2 0:226 0:253 route-map calculator permit 35177 match community 2_226_253 set community 0:57178 ip community-list standard 2_5_201 permit 65000:2 0:5 0:201 ip community-list standard 2_15_67 permit 65000:2 0:15 0:67 route-map calculator permit 35178 match community 2_5_201 2_15_67 set community 0:1005 ip community-list standard 2_54_254 permit 65000:2 0:54 0:254 ip community-list standard 2_108_127 permit 65000:2 0:108 0:127 route-map calculator permit 35179 match community 2_54_254 2_108_127 set community 0:13716 ip community-list standard 2_86_143 permit 65000:2 0:86 0:143 route-map calculator permit 35180 match community 2_86_143 set community 0:12298 ip community-list standard 2_89_213 permit 65000:2 0:89 0:213 route-map calculator permit 35181 match community 2_89_213 set community 0:18957 ip community-list standard 2_91_215 permit 65000:2 0:91 0:215 route-map calculator permit 35182 match community 2_91_215 set community 0:19565 ip community-list standard 2_165_181 permit 65000:2 0:165 0:181 route-map calculator permit 35183 match community 2_165_181 set community 0:29865 ip community-list standard 2_4_139 permit 65000:2 0:4 0:139 route-map calculator permit 35184 match community 2_4_139 set community 0:556 ip community-list standard 2_205_236 permit 65000:2 0:205 0:236 route-map calculator permit 35185 match community 2_205_236 set community 0:48380 ip community-list standard 2_10_243 permit 65000:2 0:10 0:243 ip community-list standard 2_15_162 permit 65000:2 0:15 0:162 ip community-list standard 2_18_135 permit 65000:2 0:18 0:135 ip community-list standard 2_27_90 permit 65000:2 0:27 0:90 ip community-list standard 2_30_81 permit 65000:2 0:30 0:81 ip community-list standard 2_45_54 permit 65000:2 0:45 0:54 route-map calculator permit 35186 match community 2_10_243 2_15_162 2_18_135 2_27_90 2_30_81 set community 0:2430 route-map calculator permit 35187 match community 2_45_54 set community 0:2430 ip community-list standard 2_148_209 permit 65000:2 0:148 0:209 route-map calculator permit 35188 match community 2_148_209 set community 0:30932 ip community-list standard 2_182_226 permit 65000:2 0:182 0:226 route-map calculator permit 35189 match community 2_182_226 set community 0:41132 ip community-list standard 2_24_235 permit 65000:2 0:24 0:235 ip community-list standard 2_30_188 permit 65000:2 0:30 0:188 ip community-list standard 2_40_141 permit 65000:2 0:40 0:141 ip community-list standard 2_47_120 permit 65000:2 0:47 0:120 ip community-list standard 2_60_94 permit 65000:2 0:60 0:94 route-map calculator permit 35190 match community 2_24_235 2_30_188 2_40_141 2_47_120 2_60_94 set community 0:5640 ip community-list standard 2_137_187 permit 65000:2 0:137 0:187 route-map calculator permit 35191 match community 2_137_187 set community 0:25619 ip community-list standard 2_177_226 permit 65000:2 0:177 0:226 route-map calculator permit 35192 match community 2_177_226 set community 0:40002 ip community-list standard 2_132_163 permit 65000:2 0:132 0:163 route-map calculator permit 35193 match community 2_132_163 set community 0:21516 ip community-list standard 2_87_89 permit 65000:2 0:87 0:89 route-map calculator permit 35194 match community 2_87_89 set community 0:7743 ip community-list standard 2_18_239 permit 65000:2 0:18 0:239 route-map calculator permit 35195 match community 2_18_239 set community 0:4302 ip community-list standard 2_210_215 permit 65000:2 0:210 0:215 route-map calculator permit 35196 match community 2_210_215 set community 0:45150 ip community-list standard 2_7_187 permit 65000:2 0:7 0:187 ip community-list standard 2_11_119 permit 65000:2 0:11 0:119 ip community-list standard 2_17_77 permit 65000:2 0:17 0:77 route-map calculator permit 35197 match community 2_7_187 2_11_119 2_17_77 set community 0:1309 ip community-list standard 2_97_248 permit 65000:2 0:97 0:248 ip community-list standard 2_124_194 permit 65000:2 0:124 0:194 route-map calculator permit 35198 match community 2_97_248 2_124_194 set community 0:24056 ip community-list standard 2_209_235 permit 65000:2 0:209 0:235 route-map calculator permit 35199 match community 2_209_235 set community 0:49115 ip community-list standard 2_209_255 permit 65000:2 0:209 0:255 route-map calculator permit 35200 match community 2_209_255 set community 0:53295 ip community-list standard 2_5_228 permit 65000:2 0:5 0:228 ip community-list standard 2_6_190 permit 65000:2 0:6 0:190 ip community-list standard 2_10_114 permit 65000:2 0:10 0:114 ip community-list standard 2_12_95 permit 65000:2 0:12 0:95 ip community-list standard 2_15_76 permit 65000:2 0:15 0:76 ip community-list standard 2_19_60 permit 65000:2 0:19 0:60 ip community-list standard 2_20_57 permit 65000:2 0:20 0:57 ip community-list standard 2_30_38 permit 65000:2 0:30 0:38 route-map calculator permit 35201 match community 2_5_228 2_6_190 2_10_114 2_12_95 2_15_76 set community 0:1140 route-map calculator permit 35202 match community 2_19_60 2_20_57 2_30_38 set community 0:1140 ip community-list standard 2_15_247 permit 65000:2 0:15 0:247 ip community-list standard 2_19_195 permit 65000:2 0:19 0:195 ip community-list standard 2_39_95 permit 65000:2 0:39 0:95 ip community-list standard 2_57_65 permit 65000:2 0:57 0:65 route-map calculator permit 35203 match community 2_15_247 2_19_195 2_39_95 2_57_65 set community 0:3705 ip community-list standard 2_197_256 permit 65000:2 0:197 0:256 route-map calculator permit 35204 match community 2_197_256 set community 0:50432 ip community-list standard 2_111_141 permit 65000:2 0:111 0:141 route-map calculator permit 35205 match community 2_111_141 set community 0:15651 ip community-list standard 2_29_61 permit 65000:2 0:29 0:61 route-map calculator permit 35206 match community 2_29_61 set community 0:1769 ip community-list standard 2_6_169 permit 65000:2 0:6 0:169 ip community-list standard 2_13_78 permit 65000:2 0:13 0:78 ip community-list standard 2_26_39 permit 65000:2 0:26 0:39 route-map calculator permit 35207 match community 2_6_169 2_13_78 2_26_39 set community 0:1014 ip community-list standard 2_133_178 permit 65000:2 0:133 0:178 route-map calculator permit 35208 match community 2_133_178 set community 0:23674 ip community-list standard 2_74_166 permit 65000:2 0:74 0:166 ip community-list standard 2_83_148 permit 65000:2 0:83 0:148 route-map calculator permit 35209 match community 2_74_166 2_83_148 set community 0:12284 ip community-list standard 2_168_248 permit 65000:2 0:168 0:248 ip community-list standard 2_186_224 permit 65000:2 0:186 0:224 ip community-list standard 2_192_217 permit 65000:2 0:192 0:217 route-map calculator permit 35210 match community 2_168_248 2_186_224 2_192_217 set community 0:41664 ip community-list standard 2_3_247 permit 65000:2 0:3 0:247 ip community-list standard 2_13_57 permit 65000:2 0:13 0:57 ip community-list standard 2_19_39 permit 65000:2 0:19 0:39 route-map calculator permit 35211 match community 2_3_247 2_13_57 2_19_39 set community 0:741 ip community-list standard 2_224_247 permit 65000:2 0:224 0:247 route-map calculator permit 35212 match community 2_224_247 set community 0:55328 ip community-list standard 2_33_227 permit 65000:2 0:33 0:227 route-map calculator permit 35213 match community 2_33_227 set community 0:7491 ip community-list standard 2_44_246 permit 65000:2 0:44 0:246 ip community-list standard 2_66_164 permit 65000:2 0:66 0:164 ip community-list standard 2_82_132 permit 65000:2 0:82 0:132 ip community-list standard 2_88_123 permit 65000:2 0:88 0:123 route-map calculator permit 35214 match community 2_44_246 2_66_164 2_82_132 2_88_123 set community 0:10824 ip community-list standard 2_80_241 permit 65000:2 0:80 0:241 route-map calculator permit 35215 match community 2_80_241 set community 0:19280 ip community-list standard 2_145_244 permit 65000:2 0:145 0:244 route-map calculator permit 35216 match community 2_145_244 set community 0:35380 ip community-list standard 2_103_230 permit 65000:2 0:103 0:230 ip community-list standard 2_115_206 permit 65000:2 0:115 0:206 route-map calculator permit 35217 match community 2_103_230 2_115_206 set community 0:23690 ip community-list standard 2_19_229 permit 65000:2 0:19 0:229 route-map calculator permit 35218 match community 2_19_229 set community 0:4351 ip community-list standard 2_222_230 permit 65000:2 0:222 0:230 route-map calculator permit 35219 match community 2_222_230 set community 0:51060 ip community-list standard 2_5_236 permit 65000:2 0:5 0:236 ip community-list standard 2_10_118 permit 65000:2 0:10 0:118 ip community-list standard 2_20_59 permit 65000:2 0:20 0:59 route-map calculator permit 35220 match community 2_5_236 2_10_118 2_20_59 set community 0:1180 ip community-list standard 2_223_224 permit 65000:2 0:223 0:224 route-map calculator permit 35221 match community 2_223_224 set community 0:49952 ip community-list standard 2_92_131 permit 65000:2 0:92 0:131 route-map calculator permit 35222 match community 2_92_131 set community 0:12052 ip community-list standard 2_79_79 permit 65000:2 0:79 0:79 route-map calculator permit 35223 match community 2_79_79 set community 0:6241 ip community-list standard 2_78_242 permit 65000:2 0:78 0:242 ip community-list standard 2_121_156 permit 65000:2 0:121 0:156 ip community-list standard 2_132_143 permit 65000:2 0:132 0:143 route-map calculator permit 35224 match community 2_78_242 2_121_156 2_132_143 set community 0:18876 ip community-list standard 2_208_239 permit 65000:2 0:208 0:239 route-map calculator permit 35225 match community 2_208_239 set community 0:49712 ip community-list standard 2_94_219 permit 65000:2 0:94 0:219 ip community-list standard 2_141_146 permit 65000:2 0:141 0:146 route-map calculator permit 35226 match community 2_94_219 2_141_146 set community 0:20586 ip community-list standard 2_68_246 permit 65000:2 0:68 0:246 ip community-list standard 2_82_204 permit 65000:2 0:82 0:204 ip community-list standard 2_102_164 permit 65000:2 0:102 0:164 ip community-list standard 2_123_136 permit 65000:2 0:123 0:136 route-map calculator permit 35227 match community 2_68_246 2_82_204 2_102_164 2_123_136 set community 0:16728 ip community-list standard 2_20_179 permit 65000:2 0:20 0:179 route-map calculator permit 35228 match community 2_20_179 set community 0:3580 ip community-list standard 2_191_200 permit 65000:2 0:191 0:200 route-map calculator permit 35229 match community 2_191_200 set community 0:38200 ip community-list standard 2_226_226 permit 65000:2 0:226 0:226 route-map calculator permit 35230 match community 2_226_226 set community 0:51076 ip community-list standard 2_131_217 permit 65000:2 0:131 0:217 route-map calculator permit 35231 match community 2_131_217 set community 0:28427 ip community-list standard 2_23_106 permit 65000:2 0:23 0:106 ip community-list standard 2_46_53 permit 65000:2 0:46 0:53 route-map calculator permit 35232 match community 2_23_106 2_46_53 set community 0:2438 ip community-list standard 2_183_234 permit 65000:2 0:183 0:234 route-map calculator permit 35233 match community 2_183_234 set community 0:42822 ip community-list standard 2_197_249 permit 65000:2 0:197 0:249 route-map calculator permit 35234 match community 2_197_249 set community 0:49053 ip community-list standard 2_97_159 permit 65000:2 0:97 0:159 route-map calculator permit 35235 match community 2_97_159 set community 0:15423 ip community-list standard 2_10_233 permit 65000:2 0:10 0:233 route-map calculator permit 35236 match community 2_10_233 set community 0:2330 ip community-list standard 2_134_146 permit 65000:2 0:134 0:146 route-map calculator permit 35237 match community 2_134_146 set community 0:19564 ip community-list standard 2_155_217 permit 65000:2 0:155 0:217 route-map calculator permit 35238 match community 2_155_217 set community 0:33635 ip community-list standard 2_72_250 permit 65000:2 0:72 0:250 ip community-list standard 2_75_240 permit 65000:2 0:75 0:240 ip community-list standard 2_80_225 permit 65000:2 0:80 0:225 ip community-list standard 2_90_200 permit 65000:2 0:90 0:200 ip community-list standard 2_100_180 permit 65000:2 0:100 0:180 ip community-list standard 2_120_150 permit 65000:2 0:120 0:150 ip community-list standard 2_125_144 permit 65000:2 0:125 0:144 route-map calculator permit 35239 match community 2_72_250 2_75_240 2_80_225 2_90_200 2_100_180 set community 0:18000 route-map calculator permit 35240 match community 2_120_150 2_125_144 set community 0:18000 ip community-list standard 2_9_214 permit 65000:2 0:9 0:214 ip community-list standard 2_18_107 permit 65000:2 0:18 0:107 route-map calculator permit 35241 match community 2_9_214 2_18_107 set community 0:1926 ip community-list standard 2_181_226 permit 65000:2 0:181 0:226 route-map calculator permit 35242 match community 2_181_226 set community 0:40906 ip community-list standard 2_104_219 permit 65000:2 0:104 0:219 ip community-list standard 2_146_156 permit 65000:2 0:146 0:156 route-map calculator permit 35243 match community 2_104_219 2_146_156 set community 0:22776 ip community-list standard 2_178_238 permit 65000:2 0:178 0:238 route-map calculator permit 35244 match community 2_178_238 set community 0:42364 ip community-list standard 2_98_252 permit 65000:2 0:98 0:252 ip community-list standard 2_126_196 permit 65000:2 0:126 0:196 ip community-list standard 2_147_168 permit 65000:2 0:147 0:168 route-map calculator permit 35245 match community 2_98_252 2_126_196 2_147_168 set community 0:24696 ip community-list standard 2_32_242 permit 65000:2 0:32 0:242 ip community-list standard 2_44_176 permit 65000:2 0:44 0:176 ip community-list standard 2_64_121 permit 65000:2 0:64 0:121 ip community-list standard 2_88_88 permit 65000:2 0:88 0:88 route-map calculator permit 35246 match community 2_32_242 2_44_176 2_64_121 2_88_88 set community 0:7744 ip community-list standard 2_137_153 permit 65000:2 0:137 0:153 route-map calculator permit 35247 match community 2_137_153 set community 0:20961 ip community-list standard 2_42_231 permit 65000:2 0:42 0:231 ip community-list standard 2_49_198 permit 65000:2 0:49 0:198 ip community-list standard 2_63_154 permit 65000:2 0:63 0:154 ip community-list standard 2_66_147 permit 65000:2 0:66 0:147 ip community-list standard 2_77_126 permit 65000:2 0:77 0:126 ip community-list standard 2_98_99 permit 65000:2 0:98 0:99 route-map calculator permit 35248 match community 2_42_231 2_49_198 2_63_154 2_66_147 2_77_126 set community 0:9702 route-map calculator permit 35249 match community 2_98_99 set community 0:9702 ip community-list standard 2_152_200 permit 65000:2 0:152 0:200 ip community-list standard 2_160_190 permit 65000:2 0:160 0:190 route-map calculator permit 35250 match community 2_152_200 2_160_190 set community 0:30400 ip community-list standard 2_60_163 permit 65000:2 0:60 0:163 route-map calculator permit 35251 match community 2_60_163 set community 0:9780 ip community-list standard 2_83_175 permit 65000:2 0:83 0:175 route-map calculator permit 35252 match community 2_83_175 set community 0:14525 ip community-list standard 2_94_183 permit 65000:2 0:94 0:183 ip community-list standard 2_122_141 permit 65000:2 0:122 0:141 route-map calculator permit 35253 match community 2_94_183 2_122_141 set community 0:17202 ip community-list standard 2_11_244 permit 65000:2 0:11 0:244 ip community-list standard 2_22_122 permit 65000:2 0:22 0:122 ip community-list standard 2_44_61 permit 65000:2 0:44 0:61 route-map calculator permit 35254 match community 2_11_244 2_22_122 2_44_61 set community 0:2684 ip community-list standard 2_116_236 permit 65000:2 0:116 0:236 ip community-list standard 2_118_232 permit 65000:2 0:118 0:232 route-map calculator permit 35255 match community 2_116_236 2_118_232 set community 0:27376 ip community-list standard 2_166_223 permit 65000:2 0:166 0:223 route-map calculator permit 35256 match community 2_166_223 set community 0:37018 ip community-list standard 2_11_203 permit 65000:2 0:11 0:203 ip community-list standard 2_29_77 permit 65000:2 0:29 0:77 route-map calculator permit 35257 match community 2_11_203 2_29_77 set community 0:2233 ip community-list standard 2_4_155 permit 65000:2 0:4 0:155 ip community-list standard 2_5_124 permit 65000:2 0:5 0:124 ip community-list standard 2_10_62 permit 65000:2 0:10 0:62 ip community-list standard 2_20_31 permit 65000:2 0:20 0:31 route-map calculator permit 35258 match community 2_4_155 2_5_124 2_10_62 2_20_31 set community 0:620 ip community-list standard 2_69_137 permit 65000:2 0:69 0:137 route-map calculator permit 35259 match community 2_69_137 set community 0:9453 ip community-list standard 2_90_246 permit 65000:2 0:90 0:246 ip community-list standard 2_108_205 permit 65000:2 0:108 0:205 ip community-list standard 2_123_180 permit 65000:2 0:123 0:180 ip community-list standard 2_135_164 permit 65000:2 0:135 0:164 route-map calculator permit 35260 match community 2_90_246 2_108_205 2_123_180 2_135_164 set community 0:22140 ip community-list standard 2_140_252 permit 65000:2 0:140 0:252 ip community-list standard 2_144_245 permit 65000:2 0:144 0:245 ip community-list standard 2_147_240 permit 65000:2 0:147 0:240 ip community-list standard 2_168_210 permit 65000:2 0:168 0:210 ip community-list standard 2_180_196 permit 65000:2 0:180 0:196 route-map calculator permit 35261 match community 2_140_252 2_144_245 2_147_240 2_168_210 2_180_196 set community 0:35280 ip community-list standard 2_173_225 permit 65000:2 0:173 0:225 route-map calculator permit 35262 match community 2_173_225 set community 0:38925 ip community-list standard 2_224_244 permit 65000:2 0:224 0:244 route-map calculator permit 35263 match community 2_224_244 set community 0:54656 ip community-list standard 2_61_146 permit 65000:2 0:61 0:146 ip community-list standard 2_73_122 permit 65000:2 0:73 0:122 route-map calculator permit 35264 match community 2_61_146 2_73_122 set community 0:8906 ip community-list standard 2_211_237 permit 65000:2 0:211 0:237 route-map calculator permit 35265 match community 2_211_237 set community 0:50007 ip community-list standard 2_96_139 permit 65000:2 0:96 0:139 route-map calculator permit 35266 match community 2_96_139 set community 0:13344 ip community-list standard 2_236_236 permit 65000:2 0:236 0:236 route-map calculator permit 35267 match community 2_236_236 set community 0:55696 ip community-list standard 2_33_197 permit 65000:2 0:33 0:197 route-map calculator permit 35268 match community 2_33_197 set community 0:6501 ip community-list standard 2_79_246 permit 65000:2 0:79 0:246 ip community-list standard 2_82_237 permit 65000:2 0:82 0:237 ip community-list standard 2_123_158 permit 65000:2 0:123 0:158 route-map calculator permit 35269 match community 2_79_246 2_82_237 2_123_158 set community 0:19434 ip community-list standard 2_224_238 permit 65000:2 0:224 0:238 route-map calculator permit 35270 match community 2_224_238 set community 0:53312 ip community-list standard 2_109_187 permit 65000:2 0:109 0:187 route-map calculator permit 35271 match community 2_109_187 set community 0:20383 ip community-list standard 2_47_186 permit 65000:2 0:47 0:186 ip community-list standard 2_62_141 permit 65000:2 0:62 0:141 ip community-list standard 2_93_94 permit 65000:2 0:93 0:94 route-map calculator permit 35272 match community 2_47_186 2_62_141 2_93_94 set community 0:8742 ip community-list standard 2_23_159 permit 65000:2 0:23 0:159 ip community-list standard 2_53_69 permit 65000:2 0:53 0:69 route-map calculator permit 35273 match community 2_23_159 2_53_69 set community 0:3657 ip community-list standard 2_103_177 permit 65000:2 0:103 0:177 route-map calculator permit 35274 match community 2_103_177 set community 0:18231 ip community-list standard 2_112_233 permit 65000:2 0:112 0:233 route-map calculator permit 35275 match community 2_112_233 set community 0:26096 ip community-list standard 2_91_234 permit 65000:2 0:91 0:234 ip community-list standard 2_117_182 permit 65000:2 0:117 0:182 ip community-list standard 2_126_169 permit 65000:2 0:126 0:169 route-map calculator permit 35276 match community 2_91_234 2_117_182 2_126_169 set community 0:21294 ip community-list standard 2_131_164 permit 65000:2 0:131 0:164 route-map calculator permit 35277 match community 2_131_164 set community 0:21484 ip community-list standard 2_17_34 permit 65000:2 0:17 0:34 route-map calculator permit 35278 match community 2_17_34 set community 0:578 ip community-list standard 2_23_127 permit 65000:2 0:23 0:127 route-map calculator permit 35279 match community 2_23_127 set community 0:2921 ip community-list standard 2_7_219 permit 65000:2 0:7 0:219 ip community-list standard 2_21_73 permit 65000:2 0:21 0:73 route-map calculator permit 35280 match community 2_7_219 2_21_73 set community 0:1533 ip community-list standard 2_139_187 permit 65000:2 0:139 0:187 route-map calculator permit 35281 match community 2_139_187 set community 0:25993 ip community-list standard 2_243_244 permit 65000:2 0:243 0:244 route-map calculator permit 35282 match community 2_243_244 set community 0:59292 ip community-list standard 2_49_227 permit 65000:2 0:49 0:227 route-map calculator permit 35283 match community 2_49_227 set community 0:11123 ip community-list standard 2_7_256 permit 65000:2 0:7 0:256 ip community-list standard 2_8_224 permit 65000:2 0:8 0:224 ip community-list standard 2_14_128 permit 65000:2 0:14 0:128 ip community-list standard 2_16_112 permit 65000:2 0:16 0:112 ip community-list standard 2_28_64 permit 65000:2 0:28 0:64 ip community-list standard 2_32_56 permit 65000:2 0:32 0:56 route-map calculator permit 35284 match community 2_7_256 2_8_224 2_14_128 2_16_112 2_28_64 set community 0:1792 route-map calculator permit 35285 match community 2_32_56 set community 0:1792 ip community-list standard 2_37_103 permit 65000:2 0:37 0:103 route-map calculator permit 35286 match community 2_37_103 set community 0:3811 ip community-list standard 2_170_187 permit 65000:2 0:170 0:187 route-map calculator permit 35287 match community 2_170_187 set community 0:31790 ip community-list standard 2_191_207 permit 65000:2 0:191 0:207 route-map calculator permit 35288 match community 2_191_207 set community 0:39537 ip community-list standard 2_13_251 permit 65000:2 0:13 0:251 route-map calculator permit 35289 match community 2_13_251 set community 0:3263 ip community-list standard 2_219_229 permit 65000:2 0:219 0:229 route-map calculator permit 35290 match community 2_219_229 set community 0:50151 ip community-list standard 2_191_245 permit 65000:2 0:191 0:245 route-map calculator permit 35291 match community 2_191_245 set community 0:46795 ip community-list standard 2_155_159 permit 65000:2 0:155 0:159 route-map calculator permit 35292 match community 2_155_159 set community 0:24645 ip community-list standard 2_11_226 permit 65000:2 0:11 0:226 ip community-list standard 2_22_113 permit 65000:2 0:22 0:113 route-map calculator permit 35293 match community 2_11_226 2_22_113 set community 0:2486 ip community-list standard 2_122_151 permit 65000:2 0:122 0:151 route-map calculator permit 35294 match community 2_122_151 set community 0:18422 ip community-list standard 2_13_252 permit 65000:2 0:13 0:252 ip community-list standard 2_14_234 permit 65000:2 0:14 0:234 ip community-list standard 2_18_182 permit 65000:2 0:18 0:182 ip community-list standard 2_21_156 permit 65000:2 0:21 0:156 ip community-list standard 2_26_126 permit 65000:2 0:26 0:126 ip community-list standard 2_28_117 permit 65000:2 0:28 0:117 ip community-list standard 2_36_91 permit 65000:2 0:36 0:91 ip community-list standard 2_39_84 permit 65000:2 0:39 0:84 ip community-list standard 2_42_78 permit 65000:2 0:42 0:78 ip community-list standard 2_52_63 permit 65000:2 0:52 0:63 route-map calculator permit 35295 match community 2_13_252 2_14_234 2_18_182 2_21_156 2_26_126 set community 0:3276 route-map calculator permit 35296 match community 2_28_117 2_36_91 2_39_84 2_42_78 2_52_63 set community 0:3276 ip community-list standard 2_161_250 permit 65000:2 0:161 0:250 ip community-list standard 2_175_230 permit 65000:2 0:175 0:230 route-map calculator permit 35297 match community 2_161_250 2_175_230 set community 0:40250 ip community-list standard 2_56_158 permit 65000:2 0:56 0:158 ip community-list standard 2_79_112 permit 65000:2 0:79 0:112 route-map calculator permit 35298 match community 2_56_158 2_79_112 set community 0:8848 ip community-list standard 2_66_149 permit 65000:2 0:66 0:149 route-map calculator permit 35299 match community 2_66_149 set community 0:9834 ip community-list standard 2_157_210 permit 65000:2 0:157 0:210 route-map calculator permit 35300 match community 2_157_210 set community 0:32970 ip community-list standard 2_231_254 permit 65000:2 0:231 0:254 route-map calculator permit 35301 match community 2_231_254 set community 0:58674 ip community-list standard 2_98_246 permit 65000:2 0:98 0:246 ip community-list standard 2_123_196 permit 65000:2 0:123 0:196 ip community-list standard 2_147_164 permit 65000:2 0:147 0:164 route-map calculator permit 35302 match community 2_98_246 2_123_196 2_147_164 set community 0:24108 ip community-list standard 2_20_202 permit 65000:2 0:20 0:202 ip community-list standard 2_40_101 permit 65000:2 0:40 0:101 route-map calculator permit 35303 match community 2_20_202 2_40_101 set community 0:4040 ip community-list standard 2_169_181 permit 65000:2 0:169 0:181 route-map calculator permit 35304 match community 2_169_181 set community 0:30589 ip community-list standard 2_142_212 permit 65000:2 0:142 0:212 route-map calculator permit 35305 match community 2_142_212 set community 0:30104 ip community-list standard 2_134_197 permit 65000:2 0:134 0:197 route-map calculator permit 35306 match community 2_134_197 set community 0:26398 ip community-list standard 2_101_231 permit 65000:2 0:101 0:231 route-map calculator permit 35307 match community 2_101_231 set community 0:23331 ip community-list standard 2_149_202 permit 65000:2 0:149 0:202 route-map calculator permit 35308 match community 2_149_202 set community 0:30098 ip community-list standard 2_201_254 permit 65000:2 0:201 0:254 route-map calculator permit 35309 match community 2_201_254 set community 0:51054 ip community-list standard 2_140_241 permit 65000:2 0:140 0:241 route-map calculator permit 35310 match community 2_140_241 set community 0:33740 ip community-list standard 2_163_242 permit 65000:2 0:163 0:242 route-map calculator permit 35311 match community 2_163_242 set community 0:39446 ip community-list standard 2_141_227 permit 65000:2 0:141 0:227 route-map calculator permit 35312 match community 2_141_227 set community 0:32007 ip community-list standard 2_145_159 permit 65000:2 0:145 0:159 route-map calculator permit 35313 match community 2_145_159 set community 0:23055 ip community-list standard 2_241_241 permit 65000:2 0:241 0:241 route-map calculator permit 35314 match community 2_241_241 set community 0:58081 ip community-list standard 2_85_137 permit 65000:2 0:85 0:137 route-map calculator permit 35315 match community 2_85_137 set community 0:11645 ip community-list standard 2_29_206 permit 65000:2 0:29 0:206 ip community-list standard 2_58_103 permit 65000:2 0:58 0:103 route-map calculator permit 35316 match community 2_29_206 2_58_103 set community 0:5974 ip community-list standard 2_66_193 permit 65000:2 0:66 0:193 route-map calculator permit 35317 match community 2_66_193 set community 0:12738 ip community-list standard 2_133_152 permit 65000:2 0:133 0:152 route-map calculator permit 35318 match community 2_133_152 set community 0:20216 ip community-list standard 2_107_229 permit 65000:2 0:107 0:229 route-map calculator permit 35319 match community 2_107_229 set community 0:24503 ip community-list standard 2_53_83 permit 65000:2 0:53 0:83 route-map calculator permit 35320 match community 2_53_83 set community 0:4399 ip community-list standard 2_123_151 permit 65000:2 0:123 0:151 route-map calculator permit 35321 match community 2_123_151 set community 0:18573 ip community-list standard 2_184_197 permit 65000:2 0:184 0:197 route-map calculator permit 35322 match community 2_184_197 set community 0:36248 ip community-list standard 2_203_218 permit 65000:2 0:203 0:218 route-map calculator permit 35323 match community 2_203_218 set community 0:44254 ip community-list standard 2_38_252 permit 65000:2 0:38 0:252 ip community-list standard 2_42_228 permit 65000:2 0:42 0:228 ip community-list standard 2_56_171 permit 65000:2 0:56 0:171 ip community-list standard 2_57_168 permit 65000:2 0:57 0:168 ip community-list standard 2_63_152 permit 65000:2 0:63 0:152 ip community-list standard 2_72_133 permit 65000:2 0:72 0:133 ip community-list standard 2_76_126 permit 65000:2 0:76 0:126 ip community-list standard 2_84_114 permit 65000:2 0:84 0:114 route-map calculator permit 35324 match community 2_38_252 2_42_228 2_56_171 2_57_168 2_63_152 set community 0:9576 route-map calculator permit 35325 match community 2_72_133 2_76_126 2_84_114 set community 0:9576 ip community-list standard 2_17_124 permit 65000:2 0:17 0:124 ip community-list standard 2_31_68 permit 65000:2 0:31 0:68 ip community-list standard 2_34_62 permit 65000:2 0:34 0:62 route-map calculator permit 35326 match community 2_17_124 2_31_68 2_34_62 set community 0:2108 ip community-list standard 2_170_173 permit 65000:2 0:170 0:173 route-map calculator permit 35327 match community 2_170_173 set community 0:29410 ip community-list standard 2_212_223 permit 65000:2 0:212 0:223 route-map calculator permit 35328 match community 2_212_223 set community 0:47276 ip community-list standard 2_7_225 permit 65000:2 0:7 0:225 ip community-list standard 2_9_175 permit 65000:2 0:9 0:175 ip community-list standard 2_15_105 permit 65000:2 0:15 0:105 ip community-list standard 2_21_75 permit 65000:2 0:21 0:75 ip community-list standard 2_25_63 permit 65000:2 0:25 0:63 ip community-list standard 2_35_45 permit 65000:2 0:35 0:45 route-map calculator permit 35329 match community 2_7_225 2_9_175 2_15_105 2_21_75 2_25_63 set community 0:1575 route-map calculator permit 35330 match community 2_35_45 set community 0:1575 ip community-list standard 2_61_95 permit 65000:2 0:61 0:95 route-map calculator permit 35331 match community 2_61_95 set community 0:5795 ip community-list standard 2_24_233 permit 65000:2 0:24 0:233 route-map calculator permit 35332 match community 2_24_233 set community 0:5592 ip community-list standard 2_123_237 permit 65000:2 0:123 0:237 route-map calculator permit 35333 match community 2_123_237 set community 0:29151 ip community-list standard 2_147_163 permit 65000:2 0:147 0:163 route-map calculator permit 35334 match community 2_147_163 set community 0:23961 ip community-list standard 2_200_242 permit 65000:2 0:200 0:242 ip community-list standard 2_220_220 permit 65000:2 0:220 0:220 route-map calculator permit 35335 match community 2_200_242 2_220_220 set community 0:48400 ip community-list standard 2_51_218 permit 65000:2 0:51 0:218 ip community-list standard 2_102_109 permit 65000:2 0:102 0:109 route-map calculator permit 35336 match community 2_51_218 2_102_109 set community 0:11118 ip community-list standard 2_194_255 permit 65000:2 0:194 0:255 route-map calculator permit 35337 match community 2_194_255 set community 0:49470 ip community-list standard 2_63_206 permit 65000:2 0:63 0:206 ip community-list standard 2_103_126 permit 65000:2 0:103 0:126 route-map calculator permit 35338 match community 2_63_206 2_103_126 set community 0:12978 ip community-list standard 1_1_138 permit 65000:1 0:1 0:138 ip community-list standard 2_1_139 permit 65000:2 0:1 0:139 ip community-list standard 1_2_137 permit 65000:1 0:2 0:137 ip community-list standard 1_3_136 permit 65000:1 0:3 0:136 ip community-list standard 1_4_135 permit 65000:1 0:4 0:135 ip community-list standard 1_5_134 permit 65000:1 0:5 0:134 ip community-list standard 1_6_133 permit 65000:1 0:6 0:133 ip community-list standard 1_7_132 permit 65000:1 0:7 0:132 ip community-list standard 1_8_131 permit 65000:1 0:8 0:131 ip community-list standard 1_9_130 permit 65000:1 0:9 0:130 ip community-list standard 1_10_129 permit 65000:1 0:10 0:129 ip community-list standard 1_11_128 permit 65000:1 0:11 0:128 ip community-list standard 1_12_127 permit 65000:1 0:12 0:127 ip community-list standard 1_13_126 permit 65000:1 0:13 0:126 ip community-list standard 1_14_125 permit 65000:1 0:14 0:125 ip community-list standard 1_15_124 permit 65000:1 0:15 0:124 ip community-list standard 1_16_123 permit 65000:1 0:16 0:123 ip community-list standard 1_17_122 permit 65000:1 0:17 0:122 ip community-list standard 1_18_121 permit 65000:1 0:18 0:121 ip community-list standard 1_19_120 permit 65000:1 0:19 0:120 ip community-list standard 1_20_119 permit 65000:1 0:20 0:119 ip community-list standard 1_21_118 permit 65000:1 0:21 0:118 ip community-list standard 1_22_117 permit 65000:1 0:22 0:117 ip community-list standard 1_23_116 permit 65000:1 0:23 0:116 ip community-list standard 1_24_115 permit 65000:1 0:24 0:115 ip community-list standard 1_25_114 permit 65000:1 0:25 0:114 ip community-list standard 1_26_113 permit 65000:1 0:26 0:113 ip community-list standard 1_27_112 permit 65000:1 0:27 0:112 ip community-list standard 1_28_111 permit 65000:1 0:28 0:111 ip community-list standard 1_29_110 permit 65000:1 0:29 0:110 ip community-list standard 1_30_109 permit 65000:1 0:30 0:109 ip community-list standard 1_31_108 permit 65000:1 0:31 0:108 ip community-list standard 1_32_107 permit 65000:1 0:32 0:107 ip community-list standard 1_33_106 permit 65000:1 0:33 0:106 ip community-list standard 1_34_105 permit 65000:1 0:34 0:105 ip community-list standard 1_35_104 permit 65000:1 0:35 0:104 ip community-list standard 1_36_103 permit 65000:1 0:36 0:103 ip community-list standard 1_37_102 permit 65000:1 0:37 0:102 ip community-list standard 1_38_101 permit 65000:1 0:38 0:101 ip community-list standard 1_39_100 permit 65000:1 0:39 0:100 ip community-list standard 1_40_99 permit 65000:1 0:40 0:99 ip community-list standard 1_41_98 permit 65000:1 0:41 0:98 ip community-list standard 1_42_97 permit 65000:1 0:42 0:97 ip community-list standard 1_43_96 permit 65000:1 0:43 0:96 ip community-list standard 1_44_95 permit 65000:1 0:44 0:95 ip community-list standard 1_45_94 permit 65000:1 0:45 0:94 ip community-list standard 1_46_93 permit 65000:1 0:46 0:93 ip community-list standard 1_47_92 permit 65000:1 0:47 0:92 ip community-list standard 1_48_91 permit 65000:1 0:48 0:91 ip community-list standard 1_49_90 permit 65000:1 0:49 0:90 ip community-list standard 1_50_89 permit 65000:1 0:50 0:89 ip community-list standard 1_51_88 permit 65000:1 0:51 0:88 ip community-list standard 1_52_87 permit 65000:1 0:52 0:87 ip community-list standard 1_53_86 permit 65000:1 0:53 0:86 ip community-list standard 1_54_85 permit 65000:1 0:54 0:85 ip community-list standard 1_55_84 permit 65000:1 0:55 0:84 ip community-list standard 1_56_83 permit 65000:1 0:56 0:83 ip community-list standard 1_57_82 permit 65000:1 0:57 0:82 ip community-list standard 1_58_81 permit 65000:1 0:58 0:81 ip community-list standard 1_59_80 permit 65000:1 0:59 0:80 ip community-list standard 1_60_79 permit 65000:1 0:60 0:79 ip community-list standard 1_61_78 permit 65000:1 0:61 0:78 ip community-list standard 1_62_77 permit 65000:1 0:62 0:77 ip community-list standard 1_63_76 permit 65000:1 0:63 0:76 ip community-list standard 1_64_75 permit 65000:1 0:64 0:75 ip community-list standard 1_65_74 permit 65000:1 0:65 0:74 ip community-list standard 1_66_73 permit 65000:1 0:66 0:73 ip community-list standard 1_67_72 permit 65000:1 0:67 0:72 ip community-list standard 1_68_71 permit 65000:1 0:68 0:71 ip community-list standard 1_69_70 permit 65000:1 0:69 0:70 ip community-list expanded c139 permit 1 ^65000:4_0:139_0:1$ ip community-list expanded c139 permit 2 ^65000:3_0:140_0:1$ ip community-list expanded c139 permit 3 ^65000:3_0:141_0:2$ ip community-list expanded c139 permit 4 ^65000:3_0:142_0:3$ ip community-list expanded c139 permit 5 ^65000:3_0:143_0:4$ ip community-list expanded c139 permit 6 ^65000:3_0:144_0:5$ ip community-list expanded c139 permit 7 ^65000:3_0:145_0:6$ ip community-list expanded c139 permit 8 ^65000:3_0:146_0:7$ ip community-list expanded c139 permit 9 ^65000:3_0:147_0:8$ ip community-list expanded c139 permit 10 ^65000:3_0:148_0:9$ ip community-list expanded c139 permit 11 ^65000:3_0:149_0:10$ ip community-list expanded c139 permit 12 ^65000:3_0:150_0:11$ ip community-list expanded c139 permit 13 ^65000:3_0:151_0:12$ ip community-list expanded c139 permit 14 ^65000:3_0:152_0:13$ ip community-list expanded c139 permit 15 ^65000:3_0:153_0:14$ ip community-list expanded c139 permit 16 ^65000:3_0:154_0:15$ ip community-list expanded c139 permit 17 ^65000:3_0:155_0:16$ ip community-list expanded c139 permit 18 ^65000:3_0:156_0:17$ ip community-list expanded c139 permit 19 ^65000:3_0:157_0:18$ ip community-list expanded c139 permit 20 ^65000:3_0:158_0:19$ ip community-list expanded c139 permit 21 ^65000:3_0:159_0:20$ ip community-list expanded c139 permit 22 ^65000:3_0:160_0:21$ ip community-list expanded c139 permit 23 ^65000:3_0:161_0:22$ ip community-list expanded c139 permit 24 ^65000:3_0:162_0:23$ ip community-list expanded c139 permit 25 ^65000:3_0:163_0:24$ ip community-list expanded c139 permit 26 ^65000:3_0:164_0:25$ ip community-list expanded c139 permit 27 ^65000:3_0:165_0:26$ ip community-list expanded c139 permit 28 ^65000:3_0:166_0:27$ ip community-list expanded c139 permit 29 ^65000:3_0:167_0:28$ ip community-list expanded c139 permit 30 ^65000:3_0:168_0:29$ ip community-list expanded c139 permit 31 ^65000:3_0:169_0:30$ ip community-list expanded c139 permit 32 ^65000:3_0:170_0:31$ ip community-list expanded c139 permit 33 ^65000:3_0:171_0:32$ ip community-list expanded c139 permit 34 ^65000:3_0:172_0:33$ ip community-list expanded c139 permit 35 ^65000:3_0:173_0:34$ ip community-list expanded c139 permit 36 ^65000:3_0:174_0:35$ ip community-list expanded c139 permit 37 ^65000:3_0:175_0:36$ ip community-list expanded c139 permit 38 ^65000:3_0:176_0:37$ ip community-list expanded c139 permit 39 ^65000:3_0:177_0:38$ ip community-list expanded c139 permit 40 ^65000:3_0:178_0:39$ ip community-list expanded c139 permit 41 ^65000:3_0:179_0:40$ ip community-list expanded c139 permit 42 ^65000:3_0:180_0:41$ ip community-list expanded c139 permit 43 ^65000:3_0:181_0:42$ ip community-list expanded c139 permit 44 ^65000:3_0:182_0:43$ ip community-list expanded c139 permit 45 ^65000:3_0:183_0:44$ ip community-list expanded c139 permit 46 ^65000:3_0:184_0:45$ ip community-list expanded c139 permit 47 ^65000:3_0:185_0:46$ ip community-list expanded c139 permit 48 ^65000:3_0:186_0:47$ ip community-list expanded c139 permit 49 ^65000:3_0:187_0:48$ ip community-list expanded c139 permit 50 ^65000:3_0:188_0:49$ ip community-list expanded c139 permit 51 ^65000:3_0:189_0:50$ ip community-list expanded c139 permit 52 ^65000:3_0:190_0:51$ ip community-list expanded c139 permit 53 ^65000:3_0:191_0:52$ ip community-list expanded c139 permit 54 ^65000:3_0:192_0:53$ ip community-list expanded c139 permit 55 ^65000:3_0:193_0:54$ ip community-list expanded c139 permit 56 ^65000:3_0:194_0:55$ ip community-list expanded c139 permit 57 ^65000:3_0:195_0:56$ ip community-list expanded c139 permit 58 ^65000:3_0:196_0:57$ ip community-list expanded c139 permit 59 ^65000:3_0:197_0:58$ ip community-list expanded c139 permit 60 ^65000:3_0:198_0:59$ ip community-list expanded c139 permit 61 ^65000:3_0:199_0:60$ ip community-list expanded c139 permit 62 ^65000:3_0:200_0:61$ ip community-list expanded c139 permit 63 ^65000:3_0:201_0:62$ ip community-list expanded c139 permit 64 ^65000:3_0:202_0:63$ ip community-list expanded c139 permit 65 ^65000:3_0:203_0:64$ ip community-list expanded c139 permit 66 ^65000:3_0:204_0:65$ ip community-list expanded c139 permit 67 ^65000:3_0:205_0:66$ ip community-list expanded c139 permit 68 ^65000:3_0:206_0:67$ ip community-list expanded c139 permit 69 ^65000:3_0:207_0:68$ ip community-list expanded c139 permit 70 ^65000:3_0:208_0:69$ ip community-list expanded c139 permit 71 ^65000:3_0:209_0:70$ ip community-list expanded c139 permit 72 ^65000:3_0:210_0:71$ ip community-list expanded c139 permit 73 ^65000:3_0:211_0:72$ ip community-list expanded c139 permit 74 ^65000:3_0:212_0:73$ ip community-list expanded c139 permit 75 ^65000:3_0:213_0:74$ ip community-list expanded c139 permit 76 ^65000:3_0:214_0:75$ ip community-list expanded c139 permit 77 ^65000:3_0:215_0:76$ ip community-list expanded c139 permit 78 ^65000:3_0:216_0:77$ ip community-list expanded c139 permit 79 ^65000:3_0:217_0:78$ ip community-list expanded c139 permit 80 ^65000:3_0:218_0:79$ ip community-list expanded c139 permit 81 ^65000:3_0:219_0:80$ ip community-list expanded c139 permit 82 ^65000:3_0:220_0:81$ ip community-list expanded c139 permit 83 ^65000:3_0:221_0:82$ ip community-list expanded c139 permit 84 ^65000:3_0:222_0:83$ ip community-list expanded c139 permit 85 ^65000:3_0:223_0:84$ ip community-list expanded c139 permit 86 ^65000:3_0:224_0:85$ ip community-list expanded c139 permit 87 ^65000:3_0:225_0:86$ ip community-list expanded c139 permit 88 ^65000:3_0:226_0:87$ ip community-list expanded c139 permit 89 ^65000:3_0:227_0:88$ ip community-list expanded c139 permit 90 ^65000:3_0:228_0:89$ ip community-list expanded c139 permit 91 ^65000:3_0:229_0:90$ ip community-list expanded c139 permit 92 ^65000:3_0:230_0:91$ ip community-list expanded c139 permit 93 ^65000:3_0:231_0:92$ ip community-list expanded c139 permit 94 ^65000:3_0:232_0:93$ ip community-list expanded c139 permit 95 ^65000:3_0:233_0:94$ ip community-list expanded c139 permit 96 ^65000:3_0:234_0:95$ ip community-list expanded c139 permit 97 ^65000:3_0:235_0:96$ ip community-list expanded c139 permit 98 ^65000:3_0:236_0:97$ ip community-list expanded c139 permit 99 ^65000:3_0:237_0:98$ ip community-list expanded c139 permit 100 ^65000:3_0:238_0:99$ ip community-list expanded c139 permit 101 ^65000:3_0:239_0:100$ ip community-list expanded c139 permit 102 ^65000:3_0:240_0:101$ ip community-list expanded c139 permit 103 ^65000:3_0:241_0:102$ ip community-list expanded c139 permit 104 ^65000:3_0:242_0:103$ ip community-list expanded c139 permit 105 ^65000:3_0:243_0:104$ ip community-list expanded c139 permit 106 ^65000:3_0:244_0:105$ ip community-list expanded c139 permit 107 ^65000:3_0:245_0:106$ ip community-list expanded c139 permit 108 ^65000:3_0:246_0:107$ ip community-list expanded c139 permit 109 ^65000:3_0:247_0:108$ ip community-list expanded c139 permit 110 ^65000:3_0:248_0:109$ ip community-list expanded c139 permit 111 ^65000:3_0:249_0:110$ ip community-list expanded c139 permit 112 ^65000:3_0:250_0:111$ ip community-list expanded c139 permit 113 ^65000:3_0:251_0:112$ ip community-list expanded c139 permit 114 ^65000:3_0:252_0:113$ ip community-list expanded c139 permit 115 ^65000:3_0:253_0:114$ ip community-list expanded c139 permit 116 ^65000:3_0:254_0:115$ ip community-list expanded c139 permit 117 ^65000:3_0:255_0:116$ ip community-list expanded c139 permit 118 ^65000:3_0:256_0:117$ route-map calculator permit 35339 match community 1_1_138 2_1_139 1_2_137 1_3_136 1_4_135 set community 0:139 route-map calculator permit 35340 match community 1_5_134 1_6_133 1_7_132 1_8_131 1_9_130 set community 0:139 route-map calculator permit 35341 match community 1_10_129 1_11_128 1_12_127 1_13_126 1_14_125 set community 0:139 route-map calculator permit 35342 match community 1_15_124 1_16_123 1_17_122 1_18_121 1_19_120 set community 0:139 route-map calculator permit 35343 match community 1_20_119 1_21_118 1_22_117 1_23_116 1_24_115 set community 0:139 route-map calculator permit 35344 match community 1_25_114 1_26_113 1_27_112 1_28_111 1_29_110 set community 0:139 route-map calculator permit 35345 match community 1_30_109 1_31_108 1_32_107 1_33_106 1_34_105 set community 0:139 route-map calculator permit 35346 match community 1_35_104 1_36_103 1_37_102 1_38_101 1_39_100 set community 0:139 route-map calculator permit 35347 match community 1_40_99 1_41_98 1_42_97 1_43_96 1_44_95 set community 0:139 route-map calculator permit 35348 match community 1_45_94 1_46_93 1_47_92 1_48_91 1_49_90 set community 0:139 route-map calculator permit 35349 match community 1_50_89 1_51_88 1_52_87 1_53_86 1_54_85 set community 0:139 route-map calculator permit 35350 match community 1_55_84 1_56_83 1_57_82 1_58_81 1_59_80 set community 0:139 route-map calculator permit 35351 match community 1_60_79 1_61_78 1_62_77 1_63_76 1_64_75 set community 0:139 route-map calculator permit 35352 match community 1_65_74 1_66_73 1_67_72 1_68_71 1_69_70 set community 0:139 route-map calculator permit 35353 match community c4_139_1 c3_140_1 c3_141_2 c3_142_3 c3_143_4 set community 0:139 route-map calculator permit 35354 match community c3_144_5 c3_145_6 c3_146_7 c3_147_8 c3_148_9 set community 0:139 route-map calculator permit 35355 match community c3_149_10 c3_150_11 c3_151_12 c3_152_13 c3_153_14 set community 0:139 route-map calculator permit 35356 match community c3_154_15 c3_155_16 c3_156_17 c3_157_18 c3_158_19 set community 0:139 route-map calculator permit 35357 match community c3_159_20 c3_160_21 c3_161_22 c3_162_23 c3_163_24 set community 0:139 route-map calculator permit 35358 match community c3_164_25 c3_165_26 c3_166_27 c3_167_28 c3_168_29 set community 0:139 route-map calculator permit 35359 match community c3_169_30 c3_170_31 c3_171_32 c3_172_33 c3_173_34 set community 0:139 route-map calculator permit 35360 match community c3_174_35 c3_175_36 c3_176_37 c3_177_38 c3_178_39 set community 0:139 route-map calculator permit 35361 match community c3_179_40 c3_180_41 c3_181_42 c3_182_43 c3_183_44 set community 0:139 route-map calculator permit 35362 match community c3_184_45 c3_185_46 c3_186_47 c3_187_48 c3_188_49 set community 0:139 route-map calculator permit 35363 match community c3_189_50 c3_190_51 c3_191_52 c3_192_53 c3_193_54 set community 0:139 route-map calculator permit 35364 match community c3_194_55 c3_195_56 c3_196_57 c3_197_58 c3_198_59 set community 0:139 route-map calculator permit 35365 match community c3_199_60 c3_200_61 c3_201_62 c3_202_63 c3_203_64 set community 0:139 route-map calculator permit 35366 match community c3_204_65 c3_205_66 c3_206_67 c3_207_68 c3_208_69 set community 0:139 route-map calculator permit 35367 match community c3_209_70 c3_210_71 c3_211_72 c3_212_73 c3_213_74 set community 0:139 route-map calculator permit 35368 match community c3_214_75 c3_215_76 c3_216_77 c3_217_78 c3_218_79 set community 0:139 route-map calculator permit 35369 match community c3_219_80 c3_220_81 c3_221_82 c3_222_83 c3_223_84 set community 0:139 route-map calculator permit 35370 match community c3_224_85 c3_225_86 c3_226_87 c3_227_88 c3_228_89 set community 0:139 route-map calculator permit 35371 match community c3_229_90 c3_230_91 c3_231_92 c3_232_93 c3_233_94 set community 0:139 route-map calculator permit 35372 match community c3_234_95 c3_235_96 c3_236_97 c3_237_98 c3_238_99 set community 0:139 route-map calculator permit 35373 match community c3_239_100 c3_240_101 c3_241_102 c3_242_103 c3_243_104 set community 0:139 route-map calculator permit 35374 match community c3_244_105 c3_245_106 c3_246_107 c3_247_108 c3_248_109 set community 0:139 route-map calculator permit 35375 match community c3_249_110 c3_250_111 c3_251_112 c3_252_113 c3_253_114 set community 0:139 route-map calculator permit 35376 match community c3_254_115 c3_255_116 c3_256_117 set community 0:139 ip community-list standard 2_166_217 permit 65000:2 0:166 0:217 route-map calculator permit 35377 match community 2_166_217 set community 0:36022 ip community-list standard 2_172_251 permit 65000:2 0:172 0:251 route-map calculator permit 35378 match community 2_172_251 set community 0:43172 ip community-list standard 2_20_205 permit 65000:2 0:20 0:205 ip community-list standard 2_25_164 permit 65000:2 0:25 0:164 ip community-list standard 2_41_100 permit 65000:2 0:41 0:100 ip community-list standard 2_50_82 permit 65000:2 0:50 0:82 route-map calculator permit 35379 match community 2_20_205 2_25_164 2_41_100 2_50_82 set community 0:4100 ip community-list standard 2_187_233 permit 65000:2 0:187 0:233 route-map calculator permit 35380 match community 2_187_233 set community 0:43571 ip community-list standard 2_3_167 permit 65000:2 0:3 0:167 ip community-list standard 1_245_256 permit 65000:1 0:245 0:256 ip community-list standard 1_246_255 permit 65000:1 0:246 0:255 ip community-list standard 1_247_254 permit 65000:1 0:247 0:254 ip community-list standard 1_248_253 permit 65000:1 0:248 0:253 ip community-list standard 1_249_252 permit 65000:1 0:249 0:252 ip community-list standard 1_250_251 permit 65000:1 0:250 0:251 route-map calculator permit 35381 match community 2_3_167 1_245_256 1_246_255 1_247_254 1_248_253 set community 0:501 route-map calculator permit 35382 match community 1_249_252 1_250_251 set community 0:501 ip community-list standard 2_179_237 permit 65000:2 0:179 0:237 route-map calculator permit 35383 match community 2_179_237 set community 0:42423 ip community-list standard 2_53_158 permit 65000:2 0:53 0:158 ip community-list standard 2_79_106 permit 65000:2 0:79 0:106 route-map calculator permit 35384 match community 2_53_158 2_79_106 set community 0:8374 ip community-list standard 2_178_216 permit 65000:2 0:178 0:216 route-map calculator permit 35385 match community 2_178_216 set community 0:38448 ip community-list standard 2_134_218 permit 65000:2 0:134 0:218 route-map calculator permit 35386 match community 2_134_218 set community 0:29212 ip community-list standard 2_158_190 permit 65000:2 0:158 0:190 route-map calculator permit 35387 match community 2_158_190 set community 0:30020 ip community-list standard 2_30_157 permit 65000:2 0:30 0:157 route-map calculator permit 35388 match community 2_30_157 set community 0:4710 ip community-list standard 2_37_77 permit 65000:2 0:37 0:77 route-map calculator permit 35389 match community 2_37_77 set community 0:2849 ip community-list standard 2_5_227 permit 65000:2 0:5 0:227 route-map calculator permit 35390 match community 2_5_227 set community 0:1135 ip community-list standard 2_43_220 permit 65000:2 0:43 0:220 ip community-list standard 2_44_215 permit 65000:2 0:44 0:215 ip community-list standard 2_55_172 permit 65000:2 0:55 0:172 ip community-list standard 2_86_110 permit 65000:2 0:86 0:110 route-map calculator permit 35391 match community 2_43_220 2_44_215 2_55_172 2_86_110 set community 0:9460 ip community-list standard 2_220_251 permit 65000:2 0:220 0:251 route-map calculator permit 35392 match community 2_220_251 set community 0:55220 ip community-list standard 2_159_173 permit 65000:2 0:159 0:173 route-map calculator permit 35393 match community 2_159_173 set community 0:27507 ip community-list standard 2_153_199 permit 65000:2 0:153 0:199 route-map calculator permit 35394 match community 2_153_199 set community 0:30447 ip community-list standard 2_29_111 permit 65000:2 0:29 0:111 ip community-list standard 2_37_87 permit 65000:2 0:37 0:87 route-map calculator permit 35395 match community 2_29_111 2_37_87 set community 0:3219 ip community-list standard 2_153_197 permit 65000:2 0:153 0:197 route-map calculator permit 35396 match community 2_153_197 set community 0:30141 ip community-list standard 2_171_233 permit 65000:2 0:171 0:233 route-map calculator permit 35397 match community 2_171_233 set community 0:39843 ip community-list standard 2_26_254 permit 65000:2 0:26 0:254 ip community-list standard 2_52_127 permit 65000:2 0:52 0:127 route-map calculator permit 35398 match community 2_26_254 2_52_127 set community 0:6604 ip community-list standard 2_73_139 permit 65000:2 0:73 0:139 route-map calculator permit 35399 match community 2_73_139 set community 0:10147 ip community-list standard 2_139_191 permit 65000:2 0:139 0:191 route-map calculator permit 35400 match community 2_139_191 set community 0:26549 ip community-list standard 2_3_103 permit 65000:2 0:3 0:103 ip community-list standard 1_53_256 permit 65000:1 0:53 0:256 ip community-list standard 1_54_255 permit 65000:1 0:54 0:255 ip community-list standard 1_55_254 permit 65000:1 0:55 0:254 ip community-list standard 1_56_253 permit 65000:1 0:56 0:253 ip community-list standard 1_57_252 permit 65000:1 0:57 0:252 ip community-list standard 1_58_251 permit 65000:1 0:58 0:251 ip community-list standard 1_59_250 permit 65000:1 0:59 0:250 ip community-list standard 1_60_249 permit 65000:1 0:60 0:249 ip community-list standard 1_61_248 permit 65000:1 0:61 0:248 ip community-list standard 1_62_247 permit 65000:1 0:62 0:247 ip community-list standard 1_63_246 permit 65000:1 0:63 0:246 ip community-list standard 1_64_245 permit 65000:1 0:64 0:245 ip community-list standard 1_65_244 permit 65000:1 0:65 0:244 ip community-list standard 1_66_243 permit 65000:1 0:66 0:243 ip community-list standard 1_67_242 permit 65000:1 0:67 0:242 ip community-list standard 1_68_241 permit 65000:1 0:68 0:241 ip community-list standard 1_69_240 permit 65000:1 0:69 0:240 ip community-list standard 1_70_239 permit 65000:1 0:70 0:239 ip community-list standard 1_71_238 permit 65000:1 0:71 0:238 ip community-list standard 1_72_237 permit 65000:1 0:72 0:237 ip community-list standard 1_73_236 permit 65000:1 0:73 0:236 ip community-list standard 1_74_235 permit 65000:1 0:74 0:235 ip community-list standard 1_75_234 permit 65000:1 0:75 0:234 ip community-list standard 1_76_233 permit 65000:1 0:76 0:233 ip community-list standard 1_77_232 permit 65000:1 0:77 0:232 ip community-list standard 1_78_231 permit 65000:1 0:78 0:231 ip community-list standard 1_79_230 permit 65000:1 0:79 0:230 ip community-list standard 1_80_229 permit 65000:1 0:80 0:229 ip community-list standard 1_81_228 permit 65000:1 0:81 0:228 ip community-list standard 1_82_227 permit 65000:1 0:82 0:227 ip community-list standard 1_83_226 permit 65000:1 0:83 0:226 ip community-list standard 1_84_225 permit 65000:1 0:84 0:225 ip community-list standard 1_85_224 permit 65000:1 0:85 0:224 ip community-list standard 1_86_223 permit 65000:1 0:86 0:223 ip community-list standard 1_87_222 permit 65000:1 0:87 0:222 ip community-list standard 1_88_221 permit 65000:1 0:88 0:221 ip community-list standard 1_89_220 permit 65000:1 0:89 0:220 ip community-list standard 1_90_219 permit 65000:1 0:90 0:219 ip community-list standard 1_91_218 permit 65000:1 0:91 0:218 ip community-list standard 1_92_217 permit 65000:1 0:92 0:217 ip community-list standard 1_93_216 permit 65000:1 0:93 0:216 ip community-list standard 1_94_215 permit 65000:1 0:94 0:215 ip community-list standard 1_95_214 permit 65000:1 0:95 0:214 ip community-list standard 1_96_213 permit 65000:1 0:96 0:213 ip community-list standard 1_97_212 permit 65000:1 0:97 0:212 ip community-list standard 1_98_211 permit 65000:1 0:98 0:211 ip community-list standard 1_99_210 permit 65000:1 0:99 0:210 ip community-list standard 1_100_209 permit 65000:1 0:100 0:209 ip community-list standard 1_101_208 permit 65000:1 0:101 0:208 ip community-list standard 1_102_207 permit 65000:1 0:102 0:207 ip community-list standard 1_103_206 permit 65000:1 0:103 0:206 ip community-list standard 1_104_205 permit 65000:1 0:104 0:205 ip community-list standard 1_105_204 permit 65000:1 0:105 0:204 ip community-list standard 1_106_203 permit 65000:1 0:106 0:203 ip community-list standard 1_107_202 permit 65000:1 0:107 0:202 ip community-list standard 1_108_201 permit 65000:1 0:108 0:201 ip community-list standard 1_109_200 permit 65000:1 0:109 0:200 ip community-list standard 1_110_199 permit 65000:1 0:110 0:199 ip community-list standard 1_111_198 permit 65000:1 0:111 0:198 ip community-list standard 1_112_197 permit 65000:1 0:112 0:197 ip community-list standard 1_113_196 permit 65000:1 0:113 0:196 ip community-list standard 1_114_195 permit 65000:1 0:114 0:195 ip community-list standard 1_115_194 permit 65000:1 0:115 0:194 ip community-list standard 1_116_193 permit 65000:1 0:116 0:193 ip community-list standard 1_117_192 permit 65000:1 0:117 0:192 ip community-list standard 1_118_191 permit 65000:1 0:118 0:191 ip community-list standard 1_119_190 permit 65000:1 0:119 0:190 ip community-list standard 1_120_189 permit 65000:1 0:120 0:189 ip community-list standard 1_121_188 permit 65000:1 0:121 0:188 ip community-list standard 1_122_187 permit 65000:1 0:122 0:187 ip community-list standard 1_123_186 permit 65000:1 0:123 0:186 ip community-list standard 1_124_185 permit 65000:1 0:124 0:185 ip community-list standard 1_125_184 permit 65000:1 0:125 0:184 ip community-list standard 1_126_183 permit 65000:1 0:126 0:183 ip community-list standard 1_127_182 permit 65000:1 0:127 0:182 ip community-list standard 1_128_181 permit 65000:1 0:128 0:181 ip community-list standard 1_129_180 permit 65000:1 0:129 0:180 ip community-list standard 1_130_179 permit 65000:1 0:130 0:179 ip community-list standard 1_131_178 permit 65000:1 0:131 0:178 ip community-list standard 1_132_177 permit 65000:1 0:132 0:177 ip community-list standard 1_133_176 permit 65000:1 0:133 0:176 ip community-list standard 1_134_175 permit 65000:1 0:134 0:175 ip community-list standard 1_135_174 permit 65000:1 0:135 0:174 ip community-list standard 1_136_173 permit 65000:1 0:136 0:173 ip community-list standard 1_137_172 permit 65000:1 0:137 0:172 ip community-list standard 1_138_171 permit 65000:1 0:138 0:171 ip community-list standard 1_139_170 permit 65000:1 0:139 0:170 ip community-list standard 1_140_169 permit 65000:1 0:140 0:169 ip community-list standard 1_141_168 permit 65000:1 0:141 0:168 ip community-list standard 1_142_167 permit 65000:1 0:142 0:167 ip community-list standard 1_143_166 permit 65000:1 0:143 0:166 ip community-list standard 1_144_165 permit 65000:1 0:144 0:165 ip community-list standard 1_145_164 permit 65000:1 0:145 0:164 ip community-list standard 1_146_163 permit 65000:1 0:146 0:163 ip community-list standard 1_147_162 permit 65000:1 0:147 0:162 ip community-list standard 1_148_161 permit 65000:1 0:148 0:161 ip community-list standard 1_149_160 permit 65000:1 0:149 0:160 ip community-list standard 1_150_159 permit 65000:1 0:150 0:159 ip community-list standard 1_151_158 permit 65000:1 0:151 0:158 ip community-list standard 1_152_157 permit 65000:1 0:152 0:157 ip community-list standard 1_153_156 permit 65000:1 0:153 0:156 ip community-list standard 1_154_155 permit 65000:1 0:154 0:155 route-map calculator permit 35401 match community 2_3_103 1_53_256 1_54_255 1_55_254 1_56_253 set community 0:309 route-map calculator permit 35402 match community 1_57_252 1_58_251 1_59_250 1_60_249 1_61_248 set community 0:309 route-map calculator permit 35403 match community 1_62_247 1_63_246 1_64_245 1_65_244 1_66_243 set community 0:309 route-map calculator permit 35404 match community 1_67_242 1_68_241 1_69_240 1_70_239 1_71_238 set community 0:309 route-map calculator permit 35405 match community 1_72_237 1_73_236 1_74_235 1_75_234 1_76_233 set community 0:309 route-map calculator permit 35406 match community 1_77_232 1_78_231 1_79_230 1_80_229 1_81_228 set community 0:309 route-map calculator permit 35407 match community 1_82_227 1_83_226 1_84_225 1_85_224 1_86_223 set community 0:309 route-map calculator permit 35408 match community 1_87_222 1_88_221 1_89_220 1_90_219 1_91_218 set community 0:309 route-map calculator permit 35409 match community 1_92_217 1_93_216 1_94_215 1_95_214 1_96_213 set community 0:309 route-map calculator permit 35410 match community 1_97_212 1_98_211 1_99_210 1_100_209 1_101_208 set community 0:309 route-map calculator permit 35411 match community 1_102_207 1_103_206 1_104_205 1_105_204 1_106_203 set community 0:309 route-map calculator permit 35412 match community 1_107_202 1_108_201 1_109_200 1_110_199 1_111_198 set community 0:309 route-map calculator permit 35413 match community 1_112_197 1_113_196 1_114_195 1_115_194 1_116_193 set community 0:309 route-map calculator permit 35414 match community 1_117_192 1_118_191 1_119_190 1_120_189 1_121_188 set community 0:309 route-map calculator permit 35415 match community 1_122_187 1_123_186 1_124_185 1_125_184 1_126_183 set community 0:309 route-map calculator permit 35416 match community 1_127_182 1_128_181 1_129_180 1_130_179 1_131_178 set community 0:309 route-map calculator permit 35417 match community 1_132_177 1_133_176 1_134_175 1_135_174 1_136_173 set community 0:309 route-map calculator permit 35418 match community 1_137_172 1_138_171 1_139_170 1_140_169 1_141_168 set community 0:309 route-map calculator permit 35419 match community 1_142_167 1_143_166 1_144_165 1_145_164 1_146_163 set community 0:309 route-map calculator permit 35420 match community 1_147_162 1_148_161 1_149_160 1_150_159 1_151_158 set community 0:309 route-map calculator permit 35421 match community 1_152_157 1_153_156 1_154_155 set community 0:309 ip community-list standard 2_23_239 permit 65000:2 0:23 0:239 route-map calculator permit 35422 match community 2_23_239 set community 0:5497 ip community-list standard 2_184_204 permit 65000:2 0:184 0:204 route-map calculator permit 35423 match community 2_184_204 set community 0:37536 ip community-list standard 2_100_250 permit 65000:2 0:100 0:250 ip community-list standard 2_125_200 permit 65000:2 0:125 0:200 route-map calculator permit 35424 match community 2_100_250 2_125_200 set community 0:25000 ip community-list standard 2_165_211 permit 65000:2 0:165 0:211 route-map calculator permit 35425 match community 2_165_211 set community 0:34815 ip community-list standard 2_22_222 permit 65000:2 0:22 0:222 ip community-list standard 2_33_148 permit 65000:2 0:33 0:148 ip community-list standard 2_37_132 permit 65000:2 0:37 0:132 ip community-list standard 2_44_111 permit 65000:2 0:44 0:111 ip community-list standard 2_66_74 permit 65000:2 0:66 0:74 route-map calculator permit 35426 match community 2_22_222 2_33_148 2_37_132 2_44_111 2_66_74 set community 0:4884 ip community-list standard 2_40_241 permit 65000:2 0:40 0:241 route-map calculator permit 35427 match community 2_40_241 set community 0:9640 ip community-list standard 2_112_230 permit 65000:2 0:112 0:230 ip community-list standard 2_115_224 permit 65000:2 0:115 0:224 ip community-list standard 2_140_184 permit 65000:2 0:140 0:184 ip community-list standard 2_160_161 permit 65000:2 0:160 0:161 route-map calculator permit 35428 match community 2_112_230 2_115_224 2_140_184 2_160_161 set community 0:25760 ip community-list standard 2_43_248 permit 65000:2 0:43 0:248 ip community-list standard 2_62_172 permit 65000:2 0:62 0:172 ip community-list standard 2_86_124 permit 65000:2 0:86 0:124 route-map calculator permit 35429 match community 2_43_248 2_62_172 2_86_124 set community 0:10664 ip community-list standard 2_74_133 permit 65000:2 0:74 0:133 route-map calculator permit 35430 match community 2_74_133 set community 0:9842 ip community-list standard 2_103_229 permit 65000:2 0:103 0:229 route-map calculator permit 35431 match community 2_103_229 set community 0:23587 ip community-list standard 2_191_222 permit 65000:2 0:191 0:222 route-map calculator permit 35432 match community 2_191_222 set community 0:42402 ip community-list standard 2_220_250 permit 65000:2 0:220 0:250 route-map calculator permit 35433 match community 2_220_250 set community 0:55000 ip community-list standard 2_199_236 permit 65000:2 0:199 0:236 route-map calculator permit 35434 match community 2_199_236 set community 0:46964 ip community-list standard 2_154_211 permit 65000:2 0:154 0:211 route-map calculator permit 35435 match community 2_154_211 set community 0:32494 ip community-list standard 2_51_241 permit 65000:2 0:51 0:241 route-map calculator permit 35436 match community 2_51_241 set community 0:12291 ip community-list standard 2_78_243 permit 65000:2 0:78 0:243 ip community-list standard 2_81_234 permit 65000:2 0:81 0:234 ip community-list standard 2_117_162 permit 65000:2 0:117 0:162 route-map calculator permit 35437 match community 2_78_243 2_81_234 2_117_162 set community 0:18954 ip community-list standard 2_6_133 permit 65000:2 0:6 0:133 ip community-list standard 2_7_114 permit 65000:2 0:7 0:114 ip community-list standard 2_14_57 permit 65000:2 0:14 0:57 ip community-list standard 2_19_42 permit 65000:2 0:19 0:42 ip community-list standard 2_21_38 permit 65000:2 0:21 0:38 route-map calculator permit 35438 match community 2_6_133 2_7_114 2_14_57 2_19_42 2_21_38 set community 0:798 ip community-list standard 2_37_129 permit 65000:2 0:37 0:129 ip community-list standard 2_43_111 permit 65000:2 0:43 0:111 route-map calculator permit 35439 match community 2_37_129 2_43_111 set community 0:4773 ip community-list standard 2_118_239 permit 65000:2 0:118 0:239 route-map calculator permit 35440 match community 2_118_239 set community 0:28202 ip community-list standard 2_129_177 permit 65000:2 0:129 0:177 route-map calculator permit 35441 match community 2_129_177 set community 0:22833 ip community-list standard 2_4_230 permit 65000:2 0:4 0:230 ip community-list standard 2_5_184 permit 65000:2 0:5 0:184 ip community-list standard 2_8_115 permit 65000:2 0:8 0:115 ip community-list standard 2_10_92 permit 65000:2 0:10 0:92 ip community-list standard 2_20_46 permit 65000:2 0:20 0:46 ip community-list standard 2_23_40 permit 65000:2 0:23 0:40 route-map calculator permit 35442 match community 2_4_230 2_5_184 2_8_115 2_10_92 2_20_46 set community 0:920 route-map calculator permit 35443 match community 2_23_40 set community 0:920 ip community-list standard 2_67_239 permit 65000:2 0:67 0:239 route-map calculator permit 35444 match community 2_67_239 set community 0:16013 ip community-list standard 2_69_182 permit 65000:2 0:69 0:182 ip community-list standard 2_78_161 permit 65000:2 0:78 0:161 ip community-list standard 2_91_138 permit 65000:2 0:91 0:138 route-map calculator permit 35445 match community 2_69_182 2_78_161 2_91_138 set community 0:12558 ip community-list standard 2_161_247 permit 65000:2 0:161 0:247 route-map calculator permit 35446 match community 2_161_247 set community 0:39767 ip community-list standard 2_43_154 permit 65000:2 0:43 0:154 ip community-list standard 2_77_86 permit 65000:2 0:77 0:86 route-map calculator permit 35447 match community 2_43_154 2_77_86 set community 0:6622 ip community-list standard 2_245_248 permit 65000:2 0:245 0:248 route-map calculator permit 35448 match community 2_245_248 set community 0:60760 ip community-list standard 2_144_179 permit 65000:2 0:144 0:179 route-map calculator permit 35449 match community 2_144_179 set community 0:25776 ip community-list standard 2_13_145 permit 65000:2 0:13 0:145 ip community-list standard 2_29_65 permit 65000:2 0:29 0:65 route-map calculator permit 35450 match community 2_13_145 2_29_65 set community 0:1885 ip community-list standard 2_155_229 permit 65000:2 0:155 0:229 route-map calculator permit 35451 match community 2_155_229 set community 0:35495 ip community-list standard 2_23_148 permit 65000:2 0:23 0:148 ip community-list standard 2_37_92 permit 65000:2 0:37 0:92 ip community-list standard 2_46_74 permit 65000:2 0:46 0:74 route-map calculator permit 35452 match community 2_23_148 2_37_92 2_46_74 set community 0:3404 ip community-list standard 2_113_231 permit 65000:2 0:113 0:231 route-map calculator permit 35453 match community 2_113_231 set community 0:26103 ip community-list standard 2_183_238 permit 65000:2 0:183 0:238 route-map calculator permit 35454 match community 2_183_238 set community 0:43554 ip community-list standard 2_85_173 permit 65000:2 0:85 0:173 route-map calculator permit 35455 match community 2_85_173 set community 0:14705 ip community-list standard 2_27_233 permit 65000:2 0:27 0:233 route-map calculator permit 35456 match community 2_27_233 set community 0:6291 ip community-list standard 2_48_251 permit 65000:2 0:48 0:251 route-map calculator permit 35457 match community 2_48_251 set community 0:12048 ip community-list standard 2_50_159 permit 65000:2 0:50 0:159 ip community-list standard 2_53_150 permit 65000:2 0:53 0:150 ip community-list standard 2_75_106 permit 65000:2 0:75 0:106 route-map calculator permit 35458 match community 2_50_159 2_53_150 2_75_106 set community 0:7950 ip community-list standard 2_198_252 permit 65000:2 0:198 0:252 ip community-list standard 2_216_231 permit 65000:2 0:216 0:231 route-map calculator permit 35459 match community 2_198_252 2_216_231 set community 0:49896 ip community-list standard 2_152_253 permit 65000:2 0:152 0:253 ip community-list standard 2_184_209 permit 65000:2 0:184 0:209 route-map calculator permit 35460 match community 2_152_253 2_184_209 set community 0:38456 ip community-list standard 2_68_232 permit 65000:2 0:68 0:232 ip community-list standard 2_116_136 permit 65000:2 0:116 0:136 route-map calculator permit 35461 match community 2_68_232 2_116_136 set community 0:15776 ip community-list standard 2_9_131 permit 65000:2 0:9 0:131 route-map calculator permit 35462 match community 2_9_131 set community 0:1179 ip community-list standard 2_70_158 permit 65000:2 0:70 0:158 ip community-list standard 2_79_140 permit 65000:2 0:79 0:140 route-map calculator permit 35463 match community 2_70_158 2_79_140 set community 0:11060 ip community-list standard 2_111_191 permit 65000:2 0:111 0:191 route-map calculator permit 35464 match community 2_111_191 set community 0:21201 ip community-list standard 2_53_237 permit 65000:2 0:53 0:237 ip community-list standard 2_79_159 permit 65000:2 0:79 0:159 route-map calculator permit 35465 match community 2_53_237 2_79_159 set community 0:12561 ip community-list standard 2_87_235 permit 65000:2 0:87 0:235 ip community-list standard 2_141_145 permit 65000:2 0:141 0:145 route-map calculator permit 35466 match community 2_87_235 2_141_145 set community 0:20445 ip community-list standard 2_33_248 permit 65000:2 0:33 0:248 ip community-list standard 2_44_186 permit 65000:2 0:44 0:186 ip community-list standard 2_62_132 permit 65000:2 0:62 0:132 ip community-list standard 2_66_124 permit 65000:2 0:66 0:124 ip community-list standard 2_88_93 permit 65000:2 0:88 0:93 route-map calculator permit 35467 match community 2_33_248 2_44_186 2_62_132 2_66_124 2_88_93 set community 0:8184 ip community-list standard 2_187_229 permit 65000:2 0:187 0:229 route-map calculator permit 35468 match community 2_187_229 set community 0:42823 ip community-list standard 2_233_255 permit 65000:2 0:233 0:255 route-map calculator permit 35469 match community 2_233_255 set community 0:59415 ip community-list standard 2_131_203 permit 65000:2 0:131 0:203 route-map calculator permit 35470 match community 2_131_203 set community 0:26593 ip community-list standard 2_8_143 permit 65000:2 0:8 0:143 ip community-list standard 2_11_104 permit 65000:2 0:11 0:104 ip community-list standard 2_13_88 permit 65000:2 0:13 0:88 ip community-list standard 2_22_52 permit 65000:2 0:22 0:52 ip community-list standard 2_26_44 permit 65000:2 0:26 0:44 route-map calculator permit 35471 match community 2_8_143 2_11_104 2_13_88 2_22_52 2_26_44 set community 0:1144 ip community-list standard 2_115_243 permit 65000:2 0:115 0:243 ip community-list standard 2_135_207 permit 65000:2 0:135 0:207 route-map calculator permit 35472 match community 2_115_243 2_135_207 set community 0:27945 ip community-list standard 2_67_95 permit 65000:2 0:67 0:95 route-map calculator permit 35473 match community 2_67_95 set community 0:6365 ip community-list standard 1_1_207 permit 65000:1 0:1 0:207 ip community-list standard 2_1_208 permit 65000:2 0:1 0:208 ip community-list standard 2_2_104 permit 65000:2 0:2 0:104 ip community-list standard 1_2_206 permit 65000:1 0:2 0:206 ip community-list standard 1_3_205 permit 65000:1 0:3 0:205 ip community-list standard 2_4_52 permit 65000:2 0:4 0:52 ip community-list standard 1_4_204 permit 65000:1 0:4 0:204 ip community-list standard 1_5_203 permit 65000:1 0:5 0:203 ip community-list standard 1_6_202 permit 65000:1 0:6 0:202 ip community-list standard 1_7_201 permit 65000:1 0:7 0:201 ip community-list standard 2_8_26 permit 65000:2 0:8 0:26 ip community-list standard 1_8_200 permit 65000:1 0:8 0:200 ip community-list standard 1_9_199 permit 65000:1 0:9 0:199 ip community-list standard 1_10_198 permit 65000:1 0:10 0:198 ip community-list standard 1_11_197 permit 65000:1 0:11 0:197 ip community-list standard 1_12_196 permit 65000:1 0:12 0:196 ip community-list standard 2_13_16 permit 65000:2 0:13 0:16 ip community-list standard 1_13_195 permit 65000:1 0:13 0:195 ip community-list standard 1_14_194 permit 65000:1 0:14 0:194 ip community-list standard 1_15_193 permit 65000:1 0:15 0:193 ip community-list standard 1_16_192 permit 65000:1 0:16 0:192 ip community-list standard 1_17_191 permit 65000:1 0:17 0:191 ip community-list standard 1_18_190 permit 65000:1 0:18 0:190 ip community-list standard 1_19_189 permit 65000:1 0:19 0:189 ip community-list standard 1_20_188 permit 65000:1 0:20 0:188 ip community-list standard 1_21_187 permit 65000:1 0:21 0:187 ip community-list standard 1_22_186 permit 65000:1 0:22 0:186 ip community-list standard 1_23_185 permit 65000:1 0:23 0:185 ip community-list standard 1_24_184 permit 65000:1 0:24 0:184 ip community-list standard 1_25_183 permit 65000:1 0:25 0:183 ip community-list standard 1_26_182 permit 65000:1 0:26 0:182 ip community-list standard 1_27_181 permit 65000:1 0:27 0:181 ip community-list standard 1_28_180 permit 65000:1 0:28 0:180 ip community-list standard 1_29_179 permit 65000:1 0:29 0:179 ip community-list standard 1_30_178 permit 65000:1 0:30 0:178 ip community-list standard 1_31_177 permit 65000:1 0:31 0:177 ip community-list standard 1_32_176 permit 65000:1 0:32 0:176 ip community-list standard 1_33_175 permit 65000:1 0:33 0:175 ip community-list standard 1_34_174 permit 65000:1 0:34 0:174 ip community-list standard 1_35_173 permit 65000:1 0:35 0:173 ip community-list standard 1_36_172 permit 65000:1 0:36 0:172 ip community-list standard 1_37_171 permit 65000:1 0:37 0:171 ip community-list standard 1_38_170 permit 65000:1 0:38 0:170 ip community-list standard 1_39_169 permit 65000:1 0:39 0:169 ip community-list standard 1_40_168 permit 65000:1 0:40 0:168 ip community-list standard 1_41_167 permit 65000:1 0:41 0:167 ip community-list standard 1_42_166 permit 65000:1 0:42 0:166 ip community-list standard 1_43_165 permit 65000:1 0:43 0:165 ip community-list standard 1_44_164 permit 65000:1 0:44 0:164 ip community-list standard 1_45_163 permit 65000:1 0:45 0:163 ip community-list standard 1_46_162 permit 65000:1 0:46 0:162 ip community-list standard 1_47_161 permit 65000:1 0:47 0:161 ip community-list standard 1_48_160 permit 65000:1 0:48 0:160 ip community-list standard 1_49_159 permit 65000:1 0:49 0:159 ip community-list standard 1_50_158 permit 65000:1 0:50 0:158 ip community-list standard 1_51_157 permit 65000:1 0:51 0:157 ip community-list standard 1_52_156 permit 65000:1 0:52 0:156 ip community-list standard 1_53_155 permit 65000:1 0:53 0:155 ip community-list standard 1_54_154 permit 65000:1 0:54 0:154 ip community-list standard 1_55_153 permit 65000:1 0:55 0:153 ip community-list standard 1_56_152 permit 65000:1 0:56 0:152 ip community-list standard 1_57_151 permit 65000:1 0:57 0:151 ip community-list standard 1_58_150 permit 65000:1 0:58 0:150 ip community-list standard 1_59_149 permit 65000:1 0:59 0:149 ip community-list standard 1_60_148 permit 65000:1 0:60 0:148 ip community-list standard 1_61_147 permit 65000:1 0:61 0:147 ip community-list standard 1_62_146 permit 65000:1 0:62 0:146 ip community-list standard 1_63_145 permit 65000:1 0:63 0:145 ip community-list standard 1_64_144 permit 65000:1 0:64 0:144 ip community-list standard 1_65_143 permit 65000:1 0:65 0:143 ip community-list standard 1_66_142 permit 65000:1 0:66 0:142 ip community-list standard 1_67_141 permit 65000:1 0:67 0:141 ip community-list standard 1_68_140 permit 65000:1 0:68 0:140 ip community-list standard 1_69_139 permit 65000:1 0:69 0:139 ip community-list standard 1_70_138 permit 65000:1 0:70 0:138 ip community-list standard 1_71_137 permit 65000:1 0:71 0:137 ip community-list standard 1_72_136 permit 65000:1 0:72 0:136 ip community-list standard 1_73_135 permit 65000:1 0:73 0:135 ip community-list standard 1_74_134 permit 65000:1 0:74 0:134 ip community-list standard 1_75_133 permit 65000:1 0:75 0:133 ip community-list standard 1_76_132 permit 65000:1 0:76 0:132 ip community-list standard 1_77_131 permit 65000:1 0:77 0:131 ip community-list standard 1_78_130 permit 65000:1 0:78 0:130 ip community-list standard 1_79_129 permit 65000:1 0:79 0:129 ip community-list standard 1_80_128 permit 65000:1 0:80 0:128 ip community-list standard 1_81_127 permit 65000:1 0:81 0:127 ip community-list standard 1_82_126 permit 65000:1 0:82 0:126 ip community-list standard 1_83_125 permit 65000:1 0:83 0:125 ip community-list standard 1_84_124 permit 65000:1 0:84 0:124 ip community-list standard 1_85_123 permit 65000:1 0:85 0:123 ip community-list standard 1_86_122 permit 65000:1 0:86 0:122 ip community-list standard 1_87_121 permit 65000:1 0:87 0:121 ip community-list standard 1_88_120 permit 65000:1 0:88 0:120 ip community-list standard 1_89_119 permit 65000:1 0:89 0:119 ip community-list standard 1_90_118 permit 65000:1 0:90 0:118 ip community-list standard 1_91_117 permit 65000:1 0:91 0:117 ip community-list standard 1_92_116 permit 65000:1 0:92 0:116 ip community-list standard 1_93_115 permit 65000:1 0:93 0:115 ip community-list standard 1_94_114 permit 65000:1 0:94 0:114 ip community-list standard 1_95_113 permit 65000:1 0:95 0:113 ip community-list standard 1_96_112 permit 65000:1 0:96 0:112 ip community-list standard 1_97_111 permit 65000:1 0:97 0:111 ip community-list standard 1_98_110 permit 65000:1 0:98 0:110 ip community-list standard 1_99_109 permit 65000:1 0:99 0:109 ip community-list standard 1_100_108 permit 65000:1 0:100 0:108 ip community-list standard 1_101_107 permit 65000:1 0:101 0:107 ip community-list standard 1_102_106 permit 65000:1 0:102 0:106 ip community-list standard 1_103_105 permit 65000:1 0:103 0:105 ip community-list standard 1_104_104 permit 65000:1 0:104 0:104 ip community-list expanded c208 permit 1 ^65000:4_0:208_0:1$ ip community-list expanded c208 permit 2 ^65000:3_0:209_0:1$ ip community-list expanded c208 permit 3 ^65000:3_0:210_0:2$ ip community-list expanded c208 permit 4 ^65000:3_0:211_0:3$ ip community-list expanded c208 permit 5 ^65000:3_0:212_0:4$ ip community-list expanded c208 permit 6 ^65000:3_0:213_0:5$ ip community-list expanded c208 permit 7 ^65000:3_0:214_0:6$ ip community-list expanded c208 permit 8 ^65000:3_0:215_0:7$ ip community-list expanded c208 permit 9 ^65000:3_0:216_0:8$ ip community-list expanded c208 permit 10 ^65000:3_0:217_0:9$ ip community-list expanded c208 permit 11 ^65000:3_0:218_0:10$ ip community-list expanded c208 permit 12 ^65000:3_0:219_0:11$ ip community-list expanded c208 permit 13 ^65000:3_0:220_0:12$ ip community-list expanded c208 permit 14 ^65000:3_0:221_0:13$ ip community-list expanded c208 permit 15 ^65000:3_0:222_0:14$ ip community-list expanded c208 permit 16 ^65000:3_0:223_0:15$ ip community-list expanded c208 permit 17 ^65000:3_0:224_0:16$ ip community-list expanded c208 permit 18 ^65000:3_0:225_0:17$ ip community-list expanded c208 permit 19 ^65000:3_0:226_0:18$ ip community-list expanded c208 permit 20 ^65000:3_0:227_0:19$ ip community-list expanded c208 permit 21 ^65000:3_0:228_0:20$ ip community-list expanded c208 permit 22 ^65000:3_0:229_0:21$ ip community-list expanded c208 permit 23 ^65000:3_0:230_0:22$ ip community-list expanded c208 permit 24 ^65000:3_0:231_0:23$ ip community-list expanded c208 permit 25 ^65000:3_0:232_0:24$ ip community-list expanded c208 permit 26 ^65000:3_0:233_0:25$ ip community-list expanded c208 permit 27 ^65000:3_0:234_0:26$ ip community-list expanded c208 permit 28 ^65000:3_0:235_0:27$ ip community-list expanded c208 permit 29 ^65000:3_0:236_0:28$ ip community-list expanded c208 permit 30 ^65000:3_0:237_0:29$ ip community-list expanded c208 permit 31 ^65000:3_0:238_0:30$ ip community-list expanded c208 permit 32 ^65000:3_0:239_0:31$ ip community-list expanded c208 permit 33 ^65000:3_0:240_0:32$ ip community-list expanded c208 permit 34 ^65000:3_0:241_0:33$ ip community-list expanded c208 permit 35 ^65000:3_0:242_0:34$ ip community-list expanded c208 permit 36 ^65000:3_0:243_0:35$ ip community-list expanded c208 permit 37 ^65000:3_0:244_0:36$ ip community-list expanded c208 permit 38 ^65000:3_0:245_0:37$ ip community-list expanded c208 permit 39 ^65000:3_0:246_0:38$ ip community-list expanded c208 permit 40 ^65000:3_0:247_0:39$ ip community-list expanded c208 permit 41 ^65000:3_0:248_0:40$ ip community-list expanded c208 permit 42 ^65000:3_0:249_0:41$ ip community-list expanded c208 permit 43 ^65000:3_0:250_0:42$ ip community-list expanded c208 permit 44 ^65000:3_0:251_0:43$ ip community-list expanded c208 permit 45 ^65000:3_0:252_0:44$ ip community-list expanded c208 permit 46 ^65000:3_0:253_0:45$ ip community-list expanded c208 permit 47 ^65000:3_0:254_0:46$ ip community-list expanded c208 permit 48 ^65000:3_0:255_0:47$ ip community-list expanded c208 permit 49 ^65000:3_0:256_0:48$ route-map calculator permit 35474 match community 1_1_207 2_1_208 2_2_104 1_2_206 1_3_205 set community 0:208 route-map calculator permit 35475 match community 2_4_52 1_4_204 1_5_203 1_6_202 1_7_201 set community 0:208 route-map calculator permit 35476 match community 2_8_26 1_8_200 1_9_199 1_10_198 1_11_197 set community 0:208 route-map calculator permit 35477 match community 1_12_196 2_13_16 1_13_195 1_14_194 1_15_193 set community 0:208 route-map calculator permit 35478 match community 1_16_192 1_17_191 1_18_190 1_19_189 1_20_188 set community 0:208 route-map calculator permit 35479 match community 1_21_187 1_22_186 1_23_185 1_24_184 1_25_183 set community 0:208 route-map calculator permit 35480 match community 1_26_182 1_27_181 1_28_180 1_29_179 1_30_178 set community 0:208 route-map calculator permit 35481 match community 1_31_177 1_32_176 1_33_175 1_34_174 1_35_173 set community 0:208 route-map calculator permit 35482 match community 1_36_172 1_37_171 1_38_170 1_39_169 1_40_168 set community 0:208 route-map calculator permit 35483 match community 1_41_167 1_42_166 1_43_165 1_44_164 1_45_163 set community 0:208 route-map calculator permit 35484 match community 1_46_162 1_47_161 1_48_160 1_49_159 1_50_158 set community 0:208 route-map calculator permit 35485 match community 1_51_157 1_52_156 1_53_155 1_54_154 1_55_153 set community 0:208 route-map calculator permit 35486 match community 1_56_152 1_57_151 1_58_150 1_59_149 1_60_148 set community 0:208 route-map calculator permit 35487 match community 1_61_147 1_62_146 1_63_145 1_64_144 1_65_143 set community 0:208 route-map calculator permit 35488 match community 1_66_142 1_67_141 1_68_140 1_69_139 1_70_138 set community 0:208 route-map calculator permit 35489 match community 1_71_137 1_72_136 1_73_135 1_74_134 1_75_133 set community 0:208 route-map calculator permit 35490 match community 1_76_132 1_77_131 1_78_130 1_79_129 1_80_128 set community 0:208 route-map calculator permit 35491 match community 1_81_127 1_82_126 1_83_125 1_84_124 1_85_123 set community 0:208 route-map calculator permit 35492 match community 1_86_122 1_87_121 1_88_120 1_89_119 1_90_118 set community 0:208 route-map calculator permit 35493 match community 1_91_117 1_92_116 1_93_115 1_94_114 1_95_113 set community 0:208 route-map calculator permit 35494 match community 1_96_112 1_97_111 1_98_110 1_99_109 1_100_108 set community 0:208 route-map calculator permit 35495 match community 1_101_107 1_102_106 1_103_105 1_104_104 c4_208_1 set community 0:208 route-map calculator permit 35496 match community c3_209_1 c3_210_2 c3_211_3 c3_212_4 c3_213_5 set community 0:208 route-map calculator permit 35497 match community c3_214_6 c3_215_7 c3_216_8 c3_217_9 c3_218_10 set community 0:208 route-map calculator permit 35498 match community c3_219_11 c3_220_12 c3_221_13 c3_222_14 c3_223_15 set community 0:208 route-map calculator permit 35499 match community c3_224_16 c3_225_17 c3_226_18 c3_227_19 c3_228_20 set community 0:208 route-map calculator permit 35500 match community c3_229_21 c3_230_22 c3_231_23 c3_232_24 c3_233_25 set community 0:208 route-map calculator permit 35501 match community c3_234_26 c3_235_27 c3_236_28 c3_237_29 c3_238_30 set community 0:208 route-map calculator permit 35502 match community c3_239_31 c3_240_32 c3_241_33 c3_242_34 c3_243_35 set community 0:208 route-map calculator permit 35503 match community c3_244_36 c3_245_37 c3_246_38 c3_247_39 c3_248_40 set community 0:208 route-map calculator permit 35504 match community c3_249_41 c3_250_42 c3_251_43 c3_252_44 c3_253_45 set community 0:208 route-map calculator permit 35505 match community c3_254_46 c3_255_47 c3_256_48 set community 0:208 ip community-list standard 1_1_224 permit 65000:1 0:1 0:224 ip community-list standard 2_1_225 permit 65000:2 0:1 0:225 ip community-list standard 1_2_223 permit 65000:1 0:2 0:223 ip community-list standard 2_3_75 permit 65000:2 0:3 0:75 ip community-list standard 1_3_222 permit 65000:1 0:3 0:222 ip community-list standard 1_4_221 permit 65000:1 0:4 0:221 ip community-list standard 2_5_45 permit 65000:2 0:5 0:45 ip community-list standard 1_5_220 permit 65000:1 0:5 0:220 ip community-list standard 1_6_219 permit 65000:1 0:6 0:219 ip community-list standard 1_7_218 permit 65000:1 0:7 0:218 ip community-list standard 1_8_217 permit 65000:1 0:8 0:217 ip community-list standard 2_9_25 permit 65000:2 0:9 0:25 ip community-list standard 1_9_216 permit 65000:1 0:9 0:216 ip community-list standard 1_10_215 permit 65000:1 0:10 0:215 ip community-list standard 1_11_214 permit 65000:1 0:11 0:214 ip community-list standard 1_12_213 permit 65000:1 0:12 0:213 ip community-list standard 1_13_212 permit 65000:1 0:13 0:212 ip community-list standard 1_14_211 permit 65000:1 0:14 0:211 ip community-list standard 2_15_15 permit 65000:2 0:15 0:15 ip community-list standard 1_15_210 permit 65000:1 0:15 0:210 ip community-list standard 1_16_209 permit 65000:1 0:16 0:209 ip community-list standard 1_17_208 permit 65000:1 0:17 0:208 ip community-list standard 1_18_207 permit 65000:1 0:18 0:207 ip community-list standard 1_19_206 permit 65000:1 0:19 0:206 ip community-list standard 1_20_205 permit 65000:1 0:20 0:205 ip community-list standard 1_21_204 permit 65000:1 0:21 0:204 ip community-list standard 1_22_203 permit 65000:1 0:22 0:203 ip community-list standard 1_23_202 permit 65000:1 0:23 0:202 ip community-list standard 1_24_201 permit 65000:1 0:24 0:201 ip community-list standard 1_25_200 permit 65000:1 0:25 0:200 ip community-list standard 1_26_199 permit 65000:1 0:26 0:199 ip community-list standard 1_27_198 permit 65000:1 0:27 0:198 ip community-list standard 1_28_197 permit 65000:1 0:28 0:197 ip community-list standard 1_29_196 permit 65000:1 0:29 0:196 ip community-list standard 1_30_195 permit 65000:1 0:30 0:195 ip community-list standard 1_31_194 permit 65000:1 0:31 0:194 ip community-list standard 1_32_193 permit 65000:1 0:32 0:193 ip community-list standard 1_33_192 permit 65000:1 0:33 0:192 ip community-list standard 1_34_191 permit 65000:1 0:34 0:191 ip community-list standard 1_35_190 permit 65000:1 0:35 0:190 ip community-list standard 1_36_189 permit 65000:1 0:36 0:189 ip community-list standard 1_37_188 permit 65000:1 0:37 0:188 ip community-list standard 1_38_187 permit 65000:1 0:38 0:187 ip community-list standard 1_39_186 permit 65000:1 0:39 0:186 ip community-list standard 1_40_185 permit 65000:1 0:40 0:185 ip community-list standard 1_41_184 permit 65000:1 0:41 0:184 ip community-list standard 1_42_183 permit 65000:1 0:42 0:183 ip community-list standard 1_43_182 permit 65000:1 0:43 0:182 ip community-list standard 1_44_181 permit 65000:1 0:44 0:181 ip community-list standard 1_45_180 permit 65000:1 0:45 0:180 ip community-list standard 1_46_179 permit 65000:1 0:46 0:179 ip community-list standard 1_47_178 permit 65000:1 0:47 0:178 ip community-list standard 1_48_177 permit 65000:1 0:48 0:177 ip community-list standard 1_49_176 permit 65000:1 0:49 0:176 ip community-list standard 1_50_175 permit 65000:1 0:50 0:175 ip community-list standard 1_51_174 permit 65000:1 0:51 0:174 ip community-list standard 1_52_173 permit 65000:1 0:52 0:173 ip community-list standard 1_53_172 permit 65000:1 0:53 0:172 ip community-list standard 1_54_171 permit 65000:1 0:54 0:171 ip community-list standard 1_55_170 permit 65000:1 0:55 0:170 ip community-list standard 1_56_169 permit 65000:1 0:56 0:169 ip community-list standard 1_57_168 permit 65000:1 0:57 0:168 ip community-list standard 1_58_167 permit 65000:1 0:58 0:167 ip community-list standard 1_59_166 permit 65000:1 0:59 0:166 ip community-list standard 1_60_165 permit 65000:1 0:60 0:165 ip community-list standard 1_61_164 permit 65000:1 0:61 0:164 ip community-list standard 1_62_163 permit 65000:1 0:62 0:163 ip community-list standard 1_63_162 permit 65000:1 0:63 0:162 ip community-list standard 1_64_161 permit 65000:1 0:64 0:161 ip community-list standard 1_65_160 permit 65000:1 0:65 0:160 ip community-list standard 1_66_159 permit 65000:1 0:66 0:159 ip community-list standard 1_67_158 permit 65000:1 0:67 0:158 ip community-list standard 1_68_157 permit 65000:1 0:68 0:157 ip community-list standard 1_69_156 permit 65000:1 0:69 0:156 ip community-list standard 1_70_155 permit 65000:1 0:70 0:155 ip community-list standard 1_71_154 permit 65000:1 0:71 0:154 ip community-list standard 1_72_153 permit 65000:1 0:72 0:153 ip community-list standard 1_73_152 permit 65000:1 0:73 0:152 ip community-list standard 1_74_151 permit 65000:1 0:74 0:151 ip community-list standard 1_75_150 permit 65000:1 0:75 0:150 ip community-list standard 1_76_149 permit 65000:1 0:76 0:149 ip community-list standard 1_77_148 permit 65000:1 0:77 0:148 ip community-list standard 1_78_147 permit 65000:1 0:78 0:147 ip community-list standard 1_79_146 permit 65000:1 0:79 0:146 ip community-list standard 1_80_145 permit 65000:1 0:80 0:145 ip community-list standard 1_81_144 permit 65000:1 0:81 0:144 ip community-list standard 1_82_143 permit 65000:1 0:82 0:143 ip community-list standard 1_83_142 permit 65000:1 0:83 0:142 ip community-list standard 1_84_141 permit 65000:1 0:84 0:141 ip community-list standard 1_85_140 permit 65000:1 0:85 0:140 ip community-list standard 1_86_139 permit 65000:1 0:86 0:139 ip community-list standard 1_87_138 permit 65000:1 0:87 0:138 ip community-list standard 1_88_137 permit 65000:1 0:88 0:137 ip community-list standard 1_89_136 permit 65000:1 0:89 0:136 ip community-list standard 1_90_135 permit 65000:1 0:90 0:135 ip community-list standard 1_91_134 permit 65000:1 0:91 0:134 ip community-list standard 1_92_133 permit 65000:1 0:92 0:133 ip community-list standard 1_93_132 permit 65000:1 0:93 0:132 ip community-list standard 1_94_131 permit 65000:1 0:94 0:131 ip community-list standard 1_95_130 permit 65000:1 0:95 0:130 ip community-list standard 1_96_129 permit 65000:1 0:96 0:129 ip community-list standard 1_97_128 permit 65000:1 0:97 0:128 ip community-list standard 1_98_127 permit 65000:1 0:98 0:127 ip community-list standard 1_99_126 permit 65000:1 0:99 0:126 ip community-list standard 1_100_125 permit 65000:1 0:100 0:125 ip community-list standard 1_101_124 permit 65000:1 0:101 0:124 ip community-list standard 1_102_123 permit 65000:1 0:102 0:123 ip community-list standard 1_103_122 permit 65000:1 0:103 0:122 ip community-list standard 1_104_121 permit 65000:1 0:104 0:121 ip community-list standard 1_105_120 permit 65000:1 0:105 0:120 ip community-list standard 1_106_119 permit 65000:1 0:106 0:119 ip community-list standard 1_107_118 permit 65000:1 0:107 0:118 ip community-list standard 1_108_117 permit 65000:1 0:108 0:117 ip community-list standard 1_109_116 permit 65000:1 0:109 0:116 ip community-list standard 1_110_115 permit 65000:1 0:110 0:115 ip community-list standard 1_111_114 permit 65000:1 0:111 0:114 ip community-list standard 1_112_113 permit 65000:1 0:112 0:113 ip community-list expanded c225 permit 1 ^65000:4_0:225_0:1$ ip community-list expanded c225 permit 2 ^65000:3_0:226_0:1$ ip community-list expanded c225 permit 3 ^65000:3_0:227_0:2$ ip community-list expanded c225 permit 4 ^65000:3_0:228_0:3$ ip community-list expanded c225 permit 5 ^65000:3_0:229_0:4$ ip community-list expanded c225 permit 6 ^65000:3_0:230_0:5$ ip community-list expanded c225 permit 7 ^65000:3_0:231_0:6$ ip community-list expanded c225 permit 8 ^65000:3_0:232_0:7$ ip community-list expanded c225 permit 9 ^65000:3_0:233_0:8$ ip community-list expanded c225 permit 10 ^65000:3_0:234_0:9$ ip community-list expanded c225 permit 11 ^65000:3_0:235_0:10$ ip community-list expanded c225 permit 12 ^65000:3_0:236_0:11$ ip community-list expanded c225 permit 13 ^65000:3_0:237_0:12$ ip community-list expanded c225 permit 14 ^65000:3_0:238_0:13$ ip community-list expanded c225 permit 15 ^65000:3_0:239_0:14$ ip community-list expanded c225 permit 16 ^65000:3_0:240_0:15$ ip community-list expanded c225 permit 17 ^65000:3_0:241_0:16$ ip community-list expanded c225 permit 18 ^65000:3_0:242_0:17$ ip community-list expanded c225 permit 19 ^65000:3_0:243_0:18$ ip community-list expanded c225 permit 20 ^65000:3_0:244_0:19$ ip community-list expanded c225 permit 21 ^65000:3_0:245_0:20$ ip community-list expanded c225 permit 22 ^65000:3_0:246_0:21$ ip community-list expanded c225 permit 23 ^65000:3_0:247_0:22$ ip community-list expanded c225 permit 24 ^65000:3_0:248_0:23$ ip community-list expanded c225 permit 25 ^65000:3_0:249_0:24$ ip community-list expanded c225 permit 26 ^65000:3_0:250_0:25$ ip community-list expanded c225 permit 27 ^65000:3_0:251_0:26$ ip community-list expanded c225 permit 28 ^65000:3_0:252_0:27$ ip community-list expanded c225 permit 29 ^65000:3_0:253_0:28$ ip community-list expanded c225 permit 30 ^65000:3_0:254_0:29$ ip community-list expanded c225 permit 31 ^65000:3_0:255_0:30$ ip community-list expanded c225 permit 32 ^65000:3_0:256_0:31$ route-map calculator permit 35506 match community 1_1_224 2_1_225 1_2_223 2_3_75 1_3_222 set community 0:225 route-map calculator permit 35507 match community 1_4_221 2_5_45 1_5_220 1_6_219 1_7_218 set community 0:225 route-map calculator permit 35508 match community 1_8_217 2_9_25 1_9_216 1_10_215 1_11_214 set community 0:225 route-map calculator permit 35509 match community 1_12_213 1_13_212 1_14_211 2_15_15 1_15_210 set community 0:225 route-map calculator permit 35510 match community 1_16_209 1_17_208 1_18_207 1_19_206 1_20_205 set community 0:225 route-map calculator permit 35511 match community 1_21_204 1_22_203 1_23_202 1_24_201 1_25_200 set community 0:225 route-map calculator permit 35512 match community 1_26_199 1_27_198 1_28_197 1_29_196 1_30_195 set community 0:225 route-map calculator permit 35513 match community 1_31_194 1_32_193 1_33_192 1_34_191 1_35_190 set community 0:225 route-map calculator permit 35514 match community 1_36_189 1_37_188 1_38_187 1_39_186 1_40_185 set community 0:225 route-map calculator permit 35515 match community 1_41_184 1_42_183 1_43_182 1_44_181 1_45_180 set community 0:225 route-map calculator permit 35516 match community 1_46_179 1_47_178 1_48_177 1_49_176 1_50_175 set community 0:225 route-map calculator permit 35517 match community 1_51_174 1_52_173 1_53_172 1_54_171 1_55_170 set community 0:225 route-map calculator permit 35518 match community 1_56_169 1_57_168 1_58_167 1_59_166 1_60_165 set community 0:225 route-map calculator permit 35519 match community 1_61_164 1_62_163 1_63_162 1_64_161 1_65_160 set community 0:225 route-map calculator permit 35520 match community 1_66_159 1_67_158 1_68_157 1_69_156 1_70_155 set community 0:225 route-map calculator permit 35521 match community 1_71_154 1_72_153 1_73_152 1_74_151 1_75_150 set community 0:225 route-map calculator permit 35522 match community 1_76_149 1_77_148 1_78_147 1_79_146 1_80_145 set community 0:225 route-map calculator permit 35523 match community 1_81_144 1_82_143 1_83_142 1_84_141 1_85_140 set community 0:225 route-map calculator permit 35524 match community 1_86_139 1_87_138 1_88_137 1_89_136 1_90_135 set community 0:225 route-map calculator permit 35525 match community 1_91_134 1_92_133 1_93_132 1_94_131 1_95_130 set community 0:225 route-map calculator permit 35526 match community 1_96_129 1_97_128 1_98_127 1_99_126 1_100_125 set community 0:225 route-map calculator permit 35527 match community 1_101_124 1_102_123 1_103_122 1_104_121 1_105_120 set community 0:225 route-map calculator permit 35528 match community 1_106_119 1_107_118 1_108_117 1_109_116 1_110_115 set community 0:225 route-map calculator permit 35529 match community 1_111_114 1_112_113 c4_225_1 c3_226_1 c3_227_2 set community 0:225 route-map calculator permit 35530 match community c3_228_3 c3_229_4 c3_230_5 c3_231_6 c3_232_7 set community 0:225 route-map calculator permit 35531 match community c3_233_8 c3_234_9 c3_235_10 c3_236_11 c3_237_12 set community 0:225 route-map calculator permit 35532 match community c3_238_13 c3_239_14 c3_240_15 c3_241_16 c3_242_17 set community 0:225 route-map calculator permit 35533 match community c3_243_18 c3_244_19 c3_245_20 c3_246_21 c3_247_22 set community 0:225 route-map calculator permit 35534 match community c3_248_23 c3_249_24 c3_250_25 c3_251_26 c3_252_27 set community 0:225 route-map calculator permit 35535 match community c3_253_28 c3_254_29 c3_255_30 c3_256_31 set community 0:225 ip community-list standard 2_47_171 permit 65000:2 0:47 0:171 ip community-list standard 2_57_141 permit 65000:2 0:57 0:141 route-map calculator permit 35536 match community 2_47_171 2_57_141 set community 0:8037 ip community-list standard 2_205_247 permit 65000:2 0:205 0:247 route-map calculator permit 35537 match community 2_205_247 set community 0:50635 ip community-list standard 1_1_44 permit 65000:1 0:1 0:44 ip community-list standard 2_1_45 permit 65000:2 0:1 0:45 ip community-list standard 1_2_43 permit 65000:1 0:2 0:43 ip community-list standard 2_3_15 permit 65000:2 0:3 0:15 ip community-list standard 1_3_42 permit 65000:1 0:3 0:42 ip community-list standard 1_4_41 permit 65000:1 0:4 0:41 ip community-list standard 2_5_9 permit 65000:2 0:5 0:9 ip community-list standard 1_5_40 permit 65000:1 0:5 0:40 ip community-list standard 1_6_39 permit 65000:1 0:6 0:39 ip community-list standard 1_7_38 permit 65000:1 0:7 0:38 ip community-list standard 1_8_37 permit 65000:1 0:8 0:37 ip community-list standard 1_9_36 permit 65000:1 0:9 0:36 ip community-list standard 1_10_35 permit 65000:1 0:10 0:35 ip community-list standard 1_11_34 permit 65000:1 0:11 0:34 ip community-list standard 1_12_33 permit 65000:1 0:12 0:33 ip community-list standard 1_13_32 permit 65000:1 0:13 0:32 ip community-list standard 1_14_31 permit 65000:1 0:14 0:31 ip community-list standard 1_15_30 permit 65000:1 0:15 0:30 ip community-list standard 1_16_29 permit 65000:1 0:16 0:29 ip community-list standard 1_17_28 permit 65000:1 0:17 0:28 ip community-list standard 1_18_27 permit 65000:1 0:18 0:27 ip community-list standard 1_19_26 permit 65000:1 0:19 0:26 ip community-list standard 1_20_25 permit 65000:1 0:20 0:25 ip community-list standard 1_21_24 permit 65000:1 0:21 0:24 ip community-list standard 1_22_23 permit 65000:1 0:22 0:23 ip community-list expanded c45 permit 1 ^65000:4_0:45_0:1$ ip community-list expanded c45 permit 2 ^65000:3_0:46_0:1$ ip community-list expanded c45 permit 3 ^65000:3_0:47_0:2$ ip community-list expanded c45 permit 4 ^65000:3_0:48_0:3$ ip community-list expanded c45 permit 5 ^65000:3_0:49_0:4$ ip community-list expanded c45 permit 6 ^65000:3_0:50_0:5$ ip community-list expanded c45 permit 7 ^65000:3_0:51_0:6$ ip community-list expanded c45 permit 8 ^65000:3_0:52_0:7$ ip community-list expanded c45 permit 9 ^65000:3_0:53_0:8$ ip community-list expanded c45 permit 10 ^65000:3_0:54_0:9$ ip community-list expanded c45 permit 11 ^65000:3_0:55_0:10$ ip community-list expanded c45 permit 12 ^65000:3_0:56_0:11$ ip community-list expanded c45 permit 13 ^65000:3_0:57_0:12$ ip community-list expanded c45 permit 14 ^65000:3_0:58_0:13$ ip community-list expanded c45 permit 15 ^65000:3_0:59_0:14$ ip community-list expanded c45 permit 16 ^65000:3_0:60_0:15$ ip community-list expanded c45 permit 17 ^65000:3_0:61_0:16$ ip community-list expanded c45 permit 18 ^65000:3_0:62_0:17$ ip community-list expanded c45 permit 19 ^65000:3_0:63_0:18$ ip community-list expanded c45 permit 20 ^65000:3_0:64_0:19$ ip community-list expanded c45 permit 21 ^65000:3_0:65_0:20$ ip community-list expanded c45 permit 22 ^65000:3_0:66_0:21$ ip community-list expanded c45 permit 23 ^65000:3_0:67_0:22$ ip community-list expanded c45 permit 24 ^65000:3_0:68_0:23$ ip community-list expanded c45 permit 25 ^65000:3_0:69_0:24$ ip community-list expanded c45 permit 26 ^65000:3_0:70_0:25$ ip community-list expanded c45 permit 27 ^65000:3_0:71_0:26$ ip community-list expanded c45 permit 28 ^65000:3_0:72_0:27$ ip community-list expanded c45 permit 29 ^65000:3_0:73_0:28$ ip community-list expanded c45 permit 30 ^65000:3_0:74_0:29$ ip community-list expanded c45 permit 31 ^65000:3_0:75_0:30$ ip community-list expanded c45 permit 32 ^65000:3_0:76_0:31$ ip community-list expanded c45 permit 33 ^65000:3_0:77_0:32$ ip community-list expanded c45 permit 34 ^65000:3_0:78_0:33$ ip community-list expanded c45 permit 35 ^65000:3_0:79_0:34$ ip community-list expanded c45 permit 36 ^65000:3_0:80_0:35$ ip community-list expanded c45 permit 37 ^65000:3_0:81_0:36$ ip community-list expanded c45 permit 38 ^65000:3_0:82_0:37$ ip community-list expanded c45 permit 39 ^65000:3_0:83_0:38$ ip community-list expanded c45 permit 40 ^65000:3_0:84_0:39$ ip community-list expanded c45 permit 41 ^65000:3_0:85_0:40$ ip community-list expanded c45 permit 42 ^65000:3_0:86_0:41$ ip community-list expanded c45 permit 43 ^65000:3_0:87_0:42$ ip community-list expanded c45 permit 44 ^65000:3_0:88_0:43$ ip community-list expanded c45 permit 45 ^65000:3_0:89_0:44$ ip community-list expanded c45 permit 46 ^65000:4_0:90_0:2$ ip community-list expanded c45 permit 47 ^65000:3_0:90_0:45$ ip community-list expanded c45 permit 48 ^65000:4_0:91_0:2$ ip community-list expanded c45 permit 49 ^65000:3_0:91_0:46$ ip community-list expanded c45 permit 50 ^65000:3_0:92_0:47$ ip community-list expanded c45 permit 51 ^65000:3_0:93_0:48$ ip community-list expanded c45 permit 52 ^65000:3_0:94_0:49$ ip community-list expanded c45 permit 53 ^65000:3_0:95_0:50$ ip community-list expanded c45 permit 54 ^65000:3_0:96_0:51$ ip community-list expanded c45 permit 55 ^65000:3_0:97_0:52$ ip community-list expanded c45 permit 56 ^65000:3_0:98_0:53$ ip community-list expanded c45 permit 57 ^65000:3_0:99_0:54$ ip community-list expanded c45 permit 58 ^65000:3_0:100_0:55$ ip community-list expanded c45 permit 59 ^65000:3_0:101_0:56$ ip community-list expanded c45 permit 60 ^65000:3_0:102_0:57$ ip community-list expanded c45 permit 61 ^65000:3_0:103_0:58$ ip community-list expanded c45 permit 62 ^65000:3_0:104_0:59$ ip community-list expanded c45 permit 63 ^65000:3_0:105_0:60$ ip community-list expanded c45 permit 64 ^65000:3_0:106_0:61$ ip community-list expanded c45 permit 65 ^65000:3_0:107_0:62$ ip community-list expanded c45 permit 66 ^65000:3_0:108_0:63$ ip community-list expanded c45 permit 67 ^65000:3_0:109_0:64$ ip community-list expanded c45 permit 68 ^65000:3_0:110_0:65$ ip community-list expanded c45 permit 69 ^65000:3_0:111_0:66$ ip community-list expanded c45 permit 70 ^65000:3_0:112_0:67$ ip community-list expanded c45 permit 71 ^65000:3_0:113_0:68$ ip community-list expanded c45 permit 72 ^65000:3_0:114_0:69$ ip community-list expanded c45 permit 73 ^65000:3_0:115_0:70$ ip community-list expanded c45 permit 74 ^65000:3_0:116_0:71$ ip community-list expanded c45 permit 75 ^65000:3_0:117_0:72$ ip community-list expanded c45 permit 76 ^65000:3_0:118_0:73$ ip community-list expanded c45 permit 77 ^65000:3_0:119_0:74$ ip community-list expanded c45 permit 78 ^65000:3_0:120_0:75$ ip community-list expanded c45 permit 79 ^65000:3_0:121_0:76$ ip community-list expanded c45 permit 80 ^65000:3_0:122_0:77$ ip community-list expanded c45 permit 81 ^65000:3_0:123_0:78$ ip community-list expanded c45 permit 82 ^65000:3_0:124_0:79$ ip community-list expanded c45 permit 83 ^65000:3_0:125_0:80$ ip community-list expanded c45 permit 84 ^65000:3_0:126_0:81$ ip community-list expanded c45 permit 85 ^65000:3_0:127_0:82$ ip community-list expanded c45 permit 86 ^65000:3_0:128_0:83$ ip community-list expanded c45 permit 87 ^65000:3_0:129_0:84$ ip community-list expanded c45 permit 88 ^65000:3_0:130_0:85$ ip community-list expanded c45 permit 89 ^65000:3_0:131_0:86$ ip community-list expanded c45 permit 90 ^65000:3_0:132_0:87$ ip community-list expanded c45 permit 91 ^65000:3_0:133_0:88$ ip community-list expanded c45 permit 92 ^65000:3_0:134_0:89$ ip community-list expanded c45 permit 93 ^65000:4_0:135_0:3$ ip community-list expanded c45 permit 94 ^65000:3_0:135_0:90$ ip community-list expanded c45 permit 95 ^65000:4_0:136_0:3$ ip community-list expanded c45 permit 96 ^65000:3_0:136_0:91$ ip community-list expanded c45 permit 97 ^65000:4_0:137_0:3$ ip community-list expanded c45 permit 98 ^65000:3_0:137_0:92$ ip community-list expanded c45 permit 99 ^65000:3_0:138_0:93$ ip community-list expanded c45 permit 100 ^65000:3_0:139_0:94$ ip community-list expanded c45 permit 101 ^65000:3_0:140_0:95$ ip community-list expanded c45 permit 102 ^65000:3_0:141_0:96$ ip community-list expanded c45 permit 103 ^65000:3_0:142_0:97$ ip community-list expanded c45 permit 104 ^65000:3_0:143_0:98$ ip community-list expanded c45 permit 105 ^65000:3_0:144_0:99$ ip community-list expanded c45 permit 106 ^65000:3_0:145_0:100$ ip community-list expanded c45 permit 107 ^65000:3_0:146_0:101$ ip community-list expanded c45 permit 108 ^65000:3_0:147_0:102$ ip community-list expanded c45 permit 109 ^65000:3_0:148_0:103$ ip community-list expanded c45 permit 110 ^65000:3_0:149_0:104$ ip community-list expanded c45 permit 111 ^65000:3_0:150_0:105$ ip community-list expanded c45 permit 112 ^65000:3_0:151_0:106$ ip community-list expanded c45 permit 113 ^65000:3_0:152_0:107$ ip community-list expanded c45 permit 114 ^65000:3_0:153_0:108$ ip community-list expanded c45 permit 115 ^65000:3_0:154_0:109$ ip community-list expanded c45 permit 116 ^65000:3_0:155_0:110$ ip community-list expanded c45 permit 117 ^65000:3_0:156_0:111$ ip community-list expanded c45 permit 118 ^65000:3_0:157_0:112$ ip community-list expanded c45 permit 119 ^65000:3_0:158_0:113$ ip community-list expanded c45 permit 120 ^65000:3_0:159_0:114$ ip community-list expanded c45 permit 121 ^65000:3_0:160_0:115$ ip community-list expanded c45 permit 122 ^65000:3_0:161_0:116$ ip community-list expanded c45 permit 123 ^65000:3_0:162_0:117$ ip community-list expanded c45 permit 124 ^65000:3_0:163_0:118$ ip community-list expanded c45 permit 125 ^65000:3_0:164_0:119$ ip community-list expanded c45 permit 126 ^65000:3_0:165_0:120$ ip community-list expanded c45 permit 127 ^65000:3_0:166_0:121$ ip community-list expanded c45 permit 128 ^65000:3_0:167_0:122$ ip community-list expanded c45 permit 129 ^65000:3_0:168_0:123$ ip community-list expanded c45 permit 130 ^65000:3_0:169_0:124$ ip community-list expanded c45 permit 131 ^65000:3_0:170_0:125$ ip community-list expanded c45 permit 132 ^65000:3_0:171_0:126$ ip community-list expanded c45 permit 133 ^65000:3_0:172_0:127$ ip community-list expanded c45 permit 134 ^65000:3_0:173_0:128$ ip community-list expanded c45 permit 135 ^65000:3_0:174_0:129$ ip community-list expanded c45 permit 136 ^65000:3_0:175_0:130$ ip community-list expanded c45 permit 137 ^65000:3_0:176_0:131$ ip community-list expanded c45 permit 138 ^65000:3_0:177_0:132$ ip community-list expanded c45 permit 139 ^65000:3_0:178_0:133$ ip community-list expanded c45 permit 140 ^65000:3_0:179_0:134$ ip community-list expanded c45 permit 141 ^65000:4_0:180_0:4$ ip community-list expanded c45 permit 142 ^65000:3_0:180_0:135$ ip community-list expanded c45 permit 143 ^65000:4_0:181_0:4$ ip community-list expanded c45 permit 144 ^65000:3_0:181_0:136$ ip community-list expanded c45 permit 145 ^65000:4_0:182_0:4$ ip community-list expanded c45 permit 146 ^65000:3_0:182_0:137$ ip community-list expanded c45 permit 147 ^65000:4_0:183_0:4$ ip community-list expanded c45 permit 148 ^65000:3_0:183_0:138$ ip community-list expanded c45 permit 149 ^65000:3_0:184_0:139$ ip community-list expanded c45 permit 150 ^65000:3_0:185_0:140$ ip community-list expanded c45 permit 151 ^65000:3_0:186_0:141$ ip community-list expanded c45 permit 152 ^65000:3_0:187_0:142$ ip community-list expanded c45 permit 153 ^65000:3_0:188_0:143$ ip community-list expanded c45 permit 154 ^65000:3_0:189_0:144$ ip community-list expanded c45 permit 155 ^65000:3_0:190_0:145$ ip community-list expanded c45 permit 156 ^65000:3_0:191_0:146$ ip community-list expanded c45 permit 157 ^65000:3_0:192_0:147$ ip community-list expanded c45 permit 158 ^65000:3_0:193_0:148$ ip community-list expanded c45 permit 159 ^65000:3_0:194_0:149$ ip community-list expanded c45 permit 160 ^65000:3_0:195_0:150$ ip community-list expanded c45 permit 161 ^65000:3_0:196_0:151$ ip community-list expanded c45 permit 162 ^65000:3_0:197_0:152$ ip community-list expanded c45 permit 163 ^65000:3_0:198_0:153$ ip community-list expanded c45 permit 164 ^65000:3_0:199_0:154$ ip community-list expanded c45 permit 165 ^65000:3_0:200_0:155$ ip community-list expanded c45 permit 166 ^65000:3_0:201_0:156$ ip community-list expanded c45 permit 167 ^65000:3_0:202_0:157$ ip community-list expanded c45 permit 168 ^65000:3_0:203_0:158$ ip community-list expanded c45 permit 169 ^65000:3_0:204_0:159$ ip community-list expanded c45 permit 170 ^65000:3_0:205_0:160$ ip community-list expanded c45 permit 171 ^65000:3_0:206_0:161$ ip community-list expanded c45 permit 172 ^65000:3_0:207_0:162$ ip community-list expanded c45 permit 173 ^65000:3_0:208_0:163$ ip community-list expanded c45 permit 174 ^65000:3_0:209_0:164$ ip community-list expanded c45 permit 175 ^65000:3_0:210_0:165$ ip community-list expanded c45 permit 176 ^65000:3_0:211_0:166$ ip community-list expanded c45 permit 177 ^65000:3_0:212_0:167$ ip community-list expanded c45 permit 178 ^65000:3_0:213_0:168$ ip community-list expanded c45 permit 179 ^65000:3_0:214_0:169$ ip community-list expanded c45 permit 180 ^65000:3_0:215_0:170$ ip community-list expanded c45 permit 181 ^65000:3_0:216_0:171$ ip community-list expanded c45 permit 182 ^65000:3_0:217_0:172$ ip community-list expanded c45 permit 183 ^65000:3_0:218_0:173$ ip community-list expanded c45 permit 184 ^65000:3_0:219_0:174$ ip community-list expanded c45 permit 185 ^65000:3_0:220_0:175$ ip community-list expanded c45 permit 186 ^65000:3_0:221_0:176$ ip community-list expanded c45 permit 187 ^65000:3_0:222_0:177$ ip community-list expanded c45 permit 188 ^65000:3_0:223_0:178$ ip community-list expanded c45 permit 189 ^65000:3_0:224_0:179$ ip community-list expanded c45 permit 190 ^65000:4_0:225_0:5$ ip community-list expanded c45 permit 191 ^65000:3_0:225_0:180$ ip community-list expanded c45 permit 192 ^65000:4_0:226_0:5$ ip community-list expanded c45 permit 193 ^65000:3_0:226_0:181$ ip community-list expanded c45 permit 194 ^65000:4_0:227_0:5$ ip community-list expanded c45 permit 195 ^65000:3_0:227_0:182$ ip community-list expanded c45 permit 196 ^65000:4_0:228_0:5$ ip community-list expanded c45 permit 197 ^65000:3_0:228_0:183$ ip community-list expanded c45 permit 198 ^65000:4_0:229_0:5$ ip community-list expanded c45 permit 199 ^65000:3_0:229_0:184$ ip community-list expanded c45 permit 200 ^65000:3_0:230_0:185$ ip community-list expanded c45 permit 201 ^65000:3_0:231_0:186$ ip community-list expanded c45 permit 202 ^65000:3_0:232_0:187$ ip community-list expanded c45 permit 203 ^65000:3_0:233_0:188$ ip community-list expanded c45 permit 204 ^65000:3_0:234_0:189$ ip community-list expanded c45 permit 205 ^65000:3_0:235_0:190$ ip community-list expanded c45 permit 206 ^65000:3_0:236_0:191$ ip community-list expanded c45 permit 207 ^65000:3_0:237_0:192$ ip community-list expanded c45 permit 208 ^65000:3_0:238_0:193$ ip community-list expanded c45 permit 209 ^65000:3_0:239_0:194$ ip community-list expanded c45 permit 210 ^65000:3_0:240_0:195$ ip community-list expanded c45 permit 211 ^65000:3_0:241_0:196$ ip community-list expanded c45 permit 212 ^65000:3_0:242_0:197$ ip community-list expanded c45 permit 213 ^65000:3_0:243_0:198$ ip community-list expanded c45 permit 214 ^65000:3_0:244_0:199$ ip community-list expanded c45 permit 215 ^65000:3_0:245_0:200$ ip community-list expanded c45 permit 216 ^65000:3_0:246_0:201$ ip community-list expanded c45 permit 217 ^65000:3_0:247_0:202$ ip community-list expanded c45 permit 218 ^65000:3_0:248_0:203$ ip community-list expanded c45 permit 219 ^65000:3_0:249_0:204$ ip community-list expanded c45 permit 220 ^65000:3_0:250_0:205$ ip community-list expanded c45 permit 221 ^65000:3_0:251_0:206$ ip community-list expanded c45 permit 222 ^65000:3_0:252_0:207$ ip community-list expanded c45 permit 223 ^65000:3_0:253_0:208$ ip community-list expanded c45 permit 224 ^65000:3_0:254_0:209$ ip community-list expanded c45 permit 225 ^65000:3_0:255_0:210$ ip community-list expanded c45 permit 226 ^65000:3_0:256_0:211$ route-map calculator permit 35538 match community 1_1_44 2_1_45 1_2_43 2_3_15 1_3_42 set community 0:45 route-map calculator permit 35539 match community 1_4_41 2_5_9 1_5_40 1_6_39 1_7_38 set community 0:45 route-map calculator permit 35540 match community 1_8_37 1_9_36 1_10_35 1_11_34 1_12_33 set community 0:45 route-map calculator permit 35541 match community 1_13_32 1_14_31 1_15_30 1_16_29 1_17_28 set community 0:45 route-map calculator permit 35542 match community 1_18_27 1_19_26 1_20_25 1_21_24 1_22_23 set community 0:45 route-map calculator permit 35543 match community c4_45_1 c3_46_1 c3_47_2 c3_48_3 c3_49_4 set community 0:45 route-map calculator permit 35544 match community c3_50_5 c3_51_6 c3_52_7 c3_53_8 c3_54_9 set community 0:45 route-map calculator permit 35545 match community c3_55_10 c3_56_11 c3_57_12 c3_58_13 c3_59_14 set community 0:45 route-map calculator permit 35546 match community c3_60_15 c3_61_16 c3_62_17 c3_63_18 c3_64_19 set community 0:45 route-map calculator permit 35547 match community c3_65_20 c3_66_21 c3_67_22 c3_68_23 c3_69_24 set community 0:45 route-map calculator permit 35548 match community c3_70_25 c3_71_26 c3_72_27 c3_73_28 c3_74_29 set community 0:45 route-map calculator permit 35549 match community c3_75_30 c3_76_31 c3_77_32 c3_78_33 c3_79_34 set community 0:45 route-map calculator permit 35550 match community c3_80_35 c3_81_36 c3_82_37 c3_83_38 c3_84_39 set community 0:45 route-map calculator permit 35551 match community c3_85_40 c3_86_41 c3_87_42 c3_88_43 c3_89_44 set community 0:45 route-map calculator permit 35552 match community c4_90_2 c3_90_45 c4_91_2 c3_91_46 c3_92_47 set community 0:45 route-map calculator permit 35553 match community c3_93_48 c3_94_49 c3_95_50 c3_96_51 c3_97_52 set community 0:45 route-map calculator permit 35554 match community c3_98_53 c3_99_54 c3_100_55 c3_101_56 c3_102_57 set community 0:45 route-map calculator permit 35555 match community c3_103_58 c3_104_59 c3_105_60 c3_106_61 c3_107_62 set community 0:45 route-map calculator permit 35556 match community c3_108_63 c3_109_64 c3_110_65 c3_111_66 c3_112_67 set community 0:45 route-map calculator permit 35557 match community c3_113_68 c3_114_69 c3_115_70 c3_116_71 c3_117_72 set community 0:45 route-map calculator permit 35558 match community c3_118_73 c3_119_74 c3_120_75 c3_121_76 c3_122_77 set community 0:45 route-map calculator permit 35559 match community c3_123_78 c3_124_79 c3_125_80 c3_126_81 c3_127_82 set community 0:45 route-map calculator permit 35560 match community c3_128_83 c3_129_84 c3_130_85 c3_131_86 c3_132_87 set community 0:45 route-map calculator permit 35561 match community c3_133_88 c3_134_89 c4_135_3 c3_135_90 c4_136_3 set community 0:45 route-map calculator permit 35562 match community c3_136_91 c4_137_3 c3_137_92 c3_138_93 c3_139_94 set community 0:45 route-map calculator permit 35563 match community c3_140_95 c3_141_96 c3_142_97 c3_143_98 c3_144_99 set community 0:45 route-map calculator permit 35564 match community c3_145_100 c3_146_101 c3_147_102 c3_148_103 c3_149_104 set community 0:45 route-map calculator permit 35565 match community c3_150_105 c3_151_106 c3_152_107 c3_153_108 c3_154_109 set community 0:45 route-map calculator permit 35566 match community c3_155_110 c3_156_111 c3_157_112 c3_158_113 c3_159_114 set community 0:45 route-map calculator permit 35567 match community c3_160_115 c3_161_116 c3_162_117 c3_163_118 c3_164_119 set community 0:45 route-map calculator permit 35568 match community c3_165_120 c3_166_121 c3_167_122 c3_168_123 c3_169_124 set community 0:45 route-map calculator permit 35569 match community c3_170_125 c3_171_126 c3_172_127 c3_173_128 c3_174_129 set community 0:45 route-map calculator permit 35570 match community c3_175_130 c3_176_131 c3_177_132 c3_178_133 c3_179_134 set community 0:45 route-map calculator permit 35571 match community c4_180_4 c3_180_135 c4_181_4 c3_181_136 c4_182_4 set community 0:45 route-map calculator permit 35572 match community c3_182_137 c4_183_4 c3_183_138 c3_184_139 c3_185_140 set community 0:45 route-map calculator permit 35573 match community c3_186_141 c3_187_142 c3_188_143 c3_189_144 c3_190_145 set community 0:45 route-map calculator permit 35574 match community c3_191_146 c3_192_147 c3_193_148 c3_194_149 c3_195_150 set community 0:45 route-map calculator permit 35575 match community c3_196_151 c3_197_152 c3_198_153 c3_199_154 c3_200_155 set community 0:45 route-map calculator permit 35576 match community c3_201_156 c3_202_157 c3_203_158 c3_204_159 c3_205_160 set community 0:45 route-map calculator permit 35577 match community c3_206_161 c3_207_162 c3_208_163 c3_209_164 c3_210_165 set community 0:45 route-map calculator permit 35578 match community c3_211_166 c3_212_167 c3_213_168 c3_214_169 c3_215_170 set community 0:45 route-map calculator permit 35579 match community c3_216_171 c3_217_172 c3_218_173 c3_219_174 c3_220_175 set community 0:45 route-map calculator permit 35580 match community c3_221_176 c3_222_177 c3_223_178 c3_224_179 c4_225_5 set community 0:45 route-map calculator permit 35581 match community c3_225_180 c4_226_5 c3_226_181 c4_227_5 c3_227_182 set community 0:45 route-map calculator permit 35582 match community c4_228_5 c3_228_183 c4_229_5 c3_229_184 c3_230_185 set community 0:45 route-map calculator permit 35583 match community c3_231_186 c3_232_187 c3_233_188 c3_234_189 c3_235_190 set community 0:45 route-map calculator permit 35584 match community c3_236_191 c3_237_192 c3_238_193 c3_239_194 c3_240_195 set community 0:45 route-map calculator permit 35585 match community c3_241_196 c3_242_197 c3_243_198 c3_244_199 c3_245_200 set community 0:45 route-map calculator permit 35586 match community c3_246_201 c3_247_202 c3_248_203 c3_249_204 c3_250_205 set community 0:45 route-map calculator permit 35587 match community c3_251_206 c3_252_207 c3_253_208 c3_254_209 c3_255_210 set community 0:45 route-map calculator permit 35588 match community c3_256_211 set community 0:45 ip community-list standard 2_71_146 permit 65000:2 0:71 0:146 ip community-list standard 2_73_142 permit 65000:2 0:73 0:142 route-map calculator permit 35589 match community 2_71_146 2_73_142 set community 0:10366 ip community-list standard 2_102_207 permit 65000:2 0:102 0:207 ip community-list standard 2_138_153 permit 65000:2 0:138 0:153 route-map calculator permit 35590 match community 2_102_207 2_138_153 set community 0:21114 ip community-list standard 2_94_232 permit 65000:2 0:94 0:232 ip community-list standard 2_116_188 permit 65000:2 0:116 0:188 route-map calculator permit 35591 match community 2_94_232 2_116_188 set community 0:21808 ip community-list standard 2_228_255 permit 65000:2 0:228 0:255 route-map calculator permit 35592 match community 2_228_255 set community 0:58140 ip community-list standard 2_86_242 permit 65000:2 0:86 0:242 ip community-list standard 2_121_172 permit 65000:2 0:121 0:172 route-map calculator permit 35593 match community 2_86_242 2_121_172 set community 0:20812 ip community-list standard 2_169_185 permit 65000:2 0:169 0:185 route-map calculator permit 35594 match community 2_169_185 set community 0:31265 ip community-list standard 2_53_53 permit 65000:2 0:53 0:53 route-map calculator permit 35595 match community 2_53_53 set community 0:2809 ip community-list standard 2_150_250 permit 65000:2 0:150 0:250 route-map calculator permit 35596 match community 2_150_250 set community 0:37500 ip community-list standard 2_82_202 permit 65000:2 0:82 0:202 ip community-list standard 2_101_164 permit 65000:2 0:101 0:164 route-map calculator permit 35597 match community 2_82_202 2_101_164 set community 0:16564 ip community-list standard 2_87_215 permit 65000:2 0:87 0:215 ip community-list standard 2_129_145 permit 65000:2 0:129 0:145 route-map calculator permit 35598 match community 2_87_215 2_129_145 set community 0:18705 ip community-list standard 2_172_209 permit 65000:2 0:172 0:209 route-map calculator permit 35599 match community 2_172_209 set community 0:35948 ip community-list standard 2_202_229 permit 65000:2 0:202 0:229 route-map calculator permit 35600 match community 2_202_229 set community 0:46258 ip community-list standard 2_38_231 permit 65000:2 0:38 0:231 ip community-list standard 2_42_209 permit 65000:2 0:42 0:209 ip community-list standard 2_57_154 permit 65000:2 0:57 0:154 ip community-list standard 2_66_133 permit 65000:2 0:66 0:133 ip community-list standard 2_77_114 permit 65000:2 0:77 0:114 route-map calculator permit 35601 match community 2_38_231 2_42_209 2_57_154 2_66_133 2_77_114 set community 0:8778 ip community-list standard 2_81_188 permit 65000:2 0:81 0:188 ip community-list standard 2_94_162 permit 65000:2 0:94 0:162 ip community-list standard 2_108_141 permit 65000:2 0:108 0:141 route-map calculator permit 35602 match community 2_81_188 2_94_162 2_108_141 set community 0:15228 ip community-list standard 2_166_190 permit 65000:2 0:166 0:190 route-map calculator permit 35603 match community 2_166_190 set community 0:31540 ip community-list standard 2_157_193 permit 65000:2 0:157 0:193 route-map calculator permit 35604 match community 2_157_193 set community 0:30301 ip community-list standard 2_39_181 permit 65000:2 0:39 0:181 route-map calculator permit 35605 match community 2_39_181 set community 0:7059 ip community-list standard 2_117_213 permit 65000:2 0:117 0:213 route-map calculator permit 35606 match community 2_117_213 set community 0:24921 ip community-list standard 2_14_225 permit 65000:2 0:14 0:225 ip community-list standard 2_15_210 permit 65000:2 0:15 0:210 ip community-list standard 2_18_175 permit 65000:2 0:18 0:175 ip community-list standard 2_21_150 permit 65000:2 0:21 0:150 ip community-list standard 2_25_126 permit 65000:2 0:25 0:126 ip community-list standard 2_30_105 permit 65000:2 0:30 0:105 ip community-list standard 2_35_90 permit 65000:2 0:35 0:90 ip community-list standard 2_42_75 permit 65000:2 0:42 0:75 ip community-list standard 2_45_70 permit 65000:2 0:45 0:70 ip community-list standard 2_50_63 permit 65000:2 0:50 0:63 route-map calculator permit 35607 match community 2_14_225 2_15_210 2_18_175 2_21_150 2_25_126 set community 0:3150 route-map calculator permit 35608 match community 2_30_105 2_35_90 2_42_75 2_45_70 2_50_63 set community 0:3150 ip community-list standard 2_230_238 permit 65000:2 0:230 0:238 route-map calculator permit 35609 match community 2_230_238 set community 0:54740 ip community-list standard 2_37_146 permit 65000:2 0:37 0:146 ip community-list standard 2_73_74 permit 65000:2 0:73 0:74 route-map calculator permit 35610 match community 2_37_146 2_73_74 set community 0:5402 ip community-list standard 2_88_236 permit 65000:2 0:88 0:236 ip community-list standard 2_118_176 permit 65000:2 0:118 0:176 route-map calculator permit 35611 match community 2_88_236 2_118_176 set community 0:20768 ip community-list standard 2_41_123 permit 65000:2 0:41 0:123 route-map calculator permit 35612 match community 2_41_123 set community 0:5043 ip community-list standard 2_124_173 permit 65000:2 0:124 0:173 route-map calculator permit 35613 match community 2_124_173 set community 0:21452 ip community-list standard 2_147_242 permit 65000:2 0:147 0:242 ip community-list standard 2_154_231 permit 65000:2 0:154 0:231 route-map calculator permit 35614 match community 2_147_242 2_154_231 set community 0:35574 ip community-list standard 2_151_237 permit 65000:2 0:151 0:237 route-map calculator permit 35615 match community 2_151_237 set community 0:35787 ip community-list standard 2_13_193 permit 65000:2 0:13 0:193 route-map calculator permit 35616 match community 2_13_193 set community 0:2509 ip community-list standard 2_38_240 permit 65000:2 0:38 0:240 ip community-list standard 2_40_228 permit 65000:2 0:40 0:228 ip community-list standard 2_48_190 permit 65000:2 0:48 0:190 ip community-list standard 2_57_160 permit 65000:2 0:57 0:160 ip community-list standard 2_60_152 permit 65000:2 0:60 0:152 ip community-list standard 2_76_120 permit 65000:2 0:76 0:120 ip community-list standard 2_80_114 permit 65000:2 0:80 0:114 ip community-list standard 2_95_96 permit 65000:2 0:95 0:96 route-map calculator permit 35617 match community 2_38_240 2_40_228 2_48_190 2_57_160 2_60_152 set community 0:9120 route-map calculator permit 35618 match community 2_76_120 2_80_114 2_95_96 set community 0:9120 ip community-list standard 2_86_193 permit 65000:2 0:86 0:193 route-map calculator permit 35619 match community 2_86_193 set community 0:16598 ip community-list standard 2_56_178 permit 65000:2 0:56 0:178 ip community-list standard 2_89_112 permit 65000:2 0:89 0:112 route-map calculator permit 35620 match community 2_56_178 2_89_112 set community 0:9968 ip community-list standard 2_126_249 permit 65000:2 0:126 0:249 ip community-list standard 2_166_189 permit 65000:2 0:166 0:189 route-map calculator permit 35621 match community 2_126_249 2_166_189 set community 0:31374 ip community-list standard 2_28_137 permit 65000:2 0:28 0:137 route-map calculator permit 35622 match community 2_28_137 set community 0:3836 ip community-list standard 2_211_220 permit 65000:2 0:211 0:220 route-map calculator permit 35623 match community 2_211_220 set community 0:46420 ip community-list standard 2_66_237 permit 65000:2 0:66 0:237 ip community-list standard 2_79_198 permit 65000:2 0:79 0:198 ip community-list standard 2_99_158 permit 65000:2 0:99 0:158 route-map calculator permit 35624 match community 2_66_237 2_79_198 2_99_158 set community 0:15642 ip community-list standard 2_6_252 permit 65000:2 0:6 0:252 ip community-list standard 2_7_216 permit 65000:2 0:7 0:216 ip community-list standard 2_8_189 permit 65000:2 0:8 0:189 ip community-list standard 2_9_168 permit 65000:2 0:9 0:168 ip community-list standard 2_12_126 permit 65000:2 0:12 0:126 ip community-list standard 2_14_108 permit 65000:2 0:14 0:108 ip community-list standard 2_18_84 permit 65000:2 0:18 0:84 ip community-list standard 2_21_72 permit 65000:2 0:21 0:72 ip community-list standard 2_24_63 permit 65000:2 0:24 0:63 ip community-list standard 2_27_56 permit 65000:2 0:27 0:56 ip community-list standard 2_28_54 permit 65000:2 0:28 0:54 ip community-list standard 2_36_42 permit 65000:2 0:36 0:42 route-map calculator permit 35625 match community 2_6_252 2_7_216 2_8_189 2_9_168 2_12_126 set community 0:1512 route-map calculator permit 35626 match community 2_14_108 2_18_84 2_21_72 2_24_63 2_27_56 set community 0:1512 route-map calculator permit 35627 match community 2_28_54 2_36_42 set community 0:1512 ip community-list standard 2_220_226 permit 65000:2 0:220 0:226 route-map calculator permit 35628 match community 2_220_226 set community 0:49720 ip community-list standard 2_123_139 permit 65000:2 0:123 0:139 route-map calculator permit 35629 match community 2_123_139 set community 0:17097 ip community-list standard 2_114_249 permit 65000:2 0:114 0:249 ip community-list standard 2_166_171 permit 65000:2 0:166 0:171 route-map calculator permit 35630 match community 2_114_249 2_166_171 set community 0:28386 ip community-list standard 2_135_191 permit 65000:2 0:135 0:191 route-map calculator permit 35631 match community 2_135_191 set community 0:25785 ip community-list standard 2_5_214 permit 65000:2 0:5 0:214 ip community-list standard 2_10_107 permit 65000:2 0:10 0:107 route-map calculator permit 35632 match community 2_5_214 2_10_107 set community 0:1070 ip community-list standard 2_43_199 permit 65000:2 0:43 0:199 route-map calculator permit 35633 match community 2_43_199 set community 0:8557 ip community-list standard 2_112_235 permit 65000:2 0:112 0:235 ip community-list standard 2_140_188 permit 65000:2 0:140 0:188 route-map calculator permit 35634 match community 2_112_235 2_140_188 set community 0:26320 ip community-list standard 2_72_241 permit 65000:2 0:72 0:241 route-map calculator permit 35635 match community 2_72_241 set community 0:17352 ip community-list standard 2_141_193 permit 65000:2 0:141 0:193 route-map calculator permit 35636 match community 2_141_193 set community 0:27213 ip community-list standard 2_46_179 permit 65000:2 0:46 0:179 route-map calculator permit 35637 match community 2_46_179 set community 0:8234 ip community-list standard 2_63_223 permit 65000:2 0:63 0:223 route-map calculator permit 35638 match community 2_63_223 set community 0:14049 ip community-list standard 2_108_255 permit 65000:2 0:108 0:255 ip community-list standard 2_135_204 permit 65000:2 0:135 0:204 ip community-list standard 2_153_180 permit 65000:2 0:153 0:180 ip community-list standard 2_162_170 permit 65000:2 0:162 0:170 route-map calculator permit 35639 match community 2_108_255 2_135_204 2_153_180 2_162_170 set community 0:27540 ip community-list standard 2_53_151 permit 65000:2 0:53 0:151 route-map calculator permit 35640 match community 2_53_151 set community 0:8003 ip community-list standard 2_101_234 permit 65000:2 0:101 0:234 ip community-list standard 2_117_202 permit 65000:2 0:117 0:202 route-map calculator permit 35641 match community 2_101_234 2_117_202 set community 0:23634 ip community-list standard 2_93_183 permit 65000:2 0:93 0:183 route-map calculator permit 35642 match community 2_93_183 set community 0:17019 ip community-list standard 2_45_179 permit 65000:2 0:45 0:179 route-map calculator permit 35643 match community 2_45_179 set community 0:8055 ip community-list standard 2_3_111 permit 65000:2 0:3 0:111 ip community-list standard 2_9_37 permit 65000:2 0:9 0:37 ip community-list standard 1_77_256 permit 65000:1 0:77 0:256 ip community-list standard 1_78_255 permit 65000:1 0:78 0:255 ip community-list standard 1_79_254 permit 65000:1 0:79 0:254 ip community-list standard 1_80_253 permit 65000:1 0:80 0:253 ip community-list standard 1_81_252 permit 65000:1 0:81 0:252 ip community-list standard 1_82_251 permit 65000:1 0:82 0:251 ip community-list standard 1_83_250 permit 65000:1 0:83 0:250 ip community-list standard 1_84_249 permit 65000:1 0:84 0:249 ip community-list standard 1_85_248 permit 65000:1 0:85 0:248 ip community-list standard 1_86_247 permit 65000:1 0:86 0:247 ip community-list standard 1_87_246 permit 65000:1 0:87 0:246 ip community-list standard 1_88_245 permit 65000:1 0:88 0:245 ip community-list standard 1_89_244 permit 65000:1 0:89 0:244 ip community-list standard 1_90_243 permit 65000:1 0:90 0:243 ip community-list standard 1_91_242 permit 65000:1 0:91 0:242 ip community-list standard 1_92_241 permit 65000:1 0:92 0:241 ip community-list standard 1_93_240 permit 65000:1 0:93 0:240 ip community-list standard 1_94_239 permit 65000:1 0:94 0:239 ip community-list standard 1_95_238 permit 65000:1 0:95 0:238 ip community-list standard 1_96_237 permit 65000:1 0:96 0:237 ip community-list standard 1_97_236 permit 65000:1 0:97 0:236 ip community-list standard 1_98_235 permit 65000:1 0:98 0:235 ip community-list standard 1_99_234 permit 65000:1 0:99 0:234 ip community-list standard 1_100_233 permit 65000:1 0:100 0:233 ip community-list standard 1_101_232 permit 65000:1 0:101 0:232 ip community-list standard 1_102_231 permit 65000:1 0:102 0:231 ip community-list standard 1_103_230 permit 65000:1 0:103 0:230 ip community-list standard 1_104_229 permit 65000:1 0:104 0:229 ip community-list standard 1_105_228 permit 65000:1 0:105 0:228 ip community-list standard 1_106_227 permit 65000:1 0:106 0:227 ip community-list standard 1_107_226 permit 65000:1 0:107 0:226 ip community-list standard 1_108_225 permit 65000:1 0:108 0:225 ip community-list standard 1_109_224 permit 65000:1 0:109 0:224 ip community-list standard 1_110_223 permit 65000:1 0:110 0:223 ip community-list standard 1_111_222 permit 65000:1 0:111 0:222 ip community-list standard 1_112_221 permit 65000:1 0:112 0:221 ip community-list standard 1_113_220 permit 65000:1 0:113 0:220 ip community-list standard 1_114_219 permit 65000:1 0:114 0:219 ip community-list standard 1_115_218 permit 65000:1 0:115 0:218 ip community-list standard 1_116_217 permit 65000:1 0:116 0:217 ip community-list standard 1_117_216 permit 65000:1 0:117 0:216 ip community-list standard 1_118_215 permit 65000:1 0:118 0:215 ip community-list standard 1_119_214 permit 65000:1 0:119 0:214 ip community-list standard 1_120_213 permit 65000:1 0:120 0:213 ip community-list standard 1_121_212 permit 65000:1 0:121 0:212 ip community-list standard 1_122_211 permit 65000:1 0:122 0:211 ip community-list standard 1_123_210 permit 65000:1 0:123 0:210 ip community-list standard 1_124_209 permit 65000:1 0:124 0:209 ip community-list standard 1_125_208 permit 65000:1 0:125 0:208 ip community-list standard 1_126_207 permit 65000:1 0:126 0:207 ip community-list standard 1_127_206 permit 65000:1 0:127 0:206 ip community-list standard 1_128_205 permit 65000:1 0:128 0:205 ip community-list standard 1_129_204 permit 65000:1 0:129 0:204 ip community-list standard 1_130_203 permit 65000:1 0:130 0:203 ip community-list standard 1_131_202 permit 65000:1 0:131 0:202 ip community-list standard 1_132_201 permit 65000:1 0:132 0:201 ip community-list standard 1_133_200 permit 65000:1 0:133 0:200 ip community-list standard 1_134_199 permit 65000:1 0:134 0:199 ip community-list standard 1_135_198 permit 65000:1 0:135 0:198 ip community-list standard 1_136_197 permit 65000:1 0:136 0:197 ip community-list standard 1_137_196 permit 65000:1 0:137 0:196 ip community-list standard 1_138_195 permit 65000:1 0:138 0:195 ip community-list standard 1_139_194 permit 65000:1 0:139 0:194 ip community-list standard 1_140_193 permit 65000:1 0:140 0:193 ip community-list standard 1_141_192 permit 65000:1 0:141 0:192 ip community-list standard 1_142_191 permit 65000:1 0:142 0:191 ip community-list standard 1_143_190 permit 65000:1 0:143 0:190 ip community-list standard 1_144_189 permit 65000:1 0:144 0:189 ip community-list standard 1_145_188 permit 65000:1 0:145 0:188 ip community-list standard 1_146_187 permit 65000:1 0:146 0:187 ip community-list standard 1_147_186 permit 65000:1 0:147 0:186 ip community-list standard 1_148_185 permit 65000:1 0:148 0:185 ip community-list standard 1_149_184 permit 65000:1 0:149 0:184 ip community-list standard 1_150_183 permit 65000:1 0:150 0:183 ip community-list standard 1_151_182 permit 65000:1 0:151 0:182 ip community-list standard 1_152_181 permit 65000:1 0:152 0:181 ip community-list standard 1_153_180 permit 65000:1 0:153 0:180 ip community-list standard 1_154_179 permit 65000:1 0:154 0:179 ip community-list standard 1_155_178 permit 65000:1 0:155 0:178 ip community-list standard 1_156_177 permit 65000:1 0:156 0:177 ip community-list standard 1_157_176 permit 65000:1 0:157 0:176 ip community-list standard 1_158_175 permit 65000:1 0:158 0:175 ip community-list standard 1_159_174 permit 65000:1 0:159 0:174 ip community-list standard 1_160_173 permit 65000:1 0:160 0:173 ip community-list standard 1_161_172 permit 65000:1 0:161 0:172 ip community-list standard 1_162_171 permit 65000:1 0:162 0:171 ip community-list standard 1_163_170 permit 65000:1 0:163 0:170 ip community-list standard 1_164_169 permit 65000:1 0:164 0:169 ip community-list standard 1_165_168 permit 65000:1 0:165 0:168 ip community-list standard 1_166_167 permit 65000:1 0:166 0:167 route-map calculator permit 35644 match community 2_3_111 2_9_37 1_77_256 1_78_255 1_79_254 set community 0:333 route-map calculator permit 35645 match community 1_80_253 1_81_252 1_82_251 1_83_250 1_84_249 set community 0:333 route-map calculator permit 35646 match community 1_85_248 1_86_247 1_87_246 1_88_245 1_89_244 set community 0:333 route-map calculator permit 35647 match community 1_90_243 1_91_242 1_92_241 1_93_240 1_94_239 set community 0:333 route-map calculator permit 35648 match community 1_95_238 1_96_237 1_97_236 1_98_235 1_99_234 set community 0:333 route-map calculator permit 35649 match community 1_100_233 1_101_232 1_102_231 1_103_230 1_104_229 set community 0:333 route-map calculator permit 35650 match community 1_105_228 1_106_227 1_107_226 1_108_225 1_109_224 set community 0:333 route-map calculator permit 35651 match community 1_110_223 1_111_222 1_112_221 1_113_220 1_114_219 set community 0:333 route-map calculator permit 35652 match community 1_115_218 1_116_217 1_117_216 1_118_215 1_119_214 set community 0:333 route-map calculator permit 35653 match community 1_120_213 1_121_212 1_122_211 1_123_210 1_124_209 set community 0:333 route-map calculator permit 35654 match community 1_125_208 1_126_207 1_127_206 1_128_205 1_129_204 set community 0:333 route-map calculator permit 35655 match community 1_130_203 1_131_202 1_132_201 1_133_200 1_134_199 set community 0:333 route-map calculator permit 35656 match community 1_135_198 1_136_197 1_137_196 1_138_195 1_139_194 set community 0:333 route-map calculator permit 35657 match community 1_140_193 1_141_192 1_142_191 1_143_190 1_144_189 set community 0:333 route-map calculator permit 35658 match community 1_145_188 1_146_187 1_147_186 1_148_185 1_149_184 set community 0:333 route-map calculator permit 35659 match community 1_150_183 1_151_182 1_152_181 1_153_180 1_154_179 set community 0:333 route-map calculator permit 35660 match community 1_155_178 1_156_177 1_157_176 1_158_175 1_159_174 set community 0:333 route-map calculator permit 35661 match community 1_160_173 1_161_172 1_162_171 1_163_170 1_164_169 set community 0:333 route-map calculator permit 35662 match community 1_165_168 1_166_167 set community 0:333 ip community-list standard 2_176_213 permit 65000:2 0:176 0:213 route-map calculator permit 35663 match community 2_176_213 set community 0:37488 ip community-list standard 2_167_174 permit 65000:2 0:167 0:174 route-map calculator permit 35664 match community 2_167_174 set community 0:29058 ip community-list standard 2_29_73 permit 65000:2 0:29 0:73 route-map calculator permit 35665 match community 2_29_73 set community 0:2117 ip community-list standard 1_1_137 permit 65000:1 0:1 0:137 ip community-list standard 2_1_138 permit 65000:2 0:1 0:138 ip community-list standard 2_2_69 permit 65000:2 0:2 0:69 ip community-list standard 1_2_136 permit 65000:1 0:2 0:136 ip community-list standard 2_3_46 permit 65000:2 0:3 0:46 ip community-list standard 1_3_135 permit 65000:1 0:3 0:135 ip community-list standard 1_4_134 permit 65000:1 0:4 0:134 ip community-list standard 1_5_133 permit 65000:1 0:5 0:133 ip community-list standard 2_6_23 permit 65000:2 0:6 0:23 ip community-list standard 1_6_132 permit 65000:1 0:6 0:132 ip community-list standard 1_7_131 permit 65000:1 0:7 0:131 ip community-list standard 1_8_130 permit 65000:1 0:8 0:130 ip community-list standard 1_9_129 permit 65000:1 0:9 0:129 ip community-list standard 1_10_128 permit 65000:1 0:10 0:128 ip community-list standard 1_11_127 permit 65000:1 0:11 0:127 ip community-list standard 1_12_126 permit 65000:1 0:12 0:126 ip community-list standard 1_13_125 permit 65000:1 0:13 0:125 ip community-list standard 1_14_124 permit 65000:1 0:14 0:124 ip community-list standard 1_15_123 permit 65000:1 0:15 0:123 ip community-list standard 1_16_122 permit 65000:1 0:16 0:122 ip community-list standard 1_17_121 permit 65000:1 0:17 0:121 ip community-list standard 1_18_120 permit 65000:1 0:18 0:120 ip community-list standard 1_19_119 permit 65000:1 0:19 0:119 ip community-list standard 1_20_118 permit 65000:1 0:20 0:118 ip community-list standard 1_21_117 permit 65000:1 0:21 0:117 ip community-list standard 1_22_116 permit 65000:1 0:22 0:116 ip community-list standard 1_23_115 permit 65000:1 0:23 0:115 ip community-list standard 1_24_114 permit 65000:1 0:24 0:114 ip community-list standard 1_25_113 permit 65000:1 0:25 0:113 ip community-list standard 1_26_112 permit 65000:1 0:26 0:112 ip community-list standard 1_27_111 permit 65000:1 0:27 0:111 ip community-list standard 1_28_110 permit 65000:1 0:28 0:110 ip community-list standard 1_29_109 permit 65000:1 0:29 0:109 ip community-list standard 1_30_108 permit 65000:1 0:30 0:108 ip community-list standard 1_31_107 permit 65000:1 0:31 0:107 ip community-list standard 1_32_106 permit 65000:1 0:32 0:106 ip community-list standard 1_33_105 permit 65000:1 0:33 0:105 ip community-list standard 1_34_104 permit 65000:1 0:34 0:104 ip community-list standard 1_35_103 permit 65000:1 0:35 0:103 ip community-list standard 1_36_102 permit 65000:1 0:36 0:102 ip community-list standard 1_37_101 permit 65000:1 0:37 0:101 ip community-list standard 1_38_100 permit 65000:1 0:38 0:100 ip community-list standard 1_39_99 permit 65000:1 0:39 0:99 ip community-list standard 1_40_98 permit 65000:1 0:40 0:98 ip community-list standard 1_41_97 permit 65000:1 0:41 0:97 ip community-list standard 1_42_96 permit 65000:1 0:42 0:96 ip community-list standard 1_43_95 permit 65000:1 0:43 0:95 ip community-list standard 1_44_94 permit 65000:1 0:44 0:94 ip community-list standard 1_45_93 permit 65000:1 0:45 0:93 ip community-list standard 1_46_92 permit 65000:1 0:46 0:92 ip community-list standard 1_47_91 permit 65000:1 0:47 0:91 ip community-list standard 1_48_90 permit 65000:1 0:48 0:90 ip community-list standard 1_49_89 permit 65000:1 0:49 0:89 ip community-list standard 1_50_88 permit 65000:1 0:50 0:88 ip community-list standard 1_51_87 permit 65000:1 0:51 0:87 ip community-list standard 1_52_86 permit 65000:1 0:52 0:86 ip community-list standard 1_53_85 permit 65000:1 0:53 0:85 ip community-list standard 1_54_84 permit 65000:1 0:54 0:84 ip community-list standard 1_55_83 permit 65000:1 0:55 0:83 ip community-list standard 1_56_82 permit 65000:1 0:56 0:82 ip community-list standard 1_57_81 permit 65000:1 0:57 0:81 ip community-list standard 1_58_80 permit 65000:1 0:58 0:80 ip community-list standard 1_59_79 permit 65000:1 0:59 0:79 ip community-list standard 1_60_78 permit 65000:1 0:60 0:78 ip community-list standard 1_61_77 permit 65000:1 0:61 0:77 ip community-list standard 1_62_76 permit 65000:1 0:62 0:76 ip community-list standard 1_63_75 permit 65000:1 0:63 0:75 ip community-list standard 1_64_74 permit 65000:1 0:64 0:74 ip community-list standard 1_65_73 permit 65000:1 0:65 0:73 ip community-list standard 1_66_72 permit 65000:1 0:66 0:72 ip community-list standard 1_67_71 permit 65000:1 0:67 0:71 ip community-list standard 1_68_70 permit 65000:1 0:68 0:70 ip community-list standard 1_69_69 permit 65000:1 0:69 0:69 ip community-list expanded c138 permit 1 ^65000:4_0:138_0:1$ ip community-list expanded c138 permit 2 ^65000:3_0:139_0:1$ ip community-list expanded c138 permit 3 ^65000:3_0:140_0:2$ ip community-list expanded c138 permit 4 ^65000:3_0:141_0:3$ ip community-list expanded c138 permit 5 ^65000:3_0:142_0:4$ ip community-list expanded c138 permit 6 ^65000:3_0:143_0:5$ ip community-list expanded c138 permit 7 ^65000:3_0:144_0:6$ ip community-list expanded c138 permit 8 ^65000:3_0:145_0:7$ ip community-list expanded c138 permit 9 ^65000:3_0:146_0:8$ ip community-list expanded c138 permit 10 ^65000:3_0:147_0:9$ ip community-list expanded c138 permit 11 ^65000:3_0:148_0:10$ ip community-list expanded c138 permit 12 ^65000:3_0:149_0:11$ ip community-list expanded c138 permit 13 ^65000:3_0:150_0:12$ ip community-list expanded c138 permit 14 ^65000:3_0:151_0:13$ ip community-list expanded c138 permit 15 ^65000:3_0:152_0:14$ ip community-list expanded c138 permit 16 ^65000:3_0:153_0:15$ ip community-list expanded c138 permit 17 ^65000:3_0:154_0:16$ ip community-list expanded c138 permit 18 ^65000:3_0:155_0:17$ ip community-list expanded c138 permit 19 ^65000:3_0:156_0:18$ ip community-list expanded c138 permit 20 ^65000:3_0:157_0:19$ ip community-list expanded c138 permit 21 ^65000:3_0:158_0:20$ ip community-list expanded c138 permit 22 ^65000:3_0:159_0:21$ ip community-list expanded c138 permit 23 ^65000:3_0:160_0:22$ ip community-list expanded c138 permit 24 ^65000:3_0:161_0:23$ ip community-list expanded c138 permit 25 ^65000:3_0:162_0:24$ ip community-list expanded c138 permit 26 ^65000:3_0:163_0:25$ ip community-list expanded c138 permit 27 ^65000:3_0:164_0:26$ ip community-list expanded c138 permit 28 ^65000:3_0:165_0:27$ ip community-list expanded c138 permit 29 ^65000:3_0:166_0:28$ ip community-list expanded c138 permit 30 ^65000:3_0:167_0:29$ ip community-list expanded c138 permit 31 ^65000:3_0:168_0:30$ ip community-list expanded c138 permit 32 ^65000:3_0:169_0:31$ ip community-list expanded c138 permit 33 ^65000:3_0:170_0:32$ ip community-list expanded c138 permit 34 ^65000:3_0:171_0:33$ ip community-list expanded c138 permit 35 ^65000:3_0:172_0:34$ ip community-list expanded c138 permit 36 ^65000:3_0:173_0:35$ ip community-list expanded c138 permit 37 ^65000:3_0:174_0:36$ ip community-list expanded c138 permit 38 ^65000:3_0:175_0:37$ ip community-list expanded c138 permit 39 ^65000:3_0:176_0:38$ ip community-list expanded c138 permit 40 ^65000:3_0:177_0:39$ ip community-list expanded c138 permit 41 ^65000:3_0:178_0:40$ ip community-list expanded c138 permit 42 ^65000:3_0:179_0:41$ ip community-list expanded c138 permit 43 ^65000:3_0:180_0:42$ ip community-list expanded c138 permit 44 ^65000:3_0:181_0:43$ ip community-list expanded c138 permit 45 ^65000:3_0:182_0:44$ ip community-list expanded c138 permit 46 ^65000:3_0:183_0:45$ ip community-list expanded c138 permit 47 ^65000:3_0:184_0:46$ ip community-list expanded c138 permit 48 ^65000:3_0:185_0:47$ ip community-list expanded c138 permit 49 ^65000:3_0:186_0:48$ ip community-list expanded c138 permit 50 ^65000:3_0:187_0:49$ ip community-list expanded c138 permit 51 ^65000:3_0:188_0:50$ ip community-list expanded c138 permit 52 ^65000:3_0:189_0:51$ ip community-list expanded c138 permit 53 ^65000:3_0:190_0:52$ ip community-list expanded c138 permit 54 ^65000:3_0:191_0:53$ ip community-list expanded c138 permit 55 ^65000:3_0:192_0:54$ ip community-list expanded c138 permit 56 ^65000:3_0:193_0:55$ ip community-list expanded c138 permit 57 ^65000:3_0:194_0:56$ ip community-list expanded c138 permit 58 ^65000:3_0:195_0:57$ ip community-list expanded c138 permit 59 ^65000:3_0:196_0:58$ ip community-list expanded c138 permit 60 ^65000:3_0:197_0:59$ ip community-list expanded c138 permit 61 ^65000:3_0:198_0:60$ ip community-list expanded c138 permit 62 ^65000:3_0:199_0:61$ ip community-list expanded c138 permit 63 ^65000:3_0:200_0:62$ ip community-list expanded c138 permit 64 ^65000:3_0:201_0:63$ ip community-list expanded c138 permit 65 ^65000:3_0:202_0:64$ ip community-list expanded c138 permit 66 ^65000:3_0:203_0:65$ ip community-list expanded c138 permit 67 ^65000:3_0:204_0:66$ ip community-list expanded c138 permit 68 ^65000:3_0:205_0:67$ ip community-list expanded c138 permit 69 ^65000:3_0:206_0:68$ ip community-list expanded c138 permit 70 ^65000:3_0:207_0:69$ ip community-list expanded c138 permit 71 ^65000:3_0:208_0:70$ ip community-list expanded c138 permit 72 ^65000:3_0:209_0:71$ ip community-list expanded c138 permit 73 ^65000:3_0:210_0:72$ ip community-list expanded c138 permit 74 ^65000:3_0:211_0:73$ ip community-list expanded c138 permit 75 ^65000:3_0:212_0:74$ ip community-list expanded c138 permit 76 ^65000:3_0:213_0:75$ ip community-list expanded c138 permit 77 ^65000:3_0:214_0:76$ ip community-list expanded c138 permit 78 ^65000:3_0:215_0:77$ ip community-list expanded c138 permit 79 ^65000:3_0:216_0:78$ ip community-list expanded c138 permit 80 ^65000:3_0:217_0:79$ ip community-list expanded c138 permit 81 ^65000:3_0:218_0:80$ ip community-list expanded c138 permit 82 ^65000:3_0:219_0:81$ ip community-list expanded c138 permit 83 ^65000:3_0:220_0:82$ ip community-list expanded c138 permit 84 ^65000:3_0:221_0:83$ ip community-list expanded c138 permit 85 ^65000:3_0:222_0:84$ ip community-list expanded c138 permit 86 ^65000:3_0:223_0:85$ ip community-list expanded c138 permit 87 ^65000:3_0:224_0:86$ ip community-list expanded c138 permit 88 ^65000:3_0:225_0:87$ ip community-list expanded c138 permit 89 ^65000:3_0:226_0:88$ ip community-list expanded c138 permit 90 ^65000:3_0:227_0:89$ ip community-list expanded c138 permit 91 ^65000:3_0:228_0:90$ ip community-list expanded c138 permit 92 ^65000:3_0:229_0:91$ ip community-list expanded c138 permit 93 ^65000:3_0:230_0:92$ ip community-list expanded c138 permit 94 ^65000:3_0:231_0:93$ ip community-list expanded c138 permit 95 ^65000:3_0:232_0:94$ ip community-list expanded c138 permit 96 ^65000:3_0:233_0:95$ ip community-list expanded c138 permit 97 ^65000:3_0:234_0:96$ ip community-list expanded c138 permit 98 ^65000:3_0:235_0:97$ ip community-list expanded c138 permit 99 ^65000:3_0:236_0:98$ ip community-list expanded c138 permit 100 ^65000:3_0:237_0:99$ ip community-list expanded c138 permit 101 ^65000:3_0:238_0:100$ ip community-list expanded c138 permit 102 ^65000:3_0:239_0:101$ ip community-list expanded c138 permit 103 ^65000:3_0:240_0:102$ ip community-list expanded c138 permit 104 ^65000:3_0:241_0:103$ ip community-list expanded c138 permit 105 ^65000:3_0:242_0:104$ ip community-list expanded c138 permit 106 ^65000:3_0:243_0:105$ ip community-list expanded c138 permit 107 ^65000:3_0:244_0:106$ ip community-list expanded c138 permit 108 ^65000:3_0:245_0:107$ ip community-list expanded c138 permit 109 ^65000:3_0:246_0:108$ ip community-list expanded c138 permit 110 ^65000:3_0:247_0:109$ ip community-list expanded c138 permit 111 ^65000:3_0:248_0:110$ ip community-list expanded c138 permit 112 ^65000:3_0:249_0:111$ ip community-list expanded c138 permit 113 ^65000:3_0:250_0:112$ ip community-list expanded c138 permit 114 ^65000:3_0:251_0:113$ ip community-list expanded c138 permit 115 ^65000:3_0:252_0:114$ ip community-list expanded c138 permit 116 ^65000:3_0:253_0:115$ ip community-list expanded c138 permit 117 ^65000:3_0:254_0:116$ ip community-list expanded c138 permit 118 ^65000:3_0:255_0:117$ ip community-list expanded c138 permit 119 ^65000:3_0:256_0:118$ route-map calculator permit 35666 match community 1_1_137 2_1_138 2_2_69 1_2_136 2_3_46 set community 0:138 route-map calculator permit 35667 match community 1_3_135 1_4_134 1_5_133 2_6_23 1_6_132 set community 0:138 route-map calculator permit 35668 match community 1_7_131 1_8_130 1_9_129 1_10_128 1_11_127 set community 0:138 route-map calculator permit 35669 match community 1_12_126 1_13_125 1_14_124 1_15_123 1_16_122 set community 0:138 route-map calculator permit 35670 match community 1_17_121 1_18_120 1_19_119 1_20_118 1_21_117 set community 0:138 route-map calculator permit 35671 match community 1_22_116 1_23_115 1_24_114 1_25_113 1_26_112 set community 0:138 route-map calculator permit 35672 match community 1_27_111 1_28_110 1_29_109 1_30_108 1_31_107 set community 0:138 route-map calculator permit 35673 match community 1_32_106 1_33_105 1_34_104 1_35_103 1_36_102 set community 0:138 route-map calculator permit 35674 match community 1_37_101 1_38_100 1_39_99 1_40_98 1_41_97 set community 0:138 route-map calculator permit 35675 match community 1_42_96 1_43_95 1_44_94 1_45_93 1_46_92 set community 0:138 route-map calculator permit 35676 match community 1_47_91 1_48_90 1_49_89 1_50_88 1_51_87 set community 0:138 route-map calculator permit 35677 match community 1_52_86 1_53_85 1_54_84 1_55_83 1_56_82 set community 0:138 route-map calculator permit 35678 match community 1_57_81 1_58_80 1_59_79 1_60_78 1_61_77 set community 0:138 route-map calculator permit 35679 match community 1_62_76 1_63_75 1_64_74 1_65_73 1_66_72 set community 0:138 route-map calculator permit 35680 match community 1_67_71 1_68_70 1_69_69 c4_138_1 c3_139_1 set community 0:138 route-map calculator permit 35681 match community c3_140_2 c3_141_3 c3_142_4 c3_143_5 c3_144_6 set community 0:138 route-map calculator permit 35682 match community c3_145_7 c3_146_8 c3_147_9 c3_148_10 c3_149_11 set community 0:138 route-map calculator permit 35683 match community c3_150_12 c3_151_13 c3_152_14 c3_153_15 c3_154_16 set community 0:138 route-map calculator permit 35684 match community c3_155_17 c3_156_18 c3_157_19 c3_158_20 c3_159_21 set community 0:138 route-map calculator permit 35685 match community c3_160_22 c3_161_23 c3_162_24 c3_163_25 c3_164_26 set community 0:138 route-map calculator permit 35686 match community c3_165_27 c3_166_28 c3_167_29 c3_168_30 c3_169_31 set community 0:138 route-map calculator permit 35687 match community c3_170_32 c3_171_33 c3_172_34 c3_173_35 c3_174_36 set community 0:138 route-map calculator permit 35688 match community c3_175_37 c3_176_38 c3_177_39 c3_178_40 c3_179_41 set community 0:138 route-map calculator permit 35689 match community c3_180_42 c3_181_43 c3_182_44 c3_183_45 c3_184_46 set community 0:138 route-map calculator permit 35690 match community c3_185_47 c3_186_48 c3_187_49 c3_188_50 c3_189_51 set community 0:138 route-map calculator permit 35691 match community c3_190_52 c3_191_53 c3_192_54 c3_193_55 c3_194_56 set community 0:138 route-map calculator permit 35692 match community c3_195_57 c3_196_58 c3_197_59 c3_198_60 c3_199_61 set community 0:138 route-map calculator permit 35693 match community c3_200_62 c3_201_63 c3_202_64 c3_203_65 c3_204_66 set community 0:138 route-map calculator permit 35694 match community c3_205_67 c3_206_68 c3_207_69 c3_208_70 c3_209_71 set community 0:138 route-map calculator permit 35695 match community c3_210_72 c3_211_73 c3_212_74 c3_213_75 c3_214_76 set community 0:138 route-map calculator permit 35696 match community c3_215_77 c3_216_78 c3_217_79 c3_218_80 c3_219_81 set community 0:138 route-map calculator permit 35697 match community c3_220_82 c3_221_83 c3_222_84 c3_223_85 c3_224_86 set community 0:138 route-map calculator permit 35698 match community c3_225_87 c3_226_88 c3_227_89 c3_228_90 c3_229_91 set community 0:138 route-map calculator permit 35699 match community c3_230_92 c3_231_93 c3_232_94 c3_233_95 c3_234_96 set community 0:138 route-map calculator permit 35700 match community c3_235_97 c3_236_98 c3_237_99 c3_238_100 c3_239_101 set community 0:138 route-map calculator permit 35701 match community c3_240_102 c3_241_103 c3_242_104 c3_243_105 c3_244_106 set community 0:138 route-map calculator permit 35702 match community c3_245_107 c3_246_108 c3_247_109 c3_248_110 c3_249_111 set community 0:138 route-map calculator permit 35703 match community c3_250_112 c3_251_113 c3_252_114 c3_253_115 c3_254_116 set community 0:138 route-map calculator permit 35704 match community c3_255_117 c3_256_118 set community 0:138 ip community-list standard 2_173_244 permit 65000:2 0:173 0:244 route-map calculator permit 35705 match community 2_173_244 set community 0:42212 ip community-list standard 2_74_238 permit 65000:2 0:74 0:238 ip community-list standard 2_119_148 permit 65000:2 0:119 0:148 route-map calculator permit 35706 match community 2_74_238 2_119_148 set community 0:17612 ip community-list standard 2_96_233 permit 65000:2 0:96 0:233 route-map calculator permit 35707 match community 2_96_233 set community 0:22368 ip community-list standard 2_4_154 permit 65000:2 0:4 0:154 ip community-list standard 2_7_88 permit 65000:2 0:7 0:88 ip community-list standard 2_8_77 permit 65000:2 0:8 0:77 ip community-list standard 2_11_56 permit 65000:2 0:11 0:56 ip community-list standard 2_14_44 permit 65000:2 0:14 0:44 ip community-list standard 2_22_28 permit 65000:2 0:22 0:28 route-map calculator permit 35708 match community 2_4_154 2_7_88 2_8_77 2_11_56 2_14_44 set community 0:616 route-map calculator permit 35709 match community 2_22_28 set community 0:616 ip community-list standard 2_66_131 permit 65000:2 0:66 0:131 route-map calculator permit 35710 match community 2_66_131 set community 0:8646 ip community-list standard 2_128_167 permit 65000:2 0:128 0:167 route-map calculator permit 35711 match community 2_128_167 set community 0:21376 ip community-list standard 2_187_199 permit 65000:2 0:187 0:199 route-map calculator permit 35712 match community 2_187_199 set community 0:37213 ip community-list standard 2_53_221 permit 65000:2 0:53 0:221 route-map calculator permit 35713 match community 2_53_221 set community 0:11713 ip community-list standard 2_122_250 permit 65000:2 0:122 0:250 ip community-list standard 2_125_244 permit 65000:2 0:125 0:244 route-map calculator permit 35714 match community 2_122_250 2_125_244 set community 0:30500 ip community-list standard 2_58_219 permit 65000:2 0:58 0:219 ip community-list standard 2_73_174 permit 65000:2 0:73 0:174 ip community-list standard 2_87_146 permit 65000:2 0:87 0:146 route-map calculator permit 35715 match community 2_58_219 2_73_174 2_87_146 set community 0:12702 ip community-list standard 2_213_256 permit 65000:2 0:213 0:256 route-map calculator permit 35716 match community 2_213_256 set community 0:54528 ip community-list standard 2_30_240 permit 65000:2 0:30 0:240 ip community-list standard 2_32_225 permit 65000:2 0:32 0:225 ip community-list standard 2_36_200 permit 65000:2 0:36 0:200 ip community-list standard 2_40_180 permit 65000:2 0:40 0:180 ip community-list standard 2_45_160 permit 65000:2 0:45 0:160 ip community-list standard 2_48_150 permit 65000:2 0:48 0:150 ip community-list standard 2_50_144 permit 65000:2 0:50 0:144 ip community-list standard 2_60_120 permit 65000:2 0:60 0:120 ip community-list standard 2_72_100 permit 65000:2 0:72 0:100 ip community-list standard 2_75_96 permit 65000:2 0:75 0:96 ip community-list standard 2_80_90 permit 65000:2 0:80 0:90 route-map calculator permit 35717 match community 2_30_240 2_32_225 2_36_200 2_40_180 2_45_160 set community 0:7200 route-map calculator permit 35718 match community 2_48_150 2_50_144 2_60_120 2_72_100 2_75_96 set community 0:7200 route-map calculator permit 35719 match community 2_80_90 set community 0:7200 ip community-list standard 2_40_247 permit 65000:2 0:40 0:247 ip community-list standard 2_52_190 permit 65000:2 0:52 0:190 ip community-list standard 2_65_152 permit 65000:2 0:65 0:152 ip community-list standard 2_76_130 permit 65000:2 0:76 0:130 ip community-list standard 2_95_104 permit 65000:2 0:95 0:104 route-map calculator permit 35720 match community 2_40_247 2_52_190 2_65_152 2_76_130 2_95_104 set community 0:9880 ip community-list standard 2_12_215 permit 65000:2 0:12 0:215 ip community-list standard 2_15_172 permit 65000:2 0:15 0:172 ip community-list standard 2_20_129 permit 65000:2 0:20 0:129 ip community-list standard 2_30_86 permit 65000:2 0:30 0:86 ip community-list standard 2_43_60 permit 65000:2 0:43 0:60 route-map calculator permit 35721 match community 2_12_215 2_15_172 2_20_129 2_30_86 2_43_60 set community 0:2580 ip community-list standard 2_17_191 permit 65000:2 0:17 0:191 route-map calculator permit 35722 match community 2_17_191 set community 0:3247 ip community-list standard 2_35_230 permit 65000:2 0:35 0:230 ip community-list standard 2_46_175 permit 65000:2 0:46 0:175 ip community-list standard 2_50_161 permit 65000:2 0:50 0:161 ip community-list standard 2_70_115 permit 65000:2 0:70 0:115 route-map calculator permit 35723 match community 2_35_230 2_46_175 2_50_161 2_70_115 set community 0:8050 ip community-list standard 2_89_190 permit 65000:2 0:89 0:190 ip community-list standard 2_95_178 permit 65000:2 0:95 0:178 route-map calculator permit 35724 match community 2_89_190 2_95_178 set community 0:16910 ip community-list standard 2_41_163 permit 65000:2 0:41 0:163 route-map calculator permit 35725 match community 2_41_163 set community 0:6683 ip community-list standard 1_1_150 permit 65000:1 0:1 0:150 ip community-list standard 2_1_151 permit 65000:2 0:1 0:151 ip community-list standard 1_2_149 permit 65000:1 0:2 0:149 ip community-list standard 1_3_148 permit 65000:1 0:3 0:148 ip community-list standard 1_4_147 permit 65000:1 0:4 0:147 ip community-list standard 1_5_146 permit 65000:1 0:5 0:146 ip community-list standard 1_6_145 permit 65000:1 0:6 0:145 ip community-list standard 1_7_144 permit 65000:1 0:7 0:144 ip community-list standard 1_8_143 permit 65000:1 0:8 0:143 ip community-list standard 1_9_142 permit 65000:1 0:9 0:142 ip community-list standard 1_10_141 permit 65000:1 0:10 0:141 ip community-list standard 1_11_140 permit 65000:1 0:11 0:140 ip community-list standard 1_12_139 permit 65000:1 0:12 0:139 ip community-list standard 1_13_138 permit 65000:1 0:13 0:138 ip community-list standard 1_14_137 permit 65000:1 0:14 0:137 ip community-list standard 1_15_136 permit 65000:1 0:15 0:136 ip community-list standard 1_16_135 permit 65000:1 0:16 0:135 ip community-list standard 1_17_134 permit 65000:1 0:17 0:134 ip community-list standard 1_18_133 permit 65000:1 0:18 0:133 ip community-list standard 1_19_132 permit 65000:1 0:19 0:132 ip community-list standard 1_20_131 permit 65000:1 0:20 0:131 ip community-list standard 1_21_130 permit 65000:1 0:21 0:130 ip community-list standard 1_22_129 permit 65000:1 0:22 0:129 ip community-list standard 1_23_128 permit 65000:1 0:23 0:128 ip community-list standard 1_24_127 permit 65000:1 0:24 0:127 ip community-list standard 1_25_126 permit 65000:1 0:25 0:126 ip community-list standard 1_26_125 permit 65000:1 0:26 0:125 ip community-list standard 1_27_124 permit 65000:1 0:27 0:124 ip community-list standard 1_28_123 permit 65000:1 0:28 0:123 ip community-list standard 1_29_122 permit 65000:1 0:29 0:122 ip community-list standard 1_30_121 permit 65000:1 0:30 0:121 ip community-list standard 1_31_120 permit 65000:1 0:31 0:120 ip community-list standard 1_32_119 permit 65000:1 0:32 0:119 ip community-list standard 1_33_118 permit 65000:1 0:33 0:118 ip community-list standard 1_34_117 permit 65000:1 0:34 0:117 ip community-list standard 1_35_116 permit 65000:1 0:35 0:116 ip community-list standard 1_36_115 permit 65000:1 0:36 0:115 ip community-list standard 1_37_114 permit 65000:1 0:37 0:114 ip community-list standard 1_38_113 permit 65000:1 0:38 0:113 ip community-list standard 1_39_112 permit 65000:1 0:39 0:112 ip community-list standard 1_40_111 permit 65000:1 0:40 0:111 ip community-list standard 1_41_110 permit 65000:1 0:41 0:110 ip community-list standard 1_42_109 permit 65000:1 0:42 0:109 ip community-list standard 1_43_108 permit 65000:1 0:43 0:108 ip community-list standard 1_44_107 permit 65000:1 0:44 0:107 ip community-list standard 1_45_106 permit 65000:1 0:45 0:106 ip community-list standard 1_46_105 permit 65000:1 0:46 0:105 ip community-list standard 1_47_104 permit 65000:1 0:47 0:104 ip community-list standard 1_48_103 permit 65000:1 0:48 0:103 ip community-list standard 1_49_102 permit 65000:1 0:49 0:102 ip community-list standard 1_50_101 permit 65000:1 0:50 0:101 ip community-list standard 1_51_100 permit 65000:1 0:51 0:100 ip community-list standard 1_52_99 permit 65000:1 0:52 0:99 ip community-list standard 1_53_98 permit 65000:1 0:53 0:98 ip community-list standard 1_54_97 permit 65000:1 0:54 0:97 ip community-list standard 1_55_96 permit 65000:1 0:55 0:96 ip community-list standard 1_56_95 permit 65000:1 0:56 0:95 ip community-list standard 1_57_94 permit 65000:1 0:57 0:94 ip community-list standard 1_58_93 permit 65000:1 0:58 0:93 ip community-list standard 1_59_92 permit 65000:1 0:59 0:92 ip community-list standard 1_60_91 permit 65000:1 0:60 0:91 ip community-list standard 1_61_90 permit 65000:1 0:61 0:90 ip community-list standard 1_62_89 permit 65000:1 0:62 0:89 ip community-list standard 1_63_88 permit 65000:1 0:63 0:88 ip community-list standard 1_64_87 permit 65000:1 0:64 0:87 ip community-list standard 1_65_86 permit 65000:1 0:65 0:86 ip community-list standard 1_66_85 permit 65000:1 0:66 0:85 ip community-list standard 1_67_84 permit 65000:1 0:67 0:84 ip community-list standard 1_68_83 permit 65000:1 0:68 0:83 ip community-list standard 1_69_82 permit 65000:1 0:69 0:82 ip community-list standard 1_70_81 permit 65000:1 0:70 0:81 ip community-list standard 1_71_80 permit 65000:1 0:71 0:80 ip community-list standard 1_72_79 permit 65000:1 0:72 0:79 ip community-list standard 1_73_78 permit 65000:1 0:73 0:78 ip community-list standard 1_74_77 permit 65000:1 0:74 0:77 ip community-list standard 1_75_76 permit 65000:1 0:75 0:76 ip community-list expanded c151 permit 1 ^65000:4_0:151_0:1$ ip community-list expanded c151 permit 2 ^65000:3_0:152_0:1$ ip community-list expanded c151 permit 3 ^65000:3_0:153_0:2$ ip community-list expanded c151 permit 4 ^65000:3_0:154_0:3$ ip community-list expanded c151 permit 5 ^65000:3_0:155_0:4$ ip community-list expanded c151 permit 6 ^65000:3_0:156_0:5$ ip community-list expanded c151 permit 7 ^65000:3_0:157_0:6$ ip community-list expanded c151 permit 8 ^65000:3_0:158_0:7$ ip community-list expanded c151 permit 9 ^65000:3_0:159_0:8$ ip community-list expanded c151 permit 10 ^65000:3_0:160_0:9$ ip community-list expanded c151 permit 11 ^65000:3_0:161_0:10$ ip community-list expanded c151 permit 12 ^65000:3_0:162_0:11$ ip community-list expanded c151 permit 13 ^65000:3_0:163_0:12$ ip community-list expanded c151 permit 14 ^65000:3_0:164_0:13$ ip community-list expanded c151 permit 15 ^65000:3_0:165_0:14$ ip community-list expanded c151 permit 16 ^65000:3_0:166_0:15$ ip community-list expanded c151 permit 17 ^65000:3_0:167_0:16$ ip community-list expanded c151 permit 18 ^65000:3_0:168_0:17$ ip community-list expanded c151 permit 19 ^65000:3_0:169_0:18$ ip community-list expanded c151 permit 20 ^65000:3_0:170_0:19$ ip community-list expanded c151 permit 21 ^65000:3_0:171_0:20$ ip community-list expanded c151 permit 22 ^65000:3_0:172_0:21$ ip community-list expanded c151 permit 23 ^65000:3_0:173_0:22$ ip community-list expanded c151 permit 24 ^65000:3_0:174_0:23$ ip community-list expanded c151 permit 25 ^65000:3_0:175_0:24$ ip community-list expanded c151 permit 26 ^65000:3_0:176_0:25$ ip community-list expanded c151 permit 27 ^65000:3_0:177_0:26$ ip community-list expanded c151 permit 28 ^65000:3_0:178_0:27$ ip community-list expanded c151 permit 29 ^65000:3_0:179_0:28$ ip community-list expanded c151 permit 30 ^65000:3_0:180_0:29$ ip community-list expanded c151 permit 31 ^65000:3_0:181_0:30$ ip community-list expanded c151 permit 32 ^65000:3_0:182_0:31$ ip community-list expanded c151 permit 33 ^65000:3_0:183_0:32$ ip community-list expanded c151 permit 34 ^65000:3_0:184_0:33$ ip community-list expanded c151 permit 35 ^65000:3_0:185_0:34$ ip community-list expanded c151 permit 36 ^65000:3_0:186_0:35$ ip community-list expanded c151 permit 37 ^65000:3_0:187_0:36$ ip community-list expanded c151 permit 38 ^65000:3_0:188_0:37$ ip community-list expanded c151 permit 39 ^65000:3_0:189_0:38$ ip community-list expanded c151 permit 40 ^65000:3_0:190_0:39$ ip community-list expanded c151 permit 41 ^65000:3_0:191_0:40$ ip community-list expanded c151 permit 42 ^65000:3_0:192_0:41$ ip community-list expanded c151 permit 43 ^65000:3_0:193_0:42$ ip community-list expanded c151 permit 44 ^65000:3_0:194_0:43$ ip community-list expanded c151 permit 45 ^65000:3_0:195_0:44$ ip community-list expanded c151 permit 46 ^65000:3_0:196_0:45$ ip community-list expanded c151 permit 47 ^65000:3_0:197_0:46$ ip community-list expanded c151 permit 48 ^65000:3_0:198_0:47$ ip community-list expanded c151 permit 49 ^65000:3_0:199_0:48$ ip community-list expanded c151 permit 50 ^65000:3_0:200_0:49$ ip community-list expanded c151 permit 51 ^65000:3_0:201_0:50$ ip community-list expanded c151 permit 52 ^65000:3_0:202_0:51$ ip community-list expanded c151 permit 53 ^65000:3_0:203_0:52$ ip community-list expanded c151 permit 54 ^65000:3_0:204_0:53$ ip community-list expanded c151 permit 55 ^65000:3_0:205_0:54$ ip community-list expanded c151 permit 56 ^65000:3_0:206_0:55$ ip community-list expanded c151 permit 57 ^65000:3_0:207_0:56$ ip community-list expanded c151 permit 58 ^65000:3_0:208_0:57$ ip community-list expanded c151 permit 59 ^65000:3_0:209_0:58$ ip community-list expanded c151 permit 60 ^65000:3_0:210_0:59$ ip community-list expanded c151 permit 61 ^65000:3_0:211_0:60$ ip community-list expanded c151 permit 62 ^65000:3_0:212_0:61$ ip community-list expanded c151 permit 63 ^65000:3_0:213_0:62$ ip community-list expanded c151 permit 64 ^65000:3_0:214_0:63$ ip community-list expanded c151 permit 65 ^65000:3_0:215_0:64$ ip community-list expanded c151 permit 66 ^65000:3_0:216_0:65$ ip community-list expanded c151 permit 67 ^65000:3_0:217_0:66$ ip community-list expanded c151 permit 68 ^65000:3_0:218_0:67$ ip community-list expanded c151 permit 69 ^65000:3_0:219_0:68$ ip community-list expanded c151 permit 70 ^65000:3_0:220_0:69$ ip community-list expanded c151 permit 71 ^65000:3_0:221_0:70$ ip community-list expanded c151 permit 72 ^65000:3_0:222_0:71$ ip community-list expanded c151 permit 73 ^65000:3_0:223_0:72$ ip community-list expanded c151 permit 74 ^65000:3_0:224_0:73$ ip community-list expanded c151 permit 75 ^65000:3_0:225_0:74$ ip community-list expanded c151 permit 76 ^65000:3_0:226_0:75$ ip community-list expanded c151 permit 77 ^65000:3_0:227_0:76$ ip community-list expanded c151 permit 78 ^65000:3_0:228_0:77$ ip community-list expanded c151 permit 79 ^65000:3_0:229_0:78$ ip community-list expanded c151 permit 80 ^65000:3_0:230_0:79$ ip community-list expanded c151 permit 81 ^65000:3_0:231_0:80$ ip community-list expanded c151 permit 82 ^65000:3_0:232_0:81$ ip community-list expanded c151 permit 83 ^65000:3_0:233_0:82$ ip community-list expanded c151 permit 84 ^65000:3_0:234_0:83$ ip community-list expanded c151 permit 85 ^65000:3_0:235_0:84$ ip community-list expanded c151 permit 86 ^65000:3_0:236_0:85$ ip community-list expanded c151 permit 87 ^65000:3_0:237_0:86$ ip community-list expanded c151 permit 88 ^65000:3_0:238_0:87$ ip community-list expanded c151 permit 89 ^65000:3_0:239_0:88$ ip community-list expanded c151 permit 90 ^65000:3_0:240_0:89$ ip community-list expanded c151 permit 91 ^65000:3_0:241_0:90$ ip community-list expanded c151 permit 92 ^65000:3_0:242_0:91$ ip community-list expanded c151 permit 93 ^65000:3_0:243_0:92$ ip community-list expanded c151 permit 94 ^65000:3_0:244_0:93$ ip community-list expanded c151 permit 95 ^65000:3_0:245_0:94$ ip community-list expanded c151 permit 96 ^65000:3_0:246_0:95$ ip community-list expanded c151 permit 97 ^65000:3_0:247_0:96$ ip community-list expanded c151 permit 98 ^65000:3_0:248_0:97$ ip community-list expanded c151 permit 99 ^65000:3_0:249_0:98$ ip community-list expanded c151 permit 100 ^65000:3_0:250_0:99$ ip community-list expanded c151 permit 101 ^65000:3_0:251_0:100$ ip community-list expanded c151 permit 102 ^65000:3_0:252_0:101$ ip community-list expanded c151 permit 103 ^65000:3_0:253_0:102$ ip community-list expanded c151 permit 104 ^65000:3_0:254_0:103$ ip community-list expanded c151 permit 105 ^65000:3_0:255_0:104$ ip community-list expanded c151 permit 106 ^65000:3_0:256_0:105$ route-map calculator permit 35726 match community 1_1_150 2_1_151 1_2_149 1_3_148 1_4_147 set community 0:151 route-map calculator permit 35727 match community 1_5_146 1_6_145 1_7_144 1_8_143 1_9_142 set community 0:151 route-map calculator permit 35728 match community 1_10_141 1_11_140 1_12_139 1_13_138 1_14_137 set community 0:151 route-map calculator permit 35729 match community 1_15_136 1_16_135 1_17_134 1_18_133 1_19_132 set community 0:151 route-map calculator permit 35730 match community 1_20_131 1_21_130 1_22_129 1_23_128 1_24_127 set community 0:151 route-map calculator permit 35731 match community 1_25_126 1_26_125 1_27_124 1_28_123 1_29_122 set community 0:151 route-map calculator permit 35732 match community 1_30_121 1_31_120 1_32_119 1_33_118 1_34_117 set community 0:151 route-map calculator permit 35733 match community 1_35_116 1_36_115 1_37_114 1_38_113 1_39_112 set community 0:151 route-map calculator permit 35734 match community 1_40_111 1_41_110 1_42_109 1_43_108 1_44_107 set community 0:151 route-map calculator permit 35735 match community 1_45_106 1_46_105 1_47_104 1_48_103 1_49_102 set community 0:151 route-map calculator permit 35736 match community 1_50_101 1_51_100 1_52_99 1_53_98 1_54_97 set community 0:151 route-map calculator permit 35737 match community 1_55_96 1_56_95 1_57_94 1_58_93 1_59_92 set community 0:151 route-map calculator permit 35738 match community 1_60_91 1_61_90 1_62_89 1_63_88 1_64_87 set community 0:151 route-map calculator permit 35739 match community 1_65_86 1_66_85 1_67_84 1_68_83 1_69_82 set community 0:151 route-map calculator permit 35740 match community 1_70_81 1_71_80 1_72_79 1_73_78 1_74_77 set community 0:151 route-map calculator permit 35741 match community 1_75_76 c4_151_1 c3_152_1 c3_153_2 c3_154_3 set community 0:151 route-map calculator permit 35742 match community c3_155_4 c3_156_5 c3_157_6 c3_158_7 c3_159_8 set community 0:151 route-map calculator permit 35743 match community c3_160_9 c3_161_10 c3_162_11 c3_163_12 c3_164_13 set community 0:151 route-map calculator permit 35744 match community c3_165_14 c3_166_15 c3_167_16 c3_168_17 c3_169_18 set community 0:151 route-map calculator permit 35745 match community c3_170_19 c3_171_20 c3_172_21 c3_173_22 c3_174_23 set community 0:151 route-map calculator permit 35746 match community c3_175_24 c3_176_25 c3_177_26 c3_178_27 c3_179_28 set community 0:151 route-map calculator permit 35747 match community c3_180_29 c3_181_30 c3_182_31 c3_183_32 c3_184_33 set community 0:151 route-map calculator permit 35748 match community c3_185_34 c3_186_35 c3_187_36 c3_188_37 c3_189_38 set community 0:151 route-map calculator permit 35749 match community c3_190_39 c3_191_40 c3_192_41 c3_193_42 c3_194_43 set community 0:151 route-map calculator permit 35750 match community c3_195_44 c3_196_45 c3_197_46 c3_198_47 c3_199_48 set community 0:151 route-map calculator permit 35751 match community c3_200_49 c3_201_50 c3_202_51 c3_203_52 c3_204_53 set community 0:151 route-map calculator permit 35752 match community c3_205_54 c3_206_55 c3_207_56 c3_208_57 c3_209_58 set community 0:151 route-map calculator permit 35753 match community c3_210_59 c3_211_60 c3_212_61 c3_213_62 c3_214_63 set community 0:151 route-map calculator permit 35754 match community c3_215_64 c3_216_65 c3_217_66 c3_218_67 c3_219_68 set community 0:151 route-map calculator permit 35755 match community c3_220_69 c3_221_70 c3_222_71 c3_223_72 c3_224_73 set community 0:151 route-map calculator permit 35756 match community c3_225_74 c3_226_75 c3_227_76 c3_228_77 c3_229_78 set community 0:151 route-map calculator permit 35757 match community c3_230_79 c3_231_80 c3_232_81 c3_233_82 c3_234_83 set community 0:151 route-map calculator permit 35758 match community c3_235_84 c3_236_85 c3_237_86 c3_238_87 c3_239_88 set community 0:151 route-map calculator permit 35759 match community c3_240_89 c3_241_90 c3_242_91 c3_243_92 c3_244_93 set community 0:151 route-map calculator permit 35760 match community c3_245_94 c3_246_95 c3_247_96 c3_248_97 c3_249_98 set community 0:151 route-map calculator permit 35761 match community c3_250_99 c3_251_100 c3_252_101 c3_253_102 c3_254_103 set community 0:151 route-map calculator permit 35762 match community c3_255_104 c3_256_105 set community 0:151 ip community-list standard 2_35_214 permit 65000:2 0:35 0:214 ip community-list standard 2_70_107 permit 65000:2 0:70 0:107 route-map calculator permit 35763 match community 2_35_214 2_70_107 set community 0:7490 ip community-list standard 2_147_147 permit 65000:2 0:147 0:147 route-map calculator permit 35764 match community 2_147_147 set community 0:21609 ip community-list standard 2_122_169 permit 65000:2 0:122 0:169 route-map calculator permit 35765 match community 2_122_169 set community 0:20618 ip community-list standard 2_83_200 permit 65000:2 0:83 0:200 ip community-list standard 2_100_166 permit 65000:2 0:100 0:166 route-map calculator permit 35766 match community 2_83_200 2_100_166 set community 0:16600 ip community-list standard 2_221_251 permit 65000:2 0:221 0:251 route-map calculator permit 35767 match community 2_221_251 set community 0:55471 ip community-list standard 2_31_231 permit 65000:2 0:31 0:231 ip community-list standard 2_33_217 permit 65000:2 0:33 0:217 ip community-list standard 2_77_93 permit 65000:2 0:77 0:93 route-map calculator permit 35768 match community 2_31_231 2_33_217 2_77_93 set community 0:7161 ip community-list standard 2_113_153 permit 65000:2 0:113 0:153 route-map calculator permit 35769 match community 2_113_153 set community 0:17289 ip community-list standard 2_18_197 permit 65000:2 0:18 0:197 route-map calculator permit 35770 match community 2_18_197 set community 0:3546 ip community-list standard 2_64_187 permit 65000:2 0:64 0:187 ip community-list standard 2_68_176 permit 65000:2 0:68 0:176 ip community-list standard 2_88_136 permit 65000:2 0:88 0:136 route-map calculator permit 35771 match community 2_64_187 2_68_176 2_88_136 set community 0:11968 ip community-list standard 2_94_163 permit 65000:2 0:94 0:163 route-map calculator permit 35772 match community 2_94_163 set community 0:15322 ip community-list standard 2_41_201 permit 65000:2 0:41 0:201 ip community-list standard 2_67_123 permit 65000:2 0:67 0:123 route-map calculator permit 35773 match community 2_41_201 2_67_123 set community 0:8241 ip community-list standard 2_181_244 permit 65000:2 0:181 0:244 route-map calculator permit 35774 match community 2_181_244 set community 0:44164 ip community-list standard 2_170_239 permit 65000:2 0:170 0:239 route-map calculator permit 35775 match community 2_170_239 set community 0:40630 ip community-list standard 2_57_226 permit 65000:2 0:57 0:226 ip community-list standard 2_113_114 permit 65000:2 0:113 0:114 route-map calculator permit 35776 match community 2_57_226 2_113_114 set community 0:12882 ip community-list standard 2_4_170 permit 65000:2 0:4 0:170 ip community-list standard 2_5_136 permit 65000:2 0:5 0:136 ip community-list standard 2_8_85 permit 65000:2 0:8 0:85 ip community-list standard 2_10_68 permit 65000:2 0:10 0:68 ip community-list standard 2_17_40 permit 65000:2 0:17 0:40 ip community-list standard 2_20_34 permit 65000:2 0:20 0:34 route-map calculator permit 35777 match community 2_4_170 2_5_136 2_8_85 2_10_68 2_17_40 set community 0:680 route-map calculator permit 35778 match community 2_20_34 set community 0:680 ip community-list standard 2_28_209 permit 65000:2 0:28 0:209 ip community-list standard 2_38_154 permit 65000:2 0:38 0:154 ip community-list standard 2_44_133 permit 65000:2 0:44 0:133 ip community-list standard 2_76_77 permit 65000:2 0:76 0:77 route-map calculator permit 35779 match community 2_28_209 2_38_154 2_44_133 2_76_77 set community 0:5852 ip community-list standard 2_13_185 permit 65000:2 0:13 0:185 ip community-list standard 2_37_65 permit 65000:2 0:37 0:65 route-map calculator permit 35780 match community 2_13_185 2_37_65 set community 0:2405 ip community-list standard 2_89_251 permit 65000:2 0:89 0:251 route-map calculator permit 35781 match community 2_89_251 set community 0:22339 ip community-list standard 2_109_177 permit 65000:2 0:109 0:177 route-map calculator permit 35782 match community 2_109_177 set community 0:19293 ip community-list standard 2_4_216 permit 65000:2 0:4 0:216 ip community-list standard 2_6_144 permit 65000:2 0:6 0:144 ip community-list standard 2_8_108 permit 65000:2 0:8 0:108 ip community-list standard 2_9_96 permit 65000:2 0:9 0:96 ip community-list standard 2_12_72 permit 65000:2 0:12 0:72 ip community-list standard 2_16_54 permit 65000:2 0:16 0:54 ip community-list standard 2_18_48 permit 65000:2 0:18 0:48 ip community-list standard 2_24_36 permit 65000:2 0:24 0:36 ip community-list standard 2_27_32 permit 65000:2 0:27 0:32 route-map calculator permit 35783 match community 2_4_216 2_6_144 2_8_108 2_9_96 2_12_72 set community 0:864 route-map calculator permit 35784 match community 2_16_54 2_18_48 2_24_36 2_27_32 set community 0:864 ip community-list standard 2_68_149 permit 65000:2 0:68 0:149 route-map calculator permit 35785 match community 2_68_149 set community 0:10132 ip community-list standard 2_124_219 permit 65000:2 0:124 0:219 ip community-list standard 2_146_186 permit 65000:2 0:146 0:186 route-map calculator permit 35786 match community 2_124_219 2_146_186 set community 0:27156 ip community-list standard 2_195_227 permit 65000:2 0:195 0:227 route-map calculator permit 35787 match community 2_195_227 set community 0:44265 ip community-list standard 2_101_123 permit 65000:2 0:101 0:123 route-map calculator permit 35788 match community 2_101_123 set community 0:12423 ip community-list standard 2_98_251 permit 65000:2 0:98 0:251 route-map calculator permit 35789 match community 2_98_251 set community 0:24598 ip community-list standard 2_130_139 permit 65000:2 0:130 0:139 route-map calculator permit 35790 match community 2_130_139 set community 0:18070 ip community-list standard 2_226_244 permit 65000:2 0:226 0:244 route-map calculator permit 35791 match community 2_226_244 set community 0:55144 ip community-list standard 2_7_167 permit 65000:2 0:7 0:167 route-map calculator permit 35792 match community 2_7_167 set community 0:1169 ip community-list standard 2_151_158 permit 65000:2 0:151 0:158 route-map calculator permit 35793 match community 2_151_158 set community 0:23858 ip community-list standard 2_33_181 permit 65000:2 0:33 0:181 route-map calculator permit 35794 match community 2_33_181 set community 0:5973 ip community-list standard 2_161_169 permit 65000:2 0:161 0:169 route-map calculator permit 35795 match community 2_161_169 set community 0:27209 ip community-list standard 2_14_231 permit 65000:2 0:14 0:231 ip community-list standard 2_21_154 permit 65000:2 0:21 0:154 ip community-list standard 2_22_147 permit 65000:2 0:22 0:147 ip community-list standard 2_33_98 permit 65000:2 0:33 0:98 ip community-list standard 2_42_77 permit 65000:2 0:42 0:77 ip community-list standard 2_49_66 permit 65000:2 0:49 0:66 route-map calculator permit 35796 match community 2_14_231 2_21_154 2_22_147 2_33_98 2_42_77 set community 0:3234 route-map calculator permit 35797 match community 2_49_66 set community 0:3234 ip community-list standard 2_234_249 permit 65000:2 0:234 0:249 route-map calculator permit 35798 match community 2_234_249 set community 0:58266 ip community-list standard 2_90_234 permit 65000:2 0:90 0:234 ip community-list standard 2_108_195 permit 65000:2 0:108 0:195 ip community-list standard 2_117_180 permit 65000:2 0:117 0:180 ip community-list standard 2_130_162 permit 65000:2 0:130 0:162 ip community-list standard 2_135_156 permit 65000:2 0:135 0:156 route-map calculator permit 35799 match community 2_90_234 2_108_195 2_117_180 2_130_162 2_135_156 set community 0:21060 ip community-list standard 2_106_242 permit 65000:2 0:106 0:242 ip community-list standard 2_121_212 permit 65000:2 0:121 0:212 route-map calculator permit 35800 match community 2_106_242 2_121_212 set community 0:25652 ip community-list standard 2_52_205 permit 65000:2 0:52 0:205 ip community-list standard 2_65_164 permit 65000:2 0:65 0:164 ip community-list standard 2_82_130 permit 65000:2 0:82 0:130 route-map calculator permit 35801 match community 2_52_205 2_65_164 2_82_130 set community 0:10660 ip community-list standard 2_51_223 permit 65000:2 0:51 0:223 route-map calculator permit 35802 match community 2_51_223 set community 0:11373 ip community-list standard 2_31_139 permit 65000:2 0:31 0:139 route-map calculator permit 35803 match community 2_31_139 set community 0:4309 ip community-list standard 2_118_240 permit 65000:2 0:118 0:240 ip community-list standard 2_120_236 permit 65000:2 0:120 0:236 ip community-list standard 2_160_177 permit 65000:2 0:160 0:177 route-map calculator permit 35804 match community 2_118_240 2_120_236 2_160_177 set community 0:28320 ip community-list standard 2_7_83 permit 65000:2 0:7 0:83 route-map calculator permit 35805 match community 2_7_83 set community 0:581 ip community-list standard 2_104_197 permit 65000:2 0:104 0:197 route-map calculator permit 35806 match community 2_104_197 set community 0:20488 ip community-list standard 2_192_199 permit 65000:2 0:192 0:199 route-map calculator permit 35807 match community 2_192_199 set community 0:38208 ip community-list standard 2_105_218 permit 65000:2 0:105 0:218 ip community-list standard 2_109_210 permit 65000:2 0:109 0:210 route-map calculator permit 35808 match community 2_105_218 2_109_210 set community 0:22890 ip community-list standard 1_183_256 permit 65000:1 0:183 0:256 ip community-list standard 1_184_255 permit 65000:1 0:184 0:255 ip community-list standard 1_185_254 permit 65000:1 0:185 0:254 ip community-list standard 1_186_253 permit 65000:1 0:186 0:253 ip community-list standard 1_187_252 permit 65000:1 0:187 0:252 ip community-list standard 1_188_251 permit 65000:1 0:188 0:251 ip community-list standard 1_189_250 permit 65000:1 0:189 0:250 ip community-list standard 1_190_249 permit 65000:1 0:190 0:249 ip community-list standard 1_191_248 permit 65000:1 0:191 0:248 ip community-list standard 1_192_247 permit 65000:1 0:192 0:247 ip community-list standard 1_193_246 permit 65000:1 0:193 0:246 ip community-list standard 1_194_245 permit 65000:1 0:194 0:245 ip community-list standard 1_195_244 permit 65000:1 0:195 0:244 ip community-list standard 1_196_243 permit 65000:1 0:196 0:243 ip community-list standard 1_197_242 permit 65000:1 0:197 0:242 ip community-list standard 1_198_241 permit 65000:1 0:198 0:241 ip community-list standard 1_199_240 permit 65000:1 0:199 0:240 ip community-list standard 1_200_239 permit 65000:1 0:200 0:239 ip community-list standard 1_201_238 permit 65000:1 0:201 0:238 ip community-list standard 1_202_237 permit 65000:1 0:202 0:237 ip community-list standard 1_203_236 permit 65000:1 0:203 0:236 ip community-list standard 1_204_235 permit 65000:1 0:204 0:235 ip community-list standard 1_205_234 permit 65000:1 0:205 0:234 ip community-list standard 1_206_233 permit 65000:1 0:206 0:233 ip community-list standard 1_207_232 permit 65000:1 0:207 0:232 ip community-list standard 1_208_231 permit 65000:1 0:208 0:231 ip community-list standard 1_209_230 permit 65000:1 0:209 0:230 ip community-list standard 1_210_229 permit 65000:1 0:210 0:229 ip community-list standard 1_211_228 permit 65000:1 0:211 0:228 ip community-list standard 1_212_227 permit 65000:1 0:212 0:227 ip community-list standard 1_213_226 permit 65000:1 0:213 0:226 ip community-list standard 1_214_225 permit 65000:1 0:214 0:225 ip community-list standard 1_215_224 permit 65000:1 0:215 0:224 ip community-list standard 1_216_223 permit 65000:1 0:216 0:223 ip community-list standard 1_217_222 permit 65000:1 0:217 0:222 ip community-list standard 1_218_221 permit 65000:1 0:218 0:221 ip community-list standard 1_219_220 permit 65000:1 0:219 0:220 route-map calculator permit 35809 match community 1_183_256 1_184_255 1_185_254 1_186_253 1_187_252 set community 0:439 route-map calculator permit 35810 match community 1_188_251 1_189_250 1_190_249 1_191_248 1_192_247 set community 0:439 route-map calculator permit 35811 match community 1_193_246 1_194_245 1_195_244 1_196_243 1_197_242 set community 0:439 route-map calculator permit 35812 match community 1_198_241 1_199_240 1_200_239 1_201_238 1_202_237 set community 0:439 route-map calculator permit 35813 match community 1_203_236 1_204_235 1_205_234 1_206_233 1_207_232 set community 0:439 route-map calculator permit 35814 match community 1_208_231 1_209_230 1_210_229 1_211_228 1_212_227 set community 0:439 route-map calculator permit 35815 match community 1_213_226 1_214_225 1_215_224 1_216_223 1_217_222 set community 0:439 route-map calculator permit 35816 match community 1_218_221 1_219_220 set community 0:439 ip community-list standard 2_39_241 permit 65000:2 0:39 0:241 route-map calculator permit 35817 match community 2_39_241 set community 0:9399 ip community-list standard 2_114_237 permit 65000:2 0:114 0:237 ip community-list standard 2_158_171 permit 65000:2 0:158 0:171 route-map calculator permit 35818 match community 2_114_237 2_158_171 set community 0:27018 ip community-list standard 2_43_153 permit 65000:2 0:43 0:153 ip community-list standard 2_51_129 permit 65000:2 0:51 0:129 route-map calculator permit 35819 match community 2_43_153 2_51_129 set community 0:6579 ip community-list standard 2_62_217 permit 65000:2 0:62 0:217 route-map calculator permit 35820 match community 2_62_217 set community 0:13454 ip community-list standard 2_73_149 permit 65000:2 0:73 0:149 route-map calculator permit 35821 match community 2_73_149 set community 0:10877 ip community-list standard 2_179_193 permit 65000:2 0:179 0:193 route-map calculator permit 35822 match community 2_179_193 set community 0:34547 ip community-list standard 2_34_223 permit 65000:2 0:34 0:223 route-map calculator permit 35823 match community 2_34_223 set community 0:7582 ip community-list standard 2_92_246 permit 65000:2 0:92 0:246 ip community-list standard 2_123_184 permit 65000:2 0:123 0:184 ip community-list standard 2_138_164 permit 65000:2 0:138 0:164 route-map calculator permit 35824 match community 2_92_246 2_123_184 2_138_164 set community 0:22632 ip community-list standard 2_24_188 permit 65000:2 0:24 0:188 ip community-list standard 2_32_141 permit 65000:2 0:32 0:141 ip community-list standard 2_47_96 permit 65000:2 0:47 0:96 ip community-list standard 2_48_94 permit 65000:2 0:48 0:94 route-map calculator permit 35825 match community 2_24_188 2_32_141 2_47_96 2_48_94 set community 0:4512 ip community-list standard 2_15_167 permit 65000:2 0:15 0:167 route-map calculator permit 35826 match community 2_15_167 set community 0:2505 ip community-list standard 2_171_174 permit 65000:2 0:171 0:174 route-map calculator permit 35827 match community 2_171_174 set community 0:29754 ip community-list standard 2_66_219 permit 65000:2 0:66 0:219 ip community-list standard 2_73_198 permit 65000:2 0:73 0:198 ip community-list standard 2_99_146 permit 65000:2 0:99 0:146 route-map calculator permit 35828 match community 2_66_219 2_73_198 2_99_146 set community 0:14454 ip community-list standard 2_99_129 permit 65000:2 0:99 0:129 route-map calculator permit 35829 match community 2_99_129 set community 0:12771 ip community-list standard 2_17_202 permit 65000:2 0:17 0:202 ip community-list standard 2_34_101 permit 65000:2 0:34 0:101 route-map calculator permit 35830 match community 2_17_202 2_34_101 set community 0:3434 ip community-list standard 1_177_256 permit 65000:1 0:177 0:256 ip community-list standard 1_178_255 permit 65000:1 0:178 0:255 ip community-list standard 1_179_254 permit 65000:1 0:179 0:254 ip community-list standard 1_180_253 permit 65000:1 0:180 0:253 ip community-list standard 1_181_252 permit 65000:1 0:181 0:252 ip community-list standard 1_182_251 permit 65000:1 0:182 0:251 ip community-list standard 1_183_250 permit 65000:1 0:183 0:250 ip community-list standard 1_184_249 permit 65000:1 0:184 0:249 ip community-list standard 1_185_248 permit 65000:1 0:185 0:248 ip community-list standard 1_186_247 permit 65000:1 0:186 0:247 ip community-list standard 1_187_246 permit 65000:1 0:187 0:246 ip community-list standard 1_188_245 permit 65000:1 0:188 0:245 ip community-list standard 1_189_244 permit 65000:1 0:189 0:244 ip community-list standard 1_190_243 permit 65000:1 0:190 0:243 ip community-list standard 1_191_242 permit 65000:1 0:191 0:242 ip community-list standard 1_192_241 permit 65000:1 0:192 0:241 ip community-list standard 1_193_240 permit 65000:1 0:193 0:240 ip community-list standard 1_194_239 permit 65000:1 0:194 0:239 ip community-list standard 1_195_238 permit 65000:1 0:195 0:238 ip community-list standard 1_196_237 permit 65000:1 0:196 0:237 ip community-list standard 1_197_236 permit 65000:1 0:197 0:236 ip community-list standard 1_198_235 permit 65000:1 0:198 0:235 ip community-list standard 1_199_234 permit 65000:1 0:199 0:234 ip community-list standard 1_200_233 permit 65000:1 0:200 0:233 ip community-list standard 1_201_232 permit 65000:1 0:201 0:232 ip community-list standard 1_202_231 permit 65000:1 0:202 0:231 ip community-list standard 1_203_230 permit 65000:1 0:203 0:230 ip community-list standard 1_204_229 permit 65000:1 0:204 0:229 ip community-list standard 1_205_228 permit 65000:1 0:205 0:228 ip community-list standard 1_206_227 permit 65000:1 0:206 0:227 ip community-list standard 1_207_226 permit 65000:1 0:207 0:226 ip community-list standard 1_208_225 permit 65000:1 0:208 0:225 ip community-list standard 1_209_224 permit 65000:1 0:209 0:224 ip community-list standard 1_210_223 permit 65000:1 0:210 0:223 ip community-list standard 1_211_222 permit 65000:1 0:211 0:222 ip community-list standard 1_212_221 permit 65000:1 0:212 0:221 ip community-list standard 1_213_220 permit 65000:1 0:213 0:220 ip community-list standard 1_214_219 permit 65000:1 0:214 0:219 ip community-list standard 1_215_218 permit 65000:1 0:215 0:218 ip community-list standard 1_216_217 permit 65000:1 0:216 0:217 route-map calculator permit 35831 match community 1_177_256 1_178_255 1_179_254 1_180_253 1_181_252 set community 0:433 route-map calculator permit 35832 match community 1_182_251 1_183_250 1_184_249 1_185_248 1_186_247 set community 0:433 route-map calculator permit 35833 match community 1_187_246 1_188_245 1_189_244 1_190_243 1_191_242 set community 0:433 route-map calculator permit 35834 match community 1_192_241 1_193_240 1_194_239 1_195_238 1_196_237 set community 0:433 route-map calculator permit 35835 match community 1_197_236 1_198_235 1_199_234 1_200_233 1_201_232 set community 0:433 route-map calculator permit 35836 match community 1_202_231 1_203_230 1_204_229 1_205_228 1_206_227 set community 0:433 route-map calculator permit 35837 match community 1_207_226 1_208_225 1_209_224 1_210_223 1_211_222 set community 0:433 route-map calculator permit 35838 match community 1_212_221 1_213_220 1_214_219 1_215_218 1_216_217 set community 0:433 ip community-list standard 2_27_127 permit 65000:2 0:27 0:127 route-map calculator permit 35839 match community 2_27_127 set community 0:3429 ip community-list standard 2_16_170 permit 65000:2 0:16 0:170 ip community-list standard 2_17_160 permit 65000:2 0:17 0:160 ip community-list standard 2_20_136 permit 65000:2 0:20 0:136 ip community-list standard 2_32_85 permit 65000:2 0:32 0:85 ip community-list standard 2_34_80 permit 65000:2 0:34 0:80 ip community-list standard 2_40_68 permit 65000:2 0:40 0:68 route-map calculator permit 35840 match community 2_16_170 2_17_160 2_20_136 2_32_85 2_34_80 set community 0:2720 route-map calculator permit 35841 match community 2_40_68 set community 0:2720 ip community-list standard 2_5_251 permit 65000:2 0:5 0:251 route-map calculator permit 35842 match community 2_5_251 set community 0:1255 ip community-list standard 2_27_209 permit 65000:2 0:27 0:209 ip community-list standard 2_33_171 permit 65000:2 0:33 0:171 ip community-list standard 2_57_99 permit 65000:2 0:57 0:99 route-map calculator permit 35843 match community 2_27_209 2_33_171 2_57_99 set community 0:5643 ip community-list standard 2_68_137 permit 65000:2 0:68 0:137 route-map calculator permit 35844 match community 2_68_137 set community 0:9316 ip community-list standard 2_37_121 permit 65000:2 0:37 0:121 route-map calculator permit 35845 match community 2_37_121 set community 0:4477 ip community-list standard 2_227_239 permit 65000:2 0:227 0:239 route-map calculator permit 35846 match community 2_227_239 set community 0:54253 ip community-list standard 2_181_198 permit 65000:2 0:181 0:198 route-map calculator permit 35847 match community 2_181_198 set community 0:35838 ip community-list standard 2_47_204 permit 65000:2 0:47 0:204 ip community-list standard 2_51_188 permit 65000:2 0:51 0:188 ip community-list standard 2_68_141 permit 65000:2 0:68 0:141 ip community-list standard 2_94_102 permit 65000:2 0:94 0:102 route-map calculator permit 35848 match community 2_47_204 2_51_188 2_68_141 2_94_102 set community 0:9588 ip community-list standard 2_94_239 permit 65000:2 0:94 0:239 route-map calculator permit 35849 match community 2_94_239 set community 0:22466 ip community-list standard 2_125_229 permit 65000:2 0:125 0:229 route-map calculator permit 35850 match community 2_125_229 set community 0:28625 ip community-list standard 2_190_215 permit 65000:2 0:190 0:215 route-map calculator permit 35851 match community 2_190_215 set community 0:40850 ip community-list standard 2_139_214 permit 65000:2 0:139 0:214 route-map calculator permit 35852 match community 2_139_214 set community 0:29746 ip community-list standard 2_149_153 permit 65000:2 0:149 0:153 route-map calculator permit 35853 match community 2_149_153 set community 0:22797 ip community-list standard 2_197_224 permit 65000:2 0:197 0:224 route-map calculator permit 35854 match community 2_197_224 set community 0:44128 ip community-list standard 2_61_166 permit 65000:2 0:61 0:166 ip community-list standard 2_83_122 permit 65000:2 0:83 0:122 route-map calculator permit 35855 match community 2_61_166 2_83_122 set community 0:10126 ip community-list standard 2_178_195 permit 65000:2 0:178 0:195 route-map calculator permit 35856 match community 2_178_195 set community 0:34710 ip community-list standard 2_85_190 permit 65000:2 0:85 0:190 ip community-list standard 2_95_170 permit 65000:2 0:95 0:170 route-map calculator permit 35857 match community 2_85_190 2_95_170 set community 0:16150 ip community-list standard 2_159_252 permit 65000:2 0:159 0:252 ip community-list standard 2_189_212 permit 65000:2 0:189 0:212 route-map calculator permit 35858 match community 2_159_252 2_189_212 set community 0:40068 ip community-list standard 2_185_208 permit 65000:2 0:185 0:208 route-map calculator permit 35859 match community 2_185_208 set community 0:38480 ip community-list standard 2_90_253 permit 65000:2 0:90 0:253 ip community-list standard 2_99_230 permit 65000:2 0:99 0:230 ip community-list standard 2_110_207 permit 65000:2 0:110 0:207 ip community-list standard 2_115_198 permit 65000:2 0:115 0:198 ip community-list standard 2_138_165 permit 65000:2 0:138 0:165 route-map calculator permit 35860 match community 2_90_253 2_99_230 2_110_207 2_115_198 2_138_165 set community 0:22770 ip community-list standard 2_57_218 permit 65000:2 0:57 0:218 ip community-list standard 2_109_114 permit 65000:2 0:109 0:114 route-map calculator permit 35861 match community 2_57_218 2_109_114 set community 0:12426 ip community-list standard 2_231_250 permit 65000:2 0:231 0:250 route-map calculator permit 35862 match community 2_231_250 set community 0:57750 ip community-list standard 2_158_224 permit 65000:2 0:158 0:224 route-map calculator permit 35863 match community 2_158_224 set community 0:35392 ip community-list standard 2_71_190 permit 65000:2 0:71 0:190 ip community-list standard 2_95_142 permit 65000:2 0:95 0:142 route-map calculator permit 35864 match community 2_71_190 2_95_142 set community 0:13490 ip community-list standard 2_185_254 permit 65000:2 0:185 0:254 route-map calculator permit 35865 match community 2_185_254 set community 0:46990 ip community-list standard 2_16_188 permit 65000:2 0:16 0:188 ip community-list standard 2_32_94 permit 65000:2 0:32 0:94 ip community-list standard 2_47_64 permit 65000:2 0:47 0:64 route-map calculator permit 35866 match community 2_16_188 2_32_94 2_47_64 set community 0:3008 ip community-list standard 2_3_192 permit 65000:2 0:3 0:192 ip community-list standard 2_4_144 permit 65000:2 0:4 0:144 ip community-list standard 2_6_96 permit 65000:2 0:6 0:96 ip community-list standard 2_8_72 permit 65000:2 0:8 0:72 ip community-list standard 2_9_64 permit 65000:2 0:9 0:64 ip community-list standard 2_12_48 permit 65000:2 0:12 0:48 ip community-list standard 2_16_36 permit 65000:2 0:16 0:36 ip community-list standard 2_18_32 permit 65000:2 0:18 0:32 ip community-list standard 2_24_24 permit 65000:2 0:24 0:24 route-map calculator permit 35867 match community 2_3_192 2_4_144 2_6_96 2_8_72 2_9_64 set community 0:576 route-map calculator permit 35868 match community 2_12_48 2_16_36 2_18_32 2_24_24 set community 0:576 ip community-list standard 2_49_83 permit 65000:2 0:49 0:83 route-map calculator permit 35869 match community 2_49_83 set community 0:4067 ip community-list standard 2_59_73 permit 65000:2 0:59 0:73 route-map calculator permit 35870 match community 2_59_73 set community 0:4307 ip community-list standard 2_242_252 permit 65000:2 0:242 0:252 route-map calculator permit 35871 match community 2_242_252 set community 0:60984 ip community-list standard 2_84_196 permit 65000:2 0:84 0:196 ip community-list standard 2_98_168 permit 65000:2 0:98 0:168 ip community-list standard 2_112_147 permit 65000:2 0:112 0:147 route-map calculator permit 35872 match community 2_84_196 2_98_168 2_112_147 set community 0:16464 ip community-list standard 2_239_242 permit 65000:2 0:239 0:242 route-map calculator permit 35873 match community 2_239_242 set community 0:57838 ip community-list standard 2_189_246 permit 65000:2 0:189 0:246 route-map calculator permit 35874 match community 2_189_246 set community 0:46494 ip community-list standard 2_40_211 permit 65000:2 0:40 0:211 route-map calculator permit 35875 match community 2_40_211 set community 0:8440 ip community-list standard 2_29_157 permit 65000:2 0:29 0:157 route-map calculator permit 35876 match community 2_29_157 set community 0:4553 ip community-list standard 2_192_201 permit 65000:2 0:192 0:201 route-map calculator permit 35877 match community 2_192_201 set community 0:38592 ip community-list standard 2_183_198 permit 65000:2 0:183 0:198 route-map calculator permit 35878 match community 2_183_198 set community 0:36234 ip community-list standard 2_208_212 permit 65000:2 0:208 0:212 route-map calculator permit 35879 match community 2_208_212 set community 0:44096 ip community-list standard 2_95_113 permit 65000:2 0:95 0:113 route-map calculator permit 35880 match community 2_95_113 set community 0:10735 ip community-list standard 2_173_242 permit 65000:2 0:173 0:242 route-map calculator permit 35881 match community 2_173_242 set community 0:41866 ip community-list standard 2_171_186 permit 65000:2 0:171 0:186 route-map calculator permit 35882 match community 2_171_186 set community 0:31806 ip community-list standard 2_193_239 permit 65000:2 0:193 0:239 route-map calculator permit 35883 match community 2_193_239 set community 0:46127 ip community-list standard 2_205_217 permit 65000:2 0:205 0:217 route-map calculator permit 35884 match community 2_205_217 set community 0:44485 ip community-list standard 2_128_249 permit 65000:2 0:128 0:249 ip community-list standard 2_166_192 permit 65000:2 0:166 0:192 route-map calculator permit 35885 match community 2_128_249 2_166_192 set community 0:31872 ip community-list standard 2_37_173 permit 65000:2 0:37 0:173 route-map calculator permit 35886 match community 2_37_173 set community 0:6401 ip community-list standard 2_116_209 permit 65000:2 0:116 0:209 route-map calculator permit 35887 match community 2_116_209 set community 0:24244 ip community-list standard 2_78_239 permit 65000:2 0:78 0:239 route-map calculator permit 35888 match community 2_78_239 set community 0:18642 ip community-list standard 2_49_226 permit 65000:2 0:49 0:226 ip community-list standard 2_98_113 permit 65000:2 0:98 0:113 route-map calculator permit 35889 match community 2_49_226 2_98_113 set community 0:11074 ip community-list standard 2_36_211 permit 65000:2 0:36 0:211 route-map calculator permit 35890 match community 2_36_211 set community 0:7596 ip community-list standard 2_57_183 permit 65000:2 0:57 0:183 ip community-list standard 2_61_171 permit 65000:2 0:61 0:171 route-map calculator permit 35891 match community 2_57_183 2_61_171 set community 0:10431 ip community-list standard 2_76_235 permit 65000:2 0:76 0:235 ip community-list standard 2_94_190 permit 65000:2 0:94 0:190 ip community-list standard 2_95_188 permit 65000:2 0:95 0:188 route-map calculator permit 35892 match community 2_76_235 2_94_190 2_95_188 set community 0:17860 ip community-list standard 2_137_165 permit 65000:2 0:137 0:165 route-map calculator permit 35893 match community 2_137_165 set community 0:22605 ip community-list standard 2_203_211 permit 65000:2 0:203 0:211 route-map calculator permit 35894 match community 2_203_211 set community 0:42833 ip community-list standard 2_185_202 permit 65000:2 0:185 0:202 route-map calculator permit 35895 match community 2_185_202 set community 0:37370 ip community-list standard 2_246_256 permit 65000:2 0:246 0:256 route-map calculator permit 35896 match community 2_246_256 set community 0:62976 ip community-list standard 2_128_247 permit 65000:2 0:128 0:247 ip community-list standard 2_152_208 permit 65000:2 0:152 0:208 route-map calculator permit 35897 match community 2_128_247 2_152_208 set community 0:31616 ip community-list standard 2_71_234 permit 65000:2 0:71 0:234 ip community-list standard 2_78_213 permit 65000:2 0:78 0:213 ip community-list standard 2_117_142 permit 65000:2 0:117 0:142 route-map calculator permit 35898 match community 2_71_234 2_78_213 2_117_142 set community 0:16614 ip community-list standard 2_226_238 permit 65000:2 0:226 0:238 route-map calculator permit 35899 match community 2_226_238 set community 0:53788 ip community-list standard 2_227_229 permit 65000:2 0:227 0:229 route-map calculator permit 35900 match community 2_227_229 set community 0:51983 ip community-list standard 2_226_227 permit 65000:2 0:226 0:227 route-map calculator permit 35901 match community 2_226_227 set community 0:51302 ip community-list standard 2_42_149 permit 65000:2 0:42 0:149 route-map calculator permit 35902 match community 2_42_149 set community 0:6258 ip community-list standard 2_172_242 permit 65000:2 0:172 0:242 route-map calculator permit 35903 match community 2_172_242 set community 0:41624 ip community-list standard 2_163_184 permit 65000:2 0:163 0:184 route-map calculator permit 35904 match community 2_163_184 set community 0:29992 ip community-list standard 2_45_178 permit 65000:2 0:45 0:178 ip community-list standard 2_89_90 permit 65000:2 0:89 0:90 route-map calculator permit 35905 match community 2_45_178 2_89_90 set community 0:8010 ip community-list standard 2_134_167 permit 65000:2 0:134 0:167 route-map calculator permit 35906 match community 2_134_167 set community 0:22378 ip community-list standard 2_167_212 permit 65000:2 0:167 0:212 route-map calculator permit 35907 match community 2_167_212 set community 0:35404 ip community-list standard 2_19_93 permit 65000:2 0:19 0:93 ip community-list standard 2_31_57 permit 65000:2 0:31 0:57 route-map calculator permit 35908 match community 2_19_93 2_31_57 set community 0:1767 ip community-list standard 2_45_207 permit 65000:2 0:45 0:207 ip community-list standard 2_69_135 permit 65000:2 0:69 0:135 ip community-list standard 2_81_115 permit 65000:2 0:81 0:115 route-map calculator permit 35909 match community 2_45_207 2_69_135 2_81_115 set community 0:9315 ip community-list standard 2_126_251 permit 65000:2 0:126 0:251 route-map calculator permit 35910 match community 2_126_251 set community 0:31626 ip community-list standard 2_42_239 permit 65000:2 0:42 0:239 route-map calculator permit 35911 match community 2_42_239 set community 0:10038 ip community-list standard 2_201_231 permit 65000:2 0:201 0:231 route-map calculator permit 35912 match community 2_201_231 set community 0:46431 ip community-list standard 2_145_256 permit 65000:2 0:145 0:256 ip community-list standard 2_160_232 permit 65000:2 0:160 0:232 route-map calculator permit 35913 match community 2_145_256 2_160_232 set community 0:37120 ip community-list standard 2_18_131 permit 65000:2 0:18 0:131 route-map calculator permit 35914 match community 2_18_131 set community 0:2358 ip community-list standard 2_11_191 permit 65000:2 0:11 0:191 route-map calculator permit 35915 match community 2_11_191 set community 0:2101 ip community-list standard 2_61_173 permit 65000:2 0:61 0:173 route-map calculator permit 35916 match community 2_61_173 set community 0:10553 ip community-list standard 2_148_252 permit 65000:2 0:148 0:252 ip community-list standard 2_168_222 permit 65000:2 0:168 0:222 route-map calculator permit 35917 match community 2_148_252 2_168_222 set community 0:37296 ip community-list standard 1_1_66 permit 65000:1 0:1 0:66 ip community-list standard 2_1_67 permit 65000:2 0:1 0:67 ip community-list standard 1_2_65 permit 65000:1 0:2 0:65 ip community-list standard 1_3_64 permit 65000:1 0:3 0:64 ip community-list standard 1_4_63 permit 65000:1 0:4 0:63 ip community-list standard 1_5_62 permit 65000:1 0:5 0:62 ip community-list standard 1_6_61 permit 65000:1 0:6 0:61 ip community-list standard 1_7_60 permit 65000:1 0:7 0:60 ip community-list standard 1_8_59 permit 65000:1 0:8 0:59 ip community-list standard 1_9_58 permit 65000:1 0:9 0:58 ip community-list standard 1_10_57 permit 65000:1 0:10 0:57 ip community-list standard 1_11_56 permit 65000:1 0:11 0:56 ip community-list standard 1_12_55 permit 65000:1 0:12 0:55 ip community-list standard 1_13_54 permit 65000:1 0:13 0:54 ip community-list standard 1_14_53 permit 65000:1 0:14 0:53 ip community-list standard 1_15_52 permit 65000:1 0:15 0:52 ip community-list standard 1_16_51 permit 65000:1 0:16 0:51 ip community-list standard 1_17_50 permit 65000:1 0:17 0:50 ip community-list standard 1_18_49 permit 65000:1 0:18 0:49 ip community-list standard 1_19_48 permit 65000:1 0:19 0:48 ip community-list standard 1_20_47 permit 65000:1 0:20 0:47 ip community-list standard 1_21_46 permit 65000:1 0:21 0:46 ip community-list standard 1_22_45 permit 65000:1 0:22 0:45 ip community-list standard 1_23_44 permit 65000:1 0:23 0:44 ip community-list standard 1_24_43 permit 65000:1 0:24 0:43 ip community-list standard 1_25_42 permit 65000:1 0:25 0:42 ip community-list standard 1_26_41 permit 65000:1 0:26 0:41 ip community-list standard 1_27_40 permit 65000:1 0:27 0:40 ip community-list standard 1_28_39 permit 65000:1 0:28 0:39 ip community-list standard 1_29_38 permit 65000:1 0:29 0:38 ip community-list standard 1_30_37 permit 65000:1 0:30 0:37 ip community-list standard 1_31_36 permit 65000:1 0:31 0:36 ip community-list standard 1_32_35 permit 65000:1 0:32 0:35 ip community-list standard 1_33_34 permit 65000:1 0:33 0:34 ip community-list expanded c67 permit 1 ^65000:4_0:67_0:1$ ip community-list expanded c67 permit 2 ^65000:3_0:68_0:1$ ip community-list expanded c67 permit 3 ^65000:3_0:69_0:2$ ip community-list expanded c67 permit 4 ^65000:3_0:70_0:3$ ip community-list expanded c67 permit 5 ^65000:3_0:71_0:4$ ip community-list expanded c67 permit 6 ^65000:3_0:72_0:5$ ip community-list expanded c67 permit 7 ^65000:3_0:73_0:6$ ip community-list expanded c67 permit 8 ^65000:3_0:74_0:7$ ip community-list expanded c67 permit 9 ^65000:3_0:75_0:8$ ip community-list expanded c67 permit 10 ^65000:3_0:76_0:9$ ip community-list expanded c67 permit 11 ^65000:3_0:77_0:10$ ip community-list expanded c67 permit 12 ^65000:3_0:78_0:11$ ip community-list expanded c67 permit 13 ^65000:3_0:79_0:12$ ip community-list expanded c67 permit 14 ^65000:3_0:80_0:13$ ip community-list expanded c67 permit 15 ^65000:3_0:81_0:14$ ip community-list expanded c67 permit 16 ^65000:3_0:82_0:15$ ip community-list expanded c67 permit 17 ^65000:3_0:83_0:16$ ip community-list expanded c67 permit 18 ^65000:3_0:84_0:17$ ip community-list expanded c67 permit 19 ^65000:3_0:85_0:18$ ip community-list expanded c67 permit 20 ^65000:3_0:86_0:19$ ip community-list expanded c67 permit 21 ^65000:3_0:87_0:20$ ip community-list expanded c67 permit 22 ^65000:3_0:88_0:21$ ip community-list expanded c67 permit 23 ^65000:3_0:89_0:22$ ip community-list expanded c67 permit 24 ^65000:3_0:90_0:23$ ip community-list expanded c67 permit 25 ^65000:3_0:91_0:24$ ip community-list expanded c67 permit 26 ^65000:3_0:92_0:25$ ip community-list expanded c67 permit 27 ^65000:3_0:93_0:26$ ip community-list expanded c67 permit 28 ^65000:3_0:94_0:27$ ip community-list expanded c67 permit 29 ^65000:3_0:95_0:28$ ip community-list expanded c67 permit 30 ^65000:3_0:96_0:29$ ip community-list expanded c67 permit 31 ^65000:3_0:97_0:30$ ip community-list expanded c67 permit 32 ^65000:3_0:98_0:31$ ip community-list expanded c67 permit 33 ^65000:3_0:99_0:32$ ip community-list expanded c67 permit 34 ^65000:3_0:100_0:33$ ip community-list expanded c67 permit 35 ^65000:3_0:101_0:34$ ip community-list expanded c67 permit 36 ^65000:3_0:102_0:35$ ip community-list expanded c67 permit 37 ^65000:3_0:103_0:36$ ip community-list expanded c67 permit 38 ^65000:3_0:104_0:37$ ip community-list expanded c67 permit 39 ^65000:3_0:105_0:38$ ip community-list expanded c67 permit 40 ^65000:3_0:106_0:39$ ip community-list expanded c67 permit 41 ^65000:3_0:107_0:40$ ip community-list expanded c67 permit 42 ^65000:3_0:108_0:41$ ip community-list expanded c67 permit 43 ^65000:3_0:109_0:42$ ip community-list expanded c67 permit 44 ^65000:3_0:110_0:43$ ip community-list expanded c67 permit 45 ^65000:3_0:111_0:44$ ip community-list expanded c67 permit 46 ^65000:3_0:112_0:45$ ip community-list expanded c67 permit 47 ^65000:3_0:113_0:46$ ip community-list expanded c67 permit 48 ^65000:3_0:114_0:47$ ip community-list expanded c67 permit 49 ^65000:3_0:115_0:48$ ip community-list expanded c67 permit 50 ^65000:3_0:116_0:49$ ip community-list expanded c67 permit 51 ^65000:3_0:117_0:50$ ip community-list expanded c67 permit 52 ^65000:3_0:118_0:51$ ip community-list expanded c67 permit 53 ^65000:3_0:119_0:52$ ip community-list expanded c67 permit 54 ^65000:3_0:120_0:53$ ip community-list expanded c67 permit 55 ^65000:3_0:121_0:54$ ip community-list expanded c67 permit 56 ^65000:3_0:122_0:55$ ip community-list expanded c67 permit 57 ^65000:3_0:123_0:56$ ip community-list expanded c67 permit 58 ^65000:3_0:124_0:57$ ip community-list expanded c67 permit 59 ^65000:3_0:125_0:58$ ip community-list expanded c67 permit 60 ^65000:3_0:126_0:59$ ip community-list expanded c67 permit 61 ^65000:3_0:127_0:60$ ip community-list expanded c67 permit 62 ^65000:3_0:128_0:61$ ip community-list expanded c67 permit 63 ^65000:3_0:129_0:62$ ip community-list expanded c67 permit 64 ^65000:3_0:130_0:63$ ip community-list expanded c67 permit 65 ^65000:3_0:131_0:64$ ip community-list expanded c67 permit 66 ^65000:3_0:132_0:65$ ip community-list expanded c67 permit 67 ^65000:3_0:133_0:66$ ip community-list expanded c67 permit 68 ^65000:4_0:134_0:2$ ip community-list expanded c67 permit 69 ^65000:3_0:134_0:67$ ip community-list expanded c67 permit 70 ^65000:4_0:135_0:2$ ip community-list expanded c67 permit 71 ^65000:3_0:135_0:68$ ip community-list expanded c67 permit 72 ^65000:3_0:136_0:69$ ip community-list expanded c67 permit 73 ^65000:3_0:137_0:70$ ip community-list expanded c67 permit 74 ^65000:3_0:138_0:71$ ip community-list expanded c67 permit 75 ^65000:3_0:139_0:72$ ip community-list expanded c67 permit 76 ^65000:3_0:140_0:73$ ip community-list expanded c67 permit 77 ^65000:3_0:141_0:74$ ip community-list expanded c67 permit 78 ^65000:3_0:142_0:75$ ip community-list expanded c67 permit 79 ^65000:3_0:143_0:76$ ip community-list expanded c67 permit 80 ^65000:3_0:144_0:77$ ip community-list expanded c67 permit 81 ^65000:3_0:145_0:78$ ip community-list expanded c67 permit 82 ^65000:3_0:146_0:79$ ip community-list expanded c67 permit 83 ^65000:3_0:147_0:80$ ip community-list expanded c67 permit 84 ^65000:3_0:148_0:81$ ip community-list expanded c67 permit 85 ^65000:3_0:149_0:82$ ip community-list expanded c67 permit 86 ^65000:3_0:150_0:83$ ip community-list expanded c67 permit 87 ^65000:3_0:151_0:84$ ip community-list expanded c67 permit 88 ^65000:3_0:152_0:85$ ip community-list expanded c67 permit 89 ^65000:3_0:153_0:86$ ip community-list expanded c67 permit 90 ^65000:3_0:154_0:87$ ip community-list expanded c67 permit 91 ^65000:3_0:155_0:88$ ip community-list expanded c67 permit 92 ^65000:3_0:156_0:89$ ip community-list expanded c67 permit 93 ^65000:3_0:157_0:90$ ip community-list expanded c67 permit 94 ^65000:3_0:158_0:91$ ip community-list expanded c67 permit 95 ^65000:3_0:159_0:92$ ip community-list expanded c67 permit 96 ^65000:3_0:160_0:93$ ip community-list expanded c67 permit 97 ^65000:3_0:161_0:94$ ip community-list expanded c67 permit 98 ^65000:3_0:162_0:95$ ip community-list expanded c67 permit 99 ^65000:3_0:163_0:96$ ip community-list expanded c67 permit 100 ^65000:3_0:164_0:97$ ip community-list expanded c67 permit 101 ^65000:3_0:165_0:98$ ip community-list expanded c67 permit 102 ^65000:3_0:166_0:99$ ip community-list expanded c67 permit 103 ^65000:3_0:167_0:100$ ip community-list expanded c67 permit 104 ^65000:3_0:168_0:101$ ip community-list expanded c67 permit 105 ^65000:3_0:169_0:102$ ip community-list expanded c67 permit 106 ^65000:3_0:170_0:103$ ip community-list expanded c67 permit 107 ^65000:3_0:171_0:104$ ip community-list expanded c67 permit 108 ^65000:3_0:172_0:105$ ip community-list expanded c67 permit 109 ^65000:3_0:173_0:106$ ip community-list expanded c67 permit 110 ^65000:3_0:174_0:107$ ip community-list expanded c67 permit 111 ^65000:3_0:175_0:108$ ip community-list expanded c67 permit 112 ^65000:3_0:176_0:109$ ip community-list expanded c67 permit 113 ^65000:3_0:177_0:110$ ip community-list expanded c67 permit 114 ^65000:3_0:178_0:111$ ip community-list expanded c67 permit 115 ^65000:3_0:179_0:112$ ip community-list expanded c67 permit 116 ^65000:3_0:180_0:113$ ip community-list expanded c67 permit 117 ^65000:3_0:181_0:114$ ip community-list expanded c67 permit 118 ^65000:3_0:182_0:115$ ip community-list expanded c67 permit 119 ^65000:3_0:183_0:116$ ip community-list expanded c67 permit 120 ^65000:3_0:184_0:117$ ip community-list expanded c67 permit 121 ^65000:3_0:185_0:118$ ip community-list expanded c67 permit 122 ^65000:3_0:186_0:119$ ip community-list expanded c67 permit 123 ^65000:3_0:187_0:120$ ip community-list expanded c67 permit 124 ^65000:3_0:188_0:121$ ip community-list expanded c67 permit 125 ^65000:3_0:189_0:122$ ip community-list expanded c67 permit 126 ^65000:3_0:190_0:123$ ip community-list expanded c67 permit 127 ^65000:3_0:191_0:124$ ip community-list expanded c67 permit 128 ^65000:3_0:192_0:125$ ip community-list expanded c67 permit 129 ^65000:3_0:193_0:126$ ip community-list expanded c67 permit 130 ^65000:3_0:194_0:127$ ip community-list expanded c67 permit 131 ^65000:3_0:195_0:128$ ip community-list expanded c67 permit 132 ^65000:3_0:196_0:129$ ip community-list expanded c67 permit 133 ^65000:3_0:197_0:130$ ip community-list expanded c67 permit 134 ^65000:3_0:198_0:131$ ip community-list expanded c67 permit 135 ^65000:3_0:199_0:132$ ip community-list expanded c67 permit 136 ^65000:3_0:200_0:133$ ip community-list expanded c67 permit 137 ^65000:4_0:201_0:3$ ip community-list expanded c67 permit 138 ^65000:3_0:201_0:134$ ip community-list expanded c67 permit 139 ^65000:4_0:202_0:3$ ip community-list expanded c67 permit 140 ^65000:3_0:202_0:135$ ip community-list expanded c67 permit 141 ^65000:4_0:203_0:3$ ip community-list expanded c67 permit 142 ^65000:3_0:203_0:136$ ip community-list expanded c67 permit 143 ^65000:3_0:204_0:137$ ip community-list expanded c67 permit 144 ^65000:3_0:205_0:138$ ip community-list expanded c67 permit 145 ^65000:3_0:206_0:139$ ip community-list expanded c67 permit 146 ^65000:3_0:207_0:140$ ip community-list expanded c67 permit 147 ^65000:3_0:208_0:141$ ip community-list expanded c67 permit 148 ^65000:3_0:209_0:142$ ip community-list expanded c67 permit 149 ^65000:3_0:210_0:143$ ip community-list expanded c67 permit 150 ^65000:3_0:211_0:144$ ip community-list expanded c67 permit 151 ^65000:3_0:212_0:145$ ip community-list expanded c67 permit 152 ^65000:3_0:213_0:146$ ip community-list expanded c67 permit 153 ^65000:3_0:214_0:147$ ip community-list expanded c67 permit 154 ^65000:3_0:215_0:148$ ip community-list expanded c67 permit 155 ^65000:3_0:216_0:149$ ip community-list expanded c67 permit 156 ^65000:3_0:217_0:150$ ip community-list expanded c67 permit 157 ^65000:3_0:218_0:151$ ip community-list expanded c67 permit 158 ^65000:3_0:219_0:152$ ip community-list expanded c67 permit 159 ^65000:3_0:220_0:153$ ip community-list expanded c67 permit 160 ^65000:3_0:221_0:154$ ip community-list expanded c67 permit 161 ^65000:3_0:222_0:155$ ip community-list expanded c67 permit 162 ^65000:3_0:223_0:156$ ip community-list expanded c67 permit 163 ^65000:3_0:224_0:157$ ip community-list expanded c67 permit 164 ^65000:3_0:225_0:158$ ip community-list expanded c67 permit 165 ^65000:3_0:226_0:159$ ip community-list expanded c67 permit 166 ^65000:3_0:227_0:160$ ip community-list expanded c67 permit 167 ^65000:3_0:228_0:161$ ip community-list expanded c67 permit 168 ^65000:3_0:229_0:162$ ip community-list expanded c67 permit 169 ^65000:3_0:230_0:163$ ip community-list expanded c67 permit 170 ^65000:3_0:231_0:164$ ip community-list expanded c67 permit 171 ^65000:3_0:232_0:165$ ip community-list expanded c67 permit 172 ^65000:3_0:233_0:166$ ip community-list expanded c67 permit 173 ^65000:3_0:234_0:167$ ip community-list expanded c67 permit 174 ^65000:3_0:235_0:168$ ip community-list expanded c67 permit 175 ^65000:3_0:236_0:169$ ip community-list expanded c67 permit 176 ^65000:3_0:237_0:170$ ip community-list expanded c67 permit 177 ^65000:3_0:238_0:171$ ip community-list expanded c67 permit 178 ^65000:3_0:239_0:172$ ip community-list expanded c67 permit 179 ^65000:3_0:240_0:173$ ip community-list expanded c67 permit 180 ^65000:3_0:241_0:174$ ip community-list expanded c67 permit 181 ^65000:3_0:242_0:175$ ip community-list expanded c67 permit 182 ^65000:3_0:243_0:176$ ip community-list expanded c67 permit 183 ^65000:3_0:244_0:177$ ip community-list expanded c67 permit 184 ^65000:3_0:245_0:178$ ip community-list expanded c67 permit 185 ^65000:3_0:246_0:179$ ip community-list expanded c67 permit 186 ^65000:3_0:247_0:180$ ip community-list expanded c67 permit 187 ^65000:3_0:248_0:181$ ip community-list expanded c67 permit 188 ^65000:3_0:249_0:182$ ip community-list expanded c67 permit 189 ^65000:3_0:250_0:183$ ip community-list expanded c67 permit 190 ^65000:3_0:251_0:184$ ip community-list expanded c67 permit 191 ^65000:3_0:252_0:185$ ip community-list expanded c67 permit 192 ^65000:3_0:253_0:186$ ip community-list expanded c67 permit 193 ^65000:3_0:254_0:187$ ip community-list expanded c67 permit 194 ^65000:3_0:255_0:188$ ip community-list expanded c67 permit 195 ^65000:3_0:256_0:189$ route-map calculator permit 35918 match community 1_1_66 2_1_67 1_2_65 1_3_64 1_4_63 set community 0:67 route-map calculator permit 35919 match community 1_5_62 1_6_61 1_7_60 1_8_59 1_9_58 set community 0:67 route-map calculator permit 35920 match community 1_10_57 1_11_56 1_12_55 1_13_54 1_14_53 set community 0:67 route-map calculator permit 35921 match community 1_15_52 1_16_51 1_17_50 1_18_49 1_19_48 set community 0:67 route-map calculator permit 35922 match community 1_20_47 1_21_46 1_22_45 1_23_44 1_24_43 set community 0:67 route-map calculator permit 35923 match community 1_25_42 1_26_41 1_27_40 1_28_39 1_29_38 set community 0:67 route-map calculator permit 35924 match community 1_30_37 1_31_36 1_32_35 1_33_34 c4_67_1 set community 0:67 route-map calculator permit 35925 match community c3_68_1 c3_69_2 c3_70_3 c3_71_4 c3_72_5 set community 0:67 route-map calculator permit 35926 match community c3_73_6 c3_74_7 c3_75_8 c3_76_9 c3_77_10 set community 0:67 route-map calculator permit 35927 match community c3_78_11 c3_79_12 c3_80_13 c3_81_14 c3_82_15 set community 0:67 route-map calculator permit 35928 match community c3_83_16 c3_84_17 c3_85_18 c3_86_19 c3_87_20 set community 0:67 route-map calculator permit 35929 match community c3_88_21 c3_89_22 c3_90_23 c3_91_24 c3_92_25 set community 0:67 route-map calculator permit 35930 match community c3_93_26 c3_94_27 c3_95_28 c3_96_29 c3_97_30 set community 0:67 route-map calculator permit 35931 match community c3_98_31 c3_99_32 c3_100_33 c3_101_34 c3_102_35 set community 0:67 route-map calculator permit 35932 match community c3_103_36 c3_104_37 c3_105_38 c3_106_39 c3_107_40 set community 0:67 route-map calculator permit 35933 match community c3_108_41 c3_109_42 c3_110_43 c3_111_44 c3_112_45 set community 0:67 route-map calculator permit 35934 match community c3_113_46 c3_114_47 c3_115_48 c3_116_49 c3_117_50 set community 0:67 route-map calculator permit 35935 match community c3_118_51 c3_119_52 c3_120_53 c3_121_54 c3_122_55 set community 0:67 route-map calculator permit 35936 match community c3_123_56 c3_124_57 c3_125_58 c3_126_59 c3_127_60 set community 0:67 route-map calculator permit 35937 match community c3_128_61 c3_129_62 c3_130_63 c3_131_64 c3_132_65 set community 0:67 route-map calculator permit 35938 match community c3_133_66 c4_134_2 c3_134_67 c4_135_2 c3_135_68 set community 0:67 route-map calculator permit 35939 match community c3_136_69 c3_137_70 c3_138_71 c3_139_72 c3_140_73 set community 0:67 route-map calculator permit 35940 match community c3_141_74 c3_142_75 c3_143_76 c3_144_77 c3_145_78 set community 0:67 route-map calculator permit 35941 match community c3_146_79 c3_147_80 c3_148_81 c3_149_82 c3_150_83 set community 0:67 route-map calculator permit 35942 match community c3_151_84 c3_152_85 c3_153_86 c3_154_87 c3_155_88 set community 0:67 route-map calculator permit 35943 match community c3_156_89 c3_157_90 c3_158_91 c3_159_92 c3_160_93 set community 0:67 route-map calculator permit 35944 match community c3_161_94 c3_162_95 c3_163_96 c3_164_97 c3_165_98 set community 0:67 route-map calculator permit 35945 match community c3_166_99 c3_167_100 c3_168_101 c3_169_102 c3_170_103 set community 0:67 route-map calculator permit 35946 match community c3_171_104 c3_172_105 c3_173_106 c3_174_107 c3_175_108 set community 0:67 route-map calculator permit 35947 match community c3_176_109 c3_177_110 c3_178_111 c3_179_112 c3_180_113 set community 0:67 route-map calculator permit 35948 match community c3_181_114 c3_182_115 c3_183_116 c3_184_117 c3_185_118 set community 0:67 route-map calculator permit 35949 match community c3_186_119 c3_187_120 c3_188_121 c3_189_122 c3_190_123 set community 0:67 route-map calculator permit 35950 match community c3_191_124 c3_192_125 c3_193_126 c3_194_127 c3_195_128 set community 0:67 route-map calculator permit 35951 match community c3_196_129 c3_197_130 c3_198_131 c3_199_132 c3_200_133 set community 0:67 route-map calculator permit 35952 match community c4_201_3 c3_201_134 c4_202_3 c3_202_135 c4_203_3 set community 0:67 route-map calculator permit 35953 match community c3_203_136 c3_204_137 c3_205_138 c3_206_139 c3_207_140 set community 0:67 route-map calculator permit 35954 match community c3_208_141 c3_209_142 c3_210_143 c3_211_144 c3_212_145 set community 0:67 route-map calculator permit 35955 match community c3_213_146 c3_214_147 c3_215_148 c3_216_149 c3_217_150 set community 0:67 route-map calculator permit 35956 match community c3_218_151 c3_219_152 c3_220_153 c3_221_154 c3_222_155 set community 0:67 route-map calculator permit 35957 match community c3_223_156 c3_224_157 c3_225_158 c3_226_159 c3_227_160 set community 0:67 route-map calculator permit 35958 match community c3_228_161 c3_229_162 c3_230_163 c3_231_164 c3_232_165 set community 0:67 route-map calculator permit 35959 match community c3_233_166 c3_234_167 c3_235_168 c3_236_169 c3_237_170 set community 0:67 route-map calculator permit 35960 match community c3_238_171 c3_239_172 c3_240_173 c3_241_174 c3_242_175 set community 0:67 route-map calculator permit 35961 match community c3_243_176 c3_244_177 c3_245_178 c3_246_179 c3_247_180 set community 0:67 route-map calculator permit 35962 match community c3_248_181 c3_249_182 c3_250_183 c3_251_184 c3_252_185 set community 0:67 route-map calculator permit 35963 match community c3_253_186 c3_254_187 c3_255_188 c3_256_189 set community 0:67 ip community-list standard 1_1_126 permit 65000:1 0:1 0:126 ip community-list standard 2_1_127 permit 65000:2 0:1 0:127 ip community-list standard 1_2_125 permit 65000:1 0:2 0:125 ip community-list standard 1_3_124 permit 65000:1 0:3 0:124 ip community-list standard 1_4_123 permit 65000:1 0:4 0:123 ip community-list standard 1_5_122 permit 65000:1 0:5 0:122 ip community-list standard 1_6_121 permit 65000:1 0:6 0:121 ip community-list standard 1_7_120 permit 65000:1 0:7 0:120 ip community-list standard 1_8_119 permit 65000:1 0:8 0:119 ip community-list standard 1_9_118 permit 65000:1 0:9 0:118 ip community-list standard 1_10_117 permit 65000:1 0:10 0:117 ip community-list standard 1_11_116 permit 65000:1 0:11 0:116 ip community-list standard 1_12_115 permit 65000:1 0:12 0:115 ip community-list standard 1_13_114 permit 65000:1 0:13 0:114 ip community-list standard 1_14_113 permit 65000:1 0:14 0:113 ip community-list standard 1_15_112 permit 65000:1 0:15 0:112 ip community-list standard 1_16_111 permit 65000:1 0:16 0:111 ip community-list standard 1_17_110 permit 65000:1 0:17 0:110 ip community-list standard 1_18_109 permit 65000:1 0:18 0:109 ip community-list standard 1_19_108 permit 65000:1 0:19 0:108 ip community-list standard 1_20_107 permit 65000:1 0:20 0:107 ip community-list standard 1_21_106 permit 65000:1 0:21 0:106 ip community-list standard 1_22_105 permit 65000:1 0:22 0:105 ip community-list standard 1_23_104 permit 65000:1 0:23 0:104 ip community-list standard 1_24_103 permit 65000:1 0:24 0:103 ip community-list standard 1_25_102 permit 65000:1 0:25 0:102 ip community-list standard 1_26_101 permit 65000:1 0:26 0:101 ip community-list standard 1_27_100 permit 65000:1 0:27 0:100 ip community-list standard 1_28_99 permit 65000:1 0:28 0:99 ip community-list standard 1_29_98 permit 65000:1 0:29 0:98 ip community-list standard 1_30_97 permit 65000:1 0:30 0:97 ip community-list standard 1_31_96 permit 65000:1 0:31 0:96 ip community-list standard 1_32_95 permit 65000:1 0:32 0:95 ip community-list standard 1_33_94 permit 65000:1 0:33 0:94 ip community-list standard 1_34_93 permit 65000:1 0:34 0:93 ip community-list standard 1_35_92 permit 65000:1 0:35 0:92 ip community-list standard 1_36_91 permit 65000:1 0:36 0:91 ip community-list standard 1_37_90 permit 65000:1 0:37 0:90 ip community-list standard 1_38_89 permit 65000:1 0:38 0:89 ip community-list standard 1_39_88 permit 65000:1 0:39 0:88 ip community-list standard 1_40_87 permit 65000:1 0:40 0:87 ip community-list standard 1_41_86 permit 65000:1 0:41 0:86 ip community-list standard 1_42_85 permit 65000:1 0:42 0:85 ip community-list standard 1_43_84 permit 65000:1 0:43 0:84 ip community-list standard 1_44_83 permit 65000:1 0:44 0:83 ip community-list standard 1_45_82 permit 65000:1 0:45 0:82 ip community-list standard 1_46_81 permit 65000:1 0:46 0:81 ip community-list standard 1_47_80 permit 65000:1 0:47 0:80 ip community-list standard 1_48_79 permit 65000:1 0:48 0:79 ip community-list standard 1_49_78 permit 65000:1 0:49 0:78 ip community-list standard 1_50_77 permit 65000:1 0:50 0:77 ip community-list standard 1_51_76 permit 65000:1 0:51 0:76 ip community-list standard 1_52_75 permit 65000:1 0:52 0:75 ip community-list standard 1_53_74 permit 65000:1 0:53 0:74 ip community-list standard 1_54_73 permit 65000:1 0:54 0:73 ip community-list standard 1_55_72 permit 65000:1 0:55 0:72 ip community-list standard 1_56_71 permit 65000:1 0:56 0:71 ip community-list standard 1_57_70 permit 65000:1 0:57 0:70 ip community-list standard 1_58_69 permit 65000:1 0:58 0:69 ip community-list standard 1_59_68 permit 65000:1 0:59 0:68 ip community-list standard 1_60_67 permit 65000:1 0:60 0:67 ip community-list standard 1_61_66 permit 65000:1 0:61 0:66 ip community-list standard 1_62_65 permit 65000:1 0:62 0:65 ip community-list standard 1_63_64 permit 65000:1 0:63 0:64 ip community-list expanded c127 permit 1 ^65000:4_0:127_0:1$ ip community-list expanded c127 permit 2 ^65000:3_0:128_0:1$ ip community-list expanded c127 permit 3 ^65000:3_0:129_0:2$ ip community-list expanded c127 permit 4 ^65000:3_0:130_0:3$ ip community-list expanded c127 permit 5 ^65000:3_0:131_0:4$ ip community-list expanded c127 permit 6 ^65000:3_0:132_0:5$ ip community-list expanded c127 permit 7 ^65000:3_0:133_0:6$ ip community-list expanded c127 permit 8 ^65000:3_0:134_0:7$ ip community-list expanded c127 permit 9 ^65000:3_0:135_0:8$ ip community-list expanded c127 permit 10 ^65000:3_0:136_0:9$ ip community-list expanded c127 permit 11 ^65000:3_0:137_0:10$ ip community-list expanded c127 permit 12 ^65000:3_0:138_0:11$ ip community-list expanded c127 permit 13 ^65000:3_0:139_0:12$ ip community-list expanded c127 permit 14 ^65000:3_0:140_0:13$ ip community-list expanded c127 permit 15 ^65000:3_0:141_0:14$ ip community-list expanded c127 permit 16 ^65000:3_0:142_0:15$ ip community-list expanded c127 permit 17 ^65000:3_0:143_0:16$ ip community-list expanded c127 permit 18 ^65000:3_0:144_0:17$ ip community-list expanded c127 permit 19 ^65000:3_0:145_0:18$ ip community-list expanded c127 permit 20 ^65000:3_0:146_0:19$ ip community-list expanded c127 permit 21 ^65000:3_0:147_0:20$ ip community-list expanded c127 permit 22 ^65000:3_0:148_0:21$ ip community-list expanded c127 permit 23 ^65000:3_0:149_0:22$ ip community-list expanded c127 permit 24 ^65000:3_0:150_0:23$ ip community-list expanded c127 permit 25 ^65000:3_0:151_0:24$ ip community-list expanded c127 permit 26 ^65000:3_0:152_0:25$ ip community-list expanded c127 permit 27 ^65000:3_0:153_0:26$ ip community-list expanded c127 permit 28 ^65000:3_0:154_0:27$ ip community-list expanded c127 permit 29 ^65000:3_0:155_0:28$ ip community-list expanded c127 permit 30 ^65000:3_0:156_0:29$ ip community-list expanded c127 permit 31 ^65000:3_0:157_0:30$ ip community-list expanded c127 permit 32 ^65000:3_0:158_0:31$ ip community-list expanded c127 permit 33 ^65000:3_0:159_0:32$ ip community-list expanded c127 permit 34 ^65000:3_0:160_0:33$ ip community-list expanded c127 permit 35 ^65000:3_0:161_0:34$ ip community-list expanded c127 permit 36 ^65000:3_0:162_0:35$ ip community-list expanded c127 permit 37 ^65000:3_0:163_0:36$ ip community-list expanded c127 permit 38 ^65000:3_0:164_0:37$ ip community-list expanded c127 permit 39 ^65000:3_0:165_0:38$ ip community-list expanded c127 permit 40 ^65000:3_0:166_0:39$ ip community-list expanded c127 permit 41 ^65000:3_0:167_0:40$ ip community-list expanded c127 permit 42 ^65000:3_0:168_0:41$ ip community-list expanded c127 permit 43 ^65000:3_0:169_0:42$ ip community-list expanded c127 permit 44 ^65000:3_0:170_0:43$ ip community-list expanded c127 permit 45 ^65000:3_0:171_0:44$ ip community-list expanded c127 permit 46 ^65000:3_0:172_0:45$ ip community-list expanded c127 permit 47 ^65000:3_0:173_0:46$ ip community-list expanded c127 permit 48 ^65000:3_0:174_0:47$ ip community-list expanded c127 permit 49 ^65000:3_0:175_0:48$ ip community-list expanded c127 permit 50 ^65000:3_0:176_0:49$ ip community-list expanded c127 permit 51 ^65000:3_0:177_0:50$ ip community-list expanded c127 permit 52 ^65000:3_0:178_0:51$ ip community-list expanded c127 permit 53 ^65000:3_0:179_0:52$ ip community-list expanded c127 permit 54 ^65000:3_0:180_0:53$ ip community-list expanded c127 permit 55 ^65000:3_0:181_0:54$ ip community-list expanded c127 permit 56 ^65000:3_0:182_0:55$ ip community-list expanded c127 permit 57 ^65000:3_0:183_0:56$ ip community-list expanded c127 permit 58 ^65000:3_0:184_0:57$ ip community-list expanded c127 permit 59 ^65000:3_0:185_0:58$ ip community-list expanded c127 permit 60 ^65000:3_0:186_0:59$ ip community-list expanded c127 permit 61 ^65000:3_0:187_0:60$ ip community-list expanded c127 permit 62 ^65000:3_0:188_0:61$ ip community-list expanded c127 permit 63 ^65000:3_0:189_0:62$ ip community-list expanded c127 permit 64 ^65000:3_0:190_0:63$ ip community-list expanded c127 permit 65 ^65000:3_0:191_0:64$ ip community-list expanded c127 permit 66 ^65000:3_0:192_0:65$ ip community-list expanded c127 permit 67 ^65000:3_0:193_0:66$ ip community-list expanded c127 permit 68 ^65000:3_0:194_0:67$ ip community-list expanded c127 permit 69 ^65000:3_0:195_0:68$ ip community-list expanded c127 permit 70 ^65000:3_0:196_0:69$ ip community-list expanded c127 permit 71 ^65000:3_0:197_0:70$ ip community-list expanded c127 permit 72 ^65000:3_0:198_0:71$ ip community-list expanded c127 permit 73 ^65000:3_0:199_0:72$ ip community-list expanded c127 permit 74 ^65000:3_0:200_0:73$ ip community-list expanded c127 permit 75 ^65000:3_0:201_0:74$ ip community-list expanded c127 permit 76 ^65000:3_0:202_0:75$ ip community-list expanded c127 permit 77 ^65000:3_0:203_0:76$ ip community-list expanded c127 permit 78 ^65000:3_0:204_0:77$ ip community-list expanded c127 permit 79 ^65000:3_0:205_0:78$ ip community-list expanded c127 permit 80 ^65000:3_0:206_0:79$ ip community-list expanded c127 permit 81 ^65000:3_0:207_0:80$ ip community-list expanded c127 permit 82 ^65000:3_0:208_0:81$ ip community-list expanded c127 permit 83 ^65000:3_0:209_0:82$ ip community-list expanded c127 permit 84 ^65000:3_0:210_0:83$ ip community-list expanded c127 permit 85 ^65000:3_0:211_0:84$ ip community-list expanded c127 permit 86 ^65000:3_0:212_0:85$ ip community-list expanded c127 permit 87 ^65000:3_0:213_0:86$ ip community-list expanded c127 permit 88 ^65000:3_0:214_0:87$ ip community-list expanded c127 permit 89 ^65000:3_0:215_0:88$ ip community-list expanded c127 permit 90 ^65000:3_0:216_0:89$ ip community-list expanded c127 permit 91 ^65000:3_0:217_0:90$ ip community-list expanded c127 permit 92 ^65000:3_0:218_0:91$ ip community-list expanded c127 permit 93 ^65000:3_0:219_0:92$ ip community-list expanded c127 permit 94 ^65000:3_0:220_0:93$ ip community-list expanded c127 permit 95 ^65000:3_0:221_0:94$ ip community-list expanded c127 permit 96 ^65000:3_0:222_0:95$ ip community-list expanded c127 permit 97 ^65000:3_0:223_0:96$ ip community-list expanded c127 permit 98 ^65000:3_0:224_0:97$ ip community-list expanded c127 permit 99 ^65000:3_0:225_0:98$ ip community-list expanded c127 permit 100 ^65000:3_0:226_0:99$ ip community-list expanded c127 permit 101 ^65000:3_0:227_0:100$ ip community-list expanded c127 permit 102 ^65000:3_0:228_0:101$ ip community-list expanded c127 permit 103 ^65000:3_0:229_0:102$ ip community-list expanded c127 permit 104 ^65000:3_0:230_0:103$ ip community-list expanded c127 permit 105 ^65000:3_0:231_0:104$ ip community-list expanded c127 permit 106 ^65000:3_0:232_0:105$ ip community-list expanded c127 permit 107 ^65000:3_0:233_0:106$ ip community-list expanded c127 permit 108 ^65000:3_0:234_0:107$ ip community-list expanded c127 permit 109 ^65000:3_0:235_0:108$ ip community-list expanded c127 permit 110 ^65000:3_0:236_0:109$ ip community-list expanded c127 permit 111 ^65000:3_0:237_0:110$ ip community-list expanded c127 permit 112 ^65000:3_0:238_0:111$ ip community-list expanded c127 permit 113 ^65000:3_0:239_0:112$ ip community-list expanded c127 permit 114 ^65000:3_0:240_0:113$ ip community-list expanded c127 permit 115 ^65000:3_0:241_0:114$ ip community-list expanded c127 permit 116 ^65000:3_0:242_0:115$ ip community-list expanded c127 permit 117 ^65000:3_0:243_0:116$ ip community-list expanded c127 permit 118 ^65000:3_0:244_0:117$ ip community-list expanded c127 permit 119 ^65000:3_0:245_0:118$ ip community-list expanded c127 permit 120 ^65000:3_0:246_0:119$ ip community-list expanded c127 permit 121 ^65000:3_0:247_0:120$ ip community-list expanded c127 permit 122 ^65000:3_0:248_0:121$ ip community-list expanded c127 permit 123 ^65000:3_0:249_0:122$ ip community-list expanded c127 permit 124 ^65000:3_0:250_0:123$ ip community-list expanded c127 permit 125 ^65000:3_0:251_0:124$ ip community-list expanded c127 permit 126 ^65000:3_0:252_0:125$ ip community-list expanded c127 permit 127 ^65000:3_0:253_0:126$ ip community-list expanded c127 permit 128 ^65000:4_0:254_0:2$ ip community-list expanded c127 permit 129 ^65000:3_0:254_0:127$ ip community-list expanded c127 permit 130 ^65000:4_0:255_0:2$ ip community-list expanded c127 permit 131 ^65000:3_0:255_0:128$ ip community-list expanded c127 permit 132 ^65000:3_0:256_0:129$ route-map calculator permit 35964 match community 1_1_126 2_1_127 1_2_125 1_3_124 1_4_123 set community 0:127 route-map calculator permit 35965 match community 1_5_122 1_6_121 1_7_120 1_8_119 1_9_118 set community 0:127 route-map calculator permit 35966 match community 1_10_117 1_11_116 1_12_115 1_13_114 1_14_113 set community 0:127 route-map calculator permit 35967 match community 1_15_112 1_16_111 1_17_110 1_18_109 1_19_108 set community 0:127 route-map calculator permit 35968 match community 1_20_107 1_21_106 1_22_105 1_23_104 1_24_103 set community 0:127 route-map calculator permit 35969 match community 1_25_102 1_26_101 1_27_100 1_28_99 1_29_98 set community 0:127 route-map calculator permit 35970 match community 1_30_97 1_31_96 1_32_95 1_33_94 1_34_93 set community 0:127 route-map calculator permit 35971 match community 1_35_92 1_36_91 1_37_90 1_38_89 1_39_88 set community 0:127 route-map calculator permit 35972 match community 1_40_87 1_41_86 1_42_85 1_43_84 1_44_83 set community 0:127 route-map calculator permit 35973 match community 1_45_82 1_46_81 1_47_80 1_48_79 1_49_78 set community 0:127 route-map calculator permit 35974 match community 1_50_77 1_51_76 1_52_75 1_53_74 1_54_73 set community 0:127 route-map calculator permit 35975 match community 1_55_72 1_56_71 1_57_70 1_58_69 1_59_68 set community 0:127 route-map calculator permit 35976 match community 1_60_67 1_61_66 1_62_65 1_63_64 c4_127_1 set community 0:127 route-map calculator permit 35977 match community c3_128_1 c3_129_2 c3_130_3 c3_131_4 c3_132_5 set community 0:127 route-map calculator permit 35978 match community c3_133_6 c3_134_7 c3_135_8 c3_136_9 c3_137_10 set community 0:127 route-map calculator permit 35979 match community c3_138_11 c3_139_12 c3_140_13 c3_141_14 c3_142_15 set community 0:127 route-map calculator permit 35980 match community c3_143_16 c3_144_17 c3_145_18 c3_146_19 c3_147_20 set community 0:127 route-map calculator permit 35981 match community c3_148_21 c3_149_22 c3_150_23 c3_151_24 c3_152_25 set community 0:127 route-map calculator permit 35982 match community c3_153_26 c3_154_27 c3_155_28 c3_156_29 c3_157_30 set community 0:127 route-map calculator permit 35983 match community c3_158_31 c3_159_32 c3_160_33 c3_161_34 c3_162_35 set community 0:127 route-map calculator permit 35984 match community c3_163_36 c3_164_37 c3_165_38 c3_166_39 c3_167_40 set community 0:127 route-map calculator permit 35985 match community c3_168_41 c3_169_42 c3_170_43 c3_171_44 c3_172_45 set community 0:127 route-map calculator permit 35986 match community c3_173_46 c3_174_47 c3_175_48 c3_176_49 c3_177_50 set community 0:127 route-map calculator permit 35987 match community c3_178_51 c3_179_52 c3_180_53 c3_181_54 c3_182_55 set community 0:127 route-map calculator permit 35988 match community c3_183_56 c3_184_57 c3_185_58 c3_186_59 c3_187_60 set community 0:127 route-map calculator permit 35989 match community c3_188_61 c3_189_62 c3_190_63 c3_191_64 c3_192_65 set community 0:127 route-map calculator permit 35990 match community c3_193_66 c3_194_67 c3_195_68 c3_196_69 c3_197_70 set community 0:127 route-map calculator permit 35991 match community c3_198_71 c3_199_72 c3_200_73 c3_201_74 c3_202_75 set community 0:127 route-map calculator permit 35992 match community c3_203_76 c3_204_77 c3_205_78 c3_206_79 c3_207_80 set community 0:127 route-map calculator permit 35993 match community c3_208_81 c3_209_82 c3_210_83 c3_211_84 c3_212_85 set community 0:127 route-map calculator permit 35994 match community c3_213_86 c3_214_87 c3_215_88 c3_216_89 c3_217_90 set community 0:127 route-map calculator permit 35995 match community c3_218_91 c3_219_92 c3_220_93 c3_221_94 c3_222_95 set community 0:127 route-map calculator permit 35996 match community c3_223_96 c3_224_97 c3_225_98 c3_226_99 c3_227_100 set community 0:127 route-map calculator permit 35997 match community c3_228_101 c3_229_102 c3_230_103 c3_231_104 c3_232_105 set community 0:127 route-map calculator permit 35998 match community c3_233_106 c3_234_107 c3_235_108 c3_236_109 c3_237_110 set community 0:127 route-map calculator permit 35999 match community c3_238_111 c3_239_112 c3_240_113 c3_241_114 c3_242_115 set community 0:127 route-map calculator permit 36000 match community c3_243_116 c3_244_117 c3_245_118 c3_246_119 c3_247_120 set community 0:127 route-map calculator permit 36001 match community c3_248_121 c3_249_122 c3_250_123 c3_251_124 c3_252_125 set community 0:127 route-map calculator permit 36002 match community c3_253_126 c4_254_2 c3_254_127 c4_255_2 c3_255_128 set community 0:127 route-map calculator permit 36003 match community c3_256_129 set community 0:127 ip community-list standard 2_40_219 permit 65000:2 0:40 0:219 ip community-list standard 2_60_146 permit 65000:2 0:60 0:146 ip community-list standard 2_73_120 permit 65000:2 0:73 0:120 route-map calculator permit 36004 match community 2_40_219 2_60_146 2_73_120 set community 0:8760 ip community-list standard 2_79_149 permit 65000:2 0:79 0:149 route-map calculator permit 36005 match community 2_79_149 set community 0:11771 ip community-list standard 2_145_207 permit 65000:2 0:145 0:207 route-map calculator permit 36006 match community 2_145_207 set community 0:30015 ip community-list standard 2_171_215 permit 65000:2 0:171 0:215 route-map calculator permit 36007 match community 2_171_215 set community 0:36765 ip community-list standard 2_51_244 permit 65000:2 0:51 0:244 ip community-list standard 2_61_204 permit 65000:2 0:61 0:204 ip community-list standard 2_68_183 permit 65000:2 0:68 0:183 ip community-list standard 2_102_122 permit 65000:2 0:102 0:122 route-map calculator permit 36008 match community 2_51_244 2_61_204 2_68_183 2_102_122 set community 0:12444 ip community-list standard 1_1_1 permit 65000:1 0:1 0:1 ip community-list standard 2_1_2 permit 65000:2 0:1 0:2 ip community-list expanded c2 permit 1 ^65000:4_0:2_0:1$ ip community-list expanded c2 permit 2 ^65000:3_0:3_0:1$ ip community-list expanded c2 permit 3 ^65000:3_0:4_0:2$ ip community-list expanded c2 permit 4 ^65000:4_0:4_0:2$ ip community-list expanded c2 permit 5 ^65000:4_0:5_0:2$ ip community-list expanded c2 permit 6 ^65000:3_0:5_0:3$ ip community-list expanded c2 permit 7 ^65000:4_0:6_0:3$ ip community-list expanded c2 permit 8 ^65000:3_0:6_0:4$ ip community-list expanded c2 permit 9 ^65000:4_0:7_0:3$ ip community-list expanded c2 permit 10 ^65000:3_0:7_0:5$ ip community-list expanded c2 permit 11 ^65000:4_0:8_0:3$ ip community-list expanded c2 permit 12 ^65000:4_0:8_0:4$ ip community-list expanded c2 permit 13 ^65000:3_0:8_0:6$ ip community-list expanded c2 permit 14 ^65000:4_0:9_0:4$ ip community-list expanded c2 permit 15 ^65000:3_0:9_0:7$ ip community-list expanded c2 permit 16 ^65000:4_0:10_0:4$ ip community-list expanded c2 permit 17 ^65000:4_0:10_0:5$ ip community-list expanded c2 permit 18 ^65000:3_0:10_0:8$ ip community-list expanded c2 permit 19 ^65000:4_0:11_0:4$ ip community-list expanded c2 permit 20 ^65000:4_0:11_0:5$ ip community-list expanded c2 permit 21 ^65000:3_0:11_0:9$ ip community-list expanded c2 permit 22 ^65000:4_0:12_0:5$ ip community-list expanded c2 permit 23 ^65000:4_0:12_0:6$ ip community-list expanded c2 permit 24 ^65000:3_0:12_0:10$ ip community-list expanded c2 permit 25 ^65000:4_0:13_0:5$ ip community-list expanded c2 permit 26 ^65000:4_0:13_0:6$ ip community-list expanded c2 permit 27 ^65000:3_0:13_0:11$ ip community-list expanded c2 permit 28 ^65000:4_0:14_0:5$ ip community-list expanded c2 permit 29 ^65000:4_0:14_0:6$ ip community-list expanded c2 permit 30 ^65000:4_0:14_0:7$ ip community-list expanded c2 permit 31 ^65000:3_0:14_0:12$ ip community-list expanded c2 permit 32 ^65000:4_0:15_0:6$ ip community-list expanded c2 permit 33 ^65000:4_0:15_0:7$ ip community-list expanded c2 permit 34 ^65000:3_0:15_0:13$ ip community-list expanded c2 permit 35 ^65000:4_0:16_0:6$ ip community-list expanded c2 permit 36 ^65000:4_0:16_0:7$ ip community-list expanded c2 permit 37 ^65000:4_0:16_0:8$ ip community-list expanded c2 permit 38 ^65000:3_0:16_0:14$ ip community-list expanded c2 permit 39 ^65000:4_0:17_0:6$ ip community-list expanded c2 permit 40 ^65000:4_0:17_0:7$ ip community-list expanded c2 permit 41 ^65000:4_0:17_0:8$ ip community-list expanded c2 permit 42 ^65000:3_0:17_0:15$ ip community-list expanded c2 permit 43 ^65000:4_0:18_0:7$ ip community-list expanded c2 permit 44 ^65000:4_0:18_0:8$ ip community-list expanded c2 permit 45 ^65000:4_0:18_0:9$ ip community-list expanded c2 permit 46 ^65000:3_0:18_0:16$ ip community-list expanded c2 permit 47 ^65000:4_0:19_0:7$ ip community-list expanded c2 permit 48 ^65000:4_0:19_0:8$ ip community-list expanded c2 permit 49 ^65000:4_0:19_0:9$ ip community-list expanded c2 permit 50 ^65000:3_0:19_0:17$ ip community-list expanded c2 permit 51 ^65000:4_0:20_0:7$ ip community-list expanded c2 permit 52 ^65000:4_0:20_0:8$ ip community-list expanded c2 permit 53 ^65000:4_0:20_0:9$ ip community-list expanded c2 permit 54 ^65000:4_0:20_0:10$ ip community-list expanded c2 permit 55 ^65000:3_0:20_0:18$ ip community-list expanded c2 permit 56 ^65000:4_0:21_0:8$ ip community-list expanded c2 permit 57 ^65000:4_0:21_0:9$ ip community-list expanded c2 permit 58 ^65000:4_0:21_0:10$ ip community-list expanded c2 permit 59 ^65000:3_0:21_0:19$ ip community-list expanded c2 permit 60 ^65000:4_0:22_0:8$ ip community-list expanded c2 permit 61 ^65000:4_0:22_0:9$ ip community-list expanded c2 permit 62 ^65000:4_0:22_0:10$ ip community-list expanded c2 permit 63 ^65000:4_0:22_0:11$ ip community-list expanded c2 permit 64 ^65000:3_0:22_0:20$ ip community-list expanded c2 permit 65 ^65000:4_0:23_0:8$ ip community-list expanded c2 permit 66 ^65000:4_0:23_0:9$ ip community-list expanded c2 permit 67 ^65000:4_0:23_0:10$ ip community-list expanded c2 permit 68 ^65000:4_0:23_0:11$ ip community-list expanded c2 permit 69 ^65000:3_0:23_0:21$ ip community-list expanded c2 permit 70 ^65000:4_0:24_0:9$ ip community-list expanded c2 permit 71 ^65000:4_0:24_0:10$ ip community-list expanded c2 permit 72 ^65000:4_0:24_0:11$ ip community-list expanded c2 permit 73 ^65000:4_0:24_0:12$ ip community-list expanded c2 permit 74 ^65000:3_0:24_0:22$ ip community-list expanded c2 permit 75 ^65000:4_0:25_0:9$ ip community-list expanded c2 permit 76 ^65000:4_0:25_0:10$ ip community-list expanded c2 permit 77 ^65000:4_0:25_0:11$ ip community-list expanded c2 permit 78 ^65000:4_0:25_0:12$ ip community-list expanded c2 permit 79 ^65000:3_0:25_0:23$ ip community-list expanded c2 permit 80 ^65000:4_0:26_0:9$ ip community-list expanded c2 permit 81 ^65000:4_0:26_0:10$ ip community-list expanded c2 permit 82 ^65000:4_0:26_0:11$ ip community-list expanded c2 permit 83 ^65000:4_0:26_0:12$ ip community-list expanded c2 permit 84 ^65000:4_0:26_0:13$ ip community-list expanded c2 permit 85 ^65000:3_0:26_0:24$ ip community-list expanded c2 permit 86 ^65000:4_0:27_0:10$ ip community-list expanded c2 permit 87 ^65000:4_0:27_0:11$ ip community-list expanded c2 permit 88 ^65000:4_0:27_0:12$ ip community-list expanded c2 permit 89 ^65000:4_0:27_0:13$ ip community-list expanded c2 permit 90 ^65000:3_0:27_0:25$ ip community-list expanded c2 permit 91 ^65000:4_0:28_0:10$ ip community-list expanded c2 permit 92 ^65000:4_0:28_0:11$ ip community-list expanded c2 permit 93 ^65000:4_0:28_0:12$ ip community-list expanded c2 permit 94 ^65000:4_0:28_0:13$ ip community-list expanded c2 permit 95 ^65000:4_0:28_0:14$ ip community-list expanded c2 permit 96 ^65000:3_0:28_0:26$ ip community-list expanded c2 permit 97 ^65000:4_0:29_0:10$ ip community-list expanded c2 permit 98 ^65000:4_0:29_0:11$ ip community-list expanded c2 permit 99 ^65000:4_0:29_0:12$ ip community-list expanded c2 permit 100 ^65000:4_0:29_0:13$ ip community-list expanded c2 permit 101 ^65000:4_0:29_0:14$ ip community-list expanded c2 permit 102 ^65000:3_0:29_0:27$ ip community-list expanded c2 permit 103 ^65000:4_0:30_0:11$ ip community-list expanded c2 permit 104 ^65000:4_0:30_0:12$ ip community-list expanded c2 permit 105 ^65000:4_0:30_0:13$ ip community-list expanded c2 permit 106 ^65000:4_0:30_0:14$ ip community-list expanded c2 permit 107 ^65000:4_0:30_0:15$ ip community-list expanded c2 permit 108 ^65000:3_0:30_0:28$ ip community-list expanded c2 permit 109 ^65000:4_0:31_0:11$ ip community-list expanded c2 permit 110 ^65000:4_0:31_0:12$ ip community-list expanded c2 permit 111 ^65000:4_0:31_0:13$ ip community-list expanded c2 permit 112 ^65000:4_0:31_0:14$ ip community-list expanded c2 permit 113 ^65000:4_0:31_0:15$ ip community-list expanded c2 permit 114 ^65000:3_0:31_0:29$ ip community-list expanded c2 permit 115 ^65000:4_0:32_0:11$ ip community-list expanded c2 permit 116 ^65000:4_0:32_0:12$ ip community-list expanded c2 permit 117 ^65000:4_0:32_0:13$ ip community-list expanded c2 permit 118 ^65000:4_0:32_0:14$ ip community-list expanded c2 permit 119 ^65000:4_0:32_0:15$ ip community-list expanded c2 permit 120 ^65000:4_0:32_0:16$ ip community-list expanded c2 permit 121 ^65000:3_0:32_0:30$ ip community-list expanded c2 permit 122 ^65000:4_0:33_0:12$ ip community-list expanded c2 permit 123 ^65000:4_0:33_0:13$ ip community-list expanded c2 permit 124 ^65000:4_0:33_0:14$ ip community-list expanded c2 permit 125 ^65000:4_0:33_0:15$ ip community-list expanded c2 permit 126 ^65000:4_0:33_0:16$ ip community-list expanded c2 permit 127 ^65000:3_0:33_0:31$ ip community-list expanded c2 permit 128 ^65000:4_0:34_0:12$ ip community-list expanded c2 permit 129 ^65000:4_0:34_0:13$ ip community-list expanded c2 permit 130 ^65000:4_0:34_0:14$ ip community-list expanded c2 permit 131 ^65000:4_0:34_0:15$ ip community-list expanded c2 permit 132 ^65000:4_0:34_0:16$ ip community-list expanded c2 permit 133 ^65000:4_0:34_0:17$ ip community-list expanded c2 permit 134 ^65000:3_0:34_0:32$ ip community-list expanded c2 permit 135 ^65000:4_0:35_0:12$ ip community-list expanded c2 permit 136 ^65000:4_0:35_0:13$ ip community-list expanded c2 permit 137 ^65000:4_0:35_0:14$ ip community-list expanded c2 permit 138 ^65000:4_0:35_0:15$ ip community-list expanded c2 permit 139 ^65000:4_0:35_0:16$ ip community-list expanded c2 permit 140 ^65000:4_0:35_0:17$ ip community-list expanded c2 permit 141 ^65000:3_0:35_0:33$ ip community-list expanded c2 permit 142 ^65000:4_0:36_0:13$ ip community-list expanded c2 permit 143 ^65000:4_0:36_0:14$ ip community-list expanded c2 permit 144 ^65000:4_0:36_0:15$ ip community-list expanded c2 permit 145 ^65000:4_0:36_0:16$ ip community-list expanded c2 permit 146 ^65000:4_0:36_0:17$ ip community-list expanded c2 permit 147 ^65000:4_0:36_0:18$ ip community-list expanded c2 permit 148 ^65000:3_0:36_0:34$ ip community-list expanded c2 permit 149 ^65000:4_0:37_0:13$ ip community-list expanded c2 permit 150 ^65000:4_0:37_0:14$ ip community-list expanded c2 permit 151 ^65000:4_0:37_0:15$ ip community-list expanded c2 permit 152 ^65000:4_0:37_0:16$ ip community-list expanded c2 permit 153 ^65000:4_0:37_0:17$ ip community-list expanded c2 permit 154 ^65000:4_0:37_0:18$ ip community-list expanded c2 permit 155 ^65000:3_0:37_0:35$ ip community-list expanded c2 permit 156 ^65000:4_0:38_0:13$ ip community-list expanded c2 permit 157 ^65000:4_0:38_0:14$ ip community-list expanded c2 permit 158 ^65000:4_0:38_0:15$ ip community-list expanded c2 permit 159 ^65000:4_0:38_0:16$ ip community-list expanded c2 permit 160 ^65000:4_0:38_0:17$ ip community-list expanded c2 permit 161 ^65000:4_0:38_0:18$ ip community-list expanded c2 permit 162 ^65000:4_0:38_0:19$ ip community-list expanded c2 permit 163 ^65000:3_0:38_0:36$ ip community-list expanded c2 permit 164 ^65000:4_0:39_0:14$ ip community-list expanded c2 permit 165 ^65000:4_0:39_0:15$ ip community-list expanded c2 permit 166 ^65000:4_0:39_0:16$ ip community-list expanded c2 permit 167 ^65000:4_0:39_0:17$ ip community-list expanded c2 permit 168 ^65000:4_0:39_0:18$ ip community-list expanded c2 permit 169 ^65000:4_0:39_0:19$ ip community-list expanded c2 permit 170 ^65000:3_0:39_0:37$ ip community-list expanded c2 permit 171 ^65000:4_0:40_0:14$ ip community-list expanded c2 permit 172 ^65000:4_0:40_0:15$ ip community-list expanded c2 permit 173 ^65000:4_0:40_0:16$ ip community-list expanded c2 permit 174 ^65000:4_0:40_0:17$ ip community-list expanded c2 permit 175 ^65000:4_0:40_0:18$ ip community-list expanded c2 permit 176 ^65000:4_0:40_0:19$ ip community-list expanded c2 permit 177 ^65000:4_0:40_0:20$ ip community-list expanded c2 permit 178 ^65000:3_0:40_0:38$ ip community-list expanded c2 permit 179 ^65000:4_0:41_0:14$ ip community-list expanded c2 permit 180 ^65000:4_0:41_0:15$ ip community-list expanded c2 permit 181 ^65000:4_0:41_0:16$ ip community-list expanded c2 permit 182 ^65000:4_0:41_0:17$ ip community-list expanded c2 permit 183 ^65000:4_0:41_0:18$ ip community-list expanded c2 permit 184 ^65000:4_0:41_0:19$ ip community-list expanded c2 permit 185 ^65000:4_0:41_0:20$ ip community-list expanded c2 permit 186 ^65000:3_0:41_0:39$ ip community-list expanded c2 permit 187 ^65000:4_0:42_0:15$ ip community-list expanded c2 permit 188 ^65000:4_0:42_0:16$ ip community-list expanded c2 permit 189 ^65000:4_0:42_0:17$ ip community-list expanded c2 permit 190 ^65000:4_0:42_0:18$ ip community-list expanded c2 permit 191 ^65000:4_0:42_0:19$ ip community-list expanded c2 permit 192 ^65000:4_0:42_0:20$ ip community-list expanded c2 permit 193 ^65000:4_0:42_0:21$ ip community-list expanded c2 permit 194 ^65000:3_0:42_0:40$ ip community-list expanded c2 permit 195 ^65000:4_0:43_0:15$ ip community-list expanded c2 permit 196 ^65000:4_0:43_0:16$ ip community-list expanded c2 permit 197 ^65000:4_0:43_0:17$ ip community-list expanded c2 permit 198 ^65000:4_0:43_0:18$ ip community-list expanded c2 permit 199 ^65000:4_0:43_0:19$ ip community-list expanded c2 permit 200 ^65000:4_0:43_0:20$ ip community-list expanded c2 permit 201 ^65000:4_0:43_0:21$ ip community-list expanded c2 permit 202 ^65000:3_0:43_0:41$ ip community-list expanded c2 permit 203 ^65000:4_0:44_0:15$ ip community-list expanded c2 permit 204 ^65000:4_0:44_0:16$ ip community-list expanded c2 permit 205 ^65000:4_0:44_0:17$ ip community-list expanded c2 permit 206 ^65000:4_0:44_0:18$ ip community-list expanded c2 permit 207 ^65000:4_0:44_0:19$ ip community-list expanded c2 permit 208 ^65000:4_0:44_0:20$ ip community-list expanded c2 permit 209 ^65000:4_0:44_0:21$ ip community-list expanded c2 permit 210 ^65000:4_0:44_0:22$ ip community-list expanded c2 permit 211 ^65000:3_0:44_0:42$ ip community-list expanded c2 permit 212 ^65000:4_0:45_0:16$ ip community-list expanded c2 permit 213 ^65000:4_0:45_0:17$ ip community-list expanded c2 permit 214 ^65000:4_0:45_0:18$ ip community-list expanded c2 permit 215 ^65000:4_0:45_0:19$ ip community-list expanded c2 permit 216 ^65000:4_0:45_0:20$ ip community-list expanded c2 permit 217 ^65000:4_0:45_0:21$ ip community-list expanded c2 permit 218 ^65000:4_0:45_0:22$ ip community-list expanded c2 permit 219 ^65000:3_0:45_0:43$ ip community-list expanded c2 permit 220 ^65000:4_0:46_0:16$ ip community-list expanded c2 permit 221 ^65000:4_0:46_0:17$ ip community-list expanded c2 permit 222 ^65000:4_0:46_0:18$ ip community-list expanded c2 permit 223 ^65000:4_0:46_0:19$ ip community-list expanded c2 permit 224 ^65000:4_0:46_0:20$ ip community-list expanded c2 permit 225 ^65000:4_0:46_0:21$ ip community-list expanded c2 permit 226 ^65000:4_0:46_0:22$ ip community-list expanded c2 permit 227 ^65000:4_0:46_0:23$ ip community-list expanded c2 permit 228 ^65000:3_0:46_0:44$ ip community-list expanded c2 permit 229 ^65000:4_0:47_0:16$ ip community-list expanded c2 permit 230 ^65000:4_0:47_0:17$ ip community-list expanded c2 permit 231 ^65000:4_0:47_0:18$ ip community-list expanded c2 permit 232 ^65000:4_0:47_0:19$ ip community-list expanded c2 permit 233 ^65000:4_0:47_0:20$ ip community-list expanded c2 permit 234 ^65000:4_0:47_0:21$ ip community-list expanded c2 permit 235 ^65000:4_0:47_0:22$ ip community-list expanded c2 permit 236 ^65000:4_0:47_0:23$ ip community-list expanded c2 permit 237 ^65000:3_0:47_0:45$ ip community-list expanded c2 permit 238 ^65000:4_0:48_0:17$ ip community-list expanded c2 permit 239 ^65000:4_0:48_0:18$ ip community-list expanded c2 permit 240 ^65000:4_0:48_0:19$ ip community-list expanded c2 permit 241 ^65000:4_0:48_0:20$ ip community-list expanded c2 permit 242 ^65000:4_0:48_0:21$ ip community-list expanded c2 permit 243 ^65000:4_0:48_0:22$ ip community-list expanded c2 permit 244 ^65000:4_0:48_0:23$ ip community-list expanded c2 permit 245 ^65000:4_0:48_0:24$ ip community-list expanded c2 permit 246 ^65000:3_0:48_0:46$ ip community-list expanded c2 permit 247 ^65000:4_0:49_0:17$ ip community-list expanded c2 permit 248 ^65000:4_0:49_0:18$ ip community-list expanded c2 permit 249 ^65000:4_0:49_0:19$ ip community-list expanded c2 permit 250 ^65000:4_0:49_0:20$ ip community-list expanded c2 permit 251 ^65000:4_0:49_0:21$ ip community-list expanded c2 permit 252 ^65000:4_0:49_0:22$ ip community-list expanded c2 permit 253 ^65000:4_0:49_0:23$ ip community-list expanded c2 permit 254 ^65000:4_0:49_0:24$ ip community-list expanded c2 permit 255 ^65000:3_0:49_0:47$ ip community-list expanded c2 permit 256 ^65000:4_0:50_0:17$ ip community-list expanded c2 permit 257 ^65000:4_0:50_0:18$ ip community-list expanded c2 permit 258 ^65000:4_0:50_0:19$ ip community-list expanded c2 permit 259 ^65000:4_0:50_0:20$ ip community-list expanded c2 permit 260 ^65000:4_0:50_0:21$ ip community-list expanded c2 permit 261 ^65000:4_0:50_0:22$ ip community-list expanded c2 permit 262 ^65000:4_0:50_0:23$ ip community-list expanded c2 permit 263 ^65000:4_0:50_0:24$ ip community-list expanded c2 permit 264 ^65000:4_0:50_0:25$ ip community-list expanded c2 permit 265 ^65000:3_0:50_0:48$ ip community-list expanded c2 permit 266 ^65000:4_0:51_0:18$ ip community-list expanded c2 permit 267 ^65000:4_0:51_0:19$ ip community-list expanded c2 permit 268 ^65000:4_0:51_0:20$ ip community-list expanded c2 permit 269 ^65000:4_0:51_0:21$ ip community-list expanded c2 permit 270 ^65000:4_0:51_0:22$ ip community-list expanded c2 permit 271 ^65000:4_0:51_0:23$ ip community-list expanded c2 permit 272 ^65000:4_0:51_0:24$ ip community-list expanded c2 permit 273 ^65000:4_0:51_0:25$ ip community-list expanded c2 permit 274 ^65000:3_0:51_0:49$ ip community-list expanded c2 permit 275 ^65000:4_0:52_0:18$ ip community-list expanded c2 permit 276 ^65000:4_0:52_0:19$ ip community-list expanded c2 permit 277 ^65000:4_0:52_0:20$ ip community-list expanded c2 permit 278 ^65000:4_0:52_0:21$ ip community-list expanded c2 permit 279 ^65000:4_0:52_0:22$ ip community-list expanded c2 permit 280 ^65000:4_0:52_0:23$ ip community-list expanded c2 permit 281 ^65000:4_0:52_0:24$ ip community-list expanded c2 permit 282 ^65000:4_0:52_0:25$ ip community-list expanded c2 permit 283 ^65000:4_0:52_0:26$ ip community-list expanded c2 permit 284 ^65000:3_0:52_0:50$ ip community-list expanded c2 permit 285 ^65000:4_0:53_0:18$ ip community-list expanded c2 permit 286 ^65000:4_0:53_0:19$ ip community-list expanded c2 permit 287 ^65000:4_0:53_0:20$ ip community-list expanded c2 permit 288 ^65000:4_0:53_0:21$ ip community-list expanded c2 permit 289 ^65000:4_0:53_0:22$ ip community-list expanded c2 permit 290 ^65000:4_0:53_0:23$ ip community-list expanded c2 permit 291 ^65000:4_0:53_0:24$ ip community-list expanded c2 permit 292 ^65000:4_0:53_0:25$ ip community-list expanded c2 permit 293 ^65000:4_0:53_0:26$ ip community-list expanded c2 permit 294 ^65000:3_0:53_0:51$ ip community-list expanded c2 permit 295 ^65000:4_0:54_0:19$ ip community-list expanded c2 permit 296 ^65000:4_0:54_0:20$ ip community-list expanded c2 permit 297 ^65000:4_0:54_0:21$ ip community-list expanded c2 permit 298 ^65000:4_0:54_0:22$ ip community-list expanded c2 permit 299 ^65000:4_0:54_0:23$ ip community-list expanded c2 permit 300 ^65000:4_0:54_0:24$ ip community-list expanded c2 permit 301 ^65000:4_0:54_0:25$ ip community-list expanded c2 permit 302 ^65000:4_0:54_0:26$ ip community-list expanded c2 permit 303 ^65000:4_0:54_0:27$ ip community-list expanded c2 permit 304 ^65000:3_0:54_0:52$ ip community-list expanded c2 permit 305 ^65000:4_0:55_0:19$ ip community-list expanded c2 permit 306 ^65000:4_0:55_0:20$ ip community-list expanded c2 permit 307 ^65000:4_0:55_0:21$ ip community-list expanded c2 permit 308 ^65000:4_0:55_0:22$ ip community-list expanded c2 permit 309 ^65000:4_0:55_0:23$ ip community-list expanded c2 permit 310 ^65000:4_0:55_0:24$ ip community-list expanded c2 permit 311 ^65000:4_0:55_0:25$ ip community-list expanded c2 permit 312 ^65000:4_0:55_0:26$ ip community-list expanded c2 permit 313 ^65000:4_0:55_0:27$ ip community-list expanded c2 permit 314 ^65000:3_0:55_0:53$ ip community-list expanded c2 permit 315 ^65000:4_0:56_0:19$ ip community-list expanded c2 permit 316 ^65000:4_0:56_0:20$ ip community-list expanded c2 permit 317 ^65000:4_0:56_0:21$ ip community-list expanded c2 permit 318 ^65000:4_0:56_0:22$ ip community-list expanded c2 permit 319 ^65000:4_0:56_0:23$ ip community-list expanded c2 permit 320 ^65000:4_0:56_0:24$ ip community-list expanded c2 permit 321 ^65000:4_0:56_0:25$ ip community-list expanded c2 permit 322 ^65000:4_0:56_0:26$ ip community-list expanded c2 permit 323 ^65000:4_0:56_0:27$ ip community-list expanded c2 permit 324 ^65000:4_0:56_0:28$ ip community-list expanded c2 permit 325 ^65000:3_0:56_0:54$ ip community-list expanded c2 permit 326 ^65000:4_0:57_0:20$ ip community-list expanded c2 permit 327 ^65000:4_0:57_0:21$ ip community-list expanded c2 permit 328 ^65000:4_0:57_0:22$ ip community-list expanded c2 permit 329 ^65000:4_0:57_0:23$ ip community-list expanded c2 permit 330 ^65000:4_0:57_0:24$ ip community-list expanded c2 permit 331 ^65000:4_0:57_0:25$ ip community-list expanded c2 permit 332 ^65000:4_0:57_0:26$ ip community-list expanded c2 permit 333 ^65000:4_0:57_0:27$ ip community-list expanded c2 permit 334 ^65000:4_0:57_0:28$ ip community-list expanded c2 permit 335 ^65000:3_0:57_0:55$ ip community-list expanded c2 permit 336 ^65000:4_0:58_0:20$ ip community-list expanded c2 permit 337 ^65000:4_0:58_0:21$ ip community-list expanded c2 permit 338 ^65000:4_0:58_0:22$ ip community-list expanded c2 permit 339 ^65000:4_0:58_0:23$ ip community-list expanded c2 permit 340 ^65000:4_0:58_0:24$ ip community-list expanded c2 permit 341 ^65000:4_0:58_0:25$ ip community-list expanded c2 permit 342 ^65000:4_0:58_0:26$ ip community-list expanded c2 permit 343 ^65000:4_0:58_0:27$ ip community-list expanded c2 permit 344 ^65000:4_0:58_0:28$ ip community-list expanded c2 permit 345 ^65000:4_0:58_0:29$ ip community-list expanded c2 permit 346 ^65000:3_0:58_0:56$ ip community-list expanded c2 permit 347 ^65000:4_0:59_0:20$ ip community-list expanded c2 permit 348 ^65000:4_0:59_0:21$ ip community-list expanded c2 permit 349 ^65000:4_0:59_0:22$ ip community-list expanded c2 permit 350 ^65000:4_0:59_0:23$ ip community-list expanded c2 permit 351 ^65000:4_0:59_0:24$ ip community-list expanded c2 permit 352 ^65000:4_0:59_0:25$ ip community-list expanded c2 permit 353 ^65000:4_0:59_0:26$ ip community-list expanded c2 permit 354 ^65000:4_0:59_0:27$ ip community-list expanded c2 permit 355 ^65000:4_0:59_0:28$ ip community-list expanded c2 permit 356 ^65000:4_0:59_0:29$ ip community-list expanded c2 permit 357 ^65000:3_0:59_0:57$ ip community-list expanded c2 permit 358 ^65000:4_0:60_0:21$ ip community-list expanded c2 permit 359 ^65000:4_0:60_0:22$ ip community-list expanded c2 permit 360 ^65000:4_0:60_0:23$ ip community-list expanded c2 permit 361 ^65000:4_0:60_0:24$ ip community-list expanded c2 permit 362 ^65000:4_0:60_0:25$ ip community-list expanded c2 permit 363 ^65000:4_0:60_0:26$ ip community-list expanded c2 permit 364 ^65000:4_0:60_0:27$ ip community-list expanded c2 permit 365 ^65000:4_0:60_0:28$ ip community-list expanded c2 permit 366 ^65000:4_0:60_0:29$ ip community-list expanded c2 permit 367 ^65000:4_0:60_0:30$ ip community-list expanded c2 permit 368 ^65000:3_0:60_0:58$ ip community-list expanded c2 permit 369 ^65000:4_0:61_0:21$ ip community-list expanded c2 permit 370 ^65000:4_0:61_0:22$ ip community-list expanded c2 permit 371 ^65000:4_0:61_0:23$ ip community-list expanded c2 permit 372 ^65000:4_0:61_0:24$ ip community-list expanded c2 permit 373 ^65000:4_0:61_0:25$ ip community-list expanded c2 permit 374 ^65000:4_0:61_0:26$ ip community-list expanded c2 permit 375 ^65000:4_0:61_0:27$ ip community-list expanded c2 permit 376 ^65000:4_0:61_0:28$ ip community-list expanded c2 permit 377 ^65000:4_0:61_0:29$ ip community-list expanded c2 permit 378 ^65000:4_0:61_0:30$ ip community-list expanded c2 permit 379 ^65000:3_0:61_0:59$ ip community-list expanded c2 permit 380 ^65000:4_0:62_0:21$ ip community-list expanded c2 permit 381 ^65000:4_0:62_0:22$ ip community-list expanded c2 permit 382 ^65000:4_0:62_0:23$ ip community-list expanded c2 permit 383 ^65000:4_0:62_0:24$ ip community-list expanded c2 permit 384 ^65000:4_0:62_0:25$ ip community-list expanded c2 permit 385 ^65000:4_0:62_0:26$ ip community-list expanded c2 permit 386 ^65000:4_0:62_0:27$ ip community-list expanded c2 permit 387 ^65000:4_0:62_0:28$ ip community-list expanded c2 permit 388 ^65000:4_0:62_0:29$ ip community-list expanded c2 permit 389 ^65000:4_0:62_0:30$ ip community-list expanded c2 permit 390 ^65000:4_0:62_0:31$ ip community-list expanded c2 permit 391 ^65000:3_0:62_0:60$ ip community-list expanded c2 permit 392 ^65000:4_0:63_0:22$ ip community-list expanded c2 permit 393 ^65000:4_0:63_0:23$ ip community-list expanded c2 permit 394 ^65000:4_0:63_0:24$ ip community-list expanded c2 permit 395 ^65000:4_0:63_0:25$ ip community-list expanded c2 permit 396 ^65000:4_0:63_0:26$ ip community-list expanded c2 permit 397 ^65000:4_0:63_0:27$ ip community-list expanded c2 permit 398 ^65000:4_0:63_0:28$ ip community-list expanded c2 permit 399 ^65000:4_0:63_0:29$ ip community-list expanded c2 permit 400 ^65000:4_0:63_0:30$ ip community-list expanded c2 permit 401 ^65000:4_0:63_0:31$ ip community-list expanded c2 permit 402 ^65000:3_0:63_0:61$ ip community-list expanded c2 permit 403 ^65000:4_0:64_0:22$ ip community-list expanded c2 permit 404 ^65000:4_0:64_0:23$ ip community-list expanded c2 permit 405 ^65000:4_0:64_0:24$ ip community-list expanded c2 permit 406 ^65000:4_0:64_0:25$ ip community-list expanded c2 permit 407 ^65000:4_0:64_0:26$ ip community-list expanded c2 permit 408 ^65000:4_0:64_0:27$ ip community-list expanded c2 permit 409 ^65000:4_0:64_0:28$ ip community-list expanded c2 permit 410 ^65000:4_0:64_0:29$ ip community-list expanded c2 permit 411 ^65000:4_0:64_0:30$ ip community-list expanded c2 permit 412 ^65000:4_0:64_0:31$ ip community-list expanded c2 permit 413 ^65000:4_0:64_0:32$ ip community-list expanded c2 permit 414 ^65000:3_0:64_0:62$ ip community-list expanded c2 permit 415 ^65000:4_0:65_0:22$ ip community-list expanded c2 permit 416 ^65000:4_0:65_0:23$ ip community-list expanded c2 permit 417 ^65000:4_0:65_0:24$ ip community-list expanded c2 permit 418 ^65000:4_0:65_0:25$ ip community-list expanded c2 permit 419 ^65000:4_0:65_0:26$ ip community-list expanded c2 permit 420 ^65000:4_0:65_0:27$ ip community-list expanded c2 permit 421 ^65000:4_0:65_0:28$ ip community-list expanded c2 permit 422 ^65000:4_0:65_0:29$ ip community-list expanded c2 permit 423 ^65000:4_0:65_0:30$ ip community-list expanded c2 permit 424 ^65000:4_0:65_0:31$ ip community-list expanded c2 permit 425 ^65000:4_0:65_0:32$ ip community-list expanded c2 permit 426 ^65000:3_0:65_0:63$ ip community-list expanded c2 permit 427 ^65000:4_0:66_0:23$ ip community-list expanded c2 permit 428 ^65000:4_0:66_0:24$ ip community-list expanded c2 permit 429 ^65000:4_0:66_0:25$ ip community-list expanded c2 permit 430 ^65000:4_0:66_0:26$ ip community-list expanded c2 permit 431 ^65000:4_0:66_0:27$ ip community-list expanded c2 permit 432 ^65000:4_0:66_0:28$ ip community-list expanded c2 permit 433 ^65000:4_0:66_0:29$ ip community-list expanded c2 permit 434 ^65000:4_0:66_0:30$ ip community-list expanded c2 permit 435 ^65000:4_0:66_0:31$ ip community-list expanded c2 permit 436 ^65000:4_0:66_0:32$ ip community-list expanded c2 permit 437 ^65000:4_0:66_0:33$ ip community-list expanded c2 permit 438 ^65000:3_0:66_0:64$ ip community-list expanded c2 permit 439 ^65000:4_0:67_0:23$ ip community-list expanded c2 permit 440 ^65000:4_0:67_0:24$ ip community-list expanded c2 permit 441 ^65000:4_0:67_0:25$ ip community-list expanded c2 permit 442 ^65000:4_0:67_0:26$ ip community-list expanded c2 permit 443 ^65000:4_0:67_0:27$ ip community-list expanded c2 permit 444 ^65000:4_0:67_0:28$ ip community-list expanded c2 permit 445 ^65000:4_0:67_0:29$ ip community-list expanded c2 permit 446 ^65000:4_0:67_0:30$ ip community-list expanded c2 permit 447 ^65000:4_0:67_0:31$ ip community-list expanded c2 permit 448 ^65000:4_0:67_0:32$ ip community-list expanded c2 permit 449 ^65000:4_0:67_0:33$ ip community-list expanded c2 permit 450 ^65000:3_0:67_0:65$ ip community-list expanded c2 permit 451 ^65000:4_0:68_0:23$ ip community-list expanded c2 permit 452 ^65000:4_0:68_0:24$ ip community-list expanded c2 permit 453 ^65000:4_0:68_0:25$ ip community-list expanded c2 permit 454 ^65000:4_0:68_0:26$ ip community-list expanded c2 permit 455 ^65000:4_0:68_0:27$ ip community-list expanded c2 permit 456 ^65000:4_0:68_0:28$ ip community-list expanded c2 permit 457 ^65000:4_0:68_0:29$ ip community-list expanded c2 permit 458 ^65000:4_0:68_0:30$ ip community-list expanded c2 permit 459 ^65000:4_0:68_0:31$ ip community-list expanded c2 permit 460 ^65000:4_0:68_0:32$ ip community-list expanded c2 permit 461 ^65000:4_0:68_0:33$ ip community-list expanded c2 permit 462 ^65000:4_0:68_0:34$ ip community-list expanded c2 permit 463 ^65000:3_0:68_0:66$ ip community-list expanded c2 permit 464 ^65000:4_0:69_0:24$ ip community-list expanded c2 permit 465 ^65000:4_0:69_0:25$ ip community-list expanded c2 permit 466 ^65000:4_0:69_0:26$ ip community-list expanded c2 permit 467 ^65000:4_0:69_0:27$ ip community-list expanded c2 permit 468 ^65000:4_0:69_0:28$ ip community-list expanded c2 permit 469 ^65000:4_0:69_0:29$ ip community-list expanded c2 permit 470 ^65000:4_0:69_0:30$ ip community-list expanded c2 permit 471 ^65000:4_0:69_0:31$ ip community-list expanded c2 permit 472 ^65000:4_0:69_0:32$ ip community-list expanded c2 permit 473 ^65000:4_0:69_0:33$ ip community-list expanded c2 permit 474 ^65000:4_0:69_0:34$ ip community-list expanded c2 permit 475 ^65000:3_0:69_0:67$ ip community-list expanded c2 permit 476 ^65000:4_0:70_0:24$ ip community-list expanded c2 permit 477 ^65000:4_0:70_0:25$ ip community-list expanded c2 permit 478 ^65000:4_0:70_0:26$ ip community-list expanded c2 permit 479 ^65000:4_0:70_0:27$ ip community-list expanded c2 permit 480 ^65000:4_0:70_0:28$ ip community-list expanded c2 permit 481 ^65000:4_0:70_0:29$ ip community-list expanded c2 permit 482 ^65000:4_0:70_0:30$ ip community-list expanded c2 permit 483 ^65000:4_0:70_0:31$ ip community-list expanded c2 permit 484 ^65000:4_0:70_0:32$ ip community-list expanded c2 permit 485 ^65000:4_0:70_0:33$ ip community-list expanded c2 permit 486 ^65000:4_0:70_0:34$ ip community-list expanded c2 permit 487 ^65000:4_0:70_0:35$ ip community-list expanded c2 permit 488 ^65000:3_0:70_0:68$ ip community-list expanded c2 permit 489 ^65000:4_0:71_0:24$ ip community-list expanded c2 permit 490 ^65000:4_0:71_0:25$ ip community-list expanded c2 permit 491 ^65000:4_0:71_0:26$ ip community-list expanded c2 permit 492 ^65000:4_0:71_0:27$ ip community-list expanded c2 permit 493 ^65000:4_0:71_0:28$ ip community-list expanded c2 permit 494 ^65000:4_0:71_0:29$ ip community-list expanded c2 permit 495 ^65000:4_0:71_0:30$ ip community-list expanded c2 permit 496 ^65000:4_0:71_0:31$ ip community-list expanded c2 permit 497 ^65000:4_0:71_0:32$ ip community-list expanded c2 permit 498 ^65000:4_0:71_0:33$ ip community-list expanded c2 permit 499 ^65000:4_0:71_0:34$ ip community-list expanded c2 permit 500 ^65000:4_0:71_0:35$ ip community-list expanded c2 permit 501 ^65000:3_0:71_0:69$ ip community-list expanded c2 permit 502 ^65000:4_0:72_0:25$ ip community-list expanded c2 permit 503 ^65000:4_0:72_0:26$ ip community-list expanded c2 permit 504 ^65000:4_0:72_0:27$ ip community-list expanded c2 permit 505 ^65000:4_0:72_0:28$ ip community-list expanded c2 permit 506 ^65000:4_0:72_0:29$ ip community-list expanded c2 permit 507 ^65000:4_0:72_0:30$ ip community-list expanded c2 permit 508 ^65000:4_0:72_0:31$ ip community-list expanded c2 permit 509 ^65000:4_0:72_0:32$ ip community-list expanded c2 permit 510 ^65000:4_0:72_0:33$ ip community-list expanded c2 permit 511 ^65000:4_0:72_0:34$ ip community-list expanded c2 permit 512 ^65000:4_0:72_0:35$ ip community-list expanded c2 permit 513 ^65000:4_0:72_0:36$ ip community-list expanded c2 permit 514 ^65000:3_0:72_0:70$ ip community-list expanded c2 permit 515 ^65000:4_0:73_0:25$ ip community-list expanded c2 permit 516 ^65000:4_0:73_0:26$ ip community-list expanded c2 permit 517 ^65000:4_0:73_0:27$ ip community-list expanded c2 permit 518 ^65000:4_0:73_0:28$ ip community-list expanded c2 permit 519 ^65000:4_0:73_0:29$ ip community-list expanded c2 permit 520 ^65000:4_0:73_0:30$ ip community-list expanded c2 permit 521 ^65000:4_0:73_0:31$ ip community-list expanded c2 permit 522 ^65000:4_0:73_0:32$ ip community-list expanded c2 permit 523 ^65000:4_0:73_0:33$ ip community-list expanded c2 permit 524 ^65000:4_0:73_0:34$ ip community-list expanded c2 permit 525 ^65000:4_0:73_0:35$ ip community-list expanded c2 permit 526 ^65000:4_0:73_0:36$ ip community-list expanded c2 permit 527 ^65000:3_0:73_0:71$ ip community-list expanded c2 permit 528 ^65000:4_0:74_0:25$ ip community-list expanded c2 permit 529 ^65000:4_0:74_0:26$ ip community-list expanded c2 permit 530 ^65000:4_0:74_0:27$ ip community-list expanded c2 permit 531 ^65000:4_0:74_0:28$ ip community-list expanded c2 permit 532 ^65000:4_0:74_0:29$ ip community-list expanded c2 permit 533 ^65000:4_0:74_0:30$ ip community-list expanded c2 permit 534 ^65000:4_0:74_0:31$ ip community-list expanded c2 permit 535 ^65000:4_0:74_0:32$ ip community-list expanded c2 permit 536 ^65000:4_0:74_0:33$ ip community-list expanded c2 permit 537 ^65000:4_0:74_0:34$ ip community-list expanded c2 permit 538 ^65000:4_0:74_0:35$ ip community-list expanded c2 permit 539 ^65000:4_0:74_0:36$ ip community-list expanded c2 permit 540 ^65000:4_0:74_0:37$ ip community-list expanded c2 permit 541 ^65000:3_0:74_0:72$ ip community-list expanded c2 permit 542 ^65000:4_0:75_0:26$ ip community-list expanded c2 permit 543 ^65000:4_0:75_0:27$ ip community-list expanded c2 permit 544 ^65000:4_0:75_0:28$ ip community-list expanded c2 permit 545 ^65000:4_0:75_0:29$ ip community-list expanded c2 permit 546 ^65000:4_0:75_0:30$ ip community-list expanded c2 permit 547 ^65000:4_0:75_0:31$ ip community-list expanded c2 permit 548 ^65000:4_0:75_0:32$ ip community-list expanded c2 permit 549 ^65000:4_0:75_0:33$ ip community-list expanded c2 permit 550 ^65000:4_0:75_0:34$ ip community-list expanded c2 permit 551 ^65000:4_0:75_0:35$ ip community-list expanded c2 permit 552 ^65000:4_0:75_0:36$ ip community-list expanded c2 permit 553 ^65000:4_0:75_0:37$ ip community-list expanded c2 permit 554 ^65000:3_0:75_0:73$ ip community-list expanded c2 permit 555 ^65000:4_0:76_0:26$ ip community-list expanded c2 permit 556 ^65000:4_0:76_0:27$ ip community-list expanded c2 permit 557 ^65000:4_0:76_0:28$ ip community-list expanded c2 permit 558 ^65000:4_0:76_0:29$ ip community-list expanded c2 permit 559 ^65000:4_0:76_0:30$ ip community-list expanded c2 permit 560 ^65000:4_0:76_0:31$ ip community-list expanded c2 permit 561 ^65000:4_0:76_0:32$ ip community-list expanded c2 permit 562 ^65000:4_0:76_0:33$ ip community-list expanded c2 permit 563 ^65000:4_0:76_0:34$ ip community-list expanded c2 permit 564 ^65000:4_0:76_0:35$ ip community-list expanded c2 permit 565 ^65000:4_0:76_0:36$ ip community-list expanded c2 permit 566 ^65000:4_0:76_0:37$ ip community-list expanded c2 permit 567 ^65000:4_0:76_0:38$ ip community-list expanded c2 permit 568 ^65000:3_0:76_0:74$ ip community-list expanded c2 permit 569 ^65000:4_0:77_0:26$ ip community-list expanded c2 permit 570 ^65000:4_0:77_0:27$ ip community-list expanded c2 permit 571 ^65000:4_0:77_0:28$ ip community-list expanded c2 permit 572 ^65000:4_0:77_0:29$ ip community-list expanded c2 permit 573 ^65000:4_0:77_0:30$ ip community-list expanded c2 permit 574 ^65000:4_0:77_0:31$ ip community-list expanded c2 permit 575 ^65000:4_0:77_0:32$ ip community-list expanded c2 permit 576 ^65000:4_0:77_0:33$ ip community-list expanded c2 permit 577 ^65000:4_0:77_0:34$ ip community-list expanded c2 permit 578 ^65000:4_0:77_0:35$ ip community-list expanded c2 permit 579 ^65000:4_0:77_0:36$ ip community-list expanded c2 permit 580 ^65000:4_0:77_0:37$ ip community-list expanded c2 permit 581 ^65000:4_0:77_0:38$ ip community-list expanded c2 permit 582 ^65000:3_0:77_0:75$ ip community-list expanded c2 permit 583 ^65000:4_0:78_0:27$ ip community-list expanded c2 permit 584 ^65000:4_0:78_0:28$ ip community-list expanded c2 permit 585 ^65000:4_0:78_0:29$ ip community-list expanded c2 permit 586 ^65000:4_0:78_0:30$ ip community-list expanded c2 permit 587 ^65000:4_0:78_0:31$ ip community-list expanded c2 permit 588 ^65000:4_0:78_0:32$ ip community-list expanded c2 permit 589 ^65000:4_0:78_0:33$ ip community-list expanded c2 permit 590 ^65000:4_0:78_0:34$ ip community-list expanded c2 permit 591 ^65000:4_0:78_0:35$ ip community-list expanded c2 permit 592 ^65000:4_0:78_0:36$ ip community-list expanded c2 permit 593 ^65000:4_0:78_0:37$ ip community-list expanded c2 permit 594 ^65000:4_0:78_0:38$ ip community-list expanded c2 permit 595 ^65000:4_0:78_0:39$ ip community-list expanded c2 permit 596 ^65000:3_0:78_0:76$ ip community-list expanded c2 permit 597 ^65000:4_0:79_0:27$ ip community-list expanded c2 permit 598 ^65000:4_0:79_0:28$ ip community-list expanded c2 permit 599 ^65000:4_0:79_0:29$ ip community-list expanded c2 permit 600 ^65000:4_0:79_0:30$ ip community-list expanded c2 permit 601 ^65000:4_0:79_0:31$ ip community-list expanded c2 permit 602 ^65000:4_0:79_0:32$ ip community-list expanded c2 permit 603 ^65000:4_0:79_0:33$ ip community-list expanded c2 permit 604 ^65000:4_0:79_0:34$ ip community-list expanded c2 permit 605 ^65000:4_0:79_0:35$ ip community-list expanded c2 permit 606 ^65000:4_0:79_0:36$ ip community-list expanded c2 permit 607 ^65000:4_0:79_0:37$ ip community-list expanded c2 permit 608 ^65000:4_0:79_0:38$ ip community-list expanded c2 permit 609 ^65000:4_0:79_0:39$ ip community-list expanded c2 permit 610 ^65000:3_0:79_0:77$ ip community-list expanded c2 permit 611 ^65000:4_0:80_0:27$ ip community-list expanded c2 permit 612 ^65000:4_0:80_0:28$ ip community-list expanded c2 permit 613 ^65000:4_0:80_0:29$ ip community-list expanded c2 permit 614 ^65000:4_0:80_0:30$ ip community-list expanded c2 permit 615 ^65000:4_0:80_0:31$ ip community-list expanded c2 permit 616 ^65000:4_0:80_0:32$ ip community-list expanded c2 permit 617 ^65000:4_0:80_0:33$ ip community-list expanded c2 permit 618 ^65000:4_0:80_0:34$ ip community-list expanded c2 permit 619 ^65000:4_0:80_0:35$ ip community-list expanded c2 permit 620 ^65000:4_0:80_0:36$ ip community-list expanded c2 permit 621 ^65000:4_0:80_0:37$ ip community-list expanded c2 permit 622 ^65000:4_0:80_0:38$ ip community-list expanded c2 permit 623 ^65000:4_0:80_0:39$ ip community-list expanded c2 permit 624 ^65000:4_0:80_0:40$ ip community-list expanded c2 permit 625 ^65000:3_0:80_0:78$ ip community-list expanded c2 permit 626 ^65000:4_0:81_0:28$ ip community-list expanded c2 permit 627 ^65000:4_0:81_0:29$ ip community-list expanded c2 permit 628 ^65000:4_0:81_0:30$ ip community-list expanded c2 permit 629 ^65000:4_0:81_0:31$ ip community-list expanded c2 permit 630 ^65000:4_0:81_0:32$ ip community-list expanded c2 permit 631 ^65000:4_0:81_0:33$ ip community-list expanded c2 permit 632 ^65000:4_0:81_0:34$ ip community-list expanded c2 permit 633 ^65000:4_0:81_0:35$ ip community-list expanded c2 permit 634 ^65000:4_0:81_0:36$ ip community-list expanded c2 permit 635 ^65000:4_0:81_0:37$ ip community-list expanded c2 permit 636 ^65000:4_0:81_0:38$ ip community-list expanded c2 permit 637 ^65000:4_0:81_0:39$ ip community-list expanded c2 permit 638 ^65000:4_0:81_0:40$ ip community-list expanded c2 permit 639 ^65000:3_0:81_0:79$ ip community-list expanded c2 permit 640 ^65000:4_0:82_0:28$ ip community-list expanded c2 permit 641 ^65000:4_0:82_0:29$ ip community-list expanded c2 permit 642 ^65000:4_0:82_0:30$ ip community-list expanded c2 permit 643 ^65000:4_0:82_0:31$ ip community-list expanded c2 permit 644 ^65000:4_0:82_0:32$ ip community-list expanded c2 permit 645 ^65000:4_0:82_0:33$ ip community-list expanded c2 permit 646 ^65000:4_0:82_0:34$ ip community-list expanded c2 permit 647 ^65000:4_0:82_0:35$ ip community-list expanded c2 permit 648 ^65000:4_0:82_0:36$ ip community-list expanded c2 permit 649 ^65000:4_0:82_0:37$ ip community-list expanded c2 permit 650 ^65000:4_0:82_0:38$ ip community-list expanded c2 permit 651 ^65000:4_0:82_0:39$ ip community-list expanded c2 permit 652 ^65000:4_0:82_0:40$ ip community-list expanded c2 permit 653 ^65000:4_0:82_0:41$ ip community-list expanded c2 permit 654 ^65000:3_0:82_0:80$ ip community-list expanded c2 permit 655 ^65000:4_0:83_0:28$ ip community-list expanded c2 permit 656 ^65000:4_0:83_0:29$ ip community-list expanded c2 permit 657 ^65000:4_0:83_0:30$ ip community-list expanded c2 permit 658 ^65000:4_0:83_0:31$ ip community-list expanded c2 permit 659 ^65000:4_0:83_0:32$ ip community-list expanded c2 permit 660 ^65000:4_0:83_0:33$ ip community-list expanded c2 permit 661 ^65000:4_0:83_0:34$ ip community-list expanded c2 permit 662 ^65000:4_0:83_0:35$ ip community-list expanded c2 permit 663 ^65000:4_0:83_0:36$ ip community-list expanded c2 permit 664 ^65000:4_0:83_0:37$ ip community-list expanded c2 permit 665 ^65000:4_0:83_0:38$ ip community-list expanded c2 permit 666 ^65000:4_0:83_0:39$ ip community-list expanded c2 permit 667 ^65000:4_0:83_0:40$ ip community-list expanded c2 permit 668 ^65000:4_0:83_0:41$ ip community-list expanded c2 permit 669 ^65000:3_0:83_0:81$ ip community-list expanded c2 permit 670 ^65000:4_0:84_0:29$ ip community-list expanded c2 permit 671 ^65000:4_0:84_0:30$ ip community-list expanded c2 permit 672 ^65000:4_0:84_0:31$ ip community-list expanded c2 permit 673 ^65000:4_0:84_0:32$ ip community-list expanded c2 permit 674 ^65000:4_0:84_0:33$ ip community-list expanded c2 permit 675 ^65000:4_0:84_0:34$ ip community-list expanded c2 permit 676 ^65000:4_0:84_0:35$ ip community-list expanded c2 permit 677 ^65000:4_0:84_0:36$ ip community-list expanded c2 permit 678 ^65000:4_0:84_0:37$ ip community-list expanded c2 permit 679 ^65000:4_0:84_0:38$ ip community-list expanded c2 permit 680 ^65000:4_0:84_0:39$ ip community-list expanded c2 permit 681 ^65000:4_0:84_0:40$ ip community-list expanded c2 permit 682 ^65000:4_0:84_0:41$ ip community-list expanded c2 permit 683 ^65000:4_0:84_0:42$ ip community-list expanded c2 permit 684 ^65000:3_0:84_0:82$ ip community-list expanded c2 permit 685 ^65000:4_0:85_0:29$ ip community-list expanded c2 permit 686 ^65000:4_0:85_0:30$ ip community-list expanded c2 permit 687 ^65000:4_0:85_0:31$ ip community-list expanded c2 permit 688 ^65000:4_0:85_0:32$ ip community-list expanded c2 permit 689 ^65000:4_0:85_0:33$ ip community-list expanded c2 permit 690 ^65000:4_0:85_0:34$ ip community-list expanded c2 permit 691 ^65000:4_0:85_0:35$ ip community-list expanded c2 permit 692 ^65000:4_0:85_0:36$ ip community-list expanded c2 permit 693 ^65000:4_0:85_0:37$ ip community-list expanded c2 permit 694 ^65000:4_0:85_0:38$ ip community-list expanded c2 permit 695 ^65000:4_0:85_0:39$ ip community-list expanded c2 permit 696 ^65000:4_0:85_0:40$ ip community-list expanded c2 permit 697 ^65000:4_0:85_0:41$ ip community-list expanded c2 permit 698 ^65000:4_0:85_0:42$ ip community-list expanded c2 permit 699 ^65000:3_0:85_0:83$ ip community-list expanded c2 permit 700 ^65000:4_0:86_0:29$ ip community-list expanded c2 permit 701 ^65000:4_0:86_0:30$ ip community-list expanded c2 permit 702 ^65000:4_0:86_0:31$ ip community-list expanded c2 permit 703 ^65000:4_0:86_0:32$ ip community-list expanded c2 permit 704 ^65000:4_0:86_0:33$ ip community-list expanded c2 permit 705 ^65000:4_0:86_0:34$ ip community-list expanded c2 permit 706 ^65000:4_0:86_0:35$ ip community-list expanded c2 permit 707 ^65000:4_0:86_0:36$ ip community-list expanded c2 permit 708 ^65000:4_0:86_0:37$ ip community-list expanded c2 permit 709 ^65000:4_0:86_0:38$ ip community-list expanded c2 permit 710 ^65000:4_0:86_0:39$ ip community-list expanded c2 permit 711 ^65000:4_0:86_0:40$ ip community-list expanded c2 permit 712 ^65000:4_0:86_0:41$ ip community-list expanded c2 permit 713 ^65000:4_0:86_0:42$ ip community-list expanded c2 permit 714 ^65000:4_0:86_0:43$ ip community-list expanded c2 permit 715 ^65000:3_0:86_0:84$ ip community-list expanded c2 permit 716 ^65000:4_0:87_0:30$ ip community-list expanded c2 permit 717 ^65000:4_0:87_0:31$ ip community-list expanded c2 permit 718 ^65000:4_0:87_0:32$ ip community-list expanded c2 permit 719 ^65000:4_0:87_0:33$ ip community-list expanded c2 permit 720 ^65000:4_0:87_0:34$ ip community-list expanded c2 permit 721 ^65000:4_0:87_0:35$ ip community-list expanded c2 permit 722 ^65000:4_0:87_0:36$ ip community-list expanded c2 permit 723 ^65000:4_0:87_0:37$ ip community-list expanded c2 permit 724 ^65000:4_0:87_0:38$ ip community-list expanded c2 permit 725 ^65000:4_0:87_0:39$ ip community-list expanded c2 permit 726 ^65000:4_0:87_0:40$ ip community-list expanded c2 permit 727 ^65000:4_0:87_0:41$ ip community-list expanded c2 permit 728 ^65000:4_0:87_0:42$ ip community-list expanded c2 permit 729 ^65000:4_0:87_0:43$ ip community-list expanded c2 permit 730 ^65000:3_0:87_0:85$ ip community-list expanded c2 permit 731 ^65000:4_0:88_0:30$ ip community-list expanded c2 permit 732 ^65000:4_0:88_0:31$ ip community-list expanded c2 permit 733 ^65000:4_0:88_0:32$ ip community-list expanded c2 permit 734 ^65000:4_0:88_0:33$ ip community-list expanded c2 permit 735 ^65000:4_0:88_0:34$ ip community-list expanded c2 permit 736 ^65000:4_0:88_0:35$ ip community-list expanded c2 permit 737 ^65000:4_0:88_0:36$ ip community-list expanded c2 permit 738 ^65000:4_0:88_0:37$ ip community-list expanded c2 permit 739 ^65000:4_0:88_0:38$ ip community-list expanded c2 permit 740 ^65000:4_0:88_0:39$ ip community-list expanded c2 permit 741 ^65000:4_0:88_0:40$ ip community-list expanded c2 permit 742 ^65000:4_0:88_0:41$ ip community-list expanded c2 permit 743 ^65000:4_0:88_0:42$ ip community-list expanded c2 permit 744 ^65000:4_0:88_0:43$ ip community-list expanded c2 permit 745 ^65000:4_0:88_0:44$ ip community-list expanded c2 permit 746 ^65000:3_0:88_0:86$ ip community-list expanded c2 permit 747 ^65000:4_0:89_0:30$ ip community-list expanded c2 permit 748 ^65000:4_0:89_0:31$ ip community-list expanded c2 permit 749 ^65000:4_0:89_0:32$ ip community-list expanded c2 permit 750 ^65000:4_0:89_0:33$ ip community-list expanded c2 permit 751 ^65000:4_0:89_0:34$ ip community-list expanded c2 permit 752 ^65000:4_0:89_0:35$ ip community-list expanded c2 permit 753 ^65000:4_0:89_0:36$ ip community-list expanded c2 permit 754 ^65000:4_0:89_0:37$ ip community-list expanded c2 permit 755 ^65000:4_0:89_0:38$ ip community-list expanded c2 permit 756 ^65000:4_0:89_0:39$ ip community-list expanded c2 permit 757 ^65000:4_0:89_0:40$ ip community-list expanded c2 permit 758 ^65000:4_0:89_0:41$ ip community-list expanded c2 permit 759 ^65000:4_0:89_0:42$ ip community-list expanded c2 permit 760 ^65000:4_0:89_0:43$ ip community-list expanded c2 permit 761 ^65000:4_0:89_0:44$ ip community-list expanded c2 permit 762 ^65000:3_0:89_0:87$ ip community-list expanded c2 permit 763 ^65000:4_0:90_0:31$ ip community-list expanded c2 permit 764 ^65000:4_0:90_0:32$ ip community-list expanded c2 permit 765 ^65000:4_0:90_0:33$ ip community-list expanded c2 permit 766 ^65000:4_0:90_0:34$ ip community-list expanded c2 permit 767 ^65000:4_0:90_0:35$ ip community-list expanded c2 permit 768 ^65000:4_0:90_0:36$ ip community-list expanded c2 permit 769 ^65000:4_0:90_0:37$ ip community-list expanded c2 permit 770 ^65000:4_0:90_0:38$ ip community-list expanded c2 permit 771 ^65000:4_0:90_0:39$ ip community-list expanded c2 permit 772 ^65000:4_0:90_0:40$ ip community-list expanded c2 permit 773 ^65000:4_0:90_0:41$ ip community-list expanded c2 permit 774 ^65000:4_0:90_0:42$ ip community-list expanded c2 permit 775 ^65000:4_0:90_0:43$ ip community-list expanded c2 permit 776 ^65000:4_0:90_0:44$ ip community-list expanded c2 permit 777 ^65000:4_0:90_0:45$ ip community-list expanded c2 permit 778 ^65000:3_0:90_0:88$ ip community-list expanded c2 permit 779 ^65000:4_0:91_0:31$ ip community-list expanded c2 permit 780 ^65000:4_0:91_0:32$ ip community-list expanded c2 permit 781 ^65000:4_0:91_0:33$ ip community-list expanded c2 permit 782 ^65000:4_0:91_0:34$ ip community-list expanded c2 permit 783 ^65000:4_0:91_0:35$ ip community-list expanded c2 permit 784 ^65000:4_0:91_0:36$ ip community-list expanded c2 permit 785 ^65000:4_0:91_0:37$ ip community-list expanded c2 permit 786 ^65000:4_0:91_0:38$ ip community-list expanded c2 permit 787 ^65000:4_0:91_0:39$ ip community-list expanded c2 permit 788 ^65000:4_0:91_0:40$ ip community-list expanded c2 permit 789 ^65000:4_0:91_0:41$ ip community-list expanded c2 permit 790 ^65000:4_0:91_0:42$ ip community-list expanded c2 permit 791 ^65000:4_0:91_0:43$ ip community-list expanded c2 permit 792 ^65000:4_0:91_0:44$ ip community-list expanded c2 permit 793 ^65000:4_0:91_0:45$ ip community-list expanded c2 permit 794 ^65000:3_0:91_0:89$ ip community-list expanded c2 permit 795 ^65000:4_0:92_0:31$ ip community-list expanded c2 permit 796 ^65000:4_0:92_0:32$ ip community-list expanded c2 permit 797 ^65000:4_0:92_0:33$ ip community-list expanded c2 permit 798 ^65000:4_0:92_0:34$ ip community-list expanded c2 permit 799 ^65000:4_0:92_0:35$ ip community-list expanded c2 permit 800 ^65000:4_0:92_0:36$ ip community-list expanded c2 permit 801 ^65000:4_0:92_0:37$ ip community-list expanded c2 permit 802 ^65000:4_0:92_0:38$ ip community-list expanded c2 permit 803 ^65000:4_0:92_0:39$ ip community-list expanded c2 permit 804 ^65000:4_0:92_0:40$ ip community-list expanded c2 permit 805 ^65000:4_0:92_0:41$ ip community-list expanded c2 permit 806 ^65000:4_0:92_0:42$ ip community-list expanded c2 permit 807 ^65000:4_0:92_0:43$ ip community-list expanded c2 permit 808 ^65000:4_0:92_0:44$ ip community-list expanded c2 permit 809 ^65000:4_0:92_0:45$ ip community-list expanded c2 permit 810 ^65000:4_0:92_0:46$ ip community-list expanded c2 permit 811 ^65000:3_0:92_0:90$ ip community-list expanded c2 permit 812 ^65000:4_0:93_0:32$ ip community-list expanded c2 permit 813 ^65000:4_0:93_0:33$ ip community-list expanded c2 permit 814 ^65000:4_0:93_0:34$ ip community-list expanded c2 permit 815 ^65000:4_0:93_0:35$ ip community-list expanded c2 permit 816 ^65000:4_0:93_0:36$ ip community-list expanded c2 permit 817 ^65000:4_0:93_0:37$ ip community-list expanded c2 permit 818 ^65000:4_0:93_0:38$ ip community-list expanded c2 permit 819 ^65000:4_0:93_0:39$ ip community-list expanded c2 permit 820 ^65000:4_0:93_0:40$ ip community-list expanded c2 permit 821 ^65000:4_0:93_0:41$ ip community-list expanded c2 permit 822 ^65000:4_0:93_0:42$ ip community-list expanded c2 permit 823 ^65000:4_0:93_0:43$ ip community-list expanded c2 permit 824 ^65000:4_0:93_0:44$ ip community-list expanded c2 permit 825 ^65000:4_0:93_0:45$ ip community-list expanded c2 permit 826 ^65000:4_0:93_0:46$ ip community-list expanded c2 permit 827 ^65000:3_0:93_0:91$ ip community-list expanded c2 permit 828 ^65000:4_0:94_0:32$ ip community-list expanded c2 permit 829 ^65000:4_0:94_0:33$ ip community-list expanded c2 permit 830 ^65000:4_0:94_0:34$ ip community-list expanded c2 permit 831 ^65000:4_0:94_0:35$ ip community-list expanded c2 permit 832 ^65000:4_0:94_0:36$ ip community-list expanded c2 permit 833 ^65000:4_0:94_0:37$ ip community-list expanded c2 permit 834 ^65000:4_0:94_0:38$ ip community-list expanded c2 permit 835 ^65000:4_0:94_0:39$ ip community-list expanded c2 permit 836 ^65000:4_0:94_0:40$ ip community-list expanded c2 permit 837 ^65000:4_0:94_0:41$ ip community-list expanded c2 permit 838 ^65000:4_0:94_0:42$ ip community-list expanded c2 permit 839 ^65000:4_0:94_0:43$ ip community-list expanded c2 permit 840 ^65000:4_0:94_0:44$ ip community-list expanded c2 permit 841 ^65000:4_0:94_0:45$ ip community-list expanded c2 permit 842 ^65000:4_0:94_0:46$ ip community-list expanded c2 permit 843 ^65000:4_0:94_0:47$ ip community-list expanded c2 permit 844 ^65000:3_0:94_0:92$ ip community-list expanded c2 permit 845 ^65000:4_0:95_0:32$ ip community-list expanded c2 permit 846 ^65000:4_0:95_0:33$ ip community-list expanded c2 permit 847 ^65000:4_0:95_0:34$ ip community-list expanded c2 permit 848 ^65000:4_0:95_0:35$ ip community-list expanded c2 permit 849 ^65000:4_0:95_0:36$ ip community-list expanded c2 permit 850 ^65000:4_0:95_0:37$ ip community-list expanded c2 permit 851 ^65000:4_0:95_0:38$ ip community-list expanded c2 permit 852 ^65000:4_0:95_0:39$ ip community-list expanded c2 permit 853 ^65000:4_0:95_0:40$ ip community-list expanded c2 permit 854 ^65000:4_0:95_0:41$ ip community-list expanded c2 permit 855 ^65000:4_0:95_0:42$ ip community-list expanded c2 permit 856 ^65000:4_0:95_0:43$ ip community-list expanded c2 permit 857 ^65000:4_0:95_0:44$ ip community-list expanded c2 permit 858 ^65000:4_0:95_0:45$ ip community-list expanded c2 permit 859 ^65000:4_0:95_0:46$ ip community-list expanded c2 permit 860 ^65000:4_0:95_0:47$ ip community-list expanded c2 permit 861 ^65000:3_0:95_0:93$ ip community-list expanded c2 permit 862 ^65000:4_0:96_0:33$ ip community-list expanded c2 permit 863 ^65000:4_0:96_0:34$ ip community-list expanded c2 permit 864 ^65000:4_0:96_0:35$ ip community-list expanded c2 permit 865 ^65000:4_0:96_0:36$ ip community-list expanded c2 permit 866 ^65000:4_0:96_0:37$ ip community-list expanded c2 permit 867 ^65000:4_0:96_0:38$ ip community-list expanded c2 permit 868 ^65000:4_0:96_0:39$ ip community-list expanded c2 permit 869 ^65000:4_0:96_0:40$ ip community-list expanded c2 permit 870 ^65000:4_0:96_0:41$ ip community-list expanded c2 permit 871 ^65000:4_0:96_0:42$ ip community-list expanded c2 permit 872 ^65000:4_0:96_0:43$ ip community-list expanded c2 permit 873 ^65000:4_0:96_0:44$ ip community-list expanded c2 permit 874 ^65000:4_0:96_0:45$ ip community-list expanded c2 permit 875 ^65000:4_0:96_0:46$ ip community-list expanded c2 permit 876 ^65000:4_0:96_0:47$ ip community-list expanded c2 permit 877 ^65000:4_0:96_0:48$ ip community-list expanded c2 permit 878 ^65000:3_0:96_0:94$ ip community-list expanded c2 permit 879 ^65000:4_0:97_0:33$ ip community-list expanded c2 permit 880 ^65000:4_0:97_0:34$ ip community-list expanded c2 permit 881 ^65000:4_0:97_0:35$ ip community-list expanded c2 permit 882 ^65000:4_0:97_0:36$ ip community-list expanded c2 permit 883 ^65000:4_0:97_0:37$ ip community-list expanded c2 permit 884 ^65000:4_0:97_0:38$ ip community-list expanded c2 permit 885 ^65000:4_0:97_0:39$ ip community-list expanded c2 permit 886 ^65000:4_0:97_0:40$ ip community-list expanded c2 permit 887 ^65000:4_0:97_0:41$ ip community-list expanded c2 permit 888 ^65000:4_0:97_0:42$ ip community-list expanded c2 permit 889 ^65000:4_0:97_0:43$ ip community-list expanded c2 permit 890 ^65000:4_0:97_0:44$ ip community-list expanded c2 permit 891 ^65000:4_0:97_0:45$ ip community-list expanded c2 permit 892 ^65000:4_0:97_0:46$ ip community-list expanded c2 permit 893 ^65000:4_0:97_0:47$ ip community-list expanded c2 permit 894 ^65000:4_0:97_0:48$ ip community-list expanded c2 permit 895 ^65000:3_0:97_0:95$ ip community-list expanded c2 permit 896 ^65000:4_0:98_0:33$ ip community-list expanded c2 permit 897 ^65000:4_0:98_0:34$ ip community-list expanded c2 permit 898 ^65000:4_0:98_0:35$ ip community-list expanded c2 permit 899 ^65000:4_0:98_0:36$ ip community-list expanded c2 permit 900 ^65000:4_0:98_0:37$ ip community-list expanded c2 permit 901 ^65000:4_0:98_0:38$ ip community-list expanded c2 permit 902 ^65000:4_0:98_0:39$ ip community-list expanded c2 permit 903 ^65000:4_0:98_0:40$ ip community-list expanded c2 permit 904 ^65000:4_0:98_0:41$ ip community-list expanded c2 permit 905 ^65000:4_0:98_0:42$ ip community-list expanded c2 permit 906 ^65000:4_0:98_0:43$ ip community-list expanded c2 permit 907 ^65000:4_0:98_0:44$ ip community-list expanded c2 permit 908 ^65000:4_0:98_0:45$ ip community-list expanded c2 permit 909 ^65000:4_0:98_0:46$ ip community-list expanded c2 permit 910 ^65000:4_0:98_0:47$ ip community-list expanded c2 permit 911 ^65000:4_0:98_0:48$ ip community-list expanded c2 permit 912 ^65000:4_0:98_0:49$ ip community-list expanded c2 permit 913 ^65000:3_0:98_0:96$ ip community-list expanded c2 permit 914 ^65000:4_0:99_0:34$ ip community-list expanded c2 permit 915 ^65000:4_0:99_0:35$ ip community-list expanded c2 permit 916 ^65000:4_0:99_0:36$ ip community-list expanded c2 permit 917 ^65000:4_0:99_0:37$ ip community-list expanded c2 permit 918 ^65000:4_0:99_0:38$ ip community-list expanded c2 permit 919 ^65000:4_0:99_0:39$ ip community-list expanded c2 permit 920 ^65000:4_0:99_0:40$ ip community-list expanded c2 permit 921 ^65000:4_0:99_0:41$ ip community-list expanded c2 permit 922 ^65000:4_0:99_0:42$ ip community-list expanded c2 permit 923 ^65000:4_0:99_0:43$ ip community-list expanded c2 permit 924 ^65000:4_0:99_0:44$ ip community-list expanded c2 permit 925 ^65000:4_0:99_0:45$ ip community-list expanded c2 permit 926 ^65000:4_0:99_0:46$ ip community-list expanded c2 permit 927 ^65000:4_0:99_0:47$ ip community-list expanded c2 permit 928 ^65000:4_0:99_0:48$ ip community-list expanded c2 permit 929 ^65000:4_0:99_0:49$ ip community-list expanded c2 permit 930 ^65000:3_0:99_0:97$ ip community-list expanded c2 permit 931 ^65000:4_0:100_0:34$ ip community-list expanded c2 permit 932 ^65000:4_0:100_0:35$ ip community-list expanded c2 permit 933 ^65000:4_0:100_0:36$ ip community-list expanded c2 permit 934 ^65000:4_0:100_0:37$ ip community-list expanded c2 permit 935 ^65000:4_0:100_0:38$ ip community-list expanded c2 permit 936 ^65000:4_0:100_0:39$ ip community-list expanded c2 permit 937 ^65000:4_0:100_0:40$ ip community-list expanded c2 permit 938 ^65000:4_0:100_0:41$ ip community-list expanded c2 permit 939 ^65000:4_0:100_0:42$ ip community-list expanded c2 permit 940 ^65000:4_0:100_0:43$ ip community-list expanded c2 permit 941 ^65000:4_0:100_0:44$ ip community-list expanded c2 permit 942 ^65000:4_0:100_0:45$ ip community-list expanded c2 permit 943 ^65000:4_0:100_0:46$ ip community-list expanded c2 permit 944 ^65000:4_0:100_0:47$ ip community-list expanded c2 permit 945 ^65000:4_0:100_0:48$ ip community-list expanded c2 permit 946 ^65000:4_0:100_0:49$ ip community-list expanded c2 permit 947 ^65000:4_0:100_0:50$ ip community-list expanded c2 permit 948 ^65000:3_0:100_0:98$ ip community-list expanded c2 permit 949 ^65000:4_0:101_0:34$ ip community-list expanded c2 permit 950 ^65000:4_0:101_0:35$ ip community-list expanded c2 permit 951 ^65000:4_0:101_0:36$ ip community-list expanded c2 permit 952 ^65000:4_0:101_0:37$ ip community-list expanded c2 permit 953 ^65000:4_0:101_0:38$ ip community-list expanded c2 permit 954 ^65000:4_0:101_0:39$ ip community-list expanded c2 permit 955 ^65000:4_0:101_0:40$ ip community-list expanded c2 permit 956 ^65000:4_0:101_0:41$ ip community-list expanded c2 permit 957 ^65000:4_0:101_0:42$ ip community-list expanded c2 permit 958 ^65000:4_0:101_0:43$ ip community-list expanded c2 permit 959 ^65000:4_0:101_0:44$ ip community-list expanded c2 permit 960 ^65000:4_0:101_0:45$ ip community-list expanded c2 permit 961 ^65000:4_0:101_0:46$ ip community-list expanded c2 permit 962 ^65000:4_0:101_0:47$ ip community-list expanded c2 permit 963 ^65000:4_0:101_0:48$ ip community-list expanded c2 permit 964 ^65000:4_0:101_0:49$ ip community-list expanded c2 permit 965 ^65000:4_0:101_0:50$ ip community-list expanded c2 permit 966 ^65000:3_0:101_0:99$ ip community-list expanded c2 permit 967 ^65000:4_0:102_0:35$ ip community-list expanded c2 permit 968 ^65000:4_0:102_0:36$ ip community-list expanded c2 permit 969 ^65000:4_0:102_0:37$ ip community-list expanded c2 permit 970 ^65000:4_0:102_0:38$ ip community-list expanded c2 permit 971 ^65000:4_0:102_0:39$ ip community-list expanded c2 permit 972 ^65000:4_0:102_0:40$ ip community-list expanded c2 permit 973 ^65000:4_0:102_0:41$ ip community-list expanded c2 permit 974 ^65000:4_0:102_0:42$ ip community-list expanded c2 permit 975 ^65000:4_0:102_0:43$ ip community-list expanded c2 permit 976 ^65000:4_0:102_0:44$ ip community-list expanded c2 permit 977 ^65000:4_0:102_0:45$ ip community-list expanded c2 permit 978 ^65000:4_0:102_0:46$ ip community-list expanded c2 permit 979 ^65000:4_0:102_0:47$ ip community-list expanded c2 permit 980 ^65000:4_0:102_0:48$ ip community-list expanded c2 permit 981 ^65000:4_0:102_0:49$ ip community-list expanded c2 permit 982 ^65000:4_0:102_0:50$ ip community-list expanded c2 permit 983 ^65000:4_0:102_0:51$ ip community-list expanded c2 permit 984 ^65000:3_0:102_0:100$ ip community-list expanded c2 permit 985 ^65000:4_0:103_0:35$ ip community-list expanded c2 permit 986 ^65000:4_0:103_0:36$ ip community-list expanded c2 permit 987 ^65000:4_0:103_0:37$ ip community-list expanded c2 permit 988 ^65000:4_0:103_0:38$ ip community-list expanded c2 permit 989 ^65000:4_0:103_0:39$ ip community-list expanded c2 permit 990 ^65000:4_0:103_0:40$ ip community-list expanded c2 permit 991 ^65000:4_0:103_0:41$ ip community-list expanded c2 permit 992 ^65000:4_0:103_0:42$ ip community-list expanded c2 permit 993 ^65000:4_0:103_0:43$ ip community-list expanded c2 permit 994 ^65000:4_0:103_0:44$ ip community-list expanded c2 permit 995 ^65000:4_0:103_0:45$ ip community-list expanded c2 permit 996 ^65000:4_0:103_0:46$ ip community-list expanded c2 permit 997 ^65000:4_0:103_0:47$ ip community-list expanded c2 permit 998 ^65000:4_0:103_0:48$ ip community-list expanded c2 permit 999 ^65000:4_0:103_0:49$ ip community-list expanded c2 permit 1000 ^65000:4_0:103_0:50$ ip community-list expanded c2 permit 1001 ^65000:4_0:103_0:51$ ip community-list expanded c2 permit 1002 ^65000:3_0:103_0:101$ ip community-list expanded c2 permit 1003 ^65000:4_0:104_0:35$ ip community-list expanded c2 permit 1004 ^65000:4_0:104_0:36$ ip community-list expanded c2 permit 1005 ^65000:4_0:104_0:37$ ip community-list expanded c2 permit 1006 ^65000:4_0:104_0:38$ ip community-list expanded c2 permit 1007 ^65000:4_0:104_0:39$ ip community-list expanded c2 permit 1008 ^65000:4_0:104_0:40$ ip community-list expanded c2 permit 1009 ^65000:4_0:104_0:41$ ip community-list expanded c2 permit 1010 ^65000:4_0:104_0:42$ ip community-list expanded c2 permit 1011 ^65000:4_0:104_0:43$ ip community-list expanded c2 permit 1012 ^65000:4_0:104_0:44$ ip community-list expanded c2 permit 1013 ^65000:4_0:104_0:45$ ip community-list expanded c2 permit 1014 ^65000:4_0:104_0:46$ ip community-list expanded c2 permit 1015 ^65000:4_0:104_0:47$ ip community-list expanded c2 permit 1016 ^65000:4_0:104_0:48$ ip community-list expanded c2 permit 1017 ^65000:4_0:104_0:49$ ip community-list expanded c2 permit 1018 ^65000:4_0:104_0:50$ ip community-list expanded c2 permit 1019 ^65000:4_0:104_0:51$ ip community-list expanded c2 permit 1020 ^65000:4_0:104_0:52$ ip community-list expanded c2 permit 1021 ^65000:3_0:104_0:102$ ip community-list expanded c2 permit 1022 ^65000:4_0:105_0:36$ ip community-list expanded c2 permit 1023 ^65000:4_0:105_0:37$ ip community-list expanded c2 permit 1024 ^65000:4_0:105_0:38$ ip community-list expanded c2 permit 1025 ^65000:4_0:105_0:39$ ip community-list expanded c2 permit 1026 ^65000:4_0:105_0:40$ ip community-list expanded c2 permit 1027 ^65000:4_0:105_0:41$ ip community-list expanded c2 permit 1028 ^65000:4_0:105_0:42$ ip community-list expanded c2 permit 1029 ^65000:4_0:105_0:43$ ip community-list expanded c2 permit 1030 ^65000:4_0:105_0:44$ ip community-list expanded c2 permit 1031 ^65000:4_0:105_0:45$ ip community-list expanded c2 permit 1032 ^65000:4_0:105_0:46$ ip community-list expanded c2 permit 1033 ^65000:4_0:105_0:47$ ip community-list expanded c2 permit 1034 ^65000:4_0:105_0:48$ ip community-list expanded c2 permit 1035 ^65000:4_0:105_0:49$ ip community-list expanded c2 permit 1036 ^65000:4_0:105_0:50$ ip community-list expanded c2 permit 1037 ^65000:4_0:105_0:51$ ip community-list expanded c2 permit 1038 ^65000:4_0:105_0:52$ ip community-list expanded c2 permit 1039 ^65000:3_0:105_0:103$ ip community-list expanded c2 permit 1040 ^65000:4_0:106_0:36$ ip community-list expanded c2 permit 1041 ^65000:4_0:106_0:37$ ip community-list expanded c2 permit 1042 ^65000:4_0:106_0:38$ ip community-list expanded c2 permit 1043 ^65000:4_0:106_0:39$ ip community-list expanded c2 permit 1044 ^65000:4_0:106_0:40$ ip community-list expanded c2 permit 1045 ^65000:4_0:106_0:41$ ip community-list expanded c2 permit 1046 ^65000:4_0:106_0:42$ ip community-list expanded c2 permit 1047 ^65000:4_0:106_0:43$ ip community-list expanded c2 permit 1048 ^65000:4_0:106_0:44$ ip community-list expanded c2 permit 1049 ^65000:4_0:106_0:45$ ip community-list expanded c2 permit 1050 ^65000:4_0:106_0:46$ ip community-list expanded c2 permit 1051 ^65000:4_0:106_0:47$ ip community-list expanded c2 permit 1052 ^65000:4_0:106_0:48$ ip community-list expanded c2 permit 1053 ^65000:4_0:106_0:49$ ip community-list expanded c2 permit 1054 ^65000:4_0:106_0:50$ ip community-list expanded c2 permit 1055 ^65000:4_0:106_0:51$ ip community-list expanded c2 permit 1056 ^65000:4_0:106_0:52$ ip community-list expanded c2 permit 1057 ^65000:4_0:106_0:53$ ip community-list expanded c2 permit 1058 ^65000:3_0:106_0:104$ ip community-list expanded c2 permit 1059 ^65000:4_0:107_0:36$ ip community-list expanded c2 permit 1060 ^65000:4_0:107_0:37$ ip community-list expanded c2 permit 1061 ^65000:4_0:107_0:38$ ip community-list expanded c2 permit 1062 ^65000:4_0:107_0:39$ ip community-list expanded c2 permit 1063 ^65000:4_0:107_0:40$ ip community-list expanded c2 permit 1064 ^65000:4_0:107_0:41$ ip community-list expanded c2 permit 1065 ^65000:4_0:107_0:42$ ip community-list expanded c2 permit 1066 ^65000:4_0:107_0:43$ ip community-list expanded c2 permit 1067 ^65000:4_0:107_0:44$ ip community-list expanded c2 permit 1068 ^65000:4_0:107_0:45$ ip community-list expanded c2 permit 1069 ^65000:4_0:107_0:46$ ip community-list expanded c2 permit 1070 ^65000:4_0:107_0:47$ ip community-list expanded c2 permit 1071 ^65000:4_0:107_0:48$ ip community-list expanded c2 permit 1072 ^65000:4_0:107_0:49$ ip community-list expanded c2 permit 1073 ^65000:4_0:107_0:50$ ip community-list expanded c2 permit 1074 ^65000:4_0:107_0:51$ ip community-list expanded c2 permit 1075 ^65000:4_0:107_0:52$ ip community-list expanded c2 permit 1076 ^65000:4_0:107_0:53$ ip community-list expanded c2 permit 1077 ^65000:3_0:107_0:105$ ip community-list expanded c2 permit 1078 ^65000:4_0:108_0:37$ ip community-list expanded c2 permit 1079 ^65000:4_0:108_0:38$ ip community-list expanded c2 permit 1080 ^65000:4_0:108_0:39$ ip community-list expanded c2 permit 1081 ^65000:4_0:108_0:40$ ip community-list expanded c2 permit 1082 ^65000:4_0:108_0:41$ ip community-list expanded c2 permit 1083 ^65000:4_0:108_0:42$ ip community-list expanded c2 permit 1084 ^65000:4_0:108_0:43$ ip community-list expanded c2 permit 1085 ^65000:4_0:108_0:44$ ip community-list expanded c2 permit 1086 ^65000:4_0:108_0:45$ ip community-list expanded c2 permit 1087 ^65000:4_0:108_0:46$ ip community-list expanded c2 permit 1088 ^65000:4_0:108_0:47$ ip community-list expanded c2 permit 1089 ^65000:4_0:108_0:48$ ip community-list expanded c2 permit 1090 ^65000:4_0:108_0:49$ ip community-list expanded c2 permit 1091 ^65000:4_0:108_0:50$ ip community-list expanded c2 permit 1092 ^65000:4_0:108_0:51$ ip community-list expanded c2 permit 1093 ^65000:4_0:108_0:52$ ip community-list expanded c2 permit 1094 ^65000:4_0:108_0:53$ ip community-list expanded c2 permit 1095 ^65000:4_0:108_0:54$ ip community-list expanded c2 permit 1096 ^65000:3_0:108_0:106$ ip community-list expanded c2 permit 1097 ^65000:4_0:109_0:37$ ip community-list expanded c2 permit 1098 ^65000:4_0:109_0:38$ ip community-list expanded c2 permit 1099 ^65000:4_0:109_0:39$ ip community-list expanded c2 permit 1100 ^65000:4_0:109_0:40$ ip community-list expanded c2 permit 1101 ^65000:4_0:109_0:41$ ip community-list expanded c2 permit 1102 ^65000:4_0:109_0:42$ ip community-list expanded c2 permit 1103 ^65000:4_0:109_0:43$ ip community-list expanded c2 permit 1104 ^65000:4_0:109_0:44$ ip community-list expanded c2 permit 1105 ^65000:4_0:109_0:45$ ip community-list expanded c2 permit 1106 ^65000:4_0:109_0:46$ ip community-list expanded c2 permit 1107 ^65000:4_0:109_0:47$ ip community-list expanded c2 permit 1108 ^65000:4_0:109_0:48$ ip community-list expanded c2 permit 1109 ^65000:4_0:109_0:49$ ip community-list expanded c2 permit 1110 ^65000:4_0:109_0:50$ ip community-list expanded c2 permit 1111 ^65000:4_0:109_0:51$ ip community-list expanded c2 permit 1112 ^65000:4_0:109_0:52$ ip community-list expanded c2 permit 1113 ^65000:4_0:109_0:53$ ip community-list expanded c2 permit 1114 ^65000:4_0:109_0:54$ ip community-list expanded c2 permit 1115 ^65000:3_0:109_0:107$ ip community-list expanded c2 permit 1116 ^65000:4_0:110_0:37$ ip community-list expanded c2 permit 1117 ^65000:4_0:110_0:38$ ip community-list expanded c2 permit 1118 ^65000:4_0:110_0:39$ ip community-list expanded c2 permit 1119 ^65000:4_0:110_0:40$ ip community-list expanded c2 permit 1120 ^65000:4_0:110_0:41$ ip community-list expanded c2 permit 1121 ^65000:4_0:110_0:42$ ip community-list expanded c2 permit 1122 ^65000:4_0:110_0:43$ ip community-list expanded c2 permit 1123 ^65000:4_0:110_0:44$ ip community-list expanded c2 permit 1124 ^65000:4_0:110_0:45$ ip community-list expanded c2 permit 1125 ^65000:4_0:110_0:46$ ip community-list expanded c2 permit 1126 ^65000:4_0:110_0:47$ ip community-list expanded c2 permit 1127 ^65000:4_0:110_0:48$ ip community-list expanded c2 permit 1128 ^65000:4_0:110_0:49$ ip community-list expanded c2 permit 1129 ^65000:4_0:110_0:50$ ip community-list expanded c2 permit 1130 ^65000:4_0:110_0:51$ ip community-list expanded c2 permit 1131 ^65000:4_0:110_0:52$ ip community-list expanded c2 permit 1132 ^65000:4_0:110_0:53$ ip community-list expanded c2 permit 1133 ^65000:4_0:110_0:54$ ip community-list expanded c2 permit 1134 ^65000:4_0:110_0:55$ ip community-list expanded c2 permit 1135 ^65000:3_0:110_0:108$ ip community-list expanded c2 permit 1136 ^65000:4_0:111_0:38$ ip community-list expanded c2 permit 1137 ^65000:4_0:111_0:39$ ip community-list expanded c2 permit 1138 ^65000:4_0:111_0:40$ ip community-list expanded c2 permit 1139 ^65000:4_0:111_0:41$ ip community-list expanded c2 permit 1140 ^65000:4_0:111_0:42$ ip community-list expanded c2 permit 1141 ^65000:4_0:111_0:43$ ip community-list expanded c2 permit 1142 ^65000:4_0:111_0:44$ ip community-list expanded c2 permit 1143 ^65000:4_0:111_0:45$ ip community-list expanded c2 permit 1144 ^65000:4_0:111_0:46$ ip community-list expanded c2 permit 1145 ^65000:4_0:111_0:47$ ip community-list expanded c2 permit 1146 ^65000:4_0:111_0:48$ ip community-list expanded c2 permit 1147 ^65000:4_0:111_0:49$ ip community-list expanded c2 permit 1148 ^65000:4_0:111_0:50$ ip community-list expanded c2 permit 1149 ^65000:4_0:111_0:51$ ip community-list expanded c2 permit 1150 ^65000:4_0:111_0:52$ ip community-list expanded c2 permit 1151 ^65000:4_0:111_0:53$ ip community-list expanded c2 permit 1152 ^65000:4_0:111_0:54$ ip community-list expanded c2 permit 1153 ^65000:4_0:111_0:55$ ip community-list expanded c2 permit 1154 ^65000:3_0:111_0:109$ ip community-list expanded c2 permit 1155 ^65000:4_0:112_0:38$ ip community-list expanded c2 permit 1156 ^65000:4_0:112_0:39$ ip community-list expanded c2 permit 1157 ^65000:4_0:112_0:40$ ip community-list expanded c2 permit 1158 ^65000:4_0:112_0:41$ ip community-list expanded c2 permit 1159 ^65000:4_0:112_0:42$ ip community-list expanded c2 permit 1160 ^65000:4_0:112_0:43$ ip community-list expanded c2 permit 1161 ^65000:4_0:112_0:44$ ip community-list expanded c2 permit 1162 ^65000:4_0:112_0:45$ ip community-list expanded c2 permit 1163 ^65000:4_0:112_0:46$ ip community-list expanded c2 permit 1164 ^65000:4_0:112_0:47$ ip community-list expanded c2 permit 1165 ^65000:4_0:112_0:48$ ip community-list expanded c2 permit 1166 ^65000:4_0:112_0:49$ ip community-list expanded c2 permit 1167 ^65000:4_0:112_0:50$ ip community-list expanded c2 permit 1168 ^65000:4_0:112_0:51$ ip community-list expanded c2 permit 1169 ^65000:4_0:112_0:52$ ip community-list expanded c2 permit 1170 ^65000:4_0:112_0:53$ ip community-list expanded c2 permit 1171 ^65000:4_0:112_0:54$ ip community-list expanded c2 permit 1172 ^65000:4_0:112_0:55$ ip community-list expanded c2 permit 1173 ^65000:4_0:112_0:56$ ip community-list expanded c2 permit 1174 ^65000:3_0:112_0:110$ ip community-list expanded c2 permit 1175 ^65000:4_0:113_0:38$ ip community-list expanded c2 permit 1176 ^65000:4_0:113_0:39$ ip community-list expanded c2 permit 1177 ^65000:4_0:113_0:40$ ip community-list expanded c2 permit 1178 ^65000:4_0:113_0:41$ ip community-list expanded c2 permit 1179 ^65000:4_0:113_0:42$ ip community-list expanded c2 permit 1180 ^65000:4_0:113_0:43$ ip community-list expanded c2 permit 1181 ^65000:4_0:113_0:44$ ip community-list expanded c2 permit 1182 ^65000:4_0:113_0:45$ ip community-list expanded c2 permit 1183 ^65000:4_0:113_0:46$ ip community-list expanded c2 permit 1184 ^65000:4_0:113_0:47$ ip community-list expanded c2 permit 1185 ^65000:4_0:113_0:48$ ip community-list expanded c2 permit 1186 ^65000:4_0:113_0:49$ ip community-list expanded c2 permit 1187 ^65000:4_0:113_0:50$ ip community-list expanded c2 permit 1188 ^65000:4_0:113_0:51$ ip community-list expanded c2 permit 1189 ^65000:4_0:113_0:52$ ip community-list expanded c2 permit 1190 ^65000:4_0:113_0:53$ ip community-list expanded c2 permit 1191 ^65000:4_0:113_0:54$ ip community-list expanded c2 permit 1192 ^65000:4_0:113_0:55$ ip community-list expanded c2 permit 1193 ^65000:4_0:113_0:56$ ip community-list expanded c2 permit 1194 ^65000:3_0:113_0:111$ ip community-list expanded c2 permit 1195 ^65000:4_0:114_0:39$ ip community-list expanded c2 permit 1196 ^65000:4_0:114_0:40$ ip community-list expanded c2 permit 1197 ^65000:4_0:114_0:41$ ip community-list expanded c2 permit 1198 ^65000:4_0:114_0:42$ ip community-list expanded c2 permit 1199 ^65000:4_0:114_0:43$ ip community-list expanded c2 permit 1200 ^65000:4_0:114_0:44$ ip community-list expanded c2 permit 1201 ^65000:4_0:114_0:45$ ip community-list expanded c2 permit 1202 ^65000:4_0:114_0:46$ ip community-list expanded c2 permit 1203 ^65000:4_0:114_0:47$ ip community-list expanded c2 permit 1204 ^65000:4_0:114_0:48$ ip community-list expanded c2 permit 1205 ^65000:4_0:114_0:49$ ip community-list expanded c2 permit 1206 ^65000:4_0:114_0:50$ ip community-list expanded c2 permit 1207 ^65000:4_0:114_0:51$ ip community-list expanded c2 permit 1208 ^65000:4_0:114_0:52$ ip community-list expanded c2 permit 1209 ^65000:4_0:114_0:53$ ip community-list expanded c2 permit 1210 ^65000:4_0:114_0:54$ ip community-list expanded c2 permit 1211 ^65000:4_0:114_0:55$ ip community-list expanded c2 permit 1212 ^65000:4_0:114_0:56$ ip community-list expanded c2 permit 1213 ^65000:4_0:114_0:57$ ip community-list expanded c2 permit 1214 ^65000:3_0:114_0:112$ ip community-list expanded c2 permit 1215 ^65000:4_0:115_0:39$ ip community-list expanded c2 permit 1216 ^65000:4_0:115_0:40$ ip community-list expanded c2 permit 1217 ^65000:4_0:115_0:41$ ip community-list expanded c2 permit 1218 ^65000:4_0:115_0:42$ ip community-list expanded c2 permit 1219 ^65000:4_0:115_0:43$ ip community-list expanded c2 permit 1220 ^65000:4_0:115_0:44$ ip community-list expanded c2 permit 1221 ^65000:4_0:115_0:45$ ip community-list expanded c2 permit 1222 ^65000:4_0:115_0:46$ ip community-list expanded c2 permit 1223 ^65000:4_0:115_0:47$ ip community-list expanded c2 permit 1224 ^65000:4_0:115_0:48$ ip community-list expanded c2 permit 1225 ^65000:4_0:115_0:49$ ip community-list expanded c2 permit 1226 ^65000:4_0:115_0:50$ ip community-list expanded c2 permit 1227 ^65000:4_0:115_0:51$ ip community-list expanded c2 permit 1228 ^65000:4_0:115_0:52$ ip community-list expanded c2 permit 1229 ^65000:4_0:115_0:53$ ip community-list expanded c2 permit 1230 ^65000:4_0:115_0:54$ ip community-list expanded c2 permit 1231 ^65000:4_0:115_0:55$ ip community-list expanded c2 permit 1232 ^65000:4_0:115_0:56$ ip community-list expanded c2 permit 1233 ^65000:4_0:115_0:57$ ip community-list expanded c2 permit 1234 ^65000:3_0:115_0:113$ ip community-list expanded c2 permit 1235 ^65000:4_0:116_0:39$ ip community-list expanded c2 permit 1236 ^65000:4_0:116_0:40$ ip community-list expanded c2 permit 1237 ^65000:4_0:116_0:41$ ip community-list expanded c2 permit 1238 ^65000:4_0:116_0:42$ ip community-list expanded c2 permit 1239 ^65000:4_0:116_0:43$ ip community-list expanded c2 permit 1240 ^65000:4_0:116_0:44$ ip community-list expanded c2 permit 1241 ^65000:4_0:116_0:45$ ip community-list expanded c2 permit 1242 ^65000:4_0:116_0:46$ ip community-list expanded c2 permit 1243 ^65000:4_0:116_0:47$ ip community-list expanded c2 permit 1244 ^65000:4_0:116_0:48$ ip community-list expanded c2 permit 1245 ^65000:4_0:116_0:49$ ip community-list expanded c2 permit 1246 ^65000:4_0:116_0:50$ ip community-list expanded c2 permit 1247 ^65000:4_0:116_0:51$ ip community-list expanded c2 permit 1248 ^65000:4_0:116_0:52$ ip community-list expanded c2 permit 1249 ^65000:4_0:116_0:53$ ip community-list expanded c2 permit 1250 ^65000:4_0:116_0:54$ ip community-list expanded c2 permit 1251 ^65000:4_0:116_0:55$ ip community-list expanded c2 permit 1252 ^65000:4_0:116_0:56$ ip community-list expanded c2 permit 1253 ^65000:4_0:116_0:57$ ip community-list expanded c2 permit 1254 ^65000:4_0:116_0:58$ ip community-list expanded c2 permit 1255 ^65000:3_0:116_0:114$ ip community-list expanded c2 permit 1256 ^65000:4_0:117_0:40$ ip community-list expanded c2 permit 1257 ^65000:4_0:117_0:41$ ip community-list expanded c2 permit 1258 ^65000:4_0:117_0:42$ ip community-list expanded c2 permit 1259 ^65000:4_0:117_0:43$ ip community-list expanded c2 permit 1260 ^65000:4_0:117_0:44$ ip community-list expanded c2 permit 1261 ^65000:4_0:117_0:45$ ip community-list expanded c2 permit 1262 ^65000:4_0:117_0:46$ ip community-list expanded c2 permit 1263 ^65000:4_0:117_0:47$ ip community-list expanded c2 permit 1264 ^65000:4_0:117_0:48$ ip community-list expanded c2 permit 1265 ^65000:4_0:117_0:49$ ip community-list expanded c2 permit 1266 ^65000:4_0:117_0:50$ ip community-list expanded c2 permit 1267 ^65000:4_0:117_0:51$ ip community-list expanded c2 permit 1268 ^65000:4_0:117_0:52$ ip community-list expanded c2 permit 1269 ^65000:4_0:117_0:53$ ip community-list expanded c2 permit 1270 ^65000:4_0:117_0:54$ ip community-list expanded c2 permit 1271 ^65000:4_0:117_0:55$ ip community-list expanded c2 permit 1272 ^65000:4_0:117_0:56$ ip community-list expanded c2 permit 1273 ^65000:4_0:117_0:57$ ip community-list expanded c2 permit 1274 ^65000:4_0:117_0:58$ ip community-list expanded c2 permit 1275 ^65000:3_0:117_0:115$ ip community-list expanded c2 permit 1276 ^65000:4_0:118_0:40$ ip community-list expanded c2 permit 1277 ^65000:4_0:118_0:41$ ip community-list expanded c2 permit 1278 ^65000:4_0:118_0:42$ ip community-list expanded c2 permit 1279 ^65000:4_0:118_0:43$ ip community-list expanded c2 permit 1280 ^65000:4_0:118_0:44$ ip community-list expanded c2 permit 1281 ^65000:4_0:118_0:45$ ip community-list expanded c2 permit 1282 ^65000:4_0:118_0:46$ ip community-list expanded c2 permit 1283 ^65000:4_0:118_0:47$ ip community-list expanded c2 permit 1284 ^65000:4_0:118_0:48$ ip community-list expanded c2 permit 1285 ^65000:4_0:118_0:49$ ip community-list expanded c2 permit 1286 ^65000:4_0:118_0:50$ ip community-list expanded c2 permit 1287 ^65000:4_0:118_0:51$ ip community-list expanded c2 permit 1288 ^65000:4_0:118_0:52$ ip community-list expanded c2 permit 1289 ^65000:4_0:118_0:53$ ip community-list expanded c2 permit 1290 ^65000:4_0:118_0:54$ ip community-list expanded c2 permit 1291 ^65000:4_0:118_0:55$ ip community-list expanded c2 permit 1292 ^65000:4_0:118_0:56$ ip community-list expanded c2 permit 1293 ^65000:4_0:118_0:57$ ip community-list expanded c2 permit 1294 ^65000:4_0:118_0:58$ ip community-list expanded c2 permit 1295 ^65000:4_0:118_0:59$ ip community-list expanded c2 permit 1296 ^65000:3_0:118_0:116$ ip community-list expanded c2 permit 1297 ^65000:4_0:119_0:40$ ip community-list expanded c2 permit 1298 ^65000:4_0:119_0:41$ ip community-list expanded c2 permit 1299 ^65000:4_0:119_0:42$ ip community-list expanded c2 permit 1300 ^65000:4_0:119_0:43$ ip community-list expanded c2 permit 1301 ^65000:4_0:119_0:44$ ip community-list expanded c2 permit 1302 ^65000:4_0:119_0:45$ ip community-list expanded c2 permit 1303 ^65000:4_0:119_0:46$ ip community-list expanded c2 permit 1304 ^65000:4_0:119_0:47$ ip community-list expanded c2 permit 1305 ^65000:4_0:119_0:48$ ip community-list expanded c2 permit 1306 ^65000:4_0:119_0:49$ ip community-list expanded c2 permit 1307 ^65000:4_0:119_0:50$ ip community-list expanded c2 permit 1308 ^65000:4_0:119_0:51$ ip community-list expanded c2 permit 1309 ^65000:4_0:119_0:52$ ip community-list expanded c2 permit 1310 ^65000:4_0:119_0:53$ ip community-list expanded c2 permit 1311 ^65000:4_0:119_0:54$ ip community-list expanded c2 permit 1312 ^65000:4_0:119_0:55$ ip community-list expanded c2 permit 1313 ^65000:4_0:119_0:56$ ip community-list expanded c2 permit 1314 ^65000:4_0:119_0:57$ ip community-list expanded c2 permit 1315 ^65000:4_0:119_0:58$ ip community-list expanded c2 permit 1316 ^65000:4_0:119_0:59$ ip community-list expanded c2 permit 1317 ^65000:3_0:119_0:117$ ip community-list expanded c2 permit 1318 ^65000:4_0:120_0:41$ ip community-list expanded c2 permit 1319 ^65000:4_0:120_0:42$ ip community-list expanded c2 permit 1320 ^65000:4_0:120_0:43$ ip community-list expanded c2 permit 1321 ^65000:4_0:120_0:44$ ip community-list expanded c2 permit 1322 ^65000:4_0:120_0:45$ ip community-list expanded c2 permit 1323 ^65000:4_0:120_0:46$ ip community-list expanded c2 permit 1324 ^65000:4_0:120_0:47$ ip community-list expanded c2 permit 1325 ^65000:4_0:120_0:48$ ip community-list expanded c2 permit 1326 ^65000:4_0:120_0:49$ ip community-list expanded c2 permit 1327 ^65000:4_0:120_0:50$ ip community-list expanded c2 permit 1328 ^65000:4_0:120_0:51$ ip community-list expanded c2 permit 1329 ^65000:4_0:120_0:52$ ip community-list expanded c2 permit 1330 ^65000:4_0:120_0:53$ ip community-list expanded c2 permit 1331 ^65000:4_0:120_0:54$ ip community-list expanded c2 permit 1332 ^65000:4_0:120_0:55$ ip community-list expanded c2 permit 1333 ^65000:4_0:120_0:56$ ip community-list expanded c2 permit 1334 ^65000:4_0:120_0:57$ ip community-list expanded c2 permit 1335 ^65000:4_0:120_0:58$ ip community-list expanded c2 permit 1336 ^65000:4_0:120_0:59$ ip community-list expanded c2 permit 1337 ^65000:4_0:120_0:60$ ip community-list expanded c2 permit 1338 ^65000:3_0:120_0:118$ ip community-list expanded c2 permit 1339 ^65000:4_0:121_0:41$ ip community-list expanded c2 permit 1340 ^65000:4_0:121_0:42$ ip community-list expanded c2 permit 1341 ^65000:4_0:121_0:43$ ip community-list expanded c2 permit 1342 ^65000:4_0:121_0:44$ ip community-list expanded c2 permit 1343 ^65000:4_0:121_0:45$ ip community-list expanded c2 permit 1344 ^65000:4_0:121_0:46$ ip community-list expanded c2 permit 1345 ^65000:4_0:121_0:47$ ip community-list expanded c2 permit 1346 ^65000:4_0:121_0:48$ ip community-list expanded c2 permit 1347 ^65000:4_0:121_0:49$ ip community-list expanded c2 permit 1348 ^65000:4_0:121_0:50$ ip community-list expanded c2 permit 1349 ^65000:4_0:121_0:51$ ip community-list expanded c2 permit 1350 ^65000:4_0:121_0:52$ ip community-list expanded c2 permit 1351 ^65000:4_0:121_0:53$ ip community-list expanded c2 permit 1352 ^65000:4_0:121_0:54$ ip community-list expanded c2 permit 1353 ^65000:4_0:121_0:55$ ip community-list expanded c2 permit 1354 ^65000:4_0:121_0:56$ ip community-list expanded c2 permit 1355 ^65000:4_0:121_0:57$ ip community-list expanded c2 permit 1356 ^65000:4_0:121_0:58$ ip community-list expanded c2 permit 1357 ^65000:4_0:121_0:59$ ip community-list expanded c2 permit 1358 ^65000:4_0:121_0:60$ ip community-list expanded c2 permit 1359 ^65000:3_0:121_0:119$ ip community-list expanded c2 permit 1360 ^65000:4_0:122_0:41$ ip community-list expanded c2 permit 1361 ^65000:4_0:122_0:42$ ip community-list expanded c2 permit 1362 ^65000:4_0:122_0:43$ ip community-list expanded c2 permit 1363 ^65000:4_0:122_0:44$ ip community-list expanded c2 permit 1364 ^65000:4_0:122_0:45$ ip community-list expanded c2 permit 1365 ^65000:4_0:122_0:46$ ip community-list expanded c2 permit 1366 ^65000:4_0:122_0:47$ ip community-list expanded c2 permit 1367 ^65000:4_0:122_0:48$ ip community-list expanded c2 permit 1368 ^65000:4_0:122_0:49$ ip community-list expanded c2 permit 1369 ^65000:4_0:122_0:50$ ip community-list expanded c2 permit 1370 ^65000:4_0:122_0:51$ ip community-list expanded c2 permit 1371 ^65000:4_0:122_0:52$ ip community-list expanded c2 permit 1372 ^65000:4_0:122_0:53$ ip community-list expanded c2 permit 1373 ^65000:4_0:122_0:54$ ip community-list expanded c2 permit 1374 ^65000:4_0:122_0:55$ ip community-list expanded c2 permit 1375 ^65000:4_0:122_0:56$ ip community-list expanded c2 permit 1376 ^65000:4_0:122_0:57$ ip community-list expanded c2 permit 1377 ^65000:4_0:122_0:58$ ip community-list expanded c2 permit 1378 ^65000:4_0:122_0:59$ ip community-list expanded c2 permit 1379 ^65000:4_0:122_0:60$ ip community-list expanded c2 permit 1380 ^65000:4_0:122_0:61$ ip community-list expanded c2 permit 1381 ^65000:3_0:122_0:120$ ip community-list expanded c2 permit 1382 ^65000:4_0:123_0:42$ ip community-list expanded c2 permit 1383 ^65000:4_0:123_0:43$ ip community-list expanded c2 permit 1384 ^65000:4_0:123_0:44$ ip community-list expanded c2 permit 1385 ^65000:4_0:123_0:45$ ip community-list expanded c2 permit 1386 ^65000:4_0:123_0:46$ ip community-list expanded c2 permit 1387 ^65000:4_0:123_0:47$ ip community-list expanded c2 permit 1388 ^65000:4_0:123_0:48$ ip community-list expanded c2 permit 1389 ^65000:4_0:123_0:49$ ip community-list expanded c2 permit 1390 ^65000:4_0:123_0:50$ ip community-list expanded c2 permit 1391 ^65000:4_0:123_0:51$ ip community-list expanded c2 permit 1392 ^65000:4_0:123_0:52$ ip community-list expanded c2 permit 1393 ^65000:4_0:123_0:53$ ip community-list expanded c2 permit 1394 ^65000:4_0:123_0:54$ ip community-list expanded c2 permit 1395 ^65000:4_0:123_0:55$ ip community-list expanded c2 permit 1396 ^65000:4_0:123_0:56$ ip community-list expanded c2 permit 1397 ^65000:4_0:123_0:57$ ip community-list expanded c2 permit 1398 ^65000:4_0:123_0:58$ ip community-list expanded c2 permit 1399 ^65000:4_0:123_0:59$ ip community-list expanded c2 permit 1400 ^65000:4_0:123_0:60$ ip community-list expanded c2 permit 1401 ^65000:4_0:123_0:61$ ip community-list expanded c2 permit 1402 ^65000:3_0:123_0:121$ ip community-list expanded c2 permit 1403 ^65000:4_0:124_0:42$ ip community-list expanded c2 permit 1404 ^65000:4_0:124_0:43$ ip community-list expanded c2 permit 1405 ^65000:4_0:124_0:44$ ip community-list expanded c2 permit 1406 ^65000:4_0:124_0:45$ ip community-list expanded c2 permit 1407 ^65000:4_0:124_0:46$ ip community-list expanded c2 permit 1408 ^65000:4_0:124_0:47$ ip community-list expanded c2 permit 1409 ^65000:4_0:124_0:48$ ip community-list expanded c2 permit 1410 ^65000:4_0:124_0:49$ ip community-list expanded c2 permit 1411 ^65000:4_0:124_0:50$ ip community-list expanded c2 permit 1412 ^65000:4_0:124_0:51$ ip community-list expanded c2 permit 1413 ^65000:4_0:124_0:52$ ip community-list expanded c2 permit 1414 ^65000:4_0:124_0:53$ ip community-list expanded c2 permit 1415 ^65000:4_0:124_0:54$ ip community-list expanded c2 permit 1416 ^65000:4_0:124_0:55$ ip community-list expanded c2 permit 1417 ^65000:4_0:124_0:56$ ip community-list expanded c2 permit 1418 ^65000:4_0:124_0:57$ ip community-list expanded c2 permit 1419 ^65000:4_0:124_0:58$ ip community-list expanded c2 permit 1420 ^65000:4_0:124_0:59$ ip community-list expanded c2 permit 1421 ^65000:4_0:124_0:60$ ip community-list expanded c2 permit 1422 ^65000:4_0:124_0:61$ ip community-list expanded c2 permit 1423 ^65000:4_0:124_0:62$ ip community-list expanded c2 permit 1424 ^65000:3_0:124_0:122$ ip community-list expanded c2 permit 1425 ^65000:4_0:125_0:42$ ip community-list expanded c2 permit 1426 ^65000:4_0:125_0:43$ ip community-list expanded c2 permit 1427 ^65000:4_0:125_0:44$ ip community-list expanded c2 permit 1428 ^65000:4_0:125_0:45$ ip community-list expanded c2 permit 1429 ^65000:4_0:125_0:46$ ip community-list expanded c2 permit 1430 ^65000:4_0:125_0:47$ ip community-list expanded c2 permit 1431 ^65000:4_0:125_0:48$ ip community-list expanded c2 permit 1432 ^65000:4_0:125_0:49$ ip community-list expanded c2 permit 1433 ^65000:4_0:125_0:50$ ip community-list expanded c2 permit 1434 ^65000:4_0:125_0:51$ ip community-list expanded c2 permit 1435 ^65000:4_0:125_0:52$ ip community-list expanded c2 permit 1436 ^65000:4_0:125_0:53$ ip community-list expanded c2 permit 1437 ^65000:4_0:125_0:54$ ip community-list expanded c2 permit 1438 ^65000:4_0:125_0:55$ ip community-list expanded c2 permit 1439 ^65000:4_0:125_0:56$ ip community-list expanded c2 permit 1440 ^65000:4_0:125_0:57$ ip community-list expanded c2 permit 1441 ^65000:4_0:125_0:58$ ip community-list expanded c2 permit 1442 ^65000:4_0:125_0:59$ ip community-list expanded c2 permit 1443 ^65000:4_0:125_0:60$ ip community-list expanded c2 permit 1444 ^65000:4_0:125_0:61$ ip community-list expanded c2 permit 1445 ^65000:4_0:125_0:62$ ip community-list expanded c2 permit 1446 ^65000:3_0:125_0:123$ ip community-list expanded c2 permit 1447 ^65000:4_0:126_0:43$ ip community-list expanded c2 permit 1448 ^65000:4_0:126_0:44$ ip community-list expanded c2 permit 1449 ^65000:4_0:126_0:45$ ip community-list expanded c2 permit 1450 ^65000:4_0:126_0:46$ ip community-list expanded c2 permit 1451 ^65000:4_0:126_0:47$ ip community-list expanded c2 permit 1452 ^65000:4_0:126_0:48$ ip community-list expanded c2 permit 1453 ^65000:4_0:126_0:49$ ip community-list expanded c2 permit 1454 ^65000:4_0:126_0:50$ ip community-list expanded c2 permit 1455 ^65000:4_0:126_0:51$ ip community-list expanded c2 permit 1456 ^65000:4_0:126_0:52$ ip community-list expanded c2 permit 1457 ^65000:4_0:126_0:53$ ip community-list expanded c2 permit 1458 ^65000:4_0:126_0:54$ ip community-list expanded c2 permit 1459 ^65000:4_0:126_0:55$ ip community-list expanded c2 permit 1460 ^65000:4_0:126_0:56$ ip community-list expanded c2 permit 1461 ^65000:4_0:126_0:57$ ip community-list expanded c2 permit 1462 ^65000:4_0:126_0:58$ ip community-list expanded c2 permit 1463 ^65000:4_0:126_0:59$ ip community-list expanded c2 permit 1464 ^65000:4_0:126_0:60$ ip community-list expanded c2 permit 1465 ^65000:4_0:126_0:61$ ip community-list expanded c2 permit 1466 ^65000:4_0:126_0:62$ ip community-list expanded c2 permit 1467 ^65000:4_0:126_0:63$ ip community-list expanded c2 permit 1468 ^65000:3_0:126_0:124$ ip community-list expanded c2 permit 1469 ^65000:4_0:127_0:43$ ip community-list expanded c2 permit 1470 ^65000:4_0:127_0:44$ ip community-list expanded c2 permit 1471 ^65000:4_0:127_0:45$ ip community-list expanded c2 permit 1472 ^65000:4_0:127_0:46$ ip community-list expanded c2 permit 1473 ^65000:4_0:127_0:47$ ip community-list expanded c2 permit 1474 ^65000:4_0:127_0:48$ ip community-list expanded c2 permit 1475 ^65000:4_0:127_0:49$ ip community-list expanded c2 permit 1476 ^65000:4_0:127_0:50$ ip community-list expanded c2 permit 1477 ^65000:4_0:127_0:51$ ip community-list expanded c2 permit 1478 ^65000:4_0:127_0:52$ ip community-list expanded c2 permit 1479 ^65000:4_0:127_0:53$ ip community-list expanded c2 permit 1480 ^65000:4_0:127_0:54$ ip community-list expanded c2 permit 1481 ^65000:4_0:127_0:55$ ip community-list expanded c2 permit 1482 ^65000:4_0:127_0:56$ ip community-list expanded c2 permit 1483 ^65000:4_0:127_0:57$ ip community-list expanded c2 permit 1484 ^65000:4_0:127_0:58$ ip community-list expanded c2 permit 1485 ^65000:4_0:127_0:59$ ip community-list expanded c2 permit 1486 ^65000:4_0:127_0:60$ ip community-list expanded c2 permit 1487 ^65000:4_0:127_0:61$ ip community-list expanded c2 permit 1488 ^65000:4_0:127_0:62$ ip community-list expanded c2 permit 1489 ^65000:4_0:127_0:63$ ip community-list expanded c2 permit 1490 ^65000:3_0:127_0:125$ ip community-list expanded c2 permit 1491 ^65000:4_0:128_0:43$ ip community-list expanded c2 permit 1492 ^65000:4_0:128_0:44$ ip community-list expanded c2 permit 1493 ^65000:4_0:128_0:45$ ip community-list expanded c2 permit 1494 ^65000:4_0:128_0:46$ ip community-list expanded c2 permit 1495 ^65000:4_0:128_0:47$ ip community-list expanded c2 permit 1496 ^65000:4_0:128_0:48$ ip community-list expanded c2 permit 1497 ^65000:4_0:128_0:49$ ip community-list expanded c2 permit 1498 ^65000:4_0:128_0:50$ ip community-list expanded c2 permit 1499 ^65000:4_0:128_0:51$ ip community-list expanded c2 permit 1500 ^65000:4_0:128_0:52$ ip community-list expanded c2 permit 1501 ^65000:4_0:128_0:53$ ip community-list expanded c2 permit 1502 ^65000:4_0:128_0:54$ ip community-list expanded c2 permit 1503 ^65000:4_0:128_0:55$ ip community-list expanded c2 permit 1504 ^65000:4_0:128_0:56$ ip community-list expanded c2 permit 1505 ^65000:4_0:128_0:57$ ip community-list expanded c2 permit 1506 ^65000:4_0:128_0:58$ ip community-list expanded c2 permit 1507 ^65000:4_0:128_0:59$ ip community-list expanded c2 permit 1508 ^65000:4_0:128_0:60$ ip community-list expanded c2 permit 1509 ^65000:4_0:128_0:61$ ip community-list expanded c2 permit 1510 ^65000:4_0:128_0:62$ ip community-list expanded c2 permit 1511 ^65000:4_0:128_0:63$ ip community-list expanded c2 permit 1512 ^65000:4_0:128_0:64$ ip community-list expanded c2 permit 1513 ^65000:3_0:128_0:126$ ip community-list expanded c2 permit 1514 ^65000:4_0:129_0:44$ ip community-list expanded c2 permit 1515 ^65000:4_0:129_0:45$ ip community-list expanded c2 permit 1516 ^65000:4_0:129_0:46$ ip community-list expanded c2 permit 1517 ^65000:4_0:129_0:47$ ip community-list expanded c2 permit 1518 ^65000:4_0:129_0:48$ ip community-list expanded c2 permit 1519 ^65000:4_0:129_0:49$ ip community-list expanded c2 permit 1520 ^65000:4_0:129_0:50$ ip community-list expanded c2 permit 1521 ^65000:4_0:129_0:51$ ip community-list expanded c2 permit 1522 ^65000:4_0:129_0:52$ ip community-list expanded c2 permit 1523 ^65000:4_0:129_0:53$ ip community-list expanded c2 permit 1524 ^65000:4_0:129_0:54$ ip community-list expanded c2 permit 1525 ^65000:4_0:129_0:55$ ip community-list expanded c2 permit 1526 ^65000:4_0:129_0:56$ ip community-list expanded c2 permit 1527 ^65000:4_0:129_0:57$ ip community-list expanded c2 permit 1528 ^65000:4_0:129_0:58$ ip community-list expanded c2 permit 1529 ^65000:4_0:129_0:59$ ip community-list expanded c2 permit 1530 ^65000:4_0:129_0:60$ ip community-list expanded c2 permit 1531 ^65000:4_0:129_0:61$ ip community-list expanded c2 permit 1532 ^65000:4_0:129_0:62$ ip community-list expanded c2 permit 1533 ^65000:4_0:129_0:63$ ip community-list expanded c2 permit 1534 ^65000:4_0:129_0:64$ ip community-list expanded c2 permit 1535 ^65000:3_0:129_0:127$ ip community-list expanded c2 permit 1536 ^65000:4_0:130_0:44$ ip community-list expanded c2 permit 1537 ^65000:4_0:130_0:45$ ip community-list expanded c2 permit 1538 ^65000:4_0:130_0:46$ ip community-list expanded c2 permit 1539 ^65000:4_0:130_0:47$ ip community-list expanded c2 permit 1540 ^65000:4_0:130_0:48$ ip community-list expanded c2 permit 1541 ^65000:4_0:130_0:49$ ip community-list expanded c2 permit 1542 ^65000:4_0:130_0:50$ ip community-list expanded c2 permit 1543 ^65000:4_0:130_0:51$ ip community-list expanded c2 permit 1544 ^65000:4_0:130_0:52$ ip community-list expanded c2 permit 1545 ^65000:4_0:130_0:53$ ip community-list expanded c2 permit 1546 ^65000:4_0:130_0:54$ ip community-list expanded c2 permit 1547 ^65000:4_0:130_0:55$ ip community-list expanded c2 permit 1548 ^65000:4_0:130_0:56$ ip community-list expanded c2 permit 1549 ^65000:4_0:130_0:57$ ip community-list expanded c2 permit 1550 ^65000:4_0:130_0:58$ ip community-list expanded c2 permit 1551 ^65000:4_0:130_0:59$ ip community-list expanded c2 permit 1552 ^65000:4_0:130_0:60$ ip community-list expanded c2 permit 1553 ^65000:4_0:130_0:61$ ip community-list expanded c2 permit 1554 ^65000:4_0:130_0:62$ ip community-list expanded c2 permit 1555 ^65000:4_0:130_0:63$ ip community-list expanded c2 permit 1556 ^65000:4_0:130_0:64$ ip community-list expanded c2 permit 1557 ^65000:4_0:130_0:65$ ip community-list expanded c2 permit 1558 ^65000:3_0:130_0:128$ ip community-list expanded c2 permit 1559 ^65000:4_0:131_0:44$ ip community-list expanded c2 permit 1560 ^65000:4_0:131_0:45$ ip community-list expanded c2 permit 1561 ^65000:4_0:131_0:46$ ip community-list expanded c2 permit 1562 ^65000:4_0:131_0:47$ ip community-list expanded c2 permit 1563 ^65000:4_0:131_0:48$ ip community-list expanded c2 permit 1564 ^65000:4_0:131_0:49$ ip community-list expanded c2 permit 1565 ^65000:4_0:131_0:50$ ip community-list expanded c2 permit 1566 ^65000:4_0:131_0:51$ ip community-list expanded c2 permit 1567 ^65000:4_0:131_0:52$ ip community-list expanded c2 permit 1568 ^65000:4_0:131_0:53$ ip community-list expanded c2 permit 1569 ^65000:4_0:131_0:54$ ip community-list expanded c2 permit 1570 ^65000:4_0:131_0:55$ ip community-list expanded c2 permit 1571 ^65000:4_0:131_0:56$ ip community-list expanded c2 permit 1572 ^65000:4_0:131_0:57$ ip community-list expanded c2 permit 1573 ^65000:4_0:131_0:58$ ip community-list expanded c2 permit 1574 ^65000:4_0:131_0:59$ ip community-list expanded c2 permit 1575 ^65000:4_0:131_0:60$ ip community-list expanded c2 permit 1576 ^65000:4_0:131_0:61$ ip community-list expanded c2 permit 1577 ^65000:4_0:131_0:62$ ip community-list expanded c2 permit 1578 ^65000:4_0:131_0:63$ ip community-list expanded c2 permit 1579 ^65000:4_0:131_0:64$ ip community-list expanded c2 permit 1580 ^65000:4_0:131_0:65$ ip community-list expanded c2 permit 1581 ^65000:3_0:131_0:129$ ip community-list expanded c2 permit 1582 ^65000:4_0:132_0:45$ ip community-list expanded c2 permit 1583 ^65000:4_0:132_0:46$ ip community-list expanded c2 permit 1584 ^65000:4_0:132_0:47$ ip community-list expanded c2 permit 1585 ^65000:4_0:132_0:48$ ip community-list expanded c2 permit 1586 ^65000:4_0:132_0:49$ ip community-list expanded c2 permit 1587 ^65000:4_0:132_0:50$ ip community-list expanded c2 permit 1588 ^65000:4_0:132_0:51$ ip community-list expanded c2 permit 1589 ^65000:4_0:132_0:52$ ip community-list expanded c2 permit 1590 ^65000:4_0:132_0:53$ ip community-list expanded c2 permit 1591 ^65000:4_0:132_0:54$ ip community-list expanded c2 permit 1592 ^65000:4_0:132_0:55$ ip community-list expanded c2 permit 1593 ^65000:4_0:132_0:56$ ip community-list expanded c2 permit 1594 ^65000:4_0:132_0:57$ ip community-list expanded c2 permit 1595 ^65000:4_0:132_0:58$ ip community-list expanded c2 permit 1596 ^65000:4_0:132_0:59$ ip community-list expanded c2 permit 1597 ^65000:4_0:132_0:60$ ip community-list expanded c2 permit 1598 ^65000:4_0:132_0:61$ ip community-list expanded c2 permit 1599 ^65000:4_0:132_0:62$ ip community-list expanded c2 permit 1600 ^65000:4_0:132_0:63$ ip community-list expanded c2 permit 1601 ^65000:4_0:132_0:64$ ip community-list expanded c2 permit 1602 ^65000:4_0:132_0:65$ ip community-list expanded c2 permit 1603 ^65000:4_0:132_0:66$ ip community-list expanded c2 permit 1604 ^65000:3_0:132_0:130$ ip community-list expanded c2 permit 1605 ^65000:4_0:133_0:45$ ip community-list expanded c2 permit 1606 ^65000:4_0:133_0:46$ ip community-list expanded c2 permit 1607 ^65000:4_0:133_0:47$ ip community-list expanded c2 permit 1608 ^65000:4_0:133_0:48$ ip community-list expanded c2 permit 1609 ^65000:4_0:133_0:49$ ip community-list expanded c2 permit 1610 ^65000:4_0:133_0:50$ ip community-list expanded c2 permit 1611 ^65000:4_0:133_0:51$ ip community-list expanded c2 permit 1612 ^65000:4_0:133_0:52$ ip community-list expanded c2 permit 1613 ^65000:4_0:133_0:53$ ip community-list expanded c2 permit 1614 ^65000:4_0:133_0:54$ ip community-list expanded c2 permit 1615 ^65000:4_0:133_0:55$ ip community-list expanded c2 permit 1616 ^65000:4_0:133_0:56$ ip community-list expanded c2 permit 1617 ^65000:4_0:133_0:57$ ip community-list expanded c2 permit 1618 ^65000:4_0:133_0:58$ ip community-list expanded c2 permit 1619 ^65000:4_0:133_0:59$ ip community-list expanded c2 permit 1620 ^65000:4_0:133_0:60$ ip community-list expanded c2 permit 1621 ^65000:4_0:133_0:61$ ip community-list expanded c2 permit 1622 ^65000:4_0:133_0:62$ ip community-list expanded c2 permit 1623 ^65000:4_0:133_0:63$ ip community-list expanded c2 permit 1624 ^65000:4_0:133_0:64$ ip community-list expanded c2 permit 1625 ^65000:4_0:133_0:65$ ip community-list expanded c2 permit 1626 ^65000:4_0:133_0:66$ ip community-list expanded c2 permit 1627 ^65000:3_0:133_0:131$ ip community-list expanded c2 permit 1628 ^65000:4_0:134_0:45$ ip community-list expanded c2 permit 1629 ^65000:4_0:134_0:46$ ip community-list expanded c2 permit 1630 ^65000:4_0:134_0:47$ ip community-list expanded c2 permit 1631 ^65000:4_0:134_0:48$ ip community-list expanded c2 permit 1632 ^65000:4_0:134_0:49$ ip community-list expanded c2 permit 1633 ^65000:4_0:134_0:50$ ip community-list expanded c2 permit 1634 ^65000:4_0:134_0:51$ ip community-list expanded c2 permit 1635 ^65000:4_0:134_0:52$ ip community-list expanded c2 permit 1636 ^65000:4_0:134_0:53$ ip community-list expanded c2 permit 1637 ^65000:4_0:134_0:54$ ip community-list expanded c2 permit 1638 ^65000:4_0:134_0:55$ ip community-list expanded c2 permit 1639 ^65000:4_0:134_0:56$ ip community-list expanded c2 permit 1640 ^65000:4_0:134_0:57$ ip community-list expanded c2 permit 1641 ^65000:4_0:134_0:58$ ip community-list expanded c2 permit 1642 ^65000:4_0:134_0:59$ ip community-list expanded c2 permit 1643 ^65000:4_0:134_0:60$ ip community-list expanded c2 permit 1644 ^65000:4_0:134_0:61$ ip community-list expanded c2 permit 1645 ^65000:4_0:134_0:62$ ip community-list expanded c2 permit 1646 ^65000:4_0:134_0:63$ ip community-list expanded c2 permit 1647 ^65000:4_0:134_0:64$ ip community-list expanded c2 permit 1648 ^65000:4_0:134_0:65$ ip community-list expanded c2 permit 1649 ^65000:4_0:134_0:66$ ip community-list expanded c2 permit 1650 ^65000:4_0:134_0:67$ ip community-list expanded c2 permit 1651 ^65000:3_0:134_0:132$ ip community-list expanded c2 permit 1652 ^65000:4_0:135_0:46$ ip community-list expanded c2 permit 1653 ^65000:4_0:135_0:47$ ip community-list expanded c2 permit 1654 ^65000:4_0:135_0:48$ ip community-list expanded c2 permit 1655 ^65000:4_0:135_0:49$ ip community-list expanded c2 permit 1656 ^65000:4_0:135_0:50$ ip community-list expanded c2 permit 1657 ^65000:4_0:135_0:51$ ip community-list expanded c2 permit 1658 ^65000:4_0:135_0:52$ ip community-list expanded c2 permit 1659 ^65000:4_0:135_0:53$ ip community-list expanded c2 permit 1660 ^65000:4_0:135_0:54$ ip community-list expanded c2 permit 1661 ^65000:4_0:135_0:55$ ip community-list expanded c2 permit 1662 ^65000:4_0:135_0:56$ ip community-list expanded c2 permit 1663 ^65000:4_0:135_0:57$ ip community-list expanded c2 permit 1664 ^65000:4_0:135_0:58$ ip community-list expanded c2 permit 1665 ^65000:4_0:135_0:59$ ip community-list expanded c2 permit 1666 ^65000:4_0:135_0:60$ ip community-list expanded c2 permit 1667 ^65000:4_0:135_0:61$ ip community-list expanded c2 permit 1668 ^65000:4_0:135_0:62$ ip community-list expanded c2 permit 1669 ^65000:4_0:135_0:63$ ip community-list expanded c2 permit 1670 ^65000:4_0:135_0:64$ ip community-list expanded c2 permit 1671 ^65000:4_0:135_0:65$ ip community-list expanded c2 permit 1672 ^65000:4_0:135_0:66$ ip community-list expanded c2 permit 1673 ^65000:4_0:135_0:67$ ip community-list expanded c2 permit 1674 ^65000:3_0:135_0:133$ ip community-list expanded c2 permit 1675 ^65000:4_0:136_0:46$ ip community-list expanded c2 permit 1676 ^65000:4_0:136_0:47$ ip community-list expanded c2 permit 1677 ^65000:4_0:136_0:48$ ip community-list expanded c2 permit 1678 ^65000:4_0:136_0:49$ ip community-list expanded c2 permit 1679 ^65000:4_0:136_0:50$ ip community-list expanded c2 permit 1680 ^65000:4_0:136_0:51$ ip community-list expanded c2 permit 1681 ^65000:4_0:136_0:52$ ip community-list expanded c2 permit 1682 ^65000:4_0:136_0:53$ ip community-list expanded c2 permit 1683 ^65000:4_0:136_0:54$ ip community-list expanded c2 permit 1684 ^65000:4_0:136_0:55$ ip community-list expanded c2 permit 1685 ^65000:4_0:136_0:56$ ip community-list expanded c2 permit 1686 ^65000:4_0:136_0:57$ ip community-list expanded c2 permit 1687 ^65000:4_0:136_0:58$ ip community-list expanded c2 permit 1688 ^65000:4_0:136_0:59$ ip community-list expanded c2 permit 1689 ^65000:4_0:136_0:60$ ip community-list expanded c2 permit 1690 ^65000:4_0:136_0:61$ ip community-list expanded c2 permit 1691 ^65000:4_0:136_0:62$ ip community-list expanded c2 permit 1692 ^65000:4_0:136_0:63$ ip community-list expanded c2 permit 1693 ^65000:4_0:136_0:64$ ip community-list expanded c2 permit 1694 ^65000:4_0:136_0:65$ ip community-list expanded c2 permit 1695 ^65000:4_0:136_0:66$ ip community-list expanded c2 permit 1696 ^65000:4_0:136_0:67$ ip community-list expanded c2 permit 1697 ^65000:4_0:136_0:68$ ip community-list expanded c2 permit 1698 ^65000:3_0:136_0:134$ ip community-list expanded c2 permit 1699 ^65000:4_0:137_0:46$ ip community-list expanded c2 permit 1700 ^65000:4_0:137_0:47$ ip community-list expanded c2 permit 1701 ^65000:4_0:137_0:48$ ip community-list expanded c2 permit 1702 ^65000:4_0:137_0:49$ ip community-list expanded c2 permit 1703 ^65000:4_0:137_0:50$ ip community-list expanded c2 permit 1704 ^65000:4_0:137_0:51$ ip community-list expanded c2 permit 1705 ^65000:4_0:137_0:52$ ip community-list expanded c2 permit 1706 ^65000:4_0:137_0:53$ ip community-list expanded c2 permit 1707 ^65000:4_0:137_0:54$ ip community-list expanded c2 permit 1708 ^65000:4_0:137_0:55$ ip community-list expanded c2 permit 1709 ^65000:4_0:137_0:56$ ip community-list expanded c2 permit 1710 ^65000:4_0:137_0:57$ ip community-list expanded c2 permit 1711 ^65000:4_0:137_0:58$ ip community-list expanded c2 permit 1712 ^65000:4_0:137_0:59$ ip community-list expanded c2 permit 1713 ^65000:4_0:137_0:60$ ip community-list expanded c2 permit 1714 ^65000:4_0:137_0:61$ ip community-list expanded c2 permit 1715 ^65000:4_0:137_0:62$ ip community-list expanded c2 permit 1716 ^65000:4_0:137_0:63$ ip community-list expanded c2 permit 1717 ^65000:4_0:137_0:64$ ip community-list expanded c2 permit 1718 ^65000:4_0:137_0:65$ ip community-list expanded c2 permit 1719 ^65000:4_0:137_0:66$ ip community-list expanded c2 permit 1720 ^65000:4_0:137_0:67$ ip community-list expanded c2 permit 1721 ^65000:4_0:137_0:68$ ip community-list expanded c2 permit 1722 ^65000:3_0:137_0:135$ ip community-list expanded c2 permit 1723 ^65000:4_0:138_0:47$ ip community-list expanded c2 permit 1724 ^65000:4_0:138_0:48$ ip community-list expanded c2 permit 1725 ^65000:4_0:138_0:49$ ip community-list expanded c2 permit 1726 ^65000:4_0:138_0:50$ ip community-list expanded c2 permit 1727 ^65000:4_0:138_0:51$ ip community-list expanded c2 permit 1728 ^65000:4_0:138_0:52$ ip community-list expanded c2 permit 1729 ^65000:4_0:138_0:53$ ip community-list expanded c2 permit 1730 ^65000:4_0:138_0:54$ ip community-list expanded c2 permit 1731 ^65000:4_0:138_0:55$ ip community-list expanded c2 permit 1732 ^65000:4_0:138_0:56$ ip community-list expanded c2 permit 1733 ^65000:4_0:138_0:57$ ip community-list expanded c2 permit 1734 ^65000:4_0:138_0:58$ ip community-list expanded c2 permit 1735 ^65000:4_0:138_0:59$ ip community-list expanded c2 permit 1736 ^65000:4_0:138_0:60$ ip community-list expanded c2 permit 1737 ^65000:4_0:138_0:61$ ip community-list expanded c2 permit 1738 ^65000:4_0:138_0:62$ ip community-list expanded c2 permit 1739 ^65000:4_0:138_0:63$ ip community-list expanded c2 permit 1740 ^65000:4_0:138_0:64$ ip community-list expanded c2 permit 1741 ^65000:4_0:138_0:65$ ip community-list expanded c2 permit 1742 ^65000:4_0:138_0:66$ ip community-list expanded c2 permit 1743 ^65000:4_0:138_0:67$ ip community-list expanded c2 permit 1744 ^65000:4_0:138_0:68$ ip community-list expanded c2 permit 1745 ^65000:4_0:138_0:69$ ip community-list expanded c2 permit 1746 ^65000:3_0:138_0:136$ ip community-list expanded c2 permit 1747 ^65000:4_0:139_0:47$ ip community-list expanded c2 permit 1748 ^65000:4_0:139_0:48$ ip community-list expanded c2 permit 1749 ^65000:4_0:139_0:49$ ip community-list expanded c2 permit 1750 ^65000:4_0:139_0:50$ ip community-list expanded c2 permit 1751 ^65000:4_0:139_0:51$ ip community-list expanded c2 permit 1752 ^65000:4_0:139_0:52$ ip community-list expanded c2 permit 1753 ^65000:4_0:139_0:53$ ip community-list expanded c2 permit 1754 ^65000:4_0:139_0:54$ ip community-list expanded c2 permit 1755 ^65000:4_0:139_0:55$ ip community-list expanded c2 permit 1756 ^65000:4_0:139_0:56$ ip community-list expanded c2 permit 1757 ^65000:4_0:139_0:57$ ip community-list expanded c2 permit 1758 ^65000:4_0:139_0:58$ ip community-list expanded c2 permit 1759 ^65000:4_0:139_0:59$ ip community-list expanded c2 permit 1760 ^65000:4_0:139_0:60$ ip community-list expanded c2 permit 1761 ^65000:4_0:139_0:61$ ip community-list expanded c2 permit 1762 ^65000:4_0:139_0:62$ ip community-list expanded c2 permit 1763 ^65000:4_0:139_0:63$ ip community-list expanded c2 permit 1764 ^65000:4_0:139_0:64$ ip community-list expanded c2 permit 1765 ^65000:4_0:139_0:65$ ip community-list expanded c2 permit 1766 ^65000:4_0:139_0:66$ ip community-list expanded c2 permit 1767 ^65000:4_0:139_0:67$ ip community-list expanded c2 permit 1768 ^65000:4_0:139_0:68$ ip community-list expanded c2 permit 1769 ^65000:4_0:139_0:69$ ip community-list expanded c2 permit 1770 ^65000:3_0:139_0:137$ ip community-list expanded c2 permit 1771 ^65000:4_0:140_0:47$ ip community-list expanded c2 permit 1772 ^65000:4_0:140_0:48$ ip community-list expanded c2 permit 1773 ^65000:4_0:140_0:49$ ip community-list expanded c2 permit 1774 ^65000:4_0:140_0:50$ ip community-list expanded c2 permit 1775 ^65000:4_0:140_0:51$ ip community-list expanded c2 permit 1776 ^65000:4_0:140_0:52$ ip community-list expanded c2 permit 1777 ^65000:4_0:140_0:53$ ip community-list expanded c2 permit 1778 ^65000:4_0:140_0:54$ ip community-list expanded c2 permit 1779 ^65000:4_0:140_0:55$ ip community-list expanded c2 permit 1780 ^65000:4_0:140_0:56$ ip community-list expanded c2 permit 1781 ^65000:4_0:140_0:57$ ip community-list expanded c2 permit 1782 ^65000:4_0:140_0:58$ ip community-list expanded c2 permit 1783 ^65000:4_0:140_0:59$ ip community-list expanded c2 permit 1784 ^65000:4_0:140_0:60$ ip community-list expanded c2 permit 1785 ^65000:4_0:140_0:61$ ip community-list expanded c2 permit 1786 ^65000:4_0:140_0:62$ ip community-list expanded c2 permit 1787 ^65000:4_0:140_0:63$ ip community-list expanded c2 permit 1788 ^65000:4_0:140_0:64$ ip community-list expanded c2 permit 1789 ^65000:4_0:140_0:65$ ip community-list expanded c2 permit 1790 ^65000:4_0:140_0:66$ ip community-list expanded c2 permit 1791 ^65000:4_0:140_0:67$ ip community-list expanded c2 permit 1792 ^65000:4_0:140_0:68$ ip community-list expanded c2 permit 1793 ^65000:4_0:140_0:69$ ip community-list expanded c2 permit 1794 ^65000:4_0:140_0:70$ ip community-list expanded c2 permit 1795 ^65000:3_0:140_0:138$ ip community-list expanded c2 permit 1796 ^65000:4_0:141_0:48$ ip community-list expanded c2 permit 1797 ^65000:4_0:141_0:49$ ip community-list expanded c2 permit 1798 ^65000:4_0:141_0:50$ ip community-list expanded c2 permit 1799 ^65000:4_0:141_0:51$ ip community-list expanded c2 permit 1800 ^65000:4_0:141_0:52$ ip community-list expanded c2 permit 1801 ^65000:4_0:141_0:53$ ip community-list expanded c2 permit 1802 ^65000:4_0:141_0:54$ ip community-list expanded c2 permit 1803 ^65000:4_0:141_0:55$ ip community-list expanded c2 permit 1804 ^65000:4_0:141_0:56$ ip community-list expanded c2 permit 1805 ^65000:4_0:141_0:57$ ip community-list expanded c2 permit 1806 ^65000:4_0:141_0:58$ ip community-list expanded c2 permit 1807 ^65000:4_0:141_0:59$ ip community-list expanded c2 permit 1808 ^65000:4_0:141_0:60$ ip community-list expanded c2 permit 1809 ^65000:4_0:141_0:61$ ip community-list expanded c2 permit 1810 ^65000:4_0:141_0:62$ ip community-list expanded c2 permit 1811 ^65000:4_0:141_0:63$ ip community-list expanded c2 permit 1812 ^65000:4_0:141_0:64$ ip community-list expanded c2 permit 1813 ^65000:4_0:141_0:65$ ip community-list expanded c2 permit 1814 ^65000:4_0:141_0:66$ ip community-list expanded c2 permit 1815 ^65000:4_0:141_0:67$ ip community-list expanded c2 permit 1816 ^65000:4_0:141_0:68$ ip community-list expanded c2 permit 1817 ^65000:4_0:141_0:69$ ip community-list expanded c2 permit 1818 ^65000:4_0:141_0:70$ ip community-list expanded c2 permit 1819 ^65000:3_0:141_0:139$ ip community-list expanded c2 permit 1820 ^65000:4_0:142_0:48$ ip community-list expanded c2 permit 1821 ^65000:4_0:142_0:49$ ip community-list expanded c2 permit 1822 ^65000:4_0:142_0:50$ ip community-list expanded c2 permit 1823 ^65000:4_0:142_0:51$ ip community-list expanded c2 permit 1824 ^65000:4_0:142_0:52$ ip community-list expanded c2 permit 1825 ^65000:4_0:142_0:53$ ip community-list expanded c2 permit 1826 ^65000:4_0:142_0:54$ ip community-list expanded c2 permit 1827 ^65000:4_0:142_0:55$ ip community-list expanded c2 permit 1828 ^65000:4_0:142_0:56$ ip community-list expanded c2 permit 1829 ^65000:4_0:142_0:57$ ip community-list expanded c2 permit 1830 ^65000:4_0:142_0:58$ ip community-list expanded c2 permit 1831 ^65000:4_0:142_0:59$ ip community-list expanded c2 permit 1832 ^65000:4_0:142_0:60$ ip community-list expanded c2 permit 1833 ^65000:4_0:142_0:61$ ip community-list expanded c2 permit 1834 ^65000:4_0:142_0:62$ ip community-list expanded c2 permit 1835 ^65000:4_0:142_0:63$ ip community-list expanded c2 permit 1836 ^65000:4_0:142_0:64$ ip community-list expanded c2 permit 1837 ^65000:4_0:142_0:65$ ip community-list expanded c2 permit 1838 ^65000:4_0:142_0:66$ ip community-list expanded c2 permit 1839 ^65000:4_0:142_0:67$ ip community-list expanded c2 permit 1840 ^65000:4_0:142_0:68$ ip community-list expanded c2 permit 1841 ^65000:4_0:142_0:69$ ip community-list expanded c2 permit 1842 ^65000:4_0:142_0:70$ ip community-list expanded c2 permit 1843 ^65000:4_0:142_0:71$ ip community-list expanded c2 permit 1844 ^65000:3_0:142_0:140$ ip community-list expanded c2 permit 1845 ^65000:4_0:143_0:48$ ip community-list expanded c2 permit 1846 ^65000:4_0:143_0:49$ ip community-list expanded c2 permit 1847 ^65000:4_0:143_0:50$ ip community-list expanded c2 permit 1848 ^65000:4_0:143_0:51$ ip community-list expanded c2 permit 1849 ^65000:4_0:143_0:52$ ip community-list expanded c2 permit 1850 ^65000:4_0:143_0:53$ ip community-list expanded c2 permit 1851 ^65000:4_0:143_0:54$ ip community-list expanded c2 permit 1852 ^65000:4_0:143_0:55$ ip community-list expanded c2 permit 1853 ^65000:4_0:143_0:56$ ip community-list expanded c2 permit 1854 ^65000:4_0:143_0:57$ ip community-list expanded c2 permit 1855 ^65000:4_0:143_0:58$ ip community-list expanded c2 permit 1856 ^65000:4_0:143_0:59$ ip community-list expanded c2 permit 1857 ^65000:4_0:143_0:60$ ip community-list expanded c2 permit 1858 ^65000:4_0:143_0:61$ ip community-list expanded c2 permit 1859 ^65000:4_0:143_0:62$ ip community-list expanded c2 permit 1860 ^65000:4_0:143_0:63$ ip community-list expanded c2 permit 1861 ^65000:4_0:143_0:64$ ip community-list expanded c2 permit 1862 ^65000:4_0:143_0:65$ ip community-list expanded c2 permit 1863 ^65000:4_0:143_0:66$ ip community-list expanded c2 permit 1864 ^65000:4_0:143_0:67$ ip community-list expanded c2 permit 1865 ^65000:4_0:143_0:68$ ip community-list expanded c2 permit 1866 ^65000:4_0:143_0:69$ ip community-list expanded c2 permit 1867 ^65000:4_0:143_0:70$ ip community-list expanded c2 permit 1868 ^65000:4_0:143_0:71$ ip community-list expanded c2 permit 1869 ^65000:3_0:143_0:141$ ip community-list expanded c2 permit 1870 ^65000:4_0:144_0:49$ ip community-list expanded c2 permit 1871 ^65000:4_0:144_0:50$ ip community-list expanded c2 permit 1872 ^65000:4_0:144_0:51$ ip community-list expanded c2 permit 1873 ^65000:4_0:144_0:52$ ip community-list expanded c2 permit 1874 ^65000:4_0:144_0:53$ ip community-list expanded c2 permit 1875 ^65000:4_0:144_0:54$ ip community-list expanded c2 permit 1876 ^65000:4_0:144_0:55$ ip community-list expanded c2 permit 1877 ^65000:4_0:144_0:56$ ip community-list expanded c2 permit 1878 ^65000:4_0:144_0:57$ ip community-list expanded c2 permit 1879 ^65000:4_0:144_0:58$ ip community-list expanded c2 permit 1880 ^65000:4_0:144_0:59$ ip community-list expanded c2 permit 1881 ^65000:4_0:144_0:60$ ip community-list expanded c2 permit 1882 ^65000:4_0:144_0:61$ ip community-list expanded c2 permit 1883 ^65000:4_0:144_0:62$ ip community-list expanded c2 permit 1884 ^65000:4_0:144_0:63$ ip community-list expanded c2 permit 1885 ^65000:4_0:144_0:64$ ip community-list expanded c2 permit 1886 ^65000:4_0:144_0:65$ ip community-list expanded c2 permit 1887 ^65000:4_0:144_0:66$ ip community-list expanded c2 permit 1888 ^65000:4_0:144_0:67$ ip community-list expanded c2 permit 1889 ^65000:4_0:144_0:68$ ip community-list expanded c2 permit 1890 ^65000:4_0:144_0:69$ ip community-list expanded c2 permit 1891 ^65000:4_0:144_0:70$ ip community-list expanded c2 permit 1892 ^65000:4_0:144_0:71$ ip community-list expanded c2 permit 1893 ^65000:4_0:144_0:72$ ip community-list expanded c2 permit 1894 ^65000:3_0:144_0:142$ ip community-list expanded c2 permit 1895 ^65000:4_0:145_0:49$ ip community-list expanded c2 permit 1896 ^65000:4_0:145_0:50$ ip community-list expanded c2 permit 1897 ^65000:4_0:145_0:51$ ip community-list expanded c2 permit 1898 ^65000:4_0:145_0:52$ ip community-list expanded c2 permit 1899 ^65000:4_0:145_0:53$ ip community-list expanded c2 permit 1900 ^65000:4_0:145_0:54$ ip community-list expanded c2 permit 1901 ^65000:4_0:145_0:55$ ip community-list expanded c2 permit 1902 ^65000:4_0:145_0:56$ ip community-list expanded c2 permit 1903 ^65000:4_0:145_0:57$ ip community-list expanded c2 permit 1904 ^65000:4_0:145_0:58$ ip community-list expanded c2 permit 1905 ^65000:4_0:145_0:59$ ip community-list expanded c2 permit 1906 ^65000:4_0:145_0:60$ ip community-list expanded c2 permit 1907 ^65000:4_0:145_0:61$ ip community-list expanded c2 permit 1908 ^65000:4_0:145_0:62$ ip community-list expanded c2 permit 1909 ^65000:4_0:145_0:63$ ip community-list expanded c2 permit 1910 ^65000:4_0:145_0:64$ ip community-list expanded c2 permit 1911 ^65000:4_0:145_0:65$ ip community-list expanded c2 permit 1912 ^65000:4_0:145_0:66$ ip community-list expanded c2 permit 1913 ^65000:4_0:145_0:67$ ip community-list expanded c2 permit 1914 ^65000:4_0:145_0:68$ ip community-list expanded c2 permit 1915 ^65000:4_0:145_0:69$ ip community-list expanded c2 permit 1916 ^65000:4_0:145_0:70$ ip community-list expanded c2 permit 1917 ^65000:4_0:145_0:71$ ip community-list expanded c2 permit 1918 ^65000:4_0:145_0:72$ ip community-list expanded c2 permit 1919 ^65000:3_0:145_0:143$ ip community-list expanded c2 permit 1920 ^65000:4_0:146_0:49$ ip community-list expanded c2 permit 1921 ^65000:4_0:146_0:50$ ip community-list expanded c2 permit 1922 ^65000:4_0:146_0:51$ ip community-list expanded c2 permit 1923 ^65000:4_0:146_0:52$ ip community-list expanded c2 permit 1924 ^65000:4_0:146_0:53$ ip community-list expanded c2 permit 1925 ^65000:4_0:146_0:54$ ip community-list expanded c2 permit 1926 ^65000:4_0:146_0:55$ ip community-list expanded c2 permit 1927 ^65000:4_0:146_0:56$ ip community-list expanded c2 permit 1928 ^65000:4_0:146_0:57$ ip community-list expanded c2 permit 1929 ^65000:4_0:146_0:58$ ip community-list expanded c2 permit 1930 ^65000:4_0:146_0:59$ ip community-list expanded c2 permit 1931 ^65000:4_0:146_0:60$ ip community-list expanded c2 permit 1932 ^65000:4_0:146_0:61$ ip community-list expanded c2 permit 1933 ^65000:4_0:146_0:62$ ip community-list expanded c2 permit 1934 ^65000:4_0:146_0:63$ ip community-list expanded c2 permit 1935 ^65000:4_0:146_0:64$ ip community-list expanded c2 permit 1936 ^65000:4_0:146_0:65$ ip community-list expanded c2 permit 1937 ^65000:4_0:146_0:66$ ip community-list expanded c2 permit 1938 ^65000:4_0:146_0:67$ ip community-list expanded c2 permit 1939 ^65000:4_0:146_0:68$ ip community-list expanded c2 permit 1940 ^65000:4_0:146_0:69$ ip community-list expanded c2 permit 1941 ^65000:4_0:146_0:70$ ip community-list expanded c2 permit 1942 ^65000:4_0:146_0:71$ ip community-list expanded c2 permit 1943 ^65000:4_0:146_0:72$ ip community-list expanded c2 permit 1944 ^65000:4_0:146_0:73$ ip community-list expanded c2 permit 1945 ^65000:3_0:146_0:144$ ip community-list expanded c2 permit 1946 ^65000:4_0:147_0:50$ ip community-list expanded c2 permit 1947 ^65000:4_0:147_0:51$ ip community-list expanded c2 permit 1948 ^65000:4_0:147_0:52$ ip community-list expanded c2 permit 1949 ^65000:4_0:147_0:53$ ip community-list expanded c2 permit 1950 ^65000:4_0:147_0:54$ ip community-list expanded c2 permit 1951 ^65000:4_0:147_0:55$ ip community-list expanded c2 permit 1952 ^65000:4_0:147_0:56$ ip community-list expanded c2 permit 1953 ^65000:4_0:147_0:57$ ip community-list expanded c2 permit 1954 ^65000:4_0:147_0:58$ ip community-list expanded c2 permit 1955 ^65000:4_0:147_0:59$ ip community-list expanded c2 permit 1956 ^65000:4_0:147_0:60$ ip community-list expanded c2 permit 1957 ^65000:4_0:147_0:61$ ip community-list expanded c2 permit 1958 ^65000:4_0:147_0:62$ ip community-list expanded c2 permit 1959 ^65000:4_0:147_0:63$ ip community-list expanded c2 permit 1960 ^65000:4_0:147_0:64$ ip community-list expanded c2 permit 1961 ^65000:4_0:147_0:65$ ip community-list expanded c2 permit 1962 ^65000:4_0:147_0:66$ ip community-list expanded c2 permit 1963 ^65000:4_0:147_0:67$ ip community-list expanded c2 permit 1964 ^65000:4_0:147_0:68$ ip community-list expanded c2 permit 1965 ^65000:4_0:147_0:69$ ip community-list expanded c2 permit 1966 ^65000:4_0:147_0:70$ ip community-list expanded c2 permit 1967 ^65000:4_0:147_0:71$ ip community-list expanded c2 permit 1968 ^65000:4_0:147_0:72$ ip community-list expanded c2 permit 1969 ^65000:4_0:147_0:73$ ip community-list expanded c2 permit 1970 ^65000:3_0:147_0:145$ ip community-list expanded c2 permit 1971 ^65000:4_0:148_0:50$ ip community-list expanded c2 permit 1972 ^65000:4_0:148_0:51$ ip community-list expanded c2 permit 1973 ^65000:4_0:148_0:52$ ip community-list expanded c2 permit 1974 ^65000:4_0:148_0:53$ ip community-list expanded c2 permit 1975 ^65000:4_0:148_0:54$ ip community-list expanded c2 permit 1976 ^65000:4_0:148_0:55$ ip community-list expanded c2 permit 1977 ^65000:4_0:148_0:56$ ip community-list expanded c2 permit 1978 ^65000:4_0:148_0:57$ ip community-list expanded c2 permit 1979 ^65000:4_0:148_0:58$ ip community-list expanded c2 permit 1980 ^65000:4_0:148_0:59$ ip community-list expanded c2 permit 1981 ^65000:4_0:148_0:60$ ip community-list expanded c2 permit 1982 ^65000:4_0:148_0:61$ ip community-list expanded c2 permit 1983 ^65000:4_0:148_0:62$ ip community-list expanded c2 permit 1984 ^65000:4_0:148_0:63$ ip community-list expanded c2 permit 1985 ^65000:4_0:148_0:64$ ip community-list expanded c2 permit 1986 ^65000:4_0:148_0:65$ ip community-list expanded c2 permit 1987 ^65000:4_0:148_0:66$ ip community-list expanded c2 permit 1988 ^65000:4_0:148_0:67$ ip community-list expanded c2 permit 1989 ^65000:4_0:148_0:68$ ip community-list expanded c2 permit 1990 ^65000:4_0:148_0:69$ ip community-list expanded c2 permit 1991 ^65000:4_0:148_0:70$ ip community-list expanded c2 permit 1992 ^65000:4_0:148_0:71$ ip community-list expanded c2 permit 1993 ^65000:4_0:148_0:72$ ip community-list expanded c2 permit 1994 ^65000:4_0:148_0:73$ ip community-list expanded c2 permit 1995 ^65000:4_0:148_0:74$ ip community-list expanded c2 permit 1996 ^65000:3_0:148_0:146$ ip community-list expanded c2 permit 1997 ^65000:4_0:149_0:50$ ip community-list expanded c2 permit 1998 ^65000:4_0:149_0:51$ ip community-list expanded c2 permit 1999 ^65000:4_0:149_0:52$ ip community-list expanded c2 permit 2000 ^65000:4_0:149_0:53$ ip community-list expanded c2 permit 2001 ^65000:4_0:149_0:54$ ip community-list expanded c2 permit 2002 ^65000:4_0:149_0:55$ ip community-list expanded c2 permit 2003 ^65000:4_0:149_0:56$ ip community-list expanded c2 permit 2004 ^65000:4_0:149_0:57$ ip community-list expanded c2 permit 2005 ^65000:4_0:149_0:58$ ip community-list expanded c2 permit 2006 ^65000:4_0:149_0:59$ ip community-list expanded c2 permit 2007 ^65000:4_0:149_0:60$ ip community-list expanded c2 permit 2008 ^65000:4_0:149_0:61$ ip community-list expanded c2 permit 2009 ^65000:4_0:149_0:62$ ip community-list expanded c2 permit 2010 ^65000:4_0:149_0:63$ ip community-list expanded c2 permit 2011 ^65000:4_0:149_0:64$ ip community-list expanded c2 permit 2012 ^65000:4_0:149_0:65$ ip community-list expanded c2 permit 2013 ^65000:4_0:149_0:66$ ip community-list expanded c2 permit 2014 ^65000:4_0:149_0:67$ ip community-list expanded c2 permit 2015 ^65000:4_0:149_0:68$ ip community-list expanded c2 permit 2016 ^65000:4_0:149_0:69$ ip community-list expanded c2 permit 2017 ^65000:4_0:149_0:70$ ip community-list expanded c2 permit 2018 ^65000:4_0:149_0:71$ ip community-list expanded c2 permit 2019 ^65000:4_0:149_0:72$ ip community-list expanded c2 permit 2020 ^65000:4_0:149_0:73$ ip community-list expanded c2 permit 2021 ^65000:4_0:149_0:74$ ip community-list expanded c2 permit 2022 ^65000:3_0:149_0:147$ ip community-list expanded c2 permit 2023 ^65000:4_0:150_0:51$ ip community-list expanded c2 permit 2024 ^65000:4_0:150_0:52$ ip community-list expanded c2 permit 2025 ^65000:4_0:150_0:53$ ip community-list expanded c2 permit 2026 ^65000:4_0:150_0:54$ ip community-list expanded c2 permit 2027 ^65000:4_0:150_0:55$ ip community-list expanded c2 permit 2028 ^65000:4_0:150_0:56$ ip community-list expanded c2 permit 2029 ^65000:4_0:150_0:57$ ip community-list expanded c2 permit 2030 ^65000:4_0:150_0:58$ ip community-list expanded c2 permit 2031 ^65000:4_0:150_0:59$ ip community-list expanded c2 permit 2032 ^65000:4_0:150_0:60$ ip community-list expanded c2 permit 2033 ^65000:4_0:150_0:61$ ip community-list expanded c2 permit 2034 ^65000:4_0:150_0:62$ ip community-list expanded c2 permit 2035 ^65000:4_0:150_0:63$ ip community-list expanded c2 permit 2036 ^65000:4_0:150_0:64$ ip community-list expanded c2 permit 2037 ^65000:4_0:150_0:65$ ip community-list expanded c2 permit 2038 ^65000:4_0:150_0:66$ ip community-list expanded c2 permit 2039 ^65000:4_0:150_0:67$ ip community-list expanded c2 permit 2040 ^65000:4_0:150_0:68$ ip community-list expanded c2 permit 2041 ^65000:4_0:150_0:69$ ip community-list expanded c2 permit 2042 ^65000:4_0:150_0:70$ ip community-list expanded c2 permit 2043 ^65000:4_0:150_0:71$ ip community-list expanded c2 permit 2044 ^65000:4_0:150_0:72$ ip community-list expanded c2 permit 2045 ^65000:4_0:150_0:73$ ip community-list expanded c2 permit 2046 ^65000:4_0:150_0:74$ ip community-list expanded c2 permit 2047 ^65000:4_0:150_0:75$ ip community-list expanded c2 permit 2048 ^65000:3_0:150_0:148$ ip community-list expanded c2 permit 2049 ^65000:4_0:151_0:51$ ip community-list expanded c2 permit 2050 ^65000:4_0:151_0:52$ ip community-list expanded c2 permit 2051 ^65000:4_0:151_0:53$ ip community-list expanded c2 permit 2052 ^65000:4_0:151_0:54$ ip community-list expanded c2 permit 2053 ^65000:4_0:151_0:55$ ip community-list expanded c2 permit 2054 ^65000:4_0:151_0:56$ ip community-list expanded c2 permit 2055 ^65000:4_0:151_0:57$ ip community-list expanded c2 permit 2056 ^65000:4_0:151_0:58$ ip community-list expanded c2 permit 2057 ^65000:4_0:151_0:59$ ip community-list expanded c2 permit 2058 ^65000:4_0:151_0:60$ ip community-list expanded c2 permit 2059 ^65000:4_0:151_0:61$ ip community-list expanded c2 permit 2060 ^65000:4_0:151_0:62$ ip community-list expanded c2 permit 2061 ^65000:4_0:151_0:63$ ip community-list expanded c2 permit 2062 ^65000:4_0:151_0:64$ ip community-list expanded c2 permit 2063 ^65000:4_0:151_0:65$ ip community-list expanded c2 permit 2064 ^65000:4_0:151_0:66$ ip community-list expanded c2 permit 2065 ^65000:4_0:151_0:67$ ip community-list expanded c2 permit 2066 ^65000:4_0:151_0:68$ ip community-list expanded c2 permit 2067 ^65000:4_0:151_0:69$ ip community-list expanded c2 permit 2068 ^65000:4_0:151_0:70$ ip community-list expanded c2 permit 2069 ^65000:4_0:151_0:71$ ip community-list expanded c2 permit 2070 ^65000:4_0:151_0:72$ ip community-list expanded c2 permit 2071 ^65000:4_0:151_0:73$ ip community-list expanded c2 permit 2072 ^65000:4_0:151_0:74$ ip community-list expanded c2 permit 2073 ^65000:4_0:151_0:75$ ip community-list expanded c2 permit 2074 ^65000:3_0:151_0:149$ ip community-list expanded c2 permit 2075 ^65000:4_0:152_0:51$ ip community-list expanded c2 permit 2076 ^65000:4_0:152_0:52$ ip community-list expanded c2 permit 2077 ^65000:4_0:152_0:53$ ip community-list expanded c2 permit 2078 ^65000:4_0:152_0:54$ ip community-list expanded c2 permit 2079 ^65000:4_0:152_0:55$ ip community-list expanded c2 permit 2080 ^65000:4_0:152_0:56$ ip community-list expanded c2 permit 2081 ^65000:4_0:152_0:57$ ip community-list expanded c2 permit 2082 ^65000:4_0:152_0:58$ ip community-list expanded c2 permit 2083 ^65000:4_0:152_0:59$ ip community-list expanded c2 permit 2084 ^65000:4_0:152_0:60$ ip community-list expanded c2 permit 2085 ^65000:4_0:152_0:61$ ip community-list expanded c2 permit 2086 ^65000:4_0:152_0:62$ ip community-list expanded c2 permit 2087 ^65000:4_0:152_0:63$ ip community-list expanded c2 permit 2088 ^65000:4_0:152_0:64$ ip community-list expanded c2 permit 2089 ^65000:4_0:152_0:65$ ip community-list expanded c2 permit 2090 ^65000:4_0:152_0:66$ ip community-list expanded c2 permit 2091 ^65000:4_0:152_0:67$ ip community-list expanded c2 permit 2092 ^65000:4_0:152_0:68$ ip community-list expanded c2 permit 2093 ^65000:4_0:152_0:69$ ip community-list expanded c2 permit 2094 ^65000:4_0:152_0:70$ ip community-list expanded c2 permit 2095 ^65000:4_0:152_0:71$ ip community-list expanded c2 permit 2096 ^65000:4_0:152_0:72$ ip community-list expanded c2 permit 2097 ^65000:4_0:152_0:73$ ip community-list expanded c2 permit 2098 ^65000:4_0:152_0:74$ ip community-list expanded c2 permit 2099 ^65000:4_0:152_0:75$ ip community-list expanded c2 permit 2100 ^65000:4_0:152_0:76$ ip community-list expanded c2 permit 2101 ^65000:3_0:152_0:150$ ip community-list expanded c2 permit 2102 ^65000:4_0:153_0:52$ ip community-list expanded c2 permit 2103 ^65000:4_0:153_0:53$ ip community-list expanded c2 permit 2104 ^65000:4_0:153_0:54$ ip community-list expanded c2 permit 2105 ^65000:4_0:153_0:55$ ip community-list expanded c2 permit 2106 ^65000:4_0:153_0:56$ ip community-list expanded c2 permit 2107 ^65000:4_0:153_0:57$ ip community-list expanded c2 permit 2108 ^65000:4_0:153_0:58$ ip community-list expanded c2 permit 2109 ^65000:4_0:153_0:59$ ip community-list expanded c2 permit 2110 ^65000:4_0:153_0:60$ ip community-list expanded c2 permit 2111 ^65000:4_0:153_0:61$ ip community-list expanded c2 permit 2112 ^65000:4_0:153_0:62$ ip community-list expanded c2 permit 2113 ^65000:4_0:153_0:63$ ip community-list expanded c2 permit 2114 ^65000:4_0:153_0:64$ ip community-list expanded c2 permit 2115 ^65000:4_0:153_0:65$ ip community-list expanded c2 permit 2116 ^65000:4_0:153_0:66$ ip community-list expanded c2 permit 2117 ^65000:4_0:153_0:67$ ip community-list expanded c2 permit 2118 ^65000:4_0:153_0:68$ ip community-list expanded c2 permit 2119 ^65000:4_0:153_0:69$ ip community-list expanded c2 permit 2120 ^65000:4_0:153_0:70$ ip community-list expanded c2 permit 2121 ^65000:4_0:153_0:71$ ip community-list expanded c2 permit 2122 ^65000:4_0:153_0:72$ ip community-list expanded c2 permit 2123 ^65000:4_0:153_0:73$ ip community-list expanded c2 permit 2124 ^65000:4_0:153_0:74$ ip community-list expanded c2 permit 2125 ^65000:4_0:153_0:75$ ip community-list expanded c2 permit 2126 ^65000:4_0:153_0:76$ ip community-list expanded c2 permit 2127 ^65000:3_0:153_0:151$ ip community-list expanded c2 permit 2128 ^65000:4_0:154_0:52$ ip community-list expanded c2 permit 2129 ^65000:4_0:154_0:53$ ip community-list expanded c2 permit 2130 ^65000:4_0:154_0:54$ ip community-list expanded c2 permit 2131 ^65000:4_0:154_0:55$ ip community-list expanded c2 permit 2132 ^65000:4_0:154_0:56$ ip community-list expanded c2 permit 2133 ^65000:4_0:154_0:57$ ip community-list expanded c2 permit 2134 ^65000:4_0:154_0:58$ ip community-list expanded c2 permit 2135 ^65000:4_0:154_0:59$ ip community-list expanded c2 permit 2136 ^65000:4_0:154_0:60$ ip community-list expanded c2 permit 2137 ^65000:4_0:154_0:61$ ip community-list expanded c2 permit 2138 ^65000:4_0:154_0:62$ ip community-list expanded c2 permit 2139 ^65000:4_0:154_0:63$ ip community-list expanded c2 permit 2140 ^65000:4_0:154_0:64$ ip community-list expanded c2 permit 2141 ^65000:4_0:154_0:65$ ip community-list expanded c2 permit 2142 ^65000:4_0:154_0:66$ ip community-list expanded c2 permit 2143 ^65000:4_0:154_0:67$ ip community-list expanded c2 permit 2144 ^65000:4_0:154_0:68$ ip community-list expanded c2 permit 2145 ^65000:4_0:154_0:69$ ip community-list expanded c2 permit 2146 ^65000:4_0:154_0:70$ ip community-list expanded c2 permit 2147 ^65000:4_0:154_0:71$ ip community-list expanded c2 permit 2148 ^65000:4_0:154_0:72$ ip community-list expanded c2 permit 2149 ^65000:4_0:154_0:73$ ip community-list expanded c2 permit 2150 ^65000:4_0:154_0:74$ ip community-list expanded c2 permit 2151 ^65000:4_0:154_0:75$ ip community-list expanded c2 permit 2152 ^65000:4_0:154_0:76$ ip community-list expanded c2 permit 2153 ^65000:4_0:154_0:77$ ip community-list expanded c2 permit 2154 ^65000:3_0:154_0:152$ ip community-list expanded c2 permit 2155 ^65000:4_0:155_0:52$ ip community-list expanded c2 permit 2156 ^65000:4_0:155_0:53$ ip community-list expanded c2 permit 2157 ^65000:4_0:155_0:54$ ip community-list expanded c2 permit 2158 ^65000:4_0:155_0:55$ ip community-list expanded c2 permit 2159 ^65000:4_0:155_0:56$ ip community-list expanded c2 permit 2160 ^65000:4_0:155_0:57$ ip community-list expanded c2 permit 2161 ^65000:4_0:155_0:58$ ip community-list expanded c2 permit 2162 ^65000:4_0:155_0:59$ ip community-list expanded c2 permit 2163 ^65000:4_0:155_0:60$ ip community-list expanded c2 permit 2164 ^65000:4_0:155_0:61$ ip community-list expanded c2 permit 2165 ^65000:4_0:155_0:62$ ip community-list expanded c2 permit 2166 ^65000:4_0:155_0:63$ ip community-list expanded c2 permit 2167 ^65000:4_0:155_0:64$ ip community-list expanded c2 permit 2168 ^65000:4_0:155_0:65$ ip community-list expanded c2 permit 2169 ^65000:4_0:155_0:66$ ip community-list expanded c2 permit 2170 ^65000:4_0:155_0:67$ ip community-list expanded c2 permit 2171 ^65000:4_0:155_0:68$ ip community-list expanded c2 permit 2172 ^65000:4_0:155_0:69$ ip community-list expanded c2 permit 2173 ^65000:4_0:155_0:70$ ip community-list expanded c2 permit 2174 ^65000:4_0:155_0:71$ ip community-list expanded c2 permit 2175 ^65000:4_0:155_0:72$ ip community-list expanded c2 permit 2176 ^65000:4_0:155_0:73$ ip community-list expanded c2 permit 2177 ^65000:4_0:155_0:74$ ip community-list expanded c2 permit 2178 ^65000:4_0:155_0:75$ ip community-list expanded c2 permit 2179 ^65000:4_0:155_0:76$ ip community-list expanded c2 permit 2180 ^65000:4_0:155_0:77$ ip community-list expanded c2 permit 2181 ^65000:3_0:155_0:153$ ip community-list expanded c2 permit 2182 ^65000:4_0:156_0:53$ ip community-list expanded c2 permit 2183 ^65000:4_0:156_0:54$ ip community-list expanded c2 permit 2184 ^65000:4_0:156_0:55$ ip community-list expanded c2 permit 2185 ^65000:4_0:156_0:56$ ip community-list expanded c2 permit 2186 ^65000:4_0:156_0:57$ ip community-list expanded c2 permit 2187 ^65000:4_0:156_0:58$ ip community-list expanded c2 permit 2188 ^65000:4_0:156_0:59$ ip community-list expanded c2 permit 2189 ^65000:4_0:156_0:60$ ip community-list expanded c2 permit 2190 ^65000:4_0:156_0:61$ ip community-list expanded c2 permit 2191 ^65000:4_0:156_0:62$ ip community-list expanded c2 permit 2192 ^65000:4_0:156_0:63$ ip community-list expanded c2 permit 2193 ^65000:4_0:156_0:64$ ip community-list expanded c2 permit 2194 ^65000:4_0:156_0:65$ ip community-list expanded c2 permit 2195 ^65000:4_0:156_0:66$ ip community-list expanded c2 permit 2196 ^65000:4_0:156_0:67$ ip community-list expanded c2 permit 2197 ^65000:4_0:156_0:68$ ip community-list expanded c2 permit 2198 ^65000:4_0:156_0:69$ ip community-list expanded c2 permit 2199 ^65000:4_0:156_0:70$ ip community-list expanded c2 permit 2200 ^65000:4_0:156_0:71$ ip community-list expanded c2 permit 2201 ^65000:4_0:156_0:72$ ip community-list expanded c2 permit 2202 ^65000:4_0:156_0:73$ ip community-list expanded c2 permit 2203 ^65000:4_0:156_0:74$ ip community-list expanded c2 permit 2204 ^65000:4_0:156_0:75$ ip community-list expanded c2 permit 2205 ^65000:4_0:156_0:76$ ip community-list expanded c2 permit 2206 ^65000:4_0:156_0:77$ ip community-list expanded c2 permit 2207 ^65000:4_0:156_0:78$ ip community-list expanded c2 permit 2208 ^65000:3_0:156_0:154$ ip community-list expanded c2 permit 2209 ^65000:4_0:157_0:53$ ip community-list expanded c2 permit 2210 ^65000:4_0:157_0:54$ ip community-list expanded c2 permit 2211 ^65000:4_0:157_0:55$ ip community-list expanded c2 permit 2212 ^65000:4_0:157_0:56$ ip community-list expanded c2 permit 2213 ^65000:4_0:157_0:57$ ip community-list expanded c2 permit 2214 ^65000:4_0:157_0:58$ ip community-list expanded c2 permit 2215 ^65000:4_0:157_0:59$ ip community-list expanded c2 permit 2216 ^65000:4_0:157_0:60$ ip community-list expanded c2 permit 2217 ^65000:4_0:157_0:61$ ip community-list expanded c2 permit 2218 ^65000:4_0:157_0:62$ ip community-list expanded c2 permit 2219 ^65000:4_0:157_0:63$ ip community-list expanded c2 permit 2220 ^65000:4_0:157_0:64$ ip community-list expanded c2 permit 2221 ^65000:4_0:157_0:65$ ip community-list expanded c2 permit 2222 ^65000:4_0:157_0:66$ ip community-list expanded c2 permit 2223 ^65000:4_0:157_0:67$ ip community-list expanded c2 permit 2224 ^65000:4_0:157_0:68$ ip community-list expanded c2 permit 2225 ^65000:4_0:157_0:69$ ip community-list expanded c2 permit 2226 ^65000:4_0:157_0:70$ ip community-list expanded c2 permit 2227 ^65000:4_0:157_0:71$ ip community-list expanded c2 permit 2228 ^65000:4_0:157_0:72$ ip community-list expanded c2 permit 2229 ^65000:4_0:157_0:73$ ip community-list expanded c2 permit 2230 ^65000:4_0:157_0:74$ ip community-list expanded c2 permit 2231 ^65000:4_0:157_0:75$ ip community-list expanded c2 permit 2232 ^65000:4_0:157_0:76$ ip community-list expanded c2 permit 2233 ^65000:4_0:157_0:77$ ip community-list expanded c2 permit 2234 ^65000:4_0:157_0:78$ ip community-list expanded c2 permit 2235 ^65000:3_0:157_0:155$ ip community-list expanded c2 permit 2236 ^65000:4_0:158_0:53$ ip community-list expanded c2 permit 2237 ^65000:4_0:158_0:54$ ip community-list expanded c2 permit 2238 ^65000:4_0:158_0:55$ ip community-list expanded c2 permit 2239 ^65000:4_0:158_0:56$ ip community-list expanded c2 permit 2240 ^65000:4_0:158_0:57$ ip community-list expanded c2 permit 2241 ^65000:4_0:158_0:58$ ip community-list expanded c2 permit 2242 ^65000:4_0:158_0:59$ ip community-list expanded c2 permit 2243 ^65000:4_0:158_0:60$ ip community-list expanded c2 permit 2244 ^65000:4_0:158_0:61$ ip community-list expanded c2 permit 2245 ^65000:4_0:158_0:62$ ip community-list expanded c2 permit 2246 ^65000:4_0:158_0:63$ ip community-list expanded c2 permit 2247 ^65000:4_0:158_0:64$ ip community-list expanded c2 permit 2248 ^65000:4_0:158_0:65$ ip community-list expanded c2 permit 2249 ^65000:4_0:158_0:66$ ip community-list expanded c2 permit 2250 ^65000:4_0:158_0:67$ ip community-list expanded c2 permit 2251 ^65000:4_0:158_0:68$ ip community-list expanded c2 permit 2252 ^65000:4_0:158_0:69$ ip community-list expanded c2 permit 2253 ^65000:4_0:158_0:70$ ip community-list expanded c2 permit 2254 ^65000:4_0:158_0:71$ ip community-list expanded c2 permit 2255 ^65000:4_0:158_0:72$ ip community-list expanded c2 permit 2256 ^65000:4_0:158_0:73$ ip community-list expanded c2 permit 2257 ^65000:4_0:158_0:74$ ip community-list expanded c2 permit 2258 ^65000:4_0:158_0:75$ ip community-list expanded c2 permit 2259 ^65000:4_0:158_0:76$ ip community-list expanded c2 permit 2260 ^65000:4_0:158_0:77$ ip community-list expanded c2 permit 2261 ^65000:4_0:158_0:78$ ip community-list expanded c2 permit 2262 ^65000:4_0:158_0:79$ ip community-list expanded c2 permit 2263 ^65000:3_0:158_0:156$ ip community-list expanded c2 permit 2264 ^65000:4_0:159_0:54$ ip community-list expanded c2 permit 2265 ^65000:4_0:159_0:55$ ip community-list expanded c2 permit 2266 ^65000:4_0:159_0:56$ ip community-list expanded c2 permit 2267 ^65000:4_0:159_0:57$ ip community-list expanded c2 permit 2268 ^65000:4_0:159_0:58$ ip community-list expanded c2 permit 2269 ^65000:4_0:159_0:59$ ip community-list expanded c2 permit 2270 ^65000:4_0:159_0:60$ ip community-list expanded c2 permit 2271 ^65000:4_0:159_0:61$ ip community-list expanded c2 permit 2272 ^65000:4_0:159_0:62$ ip community-list expanded c2 permit 2273 ^65000:4_0:159_0:63$ ip community-list expanded c2 permit 2274 ^65000:4_0:159_0:64$ ip community-list expanded c2 permit 2275 ^65000:4_0:159_0:65$ ip community-list expanded c2 permit 2276 ^65000:4_0:159_0:66$ ip community-list expanded c2 permit 2277 ^65000:4_0:159_0:67$ ip community-list expanded c2 permit 2278 ^65000:4_0:159_0:68$ ip community-list expanded c2 permit 2279 ^65000:4_0:159_0:69$ ip community-list expanded c2 permit 2280 ^65000:4_0:159_0:70$ ip community-list expanded c2 permit 2281 ^65000:4_0:159_0:71$ ip community-list expanded c2 permit 2282 ^65000:4_0:159_0:72$ ip community-list expanded c2 permit 2283 ^65000:4_0:159_0:73$ ip community-list expanded c2 permit 2284 ^65000:4_0:159_0:74$ ip community-list expanded c2 permit 2285 ^65000:4_0:159_0:75$ ip community-list expanded c2 permit 2286 ^65000:4_0:159_0:76$ ip community-list expanded c2 permit 2287 ^65000:4_0:159_0:77$ ip community-list expanded c2 permit 2288 ^65000:4_0:159_0:78$ ip community-list expanded c2 permit 2289 ^65000:4_0:159_0:79$ ip community-list expanded c2 permit 2290 ^65000:3_0:159_0:157$ ip community-list expanded c2 permit 2291 ^65000:4_0:160_0:54$ ip community-list expanded c2 permit 2292 ^65000:4_0:160_0:55$ ip community-list expanded c2 permit 2293 ^65000:4_0:160_0:56$ ip community-list expanded c2 permit 2294 ^65000:4_0:160_0:57$ ip community-list expanded c2 permit 2295 ^65000:4_0:160_0:58$ ip community-list expanded c2 permit 2296 ^65000:4_0:160_0:59$ ip community-list expanded c2 permit 2297 ^65000:4_0:160_0:60$ ip community-list expanded c2 permit 2298 ^65000:4_0:160_0:61$ ip community-list expanded c2 permit 2299 ^65000:4_0:160_0:62$ ip community-list expanded c2 permit 2300 ^65000:4_0:160_0:63$ ip community-list expanded c2 permit 2301 ^65000:4_0:160_0:64$ ip community-list expanded c2 permit 2302 ^65000:4_0:160_0:65$ ip community-list expanded c2 permit 2303 ^65000:4_0:160_0:66$ ip community-list expanded c2 permit 2304 ^65000:4_0:160_0:67$ ip community-list expanded c2 permit 2305 ^65000:4_0:160_0:68$ ip community-list expanded c2 permit 2306 ^65000:4_0:160_0:69$ ip community-list expanded c2 permit 2307 ^65000:4_0:160_0:70$ ip community-list expanded c2 permit 2308 ^65000:4_0:160_0:71$ ip community-list expanded c2 permit 2309 ^65000:4_0:160_0:72$ ip community-list expanded c2 permit 2310 ^65000:4_0:160_0:73$ ip community-list expanded c2 permit 2311 ^65000:4_0:160_0:74$ ip community-list expanded c2 permit 2312 ^65000:4_0:160_0:75$ ip community-list expanded c2 permit 2313 ^65000:4_0:160_0:76$ ip community-list expanded c2 permit 2314 ^65000:4_0:160_0:77$ ip community-list expanded c2 permit 2315 ^65000:4_0:160_0:78$ ip community-list expanded c2 permit 2316 ^65000:4_0:160_0:79$ ip community-list expanded c2 permit 2317 ^65000:4_0:160_0:80$ ip community-list expanded c2 permit 2318 ^65000:3_0:160_0:158$ ip community-list expanded c2 permit 2319 ^65000:4_0:161_0:54$ ip community-list expanded c2 permit 2320 ^65000:4_0:161_0:55$ ip community-list expanded c2 permit 2321 ^65000:4_0:161_0:56$ ip community-list expanded c2 permit 2322 ^65000:4_0:161_0:57$ ip community-list expanded c2 permit 2323 ^65000:4_0:161_0:58$ ip community-list expanded c2 permit 2324 ^65000:4_0:161_0:59$ ip community-list expanded c2 permit 2325 ^65000:4_0:161_0:60$ ip community-list expanded c2 permit 2326 ^65000:4_0:161_0:61$ ip community-list expanded c2 permit 2327 ^65000:4_0:161_0:62$ ip community-list expanded c2 permit 2328 ^65000:4_0:161_0:63$ ip community-list expanded c2 permit 2329 ^65000:4_0:161_0:64$ ip community-list expanded c2 permit 2330 ^65000:4_0:161_0:65$ ip community-list expanded c2 permit 2331 ^65000:4_0:161_0:66$ ip community-list expanded c2 permit 2332 ^65000:4_0:161_0:67$ ip community-list expanded c2 permit 2333 ^65000:4_0:161_0:68$ ip community-list expanded c2 permit 2334 ^65000:4_0:161_0:69$ ip community-list expanded c2 permit 2335 ^65000:4_0:161_0:70$ ip community-list expanded c2 permit 2336 ^65000:4_0:161_0:71$ ip community-list expanded c2 permit 2337 ^65000:4_0:161_0:72$ ip community-list expanded c2 permit 2338 ^65000:4_0:161_0:73$ ip community-list expanded c2 permit 2339 ^65000:4_0:161_0:74$ ip community-list expanded c2 permit 2340 ^65000:4_0:161_0:75$ ip community-list expanded c2 permit 2341 ^65000:4_0:161_0:76$ ip community-list expanded c2 permit 2342 ^65000:4_0:161_0:77$ ip community-list expanded c2 permit 2343 ^65000:4_0:161_0:78$ ip community-list expanded c2 permit 2344 ^65000:4_0:161_0:79$ ip community-list expanded c2 permit 2345 ^65000:4_0:161_0:80$ ip community-list expanded c2 permit 2346 ^65000:3_0:161_0:159$ ip community-list expanded c2 permit 2347 ^65000:4_0:162_0:55$ ip community-list expanded c2 permit 2348 ^65000:4_0:162_0:56$ ip community-list expanded c2 permit 2349 ^65000:4_0:162_0:57$ ip community-list expanded c2 permit 2350 ^65000:4_0:162_0:58$ ip community-list expanded c2 permit 2351 ^65000:4_0:162_0:59$ ip community-list expanded c2 permit 2352 ^65000:4_0:162_0:60$ ip community-list expanded c2 permit 2353 ^65000:4_0:162_0:61$ ip community-list expanded c2 permit 2354 ^65000:4_0:162_0:62$ ip community-list expanded c2 permit 2355 ^65000:4_0:162_0:63$ ip community-list expanded c2 permit 2356 ^65000:4_0:162_0:64$ ip community-list expanded c2 permit 2357 ^65000:4_0:162_0:65$ ip community-list expanded c2 permit 2358 ^65000:4_0:162_0:66$ ip community-list expanded c2 permit 2359 ^65000:4_0:162_0:67$ ip community-list expanded c2 permit 2360 ^65000:4_0:162_0:68$ ip community-list expanded c2 permit 2361 ^65000:4_0:162_0:69$ ip community-list expanded c2 permit 2362 ^65000:4_0:162_0:70$ ip community-list expanded c2 permit 2363 ^65000:4_0:162_0:71$ ip community-list expanded c2 permit 2364 ^65000:4_0:162_0:72$ ip community-list expanded c2 permit 2365 ^65000:4_0:162_0:73$ ip community-list expanded c2 permit 2366 ^65000:4_0:162_0:74$ ip community-list expanded c2 permit 2367 ^65000:4_0:162_0:75$ ip community-list expanded c2 permit 2368 ^65000:4_0:162_0:76$ ip community-list expanded c2 permit 2369 ^65000:4_0:162_0:77$ ip community-list expanded c2 permit 2370 ^65000:4_0:162_0:78$ ip community-list expanded c2 permit 2371 ^65000:4_0:162_0:79$ ip community-list expanded c2 permit 2372 ^65000:4_0:162_0:80$ ip community-list expanded c2 permit 2373 ^65000:4_0:162_0:81$ ip community-list expanded c2 permit 2374 ^65000:3_0:162_0:160$ ip community-list expanded c2 permit 2375 ^65000:4_0:163_0:55$ ip community-list expanded c2 permit 2376 ^65000:4_0:163_0:56$ ip community-list expanded c2 permit 2377 ^65000:4_0:163_0:57$ ip community-list expanded c2 permit 2378 ^65000:4_0:163_0:58$ ip community-list expanded c2 permit 2379 ^65000:4_0:163_0:59$ ip community-list expanded c2 permit 2380 ^65000:4_0:163_0:60$ ip community-list expanded c2 permit 2381 ^65000:4_0:163_0:61$ ip community-list expanded c2 permit 2382 ^65000:4_0:163_0:62$ ip community-list expanded c2 permit 2383 ^65000:4_0:163_0:63$ ip community-list expanded c2 permit 2384 ^65000:4_0:163_0:64$ ip community-list expanded c2 permit 2385 ^65000:4_0:163_0:65$ ip community-list expanded c2 permit 2386 ^65000:4_0:163_0:66$ ip community-list expanded c2 permit 2387 ^65000:4_0:163_0:67$ ip community-list expanded c2 permit 2388 ^65000:4_0:163_0:68$ ip community-list expanded c2 permit 2389 ^65000:4_0:163_0:69$ ip community-list expanded c2 permit 2390 ^65000:4_0:163_0:70$ ip community-list expanded c2 permit 2391 ^65000:4_0:163_0:71$ ip community-list expanded c2 permit 2392 ^65000:4_0:163_0:72$ ip community-list expanded c2 permit 2393 ^65000:4_0:163_0:73$ ip community-list expanded c2 permit 2394 ^65000:4_0:163_0:74$ ip community-list expanded c2 permit 2395 ^65000:4_0:163_0:75$ ip community-list expanded c2 permit 2396 ^65000:4_0:163_0:76$ ip community-list expanded c2 permit 2397 ^65000:4_0:163_0:77$ ip community-list expanded c2 permit 2398 ^65000:4_0:163_0:78$ ip community-list expanded c2 permit 2399 ^65000:4_0:163_0:79$ ip community-list expanded c2 permit 2400 ^65000:4_0:163_0:80$ ip community-list expanded c2 permit 2401 ^65000:4_0:163_0:81$ ip community-list expanded c2 permit 2402 ^65000:3_0:163_0:161$ ip community-list expanded c2 permit 2403 ^65000:4_0:164_0:55$ ip community-list expanded c2 permit 2404 ^65000:4_0:164_0:56$ ip community-list expanded c2 permit 2405 ^65000:4_0:164_0:57$ ip community-list expanded c2 permit 2406 ^65000:4_0:164_0:58$ ip community-list expanded c2 permit 2407 ^65000:4_0:164_0:59$ ip community-list expanded c2 permit 2408 ^65000:4_0:164_0:60$ ip community-list expanded c2 permit 2409 ^65000:4_0:164_0:61$ ip community-list expanded c2 permit 2410 ^65000:4_0:164_0:62$ ip community-list expanded c2 permit 2411 ^65000:4_0:164_0:63$ ip community-list expanded c2 permit 2412 ^65000:4_0:164_0:64$ ip community-list expanded c2 permit 2413 ^65000:4_0:164_0:65$ ip community-list expanded c2 permit 2414 ^65000:4_0:164_0:66$ ip community-list expanded c2 permit 2415 ^65000:4_0:164_0:67$ ip community-list expanded c2 permit 2416 ^65000:4_0:164_0:68$ ip community-list expanded c2 permit 2417 ^65000:4_0:164_0:69$ ip community-list expanded c2 permit 2418 ^65000:4_0:164_0:70$ ip community-list expanded c2 permit 2419 ^65000:4_0:164_0:71$ ip community-list expanded c2 permit 2420 ^65000:4_0:164_0:72$ ip community-list expanded c2 permit 2421 ^65000:4_0:164_0:73$ ip community-list expanded c2 permit 2422 ^65000:4_0:164_0:74$ ip community-list expanded c2 permit 2423 ^65000:4_0:164_0:75$ ip community-list expanded c2 permit 2424 ^65000:4_0:164_0:76$ ip community-list expanded c2 permit 2425 ^65000:4_0:164_0:77$ ip community-list expanded c2 permit 2426 ^65000:4_0:164_0:78$ ip community-list expanded c2 permit 2427 ^65000:4_0:164_0:79$ ip community-list expanded c2 permit 2428 ^65000:4_0:164_0:80$ ip community-list expanded c2 permit 2429 ^65000:4_0:164_0:81$ ip community-list expanded c2 permit 2430 ^65000:4_0:164_0:82$ ip community-list expanded c2 permit 2431 ^65000:3_0:164_0:162$ ip community-list expanded c2 permit 2432 ^65000:4_0:165_0:56$ ip community-list expanded c2 permit 2433 ^65000:4_0:165_0:57$ ip community-list expanded c2 permit 2434 ^65000:4_0:165_0:58$ ip community-list expanded c2 permit 2435 ^65000:4_0:165_0:59$ ip community-list expanded c2 permit 2436 ^65000:4_0:165_0:60$ ip community-list expanded c2 permit 2437 ^65000:4_0:165_0:61$ ip community-list expanded c2 permit 2438 ^65000:4_0:165_0:62$ ip community-list expanded c2 permit 2439 ^65000:4_0:165_0:63$ ip community-list expanded c2 permit 2440 ^65000:4_0:165_0:64$ ip community-list expanded c2 permit 2441 ^65000:4_0:165_0:65$ ip community-list expanded c2 permit 2442 ^65000:4_0:165_0:66$ ip community-list expanded c2 permit 2443 ^65000:4_0:165_0:67$ ip community-list expanded c2 permit 2444 ^65000:4_0:165_0:68$ ip community-list expanded c2 permit 2445 ^65000:4_0:165_0:69$ ip community-list expanded c2 permit 2446 ^65000:4_0:165_0:70$ ip community-list expanded c2 permit 2447 ^65000:4_0:165_0:71$ ip community-list expanded c2 permit 2448 ^65000:4_0:165_0:72$ ip community-list expanded c2 permit 2449 ^65000:4_0:165_0:73$ ip community-list expanded c2 permit 2450 ^65000:4_0:165_0:74$ ip community-list expanded c2 permit 2451 ^65000:4_0:165_0:75$ ip community-list expanded c2 permit 2452 ^65000:4_0:165_0:76$ ip community-list expanded c2 permit 2453 ^65000:4_0:165_0:77$ ip community-list expanded c2 permit 2454 ^65000:4_0:165_0:78$ ip community-list expanded c2 permit 2455 ^65000:4_0:165_0:79$ ip community-list expanded c2 permit 2456 ^65000:4_0:165_0:80$ ip community-list expanded c2 permit 2457 ^65000:4_0:165_0:81$ ip community-list expanded c2 permit 2458 ^65000:4_0:165_0:82$ ip community-list expanded c2 permit 2459 ^65000:3_0:165_0:163$ ip community-list expanded c2 permit 2460 ^65000:4_0:166_0:56$ ip community-list expanded c2 permit 2461 ^65000:4_0:166_0:57$ ip community-list expanded c2 permit 2462 ^65000:4_0:166_0:58$ ip community-list expanded c2 permit 2463 ^65000:4_0:166_0:59$ ip community-list expanded c2 permit 2464 ^65000:4_0:166_0:60$ ip community-list expanded c2 permit 2465 ^65000:4_0:166_0:61$ ip community-list expanded c2 permit 2466 ^65000:4_0:166_0:62$ ip community-list expanded c2 permit 2467 ^65000:4_0:166_0:63$ ip community-list expanded c2 permit 2468 ^65000:4_0:166_0:64$ ip community-list expanded c2 permit 2469 ^65000:4_0:166_0:65$ ip community-list expanded c2 permit 2470 ^65000:4_0:166_0:66$ ip community-list expanded c2 permit 2471 ^65000:4_0:166_0:67$ ip community-list expanded c2 permit 2472 ^65000:4_0:166_0:68$ ip community-list expanded c2 permit 2473 ^65000:4_0:166_0:69$ ip community-list expanded c2 permit 2474 ^65000:4_0:166_0:70$ ip community-list expanded c2 permit 2475 ^65000:4_0:166_0:71$ ip community-list expanded c2 permit 2476 ^65000:4_0:166_0:72$ ip community-list expanded c2 permit 2477 ^65000:4_0:166_0:73$ ip community-list expanded c2 permit 2478 ^65000:4_0:166_0:74$ ip community-list expanded c2 permit 2479 ^65000:4_0:166_0:75$ ip community-list expanded c2 permit 2480 ^65000:4_0:166_0:76$ ip community-list expanded c2 permit 2481 ^65000:4_0:166_0:77$ ip community-list expanded c2 permit 2482 ^65000:4_0:166_0:78$ ip community-list expanded c2 permit 2483 ^65000:4_0:166_0:79$ ip community-list expanded c2 permit 2484 ^65000:4_0:166_0:80$ ip community-list expanded c2 permit 2485 ^65000:4_0:166_0:81$ ip community-list expanded c2 permit 2486 ^65000:4_0:166_0:82$ ip community-list expanded c2 permit 2487 ^65000:4_0:166_0:83$ ip community-list expanded c2 permit 2488 ^65000:3_0:166_0:164$ ip community-list expanded c2 permit 2489 ^65000:4_0:167_0:56$ ip community-list expanded c2 permit 2490 ^65000:4_0:167_0:57$ ip community-list expanded c2 permit 2491 ^65000:4_0:167_0:58$ ip community-list expanded c2 permit 2492 ^65000:4_0:167_0:59$ ip community-list expanded c2 permit 2493 ^65000:4_0:167_0:60$ ip community-list expanded c2 permit 2494 ^65000:4_0:167_0:61$ ip community-list expanded c2 permit 2495 ^65000:4_0:167_0:62$ ip community-list expanded c2 permit 2496 ^65000:4_0:167_0:63$ ip community-list expanded c2 permit 2497 ^65000:4_0:167_0:64$ ip community-list expanded c2 permit 2498 ^65000:4_0:167_0:65$ ip community-list expanded c2 permit 2499 ^65000:4_0:167_0:66$ ip community-list expanded c2 permit 2500 ^65000:4_0:167_0:67$ ip community-list expanded c2 permit 2501 ^65000:4_0:167_0:68$ ip community-list expanded c2 permit 2502 ^65000:4_0:167_0:69$ ip community-list expanded c2 permit 2503 ^65000:4_0:167_0:70$ ip community-list expanded c2 permit 2504 ^65000:4_0:167_0:71$ ip community-list expanded c2 permit 2505 ^65000:4_0:167_0:72$ ip community-list expanded c2 permit 2506 ^65000:4_0:167_0:73$ ip community-list expanded c2 permit 2507 ^65000:4_0:167_0:74$ ip community-list expanded c2 permit 2508 ^65000:4_0:167_0:75$ ip community-list expanded c2 permit 2509 ^65000:4_0:167_0:76$ ip community-list expanded c2 permit 2510 ^65000:4_0:167_0:77$ ip community-list expanded c2 permit 2511 ^65000:4_0:167_0:78$ ip community-list expanded c2 permit 2512 ^65000:4_0:167_0:79$ ip community-list expanded c2 permit 2513 ^65000:4_0:167_0:80$ ip community-list expanded c2 permit 2514 ^65000:4_0:167_0:81$ ip community-list expanded c2 permit 2515 ^65000:4_0:167_0:82$ ip community-list expanded c2 permit 2516 ^65000:4_0:167_0:83$ ip community-list expanded c2 permit 2517 ^65000:3_0:167_0:165$ ip community-list expanded c2 permit 2518 ^65000:4_0:168_0:57$ ip community-list expanded c2 permit 2519 ^65000:4_0:168_0:58$ ip community-list expanded c2 permit 2520 ^65000:4_0:168_0:59$ ip community-list expanded c2 permit 2521 ^65000:4_0:168_0:60$ ip community-list expanded c2 permit 2522 ^65000:4_0:168_0:61$ ip community-list expanded c2 permit 2523 ^65000:4_0:168_0:62$ ip community-list expanded c2 permit 2524 ^65000:4_0:168_0:63$ ip community-list expanded c2 permit 2525 ^65000:4_0:168_0:64$ ip community-list expanded c2 permit 2526 ^65000:4_0:168_0:65$ ip community-list expanded c2 permit 2527 ^65000:4_0:168_0:66$ ip community-list expanded c2 permit 2528 ^65000:4_0:168_0:67$ ip community-list expanded c2 permit 2529 ^65000:4_0:168_0:68$ ip community-list expanded c2 permit 2530 ^65000:4_0:168_0:69$ ip community-list expanded c2 permit 2531 ^65000:4_0:168_0:70$ ip community-list expanded c2 permit 2532 ^65000:4_0:168_0:71$ ip community-list expanded c2 permit 2533 ^65000:4_0:168_0:72$ ip community-list expanded c2 permit 2534 ^65000:4_0:168_0:73$ ip community-list expanded c2 permit 2535 ^65000:4_0:168_0:74$ ip community-list expanded c2 permit 2536 ^65000:4_0:168_0:75$ ip community-list expanded c2 permit 2537 ^65000:4_0:168_0:76$ ip community-list expanded c2 permit 2538 ^65000:4_0:168_0:77$ ip community-list expanded c2 permit 2539 ^65000:4_0:168_0:78$ ip community-list expanded c2 permit 2540 ^65000:4_0:168_0:79$ ip community-list expanded c2 permit 2541 ^65000:4_0:168_0:80$ ip community-list expanded c2 permit 2542 ^65000:4_0:168_0:81$ ip community-list expanded c2 permit 2543 ^65000:4_0:168_0:82$ ip community-list expanded c2 permit 2544 ^65000:4_0:168_0:83$ ip community-list expanded c2 permit 2545 ^65000:4_0:168_0:84$ ip community-list expanded c2 permit 2546 ^65000:3_0:168_0:166$ ip community-list expanded c2 permit 2547 ^65000:4_0:169_0:57$ ip community-list expanded c2 permit 2548 ^65000:4_0:169_0:58$ ip community-list expanded c2 permit 2549 ^65000:4_0:169_0:59$ ip community-list expanded c2 permit 2550 ^65000:4_0:169_0:60$ ip community-list expanded c2 permit 2551 ^65000:4_0:169_0:61$ ip community-list expanded c2 permit 2552 ^65000:4_0:169_0:62$ ip community-list expanded c2 permit 2553 ^65000:4_0:169_0:63$ ip community-list expanded c2 permit 2554 ^65000:4_0:169_0:64$ ip community-list expanded c2 permit 2555 ^65000:4_0:169_0:65$ ip community-list expanded c2 permit 2556 ^65000:4_0:169_0:66$ ip community-list expanded c2 permit 2557 ^65000:4_0:169_0:67$ ip community-list expanded c2 permit 2558 ^65000:4_0:169_0:68$ ip community-list expanded c2 permit 2559 ^65000:4_0:169_0:69$ ip community-list expanded c2 permit 2560 ^65000:4_0:169_0:70$ ip community-list expanded c2 permit 2561 ^65000:4_0:169_0:71$ ip community-list expanded c2 permit 2562 ^65000:4_0:169_0:72$ ip community-list expanded c2 permit 2563 ^65000:4_0:169_0:73$ ip community-list expanded c2 permit 2564 ^65000:4_0:169_0:74$ ip community-list expanded c2 permit 2565 ^65000:4_0:169_0:75$ ip community-list expanded c2 permit 2566 ^65000:4_0:169_0:76$ ip community-list expanded c2 permit 2567 ^65000:4_0:169_0:77$ ip community-list expanded c2 permit 2568 ^65000:4_0:169_0:78$ ip community-list expanded c2 permit 2569 ^65000:4_0:169_0:79$ ip community-list expanded c2 permit 2570 ^65000:4_0:169_0:80$ ip community-list expanded c2 permit 2571 ^65000:4_0:169_0:81$ ip community-list expanded c2 permit 2572 ^65000:4_0:169_0:82$ ip community-list expanded c2 permit 2573 ^65000:4_0:169_0:83$ ip community-list expanded c2 permit 2574 ^65000:4_0:169_0:84$ ip community-list expanded c2 permit 2575 ^65000:3_0:169_0:167$ ip community-list expanded c2 permit 2576 ^65000:4_0:170_0:57$ ip community-list expanded c2 permit 2577 ^65000:4_0:170_0:58$ ip community-list expanded c2 permit 2578 ^65000:4_0:170_0:59$ ip community-list expanded c2 permit 2579 ^65000:4_0:170_0:60$ ip community-list expanded c2 permit 2580 ^65000:4_0:170_0:61$ ip community-list expanded c2 permit 2581 ^65000:4_0:170_0:62$ ip community-list expanded c2 permit 2582 ^65000:4_0:170_0:63$ ip community-list expanded c2 permit 2583 ^65000:4_0:170_0:64$ ip community-list expanded c2 permit 2584 ^65000:4_0:170_0:65$ ip community-list expanded c2 permit 2585 ^65000:4_0:170_0:66$ ip community-list expanded c2 permit 2586 ^65000:4_0:170_0:67$ ip community-list expanded c2 permit 2587 ^65000:4_0:170_0:68$ ip community-list expanded c2 permit 2588 ^65000:4_0:170_0:69$ ip community-list expanded c2 permit 2589 ^65000:4_0:170_0:70$ ip community-list expanded c2 permit 2590 ^65000:4_0:170_0:71$ ip community-list expanded c2 permit 2591 ^65000:4_0:170_0:72$ ip community-list expanded c2 permit 2592 ^65000:4_0:170_0:73$ ip community-list expanded c2 permit 2593 ^65000:4_0:170_0:74$ ip community-list expanded c2 permit 2594 ^65000:4_0:170_0:75$ ip community-list expanded c2 permit 2595 ^65000:4_0:170_0:76$ ip community-list expanded c2 permit 2596 ^65000:4_0:170_0:77$ ip community-list expanded c2 permit 2597 ^65000:4_0:170_0:78$ ip community-list expanded c2 permit 2598 ^65000:4_0:170_0:79$ ip community-list expanded c2 permit 2599 ^65000:4_0:170_0:80$ ip community-list expanded c2 permit 2600 ^65000:4_0:170_0:81$ ip community-list expanded c2 permit 2601 ^65000:4_0:170_0:82$ ip community-list expanded c2 permit 2602 ^65000:4_0:170_0:83$ ip community-list expanded c2 permit 2603 ^65000:4_0:170_0:84$ ip community-list expanded c2 permit 2604 ^65000:4_0:170_0:85$ ip community-list expanded c2 permit 2605 ^65000:3_0:170_0:168$ ip community-list expanded c2 permit 2606 ^65000:4_0:171_0:58$ ip community-list expanded c2 permit 2607 ^65000:4_0:171_0:59$ ip community-list expanded c2 permit 2608 ^65000:4_0:171_0:60$ ip community-list expanded c2 permit 2609 ^65000:4_0:171_0:61$ ip community-list expanded c2 permit 2610 ^65000:4_0:171_0:62$ ip community-list expanded c2 permit 2611 ^65000:4_0:171_0:63$ ip community-list expanded c2 permit 2612 ^65000:4_0:171_0:64$ ip community-list expanded c2 permit 2613 ^65000:4_0:171_0:65$ ip community-list expanded c2 permit 2614 ^65000:4_0:171_0:66$ ip community-list expanded c2 permit 2615 ^65000:4_0:171_0:67$ ip community-list expanded c2 permit 2616 ^65000:4_0:171_0:68$ ip community-list expanded c2 permit 2617 ^65000:4_0:171_0:69$ ip community-list expanded c2 permit 2618 ^65000:4_0:171_0:70$ ip community-list expanded c2 permit 2619 ^65000:4_0:171_0:71$ ip community-list expanded c2 permit 2620 ^65000:4_0:171_0:72$ ip community-list expanded c2 permit 2621 ^65000:4_0:171_0:73$ ip community-list expanded c2 permit 2622 ^65000:4_0:171_0:74$ ip community-list expanded c2 permit 2623 ^65000:4_0:171_0:75$ ip community-list expanded c2 permit 2624 ^65000:4_0:171_0:76$ ip community-list expanded c2 permit 2625 ^65000:4_0:171_0:77$ ip community-list expanded c2 permit 2626 ^65000:4_0:171_0:78$ ip community-list expanded c2 permit 2627 ^65000:4_0:171_0:79$ ip community-list expanded c2 permit 2628 ^65000:4_0:171_0:80$ ip community-list expanded c2 permit 2629 ^65000:4_0:171_0:81$ ip community-list expanded c2 permit 2630 ^65000:4_0:171_0:82$ ip community-list expanded c2 permit 2631 ^65000:4_0:171_0:83$ ip community-list expanded c2 permit 2632 ^65000:4_0:171_0:84$ ip community-list expanded c2 permit 2633 ^65000:4_0:171_0:85$ ip community-list expanded c2 permit 2634 ^65000:3_0:171_0:169$ ip community-list expanded c2 permit 2635 ^65000:4_0:172_0:58$ ip community-list expanded c2 permit 2636 ^65000:4_0:172_0:59$ ip community-list expanded c2 permit 2637 ^65000:4_0:172_0:60$ ip community-list expanded c2 permit 2638 ^65000:4_0:172_0:61$ ip community-list expanded c2 permit 2639 ^65000:4_0:172_0:62$ ip community-list expanded c2 permit 2640 ^65000:4_0:172_0:63$ ip community-list expanded c2 permit 2641 ^65000:4_0:172_0:64$ ip community-list expanded c2 permit 2642 ^65000:4_0:172_0:65$ ip community-list expanded c2 permit 2643 ^65000:4_0:172_0:66$ ip community-list expanded c2 permit 2644 ^65000:4_0:172_0:67$ ip community-list expanded c2 permit 2645 ^65000:4_0:172_0:68$ ip community-list expanded c2 permit 2646 ^65000:4_0:172_0:69$ ip community-list expanded c2 permit 2647 ^65000:4_0:172_0:70$ ip community-list expanded c2 permit 2648 ^65000:4_0:172_0:71$ ip community-list expanded c2 permit 2649 ^65000:4_0:172_0:72$ ip community-list expanded c2 permit 2650 ^65000:4_0:172_0:73$ ip community-list expanded c2 permit 2651 ^65000:4_0:172_0:74$ ip community-list expanded c2 permit 2652 ^65000:4_0:172_0:75$ ip community-list expanded c2 permit 2653 ^65000:4_0:172_0:76$ ip community-list expanded c2 permit 2654 ^65000:4_0:172_0:77$ ip community-list expanded c2 permit 2655 ^65000:4_0:172_0:78$ ip community-list expanded c2 permit 2656 ^65000:4_0:172_0:79$ ip community-list expanded c2 permit 2657 ^65000:4_0:172_0:80$ ip community-list expanded c2 permit 2658 ^65000:4_0:172_0:81$ ip community-list expanded c2 permit 2659 ^65000:4_0:172_0:82$ ip community-list expanded c2 permit 2660 ^65000:4_0:172_0:83$ ip community-list expanded c2 permit 2661 ^65000:4_0:172_0:84$ ip community-list expanded c2 permit 2662 ^65000:4_0:172_0:85$ ip community-list expanded c2 permit 2663 ^65000:4_0:172_0:86$ ip community-list expanded c2 permit 2664 ^65000:3_0:172_0:170$ ip community-list expanded c2 permit 2665 ^65000:4_0:173_0:58$ ip community-list expanded c2 permit 2666 ^65000:4_0:173_0:59$ ip community-list expanded c2 permit 2667 ^65000:4_0:173_0:60$ ip community-list expanded c2 permit 2668 ^65000:4_0:173_0:61$ ip community-list expanded c2 permit 2669 ^65000:4_0:173_0:62$ ip community-list expanded c2 permit 2670 ^65000:4_0:173_0:63$ ip community-list expanded c2 permit 2671 ^65000:4_0:173_0:64$ ip community-list expanded c2 permit 2672 ^65000:4_0:173_0:65$ ip community-list expanded c2 permit 2673 ^65000:4_0:173_0:66$ ip community-list expanded c2 permit 2674 ^65000:4_0:173_0:67$ ip community-list expanded c2 permit 2675 ^65000:4_0:173_0:68$ ip community-list expanded c2 permit 2676 ^65000:4_0:173_0:69$ ip community-list expanded c2 permit 2677 ^65000:4_0:173_0:70$ ip community-list expanded c2 permit 2678 ^65000:4_0:173_0:71$ ip community-list expanded c2 permit 2679 ^65000:4_0:173_0:72$ ip community-list expanded c2 permit 2680 ^65000:4_0:173_0:73$ ip community-list expanded c2 permit 2681 ^65000:4_0:173_0:74$ ip community-list expanded c2 permit 2682 ^65000:4_0:173_0:75$ ip community-list expanded c2 permit 2683 ^65000:4_0:173_0:76$ ip community-list expanded c2 permit 2684 ^65000:4_0:173_0:77$ ip community-list expanded c2 permit 2685 ^65000:4_0:173_0:78$ ip community-list expanded c2 permit 2686 ^65000:4_0:173_0:79$ ip community-list expanded c2 permit 2687 ^65000:4_0:173_0:80$ ip community-list expanded c2 permit 2688 ^65000:4_0:173_0:81$ ip community-list expanded c2 permit 2689 ^65000:4_0:173_0:82$ ip community-list expanded c2 permit 2690 ^65000:4_0:173_0:83$ ip community-list expanded c2 permit 2691 ^65000:4_0:173_0:84$ ip community-list expanded c2 permit 2692 ^65000:4_0:173_0:85$ ip community-list expanded c2 permit 2693 ^65000:4_0:173_0:86$ ip community-list expanded c2 permit 2694 ^65000:3_0:173_0:171$ ip community-list expanded c2 permit 2695 ^65000:4_0:174_0:59$ ip community-list expanded c2 permit 2696 ^65000:4_0:174_0:60$ ip community-list expanded c2 permit 2697 ^65000:4_0:174_0:61$ ip community-list expanded c2 permit 2698 ^65000:4_0:174_0:62$ ip community-list expanded c2 permit 2699 ^65000:4_0:174_0:63$ ip community-list expanded c2 permit 2700 ^65000:4_0:174_0:64$ ip community-list expanded c2 permit 2701 ^65000:4_0:174_0:65$ ip community-list expanded c2 permit 2702 ^65000:4_0:174_0:66$ ip community-list expanded c2 permit 2703 ^65000:4_0:174_0:67$ ip community-list expanded c2 permit 2704 ^65000:4_0:174_0:68$ ip community-list expanded c2 permit 2705 ^65000:4_0:174_0:69$ ip community-list expanded c2 permit 2706 ^65000:4_0:174_0:70$ ip community-list expanded c2 permit 2707 ^65000:4_0:174_0:71$ ip community-list expanded c2 permit 2708 ^65000:4_0:174_0:72$ ip community-list expanded c2 permit 2709 ^65000:4_0:174_0:73$ ip community-list expanded c2 permit 2710 ^65000:4_0:174_0:74$ ip community-list expanded c2 permit 2711 ^65000:4_0:174_0:75$ ip community-list expanded c2 permit 2712 ^65000:4_0:174_0:76$ ip community-list expanded c2 permit 2713 ^65000:4_0:174_0:77$ ip community-list expanded c2 permit 2714 ^65000:4_0:174_0:78$ ip community-list expanded c2 permit 2715 ^65000:4_0:174_0:79$ ip community-list expanded c2 permit 2716 ^65000:4_0:174_0:80$ ip community-list expanded c2 permit 2717 ^65000:4_0:174_0:81$ ip community-list expanded c2 permit 2718 ^65000:4_0:174_0:82$ ip community-list expanded c2 permit 2719 ^65000:4_0:174_0:83$ ip community-list expanded c2 permit 2720 ^65000:4_0:174_0:84$ ip community-list expanded c2 permit 2721 ^65000:4_0:174_0:85$ ip community-list expanded c2 permit 2722 ^65000:4_0:174_0:86$ ip community-list expanded c2 permit 2723 ^65000:4_0:174_0:87$ ip community-list expanded c2 permit 2724 ^65000:3_0:174_0:172$ ip community-list expanded c2 permit 2725 ^65000:4_0:175_0:59$ ip community-list expanded c2 permit 2726 ^65000:4_0:175_0:60$ ip community-list expanded c2 permit 2727 ^65000:4_0:175_0:61$ ip community-list expanded c2 permit 2728 ^65000:4_0:175_0:62$ ip community-list expanded c2 permit 2729 ^65000:4_0:175_0:63$ ip community-list expanded c2 permit 2730 ^65000:4_0:175_0:64$ ip community-list expanded c2 permit 2731 ^65000:4_0:175_0:65$ ip community-list expanded c2 permit 2732 ^65000:4_0:175_0:66$ ip community-list expanded c2 permit 2733 ^65000:4_0:175_0:67$ ip community-list expanded c2 permit 2734 ^65000:4_0:175_0:68$ ip community-list expanded c2 permit 2735 ^65000:4_0:175_0:69$ ip community-list expanded c2 permit 2736 ^65000:4_0:175_0:70$ ip community-list expanded c2 permit 2737 ^65000:4_0:175_0:71$ ip community-list expanded c2 permit 2738 ^65000:4_0:175_0:72$ ip community-list expanded c2 permit 2739 ^65000:4_0:175_0:73$ ip community-list expanded c2 permit 2740 ^65000:4_0:175_0:74$ ip community-list expanded c2 permit 2741 ^65000:4_0:175_0:75$ ip community-list expanded c2 permit 2742 ^65000:4_0:175_0:76$ ip community-list expanded c2 permit 2743 ^65000:4_0:175_0:77$ ip community-list expanded c2 permit 2744 ^65000:4_0:175_0:78$ ip community-list expanded c2 permit 2745 ^65000:4_0:175_0:79$ ip community-list expanded c2 permit 2746 ^65000:4_0:175_0:80$ ip community-list expanded c2 permit 2747 ^65000:4_0:175_0:81$ ip community-list expanded c2 permit 2748 ^65000:4_0:175_0:82$ ip community-list expanded c2 permit 2749 ^65000:4_0:175_0:83$ ip community-list expanded c2 permit 2750 ^65000:4_0:175_0:84$ ip community-list expanded c2 permit 2751 ^65000:4_0:175_0:85$ ip community-list expanded c2 permit 2752 ^65000:4_0:175_0:86$ ip community-list expanded c2 permit 2753 ^65000:4_0:175_0:87$ ip community-list expanded c2 permit 2754 ^65000:3_0:175_0:173$ ip community-list expanded c2 permit 2755 ^65000:4_0:176_0:59$ ip community-list expanded c2 permit 2756 ^65000:4_0:176_0:60$ ip community-list expanded c2 permit 2757 ^65000:4_0:176_0:61$ ip community-list expanded c2 permit 2758 ^65000:4_0:176_0:62$ ip community-list expanded c2 permit 2759 ^65000:4_0:176_0:63$ ip community-list expanded c2 permit 2760 ^65000:4_0:176_0:64$ ip community-list expanded c2 permit 2761 ^65000:4_0:176_0:65$ ip community-list expanded c2 permit 2762 ^65000:4_0:176_0:66$ ip community-list expanded c2 permit 2763 ^65000:4_0:176_0:67$ ip community-list expanded c2 permit 2764 ^65000:4_0:176_0:68$ ip community-list expanded c2 permit 2765 ^65000:4_0:176_0:69$ ip community-list expanded c2 permit 2766 ^65000:4_0:176_0:70$ ip community-list expanded c2 permit 2767 ^65000:4_0:176_0:71$ ip community-list expanded c2 permit 2768 ^65000:4_0:176_0:72$ ip community-list expanded c2 permit 2769 ^65000:4_0:176_0:73$ ip community-list expanded c2 permit 2770 ^65000:4_0:176_0:74$ ip community-list expanded c2 permit 2771 ^65000:4_0:176_0:75$ ip community-list expanded c2 permit 2772 ^65000:4_0:176_0:76$ ip community-list expanded c2 permit 2773 ^65000:4_0:176_0:77$ ip community-list expanded c2 permit 2774 ^65000:4_0:176_0:78$ ip community-list expanded c2 permit 2775 ^65000:4_0:176_0:79$ ip community-list expanded c2 permit 2776 ^65000:4_0:176_0:80$ ip community-list expanded c2 permit 2777 ^65000:4_0:176_0:81$ ip community-list expanded c2 permit 2778 ^65000:4_0:176_0:82$ ip community-list expanded c2 permit 2779 ^65000:4_0:176_0:83$ ip community-list expanded c2 permit 2780 ^65000:4_0:176_0:84$ ip community-list expanded c2 permit 2781 ^65000:4_0:176_0:85$ ip community-list expanded c2 permit 2782 ^65000:4_0:176_0:86$ ip community-list expanded c2 permit 2783 ^65000:4_0:176_0:87$ ip community-list expanded c2 permit 2784 ^65000:4_0:176_0:88$ ip community-list expanded c2 permit 2785 ^65000:3_0:176_0:174$ ip community-list expanded c2 permit 2786 ^65000:4_0:177_0:60$ ip community-list expanded c2 permit 2787 ^65000:4_0:177_0:61$ ip community-list expanded c2 permit 2788 ^65000:4_0:177_0:62$ ip community-list expanded c2 permit 2789 ^65000:4_0:177_0:63$ ip community-list expanded c2 permit 2790 ^65000:4_0:177_0:64$ ip community-list expanded c2 permit 2791 ^65000:4_0:177_0:65$ ip community-list expanded c2 permit 2792 ^65000:4_0:177_0:66$ ip community-list expanded c2 permit 2793 ^65000:4_0:177_0:67$ ip community-list expanded c2 permit 2794 ^65000:4_0:177_0:68$ ip community-list expanded c2 permit 2795 ^65000:4_0:177_0:69$ ip community-list expanded c2 permit 2796 ^65000:4_0:177_0:70$ ip community-list expanded c2 permit 2797 ^65000:4_0:177_0:71$ ip community-list expanded c2 permit 2798 ^65000:4_0:177_0:72$ ip community-list expanded c2 permit 2799 ^65000:4_0:177_0:73$ ip community-list expanded c2 permit 2800 ^65000:4_0:177_0:74$ ip community-list expanded c2 permit 2801 ^65000:4_0:177_0:75$ ip community-list expanded c2 permit 2802 ^65000:4_0:177_0:76$ ip community-list expanded c2 permit 2803 ^65000:4_0:177_0:77$ ip community-list expanded c2 permit 2804 ^65000:4_0:177_0:78$ ip community-list expanded c2 permit 2805 ^65000:4_0:177_0:79$ ip community-list expanded c2 permit 2806 ^65000:4_0:177_0:80$ ip community-list expanded c2 permit 2807 ^65000:4_0:177_0:81$ ip community-list expanded c2 permit 2808 ^65000:4_0:177_0:82$ ip community-list expanded c2 permit 2809 ^65000:4_0:177_0:83$ ip community-list expanded c2 permit 2810 ^65000:4_0:177_0:84$ ip community-list expanded c2 permit 2811 ^65000:4_0:177_0:85$ ip community-list expanded c2 permit 2812 ^65000:4_0:177_0:86$ ip community-list expanded c2 permit 2813 ^65000:4_0:177_0:87$ ip community-list expanded c2 permit 2814 ^65000:4_0:177_0:88$ ip community-list expanded c2 permit 2815 ^65000:3_0:177_0:175$ ip community-list expanded c2 permit 2816 ^65000:4_0:178_0:60$ ip community-list expanded c2 permit 2817 ^65000:4_0:178_0:61$ ip community-list expanded c2 permit 2818 ^65000:4_0:178_0:62$ ip community-list expanded c2 permit 2819 ^65000:4_0:178_0:63$ ip community-list expanded c2 permit 2820 ^65000:4_0:178_0:64$ ip community-list expanded c2 permit 2821 ^65000:4_0:178_0:65$ ip community-list expanded c2 permit 2822 ^65000:4_0:178_0:66$ ip community-list expanded c2 permit 2823 ^65000:4_0:178_0:67$ ip community-list expanded c2 permit 2824 ^65000:4_0:178_0:68$ ip community-list expanded c2 permit 2825 ^65000:4_0:178_0:69$ ip community-list expanded c2 permit 2826 ^65000:4_0:178_0:70$ ip community-list expanded c2 permit 2827 ^65000:4_0:178_0:71$ ip community-list expanded c2 permit 2828 ^65000:4_0:178_0:72$ ip community-list expanded c2 permit 2829 ^65000:4_0:178_0:73$ ip community-list expanded c2 permit 2830 ^65000:4_0:178_0:74$ ip community-list expanded c2 permit 2831 ^65000:4_0:178_0:75$ ip community-list expanded c2 permit 2832 ^65000:4_0:178_0:76$ ip community-list expanded c2 permit 2833 ^65000:4_0:178_0:77$ ip community-list expanded c2 permit 2834 ^65000:4_0:178_0:78$ ip community-list expanded c2 permit 2835 ^65000:4_0:178_0:79$ ip community-list expanded c2 permit 2836 ^65000:4_0:178_0:80$ ip community-list expanded c2 permit 2837 ^65000:4_0:178_0:81$ ip community-list expanded c2 permit 2838 ^65000:4_0:178_0:82$ ip community-list expanded c2 permit 2839 ^65000:4_0:178_0:83$ ip community-list expanded c2 permit 2840 ^65000:4_0:178_0:84$ ip community-list expanded c2 permit 2841 ^65000:4_0:178_0:85$ ip community-list expanded c2 permit 2842 ^65000:4_0:178_0:86$ ip community-list expanded c2 permit 2843 ^65000:4_0:178_0:87$ ip community-list expanded c2 permit 2844 ^65000:4_0:178_0:88$ ip community-list expanded c2 permit 2845 ^65000:4_0:178_0:89$ ip community-list expanded c2 permit 2846 ^65000:3_0:178_0:176$ ip community-list expanded c2 permit 2847 ^65000:4_0:179_0:60$ ip community-list expanded c2 permit 2848 ^65000:4_0:179_0:61$ ip community-list expanded c2 permit 2849 ^65000:4_0:179_0:62$ ip community-list expanded c2 permit 2850 ^65000:4_0:179_0:63$ ip community-list expanded c2 permit 2851 ^65000:4_0:179_0:64$ ip community-list expanded c2 permit 2852 ^65000:4_0:179_0:65$ ip community-list expanded c2 permit 2853 ^65000:4_0:179_0:66$ ip community-list expanded c2 permit 2854 ^65000:4_0:179_0:67$ ip community-list expanded c2 permit 2855 ^65000:4_0:179_0:68$ ip community-list expanded c2 permit 2856 ^65000:4_0:179_0:69$ ip community-list expanded c2 permit 2857 ^65000:4_0:179_0:70$ ip community-list expanded c2 permit 2858 ^65000:4_0:179_0:71$ ip community-list expanded c2 permit 2859 ^65000:4_0:179_0:72$ ip community-list expanded c2 permit 2860 ^65000:4_0:179_0:73$ ip community-list expanded c2 permit 2861 ^65000:4_0:179_0:74$ ip community-list expanded c2 permit 2862 ^65000:4_0:179_0:75$ ip community-list expanded c2 permit 2863 ^65000:4_0:179_0:76$ ip community-list expanded c2 permit 2864 ^65000:4_0:179_0:77$ ip community-list expanded c2 permit 2865 ^65000:4_0:179_0:78$ ip community-list expanded c2 permit 2866 ^65000:4_0:179_0:79$ ip community-list expanded c2 permit 2867 ^65000:4_0:179_0:80$ ip community-list expanded c2 permit 2868 ^65000:4_0:179_0:81$ ip community-list expanded c2 permit 2869 ^65000:4_0:179_0:82$ ip community-list expanded c2 permit 2870 ^65000:4_0:179_0:83$ ip community-list expanded c2 permit 2871 ^65000:4_0:179_0:84$ ip community-list expanded c2 permit 2872 ^65000:4_0:179_0:85$ ip community-list expanded c2 permit 2873 ^65000:4_0:179_0:86$ ip community-list expanded c2 permit 2874 ^65000:4_0:179_0:87$ ip community-list expanded c2 permit 2875 ^65000:4_0:179_0:88$ ip community-list expanded c2 permit 2876 ^65000:4_0:179_0:89$ ip community-list expanded c2 permit 2877 ^65000:3_0:179_0:177$ ip community-list expanded c2 permit 2878 ^65000:4_0:180_0:61$ ip community-list expanded c2 permit 2879 ^65000:4_0:180_0:62$ ip community-list expanded c2 permit 2880 ^65000:4_0:180_0:63$ ip community-list expanded c2 permit 2881 ^65000:4_0:180_0:64$ ip community-list expanded c2 permit 2882 ^65000:4_0:180_0:65$ ip community-list expanded c2 permit 2883 ^65000:4_0:180_0:66$ ip community-list expanded c2 permit 2884 ^65000:4_0:180_0:67$ ip community-list expanded c2 permit 2885 ^65000:4_0:180_0:68$ ip community-list expanded c2 permit 2886 ^65000:4_0:180_0:69$ ip community-list expanded c2 permit 2887 ^65000:4_0:180_0:70$ ip community-list expanded c2 permit 2888 ^65000:4_0:180_0:71$ ip community-list expanded c2 permit 2889 ^65000:4_0:180_0:72$ ip community-list expanded c2 permit 2890 ^65000:4_0:180_0:73$ ip community-list expanded c2 permit 2891 ^65000:4_0:180_0:74$ ip community-list expanded c2 permit 2892 ^65000:4_0:180_0:75$ ip community-list expanded c2 permit 2893 ^65000:4_0:180_0:76$ ip community-list expanded c2 permit 2894 ^65000:4_0:180_0:77$ ip community-list expanded c2 permit 2895 ^65000:4_0:180_0:78$ ip community-list expanded c2 permit 2896 ^65000:4_0:180_0:79$ ip community-list expanded c2 permit 2897 ^65000:4_0:180_0:80$ ip community-list expanded c2 permit 2898 ^65000:4_0:180_0:81$ ip community-list expanded c2 permit 2899 ^65000:4_0:180_0:82$ ip community-list expanded c2 permit 2900 ^65000:4_0:180_0:83$ ip community-list expanded c2 permit 2901 ^65000:4_0:180_0:84$ ip community-list expanded c2 permit 2902 ^65000:4_0:180_0:85$ ip community-list expanded c2 permit 2903 ^65000:4_0:180_0:86$ ip community-list expanded c2 permit 2904 ^65000:4_0:180_0:87$ ip community-list expanded c2 permit 2905 ^65000:4_0:180_0:88$ ip community-list expanded c2 permit 2906 ^65000:4_0:180_0:89$ ip community-list expanded c2 permit 2907 ^65000:4_0:180_0:90$ ip community-list expanded c2 permit 2908 ^65000:3_0:180_0:178$ ip community-list expanded c2 permit 2909 ^65000:4_0:181_0:61$ ip community-list expanded c2 permit 2910 ^65000:4_0:181_0:62$ ip community-list expanded c2 permit 2911 ^65000:4_0:181_0:63$ ip community-list expanded c2 permit 2912 ^65000:4_0:181_0:64$ ip community-list expanded c2 permit 2913 ^65000:4_0:181_0:65$ ip community-list expanded c2 permit 2914 ^65000:4_0:181_0:66$ ip community-list expanded c2 permit 2915 ^65000:4_0:181_0:67$ ip community-list expanded c2 permit 2916 ^65000:4_0:181_0:68$ ip community-list expanded c2 permit 2917 ^65000:4_0:181_0:69$ ip community-list expanded c2 permit 2918 ^65000:4_0:181_0:70$ ip community-list expanded c2 permit 2919 ^65000:4_0:181_0:71$ ip community-list expanded c2 permit 2920 ^65000:4_0:181_0:72$ ip community-list expanded c2 permit 2921 ^65000:4_0:181_0:73$ ip community-list expanded c2 permit 2922 ^65000:4_0:181_0:74$ ip community-list expanded c2 permit 2923 ^65000:4_0:181_0:75$ ip community-list expanded c2 permit 2924 ^65000:4_0:181_0:76$ ip community-list expanded c2 permit 2925 ^65000:4_0:181_0:77$ ip community-list expanded c2 permit 2926 ^65000:4_0:181_0:78$ ip community-list expanded c2 permit 2927 ^65000:4_0:181_0:79$ ip community-list expanded c2 permit 2928 ^65000:4_0:181_0:80$ ip community-list expanded c2 permit 2929 ^65000:4_0:181_0:81$ ip community-list expanded c2 permit 2930 ^65000:4_0:181_0:82$ ip community-list expanded c2 permit 2931 ^65000:4_0:181_0:83$ ip community-list expanded c2 permit 2932 ^65000:4_0:181_0:84$ ip community-list expanded c2 permit 2933 ^65000:4_0:181_0:85$ ip community-list expanded c2 permit 2934 ^65000:4_0:181_0:86$ ip community-list expanded c2 permit 2935 ^65000:4_0:181_0:87$ ip community-list expanded c2 permit 2936 ^65000:4_0:181_0:88$ ip community-list expanded c2 permit 2937 ^65000:4_0:181_0:89$ ip community-list expanded c2 permit 2938 ^65000:4_0:181_0:90$ ip community-list expanded c2 permit 2939 ^65000:3_0:181_0:179$ ip community-list expanded c2 permit 2940 ^65000:4_0:182_0:61$ ip community-list expanded c2 permit 2941 ^65000:4_0:182_0:62$ ip community-list expanded c2 permit 2942 ^65000:4_0:182_0:63$ ip community-list expanded c2 permit 2943 ^65000:4_0:182_0:64$ ip community-list expanded c2 permit 2944 ^65000:4_0:182_0:65$ ip community-list expanded c2 permit 2945 ^65000:4_0:182_0:66$ ip community-list expanded c2 permit 2946 ^65000:4_0:182_0:67$ ip community-list expanded c2 permit 2947 ^65000:4_0:182_0:68$ ip community-list expanded c2 permit 2948 ^65000:4_0:182_0:69$ ip community-list expanded c2 permit 2949 ^65000:4_0:182_0:70$ ip community-list expanded c2 permit 2950 ^65000:4_0:182_0:71$ ip community-list expanded c2 permit 2951 ^65000:4_0:182_0:72$ ip community-list expanded c2 permit 2952 ^65000:4_0:182_0:73$ ip community-list expanded c2 permit 2953 ^65000:4_0:182_0:74$ ip community-list expanded c2 permit 2954 ^65000:4_0:182_0:75$ ip community-list expanded c2 permit 2955 ^65000:4_0:182_0:76$ ip community-list expanded c2 permit 2956 ^65000:4_0:182_0:77$ ip community-list expanded c2 permit 2957 ^65000:4_0:182_0:78$ ip community-list expanded c2 permit 2958 ^65000:4_0:182_0:79$ ip community-list expanded c2 permit 2959 ^65000:4_0:182_0:80$ ip community-list expanded c2 permit 2960 ^65000:4_0:182_0:81$ ip community-list expanded c2 permit 2961 ^65000:4_0:182_0:82$ ip community-list expanded c2 permit 2962 ^65000:4_0:182_0:83$ ip community-list expanded c2 permit 2963 ^65000:4_0:182_0:84$ ip community-list expanded c2 permit 2964 ^65000:4_0:182_0:85$ ip community-list expanded c2 permit 2965 ^65000:4_0:182_0:86$ ip community-list expanded c2 permit 2966 ^65000:4_0:182_0:87$ ip community-list expanded c2 permit 2967 ^65000:4_0:182_0:88$ ip community-list expanded c2 permit 2968 ^65000:4_0:182_0:89$ ip community-list expanded c2 permit 2969 ^65000:4_0:182_0:90$ ip community-list expanded c2 permit 2970 ^65000:4_0:182_0:91$ ip community-list expanded c2 permit 2971 ^65000:3_0:182_0:180$ ip community-list expanded c2 permit 2972 ^65000:4_0:183_0:62$ ip community-list expanded c2 permit 2973 ^65000:4_0:183_0:63$ ip community-list expanded c2 permit 2974 ^65000:4_0:183_0:64$ ip community-list expanded c2 permit 2975 ^65000:4_0:183_0:65$ ip community-list expanded c2 permit 2976 ^65000:4_0:183_0:66$ ip community-list expanded c2 permit 2977 ^65000:4_0:183_0:67$ ip community-list expanded c2 permit 2978 ^65000:4_0:183_0:68$ ip community-list expanded c2 permit 2979 ^65000:4_0:183_0:69$ ip community-list expanded c2 permit 2980 ^65000:4_0:183_0:70$ ip community-list expanded c2 permit 2981 ^65000:4_0:183_0:71$ ip community-list expanded c2 permit 2982 ^65000:4_0:183_0:72$ ip community-list expanded c2 permit 2983 ^65000:4_0:183_0:73$ ip community-list expanded c2 permit 2984 ^65000:4_0:183_0:74$ ip community-list expanded c2 permit 2985 ^65000:4_0:183_0:75$ ip community-list expanded c2 permit 2986 ^65000:4_0:183_0:76$ ip community-list expanded c2 permit 2987 ^65000:4_0:183_0:77$ ip community-list expanded c2 permit 2988 ^65000:4_0:183_0:78$ ip community-list expanded c2 permit 2989 ^65000:4_0:183_0:79$ ip community-list expanded c2 permit 2990 ^65000:4_0:183_0:80$ ip community-list expanded c2 permit 2991 ^65000:4_0:183_0:81$ ip community-list expanded c2 permit 2992 ^65000:4_0:183_0:82$ ip community-list expanded c2 permit 2993 ^65000:4_0:183_0:83$ ip community-list expanded c2 permit 2994 ^65000:4_0:183_0:84$ ip community-list expanded c2 permit 2995 ^65000:4_0:183_0:85$ ip community-list expanded c2 permit 2996 ^65000:4_0:183_0:86$ ip community-list expanded c2 permit 2997 ^65000:4_0:183_0:87$ ip community-list expanded c2 permit 2998 ^65000:4_0:183_0:88$ ip community-list expanded c2 permit 2999 ^65000:4_0:183_0:89$ ip community-list expanded c2 permit 3000 ^65000:4_0:183_0:90$ ip community-list expanded c2 permit 3001 ^65000:4_0:183_0:91$ ip community-list expanded c2 permit 3002 ^65000:3_0:183_0:181$ ip community-list expanded c2 permit 3003 ^65000:4_0:184_0:62$ ip community-list expanded c2 permit 3004 ^65000:4_0:184_0:63$ ip community-list expanded c2 permit 3005 ^65000:4_0:184_0:64$ ip community-list expanded c2 permit 3006 ^65000:4_0:184_0:65$ ip community-list expanded c2 permit 3007 ^65000:4_0:184_0:66$ ip community-list expanded c2 permit 3008 ^65000:4_0:184_0:67$ ip community-list expanded c2 permit 3009 ^65000:4_0:184_0:68$ ip community-list expanded c2 permit 3010 ^65000:4_0:184_0:69$ ip community-list expanded c2 permit 3011 ^65000:4_0:184_0:70$ ip community-list expanded c2 permit 3012 ^65000:4_0:184_0:71$ ip community-list expanded c2 permit 3013 ^65000:4_0:184_0:72$ ip community-list expanded c2 permit 3014 ^65000:4_0:184_0:73$ ip community-list expanded c2 permit 3015 ^65000:4_0:184_0:74$ ip community-list expanded c2 permit 3016 ^65000:4_0:184_0:75$ ip community-list expanded c2 permit 3017 ^65000:4_0:184_0:76$ ip community-list expanded c2 permit 3018 ^65000:4_0:184_0:77$ ip community-list expanded c2 permit 3019 ^65000:4_0:184_0:78$ ip community-list expanded c2 permit 3020 ^65000:4_0:184_0:79$ ip community-list expanded c2 permit 3021 ^65000:4_0:184_0:80$ ip community-list expanded c2 permit 3022 ^65000:4_0:184_0:81$ ip community-list expanded c2 permit 3023 ^65000:4_0:184_0:82$ ip community-list expanded c2 permit 3024 ^65000:4_0:184_0:83$ ip community-list expanded c2 permit 3025 ^65000:4_0:184_0:84$ ip community-list expanded c2 permit 3026 ^65000:4_0:184_0:85$ ip community-list expanded c2 permit 3027 ^65000:4_0:184_0:86$ ip community-list expanded c2 permit 3028 ^65000:4_0:184_0:87$ ip community-list expanded c2 permit 3029 ^65000:4_0:184_0:88$ ip community-list expanded c2 permit 3030 ^65000:4_0:184_0:89$ ip community-list expanded c2 permit 3031 ^65000:4_0:184_0:90$ ip community-list expanded c2 permit 3032 ^65000:4_0:184_0:91$ ip community-list expanded c2 permit 3033 ^65000:4_0:184_0:92$ ip community-list expanded c2 permit 3034 ^65000:3_0:184_0:182$ ip community-list expanded c2 permit 3035 ^65000:4_0:185_0:62$ ip community-list expanded c2 permit 3036 ^65000:4_0:185_0:63$ ip community-list expanded c2 permit 3037 ^65000:4_0:185_0:64$ ip community-list expanded c2 permit 3038 ^65000:4_0:185_0:65$ ip community-list expanded c2 permit 3039 ^65000:4_0:185_0:66$ ip community-list expanded c2 permit 3040 ^65000:4_0:185_0:67$ ip community-list expanded c2 permit 3041 ^65000:4_0:185_0:68$ ip community-list expanded c2 permit 3042 ^65000:4_0:185_0:69$ ip community-list expanded c2 permit 3043 ^65000:4_0:185_0:70$ ip community-list expanded c2 permit 3044 ^65000:4_0:185_0:71$ ip community-list expanded c2 permit 3045 ^65000:4_0:185_0:72$ ip community-list expanded c2 permit 3046 ^65000:4_0:185_0:73$ ip community-list expanded c2 permit 3047 ^65000:4_0:185_0:74$ ip community-list expanded c2 permit 3048 ^65000:4_0:185_0:75$ ip community-list expanded c2 permit 3049 ^65000:4_0:185_0:76$ ip community-list expanded c2 permit 3050 ^65000:4_0:185_0:77$ ip community-list expanded c2 permit 3051 ^65000:4_0:185_0:78$ ip community-list expanded c2 permit 3052 ^65000:4_0:185_0:79$ ip community-list expanded c2 permit 3053 ^65000:4_0:185_0:80$ ip community-list expanded c2 permit 3054 ^65000:4_0:185_0:81$ ip community-list expanded c2 permit 3055 ^65000:4_0:185_0:82$ ip community-list expanded c2 permit 3056 ^65000:4_0:185_0:83$ ip community-list expanded c2 permit 3057 ^65000:4_0:185_0:84$ ip community-list expanded c2 permit 3058 ^65000:4_0:185_0:85$ ip community-list expanded c2 permit 3059 ^65000:4_0:185_0:86$ ip community-list expanded c2 permit 3060 ^65000:4_0:185_0:87$ ip community-list expanded c2 permit 3061 ^65000:4_0:185_0:88$ ip community-list expanded c2 permit 3062 ^65000:4_0:185_0:89$ ip community-list expanded c2 permit 3063 ^65000:4_0:185_0:90$ ip community-list expanded c2 permit 3064 ^65000:4_0:185_0:91$ ip community-list expanded c2 permit 3065 ^65000:4_0:185_0:92$ ip community-list expanded c2 permit 3066 ^65000:3_0:185_0:183$ ip community-list expanded c2 permit 3067 ^65000:4_0:186_0:63$ ip community-list expanded c2 permit 3068 ^65000:4_0:186_0:64$ ip community-list expanded c2 permit 3069 ^65000:4_0:186_0:65$ ip community-list expanded c2 permit 3070 ^65000:4_0:186_0:66$ ip community-list expanded c2 permit 3071 ^65000:4_0:186_0:67$ ip community-list expanded c2 permit 3072 ^65000:4_0:186_0:68$ ip community-list expanded c2 permit 3073 ^65000:4_0:186_0:69$ ip community-list expanded c2 permit 3074 ^65000:4_0:186_0:70$ ip community-list expanded c2 permit 3075 ^65000:4_0:186_0:71$ ip community-list expanded c2 permit 3076 ^65000:4_0:186_0:72$ ip community-list expanded c2 permit 3077 ^65000:4_0:186_0:73$ ip community-list expanded c2 permit 3078 ^65000:4_0:186_0:74$ ip community-list expanded c2 permit 3079 ^65000:4_0:186_0:75$ ip community-list expanded c2 permit 3080 ^65000:4_0:186_0:76$ ip community-list expanded c2 permit 3081 ^65000:4_0:186_0:77$ ip community-list expanded c2 permit 3082 ^65000:4_0:186_0:78$ ip community-list expanded c2 permit 3083 ^65000:4_0:186_0:79$ ip community-list expanded c2 permit 3084 ^65000:4_0:186_0:80$ ip community-list expanded c2 permit 3085 ^65000:4_0:186_0:81$ ip community-list expanded c2 permit 3086 ^65000:4_0:186_0:82$ ip community-list expanded c2 permit 3087 ^65000:4_0:186_0:83$ ip community-list expanded c2 permit 3088 ^65000:4_0:186_0:84$ ip community-list expanded c2 permit 3089 ^65000:4_0:186_0:85$ ip community-list expanded c2 permit 3090 ^65000:4_0:186_0:86$ ip community-list expanded c2 permit 3091 ^65000:4_0:186_0:87$ ip community-list expanded c2 permit 3092 ^65000:4_0:186_0:88$ ip community-list expanded c2 permit 3093 ^65000:4_0:186_0:89$ ip community-list expanded c2 permit 3094 ^65000:4_0:186_0:90$ ip community-list expanded c2 permit 3095 ^65000:4_0:186_0:91$ ip community-list expanded c2 permit 3096 ^65000:4_0:186_0:92$ ip community-list expanded c2 permit 3097 ^65000:4_0:186_0:93$ ip community-list expanded c2 permit 3098 ^65000:3_0:186_0:184$ ip community-list expanded c2 permit 3099 ^65000:4_0:187_0:63$ ip community-list expanded c2 permit 3100 ^65000:4_0:187_0:64$ ip community-list expanded c2 permit 3101 ^65000:4_0:187_0:65$ ip community-list expanded c2 permit 3102 ^65000:4_0:187_0:66$ ip community-list expanded c2 permit 3103 ^65000:4_0:187_0:67$ ip community-list expanded c2 permit 3104 ^65000:4_0:187_0:68$ ip community-list expanded c2 permit 3105 ^65000:4_0:187_0:69$ ip community-list expanded c2 permit 3106 ^65000:4_0:187_0:70$ ip community-list expanded c2 permit 3107 ^65000:4_0:187_0:71$ ip community-list expanded c2 permit 3108 ^65000:4_0:187_0:72$ ip community-list expanded c2 permit 3109 ^65000:4_0:187_0:73$ ip community-list expanded c2 permit 3110 ^65000:4_0:187_0:74$ ip community-list expanded c2 permit 3111 ^65000:4_0:187_0:75$ ip community-list expanded c2 permit 3112 ^65000:4_0:187_0:76$ ip community-list expanded c2 permit 3113 ^65000:4_0:187_0:77$ ip community-list expanded c2 permit 3114 ^65000:4_0:187_0:78$ ip community-list expanded c2 permit 3115 ^65000:4_0:187_0:79$ ip community-list expanded c2 permit 3116 ^65000:4_0:187_0:80$ ip community-list expanded c2 permit 3117 ^65000:4_0:187_0:81$ ip community-list expanded c2 permit 3118 ^65000:4_0:187_0:82$ ip community-list expanded c2 permit 3119 ^65000:4_0:187_0:83$ ip community-list expanded c2 permit 3120 ^65000:4_0:187_0:84$ ip community-list expanded c2 permit 3121 ^65000:4_0:187_0:85$ ip community-list expanded c2 permit 3122 ^65000:4_0:187_0:86$ ip community-list expanded c2 permit 3123 ^65000:4_0:187_0:87$ ip community-list expanded c2 permit 3124 ^65000:4_0:187_0:88$ ip community-list expanded c2 permit 3125 ^65000:4_0:187_0:89$ ip community-list expanded c2 permit 3126 ^65000:4_0:187_0:90$ ip community-list expanded c2 permit 3127 ^65000:4_0:187_0:91$ ip community-list expanded c2 permit 3128 ^65000:4_0:187_0:92$ ip community-list expanded c2 permit 3129 ^65000:4_0:187_0:93$ ip community-list expanded c2 permit 3130 ^65000:3_0:187_0:185$ ip community-list expanded c2 permit 3131 ^65000:4_0:188_0:63$ ip community-list expanded c2 permit 3132 ^65000:4_0:188_0:64$ ip community-list expanded c2 permit 3133 ^65000:4_0:188_0:65$ ip community-list expanded c2 permit 3134 ^65000:4_0:188_0:66$ ip community-list expanded c2 permit 3135 ^65000:4_0:188_0:67$ ip community-list expanded c2 permit 3136 ^65000:4_0:188_0:68$ ip community-list expanded c2 permit 3137 ^65000:4_0:188_0:69$ ip community-list expanded c2 permit 3138 ^65000:4_0:188_0:70$ ip community-list expanded c2 permit 3139 ^65000:4_0:188_0:71$ ip community-list expanded c2 permit 3140 ^65000:4_0:188_0:72$ ip community-list expanded c2 permit 3141 ^65000:4_0:188_0:73$ ip community-list expanded c2 permit 3142 ^65000:4_0:188_0:74$ ip community-list expanded c2 permit 3143 ^65000:4_0:188_0:75$ ip community-list expanded c2 permit 3144 ^65000:4_0:188_0:76$ ip community-list expanded c2 permit 3145 ^65000:4_0:188_0:77$ ip community-list expanded c2 permit 3146 ^65000:4_0:188_0:78$ ip community-list expanded c2 permit 3147 ^65000:4_0:188_0:79$ ip community-list expanded c2 permit 3148 ^65000:4_0:188_0:80$ ip community-list expanded c2 permit 3149 ^65000:4_0:188_0:81$ ip community-list expanded c2 permit 3150 ^65000:4_0:188_0:82$ ip community-list expanded c2 permit 3151 ^65000:4_0:188_0:83$ ip community-list expanded c2 permit 3152 ^65000:4_0:188_0:84$ ip community-list expanded c2 permit 3153 ^65000:4_0:188_0:85$ ip community-list expanded c2 permit 3154 ^65000:4_0:188_0:86$ ip community-list expanded c2 permit 3155 ^65000:4_0:188_0:87$ ip community-list expanded c2 permit 3156 ^65000:4_0:188_0:88$ ip community-list expanded c2 permit 3157 ^65000:4_0:188_0:89$ ip community-list expanded c2 permit 3158 ^65000:4_0:188_0:90$ ip community-list expanded c2 permit 3159 ^65000:4_0:188_0:91$ ip community-list expanded c2 permit 3160 ^65000:4_0:188_0:92$ ip community-list expanded c2 permit 3161 ^65000:4_0:188_0:93$ ip community-list expanded c2 permit 3162 ^65000:4_0:188_0:94$ ip community-list expanded c2 permit 3163 ^65000:3_0:188_0:186$ ip community-list expanded c2 permit 3164 ^65000:4_0:189_0:64$ ip community-list expanded c2 permit 3165 ^65000:4_0:189_0:65$ ip community-list expanded c2 permit 3166 ^65000:4_0:189_0:66$ ip community-list expanded c2 permit 3167 ^65000:4_0:189_0:67$ ip community-list expanded c2 permit 3168 ^65000:4_0:189_0:68$ ip community-list expanded c2 permit 3169 ^65000:4_0:189_0:69$ ip community-list expanded c2 permit 3170 ^65000:4_0:189_0:70$ ip community-list expanded c2 permit 3171 ^65000:4_0:189_0:71$ ip community-list expanded c2 permit 3172 ^65000:4_0:189_0:72$ ip community-list expanded c2 permit 3173 ^65000:4_0:189_0:73$ ip community-list expanded c2 permit 3174 ^65000:4_0:189_0:74$ ip community-list expanded c2 permit 3175 ^65000:4_0:189_0:75$ ip community-list expanded c2 permit 3176 ^65000:4_0:189_0:76$ ip community-list expanded c2 permit 3177 ^65000:4_0:189_0:77$ ip community-list expanded c2 permit 3178 ^65000:4_0:189_0:78$ ip community-list expanded c2 permit 3179 ^65000:4_0:189_0:79$ ip community-list expanded c2 permit 3180 ^65000:4_0:189_0:80$ ip community-list expanded c2 permit 3181 ^65000:4_0:189_0:81$ ip community-list expanded c2 permit 3182 ^65000:4_0:189_0:82$ ip community-list expanded c2 permit 3183 ^65000:4_0:189_0:83$ ip community-list expanded c2 permit 3184 ^65000:4_0:189_0:84$ ip community-list expanded c2 permit 3185 ^65000:4_0:189_0:85$ ip community-list expanded c2 permit 3186 ^65000:4_0:189_0:86$ ip community-list expanded c2 permit 3187 ^65000:4_0:189_0:87$ ip community-list expanded c2 permit 3188 ^65000:4_0:189_0:88$ ip community-list expanded c2 permit 3189 ^65000:4_0:189_0:89$ ip community-list expanded c2 permit 3190 ^65000:4_0:189_0:90$ ip community-list expanded c2 permit 3191 ^65000:4_0:189_0:91$ ip community-list expanded c2 permit 3192 ^65000:4_0:189_0:92$ ip community-list expanded c2 permit 3193 ^65000:4_0:189_0:93$ ip community-list expanded c2 permit 3194 ^65000:4_0:189_0:94$ ip community-list expanded c2 permit 3195 ^65000:3_0:189_0:187$ ip community-list expanded c2 permit 3196 ^65000:4_0:190_0:64$ ip community-list expanded c2 permit 3197 ^65000:4_0:190_0:65$ ip community-list expanded c2 permit 3198 ^65000:4_0:190_0:66$ ip community-list expanded c2 permit 3199 ^65000:4_0:190_0:67$ ip community-list expanded c2 permit 3200 ^65000:4_0:190_0:68$ ip community-list expanded c2 permit 3201 ^65000:4_0:190_0:69$ ip community-list expanded c2 permit 3202 ^65000:4_0:190_0:70$ ip community-list expanded c2 permit 3203 ^65000:4_0:190_0:71$ ip community-list expanded c2 permit 3204 ^65000:4_0:190_0:72$ ip community-list expanded c2 permit 3205 ^65000:4_0:190_0:73$ ip community-list expanded c2 permit 3206 ^65000:4_0:190_0:74$ ip community-list expanded c2 permit 3207 ^65000:4_0:190_0:75$ ip community-list expanded c2 permit 3208 ^65000:4_0:190_0:76$ ip community-list expanded c2 permit 3209 ^65000:4_0:190_0:77$ ip community-list expanded c2 permit 3210 ^65000:4_0:190_0:78$ ip community-list expanded c2 permit 3211 ^65000:4_0:190_0:79$ ip community-list expanded c2 permit 3212 ^65000:4_0:190_0:80$ ip community-list expanded c2 permit 3213 ^65000:4_0:190_0:81$ ip community-list expanded c2 permit 3214 ^65000:4_0:190_0:82$ ip community-list expanded c2 permit 3215 ^65000:4_0:190_0:83$ ip community-list expanded c2 permit 3216 ^65000:4_0:190_0:84$ ip community-list expanded c2 permit 3217 ^65000:4_0:190_0:85$ ip community-list expanded c2 permit 3218 ^65000:4_0:190_0:86$ ip community-list expanded c2 permit 3219 ^65000:4_0:190_0:87$ ip community-list expanded c2 permit 3220 ^65000:4_0:190_0:88$ ip community-list expanded c2 permit 3221 ^65000:4_0:190_0:89$ ip community-list expanded c2 permit 3222 ^65000:4_0:190_0:90$ ip community-list expanded c2 permit 3223 ^65000:4_0:190_0:91$ ip community-list expanded c2 permit 3224 ^65000:4_0:190_0:92$ ip community-list expanded c2 permit 3225 ^65000:4_0:190_0:93$ ip community-list expanded c2 permit 3226 ^65000:4_0:190_0:94$ ip community-list expanded c2 permit 3227 ^65000:4_0:190_0:95$ ip community-list expanded c2 permit 3228 ^65000:3_0:190_0:188$ ip community-list expanded c2 permit 3229 ^65000:4_0:191_0:64$ ip community-list expanded c2 permit 3230 ^65000:4_0:191_0:65$ ip community-list expanded c2 permit 3231 ^65000:4_0:191_0:66$ ip community-list expanded c2 permit 3232 ^65000:4_0:191_0:67$ ip community-list expanded c2 permit 3233 ^65000:4_0:191_0:68$ ip community-list expanded c2 permit 3234 ^65000:4_0:191_0:69$ ip community-list expanded c2 permit 3235 ^65000:4_0:191_0:70$ ip community-list expanded c2 permit 3236 ^65000:4_0:191_0:71$ ip community-list expanded c2 permit 3237 ^65000:4_0:191_0:72$ ip community-list expanded c2 permit 3238 ^65000:4_0:191_0:73$ ip community-list expanded c2 permit 3239 ^65000:4_0:191_0:74$ ip community-list expanded c2 permit 3240 ^65000:4_0:191_0:75$ ip community-list expanded c2 permit 3241 ^65000:4_0:191_0:76$ ip community-list expanded c2 permit 3242 ^65000:4_0:191_0:77$ ip community-list expanded c2 permit 3243 ^65000:4_0:191_0:78$ ip community-list expanded c2 permit 3244 ^65000:4_0:191_0:79$ ip community-list expanded c2 permit 3245 ^65000:4_0:191_0:80$ ip community-list expanded c2 permit 3246 ^65000:4_0:191_0:81$ ip community-list expanded c2 permit 3247 ^65000:4_0:191_0:82$ ip community-list expanded c2 permit 3248 ^65000:4_0:191_0:83$ ip community-list expanded c2 permit 3249 ^65000:4_0:191_0:84$ ip community-list expanded c2 permit 3250 ^65000:4_0:191_0:85$ ip community-list expanded c2 permit 3251 ^65000:4_0:191_0:86$ ip community-list expanded c2 permit 3252 ^65000:4_0:191_0:87$ ip community-list expanded c2 permit 3253 ^65000:4_0:191_0:88$ ip community-list expanded c2 permit 3254 ^65000:4_0:191_0:89$ ip community-list expanded c2 permit 3255 ^65000:4_0:191_0:90$ ip community-list expanded c2 permit 3256 ^65000:4_0:191_0:91$ ip community-list expanded c2 permit 3257 ^65000:4_0:191_0:92$ ip community-list expanded c2 permit 3258 ^65000:4_0:191_0:93$ ip community-list expanded c2 permit 3259 ^65000:4_0:191_0:94$ ip community-list expanded c2 permit 3260 ^65000:4_0:191_0:95$ ip community-list expanded c2 permit 3261 ^65000:3_0:191_0:189$ ip community-list expanded c2 permit 3262 ^65000:4_0:192_0:65$ ip community-list expanded c2 permit 3263 ^65000:4_0:192_0:66$ ip community-list expanded c2 permit 3264 ^65000:4_0:192_0:67$ ip community-list expanded c2 permit 3265 ^65000:4_0:192_0:68$ ip community-list expanded c2 permit 3266 ^65000:4_0:192_0:69$ ip community-list expanded c2 permit 3267 ^65000:4_0:192_0:70$ ip community-list expanded c2 permit 3268 ^65000:4_0:192_0:71$ ip community-list expanded c2 permit 3269 ^65000:4_0:192_0:72$ ip community-list expanded c2 permit 3270 ^65000:4_0:192_0:73$ ip community-list expanded c2 permit 3271 ^65000:4_0:192_0:74$ ip community-list expanded c2 permit 3272 ^65000:4_0:192_0:75$ ip community-list expanded c2 permit 3273 ^65000:4_0:192_0:76$ ip community-list expanded c2 permit 3274 ^65000:4_0:192_0:77$ ip community-list expanded c2 permit 3275 ^65000:4_0:192_0:78$ ip community-list expanded c2 permit 3276 ^65000:4_0:192_0:79$ ip community-list expanded c2 permit 3277 ^65000:4_0:192_0:80$ ip community-list expanded c2 permit 3278 ^65000:4_0:192_0:81$ ip community-list expanded c2 permit 3279 ^65000:4_0:192_0:82$ ip community-list expanded c2 permit 3280 ^65000:4_0:192_0:83$ ip community-list expanded c2 permit 3281 ^65000:4_0:192_0:84$ ip community-list expanded c2 permit 3282 ^65000:4_0:192_0:85$ ip community-list expanded c2 permit 3283 ^65000:4_0:192_0:86$ ip community-list expanded c2 permit 3284 ^65000:4_0:192_0:87$ ip community-list expanded c2 permit 3285 ^65000:4_0:192_0:88$ ip community-list expanded c2 permit 3286 ^65000:4_0:192_0:89$ ip community-list expanded c2 permit 3287 ^65000:4_0:192_0:90$ ip community-list expanded c2 permit 3288 ^65000:4_0:192_0:91$ ip community-list expanded c2 permit 3289 ^65000:4_0:192_0:92$ ip community-list expanded c2 permit 3290 ^65000:4_0:192_0:93$ ip community-list expanded c2 permit 3291 ^65000:4_0:192_0:94$ ip community-list expanded c2 permit 3292 ^65000:4_0:192_0:95$ ip community-list expanded c2 permit 3293 ^65000:4_0:192_0:96$ ip community-list expanded c2 permit 3294 ^65000:3_0:192_0:190$ ip community-list expanded c2 permit 3295 ^65000:4_0:193_0:65$ ip community-list expanded c2 permit 3296 ^65000:4_0:193_0:66$ ip community-list expanded c2 permit 3297 ^65000:4_0:193_0:67$ ip community-list expanded c2 permit 3298 ^65000:4_0:193_0:68$ ip community-list expanded c2 permit 3299 ^65000:4_0:193_0:69$ ip community-list expanded c2 permit 3300 ^65000:4_0:193_0:70$ ip community-list expanded c2 permit 3301 ^65000:4_0:193_0:71$ ip community-list expanded c2 permit 3302 ^65000:4_0:193_0:72$ ip community-list expanded c2 permit 3303 ^65000:4_0:193_0:73$ ip community-list expanded c2 permit 3304 ^65000:4_0:193_0:74$ ip community-list expanded c2 permit 3305 ^65000:4_0:193_0:75$ ip community-list expanded c2 permit 3306 ^65000:4_0:193_0:76$ ip community-list expanded c2 permit 3307 ^65000:4_0:193_0:77$ ip community-list expanded c2 permit 3308 ^65000:4_0:193_0:78$ ip community-list expanded c2 permit 3309 ^65000:4_0:193_0:79$ ip community-list expanded c2 permit 3310 ^65000:4_0:193_0:80$ ip community-list expanded c2 permit 3311 ^65000:4_0:193_0:81$ ip community-list expanded c2 permit 3312 ^65000:4_0:193_0:82$ ip community-list expanded c2 permit 3313 ^65000:4_0:193_0:83$ ip community-list expanded c2 permit 3314 ^65000:4_0:193_0:84$ ip community-list expanded c2 permit 3315 ^65000:4_0:193_0:85$ ip community-list expanded c2 permit 3316 ^65000:4_0:193_0:86$ ip community-list expanded c2 permit 3317 ^65000:4_0:193_0:87$ ip community-list expanded c2 permit 3318 ^65000:4_0:193_0:88$ ip community-list expanded c2 permit 3319 ^65000:4_0:193_0:89$ ip community-list expanded c2 permit 3320 ^65000:4_0:193_0:90$ ip community-list expanded c2 permit 3321 ^65000:4_0:193_0:91$ ip community-list expanded c2 permit 3322 ^65000:4_0:193_0:92$ ip community-list expanded c2 permit 3323 ^65000:4_0:193_0:93$ ip community-list expanded c2 permit 3324 ^65000:4_0:193_0:94$ ip community-list expanded c2 permit 3325 ^65000:4_0:193_0:95$ ip community-list expanded c2 permit 3326 ^65000:4_0:193_0:96$ ip community-list expanded c2 permit 3327 ^65000:3_0:193_0:191$ ip community-list expanded c2 permit 3328 ^65000:4_0:194_0:65$ ip community-list expanded c2 permit 3329 ^65000:4_0:194_0:66$ ip community-list expanded c2 permit 3330 ^65000:4_0:194_0:67$ ip community-list expanded c2 permit 3331 ^65000:4_0:194_0:68$ ip community-list expanded c2 permit 3332 ^65000:4_0:194_0:69$ ip community-list expanded c2 permit 3333 ^65000:4_0:194_0:70$ ip community-list expanded c2 permit 3334 ^65000:4_0:194_0:71$ ip community-list expanded c2 permit 3335 ^65000:4_0:194_0:72$ ip community-list expanded c2 permit 3336 ^65000:4_0:194_0:73$ ip community-list expanded c2 permit 3337 ^65000:4_0:194_0:74$ ip community-list expanded c2 permit 3338 ^65000:4_0:194_0:75$ ip community-list expanded c2 permit 3339 ^65000:4_0:194_0:76$ ip community-list expanded c2 permit 3340 ^65000:4_0:194_0:77$ ip community-list expanded c2 permit 3341 ^65000:4_0:194_0:78$ ip community-list expanded c2 permit 3342 ^65000:4_0:194_0:79$ ip community-list expanded c2 permit 3343 ^65000:4_0:194_0:80$ ip community-list expanded c2 permit 3344 ^65000:4_0:194_0:81$ ip community-list expanded c2 permit 3345 ^65000:4_0:194_0:82$ ip community-list expanded c2 permit 3346 ^65000:4_0:194_0:83$ ip community-list expanded c2 permit 3347 ^65000:4_0:194_0:84$ ip community-list expanded c2 permit 3348 ^65000:4_0:194_0:85$ ip community-list expanded c2 permit 3349 ^65000:4_0:194_0:86$ ip community-list expanded c2 permit 3350 ^65000:4_0:194_0:87$ ip community-list expanded c2 permit 3351 ^65000:4_0:194_0:88$ ip community-list expanded c2 permit 3352 ^65000:4_0:194_0:89$ ip community-list expanded c2 permit 3353 ^65000:4_0:194_0:90$ ip community-list expanded c2 permit 3354 ^65000:4_0:194_0:91$ ip community-list expanded c2 permit 3355 ^65000:4_0:194_0:92$ ip community-list expanded c2 permit 3356 ^65000:4_0:194_0:93$ ip community-list expanded c2 permit 3357 ^65000:4_0:194_0:94$ ip community-list expanded c2 permit 3358 ^65000:4_0:194_0:95$ ip community-list expanded c2 permit 3359 ^65000:4_0:194_0:96$ ip community-list expanded c2 permit 3360 ^65000:4_0:194_0:97$ ip community-list expanded c2 permit 3361 ^65000:3_0:194_0:192$ ip community-list expanded c2 permit 3362 ^65000:4_0:195_0:66$ ip community-list expanded c2 permit 3363 ^65000:4_0:195_0:67$ ip community-list expanded c2 permit 3364 ^65000:4_0:195_0:68$ ip community-list expanded c2 permit 3365 ^65000:4_0:195_0:69$ ip community-list expanded c2 permit 3366 ^65000:4_0:195_0:70$ ip community-list expanded c2 permit 3367 ^65000:4_0:195_0:71$ ip community-list expanded c2 permit 3368 ^65000:4_0:195_0:72$ ip community-list expanded c2 permit 3369 ^65000:4_0:195_0:73$ ip community-list expanded c2 permit 3370 ^65000:4_0:195_0:74$ ip community-list expanded c2 permit 3371 ^65000:4_0:195_0:75$ ip community-list expanded c2 permit 3372 ^65000:4_0:195_0:76$ ip community-list expanded c2 permit 3373 ^65000:4_0:195_0:77$ ip community-list expanded c2 permit 3374 ^65000:4_0:195_0:78$ ip community-list expanded c2 permit 3375 ^65000:4_0:195_0:79$ ip community-list expanded c2 permit 3376 ^65000:4_0:195_0:80$ ip community-list expanded c2 permit 3377 ^65000:4_0:195_0:81$ ip community-list expanded c2 permit 3378 ^65000:4_0:195_0:82$ ip community-list expanded c2 permit 3379 ^65000:4_0:195_0:83$ ip community-list expanded c2 permit 3380 ^65000:4_0:195_0:84$ ip community-list expanded c2 permit 3381 ^65000:4_0:195_0:85$ ip community-list expanded c2 permit 3382 ^65000:4_0:195_0:86$ ip community-list expanded c2 permit 3383 ^65000:4_0:195_0:87$ ip community-list expanded c2 permit 3384 ^65000:4_0:195_0:88$ ip community-list expanded c2 permit 3385 ^65000:4_0:195_0:89$ ip community-list expanded c2 permit 3386 ^65000:4_0:195_0:90$ ip community-list expanded c2 permit 3387 ^65000:4_0:195_0:91$ ip community-list expanded c2 permit 3388 ^65000:4_0:195_0:92$ ip community-list expanded c2 permit 3389 ^65000:4_0:195_0:93$ ip community-list expanded c2 permit 3390 ^65000:4_0:195_0:94$ ip community-list expanded c2 permit 3391 ^65000:4_0:195_0:95$ ip community-list expanded c2 permit 3392 ^65000:4_0:195_0:96$ ip community-list expanded c2 permit 3393 ^65000:4_0:195_0:97$ ip community-list expanded c2 permit 3394 ^65000:3_0:195_0:193$ ip community-list expanded c2 permit 3395 ^65000:4_0:196_0:66$ ip community-list expanded c2 permit 3396 ^65000:4_0:196_0:67$ ip community-list expanded c2 permit 3397 ^65000:4_0:196_0:68$ ip community-list expanded c2 permit 3398 ^65000:4_0:196_0:69$ ip community-list expanded c2 permit 3399 ^65000:4_0:196_0:70$ ip community-list expanded c2 permit 3400 ^65000:4_0:196_0:71$ ip community-list expanded c2 permit 3401 ^65000:4_0:196_0:72$ ip community-list expanded c2 permit 3402 ^65000:4_0:196_0:73$ ip community-list expanded c2 permit 3403 ^65000:4_0:196_0:74$ ip community-list expanded c2 permit 3404 ^65000:4_0:196_0:75$ ip community-list expanded c2 permit 3405 ^65000:4_0:196_0:76$ ip community-list expanded c2 permit 3406 ^65000:4_0:196_0:77$ ip community-list expanded c2 permit 3407 ^65000:4_0:196_0:78$ ip community-list expanded c2 permit 3408 ^65000:4_0:196_0:79$ ip community-list expanded c2 permit 3409 ^65000:4_0:196_0:80$ ip community-list expanded c2 permit 3410 ^65000:4_0:196_0:81$ ip community-list expanded c2 permit 3411 ^65000:4_0:196_0:82$ ip community-list expanded c2 permit 3412 ^65000:4_0:196_0:83$ ip community-list expanded c2 permit 3413 ^65000:4_0:196_0:84$ ip community-list expanded c2 permit 3414 ^65000:4_0:196_0:85$ ip community-list expanded c2 permit 3415 ^65000:4_0:196_0:86$ ip community-list expanded c2 permit 3416 ^65000:4_0:196_0:87$ ip community-list expanded c2 permit 3417 ^65000:4_0:196_0:88$ ip community-list expanded c2 permit 3418 ^65000:4_0:196_0:89$ ip community-list expanded c2 permit 3419 ^65000:4_0:196_0:90$ ip community-list expanded c2 permit 3420 ^65000:4_0:196_0:91$ ip community-list expanded c2 permit 3421 ^65000:4_0:196_0:92$ ip community-list expanded c2 permit 3422 ^65000:4_0:196_0:93$ ip community-list expanded c2 permit 3423 ^65000:4_0:196_0:94$ ip community-list expanded c2 permit 3424 ^65000:4_0:196_0:95$ ip community-list expanded c2 permit 3425 ^65000:4_0:196_0:96$ ip community-list expanded c2 permit 3426 ^65000:4_0:196_0:97$ ip community-list expanded c2 permit 3427 ^65000:4_0:196_0:98$ ip community-list expanded c2 permit 3428 ^65000:3_0:196_0:194$ ip community-list expanded c2 permit 3429 ^65000:4_0:197_0:66$ ip community-list expanded c2 permit 3430 ^65000:4_0:197_0:67$ ip community-list expanded c2 permit 3431 ^65000:4_0:197_0:68$ ip community-list expanded c2 permit 3432 ^65000:4_0:197_0:69$ ip community-list expanded c2 permit 3433 ^65000:4_0:197_0:70$ ip community-list expanded c2 permit 3434 ^65000:4_0:197_0:71$ ip community-list expanded c2 permit 3435 ^65000:4_0:197_0:72$ ip community-list expanded c2 permit 3436 ^65000:4_0:197_0:73$ ip community-list expanded c2 permit 3437 ^65000:4_0:197_0:74$ ip community-list expanded c2 permit 3438 ^65000:4_0:197_0:75$ ip community-list expanded c2 permit 3439 ^65000:4_0:197_0:76$ ip community-list expanded c2 permit 3440 ^65000:4_0:197_0:77$ ip community-list expanded c2 permit 3441 ^65000:4_0:197_0:78$ ip community-list expanded c2 permit 3442 ^65000:4_0:197_0:79$ ip community-list expanded c2 permit 3443 ^65000:4_0:197_0:80$ ip community-list expanded c2 permit 3444 ^65000:4_0:197_0:81$ ip community-list expanded c2 permit 3445 ^65000:4_0:197_0:82$ ip community-list expanded c2 permit 3446 ^65000:4_0:197_0:83$ ip community-list expanded c2 permit 3447 ^65000:4_0:197_0:84$ ip community-list expanded c2 permit 3448 ^65000:4_0:197_0:85$ ip community-list expanded c2 permit 3449 ^65000:4_0:197_0:86$ ip community-list expanded c2 permit 3450 ^65000:4_0:197_0:87$ ip community-list expanded c2 permit 3451 ^65000:4_0:197_0:88$ ip community-list expanded c2 permit 3452 ^65000:4_0:197_0:89$ ip community-list expanded c2 permit 3453 ^65000:4_0:197_0:90$ ip community-list expanded c2 permit 3454 ^65000:4_0:197_0:91$ ip community-list expanded c2 permit 3455 ^65000:4_0:197_0:92$ ip community-list expanded c2 permit 3456 ^65000:4_0:197_0:93$ ip community-list expanded c2 permit 3457 ^65000:4_0:197_0:94$ ip community-list expanded c2 permit 3458 ^65000:4_0:197_0:95$ ip community-list expanded c2 permit 3459 ^65000:4_0:197_0:96$ ip community-list expanded c2 permit 3460 ^65000:4_0:197_0:97$ ip community-list expanded c2 permit 3461 ^65000:4_0:197_0:98$ ip community-list expanded c2 permit 3462 ^65000:3_0:197_0:195$ ip community-list expanded c2 permit 3463 ^65000:4_0:198_0:67$ ip community-list expanded c2 permit 3464 ^65000:4_0:198_0:68$ ip community-list expanded c2 permit 3465 ^65000:4_0:198_0:69$ ip community-list expanded c2 permit 3466 ^65000:4_0:198_0:70$ ip community-list expanded c2 permit 3467 ^65000:4_0:198_0:71$ ip community-list expanded c2 permit 3468 ^65000:4_0:198_0:72$ ip community-list expanded c2 permit 3469 ^65000:4_0:198_0:73$ ip community-list expanded c2 permit 3470 ^65000:4_0:198_0:74$ ip community-list expanded c2 permit 3471 ^65000:4_0:198_0:75$ ip community-list expanded c2 permit 3472 ^65000:4_0:198_0:76$ ip community-list expanded c2 permit 3473 ^65000:4_0:198_0:77$ ip community-list expanded c2 permit 3474 ^65000:4_0:198_0:78$ ip community-list expanded c2 permit 3475 ^65000:4_0:198_0:79$ ip community-list expanded c2 permit 3476 ^65000:4_0:198_0:80$ ip community-list expanded c2 permit 3477 ^65000:4_0:198_0:81$ ip community-list expanded c2 permit 3478 ^65000:4_0:198_0:82$ ip community-list expanded c2 permit 3479 ^65000:4_0:198_0:83$ ip community-list expanded c2 permit 3480 ^65000:4_0:198_0:84$ ip community-list expanded c2 permit 3481 ^65000:4_0:198_0:85$ ip community-list expanded c2 permit 3482 ^65000:4_0:198_0:86$ ip community-list expanded c2 permit 3483 ^65000:4_0:198_0:87$ ip community-list expanded c2 permit 3484 ^65000:4_0:198_0:88$ ip community-list expanded c2 permit 3485 ^65000:4_0:198_0:89$ ip community-list expanded c2 permit 3486 ^65000:4_0:198_0:90$ ip community-list expanded c2 permit 3487 ^65000:4_0:198_0:91$ ip community-list expanded c2 permit 3488 ^65000:4_0:198_0:92$ ip community-list expanded c2 permit 3489 ^65000:4_0:198_0:93$ ip community-list expanded c2 permit 3490 ^65000:4_0:198_0:94$ ip community-list expanded c2 permit 3491 ^65000:4_0:198_0:95$ ip community-list expanded c2 permit 3492 ^65000:4_0:198_0:96$ ip community-list expanded c2 permit 3493 ^65000:4_0:198_0:97$ ip community-list expanded c2 permit 3494 ^65000:4_0:198_0:98$ ip community-list expanded c2 permit 3495 ^65000:4_0:198_0:99$ ip community-list expanded c2 permit 3496 ^65000:3_0:198_0:196$ ip community-list expanded c2 permit 3497 ^65000:4_0:199_0:67$ ip community-list expanded c2 permit 3498 ^65000:4_0:199_0:68$ ip community-list expanded c2 permit 3499 ^65000:4_0:199_0:69$ ip community-list expanded c2 permit 3500 ^65000:4_0:199_0:70$ ip community-list expanded c2 permit 3501 ^65000:4_0:199_0:71$ ip community-list expanded c2 permit 3502 ^65000:4_0:199_0:72$ ip community-list expanded c2 permit 3503 ^65000:4_0:199_0:73$ ip community-list expanded c2 permit 3504 ^65000:4_0:199_0:74$ ip community-list expanded c2 permit 3505 ^65000:4_0:199_0:75$ ip community-list expanded c2 permit 3506 ^65000:4_0:199_0:76$ ip community-list expanded c2 permit 3507 ^65000:4_0:199_0:77$ ip community-list expanded c2 permit 3508 ^65000:4_0:199_0:78$ ip community-list expanded c2 permit 3509 ^65000:4_0:199_0:79$ ip community-list expanded c2 permit 3510 ^65000:4_0:199_0:80$ ip community-list expanded c2 permit 3511 ^65000:4_0:199_0:81$ ip community-list expanded c2 permit 3512 ^65000:4_0:199_0:82$ ip community-list expanded c2 permit 3513 ^65000:4_0:199_0:83$ ip community-list expanded c2 permit 3514 ^65000:4_0:199_0:84$ ip community-list expanded c2 permit 3515 ^65000:4_0:199_0:85$ ip community-list expanded c2 permit 3516 ^65000:4_0:199_0:86$ ip community-list expanded c2 permit 3517 ^65000:4_0:199_0:87$ ip community-list expanded c2 permit 3518 ^65000:4_0:199_0:88$ ip community-list expanded c2 permit 3519 ^65000:4_0:199_0:89$ ip community-list expanded c2 permit 3520 ^65000:4_0:199_0:90$ ip community-list expanded c2 permit 3521 ^65000:4_0:199_0:91$ ip community-list expanded c2 permit 3522 ^65000:4_0:199_0:92$ ip community-list expanded c2 permit 3523 ^65000:4_0:199_0:93$ ip community-list expanded c2 permit 3524 ^65000:4_0:199_0:94$ ip community-list expanded c2 permit 3525 ^65000:4_0:199_0:95$ ip community-list expanded c2 permit 3526 ^65000:4_0:199_0:96$ ip community-list expanded c2 permit 3527 ^65000:4_0:199_0:97$ ip community-list expanded c2 permit 3528 ^65000:4_0:199_0:98$ ip community-list expanded c2 permit 3529 ^65000:4_0:199_0:99$ ip community-list expanded c2 permit 3530 ^65000:3_0:199_0:197$ ip community-list expanded c2 permit 3531 ^65000:4_0:200_0:67$ ip community-list expanded c2 permit 3532 ^65000:4_0:200_0:68$ ip community-list expanded c2 permit 3533 ^65000:4_0:200_0:69$ ip community-list expanded c2 permit 3534 ^65000:4_0:200_0:70$ ip community-list expanded c2 permit 3535 ^65000:4_0:200_0:71$ ip community-list expanded c2 permit 3536 ^65000:4_0:200_0:72$ ip community-list expanded c2 permit 3537 ^65000:4_0:200_0:73$ ip community-list expanded c2 permit 3538 ^65000:4_0:200_0:74$ ip community-list expanded c2 permit 3539 ^65000:4_0:200_0:75$ ip community-list expanded c2 permit 3540 ^65000:4_0:200_0:76$ ip community-list expanded c2 permit 3541 ^65000:4_0:200_0:77$ ip community-list expanded c2 permit 3542 ^65000:4_0:200_0:78$ ip community-list expanded c2 permit 3543 ^65000:4_0:200_0:79$ ip community-list expanded c2 permit 3544 ^65000:4_0:200_0:80$ ip community-list expanded c2 permit 3545 ^65000:4_0:200_0:81$ ip community-list expanded c2 permit 3546 ^65000:4_0:200_0:82$ ip community-list expanded c2 permit 3547 ^65000:4_0:200_0:83$ ip community-list expanded c2 permit 3548 ^65000:4_0:200_0:84$ ip community-list expanded c2 permit 3549 ^65000:4_0:200_0:85$ ip community-list expanded c2 permit 3550 ^65000:4_0:200_0:86$ ip community-list expanded c2 permit 3551 ^65000:4_0:200_0:87$ ip community-list expanded c2 permit 3552 ^65000:4_0:200_0:88$ ip community-list expanded c2 permit 3553 ^65000:4_0:200_0:89$ ip community-list expanded c2 permit 3554 ^65000:4_0:200_0:90$ ip community-list expanded c2 permit 3555 ^65000:4_0:200_0:91$ ip community-list expanded c2 permit 3556 ^65000:4_0:200_0:92$ ip community-list expanded c2 permit 3557 ^65000:4_0:200_0:93$ ip community-list expanded c2 permit 3558 ^65000:4_0:200_0:94$ ip community-list expanded c2 permit 3559 ^65000:4_0:200_0:95$ ip community-list expanded c2 permit 3560 ^65000:4_0:200_0:96$ ip community-list expanded c2 permit 3561 ^65000:4_0:200_0:97$ ip community-list expanded c2 permit 3562 ^65000:4_0:200_0:98$ ip community-list expanded c2 permit 3563 ^65000:4_0:200_0:99$ ip community-list expanded c2 permit 3564 ^65000:4_0:200_0:100$ ip community-list expanded c2 permit 3565 ^65000:3_0:200_0:198$ ip community-list expanded c2 permit 3566 ^65000:4_0:201_0:68$ ip community-list expanded c2 permit 3567 ^65000:4_0:201_0:69$ ip community-list expanded c2 permit 3568 ^65000:4_0:201_0:70$ ip community-list expanded c2 permit 3569 ^65000:4_0:201_0:71$ ip community-list expanded c2 permit 3570 ^65000:4_0:201_0:72$ ip community-list expanded c2 permit 3571 ^65000:4_0:201_0:73$ ip community-list expanded c2 permit 3572 ^65000:4_0:201_0:74$ ip community-list expanded c2 permit 3573 ^65000:4_0:201_0:75$ ip community-list expanded c2 permit 3574 ^65000:4_0:201_0:76$ ip community-list expanded c2 permit 3575 ^65000:4_0:201_0:77$ ip community-list expanded c2 permit 3576 ^65000:4_0:201_0:78$ ip community-list expanded c2 permit 3577 ^65000:4_0:201_0:79$ ip community-list expanded c2 permit 3578 ^65000:4_0:201_0:80$ ip community-list expanded c2 permit 3579 ^65000:4_0:201_0:81$ ip community-list expanded c2 permit 3580 ^65000:4_0:201_0:82$ ip community-list expanded c2 permit 3581 ^65000:4_0:201_0:83$ ip community-list expanded c2 permit 3582 ^65000:4_0:201_0:84$ ip community-list expanded c2 permit 3583 ^65000:4_0:201_0:85$ ip community-list expanded c2 permit 3584 ^65000:4_0:201_0:86$ ip community-list expanded c2 permit 3585 ^65000:4_0:201_0:87$ ip community-list expanded c2 permit 3586 ^65000:4_0:201_0:88$ ip community-list expanded c2 permit 3587 ^65000:4_0:201_0:89$ ip community-list expanded c2 permit 3588 ^65000:4_0:201_0:90$ ip community-list expanded c2 permit 3589 ^65000:4_0:201_0:91$ ip community-list expanded c2 permit 3590 ^65000:4_0:201_0:92$ ip community-list expanded c2 permit 3591 ^65000:4_0:201_0:93$ ip community-list expanded c2 permit 3592 ^65000:4_0:201_0:94$ ip community-list expanded c2 permit 3593 ^65000:4_0:201_0:95$ ip community-list expanded c2 permit 3594 ^65000:4_0:201_0:96$ ip community-list expanded c2 permit 3595 ^65000:4_0:201_0:97$ ip community-list expanded c2 permit 3596 ^65000:4_0:201_0:98$ ip community-list expanded c2 permit 3597 ^65000:4_0:201_0:99$ ip community-list expanded c2 permit 3598 ^65000:4_0:201_0:100$ ip community-list expanded c2 permit 3599 ^65000:3_0:201_0:199$ ip community-list expanded c2 permit 3600 ^65000:4_0:202_0:68$ ip community-list expanded c2 permit 3601 ^65000:4_0:202_0:69$ ip community-list expanded c2 permit 3602 ^65000:4_0:202_0:70$ ip community-list expanded c2 permit 3603 ^65000:4_0:202_0:71$ ip community-list expanded c2 permit 3604 ^65000:4_0:202_0:72$ ip community-list expanded c2 permit 3605 ^65000:4_0:202_0:73$ ip community-list expanded c2 permit 3606 ^65000:4_0:202_0:74$ ip community-list expanded c2 permit 3607 ^65000:4_0:202_0:75$ ip community-list expanded c2 permit 3608 ^65000:4_0:202_0:76$ ip community-list expanded c2 permit 3609 ^65000:4_0:202_0:77$ ip community-list expanded c2 permit 3610 ^65000:4_0:202_0:78$ ip community-list expanded c2 permit 3611 ^65000:4_0:202_0:79$ ip community-list expanded c2 permit 3612 ^65000:4_0:202_0:80$ ip community-list expanded c2 permit 3613 ^65000:4_0:202_0:81$ ip community-list expanded c2 permit 3614 ^65000:4_0:202_0:82$ ip community-list expanded c2 permit 3615 ^65000:4_0:202_0:83$ ip community-list expanded c2 permit 3616 ^65000:4_0:202_0:84$ ip community-list expanded c2 permit 3617 ^65000:4_0:202_0:85$ ip community-list expanded c2 permit 3618 ^65000:4_0:202_0:86$ ip community-list expanded c2 permit 3619 ^65000:4_0:202_0:87$ ip community-list expanded c2 permit 3620 ^65000:4_0:202_0:88$ ip community-list expanded c2 permit 3621 ^65000:4_0:202_0:89$ ip community-list expanded c2 permit 3622 ^65000:4_0:202_0:90$ ip community-list expanded c2 permit 3623 ^65000:4_0:202_0:91$ ip community-list expanded c2 permit 3624 ^65000:4_0:202_0:92$ ip community-list expanded c2 permit 3625 ^65000:4_0:202_0:93$ ip community-list expanded c2 permit 3626 ^65000:4_0:202_0:94$ ip community-list expanded c2 permit 3627 ^65000:4_0:202_0:95$ ip community-list expanded c2 permit 3628 ^65000:4_0:202_0:96$ ip community-list expanded c2 permit 3629 ^65000:4_0:202_0:97$ ip community-list expanded c2 permit 3630 ^65000:4_0:202_0:98$ ip community-list expanded c2 permit 3631 ^65000:4_0:202_0:99$ ip community-list expanded c2 permit 3632 ^65000:4_0:202_0:100$ ip community-list expanded c2 permit 3633 ^65000:4_0:202_0:101$ ip community-list expanded c2 permit 3634 ^65000:3_0:202_0:200$ ip community-list expanded c2 permit 3635 ^65000:4_0:203_0:68$ ip community-list expanded c2 permit 3636 ^65000:4_0:203_0:69$ ip community-list expanded c2 permit 3637 ^65000:4_0:203_0:70$ ip community-list expanded c2 permit 3638 ^65000:4_0:203_0:71$ ip community-list expanded c2 permit 3639 ^65000:4_0:203_0:72$ ip community-list expanded c2 permit 3640 ^65000:4_0:203_0:73$ ip community-list expanded c2 permit 3641 ^65000:4_0:203_0:74$ ip community-list expanded c2 permit 3642 ^65000:4_0:203_0:75$ ip community-list expanded c2 permit 3643 ^65000:4_0:203_0:76$ ip community-list expanded c2 permit 3644 ^65000:4_0:203_0:77$ ip community-list expanded c2 permit 3645 ^65000:4_0:203_0:78$ ip community-list expanded c2 permit 3646 ^65000:4_0:203_0:79$ ip community-list expanded c2 permit 3647 ^65000:4_0:203_0:80$ ip community-list expanded c2 permit 3648 ^65000:4_0:203_0:81$ ip community-list expanded c2 permit 3649 ^65000:4_0:203_0:82$ ip community-list expanded c2 permit 3650 ^65000:4_0:203_0:83$ ip community-list expanded c2 permit 3651 ^65000:4_0:203_0:84$ ip community-list expanded c2 permit 3652 ^65000:4_0:203_0:85$ ip community-list expanded c2 permit 3653 ^65000:4_0:203_0:86$ ip community-list expanded c2 permit 3654 ^65000:4_0:203_0:87$ ip community-list expanded c2 permit 3655 ^65000:4_0:203_0:88$ ip community-list expanded c2 permit 3656 ^65000:4_0:203_0:89$ ip community-list expanded c2 permit 3657 ^65000:4_0:203_0:90$ ip community-list expanded c2 permit 3658 ^65000:4_0:203_0:91$ ip community-list expanded c2 permit 3659 ^65000:4_0:203_0:92$ ip community-list expanded c2 permit 3660 ^65000:4_0:203_0:93$ ip community-list expanded c2 permit 3661 ^65000:4_0:203_0:94$ ip community-list expanded c2 permit 3662 ^65000:4_0:203_0:95$ ip community-list expanded c2 permit 3663 ^65000:4_0:203_0:96$ ip community-list expanded c2 permit 3664 ^65000:4_0:203_0:97$ ip community-list expanded c2 permit 3665 ^65000:4_0:203_0:98$ ip community-list expanded c2 permit 3666 ^65000:4_0:203_0:99$ ip community-list expanded c2 permit 3667 ^65000:4_0:203_0:100$ ip community-list expanded c2 permit 3668 ^65000:4_0:203_0:101$ ip community-list expanded c2 permit 3669 ^65000:3_0:203_0:201$ ip community-list expanded c2 permit 3670 ^65000:4_0:204_0:69$ ip community-list expanded c2 permit 3671 ^65000:4_0:204_0:70$ ip community-list expanded c2 permit 3672 ^65000:4_0:204_0:71$ ip community-list expanded c2 permit 3673 ^65000:4_0:204_0:72$ ip community-list expanded c2 permit 3674 ^65000:4_0:204_0:73$ ip community-list expanded c2 permit 3675 ^65000:4_0:204_0:74$ ip community-list expanded c2 permit 3676 ^65000:4_0:204_0:75$ ip community-list expanded c2 permit 3677 ^65000:4_0:204_0:76$ ip community-list expanded c2 permit 3678 ^65000:4_0:204_0:77$ ip community-list expanded c2 permit 3679 ^65000:4_0:204_0:78$ ip community-list expanded c2 permit 3680 ^65000:4_0:204_0:79$ ip community-list expanded c2 permit 3681 ^65000:4_0:204_0:80$ ip community-list expanded c2 permit 3682 ^65000:4_0:204_0:81$ ip community-list expanded c2 permit 3683 ^65000:4_0:204_0:82$ ip community-list expanded c2 permit 3684 ^65000:4_0:204_0:83$ ip community-list expanded c2 permit 3685 ^65000:4_0:204_0:84$ ip community-list expanded c2 permit 3686 ^65000:4_0:204_0:85$ ip community-list expanded c2 permit 3687 ^65000:4_0:204_0:86$ ip community-list expanded c2 permit 3688 ^65000:4_0:204_0:87$ ip community-list expanded c2 permit 3689 ^65000:4_0:204_0:88$ ip community-list expanded c2 permit 3690 ^65000:4_0:204_0:89$ ip community-list expanded c2 permit 3691 ^65000:4_0:204_0:90$ ip community-list expanded c2 permit 3692 ^65000:4_0:204_0:91$ ip community-list expanded c2 permit 3693 ^65000:4_0:204_0:92$ ip community-list expanded c2 permit 3694 ^65000:4_0:204_0:93$ ip community-list expanded c2 permit 3695 ^65000:4_0:204_0:94$ ip community-list expanded c2 permit 3696 ^65000:4_0:204_0:95$ ip community-list expanded c2 permit 3697 ^65000:4_0:204_0:96$ ip community-list expanded c2 permit 3698 ^65000:4_0:204_0:97$ ip community-list expanded c2 permit 3699 ^65000:4_0:204_0:98$ ip community-list expanded c2 permit 3700 ^65000:4_0:204_0:99$ ip community-list expanded c2 permit 3701 ^65000:4_0:204_0:100$ ip community-list expanded c2 permit 3702 ^65000:4_0:204_0:101$ ip community-list expanded c2 permit 3703 ^65000:4_0:204_0:102$ ip community-list expanded c2 permit 3704 ^65000:3_0:204_0:202$ ip community-list expanded c2 permit 3705 ^65000:4_0:205_0:69$ ip community-list expanded c2 permit 3706 ^65000:4_0:205_0:70$ ip community-list expanded c2 permit 3707 ^65000:4_0:205_0:71$ ip community-list expanded c2 permit 3708 ^65000:4_0:205_0:72$ ip community-list expanded c2 permit 3709 ^65000:4_0:205_0:73$ ip community-list expanded c2 permit 3710 ^65000:4_0:205_0:74$ ip community-list expanded c2 permit 3711 ^65000:4_0:205_0:75$ ip community-list expanded c2 permit 3712 ^65000:4_0:205_0:76$ ip community-list expanded c2 permit 3713 ^65000:4_0:205_0:77$ ip community-list expanded c2 permit 3714 ^65000:4_0:205_0:78$ ip community-list expanded c2 permit 3715 ^65000:4_0:205_0:79$ ip community-list expanded c2 permit 3716 ^65000:4_0:205_0:80$ ip community-list expanded c2 permit 3717 ^65000:4_0:205_0:81$ ip community-list expanded c2 permit 3718 ^65000:4_0:205_0:82$ ip community-list expanded c2 permit 3719 ^65000:4_0:205_0:83$ ip community-list expanded c2 permit 3720 ^65000:4_0:205_0:84$ ip community-list expanded c2 permit 3721 ^65000:4_0:205_0:85$ ip community-list expanded c2 permit 3722 ^65000:4_0:205_0:86$ ip community-list expanded c2 permit 3723 ^65000:4_0:205_0:87$ ip community-list expanded c2 permit 3724 ^65000:4_0:205_0:88$ ip community-list expanded c2 permit 3725 ^65000:4_0:205_0:89$ ip community-list expanded c2 permit 3726 ^65000:4_0:205_0:90$ ip community-list expanded c2 permit 3727 ^65000:4_0:205_0:91$ ip community-list expanded c2 permit 3728 ^65000:4_0:205_0:92$ ip community-list expanded c2 permit 3729 ^65000:4_0:205_0:93$ ip community-list expanded c2 permit 3730 ^65000:4_0:205_0:94$ ip community-list expanded c2 permit 3731 ^65000:4_0:205_0:95$ ip community-list expanded c2 permit 3732 ^65000:4_0:205_0:96$ ip community-list expanded c2 permit 3733 ^65000:4_0:205_0:97$ ip community-list expanded c2 permit 3734 ^65000:4_0:205_0:98$ ip community-list expanded c2 permit 3735 ^65000:4_0:205_0:99$ ip community-list expanded c2 permit 3736 ^65000:4_0:205_0:100$ ip community-list expanded c2 permit 3737 ^65000:4_0:205_0:101$ ip community-list expanded c2 permit 3738 ^65000:4_0:205_0:102$ ip community-list expanded c2 permit 3739 ^65000:3_0:205_0:203$ ip community-list expanded c2 permit 3740 ^65000:4_0:206_0:69$ ip community-list expanded c2 permit 3741 ^65000:4_0:206_0:70$ ip community-list expanded c2 permit 3742 ^65000:4_0:206_0:71$ ip community-list expanded c2 permit 3743 ^65000:4_0:206_0:72$ ip community-list expanded c2 permit 3744 ^65000:4_0:206_0:73$ ip community-list expanded c2 permit 3745 ^65000:4_0:206_0:74$ ip community-list expanded c2 permit 3746 ^65000:4_0:206_0:75$ ip community-list expanded c2 permit 3747 ^65000:4_0:206_0:76$ ip community-list expanded c2 permit 3748 ^65000:4_0:206_0:77$ ip community-list expanded c2 permit 3749 ^65000:4_0:206_0:78$ ip community-list expanded c2 permit 3750 ^65000:4_0:206_0:79$ ip community-list expanded c2 permit 3751 ^65000:4_0:206_0:80$ ip community-list expanded c2 permit 3752 ^65000:4_0:206_0:81$ ip community-list expanded c2 permit 3753 ^65000:4_0:206_0:82$ ip community-list expanded c2 permit 3754 ^65000:4_0:206_0:83$ ip community-list expanded c2 permit 3755 ^65000:4_0:206_0:84$ ip community-list expanded c2 permit 3756 ^65000:4_0:206_0:85$ ip community-list expanded c2 permit 3757 ^65000:4_0:206_0:86$ ip community-list expanded c2 permit 3758 ^65000:4_0:206_0:87$ ip community-list expanded c2 permit 3759 ^65000:4_0:206_0:88$ ip community-list expanded c2 permit 3760 ^65000:4_0:206_0:89$ ip community-list expanded c2 permit 3761 ^65000:4_0:206_0:90$ ip community-list expanded c2 permit 3762 ^65000:4_0:206_0:91$ ip community-list expanded c2 permit 3763 ^65000:4_0:206_0:92$ ip community-list expanded c2 permit 3764 ^65000:4_0:206_0:93$ ip community-list expanded c2 permit 3765 ^65000:4_0:206_0:94$ ip community-list expanded c2 permit 3766 ^65000:4_0:206_0:95$ ip community-list expanded c2 permit 3767 ^65000:4_0:206_0:96$ ip community-list expanded c2 permit 3768 ^65000:4_0:206_0:97$ ip community-list expanded c2 permit 3769 ^65000:4_0:206_0:98$ ip community-list expanded c2 permit 3770 ^65000:4_0:206_0:99$ ip community-list expanded c2 permit 3771 ^65000:4_0:206_0:100$ ip community-list expanded c2 permit 3772 ^65000:4_0:206_0:101$ ip community-list expanded c2 permit 3773 ^65000:4_0:206_0:102$ ip community-list expanded c2 permit 3774 ^65000:4_0:206_0:103$ ip community-list expanded c2 permit 3775 ^65000:3_0:206_0:204$ ip community-list expanded c2 permit 3776 ^65000:4_0:207_0:70$ ip community-list expanded c2 permit 3777 ^65000:4_0:207_0:71$ ip community-list expanded c2 permit 3778 ^65000:4_0:207_0:72$ ip community-list expanded c2 permit 3779 ^65000:4_0:207_0:73$ ip community-list expanded c2 permit 3780 ^65000:4_0:207_0:74$ ip community-list expanded c2 permit 3781 ^65000:4_0:207_0:75$ ip community-list expanded c2 permit 3782 ^65000:4_0:207_0:76$ ip community-list expanded c2 permit 3783 ^65000:4_0:207_0:77$ ip community-list expanded c2 permit 3784 ^65000:4_0:207_0:78$ ip community-list expanded c2 permit 3785 ^65000:4_0:207_0:79$ ip community-list expanded c2 permit 3786 ^65000:4_0:207_0:80$ ip community-list expanded c2 permit 3787 ^65000:4_0:207_0:81$ ip community-list expanded c2 permit 3788 ^65000:4_0:207_0:82$ ip community-list expanded c2 permit 3789 ^65000:4_0:207_0:83$ ip community-list expanded c2 permit 3790 ^65000:4_0:207_0:84$ ip community-list expanded c2 permit 3791 ^65000:4_0:207_0:85$ ip community-list expanded c2 permit 3792 ^65000:4_0:207_0:86$ ip community-list expanded c2 permit 3793 ^65000:4_0:207_0:87$ ip community-list expanded c2 permit 3794 ^65000:4_0:207_0:88$ ip community-list expanded c2 permit 3795 ^65000:4_0:207_0:89$ ip community-list expanded c2 permit 3796 ^65000:4_0:207_0:90$ ip community-list expanded c2 permit 3797 ^65000:4_0:207_0:91$ ip community-list expanded c2 permit 3798 ^65000:4_0:207_0:92$ ip community-list expanded c2 permit 3799 ^65000:4_0:207_0:93$ ip community-list expanded c2 permit 3800 ^65000:4_0:207_0:94$ ip community-list expanded c2 permit 3801 ^65000:4_0:207_0:95$ ip community-list expanded c2 permit 3802 ^65000:4_0:207_0:96$ ip community-list expanded c2 permit 3803 ^65000:4_0:207_0:97$ ip community-list expanded c2 permit 3804 ^65000:4_0:207_0:98$ ip community-list expanded c2 permit 3805 ^65000:4_0:207_0:99$ ip community-list expanded c2 permit 3806 ^65000:4_0:207_0:100$ ip community-list expanded c2 permit 3807 ^65000:4_0:207_0:101$ ip community-list expanded c2 permit 3808 ^65000:4_0:207_0:102$ ip community-list expanded c2 permit 3809 ^65000:4_0:207_0:103$ ip community-list expanded c2 permit 3810 ^65000:3_0:207_0:205$ ip community-list expanded c2 permit 3811 ^65000:4_0:208_0:70$ ip community-list expanded c2 permit 3812 ^65000:4_0:208_0:71$ ip community-list expanded c2 permit 3813 ^65000:4_0:208_0:72$ ip community-list expanded c2 permit 3814 ^65000:4_0:208_0:73$ ip community-list expanded c2 permit 3815 ^65000:4_0:208_0:74$ ip community-list expanded c2 permit 3816 ^65000:4_0:208_0:75$ ip community-list expanded c2 permit 3817 ^65000:4_0:208_0:76$ ip community-list expanded c2 permit 3818 ^65000:4_0:208_0:77$ ip community-list expanded c2 permit 3819 ^65000:4_0:208_0:78$ ip community-list expanded c2 permit 3820 ^65000:4_0:208_0:79$ ip community-list expanded c2 permit 3821 ^65000:4_0:208_0:80$ ip community-list expanded c2 permit 3822 ^65000:4_0:208_0:81$ ip community-list expanded c2 permit 3823 ^65000:4_0:208_0:82$ ip community-list expanded c2 permit 3824 ^65000:4_0:208_0:83$ ip community-list expanded c2 permit 3825 ^65000:4_0:208_0:84$ ip community-list expanded c2 permit 3826 ^65000:4_0:208_0:85$ ip community-list expanded c2 permit 3827 ^65000:4_0:208_0:86$ ip community-list expanded c2 permit 3828 ^65000:4_0:208_0:87$ ip community-list expanded c2 permit 3829 ^65000:4_0:208_0:88$ ip community-list expanded c2 permit 3830 ^65000:4_0:208_0:89$ ip community-list expanded c2 permit 3831 ^65000:4_0:208_0:90$ ip community-list expanded c2 permit 3832 ^65000:4_0:208_0:91$ ip community-list expanded c2 permit 3833 ^65000:4_0:208_0:92$ ip community-list expanded c2 permit 3834 ^65000:4_0:208_0:93$ ip community-list expanded c2 permit 3835 ^65000:4_0:208_0:94$ ip community-list expanded c2 permit 3836 ^65000:4_0:208_0:95$ ip community-list expanded c2 permit 3837 ^65000:4_0:208_0:96$ ip community-list expanded c2 permit 3838 ^65000:4_0:208_0:97$ ip community-list expanded c2 permit 3839 ^65000:4_0:208_0:98$ ip community-list expanded c2 permit 3840 ^65000:4_0:208_0:99$ ip community-list expanded c2 permit 3841 ^65000:4_0:208_0:100$ ip community-list expanded c2 permit 3842 ^65000:4_0:208_0:101$ ip community-list expanded c2 permit 3843 ^65000:4_0:208_0:102$ ip community-list expanded c2 permit 3844 ^65000:4_0:208_0:103$ ip community-list expanded c2 permit 3845 ^65000:4_0:208_0:104$ ip community-list expanded c2 permit 3846 ^65000:3_0:208_0:206$ ip community-list expanded c2 permit 3847 ^65000:4_0:209_0:70$ ip community-list expanded c2 permit 3848 ^65000:4_0:209_0:71$ ip community-list expanded c2 permit 3849 ^65000:4_0:209_0:72$ ip community-list expanded c2 permit 3850 ^65000:4_0:209_0:73$ ip community-list expanded c2 permit 3851 ^65000:4_0:209_0:74$ ip community-list expanded c2 permit 3852 ^65000:4_0:209_0:75$ ip community-list expanded c2 permit 3853 ^65000:4_0:209_0:76$ ip community-list expanded c2 permit 3854 ^65000:4_0:209_0:77$ ip community-list expanded c2 permit 3855 ^65000:4_0:209_0:78$ ip community-list expanded c2 permit 3856 ^65000:4_0:209_0:79$ ip community-list expanded c2 permit 3857 ^65000:4_0:209_0:80$ ip community-list expanded c2 permit 3858 ^65000:4_0:209_0:81$ ip community-list expanded c2 permit 3859 ^65000:4_0:209_0:82$ ip community-list expanded c2 permit 3860 ^65000:4_0:209_0:83$ ip community-list expanded c2 permit 3861 ^65000:4_0:209_0:84$ ip community-list expanded c2 permit 3862 ^65000:4_0:209_0:85$ ip community-list expanded c2 permit 3863 ^65000:4_0:209_0:86$ ip community-list expanded c2 permit 3864 ^65000:4_0:209_0:87$ ip community-list expanded c2 permit 3865 ^65000:4_0:209_0:88$ ip community-list expanded c2 permit 3866 ^65000:4_0:209_0:89$ ip community-list expanded c2 permit 3867 ^65000:4_0:209_0:90$ ip community-list expanded c2 permit 3868 ^65000:4_0:209_0:91$ ip community-list expanded c2 permit 3869 ^65000:4_0:209_0:92$ ip community-list expanded c2 permit 3870 ^65000:4_0:209_0:93$ ip community-list expanded c2 permit 3871 ^65000:4_0:209_0:94$ ip community-list expanded c2 permit 3872 ^65000:4_0:209_0:95$ ip community-list expanded c2 permit 3873 ^65000:4_0:209_0:96$ ip community-list expanded c2 permit 3874 ^65000:4_0:209_0:97$ ip community-list expanded c2 permit 3875 ^65000:4_0:209_0:98$ ip community-list expanded c2 permit 3876 ^65000:4_0:209_0:99$ ip community-list expanded c2 permit 3877 ^65000:4_0:209_0:100$ ip community-list expanded c2 permit 3878 ^65000:4_0:209_0:101$ ip community-list expanded c2 permit 3879 ^65000:4_0:209_0:102$ ip community-list expanded c2 permit 3880 ^65000:4_0:209_0:103$ ip community-list expanded c2 permit 3881 ^65000:4_0:209_0:104$ ip community-list expanded c2 permit 3882 ^65000:3_0:209_0:207$ ip community-list expanded c2 permit 3883 ^65000:4_0:210_0:71$ ip community-list expanded c2 permit 3884 ^65000:4_0:210_0:72$ ip community-list expanded c2 permit 3885 ^65000:4_0:210_0:73$ ip community-list expanded c2 permit 3886 ^65000:4_0:210_0:74$ ip community-list expanded c2 permit 3887 ^65000:4_0:210_0:75$ ip community-list expanded c2 permit 3888 ^65000:4_0:210_0:76$ ip community-list expanded c2 permit 3889 ^65000:4_0:210_0:77$ ip community-list expanded c2 permit 3890 ^65000:4_0:210_0:78$ ip community-list expanded c2 permit 3891 ^65000:4_0:210_0:79$ ip community-list expanded c2 permit 3892 ^65000:4_0:210_0:80$ ip community-list expanded c2 permit 3893 ^65000:4_0:210_0:81$ ip community-list expanded c2 permit 3894 ^65000:4_0:210_0:82$ ip community-list expanded c2 permit 3895 ^65000:4_0:210_0:83$ ip community-list expanded c2 permit 3896 ^65000:4_0:210_0:84$ ip community-list expanded c2 permit 3897 ^65000:4_0:210_0:85$ ip community-list expanded c2 permit 3898 ^65000:4_0:210_0:86$ ip community-list expanded c2 permit 3899 ^65000:4_0:210_0:87$ ip community-list expanded c2 permit 3900 ^65000:4_0:210_0:88$ ip community-list expanded c2 permit 3901 ^65000:4_0:210_0:89$ ip community-list expanded c2 permit 3902 ^65000:4_0:210_0:90$ ip community-list expanded c2 permit 3903 ^65000:4_0:210_0:91$ ip community-list expanded c2 permit 3904 ^65000:4_0:210_0:92$ ip community-list expanded c2 permit 3905 ^65000:4_0:210_0:93$ ip community-list expanded c2 permit 3906 ^65000:4_0:210_0:94$ ip community-list expanded c2 permit 3907 ^65000:4_0:210_0:95$ ip community-list expanded c2 permit 3908 ^65000:4_0:210_0:96$ ip community-list expanded c2 permit 3909 ^65000:4_0:210_0:97$ ip community-list expanded c2 permit 3910 ^65000:4_0:210_0:98$ ip community-list expanded c2 permit 3911 ^65000:4_0:210_0:99$ ip community-list expanded c2 permit 3912 ^65000:4_0:210_0:100$ ip community-list expanded c2 permit 3913 ^65000:4_0:210_0:101$ ip community-list expanded c2 permit 3914 ^65000:4_0:210_0:102$ ip community-list expanded c2 permit 3915 ^65000:4_0:210_0:103$ ip community-list expanded c2 permit 3916 ^65000:4_0:210_0:104$ ip community-list expanded c2 permit 3917 ^65000:4_0:210_0:105$ ip community-list expanded c2 permit 3918 ^65000:3_0:210_0:208$ ip community-list expanded c2 permit 3919 ^65000:4_0:211_0:71$ ip community-list expanded c2 permit 3920 ^65000:4_0:211_0:72$ ip community-list expanded c2 permit 3921 ^65000:4_0:211_0:73$ ip community-list expanded c2 permit 3922 ^65000:4_0:211_0:74$ ip community-list expanded c2 permit 3923 ^65000:4_0:211_0:75$ ip community-list expanded c2 permit 3924 ^65000:4_0:211_0:76$ ip community-list expanded c2 permit 3925 ^65000:4_0:211_0:77$ ip community-list expanded c2 permit 3926 ^65000:4_0:211_0:78$ ip community-list expanded c2 permit 3927 ^65000:4_0:211_0:79$ ip community-list expanded c2 permit 3928 ^65000:4_0:211_0:80$ ip community-list expanded c2 permit 3929 ^65000:4_0:211_0:81$ ip community-list expanded c2 permit 3930 ^65000:4_0:211_0:82$ ip community-list expanded c2 permit 3931 ^65000:4_0:211_0:83$ ip community-list expanded c2 permit 3932 ^65000:4_0:211_0:84$ ip community-list expanded c2 permit 3933 ^65000:4_0:211_0:85$ ip community-list expanded c2 permit 3934 ^65000:4_0:211_0:86$ ip community-list expanded c2 permit 3935 ^65000:4_0:211_0:87$ ip community-list expanded c2 permit 3936 ^65000:4_0:211_0:88$ ip community-list expanded c2 permit 3937 ^65000:4_0:211_0:89$ ip community-list expanded c2 permit 3938 ^65000:4_0:211_0:90$ ip community-list expanded c2 permit 3939 ^65000:4_0:211_0:91$ ip community-list expanded c2 permit 3940 ^65000:4_0:211_0:92$ ip community-list expanded c2 permit 3941 ^65000:4_0:211_0:93$ ip community-list expanded c2 permit 3942 ^65000:4_0:211_0:94$ ip community-list expanded c2 permit 3943 ^65000:4_0:211_0:95$ ip community-list expanded c2 permit 3944 ^65000:4_0:211_0:96$ ip community-list expanded c2 permit 3945 ^65000:4_0:211_0:97$ ip community-list expanded c2 permit 3946 ^65000:4_0:211_0:98$ ip community-list expanded c2 permit 3947 ^65000:4_0:211_0:99$ ip community-list expanded c2 permit 3948 ^65000:4_0:211_0:100$ ip community-list expanded c2 permit 3949 ^65000:4_0:211_0:101$ ip community-list expanded c2 permit 3950 ^65000:4_0:211_0:102$ ip community-list expanded c2 permit 3951 ^65000:4_0:211_0:103$ ip community-list expanded c2 permit 3952 ^65000:4_0:211_0:104$ ip community-list expanded c2 permit 3953 ^65000:4_0:211_0:105$ ip community-list expanded c2 permit 3954 ^65000:3_0:211_0:209$ ip community-list expanded c2 permit 3955 ^65000:4_0:212_0:71$ ip community-list expanded c2 permit 3956 ^65000:4_0:212_0:72$ ip community-list expanded c2 permit 3957 ^65000:4_0:212_0:73$ ip community-list expanded c2 permit 3958 ^65000:4_0:212_0:74$ ip community-list expanded c2 permit 3959 ^65000:4_0:212_0:75$ ip community-list expanded c2 permit 3960 ^65000:4_0:212_0:76$ ip community-list expanded c2 permit 3961 ^65000:4_0:212_0:77$ ip community-list expanded c2 permit 3962 ^65000:4_0:212_0:78$ ip community-list expanded c2 permit 3963 ^65000:4_0:212_0:79$ ip community-list expanded c2 permit 3964 ^65000:4_0:212_0:80$ ip community-list expanded c2 permit 3965 ^65000:4_0:212_0:81$ ip community-list expanded c2 permit 3966 ^65000:4_0:212_0:82$ ip community-list expanded c2 permit 3967 ^65000:4_0:212_0:83$ ip community-list expanded c2 permit 3968 ^65000:4_0:212_0:84$ ip community-list expanded c2 permit 3969 ^65000:4_0:212_0:85$ ip community-list expanded c2 permit 3970 ^65000:4_0:212_0:86$ ip community-list expanded c2 permit 3971 ^65000:4_0:212_0:87$ ip community-list expanded c2 permit 3972 ^65000:4_0:212_0:88$ ip community-list expanded c2 permit 3973 ^65000:4_0:212_0:89$ ip community-list expanded c2 permit 3974 ^65000:4_0:212_0:90$ ip community-list expanded c2 permit 3975 ^65000:4_0:212_0:91$ ip community-list expanded c2 permit 3976 ^65000:4_0:212_0:92$ ip community-list expanded c2 permit 3977 ^65000:4_0:212_0:93$ ip community-list expanded c2 permit 3978 ^65000:4_0:212_0:94$ ip community-list expanded c2 permit 3979 ^65000:4_0:212_0:95$ ip community-list expanded c2 permit 3980 ^65000:4_0:212_0:96$ ip community-list expanded c2 permit 3981 ^65000:4_0:212_0:97$ ip community-list expanded c2 permit 3982 ^65000:4_0:212_0:98$ ip community-list expanded c2 permit 3983 ^65000:4_0:212_0:99$ ip community-list expanded c2 permit 3984 ^65000:4_0:212_0:100$ ip community-list expanded c2 permit 3985 ^65000:4_0:212_0:101$ ip community-list expanded c2 permit 3986 ^65000:4_0:212_0:102$ ip community-list expanded c2 permit 3987 ^65000:4_0:212_0:103$ ip community-list expanded c2 permit 3988 ^65000:4_0:212_0:104$ ip community-list expanded c2 permit 3989 ^65000:4_0:212_0:105$ ip community-list expanded c2 permit 3990 ^65000:4_0:212_0:106$ ip community-list expanded c2 permit 3991 ^65000:3_0:212_0:210$ ip community-list expanded c2 permit 3992 ^65000:4_0:213_0:72$ ip community-list expanded c2 permit 3993 ^65000:4_0:213_0:73$ ip community-list expanded c2 permit 3994 ^65000:4_0:213_0:74$ ip community-list expanded c2 permit 3995 ^65000:4_0:213_0:75$ ip community-list expanded c2 permit 3996 ^65000:4_0:213_0:76$ ip community-list expanded c2 permit 3997 ^65000:4_0:213_0:77$ ip community-list expanded c2 permit 3998 ^65000:4_0:213_0:78$ ip community-list expanded c2 permit 3999 ^65000:4_0:213_0:79$ ip community-list expanded c2 permit 4000 ^65000:4_0:213_0:80$ ip community-list expanded c2 permit 4001 ^65000:4_0:213_0:81$ ip community-list expanded c2 permit 4002 ^65000:4_0:213_0:82$ ip community-list expanded c2 permit 4003 ^65000:4_0:213_0:83$ ip community-list expanded c2 permit 4004 ^65000:4_0:213_0:84$ ip community-list expanded c2 permit 4005 ^65000:4_0:213_0:85$ ip community-list expanded c2 permit 4006 ^65000:4_0:213_0:86$ ip community-list expanded c2 permit 4007 ^65000:4_0:213_0:87$ ip community-list expanded c2 permit 4008 ^65000:4_0:213_0:88$ ip community-list expanded c2 permit 4009 ^65000:4_0:213_0:89$ ip community-list expanded c2 permit 4010 ^65000:4_0:213_0:90$ ip community-list expanded c2 permit 4011 ^65000:4_0:213_0:91$ ip community-list expanded c2 permit 4012 ^65000:4_0:213_0:92$ ip community-list expanded c2 permit 4013 ^65000:4_0:213_0:93$ ip community-list expanded c2 permit 4014 ^65000:4_0:213_0:94$ ip community-list expanded c2 permit 4015 ^65000:4_0:213_0:95$ ip community-list expanded c2 permit 4016 ^65000:4_0:213_0:96$ ip community-list expanded c2 permit 4017 ^65000:4_0:213_0:97$ ip community-list expanded c2 permit 4018 ^65000:4_0:213_0:98$ ip community-list expanded c2 permit 4019 ^65000:4_0:213_0:99$ ip community-list expanded c2 permit 4020 ^65000:4_0:213_0:100$ ip community-list expanded c2 permit 4021 ^65000:4_0:213_0:101$ ip community-list expanded c2 permit 4022 ^65000:4_0:213_0:102$ ip community-list expanded c2 permit 4023 ^65000:4_0:213_0:103$ ip community-list expanded c2 permit 4024 ^65000:4_0:213_0:104$ ip community-list expanded c2 permit 4025 ^65000:4_0:213_0:105$ ip community-list expanded c2 permit 4026 ^65000:4_0:213_0:106$ ip community-list expanded c2 permit 4027 ^65000:3_0:213_0:211$ ip community-list expanded c2 permit 4028 ^65000:4_0:214_0:72$ ip community-list expanded c2 permit 4029 ^65000:4_0:214_0:73$ ip community-list expanded c2 permit 4030 ^65000:4_0:214_0:74$ ip community-list expanded c2 permit 4031 ^65000:4_0:214_0:75$ ip community-list expanded c2 permit 4032 ^65000:4_0:214_0:76$ ip community-list expanded c2 permit 4033 ^65000:4_0:214_0:77$ ip community-list expanded c2 permit 4034 ^65000:4_0:214_0:78$ ip community-list expanded c2 permit 4035 ^65000:4_0:214_0:79$ ip community-list expanded c2 permit 4036 ^65000:4_0:214_0:80$ ip community-list expanded c2 permit 4037 ^65000:4_0:214_0:81$ ip community-list expanded c2 permit 4038 ^65000:4_0:214_0:82$ ip community-list expanded c2 permit 4039 ^65000:4_0:214_0:83$ ip community-list expanded c2 permit 4040 ^65000:4_0:214_0:84$ ip community-list expanded c2 permit 4041 ^65000:4_0:214_0:85$ ip community-list expanded c2 permit 4042 ^65000:4_0:214_0:86$ ip community-list expanded c2 permit 4043 ^65000:4_0:214_0:87$ ip community-list expanded c2 permit 4044 ^65000:4_0:214_0:88$ ip community-list expanded c2 permit 4045 ^65000:4_0:214_0:89$ ip community-list expanded c2 permit 4046 ^65000:4_0:214_0:90$ ip community-list expanded c2 permit 4047 ^65000:4_0:214_0:91$ ip community-list expanded c2 permit 4048 ^65000:4_0:214_0:92$ ip community-list expanded c2 permit 4049 ^65000:4_0:214_0:93$ ip community-list expanded c2 permit 4050 ^65000:4_0:214_0:94$ ip community-list expanded c2 permit 4051 ^65000:4_0:214_0:95$ ip community-list expanded c2 permit 4052 ^65000:4_0:214_0:96$ ip community-list expanded c2 permit 4053 ^65000:4_0:214_0:97$ ip community-list expanded c2 permit 4054 ^65000:4_0:214_0:98$ ip community-list expanded c2 permit 4055 ^65000:4_0:214_0:99$ ip community-list expanded c2 permit 4056 ^65000:4_0:214_0:100$ ip community-list expanded c2 permit 4057 ^65000:4_0:214_0:101$ ip community-list expanded c2 permit 4058 ^65000:4_0:214_0:102$ ip community-list expanded c2 permit 4059 ^65000:4_0:214_0:103$ ip community-list expanded c2 permit 4060 ^65000:4_0:214_0:104$ ip community-list expanded c2 permit 4061 ^65000:4_0:214_0:105$ ip community-list expanded c2 permit 4062 ^65000:4_0:214_0:106$ ip community-list expanded c2 permit 4063 ^65000:4_0:214_0:107$ ip community-list expanded c2 permit 4064 ^65000:3_0:214_0:212$ ip community-list expanded c2 permit 4065 ^65000:4_0:215_0:72$ ip community-list expanded c2 permit 4066 ^65000:4_0:215_0:73$ ip community-list expanded c2 permit 4067 ^65000:4_0:215_0:74$ ip community-list expanded c2 permit 4068 ^65000:4_0:215_0:75$ ip community-list expanded c2 permit 4069 ^65000:4_0:215_0:76$ ip community-list expanded c2 permit 4070 ^65000:4_0:215_0:77$ ip community-list expanded c2 permit 4071 ^65000:4_0:215_0:78$ ip community-list expanded c2 permit 4072 ^65000:4_0:215_0:79$ ip community-list expanded c2 permit 4073 ^65000:4_0:215_0:80$ ip community-list expanded c2 permit 4074 ^65000:4_0:215_0:81$ ip community-list expanded c2 permit 4075 ^65000:4_0:215_0:82$ ip community-list expanded c2 permit 4076 ^65000:4_0:215_0:83$ ip community-list expanded c2 permit 4077 ^65000:4_0:215_0:84$ ip community-list expanded c2 permit 4078 ^65000:4_0:215_0:85$ ip community-list expanded c2 permit 4079 ^65000:4_0:215_0:86$ ip community-list expanded c2 permit 4080 ^65000:4_0:215_0:87$ ip community-list expanded c2 permit 4081 ^65000:4_0:215_0:88$ ip community-list expanded c2 permit 4082 ^65000:4_0:215_0:89$ ip community-list expanded c2 permit 4083 ^65000:4_0:215_0:90$ ip community-list expanded c2 permit 4084 ^65000:4_0:215_0:91$ ip community-list expanded c2 permit 4085 ^65000:4_0:215_0:92$ ip community-list expanded c2 permit 4086 ^65000:4_0:215_0:93$ ip community-list expanded c2 permit 4087 ^65000:4_0:215_0:94$ ip community-list expanded c2 permit 4088 ^65000:4_0:215_0:95$ ip community-list expanded c2 permit 4089 ^65000:4_0:215_0:96$ ip community-list expanded c2 permit 4090 ^65000:4_0:215_0:97$ ip community-list expanded c2 permit 4091 ^65000:4_0:215_0:98$ ip community-list expanded c2 permit 4092 ^65000:4_0:215_0:99$ ip community-list expanded c2 permit 4093 ^65000:4_0:215_0:100$ ip community-list expanded c2 permit 4094 ^65000:4_0:215_0:101$ ip community-list expanded c2 permit 4095 ^65000:4_0:215_0:102$ ip community-list expanded c2 permit 4096 ^65000:4_0:215_0:103$ ip community-list expanded c2 permit 4097 ^65000:4_0:215_0:104$ ip community-list expanded c2 permit 4098 ^65000:4_0:215_0:105$ ip community-list expanded c2 permit 4099 ^65000:4_0:215_0:106$ ip community-list expanded c2 permit 4100 ^65000:4_0:215_0:107$ ip community-list expanded c2 permit 4101 ^65000:3_0:215_0:213$ ip community-list expanded c2 permit 4102 ^65000:4_0:216_0:73$ ip community-list expanded c2 permit 4103 ^65000:4_0:216_0:74$ ip community-list expanded c2 permit 4104 ^65000:4_0:216_0:75$ ip community-list expanded c2 permit 4105 ^65000:4_0:216_0:76$ ip community-list expanded c2 permit 4106 ^65000:4_0:216_0:77$ ip community-list expanded c2 permit 4107 ^65000:4_0:216_0:78$ ip community-list expanded c2 permit 4108 ^65000:4_0:216_0:79$ ip community-list expanded c2 permit 4109 ^65000:4_0:216_0:80$ ip community-list expanded c2 permit 4110 ^65000:4_0:216_0:81$ ip community-list expanded c2 permit 4111 ^65000:4_0:216_0:82$ ip community-list expanded c2 permit 4112 ^65000:4_0:216_0:83$ ip community-list expanded c2 permit 4113 ^65000:4_0:216_0:84$ ip community-list expanded c2 permit 4114 ^65000:4_0:216_0:85$ ip community-list expanded c2 permit 4115 ^65000:4_0:216_0:86$ ip community-list expanded c2 permit 4116 ^65000:4_0:216_0:87$ ip community-list expanded c2 permit 4117 ^65000:4_0:216_0:88$ ip community-list expanded c2 permit 4118 ^65000:4_0:216_0:89$ ip community-list expanded c2 permit 4119 ^65000:4_0:216_0:90$ ip community-list expanded c2 permit 4120 ^65000:4_0:216_0:91$ ip community-list expanded c2 permit 4121 ^65000:4_0:216_0:92$ ip community-list expanded c2 permit 4122 ^65000:4_0:216_0:93$ ip community-list expanded c2 permit 4123 ^65000:4_0:216_0:94$ ip community-list expanded c2 permit 4124 ^65000:4_0:216_0:95$ ip community-list expanded c2 permit 4125 ^65000:4_0:216_0:96$ ip community-list expanded c2 permit 4126 ^65000:4_0:216_0:97$ ip community-list expanded c2 permit 4127 ^65000:4_0:216_0:98$ ip community-list expanded c2 permit 4128 ^65000:4_0:216_0:99$ ip community-list expanded c2 permit 4129 ^65000:4_0:216_0:100$ ip community-list expanded c2 permit 4130 ^65000:4_0:216_0:101$ ip community-list expanded c2 permit 4131 ^65000:4_0:216_0:102$ ip community-list expanded c2 permit 4132 ^65000:4_0:216_0:103$ ip community-list expanded c2 permit 4133 ^65000:4_0:216_0:104$ ip community-list expanded c2 permit 4134 ^65000:4_0:216_0:105$ ip community-list expanded c2 permit 4135 ^65000:4_0:216_0:106$ ip community-list expanded c2 permit 4136 ^65000:4_0:216_0:107$ ip community-list expanded c2 permit 4137 ^65000:4_0:216_0:108$ ip community-list expanded c2 permit 4138 ^65000:3_0:216_0:214$ ip community-list expanded c2 permit 4139 ^65000:4_0:217_0:73$ ip community-list expanded c2 permit 4140 ^65000:4_0:217_0:74$ ip community-list expanded c2 permit 4141 ^65000:4_0:217_0:75$ ip community-list expanded c2 permit 4142 ^65000:4_0:217_0:76$ ip community-list expanded c2 permit 4143 ^65000:4_0:217_0:77$ ip community-list expanded c2 permit 4144 ^65000:4_0:217_0:78$ ip community-list expanded c2 permit 4145 ^65000:4_0:217_0:79$ ip community-list expanded c2 permit 4146 ^65000:4_0:217_0:80$ ip community-list expanded c2 permit 4147 ^65000:4_0:217_0:81$ ip community-list expanded c2 permit 4148 ^65000:4_0:217_0:82$ ip community-list expanded c2 permit 4149 ^65000:4_0:217_0:83$ ip community-list expanded c2 permit 4150 ^65000:4_0:217_0:84$ ip community-list expanded c2 permit 4151 ^65000:4_0:217_0:85$ ip community-list expanded c2 permit 4152 ^65000:4_0:217_0:86$ ip community-list expanded c2 permit 4153 ^65000:4_0:217_0:87$ ip community-list expanded c2 permit 4154 ^65000:4_0:217_0:88$ ip community-list expanded c2 permit 4155 ^65000:4_0:217_0:89$ ip community-list expanded c2 permit 4156 ^65000:4_0:217_0:90$ ip community-list expanded c2 permit 4157 ^65000:4_0:217_0:91$ ip community-list expanded c2 permit 4158 ^65000:4_0:217_0:92$ ip community-list expanded c2 permit 4159 ^65000:4_0:217_0:93$ ip community-list expanded c2 permit 4160 ^65000:4_0:217_0:94$ ip community-list expanded c2 permit 4161 ^65000:4_0:217_0:95$ ip community-list expanded c2 permit 4162 ^65000:4_0:217_0:96$ ip community-list expanded c2 permit 4163 ^65000:4_0:217_0:97$ ip community-list expanded c2 permit 4164 ^65000:4_0:217_0:98$ ip community-list expanded c2 permit 4165 ^65000:4_0:217_0:99$ ip community-list expanded c2 permit 4166 ^65000:4_0:217_0:100$ ip community-list expanded c2 permit 4167 ^65000:4_0:217_0:101$ ip community-list expanded c2 permit 4168 ^65000:4_0:217_0:102$ ip community-list expanded c2 permit 4169 ^65000:4_0:217_0:103$ ip community-list expanded c2 permit 4170 ^65000:4_0:217_0:104$ ip community-list expanded c2 permit 4171 ^65000:4_0:217_0:105$ ip community-list expanded c2 permit 4172 ^65000:4_0:217_0:106$ ip community-list expanded c2 permit 4173 ^65000:4_0:217_0:107$ ip community-list expanded c2 permit 4174 ^65000:4_0:217_0:108$ ip community-list expanded c2 permit 4175 ^65000:3_0:217_0:215$ ip community-list expanded c2 permit 4176 ^65000:4_0:218_0:73$ ip community-list expanded c2 permit 4177 ^65000:4_0:218_0:74$ ip community-list expanded c2 permit 4178 ^65000:4_0:218_0:75$ ip community-list expanded c2 permit 4179 ^65000:4_0:218_0:76$ ip community-list expanded c2 permit 4180 ^65000:4_0:218_0:77$ ip community-list expanded c2 permit 4181 ^65000:4_0:218_0:78$ ip community-list expanded c2 permit 4182 ^65000:4_0:218_0:79$ ip community-list expanded c2 permit 4183 ^65000:4_0:218_0:80$ ip community-list expanded c2 permit 4184 ^65000:4_0:218_0:81$ ip community-list expanded c2 permit 4185 ^65000:4_0:218_0:82$ ip community-list expanded c2 permit 4186 ^65000:4_0:218_0:83$ ip community-list expanded c2 permit 4187 ^65000:4_0:218_0:84$ ip community-list expanded c2 permit 4188 ^65000:4_0:218_0:85$ ip community-list expanded c2 permit 4189 ^65000:4_0:218_0:86$ ip community-list expanded c2 permit 4190 ^65000:4_0:218_0:87$ ip community-list expanded c2 permit 4191 ^65000:4_0:218_0:88$ ip community-list expanded c2 permit 4192 ^65000:4_0:218_0:89$ ip community-list expanded c2 permit 4193 ^65000:4_0:218_0:90$ ip community-list expanded c2 permit 4194 ^65000:4_0:218_0:91$ ip community-list expanded c2 permit 4195 ^65000:4_0:218_0:92$ ip community-list expanded c2 permit 4196 ^65000:4_0:218_0:93$ ip community-list expanded c2 permit 4197 ^65000:4_0:218_0:94$ ip community-list expanded c2 permit 4198 ^65000:4_0:218_0:95$ ip community-list expanded c2 permit 4199 ^65000:4_0:218_0:96$ ip community-list expanded c2 permit 4200 ^65000:4_0:218_0:97$ ip community-list expanded c2 permit 4201 ^65000:4_0:218_0:98$ ip community-list expanded c2 permit 4202 ^65000:4_0:218_0:99$ ip community-list expanded c2 permit 4203 ^65000:4_0:218_0:100$ ip community-list expanded c2 permit 4204 ^65000:4_0:218_0:101$ ip community-list expanded c2 permit 4205 ^65000:4_0:218_0:102$ ip community-list expanded c2 permit 4206 ^65000:4_0:218_0:103$ ip community-list expanded c2 permit 4207 ^65000:4_0:218_0:104$ ip community-list expanded c2 permit 4208 ^65000:4_0:218_0:105$ ip community-list expanded c2 permit 4209 ^65000:4_0:218_0:106$ ip community-list expanded c2 permit 4210 ^65000:4_0:218_0:107$ ip community-list expanded c2 permit 4211 ^65000:4_0:218_0:108$ ip community-list expanded c2 permit 4212 ^65000:4_0:218_0:109$ ip community-list expanded c2 permit 4213 ^65000:3_0:218_0:216$ ip community-list expanded c2 permit 4214 ^65000:4_0:219_0:74$ ip community-list expanded c2 permit 4215 ^65000:4_0:219_0:75$ ip community-list expanded c2 permit 4216 ^65000:4_0:219_0:76$ ip community-list expanded c2 permit 4217 ^65000:4_0:219_0:77$ ip community-list expanded c2 permit 4218 ^65000:4_0:219_0:78$ ip community-list expanded c2 permit 4219 ^65000:4_0:219_0:79$ ip community-list expanded c2 permit 4220 ^65000:4_0:219_0:80$ ip community-list expanded c2 permit 4221 ^65000:4_0:219_0:81$ ip community-list expanded c2 permit 4222 ^65000:4_0:219_0:82$ ip community-list expanded c2 permit 4223 ^65000:4_0:219_0:83$ ip community-list expanded c2 permit 4224 ^65000:4_0:219_0:84$ ip community-list expanded c2 permit 4225 ^65000:4_0:219_0:85$ ip community-list expanded c2 permit 4226 ^65000:4_0:219_0:86$ ip community-list expanded c2 permit 4227 ^65000:4_0:219_0:87$ ip community-list expanded c2 permit 4228 ^65000:4_0:219_0:88$ ip community-list expanded c2 permit 4229 ^65000:4_0:219_0:89$ ip community-list expanded c2 permit 4230 ^65000:4_0:219_0:90$ ip community-list expanded c2 permit 4231 ^65000:4_0:219_0:91$ ip community-list expanded c2 permit 4232 ^65000:4_0:219_0:92$ ip community-list expanded c2 permit 4233 ^65000:4_0:219_0:93$ ip community-list expanded c2 permit 4234 ^65000:4_0:219_0:94$ ip community-list expanded c2 permit 4235 ^65000:4_0:219_0:95$ ip community-list expanded c2 permit 4236 ^65000:4_0:219_0:96$ ip community-list expanded c2 permit 4237 ^65000:4_0:219_0:97$ ip community-list expanded c2 permit 4238 ^65000:4_0:219_0:98$ ip community-list expanded c2 permit 4239 ^65000:4_0:219_0:99$ ip community-list expanded c2 permit 4240 ^65000:4_0:219_0:100$ ip community-list expanded c2 permit 4241 ^65000:4_0:219_0:101$ ip community-list expanded c2 permit 4242 ^65000:4_0:219_0:102$ ip community-list expanded c2 permit 4243 ^65000:4_0:219_0:103$ ip community-list expanded c2 permit 4244 ^65000:4_0:219_0:104$ ip community-list expanded c2 permit 4245 ^65000:4_0:219_0:105$ ip community-list expanded c2 permit 4246 ^65000:4_0:219_0:106$ ip community-list expanded c2 permit 4247 ^65000:4_0:219_0:107$ ip community-list expanded c2 permit 4248 ^65000:4_0:219_0:108$ ip community-list expanded c2 permit 4249 ^65000:4_0:219_0:109$ ip community-list expanded c2 permit 4250 ^65000:3_0:219_0:217$ ip community-list expanded c2 permit 4251 ^65000:4_0:220_0:74$ ip community-list expanded c2 permit 4252 ^65000:4_0:220_0:75$ ip community-list expanded c2 permit 4253 ^65000:4_0:220_0:76$ ip community-list expanded c2 permit 4254 ^65000:4_0:220_0:77$ ip community-list expanded c2 permit 4255 ^65000:4_0:220_0:78$ ip community-list expanded c2 permit 4256 ^65000:4_0:220_0:79$ ip community-list expanded c2 permit 4257 ^65000:4_0:220_0:80$ ip community-list expanded c2 permit 4258 ^65000:4_0:220_0:81$ ip community-list expanded c2 permit 4259 ^65000:4_0:220_0:82$ ip community-list expanded c2 permit 4260 ^65000:4_0:220_0:83$ ip community-list expanded c2 permit 4261 ^65000:4_0:220_0:84$ ip community-list expanded c2 permit 4262 ^65000:4_0:220_0:85$ ip community-list expanded c2 permit 4263 ^65000:4_0:220_0:86$ ip community-list expanded c2 permit 4264 ^65000:4_0:220_0:87$ ip community-list expanded c2 permit 4265 ^65000:4_0:220_0:88$ ip community-list expanded c2 permit 4266 ^65000:4_0:220_0:89$ ip community-list expanded c2 permit 4267 ^65000:4_0:220_0:90$ ip community-list expanded c2 permit 4268 ^65000:4_0:220_0:91$ ip community-list expanded c2 permit 4269 ^65000:4_0:220_0:92$ ip community-list expanded c2 permit 4270 ^65000:4_0:220_0:93$ ip community-list expanded c2 permit 4271 ^65000:4_0:220_0:94$ ip community-list expanded c2 permit 4272 ^65000:4_0:220_0:95$ ip community-list expanded c2 permit 4273 ^65000:4_0:220_0:96$ ip community-list expanded c2 permit 4274 ^65000:4_0:220_0:97$ ip community-list expanded c2 permit 4275 ^65000:4_0:220_0:98$ ip community-list expanded c2 permit 4276 ^65000:4_0:220_0:99$ ip community-list expanded c2 permit 4277 ^65000:4_0:220_0:100$ ip community-list expanded c2 permit 4278 ^65000:4_0:220_0:101$ ip community-list expanded c2 permit 4279 ^65000:4_0:220_0:102$ ip community-list expanded c2 permit 4280 ^65000:4_0:220_0:103$ ip community-list expanded c2 permit 4281 ^65000:4_0:220_0:104$ ip community-list expanded c2 permit 4282 ^65000:4_0:220_0:105$ ip community-list expanded c2 permit 4283 ^65000:4_0:220_0:106$ ip community-list expanded c2 permit 4284 ^65000:4_0:220_0:107$ ip community-list expanded c2 permit 4285 ^65000:4_0:220_0:108$ ip community-list expanded c2 permit 4286 ^65000:4_0:220_0:109$ ip community-list expanded c2 permit 4287 ^65000:4_0:220_0:110$ ip community-list expanded c2 permit 4288 ^65000:3_0:220_0:218$ ip community-list expanded c2 permit 4289 ^65000:4_0:221_0:74$ ip community-list expanded c2 permit 4290 ^65000:4_0:221_0:75$ ip community-list expanded c2 permit 4291 ^65000:4_0:221_0:76$ ip community-list expanded c2 permit 4292 ^65000:4_0:221_0:77$ ip community-list expanded c2 permit 4293 ^65000:4_0:221_0:78$ ip community-list expanded c2 permit 4294 ^65000:4_0:221_0:79$ ip community-list expanded c2 permit 4295 ^65000:4_0:221_0:80$ ip community-list expanded c2 permit 4296 ^65000:4_0:221_0:81$ ip community-list expanded c2 permit 4297 ^65000:4_0:221_0:82$ ip community-list expanded c2 permit 4298 ^65000:4_0:221_0:83$ ip community-list expanded c2 permit 4299 ^65000:4_0:221_0:84$ ip community-list expanded c2 permit 4300 ^65000:4_0:221_0:85$ ip community-list expanded c2 permit 4301 ^65000:4_0:221_0:86$ ip community-list expanded c2 permit 4302 ^65000:4_0:221_0:87$ ip community-list expanded c2 permit 4303 ^65000:4_0:221_0:88$ ip community-list expanded c2 permit 4304 ^65000:4_0:221_0:89$ ip community-list expanded c2 permit 4305 ^65000:4_0:221_0:90$ ip community-list expanded c2 permit 4306 ^65000:4_0:221_0:91$ ip community-list expanded c2 permit 4307 ^65000:4_0:221_0:92$ ip community-list expanded c2 permit 4308 ^65000:4_0:221_0:93$ ip community-list expanded c2 permit 4309 ^65000:4_0:221_0:94$ ip community-list expanded c2 permit 4310 ^65000:4_0:221_0:95$ ip community-list expanded c2 permit 4311 ^65000:4_0:221_0:96$ ip community-list expanded c2 permit 4312 ^65000:4_0:221_0:97$ ip community-list expanded c2 permit 4313 ^65000:4_0:221_0:98$ ip community-list expanded c2 permit 4314 ^65000:4_0:221_0:99$ ip community-list expanded c2 permit 4315 ^65000:4_0:221_0:100$ ip community-list expanded c2 permit 4316 ^65000:4_0:221_0:101$ ip community-list expanded c2 permit 4317 ^65000:4_0:221_0:102$ ip community-list expanded c2 permit 4318 ^65000:4_0:221_0:103$ ip community-list expanded c2 permit 4319 ^65000:4_0:221_0:104$ ip community-list expanded c2 permit 4320 ^65000:4_0:221_0:105$ ip community-list expanded c2 permit 4321 ^65000:4_0:221_0:106$ ip community-list expanded c2 permit 4322 ^65000:4_0:221_0:107$ ip community-list expanded c2 permit 4323 ^65000:4_0:221_0:108$ ip community-list expanded c2 permit 4324 ^65000:4_0:221_0:109$ ip community-list expanded c2 permit 4325 ^65000:4_0:221_0:110$ ip community-list expanded c2 permit 4326 ^65000:3_0:221_0:219$ ip community-list expanded c2 permit 4327 ^65000:4_0:222_0:75$ ip community-list expanded c2 permit 4328 ^65000:4_0:222_0:76$ ip community-list expanded c2 permit 4329 ^65000:4_0:222_0:77$ ip community-list expanded c2 permit 4330 ^65000:4_0:222_0:78$ ip community-list expanded c2 permit 4331 ^65000:4_0:222_0:79$ ip community-list expanded c2 permit 4332 ^65000:4_0:222_0:80$ ip community-list expanded c2 permit 4333 ^65000:4_0:222_0:81$ ip community-list expanded c2 permit 4334 ^65000:4_0:222_0:82$ ip community-list expanded c2 permit 4335 ^65000:4_0:222_0:83$ ip community-list expanded c2 permit 4336 ^65000:4_0:222_0:84$ ip community-list expanded c2 permit 4337 ^65000:4_0:222_0:85$ ip community-list expanded c2 permit 4338 ^65000:4_0:222_0:86$ ip community-list expanded c2 permit 4339 ^65000:4_0:222_0:87$ ip community-list expanded c2 permit 4340 ^65000:4_0:222_0:88$ ip community-list expanded c2 permit 4341 ^65000:4_0:222_0:89$ ip community-list expanded c2 permit 4342 ^65000:4_0:222_0:90$ ip community-list expanded c2 permit 4343 ^65000:4_0:222_0:91$ ip community-list expanded c2 permit 4344 ^65000:4_0:222_0:92$ ip community-list expanded c2 permit 4345 ^65000:4_0:222_0:93$ ip community-list expanded c2 permit 4346 ^65000:4_0:222_0:94$ ip community-list expanded c2 permit 4347 ^65000:4_0:222_0:95$ ip community-list expanded c2 permit 4348 ^65000:4_0:222_0:96$ ip community-list expanded c2 permit 4349 ^65000:4_0:222_0:97$ ip community-list expanded c2 permit 4350 ^65000:4_0:222_0:98$ ip community-list expanded c2 permit 4351 ^65000:4_0:222_0:99$ ip community-list expanded c2 permit 4352 ^65000:4_0:222_0:100$ ip community-list expanded c2 permit 4353 ^65000:4_0:222_0:101$ ip community-list expanded c2 permit 4354 ^65000:4_0:222_0:102$ ip community-list expanded c2 permit 4355 ^65000:4_0:222_0:103$ ip community-list expanded c2 permit 4356 ^65000:4_0:222_0:104$ ip community-list expanded c2 permit 4357 ^65000:4_0:222_0:105$ ip community-list expanded c2 permit 4358 ^65000:4_0:222_0:106$ ip community-list expanded c2 permit 4359 ^65000:4_0:222_0:107$ ip community-list expanded c2 permit 4360 ^65000:4_0:222_0:108$ ip community-list expanded c2 permit 4361 ^65000:4_0:222_0:109$ ip community-list expanded c2 permit 4362 ^65000:4_0:222_0:110$ ip community-list expanded c2 permit 4363 ^65000:4_0:222_0:111$ ip community-list expanded c2 permit 4364 ^65000:3_0:222_0:220$ ip community-list expanded c2 permit 4365 ^65000:4_0:223_0:75$ ip community-list expanded c2 permit 4366 ^65000:4_0:223_0:76$ ip community-list expanded c2 permit 4367 ^65000:4_0:223_0:77$ ip community-list expanded c2 permit 4368 ^65000:4_0:223_0:78$ ip community-list expanded c2 permit 4369 ^65000:4_0:223_0:79$ ip community-list expanded c2 permit 4370 ^65000:4_0:223_0:80$ ip community-list expanded c2 permit 4371 ^65000:4_0:223_0:81$ ip community-list expanded c2 permit 4372 ^65000:4_0:223_0:82$ ip community-list expanded c2 permit 4373 ^65000:4_0:223_0:83$ ip community-list expanded c2 permit 4374 ^65000:4_0:223_0:84$ ip community-list expanded c2 permit 4375 ^65000:4_0:223_0:85$ ip community-list expanded c2 permit 4376 ^65000:4_0:223_0:86$ ip community-list expanded c2 permit 4377 ^65000:4_0:223_0:87$ ip community-list expanded c2 permit 4378 ^65000:4_0:223_0:88$ ip community-list expanded c2 permit 4379 ^65000:4_0:223_0:89$ ip community-list expanded c2 permit 4380 ^65000:4_0:223_0:90$ ip community-list expanded c2 permit 4381 ^65000:4_0:223_0:91$ ip community-list expanded c2 permit 4382 ^65000:4_0:223_0:92$ ip community-list expanded c2 permit 4383 ^65000:4_0:223_0:93$ ip community-list expanded c2 permit 4384 ^65000:4_0:223_0:94$ ip community-list expanded c2 permit 4385 ^65000:4_0:223_0:95$ ip community-list expanded c2 permit 4386 ^65000:4_0:223_0:96$ ip community-list expanded c2 permit 4387 ^65000:4_0:223_0:97$ ip community-list expanded c2 permit 4388 ^65000:4_0:223_0:98$ ip community-list expanded c2 permit 4389 ^65000:4_0:223_0:99$ ip community-list expanded c2 permit 4390 ^65000:4_0:223_0:100$ ip community-list expanded c2 permit 4391 ^65000:4_0:223_0:101$ ip community-list expanded c2 permit 4392 ^65000:4_0:223_0:102$ ip community-list expanded c2 permit 4393 ^65000:4_0:223_0:103$ ip community-list expanded c2 permit 4394 ^65000:4_0:223_0:104$ ip community-list expanded c2 permit 4395 ^65000:4_0:223_0:105$ ip community-list expanded c2 permit 4396 ^65000:4_0:223_0:106$ ip community-list expanded c2 permit 4397 ^65000:4_0:223_0:107$ ip community-list expanded c2 permit 4398 ^65000:4_0:223_0:108$ ip community-list expanded c2 permit 4399 ^65000:4_0:223_0:109$ ip community-list expanded c2 permit 4400 ^65000:4_0:223_0:110$ ip community-list expanded c2 permit 4401 ^65000:4_0:223_0:111$ ip community-list expanded c2 permit 4402 ^65000:3_0:223_0:221$ ip community-list expanded c2 permit 4403 ^65000:4_0:224_0:75$ ip community-list expanded c2 permit 4404 ^65000:4_0:224_0:76$ ip community-list expanded c2 permit 4405 ^65000:4_0:224_0:77$ ip community-list expanded c2 permit 4406 ^65000:4_0:224_0:78$ ip community-list expanded c2 permit 4407 ^65000:4_0:224_0:79$ ip community-list expanded c2 permit 4408 ^65000:4_0:224_0:80$ ip community-list expanded c2 permit 4409 ^65000:4_0:224_0:81$ ip community-list expanded c2 permit 4410 ^65000:4_0:224_0:82$ ip community-list expanded c2 permit 4411 ^65000:4_0:224_0:83$ ip community-list expanded c2 permit 4412 ^65000:4_0:224_0:84$ ip community-list expanded c2 permit 4413 ^65000:4_0:224_0:85$ ip community-list expanded c2 permit 4414 ^65000:4_0:224_0:86$ ip community-list expanded c2 permit 4415 ^65000:4_0:224_0:87$ ip community-list expanded c2 permit 4416 ^65000:4_0:224_0:88$ ip community-list expanded c2 permit 4417 ^65000:4_0:224_0:89$ ip community-list expanded c2 permit 4418 ^65000:4_0:224_0:90$ ip community-list expanded c2 permit 4419 ^65000:4_0:224_0:91$ ip community-list expanded c2 permit 4420 ^65000:4_0:224_0:92$ ip community-list expanded c2 permit 4421 ^65000:4_0:224_0:93$ ip community-list expanded c2 permit 4422 ^65000:4_0:224_0:94$ ip community-list expanded c2 permit 4423 ^65000:4_0:224_0:95$ ip community-list expanded c2 permit 4424 ^65000:4_0:224_0:96$ ip community-list expanded c2 permit 4425 ^65000:4_0:224_0:97$ ip community-list expanded c2 permit 4426 ^65000:4_0:224_0:98$ ip community-list expanded c2 permit 4427 ^65000:4_0:224_0:99$ ip community-list expanded c2 permit 4428 ^65000:4_0:224_0:100$ ip community-list expanded c2 permit 4429 ^65000:4_0:224_0:101$ ip community-list expanded c2 permit 4430 ^65000:4_0:224_0:102$ ip community-list expanded c2 permit 4431 ^65000:4_0:224_0:103$ ip community-list expanded c2 permit 4432 ^65000:4_0:224_0:104$ ip community-list expanded c2 permit 4433 ^65000:4_0:224_0:105$ ip community-list expanded c2 permit 4434 ^65000:4_0:224_0:106$ ip community-list expanded c2 permit 4435 ^65000:4_0:224_0:107$ ip community-list expanded c2 permit 4436 ^65000:4_0:224_0:108$ ip community-list expanded c2 permit 4437 ^65000:4_0:224_0:109$ ip community-list expanded c2 permit 4438 ^65000:4_0:224_0:110$ ip community-list expanded c2 permit 4439 ^65000:4_0:224_0:111$ ip community-list expanded c2 permit 4440 ^65000:4_0:224_0:112$ ip community-list expanded c2 permit 4441 ^65000:3_0:224_0:222$ ip community-list expanded c2 permit 4442 ^65000:4_0:225_0:76$ ip community-list expanded c2 permit 4443 ^65000:4_0:225_0:77$ ip community-list expanded c2 permit 4444 ^65000:4_0:225_0:78$ ip community-list expanded c2 permit 4445 ^65000:4_0:225_0:79$ ip community-list expanded c2 permit 4446 ^65000:4_0:225_0:80$ ip community-list expanded c2 permit 4447 ^65000:4_0:225_0:81$ ip community-list expanded c2 permit 4448 ^65000:4_0:225_0:82$ ip community-list expanded c2 permit 4449 ^65000:4_0:225_0:83$ ip community-list expanded c2 permit 4450 ^65000:4_0:225_0:84$ ip community-list expanded c2 permit 4451 ^65000:4_0:225_0:85$ ip community-list expanded c2 permit 4452 ^65000:4_0:225_0:86$ ip community-list expanded c2 permit 4453 ^65000:4_0:225_0:87$ ip community-list expanded c2 permit 4454 ^65000:4_0:225_0:88$ ip community-list expanded c2 permit 4455 ^65000:4_0:225_0:89$ ip community-list expanded c2 permit 4456 ^65000:4_0:225_0:90$ ip community-list expanded c2 permit 4457 ^65000:4_0:225_0:91$ ip community-list expanded c2 permit 4458 ^65000:4_0:225_0:92$ ip community-list expanded c2 permit 4459 ^65000:4_0:225_0:93$ ip community-list expanded c2 permit 4460 ^65000:4_0:225_0:94$ ip community-list expanded c2 permit 4461 ^65000:4_0:225_0:95$ ip community-list expanded c2 permit 4462 ^65000:4_0:225_0:96$ ip community-list expanded c2 permit 4463 ^65000:4_0:225_0:97$ ip community-list expanded c2 permit 4464 ^65000:4_0:225_0:98$ ip community-list expanded c2 permit 4465 ^65000:4_0:225_0:99$ ip community-list expanded c2 permit 4466 ^65000:4_0:225_0:100$ ip community-list expanded c2 permit 4467 ^65000:4_0:225_0:101$ ip community-list expanded c2 permit 4468 ^65000:4_0:225_0:102$ ip community-list expanded c2 permit 4469 ^65000:4_0:225_0:103$ ip community-list expanded c2 permit 4470 ^65000:4_0:225_0:104$ ip community-list expanded c2 permit 4471 ^65000:4_0:225_0:105$ ip community-list expanded c2 permit 4472 ^65000:4_0:225_0:106$ ip community-list expanded c2 permit 4473 ^65000:4_0:225_0:107$ ip community-list expanded c2 permit 4474 ^65000:4_0:225_0:108$ ip community-list expanded c2 permit 4475 ^65000:4_0:225_0:109$ ip community-list expanded c2 permit 4476 ^65000:4_0:225_0:110$ ip community-list expanded c2 permit 4477 ^65000:4_0:225_0:111$ ip community-list expanded c2 permit 4478 ^65000:4_0:225_0:112$ ip community-list expanded c2 permit 4479 ^65000:3_0:225_0:223$ ip community-list expanded c2 permit 4480 ^65000:4_0:226_0:76$ ip community-list expanded c2 permit 4481 ^65000:4_0:226_0:77$ ip community-list expanded c2 permit 4482 ^65000:4_0:226_0:78$ ip community-list expanded c2 permit 4483 ^65000:4_0:226_0:79$ ip community-list expanded c2 permit 4484 ^65000:4_0:226_0:80$ ip community-list expanded c2 permit 4485 ^65000:4_0:226_0:81$ ip community-list expanded c2 permit 4486 ^65000:4_0:226_0:82$ ip community-list expanded c2 permit 4487 ^65000:4_0:226_0:83$ ip community-list expanded c2 permit 4488 ^65000:4_0:226_0:84$ ip community-list expanded c2 permit 4489 ^65000:4_0:226_0:85$ ip community-list expanded c2 permit 4490 ^65000:4_0:226_0:86$ ip community-list expanded c2 permit 4491 ^65000:4_0:226_0:87$ ip community-list expanded c2 permit 4492 ^65000:4_0:226_0:88$ ip community-list expanded c2 permit 4493 ^65000:4_0:226_0:89$ ip community-list expanded c2 permit 4494 ^65000:4_0:226_0:90$ ip community-list expanded c2 permit 4495 ^65000:4_0:226_0:91$ ip community-list expanded c2 permit 4496 ^65000:4_0:226_0:92$ ip community-list expanded c2 permit 4497 ^65000:4_0:226_0:93$ ip community-list expanded c2 permit 4498 ^65000:4_0:226_0:94$ ip community-list expanded c2 permit 4499 ^65000:4_0:226_0:95$ ip community-list expanded c2 permit 4500 ^65000:4_0:226_0:96$ ip community-list expanded c2 permit 4501 ^65000:4_0:226_0:97$ ip community-list expanded c2 permit 4502 ^65000:4_0:226_0:98$ ip community-list expanded c2 permit 4503 ^65000:4_0:226_0:99$ ip community-list expanded c2 permit 4504 ^65000:4_0:226_0:100$ ip community-list expanded c2 permit 4505 ^65000:4_0:226_0:101$ ip community-list expanded c2 permit 4506 ^65000:4_0:226_0:102$ ip community-list expanded c2 permit 4507 ^65000:4_0:226_0:103$ ip community-list expanded c2 permit 4508 ^65000:4_0:226_0:104$ ip community-list expanded c2 permit 4509 ^65000:4_0:226_0:105$ ip community-list expanded c2 permit 4510 ^65000:4_0:226_0:106$ ip community-list expanded c2 permit 4511 ^65000:4_0:226_0:107$ ip community-list expanded c2 permit 4512 ^65000:4_0:226_0:108$ ip community-list expanded c2 permit 4513 ^65000:4_0:226_0:109$ ip community-list expanded c2 permit 4514 ^65000:4_0:226_0:110$ ip community-list expanded c2 permit 4515 ^65000:4_0:226_0:111$ ip community-list expanded c2 permit 4516 ^65000:4_0:226_0:112$ ip community-list expanded c2 permit 4517 ^65000:4_0:226_0:113$ ip community-list expanded c2 permit 4518 ^65000:3_0:226_0:224$ ip community-list expanded c2 permit 4519 ^65000:4_0:227_0:76$ ip community-list expanded c2 permit 4520 ^65000:4_0:227_0:77$ ip community-list expanded c2 permit 4521 ^65000:4_0:227_0:78$ ip community-list expanded c2 permit 4522 ^65000:4_0:227_0:79$ ip community-list expanded c2 permit 4523 ^65000:4_0:227_0:80$ ip community-list expanded c2 permit 4524 ^65000:4_0:227_0:81$ ip community-list expanded c2 permit 4525 ^65000:4_0:227_0:82$ ip community-list expanded c2 permit 4526 ^65000:4_0:227_0:83$ ip community-list expanded c2 permit 4527 ^65000:4_0:227_0:84$ ip community-list expanded c2 permit 4528 ^65000:4_0:227_0:85$ ip community-list expanded c2 permit 4529 ^65000:4_0:227_0:86$ ip community-list expanded c2 permit 4530 ^65000:4_0:227_0:87$ ip community-list expanded c2 permit 4531 ^65000:4_0:227_0:88$ ip community-list expanded c2 permit 4532 ^65000:4_0:227_0:89$ ip community-list expanded c2 permit 4533 ^65000:4_0:227_0:90$ ip community-list expanded c2 permit 4534 ^65000:4_0:227_0:91$ ip community-list expanded c2 permit 4535 ^65000:4_0:227_0:92$ ip community-list expanded c2 permit 4536 ^65000:4_0:227_0:93$ ip community-list expanded c2 permit 4537 ^65000:4_0:227_0:94$ ip community-list expanded c2 permit 4538 ^65000:4_0:227_0:95$ ip community-list expanded c2 permit 4539 ^65000:4_0:227_0:96$ ip community-list expanded c2 permit 4540 ^65000:4_0:227_0:97$ ip community-list expanded c2 permit 4541 ^65000:4_0:227_0:98$ ip community-list expanded c2 permit 4542 ^65000:4_0:227_0:99$ ip community-list expanded c2 permit 4543 ^65000:4_0:227_0:100$ ip community-list expanded c2 permit 4544 ^65000:4_0:227_0:101$ ip community-list expanded c2 permit 4545 ^65000:4_0:227_0:102$ ip community-list expanded c2 permit 4546 ^65000:4_0:227_0:103$ ip community-list expanded c2 permit 4547 ^65000:4_0:227_0:104$ ip community-list expanded c2 permit 4548 ^65000:4_0:227_0:105$ ip community-list expanded c2 permit 4549 ^65000:4_0:227_0:106$ ip community-list expanded c2 permit 4550 ^65000:4_0:227_0:107$ ip community-list expanded c2 permit 4551 ^65000:4_0:227_0:108$ ip community-list expanded c2 permit 4552 ^65000:4_0:227_0:109$ ip community-list expanded c2 permit 4553 ^65000:4_0:227_0:110$ ip community-list expanded c2 permit 4554 ^65000:4_0:227_0:111$ ip community-list expanded c2 permit 4555 ^65000:4_0:227_0:112$ ip community-list expanded c2 permit 4556 ^65000:4_0:227_0:113$ ip community-list expanded c2 permit 4557 ^65000:3_0:227_0:225$ ip community-list expanded c2 permit 4558 ^65000:4_0:228_0:77$ ip community-list expanded c2 permit 4559 ^65000:4_0:228_0:78$ ip community-list expanded c2 permit 4560 ^65000:4_0:228_0:79$ ip community-list expanded c2 permit 4561 ^65000:4_0:228_0:80$ ip community-list expanded c2 permit 4562 ^65000:4_0:228_0:81$ ip community-list expanded c2 permit 4563 ^65000:4_0:228_0:82$ ip community-list expanded c2 permit 4564 ^65000:4_0:228_0:83$ ip community-list expanded c2 permit 4565 ^65000:4_0:228_0:84$ ip community-list expanded c2 permit 4566 ^65000:4_0:228_0:85$ ip community-list expanded c2 permit 4567 ^65000:4_0:228_0:86$ ip community-list expanded c2 permit 4568 ^65000:4_0:228_0:87$ ip community-list expanded c2 permit 4569 ^65000:4_0:228_0:88$ ip community-list expanded c2 permit 4570 ^65000:4_0:228_0:89$ ip community-list expanded c2 permit 4571 ^65000:4_0:228_0:90$ ip community-list expanded c2 permit 4572 ^65000:4_0:228_0:91$ ip community-list expanded c2 permit 4573 ^65000:4_0:228_0:92$ ip community-list expanded c2 permit 4574 ^65000:4_0:228_0:93$ ip community-list expanded c2 permit 4575 ^65000:4_0:228_0:94$ ip community-list expanded c2 permit 4576 ^65000:4_0:228_0:95$ ip community-list expanded c2 permit 4577 ^65000:4_0:228_0:96$ ip community-list expanded c2 permit 4578 ^65000:4_0:228_0:97$ ip community-list expanded c2 permit 4579 ^65000:4_0:228_0:98$ ip community-list expanded c2 permit 4580 ^65000:4_0:228_0:99$ ip community-list expanded c2 permit 4581 ^65000:4_0:228_0:100$ ip community-list expanded c2 permit 4582 ^65000:4_0:228_0:101$ ip community-list expanded c2 permit 4583 ^65000:4_0:228_0:102$ ip community-list expanded c2 permit 4584 ^65000:4_0:228_0:103$ ip community-list expanded c2 permit 4585 ^65000:4_0:228_0:104$ ip community-list expanded c2 permit 4586 ^65000:4_0:228_0:105$ ip community-list expanded c2 permit 4587 ^65000:4_0:228_0:106$ ip community-list expanded c2 permit 4588 ^65000:4_0:228_0:107$ ip community-list expanded c2 permit 4589 ^65000:4_0:228_0:108$ ip community-list expanded c2 permit 4590 ^65000:4_0:228_0:109$ ip community-list expanded c2 permit 4591 ^65000:4_0:228_0:110$ ip community-list expanded c2 permit 4592 ^65000:4_0:228_0:111$ ip community-list expanded c2 permit 4593 ^65000:4_0:228_0:112$ ip community-list expanded c2 permit 4594 ^65000:4_0:228_0:113$ ip community-list expanded c2 permit 4595 ^65000:4_0:228_0:114$ ip community-list expanded c2 permit 4596 ^65000:3_0:228_0:226$ ip community-list expanded c2 permit 4597 ^65000:4_0:229_0:77$ ip community-list expanded c2 permit 4598 ^65000:4_0:229_0:78$ ip community-list expanded c2 permit 4599 ^65000:4_0:229_0:79$ ip community-list expanded c2 permit 4600 ^65000:4_0:229_0:80$ ip community-list expanded c2 permit 4601 ^65000:4_0:229_0:81$ ip community-list expanded c2 permit 4602 ^65000:4_0:229_0:82$ ip community-list expanded c2 permit 4603 ^65000:4_0:229_0:83$ ip community-list expanded c2 permit 4604 ^65000:4_0:229_0:84$ ip community-list expanded c2 permit 4605 ^65000:4_0:229_0:85$ ip community-list expanded c2 permit 4606 ^65000:4_0:229_0:86$ ip community-list expanded c2 permit 4607 ^65000:4_0:229_0:87$ ip community-list expanded c2 permit 4608 ^65000:4_0:229_0:88$ ip community-list expanded c2 permit 4609 ^65000:4_0:229_0:89$ ip community-list expanded c2 permit 4610 ^65000:4_0:229_0:90$ ip community-list expanded c2 permit 4611 ^65000:4_0:229_0:91$ ip community-list expanded c2 permit 4612 ^65000:4_0:229_0:92$ ip community-list expanded c2 permit 4613 ^65000:4_0:229_0:93$ ip community-list expanded c2 permit 4614 ^65000:4_0:229_0:94$ ip community-list expanded c2 permit 4615 ^65000:4_0:229_0:95$ ip community-list expanded c2 permit 4616 ^65000:4_0:229_0:96$ ip community-list expanded c2 permit 4617 ^65000:4_0:229_0:97$ ip community-list expanded c2 permit 4618 ^65000:4_0:229_0:98$ ip community-list expanded c2 permit 4619 ^65000:4_0:229_0:99$ ip community-list expanded c2 permit 4620 ^65000:4_0:229_0:100$ ip community-list expanded c2 permit 4621 ^65000:4_0:229_0:101$ ip community-list expanded c2 permit 4622 ^65000:4_0:229_0:102$ ip community-list expanded c2 permit 4623 ^65000:4_0:229_0:103$ ip community-list expanded c2 permit 4624 ^65000:4_0:229_0:104$ ip community-list expanded c2 permit 4625 ^65000:4_0:229_0:105$ ip community-list expanded c2 permit 4626 ^65000:4_0:229_0:106$ ip community-list expanded c2 permit 4627 ^65000:4_0:229_0:107$ ip community-list expanded c2 permit 4628 ^65000:4_0:229_0:108$ ip community-list expanded c2 permit 4629 ^65000:4_0:229_0:109$ ip community-list expanded c2 permit 4630 ^65000:4_0:229_0:110$ ip community-list expanded c2 permit 4631 ^65000:4_0:229_0:111$ ip community-list expanded c2 permit 4632 ^65000:4_0:229_0:112$ ip community-list expanded c2 permit 4633 ^65000:4_0:229_0:113$ ip community-list expanded c2 permit 4634 ^65000:4_0:229_0:114$ ip community-list expanded c2 permit 4635 ^65000:3_0:229_0:227$ ip community-list expanded c2 permit 4636 ^65000:4_0:230_0:77$ ip community-list expanded c2 permit 4637 ^65000:4_0:230_0:78$ ip community-list expanded c2 permit 4638 ^65000:4_0:230_0:79$ ip community-list expanded c2 permit 4639 ^65000:4_0:230_0:80$ ip community-list expanded c2 permit 4640 ^65000:4_0:230_0:81$ ip community-list expanded c2 permit 4641 ^65000:4_0:230_0:82$ ip community-list expanded c2 permit 4642 ^65000:4_0:230_0:83$ ip community-list expanded c2 permit 4643 ^65000:4_0:230_0:84$ ip community-list expanded c2 permit 4644 ^65000:4_0:230_0:85$ ip community-list expanded c2 permit 4645 ^65000:4_0:230_0:86$ ip community-list expanded c2 permit 4646 ^65000:4_0:230_0:87$ ip community-list expanded c2 permit 4647 ^65000:4_0:230_0:88$ ip community-list expanded c2 permit 4648 ^65000:4_0:230_0:89$ ip community-list expanded c2 permit 4649 ^65000:4_0:230_0:90$ ip community-list expanded c2 permit 4650 ^65000:4_0:230_0:91$ ip community-list expanded c2 permit 4651 ^65000:4_0:230_0:92$ ip community-list expanded c2 permit 4652 ^65000:4_0:230_0:93$ ip community-list expanded c2 permit 4653 ^65000:4_0:230_0:94$ ip community-list expanded c2 permit 4654 ^65000:4_0:230_0:95$ ip community-list expanded c2 permit 4655 ^65000:4_0:230_0:96$ ip community-list expanded c2 permit 4656 ^65000:4_0:230_0:97$ ip community-list expanded c2 permit 4657 ^65000:4_0:230_0:98$ ip community-list expanded c2 permit 4658 ^65000:4_0:230_0:99$ ip community-list expanded c2 permit 4659 ^65000:4_0:230_0:100$ ip community-list expanded c2 permit 4660 ^65000:4_0:230_0:101$ ip community-list expanded c2 permit 4661 ^65000:4_0:230_0:102$ ip community-list expanded c2 permit 4662 ^65000:4_0:230_0:103$ ip community-list expanded c2 permit 4663 ^65000:4_0:230_0:104$ ip community-list expanded c2 permit 4664 ^65000:4_0:230_0:105$ ip community-list expanded c2 permit 4665 ^65000:4_0:230_0:106$ ip community-list expanded c2 permit 4666 ^65000:4_0:230_0:107$ ip community-list expanded c2 permit 4667 ^65000:4_0:230_0:108$ ip community-list expanded c2 permit 4668 ^65000:4_0:230_0:109$ ip community-list expanded c2 permit 4669 ^65000:4_0:230_0:110$ ip community-list expanded c2 permit 4670 ^65000:4_0:230_0:111$ ip community-list expanded c2 permit 4671 ^65000:4_0:230_0:112$ ip community-list expanded c2 permit 4672 ^65000:4_0:230_0:113$ ip community-list expanded c2 permit 4673 ^65000:4_0:230_0:114$ ip community-list expanded c2 permit 4674 ^65000:4_0:230_0:115$ ip community-list expanded c2 permit 4675 ^65000:3_0:230_0:228$ ip community-list expanded c2 permit 4676 ^65000:4_0:231_0:78$ ip community-list expanded c2 permit 4677 ^65000:4_0:231_0:79$ ip community-list expanded c2 permit 4678 ^65000:4_0:231_0:80$ ip community-list expanded c2 permit 4679 ^65000:4_0:231_0:81$ ip community-list expanded c2 permit 4680 ^65000:4_0:231_0:82$ ip community-list expanded c2 permit 4681 ^65000:4_0:231_0:83$ ip community-list expanded c2 permit 4682 ^65000:4_0:231_0:84$ ip community-list expanded c2 permit 4683 ^65000:4_0:231_0:85$ ip community-list expanded c2 permit 4684 ^65000:4_0:231_0:86$ ip community-list expanded c2 permit 4685 ^65000:4_0:231_0:87$ ip community-list expanded c2 permit 4686 ^65000:4_0:231_0:88$ ip community-list expanded c2 permit 4687 ^65000:4_0:231_0:89$ ip community-list expanded c2 permit 4688 ^65000:4_0:231_0:90$ ip community-list expanded c2 permit 4689 ^65000:4_0:231_0:91$ ip community-list expanded c2 permit 4690 ^65000:4_0:231_0:92$ ip community-list expanded c2 permit 4691 ^65000:4_0:231_0:93$ ip community-list expanded c2 permit 4692 ^65000:4_0:231_0:94$ ip community-list expanded c2 permit 4693 ^65000:4_0:231_0:95$ ip community-list expanded c2 permit 4694 ^65000:4_0:231_0:96$ ip community-list expanded c2 permit 4695 ^65000:4_0:231_0:97$ ip community-list expanded c2 permit 4696 ^65000:4_0:231_0:98$ ip community-list expanded c2 permit 4697 ^65000:4_0:231_0:99$ ip community-list expanded c2 permit 4698 ^65000:4_0:231_0:100$ ip community-list expanded c2 permit 4699 ^65000:4_0:231_0:101$ ip community-list expanded c2 permit 4700 ^65000:4_0:231_0:102$ ip community-list expanded c2 permit 4701 ^65000:4_0:231_0:103$ ip community-list expanded c2 permit 4702 ^65000:4_0:231_0:104$ ip community-list expanded c2 permit 4703 ^65000:4_0:231_0:105$ ip community-list expanded c2 permit 4704 ^65000:4_0:231_0:106$ ip community-list expanded c2 permit 4705 ^65000:4_0:231_0:107$ ip community-list expanded c2 permit 4706 ^65000:4_0:231_0:108$ ip community-list expanded c2 permit 4707 ^65000:4_0:231_0:109$ ip community-list expanded c2 permit 4708 ^65000:4_0:231_0:110$ ip community-list expanded c2 permit 4709 ^65000:4_0:231_0:111$ ip community-list expanded c2 permit 4710 ^65000:4_0:231_0:112$ ip community-list expanded c2 permit 4711 ^65000:4_0:231_0:113$ ip community-list expanded c2 permit 4712 ^65000:4_0:231_0:114$ ip community-list expanded c2 permit 4713 ^65000:4_0:231_0:115$ ip community-list expanded c2 permit 4714 ^65000:3_0:231_0:229$ ip community-list expanded c2 permit 4715 ^65000:4_0:232_0:78$ ip community-list expanded c2 permit 4716 ^65000:4_0:232_0:79$ ip community-list expanded c2 permit 4717 ^65000:4_0:232_0:80$ ip community-list expanded c2 permit 4718 ^65000:4_0:232_0:81$ ip community-list expanded c2 permit 4719 ^65000:4_0:232_0:82$ ip community-list expanded c2 permit 4720 ^65000:4_0:232_0:83$ ip community-list expanded c2 permit 4721 ^65000:4_0:232_0:84$ ip community-list expanded c2 permit 4722 ^65000:4_0:232_0:85$ ip community-list expanded c2 permit 4723 ^65000:4_0:232_0:86$ ip community-list expanded c2 permit 4724 ^65000:4_0:232_0:87$ ip community-list expanded c2 permit 4725 ^65000:4_0:232_0:88$ ip community-list expanded c2 permit 4726 ^65000:4_0:232_0:89$ ip community-list expanded c2 permit 4727 ^65000:4_0:232_0:90$ ip community-list expanded c2 permit 4728 ^65000:4_0:232_0:91$ ip community-list expanded c2 permit 4729 ^65000:4_0:232_0:92$ ip community-list expanded c2 permit 4730 ^65000:4_0:232_0:93$ ip community-list expanded c2 permit 4731 ^65000:4_0:232_0:94$ ip community-list expanded c2 permit 4732 ^65000:4_0:232_0:95$ ip community-list expanded c2 permit 4733 ^65000:4_0:232_0:96$ ip community-list expanded c2 permit 4734 ^65000:4_0:232_0:97$ ip community-list expanded c2 permit 4735 ^65000:4_0:232_0:98$ ip community-list expanded c2 permit 4736 ^65000:4_0:232_0:99$ ip community-list expanded c2 permit 4737 ^65000:4_0:232_0:100$ ip community-list expanded c2 permit 4738 ^65000:4_0:232_0:101$ ip community-list expanded c2 permit 4739 ^65000:4_0:232_0:102$ ip community-list expanded c2 permit 4740 ^65000:4_0:232_0:103$ ip community-list expanded c2 permit 4741 ^65000:4_0:232_0:104$ ip community-list expanded c2 permit 4742 ^65000:4_0:232_0:105$ ip community-list expanded c2 permit 4743 ^65000:4_0:232_0:106$ ip community-list expanded c2 permit 4744 ^65000:4_0:232_0:107$ ip community-list expanded c2 permit 4745 ^65000:4_0:232_0:108$ ip community-list expanded c2 permit 4746 ^65000:4_0:232_0:109$ ip community-list expanded c2 permit 4747 ^65000:4_0:232_0:110$ ip community-list expanded c2 permit 4748 ^65000:4_0:232_0:111$ ip community-list expanded c2 permit 4749 ^65000:4_0:232_0:112$ ip community-list expanded c2 permit 4750 ^65000:4_0:232_0:113$ ip community-list expanded c2 permit 4751 ^65000:4_0:232_0:114$ ip community-list expanded c2 permit 4752 ^65000:4_0:232_0:115$ ip community-list expanded c2 permit 4753 ^65000:4_0:232_0:116$ ip community-list expanded c2 permit 4754 ^65000:3_0:232_0:230$ ip community-list expanded c2 permit 4755 ^65000:4_0:233_0:78$ ip community-list expanded c2 permit 4756 ^65000:4_0:233_0:79$ ip community-list expanded c2 permit 4757 ^65000:4_0:233_0:80$ ip community-list expanded c2 permit 4758 ^65000:4_0:233_0:81$ ip community-list expanded c2 permit 4759 ^65000:4_0:233_0:82$ ip community-list expanded c2 permit 4760 ^65000:4_0:233_0:83$ ip community-list expanded c2 permit 4761 ^65000:4_0:233_0:84$ ip community-list expanded c2 permit 4762 ^65000:4_0:233_0:85$ ip community-list expanded c2 permit 4763 ^65000:4_0:233_0:86$ ip community-list expanded c2 permit 4764 ^65000:4_0:233_0:87$ ip community-list expanded c2 permit 4765 ^65000:4_0:233_0:88$ ip community-list expanded c2 permit 4766 ^65000:4_0:233_0:89$ ip community-list expanded c2 permit 4767 ^65000:4_0:233_0:90$ ip community-list expanded c2 permit 4768 ^65000:4_0:233_0:91$ ip community-list expanded c2 permit 4769 ^65000:4_0:233_0:92$ ip community-list expanded c2 permit 4770 ^65000:4_0:233_0:93$ ip community-list expanded c2 permit 4771 ^65000:4_0:233_0:94$ ip community-list expanded c2 permit 4772 ^65000:4_0:233_0:95$ ip community-list expanded c2 permit 4773 ^65000:4_0:233_0:96$ ip community-list expanded c2 permit 4774 ^65000:4_0:233_0:97$ ip community-list expanded c2 permit 4775 ^65000:4_0:233_0:98$ ip community-list expanded c2 permit 4776 ^65000:4_0:233_0:99$ ip community-list expanded c2 permit 4777 ^65000:4_0:233_0:100$ ip community-list expanded c2 permit 4778 ^65000:4_0:233_0:101$ ip community-list expanded c2 permit 4779 ^65000:4_0:233_0:102$ ip community-list expanded c2 permit 4780 ^65000:4_0:233_0:103$ ip community-list expanded c2 permit 4781 ^65000:4_0:233_0:104$ ip community-list expanded c2 permit 4782 ^65000:4_0:233_0:105$ ip community-list expanded c2 permit 4783 ^65000:4_0:233_0:106$ ip community-list expanded c2 permit 4784 ^65000:4_0:233_0:107$ ip community-list expanded c2 permit 4785 ^65000:4_0:233_0:108$ ip community-list expanded c2 permit 4786 ^65000:4_0:233_0:109$ ip community-list expanded c2 permit 4787 ^65000:4_0:233_0:110$ ip community-list expanded c2 permit 4788 ^65000:4_0:233_0:111$ ip community-list expanded c2 permit 4789 ^65000:4_0:233_0:112$ ip community-list expanded c2 permit 4790 ^65000:4_0:233_0:113$ ip community-list expanded c2 permit 4791 ^65000:4_0:233_0:114$ ip community-list expanded c2 permit 4792 ^65000:4_0:233_0:115$ ip community-list expanded c2 permit 4793 ^65000:4_0:233_0:116$ ip community-list expanded c2 permit 4794 ^65000:3_0:233_0:231$ ip community-list expanded c2 permit 4795 ^65000:4_0:234_0:79$ ip community-list expanded c2 permit 4796 ^65000:4_0:234_0:80$ ip community-list expanded c2 permit 4797 ^65000:4_0:234_0:81$ ip community-list expanded c2 permit 4798 ^65000:4_0:234_0:82$ ip community-list expanded c2 permit 4799 ^65000:4_0:234_0:83$ ip community-list expanded c2 permit 4800 ^65000:4_0:234_0:84$ ip community-list expanded c2 permit 4801 ^65000:4_0:234_0:85$ ip community-list expanded c2 permit 4802 ^65000:4_0:234_0:86$ ip community-list expanded c2 permit 4803 ^65000:4_0:234_0:87$ ip community-list expanded c2 permit 4804 ^65000:4_0:234_0:88$ ip community-list expanded c2 permit 4805 ^65000:4_0:234_0:89$ ip community-list expanded c2 permit 4806 ^65000:4_0:234_0:90$ ip community-list expanded c2 permit 4807 ^65000:4_0:234_0:91$ ip community-list expanded c2 permit 4808 ^65000:4_0:234_0:92$ ip community-list expanded c2 permit 4809 ^65000:4_0:234_0:93$ ip community-list expanded c2 permit 4810 ^65000:4_0:234_0:94$ ip community-list expanded c2 permit 4811 ^65000:4_0:234_0:95$ ip community-list expanded c2 permit 4812 ^65000:4_0:234_0:96$ ip community-list expanded c2 permit 4813 ^65000:4_0:234_0:97$ ip community-list expanded c2 permit 4814 ^65000:4_0:234_0:98$ ip community-list expanded c2 permit 4815 ^65000:4_0:234_0:99$ ip community-list expanded c2 permit 4816 ^65000:4_0:234_0:100$ ip community-list expanded c2 permit 4817 ^65000:4_0:234_0:101$ ip community-list expanded c2 permit 4818 ^65000:4_0:234_0:102$ ip community-list expanded c2 permit 4819 ^65000:4_0:234_0:103$ ip community-list expanded c2 permit 4820 ^65000:4_0:234_0:104$ ip community-list expanded c2 permit 4821 ^65000:4_0:234_0:105$ ip community-list expanded c2 permit 4822 ^65000:4_0:234_0:106$ ip community-list expanded c2 permit 4823 ^65000:4_0:234_0:107$ ip community-list expanded c2 permit 4824 ^65000:4_0:234_0:108$ ip community-list expanded c2 permit 4825 ^65000:4_0:234_0:109$ ip community-list expanded c2 permit 4826 ^65000:4_0:234_0:110$ ip community-list expanded c2 permit 4827 ^65000:4_0:234_0:111$ ip community-list expanded c2 permit 4828 ^65000:4_0:234_0:112$ ip community-list expanded c2 permit 4829 ^65000:4_0:234_0:113$ ip community-list expanded c2 permit 4830 ^65000:4_0:234_0:114$ ip community-list expanded c2 permit 4831 ^65000:4_0:234_0:115$ ip community-list expanded c2 permit 4832 ^65000:4_0:234_0:116$ ip community-list expanded c2 permit 4833 ^65000:4_0:234_0:117$ ip community-list expanded c2 permit 4834 ^65000:3_0:234_0:232$ ip community-list expanded c2 permit 4835 ^65000:4_0:235_0:79$ ip community-list expanded c2 permit 4836 ^65000:4_0:235_0:80$ ip community-list expanded c2 permit 4837 ^65000:4_0:235_0:81$ ip community-list expanded c2 permit 4838 ^65000:4_0:235_0:82$ ip community-list expanded c2 permit 4839 ^65000:4_0:235_0:83$ ip community-list expanded c2 permit 4840 ^65000:4_0:235_0:84$ ip community-list expanded c2 permit 4841 ^65000:4_0:235_0:85$ ip community-list expanded c2 permit 4842 ^65000:4_0:235_0:86$ ip community-list expanded c2 permit 4843 ^65000:4_0:235_0:87$ ip community-list expanded c2 permit 4844 ^65000:4_0:235_0:88$ ip community-list expanded c2 permit 4845 ^65000:4_0:235_0:89$ ip community-list expanded c2 permit 4846 ^65000:4_0:235_0:90$ ip community-list expanded c2 permit 4847 ^65000:4_0:235_0:91$ ip community-list expanded c2 permit 4848 ^65000:4_0:235_0:92$ ip community-list expanded c2 permit 4849 ^65000:4_0:235_0:93$ ip community-list expanded c2 permit 4850 ^65000:4_0:235_0:94$ ip community-list expanded c2 permit 4851 ^65000:4_0:235_0:95$ ip community-list expanded c2 permit 4852 ^65000:4_0:235_0:96$ ip community-list expanded c2 permit 4853 ^65000:4_0:235_0:97$ ip community-list expanded c2 permit 4854 ^65000:4_0:235_0:98$ ip community-list expanded c2 permit 4855 ^65000:4_0:235_0:99$ ip community-list expanded c2 permit 4856 ^65000:4_0:235_0:100$ ip community-list expanded c2 permit 4857 ^65000:4_0:235_0:101$ ip community-list expanded c2 permit 4858 ^65000:4_0:235_0:102$ ip community-list expanded c2 permit 4859 ^65000:4_0:235_0:103$ ip community-list expanded c2 permit 4860 ^65000:4_0:235_0:104$ ip community-list expanded c2 permit 4861 ^65000:4_0:235_0:105$ ip community-list expanded c2 permit 4862 ^65000:4_0:235_0:106$ ip community-list expanded c2 permit 4863 ^65000:4_0:235_0:107$ ip community-list expanded c2 permit 4864 ^65000:4_0:235_0:108$ ip community-list expanded c2 permit 4865 ^65000:4_0:235_0:109$ ip community-list expanded c2 permit 4866 ^65000:4_0:235_0:110$ ip community-list expanded c2 permit 4867 ^65000:4_0:235_0:111$ ip community-list expanded c2 permit 4868 ^65000:4_0:235_0:112$ ip community-list expanded c2 permit 4869 ^65000:4_0:235_0:113$ ip community-list expanded c2 permit 4870 ^65000:4_0:235_0:114$ ip community-list expanded c2 permit 4871 ^65000:4_0:235_0:115$ ip community-list expanded c2 permit 4872 ^65000:4_0:235_0:116$ ip community-list expanded c2 permit 4873 ^65000:4_0:235_0:117$ ip community-list expanded c2 permit 4874 ^65000:3_0:235_0:233$ ip community-list expanded c2 permit 4875 ^65000:4_0:236_0:79$ ip community-list expanded c2 permit 4876 ^65000:4_0:236_0:80$ ip community-list expanded c2 permit 4877 ^65000:4_0:236_0:81$ ip community-list expanded c2 permit 4878 ^65000:4_0:236_0:82$ ip community-list expanded c2 permit 4879 ^65000:4_0:236_0:83$ ip community-list expanded c2 permit 4880 ^65000:4_0:236_0:84$ ip community-list expanded c2 permit 4881 ^65000:4_0:236_0:85$ ip community-list expanded c2 permit 4882 ^65000:4_0:236_0:86$ ip community-list expanded c2 permit 4883 ^65000:4_0:236_0:87$ ip community-list expanded c2 permit 4884 ^65000:4_0:236_0:88$ ip community-list expanded c2 permit 4885 ^65000:4_0:236_0:89$ ip community-list expanded c2 permit 4886 ^65000:4_0:236_0:90$ ip community-list expanded c2 permit 4887 ^65000:4_0:236_0:91$ ip community-list expanded c2 permit 4888 ^65000:4_0:236_0:92$ ip community-list expanded c2 permit 4889 ^65000:4_0:236_0:93$ ip community-list expanded c2 permit 4890 ^65000:4_0:236_0:94$ ip community-list expanded c2 permit 4891 ^65000:4_0:236_0:95$ ip community-list expanded c2 permit 4892 ^65000:4_0:236_0:96$ ip community-list expanded c2 permit 4893 ^65000:4_0:236_0:97$ ip community-list expanded c2 permit 4894 ^65000:4_0:236_0:98$ ip community-list expanded c2 permit 4895 ^65000:4_0:236_0:99$ ip community-list expanded c2 permit 4896 ^65000:4_0:236_0:100$ ip community-list expanded c2 permit 4897 ^65000:4_0:236_0:101$ ip community-list expanded c2 permit 4898 ^65000:4_0:236_0:102$ ip community-list expanded c2 permit 4899 ^65000:4_0:236_0:103$ ip community-list expanded c2 permit 4900 ^65000:4_0:236_0:104$ ip community-list expanded c2 permit 4901 ^65000:4_0:236_0:105$ ip community-list expanded c2 permit 4902 ^65000:4_0:236_0:106$ ip community-list expanded c2 permit 4903 ^65000:4_0:236_0:107$ ip community-list expanded c2 permit 4904 ^65000:4_0:236_0:108$ ip community-list expanded c2 permit 4905 ^65000:4_0:236_0:109$ ip community-list expanded c2 permit 4906 ^65000:4_0:236_0:110$ ip community-list expanded c2 permit 4907 ^65000:4_0:236_0:111$ ip community-list expanded c2 permit 4908 ^65000:4_0:236_0:112$ ip community-list expanded c2 permit 4909 ^65000:4_0:236_0:113$ ip community-list expanded c2 permit 4910 ^65000:4_0:236_0:114$ ip community-list expanded c2 permit 4911 ^65000:4_0:236_0:115$ ip community-list expanded c2 permit 4912 ^65000:4_0:236_0:116$ ip community-list expanded c2 permit 4913 ^65000:4_0:236_0:117$ ip community-list expanded c2 permit 4914 ^65000:4_0:236_0:118$ ip community-list expanded c2 permit 4915 ^65000:3_0:236_0:234$ ip community-list expanded c2 permit 4916 ^65000:4_0:237_0:80$ ip community-list expanded c2 permit 4917 ^65000:4_0:237_0:81$ ip community-list expanded c2 permit 4918 ^65000:4_0:237_0:82$ ip community-list expanded c2 permit 4919 ^65000:4_0:237_0:83$ ip community-list expanded c2 permit 4920 ^65000:4_0:237_0:84$ ip community-list expanded c2 permit 4921 ^65000:4_0:237_0:85$ ip community-list expanded c2 permit 4922 ^65000:4_0:237_0:86$ ip community-list expanded c2 permit 4923 ^65000:4_0:237_0:87$ ip community-list expanded c2 permit 4924 ^65000:4_0:237_0:88$ ip community-list expanded c2 permit 4925 ^65000:4_0:237_0:89$ ip community-list expanded c2 permit 4926 ^65000:4_0:237_0:90$ ip community-list expanded c2 permit 4927 ^65000:4_0:237_0:91$ ip community-list expanded c2 permit 4928 ^65000:4_0:237_0:92$ ip community-list expanded c2 permit 4929 ^65000:4_0:237_0:93$ ip community-list expanded c2 permit 4930 ^65000:4_0:237_0:94$ ip community-list expanded c2 permit 4931 ^65000:4_0:237_0:95$ ip community-list expanded c2 permit 4932 ^65000:4_0:237_0:96$ ip community-list expanded c2 permit 4933 ^65000:4_0:237_0:97$ ip community-list expanded c2 permit 4934 ^65000:4_0:237_0:98$ ip community-list expanded c2 permit 4935 ^65000:4_0:237_0:99$ ip community-list expanded c2 permit 4936 ^65000:4_0:237_0:100$ ip community-list expanded c2 permit 4937 ^65000:4_0:237_0:101$ ip community-list expanded c2 permit 4938 ^65000:4_0:237_0:102$ ip community-list expanded c2 permit 4939 ^65000:4_0:237_0:103$ ip community-list expanded c2 permit 4940 ^65000:4_0:237_0:104$ ip community-list expanded c2 permit 4941 ^65000:4_0:237_0:105$ ip community-list expanded c2 permit 4942 ^65000:4_0:237_0:106$ ip community-list expanded c2 permit 4943 ^65000:4_0:237_0:107$ ip community-list expanded c2 permit 4944 ^65000:4_0:237_0:108$ ip community-list expanded c2 permit 4945 ^65000:4_0:237_0:109$ ip community-list expanded c2 permit 4946 ^65000:4_0:237_0:110$ ip community-list expanded c2 permit 4947 ^65000:4_0:237_0:111$ ip community-list expanded c2 permit 4948 ^65000:4_0:237_0:112$ ip community-list expanded c2 permit 4949 ^65000:4_0:237_0:113$ ip community-list expanded c2 permit 4950 ^65000:4_0:237_0:114$ ip community-list expanded c2 permit 4951 ^65000:4_0:237_0:115$ ip community-list expanded c2 permit 4952 ^65000:4_0:237_0:116$ ip community-list expanded c2 permit 4953 ^65000:4_0:237_0:117$ ip community-list expanded c2 permit 4954 ^65000:4_0:237_0:118$ ip community-list expanded c2 permit 4955 ^65000:3_0:237_0:235$ ip community-list expanded c2 permit 4956 ^65000:4_0:238_0:80$ ip community-list expanded c2 permit 4957 ^65000:4_0:238_0:81$ ip community-list expanded c2 permit 4958 ^65000:4_0:238_0:82$ ip community-list expanded c2 permit 4959 ^65000:4_0:238_0:83$ ip community-list expanded c2 permit 4960 ^65000:4_0:238_0:84$ ip community-list expanded c2 permit 4961 ^65000:4_0:238_0:85$ ip community-list expanded c2 permit 4962 ^65000:4_0:238_0:86$ ip community-list expanded c2 permit 4963 ^65000:4_0:238_0:87$ ip community-list expanded c2 permit 4964 ^65000:4_0:238_0:88$ ip community-list expanded c2 permit 4965 ^65000:4_0:238_0:89$ ip community-list expanded c2 permit 4966 ^65000:4_0:238_0:90$ ip community-list expanded c2 permit 4967 ^65000:4_0:238_0:91$ ip community-list expanded c2 permit 4968 ^65000:4_0:238_0:92$ ip community-list expanded c2 permit 4969 ^65000:4_0:238_0:93$ ip community-list expanded c2 permit 4970 ^65000:4_0:238_0:94$ ip community-list expanded c2 permit 4971 ^65000:4_0:238_0:95$ ip community-list expanded c2 permit 4972 ^65000:4_0:238_0:96$ ip community-list expanded c2 permit 4973 ^65000:4_0:238_0:97$ ip community-list expanded c2 permit 4974 ^65000:4_0:238_0:98$ ip community-list expanded c2 permit 4975 ^65000:4_0:238_0:99$ ip community-list expanded c2 permit 4976 ^65000:4_0:238_0:100$ ip community-list expanded c2 permit 4977 ^65000:4_0:238_0:101$ ip community-list expanded c2 permit 4978 ^65000:4_0:238_0:102$ ip community-list expanded c2 permit 4979 ^65000:4_0:238_0:103$ ip community-list expanded c2 permit 4980 ^65000:4_0:238_0:104$ ip community-list expanded c2 permit 4981 ^65000:4_0:238_0:105$ ip community-list expanded c2 permit 4982 ^65000:4_0:238_0:106$ ip community-list expanded c2 permit 4983 ^65000:4_0:238_0:107$ ip community-list expanded c2 permit 4984 ^65000:4_0:238_0:108$ ip community-list expanded c2 permit 4985 ^65000:4_0:238_0:109$ ip community-list expanded c2 permit 4986 ^65000:4_0:238_0:110$ ip community-list expanded c2 permit 4987 ^65000:4_0:238_0:111$ ip community-list expanded c2 permit 4988 ^65000:4_0:238_0:112$ ip community-list expanded c2 permit 4989 ^65000:4_0:238_0:113$ ip community-list expanded c2 permit 4990 ^65000:4_0:238_0:114$ ip community-list expanded c2 permit 4991 ^65000:4_0:238_0:115$ ip community-list expanded c2 permit 4992 ^65000:4_0:238_0:116$ ip community-list expanded c2 permit 4993 ^65000:4_0:238_0:117$ ip community-list expanded c2 permit 4994 ^65000:4_0:238_0:118$ ip community-list expanded c2 permit 4995 ^65000:4_0:238_0:119$ ip community-list expanded c2 permit 4996 ^65000:3_0:238_0:236$ ip community-list expanded c2 permit 4997 ^65000:4_0:239_0:80$ ip community-list expanded c2 permit 4998 ^65000:4_0:239_0:81$ ip community-list expanded c2 permit 4999 ^65000:4_0:239_0:82$ ip community-list expanded c2 permit 5000 ^65000:4_0:239_0:83$ ip community-list expanded c2 permit 5001 ^65000:4_0:239_0:84$ ip community-list expanded c2 permit 5002 ^65000:4_0:239_0:85$ ip community-list expanded c2 permit 5003 ^65000:4_0:239_0:86$ ip community-list expanded c2 permit 5004 ^65000:4_0:239_0:87$ ip community-list expanded c2 permit 5005 ^65000:4_0:239_0:88$ ip community-list expanded c2 permit 5006 ^65000:4_0:239_0:89$ ip community-list expanded c2 permit 5007 ^65000:4_0:239_0:90$ ip community-list expanded c2 permit 5008 ^65000:4_0:239_0:91$ ip community-list expanded c2 permit 5009 ^65000:4_0:239_0:92$ ip community-list expanded c2 permit 5010 ^65000:4_0:239_0:93$ ip community-list expanded c2 permit 5011 ^65000:4_0:239_0:94$ ip community-list expanded c2 permit 5012 ^65000:4_0:239_0:95$ ip community-list expanded c2 permit 5013 ^65000:4_0:239_0:96$ ip community-list expanded c2 permit 5014 ^65000:4_0:239_0:97$ ip community-list expanded c2 permit 5015 ^65000:4_0:239_0:98$ ip community-list expanded c2 permit 5016 ^65000:4_0:239_0:99$ ip community-list expanded c2 permit 5017 ^65000:4_0:239_0:100$ ip community-list expanded c2 permit 5018 ^65000:4_0:239_0:101$ ip community-list expanded c2 permit 5019 ^65000:4_0:239_0:102$ ip community-list expanded c2 permit 5020 ^65000:4_0:239_0:103$ ip community-list expanded c2 permit 5021 ^65000:4_0:239_0:104$ ip community-list expanded c2 permit 5022 ^65000:4_0:239_0:105$ ip community-list expanded c2 permit 5023 ^65000:4_0:239_0:106$ ip community-list expanded c2 permit 5024 ^65000:4_0:239_0:107$ ip community-list expanded c2 permit 5025 ^65000:4_0:239_0:108$ ip community-list expanded c2 permit 5026 ^65000:4_0:239_0:109$ ip community-list expanded c2 permit 5027 ^65000:4_0:239_0:110$ ip community-list expanded c2 permit 5028 ^65000:4_0:239_0:111$ ip community-list expanded c2 permit 5029 ^65000:4_0:239_0:112$ ip community-list expanded c2 permit 5030 ^65000:4_0:239_0:113$ ip community-list expanded c2 permit 5031 ^65000:4_0:239_0:114$ ip community-list expanded c2 permit 5032 ^65000:4_0:239_0:115$ ip community-list expanded c2 permit 5033 ^65000:4_0:239_0:116$ ip community-list expanded c2 permit 5034 ^65000:4_0:239_0:117$ ip community-list expanded c2 permit 5035 ^65000:4_0:239_0:118$ ip community-list expanded c2 permit 5036 ^65000:4_0:239_0:119$ ip community-list expanded c2 permit 5037 ^65000:3_0:239_0:237$ ip community-list expanded c2 permit 5038 ^65000:4_0:240_0:81$ ip community-list expanded c2 permit 5039 ^65000:4_0:240_0:82$ ip community-list expanded c2 permit 5040 ^65000:4_0:240_0:83$ ip community-list expanded c2 permit 5041 ^65000:4_0:240_0:84$ ip community-list expanded c2 permit 5042 ^65000:4_0:240_0:85$ ip community-list expanded c2 permit 5043 ^65000:4_0:240_0:86$ ip community-list expanded c2 permit 5044 ^65000:4_0:240_0:87$ ip community-list expanded c2 permit 5045 ^65000:4_0:240_0:88$ ip community-list expanded c2 permit 5046 ^65000:4_0:240_0:89$ ip community-list expanded c2 permit 5047 ^65000:4_0:240_0:90$ ip community-list expanded c2 permit 5048 ^65000:4_0:240_0:91$ ip community-list expanded c2 permit 5049 ^65000:4_0:240_0:92$ ip community-list expanded c2 permit 5050 ^65000:4_0:240_0:93$ ip community-list expanded c2 permit 5051 ^65000:4_0:240_0:94$ ip community-list expanded c2 permit 5052 ^65000:4_0:240_0:95$ ip community-list expanded c2 permit 5053 ^65000:4_0:240_0:96$ ip community-list expanded c2 permit 5054 ^65000:4_0:240_0:97$ ip community-list expanded c2 permit 5055 ^65000:4_0:240_0:98$ ip community-list expanded c2 permit 5056 ^65000:4_0:240_0:99$ ip community-list expanded c2 permit 5057 ^65000:4_0:240_0:100$ ip community-list expanded c2 permit 5058 ^65000:4_0:240_0:101$ ip community-list expanded c2 permit 5059 ^65000:4_0:240_0:102$ ip community-list expanded c2 permit 5060 ^65000:4_0:240_0:103$ ip community-list expanded c2 permit 5061 ^65000:4_0:240_0:104$ ip community-list expanded c2 permit 5062 ^65000:4_0:240_0:105$ ip community-list expanded c2 permit 5063 ^65000:4_0:240_0:106$ ip community-list expanded c2 permit 5064 ^65000:4_0:240_0:107$ ip community-list expanded c2 permit 5065 ^65000:4_0:240_0:108$ ip community-list expanded c2 permit 5066 ^65000:4_0:240_0:109$ ip community-list expanded c2 permit 5067 ^65000:4_0:240_0:110$ ip community-list expanded c2 permit 5068 ^65000:4_0:240_0:111$ ip community-list expanded c2 permit 5069 ^65000:4_0:240_0:112$ ip community-list expanded c2 permit 5070 ^65000:4_0:240_0:113$ ip community-list expanded c2 permit 5071 ^65000:4_0:240_0:114$ ip community-list expanded c2 permit 5072 ^65000:4_0:240_0:115$ ip community-list expanded c2 permit 5073 ^65000:4_0:240_0:116$ ip community-list expanded c2 permit 5074 ^65000:4_0:240_0:117$ ip community-list expanded c2 permit 5075 ^65000:4_0:240_0:118$ ip community-list expanded c2 permit 5076 ^65000:4_0:240_0:119$ ip community-list expanded c2 permit 5077 ^65000:4_0:240_0:120$ ip community-list expanded c2 permit 5078 ^65000:3_0:240_0:238$ ip community-list expanded c2 permit 5079 ^65000:4_0:241_0:81$ ip community-list expanded c2 permit 5080 ^65000:4_0:241_0:82$ ip community-list expanded c2 permit 5081 ^65000:4_0:241_0:83$ ip community-list expanded c2 permit 5082 ^65000:4_0:241_0:84$ ip community-list expanded c2 permit 5083 ^65000:4_0:241_0:85$ ip community-list expanded c2 permit 5084 ^65000:4_0:241_0:86$ ip community-list expanded c2 permit 5085 ^65000:4_0:241_0:87$ ip community-list expanded c2 permit 5086 ^65000:4_0:241_0:88$ ip community-list expanded c2 permit 5087 ^65000:4_0:241_0:89$ ip community-list expanded c2 permit 5088 ^65000:4_0:241_0:90$ ip community-list expanded c2 permit 5089 ^65000:4_0:241_0:91$ ip community-list expanded c2 permit 5090 ^65000:4_0:241_0:92$ ip community-list expanded c2 permit 5091 ^65000:4_0:241_0:93$ ip community-list expanded c2 permit 5092 ^65000:4_0:241_0:94$ ip community-list expanded c2 permit 5093 ^65000:4_0:241_0:95$ ip community-list expanded c2 permit 5094 ^65000:4_0:241_0:96$ ip community-list expanded c2 permit 5095 ^65000:4_0:241_0:97$ ip community-list expanded c2 permit 5096 ^65000:4_0:241_0:98$ ip community-list expanded c2 permit 5097 ^65000:4_0:241_0:99$ ip community-list expanded c2 permit 5098 ^65000:4_0:241_0:100$ ip community-list expanded c2 permit 5099 ^65000:4_0:241_0:101$ ip community-list expanded c2 permit 5100 ^65000:4_0:241_0:102$ ip community-list expanded c2 permit 5101 ^65000:4_0:241_0:103$ ip community-list expanded c2 permit 5102 ^65000:4_0:241_0:104$ ip community-list expanded c2 permit 5103 ^65000:4_0:241_0:105$ ip community-list expanded c2 permit 5104 ^65000:4_0:241_0:106$ ip community-list expanded c2 permit 5105 ^65000:4_0:241_0:107$ ip community-list expanded c2 permit 5106 ^65000:4_0:241_0:108$ ip community-list expanded c2 permit 5107 ^65000:4_0:241_0:109$ ip community-list expanded c2 permit 5108 ^65000:4_0:241_0:110$ ip community-list expanded c2 permit 5109 ^65000:4_0:241_0:111$ ip community-list expanded c2 permit 5110 ^65000:4_0:241_0:112$ ip community-list expanded c2 permit 5111 ^65000:4_0:241_0:113$ ip community-list expanded c2 permit 5112 ^65000:4_0:241_0:114$ ip community-list expanded c2 permit 5113 ^65000:4_0:241_0:115$ ip community-list expanded c2 permit 5114 ^65000:4_0:241_0:116$ ip community-list expanded c2 permit 5115 ^65000:4_0:241_0:117$ ip community-list expanded c2 permit 5116 ^65000:4_0:241_0:118$ ip community-list expanded c2 permit 5117 ^65000:4_0:241_0:119$ ip community-list expanded c2 permit 5118 ^65000:4_0:241_0:120$ ip community-list expanded c2 permit 5119 ^65000:3_0:241_0:239$ ip community-list expanded c2 permit 5120 ^65000:4_0:242_0:81$ ip community-list expanded c2 permit 5121 ^65000:4_0:242_0:82$ ip community-list expanded c2 permit 5122 ^65000:4_0:242_0:83$ ip community-list expanded c2 permit 5123 ^65000:4_0:242_0:84$ ip community-list expanded c2 permit 5124 ^65000:4_0:242_0:85$ ip community-list expanded c2 permit 5125 ^65000:4_0:242_0:86$ ip community-list expanded c2 permit 5126 ^65000:4_0:242_0:87$ ip community-list expanded c2 permit 5127 ^65000:4_0:242_0:88$ ip community-list expanded c2 permit 5128 ^65000:4_0:242_0:89$ ip community-list expanded c2 permit 5129 ^65000:4_0:242_0:90$ ip community-list expanded c2 permit 5130 ^65000:4_0:242_0:91$ ip community-list expanded c2 permit 5131 ^65000:4_0:242_0:92$ ip community-list expanded c2 permit 5132 ^65000:4_0:242_0:93$ ip community-list expanded c2 permit 5133 ^65000:4_0:242_0:94$ ip community-list expanded c2 permit 5134 ^65000:4_0:242_0:95$ ip community-list expanded c2 permit 5135 ^65000:4_0:242_0:96$ ip community-list expanded c2 permit 5136 ^65000:4_0:242_0:97$ ip community-list expanded c2 permit 5137 ^65000:4_0:242_0:98$ ip community-list expanded c2 permit 5138 ^65000:4_0:242_0:99$ ip community-list expanded c2 permit 5139 ^65000:4_0:242_0:100$ ip community-list expanded c2 permit 5140 ^65000:4_0:242_0:101$ ip community-list expanded c2 permit 5141 ^65000:4_0:242_0:102$ ip community-list expanded c2 permit 5142 ^65000:4_0:242_0:103$ ip community-list expanded c2 permit 5143 ^65000:4_0:242_0:104$ ip community-list expanded c2 permit 5144 ^65000:4_0:242_0:105$ ip community-list expanded c2 permit 5145 ^65000:4_0:242_0:106$ ip community-list expanded c2 permit 5146 ^65000:4_0:242_0:107$ ip community-list expanded c2 permit 5147 ^65000:4_0:242_0:108$ ip community-list expanded c2 permit 5148 ^65000:4_0:242_0:109$ ip community-list expanded c2 permit 5149 ^65000:4_0:242_0:110$ ip community-list expanded c2 permit 5150 ^65000:4_0:242_0:111$ ip community-list expanded c2 permit 5151 ^65000:4_0:242_0:112$ ip community-list expanded c2 permit 5152 ^65000:4_0:242_0:113$ ip community-list expanded c2 permit 5153 ^65000:4_0:242_0:114$ ip community-list expanded c2 permit 5154 ^65000:4_0:242_0:115$ ip community-list expanded c2 permit 5155 ^65000:4_0:242_0:116$ ip community-list expanded c2 permit 5156 ^65000:4_0:242_0:117$ ip community-list expanded c2 permit 5157 ^65000:4_0:242_0:118$ ip community-list expanded c2 permit 5158 ^65000:4_0:242_0:119$ ip community-list expanded c2 permit 5159 ^65000:4_0:242_0:120$ ip community-list expanded c2 permit 5160 ^65000:4_0:242_0:121$ ip community-list expanded c2 permit 5161 ^65000:3_0:242_0:240$ ip community-list expanded c2 permit 5162 ^65000:4_0:243_0:82$ ip community-list expanded c2 permit 5163 ^65000:4_0:243_0:83$ ip community-list expanded c2 permit 5164 ^65000:4_0:243_0:84$ ip community-list expanded c2 permit 5165 ^65000:4_0:243_0:85$ ip community-list expanded c2 permit 5166 ^65000:4_0:243_0:86$ ip community-list expanded c2 permit 5167 ^65000:4_0:243_0:87$ ip community-list expanded c2 permit 5168 ^65000:4_0:243_0:88$ ip community-list expanded c2 permit 5169 ^65000:4_0:243_0:89$ ip community-list expanded c2 permit 5170 ^65000:4_0:243_0:90$ ip community-list expanded c2 permit 5171 ^65000:4_0:243_0:91$ ip community-list expanded c2 permit 5172 ^65000:4_0:243_0:92$ ip community-list expanded c2 permit 5173 ^65000:4_0:243_0:93$ ip community-list expanded c2 permit 5174 ^65000:4_0:243_0:94$ ip community-list expanded c2 permit 5175 ^65000:4_0:243_0:95$ ip community-list expanded c2 permit 5176 ^65000:4_0:243_0:96$ ip community-list expanded c2 permit 5177 ^65000:4_0:243_0:97$ ip community-list expanded c2 permit 5178 ^65000:4_0:243_0:98$ ip community-list expanded c2 permit 5179 ^65000:4_0:243_0:99$ ip community-list expanded c2 permit 5180 ^65000:4_0:243_0:100$ ip community-list expanded c2 permit 5181 ^65000:4_0:243_0:101$ ip community-list expanded c2 permit 5182 ^65000:4_0:243_0:102$ ip community-list expanded c2 permit 5183 ^65000:4_0:243_0:103$ ip community-list expanded c2 permit 5184 ^65000:4_0:243_0:104$ ip community-list expanded c2 permit 5185 ^65000:4_0:243_0:105$ ip community-list expanded c2 permit 5186 ^65000:4_0:243_0:106$ ip community-list expanded c2 permit 5187 ^65000:4_0:243_0:107$ ip community-list expanded c2 permit 5188 ^65000:4_0:243_0:108$ ip community-list expanded c2 permit 5189 ^65000:4_0:243_0:109$ ip community-list expanded c2 permit 5190 ^65000:4_0:243_0:110$ ip community-list expanded c2 permit 5191 ^65000:4_0:243_0:111$ ip community-list expanded c2 permit 5192 ^65000:4_0:243_0:112$ ip community-list expanded c2 permit 5193 ^65000:4_0:243_0:113$ ip community-list expanded c2 permit 5194 ^65000:4_0:243_0:114$ ip community-list expanded c2 permit 5195 ^65000:4_0:243_0:115$ ip community-list expanded c2 permit 5196 ^65000:4_0:243_0:116$ ip community-list expanded c2 permit 5197 ^65000:4_0:243_0:117$ ip community-list expanded c2 permit 5198 ^65000:4_0:243_0:118$ ip community-list expanded c2 permit 5199 ^65000:4_0:243_0:119$ ip community-list expanded c2 permit 5200 ^65000:4_0:243_0:120$ ip community-list expanded c2 permit 5201 ^65000:4_0:243_0:121$ ip community-list expanded c2 permit 5202 ^65000:3_0:243_0:241$ ip community-list expanded c2 permit 5203 ^65000:4_0:244_0:82$ ip community-list expanded c2 permit 5204 ^65000:4_0:244_0:83$ ip community-list expanded c2 permit 5205 ^65000:4_0:244_0:84$ ip community-list expanded c2 permit 5206 ^65000:4_0:244_0:85$ ip community-list expanded c2 permit 5207 ^65000:4_0:244_0:86$ ip community-list expanded c2 permit 5208 ^65000:4_0:244_0:87$ ip community-list expanded c2 permit 5209 ^65000:4_0:244_0:88$ ip community-list expanded c2 permit 5210 ^65000:4_0:244_0:89$ ip community-list expanded c2 permit 5211 ^65000:4_0:244_0:90$ ip community-list expanded c2 permit 5212 ^65000:4_0:244_0:91$ ip community-list expanded c2 permit 5213 ^65000:4_0:244_0:92$ ip community-list expanded c2 permit 5214 ^65000:4_0:244_0:93$ ip community-list expanded c2 permit 5215 ^65000:4_0:244_0:94$ ip community-list expanded c2 permit 5216 ^65000:4_0:244_0:95$ ip community-list expanded c2 permit 5217 ^65000:4_0:244_0:96$ ip community-list expanded c2 permit 5218 ^65000:4_0:244_0:97$ ip community-list expanded c2 permit 5219 ^65000:4_0:244_0:98$ ip community-list expanded c2 permit 5220 ^65000:4_0:244_0:99$ ip community-list expanded c2 permit 5221 ^65000:4_0:244_0:100$ ip community-list expanded c2 permit 5222 ^65000:4_0:244_0:101$ ip community-list expanded c2 permit 5223 ^65000:4_0:244_0:102$ ip community-list expanded c2 permit 5224 ^65000:4_0:244_0:103$ ip community-list expanded c2 permit 5225 ^65000:4_0:244_0:104$ ip community-list expanded c2 permit 5226 ^65000:4_0:244_0:105$ ip community-list expanded c2 permit 5227 ^65000:4_0:244_0:106$ ip community-list expanded c2 permit 5228 ^65000:4_0:244_0:107$ ip community-list expanded c2 permit 5229 ^65000:4_0:244_0:108$ ip community-list expanded c2 permit 5230 ^65000:4_0:244_0:109$ ip community-list expanded c2 permit 5231 ^65000:4_0:244_0:110$ ip community-list expanded c2 permit 5232 ^65000:4_0:244_0:111$ ip community-list expanded c2 permit 5233 ^65000:4_0:244_0:112$ ip community-list expanded c2 permit 5234 ^65000:4_0:244_0:113$ ip community-list expanded c2 permit 5235 ^65000:4_0:244_0:114$ ip community-list expanded c2 permit 5236 ^65000:4_0:244_0:115$ ip community-list expanded c2 permit 5237 ^65000:4_0:244_0:116$ ip community-list expanded c2 permit 5238 ^65000:4_0:244_0:117$ ip community-list expanded c2 permit 5239 ^65000:4_0:244_0:118$ ip community-list expanded c2 permit 5240 ^65000:4_0:244_0:119$ ip community-list expanded c2 permit 5241 ^65000:4_0:244_0:120$ ip community-list expanded c2 permit 5242 ^65000:4_0:244_0:121$ ip community-list expanded c2 permit 5243 ^65000:4_0:244_0:122$ ip community-list expanded c2 permit 5244 ^65000:3_0:244_0:242$ ip community-list expanded c2 permit 5245 ^65000:4_0:245_0:82$ ip community-list expanded c2 permit 5246 ^65000:4_0:245_0:83$ ip community-list expanded c2 permit 5247 ^65000:4_0:245_0:84$ ip community-list expanded c2 permit 5248 ^65000:4_0:245_0:85$ ip community-list expanded c2 permit 5249 ^65000:4_0:245_0:86$ ip community-list expanded c2 permit 5250 ^65000:4_0:245_0:87$ ip community-list expanded c2 permit 5251 ^65000:4_0:245_0:88$ ip community-list expanded c2 permit 5252 ^65000:4_0:245_0:89$ ip community-list expanded c2 permit 5253 ^65000:4_0:245_0:90$ ip community-list expanded c2 permit 5254 ^65000:4_0:245_0:91$ ip community-list expanded c2 permit 5255 ^65000:4_0:245_0:92$ ip community-list expanded c2 permit 5256 ^65000:4_0:245_0:93$ ip community-list expanded c2 permit 5257 ^65000:4_0:245_0:94$ ip community-list expanded c2 permit 5258 ^65000:4_0:245_0:95$ ip community-list expanded c2 permit 5259 ^65000:4_0:245_0:96$ ip community-list expanded c2 permit 5260 ^65000:4_0:245_0:97$ ip community-list expanded c2 permit 5261 ^65000:4_0:245_0:98$ ip community-list expanded c2 permit 5262 ^65000:4_0:245_0:99$ ip community-list expanded c2 permit 5263 ^65000:4_0:245_0:100$ ip community-list expanded c2 permit 5264 ^65000:4_0:245_0:101$ ip community-list expanded c2 permit 5265 ^65000:4_0:245_0:102$ ip community-list expanded c2 permit 5266 ^65000:4_0:245_0:103$ ip community-list expanded c2 permit 5267 ^65000:4_0:245_0:104$ ip community-list expanded c2 permit 5268 ^65000:4_0:245_0:105$ ip community-list expanded c2 permit 5269 ^65000:4_0:245_0:106$ ip community-list expanded c2 permit 5270 ^65000:4_0:245_0:107$ ip community-list expanded c2 permit 5271 ^65000:4_0:245_0:108$ ip community-list expanded c2 permit 5272 ^65000:4_0:245_0:109$ ip community-list expanded c2 permit 5273 ^65000:4_0:245_0:110$ ip community-list expanded c2 permit 5274 ^65000:4_0:245_0:111$ ip community-list expanded c2 permit 5275 ^65000:4_0:245_0:112$ ip community-list expanded c2 permit 5276 ^65000:4_0:245_0:113$ ip community-list expanded c2 permit 5277 ^65000:4_0:245_0:114$ ip community-list expanded c2 permit 5278 ^65000:4_0:245_0:115$ ip community-list expanded c2 permit 5279 ^65000:4_0:245_0:116$ ip community-list expanded c2 permit 5280 ^65000:4_0:245_0:117$ ip community-list expanded c2 permit 5281 ^65000:4_0:245_0:118$ ip community-list expanded c2 permit 5282 ^65000:4_0:245_0:119$ ip community-list expanded c2 permit 5283 ^65000:4_0:245_0:120$ ip community-list expanded c2 permit 5284 ^65000:4_0:245_0:121$ ip community-list expanded c2 permit 5285 ^65000:4_0:245_0:122$ ip community-list expanded c2 permit 5286 ^65000:3_0:245_0:243$ ip community-list expanded c2 permit 5287 ^65000:4_0:246_0:83$ ip community-list expanded c2 permit 5288 ^65000:4_0:246_0:84$ ip community-list expanded c2 permit 5289 ^65000:4_0:246_0:85$ ip community-list expanded c2 permit 5290 ^65000:4_0:246_0:86$ ip community-list expanded c2 permit 5291 ^65000:4_0:246_0:87$ ip community-list expanded c2 permit 5292 ^65000:4_0:246_0:88$ ip community-list expanded c2 permit 5293 ^65000:4_0:246_0:89$ ip community-list expanded c2 permit 5294 ^65000:4_0:246_0:90$ ip community-list expanded c2 permit 5295 ^65000:4_0:246_0:91$ ip community-list expanded c2 permit 5296 ^65000:4_0:246_0:92$ ip community-list expanded c2 permit 5297 ^65000:4_0:246_0:93$ ip community-list expanded c2 permit 5298 ^65000:4_0:246_0:94$ ip community-list expanded c2 permit 5299 ^65000:4_0:246_0:95$ ip community-list expanded c2 permit 5300 ^65000:4_0:246_0:96$ ip community-list expanded c2 permit 5301 ^65000:4_0:246_0:97$ ip community-list expanded c2 permit 5302 ^65000:4_0:246_0:98$ ip community-list expanded c2 permit 5303 ^65000:4_0:246_0:99$ ip community-list expanded c2 permit 5304 ^65000:4_0:246_0:100$ ip community-list expanded c2 permit 5305 ^65000:4_0:246_0:101$ ip community-list expanded c2 permit 5306 ^65000:4_0:246_0:102$ ip community-list expanded c2 permit 5307 ^65000:4_0:246_0:103$ ip community-list expanded c2 permit 5308 ^65000:4_0:246_0:104$ ip community-list expanded c2 permit 5309 ^65000:4_0:246_0:105$ ip community-list expanded c2 permit 5310 ^65000:4_0:246_0:106$ ip community-list expanded c2 permit 5311 ^65000:4_0:246_0:107$ ip community-list expanded c2 permit 5312 ^65000:4_0:246_0:108$ ip community-list expanded c2 permit 5313 ^65000:4_0:246_0:109$ ip community-list expanded c2 permit 5314 ^65000:4_0:246_0:110$ ip community-list expanded c2 permit 5315 ^65000:4_0:246_0:111$ ip community-list expanded c2 permit 5316 ^65000:4_0:246_0:112$ ip community-list expanded c2 permit 5317 ^65000:4_0:246_0:113$ ip community-list expanded c2 permit 5318 ^65000:4_0:246_0:114$ ip community-list expanded c2 permit 5319 ^65000:4_0:246_0:115$ ip community-list expanded c2 permit 5320 ^65000:4_0:246_0:116$ ip community-list expanded c2 permit 5321 ^65000:4_0:246_0:117$ ip community-list expanded c2 permit 5322 ^65000:4_0:246_0:118$ ip community-list expanded c2 permit 5323 ^65000:4_0:246_0:119$ ip community-list expanded c2 permit 5324 ^65000:4_0:246_0:120$ ip community-list expanded c2 permit 5325 ^65000:4_0:246_0:121$ ip community-list expanded c2 permit 5326 ^65000:4_0:246_0:122$ ip community-list expanded c2 permit 5327 ^65000:4_0:246_0:123$ ip community-list expanded c2 permit 5328 ^65000:3_0:246_0:244$ ip community-list expanded c2 permit 5329 ^65000:4_0:247_0:83$ ip community-list expanded c2 permit 5330 ^65000:4_0:247_0:84$ ip community-list expanded c2 permit 5331 ^65000:4_0:247_0:85$ ip community-list expanded c2 permit 5332 ^65000:4_0:247_0:86$ ip community-list expanded c2 permit 5333 ^65000:4_0:247_0:87$ ip community-list expanded c2 permit 5334 ^65000:4_0:247_0:88$ ip community-list expanded c2 permit 5335 ^65000:4_0:247_0:89$ ip community-list expanded c2 permit 5336 ^65000:4_0:247_0:90$ ip community-list expanded c2 permit 5337 ^65000:4_0:247_0:91$ ip community-list expanded c2 permit 5338 ^65000:4_0:247_0:92$ ip community-list expanded c2 permit 5339 ^65000:4_0:247_0:93$ ip community-list expanded c2 permit 5340 ^65000:4_0:247_0:94$ ip community-list expanded c2 permit 5341 ^65000:4_0:247_0:95$ ip community-list expanded c2 permit 5342 ^65000:4_0:247_0:96$ ip community-list expanded c2 permit 5343 ^65000:4_0:247_0:97$ ip community-list expanded c2 permit 5344 ^65000:4_0:247_0:98$ ip community-list expanded c2 permit 5345 ^65000:4_0:247_0:99$ ip community-list expanded c2 permit 5346 ^65000:4_0:247_0:100$ ip community-list expanded c2 permit 5347 ^65000:4_0:247_0:101$ ip community-list expanded c2 permit 5348 ^65000:4_0:247_0:102$ ip community-list expanded c2 permit 5349 ^65000:4_0:247_0:103$ ip community-list expanded c2 permit 5350 ^65000:4_0:247_0:104$ ip community-list expanded c2 permit 5351 ^65000:4_0:247_0:105$ ip community-list expanded c2 permit 5352 ^65000:4_0:247_0:106$ ip community-list expanded c2 permit 5353 ^65000:4_0:247_0:107$ ip community-list expanded c2 permit 5354 ^65000:4_0:247_0:108$ ip community-list expanded c2 permit 5355 ^65000:4_0:247_0:109$ ip community-list expanded c2 permit 5356 ^65000:4_0:247_0:110$ ip community-list expanded c2 permit 5357 ^65000:4_0:247_0:111$ ip community-list expanded c2 permit 5358 ^65000:4_0:247_0:112$ ip community-list expanded c2 permit 5359 ^65000:4_0:247_0:113$ ip community-list expanded c2 permit 5360 ^65000:4_0:247_0:114$ ip community-list expanded c2 permit 5361 ^65000:4_0:247_0:115$ ip community-list expanded c2 permit 5362 ^65000:4_0:247_0:116$ ip community-list expanded c2 permit 5363 ^65000:4_0:247_0:117$ ip community-list expanded c2 permit 5364 ^65000:4_0:247_0:118$ ip community-list expanded c2 permit 5365 ^65000:4_0:247_0:119$ ip community-list expanded c2 permit 5366 ^65000:4_0:247_0:120$ ip community-list expanded c2 permit 5367 ^65000:4_0:247_0:121$ ip community-list expanded c2 permit 5368 ^65000:4_0:247_0:122$ ip community-list expanded c2 permit 5369 ^65000:4_0:247_0:123$ ip community-list expanded c2 permit 5370 ^65000:3_0:247_0:245$ ip community-list expanded c2 permit 5371 ^65000:4_0:248_0:83$ ip community-list expanded c2 permit 5372 ^65000:4_0:248_0:84$ ip community-list expanded c2 permit 5373 ^65000:4_0:248_0:85$ ip community-list expanded c2 permit 5374 ^65000:4_0:248_0:86$ ip community-list expanded c2 permit 5375 ^65000:4_0:248_0:87$ ip community-list expanded c2 permit 5376 ^65000:4_0:248_0:88$ ip community-list expanded c2 permit 5377 ^65000:4_0:248_0:89$ ip community-list expanded c2 permit 5378 ^65000:4_0:248_0:90$ ip community-list expanded c2 permit 5379 ^65000:4_0:248_0:91$ ip community-list expanded c2 permit 5380 ^65000:4_0:248_0:92$ ip community-list expanded c2 permit 5381 ^65000:4_0:248_0:93$ ip community-list expanded c2 permit 5382 ^65000:4_0:248_0:94$ ip community-list expanded c2 permit 5383 ^65000:4_0:248_0:95$ ip community-list expanded c2 permit 5384 ^65000:4_0:248_0:96$ ip community-list expanded c2 permit 5385 ^65000:4_0:248_0:97$ ip community-list expanded c2 permit 5386 ^65000:4_0:248_0:98$ ip community-list expanded c2 permit 5387 ^65000:4_0:248_0:99$ ip community-list expanded c2 permit 5388 ^65000:4_0:248_0:100$ ip community-list expanded c2 permit 5389 ^65000:4_0:248_0:101$ ip community-list expanded c2 permit 5390 ^65000:4_0:248_0:102$ ip community-list expanded c2 permit 5391 ^65000:4_0:248_0:103$ ip community-list expanded c2 permit 5392 ^65000:4_0:248_0:104$ ip community-list expanded c2 permit 5393 ^65000:4_0:248_0:105$ ip community-list expanded c2 permit 5394 ^65000:4_0:248_0:106$ ip community-list expanded c2 permit 5395 ^65000:4_0:248_0:107$ ip community-list expanded c2 permit 5396 ^65000:4_0:248_0:108$ ip community-list expanded c2 permit 5397 ^65000:4_0:248_0:109$ ip community-list expanded c2 permit 5398 ^65000:4_0:248_0:110$ ip community-list expanded c2 permit 5399 ^65000:4_0:248_0:111$ ip community-list expanded c2 permit 5400 ^65000:4_0:248_0:112$ ip community-list expanded c2 permit 5401 ^65000:4_0:248_0:113$ ip community-list expanded c2 permit 5402 ^65000:4_0:248_0:114$ ip community-list expanded c2 permit 5403 ^65000:4_0:248_0:115$ ip community-list expanded c2 permit 5404 ^65000:4_0:248_0:116$ ip community-list expanded c2 permit 5405 ^65000:4_0:248_0:117$ ip community-list expanded c2 permit 5406 ^65000:4_0:248_0:118$ ip community-list expanded c2 permit 5407 ^65000:4_0:248_0:119$ ip community-list expanded c2 permit 5408 ^65000:4_0:248_0:120$ ip community-list expanded c2 permit 5409 ^65000:4_0:248_0:121$ ip community-list expanded c2 permit 5410 ^65000:4_0:248_0:122$ ip community-list expanded c2 permit 5411 ^65000:4_0:248_0:123$ ip community-list expanded c2 permit 5412 ^65000:4_0:248_0:124$ ip community-list expanded c2 permit 5413 ^65000:3_0:248_0:246$ ip community-list expanded c2 permit 5414 ^65000:4_0:249_0:84$ ip community-list expanded c2 permit 5415 ^65000:4_0:249_0:85$ ip community-list expanded c2 permit 5416 ^65000:4_0:249_0:86$ ip community-list expanded c2 permit 5417 ^65000:4_0:249_0:87$ ip community-list expanded c2 permit 5418 ^65000:4_0:249_0:88$ ip community-list expanded c2 permit 5419 ^65000:4_0:249_0:89$ ip community-list expanded c2 permit 5420 ^65000:4_0:249_0:90$ ip community-list expanded c2 permit 5421 ^65000:4_0:249_0:91$ ip community-list expanded c2 permit 5422 ^65000:4_0:249_0:92$ ip community-list expanded c2 permit 5423 ^65000:4_0:249_0:93$ ip community-list expanded c2 permit 5424 ^65000:4_0:249_0:94$ ip community-list expanded c2 permit 5425 ^65000:4_0:249_0:95$ ip community-list expanded c2 permit 5426 ^65000:4_0:249_0:96$ ip community-list expanded c2 permit 5427 ^65000:4_0:249_0:97$ ip community-list expanded c2 permit 5428 ^65000:4_0:249_0:98$ ip community-list expanded c2 permit 5429 ^65000:4_0:249_0:99$ ip community-list expanded c2 permit 5430 ^65000:4_0:249_0:100$ ip community-list expanded c2 permit 5431 ^65000:4_0:249_0:101$ ip community-list expanded c2 permit 5432 ^65000:4_0:249_0:102$ ip community-list expanded c2 permit 5433 ^65000:4_0:249_0:103$ ip community-list expanded c2 permit 5434 ^65000:4_0:249_0:104$ ip community-list expanded c2 permit 5435 ^65000:4_0:249_0:105$ ip community-list expanded c2 permit 5436 ^65000:4_0:249_0:106$ ip community-list expanded c2 permit 5437 ^65000:4_0:249_0:107$ ip community-list expanded c2 permit 5438 ^65000:4_0:249_0:108$ ip community-list expanded c2 permit 5439 ^65000:4_0:249_0:109$ ip community-list expanded c2 permit 5440 ^65000:4_0:249_0:110$ ip community-list expanded c2 permit 5441 ^65000:4_0:249_0:111$ ip community-list expanded c2 permit 5442 ^65000:4_0:249_0:112$ ip community-list expanded c2 permit 5443 ^65000:4_0:249_0:113$ ip community-list expanded c2 permit 5444 ^65000:4_0:249_0:114$ ip community-list expanded c2 permit 5445 ^65000:4_0:249_0:115$ ip community-list expanded c2 permit 5446 ^65000:4_0:249_0:116$ ip community-list expanded c2 permit 5447 ^65000:4_0:249_0:117$ ip community-list expanded c2 permit 5448 ^65000:4_0:249_0:118$ ip community-list expanded c2 permit 5449 ^65000:4_0:249_0:119$ ip community-list expanded c2 permit 5450 ^65000:4_0:249_0:120$ ip community-list expanded c2 permit 5451 ^65000:4_0:249_0:121$ ip community-list expanded c2 permit 5452 ^65000:4_0:249_0:122$ ip community-list expanded c2 permit 5453 ^65000:4_0:249_0:123$ ip community-list expanded c2 permit 5454 ^65000:4_0:249_0:124$ ip community-list expanded c2 permit 5455 ^65000:3_0:249_0:247$ ip community-list expanded c2 permit 5456 ^65000:4_0:250_0:84$ ip community-list expanded c2 permit 5457 ^65000:4_0:250_0:85$ ip community-list expanded c2 permit 5458 ^65000:4_0:250_0:86$ ip community-list expanded c2 permit 5459 ^65000:4_0:250_0:87$ ip community-list expanded c2 permit 5460 ^65000:4_0:250_0:88$ ip community-list expanded c2 permit 5461 ^65000:4_0:250_0:89$ ip community-list expanded c2 permit 5462 ^65000:4_0:250_0:90$ ip community-list expanded c2 permit 5463 ^65000:4_0:250_0:91$ ip community-list expanded c2 permit 5464 ^65000:4_0:250_0:92$ ip community-list expanded c2 permit 5465 ^65000:4_0:250_0:93$ ip community-list expanded c2 permit 5466 ^65000:4_0:250_0:94$ ip community-list expanded c2 permit 5467 ^65000:4_0:250_0:95$ ip community-list expanded c2 permit 5468 ^65000:4_0:250_0:96$ ip community-list expanded c2 permit 5469 ^65000:4_0:250_0:97$ ip community-list expanded c2 permit 5470 ^65000:4_0:250_0:98$ ip community-list expanded c2 permit 5471 ^65000:4_0:250_0:99$ ip community-list expanded c2 permit 5472 ^65000:4_0:250_0:100$ ip community-list expanded c2 permit 5473 ^65000:4_0:250_0:101$ ip community-list expanded c2 permit 5474 ^65000:4_0:250_0:102$ ip community-list expanded c2 permit 5475 ^65000:4_0:250_0:103$ ip community-list expanded c2 permit 5476 ^65000:4_0:250_0:104$ ip community-list expanded c2 permit 5477 ^65000:4_0:250_0:105$ ip community-list expanded c2 permit 5478 ^65000:4_0:250_0:106$ ip community-list expanded c2 permit 5479 ^65000:4_0:250_0:107$ ip community-list expanded c2 permit 5480 ^65000:4_0:250_0:108$ ip community-list expanded c2 permit 5481 ^65000:4_0:250_0:109$ ip community-list expanded c2 permit 5482 ^65000:4_0:250_0:110$ ip community-list expanded c2 permit 5483 ^65000:4_0:250_0:111$ ip community-list expanded c2 permit 5484 ^65000:4_0:250_0:112$ ip community-list expanded c2 permit 5485 ^65000:4_0:250_0:113$ ip community-list expanded c2 permit 5486 ^65000:4_0:250_0:114$ ip community-list expanded c2 permit 5487 ^65000:4_0:250_0:115$ ip community-list expanded c2 permit 5488 ^65000:4_0:250_0:116$ ip community-list expanded c2 permit 5489 ^65000:4_0:250_0:117$ ip community-list expanded c2 permit 5490 ^65000:4_0:250_0:118$ ip community-list expanded c2 permit 5491 ^65000:4_0:250_0:119$ ip community-list expanded c2 permit 5492 ^65000:4_0:250_0:120$ ip community-list expanded c2 permit 5493 ^65000:4_0:250_0:121$ ip community-list expanded c2 permit 5494 ^65000:4_0:250_0:122$ ip community-list expanded c2 permit 5495 ^65000:4_0:250_0:123$ ip community-list expanded c2 permit 5496 ^65000:4_0:250_0:124$ ip community-list expanded c2 permit 5497 ^65000:4_0:250_0:125$ ip community-list expanded c2 permit 5498 ^65000:3_0:250_0:248$ ip community-list expanded c2 permit 5499 ^65000:4_0:251_0:84$ ip community-list expanded c2 permit 5500 ^65000:4_0:251_0:85$ ip community-list expanded c2 permit 5501 ^65000:4_0:251_0:86$ ip community-list expanded c2 permit 5502 ^65000:4_0:251_0:87$ ip community-list expanded c2 permit 5503 ^65000:4_0:251_0:88$ ip community-list expanded c2 permit 5504 ^65000:4_0:251_0:89$ ip community-list expanded c2 permit 5505 ^65000:4_0:251_0:90$ ip community-list expanded c2 permit 5506 ^65000:4_0:251_0:91$ ip community-list expanded c2 permit 5507 ^65000:4_0:251_0:92$ ip community-list expanded c2 permit 5508 ^65000:4_0:251_0:93$ ip community-list expanded c2 permit 5509 ^65000:4_0:251_0:94$ ip community-list expanded c2 permit 5510 ^65000:4_0:251_0:95$ ip community-list expanded c2 permit 5511 ^65000:4_0:251_0:96$ ip community-list expanded c2 permit 5512 ^65000:4_0:251_0:97$ ip community-list expanded c2 permit 5513 ^65000:4_0:251_0:98$ ip community-list expanded c2 permit 5514 ^65000:4_0:251_0:99$ ip community-list expanded c2 permit 5515 ^65000:4_0:251_0:100$ ip community-list expanded c2 permit 5516 ^65000:4_0:251_0:101$ ip community-list expanded c2 permit 5517 ^65000:4_0:251_0:102$ ip community-list expanded c2 permit 5518 ^65000:4_0:251_0:103$ ip community-list expanded c2 permit 5519 ^65000:4_0:251_0:104$ ip community-list expanded c2 permit 5520 ^65000:4_0:251_0:105$ ip community-list expanded c2 permit 5521 ^65000:4_0:251_0:106$ ip community-list expanded c2 permit 5522 ^65000:4_0:251_0:107$ ip community-list expanded c2 permit 5523 ^65000:4_0:251_0:108$ ip community-list expanded c2 permit 5524 ^65000:4_0:251_0:109$ ip community-list expanded c2 permit 5525 ^65000:4_0:251_0:110$ ip community-list expanded c2 permit 5526 ^65000:4_0:251_0:111$ ip community-list expanded c2 permit 5527 ^65000:4_0:251_0:112$ ip community-list expanded c2 permit 5528 ^65000:4_0:251_0:113$ ip community-list expanded c2 permit 5529 ^65000:4_0:251_0:114$ ip community-list expanded c2 permit 5530 ^65000:4_0:251_0:115$ ip community-list expanded c2 permit 5531 ^65000:4_0:251_0:116$ ip community-list expanded c2 permit 5532 ^65000:4_0:251_0:117$ ip community-list expanded c2 permit 5533 ^65000:4_0:251_0:118$ ip community-list expanded c2 permit 5534 ^65000:4_0:251_0:119$ ip community-list expanded c2 permit 5535 ^65000:4_0:251_0:120$ ip community-list expanded c2 permit 5536 ^65000:4_0:251_0:121$ ip community-list expanded c2 permit 5537 ^65000:4_0:251_0:122$ ip community-list expanded c2 permit 5538 ^65000:4_0:251_0:123$ ip community-list expanded c2 permit 5539 ^65000:4_0:251_0:124$ ip community-list expanded c2 permit 5540 ^65000:4_0:251_0:125$ ip community-list expanded c2 permit 5541 ^65000:3_0:251_0:249$ ip community-list expanded c2 permit 5542 ^65000:4_0:252_0:85$ ip community-list expanded c2 permit 5543 ^65000:4_0:252_0:86$ ip community-list expanded c2 permit 5544 ^65000:4_0:252_0:87$ ip community-list expanded c2 permit 5545 ^65000:4_0:252_0:88$ ip community-list expanded c2 permit 5546 ^65000:4_0:252_0:89$ ip community-list expanded c2 permit 5547 ^65000:4_0:252_0:90$ ip community-list expanded c2 permit 5548 ^65000:4_0:252_0:91$ ip community-list expanded c2 permit 5549 ^65000:4_0:252_0:92$ ip community-list expanded c2 permit 5550 ^65000:4_0:252_0:93$ ip community-list expanded c2 permit 5551 ^65000:4_0:252_0:94$ ip community-list expanded c2 permit 5552 ^65000:4_0:252_0:95$ ip community-list expanded c2 permit 5553 ^65000:4_0:252_0:96$ ip community-list expanded c2 permit 5554 ^65000:4_0:252_0:97$ ip community-list expanded c2 permit 5555 ^65000:4_0:252_0:98$ ip community-list expanded c2 permit 5556 ^65000:4_0:252_0:99$ ip community-list expanded c2 permit 5557 ^65000:4_0:252_0:100$ ip community-list expanded c2 permit 5558 ^65000:4_0:252_0:101$ ip community-list expanded c2 permit 5559 ^65000:4_0:252_0:102$ ip community-list expanded c2 permit 5560 ^65000:4_0:252_0:103$ ip community-list expanded c2 permit 5561 ^65000:4_0:252_0:104$ ip community-list expanded c2 permit 5562 ^65000:4_0:252_0:105$ ip community-list expanded c2 permit 5563 ^65000:4_0:252_0:106$ ip community-list expanded c2 permit 5564 ^65000:4_0:252_0:107$ ip community-list expanded c2 permit 5565 ^65000:4_0:252_0:108$ ip community-list expanded c2 permit 5566 ^65000:4_0:252_0:109$ ip community-list expanded c2 permit 5567 ^65000:4_0:252_0:110$ ip community-list expanded c2 permit 5568 ^65000:4_0:252_0:111$ ip community-list expanded c2 permit 5569 ^65000:4_0:252_0:112$ ip community-list expanded c2 permit 5570 ^65000:4_0:252_0:113$ ip community-list expanded c2 permit 5571 ^65000:4_0:252_0:114$ ip community-list expanded c2 permit 5572 ^65000:4_0:252_0:115$ ip community-list expanded c2 permit 5573 ^65000:4_0:252_0:116$ ip community-list expanded c2 permit 5574 ^65000:4_0:252_0:117$ ip community-list expanded c2 permit 5575 ^65000:4_0:252_0:118$ ip community-list expanded c2 permit 5576 ^65000:4_0:252_0:119$ ip community-list expanded c2 permit 5577 ^65000:4_0:252_0:120$ ip community-list expanded c2 permit 5578 ^65000:4_0:252_0:121$ ip community-list expanded c2 permit 5579 ^65000:4_0:252_0:122$ ip community-list expanded c2 permit 5580 ^65000:4_0:252_0:123$ ip community-list expanded c2 permit 5581 ^65000:4_0:252_0:124$ ip community-list expanded c2 permit 5582 ^65000:4_0:252_0:125$ ip community-list expanded c2 permit 5583 ^65000:4_0:252_0:126$ ip community-list expanded c2 permit 5584 ^65000:3_0:252_0:250$ ip community-list expanded c2 permit 5585 ^65000:4_0:253_0:85$ ip community-list expanded c2 permit 5586 ^65000:4_0:253_0:86$ ip community-list expanded c2 permit 5587 ^65000:4_0:253_0:87$ ip community-list expanded c2 permit 5588 ^65000:4_0:253_0:88$ ip community-list expanded c2 permit 5589 ^65000:4_0:253_0:89$ ip community-list expanded c2 permit 5590 ^65000:4_0:253_0:90$ ip community-list expanded c2 permit 5591 ^65000:4_0:253_0:91$ ip community-list expanded c2 permit 5592 ^65000:4_0:253_0:92$ ip community-list expanded c2 permit 5593 ^65000:4_0:253_0:93$ ip community-list expanded c2 permit 5594 ^65000:4_0:253_0:94$ ip community-list expanded c2 permit 5595 ^65000:4_0:253_0:95$ ip community-list expanded c2 permit 5596 ^65000:4_0:253_0:96$ ip community-list expanded c2 permit 5597 ^65000:4_0:253_0:97$ ip community-list expanded c2 permit 5598 ^65000:4_0:253_0:98$ ip community-list expanded c2 permit 5599 ^65000:4_0:253_0:99$ ip community-list expanded c2 permit 5600 ^65000:4_0:253_0:100$ ip community-list expanded c2 permit 5601 ^65000:4_0:253_0:101$ ip community-list expanded c2 permit 5602 ^65000:4_0:253_0:102$ ip community-list expanded c2 permit 5603 ^65000:4_0:253_0:103$ ip community-list expanded c2 permit 5604 ^65000:4_0:253_0:104$ ip community-list expanded c2 permit 5605 ^65000:4_0:253_0:105$ ip community-list expanded c2 permit 5606 ^65000:4_0:253_0:106$ ip community-list expanded c2 permit 5607 ^65000:4_0:253_0:107$ ip community-list expanded c2 permit 5608 ^65000:4_0:253_0:108$ ip community-list expanded c2 permit 5609 ^65000:4_0:253_0:109$ ip community-list expanded c2 permit 5610 ^65000:4_0:253_0:110$ ip community-list expanded c2 permit 5611 ^65000:4_0:253_0:111$ ip community-list expanded c2 permit 5612 ^65000:4_0:253_0:112$ ip community-list expanded c2 permit 5613 ^65000:4_0:253_0:113$ ip community-list expanded c2 permit 5614 ^65000:4_0:253_0:114$ ip community-list expanded c2 permit 5615 ^65000:4_0:253_0:115$ ip community-list expanded c2 permit 5616 ^65000:4_0:253_0:116$ ip community-list expanded c2 permit 5617 ^65000:4_0:253_0:117$ ip community-list expanded c2 permit 5618 ^65000:4_0:253_0:118$ ip community-list expanded c2 permit 5619 ^65000:4_0:253_0:119$ ip community-list expanded c2 permit 5620 ^65000:4_0:253_0:120$ ip community-list expanded c2 permit 5621 ^65000:4_0:253_0:121$ ip community-list expanded c2 permit 5622 ^65000:4_0:253_0:122$ ip community-list expanded c2 permit 5623 ^65000:4_0:253_0:123$ ip community-list expanded c2 permit 5624 ^65000:4_0:253_0:124$ ip community-list expanded c2 permit 5625 ^65000:4_0:253_0:125$ ip community-list expanded c2 permit 5626 ^65000:4_0:253_0:126$ ip community-list expanded c2 permit 5627 ^65000:3_0:253_0:251$ ip community-list expanded c2 permit 5628 ^65000:4_0:254_0:85$ ip community-list expanded c2 permit 5629 ^65000:4_0:254_0:86$ ip community-list expanded c2 permit 5630 ^65000:4_0:254_0:87$ ip community-list expanded c2 permit 5631 ^65000:4_0:254_0:88$ ip community-list expanded c2 permit 5632 ^65000:4_0:254_0:89$ ip community-list expanded c2 permit 5633 ^65000:4_0:254_0:90$ ip community-list expanded c2 permit 5634 ^65000:4_0:254_0:91$ ip community-list expanded c2 permit 5635 ^65000:4_0:254_0:92$ ip community-list expanded c2 permit 5636 ^65000:4_0:254_0:93$ ip community-list expanded c2 permit 5637 ^65000:4_0:254_0:94$ ip community-list expanded c2 permit 5638 ^65000:4_0:254_0:95$ ip community-list expanded c2 permit 5639 ^65000:4_0:254_0:96$ ip community-list expanded c2 permit 5640 ^65000:4_0:254_0:97$ ip community-list expanded c2 permit 5641 ^65000:4_0:254_0:98$ ip community-list expanded c2 permit 5642 ^65000:4_0:254_0:99$ ip community-list expanded c2 permit 5643 ^65000:4_0:254_0:100$ ip community-list expanded c2 permit 5644 ^65000:4_0:254_0:101$ ip community-list expanded c2 permit 5645 ^65000:4_0:254_0:102$ ip community-list expanded c2 permit 5646 ^65000:4_0:254_0:103$ ip community-list expanded c2 permit 5647 ^65000:4_0:254_0:104$ ip community-list expanded c2 permit 5648 ^65000:4_0:254_0:105$ ip community-list expanded c2 permit 5649 ^65000:4_0:254_0:106$ ip community-list expanded c2 permit 5650 ^65000:4_0:254_0:107$ ip community-list expanded c2 permit 5651 ^65000:4_0:254_0:108$ ip community-list expanded c2 permit 5652 ^65000:4_0:254_0:109$ ip community-list expanded c2 permit 5653 ^65000:4_0:254_0:110$ ip community-list expanded c2 permit 5654 ^65000:4_0:254_0:111$ ip community-list expanded c2 permit 5655 ^65000:4_0:254_0:112$ ip community-list expanded c2 permit 5656 ^65000:4_0:254_0:113$ ip community-list expanded c2 permit 5657 ^65000:4_0:254_0:114$ ip community-list expanded c2 permit 5658 ^65000:4_0:254_0:115$ ip community-list expanded c2 permit 5659 ^65000:4_0:254_0:116$ ip community-list expanded c2 permit 5660 ^65000:4_0:254_0:117$ ip community-list expanded c2 permit 5661 ^65000:4_0:254_0:118$ ip community-list expanded c2 permit 5662 ^65000:4_0:254_0:119$ ip community-list expanded c2 permit 5663 ^65000:4_0:254_0:120$ ip community-list expanded c2 permit 5664 ^65000:4_0:254_0:121$ ip community-list expanded c2 permit 5665 ^65000:4_0:254_0:122$ ip community-list expanded c2 permit 5666 ^65000:4_0:254_0:123$ ip community-list expanded c2 permit 5667 ^65000:4_0:254_0:124$ ip community-list expanded c2 permit 5668 ^65000:4_0:254_0:125$ ip community-list expanded c2 permit 5669 ^65000:4_0:254_0:126$ ip community-list expanded c2 permit 5670 ^65000:4_0:254_0:127$ ip community-list expanded c2 permit 5671 ^65000:3_0:254_0:252$ ip community-list expanded c2 permit 5672 ^65000:4_0:255_0:86$ ip community-list expanded c2 permit 5673 ^65000:4_0:255_0:87$ ip community-list expanded c2 permit 5674 ^65000:4_0:255_0:88$ ip community-list expanded c2 permit 5675 ^65000:4_0:255_0:89$ ip community-list expanded c2 permit 5676 ^65000:4_0:255_0:90$ ip community-list expanded c2 permit 5677 ^65000:4_0:255_0:91$ ip community-list expanded c2 permit 5678 ^65000:4_0:255_0:92$ ip community-list expanded c2 permit 5679 ^65000:4_0:255_0:93$ ip community-list expanded c2 permit 5680 ^65000:4_0:255_0:94$ ip community-list expanded c2 permit 5681 ^65000:4_0:255_0:95$ ip community-list expanded c2 permit 5682 ^65000:4_0:255_0:96$ ip community-list expanded c2 permit 5683 ^65000:4_0:255_0:97$ ip community-list expanded c2 permit 5684 ^65000:4_0:255_0:98$ ip community-list expanded c2 permit 5685 ^65000:4_0:255_0:99$ ip community-list expanded c2 permit 5686 ^65000:4_0:255_0:100$ ip community-list expanded c2 permit 5687 ^65000:4_0:255_0:101$ ip community-list expanded c2 permit 5688 ^65000:4_0:255_0:102$ ip community-list expanded c2 permit 5689 ^65000:4_0:255_0:103$ ip community-list expanded c2 permit 5690 ^65000:4_0:255_0:104$ ip community-list expanded c2 permit 5691 ^65000:4_0:255_0:105$ ip community-list expanded c2 permit 5692 ^65000:4_0:255_0:106$ ip community-list expanded c2 permit 5693 ^65000:4_0:255_0:107$ ip community-list expanded c2 permit 5694 ^65000:4_0:255_0:108$ ip community-list expanded c2 permit 5695 ^65000:4_0:255_0:109$ ip community-list expanded c2 permit 5696 ^65000:4_0:255_0:110$ ip community-list expanded c2 permit 5697 ^65000:4_0:255_0:111$ ip community-list expanded c2 permit 5698 ^65000:4_0:255_0:112$ ip community-list expanded c2 permit 5699 ^65000:4_0:255_0:113$ ip community-list expanded c2 permit 5700 ^65000:4_0:255_0:114$ ip community-list expanded c2 permit 5701 ^65000:4_0:255_0:115$ ip community-list expanded c2 permit 5702 ^65000:4_0:255_0:116$ ip community-list expanded c2 permit 5703 ^65000:4_0:255_0:117$ ip community-list expanded c2 permit 5704 ^65000:4_0:255_0:118$ ip community-list expanded c2 permit 5705 ^65000:4_0:255_0:119$ ip community-list expanded c2 permit 5706 ^65000:4_0:255_0:120$ ip community-list expanded c2 permit 5707 ^65000:4_0:255_0:121$ ip community-list expanded c2 permit 5708 ^65000:4_0:255_0:122$ ip community-list expanded c2 permit 5709 ^65000:4_0:255_0:123$ ip community-list expanded c2 permit 5710 ^65000:4_0:255_0:124$ ip community-list expanded c2 permit 5711 ^65000:4_0:255_0:125$ ip community-list expanded c2 permit 5712 ^65000:4_0:255_0:126$ ip community-list expanded c2 permit 5713 ^65000:4_0:255_0:127$ ip community-list expanded c2 permit 5714 ^65000:3_0:255_0:253$ ip community-list expanded c2 permit 5715 ^65000:4_0:256_0:86$ ip community-list expanded c2 permit 5716 ^65000:4_0:256_0:87$ ip community-list expanded c2 permit 5717 ^65000:4_0:256_0:88$ ip community-list expanded c2 permit 5718 ^65000:4_0:256_0:89$ ip community-list expanded c2 permit 5719 ^65000:4_0:256_0:90$ ip community-list expanded c2 permit 5720 ^65000:4_0:256_0:91$ ip community-list expanded c2 permit 5721 ^65000:4_0:256_0:92$ ip community-list expanded c2 permit 5722 ^65000:4_0:256_0:93$ ip community-list expanded c2 permit 5723 ^65000:4_0:256_0:94$ ip community-list expanded c2 permit 5724 ^65000:4_0:256_0:95$ ip community-list expanded c2 permit 5725 ^65000:4_0:256_0:96$ ip community-list expanded c2 permit 5726 ^65000:4_0:256_0:97$ ip community-list expanded c2 permit 5727 ^65000:4_0:256_0:98$ ip community-list expanded c2 permit 5728 ^65000:4_0:256_0:99$ ip community-list expanded c2 permit 5729 ^65000:4_0:256_0:100$ ip community-list expanded c2 permit 5730 ^65000:4_0:256_0:101$ ip community-list expanded c2 permit 5731 ^65000:4_0:256_0:102$ ip community-list expanded c2 permit 5732 ^65000:4_0:256_0:103$ ip community-list expanded c2 permit 5733 ^65000:4_0:256_0:104$ ip community-list expanded c2 permit 5734 ^65000:4_0:256_0:105$ ip community-list expanded c2 permit 5735 ^65000:4_0:256_0:106$ ip community-list expanded c2 permit 5736 ^65000:4_0:256_0:107$ ip community-list expanded c2 permit 5737 ^65000:4_0:256_0:108$ ip community-list expanded c2 permit 5738 ^65000:4_0:256_0:109$ ip community-list expanded c2 permit 5739 ^65000:4_0:256_0:110$ ip community-list expanded c2 permit 5740 ^65000:4_0:256_0:111$ ip community-list expanded c2 permit 5741 ^65000:4_0:256_0:112$ ip community-list expanded c2 permit 5742 ^65000:4_0:256_0:113$ ip community-list expanded c2 permit 5743 ^65000:4_0:256_0:114$ ip community-list expanded c2 permit 5744 ^65000:4_0:256_0:115$ ip community-list expanded c2 permit 5745 ^65000:4_0:256_0:116$ ip community-list expanded c2 permit 5746 ^65000:4_0:256_0:117$ ip community-list expanded c2 permit 5747 ^65000:4_0:256_0:118$ ip community-list expanded c2 permit 5748 ^65000:4_0:256_0:119$ ip community-list expanded c2 permit 5749 ^65000:4_0:256_0:120$ ip community-list expanded c2 permit 5750 ^65000:4_0:256_0:121$ ip community-list expanded c2 permit 5751 ^65000:4_0:256_0:122$ ip community-list expanded c2 permit 5752 ^65000:4_0:256_0:123$ ip community-list expanded c2 permit 5753 ^65000:4_0:256_0:124$ ip community-list expanded c2 permit 5754 ^65000:4_0:256_0:125$ ip community-list expanded c2 permit 5755 ^65000:4_0:256_0:126$ ip community-list expanded c2 permit 5756 ^65000:4_0:256_0:127$ ip community-list expanded c2 permit 5757 ^65000:4_0:256_0:128$ ip community-list expanded c2 permit 5758 ^65000:3_0:256_0:254$ route-map calculator permit 36009 match community 1_1_1 2_1_2 c4_2_1 c3_3_1 c3_4_2 set community 0:2 route-map calculator permit 36010 match community c4_4_2 c4_5_2 c3_5_3 c4_6_3 c3_6_4 set community 0:2 route-map calculator permit 36011 match community c4_7_3 c3_7_5 c4_8_3 c4_8_4 c3_8_6 set community 0:2 route-map calculator permit 36012 match community c4_9_4 c3_9_7 c4_10_4 c4_10_5 c3_10_8 set community 0:2 route-map calculator permit 36013 match community c4_11_4 c4_11_5 c3_11_9 c4_12_5 c4_12_6 set community 0:2 route-map calculator permit 36014 match community c3_12_10 c4_13_5 c4_13_6 c3_13_11 c4_14_5 set community 0:2 route-map calculator permit 36015 match community c4_14_6 c4_14_7 c3_14_12 c4_15_6 c4_15_7 set community 0:2 route-map calculator permit 36016 match community c3_15_13 c4_16_6 c4_16_7 c4_16_8 c3_16_14 set community 0:2 route-map calculator permit 36017 match community c4_17_6 c4_17_7 c4_17_8 c3_17_15 c4_18_7 set community 0:2 route-map calculator permit 36018 match community c4_18_8 c4_18_9 c3_18_16 c4_19_7 c4_19_8 set community 0:2 route-map calculator permit 36019 match community c4_19_9 c3_19_17 c4_20_7 c4_20_8 c4_20_9 set community 0:2 route-map calculator permit 36020 match community c4_20_10 c3_20_18 c4_21_8 c4_21_9 c4_21_10 set community 0:2 route-map calculator permit 36021 match community c3_21_19 c4_22_8 c4_22_9 c4_22_10 c4_22_11 set community 0:2 route-map calculator permit 36022 match community c3_22_20 c4_23_8 c4_23_9 c4_23_10 c4_23_11 set community 0:2 route-map calculator permit 36023 match community c3_23_21 c4_24_9 c4_24_10 c4_24_11 c4_24_12 set community 0:2 route-map calculator permit 36024 match community c3_24_22 c4_25_9 c4_25_10 c4_25_11 c4_25_12 set community 0:2 route-map calculator permit 36025 match community c3_25_23 c4_26_9 c4_26_10 c4_26_11 c4_26_12 set community 0:2 route-map calculator permit 36026 match community c4_26_13 c3_26_24 c4_27_10 c4_27_11 c4_27_12 set community 0:2 route-map calculator permit 36027 match community c4_27_13 c3_27_25 c4_28_10 c4_28_11 c4_28_12 set community 0:2 route-map calculator permit 36028 match community c4_28_13 c4_28_14 c3_28_26 c4_29_10 c4_29_11 set community 0:2 route-map calculator permit 36029 match community c4_29_12 c4_29_13 c4_29_14 c3_29_27 c4_30_11 set community 0:2 route-map calculator permit 36030 match community c4_30_12 c4_30_13 c4_30_14 c4_30_15 c3_30_28 set community 0:2 route-map calculator permit 36031 match community c4_31_11 c4_31_12 c4_31_13 c4_31_14 c4_31_15 set community 0:2 route-map calculator permit 36032 match community c3_31_29 c4_32_11 c4_32_12 c4_32_13 c4_32_14 set community 0:2 route-map calculator permit 36033 match community c4_32_15 c4_32_16 c3_32_30 c4_33_12 c4_33_13 set community 0:2 route-map calculator permit 36034 match community c4_33_14 c4_33_15 c4_33_16 c3_33_31 c4_34_12 set community 0:2 route-map calculator permit 36035 match community c4_34_13 c4_34_14 c4_34_15 c4_34_16 c4_34_17 set community 0:2 route-map calculator permit 36036 match community c3_34_32 c4_35_12 c4_35_13 c4_35_14 c4_35_15 set community 0:2 route-map calculator permit 36037 match community c4_35_16 c4_35_17 c3_35_33 c4_36_13 c4_36_14 set community 0:2 route-map calculator permit 36038 match community c4_36_15 c4_36_16 c4_36_17 c4_36_18 c3_36_34 set community 0:2 route-map calculator permit 36039 match community c4_37_13 c4_37_14 c4_37_15 c4_37_16 c4_37_17 set community 0:2 route-map calculator permit 36040 match community c4_37_18 c3_37_35 c4_38_13 c4_38_14 c4_38_15 set community 0:2 route-map calculator permit 36041 match community c4_38_16 c4_38_17 c4_38_18 c4_38_19 c3_38_36 set community 0:2 route-map calculator permit 36042 match community c4_39_14 c4_39_15 c4_39_16 c4_39_17 c4_39_18 set community 0:2 route-map calculator permit 36043 match community c4_39_19 c3_39_37 c4_40_14 c4_40_15 c4_40_16 set community 0:2 route-map calculator permit 36044 match community c4_40_17 c4_40_18 c4_40_19 c4_40_20 c3_40_38 set community 0:2 route-map calculator permit 36045 match community c4_41_14 c4_41_15 c4_41_16 c4_41_17 c4_41_18 set community 0:2 route-map calculator permit 36046 match community c4_41_19 c4_41_20 c3_41_39 c4_42_15 c4_42_16 set community 0:2 route-map calculator permit 36047 match community c4_42_17 c4_42_18 c4_42_19 c4_42_20 c4_42_21 set community 0:2 route-map calculator permit 36048 match community c3_42_40 c4_43_15 c4_43_16 c4_43_17 c4_43_18 set community 0:2 route-map calculator permit 36049 match community c4_43_19 c4_43_20 c4_43_21 c3_43_41 c4_44_15 set community 0:2 route-map calculator permit 36050 match community c4_44_16 c4_44_17 c4_44_18 c4_44_19 c4_44_20 set community 0:2 route-map calculator permit 36051 match community c4_44_21 c4_44_22 c3_44_42 c4_45_16 c4_45_17 set community 0:2 route-map calculator permit 36052 match community c4_45_18 c4_45_19 c4_45_20 c4_45_21 c4_45_22 set community 0:2 route-map calculator permit 36053 match community c3_45_43 c4_46_16 c4_46_17 c4_46_18 c4_46_19 set community 0:2 route-map calculator permit 36054 match community c4_46_20 c4_46_21 c4_46_22 c4_46_23 c3_46_44 set community 0:2 route-map calculator permit 36055 match community c4_47_16 c4_47_17 c4_47_18 c4_47_19 c4_47_20 set community 0:2 route-map calculator permit 36056 match community c4_47_21 c4_47_22 c4_47_23 c3_47_45 c4_48_17 set community 0:2 route-map calculator permit 36057 match community c4_48_18 c4_48_19 c4_48_20 c4_48_21 c4_48_22 set community 0:2 route-map calculator permit 36058 match community c4_48_23 c4_48_24 c3_48_46 c4_49_17 c4_49_18 set community 0:2 route-map calculator permit 36059 match community c4_49_19 c4_49_20 c4_49_21 c4_49_22 c4_49_23 set community 0:2 route-map calculator permit 36060 match community c4_49_24 c3_49_47 c4_50_17 c4_50_18 c4_50_19 set community 0:2 route-map calculator permit 36061 match community c4_50_20 c4_50_21 c4_50_22 c4_50_23 c4_50_24 set community 0:2 route-map calculator permit 36062 match community c4_50_25 c3_50_48 c4_51_18 c4_51_19 c4_51_20 set community 0:2 route-map calculator permit 36063 match community c4_51_21 c4_51_22 c4_51_23 c4_51_24 c4_51_25 set community 0:2 route-map calculator permit 36064 match community c3_51_49 c4_52_18 c4_52_19 c4_52_20 c4_52_21 set community 0:2 route-map calculator permit 36065 match community c4_52_22 c4_52_23 c4_52_24 c4_52_25 c4_52_26 set community 0:2 route-map calculator permit 36066 match community c3_52_50 c4_53_18 c4_53_19 c4_53_20 c4_53_21 set community 0:2 route-map calculator permit 36067 match community c4_53_22 c4_53_23 c4_53_24 c4_53_25 c4_53_26 set community 0:2 route-map calculator permit 36068 match community c3_53_51 c4_54_19 c4_54_20 c4_54_21 c4_54_22 set community 0:2 route-map calculator permit 36069 match community c4_54_23 c4_54_24 c4_54_25 c4_54_26 c4_54_27 set community 0:2 route-map calculator permit 36070 match community c3_54_52 c4_55_19 c4_55_20 c4_55_21 c4_55_22 set community 0:2 route-map calculator permit 36071 match community c4_55_23 c4_55_24 c4_55_25 c4_55_26 c4_55_27 set community 0:2 route-map calculator permit 36072 match community c3_55_53 c4_56_19 c4_56_20 c4_56_21 c4_56_22 set community 0:2 route-map calculator permit 36073 match community c4_56_23 c4_56_24 c4_56_25 c4_56_26 c4_56_27 set community 0:2 route-map calculator permit 36074 match community c4_56_28 c3_56_54 c4_57_20 c4_57_21 c4_57_22 set community 0:2 route-map calculator permit 36075 match community c4_57_23 c4_57_24 c4_57_25 c4_57_26 c4_57_27 set community 0:2 route-map calculator permit 36076 match community c4_57_28 c3_57_55 c4_58_20 c4_58_21 c4_58_22 set community 0:2 route-map calculator permit 36077 match community c4_58_23 c4_58_24 c4_58_25 c4_58_26 c4_58_27 set community 0:2 route-map calculator permit 36078 match community c4_58_28 c4_58_29 c3_58_56 c4_59_20 c4_59_21 set community 0:2 route-map calculator permit 36079 match community c4_59_22 c4_59_23 c4_59_24 c4_59_25 c4_59_26 set community 0:2 route-map calculator permit 36080 match community c4_59_27 c4_59_28 c4_59_29 c3_59_57 c4_60_21 set community 0:2 route-map calculator permit 36081 match community c4_60_22 c4_60_23 c4_60_24 c4_60_25 c4_60_26 set community 0:2 route-map calculator permit 36082 match community c4_60_27 c4_60_28 c4_60_29 c4_60_30 c3_60_58 set community 0:2 route-map calculator permit 36083 match community c4_61_21 c4_61_22 c4_61_23 c4_61_24 c4_61_25 set community 0:2 route-map calculator permit 36084 match community c4_61_26 c4_61_27 c4_61_28 c4_61_29 c4_61_30 set community 0:2 route-map calculator permit 36085 match community c3_61_59 c4_62_21 c4_62_22 c4_62_23 c4_62_24 set community 0:2 route-map calculator permit 36086 match community c4_62_25 c4_62_26 c4_62_27 c4_62_28 c4_62_29 set community 0:2 route-map calculator permit 36087 match community c4_62_30 c4_62_31 c3_62_60 c4_63_22 c4_63_23 set community 0:2 route-map calculator permit 36088 match community c4_63_24 c4_63_25 c4_63_26 c4_63_27 c4_63_28 set community 0:2 route-map calculator permit 36089 match community c4_63_29 c4_63_30 c4_63_31 c3_63_61 c4_64_22 set community 0:2 route-map calculator permit 36090 match community c4_64_23 c4_64_24 c4_64_25 c4_64_26 c4_64_27 set community 0:2 route-map calculator permit 36091 match community c4_64_28 c4_64_29 c4_64_30 c4_64_31 c4_64_32 set community 0:2 route-map calculator permit 36092 match community c3_64_62 c4_65_22 c4_65_23 c4_65_24 c4_65_25 set community 0:2 route-map calculator permit 36093 match community c4_65_26 c4_65_27 c4_65_28 c4_65_29 c4_65_30 set community 0:2 route-map calculator permit 36094 match community c4_65_31 c4_65_32 c3_65_63 c4_66_23 c4_66_24 set community 0:2 route-map calculator permit 36095 match community c4_66_25 c4_66_26 c4_66_27 c4_66_28 c4_66_29 set community 0:2 route-map calculator permit 36096 match community c4_66_30 c4_66_31 c4_66_32 c4_66_33 c3_66_64 set community 0:2 route-map calculator permit 36097 match community c4_67_23 c4_67_24 c4_67_25 c4_67_26 c4_67_27 set community 0:2 route-map calculator permit 36098 match community c4_67_28 c4_67_29 c4_67_30 c4_67_31 c4_67_32 set community 0:2 route-map calculator permit 36099 match community c4_67_33 c3_67_65 c4_68_23 c4_68_24 c4_68_25 set community 0:2 route-map calculator permit 36100 match community c4_68_26 c4_68_27 c4_68_28 c4_68_29 c4_68_30 set community 0:2 route-map calculator permit 36101 match community c4_68_31 c4_68_32 c4_68_33 c4_68_34 c3_68_66 set community 0:2 route-map calculator permit 36102 match community c4_69_24 c4_69_25 c4_69_26 c4_69_27 c4_69_28 set community 0:2 route-map calculator permit 36103 match community c4_69_29 c4_69_30 c4_69_31 c4_69_32 c4_69_33 set community 0:2 route-map calculator permit 36104 match community c4_69_34 c3_69_67 c4_70_24 c4_70_25 c4_70_26 set community 0:2 route-map calculator permit 36105 match community c4_70_27 c4_70_28 c4_70_29 c4_70_30 c4_70_31 set community 0:2 route-map calculator permit 36106 match community c4_70_32 c4_70_33 c4_70_34 c4_70_35 c3_70_68 set community 0:2 route-map calculator permit 36107 match community c4_71_24 c4_71_25 c4_71_26 c4_71_27 c4_71_28 set community 0:2 route-map calculator permit 36108 match community c4_71_29 c4_71_30 c4_71_31 c4_71_32 c4_71_33 set community 0:2 route-map calculator permit 36109 match community c4_71_34 c4_71_35 c3_71_69 c4_72_25 c4_72_26 set community 0:2 route-map calculator permit 36110 match community c4_72_27 c4_72_28 c4_72_29 c4_72_30 c4_72_31 set community 0:2 route-map calculator permit 36111 match community c4_72_32 c4_72_33 c4_72_34 c4_72_35 c4_72_36 set community 0:2 route-map calculator permit 36112 match community c3_72_70 c4_73_25 c4_73_26 c4_73_27 c4_73_28 set community 0:2 route-map calculator permit 36113 match community c4_73_29 c4_73_30 c4_73_31 c4_73_32 c4_73_33 set community 0:2 route-map calculator permit 36114 match community c4_73_34 c4_73_35 c4_73_36 c3_73_71 c4_74_25 set community 0:2 route-map calculator permit 36115 match community c4_74_26 c4_74_27 c4_74_28 c4_74_29 c4_74_30 set community 0:2 route-map calculator permit 36116 match community c4_74_31 c4_74_32 c4_74_33 c4_74_34 c4_74_35 set community 0:2 route-map calculator permit 36117 match community c4_74_36 c4_74_37 c3_74_72 c4_75_26 c4_75_27 set community 0:2 route-map calculator permit 36118 match community c4_75_28 c4_75_29 c4_75_30 c4_75_31 c4_75_32 set community 0:2 route-map calculator permit 36119 match community c4_75_33 c4_75_34 c4_75_35 c4_75_36 c4_75_37 set community 0:2 route-map calculator permit 36120 match community c3_75_73 c4_76_26 c4_76_27 c4_76_28 c4_76_29 set community 0:2 route-map calculator permit 36121 match community c4_76_30 c4_76_31 c4_76_32 c4_76_33 c4_76_34 set community 0:2 route-map calculator permit 36122 match community c4_76_35 c4_76_36 c4_76_37 c4_76_38 c3_76_74 set community 0:2 route-map calculator permit 36123 match community c4_77_26 c4_77_27 c4_77_28 c4_77_29 c4_77_30 set community 0:2 route-map calculator permit 36124 match community c4_77_31 c4_77_32 c4_77_33 c4_77_34 c4_77_35 set community 0:2 route-map calculator permit 36125 match community c4_77_36 c4_77_37 c4_77_38 c3_77_75 c4_78_27 set community 0:2 route-map calculator permit 36126 match community c4_78_28 c4_78_29 c4_78_30 c4_78_31 c4_78_32 set community 0:2 route-map calculator permit 36127 match community c4_78_33 c4_78_34 c4_78_35 c4_78_36 c4_78_37 set community 0:2 route-map calculator permit 36128 match community c4_78_38 c4_78_39 c3_78_76 c4_79_27 c4_79_28 set community 0:2 route-map calculator permit 36129 match community c4_79_29 c4_79_30 c4_79_31 c4_79_32 c4_79_33 set community 0:2 route-map calculator permit 36130 match community c4_79_34 c4_79_35 c4_79_36 c4_79_37 c4_79_38 set community 0:2 route-map calculator permit 36131 match community c4_79_39 c3_79_77 c4_80_27 c4_80_28 c4_80_29 set community 0:2 route-map calculator permit 36132 match community c4_80_30 c4_80_31 c4_80_32 c4_80_33 c4_80_34 set community 0:2 route-map calculator permit 36133 match community c4_80_35 c4_80_36 c4_80_37 c4_80_38 c4_80_39 set community 0:2 route-map calculator permit 36134 match community c4_80_40 c3_80_78 c4_81_28 c4_81_29 c4_81_30 set community 0:2 route-map calculator permit 36135 match community c4_81_31 c4_81_32 c4_81_33 c4_81_34 c4_81_35 set community 0:2 route-map calculator permit 36136 match community c4_81_36 c4_81_37 c4_81_38 c4_81_39 c4_81_40 set community 0:2 route-map calculator permit 36137 match community c3_81_79 c4_82_28 c4_82_29 c4_82_30 c4_82_31 set community 0:2 route-map calculator permit 36138 match community c4_82_32 c4_82_33 c4_82_34 c4_82_35 c4_82_36 set community 0:2 route-map calculator permit 36139 match community c4_82_37 c4_82_38 c4_82_39 c4_82_40 c4_82_41 set community 0:2 route-map calculator permit 36140 match community c3_82_80 c4_83_28 c4_83_29 c4_83_30 c4_83_31 set community 0:2 route-map calculator permit 36141 match community c4_83_32 c4_83_33 c4_83_34 c4_83_35 c4_83_36 set community 0:2 route-map calculator permit 36142 match community c4_83_37 c4_83_38 c4_83_39 c4_83_40 c4_83_41 set community 0:2 route-map calculator permit 36143 match community c3_83_81 c4_84_29 c4_84_30 c4_84_31 c4_84_32 set community 0:2 route-map calculator permit 36144 match community c4_84_33 c4_84_34 c4_84_35 c4_84_36 c4_84_37 set community 0:2 route-map calculator permit 36145 match community c4_84_38 c4_84_39 c4_84_40 c4_84_41 c4_84_42 set community 0:2 route-map calculator permit 36146 match community c3_84_82 c4_85_29 c4_85_30 c4_85_31 c4_85_32 set community 0:2 route-map calculator permit 36147 match community c4_85_33 c4_85_34 c4_85_35 c4_85_36 c4_85_37 set community 0:2 route-map calculator permit 36148 match community c4_85_38 c4_85_39 c4_85_40 c4_85_41 c4_85_42 set community 0:2 route-map calculator permit 36149 match community c3_85_83 c4_86_29 c4_86_30 c4_86_31 c4_86_32 set community 0:2 route-map calculator permit 36150 match community c4_86_33 c4_86_34 c4_86_35 c4_86_36 c4_86_37 set community 0:2 route-map calculator permit 36151 match community c4_86_38 c4_86_39 c4_86_40 c4_86_41 c4_86_42 set community 0:2 route-map calculator permit 36152 match community c4_86_43 c3_86_84 c4_87_30 c4_87_31 c4_87_32 set community 0:2 route-map calculator permit 36153 match community c4_87_33 c4_87_34 c4_87_35 c4_87_36 c4_87_37 set community 0:2 route-map calculator permit 36154 match community c4_87_38 c4_87_39 c4_87_40 c4_87_41 c4_87_42 set community 0:2 route-map calculator permit 36155 match community c4_87_43 c3_87_85 c4_88_30 c4_88_31 c4_88_32 set community 0:2 route-map calculator permit 36156 match community c4_88_33 c4_88_34 c4_88_35 c4_88_36 c4_88_37 set community 0:2 route-map calculator permit 36157 match community c4_88_38 c4_88_39 c4_88_40 c4_88_41 c4_88_42 set community 0:2 route-map calculator permit 36158 match community c4_88_43 c4_88_44 c3_88_86 c4_89_30 c4_89_31 set community 0:2 route-map calculator permit 36159 match community c4_89_32 c4_89_33 c4_89_34 c4_89_35 c4_89_36 set community 0:2 route-map calculator permit 36160 match community c4_89_37 c4_89_38 c4_89_39 c4_89_40 c4_89_41 set community 0:2 route-map calculator permit 36161 match community c4_89_42 c4_89_43 c4_89_44 c3_89_87 c4_90_31 set community 0:2 route-map calculator permit 36162 match community c4_90_32 c4_90_33 c4_90_34 c4_90_35 c4_90_36 set community 0:2 route-map calculator permit 36163 match community c4_90_37 c4_90_38 c4_90_39 c4_90_40 c4_90_41 set community 0:2 route-map calculator permit 36164 match community c4_90_42 c4_90_43 c4_90_44 c4_90_45 c3_90_88 set community 0:2 route-map calculator permit 36165 match community c4_91_31 c4_91_32 c4_91_33 c4_91_34 c4_91_35 set community 0:2 route-map calculator permit 36166 match community c4_91_36 c4_91_37 c4_91_38 c4_91_39 c4_91_40 set community 0:2 route-map calculator permit 36167 match community c4_91_41 c4_91_42 c4_91_43 c4_91_44 c4_91_45 set community 0:2 route-map calculator permit 36168 match community c3_91_89 c4_92_31 c4_92_32 c4_92_33 c4_92_34 set community 0:2 route-map calculator permit 36169 match community c4_92_35 c4_92_36 c4_92_37 c4_92_38 c4_92_39 set community 0:2 route-map calculator permit 36170 match community c4_92_40 c4_92_41 c4_92_42 c4_92_43 c4_92_44 set community 0:2 route-map calculator permit 36171 match community c4_92_45 c4_92_46 c3_92_90 c4_93_32 c4_93_33 set community 0:2 route-map calculator permit 36172 match community c4_93_34 c4_93_35 c4_93_36 c4_93_37 c4_93_38 set community 0:2 route-map calculator permit 36173 match community c4_93_39 c4_93_40 c4_93_41 c4_93_42 c4_93_43 set community 0:2 route-map calculator permit 36174 match community c4_93_44 c4_93_45 c4_93_46 c3_93_91 c4_94_32 set community 0:2 route-map calculator permit 36175 match community c4_94_33 c4_94_34 c4_94_35 c4_94_36 c4_94_37 set community 0:2 route-map calculator permit 36176 match community c4_94_38 c4_94_39 c4_94_40 c4_94_41 c4_94_42 set community 0:2 route-map calculator permit 36177 match community c4_94_43 c4_94_44 c4_94_45 c4_94_46 c4_94_47 set community 0:2 route-map calculator permit 36178 match community c3_94_92 c4_95_32 c4_95_33 c4_95_34 c4_95_35 set community 0:2 route-map calculator permit 36179 match community c4_95_36 c4_95_37 c4_95_38 c4_95_39 c4_95_40 set community 0:2 route-map calculator permit 36180 match community c4_95_41 c4_95_42 c4_95_43 c4_95_44 c4_95_45 set community 0:2 route-map calculator permit 36181 match community c4_95_46 c4_95_47 c3_95_93 c4_96_33 c4_96_34 set community 0:2 route-map calculator permit 36182 match community c4_96_35 c4_96_36 c4_96_37 c4_96_38 c4_96_39 set community 0:2 route-map calculator permit 36183 match community c4_96_40 c4_96_41 c4_96_42 c4_96_43 c4_96_44 set community 0:2 route-map calculator permit 36184 match community c4_96_45 c4_96_46 c4_96_47 c4_96_48 c3_96_94 set community 0:2 route-map calculator permit 36185 match community c4_97_33 c4_97_34 c4_97_35 c4_97_36 c4_97_37 set community 0:2 route-map calculator permit 36186 match community c4_97_38 c4_97_39 c4_97_40 c4_97_41 c4_97_42 set community 0:2 route-map calculator permit 36187 match community c4_97_43 c4_97_44 c4_97_45 c4_97_46 c4_97_47 set community 0:2 route-map calculator permit 36188 match community c4_97_48 c3_97_95 c4_98_33 c4_98_34 c4_98_35 set community 0:2 route-map calculator permit 36189 match community c4_98_36 c4_98_37 c4_98_38 c4_98_39 c4_98_40 set community 0:2 route-map calculator permit 36190 match community c4_98_41 c4_98_42 c4_98_43 c4_98_44 c4_98_45 set community 0:2 route-map calculator permit 36191 match community c4_98_46 c4_98_47 c4_98_48 c4_98_49 c3_98_96 set community 0:2 route-map calculator permit 36192 match community c4_99_34 c4_99_35 c4_99_36 c4_99_37 c4_99_38 set community 0:2 route-map calculator permit 36193 match community c4_99_39 c4_99_40 c4_99_41 c4_99_42 c4_99_43 set community 0:2 route-map calculator permit 36194 match community c4_99_44 c4_99_45 c4_99_46 c4_99_47 c4_99_48 set community 0:2 route-map calculator permit 36195 match community c4_99_49 c3_99_97 c4_100_34 c4_100_35 c4_100_36 set community 0:2 route-map calculator permit 36196 match community c4_100_37 c4_100_38 c4_100_39 c4_100_40 c4_100_41 set community 0:2 route-map calculator permit 36197 match community c4_100_42 c4_100_43 c4_100_44 c4_100_45 c4_100_46 set community 0:2 route-map calculator permit 36198 match community c4_100_47 c4_100_48 c4_100_49 c4_100_50 c3_100_98 set community 0:2 route-map calculator permit 36199 match community c4_101_34 c4_101_35 c4_101_36 c4_101_37 c4_101_38 set community 0:2 route-map calculator permit 36200 match community c4_101_39 c4_101_40 c4_101_41 c4_101_42 c4_101_43 set community 0:2 route-map calculator permit 36201 match community c4_101_44 c4_101_45 c4_101_46 c4_101_47 c4_101_48 set community 0:2 route-map calculator permit 36202 match community c4_101_49 c4_101_50 c3_101_99 c4_102_35 c4_102_36 set community 0:2 route-map calculator permit 36203 match community c4_102_37 c4_102_38 c4_102_39 c4_102_40 c4_102_41 set community 0:2 route-map calculator permit 36204 match community c4_102_42 c4_102_43 c4_102_44 c4_102_45 c4_102_46 set community 0:2 route-map calculator permit 36205 match community c4_102_47 c4_102_48 c4_102_49 c4_102_50 c4_102_51 set community 0:2 route-map calculator permit 36206 match community c3_102_100 c4_103_35 c4_103_36 c4_103_37 c4_103_38 set community 0:2 route-map calculator permit 36207 match community c4_103_39 c4_103_40 c4_103_41 c4_103_42 c4_103_43 set community 0:2 route-map calculator permit 36208 match community c4_103_44 c4_103_45 c4_103_46 c4_103_47 c4_103_48 set community 0:2 route-map calculator permit 36209 match community c4_103_49 c4_103_50 c4_103_51 c3_103_101 c4_104_35 set community 0:2 route-map calculator permit 36210 match community c4_104_36 c4_104_37 c4_104_38 c4_104_39 c4_104_40 set community 0:2 route-map calculator permit 36211 match community c4_104_41 c4_104_42 c4_104_43 c4_104_44 c4_104_45 set community 0:2 route-map calculator permit 36212 match community c4_104_46 c4_104_47 c4_104_48 c4_104_49 c4_104_50 set community 0:2 route-map calculator permit 36213 match community c4_104_51 c4_104_52 c3_104_102 c4_105_36 c4_105_37 set community 0:2 route-map calculator permit 36214 match community c4_105_38 c4_105_39 c4_105_40 c4_105_41 c4_105_42 set community 0:2 route-map calculator permit 36215 match community c4_105_43 c4_105_44 c4_105_45 c4_105_46 c4_105_47 set community 0:2 route-map calculator permit 36216 match community c4_105_48 c4_105_49 c4_105_50 c4_105_51 c4_105_52 set community 0:2 route-map calculator permit 36217 match community c3_105_103 c4_106_36 c4_106_37 c4_106_38 c4_106_39 set community 0:2 route-map calculator permit 36218 match community c4_106_40 c4_106_41 c4_106_42 c4_106_43 c4_106_44 set community 0:2 route-map calculator permit 36219 match community c4_106_45 c4_106_46 c4_106_47 c4_106_48 c4_106_49 set community 0:2 route-map calculator permit 36220 match community c4_106_50 c4_106_51 c4_106_52 c4_106_53 c3_106_104 set community 0:2 route-map calculator permit 36221 match community c4_107_36 c4_107_37 c4_107_38 c4_107_39 c4_107_40 set community 0:2 route-map calculator permit 36222 match community c4_107_41 c4_107_42 c4_107_43 c4_107_44 c4_107_45 set community 0:2 route-map calculator permit 36223 match community c4_107_46 c4_107_47 c4_107_48 c4_107_49 c4_107_50 set community 0:2 route-map calculator permit 36224 match community c4_107_51 c4_107_52 c4_107_53 c3_107_105 c4_108_37 set community 0:2 route-map calculator permit 36225 match community c4_108_38 c4_108_39 c4_108_40 c4_108_41 c4_108_42 set community 0:2 route-map calculator permit 36226 match community c4_108_43 c4_108_44 c4_108_45 c4_108_46 c4_108_47 set community 0:2 route-map calculator permit 36227 match community c4_108_48 c4_108_49 c4_108_50 c4_108_51 c4_108_52 set community 0:2 route-map calculator permit 36228 match community c4_108_53 c4_108_54 c3_108_106 c4_109_37 c4_109_38 set community 0:2 route-map calculator permit 36229 match community c4_109_39 c4_109_40 c4_109_41 c4_109_42 c4_109_43 set community 0:2 route-map calculator permit 36230 match community c4_109_44 c4_109_45 c4_109_46 c4_109_47 c4_109_48 set community 0:2 route-map calculator permit 36231 match community c4_109_49 c4_109_50 c4_109_51 c4_109_52 c4_109_53 set community 0:2 route-map calculator permit 36232 match community c4_109_54 c3_109_107 c4_110_37 c4_110_38 c4_110_39 set community 0:2 route-map calculator permit 36233 match community c4_110_40 c4_110_41 c4_110_42 c4_110_43 c4_110_44 set community 0:2 route-map calculator permit 36234 match community c4_110_45 c4_110_46 c4_110_47 c4_110_48 c4_110_49 set community 0:2 route-map calculator permit 36235 match community c4_110_50 c4_110_51 c4_110_52 c4_110_53 c4_110_54 set community 0:2 route-map calculator permit 36236 match community c4_110_55 c3_110_108 c4_111_38 c4_111_39 c4_111_40 set community 0:2 route-map calculator permit 36237 match community c4_111_41 c4_111_42 c4_111_43 c4_111_44 c4_111_45 set community 0:2 route-map calculator permit 36238 match community c4_111_46 c4_111_47 c4_111_48 c4_111_49 c4_111_50 set community 0:2 route-map calculator permit 36239 match community c4_111_51 c4_111_52 c4_111_53 c4_111_54 c4_111_55 set community 0:2 route-map calculator permit 36240 match community c3_111_109 c4_112_38 c4_112_39 c4_112_40 c4_112_41 set community 0:2 route-map calculator permit 36241 match community c4_112_42 c4_112_43 c4_112_44 c4_112_45 c4_112_46 set community 0:2 route-map calculator permit 36242 match community c4_112_47 c4_112_48 c4_112_49 c4_112_50 c4_112_51 set community 0:2 route-map calculator permit 36243 match community c4_112_52 c4_112_53 c4_112_54 c4_112_55 c4_112_56 set community 0:2 route-map calculator permit 36244 match community c3_112_110 c4_113_38 c4_113_39 c4_113_40 c4_113_41 set community 0:2 route-map calculator permit 36245 match community c4_113_42 c4_113_43 c4_113_44 c4_113_45 c4_113_46 set community 0:2 route-map calculator permit 36246 match community c4_113_47 c4_113_48 c4_113_49 c4_113_50 c4_113_51 set community 0:2 route-map calculator permit 36247 match community c4_113_52 c4_113_53 c4_113_54 c4_113_55 c4_113_56 set community 0:2 route-map calculator permit 36248 match community c3_113_111 c4_114_39 c4_114_40 c4_114_41 c4_114_42 set community 0:2 route-map calculator permit 36249 match community c4_114_43 c4_114_44 c4_114_45 c4_114_46 c4_114_47 set community 0:2 route-map calculator permit 36250 match community c4_114_48 c4_114_49 c4_114_50 c4_114_51 c4_114_52 set community 0:2 route-map calculator permit 36251 match community c4_114_53 c4_114_54 c4_114_55 c4_114_56 c4_114_57 set community 0:2 route-map calculator permit 36252 match community c3_114_112 c4_115_39 c4_115_40 c4_115_41 c4_115_42 set community 0:2 route-map calculator permit 36253 match community c4_115_43 c4_115_44 c4_115_45 c4_115_46 c4_115_47 set community 0:2 route-map calculator permit 36254 match community c4_115_48 c4_115_49 c4_115_50 c4_115_51 c4_115_52 set community 0:2 route-map calculator permit 36255 match community c4_115_53 c4_115_54 c4_115_55 c4_115_56 c4_115_57 set community 0:2 route-map calculator permit 36256 match community c3_115_113 c4_116_39 c4_116_40 c4_116_41 c4_116_42 set community 0:2 route-map calculator permit 36257 match community c4_116_43 c4_116_44 c4_116_45 c4_116_46 c4_116_47 set community 0:2 route-map calculator permit 36258 match community c4_116_48 c4_116_49 c4_116_50 c4_116_51 c4_116_52 set community 0:2 route-map calculator permit 36259 match community c4_116_53 c4_116_54 c4_116_55 c4_116_56 c4_116_57 set community 0:2 route-map calculator permit 36260 match community c4_116_58 c3_116_114 c4_117_40 c4_117_41 c4_117_42 set community 0:2 route-map calculator permit 36261 match community c4_117_43 c4_117_44 c4_117_45 c4_117_46 c4_117_47 set community 0:2 route-map calculator permit 36262 match community c4_117_48 c4_117_49 c4_117_50 c4_117_51 c4_117_52 set community 0:2 route-map calculator permit 36263 match community c4_117_53 c4_117_54 c4_117_55 c4_117_56 c4_117_57 set community 0:2 route-map calculator permit 36264 match community c4_117_58 c3_117_115 c4_118_40 c4_118_41 c4_118_42 set community 0:2 route-map calculator permit 36265 match community c4_118_43 c4_118_44 c4_118_45 c4_118_46 c4_118_47 set community 0:2 route-map calculator permit 36266 match community c4_118_48 c4_118_49 c4_118_50 c4_118_51 c4_118_52 set community 0:2 route-map calculator permit 36267 match community c4_118_53 c4_118_54 c4_118_55 c4_118_56 c4_118_57 set community 0:2 route-map calculator permit 36268 match community c4_118_58 c4_118_59 c3_118_116 c4_119_40 c4_119_41 set community 0:2 route-map calculator permit 36269 match community c4_119_42 c4_119_43 c4_119_44 c4_119_45 c4_119_46 set community 0:2 route-map calculator permit 36270 match community c4_119_47 c4_119_48 c4_119_49 c4_119_50 c4_119_51 set community 0:2 route-map calculator permit 36271 match community c4_119_52 c4_119_53 c4_119_54 c4_119_55 c4_119_56 set community 0:2 route-map calculator permit 36272 match community c4_119_57 c4_119_58 c4_119_59 c3_119_117 c4_120_41 set community 0:2 route-map calculator permit 36273 match community c4_120_42 c4_120_43 c4_120_44 c4_120_45 c4_120_46 set community 0:2 route-map calculator permit 36274 match community c4_120_47 c4_120_48 c4_120_49 c4_120_50 c4_120_51 set community 0:2 route-map calculator permit 36275 match community c4_120_52 c4_120_53 c4_120_54 c4_120_55 c4_120_56 set community 0:2 route-map calculator permit 36276 match community c4_120_57 c4_120_58 c4_120_59 c4_120_60 c3_120_118 set community 0:2 route-map calculator permit 36277 match community c4_121_41 c4_121_42 c4_121_43 c4_121_44 c4_121_45 set community 0:2 route-map calculator permit 36278 match community c4_121_46 c4_121_47 c4_121_48 c4_121_49 c4_121_50 set community 0:2 route-map calculator permit 36279 match community c4_121_51 c4_121_52 c4_121_53 c4_121_54 c4_121_55 set community 0:2 route-map calculator permit 36280 match community c4_121_56 c4_121_57 c4_121_58 c4_121_59 c4_121_60 set community 0:2 route-map calculator permit 36281 match community c3_121_119 c4_122_41 c4_122_42 c4_122_43 c4_122_44 set community 0:2 route-map calculator permit 36282 match community c4_122_45 c4_122_46 c4_122_47 c4_122_48 c4_122_49 set community 0:2 route-map calculator permit 36283 match community c4_122_50 c4_122_51 c4_122_52 c4_122_53 c4_122_54 set community 0:2 route-map calculator permit 36284 match community c4_122_55 c4_122_56 c4_122_57 c4_122_58 c4_122_59 set community 0:2 route-map calculator permit 36285 match community c4_122_60 c4_122_61 c3_122_120 c4_123_42 c4_123_43 set community 0:2 route-map calculator permit 36286 match community c4_123_44 c4_123_45 c4_123_46 c4_123_47 c4_123_48 set community 0:2 route-map calculator permit 36287 match community c4_123_49 c4_123_50 c4_123_51 c4_123_52 c4_123_53 set community 0:2 route-map calculator permit 36288 match community c4_123_54 c4_123_55 c4_123_56 c4_123_57 c4_123_58 set community 0:2 route-map calculator permit 36289 match community c4_123_59 c4_123_60 c4_123_61 c3_123_121 c4_124_42 set community 0:2 route-map calculator permit 36290 match community c4_124_43 c4_124_44 c4_124_45 c4_124_46 c4_124_47 set community 0:2 route-map calculator permit 36291 match community c4_124_48 c4_124_49 c4_124_50 c4_124_51 c4_124_52 set community 0:2 route-map calculator permit 36292 match community c4_124_53 c4_124_54 c4_124_55 c4_124_56 c4_124_57 set community 0:2 route-map calculator permit 36293 match community c4_124_58 c4_124_59 c4_124_60 c4_124_61 c4_124_62 set community 0:2 route-map calculator permit 36294 match community c3_124_122 c4_125_42 c4_125_43 c4_125_44 c4_125_45 set community 0:2 route-map calculator permit 36295 match community c4_125_46 c4_125_47 c4_125_48 c4_125_49 c4_125_50 set community 0:2 route-map calculator permit 36296 match community c4_125_51 c4_125_52 c4_125_53 c4_125_54 c4_125_55 set community 0:2 route-map calculator permit 36297 match community c4_125_56 c4_125_57 c4_125_58 c4_125_59 c4_125_60 set community 0:2 route-map calculator permit 36298 match community c4_125_61 c4_125_62 c3_125_123 c4_126_43 c4_126_44 set community 0:2 route-map calculator permit 36299 match community c4_126_45 c4_126_46 c4_126_47 c4_126_48 c4_126_49 set community 0:2 route-map calculator permit 36300 match community c4_126_50 c4_126_51 c4_126_52 c4_126_53 c4_126_54 set community 0:2 route-map calculator permit 36301 match community c4_126_55 c4_126_56 c4_126_57 c4_126_58 c4_126_59 set community 0:2 route-map calculator permit 36302 match community c4_126_60 c4_126_61 c4_126_62 c4_126_63 c3_126_124 set community 0:2 route-map calculator permit 36303 match community c4_127_43 c4_127_44 c4_127_45 c4_127_46 c4_127_47 set community 0:2 route-map calculator permit 36304 match community c4_127_48 c4_127_49 c4_127_50 c4_127_51 c4_127_52 set community 0:2 route-map calculator permit 36305 match community c4_127_53 c4_127_54 c4_127_55 c4_127_56 c4_127_57 set community 0:2 route-map calculator permit 36306 match community c4_127_58 c4_127_59 c4_127_60 c4_127_61 c4_127_62 set community 0:2 route-map calculator permit 36307 match community c4_127_63 c3_127_125 c4_128_43 c4_128_44 c4_128_45 set community 0:2 route-map calculator permit 36308 match community c4_128_46 c4_128_47 c4_128_48 c4_128_49 c4_128_50 set community 0:2 route-map calculator permit 36309 match community c4_128_51 c4_128_52 c4_128_53 c4_128_54 c4_128_55 set community 0:2 route-map calculator permit 36310 match community c4_128_56 c4_128_57 c4_128_58 c4_128_59 c4_128_60 set community 0:2 route-map calculator permit 36311 match community c4_128_61 c4_128_62 c4_128_63 c4_128_64 c3_128_126 set community 0:2 route-map calculator permit 36312 match community c4_129_44 c4_129_45 c4_129_46 c4_129_47 c4_129_48 set community 0:2 route-map calculator permit 36313 match community c4_129_49 c4_129_50 c4_129_51 c4_129_52 c4_129_53 set community 0:2 route-map calculator permit 36314 match community c4_129_54 c4_129_55 c4_129_56 c4_129_57 c4_129_58 set community 0:2 route-map calculator permit 36315 match community c4_129_59 c4_129_60 c4_129_61 c4_129_62 c4_129_63 set community 0:2 route-map calculator permit 36316 match community c4_129_64 c3_129_127 c4_130_44 c4_130_45 c4_130_46 set community 0:2 route-map calculator permit 36317 match community c4_130_47 c4_130_48 c4_130_49 c4_130_50 c4_130_51 set community 0:2 route-map calculator permit 36318 match community c4_130_52 c4_130_53 c4_130_54 c4_130_55 c4_130_56 set community 0:2 route-map calculator permit 36319 match community c4_130_57 c4_130_58 c4_130_59 c4_130_60 c4_130_61 set community 0:2 route-map calculator permit 36320 match community c4_130_62 c4_130_63 c4_130_64 c4_130_65 c3_130_128 set community 0:2 route-map calculator permit 36321 match community c4_131_44 c4_131_45 c4_131_46 c4_131_47 c4_131_48 set community 0:2 route-map calculator permit 36322 match community c4_131_49 c4_131_50 c4_131_51 c4_131_52 c4_131_53 set community 0:2 route-map calculator permit 36323 match community c4_131_54 c4_131_55 c4_131_56 c4_131_57 c4_131_58 set community 0:2 route-map calculator permit 36324 match community c4_131_59 c4_131_60 c4_131_61 c4_131_62 c4_131_63 set community 0:2 route-map calculator permit 36325 match community c4_131_64 c4_131_65 c3_131_129 c4_132_45 c4_132_46 set community 0:2 route-map calculator permit 36326 match community c4_132_47 c4_132_48 c4_132_49 c4_132_50 c4_132_51 set community 0:2 route-map calculator permit 36327 match community c4_132_52 c4_132_53 c4_132_54 c4_132_55 c4_132_56 set community 0:2 route-map calculator permit 36328 match community c4_132_57 c4_132_58 c4_132_59 c4_132_60 c4_132_61 set community 0:2 route-map calculator permit 36329 match community c4_132_62 c4_132_63 c4_132_64 c4_132_65 c4_132_66 set community 0:2 route-map calculator permit 36330 match community c3_132_130 c4_133_45 c4_133_46 c4_133_47 c4_133_48 set community 0:2 route-map calculator permit 36331 match community c4_133_49 c4_133_50 c4_133_51 c4_133_52 c4_133_53 set community 0:2 route-map calculator permit 36332 match community c4_133_54 c4_133_55 c4_133_56 c4_133_57 c4_133_58 set community 0:2 route-map calculator permit 36333 match community c4_133_59 c4_133_60 c4_133_61 c4_133_62 c4_133_63 set community 0:2 route-map calculator permit 36334 match community c4_133_64 c4_133_65 c4_133_66 c3_133_131 c4_134_45 set community 0:2 route-map calculator permit 36335 match community c4_134_46 c4_134_47 c4_134_48 c4_134_49 c4_134_50 set community 0:2 route-map calculator permit 36336 match community c4_134_51 c4_134_52 c4_134_53 c4_134_54 c4_134_55 set community 0:2 route-map calculator permit 36337 match community c4_134_56 c4_134_57 c4_134_58 c4_134_59 c4_134_60 set community 0:2 route-map calculator permit 36338 match community c4_134_61 c4_134_62 c4_134_63 c4_134_64 c4_134_65 set community 0:2 route-map calculator permit 36339 match community c4_134_66 c4_134_67 c3_134_132 c4_135_46 c4_135_47 set community 0:2 route-map calculator permit 36340 match community c4_135_48 c4_135_49 c4_135_50 c4_135_51 c4_135_52 set community 0:2 route-map calculator permit 36341 match community c4_135_53 c4_135_54 c4_135_55 c4_135_56 c4_135_57 set community 0:2 route-map calculator permit 36342 match community c4_135_58 c4_135_59 c4_135_60 c4_135_61 c4_135_62 set community 0:2 route-map calculator permit 36343 match community c4_135_63 c4_135_64 c4_135_65 c4_135_66 c4_135_67 set community 0:2 route-map calculator permit 36344 match community c3_135_133 c4_136_46 c4_136_47 c4_136_48 c4_136_49 set community 0:2 route-map calculator permit 36345 match community c4_136_50 c4_136_51 c4_136_52 c4_136_53 c4_136_54 set community 0:2 route-map calculator permit 36346 match community c4_136_55 c4_136_56 c4_136_57 c4_136_58 c4_136_59 set community 0:2 route-map calculator permit 36347 match community c4_136_60 c4_136_61 c4_136_62 c4_136_63 c4_136_64 set community 0:2 route-map calculator permit 36348 match community c4_136_65 c4_136_66 c4_136_67 c4_136_68 c3_136_134 set community 0:2 route-map calculator permit 36349 match community c4_137_46 c4_137_47 c4_137_48 c4_137_49 c4_137_50 set community 0:2 route-map calculator permit 36350 match community c4_137_51 c4_137_52 c4_137_53 c4_137_54 c4_137_55 set community 0:2 route-map calculator permit 36351 match community c4_137_56 c4_137_57 c4_137_58 c4_137_59 c4_137_60 set community 0:2 route-map calculator permit 36352 match community c4_137_61 c4_137_62 c4_137_63 c4_137_64 c4_137_65 set community 0:2 route-map calculator permit 36353 match community c4_137_66 c4_137_67 c4_137_68 c3_137_135 c4_138_47 set community 0:2 route-map calculator permit 36354 match community c4_138_48 c4_138_49 c4_138_50 c4_138_51 c4_138_52 set community 0:2 route-map calculator permit 36355 match community c4_138_53 c4_138_54 c4_138_55 c4_138_56 c4_138_57 set community 0:2 route-map calculator permit 36356 match community c4_138_58 c4_138_59 c4_138_60 c4_138_61 c4_138_62 set community 0:2 route-map calculator permit 36357 match community c4_138_63 c4_138_64 c4_138_65 c4_138_66 c4_138_67 set community 0:2 route-map calculator permit 36358 match community c4_138_68 c4_138_69 c3_138_136 c4_139_47 c4_139_48 set community 0:2 route-map calculator permit 36359 match community c4_139_49 c4_139_50 c4_139_51 c4_139_52 c4_139_53 set community 0:2 route-map calculator permit 36360 match community c4_139_54 c4_139_55 c4_139_56 c4_139_57 c4_139_58 set community 0:2 route-map calculator permit 36361 match community c4_139_59 c4_139_60 c4_139_61 c4_139_62 c4_139_63 set community 0:2 route-map calculator permit 36362 match community c4_139_64 c4_139_65 c4_139_66 c4_139_67 c4_139_68 set community 0:2 route-map calculator permit 36363 match community c4_139_69 c3_139_137 c4_140_47 c4_140_48 c4_140_49 set community 0:2 route-map calculator permit 36364 match community c4_140_50 c4_140_51 c4_140_52 c4_140_53 c4_140_54 set community 0:2 route-map calculator permit 36365 match community c4_140_55 c4_140_56 c4_140_57 c4_140_58 c4_140_59 set community 0:2 route-map calculator permit 36366 match community c4_140_60 c4_140_61 c4_140_62 c4_140_63 c4_140_64 set community 0:2 route-map calculator permit 36367 match community c4_140_65 c4_140_66 c4_140_67 c4_140_68 c4_140_69 set community 0:2 route-map calculator permit 36368 match community c4_140_70 c3_140_138 c4_141_48 c4_141_49 c4_141_50 set community 0:2 route-map calculator permit 36369 match community c4_141_51 c4_141_52 c4_141_53 c4_141_54 c4_141_55 set community 0:2 route-map calculator permit 36370 match community c4_141_56 c4_141_57 c4_141_58 c4_141_59 c4_141_60 set community 0:2 route-map calculator permit 36371 match community c4_141_61 c4_141_62 c4_141_63 c4_141_64 c4_141_65 set community 0:2 route-map calculator permit 36372 match community c4_141_66 c4_141_67 c4_141_68 c4_141_69 c4_141_70 set community 0:2 route-map calculator permit 36373 match community c3_141_139 c4_142_48 c4_142_49 c4_142_50 c4_142_51 set community 0:2 route-map calculator permit 36374 match community c4_142_52 c4_142_53 c4_142_54 c4_142_55 c4_142_56 set community 0:2 route-map calculator permit 36375 match community c4_142_57 c4_142_58 c4_142_59 c4_142_60 c4_142_61 set community 0:2 route-map calculator permit 36376 match community c4_142_62 c4_142_63 c4_142_64 c4_142_65 c4_142_66 set community 0:2 route-map calculator permit 36377 match community c4_142_67 c4_142_68 c4_142_69 c4_142_70 c4_142_71 set community 0:2 route-map calculator permit 36378 match community c3_142_140 c4_143_48 c4_143_49 c4_143_50 c4_143_51 set community 0:2 route-map calculator permit 36379 match community c4_143_52 c4_143_53 c4_143_54 c4_143_55 c4_143_56 set community 0:2 route-map calculator permit 36380 match community c4_143_57 c4_143_58 c4_143_59 c4_143_60 c4_143_61 set community 0:2 route-map calculator permit 36381 match community c4_143_62 c4_143_63 c4_143_64 c4_143_65 c4_143_66 set community 0:2 route-map calculator permit 36382 match community c4_143_67 c4_143_68 c4_143_69 c4_143_70 c4_143_71 set community 0:2 route-map calculator permit 36383 match community c3_143_141 c4_144_49 c4_144_50 c4_144_51 c4_144_52 set community 0:2 route-map calculator permit 36384 match community c4_144_53 c4_144_54 c4_144_55 c4_144_56 c4_144_57 set community 0:2 route-map calculator permit 36385 match community c4_144_58 c4_144_59 c4_144_60 c4_144_61 c4_144_62 set community 0:2 route-map calculator permit 36386 match community c4_144_63 c4_144_64 c4_144_65 c4_144_66 c4_144_67 set community 0:2 route-map calculator permit 36387 match community c4_144_68 c4_144_69 c4_144_70 c4_144_71 c4_144_72 set community 0:2 route-map calculator permit 36388 match community c3_144_142 c4_145_49 c4_145_50 c4_145_51 c4_145_52 set community 0:2 route-map calculator permit 36389 match community c4_145_53 c4_145_54 c4_145_55 c4_145_56 c4_145_57 set community 0:2 route-map calculator permit 36390 match community c4_145_58 c4_145_59 c4_145_60 c4_145_61 c4_145_62 set community 0:2 route-map calculator permit 36391 match community c4_145_63 c4_145_64 c4_145_65 c4_145_66 c4_145_67 set community 0:2 route-map calculator permit 36392 match community c4_145_68 c4_145_69 c4_145_70 c4_145_71 c4_145_72 set community 0:2 route-map calculator permit 36393 match community c3_145_143 c4_146_49 c4_146_50 c4_146_51 c4_146_52 set community 0:2 route-map calculator permit 36394 match community c4_146_53 c4_146_54 c4_146_55 c4_146_56 c4_146_57 set community 0:2 route-map calculator permit 36395 match community c4_146_58 c4_146_59 c4_146_60 c4_146_61 c4_146_62 set community 0:2 route-map calculator permit 36396 match community c4_146_63 c4_146_64 c4_146_65 c4_146_66 c4_146_67 set community 0:2 route-map calculator permit 36397 match community c4_146_68 c4_146_69 c4_146_70 c4_146_71 c4_146_72 set community 0:2 route-map calculator permit 36398 match community c4_146_73 c3_146_144 c4_147_50 c4_147_51 c4_147_52 set community 0:2 route-map calculator permit 36399 match community c4_147_53 c4_147_54 c4_147_55 c4_147_56 c4_147_57 set community 0:2 route-map calculator permit 36400 match community c4_147_58 c4_147_59 c4_147_60 c4_147_61 c4_147_62 set community 0:2 route-map calculator permit 36401 match community c4_147_63 c4_147_64 c4_147_65 c4_147_66 c4_147_67 set community 0:2 route-map calculator permit 36402 match community c4_147_68 c4_147_69 c4_147_70 c4_147_71 c4_147_72 set community 0:2 route-map calculator permit 36403 match community c4_147_73 c3_147_145 c4_148_50 c4_148_51 c4_148_52 set community 0:2 route-map calculator permit 36404 match community c4_148_53 c4_148_54 c4_148_55 c4_148_56 c4_148_57 set community 0:2 route-map calculator permit 36405 match community c4_148_58 c4_148_59 c4_148_60 c4_148_61 c4_148_62 set community 0:2 route-map calculator permit 36406 match community c4_148_63 c4_148_64 c4_148_65 c4_148_66 c4_148_67 set community 0:2 route-map calculator permit 36407 match community c4_148_68 c4_148_69 c4_148_70 c4_148_71 c4_148_72 set community 0:2 route-map calculator permit 36408 match community c4_148_73 c4_148_74 c3_148_146 c4_149_50 c4_149_51 set community 0:2 route-map calculator permit 36409 match community c4_149_52 c4_149_53 c4_149_54 c4_149_55 c4_149_56 set community 0:2 route-map calculator permit 36410 match community c4_149_57 c4_149_58 c4_149_59 c4_149_60 c4_149_61 set community 0:2 route-map calculator permit 36411 match community c4_149_62 c4_149_63 c4_149_64 c4_149_65 c4_149_66 set community 0:2 route-map calculator permit 36412 match community c4_149_67 c4_149_68 c4_149_69 c4_149_70 c4_149_71 set community 0:2 route-map calculator permit 36413 match community c4_149_72 c4_149_73 c4_149_74 c3_149_147 c4_150_51 set community 0:2 route-map calculator permit 36414 match community c4_150_52 c4_150_53 c4_150_54 c4_150_55 c4_150_56 set community 0:2 route-map calculator permit 36415 match community c4_150_57 c4_150_58 c4_150_59 c4_150_60 c4_150_61 set community 0:2 route-map calculator permit 36416 match community c4_150_62 c4_150_63 c4_150_64 c4_150_65 c4_150_66 set community 0:2 route-map calculator permit 36417 match community c4_150_67 c4_150_68 c4_150_69 c4_150_70 c4_150_71 set community 0:2 route-map calculator permit 36418 match community c4_150_72 c4_150_73 c4_150_74 c4_150_75 c3_150_148 set community 0:2 route-map calculator permit 36419 match community c4_151_51 c4_151_52 c4_151_53 c4_151_54 c4_151_55 set community 0:2 route-map calculator permit 36420 match community c4_151_56 c4_151_57 c4_151_58 c4_151_59 c4_151_60 set community 0:2 route-map calculator permit 36421 match community c4_151_61 c4_151_62 c4_151_63 c4_151_64 c4_151_65 set community 0:2 route-map calculator permit 36422 match community c4_151_66 c4_151_67 c4_151_68 c4_151_69 c4_151_70 set community 0:2 route-map calculator permit 36423 match community c4_151_71 c4_151_72 c4_151_73 c4_151_74 c4_151_75 set community 0:2 route-map calculator permit 36424 match community c3_151_149 c4_152_51 c4_152_52 c4_152_53 c4_152_54 set community 0:2 route-map calculator permit 36425 match community c4_152_55 c4_152_56 c4_152_57 c4_152_58 c4_152_59 set community 0:2 route-map calculator permit 36426 match community c4_152_60 c4_152_61 c4_152_62 c4_152_63 c4_152_64 set community 0:2 route-map calculator permit 36427 match community c4_152_65 c4_152_66 c4_152_67 c4_152_68 c4_152_69 set community 0:2 route-map calculator permit 36428 match community c4_152_70 c4_152_71 c4_152_72 c4_152_73 c4_152_74 set community 0:2 route-map calculator permit 36429 match community c4_152_75 c4_152_76 c3_152_150 c4_153_52 c4_153_53 set community 0:2 route-map calculator permit 36430 match community c4_153_54 c4_153_55 c4_153_56 c4_153_57 c4_153_58 set community 0:2 route-map calculator permit 36431 match community c4_153_59 c4_153_60 c4_153_61 c4_153_62 c4_153_63 set community 0:2 route-map calculator permit 36432 match community c4_153_64 c4_153_65 c4_153_66 c4_153_67 c4_153_68 set community 0:2 route-map calculator permit 36433 match community c4_153_69 c4_153_70 c4_153_71 c4_153_72 c4_153_73 set community 0:2 route-map calculator permit 36434 match community c4_153_74 c4_153_75 c4_153_76 c3_153_151 c4_154_52 set community 0:2 route-map calculator permit 36435 match community c4_154_53 c4_154_54 c4_154_55 c4_154_56 c4_154_57 set community 0:2 route-map calculator permit 36436 match community c4_154_58 c4_154_59 c4_154_60 c4_154_61 c4_154_62 set community 0:2 route-map calculator permit 36437 match community c4_154_63 c4_154_64 c4_154_65 c4_154_66 c4_154_67 set community 0:2 route-map calculator permit 36438 match community c4_154_68 c4_154_69 c4_154_70 c4_154_71 c4_154_72 set community 0:2 route-map calculator permit 36439 match community c4_154_73 c4_154_74 c4_154_75 c4_154_76 c4_154_77 set community 0:2 route-map calculator permit 36440 match community c3_154_152 c4_155_52 c4_155_53 c4_155_54 c4_155_55 set community 0:2 route-map calculator permit 36441 match community c4_155_56 c4_155_57 c4_155_58 c4_155_59 c4_155_60 set community 0:2 route-map calculator permit 36442 match community c4_155_61 c4_155_62 c4_155_63 c4_155_64 c4_155_65 set community 0:2 route-map calculator permit 36443 match community c4_155_66 c4_155_67 c4_155_68 c4_155_69 c4_155_70 set community 0:2 route-map calculator permit 36444 match community c4_155_71 c4_155_72 c4_155_73 c4_155_74 c4_155_75 set community 0:2 route-map calculator permit 36445 match community c4_155_76 c4_155_77 c3_155_153 c4_156_53 c4_156_54 set community 0:2 route-map calculator permit 36446 match community c4_156_55 c4_156_56 c4_156_57 c4_156_58 c4_156_59 set community 0:2 route-map calculator permit 36447 match community c4_156_60 c4_156_61 c4_156_62 c4_156_63 c4_156_64 set community 0:2 route-map calculator permit 36448 match community c4_156_65 c4_156_66 c4_156_67 c4_156_68 c4_156_69 set community 0:2 route-map calculator permit 36449 match community c4_156_70 c4_156_71 c4_156_72 c4_156_73 c4_156_74 set community 0:2 route-map calculator permit 36450 match community c4_156_75 c4_156_76 c4_156_77 c4_156_78 c3_156_154 set community 0:2 route-map calculator permit 36451 match community c4_157_53 c4_157_54 c4_157_55 c4_157_56 c4_157_57 set community 0:2 route-map calculator permit 36452 match community c4_157_58 c4_157_59 c4_157_60 c4_157_61 c4_157_62 set community 0:2 route-map calculator permit 36453 match community c4_157_63 c4_157_64 c4_157_65 c4_157_66 c4_157_67 set community 0:2 route-map calculator permit 36454 match community c4_157_68 c4_157_69 c4_157_70 c4_157_71 c4_157_72 set community 0:2 route-map calculator permit 36455 match community c4_157_73 c4_157_74 c4_157_75 c4_157_76 c4_157_77 set community 0:2 route-map calculator permit 36456 match community c4_157_78 c3_157_155 c4_158_53 c4_158_54 c4_158_55 set community 0:2 route-map calculator permit 36457 match community c4_158_56 c4_158_57 c4_158_58 c4_158_59 c4_158_60 set community 0:2 route-map calculator permit 36458 match community c4_158_61 c4_158_62 c4_158_63 c4_158_64 c4_158_65 set community 0:2 route-map calculator permit 36459 match community c4_158_66 c4_158_67 c4_158_68 c4_158_69 c4_158_70 set community 0:2 route-map calculator permit 36460 match community c4_158_71 c4_158_72 c4_158_73 c4_158_74 c4_158_75 set community 0:2 route-map calculator permit 36461 match community c4_158_76 c4_158_77 c4_158_78 c4_158_79 c3_158_156 set community 0:2 route-map calculator permit 36462 match community c4_159_54 c4_159_55 c4_159_56 c4_159_57 c4_159_58 set community 0:2 route-map calculator permit 36463 match community c4_159_59 c4_159_60 c4_159_61 c4_159_62 c4_159_63 set community 0:2 route-map calculator permit 36464 match community c4_159_64 c4_159_65 c4_159_66 c4_159_67 c4_159_68 set community 0:2 route-map calculator permit 36465 match community c4_159_69 c4_159_70 c4_159_71 c4_159_72 c4_159_73 set community 0:2 route-map calculator permit 36466 match community c4_159_74 c4_159_75 c4_159_76 c4_159_77 c4_159_78 set community 0:2 route-map calculator permit 36467 match community c4_159_79 c3_159_157 c4_160_54 c4_160_55 c4_160_56 set community 0:2 route-map calculator permit 36468 match community c4_160_57 c4_160_58 c4_160_59 c4_160_60 c4_160_61 set community 0:2 route-map calculator permit 36469 match community c4_160_62 c4_160_63 c4_160_64 c4_160_65 c4_160_66 set community 0:2 route-map calculator permit 36470 match community c4_160_67 c4_160_68 c4_160_69 c4_160_70 c4_160_71 set community 0:2 route-map calculator permit 36471 match community c4_160_72 c4_160_73 c4_160_74 c4_160_75 c4_160_76 set community 0:2 route-map calculator permit 36472 match community c4_160_77 c4_160_78 c4_160_79 c4_160_80 c3_160_158 set community 0:2 route-map calculator permit 36473 match community c4_161_54 c4_161_55 c4_161_56 c4_161_57 c4_161_58 set community 0:2 route-map calculator permit 36474 match community c4_161_59 c4_161_60 c4_161_61 c4_161_62 c4_161_63 set community 0:2 route-map calculator permit 36475 match community c4_161_64 c4_161_65 c4_161_66 c4_161_67 c4_161_68 set community 0:2 route-map calculator permit 36476 match community c4_161_69 c4_161_70 c4_161_71 c4_161_72 c4_161_73 set community 0:2 route-map calculator permit 36477 match community c4_161_74 c4_161_75 c4_161_76 c4_161_77 c4_161_78 set community 0:2 route-map calculator permit 36478 match community c4_161_79 c4_161_80 c3_161_159 c4_162_55 c4_162_56 set community 0:2 route-map calculator permit 36479 match community c4_162_57 c4_162_58 c4_162_59 c4_162_60 c4_162_61 set community 0:2 route-map calculator permit 36480 match community c4_162_62 c4_162_63 c4_162_64 c4_162_65 c4_162_66 set community 0:2 route-map calculator permit 36481 match community c4_162_67 c4_162_68 c4_162_69 c4_162_70 c4_162_71 set community 0:2 route-map calculator permit 36482 match community c4_162_72 c4_162_73 c4_162_74 c4_162_75 c4_162_76 set community 0:2 route-map calculator permit 36483 match community c4_162_77 c4_162_78 c4_162_79 c4_162_80 c4_162_81 set community 0:2 route-map calculator permit 36484 match community c3_162_160 c4_163_55 c4_163_56 c4_163_57 c4_163_58 set community 0:2 route-map calculator permit 36485 match community c4_163_59 c4_163_60 c4_163_61 c4_163_62 c4_163_63 set community 0:2 route-map calculator permit 36486 match community c4_163_64 c4_163_65 c4_163_66 c4_163_67 c4_163_68 set community 0:2 route-map calculator permit 36487 match community c4_163_69 c4_163_70 c4_163_71 c4_163_72 c4_163_73 set community 0:2 route-map calculator permit 36488 match community c4_163_74 c4_163_75 c4_163_76 c4_163_77 c4_163_78 set community 0:2 route-map calculator permit 36489 match community c4_163_79 c4_163_80 c4_163_81 c3_163_161 c4_164_55 set community 0:2 route-map calculator permit 36490 match community c4_164_56 c4_164_57 c4_164_58 c4_164_59 c4_164_60 set community 0:2 route-map calculator permit 36491 match community c4_164_61 c4_164_62 c4_164_63 c4_164_64 c4_164_65 set community 0:2 route-map calculator permit 36492 match community c4_164_66 c4_164_67 c4_164_68 c4_164_69 c4_164_70 set community 0:2 route-map calculator permit 36493 match community c4_164_71 c4_164_72 c4_164_73 c4_164_74 c4_164_75 set community 0:2 route-map calculator permit 36494 match community c4_164_76 c4_164_77 c4_164_78 c4_164_79 c4_164_80 set community 0:2 route-map calculator permit 36495 match community c4_164_81 c4_164_82 c3_164_162 c4_165_56 c4_165_57 set community 0:2 route-map calculator permit 36496 match community c4_165_58 c4_165_59 c4_165_60 c4_165_61 c4_165_62 set community 0:2 route-map calculator permit 36497 match community c4_165_63 c4_165_64 c4_165_65 c4_165_66 c4_165_67 set community 0:2 route-map calculator permit 36498 match community c4_165_68 c4_165_69 c4_165_70 c4_165_71 c4_165_72 set community 0:2 route-map calculator permit 36499 match community c4_165_73 c4_165_74 c4_165_75 c4_165_76 c4_165_77 set community 0:2 route-map calculator permit 36500 match community c4_165_78 c4_165_79 c4_165_80 c4_165_81 c4_165_82 set community 0:2 route-map calculator permit 36501 match community c3_165_163 c4_166_56 c4_166_57 c4_166_58 c4_166_59 set community 0:2 route-map calculator permit 36502 match community c4_166_60 c4_166_61 c4_166_62 c4_166_63 c4_166_64 set community 0:2 route-map calculator permit 36503 match community c4_166_65 c4_166_66 c4_166_67 c4_166_68 c4_166_69 set community 0:2 route-map calculator permit 36504 match community c4_166_70 c4_166_71 c4_166_72 c4_166_73 c4_166_74 set community 0:2 route-map calculator permit 36505 match community c4_166_75 c4_166_76 c4_166_77 c4_166_78 c4_166_79 set community 0:2 route-map calculator permit 36506 match community c4_166_80 c4_166_81 c4_166_82 c4_166_83 c3_166_164 set community 0:2 route-map calculator permit 36507 match community c4_167_56 c4_167_57 c4_167_58 c4_167_59 c4_167_60 set community 0:2 route-map calculator permit 36508 match community c4_167_61 c4_167_62 c4_167_63 c4_167_64 c4_167_65 set community 0:2 route-map calculator permit 36509 match community c4_167_66 c4_167_67 c4_167_68 c4_167_69 c4_167_70 set community 0:2 route-map calculator permit 36510 match community c4_167_71 c4_167_72 c4_167_73 c4_167_74 c4_167_75 set community 0:2 route-map calculator permit 36511 match community c4_167_76 c4_167_77 c4_167_78 c4_167_79 c4_167_80 set community 0:2 route-map calculator permit 36512 match community c4_167_81 c4_167_82 c4_167_83 c3_167_165 c4_168_57 set community 0:2 route-map calculator permit 36513 match community c4_168_58 c4_168_59 c4_168_60 c4_168_61 c4_168_62 set community 0:2 route-map calculator permit 36514 match community c4_168_63 c4_168_64 c4_168_65 c4_168_66 c4_168_67 set community 0:2 route-map calculator permit 36515 match community c4_168_68 c4_168_69 c4_168_70 c4_168_71 c4_168_72 set community 0:2 route-map calculator permit 36516 match community c4_168_73 c4_168_74 c4_168_75 c4_168_76 c4_168_77 set community 0:2 route-map calculator permit 36517 match community c4_168_78 c4_168_79 c4_168_80 c4_168_81 c4_168_82 set community 0:2 route-map calculator permit 36518 match community c4_168_83 c4_168_84 c3_168_166 c4_169_57 c4_169_58 set community 0:2 route-map calculator permit 36519 match community c4_169_59 c4_169_60 c4_169_61 c4_169_62 c4_169_63 set community 0:2 route-map calculator permit 36520 match community c4_169_64 c4_169_65 c4_169_66 c4_169_67 c4_169_68 set community 0:2 route-map calculator permit 36521 match community c4_169_69 c4_169_70 c4_169_71 c4_169_72 c4_169_73 set community 0:2 route-map calculator permit 36522 match community c4_169_74 c4_169_75 c4_169_76 c4_169_77 c4_169_78 set community 0:2 route-map calculator permit 36523 match community c4_169_79 c4_169_80 c4_169_81 c4_169_82 c4_169_83 set community 0:2 route-map calculator permit 36524 match community c4_169_84 c3_169_167 c4_170_57 c4_170_58 c4_170_59 set community 0:2 route-map calculator permit 36525 match community c4_170_60 c4_170_61 c4_170_62 c4_170_63 c4_170_64 set community 0:2 route-map calculator permit 36526 match community c4_170_65 c4_170_66 c4_170_67 c4_170_68 c4_170_69 set community 0:2 route-map calculator permit 36527 match community c4_170_70 c4_170_71 c4_170_72 c4_170_73 c4_170_74 set community 0:2 route-map calculator permit 36528 match community c4_170_75 c4_170_76 c4_170_77 c4_170_78 c4_170_79 set community 0:2 route-map calculator permit 36529 match community c4_170_80 c4_170_81 c4_170_82 c4_170_83 c4_170_84 set community 0:2 route-map calculator permit 36530 match community c4_170_85 c3_170_168 c4_171_58 c4_171_59 c4_171_60 set community 0:2 route-map calculator permit 36531 match community c4_171_61 c4_171_62 c4_171_63 c4_171_64 c4_171_65 set community 0:2 route-map calculator permit 36532 match community c4_171_66 c4_171_67 c4_171_68 c4_171_69 c4_171_70 set community 0:2 route-map calculator permit 36533 match community c4_171_71 c4_171_72 c4_171_73 c4_171_74 c4_171_75 set community 0:2 route-map calculator permit 36534 match community c4_171_76 c4_171_77 c4_171_78 c4_171_79 c4_171_80 set community 0:2 route-map calculator permit 36535 match community c4_171_81 c4_171_82 c4_171_83 c4_171_84 c4_171_85 set community 0:2 route-map calculator permit 36536 match community c3_171_169 c4_172_58 c4_172_59 c4_172_60 c4_172_61 set community 0:2 route-map calculator permit 36537 match community c4_172_62 c4_172_63 c4_172_64 c4_172_65 c4_172_66 set community 0:2 route-map calculator permit 36538 match community c4_172_67 c4_172_68 c4_172_69 c4_172_70 c4_172_71 set community 0:2 route-map calculator permit 36539 match community c4_172_72 c4_172_73 c4_172_74 c4_172_75 c4_172_76 set community 0:2 route-map calculator permit 36540 match community c4_172_77 c4_172_78 c4_172_79 c4_172_80 c4_172_81 set community 0:2 route-map calculator permit 36541 match community c4_172_82 c4_172_83 c4_172_84 c4_172_85 c4_172_86 set community 0:2 route-map calculator permit 36542 match community c3_172_170 c4_173_58 c4_173_59 c4_173_60 c4_173_61 set community 0:2 route-map calculator permit 36543 match community c4_173_62 c4_173_63 c4_173_64 c4_173_65 c4_173_66 set community 0:2 route-map calculator permit 36544 match community c4_173_67 c4_173_68 c4_173_69 c4_173_70 c4_173_71 set community 0:2 route-map calculator permit 36545 match community c4_173_72 c4_173_73 c4_173_74 c4_173_75 c4_173_76 set community 0:2 route-map calculator permit 36546 match community c4_173_77 c4_173_78 c4_173_79 c4_173_80 c4_173_81 set community 0:2 route-map calculator permit 36547 match community c4_173_82 c4_173_83 c4_173_84 c4_173_85 c4_173_86 set community 0:2 route-map calculator permit 36548 match community c3_173_171 c4_174_59 c4_174_60 c4_174_61 c4_174_62 set community 0:2 route-map calculator permit 36549 match community c4_174_63 c4_174_64 c4_174_65 c4_174_66 c4_174_67 set community 0:2 route-map calculator permit 36550 match community c4_174_68 c4_174_69 c4_174_70 c4_174_71 c4_174_72 set community 0:2 route-map calculator permit 36551 match community c4_174_73 c4_174_74 c4_174_75 c4_174_76 c4_174_77 set community 0:2 route-map calculator permit 36552 match community c4_174_78 c4_174_79 c4_174_80 c4_174_81 c4_174_82 set community 0:2 route-map calculator permit 36553 match community c4_174_83 c4_174_84 c4_174_85 c4_174_86 c4_174_87 set community 0:2 route-map calculator permit 36554 match community c3_174_172 c4_175_59 c4_175_60 c4_175_61 c4_175_62 set community 0:2 route-map calculator permit 36555 match community c4_175_63 c4_175_64 c4_175_65 c4_175_66 c4_175_67 set community 0:2 route-map calculator permit 36556 match community c4_175_68 c4_175_69 c4_175_70 c4_175_71 c4_175_72 set community 0:2 route-map calculator permit 36557 match community c4_175_73 c4_175_74 c4_175_75 c4_175_76 c4_175_77 set community 0:2 route-map calculator permit 36558 match community c4_175_78 c4_175_79 c4_175_80 c4_175_81 c4_175_82 set community 0:2 route-map calculator permit 36559 match community c4_175_83 c4_175_84 c4_175_85 c4_175_86 c4_175_87 set community 0:2 route-map calculator permit 36560 match community c3_175_173 c4_176_59 c4_176_60 c4_176_61 c4_176_62 set community 0:2 route-map calculator permit 36561 match community c4_176_63 c4_176_64 c4_176_65 c4_176_66 c4_176_67 set community 0:2 route-map calculator permit 36562 match community c4_176_68 c4_176_69 c4_176_70 c4_176_71 c4_176_72 set community 0:2 route-map calculator permit 36563 match community c4_176_73 c4_176_74 c4_176_75 c4_176_76 c4_176_77 set community 0:2 route-map calculator permit 36564 match community c4_176_78 c4_176_79 c4_176_80 c4_176_81 c4_176_82 set community 0:2 route-map calculator permit 36565 match community c4_176_83 c4_176_84 c4_176_85 c4_176_86 c4_176_87 set community 0:2 route-map calculator permit 36566 match community c4_176_88 c3_176_174 c4_177_60 c4_177_61 c4_177_62 set community 0:2 route-map calculator permit 36567 match community c4_177_63 c4_177_64 c4_177_65 c4_177_66 c4_177_67 set community 0:2 route-map calculator permit 36568 match community c4_177_68 c4_177_69 c4_177_70 c4_177_71 c4_177_72 set community 0:2 route-map calculator permit 36569 match community c4_177_73 c4_177_74 c4_177_75 c4_177_76 c4_177_77 set community 0:2 route-map calculator permit 36570 match community c4_177_78 c4_177_79 c4_177_80 c4_177_81 c4_177_82 set community 0:2 route-map calculator permit 36571 match community c4_177_83 c4_177_84 c4_177_85 c4_177_86 c4_177_87 set community 0:2 route-map calculator permit 36572 match community c4_177_88 c3_177_175 c4_178_60 c4_178_61 c4_178_62 set community 0:2 route-map calculator permit 36573 match community c4_178_63 c4_178_64 c4_178_65 c4_178_66 c4_178_67 set community 0:2 route-map calculator permit 36574 match community c4_178_68 c4_178_69 c4_178_70 c4_178_71 c4_178_72 set community 0:2 route-map calculator permit 36575 match community c4_178_73 c4_178_74 c4_178_75 c4_178_76 c4_178_77 set community 0:2 route-map calculator permit 36576 match community c4_178_78 c4_178_79 c4_178_80 c4_178_81 c4_178_82 set community 0:2 route-map calculator permit 36577 match community c4_178_83 c4_178_84 c4_178_85 c4_178_86 c4_178_87 set community 0:2 route-map calculator permit 36578 match community c4_178_88 c4_178_89 c3_178_176 c4_179_60 c4_179_61 set community 0:2 route-map calculator permit 36579 match community c4_179_62 c4_179_63 c4_179_64 c4_179_65 c4_179_66 set community 0:2 route-map calculator permit 36580 match community c4_179_67 c4_179_68 c4_179_69 c4_179_70 c4_179_71 set community 0:2 route-map calculator permit 36581 match community c4_179_72 c4_179_73 c4_179_74 c4_179_75 c4_179_76 set community 0:2 route-map calculator permit 36582 match community c4_179_77 c4_179_78 c4_179_79 c4_179_80 c4_179_81 set community 0:2 route-map calculator permit 36583 match community c4_179_82 c4_179_83 c4_179_84 c4_179_85 c4_179_86 set community 0:2 route-map calculator permit 36584 match community c4_179_87 c4_179_88 c4_179_89 c3_179_177 c4_180_61 set community 0:2 route-map calculator permit 36585 match community c4_180_62 c4_180_63 c4_180_64 c4_180_65 c4_180_66 set community 0:2 route-map calculator permit 36586 match community c4_180_67 c4_180_68 c4_180_69 c4_180_70 c4_180_71 set community 0:2 route-map calculator permit 36587 match community c4_180_72 c4_180_73 c4_180_74 c4_180_75 c4_180_76 set community 0:2 route-map calculator permit 36588 match community c4_180_77 c4_180_78 c4_180_79 c4_180_80 c4_180_81 set community 0:2 route-map calculator permit 36589 match community c4_180_82 c4_180_83 c4_180_84 c4_180_85 c4_180_86 set community 0:2 route-map calculator permit 36590 match community c4_180_87 c4_180_88 c4_180_89 c4_180_90 c3_180_178 set community 0:2 route-map calculator permit 36591 match community c4_181_61 c4_181_62 c4_181_63 c4_181_64 c4_181_65 set community 0:2 route-map calculator permit 36592 match community c4_181_66 c4_181_67 c4_181_68 c4_181_69 c4_181_70 set community 0:2 route-map calculator permit 36593 match community c4_181_71 c4_181_72 c4_181_73 c4_181_74 c4_181_75 set community 0:2 route-map calculator permit 36594 match community c4_181_76 c4_181_77 c4_181_78 c4_181_79 c4_181_80 set community 0:2 route-map calculator permit 36595 match community c4_181_81 c4_181_82 c4_181_83 c4_181_84 c4_181_85 set community 0:2 route-map calculator permit 36596 match community c4_181_86 c4_181_87 c4_181_88 c4_181_89 c4_181_90 set community 0:2 route-map calculator permit 36597 match community c3_181_179 c4_182_61 c4_182_62 c4_182_63 c4_182_64 set community 0:2 route-map calculator permit 36598 match community c4_182_65 c4_182_66 c4_182_67 c4_182_68 c4_182_69 set community 0:2 route-map calculator permit 36599 match community c4_182_70 c4_182_71 c4_182_72 c4_182_73 c4_182_74 set community 0:2 route-map calculator permit 36600 match community c4_182_75 c4_182_76 c4_182_77 c4_182_78 c4_182_79 set community 0:2 route-map calculator permit 36601 match community c4_182_80 c4_182_81 c4_182_82 c4_182_83 c4_182_84 set community 0:2 route-map calculator permit 36602 match community c4_182_85 c4_182_86 c4_182_87 c4_182_88 c4_182_89 set community 0:2 route-map calculator permit 36603 match community c4_182_90 c4_182_91 c3_182_180 c4_183_62 c4_183_63 set community 0:2 route-map calculator permit 36604 match community c4_183_64 c4_183_65 c4_183_66 c4_183_67 c4_183_68 set community 0:2 route-map calculator permit 36605 match community c4_183_69 c4_183_70 c4_183_71 c4_183_72 c4_183_73 set community 0:2 route-map calculator permit 36606 match community c4_183_74 c4_183_75 c4_183_76 c4_183_77 c4_183_78 set community 0:2 route-map calculator permit 36607 match community c4_183_79 c4_183_80 c4_183_81 c4_183_82 c4_183_83 set community 0:2 route-map calculator permit 36608 match community c4_183_84 c4_183_85 c4_183_86 c4_183_87 c4_183_88 set community 0:2 route-map calculator permit 36609 match community c4_183_89 c4_183_90 c4_183_91 c3_183_181 c4_184_62 set community 0:2 route-map calculator permit 36610 match community c4_184_63 c4_184_64 c4_184_65 c4_184_66 c4_184_67 set community 0:2 route-map calculator permit 36611 match community c4_184_68 c4_184_69 c4_184_70 c4_184_71 c4_184_72 set community 0:2 route-map calculator permit 36612 match community c4_184_73 c4_184_74 c4_184_75 c4_184_76 c4_184_77 set community 0:2 route-map calculator permit 36613 match community c4_184_78 c4_184_79 c4_184_80 c4_184_81 c4_184_82 set community 0:2 route-map calculator permit 36614 match community c4_184_83 c4_184_84 c4_184_85 c4_184_86 c4_184_87 set community 0:2 route-map calculator permit 36615 match community c4_184_88 c4_184_89 c4_184_90 c4_184_91 c4_184_92 set community 0:2 route-map calculator permit 36616 match community c3_184_182 c4_185_62 c4_185_63 c4_185_64 c4_185_65 set community 0:2 route-map calculator permit 36617 match community c4_185_66 c4_185_67 c4_185_68 c4_185_69 c4_185_70 set community 0:2 route-map calculator permit 36618 match community c4_185_71 c4_185_72 c4_185_73 c4_185_74 c4_185_75 set community 0:2 route-map calculator permit 36619 match community c4_185_76 c4_185_77 c4_185_78 c4_185_79 c4_185_80 set community 0:2 route-map calculator permit 36620 match community c4_185_81 c4_185_82 c4_185_83 c4_185_84 c4_185_85 set community 0:2 route-map calculator permit 36621 match community c4_185_86 c4_185_87 c4_185_88 c4_185_89 c4_185_90 set community 0:2 route-map calculator permit 36622 match community c4_185_91 c4_185_92 c3_185_183 c4_186_63 c4_186_64 set community 0:2 route-map calculator permit 36623 match community c4_186_65 c4_186_66 c4_186_67 c4_186_68 c4_186_69 set community 0:2 route-map calculator permit 36624 match community c4_186_70 c4_186_71 c4_186_72 c4_186_73 c4_186_74 set community 0:2 route-map calculator permit 36625 match community c4_186_75 c4_186_76 c4_186_77 c4_186_78 c4_186_79 set community 0:2 route-map calculator permit 36626 match community c4_186_80 c4_186_81 c4_186_82 c4_186_83 c4_186_84 set community 0:2 route-map calculator permit 36627 match community c4_186_85 c4_186_86 c4_186_87 c4_186_88 c4_186_89 set community 0:2 route-map calculator permit 36628 match community c4_186_90 c4_186_91 c4_186_92 c4_186_93 c3_186_184 set community 0:2 route-map calculator permit 36629 match community c4_187_63 c4_187_64 c4_187_65 c4_187_66 c4_187_67 set community 0:2 route-map calculator permit 36630 match community c4_187_68 c4_187_69 c4_187_70 c4_187_71 c4_187_72 set community 0:2 route-map calculator permit 36631 match community c4_187_73 c4_187_74 c4_187_75 c4_187_76 c4_187_77 set community 0:2 route-map calculator permit 36632 match community c4_187_78 c4_187_79 c4_187_80 c4_187_81 c4_187_82 set community 0:2 route-map calculator permit 36633 match community c4_187_83 c4_187_84 c4_187_85 c4_187_86 c4_187_87 set community 0:2 route-map calculator permit 36634 match community c4_187_88 c4_187_89 c4_187_90 c4_187_91 c4_187_92 set community 0:2 route-map calculator permit 36635 match community c4_187_93 c3_187_185 c4_188_63 c4_188_64 c4_188_65 set community 0:2 route-map calculator permit 36636 match community c4_188_66 c4_188_67 c4_188_68 c4_188_69 c4_188_70 set community 0:2 route-map calculator permit 36637 match community c4_188_71 c4_188_72 c4_188_73 c4_188_74 c4_188_75 set community 0:2 route-map calculator permit 36638 match community c4_188_76 c4_188_77 c4_188_78 c4_188_79 c4_188_80 set community 0:2 route-map calculator permit 36639 match community c4_188_81 c4_188_82 c4_188_83 c4_188_84 c4_188_85 set community 0:2 route-map calculator permit 36640 match community c4_188_86 c4_188_87 c4_188_88 c4_188_89 c4_188_90 set community 0:2 route-map calculator permit 36641 match community c4_188_91 c4_188_92 c4_188_93 c4_188_94 c3_188_186 set community 0:2 route-map calculator permit 36642 match community c4_189_64 c4_189_65 c4_189_66 c4_189_67 c4_189_68 set community 0:2 route-map calculator permit 36643 match community c4_189_69 c4_189_70 c4_189_71 c4_189_72 c4_189_73 set community 0:2 route-map calculator permit 36644 match community c4_189_74 c4_189_75 c4_189_76 c4_189_77 c4_189_78 set community 0:2 route-map calculator permit 36645 match community c4_189_79 c4_189_80 c4_189_81 c4_189_82 c4_189_83 set community 0:2 route-map calculator permit 36646 match community c4_189_84 c4_189_85 c4_189_86 c4_189_87 c4_189_88 set community 0:2 route-map calculator permit 36647 match community c4_189_89 c4_189_90 c4_189_91 c4_189_92 c4_189_93 set community 0:2 route-map calculator permit 36648 match community c4_189_94 c3_189_187 c4_190_64 c4_190_65 c4_190_66 set community 0:2 route-map calculator permit 36649 match community c4_190_67 c4_190_68 c4_190_69 c4_190_70 c4_190_71 set community 0:2 route-map calculator permit 36650 match community c4_190_72 c4_190_73 c4_190_74 c4_190_75 c4_190_76 set community 0:2 route-map calculator permit 36651 match community c4_190_77 c4_190_78 c4_190_79 c4_190_80 c4_190_81 set community 0:2 route-map calculator permit 36652 match community c4_190_82 c4_190_83 c4_190_84 c4_190_85 c4_190_86 set community 0:2 route-map calculator permit 36653 match community c4_190_87 c4_190_88 c4_190_89 c4_190_90 c4_190_91 set community 0:2 route-map calculator permit 36654 match community c4_190_92 c4_190_93 c4_190_94 c4_190_95 c3_190_188 set community 0:2 route-map calculator permit 36655 match community c4_191_64 c4_191_65 c4_191_66 c4_191_67 c4_191_68 set community 0:2 route-map calculator permit 36656 match community c4_191_69 c4_191_70 c4_191_71 c4_191_72 c4_191_73 set community 0:2 route-map calculator permit 36657 match community c4_191_74 c4_191_75 c4_191_76 c4_191_77 c4_191_78 set community 0:2 route-map calculator permit 36658 match community c4_191_79 c4_191_80 c4_191_81 c4_191_82 c4_191_83 set community 0:2 route-map calculator permit 36659 match community c4_191_84 c4_191_85 c4_191_86 c4_191_87 c4_191_88 set community 0:2 route-map calculator permit 36660 match community c4_191_89 c4_191_90 c4_191_91 c4_191_92 c4_191_93 set community 0:2 route-map calculator permit 36661 match community c4_191_94 c4_191_95 c3_191_189 c4_192_65 c4_192_66 set community 0:2 route-map calculator permit 36662 match community c4_192_67 c4_192_68 c4_192_69 c4_192_70 c4_192_71 set community 0:2 route-map calculator permit 36663 match community c4_192_72 c4_192_73 c4_192_74 c4_192_75 c4_192_76 set community 0:2 route-map calculator permit 36664 match community c4_192_77 c4_192_78 c4_192_79 c4_192_80 c4_192_81 set community 0:2 route-map calculator permit 36665 match community c4_192_82 c4_192_83 c4_192_84 c4_192_85 c4_192_86 set community 0:2 route-map calculator permit 36666 match community c4_192_87 c4_192_88 c4_192_89 c4_192_90 c4_192_91 set community 0:2 route-map calculator permit 36667 match community c4_192_92 c4_192_93 c4_192_94 c4_192_95 c4_192_96 set community 0:2 route-map calculator permit 36668 match community c3_192_190 c4_193_65 c4_193_66 c4_193_67 c4_193_68 set community 0:2 route-map calculator permit 36669 match community c4_193_69 c4_193_70 c4_193_71 c4_193_72 c4_193_73 set community 0:2 route-map calculator permit 36670 match community c4_193_74 c4_193_75 c4_193_76 c4_193_77 c4_193_78 set community 0:2 route-map calculator permit 36671 match community c4_193_79 c4_193_80 c4_193_81 c4_193_82 c4_193_83 set community 0:2 route-map calculator permit 36672 match community c4_193_84 c4_193_85 c4_193_86 c4_193_87 c4_193_88 set community 0:2 route-map calculator permit 36673 match community c4_193_89 c4_193_90 c4_193_91 c4_193_92 c4_193_93 set community 0:2 route-map calculator permit 36674 match community c4_193_94 c4_193_95 c4_193_96 c3_193_191 c4_194_65 set community 0:2 route-map calculator permit 36675 match community c4_194_66 c4_194_67 c4_194_68 c4_194_69 c4_194_70 set community 0:2 route-map calculator permit 36676 match community c4_194_71 c4_194_72 c4_194_73 c4_194_74 c4_194_75 set community 0:2 route-map calculator permit 36677 match community c4_194_76 c4_194_77 c4_194_78 c4_194_79 c4_194_80 set community 0:2 route-map calculator permit 36678 match community c4_194_81 c4_194_82 c4_194_83 c4_194_84 c4_194_85 set community 0:2 route-map calculator permit 36679 match community c4_194_86 c4_194_87 c4_194_88 c4_194_89 c4_194_90 set community 0:2 route-map calculator permit 36680 match community c4_194_91 c4_194_92 c4_194_93 c4_194_94 c4_194_95 set community 0:2 route-map calculator permit 36681 match community c4_194_96 c4_194_97 c3_194_192 c4_195_66 c4_195_67 set community 0:2 route-map calculator permit 36682 match community c4_195_68 c4_195_69 c4_195_70 c4_195_71 c4_195_72 set community 0:2 route-map calculator permit 36683 match community c4_195_73 c4_195_74 c4_195_75 c4_195_76 c4_195_77 set community 0:2 route-map calculator permit 36684 match community c4_195_78 c4_195_79 c4_195_80 c4_195_81 c4_195_82 set community 0:2 route-map calculator permit 36685 match community c4_195_83 c4_195_84 c4_195_85 c4_195_86 c4_195_87 set community 0:2 route-map calculator permit 36686 match community c4_195_88 c4_195_89 c4_195_90 c4_195_91 c4_195_92 set community 0:2 route-map calculator permit 36687 match community c4_195_93 c4_195_94 c4_195_95 c4_195_96 c4_195_97 set community 0:2 route-map calculator permit 36688 match community c3_195_193 c4_196_66 c4_196_67 c4_196_68 c4_196_69 set community 0:2 route-map calculator permit 36689 match community c4_196_70 c4_196_71 c4_196_72 c4_196_73 c4_196_74 set community 0:2 route-map calculator permit 36690 match community c4_196_75 c4_196_76 c4_196_77 c4_196_78 c4_196_79 set community 0:2 route-map calculator permit 36691 match community c4_196_80 c4_196_81 c4_196_82 c4_196_83 c4_196_84 set community 0:2 route-map calculator permit 36692 match community c4_196_85 c4_196_86 c4_196_87 c4_196_88 c4_196_89 set community 0:2 route-map calculator permit 36693 match community c4_196_90 c4_196_91 c4_196_92 c4_196_93 c4_196_94 set community 0:2 route-map calculator permit 36694 match community c4_196_95 c4_196_96 c4_196_97 c4_196_98 c3_196_194 set community 0:2 route-map calculator permit 36695 match community c4_197_66 c4_197_67 c4_197_68 c4_197_69 c4_197_70 set community 0:2 route-map calculator permit 36696 match community c4_197_71 c4_197_72 c4_197_73 c4_197_74 c4_197_75 set community 0:2 route-map calculator permit 36697 match community c4_197_76 c4_197_77 c4_197_78 c4_197_79 c4_197_80 set community 0:2 route-map calculator permit 36698 match community c4_197_81 c4_197_82 c4_197_83 c4_197_84 c4_197_85 set community 0:2 route-map calculator permit 36699 match community c4_197_86 c4_197_87 c4_197_88 c4_197_89 c4_197_90 set community 0:2 route-map calculator permit 36700 match community c4_197_91 c4_197_92 c4_197_93 c4_197_94 c4_197_95 set community 0:2 route-map calculator permit 36701 match community c4_197_96 c4_197_97 c4_197_98 c3_197_195 c4_198_67 set community 0:2 route-map calculator permit 36702 match community c4_198_68 c4_198_69 c4_198_70 c4_198_71 c4_198_72 set community 0:2 route-map calculator permit 36703 match community c4_198_73 c4_198_74 c4_198_75 c4_198_76 c4_198_77 set community 0:2 route-map calculator permit 36704 match community c4_198_78 c4_198_79 c4_198_80 c4_198_81 c4_198_82 set community 0:2 route-map calculator permit 36705 match community c4_198_83 c4_198_84 c4_198_85 c4_198_86 c4_198_87 set community 0:2 route-map calculator permit 36706 match community c4_198_88 c4_198_89 c4_198_90 c4_198_91 c4_198_92 set community 0:2 route-map calculator permit 36707 match community c4_198_93 c4_198_94 c4_198_95 c4_198_96 c4_198_97 set community 0:2 route-map calculator permit 36708 match community c4_198_98 c4_198_99 c3_198_196 c4_199_67 c4_199_68 set community 0:2 route-map calculator permit 36709 match community c4_199_69 c4_199_70 c4_199_71 c4_199_72 c4_199_73 set community 0:2 route-map calculator permit 36710 match community c4_199_74 c4_199_75 c4_199_76 c4_199_77 c4_199_78 set community 0:2 route-map calculator permit 36711 match community c4_199_79 c4_199_80 c4_199_81 c4_199_82 c4_199_83 set community 0:2 route-map calculator permit 36712 match community c4_199_84 c4_199_85 c4_199_86 c4_199_87 c4_199_88 set community 0:2 route-map calculator permit 36713 match community c4_199_89 c4_199_90 c4_199_91 c4_199_92 c4_199_93 set community 0:2 route-map calculator permit 36714 match community c4_199_94 c4_199_95 c4_199_96 c4_199_97 c4_199_98 set community 0:2 route-map calculator permit 36715 match community c4_199_99 c3_199_197 c4_200_67 c4_200_68 c4_200_69 set community 0:2 route-map calculator permit 36716 match community c4_200_70 c4_200_71 c4_200_72 c4_200_73 c4_200_74 set community 0:2 route-map calculator permit 36717 match community c4_200_75 c4_200_76 c4_200_77 c4_200_78 c4_200_79 set community 0:2 route-map calculator permit 36718 match community c4_200_80 c4_200_81 c4_200_82 c4_200_83 c4_200_84 set community 0:2 route-map calculator permit 36719 match community c4_200_85 c4_200_86 c4_200_87 c4_200_88 c4_200_89 set community 0:2 route-map calculator permit 36720 match community c4_200_90 c4_200_91 c4_200_92 c4_200_93 c4_200_94 set community 0:2 route-map calculator permit 36721 match community c4_200_95 c4_200_96 c4_200_97 c4_200_98 c4_200_99 set community 0:2 route-map calculator permit 36722 match community c4_200_100 c3_200_198 c4_201_68 c4_201_69 c4_201_70 set community 0:2 route-map calculator permit 36723 match community c4_201_71 c4_201_72 c4_201_73 c4_201_74 c4_201_75 set community 0:2 route-map calculator permit 36724 match community c4_201_76 c4_201_77 c4_201_78 c4_201_79 c4_201_80 set community 0:2 route-map calculator permit 36725 match community c4_201_81 c4_201_82 c4_201_83 c4_201_84 c4_201_85 set community 0:2 route-map calculator permit 36726 match community c4_201_86 c4_201_87 c4_201_88 c4_201_89 c4_201_90 set community 0:2 route-map calculator permit 36727 match community c4_201_91 c4_201_92 c4_201_93 c4_201_94 c4_201_95 set community 0:2 route-map calculator permit 36728 match community c4_201_96 c4_201_97 c4_201_98 c4_201_99 c4_201_100 set community 0:2 route-map calculator permit 36729 match community c3_201_199 c4_202_68 c4_202_69 c4_202_70 c4_202_71 set community 0:2 route-map calculator permit 36730 match community c4_202_72 c4_202_73 c4_202_74 c4_202_75 c4_202_76 set community 0:2 route-map calculator permit 36731 match community c4_202_77 c4_202_78 c4_202_79 c4_202_80 c4_202_81 set community 0:2 route-map calculator permit 36732 match community c4_202_82 c4_202_83 c4_202_84 c4_202_85 c4_202_86 set community 0:2 route-map calculator permit 36733 match community c4_202_87 c4_202_88 c4_202_89 c4_202_90 c4_202_91 set community 0:2 route-map calculator permit 36734 match community c4_202_92 c4_202_93 c4_202_94 c4_202_95 c4_202_96 set community 0:2 route-map calculator permit 36735 match community c4_202_97 c4_202_98 c4_202_99 c4_202_100 c4_202_101 set community 0:2 route-map calculator permit 36736 match community c3_202_200 c4_203_68 c4_203_69 c4_203_70 c4_203_71 set community 0:2 route-map calculator permit 36737 match community c4_203_72 c4_203_73 c4_203_74 c4_203_75 c4_203_76 set community 0:2 route-map calculator permit 36738 match community c4_203_77 c4_203_78 c4_203_79 c4_203_80 c4_203_81 set community 0:2 route-map calculator permit 36739 match community c4_203_82 c4_203_83 c4_203_84 c4_203_85 c4_203_86 set community 0:2 route-map calculator permit 36740 match community c4_203_87 c4_203_88 c4_203_89 c4_203_90 c4_203_91 set community 0:2 route-map calculator permit 36741 match community c4_203_92 c4_203_93 c4_203_94 c4_203_95 c4_203_96 set community 0:2 route-map calculator permit 36742 match community c4_203_97 c4_203_98 c4_203_99 c4_203_100 c4_203_101 set community 0:2 route-map calculator permit 36743 match community c3_203_201 c4_204_69 c4_204_70 c4_204_71 c4_204_72 set community 0:2 route-map calculator permit 36744 match community c4_204_73 c4_204_74 c4_204_75 c4_204_76 c4_204_77 set community 0:2 route-map calculator permit 36745 match community c4_204_78 c4_204_79 c4_204_80 c4_204_81 c4_204_82 set community 0:2 route-map calculator permit 36746 match community c4_204_83 c4_204_84 c4_204_85 c4_204_86 c4_204_87 set community 0:2 route-map calculator permit 36747 match community c4_204_88 c4_204_89 c4_204_90 c4_204_91 c4_204_92 set community 0:2 route-map calculator permit 36748 match community c4_204_93 c4_204_94 c4_204_95 c4_204_96 c4_204_97 set community 0:2 route-map calculator permit 36749 match community c4_204_98 c4_204_99 c4_204_100 c4_204_101 c4_204_102 set community 0:2 route-map calculator permit 36750 match community c3_204_202 c4_205_69 c4_205_70 c4_205_71 c4_205_72 set community 0:2 route-map calculator permit 36751 match community c4_205_73 c4_205_74 c4_205_75 c4_205_76 c4_205_77 set community 0:2 route-map calculator permit 36752 match community c4_205_78 c4_205_79 c4_205_80 c4_205_81 c4_205_82 set community 0:2 route-map calculator permit 36753 match community c4_205_83 c4_205_84 c4_205_85 c4_205_86 c4_205_87 set community 0:2 route-map calculator permit 36754 match community c4_205_88 c4_205_89 c4_205_90 c4_205_91 c4_205_92 set community 0:2 route-map calculator permit 36755 match community c4_205_93 c4_205_94 c4_205_95 c4_205_96 c4_205_97 set community 0:2 route-map calculator permit 36756 match community c4_205_98 c4_205_99 c4_205_100 c4_205_101 c4_205_102 set community 0:2 route-map calculator permit 36757 match community c3_205_203 c4_206_69 c4_206_70 c4_206_71 c4_206_72 set community 0:2 route-map calculator permit 36758 match community c4_206_73 c4_206_74 c4_206_75 c4_206_76 c4_206_77 set community 0:2 route-map calculator permit 36759 match community c4_206_78 c4_206_79 c4_206_80 c4_206_81 c4_206_82 set community 0:2 route-map calculator permit 36760 match community c4_206_83 c4_206_84 c4_206_85 c4_206_86 c4_206_87 set community 0:2 route-map calculator permit 36761 match community c4_206_88 c4_206_89 c4_206_90 c4_206_91 c4_206_92 set community 0:2 route-map calculator permit 36762 match community c4_206_93 c4_206_94 c4_206_95 c4_206_96 c4_206_97 set community 0:2 route-map calculator permit 36763 match community c4_206_98 c4_206_99 c4_206_100 c4_206_101 c4_206_102 set community 0:2 route-map calculator permit 36764 match community c4_206_103 c3_206_204 c4_207_70 c4_207_71 c4_207_72 set community 0:2 route-map calculator permit 36765 match community c4_207_73 c4_207_74 c4_207_75 c4_207_76 c4_207_77 set community 0:2 route-map calculator permit 36766 match community c4_207_78 c4_207_79 c4_207_80 c4_207_81 c4_207_82 set community 0:2 route-map calculator permit 36767 match community c4_207_83 c4_207_84 c4_207_85 c4_207_86 c4_207_87 set community 0:2 route-map calculator permit 36768 match community c4_207_88 c4_207_89 c4_207_90 c4_207_91 c4_207_92 set community 0:2 route-map calculator permit 36769 match community c4_207_93 c4_207_94 c4_207_95 c4_207_96 c4_207_97 set community 0:2 route-map calculator permit 36770 match community c4_207_98 c4_207_99 c4_207_100 c4_207_101 c4_207_102 set community 0:2 route-map calculator permit 36771 match community c4_207_103 c3_207_205 c4_208_70 c4_208_71 c4_208_72 set community 0:2 route-map calculator permit 36772 match community c4_208_73 c4_208_74 c4_208_75 c4_208_76 c4_208_77 set community 0:2 route-map calculator permit 36773 match community c4_208_78 c4_208_79 c4_208_80 c4_208_81 c4_208_82 set community 0:2 route-map calculator permit 36774 match community c4_208_83 c4_208_84 c4_208_85 c4_208_86 c4_208_87 set community 0:2 route-map calculator permit 36775 match community c4_208_88 c4_208_89 c4_208_90 c4_208_91 c4_208_92 set community 0:2 route-map calculator permit 36776 match community c4_208_93 c4_208_94 c4_208_95 c4_208_96 c4_208_97 set community 0:2 route-map calculator permit 36777 match community c4_208_98 c4_208_99 c4_208_100 c4_208_101 c4_208_102 set community 0:2 route-map calculator permit 36778 match community c4_208_103 c4_208_104 c3_208_206 c4_209_70 c4_209_71 set community 0:2 route-map calculator permit 36779 match community c4_209_72 c4_209_73 c4_209_74 c4_209_75 c4_209_76 set community 0:2 route-map calculator permit 36780 match community c4_209_77 c4_209_78 c4_209_79 c4_209_80 c4_209_81 set community 0:2 route-map calculator permit 36781 match community c4_209_82 c4_209_83 c4_209_84 c4_209_85 c4_209_86 set community 0:2 route-map calculator permit 36782 match community c4_209_87 c4_209_88 c4_209_89 c4_209_90 c4_209_91 set community 0:2 route-map calculator permit 36783 match community c4_209_92 c4_209_93 c4_209_94 c4_209_95 c4_209_96 set community 0:2 route-map calculator permit 36784 match community c4_209_97 c4_209_98 c4_209_99 c4_209_100 c4_209_101 set community 0:2 route-map calculator permit 36785 match community c4_209_102 c4_209_103 c4_209_104 c3_209_207 c4_210_71 set community 0:2 route-map calculator permit 36786 match community c4_210_72 c4_210_73 c4_210_74 c4_210_75 c4_210_76 set community 0:2 route-map calculator permit 36787 match community c4_210_77 c4_210_78 c4_210_79 c4_210_80 c4_210_81 set community 0:2 route-map calculator permit 36788 match community c4_210_82 c4_210_83 c4_210_84 c4_210_85 c4_210_86 set community 0:2 route-map calculator permit 36789 match community c4_210_87 c4_210_88 c4_210_89 c4_210_90 c4_210_91 set community 0:2 route-map calculator permit 36790 match community c4_210_92 c4_210_93 c4_210_94 c4_210_95 c4_210_96 set community 0:2 route-map calculator permit 36791 match community c4_210_97 c4_210_98 c4_210_99 c4_210_100 c4_210_101 set community 0:2 route-map calculator permit 36792 match community c4_210_102 c4_210_103 c4_210_104 c4_210_105 c3_210_208 set community 0:2 route-map calculator permit 36793 match community c4_211_71 c4_211_72 c4_211_73 c4_211_74 c4_211_75 set community 0:2 route-map calculator permit 36794 match community c4_211_76 c4_211_77 c4_211_78 c4_211_79 c4_211_80 set community 0:2 route-map calculator permit 36795 match community c4_211_81 c4_211_82 c4_211_83 c4_211_84 c4_211_85 set community 0:2 route-map calculator permit 36796 match community c4_211_86 c4_211_87 c4_211_88 c4_211_89 c4_211_90 set community 0:2 route-map calculator permit 36797 match community c4_211_91 c4_211_92 c4_211_93 c4_211_94 c4_211_95 set community 0:2 route-map calculator permit 36798 match community c4_211_96 c4_211_97 c4_211_98 c4_211_99 c4_211_100 set community 0:2 route-map calculator permit 36799 match community c4_211_101 c4_211_102 c4_211_103 c4_211_104 c4_211_105 set community 0:2 route-map calculator permit 36800 match community c3_211_209 c4_212_71 c4_212_72 c4_212_73 c4_212_74 set community 0:2 route-map calculator permit 36801 match community c4_212_75 c4_212_76 c4_212_77 c4_212_78 c4_212_79 set community 0:2 route-map calculator permit 36802 match community c4_212_80 c4_212_81 c4_212_82 c4_212_83 c4_212_84 set community 0:2 route-map calculator permit 36803 match community c4_212_85 c4_212_86 c4_212_87 c4_212_88 c4_212_89 set community 0:2 route-map calculator permit 36804 match community c4_212_90 c4_212_91 c4_212_92 c4_212_93 c4_212_94 set community 0:2 route-map calculator permit 36805 match community c4_212_95 c4_212_96 c4_212_97 c4_212_98 c4_212_99 set community 0:2 route-map calculator permit 36806 match community c4_212_100 c4_212_101 c4_212_102 c4_212_103 c4_212_104 set community 0:2 route-map calculator permit 36807 match community c4_212_105 c4_212_106 c3_212_210 c4_213_72 c4_213_73 set community 0:2 route-map calculator permit 36808 match community c4_213_74 c4_213_75 c4_213_76 c4_213_77 c4_213_78 set community 0:2 route-map calculator permit 36809 match community c4_213_79 c4_213_80 c4_213_81 c4_213_82 c4_213_83 set community 0:2 route-map calculator permit 36810 match community c4_213_84 c4_213_85 c4_213_86 c4_213_87 c4_213_88 set community 0:2 route-map calculator permit 36811 match community c4_213_89 c4_213_90 c4_213_91 c4_213_92 c4_213_93 set community 0:2 route-map calculator permit 36812 match community c4_213_94 c4_213_95 c4_213_96 c4_213_97 c4_213_98 set community 0:2 route-map calculator permit 36813 match community c4_213_99 c4_213_100 c4_213_101 c4_213_102 c4_213_103 set community 0:2 route-map calculator permit 36814 match community c4_213_104 c4_213_105 c4_213_106 c3_213_211 c4_214_72 set community 0:2 route-map calculator permit 36815 match community c4_214_73 c4_214_74 c4_214_75 c4_214_76 c4_214_77 set community 0:2 route-map calculator permit 36816 match community c4_214_78 c4_214_79 c4_214_80 c4_214_81 c4_214_82 set community 0:2 route-map calculator permit 36817 match community c4_214_83 c4_214_84 c4_214_85 c4_214_86 c4_214_87 set community 0:2 route-map calculator permit 36818 match community c4_214_88 c4_214_89 c4_214_90 c4_214_91 c4_214_92 set community 0:2 route-map calculator permit 36819 match community c4_214_93 c4_214_94 c4_214_95 c4_214_96 c4_214_97 set community 0:2 route-map calculator permit 36820 match community c4_214_98 c4_214_99 c4_214_100 c4_214_101 c4_214_102 set community 0:2 route-map calculator permit 36821 match community c4_214_103 c4_214_104 c4_214_105 c4_214_106 c4_214_107 set community 0:2 route-map calculator permit 36822 match community c3_214_212 c4_215_72 c4_215_73 c4_215_74 c4_215_75 set community 0:2 route-map calculator permit 36823 match community c4_215_76 c4_215_77 c4_215_78 c4_215_79 c4_215_80 set community 0:2 route-map calculator permit 36824 match community c4_215_81 c4_215_82 c4_215_83 c4_215_84 c4_215_85 set community 0:2 route-map calculator permit 36825 match community c4_215_86 c4_215_87 c4_215_88 c4_215_89 c4_215_90 set community 0:2 route-map calculator permit 36826 match community c4_215_91 c4_215_92 c4_215_93 c4_215_94 c4_215_95 set community 0:2 route-map calculator permit 36827 match community c4_215_96 c4_215_97 c4_215_98 c4_215_99 c4_215_100 set community 0:2 route-map calculator permit 36828 match community c4_215_101 c4_215_102 c4_215_103 c4_215_104 c4_215_105 set community 0:2 route-map calculator permit 36829 match community c4_215_106 c4_215_107 c3_215_213 c4_216_73 c4_216_74 set community 0:2 route-map calculator permit 36830 match community c4_216_75 c4_216_76 c4_216_77 c4_216_78 c4_216_79 set community 0:2 route-map calculator permit 36831 match community c4_216_80 c4_216_81 c4_216_82 c4_216_83 c4_216_84 set community 0:2 route-map calculator permit 36832 match community c4_216_85 c4_216_86 c4_216_87 c4_216_88 c4_216_89 set community 0:2 route-map calculator permit 36833 match community c4_216_90 c4_216_91 c4_216_92 c4_216_93 c4_216_94 set community 0:2 route-map calculator permit 36834 match community c4_216_95 c4_216_96 c4_216_97 c4_216_98 c4_216_99 set community 0:2 route-map calculator permit 36835 match community c4_216_100 c4_216_101 c4_216_102 c4_216_103 c4_216_104 set community 0:2 route-map calculator permit 36836 match community c4_216_105 c4_216_106 c4_216_107 c4_216_108 c3_216_214 set community 0:2 route-map calculator permit 36837 match community c4_217_73 c4_217_74 c4_217_75 c4_217_76 c4_217_77 set community 0:2 route-map calculator permit 36838 match community c4_217_78 c4_217_79 c4_217_80 c4_217_81 c4_217_82 set community 0:2 route-map calculator permit 36839 match community c4_217_83 c4_217_84 c4_217_85 c4_217_86 c4_217_87 set community 0:2 route-map calculator permit 36840 match community c4_217_88 c4_217_89 c4_217_90 c4_217_91 c4_217_92 set community 0:2 route-map calculator permit 36841 match community c4_217_93 c4_217_94 c4_217_95 c4_217_96 c4_217_97 set community 0:2 route-map calculator permit 36842 match community c4_217_98 c4_217_99 c4_217_100 c4_217_101 c4_217_102 set community 0:2 route-map calculator permit 36843 match community c4_217_103 c4_217_104 c4_217_105 c4_217_106 c4_217_107 set community 0:2 route-map calculator permit 36844 match community c4_217_108 c3_217_215 c4_218_73 c4_218_74 c4_218_75 set community 0:2 route-map calculator permit 36845 match community c4_218_76 c4_218_77 c4_218_78 c4_218_79 c4_218_80 set community 0:2 route-map calculator permit 36846 match community c4_218_81 c4_218_82 c4_218_83 c4_218_84 c4_218_85 set community 0:2 route-map calculator permit 36847 match community c4_218_86 c4_218_87 c4_218_88 c4_218_89 c4_218_90 set community 0:2 route-map calculator permit 36848 match community c4_218_91 c4_218_92 c4_218_93 c4_218_94 c4_218_95 set community 0:2 route-map calculator permit 36849 match community c4_218_96 c4_218_97 c4_218_98 c4_218_99 c4_218_100 set community 0:2 route-map calculator permit 36850 match community c4_218_101 c4_218_102 c4_218_103 c4_218_104 c4_218_105 set community 0:2 route-map calculator permit 36851 match community c4_218_106 c4_218_107 c4_218_108 c4_218_109 c3_218_216 set community 0:2 route-map calculator permit 36852 match community c4_219_74 c4_219_75 c4_219_76 c4_219_77 c4_219_78 set community 0:2 route-map calculator permit 36853 match community c4_219_79 c4_219_80 c4_219_81 c4_219_82 c4_219_83 set community 0:2 route-map calculator permit 36854 match community c4_219_84 c4_219_85 c4_219_86 c4_219_87 c4_219_88 set community 0:2 route-map calculator permit 36855 match community c4_219_89 c4_219_90 c4_219_91 c4_219_92 c4_219_93 set community 0:2 route-map calculator permit 36856 match community c4_219_94 c4_219_95 c4_219_96 c4_219_97 c4_219_98 set community 0:2 route-map calculator permit 36857 match community c4_219_99 c4_219_100 c4_219_101 c4_219_102 c4_219_103 set community 0:2 route-map calculator permit 36858 match community c4_219_104 c4_219_105 c4_219_106 c4_219_107 c4_219_108 set community 0:2 route-map calculator permit 36859 match community c4_219_109 c3_219_217 c4_220_74 c4_220_75 c4_220_76 set community 0:2 route-map calculator permit 36860 match community c4_220_77 c4_220_78 c4_220_79 c4_220_80 c4_220_81 set community 0:2 route-map calculator permit 36861 match community c4_220_82 c4_220_83 c4_220_84 c4_220_85 c4_220_86 set community 0:2 route-map calculator permit 36862 match community c4_220_87 c4_220_88 c4_220_89 c4_220_90 c4_220_91 set community 0:2 route-map calculator permit 36863 match community c4_220_92 c4_220_93 c4_220_94 c4_220_95 c4_220_96 set community 0:2 route-map calculator permit 36864 match community c4_220_97 c4_220_98 c4_220_99 c4_220_100 c4_220_101 set community 0:2 route-map calculator permit 36865 match community c4_220_102 c4_220_103 c4_220_104 c4_220_105 c4_220_106 set community 0:2 route-map calculator permit 36866 match community c4_220_107 c4_220_108 c4_220_109 c4_220_110 c3_220_218 set community 0:2 route-map calculator permit 36867 match community c4_221_74 c4_221_75 c4_221_76 c4_221_77 c4_221_78 set community 0:2 route-map calculator permit 36868 match community c4_221_79 c4_221_80 c4_221_81 c4_221_82 c4_221_83 set community 0:2 route-map calculator permit 36869 match community c4_221_84 c4_221_85 c4_221_86 c4_221_87 c4_221_88 set community 0:2 route-map calculator permit 36870 match community c4_221_89 c4_221_90 c4_221_91 c4_221_92 c4_221_93 set community 0:2 route-map calculator permit 36871 match community c4_221_94 c4_221_95 c4_221_96 c4_221_97 c4_221_98 set community 0:2 route-map calculator permit 36872 match community c4_221_99 c4_221_100 c4_221_101 c4_221_102 c4_221_103 set community 0:2 route-map calculator permit 36873 match community c4_221_104 c4_221_105 c4_221_106 c4_221_107 c4_221_108 set community 0:2 route-map calculator permit 36874 match community c4_221_109 c4_221_110 c3_221_219 c4_222_75 c4_222_76 set community 0:2 route-map calculator permit 36875 match community c4_222_77 c4_222_78 c4_222_79 c4_222_80 c4_222_81 set community 0:2 route-map calculator permit 36876 match community c4_222_82 c4_222_83 c4_222_84 c4_222_85 c4_222_86 set community 0:2 route-map calculator permit 36877 match community c4_222_87 c4_222_88 c4_222_89 c4_222_90 c4_222_91 set community 0:2 route-map calculator permit 36878 match community c4_222_92 c4_222_93 c4_222_94 c4_222_95 c4_222_96 set community 0:2 route-map calculator permit 36879 match community c4_222_97 c4_222_98 c4_222_99 c4_222_100 c4_222_101 set community 0:2 route-map calculator permit 36880 match community c4_222_102 c4_222_103 c4_222_104 c4_222_105 c4_222_106 set community 0:2 route-map calculator permit 36881 match community c4_222_107 c4_222_108 c4_222_109 c4_222_110 c4_222_111 set community 0:2 route-map calculator permit 36882 match community c3_222_220 c4_223_75 c4_223_76 c4_223_77 c4_223_78 set community 0:2 route-map calculator permit 36883 match community c4_223_79 c4_223_80 c4_223_81 c4_223_82 c4_223_83 set community 0:2 route-map calculator permit 36884 match community c4_223_84 c4_223_85 c4_223_86 c4_223_87 c4_223_88 set community 0:2 route-map calculator permit 36885 match community c4_223_89 c4_223_90 c4_223_91 c4_223_92 c4_223_93 set community 0:2 route-map calculator permit 36886 match community c4_223_94 c4_223_95 c4_223_96 c4_223_97 c4_223_98 set community 0:2 route-map calculator permit 36887 match community c4_223_99 c4_223_100 c4_223_101 c4_223_102 c4_223_103 set community 0:2 route-map calculator permit 36888 match community c4_223_104 c4_223_105 c4_223_106 c4_223_107 c4_223_108 set community 0:2 route-map calculator permit 36889 match community c4_223_109 c4_223_110 c4_223_111 c3_223_221 c4_224_75 set community 0:2 route-map calculator permit 36890 match community c4_224_76 c4_224_77 c4_224_78 c4_224_79 c4_224_80 set community 0:2 route-map calculator permit 36891 match community c4_224_81 c4_224_82 c4_224_83 c4_224_84 c4_224_85 set community 0:2 route-map calculator permit 36892 match community c4_224_86 c4_224_87 c4_224_88 c4_224_89 c4_224_90 set community 0:2 route-map calculator permit 36893 match community c4_224_91 c4_224_92 c4_224_93 c4_224_94 c4_224_95 set community 0:2 route-map calculator permit 36894 match community c4_224_96 c4_224_97 c4_224_98 c4_224_99 c4_224_100 set community 0:2 route-map calculator permit 36895 match community c4_224_101 c4_224_102 c4_224_103 c4_224_104 c4_224_105 set community 0:2 route-map calculator permit 36896 match community c4_224_106 c4_224_107 c4_224_108 c4_224_109 c4_224_110 set community 0:2 route-map calculator permit 36897 match community c4_224_111 c4_224_112 c3_224_222 c4_225_76 c4_225_77 set community 0:2 route-map calculator permit 36898 match community c4_225_78 c4_225_79 c4_225_80 c4_225_81 c4_225_82 set community 0:2 route-map calculator permit 36899 match community c4_225_83 c4_225_84 c4_225_85 c4_225_86 c4_225_87 set community 0:2 route-map calculator permit 36900 match community c4_225_88 c4_225_89 c4_225_90 c4_225_91 c4_225_92 set community 0:2 route-map calculator permit 36901 match community c4_225_93 c4_225_94 c4_225_95 c4_225_96 c4_225_97 set community 0:2 route-map calculator permit 36902 match community c4_225_98 c4_225_99 c4_225_100 c4_225_101 c4_225_102 set community 0:2 route-map calculator permit 36903 match community c4_225_103 c4_225_104 c4_225_105 c4_225_106 c4_225_107 set community 0:2 route-map calculator permit 36904 match community c4_225_108 c4_225_109 c4_225_110 c4_225_111 c4_225_112 set community 0:2 route-map calculator permit 36905 match community c3_225_223 c4_226_76 c4_226_77 c4_226_78 c4_226_79 set community 0:2 route-map calculator permit 36906 match community c4_226_80 c4_226_81 c4_226_82 c4_226_83 c4_226_84 set community 0:2 route-map calculator permit 36907 match community c4_226_85 c4_226_86 c4_226_87 c4_226_88 c4_226_89 set community 0:2 route-map calculator permit 36908 match community c4_226_90 c4_226_91 c4_226_92 c4_226_93 c4_226_94 set community 0:2 route-map calculator permit 36909 match community c4_226_95 c4_226_96 c4_226_97 c4_226_98 c4_226_99 set community 0:2 route-map calculator permit 36910 match community c4_226_100 c4_226_101 c4_226_102 c4_226_103 c4_226_104 set community 0:2 route-map calculator permit 36911 match community c4_226_105 c4_226_106 c4_226_107 c4_226_108 c4_226_109 set community 0:2 route-map calculator permit 36912 match community c4_226_110 c4_226_111 c4_226_112 c4_226_113 c3_226_224 set community 0:2 route-map calculator permit 36913 match community c4_227_76 c4_227_77 c4_227_78 c4_227_79 c4_227_80 set community 0:2 route-map calculator permit 36914 match community c4_227_81 c4_227_82 c4_227_83 c4_227_84 c4_227_85 set community 0:2 route-map calculator permit 36915 match community c4_227_86 c4_227_87 c4_227_88 c4_227_89 c4_227_90 set community 0:2 route-map calculator permit 36916 match community c4_227_91 c4_227_92 c4_227_93 c4_227_94 c4_227_95 set community 0:2 route-map calculator permit 36917 match community c4_227_96 c4_227_97 c4_227_98 c4_227_99 c4_227_100 set community 0:2 route-map calculator permit 36918 match community c4_227_101 c4_227_102 c4_227_103 c4_227_104 c4_227_105 set community 0:2 route-map calculator permit 36919 match community c4_227_106 c4_227_107 c4_227_108 c4_227_109 c4_227_110 set community 0:2 route-map calculator permit 36920 match community c4_227_111 c4_227_112 c4_227_113 c3_227_225 c4_228_77 set community 0:2 route-map calculator permit 36921 match community c4_228_78 c4_228_79 c4_228_80 c4_228_81 c4_228_82 set community 0:2 route-map calculator permit 36922 match community c4_228_83 c4_228_84 c4_228_85 c4_228_86 c4_228_87 set community 0:2 route-map calculator permit 36923 match community c4_228_88 c4_228_89 c4_228_90 c4_228_91 c4_228_92 set community 0:2 route-map calculator permit 36924 match community c4_228_93 c4_228_94 c4_228_95 c4_228_96 c4_228_97 set community 0:2 route-map calculator permit 36925 match community c4_228_98 c4_228_99 c4_228_100 c4_228_101 c4_228_102 set community 0:2 route-map calculator permit 36926 match community c4_228_103 c4_228_104 c4_228_105 c4_228_106 c4_228_107 set community 0:2 route-map calculator permit 36927 match community c4_228_108 c4_228_109 c4_228_110 c4_228_111 c4_228_112 set community 0:2 route-map calculator permit 36928 match community c4_228_113 c4_228_114 c3_228_226 c4_229_77 c4_229_78 set community 0:2 route-map calculator permit 36929 match community c4_229_79 c4_229_80 c4_229_81 c4_229_82 c4_229_83 set community 0:2 route-map calculator permit 36930 match community c4_229_84 c4_229_85 c4_229_86 c4_229_87 c4_229_88 set community 0:2 route-map calculator permit 36931 match community c4_229_89 c4_229_90 c4_229_91 c4_229_92 c4_229_93 set community 0:2 route-map calculator permit 36932 match community c4_229_94 c4_229_95 c4_229_96 c4_229_97 c4_229_98 set community 0:2 route-map calculator permit 36933 match community c4_229_99 c4_229_100 c4_229_101 c4_229_102 c4_229_103 set community 0:2 route-map calculator permit 36934 match community c4_229_104 c4_229_105 c4_229_106 c4_229_107 c4_229_108 set community 0:2 route-map calculator permit 36935 match community c4_229_109 c4_229_110 c4_229_111 c4_229_112 c4_229_113 set community 0:2 route-map calculator permit 36936 match community c4_229_114 c3_229_227 c4_230_77 c4_230_78 c4_230_79 set community 0:2 route-map calculator permit 36937 match community c4_230_80 c4_230_81 c4_230_82 c4_230_83 c4_230_84 set community 0:2 route-map calculator permit 36938 match community c4_230_85 c4_230_86 c4_230_87 c4_230_88 c4_230_89 set community 0:2 route-map calculator permit 36939 match community c4_230_90 c4_230_91 c4_230_92 c4_230_93 c4_230_94 set community 0:2 route-map calculator permit 36940 match community c4_230_95 c4_230_96 c4_230_97 c4_230_98 c4_230_99 set community 0:2 route-map calculator permit 36941 match community c4_230_100 c4_230_101 c4_230_102 c4_230_103 c4_230_104 set community 0:2 route-map calculator permit 36942 match community c4_230_105 c4_230_106 c4_230_107 c4_230_108 c4_230_109 set community 0:2 route-map calculator permit 36943 match community c4_230_110 c4_230_111 c4_230_112 c4_230_113 c4_230_114 set community 0:2 route-map calculator permit 36944 match community c4_230_115 c3_230_228 c4_231_78 c4_231_79 c4_231_80 set community 0:2 route-map calculator permit 36945 match community c4_231_81 c4_231_82 c4_231_83 c4_231_84 c4_231_85 set community 0:2 route-map calculator permit 36946 match community c4_231_86 c4_231_87 c4_231_88 c4_231_89 c4_231_90 set community 0:2 route-map calculator permit 36947 match community c4_231_91 c4_231_92 c4_231_93 c4_231_94 c4_231_95 set community 0:2 route-map calculator permit 36948 match community c4_231_96 c4_231_97 c4_231_98 c4_231_99 c4_231_100 set community 0:2 route-map calculator permit 36949 match community c4_231_101 c4_231_102 c4_231_103 c4_231_104 c4_231_105 set community 0:2 route-map calculator permit 36950 match community c4_231_106 c4_231_107 c4_231_108 c4_231_109 c4_231_110 set community 0:2 route-map calculator permit 36951 match community c4_231_111 c4_231_112 c4_231_113 c4_231_114 c4_231_115 set community 0:2 route-map calculator permit 36952 match community c3_231_229 c4_232_78 c4_232_79 c4_232_80 c4_232_81 set community 0:2 route-map calculator permit 36953 match community c4_232_82 c4_232_83 c4_232_84 c4_232_85 c4_232_86 set community 0:2 route-map calculator permit 36954 match community c4_232_87 c4_232_88 c4_232_89 c4_232_90 c4_232_91 set community 0:2 route-map calculator permit 36955 match community c4_232_92 c4_232_93 c4_232_94 c4_232_95 c4_232_96 set community 0:2 route-map calculator permit 36956 match community c4_232_97 c4_232_98 c4_232_99 c4_232_100 c4_232_101 set community 0:2 route-map calculator permit 36957 match community c4_232_102 c4_232_103 c4_232_104 c4_232_105 c4_232_106 set community 0:2 route-map calculator permit 36958 match community c4_232_107 c4_232_108 c4_232_109 c4_232_110 c4_232_111 set community 0:2 route-map calculator permit 36959 match community c4_232_112 c4_232_113 c4_232_114 c4_232_115 c4_232_116 set community 0:2 route-map calculator permit 36960 match community c3_232_230 c4_233_78 c4_233_79 c4_233_80 c4_233_81 set community 0:2 route-map calculator permit 36961 match community c4_233_82 c4_233_83 c4_233_84 c4_233_85 c4_233_86 set community 0:2 route-map calculator permit 36962 match community c4_233_87 c4_233_88 c4_233_89 c4_233_90 c4_233_91 set community 0:2 route-map calculator permit 36963 match community c4_233_92 c4_233_93 c4_233_94 c4_233_95 c4_233_96 set community 0:2 route-map calculator permit 36964 match community c4_233_97 c4_233_98 c4_233_99 c4_233_100 c4_233_101 set community 0:2 route-map calculator permit 36965 match community c4_233_102 c4_233_103 c4_233_104 c4_233_105 c4_233_106 set community 0:2 route-map calculator permit 36966 match community c4_233_107 c4_233_108 c4_233_109 c4_233_110 c4_233_111 set community 0:2 route-map calculator permit 36967 match community c4_233_112 c4_233_113 c4_233_114 c4_233_115 c4_233_116 set community 0:2 route-map calculator permit 36968 match community c3_233_231 c4_234_79 c4_234_80 c4_234_81 c4_234_82 set community 0:2 route-map calculator permit 36969 match community c4_234_83 c4_234_84 c4_234_85 c4_234_86 c4_234_87 set community 0:2 route-map calculator permit 36970 match community c4_234_88 c4_234_89 c4_234_90 c4_234_91 c4_234_92 set community 0:2 route-map calculator permit 36971 match community c4_234_93 c4_234_94 c4_234_95 c4_234_96 c4_234_97 set community 0:2 route-map calculator permit 36972 match community c4_234_98 c4_234_99 c4_234_100 c4_234_101 c4_234_102 set community 0:2 route-map calculator permit 36973 match community c4_234_103 c4_234_104 c4_234_105 c4_234_106 c4_234_107 set community 0:2 route-map calculator permit 36974 match community c4_234_108 c4_234_109 c4_234_110 c4_234_111 c4_234_112 set community 0:2 route-map calculator permit 36975 match community c4_234_113 c4_234_114 c4_234_115 c4_234_116 c4_234_117 set community 0:2 route-map calculator permit 36976 match community c3_234_232 c4_235_79 c4_235_80 c4_235_81 c4_235_82 set community 0:2 route-map calculator permit 36977 match community c4_235_83 c4_235_84 c4_235_85 c4_235_86 c4_235_87 set community 0:2 route-map calculator permit 36978 match community c4_235_88 c4_235_89 c4_235_90 c4_235_91 c4_235_92 set community 0:2 route-map calculator permit 36979 match community c4_235_93 c4_235_94 c4_235_95 c4_235_96 c4_235_97 set community 0:2 route-map calculator permit 36980 match community c4_235_98 c4_235_99 c4_235_100 c4_235_101 c4_235_102 set community 0:2 route-map calculator permit 36981 match community c4_235_103 c4_235_104 c4_235_105 c4_235_106 c4_235_107 set community 0:2 route-map calculator permit 36982 match community c4_235_108 c4_235_109 c4_235_110 c4_235_111 c4_235_112 set community 0:2 route-map calculator permit 36983 match community c4_235_113 c4_235_114 c4_235_115 c4_235_116 c4_235_117 set community 0:2 route-map calculator permit 36984 match community c3_235_233 c4_236_79 c4_236_80 c4_236_81 c4_236_82 set community 0:2 route-map calculator permit 36985 match community c4_236_83 c4_236_84 c4_236_85 c4_236_86 c4_236_87 set community 0:2 route-map calculator permit 36986 match community c4_236_88 c4_236_89 c4_236_90 c4_236_91 c4_236_92 set community 0:2 route-map calculator permit 36987 match community c4_236_93 c4_236_94 c4_236_95 c4_236_96 c4_236_97 set community 0:2 route-map calculator permit 36988 match community c4_236_98 c4_236_99 c4_236_100 c4_236_101 c4_236_102 set community 0:2 route-map calculator permit 36989 match community c4_236_103 c4_236_104 c4_236_105 c4_236_106 c4_236_107 set community 0:2 route-map calculator permit 36990 match community c4_236_108 c4_236_109 c4_236_110 c4_236_111 c4_236_112 set community 0:2 route-map calculator permit 36991 match community c4_236_113 c4_236_114 c4_236_115 c4_236_116 c4_236_117 set community 0:2 route-map calculator permit 36992 match community c4_236_118 c3_236_234 c4_237_80 c4_237_81 c4_237_82 set community 0:2 route-map calculator permit 36993 match community c4_237_83 c4_237_84 c4_237_85 c4_237_86 c4_237_87 set community 0:2 route-map calculator permit 36994 match community c4_237_88 c4_237_89 c4_237_90 c4_237_91 c4_237_92 set community 0:2 route-map calculator permit 36995 match community c4_237_93 c4_237_94 c4_237_95 c4_237_96 c4_237_97 set community 0:2 route-map calculator permit 36996 match community c4_237_98 c4_237_99 c4_237_100 c4_237_101 c4_237_102 set community 0:2 route-map calculator permit 36997 match community c4_237_103 c4_237_104 c4_237_105 c4_237_106 c4_237_107 set community 0:2 route-map calculator permit 36998 match community c4_237_108 c4_237_109 c4_237_110 c4_237_111 c4_237_112 set community 0:2 route-map calculator permit 36999 match community c4_237_113 c4_237_114 c4_237_115 c4_237_116 c4_237_117 set community 0:2 route-map calculator permit 37000 match community c4_237_118 c3_237_235 c4_238_80 c4_238_81 c4_238_82 set community 0:2 route-map calculator permit 37001 match community c4_238_83 c4_238_84 c4_238_85 c4_238_86 c4_238_87 set community 0:2 route-map calculator permit 37002 match community c4_238_88 c4_238_89 c4_238_90 c4_238_91 c4_238_92 set community 0:2 route-map calculator permit 37003 match community c4_238_93 c4_238_94 c4_238_95 c4_238_96 c4_238_97 set community 0:2 route-map calculator permit 37004 match community c4_238_98 c4_238_99 c4_238_100 c4_238_101 c4_238_102 set community 0:2 route-map calculator permit 37005 match community c4_238_103 c4_238_104 c4_238_105 c4_238_106 c4_238_107 set community 0:2 route-map calculator permit 37006 match community c4_238_108 c4_238_109 c4_238_110 c4_238_111 c4_238_112 set community 0:2 route-map calculator permit 37007 match community c4_238_113 c4_238_114 c4_238_115 c4_238_116 c4_238_117 set community 0:2 route-map calculator permit 37008 match community c4_238_118 c4_238_119 c3_238_236 c4_239_80 c4_239_81 set community 0:2 route-map calculator permit 37009 match community c4_239_82 c4_239_83 c4_239_84 c4_239_85 c4_239_86 set community 0:2 route-map calculator permit 37010 match community c4_239_87 c4_239_88 c4_239_89 c4_239_90 c4_239_91 set community 0:2 route-map calculator permit 37011 match community c4_239_92 c4_239_93 c4_239_94 c4_239_95 c4_239_96 set community 0:2 route-map calculator permit 37012 match community c4_239_97 c4_239_98 c4_239_99 c4_239_100 c4_239_101 set community 0:2 route-map calculator permit 37013 match community c4_239_102 c4_239_103 c4_239_104 c4_239_105 c4_239_106 set community 0:2 route-map calculator permit 37014 match community c4_239_107 c4_239_108 c4_239_109 c4_239_110 c4_239_111 set community 0:2 route-map calculator permit 37015 match community c4_239_112 c4_239_113 c4_239_114 c4_239_115 c4_239_116 set community 0:2 route-map calculator permit 37016 match community c4_239_117 c4_239_118 c4_239_119 c3_239_237 c4_240_81 set community 0:2 route-map calculator permit 37017 match community c4_240_82 c4_240_83 c4_240_84 c4_240_85 c4_240_86 set community 0:2 route-map calculator permit 37018 match community c4_240_87 c4_240_88 c4_240_89 c4_240_90 c4_240_91 set community 0:2 route-map calculator permit 37019 match community c4_240_92 c4_240_93 c4_240_94 c4_240_95 c4_240_96 set community 0:2 route-map calculator permit 37020 match community c4_240_97 c4_240_98 c4_240_99 c4_240_100 c4_240_101 set community 0:2 route-map calculator permit 37021 match community c4_240_102 c4_240_103 c4_240_104 c4_240_105 c4_240_106 set community 0:2 route-map calculator permit 37022 match community c4_240_107 c4_240_108 c4_240_109 c4_240_110 c4_240_111 set community 0:2 route-map calculator permit 37023 match community c4_240_112 c4_240_113 c4_240_114 c4_240_115 c4_240_116 set community 0:2 route-map calculator permit 37024 match community c4_240_117 c4_240_118 c4_240_119 c4_240_120 c3_240_238 set community 0:2 route-map calculator permit 37025 match community c4_241_81 c4_241_82 c4_241_83 c4_241_84 c4_241_85 set community 0:2 route-map calculator permit 37026 match community c4_241_86 c4_241_87 c4_241_88 c4_241_89 c4_241_90 set community 0:2 route-map calculator permit 37027 match community c4_241_91 c4_241_92 c4_241_93 c4_241_94 c4_241_95 set community 0:2 route-map calculator permit 37028 match community c4_241_96 c4_241_97 c4_241_98 c4_241_99 c4_241_100 set community 0:2 route-map calculator permit 37029 match community c4_241_101 c4_241_102 c4_241_103 c4_241_104 c4_241_105 set community 0:2 route-map calculator permit 37030 match community c4_241_106 c4_241_107 c4_241_108 c4_241_109 c4_241_110 set community 0:2 route-map calculator permit 37031 match community c4_241_111 c4_241_112 c4_241_113 c4_241_114 c4_241_115 set community 0:2 route-map calculator permit 37032 match community c4_241_116 c4_241_117 c4_241_118 c4_241_119 c4_241_120 set community 0:2 route-map calculator permit 37033 match community c3_241_239 c4_242_81 c4_242_82 c4_242_83 c4_242_84 set community 0:2 route-map calculator permit 37034 match community c4_242_85 c4_242_86 c4_242_87 c4_242_88 c4_242_89 set community 0:2 route-map calculator permit 37035 match community c4_242_90 c4_242_91 c4_242_92 c4_242_93 c4_242_94 set community 0:2 route-map calculator permit 37036 match community c4_242_95 c4_242_96 c4_242_97 c4_242_98 c4_242_99 set community 0:2 route-map calculator permit 37037 match community c4_242_100 c4_242_101 c4_242_102 c4_242_103 c4_242_104 set community 0:2 route-map calculator permit 37038 match community c4_242_105 c4_242_106 c4_242_107 c4_242_108 c4_242_109 set community 0:2 route-map calculator permit 37039 match community c4_242_110 c4_242_111 c4_242_112 c4_242_113 c4_242_114 set community 0:2 route-map calculator permit 37040 match community c4_242_115 c4_242_116 c4_242_117 c4_242_118 c4_242_119 set community 0:2 route-map calculator permit 37041 match community c4_242_120 c4_242_121 c3_242_240 c4_243_82 c4_243_83 set community 0:2 route-map calculator permit 37042 match community c4_243_84 c4_243_85 c4_243_86 c4_243_87 c4_243_88 set community 0:2 route-map calculator permit 37043 match community c4_243_89 c4_243_90 c4_243_91 c4_243_92 c4_243_93 set community 0:2 route-map calculator permit 37044 match community c4_243_94 c4_243_95 c4_243_96 c4_243_97 c4_243_98 set community 0:2 route-map calculator permit 37045 match community c4_243_99 c4_243_100 c4_243_101 c4_243_102 c4_243_103 set community 0:2 route-map calculator permit 37046 match community c4_243_104 c4_243_105 c4_243_106 c4_243_107 c4_243_108 set community 0:2 route-map calculator permit 37047 match community c4_243_109 c4_243_110 c4_243_111 c4_243_112 c4_243_113 set community 0:2 route-map calculator permit 37048 match community c4_243_114 c4_243_115 c4_243_116 c4_243_117 c4_243_118 set community 0:2 route-map calculator permit 37049 match community c4_243_119 c4_243_120 c4_243_121 c3_243_241 c4_244_82 set community 0:2 route-map calculator permit 37050 match community c4_244_83 c4_244_84 c4_244_85 c4_244_86 c4_244_87 set community 0:2 route-map calculator permit 37051 match community c4_244_88 c4_244_89 c4_244_90 c4_244_91 c4_244_92 set community 0:2 route-map calculator permit 37052 match community c4_244_93 c4_244_94 c4_244_95 c4_244_96 c4_244_97 set community 0:2 route-map calculator permit 37053 match community c4_244_98 c4_244_99 c4_244_100 c4_244_101 c4_244_102 set community 0:2 route-map calculator permit 37054 match community c4_244_103 c4_244_104 c4_244_105 c4_244_106 c4_244_107 set community 0:2 route-map calculator permit 37055 match community c4_244_108 c4_244_109 c4_244_110 c4_244_111 c4_244_112 set community 0:2 route-map calculator permit 37056 match community c4_244_113 c4_244_114 c4_244_115 c4_244_116 c4_244_117 set community 0:2 route-map calculator permit 37057 match community c4_244_118 c4_244_119 c4_244_120 c4_244_121 c4_244_122 set community 0:2 route-map calculator permit 37058 match community c3_244_242 c4_245_82 c4_245_83 c4_245_84 c4_245_85 set community 0:2 route-map calculator permit 37059 match community c4_245_86 c4_245_87 c4_245_88 c4_245_89 c4_245_90 set community 0:2 route-map calculator permit 37060 match community c4_245_91 c4_245_92 c4_245_93 c4_245_94 c4_245_95 set community 0:2 route-map calculator permit 37061 match community c4_245_96 c4_245_97 c4_245_98 c4_245_99 c4_245_100 set community 0:2 route-map calculator permit 37062 match community c4_245_101 c4_245_102 c4_245_103 c4_245_104 c4_245_105 set community 0:2 route-map calculator permit 37063 match community c4_245_106 c4_245_107 c4_245_108 c4_245_109 c4_245_110 set community 0:2 route-map calculator permit 37064 match community c4_245_111 c4_245_112 c4_245_113 c4_245_114 c4_245_115 set community 0:2 route-map calculator permit 37065 match community c4_245_116 c4_245_117 c4_245_118 c4_245_119 c4_245_120 set community 0:2 route-map calculator permit 37066 match community c4_245_121 c4_245_122 c3_245_243 c4_246_83 c4_246_84 set community 0:2 route-map calculator permit 37067 match community c4_246_85 c4_246_86 c4_246_87 c4_246_88 c4_246_89 set community 0:2 route-map calculator permit 37068 match community c4_246_90 c4_246_91 c4_246_92 c4_246_93 c4_246_94 set community 0:2 route-map calculator permit 37069 match community c4_246_95 c4_246_96 c4_246_97 c4_246_98 c4_246_99 set community 0:2 route-map calculator permit 37070 match community c4_246_100 c4_246_101 c4_246_102 c4_246_103 c4_246_104 set community 0:2 route-map calculator permit 37071 match community c4_246_105 c4_246_106 c4_246_107 c4_246_108 c4_246_109 set community 0:2 route-map calculator permit 37072 match community c4_246_110 c4_246_111 c4_246_112 c4_246_113 c4_246_114 set community 0:2 route-map calculator permit 37073 match community c4_246_115 c4_246_116 c4_246_117 c4_246_118 c4_246_119 set community 0:2 route-map calculator permit 37074 match community c4_246_120 c4_246_121 c4_246_122 c4_246_123 c3_246_244 set community 0:2 route-map calculator permit 37075 match community c4_247_83 c4_247_84 c4_247_85 c4_247_86 c4_247_87 set community 0:2 route-map calculator permit 37076 match community c4_247_88 c4_247_89 c4_247_90 c4_247_91 c4_247_92 set community 0:2 route-map calculator permit 37077 match community c4_247_93 c4_247_94 c4_247_95 c4_247_96 c4_247_97 set community 0:2 route-map calculator permit 37078 match community c4_247_98 c4_247_99 c4_247_100 c4_247_101 c4_247_102 set community 0:2 route-map calculator permit 37079 match community c4_247_103 c4_247_104 c4_247_105 c4_247_106 c4_247_107 set community 0:2 route-map calculator permit 37080 match community c4_247_108 c4_247_109 c4_247_110 c4_247_111 c4_247_112 set community 0:2 route-map calculator permit 37081 match community c4_247_113 c4_247_114 c4_247_115 c4_247_116 c4_247_117 set community 0:2 route-map calculator permit 37082 match community c4_247_118 c4_247_119 c4_247_120 c4_247_121 c4_247_122 set community 0:2 route-map calculator permit 37083 match community c4_247_123 c3_247_245 c4_248_83 c4_248_84 c4_248_85 set community 0:2 route-map calculator permit 37084 match community c4_248_86 c4_248_87 c4_248_88 c4_248_89 c4_248_90 set community 0:2 route-map calculator permit 37085 match community c4_248_91 c4_248_92 c4_248_93 c4_248_94 c4_248_95 set community 0:2 route-map calculator permit 37086 match community c4_248_96 c4_248_97 c4_248_98 c4_248_99 c4_248_100 set community 0:2 route-map calculator permit 37087 match community c4_248_101 c4_248_102 c4_248_103 c4_248_104 c4_248_105 set community 0:2 route-map calculator permit 37088 match community c4_248_106 c4_248_107 c4_248_108 c4_248_109 c4_248_110 set community 0:2 route-map calculator permit 37089 match community c4_248_111 c4_248_112 c4_248_113 c4_248_114 c4_248_115 set community 0:2 route-map calculator permit 37090 match community c4_248_116 c4_248_117 c4_248_118 c4_248_119 c4_248_120 set community 0:2 route-map calculator permit 37091 match community c4_248_121 c4_248_122 c4_248_123 c4_248_124 c3_248_246 set community 0:2 route-map calculator permit 37092 match community c4_249_84 c4_249_85 c4_249_86 c4_249_87 c4_249_88 set community 0:2 route-map calculator permit 37093 match community c4_249_89 c4_249_90 c4_249_91 c4_249_92 c4_249_93 set community 0:2 route-map calculator permit 37094 match community c4_249_94 c4_249_95 c4_249_96 c4_249_97 c4_249_98 set community 0:2 route-map calculator permit 37095 match community c4_249_99 c4_249_100 c4_249_101 c4_249_102 c4_249_103 set community 0:2 route-map calculator permit 37096 match community c4_249_104 c4_249_105 c4_249_106 c4_249_107 c4_249_108 set community 0:2 route-map calculator permit 37097 match community c4_249_109 c4_249_110 c4_249_111 c4_249_112 c4_249_113 set community 0:2 route-map calculator permit 37098 match community c4_249_114 c4_249_115 c4_249_116 c4_249_117 c4_249_118 set community 0:2 route-map calculator permit 37099 match community c4_249_119 c4_249_120 c4_249_121 c4_249_122 c4_249_123 set community 0:2 route-map calculator permit 37100 match community c4_249_124 c3_249_247 c4_250_84 c4_250_85 c4_250_86 set community 0:2 route-map calculator permit 37101 match community c4_250_87 c4_250_88 c4_250_89 c4_250_90 c4_250_91 set community 0:2 route-map calculator permit 37102 match community c4_250_92 c4_250_93 c4_250_94 c4_250_95 c4_250_96 set community 0:2 route-map calculator permit 37103 match community c4_250_97 c4_250_98 c4_250_99 c4_250_100 c4_250_101 set community 0:2 route-map calculator permit 37104 match community c4_250_102 c4_250_103 c4_250_104 c4_250_105 c4_250_106 set community 0:2 route-map calculator permit 37105 match community c4_250_107 c4_250_108 c4_250_109 c4_250_110 c4_250_111 set community 0:2 route-map calculator permit 37106 match community c4_250_112 c4_250_113 c4_250_114 c4_250_115 c4_250_116 set community 0:2 route-map calculator permit 37107 match community c4_250_117 c4_250_118 c4_250_119 c4_250_120 c4_250_121 set community 0:2 route-map calculator permit 37108 match community c4_250_122 c4_250_123 c4_250_124 c4_250_125 c3_250_248 set community 0:2 route-map calculator permit 37109 match community c4_251_84 c4_251_85 c4_251_86 c4_251_87 c4_251_88 set community 0:2 route-map calculator permit 37110 match community c4_251_89 c4_251_90 c4_251_91 c4_251_92 c4_251_93 set community 0:2 route-map calculator permit 37111 match community c4_251_94 c4_251_95 c4_251_96 c4_251_97 c4_251_98 set community 0:2 route-map calculator permit 37112 match community c4_251_99 c4_251_100 c4_251_101 c4_251_102 c4_251_103 set community 0:2 route-map calculator permit 37113 match community c4_251_104 c4_251_105 c4_251_106 c4_251_107 c4_251_108 set community 0:2 route-map calculator permit 37114 match community c4_251_109 c4_251_110 c4_251_111 c4_251_112 c4_251_113 set community 0:2 route-map calculator permit 37115 match community c4_251_114 c4_251_115 c4_251_116 c4_251_117 c4_251_118 set community 0:2 route-map calculator permit 37116 match community c4_251_119 c4_251_120 c4_251_121 c4_251_122 c4_251_123 set community 0:2 route-map calculator permit 37117 match community c4_251_124 c4_251_125 c3_251_249 c4_252_85 c4_252_86 set community 0:2 route-map calculator permit 37118 match community c4_252_87 c4_252_88 c4_252_89 c4_252_90 c4_252_91 set community 0:2 route-map calculator permit 37119 match community c4_252_92 c4_252_93 c4_252_94 c4_252_95 c4_252_96 set community 0:2 route-map calculator permit 37120 match community c4_252_97 c4_252_98 c4_252_99 c4_252_100 c4_252_101 set community 0:2 route-map calculator permit 37121 match community c4_252_102 c4_252_103 c4_252_104 c4_252_105 c4_252_106 set community 0:2 route-map calculator permit 37122 match community c4_252_107 c4_252_108 c4_252_109 c4_252_110 c4_252_111 set community 0:2 route-map calculator permit 37123 match community c4_252_112 c4_252_113 c4_252_114 c4_252_115 c4_252_116 set community 0:2 route-map calculator permit 37124 match community c4_252_117 c4_252_118 c4_252_119 c4_252_120 c4_252_121 set community 0:2 route-map calculator permit 37125 match community c4_252_122 c4_252_123 c4_252_124 c4_252_125 c4_252_126 set community 0:2 route-map calculator permit 37126 match community c3_252_250 c4_253_85 c4_253_86 c4_253_87 c4_253_88 set community 0:2 route-map calculator permit 37127 match community c4_253_89 c4_253_90 c4_253_91 c4_253_92 c4_253_93 set community 0:2 route-map calculator permit 37128 match community c4_253_94 c4_253_95 c4_253_96 c4_253_97 c4_253_98 set community 0:2 route-map calculator permit 37129 match community c4_253_99 c4_253_100 c4_253_101 c4_253_102 c4_253_103 set community 0:2 route-map calculator permit 37130 match community c4_253_104 c4_253_105 c4_253_106 c4_253_107 c4_253_108 set community 0:2 route-map calculator permit 37131 match community c4_253_109 c4_253_110 c4_253_111 c4_253_112 c4_253_113 set community 0:2 route-map calculator permit 37132 match community c4_253_114 c4_253_115 c4_253_116 c4_253_117 c4_253_118 set community 0:2 route-map calculator permit 37133 match community c4_253_119 c4_253_120 c4_253_121 c4_253_122 c4_253_123 set community 0:2 route-map calculator permit 37134 match community c4_253_124 c4_253_125 c4_253_126 c3_253_251 c4_254_85 set community 0:2 route-map calculator permit 37135 match community c4_254_86 c4_254_87 c4_254_88 c4_254_89 c4_254_90 set community 0:2 route-map calculator permit 37136 match community c4_254_91 c4_254_92 c4_254_93 c4_254_94 c4_254_95 set community 0:2 route-map calculator permit 37137 match community c4_254_96 c4_254_97 c4_254_98 c4_254_99 c4_254_100 set community 0:2 route-map calculator permit 37138 match community c4_254_101 c4_254_102 c4_254_103 c4_254_104 c4_254_105 set community 0:2 route-map calculator permit 37139 match community c4_254_106 c4_254_107 c4_254_108 c4_254_109 c4_254_110 set community 0:2 route-map calculator permit 37140 match community c4_254_111 c4_254_112 c4_254_113 c4_254_114 c4_254_115 set community 0:2 route-map calculator permit 37141 match community c4_254_116 c4_254_117 c4_254_118 c4_254_119 c4_254_120 set community 0:2 route-map calculator permit 37142 match community c4_254_121 c4_254_122 c4_254_123 c4_254_124 c4_254_125 set community 0:2 route-map calculator permit 37143 match community c4_254_126 c4_254_127 c3_254_252 c4_255_86 c4_255_87 set community 0:2 route-map calculator permit 37144 match community c4_255_88 c4_255_89 c4_255_90 c4_255_91 c4_255_92 set community 0:2 route-map calculator permit 37145 match community c4_255_93 c4_255_94 c4_255_95 c4_255_96 c4_255_97 set community 0:2 route-map calculator permit 37146 match community c4_255_98 c4_255_99 c4_255_100 c4_255_101 c4_255_102 set community 0:2 route-map calculator permit 37147 match community c4_255_103 c4_255_104 c4_255_105 c4_255_106 c4_255_107 set community 0:2 route-map calculator permit 37148 match community c4_255_108 c4_255_109 c4_255_110 c4_255_111 c4_255_112 set community 0:2 route-map calculator permit 37149 match community c4_255_113 c4_255_114 c4_255_115 c4_255_116 c4_255_117 set community 0:2 route-map calculator permit 37150 match community c4_255_118 c4_255_119 c4_255_120 c4_255_121 c4_255_122 set community 0:2 route-map calculator permit 37151 match community c4_255_123 c4_255_124 c4_255_125 c4_255_126 c4_255_127 set community 0:2 route-map calculator permit 37152 match community c3_255_253 c4_256_86 c4_256_87 c4_256_88 c4_256_89 set community 0:2 route-map calculator permit 37153 match community c4_256_90 c4_256_91 c4_256_92 c4_256_93 c4_256_94 set community 0:2 route-map calculator permit 37154 match community c4_256_95 c4_256_96 c4_256_97 c4_256_98 c4_256_99 set community 0:2 route-map calculator permit 37155 match community c4_256_100 c4_256_101 c4_256_102 c4_256_103 c4_256_104 set community 0:2 route-map calculator permit 37156 match community c4_256_105 c4_256_106 c4_256_107 c4_256_108 c4_256_109 set community 0:2 route-map calculator permit 37157 match community c4_256_110 c4_256_111 c4_256_112 c4_256_113 c4_256_114 set community 0:2 route-map calculator permit 37158 match community c4_256_115 c4_256_116 c4_256_117 c4_256_118 c4_256_119 set community 0:2 route-map calculator permit 37159 match community c4_256_120 c4_256_121 c4_256_122 c4_256_123 c4_256_124 set community 0:2 route-map calculator permit 37160 match community c4_256_125 c4_256_126 c4_256_127 c4_256_128 c3_256_254 set community 0:2 ip community-list standard 2_135_206 permit 65000:2 0:135 0:206 route-map calculator permit 37161 match community 2_135_206 set community 0:27810 ip community-list standard 2_86_176 permit 65000:2 0:86 0:176 ip community-list standard 2_88_172 permit 65000:2 0:88 0:172 route-map calculator permit 37162 match community 2_86_176 2_88_172 set community 0:15136 ip community-list standard 2_19_220 permit 65000:2 0:19 0:220 ip community-list standard 2_20_209 permit 65000:2 0:20 0:209 ip community-list standard 2_22_190 permit 65000:2 0:22 0:190 ip community-list standard 2_38_110 permit 65000:2 0:38 0:110 ip community-list standard 2_44_95 permit 65000:2 0:44 0:95 ip community-list standard 2_55_76 permit 65000:2 0:55 0:76 route-map calculator permit 37163 match community 2_19_220 2_20_209 2_22_190 2_38_110 2_44_95 set community 0:4180 route-map calculator permit 37164 match community 2_55_76 set community 0:4180 ip community-list standard 2_12_250 permit 65000:2 0:12 0:250 ip community-list standard 2_15_200 permit 65000:2 0:15 0:200 ip community-list standard 2_20_150 permit 65000:2 0:20 0:150 ip community-list standard 2_24_125 permit 65000:2 0:24 0:125 ip community-list standard 2_25_120 permit 65000:2 0:25 0:120 ip community-list standard 2_30_100 permit 65000:2 0:30 0:100 ip community-list standard 2_40_75 permit 65000:2 0:40 0:75 ip community-list standard 2_50_60 permit 65000:2 0:50 0:60 route-map calculator permit 37165 match community 2_12_250 2_15_200 2_20_150 2_24_125 2_25_120 set community 0:3000 route-map calculator permit 37166 match community 2_30_100 2_40_75 2_50_60 set community 0:3000 ip community-list standard 2_95_183 permit 65000:2 0:95 0:183 route-map calculator permit 37167 match community 2_95_183 set community 0:17385 ip community-list standard 2_73_225 permit 65000:2 0:73 0:225 ip community-list standard 2_75_219 permit 65000:2 0:75 0:219 route-map calculator permit 37168 match community 2_73_225 2_75_219 set community 0:16425 ip community-list standard 2_191_224 permit 65000:2 0:191 0:224 route-map calculator permit 37169 match community 2_191_224 set community 0:42784 ip community-list standard 2_95_248 permit 65000:2 0:95 0:248 ip community-list standard 2_124_190 permit 65000:2 0:124 0:190 ip community-list standard 2_152_155 permit 65000:2 0:152 0:155 route-map calculator permit 37170 match community 2_95_248 2_124_190 2_152_155 set community 0:23560 ip community-list standard 2_160_166 permit 65000:2 0:160 0:166 route-map calculator permit 37171 match community 2_160_166 set community 0:26560 ip community-list standard 2_59_139 permit 65000:2 0:59 0:139 route-map calculator permit 37172 match community 2_59_139 set community 0:8201 ip community-list standard 2_117_233 permit 65000:2 0:117 0:233 route-map calculator permit 37173 match community 2_117_233 set community 0:27261 ip community-list standard 2_147_207 permit 65000:2 0:147 0:207 ip community-list standard 2_161_189 permit 65000:2 0:161 0:189 route-map calculator permit 37174 match community 2_147_207 2_161_189 set community 0:30429 ip community-list standard 2_10_236 permit 65000:2 0:10 0:236 ip community-list standard 2_20_118 permit 65000:2 0:20 0:118 ip community-list standard 2_40_59 permit 65000:2 0:40 0:59 route-map calculator permit 37175 match community 2_10_236 2_20_118 2_40_59 set community 0:2360 ip community-list standard 2_46_197 permit 65000:2 0:46 0:197 route-map calculator permit 37176 match community 2_46_197 set community 0:9062 ip community-list standard 2_109_233 permit 65000:2 0:109 0:233 route-map calculator permit 37177 match community 2_109_233 set community 0:25397 ip community-list standard 2_111_117 permit 65000:2 0:111 0:117 route-map calculator permit 37178 match community 2_111_117 set community 0:12987 ip community-list standard 2_179_183 permit 65000:2 0:179 0:183 route-map calculator permit 37179 match community 2_179_183 set community 0:32757 ip community-list standard 2_145_201 permit 65000:2 0:145 0:201 route-map calculator permit 37180 match community 2_145_201 set community 0:29145 ip community-list standard 2_168_229 permit 65000:2 0:168 0:229 route-map calculator permit 37181 match community 2_168_229 set community 0:38472 ip community-list standard 2_135_137 permit 65000:2 0:135 0:137 route-map calculator permit 37182 match community 2_135_137 set community 0:18495 ip community-list standard 2_45_206 permit 65000:2 0:45 0:206 ip community-list standard 2_90_103 permit 65000:2 0:90 0:103 route-map calculator permit 37183 match community 2_45_206 2_90_103 set community 0:9270 ip community-list standard 2_17_92 permit 65000:2 0:17 0:92 ip community-list standard 2_23_68 permit 65000:2 0:23 0:68 ip community-list standard 2_34_46 permit 65000:2 0:34 0:46 route-map calculator permit 37184 match community 2_17_92 2_23_68 2_34_46 set community 0:1564 ip community-list standard 2_37_249 permit 65000:2 0:37 0:249 ip community-list standard 2_83_111 permit 65000:2 0:83 0:111 route-map calculator permit 37185 match community 2_37_249 2_83_111 set community 0:9213 ip community-list standard 2_36_246 permit 65000:2 0:36 0:246 ip community-list standard 2_41_216 permit 65000:2 0:41 0:216 ip community-list standard 2_54_164 permit 65000:2 0:54 0:164 ip community-list standard 2_72_123 permit 65000:2 0:72 0:123 ip community-list standard 2_82_108 permit 65000:2 0:82 0:108 route-map calculator permit 37186 match community 2_36_246 2_41_216 2_54_164 2_72_123 2_82_108 set community 0:8856 ip community-list standard 2_149_252 permit 65000:2 0:149 0:252 route-map calculator permit 37187 match community 2_149_252 set community 0:37548 ip community-list standard 2_167_227 permit 65000:2 0:167 0:227 route-map calculator permit 37188 match community 2_167_227 set community 0:37909 ip community-list standard 2_65_236 permit 65000:2 0:65 0:236 ip community-list standard 2_118_130 permit 65000:2 0:118 0:130 route-map calculator permit 37189 match community 2_65_236 2_118_130 set community 0:15340 ip community-list standard 2_172_248 permit 65000:2 0:172 0:248 route-map calculator permit 37190 match community 2_172_248 set community 0:42656 ip community-list standard 2_139_172 permit 65000:2 0:139 0:172 route-map calculator permit 37191 match community 2_139_172 set community 0:23908 ip community-list standard 2_15_215 permit 65000:2 0:15 0:215 ip community-list standard 2_25_129 permit 65000:2 0:25 0:129 ip community-list standard 2_43_75 permit 65000:2 0:43 0:75 route-map calculator permit 37192 match community 2_15_215 2_25_129 2_43_75 set community 0:3225 ip community-list standard 2_62_142 permit 65000:2 0:62 0:142 ip community-list standard 2_71_124 permit 65000:2 0:71 0:124 route-map calculator permit 37193 match community 2_62_142 2_71_124 set community 0:8804 ip community-list standard 2_149_250 permit 65000:2 0:149 0:250 route-map calculator permit 37194 match community 2_149_250 set community 0:37250 ip community-list standard 2_169_242 permit 65000:2 0:169 0:242 route-map calculator permit 37195 match community 2_169_242 set community 0:40898 ip community-list standard 2_49_224 permit 65000:2 0:49 0:224 ip community-list standard 2_56_196 permit 65000:2 0:56 0:196 ip community-list standard 2_98_112 permit 65000:2 0:98 0:112 route-map calculator permit 37196 match community 2_49_224 2_56_196 2_98_112 set community 0:10976 ip community-list standard 2_88_181 permit 65000:2 0:88 0:181 route-map calculator permit 37197 match community 2_88_181 set community 0:15928 ip community-list standard 2_124_215 permit 65000:2 0:124 0:215 ip community-list standard 2_155_172 permit 65000:2 0:155 0:172 route-map calculator permit 37198 match community 2_124_215 2_155_172 set community 0:26660 ip community-list standard 2_157_223 permit 65000:2 0:157 0:223 route-map calculator permit 37199 match community 2_157_223 set community 0:35011 ip community-list standard 2_179_251 permit 65000:2 0:179 0:251 route-map calculator permit 37200 match community 2_179_251 set community 0:44929 ip community-list standard 2_88_139 permit 65000:2 0:88 0:139 route-map calculator permit 37201 match community 2_88_139 set community 0:12232 ip community-list standard 2_24_193 permit 65000:2 0:24 0:193 route-map calculator permit 37202 match community 2_24_193 set community 0:4632 ip community-list standard 2_71_202 permit 65000:2 0:71 0:202 ip community-list standard 2_101_142 permit 65000:2 0:101 0:142 route-map calculator permit 37203 match community 2_71_202 2_101_142 set community 0:14342 ip community-list standard 2_68_237 permit 65000:2 0:68 0:237 ip community-list standard 2_79_204 permit 65000:2 0:79 0:204 ip community-list standard 2_102_158 permit 65000:2 0:102 0:158 route-map calculator permit 37204 match community 2_68_237 2_79_204 2_102_158 set community 0:16116 ip community-list standard 2_34_254 permit 65000:2 0:34 0:254 ip community-list standard 2_68_127 permit 65000:2 0:68 0:127 route-map calculator permit 37205 match community 2_34_254 2_68_127 set community 0:8636 ip community-list standard 2_180_253 permit 65000:2 0:180 0:253 ip community-list standard 2_198_230 permit 65000:2 0:198 0:230 ip community-list standard 2_207_220 permit 65000:2 0:207 0:220 route-map calculator permit 37206 match community 2_180_253 2_198_230 2_207_220 set community 0:45540 ip community-list standard 2_7_91 permit 65000:2 0:7 0:91 ip community-list standard 2_13_49 permit 65000:2 0:13 0:49 route-map calculator permit 37207 match community 2_7_91 2_13_49 set community 0:637 ip community-list standard 2_48_214 permit 65000:2 0:48 0:214 ip community-list standard 2_96_107 permit 65000:2 0:96 0:107 route-map calculator permit 37208 match community 2_48_214 2_96_107 set community 0:10272 ip community-list standard 2_131_207 permit 65000:2 0:131 0:207 route-map calculator permit 37209 match community 2_131_207 set community 0:27117 ip community-list standard 2_116_203 permit 65000:2 0:116 0:203 route-map calculator permit 37210 match community 2_116_203 set community 0:23548 ip community-list standard 2_146_236 permit 65000:2 0:146 0:236 route-map calculator permit 37211 match community 2_146_236 set community 0:34456 ip community-list standard 2_201_211 permit 65000:2 0:201 0:211 route-map calculator permit 37212 match community 2_201_211 set community 0:42411 ip community-list standard 2_178_193 permit 65000:2 0:178 0:193 route-map calculator permit 37213 match community 2_178_193 set community 0:34354 ip community-list standard 2_94_240 permit 65000:2 0:94 0:240 ip community-list standard 2_96_235 permit 65000:2 0:96 0:235 ip community-list standard 2_120_188 permit 65000:2 0:120 0:188 ip community-list standard 2_141_160 permit 65000:2 0:141 0:160 route-map calculator permit 37214 match community 2_94_240 2_96_235 2_120_188 2_141_160 set community 0:22560 ip community-list standard 2_6_240 permit 65000:2 0:6 0:240 ip community-list standard 2_8_180 permit 65000:2 0:8 0:180 ip community-list standard 2_9_160 permit 65000:2 0:9 0:160 ip community-list standard 2_10_144 permit 65000:2 0:10 0:144 ip community-list standard 2_12_120 permit 65000:2 0:12 0:120 ip community-list standard 2_15_96 permit 65000:2 0:15 0:96 ip community-list standard 2_16_90 permit 65000:2 0:16 0:90 ip community-list standard 2_18_80 permit 65000:2 0:18 0:80 ip community-list standard 2_20_72 permit 65000:2 0:20 0:72 ip community-list standard 2_24_60 permit 65000:2 0:24 0:60 ip community-list standard 2_30_48 permit 65000:2 0:30 0:48 ip community-list standard 2_32_45 permit 65000:2 0:32 0:45 ip community-list standard 2_36_40 permit 65000:2 0:36 0:40 route-map calculator permit 37215 match community 2_6_240 2_8_180 2_9_160 2_10_144 2_12_120 set community 0:1440 route-map calculator permit 37216 match community 2_15_96 2_16_90 2_18_80 2_20_72 2_24_60 set community 0:1440 route-map calculator permit 37217 match community 2_30_48 2_32_45 2_36_40 set community 0:1440 ip community-list standard 2_134_173 permit 65000:2 0:134 0:173 route-map calculator permit 37218 match community 2_134_173 set community 0:23182 ip community-list standard 2_55_222 permit 65000:2 0:55 0:222 ip community-list standard 2_66_185 permit 65000:2 0:66 0:185 ip community-list standard 2_74_165 permit 65000:2 0:74 0:165 ip community-list standard 2_110_111 permit 65000:2 0:110 0:111 route-map calculator permit 37219 match community 2_55_222 2_66_185 2_74_165 2_110_111 set community 0:12210 ip community-list standard 2_165_242 permit 65000:2 0:165 0:242 route-map calculator permit 37220 match community 2_165_242 set community 0:39930 ip community-list standard 2_165_228 permit 65000:2 0:165 0:228 ip community-list standard 2_171_220 permit 65000:2 0:171 0:220 ip community-list standard 2_180_209 permit 65000:2 0:180 0:209 ip community-list standard 2_190_198 permit 65000:2 0:190 0:198 route-map calculator permit 37221 match community 2_165_228 2_171_220 2_180_209 2_190_198 set community 0:37620 ip community-list standard 2_27_253 permit 65000:2 0:27 0:253 ip community-list standard 2_33_207 permit 65000:2 0:33 0:207 ip community-list standard 2_69_99 permit 65000:2 0:69 0:99 route-map calculator permit 37222 match community 2_27_253 2_33_207 2_69_99 set community 0:6831 ip community-list standard 2_43_249 permit 65000:2 0:43 0:249 ip community-list standard 2_83_129 permit 65000:2 0:83 0:129 route-map calculator permit 37223 match community 2_43_249 2_83_129 set community 0:10707 ip community-list standard 2_167_187 permit 65000:2 0:167 0:187 route-map calculator permit 37224 match community 2_167_187 set community 0:31229 ip community-list standard 2_148_205 permit 65000:2 0:148 0:205 ip community-list standard 2_164_185 permit 65000:2 0:164 0:185 route-map calculator permit 37225 match community 2_148_205 2_164_185 set community 0:30340 ip community-list standard 2_167_203 permit 65000:2 0:167 0:203 route-map calculator permit 37226 match community 2_167_203 set community 0:33901 ip community-list standard 2_105_157 permit 65000:2 0:105 0:157 route-map calculator permit 37227 match community 2_105_157 set community 0:16485 ip community-list standard 2_135_222 permit 65000:2 0:135 0:222 ip community-list standard 2_162_185 permit 65000:2 0:162 0:185 route-map calculator permit 37228 match community 2_135_222 2_162_185 set community 0:29970 ip community-list standard 2_152_212 permit 65000:2 0:152 0:212 route-map calculator permit 37229 match community 2_152_212 set community 0:32224 ip community-list standard 2_111_151 permit 65000:2 0:111 0:151 route-map calculator permit 37230 match community 2_111_151 set community 0:16761 ip community-list standard 2_131_175 permit 65000:2 0:131 0:175 route-map calculator permit 37231 match community 2_131_175 set community 0:22925 ip community-list standard 2_74_255 permit 65000:2 0:74 0:255 ip community-list standard 2_85_222 permit 65000:2 0:85 0:222 ip community-list standard 2_102_185 permit 65000:2 0:102 0:185 ip community-list standard 2_111_170 permit 65000:2 0:111 0:170 route-map calculator permit 37232 match community 2_74_255 2_85_222 2_102_185 2_111_170 set community 0:18870 ip community-list standard 2_6_202 permit 65000:2 0:6 0:202 ip community-list standard 2_12_101 permit 65000:2 0:12 0:101 route-map calculator permit 37233 match community 2_6_202 2_12_101 set community 0:1212 ip community-list standard 2_101_153 permit 65000:2 0:101 0:153 route-map calculator permit 37234 match community 2_101_153 set community 0:15453 ip community-list standard 2_28_134 permit 65000:2 0:28 0:134 ip community-list standard 2_56_67 permit 65000:2 0:56 0:67 route-map calculator permit 37235 match community 2_28_134 2_56_67 set community 0:3752 ip community-list standard 2_105_183 permit 65000:2 0:105 0:183 route-map calculator permit 37236 match community 2_105_183 set community 0:19215 ip community-list standard 2_54_131 permit 65000:2 0:54 0:131 route-map calculator permit 37237 match community 2_54_131 set community 0:7074 ip community-list standard 2_62_251 permit 65000:2 0:62 0:251 route-map calculator permit 37238 match community 2_62_251 set community 0:15562 ip community-list standard 2_147_169 permit 65000:2 0:147 0:169 route-map calculator permit 37239 match community 2_147_169 set community 0:24843 ip community-list standard 2_11_109 permit 65000:2 0:11 0:109 route-map calculator permit 37240 match community 2_11_109 set community 0:1199 ip community-list standard 1_1_152 permit 65000:1 0:1 0:152 ip community-list standard 2_1_153 permit 65000:2 0:1 0:153 ip community-list standard 1_2_151 permit 65000:1 0:2 0:151 ip community-list standard 2_3_51 permit 65000:2 0:3 0:51 ip community-list standard 1_3_150 permit 65000:1 0:3 0:150 ip community-list standard 1_4_149 permit 65000:1 0:4 0:149 ip community-list standard 1_5_148 permit 65000:1 0:5 0:148 ip community-list standard 1_6_147 permit 65000:1 0:6 0:147 ip community-list standard 1_7_146 permit 65000:1 0:7 0:146 ip community-list standard 1_8_145 permit 65000:1 0:8 0:145 ip community-list standard 2_9_17 permit 65000:2 0:9 0:17 ip community-list standard 1_9_144 permit 65000:1 0:9 0:144 ip community-list standard 1_10_143 permit 65000:1 0:10 0:143 ip community-list standard 1_11_142 permit 65000:1 0:11 0:142 ip community-list standard 1_12_141 permit 65000:1 0:12 0:141 ip community-list standard 1_13_140 permit 65000:1 0:13 0:140 ip community-list standard 1_14_139 permit 65000:1 0:14 0:139 ip community-list standard 1_15_138 permit 65000:1 0:15 0:138 ip community-list standard 1_16_137 permit 65000:1 0:16 0:137 ip community-list standard 1_17_136 permit 65000:1 0:17 0:136 ip community-list standard 1_18_135 permit 65000:1 0:18 0:135 ip community-list standard 1_19_134 permit 65000:1 0:19 0:134 ip community-list standard 1_20_133 permit 65000:1 0:20 0:133 ip community-list standard 1_21_132 permit 65000:1 0:21 0:132 ip community-list standard 1_22_131 permit 65000:1 0:22 0:131 ip community-list standard 1_23_130 permit 65000:1 0:23 0:130 ip community-list standard 1_24_129 permit 65000:1 0:24 0:129 ip community-list standard 1_25_128 permit 65000:1 0:25 0:128 ip community-list standard 1_26_127 permit 65000:1 0:26 0:127 ip community-list standard 1_27_126 permit 65000:1 0:27 0:126 ip community-list standard 1_28_125 permit 65000:1 0:28 0:125 ip community-list standard 1_29_124 permit 65000:1 0:29 0:124 ip community-list standard 1_30_123 permit 65000:1 0:30 0:123 ip community-list standard 1_31_122 permit 65000:1 0:31 0:122 ip community-list standard 1_32_121 permit 65000:1 0:32 0:121 ip community-list standard 1_33_120 permit 65000:1 0:33 0:120 ip community-list standard 1_34_119 permit 65000:1 0:34 0:119 ip community-list standard 1_35_118 permit 65000:1 0:35 0:118 ip community-list standard 1_36_117 permit 65000:1 0:36 0:117 ip community-list standard 1_37_116 permit 65000:1 0:37 0:116 ip community-list standard 1_38_115 permit 65000:1 0:38 0:115 ip community-list standard 1_39_114 permit 65000:1 0:39 0:114 ip community-list standard 1_40_113 permit 65000:1 0:40 0:113 ip community-list standard 1_41_112 permit 65000:1 0:41 0:112 ip community-list standard 1_42_111 permit 65000:1 0:42 0:111 ip community-list standard 1_43_110 permit 65000:1 0:43 0:110 ip community-list standard 1_44_109 permit 65000:1 0:44 0:109 ip community-list standard 1_45_108 permit 65000:1 0:45 0:108 ip community-list standard 1_46_107 permit 65000:1 0:46 0:107 ip community-list standard 1_47_106 permit 65000:1 0:47 0:106 ip community-list standard 1_48_105 permit 65000:1 0:48 0:105 ip community-list standard 1_49_104 permit 65000:1 0:49 0:104 ip community-list standard 1_50_103 permit 65000:1 0:50 0:103 ip community-list standard 1_51_102 permit 65000:1 0:51 0:102 ip community-list standard 1_52_101 permit 65000:1 0:52 0:101 ip community-list standard 1_53_100 permit 65000:1 0:53 0:100 ip community-list standard 1_54_99 permit 65000:1 0:54 0:99 ip community-list standard 1_55_98 permit 65000:1 0:55 0:98 ip community-list standard 1_56_97 permit 65000:1 0:56 0:97 ip community-list standard 1_57_96 permit 65000:1 0:57 0:96 ip community-list standard 1_58_95 permit 65000:1 0:58 0:95 ip community-list standard 1_59_94 permit 65000:1 0:59 0:94 ip community-list standard 1_60_93 permit 65000:1 0:60 0:93 ip community-list standard 1_61_92 permit 65000:1 0:61 0:92 ip community-list standard 1_62_91 permit 65000:1 0:62 0:91 ip community-list standard 1_63_90 permit 65000:1 0:63 0:90 ip community-list standard 1_64_89 permit 65000:1 0:64 0:89 ip community-list standard 1_65_88 permit 65000:1 0:65 0:88 ip community-list standard 1_66_87 permit 65000:1 0:66 0:87 ip community-list standard 1_67_86 permit 65000:1 0:67 0:86 ip community-list standard 1_68_85 permit 65000:1 0:68 0:85 ip community-list standard 1_69_84 permit 65000:1 0:69 0:84 ip community-list standard 1_70_83 permit 65000:1 0:70 0:83 ip community-list standard 1_71_82 permit 65000:1 0:71 0:82 ip community-list standard 1_72_81 permit 65000:1 0:72 0:81 ip community-list standard 1_73_80 permit 65000:1 0:73 0:80 ip community-list standard 1_74_79 permit 65000:1 0:74 0:79 ip community-list standard 1_75_78 permit 65000:1 0:75 0:78 ip community-list standard 1_76_77 permit 65000:1 0:76 0:77 ip community-list expanded c153 permit 1 ^65000:4_0:153_0:1$ ip community-list expanded c153 permit 2 ^65000:3_0:154_0:1$ ip community-list expanded c153 permit 3 ^65000:3_0:155_0:2$ ip community-list expanded c153 permit 4 ^65000:3_0:156_0:3$ ip community-list expanded c153 permit 5 ^65000:3_0:157_0:4$ ip community-list expanded c153 permit 6 ^65000:3_0:158_0:5$ ip community-list expanded c153 permit 7 ^65000:3_0:159_0:6$ ip community-list expanded c153 permit 8 ^65000:3_0:160_0:7$ ip community-list expanded c153 permit 9 ^65000:3_0:161_0:8$ ip community-list expanded c153 permit 10 ^65000:3_0:162_0:9$ ip community-list expanded c153 permit 11 ^65000:3_0:163_0:10$ ip community-list expanded c153 permit 12 ^65000:3_0:164_0:11$ ip community-list expanded c153 permit 13 ^65000:3_0:165_0:12$ ip community-list expanded c153 permit 14 ^65000:3_0:166_0:13$ ip community-list expanded c153 permit 15 ^65000:3_0:167_0:14$ ip community-list expanded c153 permit 16 ^65000:3_0:168_0:15$ ip community-list expanded c153 permit 17 ^65000:3_0:169_0:16$ ip community-list expanded c153 permit 18 ^65000:3_0:170_0:17$ ip community-list expanded c153 permit 19 ^65000:3_0:171_0:18$ ip community-list expanded c153 permit 20 ^65000:3_0:172_0:19$ ip community-list expanded c153 permit 21 ^65000:3_0:173_0:20$ ip community-list expanded c153 permit 22 ^65000:3_0:174_0:21$ ip community-list expanded c153 permit 23 ^65000:3_0:175_0:22$ ip community-list expanded c153 permit 24 ^65000:3_0:176_0:23$ ip community-list expanded c153 permit 25 ^65000:3_0:177_0:24$ ip community-list expanded c153 permit 26 ^65000:3_0:178_0:25$ ip community-list expanded c153 permit 27 ^65000:3_0:179_0:26$ ip community-list expanded c153 permit 28 ^65000:3_0:180_0:27$ ip community-list expanded c153 permit 29 ^65000:3_0:181_0:28$ ip community-list expanded c153 permit 30 ^65000:3_0:182_0:29$ ip community-list expanded c153 permit 31 ^65000:3_0:183_0:30$ ip community-list expanded c153 permit 32 ^65000:3_0:184_0:31$ ip community-list expanded c153 permit 33 ^65000:3_0:185_0:32$ ip community-list expanded c153 permit 34 ^65000:3_0:186_0:33$ ip community-list expanded c153 permit 35 ^65000:3_0:187_0:34$ ip community-list expanded c153 permit 36 ^65000:3_0:188_0:35$ ip community-list expanded c153 permit 37 ^65000:3_0:189_0:36$ ip community-list expanded c153 permit 38 ^65000:3_0:190_0:37$ ip community-list expanded c153 permit 39 ^65000:3_0:191_0:38$ ip community-list expanded c153 permit 40 ^65000:3_0:192_0:39$ ip community-list expanded c153 permit 41 ^65000:3_0:193_0:40$ ip community-list expanded c153 permit 42 ^65000:3_0:194_0:41$ ip community-list expanded c153 permit 43 ^65000:3_0:195_0:42$ ip community-list expanded c153 permit 44 ^65000:3_0:196_0:43$ ip community-list expanded c153 permit 45 ^65000:3_0:197_0:44$ ip community-list expanded c153 permit 46 ^65000:3_0:198_0:45$ ip community-list expanded c153 permit 47 ^65000:3_0:199_0:46$ ip community-list expanded c153 permit 48 ^65000:3_0:200_0:47$ ip community-list expanded c153 permit 49 ^65000:3_0:201_0:48$ ip community-list expanded c153 permit 50 ^65000:3_0:202_0:49$ ip community-list expanded c153 permit 51 ^65000:3_0:203_0:50$ ip community-list expanded c153 permit 52 ^65000:3_0:204_0:51$ ip community-list expanded c153 permit 53 ^65000:3_0:205_0:52$ ip community-list expanded c153 permit 54 ^65000:3_0:206_0:53$ ip community-list expanded c153 permit 55 ^65000:3_0:207_0:54$ ip community-list expanded c153 permit 56 ^65000:3_0:208_0:55$ ip community-list expanded c153 permit 57 ^65000:3_0:209_0:56$ ip community-list expanded c153 permit 58 ^65000:3_0:210_0:57$ ip community-list expanded c153 permit 59 ^65000:3_0:211_0:58$ ip community-list expanded c153 permit 60 ^65000:3_0:212_0:59$ ip community-list expanded c153 permit 61 ^65000:3_0:213_0:60$ ip community-list expanded c153 permit 62 ^65000:3_0:214_0:61$ ip community-list expanded c153 permit 63 ^65000:3_0:215_0:62$ ip community-list expanded c153 permit 64 ^65000:3_0:216_0:63$ ip community-list expanded c153 permit 65 ^65000:3_0:217_0:64$ ip community-list expanded c153 permit 66 ^65000:3_0:218_0:65$ ip community-list expanded c153 permit 67 ^65000:3_0:219_0:66$ ip community-list expanded c153 permit 68 ^65000:3_0:220_0:67$ ip community-list expanded c153 permit 69 ^65000:3_0:221_0:68$ ip community-list expanded c153 permit 70 ^65000:3_0:222_0:69$ ip community-list expanded c153 permit 71 ^65000:3_0:223_0:70$ ip community-list expanded c153 permit 72 ^65000:3_0:224_0:71$ ip community-list expanded c153 permit 73 ^65000:3_0:225_0:72$ ip community-list expanded c153 permit 74 ^65000:3_0:226_0:73$ ip community-list expanded c153 permit 75 ^65000:3_0:227_0:74$ ip community-list expanded c153 permit 76 ^65000:3_0:228_0:75$ ip community-list expanded c153 permit 77 ^65000:3_0:229_0:76$ ip community-list expanded c153 permit 78 ^65000:3_0:230_0:77$ ip community-list expanded c153 permit 79 ^65000:3_0:231_0:78$ ip community-list expanded c153 permit 80 ^65000:3_0:232_0:79$ ip community-list expanded c153 permit 81 ^65000:3_0:233_0:80$ ip community-list expanded c153 permit 82 ^65000:3_0:234_0:81$ ip community-list expanded c153 permit 83 ^65000:3_0:235_0:82$ ip community-list expanded c153 permit 84 ^65000:3_0:236_0:83$ ip community-list expanded c153 permit 85 ^65000:3_0:237_0:84$ ip community-list expanded c153 permit 86 ^65000:3_0:238_0:85$ ip community-list expanded c153 permit 87 ^65000:3_0:239_0:86$ ip community-list expanded c153 permit 88 ^65000:3_0:240_0:87$ ip community-list expanded c153 permit 89 ^65000:3_0:241_0:88$ ip community-list expanded c153 permit 90 ^65000:3_0:242_0:89$ ip community-list expanded c153 permit 91 ^65000:3_0:243_0:90$ ip community-list expanded c153 permit 92 ^65000:3_0:244_0:91$ ip community-list expanded c153 permit 93 ^65000:3_0:245_0:92$ ip community-list expanded c153 permit 94 ^65000:3_0:246_0:93$ ip community-list expanded c153 permit 95 ^65000:3_0:247_0:94$ ip community-list expanded c153 permit 96 ^65000:3_0:248_0:95$ ip community-list expanded c153 permit 97 ^65000:3_0:249_0:96$ ip community-list expanded c153 permit 98 ^65000:3_0:250_0:97$ ip community-list expanded c153 permit 99 ^65000:3_0:251_0:98$ ip community-list expanded c153 permit 100 ^65000:3_0:252_0:99$ ip community-list expanded c153 permit 101 ^65000:3_0:253_0:100$ ip community-list expanded c153 permit 102 ^65000:3_0:254_0:101$ ip community-list expanded c153 permit 103 ^65000:3_0:255_0:102$ ip community-list expanded c153 permit 104 ^65000:3_0:256_0:103$ route-map calculator permit 37241 match community 1_1_152 2_1_153 1_2_151 2_3_51 1_3_150 set community 0:153 route-map calculator permit 37242 match community 1_4_149 1_5_148 1_6_147 1_7_146 1_8_145 set community 0:153 route-map calculator permit 37243 match community 2_9_17 1_9_144 1_10_143 1_11_142 1_12_141 set community 0:153 route-map calculator permit 37244 match community 1_13_140 1_14_139 1_15_138 1_16_137 1_17_136 set community 0:153 route-map calculator permit 37245 match community 1_18_135 1_19_134 1_20_133 1_21_132 1_22_131 set community 0:153 route-map calculator permit 37246 match community 1_23_130 1_24_129 1_25_128 1_26_127 1_27_126 set community 0:153 route-map calculator permit 37247 match community 1_28_125 1_29_124 1_30_123 1_31_122 1_32_121 set community 0:153 route-map calculator permit 37248 match community 1_33_120 1_34_119 1_35_118 1_36_117 1_37_116 set community 0:153 route-map calculator permit 37249 match community 1_38_115 1_39_114 1_40_113 1_41_112 1_42_111 set community 0:153 route-map calculator permit 37250 match community 1_43_110 1_44_109 1_45_108 1_46_107 1_47_106 set community 0:153 route-map calculator permit 37251 match community 1_48_105 1_49_104 1_50_103 1_51_102 1_52_101 set community 0:153 route-map calculator permit 37252 match community 1_53_100 1_54_99 1_55_98 1_56_97 1_57_96 set community 0:153 route-map calculator permit 37253 match community 1_58_95 1_59_94 1_60_93 1_61_92 1_62_91 set community 0:153 route-map calculator permit 37254 match community 1_63_90 1_64_89 1_65_88 1_66_87 1_67_86 set community 0:153 route-map calculator permit 37255 match community 1_68_85 1_69_84 1_70_83 1_71_82 1_72_81 set community 0:153 route-map calculator permit 37256 match community 1_73_80 1_74_79 1_75_78 1_76_77 c4_153_1 set community 0:153 route-map calculator permit 37257 match community c3_154_1 c3_155_2 c3_156_3 c3_157_4 c3_158_5 set community 0:153 route-map calculator permit 37258 match community c3_159_6 c3_160_7 c3_161_8 c3_162_9 c3_163_10 set community 0:153 route-map calculator permit 37259 match community c3_164_11 c3_165_12 c3_166_13 c3_167_14 c3_168_15 set community 0:153 route-map calculator permit 37260 match community c3_169_16 c3_170_17 c3_171_18 c3_172_19 c3_173_20 set community 0:153 route-map calculator permit 37261 match community c3_174_21 c3_175_22 c3_176_23 c3_177_24 c3_178_25 set community 0:153 route-map calculator permit 37262 match community c3_179_26 c3_180_27 c3_181_28 c3_182_29 c3_183_30 set community 0:153 route-map calculator permit 37263 match community c3_184_31 c3_185_32 c3_186_33 c3_187_34 c3_188_35 set community 0:153 route-map calculator permit 37264 match community c3_189_36 c3_190_37 c3_191_38 c3_192_39 c3_193_40 set community 0:153 route-map calculator permit 37265 match community c3_194_41 c3_195_42 c3_196_43 c3_197_44 c3_198_45 set community 0:153 route-map calculator permit 37266 match community c3_199_46 c3_200_47 c3_201_48 c3_202_49 c3_203_50 set community 0:153 route-map calculator permit 37267 match community c3_204_51 c3_205_52 c3_206_53 c3_207_54 c3_208_55 set community 0:153 route-map calculator permit 37268 match community c3_209_56 c3_210_57 c3_211_58 c3_212_59 c3_213_60 set community 0:153 route-map calculator permit 37269 match community c3_214_61 c3_215_62 c3_216_63 c3_217_64 c3_218_65 set community 0:153 route-map calculator permit 37270 match community c3_219_66 c3_220_67 c3_221_68 c3_222_69 c3_223_70 set community 0:153 route-map calculator permit 37271 match community c3_224_71 c3_225_72 c3_226_73 c3_227_74 c3_228_75 set community 0:153 route-map calculator permit 37272 match community c3_229_76 c3_230_77 c3_231_78 c3_232_79 c3_233_80 set community 0:153 route-map calculator permit 37273 match community c3_234_81 c3_235_82 c3_236_83 c3_237_84 c3_238_85 set community 0:153 route-map calculator permit 37274 match community c3_239_86 c3_240_87 c3_241_88 c3_242_89 c3_243_90 set community 0:153 route-map calculator permit 37275 match community c3_244_91 c3_245_92 c3_246_93 c3_247_94 c3_248_95 set community 0:153 route-map calculator permit 37276 match community c3_249_96 c3_250_97 c3_251_98 c3_252_99 c3_253_100 set community 0:153 route-map calculator permit 37277 match community c3_254_101 c3_255_102 c3_256_103 set community 0:153 ip community-list standard 2_80_212 permit 65000:2 0:80 0:212 ip community-list standard 2_106_160 permit 65000:2 0:106 0:160 route-map calculator permit 37278 match community 2_80_212 2_106_160 set community 0:16960 ip community-list standard 2_59_193 permit 65000:2 0:59 0:193 route-map calculator permit 37279 match community 2_59_193 set community 0:11387 ip community-list standard 2_191_228 permit 65000:2 0:191 0:228 route-map calculator permit 37280 match community 2_191_228 set community 0:43548 ip community-list standard 2_142_226 permit 65000:2 0:142 0:226 route-map calculator permit 37281 match community 2_142_226 set community 0:32092 ip community-list standard 2_9_145 permit 65000:2 0:9 0:145 ip community-list standard 2_15_87 permit 65000:2 0:15 0:87 ip community-list standard 2_29_45 permit 65000:2 0:29 0:45 route-map calculator permit 37282 match community 2_9_145 2_15_87 2_29_45 set community 0:1305 ip community-list standard 2_75_246 permit 65000:2 0:75 0:246 ip community-list standard 2_82_225 permit 65000:2 0:82 0:225 ip community-list standard 2_90_205 permit 65000:2 0:90 0:205 ip community-list standard 2_123_150 permit 65000:2 0:123 0:150 route-map calculator permit 37283 match community 2_75_246 2_82_225 2_90_205 2_123_150 set community 0:18450 ip community-list standard 2_25_159 permit 65000:2 0:25 0:159 ip community-list standard 2_53_75 permit 65000:2 0:53 0:75 route-map calculator permit 37284 match community 2_25_159 2_53_75 set community 0:3975 ip community-list standard 2_22_173 permit 65000:2 0:22 0:173 route-map calculator permit 37285 match community 2_22_173 set community 0:3806 ip community-list standard 2_151_177 permit 65000:2 0:151 0:177 route-map calculator permit 37286 match community 2_151_177 set community 0:26727 ip community-list standard 2_88_223 permit 65000:2 0:88 0:223 route-map calculator permit 37287 match community 2_88_223 set community 0:19624 ip community-list standard 2_127_151 permit 65000:2 0:127 0:151 route-map calculator permit 37288 match community 2_127_151 set community 0:19177 ip community-list standard 2_157_177 permit 65000:2 0:157 0:177 route-map calculator permit 37289 match community 2_157_177 set community 0:27789 ip community-list standard 2_191_216 permit 65000:2 0:191 0:216 route-map calculator permit 37290 match community 2_191_216 set community 0:41256 ip community-list standard 2_54_137 permit 65000:2 0:54 0:137 route-map calculator permit 37291 match community 2_54_137 set community 0:7398 ip community-list standard 2_8_241 permit 65000:2 0:8 0:241 route-map calculator permit 37292 match community 2_8_241 set community 0:1928 ip community-list standard 2_2_246 permit 65000:2 0:2 0:246 ip community-list standard 2_3_164 permit 65000:2 0:3 0:164 ip community-list standard 2_4_123 permit 65000:2 0:4 0:123 ip community-list standard 2_6_82 permit 65000:2 0:6 0:82 ip community-list standard 2_12_41 permit 65000:2 0:12 0:41 ip community-list standard 1_236_256 permit 65000:1 0:236 0:256 ip community-list standard 1_237_255 permit 65000:1 0:237 0:255 ip community-list standard 1_238_254 permit 65000:1 0:238 0:254 ip community-list standard 1_239_253 permit 65000:1 0:239 0:253 ip community-list standard 1_240_252 permit 65000:1 0:240 0:252 ip community-list standard 1_241_251 permit 65000:1 0:241 0:251 ip community-list standard 1_242_250 permit 65000:1 0:242 0:250 ip community-list standard 1_243_249 permit 65000:1 0:243 0:249 ip community-list standard 1_244_248 permit 65000:1 0:244 0:248 ip community-list standard 1_245_247 permit 65000:1 0:245 0:247 ip community-list standard 1_246_246 permit 65000:1 0:246 0:246 route-map calculator permit 37293 match community 2_2_246 2_3_164 2_4_123 2_6_82 2_12_41 set community 0:492 route-map calculator permit 37294 match community 1_236_256 1_237_255 1_238_254 1_239_253 1_240_252 set community 0:492 route-map calculator permit 37295 match community 1_241_251 1_242_250 1_243_249 1_244_248 1_245_247 set community 0:492 route-map calculator permit 37296 match community 1_246_246 set community 0:492 ip community-list standard 2_37_157 permit 65000:2 0:37 0:157 route-map calculator permit 37297 match community 2_37_157 set community 0:5809 ip community-list standard 2_82_196 permit 65000:2 0:82 0:196 ip community-list standard 2_98_164 permit 65000:2 0:98 0:164 route-map calculator permit 37298 match community 2_82_196 2_98_164 set community 0:16072 ip community-list standard 2_109_253 permit 65000:2 0:109 0:253 route-map calculator permit 37299 match community 2_109_253 set community 0:27577 ip community-list standard 2_230_256 permit 65000:2 0:230 0:256 route-map calculator permit 37300 match community 2_230_256 set community 0:58880 ip community-list standard 2_110_157 permit 65000:2 0:110 0:157 route-map calculator permit 37301 match community 2_110_157 set community 0:17270 ip community-list standard 1_1_161 permit 65000:1 0:1 0:161 ip community-list standard 2_1_162 permit 65000:2 0:1 0:162 ip community-list standard 2_2_81 permit 65000:2 0:2 0:81 ip community-list standard 1_2_160 permit 65000:1 0:2 0:160 ip community-list standard 2_3_54 permit 65000:2 0:3 0:54 ip community-list standard 1_3_159 permit 65000:1 0:3 0:159 ip community-list standard 1_4_158 permit 65000:1 0:4 0:158 ip community-list standard 1_5_157 permit 65000:1 0:5 0:157 ip community-list standard 2_6_27 permit 65000:2 0:6 0:27 ip community-list standard 1_6_156 permit 65000:1 0:6 0:156 ip community-list standard 1_7_155 permit 65000:1 0:7 0:155 ip community-list standard 1_8_154 permit 65000:1 0:8 0:154 ip community-list standard 2_9_18 permit 65000:2 0:9 0:18 ip community-list standard 1_9_153 permit 65000:1 0:9 0:153 ip community-list standard 1_10_152 permit 65000:1 0:10 0:152 ip community-list standard 1_11_151 permit 65000:1 0:11 0:151 ip community-list standard 1_12_150 permit 65000:1 0:12 0:150 ip community-list standard 1_13_149 permit 65000:1 0:13 0:149 ip community-list standard 1_14_148 permit 65000:1 0:14 0:148 ip community-list standard 1_15_147 permit 65000:1 0:15 0:147 ip community-list standard 1_16_146 permit 65000:1 0:16 0:146 ip community-list standard 1_17_145 permit 65000:1 0:17 0:145 ip community-list standard 1_18_144 permit 65000:1 0:18 0:144 ip community-list standard 1_19_143 permit 65000:1 0:19 0:143 ip community-list standard 1_20_142 permit 65000:1 0:20 0:142 ip community-list standard 1_21_141 permit 65000:1 0:21 0:141 ip community-list standard 1_22_140 permit 65000:1 0:22 0:140 ip community-list standard 1_23_139 permit 65000:1 0:23 0:139 ip community-list standard 1_24_138 permit 65000:1 0:24 0:138 ip community-list standard 1_25_137 permit 65000:1 0:25 0:137 ip community-list standard 1_26_136 permit 65000:1 0:26 0:136 ip community-list standard 1_27_135 permit 65000:1 0:27 0:135 ip community-list standard 1_28_134 permit 65000:1 0:28 0:134 ip community-list standard 1_29_133 permit 65000:1 0:29 0:133 ip community-list standard 1_30_132 permit 65000:1 0:30 0:132 ip community-list standard 1_31_131 permit 65000:1 0:31 0:131 ip community-list standard 1_32_130 permit 65000:1 0:32 0:130 ip community-list standard 1_33_129 permit 65000:1 0:33 0:129 ip community-list standard 1_34_128 permit 65000:1 0:34 0:128 ip community-list standard 1_35_127 permit 65000:1 0:35 0:127 ip community-list standard 1_36_126 permit 65000:1 0:36 0:126 ip community-list standard 1_37_125 permit 65000:1 0:37 0:125 ip community-list standard 1_38_124 permit 65000:1 0:38 0:124 ip community-list standard 1_39_123 permit 65000:1 0:39 0:123 ip community-list standard 1_40_122 permit 65000:1 0:40 0:122 ip community-list standard 1_41_121 permit 65000:1 0:41 0:121 ip community-list standard 1_42_120 permit 65000:1 0:42 0:120 ip community-list standard 1_43_119 permit 65000:1 0:43 0:119 ip community-list standard 1_44_118 permit 65000:1 0:44 0:118 ip community-list standard 1_45_117 permit 65000:1 0:45 0:117 ip community-list standard 1_46_116 permit 65000:1 0:46 0:116 ip community-list standard 1_47_115 permit 65000:1 0:47 0:115 ip community-list standard 1_48_114 permit 65000:1 0:48 0:114 ip community-list standard 1_49_113 permit 65000:1 0:49 0:113 ip community-list standard 1_50_112 permit 65000:1 0:50 0:112 ip community-list standard 1_51_111 permit 65000:1 0:51 0:111 ip community-list standard 1_52_110 permit 65000:1 0:52 0:110 ip community-list standard 1_53_109 permit 65000:1 0:53 0:109 ip community-list standard 1_54_108 permit 65000:1 0:54 0:108 ip community-list standard 1_55_107 permit 65000:1 0:55 0:107 ip community-list standard 1_56_106 permit 65000:1 0:56 0:106 ip community-list standard 1_57_105 permit 65000:1 0:57 0:105 ip community-list standard 1_58_104 permit 65000:1 0:58 0:104 ip community-list standard 1_59_103 permit 65000:1 0:59 0:103 ip community-list standard 1_60_102 permit 65000:1 0:60 0:102 ip community-list standard 1_61_101 permit 65000:1 0:61 0:101 ip community-list standard 1_62_100 permit 65000:1 0:62 0:100 ip community-list standard 1_63_99 permit 65000:1 0:63 0:99 ip community-list standard 1_64_98 permit 65000:1 0:64 0:98 ip community-list standard 1_65_97 permit 65000:1 0:65 0:97 ip community-list standard 1_66_96 permit 65000:1 0:66 0:96 ip community-list standard 1_67_95 permit 65000:1 0:67 0:95 ip community-list standard 1_68_94 permit 65000:1 0:68 0:94 ip community-list standard 1_69_93 permit 65000:1 0:69 0:93 ip community-list standard 1_70_92 permit 65000:1 0:70 0:92 ip community-list standard 1_71_91 permit 65000:1 0:71 0:91 ip community-list standard 1_72_90 permit 65000:1 0:72 0:90 ip community-list standard 1_73_89 permit 65000:1 0:73 0:89 ip community-list standard 1_74_88 permit 65000:1 0:74 0:88 ip community-list standard 1_75_87 permit 65000:1 0:75 0:87 ip community-list standard 1_76_86 permit 65000:1 0:76 0:86 ip community-list standard 1_77_85 permit 65000:1 0:77 0:85 ip community-list standard 1_78_84 permit 65000:1 0:78 0:84 ip community-list standard 1_79_83 permit 65000:1 0:79 0:83 ip community-list standard 1_80_82 permit 65000:1 0:80 0:82 ip community-list standard 1_81_81 permit 65000:1 0:81 0:81 ip community-list expanded c162 permit 1 ^65000:4_0:162_0:1$ ip community-list expanded c162 permit 2 ^65000:3_0:163_0:1$ ip community-list expanded c162 permit 3 ^65000:3_0:164_0:2$ ip community-list expanded c162 permit 4 ^65000:3_0:165_0:3$ ip community-list expanded c162 permit 5 ^65000:3_0:166_0:4$ ip community-list expanded c162 permit 6 ^65000:3_0:167_0:5$ ip community-list expanded c162 permit 7 ^65000:3_0:168_0:6$ ip community-list expanded c162 permit 8 ^65000:3_0:169_0:7$ ip community-list expanded c162 permit 9 ^65000:3_0:170_0:8$ ip community-list expanded c162 permit 10 ^65000:3_0:171_0:9$ ip community-list expanded c162 permit 11 ^65000:3_0:172_0:10$ ip community-list expanded c162 permit 12 ^65000:3_0:173_0:11$ ip community-list expanded c162 permit 13 ^65000:3_0:174_0:12$ ip community-list expanded c162 permit 14 ^65000:3_0:175_0:13$ ip community-list expanded c162 permit 15 ^65000:3_0:176_0:14$ ip community-list expanded c162 permit 16 ^65000:3_0:177_0:15$ ip community-list expanded c162 permit 17 ^65000:3_0:178_0:16$ ip community-list expanded c162 permit 18 ^65000:3_0:179_0:17$ ip community-list expanded c162 permit 19 ^65000:3_0:180_0:18$ ip community-list expanded c162 permit 20 ^65000:3_0:181_0:19$ ip community-list expanded c162 permit 21 ^65000:3_0:182_0:20$ ip community-list expanded c162 permit 22 ^65000:3_0:183_0:21$ ip community-list expanded c162 permit 23 ^65000:3_0:184_0:22$ ip community-list expanded c162 permit 24 ^65000:3_0:185_0:23$ ip community-list expanded c162 permit 25 ^65000:3_0:186_0:24$ ip community-list expanded c162 permit 26 ^65000:3_0:187_0:25$ ip community-list expanded c162 permit 27 ^65000:3_0:188_0:26$ ip community-list expanded c162 permit 28 ^65000:3_0:189_0:27$ ip community-list expanded c162 permit 29 ^65000:3_0:190_0:28$ ip community-list expanded c162 permit 30 ^65000:3_0:191_0:29$ ip community-list expanded c162 permit 31 ^65000:3_0:192_0:30$ ip community-list expanded c162 permit 32 ^65000:3_0:193_0:31$ ip community-list expanded c162 permit 33 ^65000:3_0:194_0:32$ ip community-list expanded c162 permit 34 ^65000:3_0:195_0:33$ ip community-list expanded c162 permit 35 ^65000:3_0:196_0:34$ ip community-list expanded c162 permit 36 ^65000:3_0:197_0:35$ ip community-list expanded c162 permit 37 ^65000:3_0:198_0:36$ ip community-list expanded c162 permit 38 ^65000:3_0:199_0:37$ ip community-list expanded c162 permit 39 ^65000:3_0:200_0:38$ ip community-list expanded c162 permit 40 ^65000:3_0:201_0:39$ ip community-list expanded c162 permit 41 ^65000:3_0:202_0:40$ ip community-list expanded c162 permit 42 ^65000:3_0:203_0:41$ ip community-list expanded c162 permit 43 ^65000:3_0:204_0:42$ ip community-list expanded c162 permit 44 ^65000:3_0:205_0:43$ ip community-list expanded c162 permit 45 ^65000:3_0:206_0:44$ ip community-list expanded c162 permit 46 ^65000:3_0:207_0:45$ ip community-list expanded c162 permit 47 ^65000:3_0:208_0:46$ ip community-list expanded c162 permit 48 ^65000:3_0:209_0:47$ ip community-list expanded c162 permit 49 ^65000:3_0:210_0:48$ ip community-list expanded c162 permit 50 ^65000:3_0:211_0:49$ ip community-list expanded c162 permit 51 ^65000:3_0:212_0:50$ ip community-list expanded c162 permit 52 ^65000:3_0:213_0:51$ ip community-list expanded c162 permit 53 ^65000:3_0:214_0:52$ ip community-list expanded c162 permit 54 ^65000:3_0:215_0:53$ ip community-list expanded c162 permit 55 ^65000:3_0:216_0:54$ ip community-list expanded c162 permit 56 ^65000:3_0:217_0:55$ ip community-list expanded c162 permit 57 ^65000:3_0:218_0:56$ ip community-list expanded c162 permit 58 ^65000:3_0:219_0:57$ ip community-list expanded c162 permit 59 ^65000:3_0:220_0:58$ ip community-list expanded c162 permit 60 ^65000:3_0:221_0:59$ ip community-list expanded c162 permit 61 ^65000:3_0:222_0:60$ ip community-list expanded c162 permit 62 ^65000:3_0:223_0:61$ ip community-list expanded c162 permit 63 ^65000:3_0:224_0:62$ ip community-list expanded c162 permit 64 ^65000:3_0:225_0:63$ ip community-list expanded c162 permit 65 ^65000:3_0:226_0:64$ ip community-list expanded c162 permit 66 ^65000:3_0:227_0:65$ ip community-list expanded c162 permit 67 ^65000:3_0:228_0:66$ ip community-list expanded c162 permit 68 ^65000:3_0:229_0:67$ ip community-list expanded c162 permit 69 ^65000:3_0:230_0:68$ ip community-list expanded c162 permit 70 ^65000:3_0:231_0:69$ ip community-list expanded c162 permit 71 ^65000:3_0:232_0:70$ ip community-list expanded c162 permit 72 ^65000:3_0:233_0:71$ ip community-list expanded c162 permit 73 ^65000:3_0:234_0:72$ ip community-list expanded c162 permit 74 ^65000:3_0:235_0:73$ ip community-list expanded c162 permit 75 ^65000:3_0:236_0:74$ ip community-list expanded c162 permit 76 ^65000:3_0:237_0:75$ ip community-list expanded c162 permit 77 ^65000:3_0:238_0:76$ ip community-list expanded c162 permit 78 ^65000:3_0:239_0:77$ ip community-list expanded c162 permit 79 ^65000:3_0:240_0:78$ ip community-list expanded c162 permit 80 ^65000:3_0:241_0:79$ ip community-list expanded c162 permit 81 ^65000:3_0:242_0:80$ ip community-list expanded c162 permit 82 ^65000:3_0:243_0:81$ ip community-list expanded c162 permit 83 ^65000:3_0:244_0:82$ ip community-list expanded c162 permit 84 ^65000:3_0:245_0:83$ ip community-list expanded c162 permit 85 ^65000:3_0:246_0:84$ ip community-list expanded c162 permit 86 ^65000:3_0:247_0:85$ ip community-list expanded c162 permit 87 ^65000:3_0:248_0:86$ ip community-list expanded c162 permit 88 ^65000:3_0:249_0:87$ ip community-list expanded c162 permit 89 ^65000:3_0:250_0:88$ ip community-list expanded c162 permit 90 ^65000:3_0:251_0:89$ ip community-list expanded c162 permit 91 ^65000:3_0:252_0:90$ ip community-list expanded c162 permit 92 ^65000:3_0:253_0:91$ ip community-list expanded c162 permit 93 ^65000:3_0:254_0:92$ ip community-list expanded c162 permit 94 ^65000:3_0:255_0:93$ ip community-list expanded c162 permit 95 ^65000:3_0:256_0:94$ route-map calculator permit 37302 match community 1_1_161 2_1_162 2_2_81 1_2_160 2_3_54 set community 0:162 route-map calculator permit 37303 match community 1_3_159 1_4_158 1_5_157 2_6_27 1_6_156 set community 0:162 route-map calculator permit 37304 match community 1_7_155 1_8_154 2_9_18 1_9_153 1_10_152 set community 0:162 route-map calculator permit 37305 match community 1_11_151 1_12_150 1_13_149 1_14_148 1_15_147 set community 0:162 route-map calculator permit 37306 match community 1_16_146 1_17_145 1_18_144 1_19_143 1_20_142 set community 0:162 route-map calculator permit 37307 match community 1_21_141 1_22_140 1_23_139 1_24_138 1_25_137 set community 0:162 route-map calculator permit 37308 match community 1_26_136 1_27_135 1_28_134 1_29_133 1_30_132 set community 0:162 route-map calculator permit 37309 match community 1_31_131 1_32_130 1_33_129 1_34_128 1_35_127 set community 0:162 route-map calculator permit 37310 match community 1_36_126 1_37_125 1_38_124 1_39_123 1_40_122 set community 0:162 route-map calculator permit 37311 match community 1_41_121 1_42_120 1_43_119 1_44_118 1_45_117 set community 0:162 route-map calculator permit 37312 match community 1_46_116 1_47_115 1_48_114 1_49_113 1_50_112 set community 0:162 route-map calculator permit 37313 match community 1_51_111 1_52_110 1_53_109 1_54_108 1_55_107 set community 0:162 route-map calculator permit 37314 match community 1_56_106 1_57_105 1_58_104 1_59_103 1_60_102 set community 0:162 route-map calculator permit 37315 match community 1_61_101 1_62_100 1_63_99 1_64_98 1_65_97 set community 0:162 route-map calculator permit 37316 match community 1_66_96 1_67_95 1_68_94 1_69_93 1_70_92 set community 0:162 route-map calculator permit 37317 match community 1_71_91 1_72_90 1_73_89 1_74_88 1_75_87 set community 0:162 route-map calculator permit 37318 match community 1_76_86 1_77_85 1_78_84 1_79_83 1_80_82 set community 0:162 route-map calculator permit 37319 match community 1_81_81 c4_162_1 c3_163_1 c3_164_2 c3_165_3 set community 0:162 route-map calculator permit 37320 match community c3_166_4 c3_167_5 c3_168_6 c3_169_7 c3_170_8 set community 0:162 route-map calculator permit 37321 match community c3_171_9 c3_172_10 c3_173_11 c3_174_12 c3_175_13 set community 0:162 route-map calculator permit 37322 match community c3_176_14 c3_177_15 c3_178_16 c3_179_17 c3_180_18 set community 0:162 route-map calculator permit 37323 match community c3_181_19 c3_182_20 c3_183_21 c3_184_22 c3_185_23 set community 0:162 route-map calculator permit 37324 match community c3_186_24 c3_187_25 c3_188_26 c3_189_27 c3_190_28 set community 0:162 route-map calculator permit 37325 match community c3_191_29 c3_192_30 c3_193_31 c3_194_32 c3_195_33 set community 0:162 route-map calculator permit 37326 match community c3_196_34 c3_197_35 c3_198_36 c3_199_37 c3_200_38 set community 0:162 route-map calculator permit 37327 match community c3_201_39 c3_202_40 c3_203_41 c3_204_42 c3_205_43 set community 0:162 route-map calculator permit 37328 match community c3_206_44 c3_207_45 c3_208_46 c3_209_47 c3_210_48 set community 0:162 route-map calculator permit 37329 match community c3_211_49 c3_212_50 c3_213_51 c3_214_52 c3_215_53 set community 0:162 route-map calculator permit 37330 match community c3_216_54 c3_217_55 c3_218_56 c3_219_57 c3_220_58 set community 0:162 route-map calculator permit 37331 match community c3_221_59 c3_222_60 c3_223_61 c3_224_62 c3_225_63 set community 0:162 route-map calculator permit 37332 match community c3_226_64 c3_227_65 c3_228_66 c3_229_67 c3_230_68 set community 0:162 route-map calculator permit 37333 match community c3_231_69 c3_232_70 c3_233_71 c3_234_72 c3_235_73 set community 0:162 route-map calculator permit 37334 match community c3_236_74 c3_237_75 c3_238_76 c3_239_77 c3_240_78 set community 0:162 route-map calculator permit 37335 match community c3_241_79 c3_242_80 c3_243_81 c3_244_82 c3_245_83 set community 0:162 route-map calculator permit 37336 match community c3_246_84 c3_247_85 c3_248_86 c3_249_87 c3_250_88 set community 0:162 route-map calculator permit 37337 match community c3_251_89 c3_252_90 c3_253_91 c3_254_92 c3_255_93 set community 0:162 route-map calculator permit 37338 match community c3_256_94 set community 0:162 ip community-list standard 2_80_250 permit 65000:2 0:80 0:250 ip community-list standard 2_100_200 permit 65000:2 0:100 0:200 ip community-list standard 2_125_160 permit 65000:2 0:125 0:160 route-map calculator permit 37339 match community 2_80_250 2_100_200 2_125_160 set community 0:20000 ip community-list standard 2_104_169 permit 65000:2 0:104 0:169 route-map calculator permit 37340 match community 2_104_169 set community 0:17576 ip community-list standard 2_160_249 permit 65000:2 0:160 0:249 ip community-list standard 2_166_240 permit 65000:2 0:166 0:240 route-map calculator permit 37341 match community 2_160_249 2_166_240 set community 0:39840 ip community-list standard 2_156_248 permit 65000:2 0:156 0:248 ip community-list standard 2_186_208 permit 65000:2 0:186 0:208 route-map calculator permit 37342 match community 2_156_248 2_186_208 set community 0:38688 ip community-list standard 2_191_243 permit 65000:2 0:191 0:243 route-map calculator permit 37343 match community 2_191_243 set community 0:46413 ip community-list standard 2_13_235 permit 65000:2 0:13 0:235 ip community-list standard 2_47_65 permit 65000:2 0:47 0:65 route-map calculator permit 37344 match community 2_13_235 2_47_65 set community 0:3055 ip community-list standard 2_135_173 permit 65000:2 0:135 0:173 route-map calculator permit 37345 match community 2_135_173 set community 0:23355 ip community-list standard 2_240_241 permit 65000:2 0:240 0:241 route-map calculator permit 37346 match community 2_240_241 set community 0:57840 ip community-list standard 2_6_245 permit 65000:2 0:6 0:245 ip community-list standard 2_7_210 permit 65000:2 0:7 0:210 ip community-list standard 2_10_147 permit 65000:2 0:10 0:147 ip community-list standard 2_14_105 permit 65000:2 0:14 0:105 ip community-list standard 2_15_98 permit 65000:2 0:15 0:98 ip community-list standard 2_21_70 permit 65000:2 0:21 0:70 ip community-list standard 2_30_49 permit 65000:2 0:30 0:49 ip community-list standard 2_35_42 permit 65000:2 0:35 0:42 route-map calculator permit 37347 match community 2_6_245 2_7_210 2_10_147 2_14_105 2_15_98 set community 0:1470 route-map calculator permit 37348 match community 2_21_70 2_30_49 2_35_42 set community 0:1470 ip community-list standard 2_71_139 permit 65000:2 0:71 0:139 route-map calculator permit 37349 match community 2_71_139 set community 0:9869 ip community-list standard 2_79_249 permit 65000:2 0:79 0:249 ip community-list standard 2_83_237 permit 65000:2 0:83 0:237 route-map calculator permit 37350 match community 2_79_249 2_83_237 set community 0:19671 ip community-list standard 2_34_219 permit 65000:2 0:34 0:219 ip community-list standard 2_51_146 permit 65000:2 0:51 0:146 ip community-list standard 2_73_102 permit 65000:2 0:73 0:102 route-map calculator permit 37351 match community 2_34_219 2_51_146 2_73_102 set community 0:7446 ip community-list standard 1_1_68 permit 65000:1 0:1 0:68 ip community-list standard 2_1_69 permit 65000:2 0:1 0:69 ip community-list standard 1_2_67 permit 65000:1 0:2 0:67 ip community-list standard 2_3_23 permit 65000:2 0:3 0:23 ip community-list standard 1_3_66 permit 65000:1 0:3 0:66 ip community-list standard 1_4_65 permit 65000:1 0:4 0:65 ip community-list standard 1_5_64 permit 65000:1 0:5 0:64 ip community-list standard 1_6_63 permit 65000:1 0:6 0:63 ip community-list standard 1_7_62 permit 65000:1 0:7 0:62 ip community-list standard 1_8_61 permit 65000:1 0:8 0:61 ip community-list standard 1_9_60 permit 65000:1 0:9 0:60 ip community-list standard 1_10_59 permit 65000:1 0:10 0:59 ip community-list standard 1_11_58 permit 65000:1 0:11 0:58 ip community-list standard 1_12_57 permit 65000:1 0:12 0:57 ip community-list standard 1_13_56 permit 65000:1 0:13 0:56 ip community-list standard 1_14_55 permit 65000:1 0:14 0:55 ip community-list standard 1_15_54 permit 65000:1 0:15 0:54 ip community-list standard 1_16_53 permit 65000:1 0:16 0:53 ip community-list standard 1_17_52 permit 65000:1 0:17 0:52 ip community-list standard 1_18_51 permit 65000:1 0:18 0:51 ip community-list standard 1_19_50 permit 65000:1 0:19 0:50 ip community-list standard 1_20_49 permit 65000:1 0:20 0:49 ip community-list standard 1_21_48 permit 65000:1 0:21 0:48 ip community-list standard 1_22_47 permit 65000:1 0:22 0:47 ip community-list standard 1_23_46 permit 65000:1 0:23 0:46 ip community-list standard 1_24_45 permit 65000:1 0:24 0:45 ip community-list standard 1_25_44 permit 65000:1 0:25 0:44 ip community-list standard 1_26_43 permit 65000:1 0:26 0:43 ip community-list standard 1_27_42 permit 65000:1 0:27 0:42 ip community-list standard 1_28_41 permit 65000:1 0:28 0:41 ip community-list standard 1_29_40 permit 65000:1 0:29 0:40 ip community-list standard 1_30_39 permit 65000:1 0:30 0:39 ip community-list standard 1_31_38 permit 65000:1 0:31 0:38 ip community-list standard 1_32_37 permit 65000:1 0:32 0:37 ip community-list standard 1_33_36 permit 65000:1 0:33 0:36 ip community-list standard 1_34_35 permit 65000:1 0:34 0:35 ip community-list expanded c69 permit 1 ^65000:4_0:69_0:1$ ip community-list expanded c69 permit 2 ^65000:3_0:70_0:1$ ip community-list expanded c69 permit 3 ^65000:3_0:71_0:2$ ip community-list expanded c69 permit 4 ^65000:3_0:72_0:3$ ip community-list expanded c69 permit 5 ^65000:3_0:73_0:4$ ip community-list expanded c69 permit 6 ^65000:3_0:74_0:5$ ip community-list expanded c69 permit 7 ^65000:3_0:75_0:6$ ip community-list expanded c69 permit 8 ^65000:3_0:76_0:7$ ip community-list expanded c69 permit 9 ^65000:3_0:77_0:8$ ip community-list expanded c69 permit 10 ^65000:3_0:78_0:9$ ip community-list expanded c69 permit 11 ^65000:3_0:79_0:10$ ip community-list expanded c69 permit 12 ^65000:3_0:80_0:11$ ip community-list expanded c69 permit 13 ^65000:3_0:81_0:12$ ip community-list expanded c69 permit 14 ^65000:3_0:82_0:13$ ip community-list expanded c69 permit 15 ^65000:3_0:83_0:14$ ip community-list expanded c69 permit 16 ^65000:3_0:84_0:15$ ip community-list expanded c69 permit 17 ^65000:3_0:85_0:16$ ip community-list expanded c69 permit 18 ^65000:3_0:86_0:17$ ip community-list expanded c69 permit 19 ^65000:3_0:87_0:18$ ip community-list expanded c69 permit 20 ^65000:3_0:88_0:19$ ip community-list expanded c69 permit 21 ^65000:3_0:89_0:20$ ip community-list expanded c69 permit 22 ^65000:3_0:90_0:21$ ip community-list expanded c69 permit 23 ^65000:3_0:91_0:22$ ip community-list expanded c69 permit 24 ^65000:3_0:92_0:23$ ip community-list expanded c69 permit 25 ^65000:3_0:93_0:24$ ip community-list expanded c69 permit 26 ^65000:3_0:94_0:25$ ip community-list expanded c69 permit 27 ^65000:3_0:95_0:26$ ip community-list expanded c69 permit 28 ^65000:3_0:96_0:27$ ip community-list expanded c69 permit 29 ^65000:3_0:97_0:28$ ip community-list expanded c69 permit 30 ^65000:3_0:98_0:29$ ip community-list expanded c69 permit 31 ^65000:3_0:99_0:30$ ip community-list expanded c69 permit 32 ^65000:3_0:100_0:31$ ip community-list expanded c69 permit 33 ^65000:3_0:101_0:32$ ip community-list expanded c69 permit 34 ^65000:3_0:102_0:33$ ip community-list expanded c69 permit 35 ^65000:3_0:103_0:34$ ip community-list expanded c69 permit 36 ^65000:3_0:104_0:35$ ip community-list expanded c69 permit 37 ^65000:3_0:105_0:36$ ip community-list expanded c69 permit 38 ^65000:3_0:106_0:37$ ip community-list expanded c69 permit 39 ^65000:3_0:107_0:38$ ip community-list expanded c69 permit 40 ^65000:3_0:108_0:39$ ip community-list expanded c69 permit 41 ^65000:3_0:109_0:40$ ip community-list expanded c69 permit 42 ^65000:3_0:110_0:41$ ip community-list expanded c69 permit 43 ^65000:3_0:111_0:42$ ip community-list expanded c69 permit 44 ^65000:3_0:112_0:43$ ip community-list expanded c69 permit 45 ^65000:3_0:113_0:44$ ip community-list expanded c69 permit 46 ^65000:3_0:114_0:45$ ip community-list expanded c69 permit 47 ^65000:3_0:115_0:46$ ip community-list expanded c69 permit 48 ^65000:3_0:116_0:47$ ip community-list expanded c69 permit 49 ^65000:3_0:117_0:48$ ip community-list expanded c69 permit 50 ^65000:3_0:118_0:49$ ip community-list expanded c69 permit 51 ^65000:3_0:119_0:50$ ip community-list expanded c69 permit 52 ^65000:3_0:120_0:51$ ip community-list expanded c69 permit 53 ^65000:3_0:121_0:52$ ip community-list expanded c69 permit 54 ^65000:3_0:122_0:53$ ip community-list expanded c69 permit 55 ^65000:3_0:123_0:54$ ip community-list expanded c69 permit 56 ^65000:3_0:124_0:55$ ip community-list expanded c69 permit 57 ^65000:3_0:125_0:56$ ip community-list expanded c69 permit 58 ^65000:3_0:126_0:57$ ip community-list expanded c69 permit 59 ^65000:3_0:127_0:58$ ip community-list expanded c69 permit 60 ^65000:3_0:128_0:59$ ip community-list expanded c69 permit 61 ^65000:3_0:129_0:60$ ip community-list expanded c69 permit 62 ^65000:3_0:130_0:61$ ip community-list expanded c69 permit 63 ^65000:3_0:131_0:62$ ip community-list expanded c69 permit 64 ^65000:3_0:132_0:63$ ip community-list expanded c69 permit 65 ^65000:3_0:133_0:64$ ip community-list expanded c69 permit 66 ^65000:3_0:134_0:65$ ip community-list expanded c69 permit 67 ^65000:3_0:135_0:66$ ip community-list expanded c69 permit 68 ^65000:3_0:136_0:67$ ip community-list expanded c69 permit 69 ^65000:3_0:137_0:68$ ip community-list expanded c69 permit 70 ^65000:4_0:138_0:2$ ip community-list expanded c69 permit 71 ^65000:3_0:138_0:69$ ip community-list expanded c69 permit 72 ^65000:4_0:139_0:2$ ip community-list expanded c69 permit 73 ^65000:3_0:139_0:70$ ip community-list expanded c69 permit 74 ^65000:3_0:140_0:71$ ip community-list expanded c69 permit 75 ^65000:3_0:141_0:72$ ip community-list expanded c69 permit 76 ^65000:3_0:142_0:73$ ip community-list expanded c69 permit 77 ^65000:3_0:143_0:74$ ip community-list expanded c69 permit 78 ^65000:3_0:144_0:75$ ip community-list expanded c69 permit 79 ^65000:3_0:145_0:76$ ip community-list expanded c69 permit 80 ^65000:3_0:146_0:77$ ip community-list expanded c69 permit 81 ^65000:3_0:147_0:78$ ip community-list expanded c69 permit 82 ^65000:3_0:148_0:79$ ip community-list expanded c69 permit 83 ^65000:3_0:149_0:80$ ip community-list expanded c69 permit 84 ^65000:3_0:150_0:81$ ip community-list expanded c69 permit 85 ^65000:3_0:151_0:82$ ip community-list expanded c69 permit 86 ^65000:3_0:152_0:83$ ip community-list expanded c69 permit 87 ^65000:3_0:153_0:84$ ip community-list expanded c69 permit 88 ^65000:3_0:154_0:85$ ip community-list expanded c69 permit 89 ^65000:3_0:155_0:86$ ip community-list expanded c69 permit 90 ^65000:3_0:156_0:87$ ip community-list expanded c69 permit 91 ^65000:3_0:157_0:88$ ip community-list expanded c69 permit 92 ^65000:3_0:158_0:89$ ip community-list expanded c69 permit 93 ^65000:3_0:159_0:90$ ip community-list expanded c69 permit 94 ^65000:3_0:160_0:91$ ip community-list expanded c69 permit 95 ^65000:3_0:161_0:92$ ip community-list expanded c69 permit 96 ^65000:3_0:162_0:93$ ip community-list expanded c69 permit 97 ^65000:3_0:163_0:94$ ip community-list expanded c69 permit 98 ^65000:3_0:164_0:95$ ip community-list expanded c69 permit 99 ^65000:3_0:165_0:96$ ip community-list expanded c69 permit 100 ^65000:3_0:166_0:97$ ip community-list expanded c69 permit 101 ^65000:3_0:167_0:98$ ip community-list expanded c69 permit 102 ^65000:3_0:168_0:99$ ip community-list expanded c69 permit 103 ^65000:3_0:169_0:100$ ip community-list expanded c69 permit 104 ^65000:3_0:170_0:101$ ip community-list expanded c69 permit 105 ^65000:3_0:171_0:102$ ip community-list expanded c69 permit 106 ^65000:3_0:172_0:103$ ip community-list expanded c69 permit 107 ^65000:3_0:173_0:104$ ip community-list expanded c69 permit 108 ^65000:3_0:174_0:105$ ip community-list expanded c69 permit 109 ^65000:3_0:175_0:106$ ip community-list expanded c69 permit 110 ^65000:3_0:176_0:107$ ip community-list expanded c69 permit 111 ^65000:3_0:177_0:108$ ip community-list expanded c69 permit 112 ^65000:3_0:178_0:109$ ip community-list expanded c69 permit 113 ^65000:3_0:179_0:110$ ip community-list expanded c69 permit 114 ^65000:3_0:180_0:111$ ip community-list expanded c69 permit 115 ^65000:3_0:181_0:112$ ip community-list expanded c69 permit 116 ^65000:3_0:182_0:113$ ip community-list expanded c69 permit 117 ^65000:3_0:183_0:114$ ip community-list expanded c69 permit 118 ^65000:3_0:184_0:115$ ip community-list expanded c69 permit 119 ^65000:3_0:185_0:116$ ip community-list expanded c69 permit 120 ^65000:3_0:186_0:117$ ip community-list expanded c69 permit 121 ^65000:3_0:187_0:118$ ip community-list expanded c69 permit 122 ^65000:3_0:188_0:119$ ip community-list expanded c69 permit 123 ^65000:3_0:189_0:120$ ip community-list expanded c69 permit 124 ^65000:3_0:190_0:121$ ip community-list expanded c69 permit 125 ^65000:3_0:191_0:122$ ip community-list expanded c69 permit 126 ^65000:3_0:192_0:123$ ip community-list expanded c69 permit 127 ^65000:3_0:193_0:124$ ip community-list expanded c69 permit 128 ^65000:3_0:194_0:125$ ip community-list expanded c69 permit 129 ^65000:3_0:195_0:126$ ip community-list expanded c69 permit 130 ^65000:3_0:196_0:127$ ip community-list expanded c69 permit 131 ^65000:3_0:197_0:128$ ip community-list expanded c69 permit 132 ^65000:3_0:198_0:129$ ip community-list expanded c69 permit 133 ^65000:3_0:199_0:130$ ip community-list expanded c69 permit 134 ^65000:3_0:200_0:131$ ip community-list expanded c69 permit 135 ^65000:3_0:201_0:132$ ip community-list expanded c69 permit 136 ^65000:3_0:202_0:133$ ip community-list expanded c69 permit 137 ^65000:3_0:203_0:134$ ip community-list expanded c69 permit 138 ^65000:3_0:204_0:135$ ip community-list expanded c69 permit 139 ^65000:3_0:205_0:136$ ip community-list expanded c69 permit 140 ^65000:3_0:206_0:137$ ip community-list expanded c69 permit 141 ^65000:4_0:207_0:3$ ip community-list expanded c69 permit 142 ^65000:3_0:207_0:138$ ip community-list expanded c69 permit 143 ^65000:4_0:208_0:3$ ip community-list expanded c69 permit 144 ^65000:3_0:208_0:139$ ip community-list expanded c69 permit 145 ^65000:4_0:209_0:3$ ip community-list expanded c69 permit 146 ^65000:3_0:209_0:140$ ip community-list expanded c69 permit 147 ^65000:3_0:210_0:141$ ip community-list expanded c69 permit 148 ^65000:3_0:211_0:142$ ip community-list expanded c69 permit 149 ^65000:3_0:212_0:143$ ip community-list expanded c69 permit 150 ^65000:3_0:213_0:144$ ip community-list expanded c69 permit 151 ^65000:3_0:214_0:145$ ip community-list expanded c69 permit 152 ^65000:3_0:215_0:146$ ip community-list expanded c69 permit 153 ^65000:3_0:216_0:147$ ip community-list expanded c69 permit 154 ^65000:3_0:217_0:148$ ip community-list expanded c69 permit 155 ^65000:3_0:218_0:149$ ip community-list expanded c69 permit 156 ^65000:3_0:219_0:150$ ip community-list expanded c69 permit 157 ^65000:3_0:220_0:151$ ip community-list expanded c69 permit 158 ^65000:3_0:221_0:152$ ip community-list expanded c69 permit 159 ^65000:3_0:222_0:153$ ip community-list expanded c69 permit 160 ^65000:3_0:223_0:154$ ip community-list expanded c69 permit 161 ^65000:3_0:224_0:155$ ip community-list expanded c69 permit 162 ^65000:3_0:225_0:156$ ip community-list expanded c69 permit 163 ^65000:3_0:226_0:157$ ip community-list expanded c69 permit 164 ^65000:3_0:227_0:158$ ip community-list expanded c69 permit 165 ^65000:3_0:228_0:159$ ip community-list expanded c69 permit 166 ^65000:3_0:229_0:160$ ip community-list expanded c69 permit 167 ^65000:3_0:230_0:161$ ip community-list expanded c69 permit 168 ^65000:3_0:231_0:162$ ip community-list expanded c69 permit 169 ^65000:3_0:232_0:163$ ip community-list expanded c69 permit 170 ^65000:3_0:233_0:164$ ip community-list expanded c69 permit 171 ^65000:3_0:234_0:165$ ip community-list expanded c69 permit 172 ^65000:3_0:235_0:166$ ip community-list expanded c69 permit 173 ^65000:3_0:236_0:167$ ip community-list expanded c69 permit 174 ^65000:3_0:237_0:168$ ip community-list expanded c69 permit 175 ^65000:3_0:238_0:169$ ip community-list expanded c69 permit 176 ^65000:3_0:239_0:170$ ip community-list expanded c69 permit 177 ^65000:3_0:240_0:171$ ip community-list expanded c69 permit 178 ^65000:3_0:241_0:172$ ip community-list expanded c69 permit 179 ^65000:3_0:242_0:173$ ip community-list expanded c69 permit 180 ^65000:3_0:243_0:174$ ip community-list expanded c69 permit 181 ^65000:3_0:244_0:175$ ip community-list expanded c69 permit 182 ^65000:3_0:245_0:176$ ip community-list expanded c69 permit 183 ^65000:3_0:246_0:177$ ip community-list expanded c69 permit 184 ^65000:3_0:247_0:178$ ip community-list expanded c69 permit 185 ^65000:3_0:248_0:179$ ip community-list expanded c69 permit 186 ^65000:3_0:249_0:180$ ip community-list expanded c69 permit 187 ^65000:3_0:250_0:181$ ip community-list expanded c69 permit 188 ^65000:3_0:251_0:182$ ip community-list expanded c69 permit 189 ^65000:3_0:252_0:183$ ip community-list expanded c69 permit 190 ^65000:3_0:253_0:184$ ip community-list expanded c69 permit 191 ^65000:3_0:254_0:185$ ip community-list expanded c69 permit 192 ^65000:3_0:255_0:186$ ip community-list expanded c69 permit 193 ^65000:3_0:256_0:187$ route-map calculator permit 37352 match community 1_1_68 2_1_69 1_2_67 2_3_23 1_3_66 set community 0:69 route-map calculator permit 37353 match community 1_4_65 1_5_64 1_6_63 1_7_62 1_8_61 set community 0:69 route-map calculator permit 37354 match community 1_9_60 1_10_59 1_11_58 1_12_57 1_13_56 set community 0:69 route-map calculator permit 37355 match community 1_14_55 1_15_54 1_16_53 1_17_52 1_18_51 set community 0:69 route-map calculator permit 37356 match community 1_19_50 1_20_49 1_21_48 1_22_47 1_23_46 set community 0:69 route-map calculator permit 37357 match community 1_24_45 1_25_44 1_26_43 1_27_42 1_28_41 set community 0:69 route-map calculator permit 37358 match community 1_29_40 1_30_39 1_31_38 1_32_37 1_33_36 set community 0:69 route-map calculator permit 37359 match community 1_34_35 c4_69_1 c3_70_1 c3_71_2 c3_72_3 set community 0:69 route-map calculator permit 37360 match community c3_73_4 c3_74_5 c3_75_6 c3_76_7 c3_77_8 set community 0:69 route-map calculator permit 37361 match community c3_78_9 c3_79_10 c3_80_11 c3_81_12 c3_82_13 set community 0:69 route-map calculator permit 37362 match community c3_83_14 c3_84_15 c3_85_16 c3_86_17 c3_87_18 set community 0:69 route-map calculator permit 37363 match community c3_88_19 c3_89_20 c3_90_21 c3_91_22 c3_92_23 set community 0:69 route-map calculator permit 37364 match community c3_93_24 c3_94_25 c3_95_26 c3_96_27 c3_97_28 set community 0:69 route-map calculator permit 37365 match community c3_98_29 c3_99_30 c3_100_31 c3_101_32 c3_102_33 set community 0:69 route-map calculator permit 37366 match community c3_103_34 c3_104_35 c3_105_36 c3_106_37 c3_107_38 set community 0:69 route-map calculator permit 37367 match community c3_108_39 c3_109_40 c3_110_41 c3_111_42 c3_112_43 set community 0:69 route-map calculator permit 37368 match community c3_113_44 c3_114_45 c3_115_46 c3_116_47 c3_117_48 set community 0:69 route-map calculator permit 37369 match community c3_118_49 c3_119_50 c3_120_51 c3_121_52 c3_122_53 set community 0:69 route-map calculator permit 37370 match community c3_123_54 c3_124_55 c3_125_56 c3_126_57 c3_127_58 set community 0:69 route-map calculator permit 37371 match community c3_128_59 c3_129_60 c3_130_61 c3_131_62 c3_132_63 set community 0:69 route-map calculator permit 37372 match community c3_133_64 c3_134_65 c3_135_66 c3_136_67 c3_137_68 set community 0:69 route-map calculator permit 37373 match community c4_138_2 c3_138_69 c4_139_2 c3_139_70 c3_140_71 set community 0:69 route-map calculator permit 37374 match community c3_141_72 c3_142_73 c3_143_74 c3_144_75 c3_145_76 set community 0:69 route-map calculator permit 37375 match community c3_146_77 c3_147_78 c3_148_79 c3_149_80 c3_150_81 set community 0:69 route-map calculator permit 37376 match community c3_151_82 c3_152_83 c3_153_84 c3_154_85 c3_155_86 set community 0:69 route-map calculator permit 37377 match community c3_156_87 c3_157_88 c3_158_89 c3_159_90 c3_160_91 set community 0:69 route-map calculator permit 37378 match community c3_161_92 c3_162_93 c3_163_94 c3_164_95 c3_165_96 set community 0:69 route-map calculator permit 37379 match community c3_166_97 c3_167_98 c3_168_99 c3_169_100 c3_170_101 set community 0:69 route-map calculator permit 37380 match community c3_171_102 c3_172_103 c3_173_104 c3_174_105 c3_175_106 set community 0:69 route-map calculator permit 37381 match community c3_176_107 c3_177_108 c3_178_109 c3_179_110 c3_180_111 set community 0:69 route-map calculator permit 37382 match community c3_181_112 c3_182_113 c3_183_114 c3_184_115 c3_185_116 set community 0:69 route-map calculator permit 37383 match community c3_186_117 c3_187_118 c3_188_119 c3_189_120 c3_190_121 set community 0:69 route-map calculator permit 37384 match community c3_191_122 c3_192_123 c3_193_124 c3_194_125 c3_195_126 set community 0:69 route-map calculator permit 37385 match community c3_196_127 c3_197_128 c3_198_129 c3_199_130 c3_200_131 set community 0:69 route-map calculator permit 37386 match community c3_201_132 c3_202_133 c3_203_134 c3_204_135 c3_205_136 set community 0:69 route-map calculator permit 37387 match community c3_206_137 c4_207_3 c3_207_138 c4_208_3 c3_208_139 set community 0:69 route-map calculator permit 37388 match community c4_209_3 c3_209_140 c3_210_141 c3_211_142 c3_212_143 set community 0:69 route-map calculator permit 37389 match community c3_213_144 c3_214_145 c3_215_146 c3_216_147 c3_217_148 set community 0:69 route-map calculator permit 37390 match community c3_218_149 c3_219_150 c3_220_151 c3_221_152 c3_222_153 set community 0:69 route-map calculator permit 37391 match community c3_223_154 c3_224_155 c3_225_156 c3_226_157 c3_227_158 set community 0:69 route-map calculator permit 37392 match community c3_228_159 c3_229_160 c3_230_161 c3_231_162 c3_232_163 set community 0:69 route-map calculator permit 37393 match community c3_233_164 c3_234_165 c3_235_166 c3_236_167 c3_237_168 set community 0:69 route-map calculator permit 37394 match community c3_238_169 c3_239_170 c3_240_171 c3_241_172 c3_242_173 set community 0:69 route-map calculator permit 37395 match community c3_243_174 c3_244_175 c3_245_176 c3_246_177 c3_247_178 set community 0:69 route-map calculator permit 37396 match community c3_248_179 c3_249_180 c3_250_181 c3_251_182 c3_252_183 set community 0:69 route-map calculator permit 37397 match community c3_253_184 c3_254_185 c3_255_186 c3_256_187 set community 0:69 ip community-list standard 2_79_184 permit 65000:2 0:79 0:184 ip community-list standard 2_92_158 permit 65000:2 0:92 0:158 route-map calculator permit 37398 match community 2_79_184 2_92_158 set community 0:14536 ip community-list standard 1_1_180 permit 65000:1 0:1 0:180 ip community-list standard 2_1_181 permit 65000:2 0:1 0:181 ip community-list standard 1_2_179 permit 65000:1 0:2 0:179 ip community-list standard 1_3_178 permit 65000:1 0:3 0:178 ip community-list standard 1_4_177 permit 65000:1 0:4 0:177 ip community-list standard 1_5_176 permit 65000:1 0:5 0:176 ip community-list standard 1_6_175 permit 65000:1 0:6 0:175 ip community-list standard 1_7_174 permit 65000:1 0:7 0:174 ip community-list standard 1_8_173 permit 65000:1 0:8 0:173 ip community-list standard 1_9_172 permit 65000:1 0:9 0:172 ip community-list standard 1_10_171 permit 65000:1 0:10 0:171 ip community-list standard 1_11_170 permit 65000:1 0:11 0:170 ip community-list standard 1_12_169 permit 65000:1 0:12 0:169 ip community-list standard 1_13_168 permit 65000:1 0:13 0:168 ip community-list standard 1_14_167 permit 65000:1 0:14 0:167 ip community-list standard 1_15_166 permit 65000:1 0:15 0:166 ip community-list standard 1_16_165 permit 65000:1 0:16 0:165 ip community-list standard 1_17_164 permit 65000:1 0:17 0:164 ip community-list standard 1_18_163 permit 65000:1 0:18 0:163 ip community-list standard 1_19_162 permit 65000:1 0:19 0:162 ip community-list standard 1_20_161 permit 65000:1 0:20 0:161 ip community-list standard 1_21_160 permit 65000:1 0:21 0:160 ip community-list standard 1_22_159 permit 65000:1 0:22 0:159 ip community-list standard 1_23_158 permit 65000:1 0:23 0:158 ip community-list standard 1_24_157 permit 65000:1 0:24 0:157 ip community-list standard 1_25_156 permit 65000:1 0:25 0:156 ip community-list standard 1_26_155 permit 65000:1 0:26 0:155 ip community-list standard 1_27_154 permit 65000:1 0:27 0:154 ip community-list standard 1_28_153 permit 65000:1 0:28 0:153 ip community-list standard 1_29_152 permit 65000:1 0:29 0:152 ip community-list standard 1_30_151 permit 65000:1 0:30 0:151 ip community-list standard 1_31_150 permit 65000:1 0:31 0:150 ip community-list standard 1_32_149 permit 65000:1 0:32 0:149 ip community-list standard 1_33_148 permit 65000:1 0:33 0:148 ip community-list standard 1_34_147 permit 65000:1 0:34 0:147 ip community-list standard 1_35_146 permit 65000:1 0:35 0:146 ip community-list standard 1_36_145 permit 65000:1 0:36 0:145 ip community-list standard 1_37_144 permit 65000:1 0:37 0:144 ip community-list standard 1_38_143 permit 65000:1 0:38 0:143 ip community-list standard 1_39_142 permit 65000:1 0:39 0:142 ip community-list standard 1_40_141 permit 65000:1 0:40 0:141 ip community-list standard 1_41_140 permit 65000:1 0:41 0:140 ip community-list standard 1_42_139 permit 65000:1 0:42 0:139 ip community-list standard 1_43_138 permit 65000:1 0:43 0:138 ip community-list standard 1_44_137 permit 65000:1 0:44 0:137 ip community-list standard 1_45_136 permit 65000:1 0:45 0:136 ip community-list standard 1_46_135 permit 65000:1 0:46 0:135 ip community-list standard 1_47_134 permit 65000:1 0:47 0:134 ip community-list standard 1_48_133 permit 65000:1 0:48 0:133 ip community-list standard 1_49_132 permit 65000:1 0:49 0:132 ip community-list standard 1_50_131 permit 65000:1 0:50 0:131 ip community-list standard 1_51_130 permit 65000:1 0:51 0:130 ip community-list standard 1_52_129 permit 65000:1 0:52 0:129 ip community-list standard 1_53_128 permit 65000:1 0:53 0:128 ip community-list standard 1_54_127 permit 65000:1 0:54 0:127 ip community-list standard 1_55_126 permit 65000:1 0:55 0:126 ip community-list standard 1_56_125 permit 65000:1 0:56 0:125 ip community-list standard 1_57_124 permit 65000:1 0:57 0:124 ip community-list standard 1_58_123 permit 65000:1 0:58 0:123 ip community-list standard 1_59_122 permit 65000:1 0:59 0:122 ip community-list standard 1_60_121 permit 65000:1 0:60 0:121 ip community-list standard 1_61_120 permit 65000:1 0:61 0:120 ip community-list standard 1_62_119 permit 65000:1 0:62 0:119 ip community-list standard 1_63_118 permit 65000:1 0:63 0:118 ip community-list standard 1_64_117 permit 65000:1 0:64 0:117 ip community-list standard 1_65_116 permit 65000:1 0:65 0:116 ip community-list standard 1_66_115 permit 65000:1 0:66 0:115 ip community-list standard 1_67_114 permit 65000:1 0:67 0:114 ip community-list standard 1_68_113 permit 65000:1 0:68 0:113 ip community-list standard 1_69_112 permit 65000:1 0:69 0:112 ip community-list standard 1_70_111 permit 65000:1 0:70 0:111 ip community-list standard 1_71_110 permit 65000:1 0:71 0:110 ip community-list standard 1_72_109 permit 65000:1 0:72 0:109 ip community-list standard 1_73_108 permit 65000:1 0:73 0:108 ip community-list standard 1_74_107 permit 65000:1 0:74 0:107 ip community-list standard 1_75_106 permit 65000:1 0:75 0:106 ip community-list standard 1_76_105 permit 65000:1 0:76 0:105 ip community-list standard 1_77_104 permit 65000:1 0:77 0:104 ip community-list standard 1_78_103 permit 65000:1 0:78 0:103 ip community-list standard 1_79_102 permit 65000:1 0:79 0:102 ip community-list standard 1_80_101 permit 65000:1 0:80 0:101 ip community-list standard 1_81_100 permit 65000:1 0:81 0:100 ip community-list standard 1_82_99 permit 65000:1 0:82 0:99 ip community-list standard 1_83_98 permit 65000:1 0:83 0:98 ip community-list standard 1_84_97 permit 65000:1 0:84 0:97 ip community-list standard 1_85_96 permit 65000:1 0:85 0:96 ip community-list standard 1_86_95 permit 65000:1 0:86 0:95 ip community-list standard 1_87_94 permit 65000:1 0:87 0:94 ip community-list standard 1_88_93 permit 65000:1 0:88 0:93 ip community-list standard 1_89_92 permit 65000:1 0:89 0:92 ip community-list standard 1_90_91 permit 65000:1 0:90 0:91 ip community-list expanded c181 permit 1 ^65000:4_0:181_0:1$ ip community-list expanded c181 permit 2 ^65000:3_0:182_0:1$ ip community-list expanded c181 permit 3 ^65000:3_0:183_0:2$ ip community-list expanded c181 permit 4 ^65000:3_0:184_0:3$ ip community-list expanded c181 permit 5 ^65000:3_0:185_0:4$ ip community-list expanded c181 permit 6 ^65000:3_0:186_0:5$ ip community-list expanded c181 permit 7 ^65000:3_0:187_0:6$ ip community-list expanded c181 permit 8 ^65000:3_0:188_0:7$ ip community-list expanded c181 permit 9 ^65000:3_0:189_0:8$ ip community-list expanded c181 permit 10 ^65000:3_0:190_0:9$ ip community-list expanded c181 permit 11 ^65000:3_0:191_0:10$ ip community-list expanded c181 permit 12 ^65000:3_0:192_0:11$ ip community-list expanded c181 permit 13 ^65000:3_0:193_0:12$ ip community-list expanded c181 permit 14 ^65000:3_0:194_0:13$ ip community-list expanded c181 permit 15 ^65000:3_0:195_0:14$ ip community-list expanded c181 permit 16 ^65000:3_0:196_0:15$ ip community-list expanded c181 permit 17 ^65000:3_0:197_0:16$ ip community-list expanded c181 permit 18 ^65000:3_0:198_0:17$ ip community-list expanded c181 permit 19 ^65000:3_0:199_0:18$ ip community-list expanded c181 permit 20 ^65000:3_0:200_0:19$ ip community-list expanded c181 permit 21 ^65000:3_0:201_0:20$ ip community-list expanded c181 permit 22 ^65000:3_0:202_0:21$ ip community-list expanded c181 permit 23 ^65000:3_0:203_0:22$ ip community-list expanded c181 permit 24 ^65000:3_0:204_0:23$ ip community-list expanded c181 permit 25 ^65000:3_0:205_0:24$ ip community-list expanded c181 permit 26 ^65000:3_0:206_0:25$ ip community-list expanded c181 permit 27 ^65000:3_0:207_0:26$ ip community-list expanded c181 permit 28 ^65000:3_0:208_0:27$ ip community-list expanded c181 permit 29 ^65000:3_0:209_0:28$ ip community-list expanded c181 permit 30 ^65000:3_0:210_0:29$ ip community-list expanded c181 permit 31 ^65000:3_0:211_0:30$ ip community-list expanded c181 permit 32 ^65000:3_0:212_0:31$ ip community-list expanded c181 permit 33 ^65000:3_0:213_0:32$ ip community-list expanded c181 permit 34 ^65000:3_0:214_0:33$ ip community-list expanded c181 permit 35 ^65000:3_0:215_0:34$ ip community-list expanded c181 permit 36 ^65000:3_0:216_0:35$ ip community-list expanded c181 permit 37 ^65000:3_0:217_0:36$ ip community-list expanded c181 permit 38 ^65000:3_0:218_0:37$ ip community-list expanded c181 permit 39 ^65000:3_0:219_0:38$ ip community-list expanded c181 permit 40 ^65000:3_0:220_0:39$ ip community-list expanded c181 permit 41 ^65000:3_0:221_0:40$ ip community-list expanded c181 permit 42 ^65000:3_0:222_0:41$ ip community-list expanded c181 permit 43 ^65000:3_0:223_0:42$ ip community-list expanded c181 permit 44 ^65000:3_0:224_0:43$ ip community-list expanded c181 permit 45 ^65000:3_0:225_0:44$ ip community-list expanded c181 permit 46 ^65000:3_0:226_0:45$ ip community-list expanded c181 permit 47 ^65000:3_0:227_0:46$ ip community-list expanded c181 permit 48 ^65000:3_0:228_0:47$ ip community-list expanded c181 permit 49 ^65000:3_0:229_0:48$ ip community-list expanded c181 permit 50 ^65000:3_0:230_0:49$ ip community-list expanded c181 permit 51 ^65000:3_0:231_0:50$ ip community-list expanded c181 permit 52 ^65000:3_0:232_0:51$ ip community-list expanded c181 permit 53 ^65000:3_0:233_0:52$ ip community-list expanded c181 permit 54 ^65000:3_0:234_0:53$ ip community-list expanded c181 permit 55 ^65000:3_0:235_0:54$ ip community-list expanded c181 permit 56 ^65000:3_0:236_0:55$ ip community-list expanded c181 permit 57 ^65000:3_0:237_0:56$ ip community-list expanded c181 permit 58 ^65000:3_0:238_0:57$ ip community-list expanded c181 permit 59 ^65000:3_0:239_0:58$ ip community-list expanded c181 permit 60 ^65000:3_0:240_0:59$ ip community-list expanded c181 permit 61 ^65000:3_0:241_0:60$ ip community-list expanded c181 permit 62 ^65000:3_0:242_0:61$ ip community-list expanded c181 permit 63 ^65000:3_0:243_0:62$ ip community-list expanded c181 permit 64 ^65000:3_0:244_0:63$ ip community-list expanded c181 permit 65 ^65000:3_0:245_0:64$ ip community-list expanded c181 permit 66 ^65000:3_0:246_0:65$ ip community-list expanded c181 permit 67 ^65000:3_0:247_0:66$ ip community-list expanded c181 permit 68 ^65000:3_0:248_0:67$ ip community-list expanded c181 permit 69 ^65000:3_0:249_0:68$ ip community-list expanded c181 permit 70 ^65000:3_0:250_0:69$ ip community-list expanded c181 permit 71 ^65000:3_0:251_0:70$ ip community-list expanded c181 permit 72 ^65000:3_0:252_0:71$ ip community-list expanded c181 permit 73 ^65000:3_0:253_0:72$ ip community-list expanded c181 permit 74 ^65000:3_0:254_0:73$ ip community-list expanded c181 permit 75 ^65000:3_0:255_0:74$ ip community-list expanded c181 permit 76 ^65000:3_0:256_0:75$ route-map calculator permit 37399 match community 1_1_180 2_1_181 1_2_179 1_3_178 1_4_177 set community 0:181 route-map calculator permit 37400 match community 1_5_176 1_6_175 1_7_174 1_8_173 1_9_172 set community 0:181 route-map calculator permit 37401 match community 1_10_171 1_11_170 1_12_169 1_13_168 1_14_167 set community 0:181 route-map calculator permit 37402 match community 1_15_166 1_16_165 1_17_164 1_18_163 1_19_162 set community 0:181 route-map calculator permit 37403 match community 1_20_161 1_21_160 1_22_159 1_23_158 1_24_157 set community 0:181 route-map calculator permit 37404 match community 1_25_156 1_26_155 1_27_154 1_28_153 1_29_152 set community 0:181 route-map calculator permit 37405 match community 1_30_151 1_31_150 1_32_149 1_33_148 1_34_147 set community 0:181 route-map calculator permit 37406 match community 1_35_146 1_36_145 1_37_144 1_38_143 1_39_142 set community 0:181 route-map calculator permit 37407 match community 1_40_141 1_41_140 1_42_139 1_43_138 1_44_137 set community 0:181 route-map calculator permit 37408 match community 1_45_136 1_46_135 1_47_134 1_48_133 1_49_132 set community 0:181 route-map calculator permit 37409 match community 1_50_131 1_51_130 1_52_129 1_53_128 1_54_127 set community 0:181 route-map calculator permit 37410 match community 1_55_126 1_56_125 1_57_124 1_58_123 1_59_122 set community 0:181 route-map calculator permit 37411 match community 1_60_121 1_61_120 1_62_119 1_63_118 1_64_117 set community 0:181 route-map calculator permit 37412 match community 1_65_116 1_66_115 1_67_114 1_68_113 1_69_112 set community 0:181 route-map calculator permit 37413 match community 1_70_111 1_71_110 1_72_109 1_73_108 1_74_107 set community 0:181 route-map calculator permit 37414 match community 1_75_106 1_76_105 1_77_104 1_78_103 1_79_102 set community 0:181 route-map calculator permit 37415 match community 1_80_101 1_81_100 1_82_99 1_83_98 1_84_97 set community 0:181 route-map calculator permit 37416 match community 1_85_96 1_86_95 1_87_94 1_88_93 1_89_92 set community 0:181 route-map calculator permit 37417 match community 1_90_91 c4_181_1 c3_182_1 c3_183_2 c3_184_3 set community 0:181 route-map calculator permit 37418 match community c3_185_4 c3_186_5 c3_187_6 c3_188_7 c3_189_8 set community 0:181 route-map calculator permit 37419 match community c3_190_9 c3_191_10 c3_192_11 c3_193_12 c3_194_13 set community 0:181 route-map calculator permit 37420 match community c3_195_14 c3_196_15 c3_197_16 c3_198_17 c3_199_18 set community 0:181 route-map calculator permit 37421 match community c3_200_19 c3_201_20 c3_202_21 c3_203_22 c3_204_23 set community 0:181 route-map calculator permit 37422 match community c3_205_24 c3_206_25 c3_207_26 c3_208_27 c3_209_28 set community 0:181 route-map calculator permit 37423 match community c3_210_29 c3_211_30 c3_212_31 c3_213_32 c3_214_33 set community 0:181 route-map calculator permit 37424 match community c3_215_34 c3_216_35 c3_217_36 c3_218_37 c3_219_38 set community 0:181 route-map calculator permit 37425 match community c3_220_39 c3_221_40 c3_222_41 c3_223_42 c3_224_43 set community 0:181 route-map calculator permit 37426 match community c3_225_44 c3_226_45 c3_227_46 c3_228_47 c3_229_48 set community 0:181 route-map calculator permit 37427 match community c3_230_49 c3_231_50 c3_232_51 c3_233_52 c3_234_53 set community 0:181 route-map calculator permit 37428 match community c3_235_54 c3_236_55 c3_237_56 c3_238_57 c3_239_58 set community 0:181 route-map calculator permit 37429 match community c3_240_59 c3_241_60 c3_242_61 c3_243_62 c3_244_63 set community 0:181 route-map calculator permit 37430 match community c3_245_64 c3_246_65 c3_247_66 c3_248_67 c3_249_68 set community 0:181 route-map calculator permit 37431 match community c3_250_69 c3_251_70 c3_252_71 c3_253_72 c3_254_73 set community 0:181 route-map calculator permit 37432 match community c3_255_74 c3_256_75 set community 0:181 ip community-list standard 2_76_131 permit 65000:2 0:76 0:131 route-map calculator permit 37433 match community 2_76_131 set community 0:9956 ip community-list standard 2_95_225 permit 65000:2 0:95 0:225 ip community-list standard 2_125_171 permit 65000:2 0:125 0:171 route-map calculator permit 37434 match community 2_95_225 2_125_171 set community 0:21375 ip community-list standard 2_49_199 permit 65000:2 0:49 0:199 route-map calculator permit 37435 match community 2_49_199 set community 0:9751 ip community-list standard 2_166_179 permit 65000:2 0:166 0:179 route-map calculator permit 37436 match community 2_166_179 set community 0:29714 ip community-list standard 2_17_152 permit 65000:2 0:17 0:152 ip community-list standard 2_19_136 permit 65000:2 0:19 0:136 ip community-list standard 2_34_76 permit 65000:2 0:34 0:76 ip community-list standard 2_38_68 permit 65000:2 0:38 0:68 route-map calculator permit 37437 match community 2_17_152 2_19_136 2_34_76 2_38_68 set community 0:2584 ip community-list standard 2_130_214 permit 65000:2 0:130 0:214 route-map calculator permit 37438 match community 2_130_214 set community 0:27820 ip community-list standard 2_130_233 permit 65000:2 0:130 0:233 route-map calculator permit 37439 match community 2_130_233 set community 0:30290 ip community-list standard 2_153_244 permit 65000:2 0:153 0:244 ip community-list standard 2_183_204 permit 65000:2 0:183 0:204 route-map calculator permit 37440 match community 2_153_244 2_183_204 set community 0:37332 ip community-list standard 2_103_157 permit 65000:2 0:103 0:157 route-map calculator permit 37441 match community 2_103_157 set community 0:16171 ip community-list standard 2_59_169 permit 65000:2 0:59 0:169 route-map calculator permit 37442 match community 2_59_169 set community 0:9971 ip community-list standard 2_66_194 permit 65000:2 0:66 0:194 ip community-list standard 2_97_132 permit 65000:2 0:97 0:132 route-map calculator permit 37443 match community 2_66_194 2_97_132 set community 0:12804 ip community-list standard 2_163_171 permit 65000:2 0:163 0:171 route-map calculator permit 37444 match community 2_163_171 set community 0:27873 ip community-list standard 2_149_206 permit 65000:2 0:149 0:206 route-map calculator permit 37445 match community 2_149_206 set community 0:30694 ip community-list standard 2_199_213 permit 65000:2 0:199 0:213 route-map calculator permit 37446 match community 2_199_213 set community 0:42387 ip community-list standard 2_130_157 permit 65000:2 0:130 0:157 route-map calculator permit 37447 match community 2_130_157 set community 0:20410 ip community-list standard 2_166_248 permit 65000:2 0:166 0:248 route-map calculator permit 37448 match community 2_166_248 set community 0:41168 ip community-list standard 2_69_89 permit 65000:2 0:69 0:89 route-map calculator permit 37449 match community 2_69_89 set community 0:6141 ip community-list standard 2_137_220 permit 65000:2 0:137 0:220 route-map calculator permit 37450 match community 2_137_220 set community 0:30140 ip community-list standard 2_133_202 permit 65000:2 0:133 0:202 route-map calculator permit 37451 match community 2_133_202 set community 0:26866 ip community-list standard 2_53_255 permit 65000:2 0:53 0:255 ip community-list standard 2_85_159 permit 65000:2 0:85 0:159 route-map calculator permit 37452 match community 2_53_255 2_85_159 set community 0:13515 ip community-list standard 2_71_85 permit 65000:2 0:71 0:85 route-map calculator permit 37453 match community 2_71_85 set community 0:6035 ip community-list standard 2_86_239 permit 65000:2 0:86 0:239 route-map calculator permit 37454 match community 2_86_239 set community 0:20554 ip community-list standard 2_57_185 permit 65000:2 0:57 0:185 ip community-list standard 2_95_111 permit 65000:2 0:95 0:111 route-map calculator permit 37455 match community 2_57_185 2_95_111 set community 0:10545 ip community-list standard 2_145_228 permit 65000:2 0:145 0:228 ip community-list standard 2_174_190 permit 65000:2 0:174 0:190 route-map calculator permit 37456 match community 2_145_228 2_174_190 set community 0:33060 ip community-list standard 2_35_151 permit 65000:2 0:35 0:151 route-map calculator permit 37457 match community 2_35_151 set community 0:5285 ip community-list standard 2_59_170 permit 65000:2 0:59 0:170 ip community-list standard 2_85_118 permit 65000:2 0:85 0:118 route-map calculator permit 37458 match community 2_59_170 2_85_118 set community 0:10030 ip community-list standard 2_236_240 permit 65000:2 0:236 0:240 route-map calculator permit 37459 match community 2_236_240 set community 0:56640 ip community-list standard 2_67_97 permit 65000:2 0:67 0:97 route-map calculator permit 37460 match community 2_67_97 set community 0:6499 ip community-list standard 2_39_169 permit 65000:2 0:39 0:169 route-map calculator permit 37461 match community 2_39_169 set community 0:6591 ip community-list standard 2_33_225 permit 65000:2 0:33 0:225 ip community-list standard 2_45_165 permit 65000:2 0:45 0:165 ip community-list standard 2_55_135 permit 65000:2 0:55 0:135 ip community-list standard 2_75_99 permit 65000:2 0:75 0:99 route-map calculator permit 37462 match community 2_33_225 2_45_165 2_55_135 2_75_99 set community 0:7425 ip community-list standard 2_134_239 permit 65000:2 0:134 0:239 route-map calculator permit 37463 match community 2_134_239 set community 0:32026 ip community-list standard 2_37_190 permit 65000:2 0:37 0:190 ip community-list standard 2_38_185 permit 65000:2 0:38 0:185 ip community-list standard 2_74_95 permit 65000:2 0:74 0:95 route-map calculator permit 37464 match community 2_37_190 2_38_185 2_74_95 set community 0:7030 ip community-list standard 2_102_248 permit 65000:2 0:102 0:248 ip community-list standard 2_124_204 permit 65000:2 0:124 0:204 ip community-list standard 2_136_186 permit 65000:2 0:136 0:186 route-map calculator permit 37465 match community 2_102_248 2_124_204 2_136_186 set community 0:25296 ip community-list standard 2_127_215 permit 65000:2 0:127 0:215 route-map calculator permit 37466 match community 2_127_215 set community 0:27305 ip community-list standard 2_14_244 permit 65000:2 0:14 0:244 ip community-list standard 2_28_122 permit 65000:2 0:28 0:122 ip community-list standard 2_56_61 permit 65000:2 0:56 0:61 route-map calculator permit 37467 match community 2_14_244 2_28_122 2_56_61 set community 0:3416 ip community-list standard 2_131_244 permit 65000:2 0:131 0:244 route-map calculator permit 37468 match community 2_131_244 set community 0:31964 ip community-list standard 2_147_248 permit 65000:2 0:147 0:248 ip community-list standard 2_168_217 permit 65000:2 0:168 0:217 ip community-list standard 2_186_196 permit 65000:2 0:186 0:196 route-map calculator permit 37469 match community 2_147_248 2_168_217 2_186_196 set community 0:36456 ip community-list standard 2_173_199 permit 65000:2 0:173 0:199 route-map calculator permit 37470 match community 2_173_199 set community 0:34427 ip community-list standard 2_62_170 permit 65000:2 0:62 0:170 ip community-list standard 2_68_155 permit 65000:2 0:68 0:155 ip community-list standard 2_85_124 permit 65000:2 0:85 0:124 route-map calculator permit 37471 match community 2_62_170 2_68_155 2_85_124 set community 0:10540 ip community-list standard 2_18_240 permit 65000:2 0:18 0:240 ip community-list standard 2_20_216 permit 65000:2 0:20 0:216 ip community-list standard 2_24_180 permit 65000:2 0:24 0:180 ip community-list standard 2_27_160 permit 65000:2 0:27 0:160 ip community-list standard 2_30_144 permit 65000:2 0:30 0:144 ip community-list standard 2_32_135 permit 65000:2 0:32 0:135 ip community-list standard 2_36_120 permit 65000:2 0:36 0:120 ip community-list standard 2_40_108 permit 65000:2 0:40 0:108 ip community-list standard 2_45_96 permit 65000:2 0:45 0:96 ip community-list standard 2_48_90 permit 65000:2 0:48 0:90 ip community-list standard 2_54_80 permit 65000:2 0:54 0:80 ip community-list standard 2_60_72 permit 65000:2 0:60 0:72 route-map calculator permit 37472 match community 2_18_240 2_20_216 2_24_180 2_27_160 2_30_144 set community 0:4320 route-map calculator permit 37473 match community 2_32_135 2_36_120 2_40_108 2_45_96 2_48_90 set community 0:4320 route-map calculator permit 37474 match community 2_54_80 2_60_72 set community 0:4320 ip community-list standard 2_178_186 permit 65000:2 0:178 0:186 route-map calculator permit 37475 match community 2_178_186 set community 0:33108 ip community-list standard 2_154_217 permit 65000:2 0:154 0:217 route-map calculator permit 37476 match community 2_154_217 set community 0:33418 ip community-list standard 2_86_238 permit 65000:2 0:86 0:238 ip community-list standard 2_119_172 permit 65000:2 0:119 0:172 route-map calculator permit 37477 match community 2_86_238 2_119_172 set community 0:20468 ip community-list standard 2_89_197 permit 65000:2 0:89 0:197 route-map calculator permit 37478 match community 2_89_197 set community 0:17533 ip community-list standard 2_195_212 permit 65000:2 0:195 0:212 route-map calculator permit 37479 match community 2_195_212 set community 0:41340 ip community-list standard 2_98_206 permit 65000:2 0:98 0:206 ip community-list standard 2_103_196 permit 65000:2 0:103 0:196 route-map calculator permit 37480 match community 2_98_206 2_103_196 set community 0:20188 ip community-list standard 2_15_256 permit 65000:2 0:15 0:256 ip community-list standard 2_16_240 permit 65000:2 0:16 0:240 ip community-list standard 2_20_192 permit 65000:2 0:20 0:192 ip community-list standard 2_24_160 permit 65000:2 0:24 0:160 ip community-list standard 2_30_128 permit 65000:2 0:30 0:128 ip community-list standard 2_32_120 permit 65000:2 0:32 0:120 ip community-list standard 2_40_96 permit 65000:2 0:40 0:96 ip community-list standard 2_48_80 permit 65000:2 0:48 0:80 ip community-list standard 2_60_64 permit 65000:2 0:60 0:64 route-map calculator permit 37481 match community 2_15_256 2_16_240 2_20_192 2_24_160 2_30_128 set community 0:3840 route-map calculator permit 37482 match community 2_32_120 2_40_96 2_48_80 2_60_64 set community 0:3840 ip community-list standard 2_34_242 permit 65000:2 0:34 0:242 ip community-list standard 2_44_187 permit 65000:2 0:44 0:187 ip community-list standard 2_68_121 permit 65000:2 0:68 0:121 route-map calculator permit 37483 match community 2_34_242 2_44_187 2_68_121 set community 0:8228 ip community-list standard 2_89_208 permit 65000:2 0:89 0:208 ip community-list standard 2_104_178 permit 65000:2 0:104 0:178 route-map calculator permit 37484 match community 2_89_208 2_104_178 set community 0:18512 ip community-list standard 2_11_41 permit 65000:2 0:11 0:41 ip community-list standard 1_195_256 permit 65000:1 0:195 0:256 ip community-list standard 1_196_255 permit 65000:1 0:196 0:255 ip community-list standard 1_197_254 permit 65000:1 0:197 0:254 ip community-list standard 1_198_253 permit 65000:1 0:198 0:253 ip community-list standard 1_199_252 permit 65000:1 0:199 0:252 ip community-list standard 1_200_251 permit 65000:1 0:200 0:251 ip community-list standard 1_201_250 permit 65000:1 0:201 0:250 ip community-list standard 1_202_249 permit 65000:1 0:202 0:249 ip community-list standard 1_203_248 permit 65000:1 0:203 0:248 ip community-list standard 1_204_247 permit 65000:1 0:204 0:247 ip community-list standard 1_205_246 permit 65000:1 0:205 0:246 ip community-list standard 1_206_245 permit 65000:1 0:206 0:245 ip community-list standard 1_207_244 permit 65000:1 0:207 0:244 ip community-list standard 1_208_243 permit 65000:1 0:208 0:243 ip community-list standard 1_209_242 permit 65000:1 0:209 0:242 ip community-list standard 1_210_241 permit 65000:1 0:210 0:241 ip community-list standard 1_211_240 permit 65000:1 0:211 0:240 ip community-list standard 1_212_239 permit 65000:1 0:212 0:239 ip community-list standard 1_213_238 permit 65000:1 0:213 0:238 ip community-list standard 1_214_237 permit 65000:1 0:214 0:237 ip community-list standard 1_215_236 permit 65000:1 0:215 0:236 ip community-list standard 1_216_235 permit 65000:1 0:216 0:235 ip community-list standard 1_217_234 permit 65000:1 0:217 0:234 ip community-list standard 1_218_233 permit 65000:1 0:218 0:233 ip community-list standard 1_219_232 permit 65000:1 0:219 0:232 ip community-list standard 1_220_231 permit 65000:1 0:220 0:231 ip community-list standard 1_221_230 permit 65000:1 0:221 0:230 ip community-list standard 1_222_229 permit 65000:1 0:222 0:229 ip community-list standard 1_223_228 permit 65000:1 0:223 0:228 ip community-list standard 1_224_227 permit 65000:1 0:224 0:227 ip community-list standard 1_225_226 permit 65000:1 0:225 0:226 route-map calculator permit 37485 match community 2_11_41 1_195_256 1_196_255 1_197_254 1_198_253 set community 0:451 route-map calculator permit 37486 match community 1_199_252 1_200_251 1_201_250 1_202_249 1_203_248 set community 0:451 route-map calculator permit 37487 match community 1_204_247 1_205_246 1_206_245 1_207_244 1_208_243 set community 0:451 route-map calculator permit 37488 match community 1_209_242 1_210_241 1_211_240 1_212_239 1_213_238 set community 0:451 route-map calculator permit 37489 match community 1_214_237 1_215_236 1_216_235 1_217_234 1_218_233 set community 0:451 route-map calculator permit 37490 match community 1_219_232 1_220_231 1_221_230 1_222_229 1_223_228 set community 0:451 route-map calculator permit 37491 match community 1_224_227 1_225_226 set community 0:451 ip community-list standard 2_116_251 permit 65000:2 0:116 0:251 route-map calculator permit 37492 match community 2_116_251 set community 0:29116 ip community-list standard 2_32_231 permit 65000:2 0:32 0:231 ip community-list standard 2_33_224 permit 65000:2 0:33 0:224 ip community-list standard 2_42_176 permit 65000:2 0:42 0:176 ip community-list standard 2_44_168 permit 65000:2 0:44 0:168 ip community-list standard 2_48_154 permit 65000:2 0:48 0:154 ip community-list standard 2_56_132 permit 65000:2 0:56 0:132 ip community-list standard 2_66_112 permit 65000:2 0:66 0:112 ip community-list standard 2_77_96 permit 65000:2 0:77 0:96 ip community-list standard 2_84_88 permit 65000:2 0:84 0:88 route-map calculator permit 37493 match community 2_32_231 2_33_224 2_42_176 2_44_168 2_48_154 set community 0:7392 route-map calculator permit 37494 match community 2_56_132 2_66_112 2_77_96 2_84_88 set community 0:7392 ip community-list standard 2_33_247 permit 65000:2 0:33 0:247 ip community-list standard 2_39_209 permit 65000:2 0:39 0:209 ip community-list standard 2_57_143 permit 65000:2 0:57 0:143 route-map calculator permit 37495 match community 2_33_247 2_39_209 2_57_143 set community 0:8151 ip community-list standard 2_159_203 permit 65000:2 0:159 0:203 route-map calculator permit 37496 match community 2_159_203 set community 0:32277 ip community-list standard 2_58_227 permit 65000:2 0:58 0:227 route-map calculator permit 37497 match community 2_58_227 set community 0:13166 ip community-list standard 2_37_117 permit 65000:2 0:37 0:117 ip community-list standard 2_39_111 permit 65000:2 0:39 0:111 route-map calculator permit 37498 match community 2_37_117 2_39_111 set community 0:4329 ip community-list standard 2_164_172 permit 65000:2 0:164 0:172 route-map calculator permit 37499 match community 2_164_172 set community 0:28208 ip community-list standard 2_86_251 permit 65000:2 0:86 0:251 route-map calculator permit 37500 match community 2_86_251 set community 0:21586 ip community-list standard 2_109_131 permit 65000:2 0:109 0:131 route-map calculator permit 37501 match community 2_109_131 set community 0:14279 ip community-list standard 2_184_236 permit 65000:2 0:184 0:236 route-map calculator permit 37502 match community 2_184_236 set community 0:43424 ip community-list standard 2_157_189 permit 65000:2 0:157 0:189 route-map calculator permit 37503 match community 2_157_189 set community 0:29673 ip community-list standard 2_140_214 permit 65000:2 0:140 0:214 route-map calculator permit 37504 match community 2_140_214 set community 0:29960 ip community-list standard 2_59_181 permit 65000:2 0:59 0:181 route-map calculator permit 37505 match community 2_59_181 set community 0:10679 ip community-list standard 2_158_209 permit 65000:2 0:158 0:209 route-map calculator permit 37506 match community 2_158_209 set community 0:33022 ip community-list standard 2_190_205 permit 65000:2 0:190 0:205 route-map calculator permit 37507 match community 2_190_205 set community 0:38950 ip community-list standard 2_170_251 permit 65000:2 0:170 0:251 route-map calculator permit 37508 match community 2_170_251 set community 0:42670 ip community-list standard 2_131_179 permit 65000:2 0:131 0:179 route-map calculator permit 37509 match community 2_131_179 set community 0:23449 ip community-list standard 2_161_218 permit 65000:2 0:161 0:218 route-map calculator permit 37510 match community 2_161_218 set community 0:35098 ip community-list standard 2_149_213 permit 65000:2 0:149 0:213 route-map calculator permit 37511 match community 2_149_213 set community 0:31737 ip community-list standard 2_20_244 permit 65000:2 0:20 0:244 ip community-list standard 2_40_122 permit 65000:2 0:40 0:122 ip community-list standard 2_61_80 permit 65000:2 0:61 0:80 route-map calculator permit 37512 match community 2_20_244 2_40_122 2_61_80 set community 0:4880 ip community-list standard 2_19_92 permit 65000:2 0:19 0:92 ip community-list standard 2_23_76 permit 65000:2 0:23 0:76 ip community-list standard 2_38_46 permit 65000:2 0:38 0:46 route-map calculator permit 37513 match community 2_19_92 2_23_76 2_38_46 set community 0:1748 ip community-list standard 2_43_169 permit 65000:2 0:43 0:169 route-map calculator permit 37514 match community 2_43_169 set community 0:7267 ip community-list standard 2_21_227 permit 65000:2 0:21 0:227 route-map calculator permit 37515 match community 2_21_227 set community 0:4767 ip community-list standard 2_231_248 permit 65000:2 0:231 0:248 route-map calculator permit 37516 match community 2_231_248 set community 0:57288 ip community-list standard 2_234_241 permit 65000:2 0:234 0:241 route-map calculator permit 37517 match community 2_234_241 set community 0:56394 ip community-list standard 2_137_223 permit 65000:2 0:137 0:223 route-map calculator permit 37518 match community 2_137_223 set community 0:30551 ip community-list standard 2_37_172 permit 65000:2 0:37 0:172 ip community-list standard 2_43_148 permit 65000:2 0:43 0:148 ip community-list standard 2_74_86 permit 65000:2 0:74 0:86 route-map calculator permit 37519 match community 2_37_172 2_43_148 2_74_86 set community 0:6364 ip community-list standard 2_58_233 permit 65000:2 0:58 0:233 route-map calculator permit 37520 match community 2_58_233 set community 0:13514 ip community-list standard 2_7_230 permit 65000:2 0:7 0:230 ip community-list standard 2_10_161 permit 65000:2 0:10 0:161 ip community-list standard 2_14_115 permit 65000:2 0:14 0:115 ip community-list standard 2_23_70 permit 65000:2 0:23 0:70 ip community-list standard 2_35_46 permit 65000:2 0:35 0:46 route-map calculator permit 37521 match community 2_7_230 2_10_161 2_14_115 2_23_70 2_35_46 set community 0:1610 ip community-list standard 2_9_255 permit 65000:2 0:9 0:255 ip community-list standard 2_15_153 permit 65000:2 0:15 0:153 ip community-list standard 2_17_135 permit 65000:2 0:17 0:135 ip community-list standard 2_27_85 permit 65000:2 0:27 0:85 ip community-list standard 2_45_51 permit 65000:2 0:45 0:51 route-map calculator permit 37522 match community 2_9_255 2_15_153 2_17_135 2_27_85 2_45_51 set community 0:2295 ip community-list standard 2_20_221 permit 65000:2 0:20 0:221 ip community-list standard 2_26_170 permit 65000:2 0:26 0:170 ip community-list standard 2_34_130 permit 65000:2 0:34 0:130 ip community-list standard 2_52_85 permit 65000:2 0:52 0:85 ip community-list standard 2_65_68 permit 65000:2 0:65 0:68 route-map calculator permit 37523 match community 2_20_221 2_26_170 2_34_130 2_52_85 2_65_68 set community 0:4420 ip community-list standard 2_47_49 permit 65000:2 0:47 0:49 route-map calculator permit 37524 match community 2_47_49 set community 0:2303 ip community-list standard 2_149_186 permit 65000:2 0:149 0:186 route-map calculator permit 37525 match community 2_149_186 set community 0:27714 ip community-list standard 2_186_218 permit 65000:2 0:186 0:218 route-map calculator permit 37526 match community 2_186_218 set community 0:40548 ip community-list standard 2_61_210 permit 65000:2 0:61 0:210 ip community-list standard 2_70_183 permit 65000:2 0:70 0:183 ip community-list standard 2_105_122 permit 65000:2 0:105 0:122 route-map calculator permit 37527 match community 2_61_210 2_70_183 2_105_122 set community 0:12810 ip community-list standard 2_2_235 permit 65000:2 0:2 0:235 ip community-list standard 2_5_94 permit 65000:2 0:5 0:94 ip community-list standard 2_10_47 permit 65000:2 0:10 0:47 ip community-list standard 1_214_256 permit 65000:1 0:214 0:256 ip community-list standard 1_215_255 permit 65000:1 0:215 0:255 ip community-list standard 1_216_254 permit 65000:1 0:216 0:254 ip community-list standard 1_217_253 permit 65000:1 0:217 0:253 ip community-list standard 1_218_252 permit 65000:1 0:218 0:252 ip community-list standard 1_219_251 permit 65000:1 0:219 0:251 ip community-list standard 1_220_250 permit 65000:1 0:220 0:250 ip community-list standard 1_221_249 permit 65000:1 0:221 0:249 ip community-list standard 1_222_248 permit 65000:1 0:222 0:248 ip community-list standard 1_223_247 permit 65000:1 0:223 0:247 ip community-list standard 1_224_246 permit 65000:1 0:224 0:246 ip community-list standard 1_225_245 permit 65000:1 0:225 0:245 ip community-list standard 1_226_244 permit 65000:1 0:226 0:244 ip community-list standard 1_227_243 permit 65000:1 0:227 0:243 ip community-list standard 1_228_242 permit 65000:1 0:228 0:242 ip community-list standard 1_229_241 permit 65000:1 0:229 0:241 ip community-list standard 1_230_240 permit 65000:1 0:230 0:240 ip community-list standard 1_231_239 permit 65000:1 0:231 0:239 ip community-list standard 1_232_238 permit 65000:1 0:232 0:238 ip community-list standard 1_233_237 permit 65000:1 0:233 0:237 ip community-list standard 1_234_236 permit 65000:1 0:234 0:236 ip community-list standard 1_235_235 permit 65000:1 0:235 0:235 route-map calculator permit 37528 match community 2_2_235 2_5_94 2_10_47 1_214_256 1_215_255 set community 0:470 route-map calculator permit 37529 match community 1_216_254 1_217_253 1_218_252 1_219_251 1_220_250 set community 0:470 route-map calculator permit 37530 match community 1_221_249 1_222_248 1_223_247 1_224_246 1_225_245 set community 0:470 route-map calculator permit 37531 match community 1_226_244 1_227_243 1_228_242 1_229_241 1_230_240 set community 0:470 route-map calculator permit 37532 match community 1_231_239 1_232_238 1_233_237 1_234_236 1_235_235 set community 0:470 ip community-list standard 2_19_134 permit 65000:2 0:19 0:134 ip community-list standard 2_38_67 permit 65000:2 0:38 0:67 route-map calculator permit 37533 match community 2_19_134 2_38_67 set community 0:2546 ip community-list standard 2_184_235 permit 65000:2 0:184 0:235 ip community-list standard 2_188_230 permit 65000:2 0:188 0:230 route-map calculator permit 37534 match community 2_184_235 2_188_230 set community 0:43240 ip community-list standard 2_87_117 permit 65000:2 0:87 0:117 route-map calculator permit 37535 match community 2_87_117 set community 0:10179 ip community-list standard 2_13_115 permit 65000:2 0:13 0:115 ip community-list standard 2_23_65 permit 65000:2 0:23 0:65 route-map calculator permit 37536 match community 2_13_115 2_23_65 set community 0:1495 ip community-list standard 2_114_247 permit 65000:2 0:114 0:247 route-map calculator permit 37537 match community 2_114_247 set community 0:28158 ip community-list standard 2_19_146 permit 65000:2 0:19 0:146 ip community-list standard 2_38_73 permit 65000:2 0:38 0:73 route-map calculator permit 37538 match community 2_19_146 2_38_73 set community 0:2774 ip community-list standard 2_162_206 permit 65000:2 0:162 0:206 route-map calculator permit 37539 match community 2_162_206 set community 0:33372 ip community-list standard 2_46_167 permit 65000:2 0:46 0:167 route-map calculator permit 37540 match community 2_46_167 set community 0:7682 ip community-list standard 2_90_173 permit 65000:2 0:90 0:173 route-map calculator permit 37541 match community 2_90_173 set community 0:15570 ip community-list standard 2_103_183 permit 65000:2 0:103 0:183 route-map calculator permit 37542 match community 2_103_183 set community 0:18849 ip community-list standard 2_161_255 permit 65000:2 0:161 0:255 route-map calculator permit 37543 match community 2_161_255 set community 0:41055 ip community-list standard 2_33_239 permit 65000:2 0:33 0:239 route-map calculator permit 37544 match community 2_33_239 set community 0:7887 ip community-list standard 2_145_173 permit 65000:2 0:145 0:173 route-map calculator permit 37545 match community 2_145_173 set community 0:25085 ip community-list standard 2_34_247 permit 65000:2 0:34 0:247 ip community-list standard 2_38_221 permit 65000:2 0:38 0:221 route-map calculator permit 37546 match community 2_34_247 2_38_221 set community 0:8398 ip community-list standard 2_64_167 permit 65000:2 0:64 0:167 route-map calculator permit 37547 match community 2_64_167 set community 0:10688 ip community-list standard 2_51_187 permit 65000:2 0:51 0:187 route-map calculator permit 37548 match community 2_51_187 set community 0:9537 ip community-list standard 2_107_131 permit 65000:2 0:107 0:131 route-map calculator permit 37549 match community 2_107_131 set community 0:14017 ip community-list standard 2_113_119 permit 65000:2 0:113 0:119 route-map calculator permit 37550 match community 2_113_119 set community 0:13447 ip community-list standard 2_125_159 permit 65000:2 0:125 0:159 route-map calculator permit 37551 match community 2_125_159 set community 0:19875 ip community-list standard 2_85_101 permit 65000:2 0:85 0:101 route-map calculator permit 37552 match community 2_85_101 set community 0:8585 ip community-list standard 2_203_245 permit 65000:2 0:203 0:245 route-map calculator permit 37553 match community 2_203_245 set community 0:49735 ip community-list standard 2_77_255 permit 65000:2 0:77 0:255 ip community-list standard 2_85_231 permit 65000:2 0:85 0:231 ip community-list standard 2_105_187 permit 65000:2 0:105 0:187 ip community-list standard 2_119_165 permit 65000:2 0:119 0:165 route-map calculator permit 37554 match community 2_77_255 2_85_231 2_105_187 2_119_165 set community 0:19635 ip community-list standard 2_115_177 permit 65000:2 0:115 0:177 route-map calculator permit 37555 match community 2_115_177 set community 0:20355 ip community-list standard 2_205_235 permit 65000:2 0:205 0:235 route-map calculator permit 37556 match community 2_205_235 set community 0:48175 ip community-list standard 2_216_219 permit 65000:2 0:216 0:219 route-map calculator permit 37557 match community 2_216_219 set community 0:47304 ip community-list standard 2_210_235 permit 65000:2 0:210 0:235 route-map calculator permit 37558 match community 2_210_235 set community 0:49350 ip community-list standard 2_115_250 permit 65000:2 0:115 0:250 ip community-list standard 2_125_230 permit 65000:2 0:125 0:230 route-map calculator permit 37559 match community 2_115_250 2_125_230 set community 0:28750 ip community-list standard 2_163_216 permit 65000:2 0:163 0:216 route-map calculator permit 37560 match community 2_163_216 set community 0:35208 ip community-list standard 2_93_127 permit 65000:2 0:93 0:127 route-map calculator permit 37561 match community 2_93_127 set community 0:11811 ip community-list standard 2_60_253 permit 65000:2 0:60 0:253 ip community-list standard 2_66_230 permit 65000:2 0:66 0:230 ip community-list standard 2_69_220 permit 65000:2 0:69 0:220 ip community-list standard 2_92_165 permit 65000:2 0:92 0:165 ip community-list standard 2_110_138 permit 65000:2 0:110 0:138 ip community-list standard 2_115_132 permit 65000:2 0:115 0:132 route-map calculator permit 37562 match community 2_60_253 2_66_230 2_69_220 2_92_165 2_110_138 set community 0:15180 route-map calculator permit 37563 match community 2_115_132 set community 0:15180 ip community-list standard 2_26_139 permit 65000:2 0:26 0:139 route-map calculator permit 37564 match community 2_26_139 set community 0:3614 ip community-list standard 2_72_194 permit 65000:2 0:72 0:194 ip community-list standard 2_97_144 permit 65000:2 0:97 0:144 route-map calculator permit 37565 match community 2_72_194 2_97_144 set community 0:13968 ip community-list standard 2_67_67 permit 65000:2 0:67 0:67 route-map calculator permit 37566 match community 2_67_67 set community 0:4489 ip community-list standard 2_128_139 permit 65000:2 0:128 0:139 route-map calculator permit 37567 match community 2_128_139 set community 0:17792 ip community-list standard 2_76_245 permit 65000:2 0:76 0:245 ip community-list standard 2_95_196 permit 65000:2 0:95 0:196 ip community-list standard 2_98_190 permit 65000:2 0:98 0:190 ip community-list standard 2_133_140 permit 65000:2 0:133 0:140 route-map calculator permit 37568 match community 2_76_245 2_95_196 2_98_190 2_133_140 set community 0:18620 ip community-list standard 2_61_244 permit 65000:2 0:61 0:244 ip community-list standard 2_122_122 permit 65000:2 0:122 0:122 route-map calculator permit 37569 match community 2_61_244 2_122_122 set community 0:14884 ip community-list standard 2_162_245 permit 65000:2 0:162 0:245 ip community-list standard 2_189_210 permit 65000:2 0:189 0:210 route-map calculator permit 37570 match community 2_162_245 2_189_210 set community 0:39690 ip community-list standard 2_192_213 permit 65000:2 0:192 0:213 route-map calculator permit 37571 match community 2_192_213 set community 0:40896 ip community-list standard 2_34_129 permit 65000:2 0:34 0:129 ip community-list standard 2_43_102 permit 65000:2 0:43 0:102 ip community-list standard 2_51_86 permit 65000:2 0:51 0:86 route-map calculator permit 37572 match community 2_34_129 2_43_102 2_51_86 set community 0:4386 ip community-list standard 2_148_223 permit 65000:2 0:148 0:223 route-map calculator permit 37573 match community 2_148_223 set community 0:33004 ip community-list standard 2_17_53 permit 65000:2 0:17 0:53 route-map calculator permit 37574 match community 2_17_53 set community 0:901 ip community-list standard 2_155_199 permit 65000:2 0:155 0:199 route-map calculator permit 37575 match community 2_155_199 set community 0:30845 ip community-list standard 2_103_155 permit 65000:2 0:103 0:155 route-map calculator permit 37576 match community 2_103_155 set community 0:15965 ip community-list standard 1_1_176 permit 65000:1 0:1 0:176 ip community-list standard 2_1_177 permit 65000:2 0:1 0:177 ip community-list standard 1_2_175 permit 65000:1 0:2 0:175 ip community-list standard 2_3_59 permit 65000:2 0:3 0:59 ip community-list standard 1_3_174 permit 65000:1 0:3 0:174 ip community-list standard 1_4_173 permit 65000:1 0:4 0:173 ip community-list standard 1_5_172 permit 65000:1 0:5 0:172 ip community-list standard 1_6_171 permit 65000:1 0:6 0:171 ip community-list standard 1_7_170 permit 65000:1 0:7 0:170 ip community-list standard 1_8_169 permit 65000:1 0:8 0:169 ip community-list standard 1_9_168 permit 65000:1 0:9 0:168 ip community-list standard 1_10_167 permit 65000:1 0:10 0:167 ip community-list standard 1_11_166 permit 65000:1 0:11 0:166 ip community-list standard 1_12_165 permit 65000:1 0:12 0:165 ip community-list standard 1_13_164 permit 65000:1 0:13 0:164 ip community-list standard 1_14_163 permit 65000:1 0:14 0:163 ip community-list standard 1_15_162 permit 65000:1 0:15 0:162 ip community-list standard 1_16_161 permit 65000:1 0:16 0:161 ip community-list standard 1_17_160 permit 65000:1 0:17 0:160 ip community-list standard 1_18_159 permit 65000:1 0:18 0:159 ip community-list standard 1_19_158 permit 65000:1 0:19 0:158 ip community-list standard 1_20_157 permit 65000:1 0:20 0:157 ip community-list standard 1_21_156 permit 65000:1 0:21 0:156 ip community-list standard 1_22_155 permit 65000:1 0:22 0:155 ip community-list standard 1_23_154 permit 65000:1 0:23 0:154 ip community-list standard 1_24_153 permit 65000:1 0:24 0:153 ip community-list standard 1_25_152 permit 65000:1 0:25 0:152 ip community-list standard 1_26_151 permit 65000:1 0:26 0:151 ip community-list standard 1_27_150 permit 65000:1 0:27 0:150 ip community-list standard 1_28_149 permit 65000:1 0:28 0:149 ip community-list standard 1_29_148 permit 65000:1 0:29 0:148 ip community-list standard 1_30_147 permit 65000:1 0:30 0:147 ip community-list standard 1_31_146 permit 65000:1 0:31 0:146 ip community-list standard 1_32_145 permit 65000:1 0:32 0:145 ip community-list standard 1_33_144 permit 65000:1 0:33 0:144 ip community-list standard 1_34_143 permit 65000:1 0:34 0:143 ip community-list standard 1_35_142 permit 65000:1 0:35 0:142 ip community-list standard 1_36_141 permit 65000:1 0:36 0:141 ip community-list standard 1_37_140 permit 65000:1 0:37 0:140 ip community-list standard 1_38_139 permit 65000:1 0:38 0:139 ip community-list standard 1_39_138 permit 65000:1 0:39 0:138 ip community-list standard 1_40_137 permit 65000:1 0:40 0:137 ip community-list standard 1_41_136 permit 65000:1 0:41 0:136 ip community-list standard 1_42_135 permit 65000:1 0:42 0:135 ip community-list standard 1_43_134 permit 65000:1 0:43 0:134 ip community-list standard 1_44_133 permit 65000:1 0:44 0:133 ip community-list standard 1_45_132 permit 65000:1 0:45 0:132 ip community-list standard 1_46_131 permit 65000:1 0:46 0:131 ip community-list standard 1_47_130 permit 65000:1 0:47 0:130 ip community-list standard 1_48_129 permit 65000:1 0:48 0:129 ip community-list standard 1_49_128 permit 65000:1 0:49 0:128 ip community-list standard 1_50_127 permit 65000:1 0:50 0:127 ip community-list standard 1_51_126 permit 65000:1 0:51 0:126 ip community-list standard 1_52_125 permit 65000:1 0:52 0:125 ip community-list standard 1_53_124 permit 65000:1 0:53 0:124 ip community-list standard 1_54_123 permit 65000:1 0:54 0:123 ip community-list standard 1_55_122 permit 65000:1 0:55 0:122 ip community-list standard 1_56_121 permit 65000:1 0:56 0:121 ip community-list standard 1_57_120 permit 65000:1 0:57 0:120 ip community-list standard 1_58_119 permit 65000:1 0:58 0:119 ip community-list standard 1_59_118 permit 65000:1 0:59 0:118 ip community-list standard 1_60_117 permit 65000:1 0:60 0:117 ip community-list standard 1_61_116 permit 65000:1 0:61 0:116 ip community-list standard 1_62_115 permit 65000:1 0:62 0:115 ip community-list standard 1_63_114 permit 65000:1 0:63 0:114 ip community-list standard 1_64_113 permit 65000:1 0:64 0:113 ip community-list standard 1_65_112 permit 65000:1 0:65 0:112 ip community-list standard 1_66_111 permit 65000:1 0:66 0:111 ip community-list standard 1_67_110 permit 65000:1 0:67 0:110 ip community-list standard 1_68_109 permit 65000:1 0:68 0:109 ip community-list standard 1_69_108 permit 65000:1 0:69 0:108 ip community-list standard 1_70_107 permit 65000:1 0:70 0:107 ip community-list standard 1_71_106 permit 65000:1 0:71 0:106 ip community-list standard 1_72_105 permit 65000:1 0:72 0:105 ip community-list standard 1_73_104 permit 65000:1 0:73 0:104 ip community-list standard 1_74_103 permit 65000:1 0:74 0:103 ip community-list standard 1_75_102 permit 65000:1 0:75 0:102 ip community-list standard 1_76_101 permit 65000:1 0:76 0:101 ip community-list standard 1_77_100 permit 65000:1 0:77 0:100 ip community-list standard 1_78_99 permit 65000:1 0:78 0:99 ip community-list standard 1_79_98 permit 65000:1 0:79 0:98 ip community-list standard 1_80_97 permit 65000:1 0:80 0:97 ip community-list standard 1_81_96 permit 65000:1 0:81 0:96 ip community-list standard 1_82_95 permit 65000:1 0:82 0:95 ip community-list standard 1_83_94 permit 65000:1 0:83 0:94 ip community-list standard 1_84_93 permit 65000:1 0:84 0:93 ip community-list standard 1_85_92 permit 65000:1 0:85 0:92 ip community-list standard 1_86_91 permit 65000:1 0:86 0:91 ip community-list standard 1_87_90 permit 65000:1 0:87 0:90 ip community-list standard 1_88_89 permit 65000:1 0:88 0:89 ip community-list expanded c177 permit 1 ^65000:4_0:177_0:1$ ip community-list expanded c177 permit 2 ^65000:3_0:178_0:1$ ip community-list expanded c177 permit 3 ^65000:3_0:179_0:2$ ip community-list expanded c177 permit 4 ^65000:3_0:180_0:3$ ip community-list expanded c177 permit 5 ^65000:3_0:181_0:4$ ip community-list expanded c177 permit 6 ^65000:3_0:182_0:5$ ip community-list expanded c177 permit 7 ^65000:3_0:183_0:6$ ip community-list expanded c177 permit 8 ^65000:3_0:184_0:7$ ip community-list expanded c177 permit 9 ^65000:3_0:185_0:8$ ip community-list expanded c177 permit 10 ^65000:3_0:186_0:9$ ip community-list expanded c177 permit 11 ^65000:3_0:187_0:10$ ip community-list expanded c177 permit 12 ^65000:3_0:188_0:11$ ip community-list expanded c177 permit 13 ^65000:3_0:189_0:12$ ip community-list expanded c177 permit 14 ^65000:3_0:190_0:13$ ip community-list expanded c177 permit 15 ^65000:3_0:191_0:14$ ip community-list expanded c177 permit 16 ^65000:3_0:192_0:15$ ip community-list expanded c177 permit 17 ^65000:3_0:193_0:16$ ip community-list expanded c177 permit 18 ^65000:3_0:194_0:17$ ip community-list expanded c177 permit 19 ^65000:3_0:195_0:18$ ip community-list expanded c177 permit 20 ^65000:3_0:196_0:19$ ip community-list expanded c177 permit 21 ^65000:3_0:197_0:20$ ip community-list expanded c177 permit 22 ^65000:3_0:198_0:21$ ip community-list expanded c177 permit 23 ^65000:3_0:199_0:22$ ip community-list expanded c177 permit 24 ^65000:3_0:200_0:23$ ip community-list expanded c177 permit 25 ^65000:3_0:201_0:24$ ip community-list expanded c177 permit 26 ^65000:3_0:202_0:25$ ip community-list expanded c177 permit 27 ^65000:3_0:203_0:26$ ip community-list expanded c177 permit 28 ^65000:3_0:204_0:27$ ip community-list expanded c177 permit 29 ^65000:3_0:205_0:28$ ip community-list expanded c177 permit 30 ^65000:3_0:206_0:29$ ip community-list expanded c177 permit 31 ^65000:3_0:207_0:30$ ip community-list expanded c177 permit 32 ^65000:3_0:208_0:31$ ip community-list expanded c177 permit 33 ^65000:3_0:209_0:32$ ip community-list expanded c177 permit 34 ^65000:3_0:210_0:33$ ip community-list expanded c177 permit 35 ^65000:3_0:211_0:34$ ip community-list expanded c177 permit 36 ^65000:3_0:212_0:35$ ip community-list expanded c177 permit 37 ^65000:3_0:213_0:36$ ip community-list expanded c177 permit 38 ^65000:3_0:214_0:37$ ip community-list expanded c177 permit 39 ^65000:3_0:215_0:38$ ip community-list expanded c177 permit 40 ^65000:3_0:216_0:39$ ip community-list expanded c177 permit 41 ^65000:3_0:217_0:40$ ip community-list expanded c177 permit 42 ^65000:3_0:218_0:41$ ip community-list expanded c177 permit 43 ^65000:3_0:219_0:42$ ip community-list expanded c177 permit 44 ^65000:3_0:220_0:43$ ip community-list expanded c177 permit 45 ^65000:3_0:221_0:44$ ip community-list expanded c177 permit 46 ^65000:3_0:222_0:45$ ip community-list expanded c177 permit 47 ^65000:3_0:223_0:46$ ip community-list expanded c177 permit 48 ^65000:3_0:224_0:47$ ip community-list expanded c177 permit 49 ^65000:3_0:225_0:48$ ip community-list expanded c177 permit 50 ^65000:3_0:226_0:49$ ip community-list expanded c177 permit 51 ^65000:3_0:227_0:50$ ip community-list expanded c177 permit 52 ^65000:3_0:228_0:51$ ip community-list expanded c177 permit 53 ^65000:3_0:229_0:52$ ip community-list expanded c177 permit 54 ^65000:3_0:230_0:53$ ip community-list expanded c177 permit 55 ^65000:3_0:231_0:54$ ip community-list expanded c177 permit 56 ^65000:3_0:232_0:55$ ip community-list expanded c177 permit 57 ^65000:3_0:233_0:56$ ip community-list expanded c177 permit 58 ^65000:3_0:234_0:57$ ip community-list expanded c177 permit 59 ^65000:3_0:235_0:58$ ip community-list expanded c177 permit 60 ^65000:3_0:236_0:59$ ip community-list expanded c177 permit 61 ^65000:3_0:237_0:60$ ip community-list expanded c177 permit 62 ^65000:3_0:238_0:61$ ip community-list expanded c177 permit 63 ^65000:3_0:239_0:62$ ip community-list expanded c177 permit 64 ^65000:3_0:240_0:63$ ip community-list expanded c177 permit 65 ^65000:3_0:241_0:64$ ip community-list expanded c177 permit 66 ^65000:3_0:242_0:65$ ip community-list expanded c177 permit 67 ^65000:3_0:243_0:66$ ip community-list expanded c177 permit 68 ^65000:3_0:244_0:67$ ip community-list expanded c177 permit 69 ^65000:3_0:245_0:68$ ip community-list expanded c177 permit 70 ^65000:3_0:246_0:69$ ip community-list expanded c177 permit 71 ^65000:3_0:247_0:70$ ip community-list expanded c177 permit 72 ^65000:3_0:248_0:71$ ip community-list expanded c177 permit 73 ^65000:3_0:249_0:72$ ip community-list expanded c177 permit 74 ^65000:3_0:250_0:73$ ip community-list expanded c177 permit 75 ^65000:3_0:251_0:74$ ip community-list expanded c177 permit 76 ^65000:3_0:252_0:75$ ip community-list expanded c177 permit 77 ^65000:3_0:253_0:76$ ip community-list expanded c177 permit 78 ^65000:3_0:254_0:77$ ip community-list expanded c177 permit 79 ^65000:3_0:255_0:78$ ip community-list expanded c177 permit 80 ^65000:3_0:256_0:79$ route-map calculator permit 37577 match community 1_1_176 2_1_177 1_2_175 2_3_59 1_3_174 set community 0:177 route-map calculator permit 37578 match community 1_4_173 1_5_172 1_6_171 1_7_170 1_8_169 set community 0:177 route-map calculator permit 37579 match community 1_9_168 1_10_167 1_11_166 1_12_165 1_13_164 set community 0:177 route-map calculator permit 37580 match community 1_14_163 1_15_162 1_16_161 1_17_160 1_18_159 set community 0:177 route-map calculator permit 37581 match community 1_19_158 1_20_157 1_21_156 1_22_155 1_23_154 set community 0:177 route-map calculator permit 37582 match community 1_24_153 1_25_152 1_26_151 1_27_150 1_28_149 set community 0:177 route-map calculator permit 37583 match community 1_29_148 1_30_147 1_31_146 1_32_145 1_33_144 set community 0:177 route-map calculator permit 37584 match community 1_34_143 1_35_142 1_36_141 1_37_140 1_38_139 set community 0:177 route-map calculator permit 37585 match community 1_39_138 1_40_137 1_41_136 1_42_135 1_43_134 set community 0:177 route-map calculator permit 37586 match community 1_44_133 1_45_132 1_46_131 1_47_130 1_48_129 set community 0:177 route-map calculator permit 37587 match community 1_49_128 1_50_127 1_51_126 1_52_125 1_53_124 set community 0:177 route-map calculator permit 37588 match community 1_54_123 1_55_122 1_56_121 1_57_120 1_58_119 set community 0:177 route-map calculator permit 37589 match community 1_59_118 1_60_117 1_61_116 1_62_115 1_63_114 set community 0:177 route-map calculator permit 37590 match community 1_64_113 1_65_112 1_66_111 1_67_110 1_68_109 set community 0:177 route-map calculator permit 37591 match community 1_69_108 1_70_107 1_71_106 1_72_105 1_73_104 set community 0:177 route-map calculator permit 37592 match community 1_74_103 1_75_102 1_76_101 1_77_100 1_78_99 set community 0:177 route-map calculator permit 37593 match community 1_79_98 1_80_97 1_81_96 1_82_95 1_83_94 set community 0:177 route-map calculator permit 37594 match community 1_84_93 1_85_92 1_86_91 1_87_90 1_88_89 set community 0:177 route-map calculator permit 37595 match community c4_177_1 c3_178_1 c3_179_2 c3_180_3 c3_181_4 set community 0:177 route-map calculator permit 37596 match community c3_182_5 c3_183_6 c3_184_7 c3_185_8 c3_186_9 set community 0:177 route-map calculator permit 37597 match community c3_187_10 c3_188_11 c3_189_12 c3_190_13 c3_191_14 set community 0:177 route-map calculator permit 37598 match community c3_192_15 c3_193_16 c3_194_17 c3_195_18 c3_196_19 set community 0:177 route-map calculator permit 37599 match community c3_197_20 c3_198_21 c3_199_22 c3_200_23 c3_201_24 set community 0:177 route-map calculator permit 37600 match community c3_202_25 c3_203_26 c3_204_27 c3_205_28 c3_206_29 set community 0:177 route-map calculator permit 37601 match community c3_207_30 c3_208_31 c3_209_32 c3_210_33 c3_211_34 set community 0:177 route-map calculator permit 37602 match community c3_212_35 c3_213_36 c3_214_37 c3_215_38 c3_216_39 set community 0:177 route-map calculator permit 37603 match community c3_217_40 c3_218_41 c3_219_42 c3_220_43 c3_221_44 set community 0:177 route-map calculator permit 37604 match community c3_222_45 c3_223_46 c3_224_47 c3_225_48 c3_226_49 set community 0:177 route-map calculator permit 37605 match community c3_227_50 c3_228_51 c3_229_52 c3_230_53 c3_231_54 set community 0:177 route-map calculator permit 37606 match community c3_232_55 c3_233_56 c3_234_57 c3_235_58 c3_236_59 set community 0:177 route-map calculator permit 37607 match community c3_237_60 c3_238_61 c3_239_62 c3_240_63 c3_241_64 set community 0:177 route-map calculator permit 37608 match community c3_242_65 c3_243_66 c3_244_67 c3_245_68 c3_246_69 set community 0:177 route-map calculator permit 37609 match community c3_247_70 c3_248_71 c3_249_72 c3_250_73 c3_251_74 set community 0:177 route-map calculator permit 37610 match community c3_252_75 c3_253_76 c3_254_77 c3_255_78 c3_256_79 set community 0:177 ip community-list standard 2_94_222 permit 65000:2 0:94 0:222 ip community-list standard 2_111_188 permit 65000:2 0:111 0:188 ip community-list standard 2_141_148 permit 65000:2 0:141 0:148 route-map calculator permit 37611 match community 2_94_222 2_111_188 2_141_148 set community 0:20868 ip community-list standard 2_113_135 permit 65000:2 0:113 0:135 route-map calculator permit 37612 match community 2_113_135 set community 0:15255 ip community-list standard 2_158_250 permit 65000:2 0:158 0:250 route-map calculator permit 37613 match community 2_158_250 set community 0:39500 ip community-list standard 2_75_234 permit 65000:2 0:75 0:234 ip community-list standard 2_78_225 permit 65000:2 0:78 0:225 ip community-list standard 2_90_195 permit 65000:2 0:90 0:195 ip community-list standard 2_117_150 permit 65000:2 0:117 0:150 ip community-list standard 2_130_135 permit 65000:2 0:130 0:135 route-map calculator permit 37614 match community 2_75_234 2_78_225 2_90_195 2_117_150 2_130_135 set community 0:17550 ip community-list standard 2_167_208 permit 65000:2 0:167 0:208 route-map calculator permit 37615 match community 2_167_208 set community 0:34736 ip community-list standard 2_101_249 permit 65000:2 0:101 0:249 route-map calculator permit 37616 match community 2_101_249 set community 0:25149 ip community-list standard 1_1_231 permit 65000:1 0:1 0:231 ip community-list standard 2_1_232 permit 65000:2 0:1 0:232 ip community-list standard 2_2_116 permit 65000:2 0:2 0:116 ip community-list standard 1_2_230 permit 65000:1 0:2 0:230 ip community-list standard 1_3_229 permit 65000:1 0:3 0:229 ip community-list standard 2_4_58 permit 65000:2 0:4 0:58 ip community-list standard 1_4_228 permit 65000:1 0:4 0:228 ip community-list standard 1_5_227 permit 65000:1 0:5 0:227 ip community-list standard 1_6_226 permit 65000:1 0:6 0:226 ip community-list standard 1_7_225 permit 65000:1 0:7 0:225 ip community-list standard 2_8_29 permit 65000:2 0:8 0:29 ip community-list standard 1_8_224 permit 65000:1 0:8 0:224 ip community-list standard 1_9_223 permit 65000:1 0:9 0:223 ip community-list standard 1_10_222 permit 65000:1 0:10 0:222 ip community-list standard 1_11_221 permit 65000:1 0:11 0:221 ip community-list standard 1_12_220 permit 65000:1 0:12 0:220 ip community-list standard 1_13_219 permit 65000:1 0:13 0:219 ip community-list standard 1_14_218 permit 65000:1 0:14 0:218 ip community-list standard 1_15_217 permit 65000:1 0:15 0:217 ip community-list standard 1_16_216 permit 65000:1 0:16 0:216 ip community-list standard 1_17_215 permit 65000:1 0:17 0:215 ip community-list standard 1_18_214 permit 65000:1 0:18 0:214 ip community-list standard 1_19_213 permit 65000:1 0:19 0:213 ip community-list standard 1_20_212 permit 65000:1 0:20 0:212 ip community-list standard 1_21_211 permit 65000:1 0:21 0:211 ip community-list standard 1_22_210 permit 65000:1 0:22 0:210 ip community-list standard 1_23_209 permit 65000:1 0:23 0:209 ip community-list standard 1_24_208 permit 65000:1 0:24 0:208 ip community-list standard 1_25_207 permit 65000:1 0:25 0:207 ip community-list standard 1_26_206 permit 65000:1 0:26 0:206 ip community-list standard 1_27_205 permit 65000:1 0:27 0:205 ip community-list standard 1_28_204 permit 65000:1 0:28 0:204 ip community-list standard 1_29_203 permit 65000:1 0:29 0:203 ip community-list standard 1_30_202 permit 65000:1 0:30 0:202 ip community-list standard 1_31_201 permit 65000:1 0:31 0:201 ip community-list standard 1_32_200 permit 65000:1 0:32 0:200 ip community-list standard 1_33_199 permit 65000:1 0:33 0:199 ip community-list standard 1_34_198 permit 65000:1 0:34 0:198 ip community-list standard 1_35_197 permit 65000:1 0:35 0:197 ip community-list standard 1_36_196 permit 65000:1 0:36 0:196 ip community-list standard 1_37_195 permit 65000:1 0:37 0:195 ip community-list standard 1_38_194 permit 65000:1 0:38 0:194 ip community-list standard 1_39_193 permit 65000:1 0:39 0:193 ip community-list standard 1_40_192 permit 65000:1 0:40 0:192 ip community-list standard 1_41_191 permit 65000:1 0:41 0:191 ip community-list standard 1_42_190 permit 65000:1 0:42 0:190 ip community-list standard 1_43_189 permit 65000:1 0:43 0:189 ip community-list standard 1_44_188 permit 65000:1 0:44 0:188 ip community-list standard 1_45_187 permit 65000:1 0:45 0:187 ip community-list standard 1_46_186 permit 65000:1 0:46 0:186 ip community-list standard 1_47_185 permit 65000:1 0:47 0:185 ip community-list standard 1_48_184 permit 65000:1 0:48 0:184 ip community-list standard 1_49_183 permit 65000:1 0:49 0:183 ip community-list standard 1_50_182 permit 65000:1 0:50 0:182 ip community-list standard 1_51_181 permit 65000:1 0:51 0:181 ip community-list standard 1_52_180 permit 65000:1 0:52 0:180 ip community-list standard 1_53_179 permit 65000:1 0:53 0:179 ip community-list standard 1_54_178 permit 65000:1 0:54 0:178 ip community-list standard 1_55_177 permit 65000:1 0:55 0:177 ip community-list standard 1_56_176 permit 65000:1 0:56 0:176 ip community-list standard 1_57_175 permit 65000:1 0:57 0:175 ip community-list standard 1_58_174 permit 65000:1 0:58 0:174 ip community-list standard 1_59_173 permit 65000:1 0:59 0:173 ip community-list standard 1_60_172 permit 65000:1 0:60 0:172 ip community-list standard 1_61_171 permit 65000:1 0:61 0:171 ip community-list standard 1_62_170 permit 65000:1 0:62 0:170 ip community-list standard 1_63_169 permit 65000:1 0:63 0:169 ip community-list standard 1_64_168 permit 65000:1 0:64 0:168 ip community-list standard 1_65_167 permit 65000:1 0:65 0:167 ip community-list standard 1_66_166 permit 65000:1 0:66 0:166 ip community-list standard 1_67_165 permit 65000:1 0:67 0:165 ip community-list standard 1_68_164 permit 65000:1 0:68 0:164 ip community-list standard 1_69_163 permit 65000:1 0:69 0:163 ip community-list standard 1_70_162 permit 65000:1 0:70 0:162 ip community-list standard 1_71_161 permit 65000:1 0:71 0:161 ip community-list standard 1_72_160 permit 65000:1 0:72 0:160 ip community-list standard 1_73_159 permit 65000:1 0:73 0:159 ip community-list standard 1_74_158 permit 65000:1 0:74 0:158 ip community-list standard 1_75_157 permit 65000:1 0:75 0:157 ip community-list standard 1_76_156 permit 65000:1 0:76 0:156 ip community-list standard 1_77_155 permit 65000:1 0:77 0:155 ip community-list standard 1_78_154 permit 65000:1 0:78 0:154 ip community-list standard 1_79_153 permit 65000:1 0:79 0:153 ip community-list standard 1_80_152 permit 65000:1 0:80 0:152 ip community-list standard 1_81_151 permit 65000:1 0:81 0:151 ip community-list standard 1_82_150 permit 65000:1 0:82 0:150 ip community-list standard 1_83_149 permit 65000:1 0:83 0:149 ip community-list standard 1_84_148 permit 65000:1 0:84 0:148 ip community-list standard 1_85_147 permit 65000:1 0:85 0:147 ip community-list standard 1_86_146 permit 65000:1 0:86 0:146 ip community-list standard 1_87_145 permit 65000:1 0:87 0:145 ip community-list standard 1_88_144 permit 65000:1 0:88 0:144 ip community-list standard 1_89_143 permit 65000:1 0:89 0:143 ip community-list standard 1_90_142 permit 65000:1 0:90 0:142 ip community-list standard 1_91_141 permit 65000:1 0:91 0:141 ip community-list standard 1_92_140 permit 65000:1 0:92 0:140 ip community-list standard 1_93_139 permit 65000:1 0:93 0:139 ip community-list standard 1_94_138 permit 65000:1 0:94 0:138 ip community-list standard 1_95_137 permit 65000:1 0:95 0:137 ip community-list standard 1_96_136 permit 65000:1 0:96 0:136 ip community-list standard 1_97_135 permit 65000:1 0:97 0:135 ip community-list standard 1_98_134 permit 65000:1 0:98 0:134 ip community-list standard 1_99_133 permit 65000:1 0:99 0:133 ip community-list standard 1_100_132 permit 65000:1 0:100 0:132 ip community-list standard 1_101_131 permit 65000:1 0:101 0:131 ip community-list standard 1_102_130 permit 65000:1 0:102 0:130 ip community-list standard 1_103_129 permit 65000:1 0:103 0:129 ip community-list standard 1_104_128 permit 65000:1 0:104 0:128 ip community-list standard 1_105_127 permit 65000:1 0:105 0:127 ip community-list standard 1_106_126 permit 65000:1 0:106 0:126 ip community-list standard 1_107_125 permit 65000:1 0:107 0:125 ip community-list standard 1_108_124 permit 65000:1 0:108 0:124 ip community-list standard 1_109_123 permit 65000:1 0:109 0:123 ip community-list standard 1_110_122 permit 65000:1 0:110 0:122 ip community-list standard 1_111_121 permit 65000:1 0:111 0:121 ip community-list standard 1_112_120 permit 65000:1 0:112 0:120 ip community-list standard 1_113_119 permit 65000:1 0:113 0:119 ip community-list standard 1_114_118 permit 65000:1 0:114 0:118 ip community-list standard 1_115_117 permit 65000:1 0:115 0:117 ip community-list standard 1_116_116 permit 65000:1 0:116 0:116 ip community-list expanded c232 permit 1 ^65000:4_0:232_0:1$ ip community-list expanded c232 permit 2 ^65000:3_0:233_0:1$ ip community-list expanded c232 permit 3 ^65000:3_0:234_0:2$ ip community-list expanded c232 permit 4 ^65000:3_0:235_0:3$ ip community-list expanded c232 permit 5 ^65000:3_0:236_0:4$ ip community-list expanded c232 permit 6 ^65000:3_0:237_0:5$ ip community-list expanded c232 permit 7 ^65000:3_0:238_0:6$ ip community-list expanded c232 permit 8 ^65000:3_0:239_0:7$ ip community-list expanded c232 permit 9 ^65000:3_0:240_0:8$ ip community-list expanded c232 permit 10 ^65000:3_0:241_0:9$ ip community-list expanded c232 permit 11 ^65000:3_0:242_0:10$ ip community-list expanded c232 permit 12 ^65000:3_0:243_0:11$ ip community-list expanded c232 permit 13 ^65000:3_0:244_0:12$ ip community-list expanded c232 permit 14 ^65000:3_0:245_0:13$ ip community-list expanded c232 permit 15 ^65000:3_0:246_0:14$ ip community-list expanded c232 permit 16 ^65000:3_0:247_0:15$ ip community-list expanded c232 permit 17 ^65000:3_0:248_0:16$ ip community-list expanded c232 permit 18 ^65000:3_0:249_0:17$ ip community-list expanded c232 permit 19 ^65000:3_0:250_0:18$ ip community-list expanded c232 permit 20 ^65000:3_0:251_0:19$ ip community-list expanded c232 permit 21 ^65000:3_0:252_0:20$ ip community-list expanded c232 permit 22 ^65000:3_0:253_0:21$ ip community-list expanded c232 permit 23 ^65000:3_0:254_0:22$ ip community-list expanded c232 permit 24 ^65000:3_0:255_0:23$ ip community-list expanded c232 permit 25 ^65000:3_0:256_0:24$ route-map calculator permit 37617 match community 1_1_231 2_1_232 2_2_116 1_2_230 1_3_229 set community 0:232 route-map calculator permit 37618 match community 2_4_58 1_4_228 1_5_227 1_6_226 1_7_225 set community 0:232 route-map calculator permit 37619 match community 2_8_29 1_8_224 1_9_223 1_10_222 1_11_221 set community 0:232 route-map calculator permit 37620 match community 1_12_220 1_13_219 1_14_218 1_15_217 1_16_216 set community 0:232 route-map calculator permit 37621 match community 1_17_215 1_18_214 1_19_213 1_20_212 1_21_211 set community 0:232 route-map calculator permit 37622 match community 1_22_210 1_23_209 1_24_208 1_25_207 1_26_206 set community 0:232 route-map calculator permit 37623 match community 1_27_205 1_28_204 1_29_203 1_30_202 1_31_201 set community 0:232 route-map calculator permit 37624 match community 1_32_200 1_33_199 1_34_198 1_35_197 1_36_196 set community 0:232 route-map calculator permit 37625 match community 1_37_195 1_38_194 1_39_193 1_40_192 1_41_191 set community 0:232 route-map calculator permit 37626 match community 1_42_190 1_43_189 1_44_188 1_45_187 1_46_186 set community 0:232 route-map calculator permit 37627 match community 1_47_185 1_48_184 1_49_183 1_50_182 1_51_181 set community 0:232 route-map calculator permit 37628 match community 1_52_180 1_53_179 1_54_178 1_55_177 1_56_176 set community 0:232 route-map calculator permit 37629 match community 1_57_175 1_58_174 1_59_173 1_60_172 1_61_171 set community 0:232 route-map calculator permit 37630 match community 1_62_170 1_63_169 1_64_168 1_65_167 1_66_166 set community 0:232 route-map calculator permit 37631 match community 1_67_165 1_68_164 1_69_163 1_70_162 1_71_161 set community 0:232 route-map calculator permit 37632 match community 1_72_160 1_73_159 1_74_158 1_75_157 1_76_156 set community 0:232 route-map calculator permit 37633 match community 1_77_155 1_78_154 1_79_153 1_80_152 1_81_151 set community 0:232 route-map calculator permit 37634 match community 1_82_150 1_83_149 1_84_148 1_85_147 1_86_146 set community 0:232 route-map calculator permit 37635 match community 1_87_145 1_88_144 1_89_143 1_90_142 1_91_141 set community 0:232 route-map calculator permit 37636 match community 1_92_140 1_93_139 1_94_138 1_95_137 1_96_136 set community 0:232 route-map calculator permit 37637 match community 1_97_135 1_98_134 1_99_133 1_100_132 1_101_131 set community 0:232 route-map calculator permit 37638 match community 1_102_130 1_103_129 1_104_128 1_105_127 1_106_126 set community 0:232 route-map calculator permit 37639 match community 1_107_125 1_108_124 1_109_123 1_110_122 1_111_121 set community 0:232 route-map calculator permit 37640 match community 1_112_120 1_113_119 1_114_118 1_115_117 1_116_116 set community 0:232 route-map calculator permit 37641 match community c4_232_1 c3_233_1 c3_234_2 c3_235_3 c3_236_4 set community 0:232 route-map calculator permit 37642 match community c3_237_5 c3_238_6 c3_239_7 c3_240_8 c3_241_9 set community 0:232 route-map calculator permit 37643 match community c3_242_10 c3_243_11 c3_244_12 c3_245_13 c3_246_14 set community 0:232 route-map calculator permit 37644 match community c3_247_15 c3_248_16 c3_249_17 c3_250_18 c3_251_19 set community 0:232 route-map calculator permit 37645 match community c3_252_20 c3_253_21 c3_254_22 c3_255_23 c3_256_24 set community 0:232 ip community-list standard 2_75_89 permit 65000:2 0:75 0:89 route-map calculator permit 37646 match community 2_75_89 set community 0:6675 ip community-list standard 2_151_252 permit 65000:2 0:151 0:252 route-map calculator permit 37647 match community 2_151_252 set community 0:38052 ip community-list standard 2_39_183 permit 65000:2 0:39 0:183 ip community-list standard 2_61_117 permit 65000:2 0:61 0:117 route-map calculator permit 37648 match community 2_39_183 2_61_117 set community 0:7137 ip community-list standard 2_171_229 permit 65000:2 0:171 0:229 route-map calculator permit 37649 match community 2_171_229 set community 0:39159 ip community-list standard 2_107_242 permit 65000:2 0:107 0:242 ip community-list standard 2_121_214 permit 65000:2 0:121 0:214 route-map calculator permit 37650 match community 2_107_242 2_121_214 set community 0:25894 ip community-list standard 2_193_219 permit 65000:2 0:193 0:219 route-map calculator permit 37651 match community 2_193_219 set community 0:42267 ip community-list standard 2_139_143 permit 65000:2 0:139 0:143 route-map calculator permit 37652 match community 2_139_143 set community 0:19877 ip community-list standard 2_7_184 permit 65000:2 0:7 0:184 ip community-list standard 2_8_161 permit 65000:2 0:8 0:161 ip community-list standard 2_14_92 permit 65000:2 0:14 0:92 ip community-list standard 2_23_56 permit 65000:2 0:23 0:56 ip community-list standard 2_28_46 permit 65000:2 0:28 0:46 route-map calculator permit 37653 match community 2_7_184 2_8_161 2_14_92 2_23_56 2_28_46 set community 0:1288 ip community-list standard 2_159_189 permit 65000:2 0:159 0:189 route-map calculator permit 37654 match community 2_159_189 set community 0:30051 ip community-list standard 2_113_165 permit 65000:2 0:113 0:165 route-map calculator permit 37655 match community 2_113_165 set community 0:18645 ip community-list standard 2_53_211 permit 65000:2 0:53 0:211 route-map calculator permit 37656 match community 2_53_211 set community 0:11183 ip community-list standard 2_38_196 permit 65000:2 0:38 0:196 ip community-list standard 2_49_152 permit 65000:2 0:49 0:152 ip community-list standard 2_56_133 permit 65000:2 0:56 0:133 ip community-list standard 2_76_98 permit 65000:2 0:76 0:98 route-map calculator permit 37657 match community 2_38_196 2_49_152 2_56_133 2_76_98 set community 0:7448 ip community-list standard 2_18_178 permit 65000:2 0:18 0:178 ip community-list standard 2_36_89 permit 65000:2 0:36 0:89 route-map calculator permit 37658 match community 2_18_178 2_36_89 set community 0:3204 ip community-list standard 2_78_163 permit 65000:2 0:78 0:163 route-map calculator permit 37659 match community 2_78_163 set community 0:12714 ip community-list standard 2_17_173 permit 65000:2 0:17 0:173 route-map calculator permit 37660 match community 2_17_173 set community 0:2941 ip community-list standard 2_200_244 permit 65000:2 0:200 0:244 route-map calculator permit 37661 match community 2_200_244 set community 0:48800 ip community-list standard 2_119_243 permit 65000:2 0:119 0:243 ip community-list standard 2_153_189 permit 65000:2 0:153 0:189 route-map calculator permit 37662 match community 2_119_243 2_153_189 set community 0:28917 ip community-list standard 2_113_230 permit 65000:2 0:113 0:230 ip community-list standard 2_115_226 permit 65000:2 0:115 0:226 route-map calculator permit 37663 match community 2_113_230 2_115_226 set community 0:25990 ip community-list standard 2_206_211 permit 65000:2 0:206 0:211 route-map calculator permit 37664 match community 2_206_211 set community 0:43466 ip community-list standard 2_78_197 permit 65000:2 0:78 0:197 route-map calculator permit 37665 match community 2_78_197 set community 0:15366 ip community-list standard 2_105_139 permit 65000:2 0:105 0:139 route-map calculator permit 37666 match community 2_105_139 set community 0:14595 ip community-list standard 2_152_206 permit 65000:2 0:152 0:206 route-map calculator permit 37667 match community 2_152_206 set community 0:31312 ip community-list standard 2_56_137 permit 65000:2 0:56 0:137 route-map calculator permit 37668 match community 2_56_137 set community 0:7672 ip community-list standard 2_159_236 permit 65000:2 0:159 0:236 ip community-list standard 2_177_212 permit 65000:2 0:177 0:212 route-map calculator permit 37669 match community 2_159_236 2_177_212 set community 0:37524 ip community-list standard 2_24_206 permit 65000:2 0:24 0:206 ip community-list standard 2_48_103 permit 65000:2 0:48 0:103 route-map calculator permit 37670 match community 2_24_206 2_48_103 set community 0:4944 ip community-list standard 2_89_175 permit 65000:2 0:89 0:175 route-map calculator permit 37671 match community 2_89_175 set community 0:15575 ip community-list standard 2_96_197 permit 65000:2 0:96 0:197 route-map calculator permit 37672 match community 2_96_197 set community 0:18912 ip community-list standard 2_82_208 permit 65000:2 0:82 0:208 ip community-list standard 2_104_164 permit 65000:2 0:104 0:164 route-map calculator permit 37673 match community 2_82_208 2_104_164 set community 0:17056 ip community-list standard 2_131_192 permit 65000:2 0:131 0:192 route-map calculator permit 37674 match community 2_131_192 set community 0:25152 ip community-list standard 2_128_149 permit 65000:2 0:128 0:149 route-map calculator permit 37675 match community 2_128_149 set community 0:19072 ip community-list standard 2_74_217 permit 65000:2 0:74 0:217 route-map calculator permit 37676 match community 2_74_217 set community 0:16058 ip community-list standard 2_19_226 permit 65000:2 0:19 0:226 ip community-list standard 2_38_113 permit 65000:2 0:38 0:113 route-map calculator permit 37677 match community 2_19_226 2_38_113 set community 0:4294 ip community-list standard 2_208_249 permit 65000:2 0:208 0:249 route-map calculator permit 37678 match community 2_208_249 set community 0:51792 ip community-list standard 2_79_199 permit 65000:2 0:79 0:199 route-map calculator permit 37679 match community 2_79_199 set community 0:15721 ip community-list standard 2_120_223 permit 65000:2 0:120 0:223 route-map calculator permit 37680 match community 2_120_223 set community 0:26760 ip community-list standard 2_131_144 permit 65000:2 0:131 0:144 route-map calculator permit 37681 match community 2_131_144 set community 0:18864 ip community-list standard 2_217_218 permit 65000:2 0:217 0:218 route-map calculator permit 37682 match community 2_217_218 set community 0:47306 ip community-list standard 2_23_158 permit 65000:2 0:23 0:158 ip community-list standard 2_46_79 permit 65000:2 0:46 0:79 route-map calculator permit 37683 match community 2_23_158 2_46_79 set community 0:3634 ip community-list standard 2_17_125 permit 65000:2 0:17 0:125 ip community-list standard 2_25_85 permit 65000:2 0:25 0:85 route-map calculator permit 37684 match community 2_17_125 2_25_85 set community 0:2125 ip community-list standard 2_65_155 permit 65000:2 0:65 0:155 route-map calculator permit 37685 match community 2_65_155 set community 0:10075 ip community-list standard 2_213_239 permit 65000:2 0:213 0:239 route-map calculator permit 37686 match community 2_213_239 set community 0:50907 ip community-list standard 2_190_250 permit 65000:2 0:190 0:250 route-map calculator permit 37687 match community 2_190_250 set community 0:47500 ip community-list standard 2_17_47 permit 65000:2 0:17 0:47 route-map calculator permit 37688 match community 2_17_47 set community 0:799 ip community-list standard 2_73_97 permit 65000:2 0:73 0:97 route-map calculator permit 37689 match community 2_73_97 set community 0:7081 ip community-list standard 2_164_245 permit 65000:2 0:164 0:245 ip community-list standard 2_196_205 permit 65000:2 0:196 0:205 route-map calculator permit 37690 match community 2_164_245 2_196_205 set community 0:40180 ip community-list standard 2_69_194 permit 65000:2 0:69 0:194 ip community-list standard 2_97_138 permit 65000:2 0:97 0:138 route-map calculator permit 37691 match community 2_69_194 2_97_138 set community 0:13386 ip community-list standard 2_134_187 permit 65000:2 0:134 0:187 route-map calculator permit 37692 match community 2_134_187 set community 0:25058 ip community-list standard 2_243_246 permit 65000:2 0:243 0:246 route-map calculator permit 37693 match community 2_243_246 set community 0:59778 ip community-list standard 2_227_254 permit 65000:2 0:227 0:254 route-map calculator permit 37694 match community 2_227_254 set community 0:57658 ip community-list standard 2_24_139 permit 65000:2 0:24 0:139 route-map calculator permit 37695 match community 2_24_139 set community 0:3336 ip community-list standard 2_179_220 permit 65000:2 0:179 0:220 route-map calculator permit 37696 match community 2_179_220 set community 0:39380 ip community-list standard 2_71_218 permit 65000:2 0:71 0:218 ip community-list standard 2_109_142 permit 65000:2 0:109 0:142 route-map calculator permit 37697 match community 2_71_218 2_109_142 set community 0:15478 ip community-list standard 2_149_195 permit 65000:2 0:149 0:195 route-map calculator permit 37698 match community 2_149_195 set community 0:29055 ip community-list standard 2_104_251 permit 65000:2 0:104 0:251 route-map calculator permit 37699 match community 2_104_251 set community 0:26104 ip community-list standard 2_71_213 permit 65000:2 0:71 0:213 route-map calculator permit 37700 match community 2_71_213 set community 0:15123 ip community-list standard 2_113_177 permit 65000:2 0:113 0:177 route-map calculator permit 37701 match community 2_113_177 set community 0:20001 ip community-list standard 2_30_201 permit 65000:2 0:30 0:201 ip community-list standard 2_45_134 permit 65000:2 0:45 0:134 ip community-list standard 2_67_90 permit 65000:2 0:67 0:90 route-map calculator permit 37702 match community 2_30_201 2_45_134 2_67_90 set community 0:6030 ip community-list standard 2_167_192 permit 65000:2 0:167 0:192 route-map calculator permit 37703 match community 2_167_192 set community 0:32064 ip community-list standard 2_150_237 permit 65000:2 0:150 0:237 ip community-list standard 2_158_225 permit 65000:2 0:158 0:225 route-map calculator permit 37704 match community 2_150_237 2_158_225 set community 0:35550 ip community-list standard 1_153_256 permit 65000:1 0:153 0:256 ip community-list standard 1_154_255 permit 65000:1 0:154 0:255 ip community-list standard 1_155_254 permit 65000:1 0:155 0:254 ip community-list standard 1_156_253 permit 65000:1 0:156 0:253 ip community-list standard 1_157_252 permit 65000:1 0:157 0:252 ip community-list standard 1_158_251 permit 65000:1 0:158 0:251 ip community-list standard 1_159_250 permit 65000:1 0:159 0:250 ip community-list standard 1_160_249 permit 65000:1 0:160 0:249 ip community-list standard 1_161_248 permit 65000:1 0:161 0:248 ip community-list standard 1_162_247 permit 65000:1 0:162 0:247 ip community-list standard 1_163_246 permit 65000:1 0:163 0:246 ip community-list standard 1_164_245 permit 65000:1 0:164 0:245 ip community-list standard 1_165_244 permit 65000:1 0:165 0:244 ip community-list standard 1_166_243 permit 65000:1 0:166 0:243 ip community-list standard 1_167_242 permit 65000:1 0:167 0:242 ip community-list standard 1_168_241 permit 65000:1 0:168 0:241 ip community-list standard 1_169_240 permit 65000:1 0:169 0:240 ip community-list standard 1_170_239 permit 65000:1 0:170 0:239 ip community-list standard 1_171_238 permit 65000:1 0:171 0:238 ip community-list standard 1_172_237 permit 65000:1 0:172 0:237 ip community-list standard 1_173_236 permit 65000:1 0:173 0:236 ip community-list standard 1_174_235 permit 65000:1 0:174 0:235 ip community-list standard 1_175_234 permit 65000:1 0:175 0:234 ip community-list standard 1_176_233 permit 65000:1 0:176 0:233 ip community-list standard 1_177_232 permit 65000:1 0:177 0:232 ip community-list standard 1_178_231 permit 65000:1 0:178 0:231 ip community-list standard 1_179_230 permit 65000:1 0:179 0:230 ip community-list standard 1_180_229 permit 65000:1 0:180 0:229 ip community-list standard 1_181_228 permit 65000:1 0:181 0:228 ip community-list standard 1_182_227 permit 65000:1 0:182 0:227 ip community-list standard 1_183_226 permit 65000:1 0:183 0:226 ip community-list standard 1_184_225 permit 65000:1 0:184 0:225 ip community-list standard 1_185_224 permit 65000:1 0:185 0:224 ip community-list standard 1_186_223 permit 65000:1 0:186 0:223 ip community-list standard 1_187_222 permit 65000:1 0:187 0:222 ip community-list standard 1_188_221 permit 65000:1 0:188 0:221 ip community-list standard 1_189_220 permit 65000:1 0:189 0:220 ip community-list standard 1_190_219 permit 65000:1 0:190 0:219 ip community-list standard 1_191_218 permit 65000:1 0:191 0:218 ip community-list standard 1_192_217 permit 65000:1 0:192 0:217 ip community-list standard 1_193_216 permit 65000:1 0:193 0:216 ip community-list standard 1_194_215 permit 65000:1 0:194 0:215 ip community-list standard 1_195_214 permit 65000:1 0:195 0:214 ip community-list standard 1_196_213 permit 65000:1 0:196 0:213 ip community-list standard 1_197_212 permit 65000:1 0:197 0:212 ip community-list standard 1_198_211 permit 65000:1 0:198 0:211 ip community-list standard 1_199_210 permit 65000:1 0:199 0:210 ip community-list standard 1_200_209 permit 65000:1 0:200 0:209 ip community-list standard 1_201_208 permit 65000:1 0:201 0:208 ip community-list standard 1_202_207 permit 65000:1 0:202 0:207 ip community-list standard 1_203_206 permit 65000:1 0:203 0:206 ip community-list standard 1_204_205 permit 65000:1 0:204 0:205 route-map calculator permit 37705 match community 1_153_256 1_154_255 1_155_254 1_156_253 1_157_252 set community 0:409 route-map calculator permit 37706 match community 1_158_251 1_159_250 1_160_249 1_161_248 1_162_247 set community 0:409 route-map calculator permit 37707 match community 1_163_246 1_164_245 1_165_244 1_166_243 1_167_242 set community 0:409 route-map calculator permit 37708 match community 1_168_241 1_169_240 1_170_239 1_171_238 1_172_237 set community 0:409 route-map calculator permit 37709 match community 1_173_236 1_174_235 1_175_234 1_176_233 1_177_232 set community 0:409 route-map calculator permit 37710 match community 1_178_231 1_179_230 1_180_229 1_181_228 1_182_227 set community 0:409 route-map calculator permit 37711 match community 1_183_226 1_184_225 1_185_224 1_186_223 1_187_222 set community 0:409 route-map calculator permit 37712 match community 1_188_221 1_189_220 1_190_219 1_191_218 1_192_217 set community 0:409 route-map calculator permit 37713 match community 1_193_216 1_194_215 1_195_214 1_196_213 1_197_212 set community 0:409 route-map calculator permit 37714 match community 1_198_211 1_199_210 1_200_209 1_201_208 1_202_207 set community 0:409 route-map calculator permit 37715 match community 1_203_206 1_204_205 set community 0:409 ip community-list standard 2_219_237 permit 65000:2 0:219 0:237 route-map calculator permit 37716 match community 2_219_237 set community 0:51903 ip community-list standard 2_69_213 permit 65000:2 0:69 0:213 ip community-list standard 2_71_207 permit 65000:2 0:71 0:207 route-map calculator permit 37717 match community 2_69_213 2_71_207 set community 0:14697 ip community-list standard 2_131_178 permit 65000:2 0:131 0:178 route-map calculator permit 37718 match community 2_131_178 set community 0:23318 ip community-list standard 2_148_197 permit 65000:2 0:148 0:197 route-map calculator permit 37719 match community 2_148_197 set community 0:29156 ip community-list standard 2_199_239 permit 65000:2 0:199 0:239 route-map calculator permit 37720 match community 2_199_239 set community 0:47561 ip community-list standard 2_21_201 permit 65000:2 0:21 0:201 ip community-list standard 2_63_67 permit 65000:2 0:63 0:67 route-map calculator permit 37721 match community 2_21_201 2_63_67 set community 0:4221 ip community-list standard 2_132_234 permit 65000:2 0:132 0:234 ip community-list standard 2_143_216 permit 65000:2 0:143 0:216 ip community-list standard 2_156_198 permit 65000:2 0:156 0:198 route-map calculator permit 37722 match community 2_132_234 2_143_216 2_156_198 set community 0:30888 ip community-list standard 2_88_252 permit 65000:2 0:88 0:252 ip community-list standard 2_96_231 permit 65000:2 0:96 0:231 ip community-list standard 2_99_224 permit 65000:2 0:99 0:224 ip community-list standard 2_112_198 permit 65000:2 0:112 0:198 ip community-list standard 2_126_176 permit 65000:2 0:126 0:176 ip community-list standard 2_132_168 permit 65000:2 0:132 0:168 ip community-list standard 2_144_154 permit 65000:2 0:144 0:154 route-map calculator permit 37723 match community 2_88_252 2_96_231 2_99_224 2_112_198 2_126_176 set community 0:22176 route-map calculator permit 37724 match community 2_132_168 2_144_154 set community 0:22176 ip community-list standard 2_103_191 permit 65000:2 0:103 0:191 route-map calculator permit 37725 match community 2_103_191 set community 0:19673 ip community-list standard 2_14_134 permit 65000:2 0:14 0:134 ip community-list standard 2_28_67 permit 65000:2 0:28 0:67 route-map calculator permit 37726 match community 2_14_134 2_28_67 set community 0:1876 ip community-list standard 2_97_241 permit 65000:2 0:97 0:241 route-map calculator permit 37727 match community 2_97_241 set community 0:23377 ip community-list standard 2_103_227 permit 65000:2 0:103 0:227 route-map calculator permit 37728 match community 2_103_227 set community 0:23381 ip community-list standard 2_37_164 permit 65000:2 0:37 0:164 ip community-list standard 2_41_148 permit 65000:2 0:41 0:148 ip community-list standard 2_74_82 permit 65000:2 0:74 0:82 route-map calculator permit 37729 match community 2_37_164 2_41_148 2_74_82 set community 0:6068 ip community-list standard 2_14_163 permit 65000:2 0:14 0:163 route-map calculator permit 37730 match community 2_14_163 set community 0:2282 ip community-list standard 2_65_245 permit 65000:2 0:65 0:245 ip community-list standard 2_91_175 permit 65000:2 0:91 0:175 route-map calculator permit 37731 match community 2_65_245 2_91_175 set community 0:15925 ip community-list standard 2_152_228 permit 65000:2 0:152 0:228 route-map calculator permit 37732 match community 2_152_228 set community 0:34656 ip community-list standard 2_33_235 permit 65000:2 0:33 0:235 ip community-list standard 2_47_165 permit 65000:2 0:47 0:165 ip community-list standard 2_55_141 permit 65000:2 0:55 0:141 route-map calculator permit 37733 match community 2_33_235 2_47_165 2_55_141 set community 0:7755 ip community-list standard 2_60_191 permit 65000:2 0:60 0:191 route-map calculator permit 37734 match community 2_60_191 set community 0:11460 ip community-list standard 2_93_255 permit 65000:2 0:93 0:255 ip community-list standard 2_153_155 permit 65000:2 0:153 0:155 route-map calculator permit 37735 match community 2_93_255 2_153_155 set community 0:23715 ip community-list standard 2_59_245 permit 65000:2 0:59 0:245 route-map calculator permit 37736 match community 2_59_245 set community 0:14455 ip community-list standard 2_228_244 permit 65000:2 0:228 0:244 route-map calculator permit 37737 match community 2_228_244 set community 0:55632 ip community-list standard 2_14_131 permit 65000:2 0:14 0:131 route-map calculator permit 37738 match community 2_14_131 set community 0:1834 ip community-list standard 2_145_190 permit 65000:2 0:145 0:190 route-map calculator permit 37739 match community 2_145_190 set community 0:27550 ip community-list standard 2_70_166 permit 65000:2 0:70 0:166 ip community-list standard 2_83_140 permit 65000:2 0:83 0:140 route-map calculator permit 37740 match community 2_70_166 2_83_140 set community 0:11620 ip community-list standard 2_17_153 permit 65000:2 0:17 0:153 ip community-list standard 2_51_51 permit 65000:2 0:51 0:51 route-map calculator permit 37741 match community 2_17_153 2_51_51 set community 0:2601 ip community-list standard 2_236_242 permit 65000:2 0:236 0:242 route-map calculator permit 37742 match community 2_236_242 set community 0:57112 ip community-list standard 2_34_171 permit 65000:2 0:34 0:171 ip community-list standard 2_38_153 permit 65000:2 0:38 0:153 ip community-list standard 2_51_114 permit 65000:2 0:51 0:114 ip community-list standard 2_57_102 permit 65000:2 0:57 0:102 route-map calculator permit 37743 match community 2_34_171 2_38_153 2_51_114 2_57_102 set community 0:5814 ip community-list standard 2_113_248 permit 65000:2 0:113 0:248 ip community-list standard 2_124_226 permit 65000:2 0:124 0:226 route-map calculator permit 37744 match community 2_113_248 2_124_226 set community 0:28024 ip community-list standard 2_173_184 permit 65000:2 0:173 0:184 route-map calculator permit 37745 match community 2_173_184 set community 0:31832 ip community-list standard 2_148_243 permit 65000:2 0:148 0:243 ip community-list standard 2_162_222 permit 65000:2 0:162 0:222 route-map calculator permit 37746 match community 2_148_243 2_162_222 set community 0:35964 ip community-list standard 2_52_240 permit 65000:2 0:52 0:240 ip community-list standard 2_60_208 permit 65000:2 0:60 0:208 ip community-list standard 2_64_195 permit 65000:2 0:64 0:195 ip community-list standard 2_65_192 permit 65000:2 0:65 0:192 ip community-list standard 2_78_160 permit 65000:2 0:78 0:160 ip community-list standard 2_80_156 permit 65000:2 0:80 0:156 ip community-list standard 2_96_130 permit 65000:2 0:96 0:130 ip community-list standard 2_104_120 permit 65000:2 0:104 0:120 route-map calculator permit 37747 match community 2_52_240 2_60_208 2_64_195 2_65_192 2_78_160 set community 0:12480 route-map calculator permit 37748 match community 2_80_156 2_96_130 2_104_120 set community 0:12480 ip community-list standard 2_49_183 permit 65000:2 0:49 0:183 ip community-list standard 2_61_147 permit 65000:2 0:61 0:147 route-map calculator permit 37749 match community 2_49_183 2_61_147 set community 0:8967 ip community-list standard 2_111_254 permit 65000:2 0:111 0:254 ip community-list standard 2_127_222 permit 65000:2 0:127 0:222 route-map calculator permit 37750 match community 2_111_254 2_127_222 set community 0:28194 ip community-list standard 2_43_172 permit 65000:2 0:43 0:172 ip community-list standard 2_86_86 permit 65000:2 0:86 0:86 route-map calculator permit 37751 match community 2_43_172 2_86_86 set community 0:7396 ip community-list standard 2_161_239 permit 65000:2 0:161 0:239 route-map calculator permit 37752 match community 2_161_239 set community 0:38479 ip community-list standard 2_55_256 permit 65000:2 0:55 0:256 ip community-list standard 2_64_220 permit 65000:2 0:64 0:220 ip community-list standard 2_80_176 permit 65000:2 0:80 0:176 ip community-list standard 2_88_160 permit 65000:2 0:88 0:160 ip community-list standard 2_110_128 permit 65000:2 0:110 0:128 route-map calculator permit 37753 match community 2_55_256 2_64_220 2_80_176 2_88_160 2_110_128 set community 0:14080 ip community-list standard 2_59_149 permit 65000:2 0:59 0:149 route-map calculator permit 37754 match community 2_59_149 set community 0:8791 ip community-list standard 2_103_223 permit 65000:2 0:103 0:223 route-map calculator permit 37755 match community 2_103_223 set community 0:22969 ip community-list standard 2_155_247 permit 65000:2 0:155 0:247 route-map calculator permit 37756 match community 2_155_247 set community 0:38285 ip community-list standard 2_196_224 permit 65000:2 0:196 0:224 route-map calculator permit 37757 match community 2_196_224 set community 0:43904 ip community-list standard 1_1_250 permit 65000:1 0:1 0:250 ip community-list standard 2_1_251 permit 65000:2 0:1 0:251 ip community-list standard 1_2_249 permit 65000:1 0:2 0:249 ip community-list standard 1_3_248 permit 65000:1 0:3 0:248 ip community-list standard 1_4_247 permit 65000:1 0:4 0:247 ip community-list standard 1_5_246 permit 65000:1 0:5 0:246 ip community-list standard 1_6_245 permit 65000:1 0:6 0:245 ip community-list standard 1_7_244 permit 65000:1 0:7 0:244 ip community-list standard 1_8_243 permit 65000:1 0:8 0:243 ip community-list standard 1_9_242 permit 65000:1 0:9 0:242 ip community-list standard 1_10_241 permit 65000:1 0:10 0:241 ip community-list standard 1_11_240 permit 65000:1 0:11 0:240 ip community-list standard 1_12_239 permit 65000:1 0:12 0:239 ip community-list standard 1_13_238 permit 65000:1 0:13 0:238 ip community-list standard 1_14_237 permit 65000:1 0:14 0:237 ip community-list standard 1_15_236 permit 65000:1 0:15 0:236 ip community-list standard 1_16_235 permit 65000:1 0:16 0:235 ip community-list standard 1_17_234 permit 65000:1 0:17 0:234 ip community-list standard 1_18_233 permit 65000:1 0:18 0:233 ip community-list standard 1_19_232 permit 65000:1 0:19 0:232 ip community-list standard 1_20_231 permit 65000:1 0:20 0:231 ip community-list standard 1_21_230 permit 65000:1 0:21 0:230 ip community-list standard 1_22_229 permit 65000:1 0:22 0:229 ip community-list standard 1_23_228 permit 65000:1 0:23 0:228 ip community-list standard 1_24_227 permit 65000:1 0:24 0:227 ip community-list standard 1_25_226 permit 65000:1 0:25 0:226 ip community-list standard 1_26_225 permit 65000:1 0:26 0:225 ip community-list standard 1_27_224 permit 65000:1 0:27 0:224 ip community-list standard 1_28_223 permit 65000:1 0:28 0:223 ip community-list standard 1_29_222 permit 65000:1 0:29 0:222 ip community-list standard 1_30_221 permit 65000:1 0:30 0:221 ip community-list standard 1_31_220 permit 65000:1 0:31 0:220 ip community-list standard 1_32_219 permit 65000:1 0:32 0:219 ip community-list standard 1_33_218 permit 65000:1 0:33 0:218 ip community-list standard 1_34_217 permit 65000:1 0:34 0:217 ip community-list standard 1_35_216 permit 65000:1 0:35 0:216 ip community-list standard 1_36_215 permit 65000:1 0:36 0:215 ip community-list standard 1_37_214 permit 65000:1 0:37 0:214 ip community-list standard 1_38_213 permit 65000:1 0:38 0:213 ip community-list standard 1_39_212 permit 65000:1 0:39 0:212 ip community-list standard 1_40_211 permit 65000:1 0:40 0:211 ip community-list standard 1_41_210 permit 65000:1 0:41 0:210 ip community-list standard 1_42_209 permit 65000:1 0:42 0:209 ip community-list standard 1_43_208 permit 65000:1 0:43 0:208 ip community-list standard 1_44_207 permit 65000:1 0:44 0:207 ip community-list standard 1_45_206 permit 65000:1 0:45 0:206 ip community-list standard 1_46_205 permit 65000:1 0:46 0:205 ip community-list standard 1_47_204 permit 65000:1 0:47 0:204 ip community-list standard 1_48_203 permit 65000:1 0:48 0:203 ip community-list standard 1_49_202 permit 65000:1 0:49 0:202 ip community-list standard 1_50_201 permit 65000:1 0:50 0:201 ip community-list standard 1_51_200 permit 65000:1 0:51 0:200 ip community-list standard 1_52_199 permit 65000:1 0:52 0:199 ip community-list standard 1_53_198 permit 65000:1 0:53 0:198 ip community-list standard 1_54_197 permit 65000:1 0:54 0:197 ip community-list standard 1_55_196 permit 65000:1 0:55 0:196 ip community-list standard 1_56_195 permit 65000:1 0:56 0:195 ip community-list standard 1_57_194 permit 65000:1 0:57 0:194 ip community-list standard 1_58_193 permit 65000:1 0:58 0:193 ip community-list standard 1_59_192 permit 65000:1 0:59 0:192 ip community-list standard 1_60_191 permit 65000:1 0:60 0:191 ip community-list standard 1_61_190 permit 65000:1 0:61 0:190 ip community-list standard 1_62_189 permit 65000:1 0:62 0:189 ip community-list standard 1_63_188 permit 65000:1 0:63 0:188 ip community-list standard 1_64_187 permit 65000:1 0:64 0:187 ip community-list standard 1_65_186 permit 65000:1 0:65 0:186 ip community-list standard 1_66_185 permit 65000:1 0:66 0:185 ip community-list standard 1_67_184 permit 65000:1 0:67 0:184 ip community-list standard 1_68_183 permit 65000:1 0:68 0:183 ip community-list standard 1_69_182 permit 65000:1 0:69 0:182 ip community-list standard 1_70_181 permit 65000:1 0:70 0:181 ip community-list standard 1_71_180 permit 65000:1 0:71 0:180 ip community-list standard 1_72_179 permit 65000:1 0:72 0:179 ip community-list standard 1_73_178 permit 65000:1 0:73 0:178 ip community-list standard 1_74_177 permit 65000:1 0:74 0:177 ip community-list standard 1_75_176 permit 65000:1 0:75 0:176 ip community-list standard 1_76_175 permit 65000:1 0:76 0:175 ip community-list standard 1_77_174 permit 65000:1 0:77 0:174 ip community-list standard 1_78_173 permit 65000:1 0:78 0:173 ip community-list standard 1_79_172 permit 65000:1 0:79 0:172 ip community-list standard 1_80_171 permit 65000:1 0:80 0:171 ip community-list standard 1_81_170 permit 65000:1 0:81 0:170 ip community-list standard 1_82_169 permit 65000:1 0:82 0:169 ip community-list standard 1_83_168 permit 65000:1 0:83 0:168 ip community-list standard 1_84_167 permit 65000:1 0:84 0:167 ip community-list standard 1_85_166 permit 65000:1 0:85 0:166 ip community-list standard 1_86_165 permit 65000:1 0:86 0:165 ip community-list standard 1_87_164 permit 65000:1 0:87 0:164 ip community-list standard 1_88_163 permit 65000:1 0:88 0:163 ip community-list standard 1_89_162 permit 65000:1 0:89 0:162 ip community-list standard 1_90_161 permit 65000:1 0:90 0:161 ip community-list standard 1_91_160 permit 65000:1 0:91 0:160 ip community-list standard 1_92_159 permit 65000:1 0:92 0:159 ip community-list standard 1_93_158 permit 65000:1 0:93 0:158 ip community-list standard 1_94_157 permit 65000:1 0:94 0:157 ip community-list standard 1_95_156 permit 65000:1 0:95 0:156 ip community-list standard 1_96_155 permit 65000:1 0:96 0:155 ip community-list standard 1_97_154 permit 65000:1 0:97 0:154 ip community-list standard 1_98_153 permit 65000:1 0:98 0:153 ip community-list standard 1_99_152 permit 65000:1 0:99 0:152 ip community-list standard 1_100_151 permit 65000:1 0:100 0:151 ip community-list standard 1_101_150 permit 65000:1 0:101 0:150 ip community-list standard 1_102_149 permit 65000:1 0:102 0:149 ip community-list standard 1_103_148 permit 65000:1 0:103 0:148 ip community-list standard 1_104_147 permit 65000:1 0:104 0:147 ip community-list standard 1_105_146 permit 65000:1 0:105 0:146 ip community-list standard 1_106_145 permit 65000:1 0:106 0:145 ip community-list standard 1_107_144 permit 65000:1 0:107 0:144 ip community-list standard 1_108_143 permit 65000:1 0:108 0:143 ip community-list standard 1_109_142 permit 65000:1 0:109 0:142 ip community-list standard 1_110_141 permit 65000:1 0:110 0:141 ip community-list standard 1_111_140 permit 65000:1 0:111 0:140 ip community-list standard 1_112_139 permit 65000:1 0:112 0:139 ip community-list standard 1_113_138 permit 65000:1 0:113 0:138 ip community-list standard 1_114_137 permit 65000:1 0:114 0:137 ip community-list standard 1_115_136 permit 65000:1 0:115 0:136 ip community-list standard 1_116_135 permit 65000:1 0:116 0:135 ip community-list standard 1_117_134 permit 65000:1 0:117 0:134 ip community-list standard 1_118_133 permit 65000:1 0:118 0:133 ip community-list standard 1_119_132 permit 65000:1 0:119 0:132 ip community-list standard 1_120_131 permit 65000:1 0:120 0:131 ip community-list standard 1_121_130 permit 65000:1 0:121 0:130 ip community-list standard 1_122_129 permit 65000:1 0:122 0:129 ip community-list standard 1_123_128 permit 65000:1 0:123 0:128 ip community-list standard 1_124_127 permit 65000:1 0:124 0:127 ip community-list standard 1_125_126 permit 65000:1 0:125 0:126 ip community-list expanded c251 permit 1 ^65000:4_0:251_0:1$ ip community-list expanded c251 permit 2 ^65000:3_0:252_0:1$ ip community-list expanded c251 permit 3 ^65000:3_0:253_0:2$ ip community-list expanded c251 permit 4 ^65000:3_0:254_0:3$ ip community-list expanded c251 permit 5 ^65000:3_0:255_0:4$ ip community-list expanded c251 permit 6 ^65000:3_0:256_0:5$ route-map calculator permit 37758 match community 1_1_250 2_1_251 1_2_249 1_3_248 1_4_247 set community 0:251 route-map calculator permit 37759 match community 1_5_246 1_6_245 1_7_244 1_8_243 1_9_242 set community 0:251 route-map calculator permit 37760 match community 1_10_241 1_11_240 1_12_239 1_13_238 1_14_237 set community 0:251 route-map calculator permit 37761 match community 1_15_236 1_16_235 1_17_234 1_18_233 1_19_232 set community 0:251 route-map calculator permit 37762 match community 1_20_231 1_21_230 1_22_229 1_23_228 1_24_227 set community 0:251 route-map calculator permit 37763 match community 1_25_226 1_26_225 1_27_224 1_28_223 1_29_222 set community 0:251 route-map calculator permit 37764 match community 1_30_221 1_31_220 1_32_219 1_33_218 1_34_217 set community 0:251 route-map calculator permit 37765 match community 1_35_216 1_36_215 1_37_214 1_38_213 1_39_212 set community 0:251 route-map calculator permit 37766 match community 1_40_211 1_41_210 1_42_209 1_43_208 1_44_207 set community 0:251 route-map calculator permit 37767 match community 1_45_206 1_46_205 1_47_204 1_48_203 1_49_202 set community 0:251 route-map calculator permit 37768 match community 1_50_201 1_51_200 1_52_199 1_53_198 1_54_197 set community 0:251 route-map calculator permit 37769 match community 1_55_196 1_56_195 1_57_194 1_58_193 1_59_192 set community 0:251 route-map calculator permit 37770 match community 1_60_191 1_61_190 1_62_189 1_63_188 1_64_187 set community 0:251 route-map calculator permit 37771 match community 1_65_186 1_66_185 1_67_184 1_68_183 1_69_182 set community 0:251 route-map calculator permit 37772 match community 1_70_181 1_71_180 1_72_179 1_73_178 1_74_177 set community 0:251 route-map calculator permit 37773 match community 1_75_176 1_76_175 1_77_174 1_78_173 1_79_172 set community 0:251 route-map calculator permit 37774 match community 1_80_171 1_81_170 1_82_169 1_83_168 1_84_167 set community 0:251 route-map calculator permit 37775 match community 1_85_166 1_86_165 1_87_164 1_88_163 1_89_162 set community 0:251 route-map calculator permit 37776 match community 1_90_161 1_91_160 1_92_159 1_93_158 1_94_157 set community 0:251 route-map calculator permit 37777 match community 1_95_156 1_96_155 1_97_154 1_98_153 1_99_152 set community 0:251 route-map calculator permit 37778 match community 1_100_151 1_101_150 1_102_149 1_103_148 1_104_147 set community 0:251 route-map calculator permit 37779 match community 1_105_146 1_106_145 1_107_144 1_108_143 1_109_142 set community 0:251 route-map calculator permit 37780 match community 1_110_141 1_111_140 1_112_139 1_113_138 1_114_137 set community 0:251 route-map calculator permit 37781 match community 1_115_136 1_116_135 1_117_134 1_118_133 1_119_132 set community 0:251 route-map calculator permit 37782 match community 1_120_131 1_121_130 1_122_129 1_123_128 1_124_127 set community 0:251 route-map calculator permit 37783 match community 1_125_126 c4_251_1 c3_252_1 c3_253_2 c3_254_3 set community 0:251 route-map calculator permit 37784 match community c3_255_4 c3_256_5 set community 0:251 ip community-list standard 2_185_255 permit 65000:2 0:185 0:255 route-map calculator permit 37785 match community 2_185_255 set community 0:47175 ip community-list standard 2_23_184 permit 65000:2 0:23 0:184 ip community-list standard 2_46_92 permit 65000:2 0:46 0:92 route-map calculator permit 37786 match community 2_23_184 2_46_92 set community 0:4232 ip community-list standard 2_49_187 permit 65000:2 0:49 0:187 ip community-list standard 2_77_119 permit 65000:2 0:77 0:119 route-map calculator permit 37787 match community 2_49_187 2_77_119 set community 0:9163 ip community-list standard 2_18_225 permit 65000:2 0:18 0:225 ip community-list standard 2_25_162 permit 65000:2 0:25 0:162 ip community-list standard 2_27_150 permit 65000:2 0:27 0:150 ip community-list standard 2_30_135 permit 65000:2 0:30 0:135 ip community-list standard 2_45_90 permit 65000:2 0:45 0:90 ip community-list standard 2_50_81 permit 65000:2 0:50 0:81 ip community-list standard 2_54_75 permit 65000:2 0:54 0:75 route-map calculator permit 37788 match community 2_18_225 2_25_162 2_27_150 2_30_135 2_45_90 set community 0:4050 route-map calculator permit 37789 match community 2_50_81 2_54_75 set community 0:4050 ip community-list standard 2_103_225 permit 65000:2 0:103 0:225 route-map calculator permit 37790 match community 2_103_225 set community 0:23175 ip community-list standard 2_56_241 permit 65000:2 0:56 0:241 route-map calculator permit 37791 match community 2_56_241 set community 0:13496 ip community-list standard 2_93_107 permit 65000:2 0:93 0:107 route-map calculator permit 37792 match community 2_93_107 set community 0:9951 ip community-list standard 2_104_254 permit 65000:2 0:104 0:254 ip community-list standard 2_127_208 permit 65000:2 0:127 0:208 route-map calculator permit 37793 match community 2_104_254 2_127_208 set community 0:26416 ip community-list standard 2_236_245 permit 65000:2 0:236 0:245 route-map calculator permit 37794 match community 2_236_245 set community 0:57820 ip community-list standard 2_94_147 permit 65000:2 0:94 0:147 ip community-list standard 2_98_141 permit 65000:2 0:98 0:141 route-map calculator permit 37795 match community 2_94_147 2_98_141 set community 0:13818 ip community-list standard 2_45_103 permit 65000:2 0:45 0:103 route-map calculator permit 37796 match community 2_45_103 set community 0:4635 ip community-list standard 1_1_177 permit 65000:1 0:1 0:177 ip community-list standard 2_1_178 permit 65000:2 0:1 0:178 ip community-list standard 2_2_89 permit 65000:2 0:2 0:89 ip community-list standard 1_2_176 permit 65000:1 0:2 0:176 ip community-list standard 1_3_175 permit 65000:1 0:3 0:175 ip community-list standard 1_4_174 permit 65000:1 0:4 0:174 ip community-list standard 1_5_173 permit 65000:1 0:5 0:173 ip community-list standard 1_6_172 permit 65000:1 0:6 0:172 ip community-list standard 1_7_171 permit 65000:1 0:7 0:171 ip community-list standard 1_8_170 permit 65000:1 0:8 0:170 ip community-list standard 1_9_169 permit 65000:1 0:9 0:169 ip community-list standard 1_10_168 permit 65000:1 0:10 0:168 ip community-list standard 1_11_167 permit 65000:1 0:11 0:167 ip community-list standard 1_12_166 permit 65000:1 0:12 0:166 ip community-list standard 1_13_165 permit 65000:1 0:13 0:165 ip community-list standard 1_14_164 permit 65000:1 0:14 0:164 ip community-list standard 1_15_163 permit 65000:1 0:15 0:163 ip community-list standard 1_16_162 permit 65000:1 0:16 0:162 ip community-list standard 1_17_161 permit 65000:1 0:17 0:161 ip community-list standard 1_18_160 permit 65000:1 0:18 0:160 ip community-list standard 1_19_159 permit 65000:1 0:19 0:159 ip community-list standard 1_20_158 permit 65000:1 0:20 0:158 ip community-list standard 1_21_157 permit 65000:1 0:21 0:157 ip community-list standard 1_22_156 permit 65000:1 0:22 0:156 ip community-list standard 1_23_155 permit 65000:1 0:23 0:155 ip community-list standard 1_24_154 permit 65000:1 0:24 0:154 ip community-list standard 1_25_153 permit 65000:1 0:25 0:153 ip community-list standard 1_26_152 permit 65000:1 0:26 0:152 ip community-list standard 1_27_151 permit 65000:1 0:27 0:151 ip community-list standard 1_28_150 permit 65000:1 0:28 0:150 ip community-list standard 1_29_149 permit 65000:1 0:29 0:149 ip community-list standard 1_30_148 permit 65000:1 0:30 0:148 ip community-list standard 1_31_147 permit 65000:1 0:31 0:147 ip community-list standard 1_32_146 permit 65000:1 0:32 0:146 ip community-list standard 1_33_145 permit 65000:1 0:33 0:145 ip community-list standard 1_34_144 permit 65000:1 0:34 0:144 ip community-list standard 1_35_143 permit 65000:1 0:35 0:143 ip community-list standard 1_36_142 permit 65000:1 0:36 0:142 ip community-list standard 1_37_141 permit 65000:1 0:37 0:141 ip community-list standard 1_38_140 permit 65000:1 0:38 0:140 ip community-list standard 1_39_139 permit 65000:1 0:39 0:139 ip community-list standard 1_40_138 permit 65000:1 0:40 0:138 ip community-list standard 1_41_137 permit 65000:1 0:41 0:137 ip community-list standard 1_42_136 permit 65000:1 0:42 0:136 ip community-list standard 1_43_135 permit 65000:1 0:43 0:135 ip community-list standard 1_44_134 permit 65000:1 0:44 0:134 ip community-list standard 1_45_133 permit 65000:1 0:45 0:133 ip community-list standard 1_46_132 permit 65000:1 0:46 0:132 ip community-list standard 1_47_131 permit 65000:1 0:47 0:131 ip community-list standard 1_48_130 permit 65000:1 0:48 0:130 ip community-list standard 1_49_129 permit 65000:1 0:49 0:129 ip community-list standard 1_50_128 permit 65000:1 0:50 0:128 ip community-list standard 1_51_127 permit 65000:1 0:51 0:127 ip community-list standard 1_52_126 permit 65000:1 0:52 0:126 ip community-list standard 1_53_125 permit 65000:1 0:53 0:125 ip community-list standard 1_54_124 permit 65000:1 0:54 0:124 ip community-list standard 1_55_123 permit 65000:1 0:55 0:123 ip community-list standard 1_56_122 permit 65000:1 0:56 0:122 ip community-list standard 1_57_121 permit 65000:1 0:57 0:121 ip community-list standard 1_58_120 permit 65000:1 0:58 0:120 ip community-list standard 1_59_119 permit 65000:1 0:59 0:119 ip community-list standard 1_60_118 permit 65000:1 0:60 0:118 ip community-list standard 1_61_117 permit 65000:1 0:61 0:117 ip community-list standard 1_62_116 permit 65000:1 0:62 0:116 ip community-list standard 1_63_115 permit 65000:1 0:63 0:115 ip community-list standard 1_64_114 permit 65000:1 0:64 0:114 ip community-list standard 1_65_113 permit 65000:1 0:65 0:113 ip community-list standard 1_66_112 permit 65000:1 0:66 0:112 ip community-list standard 1_67_111 permit 65000:1 0:67 0:111 ip community-list standard 1_68_110 permit 65000:1 0:68 0:110 ip community-list standard 1_69_109 permit 65000:1 0:69 0:109 ip community-list standard 1_70_108 permit 65000:1 0:70 0:108 ip community-list standard 1_71_107 permit 65000:1 0:71 0:107 ip community-list standard 1_72_106 permit 65000:1 0:72 0:106 ip community-list standard 1_73_105 permit 65000:1 0:73 0:105 ip community-list standard 1_74_104 permit 65000:1 0:74 0:104 ip community-list standard 1_75_103 permit 65000:1 0:75 0:103 ip community-list standard 1_76_102 permit 65000:1 0:76 0:102 ip community-list standard 1_77_101 permit 65000:1 0:77 0:101 ip community-list standard 1_78_100 permit 65000:1 0:78 0:100 ip community-list standard 1_79_99 permit 65000:1 0:79 0:99 ip community-list standard 1_80_98 permit 65000:1 0:80 0:98 ip community-list standard 1_81_97 permit 65000:1 0:81 0:97 ip community-list standard 1_82_96 permit 65000:1 0:82 0:96 ip community-list standard 1_83_95 permit 65000:1 0:83 0:95 ip community-list standard 1_84_94 permit 65000:1 0:84 0:94 ip community-list standard 1_85_93 permit 65000:1 0:85 0:93 ip community-list standard 1_86_92 permit 65000:1 0:86 0:92 ip community-list standard 1_87_91 permit 65000:1 0:87 0:91 ip community-list standard 1_88_90 permit 65000:1 0:88 0:90 ip community-list standard 1_89_89 permit 65000:1 0:89 0:89 ip community-list expanded c178 permit 1 ^65000:4_0:178_0:1$ ip community-list expanded c178 permit 2 ^65000:3_0:179_0:1$ ip community-list expanded c178 permit 3 ^65000:3_0:180_0:2$ ip community-list expanded c178 permit 4 ^65000:3_0:181_0:3$ ip community-list expanded c178 permit 5 ^65000:3_0:182_0:4$ ip community-list expanded c178 permit 6 ^65000:3_0:183_0:5$ ip community-list expanded c178 permit 7 ^65000:3_0:184_0:6$ ip community-list expanded c178 permit 8 ^65000:3_0:185_0:7$ ip community-list expanded c178 permit 9 ^65000:3_0:186_0:8$ ip community-list expanded c178 permit 10 ^65000:3_0:187_0:9$ ip community-list expanded c178 permit 11 ^65000:3_0:188_0:10$ ip community-list expanded c178 permit 12 ^65000:3_0:189_0:11$ ip community-list expanded c178 permit 13 ^65000:3_0:190_0:12$ ip community-list expanded c178 permit 14 ^65000:3_0:191_0:13$ ip community-list expanded c178 permit 15 ^65000:3_0:192_0:14$ ip community-list expanded c178 permit 16 ^65000:3_0:193_0:15$ ip community-list expanded c178 permit 17 ^65000:3_0:194_0:16$ ip community-list expanded c178 permit 18 ^65000:3_0:195_0:17$ ip community-list expanded c178 permit 19 ^65000:3_0:196_0:18$ ip community-list expanded c178 permit 20 ^65000:3_0:197_0:19$ ip community-list expanded c178 permit 21 ^65000:3_0:198_0:20$ ip community-list expanded c178 permit 22 ^65000:3_0:199_0:21$ ip community-list expanded c178 permit 23 ^65000:3_0:200_0:22$ ip community-list expanded c178 permit 24 ^65000:3_0:201_0:23$ ip community-list expanded c178 permit 25 ^65000:3_0:202_0:24$ ip community-list expanded c178 permit 26 ^65000:3_0:203_0:25$ ip community-list expanded c178 permit 27 ^65000:3_0:204_0:26$ ip community-list expanded c178 permit 28 ^65000:3_0:205_0:27$ ip community-list expanded c178 permit 29 ^65000:3_0:206_0:28$ ip community-list expanded c178 permit 30 ^65000:3_0:207_0:29$ ip community-list expanded c178 permit 31 ^65000:3_0:208_0:30$ ip community-list expanded c178 permit 32 ^65000:3_0:209_0:31$ ip community-list expanded c178 permit 33 ^65000:3_0:210_0:32$ ip community-list expanded c178 permit 34 ^65000:3_0:211_0:33$ ip community-list expanded c178 permit 35 ^65000:3_0:212_0:34$ ip community-list expanded c178 permit 36 ^65000:3_0:213_0:35$ ip community-list expanded c178 permit 37 ^65000:3_0:214_0:36$ ip community-list expanded c178 permit 38 ^65000:3_0:215_0:37$ ip community-list expanded c178 permit 39 ^65000:3_0:216_0:38$ ip community-list expanded c178 permit 40 ^65000:3_0:217_0:39$ ip community-list expanded c178 permit 41 ^65000:3_0:218_0:40$ ip community-list expanded c178 permit 42 ^65000:3_0:219_0:41$ ip community-list expanded c178 permit 43 ^65000:3_0:220_0:42$ ip community-list expanded c178 permit 44 ^65000:3_0:221_0:43$ ip community-list expanded c178 permit 45 ^65000:3_0:222_0:44$ ip community-list expanded c178 permit 46 ^65000:3_0:223_0:45$ ip community-list expanded c178 permit 47 ^65000:3_0:224_0:46$ ip community-list expanded c178 permit 48 ^65000:3_0:225_0:47$ ip community-list expanded c178 permit 49 ^65000:3_0:226_0:48$ ip community-list expanded c178 permit 50 ^65000:3_0:227_0:49$ ip community-list expanded c178 permit 51 ^65000:3_0:228_0:50$ ip community-list expanded c178 permit 52 ^65000:3_0:229_0:51$ ip community-list expanded c178 permit 53 ^65000:3_0:230_0:52$ ip community-list expanded c178 permit 54 ^65000:3_0:231_0:53$ ip community-list expanded c178 permit 55 ^65000:3_0:232_0:54$ ip community-list expanded c178 permit 56 ^65000:3_0:233_0:55$ ip community-list expanded c178 permit 57 ^65000:3_0:234_0:56$ ip community-list expanded c178 permit 58 ^65000:3_0:235_0:57$ ip community-list expanded c178 permit 59 ^65000:3_0:236_0:58$ ip community-list expanded c178 permit 60 ^65000:3_0:237_0:59$ ip community-list expanded c178 permit 61 ^65000:3_0:238_0:60$ ip community-list expanded c178 permit 62 ^65000:3_0:239_0:61$ ip community-list expanded c178 permit 63 ^65000:3_0:240_0:62$ ip community-list expanded c178 permit 64 ^65000:3_0:241_0:63$ ip community-list expanded c178 permit 65 ^65000:3_0:242_0:64$ ip community-list expanded c178 permit 66 ^65000:3_0:243_0:65$ ip community-list expanded c178 permit 67 ^65000:3_0:244_0:66$ ip community-list expanded c178 permit 68 ^65000:3_0:245_0:67$ ip community-list expanded c178 permit 69 ^65000:3_0:246_0:68$ ip community-list expanded c178 permit 70 ^65000:3_0:247_0:69$ ip community-list expanded c178 permit 71 ^65000:3_0:248_0:70$ ip community-list expanded c178 permit 72 ^65000:3_0:249_0:71$ ip community-list expanded c178 permit 73 ^65000:3_0:250_0:72$ ip community-list expanded c178 permit 74 ^65000:3_0:251_0:73$ ip community-list expanded c178 permit 75 ^65000:3_0:252_0:74$ ip community-list expanded c178 permit 76 ^65000:3_0:253_0:75$ ip community-list expanded c178 permit 77 ^65000:3_0:254_0:76$ ip community-list expanded c178 permit 78 ^65000:3_0:255_0:77$ ip community-list expanded c178 permit 79 ^65000:3_0:256_0:78$ route-map calculator permit 37797 match community 1_1_177 2_1_178 2_2_89 1_2_176 1_3_175 set community 0:178 route-map calculator permit 37798 match community 1_4_174 1_5_173 1_6_172 1_7_171 1_8_170 set community 0:178 route-map calculator permit 37799 match community 1_9_169 1_10_168 1_11_167 1_12_166 1_13_165 set community 0:178 route-map calculator permit 37800 match community 1_14_164 1_15_163 1_16_162 1_17_161 1_18_160 set community 0:178 route-map calculator permit 37801 match community 1_19_159 1_20_158 1_21_157 1_22_156 1_23_155 set community 0:178 route-map calculator permit 37802 match community 1_24_154 1_25_153 1_26_152 1_27_151 1_28_150 set community 0:178 route-map calculator permit 37803 match community 1_29_149 1_30_148 1_31_147 1_32_146 1_33_145 set community 0:178 route-map calculator permit 37804 match community 1_34_144 1_35_143 1_36_142 1_37_141 1_38_140 set community 0:178 route-map calculator permit 37805 match community 1_39_139 1_40_138 1_41_137 1_42_136 1_43_135 set community 0:178 route-map calculator permit 37806 match community 1_44_134 1_45_133 1_46_132 1_47_131 1_48_130 set community 0:178 route-map calculator permit 37807 match community 1_49_129 1_50_128 1_51_127 1_52_126 1_53_125 set community 0:178 route-map calculator permit 37808 match community 1_54_124 1_55_123 1_56_122 1_57_121 1_58_120 set community 0:178 route-map calculator permit 37809 match community 1_59_119 1_60_118 1_61_117 1_62_116 1_63_115 set community 0:178 route-map calculator permit 37810 match community 1_64_114 1_65_113 1_66_112 1_67_111 1_68_110 set community 0:178 route-map calculator permit 37811 match community 1_69_109 1_70_108 1_71_107 1_72_106 1_73_105 set community 0:178 route-map calculator permit 37812 match community 1_74_104 1_75_103 1_76_102 1_77_101 1_78_100 set community 0:178 route-map calculator permit 37813 match community 1_79_99 1_80_98 1_81_97 1_82_96 1_83_95 set community 0:178 route-map calculator permit 37814 match community 1_84_94 1_85_93 1_86_92 1_87_91 1_88_90 set community 0:178 route-map calculator permit 37815 match community 1_89_89 c4_178_1 c3_179_1 c3_180_2 c3_181_3 set community 0:178 route-map calculator permit 37816 match community c3_182_4 c3_183_5 c3_184_6 c3_185_7 c3_186_8 set community 0:178 route-map calculator permit 37817 match community c3_187_9 c3_188_10 c3_189_11 c3_190_12 c3_191_13 set community 0:178 route-map calculator permit 37818 match community c3_192_14 c3_193_15 c3_194_16 c3_195_17 c3_196_18 set community 0:178 route-map calculator permit 37819 match community c3_197_19 c3_198_20 c3_199_21 c3_200_22 c3_201_23 set community 0:178 route-map calculator permit 37820 match community c3_202_24 c3_203_25 c3_204_26 c3_205_27 c3_206_28 set community 0:178 route-map calculator permit 37821 match community c3_207_29 c3_208_30 c3_209_31 c3_210_32 c3_211_33 set community 0:178 route-map calculator permit 37822 match community c3_212_34 c3_213_35 c3_214_36 c3_215_37 c3_216_38 set community 0:178 route-map calculator permit 37823 match community c3_217_39 c3_218_40 c3_219_41 c3_220_42 c3_221_43 set community 0:178 route-map calculator permit 37824 match community c3_222_44 c3_223_45 c3_224_46 c3_225_47 c3_226_48 set community 0:178 route-map calculator permit 37825 match community c3_227_49 c3_228_50 c3_229_51 c3_230_52 c3_231_53 set community 0:178 route-map calculator permit 37826 match community c3_232_54 c3_233_55 c3_234_56 c3_235_57 c3_236_58 set community 0:178 route-map calculator permit 37827 match community c3_237_59 c3_238_60 c3_239_61 c3_240_62 c3_241_63 set community 0:178 route-map calculator permit 37828 match community c3_242_64 c3_243_65 c3_244_66 c3_245_67 c3_246_68 set community 0:178 route-map calculator permit 37829 match community c3_247_69 c3_248_70 c3_249_71 c3_250_72 c3_251_73 set community 0:178 route-map calculator permit 37830 match community c3_252_74 c3_253_75 c3_254_76 c3_255_77 c3_256_78 set community 0:178 ip community-list standard 2_100_149 permit 65000:2 0:100 0:149 route-map calculator permit 37831 match community 2_100_149 set community 0:14900 ip community-list standard 2_34_226 permit 65000:2 0:34 0:226 ip community-list standard 2_68_113 permit 65000:2 0:68 0:113 route-map calculator permit 37832 match community 2_34_226 2_68_113 set community 0:7684 ip community-list standard 2_64_139 permit 65000:2 0:64 0:139 route-map calculator permit 37833 match community 2_64_139 set community 0:8896 ip community-list standard 2_39_189 permit 65000:2 0:39 0:189 ip community-list standard 2_63_117 permit 65000:2 0:63 0:117 ip community-list standard 2_81_91 permit 65000:2 0:81 0:91 route-map calculator permit 37834 match community 2_39_189 2_63_117 2_81_91 set community 0:7371 ip community-list standard 2_49_158 permit 65000:2 0:49 0:158 ip community-list standard 2_79_98 permit 65000:2 0:79 0:98 route-map calculator permit 37835 match community 2_49_158 2_79_98 set community 0:7742 ip community-list standard 2_197_254 permit 65000:2 0:197 0:254 route-map calculator permit 37836 match community 2_197_254 set community 0:50038 ip community-list standard 2_14_142 permit 65000:2 0:14 0:142 ip community-list standard 2_28_71 permit 65000:2 0:28 0:71 route-map calculator permit 37837 match community 2_14_142 2_28_71 set community 0:1988 ip community-list standard 1_1_34 permit 65000:1 0:1 0:34 ip community-list standard 2_1_35 permit 65000:2 0:1 0:35 ip community-list standard 1_2_33 permit 65000:1 0:2 0:33 ip community-list standard 1_3_32 permit 65000:1 0:3 0:32 ip community-list standard 1_4_31 permit 65000:1 0:4 0:31 ip community-list standard 2_5_7 permit 65000:2 0:5 0:7 ip community-list standard 1_5_30 permit 65000:1 0:5 0:30 ip community-list standard 1_6_29 permit 65000:1 0:6 0:29 ip community-list standard 1_7_28 permit 65000:1 0:7 0:28 ip community-list standard 1_8_27 permit 65000:1 0:8 0:27 ip community-list standard 1_9_26 permit 65000:1 0:9 0:26 ip community-list standard 1_10_25 permit 65000:1 0:10 0:25 ip community-list standard 1_11_24 permit 65000:1 0:11 0:24 ip community-list standard 1_12_23 permit 65000:1 0:12 0:23 ip community-list standard 1_13_22 permit 65000:1 0:13 0:22 ip community-list standard 1_14_21 permit 65000:1 0:14 0:21 ip community-list standard 1_15_20 permit 65000:1 0:15 0:20 ip community-list standard 1_16_19 permit 65000:1 0:16 0:19 ip community-list standard 1_17_18 permit 65000:1 0:17 0:18 ip community-list expanded c35 permit 1 ^65000:4_0:35_0:1$ ip community-list expanded c35 permit 2 ^65000:3_0:36_0:1$ ip community-list expanded c35 permit 3 ^65000:3_0:37_0:2$ ip community-list expanded c35 permit 4 ^65000:3_0:38_0:3$ ip community-list expanded c35 permit 5 ^65000:3_0:39_0:4$ ip community-list expanded c35 permit 6 ^65000:3_0:40_0:5$ ip community-list expanded c35 permit 7 ^65000:3_0:41_0:6$ ip community-list expanded c35 permit 8 ^65000:3_0:42_0:7$ ip community-list expanded c35 permit 9 ^65000:3_0:43_0:8$ ip community-list expanded c35 permit 10 ^65000:3_0:44_0:9$ ip community-list expanded c35 permit 11 ^65000:3_0:45_0:10$ ip community-list expanded c35 permit 12 ^65000:3_0:46_0:11$ ip community-list expanded c35 permit 13 ^65000:3_0:47_0:12$ ip community-list expanded c35 permit 14 ^65000:3_0:48_0:13$ ip community-list expanded c35 permit 15 ^65000:3_0:49_0:14$ ip community-list expanded c35 permit 16 ^65000:3_0:50_0:15$ ip community-list expanded c35 permit 17 ^65000:3_0:51_0:16$ ip community-list expanded c35 permit 18 ^65000:3_0:52_0:17$ ip community-list expanded c35 permit 19 ^65000:3_0:53_0:18$ ip community-list expanded c35 permit 20 ^65000:3_0:54_0:19$ ip community-list expanded c35 permit 21 ^65000:3_0:55_0:20$ ip community-list expanded c35 permit 22 ^65000:3_0:56_0:21$ ip community-list expanded c35 permit 23 ^65000:3_0:57_0:22$ ip community-list expanded c35 permit 24 ^65000:3_0:58_0:23$ ip community-list expanded c35 permit 25 ^65000:3_0:59_0:24$ ip community-list expanded c35 permit 26 ^65000:3_0:60_0:25$ ip community-list expanded c35 permit 27 ^65000:3_0:61_0:26$ ip community-list expanded c35 permit 28 ^65000:3_0:62_0:27$ ip community-list expanded c35 permit 29 ^65000:3_0:63_0:28$ ip community-list expanded c35 permit 30 ^65000:3_0:64_0:29$ ip community-list expanded c35 permit 31 ^65000:3_0:65_0:30$ ip community-list expanded c35 permit 32 ^65000:3_0:66_0:31$ ip community-list expanded c35 permit 33 ^65000:3_0:67_0:32$ ip community-list expanded c35 permit 34 ^65000:3_0:68_0:33$ ip community-list expanded c35 permit 35 ^65000:3_0:69_0:34$ ip community-list expanded c35 permit 36 ^65000:4_0:70_0:2$ ip community-list expanded c35 permit 37 ^65000:3_0:70_0:35$ ip community-list expanded c35 permit 38 ^65000:4_0:71_0:2$ ip community-list expanded c35 permit 39 ^65000:3_0:71_0:36$ ip community-list expanded c35 permit 40 ^65000:3_0:72_0:37$ ip community-list expanded c35 permit 41 ^65000:3_0:73_0:38$ ip community-list expanded c35 permit 42 ^65000:3_0:74_0:39$ ip community-list expanded c35 permit 43 ^65000:3_0:75_0:40$ ip community-list expanded c35 permit 44 ^65000:3_0:76_0:41$ ip community-list expanded c35 permit 45 ^65000:3_0:77_0:42$ ip community-list expanded c35 permit 46 ^65000:3_0:78_0:43$ ip community-list expanded c35 permit 47 ^65000:3_0:79_0:44$ ip community-list expanded c35 permit 48 ^65000:3_0:80_0:45$ ip community-list expanded c35 permit 49 ^65000:3_0:81_0:46$ ip community-list expanded c35 permit 50 ^65000:3_0:82_0:47$ ip community-list expanded c35 permit 51 ^65000:3_0:83_0:48$ ip community-list expanded c35 permit 52 ^65000:3_0:84_0:49$ ip community-list expanded c35 permit 53 ^65000:3_0:85_0:50$ ip community-list expanded c35 permit 54 ^65000:3_0:86_0:51$ ip community-list expanded c35 permit 55 ^65000:3_0:87_0:52$ ip community-list expanded c35 permit 56 ^65000:3_0:88_0:53$ ip community-list expanded c35 permit 57 ^65000:3_0:89_0:54$ ip community-list expanded c35 permit 58 ^65000:3_0:90_0:55$ ip community-list expanded c35 permit 59 ^65000:3_0:91_0:56$ ip community-list expanded c35 permit 60 ^65000:3_0:92_0:57$ ip community-list expanded c35 permit 61 ^65000:3_0:93_0:58$ ip community-list expanded c35 permit 62 ^65000:3_0:94_0:59$ ip community-list expanded c35 permit 63 ^65000:3_0:95_0:60$ ip community-list expanded c35 permit 64 ^65000:3_0:96_0:61$ ip community-list expanded c35 permit 65 ^65000:3_0:97_0:62$ ip community-list expanded c35 permit 66 ^65000:3_0:98_0:63$ ip community-list expanded c35 permit 67 ^65000:3_0:99_0:64$ ip community-list expanded c35 permit 68 ^65000:3_0:100_0:65$ ip community-list expanded c35 permit 69 ^65000:3_0:101_0:66$ ip community-list expanded c35 permit 70 ^65000:3_0:102_0:67$ ip community-list expanded c35 permit 71 ^65000:3_0:103_0:68$ ip community-list expanded c35 permit 72 ^65000:3_0:104_0:69$ ip community-list expanded c35 permit 73 ^65000:4_0:105_0:3$ ip community-list expanded c35 permit 74 ^65000:3_0:105_0:70$ ip community-list expanded c35 permit 75 ^65000:4_0:106_0:3$ ip community-list expanded c35 permit 76 ^65000:3_0:106_0:71$ ip community-list expanded c35 permit 77 ^65000:4_0:107_0:3$ ip community-list expanded c35 permit 78 ^65000:3_0:107_0:72$ ip community-list expanded c35 permit 79 ^65000:3_0:108_0:73$ ip community-list expanded c35 permit 80 ^65000:3_0:109_0:74$ ip community-list expanded c35 permit 81 ^65000:3_0:110_0:75$ ip community-list expanded c35 permit 82 ^65000:3_0:111_0:76$ ip community-list expanded c35 permit 83 ^65000:3_0:112_0:77$ ip community-list expanded c35 permit 84 ^65000:3_0:113_0:78$ ip community-list expanded c35 permit 85 ^65000:3_0:114_0:79$ ip community-list expanded c35 permit 86 ^65000:3_0:115_0:80$ ip community-list expanded c35 permit 87 ^65000:3_0:116_0:81$ ip community-list expanded c35 permit 88 ^65000:3_0:117_0:82$ ip community-list expanded c35 permit 89 ^65000:3_0:118_0:83$ ip community-list expanded c35 permit 90 ^65000:3_0:119_0:84$ ip community-list expanded c35 permit 91 ^65000:3_0:120_0:85$ ip community-list expanded c35 permit 92 ^65000:3_0:121_0:86$ ip community-list expanded c35 permit 93 ^65000:3_0:122_0:87$ ip community-list expanded c35 permit 94 ^65000:3_0:123_0:88$ ip community-list expanded c35 permit 95 ^65000:3_0:124_0:89$ ip community-list expanded c35 permit 96 ^65000:3_0:125_0:90$ ip community-list expanded c35 permit 97 ^65000:3_0:126_0:91$ ip community-list expanded c35 permit 98 ^65000:3_0:127_0:92$ ip community-list expanded c35 permit 99 ^65000:3_0:128_0:93$ ip community-list expanded c35 permit 100 ^65000:3_0:129_0:94$ ip community-list expanded c35 permit 101 ^65000:3_0:130_0:95$ ip community-list expanded c35 permit 102 ^65000:3_0:131_0:96$ ip community-list expanded c35 permit 103 ^65000:3_0:132_0:97$ ip community-list expanded c35 permit 104 ^65000:3_0:133_0:98$ ip community-list expanded c35 permit 105 ^65000:3_0:134_0:99$ ip community-list expanded c35 permit 106 ^65000:3_0:135_0:100$ ip community-list expanded c35 permit 107 ^65000:3_0:136_0:101$ ip community-list expanded c35 permit 108 ^65000:3_0:137_0:102$ ip community-list expanded c35 permit 109 ^65000:3_0:138_0:103$ ip community-list expanded c35 permit 110 ^65000:3_0:139_0:104$ ip community-list expanded c35 permit 111 ^65000:4_0:140_0:4$ ip community-list expanded c35 permit 112 ^65000:3_0:140_0:105$ ip community-list expanded c35 permit 113 ^65000:4_0:141_0:4$ ip community-list expanded c35 permit 114 ^65000:3_0:141_0:106$ ip community-list expanded c35 permit 115 ^65000:4_0:142_0:4$ ip community-list expanded c35 permit 116 ^65000:3_0:142_0:107$ ip community-list expanded c35 permit 117 ^65000:4_0:143_0:4$ ip community-list expanded c35 permit 118 ^65000:3_0:143_0:108$ ip community-list expanded c35 permit 119 ^65000:3_0:144_0:109$ ip community-list expanded c35 permit 120 ^65000:3_0:145_0:110$ ip community-list expanded c35 permit 121 ^65000:3_0:146_0:111$ ip community-list expanded c35 permit 122 ^65000:3_0:147_0:112$ ip community-list expanded c35 permit 123 ^65000:3_0:148_0:113$ ip community-list expanded c35 permit 124 ^65000:3_0:149_0:114$ ip community-list expanded c35 permit 125 ^65000:3_0:150_0:115$ ip community-list expanded c35 permit 126 ^65000:3_0:151_0:116$ ip community-list expanded c35 permit 127 ^65000:3_0:152_0:117$ ip community-list expanded c35 permit 128 ^65000:3_0:153_0:118$ ip community-list expanded c35 permit 129 ^65000:3_0:154_0:119$ ip community-list expanded c35 permit 130 ^65000:3_0:155_0:120$ ip community-list expanded c35 permit 131 ^65000:3_0:156_0:121$ ip community-list expanded c35 permit 132 ^65000:3_0:157_0:122$ ip community-list expanded c35 permit 133 ^65000:3_0:158_0:123$ ip community-list expanded c35 permit 134 ^65000:3_0:159_0:124$ ip community-list expanded c35 permit 135 ^65000:3_0:160_0:125$ ip community-list expanded c35 permit 136 ^65000:3_0:161_0:126$ ip community-list expanded c35 permit 137 ^65000:3_0:162_0:127$ ip community-list expanded c35 permit 138 ^65000:3_0:163_0:128$ ip community-list expanded c35 permit 139 ^65000:3_0:164_0:129$ ip community-list expanded c35 permit 140 ^65000:3_0:165_0:130$ ip community-list expanded c35 permit 141 ^65000:3_0:166_0:131$ ip community-list expanded c35 permit 142 ^65000:3_0:167_0:132$ ip community-list expanded c35 permit 143 ^65000:3_0:168_0:133$ ip community-list expanded c35 permit 144 ^65000:3_0:169_0:134$ ip community-list expanded c35 permit 145 ^65000:3_0:170_0:135$ ip community-list expanded c35 permit 146 ^65000:3_0:171_0:136$ ip community-list expanded c35 permit 147 ^65000:3_0:172_0:137$ ip community-list expanded c35 permit 148 ^65000:3_0:173_0:138$ ip community-list expanded c35 permit 149 ^65000:3_0:174_0:139$ ip community-list expanded c35 permit 150 ^65000:4_0:175_0:5$ ip community-list expanded c35 permit 151 ^65000:3_0:175_0:140$ ip community-list expanded c35 permit 152 ^65000:4_0:176_0:5$ ip community-list expanded c35 permit 153 ^65000:3_0:176_0:141$ ip community-list expanded c35 permit 154 ^65000:4_0:177_0:5$ ip community-list expanded c35 permit 155 ^65000:3_0:177_0:142$ ip community-list expanded c35 permit 156 ^65000:4_0:178_0:5$ ip community-list expanded c35 permit 157 ^65000:3_0:178_0:143$ ip community-list expanded c35 permit 158 ^65000:4_0:179_0:5$ ip community-list expanded c35 permit 159 ^65000:3_0:179_0:144$ ip community-list expanded c35 permit 160 ^65000:3_0:180_0:145$ ip community-list expanded c35 permit 161 ^65000:3_0:181_0:146$ ip community-list expanded c35 permit 162 ^65000:3_0:182_0:147$ ip community-list expanded c35 permit 163 ^65000:3_0:183_0:148$ ip community-list expanded c35 permit 164 ^65000:3_0:184_0:149$ ip community-list expanded c35 permit 165 ^65000:3_0:185_0:150$ ip community-list expanded c35 permit 166 ^65000:3_0:186_0:151$ ip community-list expanded c35 permit 167 ^65000:3_0:187_0:152$ ip community-list expanded c35 permit 168 ^65000:3_0:188_0:153$ ip community-list expanded c35 permit 169 ^65000:3_0:189_0:154$ ip community-list expanded c35 permit 170 ^65000:3_0:190_0:155$ ip community-list expanded c35 permit 171 ^65000:3_0:191_0:156$ ip community-list expanded c35 permit 172 ^65000:3_0:192_0:157$ ip community-list expanded c35 permit 173 ^65000:3_0:193_0:158$ ip community-list expanded c35 permit 174 ^65000:3_0:194_0:159$ ip community-list expanded c35 permit 175 ^65000:3_0:195_0:160$ ip community-list expanded c35 permit 176 ^65000:3_0:196_0:161$ ip community-list expanded c35 permit 177 ^65000:3_0:197_0:162$ ip community-list expanded c35 permit 178 ^65000:3_0:198_0:163$ ip community-list expanded c35 permit 179 ^65000:3_0:199_0:164$ ip community-list expanded c35 permit 180 ^65000:3_0:200_0:165$ ip community-list expanded c35 permit 181 ^65000:3_0:201_0:166$ ip community-list expanded c35 permit 182 ^65000:3_0:202_0:167$ ip community-list expanded c35 permit 183 ^65000:3_0:203_0:168$ ip community-list expanded c35 permit 184 ^65000:3_0:204_0:169$ ip community-list expanded c35 permit 185 ^65000:3_0:205_0:170$ ip community-list expanded c35 permit 186 ^65000:3_0:206_0:171$ ip community-list expanded c35 permit 187 ^65000:3_0:207_0:172$ ip community-list expanded c35 permit 188 ^65000:3_0:208_0:173$ ip community-list expanded c35 permit 189 ^65000:3_0:209_0:174$ ip community-list expanded c35 permit 190 ^65000:4_0:210_0:6$ ip community-list expanded c35 permit 191 ^65000:3_0:210_0:175$ ip community-list expanded c35 permit 192 ^65000:4_0:211_0:6$ ip community-list expanded c35 permit 193 ^65000:3_0:211_0:176$ ip community-list expanded c35 permit 194 ^65000:4_0:212_0:6$ ip community-list expanded c35 permit 195 ^65000:3_0:212_0:177$ ip community-list expanded c35 permit 196 ^65000:4_0:213_0:6$ ip community-list expanded c35 permit 197 ^65000:3_0:213_0:178$ ip community-list expanded c35 permit 198 ^65000:4_0:214_0:6$ ip community-list expanded c35 permit 199 ^65000:3_0:214_0:179$ ip community-list expanded c35 permit 200 ^65000:4_0:215_0:6$ ip community-list expanded c35 permit 201 ^65000:3_0:215_0:180$ ip community-list expanded c35 permit 202 ^65000:3_0:216_0:181$ ip community-list expanded c35 permit 203 ^65000:3_0:217_0:182$ ip community-list expanded c35 permit 204 ^65000:3_0:218_0:183$ ip community-list expanded c35 permit 205 ^65000:3_0:219_0:184$ ip community-list expanded c35 permit 206 ^65000:3_0:220_0:185$ ip community-list expanded c35 permit 207 ^65000:3_0:221_0:186$ ip community-list expanded c35 permit 208 ^65000:3_0:222_0:187$ ip community-list expanded c35 permit 209 ^65000:3_0:223_0:188$ ip community-list expanded c35 permit 210 ^65000:3_0:224_0:189$ ip community-list expanded c35 permit 211 ^65000:3_0:225_0:190$ ip community-list expanded c35 permit 212 ^65000:3_0:226_0:191$ ip community-list expanded c35 permit 213 ^65000:3_0:227_0:192$ ip community-list expanded c35 permit 214 ^65000:3_0:228_0:193$ ip community-list expanded c35 permit 215 ^65000:3_0:229_0:194$ ip community-list expanded c35 permit 216 ^65000:3_0:230_0:195$ ip community-list expanded c35 permit 217 ^65000:3_0:231_0:196$ ip community-list expanded c35 permit 218 ^65000:3_0:232_0:197$ ip community-list expanded c35 permit 219 ^65000:3_0:233_0:198$ ip community-list expanded c35 permit 220 ^65000:3_0:234_0:199$ ip community-list expanded c35 permit 221 ^65000:3_0:235_0:200$ ip community-list expanded c35 permit 222 ^65000:3_0:236_0:201$ ip community-list expanded c35 permit 223 ^65000:3_0:237_0:202$ ip community-list expanded c35 permit 224 ^65000:3_0:238_0:203$ ip community-list expanded c35 permit 225 ^65000:3_0:239_0:204$ ip community-list expanded c35 permit 226 ^65000:3_0:240_0:205$ ip community-list expanded c35 permit 227 ^65000:3_0:241_0:206$ ip community-list expanded c35 permit 228 ^65000:3_0:242_0:207$ ip community-list expanded c35 permit 229 ^65000:3_0:243_0:208$ ip community-list expanded c35 permit 230 ^65000:3_0:244_0:209$ ip community-list expanded c35 permit 231 ^65000:4_0:245_0:7$ ip community-list expanded c35 permit 232 ^65000:3_0:245_0:210$ ip community-list expanded c35 permit 233 ^65000:4_0:246_0:7$ ip community-list expanded c35 permit 234 ^65000:3_0:246_0:211$ ip community-list expanded c35 permit 235 ^65000:4_0:247_0:7$ ip community-list expanded c35 permit 236 ^65000:3_0:247_0:212$ ip community-list expanded c35 permit 237 ^65000:4_0:248_0:7$ ip community-list expanded c35 permit 238 ^65000:3_0:248_0:213$ ip community-list expanded c35 permit 239 ^65000:4_0:249_0:7$ ip community-list expanded c35 permit 240 ^65000:3_0:249_0:214$ ip community-list expanded c35 permit 241 ^65000:4_0:250_0:7$ ip community-list expanded c35 permit 242 ^65000:3_0:250_0:215$ ip community-list expanded c35 permit 243 ^65000:4_0:251_0:7$ ip community-list expanded c35 permit 244 ^65000:3_0:251_0:216$ ip community-list expanded c35 permit 245 ^65000:3_0:252_0:217$ ip community-list expanded c35 permit 246 ^65000:3_0:253_0:218$ ip community-list expanded c35 permit 247 ^65000:3_0:254_0:219$ ip community-list expanded c35 permit 248 ^65000:3_0:255_0:220$ ip community-list expanded c35 permit 249 ^65000:3_0:256_0:221$ route-map calculator permit 37838 match community 1_1_34 2_1_35 1_2_33 1_3_32 1_4_31 set community 0:35 route-map calculator permit 37839 match community 2_5_7 1_5_30 1_6_29 1_7_28 1_8_27 set community 0:35 route-map calculator permit 37840 match community 1_9_26 1_10_25 1_11_24 1_12_23 1_13_22 set community 0:35 route-map calculator permit 37841 match community 1_14_21 1_15_20 1_16_19 1_17_18 c4_35_1 set community 0:35 route-map calculator permit 37842 match community c3_36_1 c3_37_2 c3_38_3 c3_39_4 c3_40_5 set community 0:35 route-map calculator permit 37843 match community c3_41_6 c3_42_7 c3_43_8 c3_44_9 c3_45_10 set community 0:35 route-map calculator permit 37844 match community c3_46_11 c3_47_12 c3_48_13 c3_49_14 c3_50_15 set community 0:35 route-map calculator permit 37845 match community c3_51_16 c3_52_17 c3_53_18 c3_54_19 c3_55_20 set community 0:35 route-map calculator permit 37846 match community c3_56_21 c3_57_22 c3_58_23 c3_59_24 c3_60_25 set community 0:35 route-map calculator permit 37847 match community c3_61_26 c3_62_27 c3_63_28 c3_64_29 c3_65_30 set community 0:35 route-map calculator permit 37848 match community c3_66_31 c3_67_32 c3_68_33 c3_69_34 c4_70_2 set community 0:35 route-map calculator permit 37849 match community c3_70_35 c4_71_2 c3_71_36 c3_72_37 c3_73_38 set community 0:35 route-map calculator permit 37850 match community c3_74_39 c3_75_40 c3_76_41 c3_77_42 c3_78_43 set community 0:35 route-map calculator permit 37851 match community c3_79_44 c3_80_45 c3_81_46 c3_82_47 c3_83_48 set community 0:35 route-map calculator permit 37852 match community c3_84_49 c3_85_50 c3_86_51 c3_87_52 c3_88_53 set community 0:35 route-map calculator permit 37853 match community c3_89_54 c3_90_55 c3_91_56 c3_92_57 c3_93_58 set community 0:35 route-map calculator permit 37854 match community c3_94_59 c3_95_60 c3_96_61 c3_97_62 c3_98_63 set community 0:35 route-map calculator permit 37855 match community c3_99_64 c3_100_65 c3_101_66 c3_102_67 c3_103_68 set community 0:35 route-map calculator permit 37856 match community c3_104_69 c4_105_3 c3_105_70 c4_106_3 c3_106_71 set community 0:35 route-map calculator permit 37857 match community c4_107_3 c3_107_72 c3_108_73 c3_109_74 c3_110_75 set community 0:35 route-map calculator permit 37858 match community c3_111_76 c3_112_77 c3_113_78 c3_114_79 c3_115_80 set community 0:35 route-map calculator permit 37859 match community c3_116_81 c3_117_82 c3_118_83 c3_119_84 c3_120_85 set community 0:35 route-map calculator permit 37860 match community c3_121_86 c3_122_87 c3_123_88 c3_124_89 c3_125_90 set community 0:35 route-map calculator permit 37861 match community c3_126_91 c3_127_92 c3_128_93 c3_129_94 c3_130_95 set community 0:35 route-map calculator permit 37862 match community c3_131_96 c3_132_97 c3_133_98 c3_134_99 c3_135_100 set community 0:35 route-map calculator permit 37863 match community c3_136_101 c3_137_102 c3_138_103 c3_139_104 c4_140_4 set community 0:35 route-map calculator permit 37864 match community c3_140_105 c4_141_4 c3_141_106 c4_142_4 c3_142_107 set community 0:35 route-map calculator permit 37865 match community c4_143_4 c3_143_108 c3_144_109 c3_145_110 c3_146_111 set community 0:35 route-map calculator permit 37866 match community c3_147_112 c3_148_113 c3_149_114 c3_150_115 c3_151_116 set community 0:35 route-map calculator permit 37867 match community c3_152_117 c3_153_118 c3_154_119 c3_155_120 c3_156_121 set community 0:35 route-map calculator permit 37868 match community c3_157_122 c3_158_123 c3_159_124 c3_160_125 c3_161_126 set community 0:35 route-map calculator permit 37869 match community c3_162_127 c3_163_128 c3_164_129 c3_165_130 c3_166_131 set community 0:35 route-map calculator permit 37870 match community c3_167_132 c3_168_133 c3_169_134 c3_170_135 c3_171_136 set community 0:35 route-map calculator permit 37871 match community c3_172_137 c3_173_138 c3_174_139 c4_175_5 c3_175_140 set community 0:35 route-map calculator permit 37872 match community c4_176_5 c3_176_141 c4_177_5 c3_177_142 c4_178_5 set community 0:35 route-map calculator permit 37873 match community c3_178_143 c4_179_5 c3_179_144 c3_180_145 c3_181_146 set community 0:35 route-map calculator permit 37874 match community c3_182_147 c3_183_148 c3_184_149 c3_185_150 c3_186_151 set community 0:35 route-map calculator permit 37875 match community c3_187_152 c3_188_153 c3_189_154 c3_190_155 c3_191_156 set community 0:35 route-map calculator permit 37876 match community c3_192_157 c3_193_158 c3_194_159 c3_195_160 c3_196_161 set community 0:35 route-map calculator permit 37877 match community c3_197_162 c3_198_163 c3_199_164 c3_200_165 c3_201_166 set community 0:35 route-map calculator permit 37878 match community c3_202_167 c3_203_168 c3_204_169 c3_205_170 c3_206_171 set community 0:35 route-map calculator permit 37879 match community c3_207_172 c3_208_173 c3_209_174 c4_210_6 c3_210_175 set community 0:35 route-map calculator permit 37880 match community c4_211_6 c3_211_176 c4_212_6 c3_212_177 c4_213_6 set community 0:35 route-map calculator permit 37881 match community c3_213_178 c4_214_6 c3_214_179 c4_215_6 c3_215_180 set community 0:35 route-map calculator permit 37882 match community c3_216_181 c3_217_182 c3_218_183 c3_219_184 c3_220_185 set community 0:35 route-map calculator permit 37883 match community c3_221_186 c3_222_187 c3_223_188 c3_224_189 c3_225_190 set community 0:35 route-map calculator permit 37884 match community c3_226_191 c3_227_192 c3_228_193 c3_229_194 c3_230_195 set community 0:35 route-map calculator permit 37885 match community c3_231_196 c3_232_197 c3_233_198 c3_234_199 c3_235_200 set community 0:35 route-map calculator permit 37886 match community c3_236_201 c3_237_202 c3_238_203 c3_239_204 c3_240_205 set community 0:35 route-map calculator permit 37887 match community c3_241_206 c3_242_207 c3_243_208 c3_244_209 c4_245_7 set community 0:35 route-map calculator permit 37888 match community c3_245_210 c4_246_7 c3_246_211 c4_247_7 c3_247_212 set community 0:35 route-map calculator permit 37889 match community c4_248_7 c3_248_213 c4_249_7 c3_249_214 c4_250_7 set community 0:35 route-map calculator permit 37890 match community c3_250_215 c4_251_7 c3_251_216 c3_252_217 c3_253_218 set community 0:35 route-map calculator permit 37891 match community c3_254_219 c3_255_220 c3_256_221 set community 0:35 ip community-list standard 2_27_219 permit 65000:2 0:27 0:219 ip community-list standard 2_73_81 permit 65000:2 0:73 0:81 route-map calculator permit 37892 match community 2_27_219 2_73_81 set community 0:5913 ip community-list standard 2_161_178 permit 65000:2 0:161 0:178 route-map calculator permit 37893 match community 2_161_178 set community 0:28658 ip community-list standard 2_192_245 permit 65000:2 0:192 0:245 ip community-list standard 2_196_240 permit 65000:2 0:196 0:240 ip community-list standard 2_210_224 permit 65000:2 0:210 0:224 route-map calculator permit 37894 match community 2_192_245 2_196_240 2_210_224 set community 0:47040 ip community-list standard 2_33_163 permit 65000:2 0:33 0:163 route-map calculator permit 37895 match community 2_33_163 set community 0:5379 ip community-list standard 2_24_172 permit 65000:2 0:24 0:172 ip community-list standard 2_32_129 permit 65000:2 0:32 0:129 ip community-list standard 2_43_96 permit 65000:2 0:43 0:96 ip community-list standard 2_48_86 permit 65000:2 0:48 0:86 route-map calculator permit 37896 match community 2_24_172 2_32_129 2_43_96 2_48_86 set community 0:4128 ip community-list standard 2_92_232 permit 65000:2 0:92 0:232 ip community-list standard 2_116_184 permit 65000:2 0:116 0:184 route-map calculator permit 37897 match community 2_92_232 2_116_184 set community 0:21344 ip community-list standard 2_79_232 permit 65000:2 0:79 0:232 ip community-list standard 2_116_158 permit 65000:2 0:116 0:158 route-map calculator permit 37898 match community 2_79_232 2_116_158 set community 0:18328 ip community-list standard 2_60_197 permit 65000:2 0:60 0:197 route-map calculator permit 37899 match community 2_60_197 set community 0:11820 ip community-list standard 2_61_221 permit 65000:2 0:61 0:221 route-map calculator permit 37900 match community 2_61_221 set community 0:13481 ip community-list standard 2_104_236 permit 65000:2 0:104 0:236 ip community-list standard 2_118_208 permit 65000:2 0:118 0:208 route-map calculator permit 37901 match community 2_104_236 2_118_208 set community 0:24544 ip community-list standard 2_202_248 permit 65000:2 0:202 0:248 route-map calculator permit 37902 match community 2_202_248 set community 0:50096 ip community-list standard 2_210_214 permit 65000:2 0:210 0:214 route-map calculator permit 37903 match community 2_210_214 set community 0:44940 ip community-list standard 2_66_256 permit 65000:2 0:66 0:256 ip community-list standard 2_88_192 permit 65000:2 0:88 0:192 ip community-list standard 2_96_176 permit 65000:2 0:96 0:176 ip community-list standard 2_128_132 permit 65000:2 0:128 0:132 route-map calculator permit 37904 match community 2_66_256 2_88_192 2_96_176 2_128_132 set community 0:16896 ip community-list standard 2_143_241 permit 65000:2 0:143 0:241 route-map calculator permit 37905 match community 2_143_241 set community 0:34463 ip community-list standard 2_91_184 permit 65000:2 0:91 0:184 ip community-list standard 2_92_182 permit 65000:2 0:92 0:182 ip community-list standard 2_104_161 permit 65000:2 0:104 0:161 route-map calculator permit 37906 match community 2_91_184 2_92_182 2_104_161 set community 0:16744 ip community-list standard 2_172_255 permit 65000:2 0:172 0:255 ip community-list standard 2_204_215 permit 65000:2 0:204 0:215 route-map calculator permit 37907 match community 2_172_255 2_204_215 set community 0:43860 ip community-list standard 2_80_191 permit 65000:2 0:80 0:191 route-map calculator permit 37908 match community 2_80_191 set community 0:15280 ip community-list standard 2_58_209 permit 65000:2 0:58 0:209 route-map calculator permit 37909 match community 2_58_209 set community 0:12122 ip community-list standard 1_1_163 permit 65000:1 0:1 0:163 ip community-list standard 2_1_164 permit 65000:2 0:1 0:164 ip community-list standard 2_2_82 permit 65000:2 0:2 0:82 ip community-list standard 1_2_162 permit 65000:1 0:2 0:162 ip community-list standard 1_3_161 permit 65000:1 0:3 0:161 ip community-list standard 2_4_41 permit 65000:2 0:4 0:41 ip community-list standard 1_4_160 permit 65000:1 0:4 0:160 ip community-list standard 1_5_159 permit 65000:1 0:5 0:159 ip community-list standard 1_6_158 permit 65000:1 0:6 0:158 ip community-list standard 1_7_157 permit 65000:1 0:7 0:157 ip community-list standard 1_8_156 permit 65000:1 0:8 0:156 ip community-list standard 1_9_155 permit 65000:1 0:9 0:155 ip community-list standard 1_10_154 permit 65000:1 0:10 0:154 ip community-list standard 1_11_153 permit 65000:1 0:11 0:153 ip community-list standard 1_12_152 permit 65000:1 0:12 0:152 ip community-list standard 1_13_151 permit 65000:1 0:13 0:151 ip community-list standard 1_14_150 permit 65000:1 0:14 0:150 ip community-list standard 1_15_149 permit 65000:1 0:15 0:149 ip community-list standard 1_16_148 permit 65000:1 0:16 0:148 ip community-list standard 1_17_147 permit 65000:1 0:17 0:147 ip community-list standard 1_18_146 permit 65000:1 0:18 0:146 ip community-list standard 1_19_145 permit 65000:1 0:19 0:145 ip community-list standard 1_20_144 permit 65000:1 0:20 0:144 ip community-list standard 1_21_143 permit 65000:1 0:21 0:143 ip community-list standard 1_22_142 permit 65000:1 0:22 0:142 ip community-list standard 1_23_141 permit 65000:1 0:23 0:141 ip community-list standard 1_24_140 permit 65000:1 0:24 0:140 ip community-list standard 1_25_139 permit 65000:1 0:25 0:139 ip community-list standard 1_26_138 permit 65000:1 0:26 0:138 ip community-list standard 1_27_137 permit 65000:1 0:27 0:137 ip community-list standard 1_28_136 permit 65000:1 0:28 0:136 ip community-list standard 1_29_135 permit 65000:1 0:29 0:135 ip community-list standard 1_30_134 permit 65000:1 0:30 0:134 ip community-list standard 1_31_133 permit 65000:1 0:31 0:133 ip community-list standard 1_32_132 permit 65000:1 0:32 0:132 ip community-list standard 1_33_131 permit 65000:1 0:33 0:131 ip community-list standard 1_34_130 permit 65000:1 0:34 0:130 ip community-list standard 1_35_129 permit 65000:1 0:35 0:129 ip community-list standard 1_36_128 permit 65000:1 0:36 0:128 ip community-list standard 1_37_127 permit 65000:1 0:37 0:127 ip community-list standard 1_38_126 permit 65000:1 0:38 0:126 ip community-list standard 1_39_125 permit 65000:1 0:39 0:125 ip community-list standard 1_40_124 permit 65000:1 0:40 0:124 ip community-list standard 1_41_123 permit 65000:1 0:41 0:123 ip community-list standard 1_42_122 permit 65000:1 0:42 0:122 ip community-list standard 1_43_121 permit 65000:1 0:43 0:121 ip community-list standard 1_44_120 permit 65000:1 0:44 0:120 ip community-list standard 1_45_119 permit 65000:1 0:45 0:119 ip community-list standard 1_46_118 permit 65000:1 0:46 0:118 ip community-list standard 1_47_117 permit 65000:1 0:47 0:117 ip community-list standard 1_48_116 permit 65000:1 0:48 0:116 ip community-list standard 1_49_115 permit 65000:1 0:49 0:115 ip community-list standard 1_50_114 permit 65000:1 0:50 0:114 ip community-list standard 1_51_113 permit 65000:1 0:51 0:113 ip community-list standard 1_52_112 permit 65000:1 0:52 0:112 ip community-list standard 1_53_111 permit 65000:1 0:53 0:111 ip community-list standard 1_54_110 permit 65000:1 0:54 0:110 ip community-list standard 1_55_109 permit 65000:1 0:55 0:109 ip community-list standard 1_56_108 permit 65000:1 0:56 0:108 ip community-list standard 1_57_107 permit 65000:1 0:57 0:107 ip community-list standard 1_58_106 permit 65000:1 0:58 0:106 ip community-list standard 1_59_105 permit 65000:1 0:59 0:105 ip community-list standard 1_60_104 permit 65000:1 0:60 0:104 ip community-list standard 1_61_103 permit 65000:1 0:61 0:103 ip community-list standard 1_62_102 permit 65000:1 0:62 0:102 ip community-list standard 1_63_101 permit 65000:1 0:63 0:101 ip community-list standard 1_64_100 permit 65000:1 0:64 0:100 ip community-list standard 1_65_99 permit 65000:1 0:65 0:99 ip community-list standard 1_66_98 permit 65000:1 0:66 0:98 ip community-list standard 1_67_97 permit 65000:1 0:67 0:97 ip community-list standard 1_68_96 permit 65000:1 0:68 0:96 ip community-list standard 1_69_95 permit 65000:1 0:69 0:95 ip community-list standard 1_70_94 permit 65000:1 0:70 0:94 ip community-list standard 1_71_93 permit 65000:1 0:71 0:93 ip community-list standard 1_72_92 permit 65000:1 0:72 0:92 ip community-list standard 1_73_91 permit 65000:1 0:73 0:91 ip community-list standard 1_74_90 permit 65000:1 0:74 0:90 ip community-list standard 1_75_89 permit 65000:1 0:75 0:89 ip community-list standard 1_76_88 permit 65000:1 0:76 0:88 ip community-list standard 1_77_87 permit 65000:1 0:77 0:87 ip community-list standard 1_78_86 permit 65000:1 0:78 0:86 ip community-list standard 1_79_85 permit 65000:1 0:79 0:85 ip community-list standard 1_80_84 permit 65000:1 0:80 0:84 ip community-list standard 1_81_83 permit 65000:1 0:81 0:83 ip community-list standard 1_82_82 permit 65000:1 0:82 0:82 ip community-list expanded c164 permit 1 ^65000:4_0:164_0:1$ ip community-list expanded c164 permit 2 ^65000:3_0:165_0:1$ ip community-list expanded c164 permit 3 ^65000:3_0:166_0:2$ ip community-list expanded c164 permit 4 ^65000:3_0:167_0:3$ ip community-list expanded c164 permit 5 ^65000:3_0:168_0:4$ ip community-list expanded c164 permit 6 ^65000:3_0:169_0:5$ ip community-list expanded c164 permit 7 ^65000:3_0:170_0:6$ ip community-list expanded c164 permit 8 ^65000:3_0:171_0:7$ ip community-list expanded c164 permit 9 ^65000:3_0:172_0:8$ ip community-list expanded c164 permit 10 ^65000:3_0:173_0:9$ ip community-list expanded c164 permit 11 ^65000:3_0:174_0:10$ ip community-list expanded c164 permit 12 ^65000:3_0:175_0:11$ ip community-list expanded c164 permit 13 ^65000:3_0:176_0:12$ ip community-list expanded c164 permit 14 ^65000:3_0:177_0:13$ ip community-list expanded c164 permit 15 ^65000:3_0:178_0:14$ ip community-list expanded c164 permit 16 ^65000:3_0:179_0:15$ ip community-list expanded c164 permit 17 ^65000:3_0:180_0:16$ ip community-list expanded c164 permit 18 ^65000:3_0:181_0:17$ ip community-list expanded c164 permit 19 ^65000:3_0:182_0:18$ ip community-list expanded c164 permit 20 ^65000:3_0:183_0:19$ ip community-list expanded c164 permit 21 ^65000:3_0:184_0:20$ ip community-list expanded c164 permit 22 ^65000:3_0:185_0:21$ ip community-list expanded c164 permit 23 ^65000:3_0:186_0:22$ ip community-list expanded c164 permit 24 ^65000:3_0:187_0:23$ ip community-list expanded c164 permit 25 ^65000:3_0:188_0:24$ ip community-list expanded c164 permit 26 ^65000:3_0:189_0:25$ ip community-list expanded c164 permit 27 ^65000:3_0:190_0:26$ ip community-list expanded c164 permit 28 ^65000:3_0:191_0:27$ ip community-list expanded c164 permit 29 ^65000:3_0:192_0:28$ ip community-list expanded c164 permit 30 ^65000:3_0:193_0:29$ ip community-list expanded c164 permit 31 ^65000:3_0:194_0:30$ ip community-list expanded c164 permit 32 ^65000:3_0:195_0:31$ ip community-list expanded c164 permit 33 ^65000:3_0:196_0:32$ ip community-list expanded c164 permit 34 ^65000:3_0:197_0:33$ ip community-list expanded c164 permit 35 ^65000:3_0:198_0:34$ ip community-list expanded c164 permit 36 ^65000:3_0:199_0:35$ ip community-list expanded c164 permit 37 ^65000:3_0:200_0:36$ ip community-list expanded c164 permit 38 ^65000:3_0:201_0:37$ ip community-list expanded c164 permit 39 ^65000:3_0:202_0:38$ ip community-list expanded c164 permit 40 ^65000:3_0:203_0:39$ ip community-list expanded c164 permit 41 ^65000:3_0:204_0:40$ ip community-list expanded c164 permit 42 ^65000:3_0:205_0:41$ ip community-list expanded c164 permit 43 ^65000:3_0:206_0:42$ ip community-list expanded c164 permit 44 ^65000:3_0:207_0:43$ ip community-list expanded c164 permit 45 ^65000:3_0:208_0:44$ ip community-list expanded c164 permit 46 ^65000:3_0:209_0:45$ ip community-list expanded c164 permit 47 ^65000:3_0:210_0:46$ ip community-list expanded c164 permit 48 ^65000:3_0:211_0:47$ ip community-list expanded c164 permit 49 ^65000:3_0:212_0:48$ ip community-list expanded c164 permit 50 ^65000:3_0:213_0:49$ ip community-list expanded c164 permit 51 ^65000:3_0:214_0:50$ ip community-list expanded c164 permit 52 ^65000:3_0:215_0:51$ ip community-list expanded c164 permit 53 ^65000:3_0:216_0:52$ ip community-list expanded c164 permit 54 ^65000:3_0:217_0:53$ ip community-list expanded c164 permit 55 ^65000:3_0:218_0:54$ ip community-list expanded c164 permit 56 ^65000:3_0:219_0:55$ ip community-list expanded c164 permit 57 ^65000:3_0:220_0:56$ ip community-list expanded c164 permit 58 ^65000:3_0:221_0:57$ ip community-list expanded c164 permit 59 ^65000:3_0:222_0:58$ ip community-list expanded c164 permit 60 ^65000:3_0:223_0:59$ ip community-list expanded c164 permit 61 ^65000:3_0:224_0:60$ ip community-list expanded c164 permit 62 ^65000:3_0:225_0:61$ ip community-list expanded c164 permit 63 ^65000:3_0:226_0:62$ ip community-list expanded c164 permit 64 ^65000:3_0:227_0:63$ ip community-list expanded c164 permit 65 ^65000:3_0:228_0:64$ ip community-list expanded c164 permit 66 ^65000:3_0:229_0:65$ ip community-list expanded c164 permit 67 ^65000:3_0:230_0:66$ ip community-list expanded c164 permit 68 ^65000:3_0:231_0:67$ ip community-list expanded c164 permit 69 ^65000:3_0:232_0:68$ ip community-list expanded c164 permit 70 ^65000:3_0:233_0:69$ ip community-list expanded c164 permit 71 ^65000:3_0:234_0:70$ ip community-list expanded c164 permit 72 ^65000:3_0:235_0:71$ ip community-list expanded c164 permit 73 ^65000:3_0:236_0:72$ ip community-list expanded c164 permit 74 ^65000:3_0:237_0:73$ ip community-list expanded c164 permit 75 ^65000:3_0:238_0:74$ ip community-list expanded c164 permit 76 ^65000:3_0:239_0:75$ ip community-list expanded c164 permit 77 ^65000:3_0:240_0:76$ ip community-list expanded c164 permit 78 ^65000:3_0:241_0:77$ ip community-list expanded c164 permit 79 ^65000:3_0:242_0:78$ ip community-list expanded c164 permit 80 ^65000:3_0:243_0:79$ ip community-list expanded c164 permit 81 ^65000:3_0:244_0:80$ ip community-list expanded c164 permit 82 ^65000:3_0:245_0:81$ ip community-list expanded c164 permit 83 ^65000:3_0:246_0:82$ ip community-list expanded c164 permit 84 ^65000:3_0:247_0:83$ ip community-list expanded c164 permit 85 ^65000:3_0:248_0:84$ ip community-list expanded c164 permit 86 ^65000:3_0:249_0:85$ ip community-list expanded c164 permit 87 ^65000:3_0:250_0:86$ ip community-list expanded c164 permit 88 ^65000:3_0:251_0:87$ ip community-list expanded c164 permit 89 ^65000:3_0:252_0:88$ ip community-list expanded c164 permit 90 ^65000:3_0:253_0:89$ ip community-list expanded c164 permit 91 ^65000:3_0:254_0:90$ ip community-list expanded c164 permit 92 ^65000:3_0:255_0:91$ ip community-list expanded c164 permit 93 ^65000:3_0:256_0:92$ route-map calculator permit 37910 match community 1_1_163 2_1_164 2_2_82 1_2_162 1_3_161 set community 0:164 route-map calculator permit 37911 match community 2_4_41 1_4_160 1_5_159 1_6_158 1_7_157 set community 0:164 route-map calculator permit 37912 match community 1_8_156 1_9_155 1_10_154 1_11_153 1_12_152 set community 0:164 route-map calculator permit 37913 match community 1_13_151 1_14_150 1_15_149 1_16_148 1_17_147 set community 0:164 route-map calculator permit 37914 match community 1_18_146 1_19_145 1_20_144 1_21_143 1_22_142 set community 0:164 route-map calculator permit 37915 match community 1_23_141 1_24_140 1_25_139 1_26_138 1_27_137 set community 0:164 route-map calculator permit 37916 match community 1_28_136 1_29_135 1_30_134 1_31_133 1_32_132 set community 0:164 route-map calculator permit 37917 match community 1_33_131 1_34_130 1_35_129 1_36_128 1_37_127 set community 0:164 route-map calculator permit 37918 match community 1_38_126 1_39_125 1_40_124 1_41_123 1_42_122 set community 0:164 route-map calculator permit 37919 match community 1_43_121 1_44_120 1_45_119 1_46_118 1_47_117 set community 0:164 route-map calculator permit 37920 match community 1_48_116 1_49_115 1_50_114 1_51_113 1_52_112 set community 0:164 route-map calculator permit 37921 match community 1_53_111 1_54_110 1_55_109 1_56_108 1_57_107 set community 0:164 route-map calculator permit 37922 match community 1_58_106 1_59_105 1_60_104 1_61_103 1_62_102 set community 0:164 route-map calculator permit 37923 match community 1_63_101 1_64_100 1_65_99 1_66_98 1_67_97 set community 0:164 route-map calculator permit 37924 match community 1_68_96 1_69_95 1_70_94 1_71_93 1_72_92 set community 0:164 route-map calculator permit 37925 match community 1_73_91 1_74_90 1_75_89 1_76_88 1_77_87 set community 0:164 route-map calculator permit 37926 match community 1_78_86 1_79_85 1_80_84 1_81_83 1_82_82 set community 0:164 route-map calculator permit 37927 match community c4_164_1 c3_165_1 c3_166_2 c3_167_3 c3_168_4 set community 0:164 route-map calculator permit 37928 match community c3_169_5 c3_170_6 c3_171_7 c3_172_8 c3_173_9 set community 0:164 route-map calculator permit 37929 match community c3_174_10 c3_175_11 c3_176_12 c3_177_13 c3_178_14 set community 0:164 route-map calculator permit 37930 match community c3_179_15 c3_180_16 c3_181_17 c3_182_18 c3_183_19 set community 0:164 route-map calculator permit 37931 match community c3_184_20 c3_185_21 c3_186_22 c3_187_23 c3_188_24 set community 0:164 route-map calculator permit 37932 match community c3_189_25 c3_190_26 c3_191_27 c3_192_28 c3_193_29 set community 0:164 route-map calculator permit 37933 match community c3_194_30 c3_195_31 c3_196_32 c3_197_33 c3_198_34 set community 0:164 route-map calculator permit 37934 match community c3_199_35 c3_200_36 c3_201_37 c3_202_38 c3_203_39 set community 0:164 route-map calculator permit 37935 match community c3_204_40 c3_205_41 c3_206_42 c3_207_43 c3_208_44 set community 0:164 route-map calculator permit 37936 match community c3_209_45 c3_210_46 c3_211_47 c3_212_48 c3_213_49 set community 0:164 route-map calculator permit 37937 match community c3_214_50 c3_215_51 c3_216_52 c3_217_53 c3_218_54 set community 0:164 route-map calculator permit 37938 match community c3_219_55 c3_220_56 c3_221_57 c3_222_58 c3_223_59 set community 0:164 route-map calculator permit 37939 match community c3_224_60 c3_225_61 c3_226_62 c3_227_63 c3_228_64 set community 0:164 route-map calculator permit 37940 match community c3_229_65 c3_230_66 c3_231_67 c3_232_68 c3_233_69 set community 0:164 route-map calculator permit 37941 match community c3_234_70 c3_235_71 c3_236_72 c3_237_73 c3_238_74 set community 0:164 route-map calculator permit 37942 match community c3_239_75 c3_240_76 c3_241_77 c3_242_78 c3_243_79 set community 0:164 route-map calculator permit 37943 match community c3_244_80 c3_245_81 c3_246_82 c3_247_83 c3_248_84 set community 0:164 route-map calculator permit 37944 match community c3_249_85 c3_250_86 c3_251_87 c3_252_88 c3_253_89 set community 0:164 route-map calculator permit 37945 match community c3_254_90 c3_255_91 c3_256_92 set community 0:164 ip community-list standard 2_175_202 permit 65000:2 0:175 0:202 route-map calculator permit 37946 match community 2_175_202 set community 0:35350 ip community-list standard 2_129_159 permit 65000:2 0:129 0:159 route-map calculator permit 37947 match community 2_129_159 set community 0:20511 ip community-list standard 2_114_250 permit 65000:2 0:114 0:250 ip community-list standard 2_125_228 permit 65000:2 0:125 0:228 ip community-list standard 2_150_190 permit 65000:2 0:150 0:190 route-map calculator permit 37948 match community 2_114_250 2_125_228 2_150_190 set community 0:28500 ip community-list standard 2_194_209 permit 65000:2 0:194 0:209 route-map calculator permit 37949 match community 2_194_209 set community 0:40546 ip community-list standard 2_222_246 permit 65000:2 0:222 0:246 route-map calculator permit 37950 match community 2_222_246 set community 0:54612 ip community-list standard 2_13_142 permit 65000:2 0:13 0:142 ip community-list standard 2_26_71 permit 65000:2 0:26 0:71 route-map calculator permit 37951 match community 2_13_142 2_26_71 set community 0:1846 ip community-list standard 2_197_202 permit 65000:2 0:197 0:202 route-map calculator permit 37952 match community 2_197_202 set community 0:39794 ip community-list standard 2_25_59 permit 65000:2 0:25 0:59 route-map calculator permit 37953 match community 2_25_59 set community 0:1475 ip community-list standard 2_227_244 permit 65000:2 0:227 0:244 route-map calculator permit 37954 match community 2_227_244 set community 0:55388 ip community-list standard 2_83_184 permit 65000:2 0:83 0:184 ip community-list standard 2_92_166 permit 65000:2 0:92 0:166 route-map calculator permit 37955 match community 2_83_184 2_92_166 set community 0:15272 ip community-list standard 2_76_151 permit 65000:2 0:76 0:151 route-map calculator permit 37956 match community 2_76_151 set community 0:11476 ip community-list standard 2_106_236 permit 65000:2 0:106 0:236 ip community-list standard 2_118_212 permit 65000:2 0:118 0:212 route-map calculator permit 37957 match community 2_106_236 2_118_212 set community 0:25016 ip community-list standard 2_52_134 permit 65000:2 0:52 0:134 ip community-list standard 2_67_104 permit 65000:2 0:67 0:104 route-map calculator permit 37958 match community 2_52_134 2_67_104 set community 0:6968 ip community-list standard 2_55_221 permit 65000:2 0:55 0:221 ip community-list standard 2_65_187 permit 65000:2 0:65 0:187 ip community-list standard 2_85_143 permit 65000:2 0:85 0:143 route-map calculator permit 37959 match community 2_55_221 2_65_187 2_85_143 set community 0:12155 ip community-list standard 1_1_89 permit 65000:1 0:1 0:89 ip community-list standard 2_1_90 permit 65000:2 0:1 0:90 ip community-list standard 2_2_45 permit 65000:2 0:2 0:45 ip community-list standard 1_2_88 permit 65000:1 0:2 0:88 ip community-list standard 2_3_30 permit 65000:2 0:3 0:30 ip community-list standard 1_3_87 permit 65000:1 0:3 0:87 ip community-list standard 1_4_86 permit 65000:1 0:4 0:86 ip community-list standard 2_5_18 permit 65000:2 0:5 0:18 ip community-list standard 1_5_85 permit 65000:1 0:5 0:85 ip community-list standard 2_6_15 permit 65000:2 0:6 0:15 ip community-list standard 1_6_84 permit 65000:1 0:6 0:84 ip community-list standard 1_7_83 permit 65000:1 0:7 0:83 ip community-list standard 1_8_82 permit 65000:1 0:8 0:82 ip community-list standard 2_9_10 permit 65000:2 0:9 0:10 ip community-list standard 1_9_81 permit 65000:1 0:9 0:81 ip community-list standard 1_10_80 permit 65000:1 0:10 0:80 ip community-list standard 1_11_79 permit 65000:1 0:11 0:79 ip community-list standard 1_12_78 permit 65000:1 0:12 0:78 ip community-list standard 1_13_77 permit 65000:1 0:13 0:77 ip community-list standard 1_14_76 permit 65000:1 0:14 0:76 ip community-list standard 1_15_75 permit 65000:1 0:15 0:75 ip community-list standard 1_16_74 permit 65000:1 0:16 0:74 ip community-list standard 1_17_73 permit 65000:1 0:17 0:73 ip community-list standard 1_18_72 permit 65000:1 0:18 0:72 ip community-list standard 1_19_71 permit 65000:1 0:19 0:71 ip community-list standard 1_20_70 permit 65000:1 0:20 0:70 ip community-list standard 1_21_69 permit 65000:1 0:21 0:69 ip community-list standard 1_22_68 permit 65000:1 0:22 0:68 ip community-list standard 1_23_67 permit 65000:1 0:23 0:67 ip community-list standard 1_24_66 permit 65000:1 0:24 0:66 ip community-list standard 1_25_65 permit 65000:1 0:25 0:65 ip community-list standard 1_26_64 permit 65000:1 0:26 0:64 ip community-list standard 1_27_63 permit 65000:1 0:27 0:63 ip community-list standard 1_28_62 permit 65000:1 0:28 0:62 ip community-list standard 1_29_61 permit 65000:1 0:29 0:61 ip community-list standard 1_30_60 permit 65000:1 0:30 0:60 ip community-list standard 1_31_59 permit 65000:1 0:31 0:59 ip community-list standard 1_32_58 permit 65000:1 0:32 0:58 ip community-list standard 1_33_57 permit 65000:1 0:33 0:57 ip community-list standard 1_34_56 permit 65000:1 0:34 0:56 ip community-list standard 1_35_55 permit 65000:1 0:35 0:55 ip community-list standard 1_36_54 permit 65000:1 0:36 0:54 ip community-list standard 1_37_53 permit 65000:1 0:37 0:53 ip community-list standard 1_38_52 permit 65000:1 0:38 0:52 ip community-list standard 1_39_51 permit 65000:1 0:39 0:51 ip community-list standard 1_40_50 permit 65000:1 0:40 0:50 ip community-list standard 1_41_49 permit 65000:1 0:41 0:49 ip community-list standard 1_42_48 permit 65000:1 0:42 0:48 ip community-list standard 1_43_47 permit 65000:1 0:43 0:47 ip community-list standard 1_44_46 permit 65000:1 0:44 0:46 ip community-list standard 1_45_45 permit 65000:1 0:45 0:45 ip community-list expanded c90 permit 1 ^65000:4_0:90_0:1$ ip community-list expanded c90 permit 2 ^65000:3_0:91_0:1$ ip community-list expanded c90 permit 3 ^65000:3_0:92_0:2$ ip community-list expanded c90 permit 4 ^65000:3_0:93_0:3$ ip community-list expanded c90 permit 5 ^65000:3_0:94_0:4$ ip community-list expanded c90 permit 6 ^65000:3_0:95_0:5$ ip community-list expanded c90 permit 7 ^65000:3_0:96_0:6$ ip community-list expanded c90 permit 8 ^65000:3_0:97_0:7$ ip community-list expanded c90 permit 9 ^65000:3_0:98_0:8$ ip community-list expanded c90 permit 10 ^65000:3_0:99_0:9$ ip community-list expanded c90 permit 11 ^65000:3_0:100_0:10$ ip community-list expanded c90 permit 12 ^65000:3_0:101_0:11$ ip community-list expanded c90 permit 13 ^65000:3_0:102_0:12$ ip community-list expanded c90 permit 14 ^65000:3_0:103_0:13$ ip community-list expanded c90 permit 15 ^65000:3_0:104_0:14$ ip community-list expanded c90 permit 16 ^65000:3_0:105_0:15$ ip community-list expanded c90 permit 17 ^65000:3_0:106_0:16$ ip community-list expanded c90 permit 18 ^65000:3_0:107_0:17$ ip community-list expanded c90 permit 19 ^65000:3_0:108_0:18$ ip community-list expanded c90 permit 20 ^65000:3_0:109_0:19$ ip community-list expanded c90 permit 21 ^65000:3_0:110_0:20$ ip community-list expanded c90 permit 22 ^65000:3_0:111_0:21$ ip community-list expanded c90 permit 23 ^65000:3_0:112_0:22$ ip community-list expanded c90 permit 24 ^65000:3_0:113_0:23$ ip community-list expanded c90 permit 25 ^65000:3_0:114_0:24$ ip community-list expanded c90 permit 26 ^65000:3_0:115_0:25$ ip community-list expanded c90 permit 27 ^65000:3_0:116_0:26$ ip community-list expanded c90 permit 28 ^65000:3_0:117_0:27$ ip community-list expanded c90 permit 29 ^65000:3_0:118_0:28$ ip community-list expanded c90 permit 30 ^65000:3_0:119_0:29$ ip community-list expanded c90 permit 31 ^65000:3_0:120_0:30$ ip community-list expanded c90 permit 32 ^65000:3_0:121_0:31$ ip community-list expanded c90 permit 33 ^65000:3_0:122_0:32$ ip community-list expanded c90 permit 34 ^65000:3_0:123_0:33$ ip community-list expanded c90 permit 35 ^65000:3_0:124_0:34$ ip community-list expanded c90 permit 36 ^65000:3_0:125_0:35$ ip community-list expanded c90 permit 37 ^65000:3_0:126_0:36$ ip community-list expanded c90 permit 38 ^65000:3_0:127_0:37$ ip community-list expanded c90 permit 39 ^65000:3_0:128_0:38$ ip community-list expanded c90 permit 40 ^65000:3_0:129_0:39$ ip community-list expanded c90 permit 41 ^65000:3_0:130_0:40$ ip community-list expanded c90 permit 42 ^65000:3_0:131_0:41$ ip community-list expanded c90 permit 43 ^65000:3_0:132_0:42$ ip community-list expanded c90 permit 44 ^65000:3_0:133_0:43$ ip community-list expanded c90 permit 45 ^65000:3_0:134_0:44$ ip community-list expanded c90 permit 46 ^65000:3_0:135_0:45$ ip community-list expanded c90 permit 47 ^65000:3_0:136_0:46$ ip community-list expanded c90 permit 48 ^65000:3_0:137_0:47$ ip community-list expanded c90 permit 49 ^65000:3_0:138_0:48$ ip community-list expanded c90 permit 50 ^65000:3_0:139_0:49$ ip community-list expanded c90 permit 51 ^65000:3_0:140_0:50$ ip community-list expanded c90 permit 52 ^65000:3_0:141_0:51$ ip community-list expanded c90 permit 53 ^65000:3_0:142_0:52$ ip community-list expanded c90 permit 54 ^65000:3_0:143_0:53$ ip community-list expanded c90 permit 55 ^65000:3_0:144_0:54$ ip community-list expanded c90 permit 56 ^65000:3_0:145_0:55$ ip community-list expanded c90 permit 57 ^65000:3_0:146_0:56$ ip community-list expanded c90 permit 58 ^65000:3_0:147_0:57$ ip community-list expanded c90 permit 59 ^65000:3_0:148_0:58$ ip community-list expanded c90 permit 60 ^65000:3_0:149_0:59$ ip community-list expanded c90 permit 61 ^65000:3_0:150_0:60$ ip community-list expanded c90 permit 62 ^65000:3_0:151_0:61$ ip community-list expanded c90 permit 63 ^65000:3_0:152_0:62$ ip community-list expanded c90 permit 64 ^65000:3_0:153_0:63$ ip community-list expanded c90 permit 65 ^65000:3_0:154_0:64$ ip community-list expanded c90 permit 66 ^65000:3_0:155_0:65$ ip community-list expanded c90 permit 67 ^65000:3_0:156_0:66$ ip community-list expanded c90 permit 68 ^65000:3_0:157_0:67$ ip community-list expanded c90 permit 69 ^65000:3_0:158_0:68$ ip community-list expanded c90 permit 70 ^65000:3_0:159_0:69$ ip community-list expanded c90 permit 71 ^65000:3_0:160_0:70$ ip community-list expanded c90 permit 72 ^65000:3_0:161_0:71$ ip community-list expanded c90 permit 73 ^65000:3_0:162_0:72$ ip community-list expanded c90 permit 74 ^65000:3_0:163_0:73$ ip community-list expanded c90 permit 75 ^65000:3_0:164_0:74$ ip community-list expanded c90 permit 76 ^65000:3_0:165_0:75$ ip community-list expanded c90 permit 77 ^65000:3_0:166_0:76$ ip community-list expanded c90 permit 78 ^65000:3_0:167_0:77$ ip community-list expanded c90 permit 79 ^65000:3_0:168_0:78$ ip community-list expanded c90 permit 80 ^65000:3_0:169_0:79$ ip community-list expanded c90 permit 81 ^65000:3_0:170_0:80$ ip community-list expanded c90 permit 82 ^65000:3_0:171_0:81$ ip community-list expanded c90 permit 83 ^65000:3_0:172_0:82$ ip community-list expanded c90 permit 84 ^65000:3_0:173_0:83$ ip community-list expanded c90 permit 85 ^65000:3_0:174_0:84$ ip community-list expanded c90 permit 86 ^65000:3_0:175_0:85$ ip community-list expanded c90 permit 87 ^65000:3_0:176_0:86$ ip community-list expanded c90 permit 88 ^65000:3_0:177_0:87$ ip community-list expanded c90 permit 89 ^65000:3_0:178_0:88$ ip community-list expanded c90 permit 90 ^65000:3_0:179_0:89$ ip community-list expanded c90 permit 91 ^65000:4_0:180_0:2$ ip community-list expanded c90 permit 92 ^65000:3_0:180_0:90$ ip community-list expanded c90 permit 93 ^65000:4_0:181_0:2$ ip community-list expanded c90 permit 94 ^65000:3_0:181_0:91$ ip community-list expanded c90 permit 95 ^65000:3_0:182_0:92$ ip community-list expanded c90 permit 96 ^65000:3_0:183_0:93$ ip community-list expanded c90 permit 97 ^65000:3_0:184_0:94$ ip community-list expanded c90 permit 98 ^65000:3_0:185_0:95$ ip community-list expanded c90 permit 99 ^65000:3_0:186_0:96$ ip community-list expanded c90 permit 100 ^65000:3_0:187_0:97$ ip community-list expanded c90 permit 101 ^65000:3_0:188_0:98$ ip community-list expanded c90 permit 102 ^65000:3_0:189_0:99$ ip community-list expanded c90 permit 103 ^65000:3_0:190_0:100$ ip community-list expanded c90 permit 104 ^65000:3_0:191_0:101$ ip community-list expanded c90 permit 105 ^65000:3_0:192_0:102$ ip community-list expanded c90 permit 106 ^65000:3_0:193_0:103$ ip community-list expanded c90 permit 107 ^65000:3_0:194_0:104$ ip community-list expanded c90 permit 108 ^65000:3_0:195_0:105$ ip community-list expanded c90 permit 109 ^65000:3_0:196_0:106$ ip community-list expanded c90 permit 110 ^65000:3_0:197_0:107$ ip community-list expanded c90 permit 111 ^65000:3_0:198_0:108$ ip community-list expanded c90 permit 112 ^65000:3_0:199_0:109$ ip community-list expanded c90 permit 113 ^65000:3_0:200_0:110$ ip community-list expanded c90 permit 114 ^65000:3_0:201_0:111$ ip community-list expanded c90 permit 115 ^65000:3_0:202_0:112$ ip community-list expanded c90 permit 116 ^65000:3_0:203_0:113$ ip community-list expanded c90 permit 117 ^65000:3_0:204_0:114$ ip community-list expanded c90 permit 118 ^65000:3_0:205_0:115$ ip community-list expanded c90 permit 119 ^65000:3_0:206_0:116$ ip community-list expanded c90 permit 120 ^65000:3_0:207_0:117$ ip community-list expanded c90 permit 121 ^65000:3_0:208_0:118$ ip community-list expanded c90 permit 122 ^65000:3_0:209_0:119$ ip community-list expanded c90 permit 123 ^65000:3_0:210_0:120$ ip community-list expanded c90 permit 124 ^65000:3_0:211_0:121$ ip community-list expanded c90 permit 125 ^65000:3_0:212_0:122$ ip community-list expanded c90 permit 126 ^65000:3_0:213_0:123$ ip community-list expanded c90 permit 127 ^65000:3_0:214_0:124$ ip community-list expanded c90 permit 128 ^65000:3_0:215_0:125$ ip community-list expanded c90 permit 129 ^65000:3_0:216_0:126$ ip community-list expanded c90 permit 130 ^65000:3_0:217_0:127$ ip community-list expanded c90 permit 131 ^65000:3_0:218_0:128$ ip community-list expanded c90 permit 132 ^65000:3_0:219_0:129$ ip community-list expanded c90 permit 133 ^65000:3_0:220_0:130$ ip community-list expanded c90 permit 134 ^65000:3_0:221_0:131$ ip community-list expanded c90 permit 135 ^65000:3_0:222_0:132$ ip community-list expanded c90 permit 136 ^65000:3_0:223_0:133$ ip community-list expanded c90 permit 137 ^65000:3_0:224_0:134$ ip community-list expanded c90 permit 138 ^65000:3_0:225_0:135$ ip community-list expanded c90 permit 139 ^65000:3_0:226_0:136$ ip community-list expanded c90 permit 140 ^65000:3_0:227_0:137$ ip community-list expanded c90 permit 141 ^65000:3_0:228_0:138$ ip community-list expanded c90 permit 142 ^65000:3_0:229_0:139$ ip community-list expanded c90 permit 143 ^65000:3_0:230_0:140$ ip community-list expanded c90 permit 144 ^65000:3_0:231_0:141$ ip community-list expanded c90 permit 145 ^65000:3_0:232_0:142$ ip community-list expanded c90 permit 146 ^65000:3_0:233_0:143$ ip community-list expanded c90 permit 147 ^65000:3_0:234_0:144$ ip community-list expanded c90 permit 148 ^65000:3_0:235_0:145$ ip community-list expanded c90 permit 149 ^65000:3_0:236_0:146$ ip community-list expanded c90 permit 150 ^65000:3_0:237_0:147$ ip community-list expanded c90 permit 151 ^65000:3_0:238_0:148$ ip community-list expanded c90 permit 152 ^65000:3_0:239_0:149$ ip community-list expanded c90 permit 153 ^65000:3_0:240_0:150$ ip community-list expanded c90 permit 154 ^65000:3_0:241_0:151$ ip community-list expanded c90 permit 155 ^65000:3_0:242_0:152$ ip community-list expanded c90 permit 156 ^65000:3_0:243_0:153$ ip community-list expanded c90 permit 157 ^65000:3_0:244_0:154$ ip community-list expanded c90 permit 158 ^65000:3_0:245_0:155$ ip community-list expanded c90 permit 159 ^65000:3_0:246_0:156$ ip community-list expanded c90 permit 160 ^65000:3_0:247_0:157$ ip community-list expanded c90 permit 161 ^65000:3_0:248_0:158$ ip community-list expanded c90 permit 162 ^65000:3_0:249_0:159$ ip community-list expanded c90 permit 163 ^65000:3_0:250_0:160$ ip community-list expanded c90 permit 164 ^65000:3_0:251_0:161$ ip community-list expanded c90 permit 165 ^65000:3_0:252_0:162$ ip community-list expanded c90 permit 166 ^65000:3_0:253_0:163$ ip community-list expanded c90 permit 167 ^65000:3_0:254_0:164$ ip community-list expanded c90 permit 168 ^65000:3_0:255_0:165$ ip community-list expanded c90 permit 169 ^65000:3_0:256_0:166$ route-map calculator permit 37960 match community 1_1_89 2_1_90 2_2_45 1_2_88 2_3_30 set community 0:90 route-map calculator permit 37961 match community 1_3_87 1_4_86 2_5_18 1_5_85 2_6_15 set community 0:90 route-map calculator permit 37962 match community 1_6_84 1_7_83 1_8_82 2_9_10 1_9_81 set community 0:90 route-map calculator permit 37963 match community 1_10_80 1_11_79 1_12_78 1_13_77 1_14_76 set community 0:90 route-map calculator permit 37964 match community 1_15_75 1_16_74 1_17_73 1_18_72 1_19_71 set community 0:90 route-map calculator permit 37965 match community 1_20_70 1_21_69 1_22_68 1_23_67 1_24_66 set community 0:90 route-map calculator permit 37966 match community 1_25_65 1_26_64 1_27_63 1_28_62 1_29_61 set community 0:90 route-map calculator permit 37967 match community 1_30_60 1_31_59 1_32_58 1_33_57 1_34_56 set community 0:90 route-map calculator permit 37968 match community 1_35_55 1_36_54 1_37_53 1_38_52 1_39_51 set community 0:90 route-map calculator permit 37969 match community 1_40_50 1_41_49 1_42_48 1_43_47 1_44_46 set community 0:90 route-map calculator permit 37970 match community 1_45_45 c4_90_1 c3_91_1 c3_92_2 c3_93_3 set community 0:90 route-map calculator permit 37971 match community c3_94_4 c3_95_5 c3_96_6 c3_97_7 c3_98_8 set community 0:90 route-map calculator permit 37972 match community c3_99_9 c3_100_10 c3_101_11 c3_102_12 c3_103_13 set community 0:90 route-map calculator permit 37973 match community c3_104_14 c3_105_15 c3_106_16 c3_107_17 c3_108_18 set community 0:90 route-map calculator permit 37974 match community c3_109_19 c3_110_20 c3_111_21 c3_112_22 c3_113_23 set community 0:90 route-map calculator permit 37975 match community c3_114_24 c3_115_25 c3_116_26 c3_117_27 c3_118_28 set community 0:90 route-map calculator permit 37976 match community c3_119_29 c3_120_30 c3_121_31 c3_122_32 c3_123_33 set community 0:90 route-map calculator permit 37977 match community c3_124_34 c3_125_35 c3_126_36 c3_127_37 c3_128_38 set community 0:90 route-map calculator permit 37978 match community c3_129_39 c3_130_40 c3_131_41 c3_132_42 c3_133_43 set community 0:90 route-map calculator permit 37979 match community c3_134_44 c3_135_45 c3_136_46 c3_137_47 c3_138_48 set community 0:90 route-map calculator permit 37980 match community c3_139_49 c3_140_50 c3_141_51 c3_142_52 c3_143_53 set community 0:90 route-map calculator permit 37981 match community c3_144_54 c3_145_55 c3_146_56 c3_147_57 c3_148_58 set community 0:90 route-map calculator permit 37982 match community c3_149_59 c3_150_60 c3_151_61 c3_152_62 c3_153_63 set community 0:90 route-map calculator permit 37983 match community c3_154_64 c3_155_65 c3_156_66 c3_157_67 c3_158_68 set community 0:90 route-map calculator permit 37984 match community c3_159_69 c3_160_70 c3_161_71 c3_162_72 c3_163_73 set community 0:90 route-map calculator permit 37985 match community c3_164_74 c3_165_75 c3_166_76 c3_167_77 c3_168_78 set community 0:90 route-map calculator permit 37986 match community c3_169_79 c3_170_80 c3_171_81 c3_172_82 c3_173_83 set community 0:90 route-map calculator permit 37987 match community c3_174_84 c3_175_85 c3_176_86 c3_177_87 c3_178_88 set community 0:90 route-map calculator permit 37988 match community c3_179_89 c4_180_2 c3_180_90 c4_181_2 c3_181_91 set community 0:90 route-map calculator permit 37989 match community c3_182_92 c3_183_93 c3_184_94 c3_185_95 c3_186_96 set community 0:90 route-map calculator permit 37990 match community c3_187_97 c3_188_98 c3_189_99 c3_190_100 c3_191_101 set community 0:90 route-map calculator permit 37991 match community c3_192_102 c3_193_103 c3_194_104 c3_195_105 c3_196_106 set community 0:90 route-map calculator permit 37992 match community c3_197_107 c3_198_108 c3_199_109 c3_200_110 c3_201_111 set community 0:90 route-map calculator permit 37993 match community c3_202_112 c3_203_113 c3_204_114 c3_205_115 c3_206_116 set community 0:90 route-map calculator permit 37994 match community c3_207_117 c3_208_118 c3_209_119 c3_210_120 c3_211_121 set community 0:90 route-map calculator permit 37995 match community c3_212_122 c3_213_123 c3_214_124 c3_215_125 c3_216_126 set community 0:90 route-map calculator permit 37996 match community c3_217_127 c3_218_128 c3_219_129 c3_220_130 c3_221_131 set community 0:90 route-map calculator permit 37997 match community c3_222_132 c3_223_133 c3_224_134 c3_225_135 c3_226_136 set community 0:90 route-map calculator permit 37998 match community c3_227_137 c3_228_138 c3_229_139 c3_230_140 c3_231_141 set community 0:90 route-map calculator permit 37999 match community c3_232_142 c3_233_143 c3_234_144 c3_235_145 c3_236_146 set community 0:90 route-map calculator permit 38000 match community c3_237_147 c3_238_148 c3_239_149 c3_240_150 c3_241_151 set community 0:90 route-map calculator permit 38001 match community c3_242_152 c3_243_153 c3_244_154 c3_245_155 c3_246_156 set community 0:90 route-map calculator permit 38002 match community c3_247_157 c3_248_158 c3_249_159 c3_250_160 c3_251_161 set community 0:90 route-map calculator permit 38003 match community c3_252_162 c3_253_163 c3_254_164 c3_255_165 c3_256_166 set community 0:90 ip community-list standard 2_4_137 permit 65000:2 0:4 0:137 route-map calculator permit 38004 match community 2_4_137 set community 0:548 ip community-list standard 2_71_241 permit 65000:2 0:71 0:241 route-map calculator permit 38005 match community 2_71_241 set community 0:17111 ip community-list standard 2_89_135 permit 65000:2 0:89 0:135 route-map calculator permit 38006 match community 2_89_135 set community 0:12015 ip community-list standard 2_61_130 permit 65000:2 0:61 0:130 ip community-list standard 2_65_122 permit 65000:2 0:65 0:122 route-map calculator permit 38007 match community 2_61_130 2_65_122 set community 0:7930 ip community-list standard 2_82_193 permit 65000:2 0:82 0:193 route-map calculator permit 38008 match community 2_82_193 set community 0:15826 ip community-list standard 2_70_194 permit 65000:2 0:70 0:194 ip community-list standard 2_97_140 permit 65000:2 0:97 0:140 route-map calculator permit 38009 match community 2_70_194 2_97_140 set community 0:13580 ip community-list standard 1_1_46 permit 65000:1 0:1 0:46 ip community-list standard 2_1_47 permit 65000:2 0:1 0:47 ip community-list standard 1_2_45 permit 65000:1 0:2 0:45 ip community-list standard 1_3_44 permit 65000:1 0:3 0:44 ip community-list standard 1_4_43 permit 65000:1 0:4 0:43 ip community-list standard 1_5_42 permit 65000:1 0:5 0:42 ip community-list standard 1_6_41 permit 65000:1 0:6 0:41 ip community-list standard 1_7_40 permit 65000:1 0:7 0:40 ip community-list standard 1_8_39 permit 65000:1 0:8 0:39 ip community-list standard 1_9_38 permit 65000:1 0:9 0:38 ip community-list standard 1_10_37 permit 65000:1 0:10 0:37 ip community-list standard 1_11_36 permit 65000:1 0:11 0:36 ip community-list standard 1_12_35 permit 65000:1 0:12 0:35 ip community-list standard 1_13_34 permit 65000:1 0:13 0:34 ip community-list standard 1_14_33 permit 65000:1 0:14 0:33 ip community-list standard 1_15_32 permit 65000:1 0:15 0:32 ip community-list standard 1_16_31 permit 65000:1 0:16 0:31 ip community-list standard 1_17_30 permit 65000:1 0:17 0:30 ip community-list standard 1_18_29 permit 65000:1 0:18 0:29 ip community-list standard 1_19_28 permit 65000:1 0:19 0:28 ip community-list standard 1_20_27 permit 65000:1 0:20 0:27 ip community-list standard 1_21_26 permit 65000:1 0:21 0:26 ip community-list standard 1_22_25 permit 65000:1 0:22 0:25 ip community-list standard 1_23_24 permit 65000:1 0:23 0:24 ip community-list expanded c47 permit 1 ^65000:4_0:47_0:1$ ip community-list expanded c47 permit 2 ^65000:3_0:48_0:1$ ip community-list expanded c47 permit 3 ^65000:3_0:49_0:2$ ip community-list expanded c47 permit 4 ^65000:3_0:50_0:3$ ip community-list expanded c47 permit 5 ^65000:3_0:51_0:4$ ip community-list expanded c47 permit 6 ^65000:3_0:52_0:5$ ip community-list expanded c47 permit 7 ^65000:3_0:53_0:6$ ip community-list expanded c47 permit 8 ^65000:3_0:54_0:7$ ip community-list expanded c47 permit 9 ^65000:3_0:55_0:8$ ip community-list expanded c47 permit 10 ^65000:3_0:56_0:9$ ip community-list expanded c47 permit 11 ^65000:3_0:57_0:10$ ip community-list expanded c47 permit 12 ^65000:3_0:58_0:11$ ip community-list expanded c47 permit 13 ^65000:3_0:59_0:12$ ip community-list expanded c47 permit 14 ^65000:3_0:60_0:13$ ip community-list expanded c47 permit 15 ^65000:3_0:61_0:14$ ip community-list expanded c47 permit 16 ^65000:3_0:62_0:15$ ip community-list expanded c47 permit 17 ^65000:3_0:63_0:16$ ip community-list expanded c47 permit 18 ^65000:3_0:64_0:17$ ip community-list expanded c47 permit 19 ^65000:3_0:65_0:18$ ip community-list expanded c47 permit 20 ^65000:3_0:66_0:19$ ip community-list expanded c47 permit 21 ^65000:3_0:67_0:20$ ip community-list expanded c47 permit 22 ^65000:3_0:68_0:21$ ip community-list expanded c47 permit 23 ^65000:3_0:69_0:22$ ip community-list expanded c47 permit 24 ^65000:3_0:70_0:23$ ip community-list expanded c47 permit 25 ^65000:3_0:71_0:24$ ip community-list expanded c47 permit 26 ^65000:3_0:72_0:25$ ip community-list expanded c47 permit 27 ^65000:3_0:73_0:26$ ip community-list expanded c47 permit 28 ^65000:3_0:74_0:27$ ip community-list expanded c47 permit 29 ^65000:3_0:75_0:28$ ip community-list expanded c47 permit 30 ^65000:3_0:76_0:29$ ip community-list expanded c47 permit 31 ^65000:3_0:77_0:30$ ip community-list expanded c47 permit 32 ^65000:3_0:78_0:31$ ip community-list expanded c47 permit 33 ^65000:3_0:79_0:32$ ip community-list expanded c47 permit 34 ^65000:3_0:80_0:33$ ip community-list expanded c47 permit 35 ^65000:3_0:81_0:34$ ip community-list expanded c47 permit 36 ^65000:3_0:82_0:35$ ip community-list expanded c47 permit 37 ^65000:3_0:83_0:36$ ip community-list expanded c47 permit 38 ^65000:3_0:84_0:37$ ip community-list expanded c47 permit 39 ^65000:3_0:85_0:38$ ip community-list expanded c47 permit 40 ^65000:3_0:86_0:39$ ip community-list expanded c47 permit 41 ^65000:3_0:87_0:40$ ip community-list expanded c47 permit 42 ^65000:3_0:88_0:41$ ip community-list expanded c47 permit 43 ^65000:3_0:89_0:42$ ip community-list expanded c47 permit 44 ^65000:3_0:90_0:43$ ip community-list expanded c47 permit 45 ^65000:3_0:91_0:44$ ip community-list expanded c47 permit 46 ^65000:3_0:92_0:45$ ip community-list expanded c47 permit 47 ^65000:3_0:93_0:46$ ip community-list expanded c47 permit 48 ^65000:4_0:94_0:2$ ip community-list expanded c47 permit 49 ^65000:3_0:94_0:47$ ip community-list expanded c47 permit 50 ^65000:4_0:95_0:2$ ip community-list expanded c47 permit 51 ^65000:3_0:95_0:48$ ip community-list expanded c47 permit 52 ^65000:3_0:96_0:49$ ip community-list expanded c47 permit 53 ^65000:3_0:97_0:50$ ip community-list expanded c47 permit 54 ^65000:3_0:98_0:51$ ip community-list expanded c47 permit 55 ^65000:3_0:99_0:52$ ip community-list expanded c47 permit 56 ^65000:3_0:100_0:53$ ip community-list expanded c47 permit 57 ^65000:3_0:101_0:54$ ip community-list expanded c47 permit 58 ^65000:3_0:102_0:55$ ip community-list expanded c47 permit 59 ^65000:3_0:103_0:56$ ip community-list expanded c47 permit 60 ^65000:3_0:104_0:57$ ip community-list expanded c47 permit 61 ^65000:3_0:105_0:58$ ip community-list expanded c47 permit 62 ^65000:3_0:106_0:59$ ip community-list expanded c47 permit 63 ^65000:3_0:107_0:60$ ip community-list expanded c47 permit 64 ^65000:3_0:108_0:61$ ip community-list expanded c47 permit 65 ^65000:3_0:109_0:62$ ip community-list expanded c47 permit 66 ^65000:3_0:110_0:63$ ip community-list expanded c47 permit 67 ^65000:3_0:111_0:64$ ip community-list expanded c47 permit 68 ^65000:3_0:112_0:65$ ip community-list expanded c47 permit 69 ^65000:3_0:113_0:66$ ip community-list expanded c47 permit 70 ^65000:3_0:114_0:67$ ip community-list expanded c47 permit 71 ^65000:3_0:115_0:68$ ip community-list expanded c47 permit 72 ^65000:3_0:116_0:69$ ip community-list expanded c47 permit 73 ^65000:3_0:117_0:70$ ip community-list expanded c47 permit 74 ^65000:3_0:118_0:71$ ip community-list expanded c47 permit 75 ^65000:3_0:119_0:72$ ip community-list expanded c47 permit 76 ^65000:3_0:120_0:73$ ip community-list expanded c47 permit 77 ^65000:3_0:121_0:74$ ip community-list expanded c47 permit 78 ^65000:3_0:122_0:75$ ip community-list expanded c47 permit 79 ^65000:3_0:123_0:76$ ip community-list expanded c47 permit 80 ^65000:3_0:124_0:77$ ip community-list expanded c47 permit 81 ^65000:3_0:125_0:78$ ip community-list expanded c47 permit 82 ^65000:3_0:126_0:79$ ip community-list expanded c47 permit 83 ^65000:3_0:127_0:80$ ip community-list expanded c47 permit 84 ^65000:3_0:128_0:81$ ip community-list expanded c47 permit 85 ^65000:3_0:129_0:82$ ip community-list expanded c47 permit 86 ^65000:3_0:130_0:83$ ip community-list expanded c47 permit 87 ^65000:3_0:131_0:84$ ip community-list expanded c47 permit 88 ^65000:3_0:132_0:85$ ip community-list expanded c47 permit 89 ^65000:3_0:133_0:86$ ip community-list expanded c47 permit 90 ^65000:3_0:134_0:87$ ip community-list expanded c47 permit 91 ^65000:3_0:135_0:88$ ip community-list expanded c47 permit 92 ^65000:3_0:136_0:89$ ip community-list expanded c47 permit 93 ^65000:3_0:137_0:90$ ip community-list expanded c47 permit 94 ^65000:3_0:138_0:91$ ip community-list expanded c47 permit 95 ^65000:3_0:139_0:92$ ip community-list expanded c47 permit 96 ^65000:3_0:140_0:93$ ip community-list expanded c47 permit 97 ^65000:4_0:141_0:3$ ip community-list expanded c47 permit 98 ^65000:3_0:141_0:94$ ip community-list expanded c47 permit 99 ^65000:4_0:142_0:3$ ip community-list expanded c47 permit 100 ^65000:3_0:142_0:95$ ip community-list expanded c47 permit 101 ^65000:4_0:143_0:3$ ip community-list expanded c47 permit 102 ^65000:3_0:143_0:96$ ip community-list expanded c47 permit 103 ^65000:3_0:144_0:97$ ip community-list expanded c47 permit 104 ^65000:3_0:145_0:98$ ip community-list expanded c47 permit 105 ^65000:3_0:146_0:99$ ip community-list expanded c47 permit 106 ^65000:3_0:147_0:100$ ip community-list expanded c47 permit 107 ^65000:3_0:148_0:101$ ip community-list expanded c47 permit 108 ^65000:3_0:149_0:102$ ip community-list expanded c47 permit 109 ^65000:3_0:150_0:103$ ip community-list expanded c47 permit 110 ^65000:3_0:151_0:104$ ip community-list expanded c47 permit 111 ^65000:3_0:152_0:105$ ip community-list expanded c47 permit 112 ^65000:3_0:153_0:106$ ip community-list expanded c47 permit 113 ^65000:3_0:154_0:107$ ip community-list expanded c47 permit 114 ^65000:3_0:155_0:108$ ip community-list expanded c47 permit 115 ^65000:3_0:156_0:109$ ip community-list expanded c47 permit 116 ^65000:3_0:157_0:110$ ip community-list expanded c47 permit 117 ^65000:3_0:158_0:111$ ip community-list expanded c47 permit 118 ^65000:3_0:159_0:112$ ip community-list expanded c47 permit 119 ^65000:3_0:160_0:113$ ip community-list expanded c47 permit 120 ^65000:3_0:161_0:114$ ip community-list expanded c47 permit 121 ^65000:3_0:162_0:115$ ip community-list expanded c47 permit 122 ^65000:3_0:163_0:116$ ip community-list expanded c47 permit 123 ^65000:3_0:164_0:117$ ip community-list expanded c47 permit 124 ^65000:3_0:165_0:118$ ip community-list expanded c47 permit 125 ^65000:3_0:166_0:119$ ip community-list expanded c47 permit 126 ^65000:3_0:167_0:120$ ip community-list expanded c47 permit 127 ^65000:3_0:168_0:121$ ip community-list expanded c47 permit 128 ^65000:3_0:169_0:122$ ip community-list expanded c47 permit 129 ^65000:3_0:170_0:123$ ip community-list expanded c47 permit 130 ^65000:3_0:171_0:124$ ip community-list expanded c47 permit 131 ^65000:3_0:172_0:125$ ip community-list expanded c47 permit 132 ^65000:3_0:173_0:126$ ip community-list expanded c47 permit 133 ^65000:3_0:174_0:127$ ip community-list expanded c47 permit 134 ^65000:3_0:175_0:128$ ip community-list expanded c47 permit 135 ^65000:3_0:176_0:129$ ip community-list expanded c47 permit 136 ^65000:3_0:177_0:130$ ip community-list expanded c47 permit 137 ^65000:3_0:178_0:131$ ip community-list expanded c47 permit 138 ^65000:3_0:179_0:132$ ip community-list expanded c47 permit 139 ^65000:3_0:180_0:133$ ip community-list expanded c47 permit 140 ^65000:3_0:181_0:134$ ip community-list expanded c47 permit 141 ^65000:3_0:182_0:135$ ip community-list expanded c47 permit 142 ^65000:3_0:183_0:136$ ip community-list expanded c47 permit 143 ^65000:3_0:184_0:137$ ip community-list expanded c47 permit 144 ^65000:3_0:185_0:138$ ip community-list expanded c47 permit 145 ^65000:3_0:186_0:139$ ip community-list expanded c47 permit 146 ^65000:3_0:187_0:140$ ip community-list expanded c47 permit 147 ^65000:4_0:188_0:4$ ip community-list expanded c47 permit 148 ^65000:3_0:188_0:141$ ip community-list expanded c47 permit 149 ^65000:4_0:189_0:4$ ip community-list expanded c47 permit 150 ^65000:3_0:189_0:142$ ip community-list expanded c47 permit 151 ^65000:4_0:190_0:4$ ip community-list expanded c47 permit 152 ^65000:3_0:190_0:143$ ip community-list expanded c47 permit 153 ^65000:4_0:191_0:4$ ip community-list expanded c47 permit 154 ^65000:3_0:191_0:144$ ip community-list expanded c47 permit 155 ^65000:3_0:192_0:145$ ip community-list expanded c47 permit 156 ^65000:3_0:193_0:146$ ip community-list expanded c47 permit 157 ^65000:3_0:194_0:147$ ip community-list expanded c47 permit 158 ^65000:3_0:195_0:148$ ip community-list expanded c47 permit 159 ^65000:3_0:196_0:149$ ip community-list expanded c47 permit 160 ^65000:3_0:197_0:150$ ip community-list expanded c47 permit 161 ^65000:3_0:198_0:151$ ip community-list expanded c47 permit 162 ^65000:3_0:199_0:152$ ip community-list expanded c47 permit 163 ^65000:3_0:200_0:153$ ip community-list expanded c47 permit 164 ^65000:3_0:201_0:154$ ip community-list expanded c47 permit 165 ^65000:3_0:202_0:155$ ip community-list expanded c47 permit 166 ^65000:3_0:203_0:156$ ip community-list expanded c47 permit 167 ^65000:3_0:204_0:157$ ip community-list expanded c47 permit 168 ^65000:3_0:205_0:158$ ip community-list expanded c47 permit 169 ^65000:3_0:206_0:159$ ip community-list expanded c47 permit 170 ^65000:3_0:207_0:160$ ip community-list expanded c47 permit 171 ^65000:3_0:208_0:161$ ip community-list expanded c47 permit 172 ^65000:3_0:209_0:162$ ip community-list expanded c47 permit 173 ^65000:3_0:210_0:163$ ip community-list expanded c47 permit 174 ^65000:3_0:211_0:164$ ip community-list expanded c47 permit 175 ^65000:3_0:212_0:165$ ip community-list expanded c47 permit 176 ^65000:3_0:213_0:166$ ip community-list expanded c47 permit 177 ^65000:3_0:214_0:167$ ip community-list expanded c47 permit 178 ^65000:3_0:215_0:168$ ip community-list expanded c47 permit 179 ^65000:3_0:216_0:169$ ip community-list expanded c47 permit 180 ^65000:3_0:217_0:170$ ip community-list expanded c47 permit 181 ^65000:3_0:218_0:171$ ip community-list expanded c47 permit 182 ^65000:3_0:219_0:172$ ip community-list expanded c47 permit 183 ^65000:3_0:220_0:173$ ip community-list expanded c47 permit 184 ^65000:3_0:221_0:174$ ip community-list expanded c47 permit 185 ^65000:3_0:222_0:175$ ip community-list expanded c47 permit 186 ^65000:3_0:223_0:176$ ip community-list expanded c47 permit 187 ^65000:3_0:224_0:177$ ip community-list expanded c47 permit 188 ^65000:3_0:225_0:178$ ip community-list expanded c47 permit 189 ^65000:3_0:226_0:179$ ip community-list expanded c47 permit 190 ^65000:3_0:227_0:180$ ip community-list expanded c47 permit 191 ^65000:3_0:228_0:181$ ip community-list expanded c47 permit 192 ^65000:3_0:229_0:182$ ip community-list expanded c47 permit 193 ^65000:3_0:230_0:183$ ip community-list expanded c47 permit 194 ^65000:3_0:231_0:184$ ip community-list expanded c47 permit 195 ^65000:3_0:232_0:185$ ip community-list expanded c47 permit 196 ^65000:3_0:233_0:186$ ip community-list expanded c47 permit 197 ^65000:3_0:234_0:187$ ip community-list expanded c47 permit 198 ^65000:4_0:235_0:5$ ip community-list expanded c47 permit 199 ^65000:3_0:235_0:188$ ip community-list expanded c47 permit 200 ^65000:4_0:236_0:5$ ip community-list expanded c47 permit 201 ^65000:3_0:236_0:189$ ip community-list expanded c47 permit 202 ^65000:4_0:237_0:5$ ip community-list expanded c47 permit 203 ^65000:3_0:237_0:190$ ip community-list expanded c47 permit 204 ^65000:4_0:238_0:5$ ip community-list expanded c47 permit 205 ^65000:3_0:238_0:191$ ip community-list expanded c47 permit 206 ^65000:4_0:239_0:5$ ip community-list expanded c47 permit 207 ^65000:3_0:239_0:192$ ip community-list expanded c47 permit 208 ^65000:3_0:240_0:193$ ip community-list expanded c47 permit 209 ^65000:3_0:241_0:194$ ip community-list expanded c47 permit 210 ^65000:3_0:242_0:195$ ip community-list expanded c47 permit 211 ^65000:3_0:243_0:196$ ip community-list expanded c47 permit 212 ^65000:3_0:244_0:197$ ip community-list expanded c47 permit 213 ^65000:3_0:245_0:198$ ip community-list expanded c47 permit 214 ^65000:3_0:246_0:199$ ip community-list expanded c47 permit 215 ^65000:3_0:247_0:200$ ip community-list expanded c47 permit 216 ^65000:3_0:248_0:201$ ip community-list expanded c47 permit 217 ^65000:3_0:249_0:202$ ip community-list expanded c47 permit 218 ^65000:3_0:250_0:203$ ip community-list expanded c47 permit 219 ^65000:3_0:251_0:204$ ip community-list expanded c47 permit 220 ^65000:3_0:252_0:205$ ip community-list expanded c47 permit 221 ^65000:3_0:253_0:206$ ip community-list expanded c47 permit 222 ^65000:3_0:254_0:207$ ip community-list expanded c47 permit 223 ^65000:3_0:255_0:208$ ip community-list expanded c47 permit 224 ^65000:3_0:256_0:209$ route-map calculator permit 38010 match community 1_1_46 2_1_47 1_2_45 1_3_44 1_4_43 set community 0:47 route-map calculator permit 38011 match community 1_5_42 1_6_41 1_7_40 1_8_39 1_9_38 set community 0:47 route-map calculator permit 38012 match community 1_10_37 1_11_36 1_12_35 1_13_34 1_14_33 set community 0:47 route-map calculator permit 38013 match community 1_15_32 1_16_31 1_17_30 1_18_29 1_19_28 set community 0:47 route-map calculator permit 38014 match community 1_20_27 1_21_26 1_22_25 1_23_24 c4_47_1 set community 0:47 route-map calculator permit 38015 match community c3_48_1 c3_49_2 c3_50_3 c3_51_4 c3_52_5 set community 0:47 route-map calculator permit 38016 match community c3_53_6 c3_54_7 c3_55_8 c3_56_9 c3_57_10 set community 0:47 route-map calculator permit 38017 match community c3_58_11 c3_59_12 c3_60_13 c3_61_14 c3_62_15 set community 0:47 route-map calculator permit 38018 match community c3_63_16 c3_64_17 c3_65_18 c3_66_19 c3_67_20 set community 0:47 route-map calculator permit 38019 match community c3_68_21 c3_69_22 c3_70_23 c3_71_24 c3_72_25 set community 0:47 route-map calculator permit 38020 match community c3_73_26 c3_74_27 c3_75_28 c3_76_29 c3_77_30 set community 0:47 route-map calculator permit 38021 match community c3_78_31 c3_79_32 c3_80_33 c3_81_34 c3_82_35 set community 0:47 route-map calculator permit 38022 match community c3_83_36 c3_84_37 c3_85_38 c3_86_39 c3_87_40 set community 0:47 route-map calculator permit 38023 match community c3_88_41 c3_89_42 c3_90_43 c3_91_44 c3_92_45 set community 0:47 route-map calculator permit 38024 match community c3_93_46 c4_94_2 c3_94_47 c4_95_2 c3_95_48 set community 0:47 route-map calculator permit 38025 match community c3_96_49 c3_97_50 c3_98_51 c3_99_52 c3_100_53 set community 0:47 route-map calculator permit 38026 match community c3_101_54 c3_102_55 c3_103_56 c3_104_57 c3_105_58 set community 0:47 route-map calculator permit 38027 match community c3_106_59 c3_107_60 c3_108_61 c3_109_62 c3_110_63 set community 0:47 route-map calculator permit 38028 match community c3_111_64 c3_112_65 c3_113_66 c3_114_67 c3_115_68 set community 0:47 route-map calculator permit 38029 match community c3_116_69 c3_117_70 c3_118_71 c3_119_72 c3_120_73 set community 0:47 route-map calculator permit 38030 match community c3_121_74 c3_122_75 c3_123_76 c3_124_77 c3_125_78 set community 0:47 route-map calculator permit 38031 match community c3_126_79 c3_127_80 c3_128_81 c3_129_82 c3_130_83 set community 0:47 route-map calculator permit 38032 match community c3_131_84 c3_132_85 c3_133_86 c3_134_87 c3_135_88 set community 0:47 route-map calculator permit 38033 match community c3_136_89 c3_137_90 c3_138_91 c3_139_92 c3_140_93 set community 0:47 route-map calculator permit 38034 match community c4_141_3 c3_141_94 c4_142_3 c3_142_95 c4_143_3 set community 0:47 route-map calculator permit 38035 match community c3_143_96 c3_144_97 c3_145_98 c3_146_99 c3_147_100 set community 0:47 route-map calculator permit 38036 match community c3_148_101 c3_149_102 c3_150_103 c3_151_104 c3_152_105 set community 0:47 route-map calculator permit 38037 match community c3_153_106 c3_154_107 c3_155_108 c3_156_109 c3_157_110 set community 0:47 route-map calculator permit 38038 match community c3_158_111 c3_159_112 c3_160_113 c3_161_114 c3_162_115 set community 0:47 route-map calculator permit 38039 match community c3_163_116 c3_164_117 c3_165_118 c3_166_119 c3_167_120 set community 0:47 route-map calculator permit 38040 match community c3_168_121 c3_169_122 c3_170_123 c3_171_124 c3_172_125 set community 0:47 route-map calculator permit 38041 match community c3_173_126 c3_174_127 c3_175_128 c3_176_129 c3_177_130 set community 0:47 route-map calculator permit 38042 match community c3_178_131 c3_179_132 c3_180_133 c3_181_134 c3_182_135 set community 0:47 route-map calculator permit 38043 match community c3_183_136 c3_184_137 c3_185_138 c3_186_139 c3_187_140 set community 0:47 route-map calculator permit 38044 match community c4_188_4 c3_188_141 c4_189_4 c3_189_142 c4_190_4 set community 0:47 route-map calculator permit 38045 match community c3_190_143 c4_191_4 c3_191_144 c3_192_145 c3_193_146 set community 0:47 route-map calculator permit 38046 match community c3_194_147 c3_195_148 c3_196_149 c3_197_150 c3_198_151 set community 0:47 route-map calculator permit 38047 match community c3_199_152 c3_200_153 c3_201_154 c3_202_155 c3_203_156 set community 0:47 route-map calculator permit 38048 match community c3_204_157 c3_205_158 c3_206_159 c3_207_160 c3_208_161 set community 0:47 route-map calculator permit 38049 match community c3_209_162 c3_210_163 c3_211_164 c3_212_165 c3_213_166 set community 0:47 route-map calculator permit 38050 match community c3_214_167 c3_215_168 c3_216_169 c3_217_170 c3_218_171 set community 0:47 route-map calculator permit 38051 match community c3_219_172 c3_220_173 c3_221_174 c3_222_175 c3_223_176 set community 0:47 route-map calculator permit 38052 match community c3_224_177 c3_225_178 c3_226_179 c3_227_180 c3_228_181 set community 0:47 route-map calculator permit 38053 match community c3_229_182 c3_230_183 c3_231_184 c3_232_185 c3_233_186 set community 0:47 route-map calculator permit 38054 match community c3_234_187 c4_235_5 c3_235_188 c4_236_5 c3_236_189 set community 0:47 route-map calculator permit 38055 match community c4_237_5 c3_237_190 c4_238_5 c3_238_191 c4_239_5 set community 0:47 route-map calculator permit 38056 match community c3_239_192 c3_240_193 c3_241_194 c3_242_195 c3_243_196 set community 0:47 route-map calculator permit 38057 match community c3_244_197 c3_245_198 c3_246_199 c3_247_200 c3_248_201 set community 0:47 route-map calculator permit 38058 match community c3_249_202 c3_250_203 c3_251_204 c3_252_205 c3_253_206 set community 0:47 route-map calculator permit 38059 match community c3_254_207 c3_255_208 c3_256_209 set community 0:47 ip community-list standard 2_97_175 permit 65000:2 0:97 0:175 route-map calculator permit 38060 match community 2_97_175 set community 0:16975 ip community-list standard 2_173_245 permit 65000:2 0:173 0:245 route-map calculator permit 38061 match community 2_173_245 set community 0:42385 ip community-list standard 2_23_166 permit 65000:2 0:23 0:166 ip community-list standard 2_46_83 permit 65000:2 0:46 0:83 route-map calculator permit 38062 match community 2_23_166 2_46_83 set community 0:3818 ip community-list standard 2_89_228 permit 65000:2 0:89 0:228 ip community-list standard 2_114_178 permit 65000:2 0:114 0:178 route-map calculator permit 38063 match community 2_89_228 2_114_178 set community 0:20292 ip community-list standard 2_21_97 permit 65000:2 0:21 0:97 route-map calculator permit 38064 match community 2_21_97 set community 0:2037 ip community-list standard 2_82_137 permit 65000:2 0:82 0:137 route-map calculator permit 38065 match community 2_82_137 set community 0:11234 ip community-list standard 2_135_223 permit 65000:2 0:135 0:223 route-map calculator permit 38066 match community 2_135_223 set community 0:30105 ip community-list standard 2_187_222 permit 65000:2 0:187 0:222 route-map calculator permit 38067 match community 2_187_222 set community 0:41514 ip community-list standard 2_73_181 permit 65000:2 0:73 0:181 route-map calculator permit 38068 match community 2_73_181 set community 0:13213 ip community-list standard 2_106_239 permit 65000:2 0:106 0:239 route-map calculator permit 38069 match community 2_106_239 set community 0:25334 ip community-list standard 2_112_193 permit 65000:2 0:112 0:193 route-map calculator permit 38070 match community 2_112_193 set community 0:21616 ip community-list standard 2_48_202 permit 65000:2 0:48 0:202 ip community-list standard 2_96_101 permit 65000:2 0:96 0:101 route-map calculator permit 38071 match community 2_48_202 2_96_101 set community 0:9696 ip community-list standard 2_14_219 permit 65000:2 0:14 0:219 ip community-list standard 2_21_146 permit 65000:2 0:21 0:146 ip community-list standard 2_42_73 permit 65000:2 0:42 0:73 route-map calculator permit 38072 match community 2_14_219 2_21_146 2_42_73 set community 0:3066 route-map calculator permit 38073 set community 65000:7777